From 6a7fad9b3114ba7e9fc98beb740c66833a733c02 Mon Sep 17 00:00:00 2001 From: papizzo Date: Thu, 28 Dec 2023 15:40:29 +0100 Subject: [PATCH 01/33] start news --- terra-frontend/src/assets/icons/coreui.js | 86 ++-- terra-frontend/src/common/context.js | 3 +- terra-frontend/src/components/Sidebar.vue | 23 +- terra-frontend/src/i18n/en.json | 11 + terra-frontend/src/i18n/it.json | 11 + terra-frontend/src/router/index.js | 8 + .../services/countries/countries.service.js | 62 +-- terra-frontend/src/services/index.js | 13 +- .../src/services/news/news.service.js | 17 + terra-frontend/src/store/index.js | 66 +-- terra-frontend/src/store/modules/coreui.js | 384 +++++++++--------- terra-frontend/src/store/modules/news/news.js | 33 ++ terra-frontend/src/views/Home.vue | 23 ++ terra-frontend/src/views/news/News.vue | 268 ++++++++++++ 14 files changed, 707 insertions(+), 301 deletions(-) create mode 100644 terra-frontend/src/services/news/news.service.js create mode 100644 terra-frontend/src/store/modules/news/news.js create mode 100644 terra-frontend/src/views/news/News.vue diff --git a/terra-frontend/src/assets/icons/coreui.js b/terra-frontend/src/assets/icons/coreui.js index c548d4b..353a4c6 100644 --- a/terra-frontend/src/assets/icons/coreui.js +++ b/terra-frontend/src/assets/icons/coreui.js @@ -1,43 +1,43 @@ -import { cifUs, cifBr, cifIn, cifFr, cifEs, cifPl } from "@coreui/icons" -import { - cilAt, - cilHome, - cilLayers, - cilLockLocked, - cilTerminal, - cilUser, - cilMap, - cilLocationPin, - cilChartLine, - cilGraph, - cilCompass, - cilTags, - cilAsterisk, - cilBell, - cilStar, - cilInfo, - cilSpeech -} from "@coreui/icons" - -export const iconsSet = Object.assign( - { cifUs, cifBr, cifIn, cifFr, cifEs, cifPl }, - { - cilAt, - cilHome, - cilLayers, - cilLockLocked, - cilTerminal, - cilUser, - cilMap, - cilLocationPin, - cilChartLine, - cilGraph, - cilCompass, - cilTags, - cilAsterisk, - cilBell, - cilStar, - cilInfo, - cilSpeech - } -) +import { cifUs, cifBr, cifIn, cifFr, cifEs, cifPl } from "@coreui/icons" +import { + cilAt, + cilHome, + cilLayers, + cilLockLocked, + cilTerminal, + cilUser, + cilMap, + cilLocationPin, + cilChartLine, + cilGraph, + cilCompass, + cilTags, + cilAsterisk, + cilBell, + cilStar, + cilInfo, + cilSpeech +} from "@coreui/icons" + +export const iconsSet = Object.assign( + { cifUs, cifBr, cifIn, cifFr, cifEs, cifPl }, + { + cilAt, + cilHome, + cilLayers, + cilLockLocked, + cilTerminal, + cilUser, + cilMap, + cilLocationPin, + cilChartLine, + cilGraph, + cilCompass, + cilTags, + cilAsterisk, + cilBell, + cilStar, + cilInfo, + cilSpeech + } +) diff --git a/terra-frontend/src/common/context.js b/terra-frontend/src/common/context.js index 6e9c5d9..d93165e 100644 --- a/terra-frontend/src/common/context.js +++ b/terra-frontend/src/common/context.js @@ -6,5 +6,6 @@ export const Context = { GraphIntra: "GRAPH_INTRA", Policy: "POLICY", Trade: "TRADE", - Mobility: "MOBILITY" + Mobility: "MOBILITY", + News: "NEWS" } diff --git a/terra-frontend/src/components/Sidebar.vue b/terra-frontend/src/components/Sidebar.vue index f7971f9..c013bd3 100644 --- a/terra-frontend/src/components/Sidebar.vue +++ b/terra-frontend/src/components/Sidebar.vue @@ -131,6 +131,23 @@ {{ $t("sidebar.trade") }} +
+ + + {{ $t("sidebar.news") }} + +
monthly time series of basket composition for exported and imported goods, classified according to 2 digits CPA 2.1, together with year-over-year changes.", "link": "Go to Basket of traded products" + }, + "news": { + "title": "News on Terra", + "body": "This section shows news on Terra.", + "link": "Go to News" } }, "map": { @@ -302,6 +308,11 @@ "title": "Terra - Basket of Traded Products Filter" } }, + "news": { + "card": { + "title": "News on Terra: " + } + }, "privacy": { "title": "Privacy", "title_1": "Privacy and protection of personal data", diff --git a/terra-frontend/src/i18n/it.json b/terra-frontend/src/i18n/it.json index 5a27789..817c6d8 100644 --- a/terra-frontend/src/i18n/it.json +++ b/terra-frontend/src/i18n/it.json @@ -68,6 +68,7 @@ "graphWorld": "Grafi UE - Mondo", "timeseries": "Serie storiche", "trade": "Paniere dei prodotti", + "news": "Le News di Terra", "logo_istat": "Logo Istat", "goto_istat": "Vai a www.istat.it", "opens_goto_istat": "Si apre in un'altra finestra: ISTAT", @@ -101,6 +102,11 @@ "title": "Serie storiche", "body": "Strumento di visualizzazione delle serie mensili di dati sul commercio estero COMEXT. Questa sezione consente una lettura facile e comprensibile nonostante la mole di dati sottostanti. Utile come strumento di divulgazione. Le serie sono fornite in valore ed il download è disponibile in vari formati.", "link": "Vai alle Serie storiche" + }, + "news": { + "title": "Le News di Terra", + "body": "Questa sezione fornisce le news di Terra.", + "link": "Vai alle News di Terra" }, "trade": { "title": "Paniere dei prodotti", @@ -301,6 +307,11 @@ "title": "Terra - Paniere dei prodotti" } }, + "news": { + "card": { + "title": "Le News di Terra: " + } + }, "privacy": { "title": "Privacy", "title_1": "Privacy e trattamento dei dati personali", diff --git a/terra-frontend/src/router/index.js b/terra-frontend/src/router/index.js index 302e6c1..8ba5a1c 100644 --- a/terra-frontend/src/router/index.js +++ b/terra-frontend/src/router/index.js @@ -74,6 +74,14 @@ const routes = [ authorize: [] } }, + { + path: "/news", + name: "News", + component: () => import("../views/news/News"), + meta: { + authorize: [] + } + }, { path: "*", redirect: "/" diff --git a/terra-frontend/src/services/countries/countries.service.js b/terra-frontend/src/services/countries/countries.service.js index f239d5f..912c43e 100644 --- a/terra-frontend/src/services/countries/countries.service.js +++ b/terra-frontend/src/services/countries/countries.service.js @@ -1,31 +1,31 @@ -import { axiosHack } from "@/http" -export const countriesService = { - findAll, - getDataSeries -} - -function findAll(jsonDataName) { - return axiosHack - .get("/" + jsonDataName) - .then((res) => { - var data = res.data ? res.data : {} - //console.log(data); - return data - }) - .catch((err) => { - throw err - }) -} - -function getDataSeries(name) { - return axiosHack - .get("/" + name) - .then((res) => { - var data = res.data ? res.data : {} - //console.log(data); - return data - }) - .catch((err) => { - throw err - }) -} +import { axiosHack } from "@/http" +export const countriesService = { + findAll, + getDataSeries +} + +function findAll(jsonDataName) { + return axiosHack + .get("/" + jsonDataName) + .then((res) => { + var data = res.data ? res.data : {} + //console.log(data); + return data + }) + .catch((err) => { + throw err + }) +} + +function getDataSeries(name) { + return axiosHack + .get("/" + name) + .then((res) => { + var data = res.data ? res.data : {} + //console.log(data); + return data + }) + .catch((err) => { + throw err + }) +} diff --git a/terra-frontend/src/services/index.js b/terra-frontend/src/services/index.js index 97a4295..9ee7eee 100644 --- a/terra-frontend/src/services/index.js +++ b/terra-frontend/src/services/index.js @@ -1,6 +1,7 @@ -export * from "./geomap/geomap.service" -export * from "./graph/graph.service" -export * from "./timeseries/timeseries.service" -export * from "./trade/trade.service" -export * from "./countries/countries.service" -export * from "./metadata/metadata.service" +export * from "./geomap/geomap.service" +export * from "./graph/graph.service" +export * from "./timeseries/timeseries.service" +export * from "./trade/trade.service" +export * from "./countries/countries.service" +export * from "./news/news.service" +export * from "./metadata/metadata.service" diff --git a/terra-frontend/src/services/news/news.service.js b/terra-frontend/src/services/news/news.service.js new file mode 100644 index 0000000..c3756f7 --- /dev/null +++ b/terra-frontend/src/services/news/news.service.js @@ -0,0 +1,17 @@ +import { axiosHack } from "@/http" +export const newsService = { + findAll +} + +function findAll() { + return axiosHack + .get("/news") + .then((res) => { + var data = res.data ? res.data : {} + //console.log(data); + return data + }) + .catch((err) => { + throw err + }) +} diff --git a/terra-frontend/src/store/index.js b/terra-frontend/src/store/index.js index 6910b43..bfc99cf 100644 --- a/terra-frontend/src/store/index.js +++ b/terra-frontend/src/store/index.js @@ -1,31 +1,35 @@ -import Vue from "vue" -import Vuex from "vuex" - -import { error } from "./modules/error" -import { coreui } from "./modules/coreui" -import { message } from "./modules/message" - -import { geomap } from "./modules/geomap/geomap" -import { graph } from "./modules/graph/graph" -import { trade } from "./modules/trade/trade" -import { classification } from "./modules/classification/classification" -import { timeseries } from "./modules/timeseries/timeseries" -import { countries } from "./modules/countries/countries" -import { metadata } from "./modules/metadata/metadata" - -Vue.use(Vuex) - -export default new Vuex.Store({ - modules: { - error, - coreui, - message, - geomap, - graph, - trade, - classification, - timeseries, - countries, - metadata - } -}) +import Vue from "vue" +import Vuex from "vuex" + +import { error } from "./modules/error" +import { coreui } from "./modules/coreui" +import { message } from "./modules/message" + +import { geomap } from "./modules/geomap/geomap" +import { graph } from "./modules/graph/graph" +import { trade } from "./modules/trade/trade" + +import { classification } from "./modules/classification/classification" +import { timeseries } from "./modules/timeseries/timeseries" +import { countries } from "./modules/countries/countries" +import { metadata } from "./modules/metadata/metadata" + +import { news } from "./modules/news/news" + +Vue.use(Vuex) + +export default new Vuex.Store({ + modules: { + error, + coreui, + message, + geomap, + graph, + trade, + classification, + timeseries, + countries, + metadata, + news + } +}) diff --git a/terra-frontend/src/store/modules/coreui.js b/terra-frontend/src/store/modules/coreui.js index 42b8f33..1e701b1 100644 --- a/terra-frontend/src/store/modules/coreui.js +++ b/terra-frontend/src/store/modules/coreui.js @@ -1,188 +1,196 @@ -import { Context } from "@/common" - -const state = { - sidebarShow: "responsive", - sidebarMinimize: false, - context: "", - isHome: false, - isLoading: false, - isMap: false, - isGraph: false, - isGraphIntra: false, - isPolicy: false, - isTrade: false, - isMobility: false, - isItalian: localStorage.getItem("lan") == "en" ? false : true, - language: localStorage.getItem("lan") || "it", //default language - breadcrumbs: [ - { - path: "metadata", - to: "/metadata" - } - ] -} - -const mutations = { - TOGGLE_SIDEBAR_DESKTOP(state) { - const sidebarOpened = [true, "responsive"].includes(state.sidebarShow) - state.sidebarShow = sidebarOpened ? false : "responsive" - }, - TOGGLE_SIDEBAR_MOBILE(state) { - const sidebarClosed = [false, "responsive"].includes(state.sidebarShow) - state.sidebarShow = sidebarClosed ? true : "responsive" - }, - SET_LOADING(state, isLoading) { - state.isLoading = isLoading - }, - SET_LANGUAGE(state, language) { - state.language = language - state.isItalian = language == "it" ? true : false - - //store auth data in browser storage - localStorage.setItem("lan", language) - }, - SET_CONTEXT(state, context) { - state.context = context - switch (context) { - case Context.Home: - state.isHome = true - break - case Context.Map: - state.isMap = true - break - case Context.Graph: - state.isGraph = true - break - case Context.GraphIntra: - state.isGraphIntra = true - break - case Context.Policy: - state.isPolicy = true - break - case Context.Trade: - state.isTrade = true - break - case Context.Mobility: - state.isMobility = true - break - default: - break - } - }, - CLEAR_CONTEXT(state) { - state.context = "" - state.isHome = false - state.isMap = false - state.isGraph = false - state.isGraphIntra = false - state.isPolicy = false - state.isTrade = false - state.isMobility = false - }, - CREATE_BREADCRUMBS(state, breadcrumbs) { - state.breadcrumbs = breadcrumbs - }, - set(state, [variable, value]) { - state[variable] = value - } -} - -const actions = { - toggleSidebarDesktop({ commit }) { - commit("TOGGLE_SIDEBAR_DESKTOP") - }, - toggleSidebarMobile({ commit }) { - commit("TOGGLE_SIDEBAR_MOBILE") - }, - loading({ commit }, isLoading) { - commit("SET_LOADING", isLoading) - }, - setContext({ commit }, context) { - commit("CLEAR_CONTEXT") - commit("SET_CONTEXT", context) - }, - clearContext({ commit }) { - commit("CLEAR_CONTEXT") - }, - setLanguage({ commit }, language) { - commit("SET_LANGUAGE", language) - }, - createBreadcrumbs({ commit }, route) { - let pathArray = route.path.split("/") - pathArray.shift() - //console.log(route.params); - if (Object.keys(route.params).length > 0) { - //if route has a parameter remove it from array - pathArray.pop() - } - let breadcrumbs = pathArray.reduce((breadcrumbArray, path, idx) => { - var to = "/" - if (idx > 0) { - for (var i = 0; i < idx; i++) { - to += breadcrumbArray[i].path + "/" - } - } - to += path - //console.log(to); - breadcrumbArray.push({ - path: path, - to: to - }) - return breadcrumbArray - }, []) - commit("CREATE_BREADCRUMBS", breadcrumbs) - } -} - -const getters = { - sidebarShow: (state) => { - return state.sidebarShow - }, - sidebarMinimize: (state) => { - return state.sidebarMinimize - }, - context: (state) => { - return state.context - }, - language: (state) => { - return state.language - }, - isLoading: (state) => { - return state.isLoading - }, - isItalian: (state) => { - return state.isItalian - }, - isHome: (state) => { - return state.isHome - }, - isMap: (state) => { - return state.isMap - }, - isGraph: (state) => { - return state.isGraph - }, - isGraphIntra: (state) => { - return state.isGraphIntra - }, - isPolicy: (state) => { - return state.isPolicy - }, - isTrade: (state) => { - return state.isTrade - }, - isMobility: (state) => { - return state.isMobility - }, - breadcrumbs: (state) => { - return state.breadcrumbs - } -} - -export const coreui = { - namespaced: true, - state, - mutations, - actions, - getters -} +import { Context } from "@/common" + +const state = { + sidebarShow: "responsive", + sidebarMinimize: false, + context: "", + isHome: false, + isLoading: false, + isMap: false, + isGraph: false, + isGraphIntra: false, + isPolicy: false, + isTrade: false, + isNews: false, + isMobility: false, + isItalian: localStorage.getItem("lan") == "en" ? false : true, + language: localStorage.getItem("lan") || "it", //default language + breadcrumbs: [ + { + path: "metadata", + to: "/metadata" + } + ] +} + +const mutations = { + TOGGLE_SIDEBAR_DESKTOP(state) { + const sidebarOpened = [true, "responsive"].includes(state.sidebarShow) + state.sidebarShow = sidebarOpened ? false : "responsive" + }, + TOGGLE_SIDEBAR_MOBILE(state) { + const sidebarClosed = [false, "responsive"].includes(state.sidebarShow) + state.sidebarShow = sidebarClosed ? true : "responsive" + }, + SET_LOADING(state, isLoading) { + state.isLoading = isLoading + }, + SET_LANGUAGE(state, language) { + state.language = language + state.isItalian = language == "it" ? true : false + + //store auth data in browser storage + localStorage.setItem("lan", language) + }, + SET_CONTEXT(state, context) { + state.context = context + switch (context) { + case Context.Home: + state.isHome = true + break + case Context.Map: + state.isMap = true + break + case Context.Graph: + state.isGraph = true + break + case Context.GraphIntra: + state.isGraphIntra = true + break + case Context.Policy: + state.isPolicy = true + break + case Context.Trade: + state.isTrade = true + break + case Context.News: + state.isNews = true + break + case Context.Mobility: + state.isMobility = true + break + default: + break + } + }, + CLEAR_CONTEXT(state) { + state.context = "" + state.isHome = false + state.isMap = false + state.isGraph = false + state.isGraphIntra = false + state.isPolicy = false + state.isTrade = false + state.isNews = false + state.isMobility = false + }, + CREATE_BREADCRUMBS(state, breadcrumbs) { + state.breadcrumbs = breadcrumbs + }, + set(state, [variable, value]) { + state[variable] = value + } +} + +const actions = { + toggleSidebarDesktop({ commit }) { + commit("TOGGLE_SIDEBAR_DESKTOP") + }, + toggleSidebarMobile({ commit }) { + commit("TOGGLE_SIDEBAR_MOBILE") + }, + loading({ commit }, isLoading) { + commit("SET_LOADING", isLoading) + }, + setContext({ commit }, context) { + commit("CLEAR_CONTEXT") + commit("SET_CONTEXT", context) + }, + clearContext({ commit }) { + commit("CLEAR_CONTEXT") + }, + setLanguage({ commit }, language) { + commit("SET_LANGUAGE", language) + }, + createBreadcrumbs({ commit }, route) { + let pathArray = route.path.split("/") + pathArray.shift() + //console.log(route.params); + if (Object.keys(route.params).length > 0) { + //if route has a parameter remove it from array + pathArray.pop() + } + let breadcrumbs = pathArray.reduce((breadcrumbArray, path, idx) => { + var to = "/" + if (idx > 0) { + for (var i = 0; i < idx; i++) { + to += breadcrumbArray[i].path + "/" + } + } + to += path + //console.log(to); + breadcrumbArray.push({ + path: path, + to: to + }) + return breadcrumbArray + }, []) + commit("CREATE_BREADCRUMBS", breadcrumbs) + } +} + +const getters = { + sidebarShow: (state) => { + return state.sidebarShow + }, + sidebarMinimize: (state) => { + return state.sidebarMinimize + }, + context: (state) => { + return state.context + }, + language: (state) => { + return state.language + }, + isLoading: (state) => { + return state.isLoading + }, + isItalian: (state) => { + return state.isItalian + }, + isHome: (state) => { + return state.isHome + }, + isMap: (state) => { + return state.isMap + }, + isGraph: (state) => { + return state.isGraph + }, + isGraphIntra: (state) => { + return state.isGraphIntra + }, + isPolicy: (state) => { + return state.isPolicy + }, + isTrade: (state) => { + return state.isTrade + }, + isNews: (state) => { + return state.isNews + }, + isMobility: (state) => { + return state.isMobility + }, + breadcrumbs: (state) => { + return state.breadcrumbs + } +} + +export const coreui = { + namespaced: true, + state, + mutations, + actions, + getters +} diff --git a/terra-frontend/src/store/modules/news/news.js b/terra-frontend/src/store/modules/news/news.js new file mode 100644 index 0000000..9fce8bc --- /dev/null +++ b/terra-frontend/src/store/modules/news/news.js @@ -0,0 +1,33 @@ +import { newsService } from "@/services" +const state = { + news: null +} +const mutations = { + SET_JSON_NEWS(state, news) { + state.news = news + } +} +const actions = { + findAll({ commit }) { + return newsService + .findAll() + .then((data) => { + commit("SET_JSON_NEWS", data) + }) + .catch((err) => { + console.log(err) + }) + } +} +const getters = { + news: (state) => { + return state.news + } +} +export const news = { + namespaced: true, + state, + mutations, + actions, + getters +} diff --git a/terra-frontend/src/views/Home.vue b/terra-frontend/src/views/Home.vue index f152138..d075aa0 100644 --- a/terra-frontend/src/views/Home.vue +++ b/terra-frontend/src/views/Home.vue @@ -114,6 +114,26 @@
+
+
+
+ + {{ $t("landing.news.title") }} +
+ +
+
@@ -145,6 +165,9 @@ export default { handleTrade() { this.$router.push({ name: "Trade" }) }, + handleNews() { + this.$router.push({ name: "News" }) + }, fixASidebarMenu() { setTimeout(() => { document.querySelectorAll(".c-sidebar-nav-link").forEach((element) => { diff --git a/terra-frontend/src/views/news/News.vue b/terra-frontend/src/views/news/News.vue new file mode 100644 index 0000000..fa99512 --- /dev/null +++ b/terra-frontend/src/views/news/News.vue @@ -0,0 +1,268 @@ + + + From b750c61f2a64388b0bfd80db2fa192bc4a0ee981 Mon Sep 17 00:00:00 2001 From: papizzo Date: Fri, 29 Dec 2023 13:01:02 +0100 Subject: [PATCH 02/33] fix length on tr news ok --- terra-frontend/src/i18n/en.json | 9 +- terra-frontend/src/i18n/it.json | 9 +- terra-frontend/src/views/graph/GraphTable.vue | 158 ++++++------- terra-frontend/src/views/news/News.vue | 208 ++++++++++-------- 4 files changed, 218 insertions(+), 166 deletions(-) diff --git a/terra-frontend/src/i18n/en.json b/terra-frontend/src/i18n/en.json index 3a31893..52f7ad6 100644 --- a/terra-frontend/src/i18n/en.json +++ b/terra-frontend/src/i18n/en.json @@ -112,7 +112,7 @@ "news": { "title": "News on Terra", "body": "This section shows news on Terra.", - "link": "Go to News" + "link": "Go to News on Terra" } }, "map": { @@ -310,7 +310,12 @@ }, "news": { "card": { - "title": "News on Terra: " + "title": "News on Terra" + }, + "table": { + "date": "date", + "text": "text", + "type": "type" } }, "privacy": { diff --git a/terra-frontend/src/i18n/it.json b/terra-frontend/src/i18n/it.json index 817c6d8..d8f667a 100644 --- a/terra-frontend/src/i18n/it.json +++ b/terra-frontend/src/i18n/it.json @@ -102,7 +102,7 @@ "title": "Serie storiche", "body": "Strumento di visualizzazione delle serie mensili di dati sul commercio estero COMEXT. Questa sezione consente una lettura facile e comprensibile nonostante la mole di dati sottostanti. Utile come strumento di divulgazione. Le serie sono fornite in valore ed il download è disponibile in vari formati.", "link": "Vai alle Serie storiche" - }, + }, "news": { "title": "Le News di Terra", "body": "Questa sezione fornisce le news di Terra.", @@ -309,7 +309,12 @@ }, "news": { "card": { - "title": "Le News di Terra: " + "title": "Le News di Terra" + }, + "table": { + "date": "data", + "text": "testo", + "type": "tipo" } }, "privacy": { diff --git a/terra-frontend/src/views/graph/GraphTable.vue b/terra-frontend/src/views/graph/GraphTable.vue index f71a855..e6b0b41 100644 --- a/terra-frontend/src/views/graph/GraphTable.vue +++ b/terra-frontend/src/views/graph/GraphTable.vue @@ -69,25 +69,29 @@ export default { }, methods: { fixSortingTable() { - const table = this.$refs.metricsTable - if (table.$el.children[0].children[0].children[0].children) { - const thead = table.$el.children[0].children[0].children[0].children + if (this.$refs.metricsTable) { + const table = this.$refs.metricsTable + if (table.$el.children[0].children[0].children[0].children) { + const thead = table.$el.children[0].children[0].children[0].children - if (thead[0].children && thead[1].children) { - const tr_0 = thead[0].children - const tr_1 = thead[1].children - if (tr_0) { - for (let i = 0; i <= 4; i++) { - if (tr_0[i].children[1]) { - tr_0[i].children[1].ariaLabel = - this.$t("common.table.order_field") + tr_0[i].innerText - tr_0[i].children[1].role = "button" - } - if (tr_0[i].children[0]) { - tr_1[i].children[0].ariaLabel = - this.$t("common.table.search_field") + tr_0[i].innerText - tr_1[i].children[0].title = - this.$t("common.table.search_field") + tr_0[i].innerText + if (thead[0].children && thead[1].children) { + const tr_0 = thead[0].children + const tr_1 = thead[1].children + console.log(tr_0.length - 1) + const tr_len = tr_0.length - 1 + if (tr_0) { + for (let i = 0; i <= tr_len; i++) { + if (tr_0[i].children[1]) { + tr_0[i].children[1].ariaLabel = + this.$t("common.table.order_field") + tr_0[i].innerText + tr_0[i].children[1].role = "button" + } + if (tr_0[i].children[0]) { + tr_1[i].children[0].ariaLabel = + this.$t("common.table.search_field") + tr_0[i].innerText + tr_1[i].children[0].title = + this.$t("common.table.search_field") + tr_0[i].innerText + } } } } @@ -95,67 +99,71 @@ export default { } }, fixBodyTable() { - const table = this.$refs.metricsTable - const tBody = table.$el.children[0].children[0].children[1] - tBody.ariaLive = "polite" - if (tBody.children[0].children[0].children[0]) { - if ( - tBody.children[0].children[0].children[0].className == - "text-center my-5" - ) { - tBody.children[0].children[0].children[0].role = "alert" - console.log(tBody.children[0].children[0].children[0].role) + if (this.$refs.metricsTable) { + const table = this.$refs.metricsTable + const tBody = table.$el.children[0].children[0].children[1] + tBody.ariaLive = "polite" + if (tBody.children[0].children[0].children[0]) { + if ( + tBody.children[0].children[0].children[0].className == + "text-center my-5" + ) { + tBody.children[0].children[0].children[0].role = "alert" + console.log(tBody.children[0].children[0].children[0].role) + } } } }, fixNavTable() { - const table = this.$refs.metricsTable - if (table.$el.children[1]) { - const nav = table.$el.children[1] - nav.ariaLabel = this.$t("common.table.pagination") - if (nav.children[0].children) { - let nav_buttons = nav.children[0].children - const next_button = nav_buttons.length - 2 - const last_button = nav_buttons.length - 1 - nav_buttons[0].children[0].ariaLabel = this.$t( - "common.table.go_to_first_page" - ) - nav_buttons[0].children[0].title = this.$t( - "common.table.go_to_first_page" - ) - nav_buttons[1].children[0].ariaLabel = this.$t( - "common.table.go_to_previous_page" - ) - nav_buttons[1].children[0].title = this.$t( - "common.table.go_to_previous_page" - ) - nav_buttons[next_button].children[0].ariaLabel = this.$t( - "common.table.go_to_next_page" - ) - nav_buttons[next_button].children[0].title = this.$t( - "common.table.go_to_next_page" - ) - nav_buttons[last_button].children[0].ariaLabel = this.$t( - "common.table.go_to_last_page" - ) - nav_buttons[last_button].children[0].title = this.$t( - "common.table.go_to_last_page" - ) - for (let i = 2; i <= nav_buttons.length - 3; i++) { - if (nav_buttons[i].className == "active page-item") { - nav_buttons[i].children[0].ariaLabel = - this.$t("common.table.current_page") + - nav_buttons[i].children[0].innerText - nav_buttons[i].children[0].title = - this.$t("common.table.current_page") + - nav_buttons[i].children[0].innerText - } else { - nav_buttons[i].children[0].ariaLabel = - this.$t("common.table.go_to_page") + - nav_buttons[i].children[0].innerText - nav_buttons[i].children[0].title = - this.$t("common.table.go_to_page") + - nav_buttons[i].children[0].innerText + if (this.$refs.metricsTable) { + const table = this.$refs.metricsTable + if (table.$el.children[1]) { + const nav = table.$el.children[1] + nav.ariaLabel = this.$t("common.table.pagination") + if (nav.children[0].children) { + let nav_buttons = nav.children[0].children + const next_button = nav_buttons.length - 2 + const last_button = nav_buttons.length - 1 + nav_buttons[0].children[0].ariaLabel = this.$t( + "common.table.go_to_first_page" + ) + nav_buttons[0].children[0].title = this.$t( + "common.table.go_to_first_page" + ) + nav_buttons[1].children[0].ariaLabel = this.$t( + "common.table.go_to_previous_page" + ) + nav_buttons[1].children[0].title = this.$t( + "common.table.go_to_previous_page" + ) + nav_buttons[next_button].children[0].ariaLabel = this.$t( + "common.table.go_to_next_page" + ) + nav_buttons[next_button].children[0].title = this.$t( + "common.table.go_to_next_page" + ) + nav_buttons[last_button].children[0].ariaLabel = this.$t( + "common.table.go_to_last_page" + ) + nav_buttons[last_button].children[0].title = this.$t( + "common.table.go_to_last_page" + ) + for (let i = 2; i <= nav_buttons.length - 3; i++) { + if (nav_buttons[i].className == "active page-item") { + nav_buttons[i].children[0].ariaLabel = + this.$t("common.table.current_page") + + nav_buttons[i].children[0].innerText + nav_buttons[i].children[0].title = + this.$t("common.table.current_page") + + nav_buttons[i].children[0].innerText + } else { + nav_buttons[i].children[0].ariaLabel = + this.$t("common.table.go_to_page") + + nav_buttons[i].children[0].innerText + nav_buttons[i].children[0].title = + this.$t("common.table.go_to_page") + + nav_buttons[i].children[0].innerText + } } } } diff --git a/terra-frontend/src/views/news/News.vue b/terra-frontend/src/views/news/News.vue index fa99512..8686fdc 100644 --- a/terra-frontend/src/views/news/News.vue +++ b/terra-frontend/src/views/news/News.vue @@ -5,7 +5,7 @@ - {{ $t("news.card.title") }} {{ title }} + {{ $t("news.card.title") }} @@ -14,6 +14,7 @@ ref="newsTable" v-if="news" :items="news" + :fields="newsFields" column-filter :items-per-page="10" sorter @@ -63,11 +64,13 @@ export default { name: "News", components: {}, mixins: [spinnerMixin], - data: () => ({ - page_number: 0, - //Spinner - spinner: false - }), + data() { + return { + page_number: 0, + //Spinner + spinner: false + } + }, watch: { language() { this.$store.dispatch("message/success", this.$t("common.update_cls")) @@ -79,7 +82,31 @@ export default { }, computed: { ...mapGetters("coreui", ["language"]), - ...mapGetters("news", ["news"]) + ...mapGetters("news", ["news"]), + newsFields() { + return [ + { + key: "id", + label: "id", + _style: "width:1%;" + }, + { + key: "date", + label: this.$t("news.table.date"), + _style: "width:5%;" + }, + { + key: "text", + label: this.$t("news.table.text"), + _style: "width:5%;" + }, + { + key: "type", + label: this.$t("news.table.type"), + _style: "width:5%;" + } + ] + } }, methods: { spinnerStart(bool) { @@ -119,25 +146,29 @@ export default { }, 300) }, fixSortingTable() { - const table = this.$refs.newsTable - if (table.$el.children[0].children[0].children[0].children) { - const thead = table.$el.children[0].children[0].children[0].children + if (this.$refs.newsTable) { + const table = this.$refs.newsTable + if (table.$el.children[0].children[0].children[0].children) { + const thead = table.$el.children[0].children[0].children[0].children - if (thead[0].children && thead[1].children) { - const tr_0 = thead[0].children - const tr_1 = thead[1].children - if (tr_0) { - for (let i = 0; i <= 4; i++) { - if (tr_0[i].children[1]) { - tr_0[i].children[1].ariaLabel = - this.$t("common.table.order_field") + tr_0[i].innerText - tr_0[i].children[1].role = "button" - } - if (tr_0[i].children[0]) { - tr_1[i].children[0].ariaLabel = - this.$t("common.table.search_field") + tr_0[i].innerText - tr_1[i].children[0].title = - this.$t("common.table.search_field") + tr_0[i].innerText + if (thead[0].children && thead[1].children) { + const tr_0 = thead[0].children + const tr_1 = thead[1].children + console.log(tr_0.length - 1) + const tr_len = tr_0.length - 1 + if (tr_0) { + for (let i = 0; i <= tr_len; i++) { + if (tr_0[i].children[1]) { + tr_0[i].children[1].ariaLabel = + this.$t("common.table.order_field") + tr_0[i].innerText + tr_0[i].children[1].role = "button" + } + if (tr_0[i].children[0]) { + tr_1[i].children[0].ariaLabel = + this.$t("common.table.search_field") + tr_0[i].innerText + tr_1[i].children[0].title = + this.$t("common.table.search_field") + tr_0[i].innerText + } } } } @@ -145,67 +176,71 @@ export default { } }, fixBodyTable() { - const table = this.$refs.newsTable - const tBody = table.$el.children[0].children[0].children[1] - tBody.ariaLive = "polite" - if (tBody.children[0].children[0].children[0]) { - if ( - tBody.children[0].children[0].children[0].className == - "text-center my-5" - ) { - tBody.children[0].children[0].children[0].role = "alert" - console.log(tBody.children[0].children[0].children[0].role) + if (this.$refs.newsTable) { + const table = this.$refs.newsTable + const tBody = table.$el.children[0].children[0].children[1] + tBody.ariaLive = "polite" + if (tBody.children[0].children[0].children[0]) { + if ( + tBody.children[0].children[0].children[0].className == + "text-center my-5" + ) { + tBody.children[0].children[0].children[0].role = "alert" + console.log(tBody.children[0].children[0].children[0].role) + } } } }, fixNavTable() { - const table = this.$refs.newsTable - if (table.$el.children[1]) { - const nav = table.$el.children[1] - nav.ariaLabel = this.$t("common.table.pagination") - if (nav.children[0].children) { - let nav_buttons = nav.children[0].children - const next_button = nav_buttons.length - 2 - const last_button = nav_buttons.length - 1 - nav_buttons[0].children[0].ariaLabel = this.$t( - "common.table.go_to_first_page" - ) - nav_buttons[0].children[0].title = this.$t( - "common.table.go_to_first_page" - ) - nav_buttons[1].children[0].ariaLabel = this.$t( - "common.table.go_to_previous_page" - ) - nav_buttons[1].children[0].title = this.$t( - "common.table.go_to_previous_page" - ) - nav_buttons[next_button].children[0].ariaLabel = this.$t( - "common.table.go_to_next_page" - ) - nav_buttons[next_button].children[0].title = this.$t( - "common.table.go_to_next_page" - ) - nav_buttons[last_button].children[0].ariaLabel = this.$t( - "common.table.go_to_last_page" - ) - nav_buttons[last_button].children[0].title = this.$t( - "common.table.go_to_last_page" - ) - for (let i = 2; i <= nav_buttons.length - 3; i++) { - if (nav_buttons[i].className == "active page-item") { - nav_buttons[i].children[0].ariaLabel = - this.$t("common.table.current_page") + - nav_buttons[i].children[0].innerText - nav_buttons[i].children[0].title = - this.$t("common.table.current_page") + - nav_buttons[i].children[0].innerText - } else { - nav_buttons[i].children[0].ariaLabel = - this.$t("common.table.go_to_page") + - nav_buttons[i].children[0].innerText - nav_buttons[i].children[0].title = - this.$t("common.table.go_to_page") + - nav_buttons[i].children[0].innerText + if (this.$refs.newsTable) { + const table = this.$refs.newsTable + if (table.$el.children[1]) { + const nav = table.$el.children[1] + nav.ariaLabel = this.$t("common.table.pagination") + if (nav.children[0].children) { + let nav_buttons = nav.children[0].children + const next_button = nav_buttons.length - 2 + const last_button = nav_buttons.length - 1 + nav_buttons[0].children[0].ariaLabel = this.$t( + "common.table.go_to_first_page" + ) + nav_buttons[0].children[0].title = this.$t( + "common.table.go_to_first_page" + ) + nav_buttons[1].children[0].ariaLabel = this.$t( + "common.table.go_to_previous_page" + ) + nav_buttons[1].children[0].title = this.$t( + "common.table.go_to_previous_page" + ) + nav_buttons[next_button].children[0].ariaLabel = this.$t( + "common.table.go_to_next_page" + ) + nav_buttons[next_button].children[0].title = this.$t( + "common.table.go_to_next_page" + ) + nav_buttons[last_button].children[0].ariaLabel = this.$t( + "common.table.go_to_last_page" + ) + nav_buttons[last_button].children[0].title = this.$t( + "common.table.go_to_last_page" + ) + for (let i = 2; i <= nav_buttons.length - 3; i++) { + if (nav_buttons[i].className == "active page-item") { + nav_buttons[i].children[0].ariaLabel = + this.$t("common.table.current_page") + + nav_buttons[i].children[0].innerText + nav_buttons[i].children[0].title = + this.$t("common.table.current_page") + + nav_buttons[i].children[0].innerText + } else { + nav_buttons[i].children[0].ariaLabel = + this.$t("common.table.go_to_page") + + nav_buttons[i].children[0].innerText + nav_buttons[i].children[0].title = + this.$t("common.table.go_to_page") + + nav_buttons[i].children[0].innerText + } } } } @@ -241,14 +276,13 @@ export default { created() { this.spinnerStart(true) this.$store.dispatch("coreui/setContext", Context.News) - this.fixHeaderTableForAccessibility() - this.$store.dispatch("news/findAll").then(() => { - console.log(this.news) - this.spinnerStart(false) - }) this.fixLanguageAccessibility() this.fixASidebarMenu() this.fixMetaTitle() + this.$store.dispatch("news/findAll").then(() => { + this.fixHeaderTableForAccessibility() + this.spinnerStart(false) + }) } } From f0309241b4a1972ec7c73a839d43f13386f55371 Mon Sep 17 00:00:00 2001 From: mauroIstat Date: Tue, 2 Jan 2024 18:00:09 +0100 Subject: [PATCH 03/33] Graph analysis backend work in progress --- terra-backend/python-server/.gitignore | 1 + terra-backend/python-server/data/CN.txt | 31233 -------- terra-backend/python-server/data/NSTR.txt | 239 - .../python-server/data/cpa_intra.csv | 65534 ---------------- .../python-server/data/tr_extra_ue.csv | 65534 ---------------- .../python-server/graph-analysis.ipynb | 862 + 6 files changed, 863 insertions(+), 162540 deletions(-) create mode 100644 terra-backend/python-server/.gitignore delete mode 100644 terra-backend/python-server/data/CN.txt delete mode 100644 terra-backend/python-server/data/NSTR.txt delete mode 100644 terra-backend/python-server/data/cpa_intra.csv delete mode 100644 terra-backend/python-server/data/tr_extra_ue.csv create mode 100644 terra-backend/python-server/graph-analysis.ipynb diff --git a/terra-backend/python-server/.gitignore b/terra-backend/python-server/.gitignore new file mode 100644 index 0000000..8fce603 --- /dev/null +++ b/terra-backend/python-server/.gitignore @@ -0,0 +1 @@ +data/ diff --git a/terra-backend/python-server/data/CN.txt b/terra-backend/python-server/data/CN.txt deleted file mode 100644 index fb422c9..0000000 --- a/terra-backend/python-server/data/CN.txt +++ /dev/null @@ -1,31233 +0,0 @@ -00 01/01/1988 31/12/1998 LIBEN Total for countries whose data are confidential, broken down by origin and/or destination 01/01/1988 31/12/1998 -0090 01/01/1988 31/12/1998 LIBEN Total for countries whose data are confidential, broken down by origin and/or destination 01/01/1988 31/12/1998 -009000 01/01/1988 31/12/1998 LIBEN Total for countries whose data are confidential, broken down by origin and/or destination 01/01/1988 31/12/1998 -00900000 01/01/1988 31/12/1998 LIBEN Total for countries whose data are confidential, broken down by origin and/or destination 01/01/1988 31/12/1998 -01 01/01/1988 31/12/2500 LIBEN LIVE ANIMALS 01/01/1988 31/12/2500 -0101 01/01/1988 31/12/2500 LIBEN Live horses, asses, mules and hinnies 01/01/1988 31/12/2500 -010110 01/01/2002 31/12/2011 LIBEN Pure-bred breeding horses and asses 01/01/2002 31/12/2011 -01011010 01/01/2002 31/12/2011 LIBEN Pure-bred breeding horses 01/01/2002 31/12/2011 -01011090 01/01/2002 31/12/2011 LIBEN Pure-bred breeding asses 01/01/2002 31/12/2011 -010111 01/01/1988 31/12/2001 LIBEN Pure-bred breeding horses 01/01/1988 31/12/2001 -01011100 01/01/1988 31/12/2001 LIBEN Pure-bred breeding horses 01/01/1988 31/12/2001 -010119 01/01/1988 31/12/2001 LIBEN Live horses (excl. pure-bred for breeding) 01/01/1988 31/12/2001 -01011910 01/01/1988 31/12/2001 LIBEN Horses for slaughter 01/01/1988 31/12/2001 -01011990 01/01/1988 31/12/2001 LIBEN Horses (excl. those pure bred for breeding and for slaughter) 01/01/1988 31/12/2001 -010120 01/01/1988 31/12/2001 LIBEN Live asses, mules and hinnies 01/01/1988 31/12/2001 -01012010 01/01/1988 31/12/2001 LIBEN Live asses 01/01/1988 31/12/2001 -01012090 01/01/1988 31/12/2001 LIBEN Live mules and hinnies 01/01/1988 31/12/2001 -010121 01/01/2012 31/12/2500 LIBEN Pure-bred breeding horses 01/01/2012 31/12/2500 -01012100 01/01/2012 31/12/2500 LIBEN Pure-bred breeding horses 01/01/2012 31/12/2500 -010129 01/01/2012 31/12/2500 LIBEN Live horses (excl. pure-bred for breeding) 01/01/2012 31/12/2500 -01012910 01/01/2012 31/12/2500 LIBEN Horses for slaughter 01/01/2012 31/12/2500 -01012990 01/01/2012 31/12/2500 LIBEN Live horses (excl. for slaughter, pure-bred for breeding) 01/01/2012 31/12/2500 -010130 01/01/2012 31/12/2500 LIBEN Live asses 01/01/2012 31/12/2500 -01013000 01/01/2012 31/12/2500 LIBEN Live asses 01/01/2012 31/12/2500 -010190 01/01/2002 31/12/2500 LIBEN Live mules and hinnies 01/01/2002 31/12/2500 -01019000 01/01/2012 31/12/2500 LIBEN Live mules and hinnies 01/01/2012 31/12/2500 -01019011 01/01/2002 31/12/2011 LIBEN Horses for slaughter 01/01/2002 31/12/2011 -01019019 01/01/2002 31/12/2011 LIBEN Live horses (excl. those pure bred for breeding and for slaughter) 01/01/2002 31/12/2011 -01019030 01/01/2002 31/12/2011 LIBEN Live asses (excl. pure-bred for breeding) 01/01/2002 31/12/2011 -01019090 01/01/2002 31/12/2011 LIBEN Live mules and hinnies 01/01/2002 31/12/2011 -0102 01/01/1988 31/12/2500 LIBEN Live bovine animals 01/01/1988 31/12/2500 -010210 01/01/1988 31/12/2011 LIBEN Pure-bred breeding bovines 01/01/1988 31/12/2011 -01021000 01/01/1988 31/12/1992 LIBEN Pure-bred breeding bovines 01/01/1988 31/12/1992 -01021010 01/01/1993 31/12/2011 LIBEN Pure-bred breeding heifers "female bovines that have never calved" 01/01/1993 31/12/2011 -01021030 01/01/1993 31/12/2011 LIBEN Pure-bred breeding cows (excl. heifers) 01/01/1993 31/12/2011 -01021090 01/01/1993 31/12/2011 LIBEN Pure-bred breeding bovines (excl. heifers and cows) 01/01/1993 31/12/2011 -010221 01/01/2012 31/12/2500 LIBEN Pure-bred cattle for breeding 01/01/2012 31/12/2500 -01022110 01/01/2012 31/12/2500 LIBEN Pure-bred breeding heifers "female bovines that have never calved" 01/01/2012 31/12/2500 -01022130 01/01/2012 31/12/2500 LIBEN Pure-bred breeding cows (excl. heifers) 01/01/2012 31/12/2500 -01022190 01/01/2012 31/12/2500 LIBEN Pure-bred cattle for breeding (excl. heifers and cows) 01/01/2012 31/12/2500 -010229 01/01/2012 31/12/2500 LIBEN Live cattle (excl. pure-bred for breeding) 01/01/2012 31/12/2500 -01022905 01/01/2013 31/12/2500 LIBEN Live cattle of the sub-genus Bibos or Poephagus (excl. pure-bred for breeding) 01/01/2013 31/12/2500 -01022910 01/01/2012 31/12/2500 LIBEN Live cattle of a weight <= 80 kg (excl. pure-bred for breeding) 01/01/2012 31/12/2500 -01022921 01/01/2012 31/12/2500 LIBEN Cattle of a weight > 80 kg but <= 160 kg, for slaughter 01/01/2012 31/12/2500 -01022929 01/01/2012 31/12/2500 LIBEN Live cattle of a weight > 80 kg but <= 160 kg (excl. for slaughter, pure-bred for breeding) 01/01/2012 31/12/2500 -01022941 01/01/2012 31/12/2500 LIBEN Cattle of a weight > 160 kg but <= 300 kg, for slaughter 01/01/2012 31/12/2500 -01022949 01/01/2012 31/12/2500 LIBEN Live cattle of a weight > 160 kg but <= 300 kg (excl. for slaughter, pure-bred for breeding) 01/01/2012 31/12/2500 -01022951 01/01/2012 31/12/2500 LIBEN Heifers "female bovines that have never calved" of a weight > 300 kg, for slaughter 01/01/2012 31/12/2500 -01022959 01/01/2012 31/12/2500 LIBEN Live heifers "female bovines that have never calved" of a weight > 300 kg (excl. for slaughter and pure-bred for breeding) 01/01/2012 31/12/2500 -01022961 01/01/2012 31/12/2500 LIBEN Cows of a weight > 300 kg, for slaughter (excl. heifers) 01/01/2012 31/12/2500 -01022969 01/01/2012 31/12/2500 LIBEN Live cows of a weight > 300 kg (excl. for slaughter and pure-bred for breeding and heifers) 01/01/2012 31/12/2500 -01022991 01/01/2012 31/12/2500 LIBEN Cattle of a weight > 300 kg, for slaughter (excl. heifers and cows) 01/01/2012 31/12/2500 -01022999 01/01/2012 31/12/2500 LIBEN Live cattle of a weight > 300 kg (excl. for slaughter, pure-bred for breeding and heifers and cows) 01/01/2012 31/12/2500 -010231 01/01/2012 31/12/2500 LIBEN Pure-bred buffalo for breeding 01/01/2012 31/12/2500 -01023100 01/01/2012 31/12/2500 LIBEN Pure-bred buffalo for breeding 01/01/2012 31/12/2500 -010239 01/01/2012 31/12/2500 LIBEN Live buffalo (excl. pure-bred for breeding) 01/01/2012 31/12/2500 -01023910 01/01/2012 31/12/2500 LIBEN Live domestic buffalo (excl. pure-bred for breeding) 01/01/2012 31/12/2500 -01023990 01/01/2012 31/12/2500 LIBEN Live buffalo (excl. domestic species and pure-bred for breeding) 01/01/2012 31/12/2500 -010290 01/01/1988 31/12/2500 LIBEN Live bovine animals (excl. cattle and buffalo) 01/01/1988 31/12/2500 -01029005 01/01/1993 31/12/2011 LIBEN Live domestic bovines of a weight <= 80 kg (excl. pure-bred breeding animals) 01/01/1993 31/12/2011 -01029010 01/01/1988 31/12/1992 LIBEN Domestic bovines, weighing =< 220 kg (excl. pure-bred for breeding) 01/01/1988 31/12/1992 -01029020 01/01/2012 31/12/2500 LIBEN Bovine pure-bred breeding animals (excl. cattle and buffalo) 01/01/2012 31/12/2500 -01029021 01/01/1993 31/12/2011 LIBEN Domestic bovines of a weight of > 80 kg and <= 160 kg, for slaughter 01/01/1993 31/12/2011 -01029029 01/01/1993 31/12/2011 LIBEN Live domestic bovines of a weight of > 80 kg and <= 160 kg (excl. animals for slaughter and pure-bred breeding animals) 01/01/1993 31/12/2011 -01029031 01/01/1988 31/12/1992 LIBEN Live heifers, weighing > 220 kg, (excl. pure-bred for breeding) 01/01/1988 31/12/1992 -01029033 01/01/1988 31/12/1992 LIBEN Live cows, weighing > 220 kg (excl. pure-bred for breeding) 01/01/1988 31/12/1992 -01029035 01/01/1988 31/12/1992 LIBEN Live bulls, weighing > 220 kg (excl. pure-bred for breeding) 01/01/1988 31/12/1992 -01029037 01/01/1988 31/12/1992 LIBEN Live steers, weighing > 220 kg 01/01/1988 31/12/1992 -01029041 01/01/1993 31/12/2011 LIBEN Domestic bovines of a weight of > 160 kg and <= 300 kg, for slaughter 01/01/1993 31/12/2011 -01029049 01/01/1993 31/12/2011 LIBEN Live domestic bovines of a weight of > 160 kg and <= 300 kg (excl. animals for slaughter and pure-bred breeding animals) 01/01/1993 31/12/2011 -01029051 01/01/1993 31/12/2011 LIBEN Heifers "female domestic bovines that have never calved" of a weight of > 300 kg, for slaughter 01/01/1993 31/12/2011 -01029059 01/01/1993 31/12/2011 LIBEN Live heifers "female domestic bovines that have never calved" of a weight of > 300 kg (excl. animals for slaughter and pure-bred breeding animals) 01/01/1993 31/12/2011 -01029061 01/01/1993 31/12/2011 LIBEN Cows "female domestic bovines" of a weight of > 300 kg, for slaughter (excl. heifers) 01/01/1993 31/12/2011 -01029069 01/01/1993 31/12/2011 LIBEN Live cows "female domestic bovines" of a weight of > 300 kg (excl. animals for slaughter, heifers and pure-bred breeding animals) 01/01/1993 31/12/2011 -01029071 01/01/1993 31/12/2011 LIBEN Live domestic bovines of a weight of > 300 kg, for slaughter (excl. heifers and cows) 01/01/1993 31/12/2011 -01029079 01/01/1993 31/12/2011 LIBEN Live domestic bovines of a weight of > 300 kg (excl. animals for slaughter, heifers, cows and pure-bred breeding animals) 01/01/1993 31/12/2011 -01029090 01/01/1988 31/12/2011 LIBEN Live non-domestic bovines (excl. pure-bred for breeding) 01/01/1988 31/12/2011 -01029091 01/01/2012 31/12/2500 LIBEN Live domestic bovine animals (excl. cattle and buffalo and pure-bred for breeding) 01/01/2012 31/12/2500 -01029099 01/01/2012 31/12/2012 LIBEN Live bovine animals (excl. cattle, buffalo, pure-bred for breeding and domestic species) 01/01/2012 31/12/2012 -01029099 01/01/2013 31/12/2500 LIBEN Live bovine animals (excl. cattle, buffalo, pure-bred for breeding and domestic species) 01/01/2013 31/12/2500 -0103 01/01/1988 31/12/2500 LIBEN Live swine 01/01/1988 31/12/2500 -010310 01/01/1988 31/12/2500 LIBEN Pure-bred breeding swine 01/01/1988 31/12/2500 -01031000 01/01/1988 31/12/2500 LIBEN Pure-bred breeding swine 01/01/1988 31/12/2500 -010391 01/01/1988 31/12/2500 LIBEN Live pure-bred swine, weighing < 50 kg (excl. pure-bred for breeding) 01/01/1988 31/12/2500 -01039110 01/01/1988 31/12/2500 LIBEN Domestic swine, weighing < 50 kg (excl. pure-bred for breeding) 01/01/1988 31/12/2500 -01039190 01/01/1988 31/12/2500 LIBEN Live non-domestic swine, weighing < 50 kg 01/01/1988 31/12/2500 -010392 01/01/1988 31/12/2500 LIBEN Live pure-bred swine, weighing >= 50 kg (excl. pure-bred for breeding) 01/01/1988 31/12/2500 -01039211 01/01/1988 31/12/2500 LIBEN Live domestic sows, having farrowed at least once, weighing >= 160 kg (excl. pure-bred for breeding) 01/01/1988 31/12/2500 -01039219 01/01/1988 31/12/2500 LIBEN Live domestic swine, weighing >= 50 kg (excl. sows having farrowed at least once and weighing >= 160 kg, and those pure-bred for breeding) 01/01/1988 31/12/2500 -01039290 01/01/1988 31/12/2500 LIBEN Live non-domestic swine, weighing >= 50 kg 01/01/1988 31/12/2500 -0104 01/01/1988 31/12/2500 LIBEN Live sheep and goats 01/01/1988 31/12/2500 -010410 01/01/1988 31/12/2500 LIBEN Live sheep 01/01/1988 31/12/2500 -01041010 01/01/1988 31/12/2500 LIBEN Pure-bred sheep for breeding 01/01/1988 31/12/2500 -01041030 01/01/1993 31/12/2500 LIBEN Live lambs "sheep up to a year old" (excl. purebred breeding animals) 01/01/1993 31/12/2500 -01041080 01/01/1993 31/12/2500 LIBEN Live sheep (excl. lambs and pure-bred breeding animals) 01/01/1993 31/12/2500 -01041090 01/01/1988 31/12/1992 LIBEN Live sheep (excl. pure-bred for breeding) 01/01/1988 31/12/1992 -010410SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 0104 10 01/01/2006 31/12/2500 -010420 01/01/1988 31/12/2500 LIBEN Live goats 01/01/1988 31/12/2500 -01042010 01/01/1988 31/12/2500 LIBEN Pure-bred breeding goats 01/01/1988 31/12/2500 -01042090 01/01/1988 31/12/2500 LIBEN Live goats (excl. pure-bred for breeding) 01/01/1988 31/12/2500 -0105 01/01/1988 31/12/2500 LIBEN Live poultry, "fowls of the species Gallus domesticus, ducks, geese, turkeys and guinea fowls" 01/01/1988 31/12/2500 -010511 01/01/1988 31/12/2500 LIBEN Live fowls of the species Gallus domesticus, weighing <= 185 g (excl. turkeys and guinea fowls) 01/01/1988 31/12/2500 -01051100 01/01/1988 31/12/1992 LIBEN Live fowls of species gallus domesticus, weighing =< 185 g (excl. turkeys and guinea fowls) 01/01/1988 31/12/1992 -01051111 01/01/1993 31/12/2500 LIBEN Grandparent and parent female chicks of fowls of the species Gallus domesticus laying stocks of a weight of <= 185 g 01/01/1993 31/12/2500 -01051119 01/01/1993 31/12/2500 LIBEN Grandparent and parent female chicks fowls of the species Gallus domesticus of a weight of <= 185 g (excl. laying stocks) 01/01/1993 31/12/2500 -01051191 01/01/1993 31/12/2500 LIBEN Laying stock "fowls of the species Gallus domesticus" of a weight of <= 185 g (excl. grandparent and parent female chicks) 01/01/1993 31/12/2500 -01051199 01/01/1993 31/12/2500 LIBEN Live fowls of the species Gallus domesticus of a weight of <= 185 g (excl. grandparent and parent female chicks and laying stocks) 01/01/1993 31/12/2500 -010512 01/01/1996 31/12/2500 LIBEN Live domestic turkeys, weighing <= 185 g 01/01/1996 31/12/2500 -01051200 01/01/1996 31/12/2500 LIBEN Live domestic turkeys, weighing <= 185 g 01/01/1996 31/12/2500 -010513 01/01/2012 31/12/2500 LIBEN Live domestic ducks, weighing <= 185 g 01/01/2012 31/12/2500 -01051300 01/01/2012 31/12/2500 LIBEN Live domestic ducks, weighing <= 185 g 01/01/2012 31/12/2500 -010514 01/01/2012 31/12/2500 LIBEN Live domestic geese, weighing <= 185 g 01/01/2012 31/12/2500 -01051400 01/01/2012 31/12/2500 LIBEN Live domestic geese, weighing <= 185 g 01/01/2012 31/12/2500 -010515 01/01/2012 31/12/2500 LIBEN Live domestic guinea fowls, weighing <= 185 g 01/01/2012 31/12/2500 -01051500 01/01/2012 31/12/2500 LIBEN Live domestic guinea fowls, weighing <= 185 g 01/01/2012 31/12/2500 -010519 01/01/1988 31/12/2011 LIBEN Live domestic ducks, geese and guinea fowls, weighing <= 185 g 01/01/1988 31/12/2011 -01051910 01/01/1988 31/12/1995 LIBEN Live domestic geese and turkeys, weighing <= 185 g 01/01/1988 31/12/1995 -01051920 01/01/1996 31/12/2011 LIBEN Live domestic geese, weighing <= 185 g 01/01/1996 31/12/2011 -01051990 01/01/1988 31/12/2011 LIBEN Live domestic ducks and guinea fowls, weighing <= 185 g 01/01/1988 31/12/2011 -010591 01/01/1988 31/12/1995 LIBEN Live fowls of species Gallus domesticus, weighing > 185 g (excl. turkeys and guinea fowls) 01/01/1988 31/12/1995 -01059100 01/01/1988 31/12/1995 LIBEN Live fowls of species Gallus domesticus, weighing > 185 g (excl. turkeys and guinea fowls) 01/01/1988 31/12/1995 -010592 01/01/1996 31/12/2006 LIBEN Live fowls of the species Gallus domesticus, weighing > 185 g but <= 2 kg 01/01/1996 31/12/2006 -01059200 01/01/1996 31/12/2006 LIBEN Live fowls of the species Gallus domesticus, weighing > 185 g but <= 2 kg 01/01/1996 31/12/2006 -010593 01/01/1996 31/12/2006 LIBEN Live fowls of the species Gallus domesticus, weighing > 2 kg 01/01/1996 31/12/2006 -01059300 01/01/1996 31/12/2006 LIBEN Live fowls of the species Gallus domesticus, weighing > 2 kg 01/01/1996 31/12/2006 -010594 01/01/2007 31/12/2500 LIBEN Live fowls of the species Gallus domesticus, weighing > 185 01/01/2007 31/12/2500 -01059400 01/01/2007 31/12/2500 LIBEN Live fowls of the species Gallus domesticus, weighing > 185 01/01/2007 31/12/2500 -010599 01/01/1988 31/12/2500 LIBEN Live domestic ducks, geese, turkeys and guinea fowls, weighing > 185 g 01/01/1988 31/12/2500 -01059910 01/01/1988 31/12/2500 LIBEN Live domestic ducks, weighing > 185 g 01/01/1988 31/12/2500 -01059920 01/01/1988 31/12/2500 LIBEN Live domestic geese, weighing > 185 g 01/01/1988 31/12/2500 -01059930 01/01/1988 31/12/2500 LIBEN Live domestic turkeys, weighing > 185 g 01/01/1988 31/12/2500 -01059950 01/01/1988 31/12/2500 LIBEN Live domestic guinea fowls, weighing > 185 g 01/01/1988 31/12/2500 -0106 01/01/1988 31/12/2001 LIBEN Live animals (excl. horses, asses, mules, hinnies, bovine animals, swine, sheep, goats, poultry, fish, crustaceans, molluscs and other aquatic invertebrates, and microorganic cultures etc.) 01/01/1988 31/12/2001 -0106 01/01/2002 31/12/2500 LIBEN Live animals (excl. horses, asses, mules, hinnies, bovine animals, swine, sheep, goats, poultry, fish, crustaceans, molluscs and other aquatic invertebrates, and microorganic cultures etc.) 01/01/2002 31/12/2500 -010600 01/01/1988 31/12/2001 LIBEN Live animals (excl. horses, asses, mules, hinnies, bovine animals, swine, sheep, goats, poultry, fish, crustaceans, molluscs and other aquatic invertebrates, and microorganic cultures etc.) 01/01/1988 31/12/2001 -01060010 01/01/1988 31/12/2001 LIBEN Live domestic rabbits 01/01/1988 31/12/2001 -01060020 01/01/1988 31/12/2001 LIBEN Live pigeons 01/01/1988 31/12/2001 -01060090 01/01/1993 31/12/2001 LIBEN Live animals (excl. horses, asses, mules, hinnies, bovines, pigs, sheep, goats, domestic poultry, domestic rabbits, pigeons, fish, crustaceans, molluscs and other aquatic invertebrates and cultures of micro-organisms, etc.) 01/01/1993 31/12/2001 -01060091 01/01/1988 31/12/1992 LIBEN Live animals primarily for human consumption (excl. horses, asses, mules, hinnies, bovine animals, swine, sheep, goats, poultry, fish, crustaceans, molluscs and other aquatic invertebrates) 01/01/1988 31/12/1992 -01060099 01/01/1988 31/12/1992 LIBEN Live animals (excl. primarily for human consumption, and horses, asses, mules, hinnies, bovine animals, swine, sheep, goats, poultry, fish, crustaceans, molluscs and other aquatic invertebrates, and microorganic cultures etc.) 01/01/1988 31/12/1992 -010611 01/01/2002 31/12/2500 LIBEN Live primates 01/01/2002 31/12/2500 -01061100 01/01/2002 31/12/2500 LIBEN Live primates 01/01/2002 31/12/2500 -010612 01/01/2002 31/12/2500 LIBEN Live whales, dolphins and porpoises (mammals of the order Cetacea); manatees and dugongs (mammals of the order Sirenia); seals, sea lions and walruses (mammals of the suborder Pinnipedia) 01/01/2002 31/12/2500 -01061200 01/01/2002 31/12/2011 LIBEN Live whales, dolphins and purpoises "mammals of the order Cetacea" and manatees and dugongs "mammals of the order Sirenia" 01/01/2002 31/12/2011 -01061200 01/01/2012 31/12/2500 LIBEN Live whales, dolphins and porpoises (mammals of the order Cetacea); manatees and dugongs (mammals of the order Sirenia); seals, sea lions and walruses (mammals of the suborder Pinnipedia) 01/01/2012 31/12/2500 -010613 01/01/2012 31/12/2500 LIBEN Live camels and other camelids [Camelidae] 01/01/2012 31/12/2500 -01061300 01/01/2012 31/12/2500 LIBEN Live camels and other camelids [Camelidae] 01/01/2012 31/12/2500 -010614 01/01/2012 31/12/2500 LIBEN Live rabbits and hares 01/01/2012 31/12/2500 -01061410 01/01/2012 31/12/2500 LIBEN Live domestic rabbits 01/01/2012 31/12/2500 -01061490 01/01/2012 31/12/2500 LIBEN Live rabbits and hares (excl. domestic rabbits) 01/01/2012 31/12/2500 -010619 01/01/2002 31/12/2500 LIBEN Live mammals (excl. primates, whales, dolphins and porpoises, manatees and dugongs, seals, sea lions and walruses, camels and other camelids, rabbits and hares, horses, asses, mules, hinnies, bovines, pigs, sheep and goats) 01/01/2002 31/12/2500 -01061900 01/01/2012 31/12/2500 LIBEN Live mammals (excl. primates, whales, dolphins and porpoises, manatees and dugongs, seals, sea lions and walruses, camels and other camelids, rabbits and hares, horses, asses, mules, hinnies, bovines, pigs, sheep and goats) 01/01/2012 31/12/2500 -01061910 01/01/2002 31/12/2011 LIBEN Live domestic rabbits 01/01/2002 31/12/2011 -01061990 01/01/2002 31/12/2011 LIBEN Live mammals (excl. primates, whales, dolphins and purpoises "mammals of the order Cetacea", manatees and dugongs "mammals of the order Sirenia", horses, asses, mules, hinnies, bovines, pigs, sheep, goats and domestic rabbits) 01/01/2002 31/12/2011 -010620 01/01/2002 31/12/2500 LIBEN Live reptiles "e.g. snakes, turtles, alligators, caymans, iguanas, gavials and lizards" 01/01/2002 31/12/2500 -01062000 01/01/2002 31/12/2500 LIBEN Live reptiles "e.g. snakes, turtles, alligators, caymans, iguanas, gavials and lizards" 01/01/2002 31/12/2500 -010631 01/01/2002 31/12/2500 LIBEN Live birds of prey 01/01/2002 31/12/2500 -01063100 01/01/2002 31/12/2500 LIBEN Live birds of prey 01/01/2002 31/12/2500 -010632 01/01/2002 31/12/2500 LIBEN Live psittaciformes "incl. parrots, parrakeets, macaws and cockatoos" 01/01/2002 31/12/2500 -01063200 01/01/2002 31/12/2500 LIBEN Live psittaciformes "incl. parrots, parrakeets, macaws and cockatoos" 01/01/2002 31/12/2500 -010633 01/01/2012 31/12/2500 LIBEN Live ostriches, and emus [Dromaius novaehollandiae] 01/01/2012 31/12/2500 -01063300 01/01/2012 31/12/2500 LIBEN Live ostriches, and emus [Dromaius novaehollandiae] 01/01/2012 31/12/2500 -010639 01/01/2002 31/12/2500 LIBEN Live birds (excl. birds of prey, psittaciformes, parrots, parrakeets, macaws, cockatoos, ostriches and emus) 01/01/2002 31/12/2500 -01063910 01/01/2002 31/12/2500 LIBEN Live pigeons 01/01/2002 31/12/2500 -01063980 01/01/2012 31/12/2500 LIBEN Live birds (excl. birds of prey, psittaciformes, parrots, parrakeets, macaws, cockatoos, ostriches, emus and pigeons) 01/01/2012 31/12/2500 -01063990 01/01/2002 31/12/2011 LIBEN Live birds (excl. birds of prey, psittaciformes "incl. parrots, parrakeets, macaws and cockatoos" and pigeons) 01/01/2002 31/12/2011 -010641 01/01/2012 31/12/2500 LIBEN Live bees 01/01/2012 31/12/2500 -01064100 01/01/2012 31/12/2500 LIBEN Live bees 01/01/2012 31/12/2500 -010649 01/01/2012 31/12/2500 LIBEN Live insects (excl. bees) 01/01/2012 31/12/2500 -01064900 01/01/2012 31/12/2500 LIBEN Live insects (excl. bees) 01/01/2012 31/12/2500 -010690 01/01/2002 31/12/2500 LIBEN Live animals (excl. mammals, reptiles, birds, insects, fish, crustaceans, molluscs and other aquatic invertebrates and cultures of micro-organisms, etc.) 01/01/2002 31/12/2500 -01069000 01/01/2002 31/12/2011 LIBEN Live animals (excl. mammals, reptiles, birds, fish, crustaceans, molluscs and other aquatic invertebrates and cultures of micro-organisms, etc.) 01/01/2002 31/12/2011 -01069000 01/01/2012 31/12/2500 LIBEN Live animals (excl. mammals, reptiles, birds, insects, fish, crustaceans, molluscs and other aquatic invertebrates and cultures of micro-organisms, etc.) 01/01/2012 31/12/2500 -01CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 01 01/01/2002 31/12/2500 -01CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 01 01/01/2002 31/12/2500 -01CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 01 01/01/2002 31/12/2500 -01MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -01MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -01MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -01SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 01 01/01/1988 31/12/2500 -01SSS0 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 01 and SITC section 0 01/01/1997 31/12/2500 -01SSS001 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 01 and SITC group 001 01/01/1997 31/12/2500 -01SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 01 and SITC section 9 01/01/1988 31/12/1996 -01SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 01 and SITC section 9 01/01/1997 31/12/2500 -01SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 01 and SITC group 999 01/01/1988 31/12/1996 -01SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 01 and SITC group 999 01/01/1997 31/12/2500 -02 01/01/1988 31/12/2500 LIBEN MEAT AND EDIBLE MEAT OFFAL 01/01/1988 31/12/2500 -0201 01/01/1988 31/12/2500 LIBEN Meat of bovine animals, fresh or chilled 01/01/1988 31/12/2500 -020110 01/01/1988 31/12/2500 LIBEN Carcases or half-carcases of bovine animals, fresh or chilled 01/01/1988 31/12/2500 -02011000 01/01/1993 31/12/2500 LIBEN Carcases or half-carcases of bovine animals, fresh or chilled 01/01/1993 31/12/2500 -02011010 01/01/1988 31/12/1992 LIBEN Fresh or chilled bovine carcases weighing=< 136 kg, and 1/2 carcases weighing =< 68 kg 01/01/1988 31/12/1992 -02011090 01/01/1988 31/12/1992 LIBEN Fresh or chilled bovine carcases weighing> 136 kg and 1/2 carcases weighing > 68 kg 01/01/1988 31/12/1992 -020120 01/01/1988 31/12/2500 LIBEN Fresh or chilled bovine cuts, with bone in (excl. carcases and 1/2 carcases) 01/01/1988 31/12/2500 -02012011 01/01/1988 31/12/1988 LIBEN Fresh or chilled unboned 'compensated' bovine quarters, weighing =< 136 kg 01/01/1988 31/12/1988 -02012019 01/01/1988 31/12/1988 LIBEN Fresh or chilled unboned 'compensated' bovine quarters, weighing > 136 kg 01/01/1988 31/12/1988 -02012020 01/01/1993 31/12/2500 LIBEN "Compensated" quarters of bovine animals with bone in, fresh or chilled 01/01/1993 31/12/2500 -02012021 01/01/1989 31/12/1992 LIBEN Fresh or chilled unboned 'compensated' bovine quarters, weighing =< 68 kg 01/01/1989 31/12/1992 -02012029 01/01/1989 31/12/1992 LIBEN Fresh or chilled unboned 'compensated' bovine quarters, weighing > 68 kg 01/01/1989 31/12/1992 -02012030 01/01/1993 31/12/2500 LIBEN Unseparated or separated forequarters of bovine animals, with bone in, fresh or chilled 01/01/1993 31/12/2500 -02012031 01/01/1988 31/12/1992 LIBEN Fresh or chilled unboned unseparated bovine forequarters weighing =< 60 kg, and separated forequarters weighing =< 30 kg 01/01/1988 31/12/1992 -02012039 01/01/1988 31/12/1992 LIBEN Fresh or chilled unboned unseparated bovine forequarters weighing > 60 kg, and separated forequarters weighing > 30 kg 01/01/1988 31/12/1992 -02012050 01/01/1993 31/12/2500 LIBEN Unseparated or separated hindquarters of bovine animals, with bone in, fresh or chilled 01/01/1993 31/12/2500 -02012051 01/01/1988 31/12/1992 LIBEN Fresh or chilled unboned unseparated bovine hindquarters weighing =< 75 kg, and separated hindquarters weighing =< 40 kg 01/01/1988 31/12/1992 -02012059 01/01/1988 31/12/1992 LIBEN Fresh or chilled unboned unseparated bovine hindquarters weighing > 75 kg, and separated hindquarters weighing > 40 kg 01/01/1988 31/12/1992 -02012090 01/01/1988 31/12/2500 LIBEN Fresh or chilled bovine cuts, with bone in (excl. carcases and half-carcases, "compensated quarters", forequarters and hindquarters) 01/01/1988 31/12/2500 -020130 01/01/1988 31/12/2500 LIBEN Fresh or chilled bovine meat, boneless 01/01/1988 31/12/2500 -02013000 01/01/1988 31/12/2500 LIBEN Fresh or chilled bovine meat, boneless 01/01/1988 31/12/2500 -0202 01/01/1988 31/12/2500 LIBEN Meat of bovine animals, frozen 01/01/1988 31/12/2500 -020210 01/01/1988 31/12/2500 LIBEN Frozen bovine carcases and half-carcases 01/01/1988 31/12/2500 -02021000 01/01/1988 31/12/2500 LIBEN Frozen bovine carcases and half-carcases 01/01/1988 31/12/2500 -020220 01/01/1988 31/12/2500 LIBEN Frozen bovine cuts, with bone in (excl. carcases and half-carcases) 01/01/1988 31/12/2500 -02022010 01/01/1988 31/12/2500 LIBEN Frozen "compensated" bovine quarters, with bone in 01/01/1988 31/12/2500 -02022030 01/01/1988 31/12/2500 LIBEN Frozen unseparated or separated bovine forequarters, with bone in 01/01/1988 31/12/2500 -02022050 01/01/1988 31/12/2500 LIBEN Frozen unseparated or separated bovine hindquarters, with bone in 01/01/1988 31/12/2500 -02022090 01/01/1988 31/12/2500 LIBEN Frozen bovine cuts, with bone in (excl. carcases and half-carcases, "compensated" quarters, forequarters and hindquarters) 01/01/1988 31/12/2500 -020230 01/01/1988 31/12/2500 LIBEN Frozen, boneless meat of bovine animals 01/01/1988 31/12/2500 -02023010 01/01/1988 31/12/2500 LIBEN Frozen bovine boneless forequarters, whole or cut in max. 5 pieces, each quarter in 1 block; "compensated" quarters in 2 blocks, one containing the forequarter, whole or cut in max. 5 pieces, and the other the whole hindquarter, excl. the tenderloin, in one piece 01/01/1988 31/12/2500 -02023050 01/01/1988 31/12/2500 LIBEN Frozen bovine boneless crop, chuck and blade and brisket cuts 01/01/1988 31/12/2500 -02023090 01/01/1988 31/12/2500 LIBEN Frozen bovine boneless meat (excl. forequarters, whole or cut into a maximum of five pieces, each quarter being in a single block "compensated" quarters in two blocks, one of which contains the forequarter, whole or cut into a maximum of five pieces, and the other, the hindquarter, excl. the tenderloin, in one piece, crop, chuck and blade and brisket cuts) 01/01/1988 31/12/2500 -0203 01/01/1988 31/12/2500 LIBEN Meat of swine, fresh, chilled or frozen 01/01/1988 31/12/2500 -020311 01/01/1988 31/12/2500 LIBEN Fresh or chilled carcases and half-carcases of swine 01/01/1988 31/12/2500 -02031110 01/01/1988 31/12/2500 LIBEN Fresh or chilled domestic swine carcases and half-carcases 01/01/1988 31/12/2500 -02031190 01/01/1988 31/12/2500 LIBEN Fresh or chilled non-domestic swine carcases and half-carcases 01/01/1988 31/12/2500 -020312 01/01/1988 31/12/2500 LIBEN Fresh or chilled hams, shoulders and cuts thereof of swine, with bone in 01/01/1988 31/12/2500 -02031211 01/01/1988 31/12/2500 LIBEN Fresh or chilled with bone in, domestic swine hams and cuts thereof 01/01/1988 31/12/2500 -02031219 01/01/1988 31/12/2500 LIBEN Fresh or chilled with bone in, domestic swine shoulders and cuts thereof 01/01/1988 31/12/2500 -02031290 01/01/1988 31/12/2500 LIBEN Fresh or chilled hams, shoulders and cuts thereof with bone in of non-domestic swine 01/01/1988 31/12/2500 -020319 01/01/1988 31/12/2500 LIBEN Fresh or chilled meat of swine (excl. carcases and half-carcases, and hams, shoulders and cuts thereof, with bone in) 01/01/1988 31/12/2500 -02031911 01/01/1988 31/12/2500 LIBEN Fresh or chilled fore-ends and cuts thereof of domestic swine 01/01/1988 31/12/2500 -02031913 01/01/1988 31/12/2500 LIBEN Fresh or chilled loins and cuts thereof of domestic swine 01/01/1988 31/12/2500 -02031915 01/01/1988 31/12/2500 LIBEN Fresh or chilled bellies "streaky" and cuts thereof of domestic swine 01/01/1988 31/12/2500 -02031955 01/01/1988 31/12/2500 LIBEN Fresh or chilled boneless meat of domestic swine (excl. bellies and cuts thereof) 01/01/1988 31/12/2500 -02031959 01/01/1988 31/12/2500 LIBEN Fresh or chilled meat of domestic swine, with bone in (excl. carcases and half-carcases, hams, shoulders and cuts thereof, and fore-ends, loins, bellies and cuts thereof) 01/01/1988 31/12/2500 -02031990 01/01/1988 31/12/2500 LIBEN Fresh or chilled meat of non-domestic swine (excl. carcases and half-carcases, hams, shoulders and cuts thereof, with bone in) 01/01/1988 31/12/2500 -020321 01/01/1988 31/12/2500 LIBEN Frozen carcases and half-carcases of swine 01/01/1988 31/12/2500 -02032110 01/01/1988 31/12/2500 LIBEN Frozen domestic swine carcases and half-carcases 01/01/1988 31/12/2500 -02032190 01/01/1988 31/12/2500 LIBEN Frozen non-domestic swine carcases and half-carcases 01/01/1988 31/12/2500 -020322 01/01/1988 31/12/2500 LIBEN Frozen hams, shoulders and cuts thereof of swine, with bone in 01/01/1988 31/12/2500 -02032211 01/01/1988 31/12/2500 LIBEN Frozen hams and cuts thereof of domestic swine, with bone in 01/01/1988 31/12/2500 -02032219 01/01/1988 31/12/2500 LIBEN Frozen shoulders and cuts thereof of domestic swine, with bone in 01/01/1988 31/12/2500 -02032290 01/01/1988 31/12/2500 LIBEN Frozen hams, shoulders and cuts thereof of non-domestic swine, with bone in 01/01/1988 31/12/2500 -020329 01/01/1988 31/12/2500 LIBEN Frozen meat of swine (excl. carcases and half-carcases, and hams, shoulders and cuts thereof, with bone in) 01/01/1988 31/12/2500 -02032911 01/01/1988 31/12/2500 LIBEN Frozen fore-ends and cuts thereof of domestic swine 01/01/1988 31/12/2500 -02032913 01/01/1988 31/12/2500 LIBEN Frozen loins and cuts thereof of domestic swine, with bone in 01/01/1988 31/12/2500 -02032915 01/01/1988 31/12/2500 LIBEN Frozen bellies "streaky" and cuts thereof of domestic swine 01/01/1988 31/12/2500 -02032955 01/01/1988 31/12/2500 LIBEN Frozen boneless meat of domestic swine (excl. bellies and cuts thereof) 01/01/1988 31/12/2500 -02032959 01/01/1988 31/12/2500 LIBEN Frozen meat of domestic swine, with bone in (excl. carcases and half-carcases, hams, shoulders and cuts thereof, and fore-ends, loins, bellies and cuts thereof) 01/01/1988 31/12/2500 -02032990 01/01/1988 31/12/2500 LIBEN Frozen meat of non-domestic swine (excl. carcases and half-carcases and hams, shoulders and cuts thereof, with bone in) 01/01/1988 31/12/2500 -0204 01/01/1988 31/12/2500 LIBEN Meat of sheep or goats, fresh, chilled or frozen 01/01/1988 31/12/2500 -020410 01/01/1988 31/12/2500 LIBEN Fresh or chilled lamb carcases and half-carcases 01/01/1988 31/12/2500 -02041000 01/01/1988 31/12/2500 LIBEN Fresh or chilled lamb carcases and half-carcases 01/01/1988 31/12/2500 -020421 01/01/1988 31/12/2500 LIBEN Fresh or chilled sheep carcases and half-carcases (excl. lambs) 01/01/1988 31/12/2500 -02042100 01/01/1988 31/12/2500 LIBEN Fresh or chilled sheep carcases and half-carcases (excl. lambs) 01/01/1988 31/12/2500 -020422 01/01/1988 31/12/2500 LIBEN Fresh or chilled cuts of sheep, with bone in (excl. carcases and half-carcases) 01/01/1988 31/12/2500 -02042210 01/01/1988 31/12/2500 LIBEN Fresh or chilled sheep short forequarters 01/01/1988 31/12/2500 -02042230 01/01/1988 31/12/2500 LIBEN Fresh or chilled sheep chines and/or best ends 01/01/1988 31/12/2500 -02042250 01/01/1988 31/12/2500 LIBEN Fresh or chilled sheep legs 01/01/1988 31/12/2500 -02042290 01/01/1988 31/12/2500 LIBEN Fresh or chilled boneless cuts of sheep, with bone in (excl. carcases and half-carcases, short forequarters, chines and/or best ends, and legs) 01/01/1988 31/12/2500 -020423 01/01/1988 31/12/2500 LIBEN Fresh or chilled boneless cuts of sheep 01/01/1988 31/12/2500 -02042300 01/01/1988 31/12/2500 LIBEN Fresh or chilled boneless cuts of sheep 01/01/1988 31/12/2500 -020430 01/01/1988 31/12/2500 LIBEN Frozen lamb carcases and half-carcases 01/01/1988 31/12/2500 -02043000 01/01/1988 31/12/2500 LIBEN Frozen lamb carcases and half-carcases 01/01/1988 31/12/2500 -020441 01/01/1988 31/12/2500 LIBEN Frozen sheep carcases and half-carcases (excl. lambs) 01/01/1988 31/12/2500 -02044100 01/01/1988 31/12/2500 LIBEN Frozen sheep carcases and half-carcases (excl. lambs) 01/01/1988 31/12/2500 -020442 01/01/1988 31/12/2500 LIBEN Frozen cuts of sheep, with bone in (excl. carcases and half-carcases) 01/01/1988 31/12/2500 -02044210 01/01/1988 31/12/2500 LIBEN Frozen sheep short forequarters 01/01/1988 31/12/2500 -02044230 01/01/1988 31/12/2500 LIBEN Frozen sheep chines and/or best ends 01/01/1988 31/12/2500 -02044250 01/01/1988 31/12/2500 LIBEN Frozen sheep legs 01/01/1988 31/12/2500 -02044290 01/01/1988 31/12/2500 LIBEN Frozen cuts of sheep, with bone in (excl. carcases and half-carcases, short forequarters, chines and/or best ends, and legs) 01/01/1988 31/12/2500 -020443 01/01/1988 31/12/2500 LIBEN Frozen boneless cuts of sheep 01/01/1988 31/12/2500 -02044300 01/01/1988 31/12/1992 LIBEN Frozen boned cuts of sheep 01/01/1988 31/12/1992 -02044310 01/01/1993 31/12/2500 LIBEN Frozen meat of lambs, boneless, frozen 01/01/1993 31/12/2500 -02044390 01/01/1993 31/12/2500 LIBEN Frozen meat of sheep, boneless (excl. lamb) 01/01/1993 31/12/2500 -020450 01/01/1988 31/12/2500 LIBEN Fresh, chilled or frozen meat of goats 01/01/1988 31/12/2500 -02045011 01/01/1988 31/12/2500 LIBEN Fresh or chilled goat carcases and half-carcases 01/01/1988 31/12/2500 -02045013 01/01/1988 31/12/2500 LIBEN Fresh or chilled goat short forequarters 01/01/1988 31/12/2500 -02045015 01/01/1988 31/12/2500 LIBEN Fresh or chilled goat chines and/or best ends 01/01/1988 31/12/2500 -02045019 01/01/1988 31/12/2500 LIBEN Fresh or chilled legs of goat 01/01/1988 31/12/2500 -02045031 01/01/1988 31/12/2500 LIBEN Fresh or chilled cuts of goat, with bone in (excl. carcases and half-carcases, short forequarters, chines and/or best ends, and legs) 01/01/1988 31/12/2500 -02045039 01/01/1988 31/12/2500 LIBEN Fresh or chilled boneless cuts of goat 01/01/1988 31/12/2500 -02045051 01/01/1988 31/12/2500 LIBEN Frozen goat carcases and half-carcases 01/01/1988 31/12/2500 -02045053 01/01/1988 31/12/2500 LIBEN Frozen goat short forequarters 01/01/1988 31/12/2500 -02045055 01/01/1988 31/12/2500 LIBEN Frozen goat chines and/or best ends 01/01/1988 31/12/2500 -02045059 01/01/1988 31/12/2500 LIBEN Frozen goat legs 01/01/1988 31/12/2500 -02045071 01/01/1988 31/12/2500 LIBEN Frozen cuts of goat, with bone in (excl. carcases and half-carcases, short forequarters, chines and/or best ends, and legs) 01/01/1988 31/12/2500 -02045079 01/01/1988 31/12/2500 LIBEN Frozen boneless cuts of goat 01/01/1988 31/12/2500 -0205 01/01/1988 31/12/2500 LIBEN Meat of horses, asses, mules or hinnies, fresh, chilled or frozen 01/01/1988 31/12/2500 -020500 01/01/1988 31/12/2500 LIBEN Meat of horses, asses, mules or hinnies, fresh, chilled or frozen 01/01/1988 31/12/2500 -02050000 01/01/1988 31/12/1992 LIBEN Meat of horses, asses, mules or hinnies, fresh, chilled or frozen 01/01/1988 31/12/1992 -02050011 01/01/1993 31/12/2003 LIBEN Fresh or chilled meat of horses 01/01/1993 31/12/2003 -02050019 01/01/1993 31/12/2003 LIBEN Frozen meat of horses 01/01/1993 31/12/2003 -02050020 01/01/2004 31/12/2500 LIBEN Fresh or chilled meat of horses, asses, mules or hinnies 01/01/2004 31/12/2500 -02050080 01/01/2004 31/12/2500 LIBEN Frozen meat of horses, asses, mules or hinnies 01/01/2004 31/12/2500 -02050090 01/01/1993 31/12/2003 LIBEN Fresh, chilled or frozen meat of asses, mules or hinnies 01/01/1993 31/12/2003 -0206 01/01/1988 31/12/2500 LIBEN Edible offal of bovine animals, swine, sheep, goats, horses, asses, mules or hinnies, fresh, chilled or frozen 01/01/1988 31/12/2500 -020610 01/01/1988 31/12/2500 LIBEN Fresh or chilled edible offal of bovine animals 01/01/1988 31/12/2500 -02061010 01/01/1988 31/12/2500 LIBEN Fresh or chilled edible bovine offal for manufacture of pharmaceutical products 01/01/1988 31/12/2500 -02061091 01/01/1988 31/12/2007 LIBEN Fresh or chilled edible bovine livers (excl. for manufacture of pharmaceutical products) 01/01/1988 31/12/2007 -02061095 01/01/1988 31/12/2500 LIBEN Fresh or chilled edible bovine thick and thin skirt (excl. for manufacture of pharmaceutical products) 01/01/1988 31/12/2500 -02061098 01/01/2008 31/12/2500 LIBEN Fresh or chilled edible bovine offal (excl. for manufacture of pharmaceutical products, thick and thin skirt) 01/01/2008 31/12/2500 -02061099 01/01/1988 31/12/2007 LIBEN Fresh or chilled edible bovine offal (excl. for manufacture of pharmaceutical products, livers and thick and thin skirt) 01/01/1988 31/12/2007 -020621 01/01/1988 31/12/2500 LIBEN Frozen edible bovine tongues 01/01/1988 31/12/2500 -02062100 01/01/1988 31/12/2500 LIBEN Frozen edible bovine tongues 01/01/1988 31/12/2500 -020622 01/01/1988 31/12/2500 LIBEN Frozen edible bovine livers 01/01/1988 31/12/2500 -02062200 01/01/2001 31/12/2500 LIBEN Frozen edible bovine livers 01/01/2001 31/12/2500 -02062210 01/01/1988 31/12/2000 LIBEN Frozen edible bovine livers for manufacture of pharmaceutical products 01/01/1988 31/12/2000 -02062290 01/01/1988 31/12/2000 LIBEN Frozen edible bovine livers (excl. those for manufacture of pharmaceutical products) 01/01/1988 31/12/2000 -020629 01/01/1988 31/12/2500 LIBEN Frozen edible bovine offal (excl. tongues and livers) 01/01/1988 31/12/2500 -02062910 01/01/1988 31/12/2500 LIBEN Frozen edible bovine offal for manufacture of pharmaceutical products (excl. tongues and livers) 01/01/1988 31/12/2500 -02062991 01/01/1988 31/12/2500 LIBEN Frozen edible bovine thick and thin skirt (excl. for manufacture of pharmaceutical products) 01/01/1988 31/12/2500 -02062999 01/01/1988 31/12/2500 LIBEN Frozen edible bovine offal (excl. for manufacture of pharmaceutical products, tongues, livers and thick and thin skirt) 01/01/1988 31/12/2500 -020630 01/01/1988 31/12/2500 LIBEN Fresh or chilled edible offal of swine 01/01/1988 31/12/2500 -02063000 01/01/2004 31/12/2500 LIBEN Fresh or chilled edible offal of swine 01/01/2004 31/12/2500 -02063010 01/01/1988 31/12/2000 LIBEN Fresh or chilled edible swine offal for manufacture of pharmaceutical products 01/01/1988 31/12/2000 -02063020 01/01/2001 31/12/2003 LIBEN Fresh or chilled edible livers of domestic swine 01/01/2001 31/12/2003 -02063021 01/01/1988 31/12/2000 LIBEN Fresh or chilled edible livers of domestic swine (excl. for manufacture of pharmaceutical products) 01/01/1988 31/12/2000 -02063030 01/01/2001 31/12/2003 LIBEN Fresh or chilled edible domestic swine offal (excl. livers) 01/01/2001 31/12/2003 -02063031 01/01/1988 31/12/2000 LIBEN Fresh or chilled edible domestic swine offal (excl. livers and offal for manufacture of pharmaceutical products) 01/01/1988 31/12/2000 -02063080 01/01/2001 31/12/2003 LIBEN Fresh or chilled edible non-domestic swine offal 01/01/2001 31/12/2003 -02063090 01/01/1988 31/12/2000 LIBEN Fresh or chilled edible non-domestic swine offal (excl. for manufacture of pharmaceutical products) 01/01/1988 31/12/2000 -020641 01/01/1988 31/12/2500 LIBEN Frozen edible livers of swine 01/01/1988 31/12/2500 -02064100 01/01/2004 31/12/2500 LIBEN Frozen edible livers of swine 01/01/2004 31/12/2500 -02064110 01/01/1988 31/12/2000 LIBEN Frozen edible swine livers for manufacture of pharmaceutical products 01/01/1988 31/12/2000 -02064120 01/01/2001 31/12/2003 LIBEN Frozen edible livers of domestic swine 01/01/2001 31/12/2003 -02064180 01/01/2001 31/12/2003 LIBEN Frozen edible non-domestic swine livers 01/01/2001 31/12/2003 -02064191 01/01/1988 31/12/2000 LIBEN Frozen edible livers of domestic swine (excl. for manufacture of pharmaceutical products) 01/01/1988 31/12/2000 -02064199 01/01/1988 31/12/2000 LIBEN Frozen edible non-domestic swine livers (excl. for manufacture of pharmaceutical products) 01/01/1988 31/12/2000 -020649 01/01/1988 31/12/2500 LIBEN Edible offal of swine, frozen (excl. livers) 01/01/1988 31/12/2500 -02064900 01/01/2008 31/12/2500 LIBEN Edible offal of swine, frozen (excl. livers) 01/01/2008 31/12/2500 -02064910 01/01/1988 31/12/2000 LIBEN Frozen edible swine offal for manufacture of pharmaceutical products (excl. livers) 01/01/1988 31/12/2000 -02064920 01/01/2001 31/12/2007 LIBEN Frozen edible offal of domestic swine (excl. livers) 01/01/2001 31/12/2007 -02064980 01/01/2001 31/12/2007 LIBEN Frozen edible offal of non-domestic swine (excl. livers) 01/01/2001 31/12/2007 -02064991 01/01/1988 31/12/2000 LIBEN Frozen edible offal of domestic swine (excl. livers and offal for manufacture of pharmaceutical products) 01/01/1988 31/12/2000 -02064999 01/01/1988 31/12/2000 LIBEN Frozen edible offal of non-domestic swine (excl. livers and for manufacture of pharmaceutical products) 01/01/1988 31/12/2000 -020680 01/01/1988 31/12/2500 LIBEN Fresh or chilled edible offal of sheep, goats, horses, asses, mules and hinnies 01/01/1988 31/12/2500 -02068010 01/01/1988 31/12/2500 LIBEN Fresh or chilled edible offal of sheep, goats, horses, asses, mules and hinnies, for manufacture of pharmaceutical products 01/01/1988 31/12/2500 -02068091 01/01/1988 31/12/2500 LIBEN Fresh or chilled edible offal of horses, asses, mules and hinnies (excl. for manufacture of pharmaceutical products) 01/01/1988 31/12/2500 -02068099 01/01/1988 31/12/2500 LIBEN Fresh or chilled edible offal of sheep and goats (excl. for manufacture of pharmaceutical products) 01/01/1988 31/12/2500 -020690 01/01/1988 31/12/2500 LIBEN Frozen edible offal of sheep, goats, horses, asses, mules and hinnies 01/01/1988 31/12/2500 -02069010 01/01/1988 31/12/2500 LIBEN Frozen edible offal of sheep, goats, horses, mules and hinnies, for manufacture of pharmaceutical products 01/01/1988 31/12/2500 -02069091 01/01/1988 31/12/2500 LIBEN Frozen edible offal of horses, asses, mules and hinnies (excl. for manufacture of pharmaceutical products) 01/01/1988 31/12/2500 -02069099 01/01/1988 31/12/2500 LIBEN Frozen edible offal of sheep and goats (excl. for manufacture of pharmaceutical products) 01/01/1988 31/12/2500 -0207 01/01/1988 31/12/2500 LIBEN Meat and edible offal of fowls of the species Gallus domesticus, ducks, geese, turkeys and guinea fowls, fresh, chilled or frozen 01/01/1988 31/12/2500 -020710 01/01/1988 31/12/1995 LIBEN Fowls of the species Gallus domesticus, ducks, geese, turkeys and guinea fowls, not cut in pieces, fresh or chilled 01/01/1988 31/12/1995 -02071011 01/01/1988 31/12/1995 LIBEN Fresh or chilled, plucked and gutted fowls of species Gallus domesticus, with heads and feet, called"83% chickens" (excl. turkeys and guinea fowls) 01/01/1988 31/12/1995 -02071015 01/01/1988 31/12/1995 LIBEN Fresh or chilled, plucked and drawn fowls of species Gallus domesticus, without heads and feet but with necks, hearts, livers and gizzards, called "70% chickens" (excl. turkeys and guinea fowls) 01/01/1988 31/12/1995 -02071019 01/01/1988 31/12/1995 LIBEN Fresh or chilled, plucked and drawn fowls of species Gallus domesticus, without heads, feet, necks, hearts, livers and gizzards, called "65% chickens", and other forms of fresh or chilled fowl, not cut in pieces (excl. "83% and 70% chickens", turkeys and guinea fowls) 01/01/1988 31/12/1995 -02071031 01/01/1988 31/12/1995 LIBEN Fresh or chilled, plucked and drawn turkeys of the species domesticus, without heads and feet but with necks, hearts, livers and gizzards, called "80% turkeys" 01/01/1988 31/12/1995 -02071039 01/01/1988 31/12/1995 LIBEN Fresh or chilled, plucked and drawn turkeys of the species domesticus, without heads, feet, necks, hearts, livers and gizzards, called "73% turkeys", and other forms of fresh or chilled turkeys, not cut in pieces (excl. "80% turkeys") 01/01/1988 31/12/1995 -02071051 01/01/1988 31/12/1995 LIBEN Fresh or chilled, plucked, bled, gutted or not drawn ducks of the species domesticus with heads and feet, called "85% ducks" 01/01/1988 31/12/1995 -02071055 01/01/1988 31/12/1995 LIBEN Fresh or chilled, plucked and drawn ducks of the species domesticus, without heads and feet but with necks, hearts, livers and gizzard, called "70% ducks" 01/01/1988 31/12/1995 -02071059 01/01/1988 31/12/1995 LIBEN Fresh or chilled, plucked and drawn ducks of the species domesticus, without heads, feet, necks, hearts, livers and gizzards, called "63% ducks", and other forms of ducks, not cut in pieces (excl. "85% and 70% ducks") 01/01/1988 31/12/1995 -02071071 01/01/1988 31/12/1995 LIBEN Fresh or chilled, plucked, bled, not drawn geese of the species domesticus with heads and feet, called "82% geese" 01/01/1988 31/12/1995 -02071079 01/01/1988 31/12/1995 LIBEN Fresh or chilled, plucked and drawn geese of the species domesticus without heads and feet, with or without hearts and gizzards, called "75% geese", and other forms of geese, not cut in pieces (excl. "82% geese") 01/01/1988 31/12/1995 -02071090 01/01/1988 31/12/1995 LIBEN Fresh or chilled guinea fowls, not cut into pieces 01/01/1988 31/12/1995 -020711 01/01/1996 31/12/2500 LIBEN Fresh or chilled fowls of the species Gallus domesticus, not cut in pieces 01/01/1996 31/12/2500 -02071110 01/01/1996 31/12/2500 LIBEN Fresh or chilled, plucked and gutted fowls of species Gallus domesticus, with heads and feet, known as "83% chickens" 01/01/1996 31/12/2500 -02071130 01/01/1996 31/12/2500 LIBEN Fresh or chilled, plucked and drawn fowls of species Gallus domesticus, without heads and feet but with necks, hearts, livers and gizzards, known as "70% chickens" 01/01/1996 31/12/2500 -02071190 01/01/1996 31/12/2500 LIBEN Fresh or chilled, plucked and drawn fowls of species Gallus domesticus, without heads, feet, necks, hearts, livers and gizzards, known as "65% chickens", and other forms of fresh or chilled fowl, not cut in pieces (excl. "83% and 70% chickens") 01/01/1996 31/12/2500 -020712 01/01/1996 31/12/2500 LIBEN Frozen fowls of the species Gallus domesticus, not cut in pieces 01/01/1996 31/12/2500 -02071210 01/01/1996 31/12/2500 LIBEN Frozen fowls of species Gallus domesticus, plucked and drawn, without heads and feet but with necks, hearts, livers and gizzards, known as "70% chickens" 01/01/1996 31/12/2500 -02071290 01/01/1996 31/12/2500 LIBEN Frozen fowls of species Gallus domesticus, plucked and drawn, without heads, feet, necks, hearts, livers and gizzards, known as "65% chickens", and other forms of fowl, not cut in pieces (excl. "70% chickens") 01/01/1996 31/12/2500 -020713 01/01/1996 31/12/2500 LIBEN Fresh or chilled cuts and edible offal of fowls of the species Gallus domesticus 01/01/1996 31/12/2500 -02071310 01/01/1996 31/12/2500 LIBEN Fresh or chilled boneless cuts of fowls of the species Gallus domesticus 01/01/1996 31/12/2500 -02071320 01/01/1996 31/12/2500 LIBEN Fresh or chilled halves or quarters of fowls of the species Gallus domesticus 01/01/1996 31/12/2500 -02071330 01/01/1996 31/12/2500 LIBEN Fresh or chilled whole wings, with or without tips, of fowls of the species Gallus domesticus 01/01/1996 31/12/2500 -02071340 01/01/1996 31/12/2500 LIBEN Fresh or chilled backs, necks, backs with necks attached, rumps and wing-tips of fowls of the species Gallus domesticus 01/01/1996 31/12/2500 -02071350 01/01/1996 31/12/2500 LIBEN Fresh or chilled breasts and cuts thereof of fowls of the species Gallus domesticus, with bone in 01/01/1996 31/12/2500 -02071360 01/01/1996 31/12/2500 LIBEN Fresh or chilled legs and cuts thereof of fowls of the species Gallus domesticus, with bone in 01/01/1996 31/12/2500 -02071370 01/01/1996 31/12/2500 LIBEN Fresh or chilled cuts of fowls of the species Gallus domesticus, with bone in (excl. halves and quarters, whole wings, with or without tips, backs, necks, backs with necks attached, rumps and wing-tips, breasts, legs and parts thereof) 01/01/1996 31/12/2500 -02071391 01/01/1996 31/12/2500 LIBEN Fresh or chilled edible livers of fowls of the species Gallus domesticus 01/01/1996 31/12/2500 -02071399 01/01/1996 31/12/2500 LIBEN Fresh or chilled edible offal of fowls of the species Gallus domesticus (excl. livers) 01/01/1996 31/12/2500 -020714 01/01/1996 31/12/2500 LIBEN Frozen cuts and edible offal of fowls of the species Gallus domesticus 01/01/1996 31/12/2500 -02071410 01/01/1996 31/12/2500 LIBEN Frozen boneless cuts of fowls of the species Gallus domesticus 01/01/1996 31/12/2500 -02071420 01/01/1996 31/12/2500 LIBEN Frozen halves or quarters of fowls of the species Gallus domesticus 01/01/1996 31/12/2500 -02071430 01/01/1996 31/12/2500 LIBEN Frozen whole wings, with or without tips, of fowls of the species Gallus domesticus 01/01/1996 31/12/2500 -02071440 01/01/1996 31/12/2500 LIBEN Frozen backs, necks, backs with necks attached, rumps and wing-tips of fowls of the species Gallus domesticus 01/01/1996 31/12/2500 -02071450 01/01/1996 31/12/2500 LIBEN Frozen breasts and cuts thereof of fowls of the species Gallus domesticus, with bone in 01/01/1996 31/12/2500 -02071460 01/01/1996 31/12/2500 LIBEN Frozen legs and cuts thereof of fowls of the species Gallus domesticus, with bone in 01/01/1996 31/12/2500 -02071470 01/01/1996 31/12/2500 LIBEN Frozen cuts of fowls of the species Gallus domesticus, with bone in (excl. halves or quarters, whole wings, with or without tips, backs, necks, backs with necks attached, rumps and wing-tips, breasts, legs and cuts thereof) 01/01/1996 31/12/2500 -02071491 01/01/1996 31/12/2500 LIBEN Frozen edible livers of fowls of the species Gallus domesticus 01/01/1996 31/12/2500 -02071499 01/01/1996 31/12/2500 LIBEN Frozen edible offal of fowls of the species Gallus domesticus (excl. livers) 01/01/1996 31/12/2500 -020721 01/01/1988 31/12/1995 LIBEN Frozen fowls of the species Gallus domesticus, not cut in pieces (excl. turkeys and guinea fowls) 01/01/1988 31/12/1995 -02072110 01/01/1988 31/12/1995 LIBEN Frozen fowls of species Gallus domesticus, plucked and drawn, without heads and feet but with necks, hearts, livers and gizzards, called "70% chickens" (excl. turkeys and guinea fowls) 01/01/1988 31/12/1995 -02072190 01/01/1988 31/12/1995 LIBEN Frozen fowls of species Gallus domesticus, plucked and drawn, without heads, feet, necks, hearts, livers and gizzards, called "70% chickens", and other forms of fowl, not cut in pieces (excl. turkeys and guinea fowls) 01/01/1988 31/12/1995 -020722 01/01/1988 31/12/1995 LIBEN Frozen turkeys of the species domesticus, not cut in pieces 01/01/1988 31/12/1995 -02072210 01/01/1988 31/12/1995 LIBEN Frozen turkeys of the species domesticus, plucked and drawn, without heads and feet but with necks, hearts, livers and gizzards, called "80% turkeys" 01/01/1988 31/12/1995 -02072290 01/01/1988 31/12/1995 LIBEN Frozen turkeys of the species domesticus, plucked and drawn, without heads, feet, necks, hearts, livers and gizzards, called "73% turkeys", and other forms of turkeys, not cut in pieces (excl. "80% turkeys") 01/01/1988 31/12/1995 -020723 01/01/1988 31/12/1995 LIBEN Frozen ducks, geese and guinea fowls, not cut in pieces 01/01/1988 31/12/1995 -02072311 01/01/1988 31/12/1995 LIBEN Frozen ducks of the species domesticus, plucked and drawn, without heads and feet but with necks, hearts, livers and gizzards, called "70% ducks" 01/01/1988 31/12/1995 -02072319 01/01/1988 31/12/1995 LIBEN Frozen ducks of the species domesticus, plucked and drawn, without heads, feet, necks, hearts, livers and gizzards, called "63% ducks", and other forms of ducks, not cut in pieces (excl. "70% ducks") 01/01/1988 31/12/1995 -02072351 01/01/1988 31/12/1995 LIBEN Frozen, plucked, bled, not drawn geese of the species domesticus with head and feet, called "82% geese" 01/01/1988 31/12/1995 -02072359 01/01/1988 31/12/1995 LIBEN Frozen, plucked and drawn geese of the species domesticus without heads and feet, with or without heart and gizzards, called "75% geese", and other forms of geese, not cut in pieces (excl. "82% geese") 01/01/1988 31/12/1995 -02072390 01/01/1988 31/12/1995 LIBEN Frozen guinea fowls, not cut into pieces 01/01/1988 31/12/1995 -020724 01/01/1996 31/12/2500 LIBEN Fresh or chilled turkeys of the species domesticus, not cut in pieces 01/01/1996 31/12/2500 -02072410 01/01/1996 31/12/2500 LIBEN Fresh or chilled, plucked and drawn turkeys of the species domesticus, without heads and feet but with necks, hearts, livers and gizzards, known as "80% turkeys" 01/01/1996 31/12/2500 -02072490 01/01/1996 31/12/2500 LIBEN Fresh or chilled, plucked and drawn turkeys of the species domesticus, without heads, feet, necks, hearts, livers and gizzards, known as "73% turkeys", and other forms of fresh or chilled turkeys, not cut in pieces (excl. "80% turkeys") 01/01/1996 31/12/2500 -020725 01/01/1996 31/12/2500 LIBEN Frozen turkeys of the species domesticus, not cut into pieces 01/01/1996 31/12/2500 -02072510 01/01/1996 31/12/2500 LIBEN Frozen turkeys of the species domesticus, plucked and drawn, without heads and feet but with necks, hearts, livers and gizzards, known as "80% turkeys" 01/01/1996 31/12/2500 -02072590 01/01/1996 31/12/2500 LIBEN Frozen turkeys of the species domesticus, plucked and drawn, without heads, feet, necks, hearts, livers and gizzards, known as "73% turkeys", and other forms of turkeys, not cut in pieces (excl. "80% turkeys") 01/01/1996 31/12/2500 -020726 01/01/1996 31/12/2500 LIBEN Fresh or chilled cuts and edible offal of turkeys of the species domesticus 01/01/1996 31/12/2500 -02072610 01/01/1996 31/12/2500 LIBEN Fresh or chilled boneless cuts of turkeys of the species domesticus 01/01/1996 31/12/2500 -02072620 01/01/1996 31/12/2500 LIBEN Fresh or chilled halves or quarters of turkeys of the species domesticus 01/01/1996 31/12/2500 -02072630 01/01/1996 31/12/2500 LIBEN Fresh or chilled whole wings, with or without tips, of turkeys of the species domesticus 01/01/1996 31/12/2500 -02072640 01/01/1996 31/12/2500 LIBEN Fresh or chilled backs, necks, backs with necks attached, rumps and wing-tips of turkeys of the species domesticus 01/01/1996 31/12/2500 -02072650 01/01/1996 31/12/2500 LIBEN Fresh or chilled breasts and cuts thereof of turkeys of the species domesticus, with bone in 01/01/1996 31/12/2500 -02072660 01/01/1996 31/12/2500 LIBEN Fresh or chilled drumsticks and cuts thereof of turkeys of the species domesticus, with bone in 01/01/1996 31/12/2500 -02072670 01/01/1996 31/12/2500 LIBEN Fresh or chilled legs and cuts thereof of turkeys of the species domesticus, with bone in (excl. drumsticks) 01/01/1996 31/12/2500 -02072680 01/01/1996 31/12/2500 LIBEN Fresh or chilled cuts of turkeys of the species domesticus, with bone in (excl. halves or quarters, whole wings, with or without tips, backs, necks, backs with necks attached, rumps and wing-tips, breasts, legs and cuts thereof) 01/01/1996 31/12/2500 -02072691 01/01/1996 31/12/2500 LIBEN Fresh or chilled edible livers of turkeys of the species domesticus 01/01/1996 31/12/2500 -02072699 01/01/1996 31/12/2500 LIBEN Fresh or chilled edible offal of turkeys of the species domesticus (excl. livers) 01/01/1996 31/12/2500 -020727 01/01/1996 31/12/2500 LIBEN Frozen cuts and edible offal of turkeys of the species domesticus 01/01/1996 31/12/2500 -02072710 01/01/1996 31/12/2500 LIBEN Frozen boneless cuts of turkeys of the species domesticus 01/01/1996 31/12/2500 -02072720 01/01/1996 31/12/2500 LIBEN Frozen halves and quarters of turkeys of the species domesticus 01/01/1996 31/12/2500 -02072730 01/01/1996 31/12/2500 LIBEN Frozen whole wings, with or without tips, of turkeys of the species domesticus 01/01/1996 31/12/2500 -02072740 01/01/1996 31/12/2500 LIBEN Frozen backs, necks, backs with necks attached, rumps and wing-tips of turkeys of the species domesticus 01/01/1996 31/12/2500 -02072750 01/01/1996 31/12/2500 LIBEN Frozen breasts and cuts thereof of turkeys of the species domesticus, with bone in 01/01/1996 31/12/2500 -02072760 01/01/1996 31/12/2500 LIBEN Frozen drumsticks and cuts thereof of turkeys of the species domesticus, with bone in 01/01/1996 31/12/2500 -02072770 01/01/1996 31/12/2500 LIBEN Frozen legs and cuts thereof of turkeys of the species domesticus, with bone in (excl. drumsticks) 01/01/1996 31/12/2500 -02072780 01/01/1996 31/12/2500 LIBEN Frozen cuts of turkeys of the species domesticus, with bone in (excl. halves or quarters, whole wings, with or without tips, backs, necks, backs with necks attached, rumps and wing-tips, breasts, legs and cuts thereof) 01/01/1996 31/12/2500 -02072791 01/01/1996 31/12/2500 LIBEN Frozen edible livers of turkeys of the species domesticus 01/01/1996 31/12/2500 -02072799 01/01/1996 31/12/2500 LIBEN Frozen edible offal of turkeys of the species domesticus (excl. livers) 01/01/1996 31/12/2500 -020731 01/01/1988 31/12/1995 LIBEN Fresh or chilled edible fatty livers of geese or ducks of the species domesticus 01/01/1988 31/12/1995 -02073100 01/01/1988 31/12/1992 LIBEN Fresh or chilled edible fatty livers of geese or ducks of the species domesticus 01/01/1988 31/12/1992 -02073110 01/01/1993 31/12/1995 LIBEN Fatty livers of domestic geese, edible, fresh or chilled 01/01/1993 31/12/1995 -02073190 01/01/1993 31/12/1995 LIBEN Fatty livers of domestic ducks, edible, fresh or chilled 01/01/1993 31/12/1995 -020732 01/01/1996 31/12/2011 LIBEN Fresh or chilled ducks, geese and guinea fowls of the species domesticus, not cut into pieces 01/01/1996 31/12/2011 -02073211 01/01/1996 31/12/2011 LIBEN Fresh or chilled, plucked, bled, gutted or not drawn ducks of the species domesticus with heads and feet, known as "85% ducks" 01/01/1996 31/12/2011 -02073215 01/01/1996 31/12/2011 LIBEN Fresh or chilled, plucked and drawn ducks of the species domesticus, without heads and feet but with necks, hearts, livers and gizzard, known as "70% ducks" 01/01/1996 31/12/2011 -02073219 01/01/1996 31/12/2011 LIBEN Fresh or chilled, plucked and drawn ducks of the species domesticus, without heads, feet, necks, hearts, livers and gizzards, known as "63% ducks", and other forms of ducks, not cut in pieces (excl. "85% and 70% ducks") 01/01/1996 31/12/2011 -02073251 01/01/1996 31/12/2011 LIBEN Fresh or chilled, plucked, bled, not drawn geese of the species domesticus with heads and feet, called "82% geese" 01/01/1996 31/12/2011 -02073259 01/01/1996 31/12/2011 LIBEN Fresh or chilled, plucked and drawn geese of the species domesticus without heads and feet, with or without hearts and gizzards, known as "75% geese", and other forms of geese, not cut in pieces (excl. "82% geese") 01/01/1996 31/12/2011 -02073290 01/01/1996 31/12/2011 LIBEN Fresh or chilled guinea fowls, not cut into pieces 01/01/1996 31/12/2011 -020733 01/01/1996 31/12/2011 LIBEN Frozen ducks, geese and guinea fowls of the species domesticus, not cut into pieces 01/01/1996 31/12/2011 -02073311 01/01/1996 31/12/2011 LIBEN Frozen ducks of the species domesticus, plucked and drawn, without heads and feet but with necks, hearts, livers and gizzards, known as "70% ducks" 01/01/1996 31/12/2011 -02073319 01/01/1996 31/12/2011 LIBEN Frozen ducks of the species domesticus, plucked and drawn, without heads, feet, necks, hearts, livers and gizzards, known as "63% ducks", and other forms of ducks, not cut in pieces (excl. "70% ducks") 01/01/1996 31/12/2011 -02073351 01/01/1996 31/12/2011 LIBEN Frozen, plucked, bled, not drawn geese of the species domesticus with head and feet, known as "82% geese" 01/01/1996 31/12/2011 -02073359 01/01/1996 31/12/2011 LIBEN Frozen, plucked and drawn geese of the species domesticus without heads and feet, with or without heart and gizzards, known as "75% geese", and other forms of geese, not cut in pieces (excl. "82% geese") 01/01/1996 31/12/2011 -02073390 01/01/1996 31/12/2011 LIBEN Frozen guinea fowls, not cut into pieces 01/01/1996 31/12/2011 -020734 01/01/1996 31/12/2011 LIBEN Fresh or chilled edible fatty livers of ducks or geese of the species domesticus 01/01/1996 31/12/2011 -02073410 01/01/1996 31/12/2011 LIBEN Fatty livers of domestic geese, edible, fresh or chilled 01/01/1996 31/12/2011 -02073490 01/01/1996 31/12/2011 LIBEN Fatty livers of domestic ducks, edible, fresh or chilled 01/01/1996 31/12/2011 -020735 01/01/1996 31/12/2011 LIBEN Fresh or chilled cuts and edible offal of ducks, geese or guinea fowls of the species domesticus (excl. fatty livers) 01/01/1996 31/12/2011 -02073511 01/01/1996 31/12/2011 LIBEN Fresh or chilled boneless cuts of geese of the species domesticus 01/01/1996 31/12/2011 -02073515 01/01/1996 31/12/2011 LIBEN Fresh or chilled boneless cuts of ducks and guinea fowls of the species domesticus 01/01/1996 31/12/2011 -02073521 01/01/1996 31/12/2011 LIBEN Fresh or chilled halves or quarters of ducks of the species domesticus 01/01/1996 31/12/2011 -02073523 01/01/1996 31/12/2011 LIBEN Fresh or chilled halves or quarters of geese of the species domesticus 01/01/1996 31/12/2011 -02073525 01/01/1996 31/12/2011 LIBEN Fresh or chilled halves or quarters of guinea fowls of the species domesticus 01/01/1996 31/12/2011 -02073531 01/01/1996 31/12/2011 LIBEN Fresh or chilled whole wings, with or without tips, of ducks, geese and guinea fowls of the species domesticus 01/01/1996 31/12/2011 -02073541 01/01/1996 31/12/2011 LIBEN Fresh or chilled backs, neck, backs with neck attached, rumps and wing-tips of ducks, geese and guinea fowls of the species domesticus 01/01/1996 31/12/2011 -02073551 01/01/1996 31/12/2011 LIBEN Fresh or chilled breasts and cuts thereof of geese of the species domesticus, with bone in 01/01/1996 31/12/2011 -02073553 01/01/1996 31/12/2011 LIBEN Fresh or chilled breasts and cuts thereof of duck and guinea fowl of the species domesticus, with bone in 01/01/1996 31/12/2011 -02073561 01/01/1996 31/12/2011 LIBEN Fresh or chilled legs and cuts thereof of geese of the species domesticus, with bone in 01/01/1996 31/12/2011 -02073563 01/01/1996 31/12/2011 LIBEN Fresh or chilled legs and cuts thereof of ducks and guinea fowls of the species domesticus, with bone in 01/01/1996 31/12/2011 -02073571 01/01/1996 31/12/2011 LIBEN Fresh or chilled paletots of the species domesticus 01/01/1996 31/12/2011 -02073579 01/01/1996 31/12/2011 LIBEN Fresh or chilled cuts of ducks, geese and guinea fowls of the species domesticus, with bone in (excl. halves or quarters, whole wings, with or without tips, backs, necks, backs with neck attached, rumps and wing-tips, breasts, legs and cuts thereof, and goose or duck paletots) 01/01/1996 31/12/2011 -02073591 01/01/1996 31/12/2011 LIBEN Fresh or chilled edible livers of ducks, geese or guinea fowls (excl. fatty livers) 01/01/1996 31/12/2011 -02073599 01/01/1996 31/12/2011 LIBEN Fresh or chilled edible offal of ducks, geese and guinea fowls of the species domesticus (excl. livers) 01/01/1996 31/12/2011 -020736 01/01/1996 31/12/2011 LIBEN Frozen cuts and edible offal of ducks, geese or guinea fowls of the species domesticus 01/01/1996 31/12/2011 -02073611 01/01/1996 31/12/2011 LIBEN Frozen boneless cuts of geese of the species domesticus 01/01/1996 31/12/2011 -02073615 01/01/1996 31/12/2011 LIBEN Frozen boneless cuts of ducks and guinea fowls of the species domesticus 01/01/1996 31/12/2011 -02073621 01/01/1996 31/12/2011 LIBEN Frozen halves or quarters of ducks of the species domesticus 01/01/1996 31/12/2011 -02073623 01/01/1996 31/12/2011 LIBEN Frozen halves or quarters of geese of the species domesticus 01/01/1996 31/12/2011 -02073625 01/01/1996 31/12/2011 LIBEN Frozen halves or quarters of guinea fowls of the species domesticus 01/01/1996 31/12/2011 -02073631 01/01/1996 31/12/2011 LIBEN Frozen whole wings, with or without tips, of ducks, geese and guinea fowls of the species domesticus 01/01/1996 31/12/2011 -02073641 01/01/1996 31/12/2011 LIBEN Frozen backs, necks, backs with necks attached, rumps and wing-tips of ducks, geese and guinea fowls of the species domesticus 01/01/1996 31/12/2011 -02073651 01/01/1996 31/12/2011 LIBEN Frozen breasts and cuts thereof of geese of the species domesticus, with bone in 01/01/1996 31/12/2011 -02073653 01/01/1996 31/12/2011 LIBEN Frozen breasts and cuts thereof of ducks and guinea fowls of the species domesticus, with bone in 01/01/1996 31/12/2011 -02073661 01/01/1996 31/12/2011 LIBEN Frozen legs and cuts thereof of geese of the species domesticus, with bone in 01/01/1996 31/12/2011 -02073663 01/01/1996 31/12/2011 LIBEN Frozen legs and cuts thereof of ducks and guinea fowls of the species domesticus, with bone in 01/01/1996 31/12/2011 -02073671 01/01/1996 31/12/2011 LIBEN Frozen paletots of geese or ducks of the species domesticus 01/01/1996 31/12/2011 -02073679 01/01/1996 31/12/2011 LIBEN Frozen cuts of ducks, geese and guinea fowls of the species domesticus, with bone in (excl. halves or quarters, whole wings, with or without tips, backs, necks, backs with necks attached, rumps and wing-tips, breasts, legs and cuts thereof, and goose or duck paletots) 01/01/1996 31/12/2011 -02073681 01/01/1996 31/12/2011 LIBEN Frozen edible fatty livers of geese of the species domesticus 01/01/1996 31/12/2011 -02073685 01/01/1996 31/12/2011 LIBEN Frozen edible fatty livers of ducks of the species domesticus 01/01/1996 31/12/2011 -02073689 01/01/1996 31/12/2011 LIBEN Frozen edible livers of ducks, geese or guinea fowls of the species domesticus (excl. fatty livers) 01/01/1996 31/12/2011 -02073690 01/01/1996 31/12/2011 LIBEN Frozen edible offal of ducks, geese and guinea fowls of the species domesticus (excl. livers) 01/01/1996 31/12/2011 -020739 01/01/1988 31/12/1995 LIBEN Fresh or chilled edible poultry cuts and offal, incl. livers (excl. fatty livers of geese or ducks) 01/01/1988 31/12/1995 -02073911 01/01/1988 31/12/1995 LIBEN Fresh or chilled boneless cuts of fowls of species Gallus domesticus (excl. cuts of turkeys and guinea fowls) 01/01/1988 31/12/1995 -02073913 01/01/1988 31/12/1995 LIBEN Fresh or chilled halves and quarters of fowls of species Gallus domesticus (excl. of turkeys and guinea fowls) 01/01/1988 31/12/1995 -02073915 01/01/1988 31/12/1995 LIBEN Fresh or chilled whole wings, with or without tips, of fowls of species Gallus domesticus (excl. of turkeys and guinea fowls) 01/01/1988 31/12/1995 -02073917 01/01/1988 31/12/1995 LIBEN Fresh or chilled unboned backs, necks, backs with necks attached, rumps and wing tips of fowls of species Gallus domesticus (excl. of turkeys and guinea fowls) 01/01/1988 31/12/1995 -02073921 01/01/1988 31/12/1995 LIBEN Fresh or chilled unboned breasts and cuts thereof of fowls of species Gallus domesticus (excl. of turkeys and guinea fowls) 01/01/1988 31/12/1995 -02073923 01/01/1988 31/12/1995 LIBEN Fresh or chilled unboned legs and cuts thereof of fowls of species Gallus domesticus (excl. of turkeys and guinea fowls) 01/01/1988 31/12/1995 -02073925 01/01/1988 31/12/1995 LIBEN Fresh or chilled unboned cuts of fowls of species Gallus domesticus (excl. cuts of turkeys and guinea fowls, halves and quarters, whole wings, with or without tips, backs, necks, backs with necks attached, rumps and wing tips, breasts, legs and parts thereof) 01/01/1988 31/12/1995 -02073927 01/01/1988 31/12/1995 LIBEN Fresh or chilled edible offal of fowls of species Gallus domesticus (excl. livers and of turkeys and guinea fowls) 01/01/1988 31/12/1995 -02073931 01/01/1988 31/12/1995 LIBEN Fresh or chilled boneless cuts of turkeys of the species domesticus 01/01/1988 31/12/1995 -02073933 01/01/1988 31/12/1995 LIBEN Fresh or chilled halves or quarters of turkeys of the species domesticus 01/01/1988 31/12/1995 -02073935 01/01/1988 31/12/1995 LIBEN Fresh or chilled whole wings, with or without tips, of turkeys of the species domesticus 01/01/1988 31/12/1995 -02073937 01/01/1988 31/12/1995 LIBEN Fresh or chilled backs, necks, backs with necks attached, rumps and wing tips of turkeys of the species domesticus 01/01/1988 31/12/1995 -02073941 01/01/1988 31/12/1995 LIBEN Fresh or chilled unboned breasts and cuts thereof of turkeys of the species domesticus 01/01/1988 31/12/1995 -02073943 01/01/1988 31/12/1995 LIBEN Fresh or chilled unboned drumsticks and cuts thereof of turkeys of the species domesticus 01/01/1988 31/12/1995 -02073945 01/01/1988 31/12/1995 LIBEN Fresh or chilled unboned thighs and cuts thereof of turkeys of the species domesticus 01/01/1988 31/12/1995 -02073947 01/01/1988 31/12/1995 LIBEN Fresh or chilled unboned cuts of turkeys of the species domesticus (excl. halves or quarters, whole wings, with or without tips, backs, necks, backs with necks attached, rumps and wing tips, breasts, legs and cuts thereof) 01/01/1988 31/12/1995 -02073951 01/01/1988 31/12/1995 LIBEN Fresh or chilled edible offal of turkeys of the species domesticus (excl. livers) 01/01/1988 31/12/1995 -02073953 01/01/1988 31/12/1995 LIBEN Fresh or chilled boneless cuts of geese of the species domesticus 01/01/1988 31/12/1995 -02073955 01/01/1988 31/12/1995 LIBEN Fresh or chilled boneless cuts of ducks and guinea fowls of the species domesticus 01/01/1988 31/12/1995 -02073957 01/01/1988 31/12/1995 LIBEN Fresh or chilled halves or quarters of ducks of the species domesticus 01/01/1988 31/12/1995 -02073961 01/01/1988 31/12/1995 LIBEN Fresh or chilled halves or quarters of geese of the species domesticus 01/01/1988 31/12/1995 -02073963 01/01/1988 31/12/1995 LIBEN Fresh or chilled halves or quarters of guinea fowls of the species domesticus 01/01/1988 31/12/1995 -02073965 01/01/1988 31/12/1995 LIBEN Fresh or chilled whole wings, with or without tips, of ducks, geese and guinea fowls of the species domesticus 01/01/1988 31/12/1995 -02073967 01/01/1988 31/12/1995 LIBEN Fresh or chilled backs, neck, backs with neck attached, rumps and wing tips of ducks, geese and guinea fowls of the species domesticus 01/01/1988 31/12/1995 -02073971 01/01/1988 31/12/1995 LIBEN Fresh or chilled unboned breasts and cuts thereof of geese of the species domesticus 01/01/1988 31/12/1995 -02073973 01/01/1988 31/12/1995 LIBEN Fresh or chilled unboned breasts and cuts thereof of duck and guinea fowl of the species domesticus 01/01/1988 31/12/1995 -02073975 01/01/1988 31/12/1995 LIBEN Fresh or chilled unboned legs and cuts thereof of geese of the species domesticus 01/01/1988 31/12/1995 -02073977 01/01/1988 31/12/1995 LIBEN Fresh or chilled unboned legs and cuts thereof of ducks and guinea fowls of the species domesticus 01/01/1988 31/12/1995 -02073981 01/01/1988 31/12/1995 LIBEN Fresh or chilled paletots of geese or ducks of the species domesticus 01/01/1988 31/12/1995 -02073983 01/01/1988 31/12/1995 LIBEN Fresh or chilled unboned cuts of ducks, geese and guinea fowls of the species domesticus (excl. halves or quarters, whole wings, with or without tips, backs, necks, backs with neck attached, rumps and wing tips, breasts, legs and cuts thereof, and goose or duck paletots) 01/01/1988 31/12/1995 -02073985 01/01/1988 31/12/1995 LIBEN Fresh or chilled edible offal of ducks, geese and guinea fowls of the species domesticus (excl. livers) 01/01/1988 31/12/1995 -02073990 01/01/1988 31/12/1995 LIBEN Fresh or chilled domestic poultry livers (excl. fatty livers of geese or ducks) 01/01/1988 31/12/1995 -020741 01/01/1988 31/12/1995 LIBEN Frozen cuts and edible offal of fowls of the species Gallus domesticus (excl. livers) 01/01/1988 31/12/1995 -020741 01/01/2012 31/12/2500 LIBEN Fresh or chilled domestic ducks, not cut in pieces 01/01/2012 31/12/2500 -02074110 01/01/1988 31/12/1995 LIBEN Frozen boneless cuts of fowls of the species Gallus domesticus 01/01/1988 31/12/1995 -02074111 01/01/1988 31/12/1995 LIBEN Frozen halves or quarters of fowls of the species Gallus domesticus 01/01/1988 31/12/1995 -02074120 01/01/2012 31/12/2500 LIBEN Fresh or chilled domestic ducks, not cut in pieces, plucked, bled, gutted but not drawn, with heads and feet "85 % ducks" 01/01/2012 31/12/2500 -02074121 01/01/1988 31/12/1995 LIBEN Frozen whole wings, with or without tips, of fowls of the species Gallus domesticus 01/01/1988 31/12/1995 -02074130 01/01/2012 31/12/2500 LIBEN Fresh or chilled domestic ducks, not cut in pieces, plucked and drawn, without heads and feet but with necks, hearts, livers and gizzard "70 % ducks" 01/01/2012 31/12/2500 -02074131 01/01/1988 31/12/1995 LIBEN Frozen backs, necks, backs with necks attached, rumps and wing tips of fowls of the species Gallus domesticus 01/01/1988 31/12/1995 -02074141 01/01/1988 31/12/1995 LIBEN Frozen unboned breasts and cuts thereof of fowls of the species Gallus domesticus 01/01/1988 31/12/1995 -02074151 01/01/1988 31/12/1995 LIBEN Frozen unboned legs and cuts thereof of fowls of the species Gallus domesticus 01/01/1988 31/12/1995 -02074171 01/01/1988 31/12/1995 LIBEN Frozen unboned cuts of fowls of the species Gallus domesticus (excl. halves or quarters, whole wings, with or without tips, backs, necks, backs with necks attached, rumps and wing tips, breasts, legs and cuts thereof) 01/01/1988 31/12/1995 -02074180 01/01/2012 31/12/2500 LIBEN Fresh or chilled domestic ducks, not cut in pieces, plucked and drawn, without heads and feet and without necks, hearts, livers and gizzards, "63 % ducks" or otherwise presented 01/01/2012 31/12/2500 -02074190 01/01/1988 31/12/1995 LIBEN Frozen edible offal of fowls of the species Gallus domesticus (excl. livers) 01/01/1988 31/12/1995 -020742 01/01/1988 31/12/1995 LIBEN Frozen cuts and edible offal of turkeys of the species domesticus (excl. livers) 01/01/1988 31/12/1995 -020742 01/01/2012 31/12/2500 LIBEN Frozen domestic ducks, not cut in pieces 01/01/2012 31/12/2500 -02074210 01/01/1988 31/12/1995 LIBEN Frozen boneless cuts of turkeys of the species domesticus 01/01/1988 31/12/1995 -02074211 01/01/1988 31/12/1995 LIBEN Frozen halves and quarters of turkeys of the species domesticus 01/01/1988 31/12/1995 -02074221 01/01/1988 31/12/1995 LIBEN Frozen whole wings, with or without tips, of turkeys of the species domesticus 01/01/1988 31/12/1995 -02074230 01/01/2012 31/12/2500 LIBEN Frozen domestic ducks, not cut in pieces, plucked and drawn, without heads and feet but with necks, hearts, livers and gizzards "70 % ducks" 01/01/2012 31/12/2500 -02074231 01/01/1988 31/12/1995 LIBEN Frozen backs, necks, backs with necks attached, rumps and wing tips of turkeys of the species domesticus 01/01/1988 31/12/1995 -02074241 01/01/1988 31/12/1995 LIBEN Frozen unboned breasts and cuts thereof of turkeys of the species domesticus 01/01/1988 31/12/1995 -02074251 01/01/1988 31/12/1995 LIBEN Frozen unboned drumsticks and cuts thereof of turkeys of the species domesticus 01/01/1988 31/12/1995 -02074259 01/01/1988 31/12/1995 LIBEN Frozen unboned thighs and cuts thereof of turkeys of the species domesticus 01/01/1988 31/12/1995 -02074271 01/01/1988 31/12/1995 LIBEN Frozen unboned cuts of turkeys of the species domesticus (excl. halves or quarters, whole wings, with or without tips, backs, necks, backs with necks attached, rumps and wing tips, breasts, legs and cuts thereof) 01/01/1988 31/12/1995 -02074280 01/01/2012 31/12/2500 LIBEN Frozen domestic ducks, not cut in pieces, plucked and drawn, without heads and feet and without necks, hearts, livers and gizzards, "63 % ducks" or otherwise presented 01/01/2012 31/12/2500 -02074290 01/01/1988 31/12/1995 LIBEN Frozen edible offal of turkeys of the species domesticus (excl. livers) 01/01/1988 31/12/1995 -020743 01/01/1988 31/12/1995 LIBEN Frozen cuts and edible offal of ducks, geese or guinea fowls of the species domesticus (excl. livers) 01/01/1988 31/12/1995 -020743 01/01/2012 31/12/2500 LIBEN Fatty livers of domestic ducks, fresh or chilled 01/01/2012 31/12/2500 -02074300 01/01/2012 31/12/2500 LIBEN Fatty livers of domestic ducks, fresh or chilled 01/01/2012 31/12/2500 -02074311 01/01/1988 31/12/1995 LIBEN Frozen boneless cuts of geese of the species domesticus 01/01/1988 31/12/1995 -02074315 01/01/1988 31/12/1995 LIBEN Frozen boneless cuts of ducks and guinea fowls of the species domesticus 01/01/1988 31/12/1995 -02074321 01/01/1988 31/12/1995 LIBEN Frozen halves or quarters of ducks of the species domesticus 01/01/1988 31/12/1995 -02074323 01/01/1988 31/12/1995 LIBEN Frozen halves or quarters of geese of the species domesticus 01/01/1988 31/12/1995 -02074325 01/01/1988 31/12/1995 LIBEN Frozen halves or quarters of guinea fowls of the species domesticus 01/01/1988 31/12/1995 -02074331 01/01/1988 31/12/1995 LIBEN Frozen whole wings, with or without tips, of ducks, geese and guinea fowls of the species domesticus 01/01/1988 31/12/1995 -02074341 01/01/1988 31/12/1995 LIBEN Frozen backs, necks, backs with necks attached, rumps and wing tips of ducks, geese and guinea fowls of the species domesticus 01/01/1988 31/12/1995 -02074351 01/01/1988 31/12/1995 LIBEN Frozen unboned breasts and cuts thereof of geese of the species domesticus 01/01/1988 31/12/1995 -02074353 01/01/1988 31/12/1995 LIBEN Frozen unboned breasts and cuts thereof of ducks and guinea fowls of the species domesticus 01/01/1988 31/12/1995 -02074361 01/01/1988 31/12/1995 LIBEN Frozen unboned legs and cuts thereof of geese of the species domesticus 01/01/1988 31/12/1995 -02074363 01/01/1988 31/12/1995 LIBEN Frozen unboned legs and cuts thereof of ducks and guinea fowls of the species domesticus 01/01/1988 31/12/1995 -02074371 01/01/1988 31/12/1995 LIBEN Frozen paletots of geese or ducks of the species domesticus 01/01/1988 31/12/1995 -02074381 01/01/1988 31/12/1995 LIBEN Frozen unboned cuts of ducks, geese and guinea fowls of the species domesticus (excl. halves or quarters, whole wings, with or without tips, backs, necks, backs with necks attached, rumps and wing tips, breasts, legs and cuts thereof, and goose or duck paletots) 01/01/1988 31/12/1995 -02074390 01/01/1988 31/12/1995 LIBEN Frozen edible offal of ducks, geese and guinea fowls of the species domesticus (excl. livers) 01/01/1988 31/12/1995 -020744 01/01/2012 31/12/2500 LIBEN Fresh or chilled cuts and edible offal of domestic ducks (excl. fatty livers) 01/01/2012 31/12/2500 -02074410 01/01/2012 31/12/2500 LIBEN Fresh or chilled cuts of domestic ducks, boneless 01/01/2012 31/12/2500 -02074421 01/01/2012 31/12/2500 LIBEN Fresh or chilled halves or quarters of domestic ducks 01/01/2012 31/12/2500 -02074431 01/01/2012 31/12/2500 LIBEN Fresh or chilled whole wings of domestic ducks 01/01/2012 31/12/2500 -02074441 01/01/2012 31/12/2500 LIBEN Fresh or chilled backs, necks, backs with necks attached, rumps and wing-tips of domestic ducks 01/01/2012 31/12/2500 -02074451 01/01/2012 31/12/2500 LIBEN Fresh or chilled breasts and cuts thereof, of domestic ducks, with bone in 01/01/2012 31/12/2500 -02074461 01/01/2012 31/12/2500 LIBEN Fresh or chilled legs and cuts thereof, of domestic ducks, with bone in 01/01/2012 31/12/2500 -02074471 01/01/2012 31/12/2500 LIBEN Fresh or chilled paletots of domestic ducks, with bone in 01/01/2012 31/12/2500 -02074481 01/01/2012 31/12/2500 LIBEN Fresh or chilled cuts of domestic ducks, with bone in, n.e.s. 01/01/2012 31/12/2500 -02074491 01/01/2012 31/12/2500 LIBEN Fresh or chilled livers of domestic ducks (excl. fatty) 01/01/2012 31/12/2500 -02074499 01/01/2012 31/12/2500 LIBEN Fresh or chilled edible offal of domestic ducks (excl. livers) 01/01/2012 31/12/2500 -020745 01/01/2012 31/12/2500 LIBEN Frozen cuts and edible offal of domestic ducks 01/01/2012 31/12/2500 -02074510 01/01/2012 31/12/2500 LIBEN Frozen cuts of domestic ducks, boneless 01/01/2012 31/12/2500 -02074521 01/01/2012 31/12/2500 LIBEN Frozen halves or quarters of domestic ducks 01/01/2012 31/12/2500 -02074531 01/01/2012 31/12/2500 LIBEN Frozen whole wings of domestic ducks 01/01/2012 31/12/2500 -02074541 01/01/2012 31/12/2500 LIBEN Frozen backs, necks, backs with necks attached, rumps and wing-tips of domestic ducks 01/01/2012 31/12/2500 -02074551 01/01/2012 31/12/2500 LIBEN Frozen breasts and cuts thereof, of domestic ducks, with bone in 01/01/2012 31/12/2500 -02074561 01/01/2012 31/12/2500 LIBEN Frozen legs and cuts thereof, of domestic ducks, with bone in 01/01/2012 31/12/2500 -02074571 01/01/2012 31/12/2500 LIBEN Frozen paletots of domestic ducks, with bone in 01/01/2012 31/12/2500 -02074581 01/01/2012 31/12/2500 LIBEN Frozen cuts of domestic ducks, with bone in, n.e.s. 01/01/2012 31/12/2500 -02074593 01/01/2012 31/12/2500 LIBEN Frozen fatty livers of domestic ducks 01/01/2012 31/12/2500 -02074595 01/01/2012 31/12/2500 LIBEN Frozen livers of domestic ducks (excl. fatty) 01/01/2012 31/12/2500 -02074599 01/01/2012 31/12/2500 LIBEN Frozen edible offal of domestic ducks (excl. livers) 01/01/2012 31/12/2500 -020750 01/01/1988 31/12/1995 LIBEN Frozen edible domestic poultry livers 01/01/1988 31/12/1995 -02075010 01/01/1988 31/12/1995 LIBEN Frozen edible fatty livers of geese or ducks of the species domesticus 01/01/1988 31/12/1995 -02075090 01/01/1988 31/12/1995 LIBEN Frozen edible domestic poultry livers (excl. fatty livers of geese or ducks) 01/01/1988 31/12/1995 -020751 01/01/2012 31/12/2500 LIBEN Fresh or chilled domestic geese, not cut in pieces 01/01/2012 31/12/2500 -02075110 01/01/2012 31/12/2500 LIBEN Fresh or chilled domestic geese, not cut in pieces, plucked, bled, not drawn, with heads and feet "82 % geese" 01/01/2012 31/12/2500 -02075190 01/01/2012 31/12/2500 LIBEN Fresh or chilled domestic geese, not cut in pieces, plucked and drawn, without heads and feet, with or without hearts and gizzards, "75 % geese" or otherwise presented 01/01/2012 31/12/2500 -020752 01/01/2012 31/12/2500 LIBEN Frozen domestic geese, not cut in pieces 01/01/2012 31/12/2500 -02075210 01/01/2012 31/12/2500 LIBEN Frozen domestic geese, not cut in pieces, plucked, bled, not drawn, with heads and feet "82 % geese" 01/01/2012 31/12/2500 -02075290 01/01/2012 31/12/2500 LIBEN Frozen domestic geese, not cut in pieces, plucked and drawn, without heads and feet, with or without hearts and gizzards, "75 % geese" or otherwise presented 01/01/2012 31/12/2500 -020753 01/01/2012 31/12/2500 LIBEN Fatty livers of domestic geese, fresh or chilled 01/01/2012 31/12/2500 -02075300 01/01/2012 31/12/2500 LIBEN Fatty livers of domestic geese, fresh or chilled 01/01/2012 31/12/2500 -020754 01/01/2012 31/12/2500 LIBEN Fresh or chilled cuts and edible offal of domestic geese (excl. fatty livers) 01/01/2012 31/12/2500 -02075410 01/01/2012 31/12/2500 LIBEN Fresh or chilled cuts of domestic geese, boneless 01/01/2012 31/12/2500 -02075421 01/01/2012 31/12/2500 LIBEN Fresh or chilled halves or quarters of domestic geese 01/01/2012 31/12/2500 -02075431 01/01/2012 31/12/2500 LIBEN Fresh or chilled whole wings of domestic geese 01/01/2012 31/12/2500 -02075441 01/01/2012 31/12/2500 LIBEN Fresh or chilled backs, necks, backs with necks attached, rumps and wing-tips of domestic geese 01/01/2012 31/12/2500 -02075451 01/01/2012 31/12/2500 LIBEN Fresh or chilled breasts and cuts thereof, of domestic geese, with bone in 01/01/2012 31/12/2500 -02075461 01/01/2012 31/12/2500 LIBEN Fresh or chilled legs and cuts thereof, of domestic geese, with bone in 01/01/2012 31/12/2500 -02075471 01/01/2012 31/12/2500 LIBEN Fresh or chilled paletots of domestic geese, with bone in 01/01/2012 31/12/2500 -02075481 01/01/2012 31/12/2500 LIBEN Fresh or chilled cuts of domestic geese, with bone in, n.e.s. 01/01/2012 31/12/2500 -02075491 01/01/2012 31/12/2500 LIBEN Fresh or chilled livers of domestic geese (excl. fatty) 01/01/2012 31/12/2500 -02075499 01/01/2012 31/12/2500 LIBEN Fresh or chilled edible offal of domestic geese (excl. livers) 01/01/2012 31/12/2500 -020755 01/01/2012 31/12/2500 LIBEN Frozen cuts and edible offal of domestic geese 01/01/2012 31/12/2500 -02075510 01/01/2012 31/12/2500 LIBEN Frozen cuts of domestic geese, boneless 01/01/2012 31/12/2500 -02075521 01/01/2012 31/12/2500 LIBEN Frozen halves or quarters of domestic geese 01/01/2012 31/12/2500 -02075531 01/01/2012 31/12/2500 LIBEN Frozen whole wings of domestic geese 01/01/2012 31/12/2500 -02075541 01/01/2012 31/12/2500 LIBEN Frozen backs, necks, backs with necks attached, rumps and wing-tips of domestic geese 01/01/2012 31/12/2500 -02075551 01/01/2012 31/12/2500 LIBEN Frozen breasts and cuts thereof, of domestic geese, with bone in 01/01/2012 31/12/2500 -02075561 01/01/2012 31/12/2500 LIBEN Frozen legs and cuts thereof, of domestic geese, with bone in 01/01/2012 31/12/2500 -02075571 01/01/2012 31/12/2500 LIBEN Frozen paletots of domestic geese, with bone in 01/01/2012 31/12/2500 -02075581 01/01/2012 31/12/2500 LIBEN Frozen cuts of domestic geese, with bone in, n.e.s. 01/01/2012 31/12/2500 -02075593 01/01/2012 31/12/2500 LIBEN Frozen fatty livers of domestic geese 01/01/2012 31/12/2500 -02075595 01/01/2012 31/12/2500 LIBEN Frozen livers of domestic geese (excl. fatty) 01/01/2012 31/12/2500 -02075599 01/01/2012 31/12/2500 LIBEN Frozen edible offal of domestic geese (excl. livers) 01/01/2012 31/12/2500 -020760 01/01/2012 31/12/2500 LIBEN Meat and edible offal of domestic guinea fowls, fresh, chilled or frozen 01/01/2012 31/12/2500 -02076005 01/01/2012 31/12/2500 LIBEN Fresh, chilled or frozen domestic guinea fowls, not cut in pieces 01/01/2012 31/12/2500 -02076010 01/01/2012 31/12/2500 LIBEN Fresh, chilled or frozen cuts of domestic guinea fowls, boneless 01/01/2012 31/12/2500 -02076021 01/01/2012 31/12/2500 LIBEN Fresh, chilled or frozen halves or quarters of domestic guinea fowls 01/01/2012 31/12/2500 -02076031 01/01/2012 31/12/2500 LIBEN Fresh, chilled or frozen whole wings of domestic guinea fowls 01/01/2012 31/12/2500 -02076041 01/01/2012 31/12/2500 LIBEN Fresh, chilled or frozen backs, necks, backs with necks attached, rumps and wing-tips of domestic guinea fowls 01/01/2012 31/12/2500 -02076051 01/01/2012 31/12/2500 LIBEN Fresh, chilled or frozen breasts and cuts thereof, of domestic guinea fowls, with bone in 01/01/2012 31/12/2500 -02076061 01/01/2012 31/12/2500 LIBEN Fresh, chilled or frozen legs and cuts thereof, of domestic guinea fowls, with bone in 01/01/2012 31/12/2500 -02076081 01/01/2012 31/12/2500 LIBEN Fresh, chilled or frozen cuts of domestic guinea fowls, with bone in, n.e.s. 01/01/2012 31/12/2500 -02076091 01/01/2012 31/12/2500 LIBEN Fresh, chilled or frozen livers of domestic guinea fowls 01/01/2012 31/12/2500 -02076099 01/01/2012 31/12/2500 LIBEN Fresh, chilled or frozen edible offal of domestic guinea fowls (excl. livers) 01/01/2012 31/12/2500 -0208 01/01/1988 31/12/2500 LIBEN Meat and edible offal of rabbits, hares, pigeons and other animals, fresh, chilled or frozen (excl. of bovine animals, swine, sheep, goats, horses, asses, mules, hinnies, poultry "fowls of the species Gallus domesticus", ducks, geese, turkeys and guinea fowls) 01/01/1988 31/12/2500 -020810 01/01/1988 31/12/2500 LIBEN Fresh, chilled or frozen meat and edible offal of rabbits or hares 01/01/1988 31/12/2500 -02081010 01/01/1988 31/12/1992 LIBEN Fresh, chilled or frozen meat and edible offal of domestic rabbits 01/01/1988 31/12/1992 -02081010 01/01/2008 31/12/2500 LIBEN Fresh, chilled or frozen meat and edible meat offal of domestic rabbits 01/01/2008 31/12/2500 -02081011 01/01/1993 31/12/2007 LIBEN Fresh or chilled meat and edible meat offal of domestic rabbits 01/01/1993 31/12/2007 -02081019 01/01/1993 31/12/2007 LIBEN Frozen meat and edible meat offal of domestic rabbits 01/01/1993 31/12/2007 -02081090 01/01/1988 31/12/2500 LIBEN Fresh, chilled or frozen meat and edible offal of non-domestic rabbits and hares 01/01/1988 31/12/2500 -020820 01/01/1988 31/12/2006 LIBEN Fresh, chilled or frozen frogs' legs 01/01/1988 31/12/2006 -02082000 01/01/1988 31/12/2006 LIBEN Fresh, chilled or frozen frogs' legs 01/01/1988 31/12/2006 -020830 01/01/2002 31/12/2500 LIBEN Fresh, chilled or frozen meat and edible offal of primates 01/01/2002 31/12/2500 -02083000 01/01/2002 31/12/2500 LIBEN Fresh, chilled or frozen meat and edible offal of primates 01/01/2002 31/12/2500 -020840 01/01/2002 31/12/2500 LIBEN Fresh, chilled or frozen meat and edible offal of whales, dolphins and porpoises (mammals of the order Cetacea), of manatees and dugongs (mammals of the order Sirenia) and of seals, sea lions and walruses (mammals of the suborder Pinnipedia) 01/01/2002 31/12/2500 -02084010 01/01/2002 31/12/2500 LIBEN Fresh, chilled or frozen whales meat 01/01/2002 31/12/2500 -02084020 01/01/2012 31/12/2500 LIBEN Fresh, chilled or frozen seal meat 01/01/2012 31/12/2500 -02084080 01/01/2012 31/12/2500 LIBEN Fresh, chilled or frozen meat and edible offal of whales, dolphins and porpoises "mammals of the order Cetacea", of manatees and dugongs "mammals of the order Sirenia" and of seals, sea lions and walruses "mammals of the suborder Pinnipedia" (excl. whale and seal meat) 01/01/2012 31/12/2500 -02084090 01/01/2002 31/12/2011 LIBEN Edible offal of whales and meat and edible offal of dolphins and purpoises "mammals of the order Cetacea" and of manatees and dugongs "mammals of the order Sirenia", fresh, chilled or frozen 01/01/2002 31/12/2011 -020850 01/01/2002 31/12/2500 LIBEN Fresh, chilled or frozen meat and edible offal of reptiles "e.g. snakes, turtles, crocodiles" 01/01/2002 31/12/2500 -02085000 01/01/2002 31/12/2500 LIBEN Fresh, chilled or frozen meat and edible offal of reptiles "e.g. snakes, turtles, crocodiles" 01/01/2002 31/12/2500 -020860 01/01/2012 31/12/2500 LIBEN Fresh, chilled or frozen meat and edible offal of camels and other camelids [Camelidae] 01/01/2012 31/12/2500 -02086000 01/01/2012 31/12/2500 LIBEN Fresh, chilled or frozen meat and edible offal of camels and other camelids [Camelidae] 01/01/2012 31/12/2500 -020890 01/01/1988 31/12/2500 LIBEN Fresh, chilled or frozen meat and edible offal of pigeons, game, reindeer and other animals (excl. bovine animals, swine, sheep, goats, horses, asses, mules, hinnies, poultry "fowls of the species Gallus domesticus, ducks, geese, turkeys, guinea fowl", rabbits, hares, primates, whales, dolphins and porpoises "mammals of the order Cetacea", manatees and dugongs "mammals of the order Sirenia", seals, sea lions and walruses "mammals of the suborder Pinnipedia" and reptiles) 01/01/1988 31/12/2500 -02089010 01/01/1988 31/12/2500 LIBEN Fresh, chilled or frozen domestic pigeon meat and edible offal 01/01/1988 31/12/2500 -02089020 01/01/1993 31/12/2007 LIBEN Fresh, chilled or frozen meat and edible meat offal of quails 01/01/1993 31/12/2007 -02089030 01/01/1988 31/12/1992 LIBEN Fresh, chilled or frozen meat and edible offal of game (excl. of rabbits, hares and swine) 01/01/1988 31/12/1992 -02089030 01/01/2008 31/12/2500 LIBEN Fresh, chilled or frozen meat and edible meat offal of game (excl. rabbits, hares and pigs) 01/01/2008 31/12/2500 -02089040 01/01/1993 31/12/2007 LIBEN Fresh, chilled or frozen meat and edible meat offal of game (excl. rabbits, hares, pigs and quails) 01/01/1993 31/12/2007 -02089050 01/01/1988 31/12/2001 LIBEN Fresh, chilled or frozen whale and seal meat 01/01/1988 31/12/2001 -02089055 01/01/2002 31/12/2011 LIBEN Fresh, chilled or frozen seal meat 01/01/2002 31/12/2011 -02089060 01/01/1996 31/12/2500 LIBEN Fresh, chilled or frozen reindeer meat and edible offal thereof 01/01/1996 31/12/2500 -02089070 01/01/2007 31/12/2500 LIBEN Fresh, chilled or frozen frogs' legs 01/01/2007 31/12/2500 -02089080 01/01/1996 31/12/2001 LIBEN Meat and edible offal, fresh, chilled or frozen (excl. bovine animals, swine, sheep, goats, horses, asses, mules, hinnies, poultry "fowls of the species Gallus domesticus", ducks, geese, turkeys, guinea fowls, rabbits, hares, pigeons, game, whales, seals, reindeer and frogs' legs) 01/01/1996 31/12/2001 -02089090 01/01/1988 31/12/1995 LIBEN Fresh, chilled or frozen meat and edible offal n.e.s. 01/01/1988 31/12/1995 -02089095 01/01/2002 31/12/2011 LIBEN Meat and edible offal, fresh, chilled or frozen (excl. bovine animals, swine, sheep, goats, horses, asses, mules, hinnies, poultry "fowls of the species Gallus domesticus, ducks, geese, turkeys, guinea fowls", rabbits, hares, primates, whales, dolphins and purpoises "mammals of the order Cetacea", manatees and dugongs "mammals of the order Sirenia", reptiles, pigeons, game, seal meat, reindeer and frogs' legs) 01/01/2002 31/12/2011 -02089098 01/01/2012 31/12/2500 LIBEN Fresh, chilled or frozen meat and edible offal (excl. bovine animals, swine, sheep, goats, horses, asses, mules, hinnies, poultry, rabbits, hares, primates, whales, dolphins and porpoises [mammals of the order Cetacea], manatees and dugongs [mammals of the order Sirenia], seals, sea lions and walruses [mammals of the suborder Pinnipedia], reptiles, pigeons, game, reindeer and frogs' legs) 01/01/2012 31/12/2500 -0209 01/01/1988 31/12/2500 LIBEN Pig fat, free of lean meat, and poultry fat, not rendered or otherwise extracted, fresh, chilled, frozen, salted, in brine, dried or smoked 01/01/1988 31/12/2500 -020900 01/01/1988 31/12/2011 LIBEN Pig fat, free of lean meat, and poultry fat, not rendered or otherwise extracted, fresh, chilled, frozen, salted, in brine, dried or smoked 01/01/1988 31/12/2011 -02090011 01/01/1988 31/12/2011 LIBEN Fresh, chilled or frozen subcutaneous pig fat, salted or in brine 01/01/1988 31/12/2011 -02090019 01/01/1988 31/12/2011 LIBEN Dried or smoked subcutaneous pig fat 01/01/1988 31/12/2011 -02090030 01/01/1988 31/12/2011 LIBEN Pig fat, not rendered or otherwise extracted 01/01/1988 31/12/2011 -02090090 01/01/1988 31/12/2011 LIBEN Poultry fat, not rendered or otherwise extracted 01/01/1988 31/12/2011 -020910 01/01/2012 31/12/2500 LIBEN Pig fat, free of lean meat, not rendered or otherwise extracted, fresh, chilled, frozen, salted, in brine, dried or smoked 01/01/2012 31/12/2500 -02091011 01/01/2012 31/12/2500 LIBEN Subcutaneous pig fat, free of lean meat, not rendered or otherwise extracted, fresh, chilled, frozen, salted or in brine 01/01/2012 31/12/2500 -02091019 01/01/2012 31/12/2500 LIBEN Subcutaneous pig fat, free of lean meat, not rendered or otherwise extracted, dried or smoked 01/01/2012 31/12/2500 -02091090 01/01/2012 31/12/2500 LIBEN Pig fat, free of lean meat, not rendered or otherwise extracted, fresh, chilled, frozen, salted, in brine, dried or smoked (excl. subcutaneous) 01/01/2012 31/12/2500 -020990 01/01/2012 31/12/2500 LIBEN Poultry fat, not rendered or otherwise extracted, fresh, chilled, frozen, salted, in brine, dried or smoked 01/01/2012 31/12/2500 -02099000 01/01/2012 31/12/2500 LIBEN Poultry fat, not rendered or otherwise extracted, fresh, chilled, frozen, salted, in brine, dried or smoked 01/01/2012 31/12/2500 -0210 01/01/1988 31/12/2500 LIBEN Meat and edible offal, salted, in brine, dried or smoked; edible flours and meals of meat or meat offal 01/01/1988 31/12/2500 -021011 01/01/1988 31/12/2500 LIBEN Hams, shoulders and cuts thereof of swine, salted, in brine, dried or smoked, with bone in 01/01/1988 31/12/2500 -02101111 01/01/1988 31/12/2500 LIBEN Domestic swine hams and cuts thereof, salted or in brine, with bone in 01/01/1988 31/12/2500 -02101119 01/01/1988 31/12/2500 LIBEN Domestic swine shoulders and cuts thereof, salted or in brine, with bone in 01/01/1988 31/12/2500 -02101131 01/01/1988 31/12/2500 LIBEN Domestic swine hams and cuts thereof, dried or smoked, with bone in 01/01/1988 31/12/2500 -02101139 01/01/1988 31/12/2500 LIBEN Domestic swine shoulders and cuts thereof, dried or smoked, with bone in 01/01/1988 31/12/2500 -02101190 01/01/1988 31/12/2500 LIBEN Hams, shoulders and cuts thereof of non-domestic swine, salted, in brine, dried or smoked, with bone in 01/01/1988 31/12/2500 -021012 01/01/1988 31/12/2500 LIBEN Bellies "streaky" and cuts thereof of swine, salted, in brine, dried or smoked 01/01/1988 31/12/2500 -02101211 01/01/1988 31/12/2500 LIBEN Bellies "streaky" and cuts thereof of domestic swine, salted or in brine 01/01/1988 31/12/2500 -02101219 01/01/1988 31/12/2500 LIBEN Bellies "streaky" and cuts thereof of domestic swine, dried or smoked 01/01/1988 31/12/2500 -02101290 01/01/1988 31/12/2500 LIBEN Bellies "streaky" and cuts thereof of non-domestic swine, salted, in brine, dried or smoked 01/01/1988 31/12/2500 -021019 01/01/1988 31/12/2500 LIBEN Meat of swine, salted, in brine, dried or smoked (excl. hams, shoulders and cuts thereof, with bone in, and bellies and cuts thereof) 01/01/1988 31/12/2500 -02101910 01/01/1988 31/12/2500 LIBEN Bacon sides or spencers of domestic swine, salted or in brine 01/01/1988 31/12/2500 -02101920 01/01/1988 31/12/2500 LIBEN Three-quarter-sides or middles of domestic swine, salted or in brine 01/01/1988 31/12/2500 -02101930 01/01/1988 31/12/2500 LIBEN Fore-ends and cuts thereof of domestic swine, salted or in brine 01/01/1988 31/12/2500 -02101940 01/01/1988 31/12/2500 LIBEN Loins and cuts thereof of domestic swine, salted or in brine 01/01/1988 31/12/2500 -02101950 01/01/2005 31/12/2500 LIBEN Meat of domestic swine, salted or in brine (excl. hams, shoulders and cuts thereof, bellies and cuts thereof, bacon sides or spencers, three-quarter sides or middles, and fore-ends, loins and cuts thereof) 01/01/2005 31/12/2500 -02101951 01/01/1988 31/12/2004 LIBEN Boneless meat of domestic swine, salted or in brine (excl. bellies and cuts thereof) 01/01/1988 31/12/2004 -02101959 01/01/1988 31/12/2004 LIBEN Meat of domestic swine, salted or in brine, with bone in (excl. hams, shoulders and cuts thereof, bellies and cuts thereof, bacon sides or spencers, three-quarter sides or middles, and fore-ends, loins and cuts thereof) 01/01/1988 31/12/2004 -02101960 01/01/1988 31/12/2500 LIBEN Domestic swine fore-ends and cuts thereof, dried or smoked 01/01/1988 31/12/2500 -02101970 01/01/1988 31/12/2500 LIBEN Domestic swine loins and cuts thereof, dried or smoked 01/01/1988 31/12/2500 -02101981 01/01/1988 31/12/2500 LIBEN Dried or smoked boneless domestic swine meat (excl. bellies and cuts thereof) 01/01/1988 31/12/2500 -02101989 01/01/1988 31/12/2500 LIBEN Dried or smoked domestic swine meat, with bone in (excl. hams, shoulders and cuts thereof, bellies and cuts thereof, and fore-ends, loins and cuts thereof) 01/01/1988 31/12/2500 -02101990 01/01/1988 31/12/2500 LIBEN Meat of non-domestic swine, salted, in brine, dried or smoked (excl. hams, shoulders and cuts thereof, with bone in, and bellies and cuts thereof) 01/01/1988 31/12/2500 -021020 01/01/1988 31/12/2500 LIBEN Meat of bovine animals, salted, in brine, dried or smoked 01/01/1988 31/12/2500 -02102010 01/01/1988 31/12/2500 LIBEN Meat of bovine animals, salted, in brine, dried or smoked, with bone in 01/01/1988 31/12/2500 -02102090 01/01/1988 31/12/2500 LIBEN Boneless meat of bovine animals, salted, in brine, dried or smoked 01/01/1988 31/12/2500 -021090 01/01/1988 31/12/2001 LIBEN Meat and edible offal, salted, in brine, dried or smoked, and edible flours and meals of meat or meat offal (excl. bovine and swine meat) 01/01/1988 31/12/2001 -02109010 01/01/1988 31/12/2001 LIBEN Horsemeat, salted, in brine or dried 01/01/1988 31/12/2001 -02109011 01/01/1988 31/12/2001 LIBEN Meat of sheep and goats, salted, in brine, dried or smoked, with bone in 01/01/1988 31/12/2001 -02109019 01/01/1988 31/12/2001 LIBEN Boneless meat of sheep and goats, salted, in brine, dried or smoked 01/01/1988 31/12/2001 -02109020 01/01/1988 31/12/1995 LIBEN Meat, salted, in brine, dried or smoked (excl. of swine, bovine, sheep or goat, and horse meat, salted, in brine or dried) 01/01/1988 31/12/1995 -02109021 01/01/1996 31/12/2001 LIBEN Reindeer meat, salted, in brine, dried or smoked 01/01/1996 31/12/2001 -02109029 01/01/1996 31/12/2001 LIBEN Meat, salted, in brine, dried or smoked (excl. of swine, bovine animals, reindeer, sheep or goats, and horse meat, salted, in brine or dried) 01/01/1996 31/12/2001 -02109031 01/01/1988 31/12/2001 LIBEN Edible domestic swine livers, salted, in brine, dried or smoked 01/01/1988 31/12/2001 -02109039 01/01/1988 31/12/2001 LIBEN Edible domestic swine offal, salted, in brine, dried or smoked (excl. livers) 01/01/1988 31/12/2001 -02109041 01/01/1988 31/12/2001 LIBEN Edible thick skirt and thin skirt of bovine animals, salted, in brine, dried or smoked 01/01/1988 31/12/2001 -02109049 01/01/1988 31/12/2001 LIBEN Edible offal of bovine animals, salted, in brine, dried or smoked (excl. thick skirt and thin skirt) 01/01/1988 31/12/2001 -02109060 01/01/1988 31/12/2001 LIBEN Edible offal of sheep and goats, salted, in brine, dried or smoked 01/01/1988 31/12/2001 -02109071 01/01/1988 31/12/2001 LIBEN Edible fatty goose or duck livers, salted or in brine 01/01/1988 31/12/2001 -02109079 01/01/1988 31/12/2001 LIBEN Edible poultry liver, salted, in brine, dried or smoked (excl. fatty goose or duck livers, salted or in brine) 01/01/1988 31/12/2001 -02109080 01/01/1988 31/12/2001 LIBEN Edible offal, salted, in brine, dried or smoked (excl. domestic swine, bovine animals, sheep, goats and poultry liver) 01/01/1988 31/12/2001 -02109090 01/01/1988 31/12/2001 LIBEN Edible flours and meals of meat or meat offal 01/01/1988 31/12/2001 -021091 01/01/2002 31/12/2500 LIBEN Meat and edible offal, salted, in brine, dried or smoked, and edible flours and meals of meat and meat offal, of primates 01/01/2002 31/12/2500 -02109100 01/01/2002 31/12/2500 LIBEN Meat and edible offal, salted, in brine, dried or smoked, and edible flours and meals of meat and meat offal, of primates 01/01/2002 31/12/2500 -021092 01/01/2002 31/12/2500 LIBEN Meat and edible offal, salted, in brine, dried or smoked, and edible flours and meals of meat or meat offal, of whales, dolphins and porpoises (mammals of the order Cetacea), manatees and dugongs (mammals of the order Sirenia) and seals, sea lions and walruses (mammals of the suborder Pinnipedia) 01/01/2002 31/12/2500 -02109200 01/01/2002 31/12/2011 LIBEN Meat and edible offal, salted, in brine, dried or smoked, and edible flours and meals of meat and meat offal, of whales, dolphins and purpoises "mammals of the order Cetacea" and manatees and dugongs "mammals of the order Sirenia" 01/01/2002 31/12/2011 -02109210 01/01/2012 31/12/2500 LIBEN Meat and edible offal, salted, in brine, dried or smoked, and edible flours and meals of meat or meat offal, of whales, dolphins and porpoises (mammals of the order Cetacea) and manatees and dugongs (mammals of the order Sirenia) 01/01/2012 31/12/2500 -02109291 01/01/2012 31/12/2500 LIBEN Meat, salted, in brine, dried or smoked, of seals, sea lions and walruses (mammals of the suborder Pinnipedia) 01/01/2012 31/12/2500 -02109292 01/01/2012 31/12/2500 LIBEN Edible offal, salted, in brine, dried or smoked, of seals, sea lions and walruses (mammals of the suborder Pinnipedia) 01/01/2012 31/12/2500 -02109299 01/01/2012 31/12/2500 LIBEN Edible flours and meals of meat or meat offal, of seals, sea lions and walruses (mammals of the suborder Pinnipedia) 01/01/2012 31/12/2500 -021093 01/01/2002 31/12/2500 LIBEN Meat and edible offal, salted, in brine, dried or smoked, and edible flours and meals of meat and meat offal, of reptiles "e.g. snakes, turtles, alligators" 01/01/2002 31/12/2500 -02109300 01/01/2002 31/12/2500 LIBEN Meat and edible offal, salted, in brine, dried or smoked, and edible flours and meals of meat and meat offal, of reptiles "e.g. snakes, turtles, alligators" 01/01/2002 31/12/2500 -021099 01/01/2002 31/12/2500 LIBEN Meat and edible offal, salted, in brine, dried or smoked, and edible flours and meals of meat and meat offal (excl. meat of bovine animals and swine and meat and edible offal of primates, whales, dolphins and porpoises "mammals of the order Cetacea", manatees and dugongs "mammals of the order Sirenia", seals, sea lions and walruses "mammals of the suborder Pinnipedia" and reptiles) 01/01/2002 31/12/2500 -02109910 01/01/2002 31/12/2500 LIBEN Horsemeat, salted, in brine or dried 01/01/2002 31/12/2500 -02109921 01/01/2002 31/12/2500 LIBEN Meat of sheep and goats, salted, in brine, dried or smoked, with bone in 01/01/2002 31/12/2500 -02109929 01/01/2002 31/12/2500 LIBEN Boneless meat of sheep and goats, salted, in brine, dried or smoked 01/01/2002 31/12/2500 -02109931 01/01/2002 31/12/2500 LIBEN Reindeer meat, salted, in brine, dried or smoked 01/01/2002 31/12/2500 -02109939 01/01/2002 31/12/2011 LIBEN Meat, salted, in brine, dried or smoked (excl. of swine, bovine animals, reindeer, sheep or goats, primates, whales, dolphins and purpoises "mammals of the order Cetacea", manatees and dugongs "mammals of the order Sirenia", reptiles, and meat, salted, in brine or dried, of horses) 01/01/2002 31/12/2011 -02109939 01/01/2012 31/12/2500 LIBEN Meat, salted, in brine, dried or smoked (excl. of swine, bovine animals, reindeer, sheep or goats, primates, whales, dolphins and porpoises "mammals of the order Cetacea", manatees and dugongs "mammals of the order Sirenia", seals, sea lions and walruses, reptiles, and meat, salted, in brine or dried, of horses) 01/01/2012 31/12/2500 -02109941 01/01/2002 31/12/2500 LIBEN Edible domestic swine livers, salted, in brine, dried or smoked 01/01/2002 31/12/2500 -02109949 01/01/2002 31/12/2500 LIBEN Edible domestic swine offal, salted, in brine, dried or smoked (excl. livers) 01/01/2002 31/12/2500 -02109951 01/01/2002 31/12/2500 LIBEN Edible thick skirt and thin skirt of bovine animals, salted, in brine, dried or smoked 01/01/2002 31/12/2500 -02109959 01/01/2002 31/12/2500 LIBEN Edible offal of bovine animals, salted, in brine, dried or smoked (excl. thick skirt and thin skirt) 01/01/2002 31/12/2500 -02109960 01/01/2002 31/12/2011 LIBEN Edible offal of sheep and goats, salted, in brine, dried or smoked 01/01/2002 31/12/2011 -02109971 01/01/2002 31/12/2500 LIBEN Edible fatty goose or duck livers, salted or in brine 01/01/2002 31/12/2500 -02109979 01/01/2002 31/12/2500 LIBEN Edible poultry liver, salted, in brine, dried or smoked (excl. fatty goose or duck livers) 01/01/2002 31/12/2500 -02109980 01/01/2002 31/12/2011 LIBEN Edible offal, salted, in brine, dried or smoked (excl. of domestic swine, bovine animals, sheep, goats, primates, whales, dolphins and purpoises "mammals of the order Cetacea", manatees and dugongs "mammals of the order Sirenia", reptiles and poultry liver) 01/01/2002 31/12/2011 -02109985 01/01/2012 31/12/2500 LIBEN Edible offal, salted, in brine, dried or smoked (excl. of domestic swine, bovine animals, primates, whales, dolphins and porpoises "mammals of the order Cetacea", manatees and dugongs "mammals of the order Sirenia", seals, sea lions and walruses, reptiles and poultry liver) 01/01/2012 31/12/2500 -02109990 01/01/2002 31/12/2011 LIBEN Edible flours and meals, of meat and meat offal 01/01/2002 31/12/2011 -02109990 01/01/2012 31/12/2500 LIBEN Edible flours and meals of meat or meat offal (excl. of primates, whales, dolphins and porpoises "mammals of the order Cetacea", manatees and dugongs "mammals of the order Sirenia", seals, sea lions and walruses and reptiles) 01/01/2012 31/12/2500 -02CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 02 01/01/2002 31/12/2500 -02CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 02 01/01/2002 31/12/2500 -02CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 02 01/01/2002 31/12/2500 -02MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -02MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -02MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -02SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 02 01/01/1988 31/12/2500 -02SSS0 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 02 and SITC section 0 01/01/1997 31/12/2500 -02SSS011 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 02 and SITC group 011 01/01/1997 31/12/2500 -02SSS012 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 02 and SITC group 012 01/01/1997 31/12/2500 -02SSS016 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 02 and SITC group 016 01/01/1997 31/12/2500 -02SSS4 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 02 and SITC section 4 01/01/1997 31/12/2500 -02SSS411 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 02 and SITC group 411 01/01/1997 31/12/2500 -02SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 02 and SITC section 9 01/01/1988 31/12/1996 -02SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 02 and SITC section 9 01/01/1997 31/12/2500 -02SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 02 and SITC group 999 01/01/1988 31/12/1996 -02SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 02 and SITC group 999 01/01/1997 31/12/2500 -03 01/01/1988 31/12/2500 LIBEN FISH AND CRUSTACEANS, MOLLUSCS AND OTHER AQUATIC INVERTEBRATES 01/01/1988 31/12/2500 -0301 01/01/1988 31/12/2500 LIBEN Live fish 01/01/1988 31/12/2500 -030110 01/01/1988 31/12/2011 LIBEN Live ornamental fish 01/01/1988 31/12/2011 -03011010 01/01/1988 31/12/2011 LIBEN Live ornamental freshwater fish 01/01/1988 31/12/2011 -03011090 01/01/1988 31/12/2011 LIBEN Live ornamental saltwater fish 01/01/1988 31/12/2011 -030111 01/01/2012 31/12/2500 LIBEN Live ornamental freshwater fish 01/01/2012 31/12/2500 -03011100 01/01/2012 31/12/2500 LIBEN Live ornamental freshwater fish 01/01/2012 31/12/2500 -030119 01/01/2012 31/12/2500 LIBEN Live ornamental fish (excl. freshwater) 01/01/2012 31/12/2500 -03011900 01/01/2012 31/12/2500 LIBEN Live ornamental fish (excl. freshwater) 01/01/2012 31/12/2500 -030191 01/01/1988 31/12/2500 LIBEN Live trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae, Oncorhynchus apache and Oncorhynchus chrysogaster" 01/01/1988 31/12/2500 -03019100 01/01/1988 31/12/1995 LIBEN Live trout "Salmo trutta, Salmo gairdneri, Salmo clarki, Salmo aguabonita, Salmo gilae" 01/01/1988 31/12/1995 -03019110 01/01/1996 31/12/2500 LIBEN Live trout "Oncorhynchus apache and Oncorhynchus chrysogaster" 01/01/1996 31/12/2500 -03019190 01/01/1996 31/12/2500 LIBEN Live trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae" 01/01/1996 31/12/2500 -030192 01/01/1988 31/12/2500 LIBEN Live eels "Anguilla spp." 01/01/1988 31/12/2500 -03019200 01/01/1988 31/12/2011 LIBEN Live eels "Anguilla spp." 01/01/1988 31/12/2011 -03019210 01/01/2012 31/12/2500 LIBEN Live eels "Anguilla spp.", of a length of < 12 cm 01/01/2012 31/12/2500 -03019230 01/01/2012 31/12/2500 LIBEN Live eels "Anguilla spp.", of a length of => 12 cm but < 20 cm 01/01/2012 31/12/2500 -03019290 01/01/2012 31/12/2500 LIBEN Live eels "Anguilla spp.", of a length of => 20 cm 01/01/2012 31/12/2500 -030193 01/01/1988 31/12/2500 LIBEN Live carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp." 01/01/1988 31/12/2500 -03019300 01/01/1988 31/12/2011 LIBEN Live carp 01/01/1988 31/12/2011 -03019300 01/01/2012 31/12/2016 LIBEN Live carp (Cyprinus carpio, Carassius carassius, Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus) 01/01/2012 31/12/2016 -03019300 01/01/2017 31/12/2500 LIBEN Live carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp." 01/01/2017 31/12/2500 -030194 01/01/2007 31/12/2500 LIBEN Live Atlantic and Pacific bluefin tuna (Thunnus thynnus, Thunnus orientalis) 01/01/2007 31/12/2500 -03019400 01/01/2007 31/12/2011 LIBEN Live bluefin tunas "Thunnus thynnus" 01/01/2007 31/12/2011 -03019410 01/01/2012 31/12/2500 LIBEN Live Atlantic bluefin tuna "Thunnus thynnus" 01/01/2012 31/12/2500 -03019490 01/01/2012 31/12/2500 LIBEN Live Pacific bluefin tuna "Thunnus orientalis" 01/01/2012 31/12/2500 -030195 01/01/2007 31/12/2500 LIBEN Live southern bluefin tunas "Thunnus maccoyii" 01/01/2007 31/12/2500 -03019500 01/01/2007 31/12/2500 LIBEN Live southern bluefin tunas "Thunnus maccoyii" 01/01/2007 31/12/2500 -030199 01/01/1988 31/12/2500 LIBEN Live fish (excl. ornamental fish, trout [Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae, Oncorhynchus apache and Oncorhynchus chrysogaster], eels [Anguilla spp.], carp [Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.], Atlantic and Pacific bluefin tuna [Thunnus thynnus, Thunnus orientalis] and southern bluefin tuna [Thunnus maccoyii]) 01/01/1988 31/12/2500 -03019911 01/01/1988 31/12/2500 LIBEN Live Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho" 01/01/1988 31/12/2500 -03019917 01/01/2017 31/12/2500 LIBEN Live freshwater fish (excl. ornamental fish, trout, eels, carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho") 01/01/2017 31/12/2500 -03019918 01/01/2012 31/12/2016 LIBEN Live freshwater fish (excl. ornamental fish, trout, eels, carp "Cyprinus carpio, Carassius carassius, Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus", Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho") 01/01/2012 31/12/2016 -03019919 01/01/1988 31/12/1995 LIBEN Live freshwater fish (excl. ornamental fish, trout, eels, carp, Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho") 01/01/1988 31/12/1995 -03019919 01/01/1996 31/12/2011 LIBEN Live freshwater fish (excl. ornamental fish, trout, eels, carp, Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho") 01/01/1996 31/12/2011 -03019980 01/01/2007 31/12/2011 LIBEN Live saltwater fish (excl. ornamental fish, trout [Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae, Oncorhynchus apache and Oncorhynchus chrysogaster], eels [Anguilla spp.], bluefin tunas [Thunnus thynnus] and southern bluefin tunas [Thunnus maccoyii]) 01/01/2007 31/12/2011 -03019985 01/01/2012 31/12/2500 LIBEN Live saltwater fish (excl. ornamental fish, trout [Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae, Oncorhynchus apache and Oncorhynchus chrysogaster], eels [Anguilla spp.], Atlantic and Pacific bluefin tunas [Thunnus thynnus, Thunnus orientalis] and southern bluefin tunas [Thunnus maccoyii]) 01/01/2012 31/12/2500 -03019990 01/01/1988 31/12/2006 LIBEN Live saltwater fish (excl. ornamental fish, trout [Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae, Oncorhynchus apache and Oncorhynchus chrysogaster] and eels [Anguilla spp.]) 01/01/1988 31/12/2006 -0302 01/01/1988 31/12/2500 LIBEN Fish, fresh or chilled (excl. fish fillets and other fish meat of heading 0304) 01/01/1988 31/12/2500 -030211 01/01/1988 31/12/2500 LIBEN Fresh or chilled trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae, Oncorhynchus apache and Oncorhynchus chrysogaster" 01/01/1988 31/12/2500 -03021100 01/01/1988 31/12/1995 LIBEN Fresh or chilled trout "Salmo trutta, Salmo gairdneri, Salmo clarki, Salmo aguabonita, Salmo gilae" 01/01/1988 31/12/1995 -03021110 01/01/1996 31/12/2500 LIBEN Fresh or chilled trout "Oncorhynchus apache and Oncorhynchus chrysogaster" 01/01/1996 31/12/2500 -03021120 01/01/2003 31/12/2500 LIBEN Fresh or chilled trout of the species "Oncorhynchus mykiss", with heads on and gills on, gutted, weighing > 1,2 kg each, or with heads off, gilled and gutted, weighing > 1 kg each 01/01/2003 31/12/2500 -03021180 01/01/2003 31/12/2500 LIBEN Fresh or chilled trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae" (excl. of the species "Oncorhynchus mykiss", with heads on and gills on, gutted, weighing > 1,2 kg each, or with heads off, gilled and gutted, weighing > 1 kg each) 01/01/2003 31/12/2500 -03021190 01/01/1996 31/12/2002 LIBEN Forellen der Arten "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita und Oncorhynchus gilae", frisch oder gekühlt 01/01/1996 31/12/2002 -030212 01/01/1988 31/12/2011 LIBEN Fresh or chilled Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho" 01/01/1988 31/12/2011 -03021200 01/01/1988 31/12/2011 LIBEN Fresh or chilled Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho" 01/01/1988 31/12/2011 -030213 01/01/2012 31/12/2500 LIBEN Fresh or chilled Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus" 01/01/2012 31/12/2500 -03021300 01/01/2012 31/12/2500 LIBEN Fresh or chilled Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus" 01/01/2012 31/12/2500 -030214 01/01/2012 31/12/2500 LIBEN Fresh or chilled Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho" 01/01/2012 31/12/2500 -03021400 01/01/2012 31/12/2500 LIBEN Fresh or chilled Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho" 01/01/2012 31/12/2500 -030219 01/01/1988 31/12/2500 LIBEN Fresh or chilled salmonidae (excl. trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae, Oncorhynchus apache and Oncorhynchus chrysogaster", Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho") 01/01/1988 31/12/2500 -03021900 01/01/1988 31/12/1995 LIBEN Fresh or chilled salmonidae (excl. trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae, Oncorhynchus apache and Oncorhynchus chrysogaster", Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho") 01/01/1988 31/12/1995 -03021900 01/01/1996 31/12/2500 LIBEN Fresh or chilled salmonidae (excl. trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae, Oncorhynchus apache and Oncorhynchus chrysogaster", Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho") 01/01/1996 31/12/2500 -030221 01/01/1988 31/12/2500 LIBEN Fresh or chilled lesser or Greenland halibut "Reinhardtius hippoglossoides, Atlantic halibut "Hippoglossus hippoglossus" and Pacific halibut "Hippoglossus stenolepis" 01/01/1988 31/12/2500 -03022110 01/01/1988 31/12/2500 LIBEN Fresh or chilled lesser or Greenland halibut "Reinhardtius hippoglossoides" 01/01/1988 31/12/2500 -03022130 01/01/1988 31/12/2500 LIBEN Fresh or chilled Atlantic halibut "Hippoglossus hippoglossus" 01/01/1988 31/12/2500 -03022190 01/01/1988 31/12/2500 LIBEN Fresh or chilled Pacific halibut "Hippoglossus stenolepis" 01/01/1988 31/12/2500 -030222 01/01/1988 31/12/2500 LIBEN Fresh or chilled plaice "Pleuronectes platessa" 01/01/1988 31/12/2500 -03022200 01/01/1988 31/12/2500 LIBEN Fresh or chilled plaice "Pleuronectes platessa" 01/01/1988 31/12/2500 -030223 01/01/1988 31/12/2500 LIBEN Fresh or chilled sole "Solea spp." 01/01/1988 31/12/2500 -03022300 01/01/1988 31/12/2500 LIBEN Fresh or chilled sole "Solea spp." 01/01/1988 31/12/2500 -030224 01/01/2012 31/12/2500 LIBEN Fresh or chilled turbot "Psetta maxima" 01/01/2012 31/12/2500 -03022400 01/01/2012 31/12/2500 LIBEN Fresh or chilled turbot "Psetta maxima" 01/01/2012 31/12/2500 -030229 01/01/1988 31/12/2500 LIBEN Fresh or chilled flat fish "Pleuronectidae, Bothidae, Cynoglossidae, Soleidae, Scophthalmidae and Catharidae" (excl. halibut "Reinhardtius hippoglossoides, Hippoglossus hippoglossus and Hippoglossus stenolepis", plaice "Pleuronectes platessa", sole "Solea spp." and turbot "Psetta maxima") 01/01/1988 31/12/2500 -03022900 01/01/1988 31/12/1989 LIBEN Fresh or chilled flat fish (excl. halibut, plaice and sole) 01/01/1988 31/12/1989 -03022910 01/01/1990 31/12/2500 LIBEN Fresh or chilled megrim "Lepidorhombus spp." 01/01/1990 31/12/2500 -03022980 01/01/2012 31/12/2500 LIBEN Fresh or chilled flat fish "Pleuronectidae, Bothidae, Cynoglossidae, Soleidae, Scophthalmidae and Catharidae" (excl. lesser or Greenland halibut, Atlantic halibut, Pacific halibut, plaice, sole, turbot and megrim) 01/01/2012 31/12/2500 -03022990 01/01/1990 31/12/2011 LIBEN Fresh or chilled flat fish "Pleuronectidae, Bothidae, Cynoglossidae, Soleidae, Scophthalmidae and Catharidae" (excl. lesser or Greenland halibut, Atlantic halibut, Pacific halibut, plaice, sole and megrim) 01/01/1990 31/12/2011 -030231 01/01/1988 31/12/2500 LIBEN Fresh or chilled albacore or longfinned tunas "Thunnus alalunga" 01/01/1988 31/12/2500 -03023110 01/01/1988 31/12/2500 LIBEN Fresh or chilled albacore or longfinned tunas "Thunnus alalunga" for industrial processing or preservation 01/01/1988 31/12/2500 -03023190 01/01/1988 31/12/2500 LIBEN Fresh or chilled albacore or longfinned tunas "Thunnus alalunga" (excl. for industrial processing or preservation) 01/01/1988 31/12/2500 -030232 01/01/1988 31/12/2500 LIBEN Fresh or chilled yellowfin tunas "Thunnus albacares" 01/01/1988 31/12/2500 -03023210 01/01/1988 31/12/2500 LIBEN Fresh or chilled yellowfin tunas "Thunnus albacares" for industrial processing or preservation 01/01/1988 31/12/2500 -03023290 01/01/1988 31/12/2500 LIBEN Fresh or chilled yellowfin tunas "Thunnus albacares" (excl. for industrial processing or preservation) 01/01/1988 31/12/2500 -030233 01/01/1988 31/12/2500 LIBEN Fresh or chilled skipjack or stripe-bellied bonito 01/01/1988 31/12/2500 -03023310 01/01/1988 31/12/2500 LIBEN Fresh or chilled skipjack or stripe-bellied bonito for industrial processing or preservation 01/01/1988 31/12/2500 -03023390 01/01/1988 31/12/2500 LIBEN Fresh or chilled skipjack or stripe-bellied bonito (excl. for industrial processing or preservation) 01/01/1988 31/12/2500 -030234 01/01/2002 31/12/2500 LIBEN Fresh or chilled bigeye tunas "Thunnus obesus" 01/01/2002 31/12/2500 -03023410 01/01/2002 31/12/2500 LIBEN Fresh or chilled bigeye tunas "Thunnus obesus" for industrial processing or preservation 01/01/2002 31/12/2500 -03023490 01/01/2002 31/12/2500 LIBEN Fresh or chilled bigeye tunas "Thunnus obesus" (excl. tunas for industrial processing or preservation) 01/01/2002 31/12/2500 -030235 01/01/2002 31/12/2500 LIBEN Fresh or chilled Atlantic and Pacific bluefin tuna (Thunnus thynnus, Thunnus orientalis) 01/01/2002 31/12/2500 -03023510 01/01/2002 31/12/2011 LIBEN Fresh or chilled bluefin tunas 'Thunnus thynnus', for industrial processing or preservation 01/01/2002 31/12/2011 -03023511 01/01/2012 31/12/2500 LIBEN Fresh or chilled Atlantic bluefin tuna "Thunnus thynnus", for industrial processing or preservation 01/01/2012 31/12/2500 -03023519 01/01/2012 31/12/2500 LIBEN Fresh or chilled Atlantic bluefin tuna "Thunnus thynnus" (excl. for industrial processing or preservation) 01/01/2012 31/12/2500 -03023590 01/01/2002 31/12/2011 LIBEN Fresh or chilled bluefin tunas 'Thunnus thynnus' (excl. tunas for industrial processing or preservation) 01/01/2002 31/12/2011 -03023591 01/01/2012 31/12/2500 LIBEN Fresh or chilled Pacific bluefin tuna "Thunnus orientalis", for industrial processing or preservation 01/01/2012 31/12/2500 -03023599 01/01/2012 31/12/2500 LIBEN Fresh or chilled Pacific bluefin tuna "Thunnus orientalis" (excl. for industrial processing or preservation) 01/01/2012 31/12/2500 -030236 01/01/2002 31/12/2500 LIBEN Fresh or chilled Southern bluefin tunas "Thunnus maccoyii" 01/01/2002 31/12/2500 -03023610 01/01/2002 31/12/2500 LIBEN Fresh or chilled Southern bluefin tunas "Thunnus maccoyii" for industrial processing or preservation 01/01/2002 31/12/2500 -03023690 01/01/2002 31/12/2500 LIBEN Fresh or chilled Southern bluefin tunas "Thunnus maccoyii" (excl. tunas for industrial processing or preservation) 01/01/2002 31/12/2500 -030239 01/01/1988 31/12/2500 LIBEN Fresh or chilled tunas of the genus "Thunnus" (excl. Thunnus alalunga, Thunnus albacares, Thunnus obesus, Thunnus thynnus, Thunnus orientalis and Thunnus maccoyii) 01/01/1988 31/12/2500 -03023910 01/01/1988 31/12/1993 LIBEN Fresh or chilled tunas for industrial processing or preservation (excl. albacore, longfinned and yellowfin) 01/01/1988 31/12/1993 -03023910 01/01/2002 31/12/2011 LIBEN Fresh or chilled tunas of the genus "Thunnus" for industrial processing or preservation (excl. Thunnus alalunga, Thunnus albacares, Thunnus obesus, Thunnus thynnus and Thunnus maccoyii) 01/01/2002 31/12/2011 -03023911 01/01/1994 31/12/2001 LIBEN Bluefin tunas 'Thunnus thynnus', fresh or chilled, for industrial processing or preservation 01/01/1994 31/12/2001 -03023919 01/01/1994 31/12/2001 LIBEN Tunas of the genus Thunnus, fresh or chilled, for industrial processing or preservation (excl. white, yellowfin and bluefin) 01/01/1994 31/12/2001 -03023920 01/01/2012 31/12/2500 LIBEN Fresh or chilled tunas of the genus "Thunnus" for industrial processing or preservation (excl. Thunnus alalunga, Thunnus albacares, Thunnus obesus, Thunnus thynnus, Thunnus orientalis and Thunnus maccoyii) 01/01/2012 31/12/2500 -03023980 01/01/2012 31/12/2500 LIBEN Fresh or chilled tunas of the genus "Thunnus" (excl. tunas for industrial processing or preservation and Thunnus alalunga, Thunnus albacares, Thunnus obesus, Thunnus thynnus, Thunnus orientalis and Thunnus maccoyii) 01/01/2012 31/12/2500 -03023990 01/01/1988 31/12/1993 LIBEN Fresh or chilled tunas (excl. for industrial processing or preservation and albacore, longfinned and yellowfin) 01/01/1988 31/12/1993 -03023990 01/01/2002 31/12/2011 LIBEN Fresh or chilled tunas of the genus "Thunnus" (excl. tunas for industrial processing or preservation and Thunnus alalunga, Thunnus albacares, Thunnus obesus, Thunnus thynnus and Thunnus maccoyii) 01/01/2002 31/12/2011 -03023991 01/01/1994 31/12/2001 LIBEN Bluefin tunas 'Thunnus thynnus', fresh or chilled (excl. tunas for industrial processing or preservation) 01/01/1994 31/12/2001 -03023999 01/01/1994 31/12/2001 LIBEN Tunas of the genus Thunnus, fresh or chilled (excl. tunas for industrial processing or preservation and white, yellowfin and bluefin) 01/01/1994 31/12/2001 -030240 01/01/1988 31/12/2011 LIBEN Fresh or chilled herrings "Clupea harengus, clupea pallasii" 01/01/1988 31/12/2011 -03024000 01/01/2000 31/12/2011 LIBEN Fresh or chilled herrings "Clupea harengus, clupea pallasii" 01/01/2000 31/12/2011 -03024005 01/01/1996 31/12/1999 LIBEN Fresh or chilled herrings "Clupea harengus, Clupea pallasii", from 1 January to 14 February 01/01/1996 31/12/1999 -03024010 01/01/1988 31/12/1999 LIBEN Fresh or chilled herrings "Clupea harengus, Clupea pallasii", from 15 February to 15 June 01/01/1988 31/12/1999 -03024090 01/01/1988 31/12/1995 LIBEN Fresh or chilled herrings "Clupea harengus, Clupea pallasii", from 16 June to 14 February 01/01/1988 31/12/1995 -03024098 01/01/1996 31/12/1999 LIBEN Fresh or chilled herrings "Clupea harengus, Clupea pallasii", from 16 June to 31 December 01/01/1996 31/12/1999 -030241 01/01/2012 31/12/2500 LIBEN Fresh or chilled herring "Clupea harengus, clupea pallasii" 01/01/2012 31/12/2500 -03024100 01/01/2012 31/12/2500 LIBEN Fresh or chilled herring "Clupea harengus, clupea pallasii" 01/01/2012 31/12/2500 -030242 01/01/2012 31/12/2500 LIBEN Fresh or chilled anchovies "Engraulis spp." 01/01/2012 31/12/2500 -03024200 01/01/2012 31/12/2500 LIBEN Fresh or chilled anchovies "Engraulis spp." 01/01/2012 31/12/2500 -030243 01/01/2012 31/12/2500 LIBEN Fresh or chilled sardines "Sardina pilchardus, Sardinops spp.", sardinella "Sardinella spp.", brisling or sprats "Sprattus sprattus" 01/01/2012 31/12/2500 -03024310 01/01/2012 31/12/2500 LIBEN Fresh or chilled sardines "Sardina pilchardus" 01/01/2012 31/12/2500 -03024330 01/01/2012 31/12/2500 LIBEN Fresh or chilled sardines "Sardinops spp." and sardinella "Sardinella spp." 01/01/2012 31/12/2500 -03024390 01/01/2012 31/12/2500 LIBEN Fresh or chilled brisling or sprats "Sprattus sprattus" 01/01/2012 31/12/2500 -030244 01/01/2012 31/12/2500 LIBEN Fresh or chilled mackerel "Scomber scombrus, Scomber australasicus, Scomber japonicus" 01/01/2012 31/12/2500 -03024400 01/01/2012 31/12/2500 LIBEN Fresh or chilled mackerel "Scomber scombrus, Scomber australasicus, Scomber japonicus" 01/01/2012 31/12/2500 -030245 01/01/2012 31/12/2500 LIBEN Fresh or chilled jack and horse mackerel "Trachurus spp." 01/01/2012 31/12/2500 -03024510 01/01/2012 31/12/2500 LIBEN Fresh or chilled Atlantic horse mackerel "Trachurus trachurus" 01/01/2012 31/12/2500 -03024530 01/01/2012 31/12/2500 LIBEN Fresh or chilled Chilean jack mackerel "Trachurus murphyi" 01/01/2012 31/12/2500 -03024590 01/01/2012 31/12/2500 LIBEN Fresh or chilled jack and horse mackerel "Trachurus spp." "(excl. Atlantic horse mackerel and Chilean jack mackerel) 01/01/2012 31/12/2500 -030246 01/01/2012 31/12/2500 LIBEN Fresh or chilled cobia "Rachycentron canadum" 01/01/2012 31/12/2500 -03024600 01/01/2012 31/12/2500 LIBEN Fresh or chilled cobia "Rachycentron canadum" 01/01/2012 31/12/2500 -030247 01/01/2012 31/12/2500 LIBEN Fresh or chilled swordfish "Xiphias gladius" 01/01/2012 31/12/2500 -03024700 01/01/2012 31/12/2500 LIBEN Fresh or chilled swordfish "Xiphias gladius" 01/01/2012 31/12/2500 -030249 01/01/2017 31/12/2500 LIBEN Fresh or chilled Indian mackerels "Rastrelliger spp.", seerfishes "Scomberomorus spp.", jacks, crevalles "Caranx spp.", silver pomfrets "Pampus spp.", Pacific saury "Cololabis saira", scads "Decapterus spp.", capelin "Mallotus villosus", Kawakawa "Euthynnus affinis", bonitos "Sarda spp.", marlins, sailfishes and spearfish "Istiophoridae" 01/01/2017 31/12/2500 -03024911 01/01/2017 31/12/2500 LIBEN Fresh or chilled Kawakawa "Euthynnus affinis" for industrial processing or preservation 01/01/2017 31/12/2500 -03024919 01/01/2017 31/12/2500 LIBEN Fresh or chilled Kawakawa "Euthynnus affinis" (excl. for industrial processing or preservation) 01/01/2017 31/12/2500 -03024990 01/01/2017 31/12/2500 LIBEN Fresh or chilled Indian mackerels "Rastrelliger spp.", seerfishes "Scomberomorus spp.", jacks, crevalles "Caranx spp.", silver pomfrets "Pampus spp.", Pacific saury "Cololabis saira", scads "Decapterus spp.", capelin "Mallotus villosus", bonitos "Sarda spp.", marlins, sailfishes and spearfish "Istiophoridae" 01/01/2017 31/12/2500 -030250 01/01/1988 31/12/2011 LIBEN Fresh or chilled cod "gadus morhua, gadus ogac, gadus macrocephalus" 01/01/1988 31/12/2011 -03025010 01/01/1988 31/12/2011 LIBEN Fresh or chilled cod "Gadus morhua" 01/01/1988 31/12/2011 -03025090 01/01/1988 31/12/2011 LIBEN Fresh or chilled cod "Gadus ogac, Gadus macrocephalus" 01/01/1988 31/12/2011 -030251 01/01/2012 31/12/2500 LIBEN Fresh or chilled cod "Gadus morhua, Gadus ogac, Gadus macrocephalus" 01/01/2012 31/12/2500 -03025110 01/01/2012 31/12/2500 LIBEN Fresh or chilled cod "Gadus morhua" 01/01/2012 31/12/2500 -03025190 01/01/2012 31/12/2500 LIBEN Fresh or chilled cod "Gadus ogac, Gadus macrocephalus" 01/01/2012 31/12/2500 -030252 01/01/2012 31/12/2500 LIBEN Fresh or chilled haddock "Melanogrammus aeglefinus" 01/01/2012 31/12/2500 -03025200 01/01/2012 31/12/2500 LIBEN Fresh or chilled haddock "Melanogrammus aeglefinus" 01/01/2012 31/12/2500 -030253 01/01/2012 31/12/2500 LIBEN Fresh or chilled coalfish "Pollachius virens" 01/01/2012 31/12/2500 -03025300 01/01/2012 31/12/2500 LIBEN Fresh or chilled coalfish "Pollachius virens" 01/01/2012 31/12/2500 -030254 01/01/2012 31/12/2500 LIBEN Fresh or chilled hake "Merluccius spp., Urophycis spp." 01/01/2012 31/12/2500 -03025411 01/01/2012 31/12/2500 LIBEN Fresh or chilled Cape hake "shallow-water hake" "Merluccius capensis" and deepwater hake "deepwater Cape hake" "Merluccius paradoxus" 01/01/2012 31/12/2500 -03025415 01/01/2012 31/12/2500 LIBEN Fresh or chilled southern hake "Merluccius australis" 01/01/2012 31/12/2500 -03025419 01/01/2012 31/12/2500 LIBEN Fresh or chilled hake "Merluccius spp." (excl. cape hake, deepwater hake and southern hake) 01/01/2012 31/12/2500 -03025490 01/01/2012 31/12/2500 LIBEN Fresh or chilled hake "Urophycis spp." 01/01/2012 31/12/2500 -030255 01/01/2012 31/12/2500 LIBEN Fresh or chilled Alaska pollack "Theragra chalcogramma" 01/01/2012 31/12/2500 -03025500 01/01/2012 31/12/2500 LIBEN Fresh or chilled Alaska pollack "Theragra chalcogramma" 01/01/2012 31/12/2500 -030256 01/01/2012 31/12/2500 LIBEN Fresh or chilled blue whiting "Micromesistius poutassou, Micromesistius australis" 01/01/2012 31/12/2500 -03025600 01/01/2012 31/12/2500 LIBEN Fresh or chilled blue whiting "Micromesistius poutassou, Micromesistius australis" 01/01/2012 31/12/2500 -030259 01/01/2012 31/12/2500 LIBEN Fresh or chilled fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae (excl. cod, haddock, coalfish, hake, Alaska pollack and blue whitings) 01/01/2012 31/12/2500 -03025910 01/01/2012 31/12/2500 LIBEN Fresh or chilled fish of the species Boreogadus saida 01/01/2012 31/12/2500 -03025920 01/01/2012 31/12/2500 LIBEN Fresh or chilled whiting "Merlangius merlangus" 01/01/2012 31/12/2500 -03025930 01/01/2012 31/12/2500 LIBEN Fresh or chilled pollack "Pollachius pollachius" 01/01/2012 31/12/2500 -03025940 01/01/2012 31/12/2500 LIBEN Fresh or chilled ling "Molva spp." 01/01/2012 31/12/2500 -03025990 01/01/2012 31/12/2500 LIBEN Fresh or chilled fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae (excl. cod, haddock, coalfish, hake, Alaska pollack, blue whitings, Boreogadus saida, whiting, pollack and ling) 01/01/2012 31/12/2500 -030261 01/01/1988 31/12/2011 LIBEN Fresh or chilled sardines "Sardina pilchardus, Sardinops spp.", sardinella "Sardinella spp.", brisling or sprats "Sprattus sprattus" 01/01/1988 31/12/2011 -03026110 01/01/1988 31/12/2011 LIBEN Fresh or chilled sardines "Sardina pilchardus" 01/01/1988 31/12/2011 -03026130 01/01/1988 31/12/2011 LIBEN Fresh or chilled sardines "Sardinops spp." and sardinella "Sardinella spp." 01/01/1988 31/12/2011 -03026180 01/01/2000 31/12/2011 LIBEN Fresh or chilled brisling or sprats "Sprattus sprattus" 01/01/2000 31/12/2011 -03026190 01/01/1996 31/12/1999 LIBEN Fresh or chilled brisling or sprats "Sprattus sprattus", from 1 January to 14 February 01/01/1996 31/12/1999 -03026191 01/01/1988 31/12/1999 LIBEN Fresh or chilled brisling or sprats "Sprattus sprattus", from 15 February to 15 June 01/01/1988 31/12/1999 -03026198 01/01/1996 31/12/1999 LIBEN Fresh or chilled brisling or sprats, "Sprattus sprattus", from 16 June to 31 December 01/01/1996 31/12/1999 -03026199 01/01/1988 31/12/1995 LIBEN Fresh or chilled brisling or sprats, from 16 June to 14 February 01/01/1988 31/12/1995 -030262 01/01/1988 31/12/2011 LIBEN Fresh or chilled haddock "Melanogrammus aeglefinus" 01/01/1988 31/12/2011 -03026200 01/01/1988 31/12/2011 LIBEN Fresh or chilled haddock "Melanogrammus aeglefinus" 01/01/1988 31/12/2011 -030263 01/01/1988 31/12/2011 LIBEN Fresh or chilled coalfish "Pollachius virens" 01/01/1988 31/12/2011 -03026300 01/01/1988 31/12/2011 LIBEN Fresh or chilled coalfish "Pollachius virens" 01/01/1988 31/12/2011 -030264 01/01/1988 31/12/2011 LIBEN Fresh or chilled mackerel "Scomber scombrus, Scomber australasicus, Scomber japonicus" 01/01/1988 31/12/2011 -03026400 01/01/2000 31/12/2011 LIBEN Fresh or chilled mackerel "Scomber scombrus, Scomber australasicus, Scomber japonicus" 01/01/2000 31/12/2011 -03026405 01/01/1996 31/12/1999 LIBEN Fresh or chilled mackerel "Scomber scombrus, Scomber australasicus, Scomber japonicus", from 1 January to 14 February 01/01/1996 31/12/1999 -03026410 01/01/1988 31/12/1999 LIBEN Fresh or chilled mackerel "Scomber scombrus, Scomber australasicus, Scomber japonicus", from 15 February to 15 June 01/01/1988 31/12/1999 -03026490 01/01/1988 31/12/1995 LIBEN Fresh or chilled mackerel "Scomber scombrus, Scomber australasicus, Scomber japonicus", from 16 June to 14 February 01/01/1988 31/12/1995 -03026498 01/01/1996 31/12/1999 LIBEN Fresh or chilled mackerel "Scomber scombrus, Scomber australasicus, Scomber japonicus", from 16 June to 31 December 01/01/1996 31/12/1999 -030265 01/01/1988 31/12/2011 LIBEN Fresh or chilled dogfish and other sharks 01/01/1988 31/12/2011 -03026510 01/01/1988 31/12/1989 LIBEN Fresh or chilled dogfish of the species 'squalus acanthias' and 'scyliorhinus spp.' 01/01/1988 31/12/1989 -03026520 01/01/1990 31/12/2011 LIBEN Fresh or chilled dogfish of the species "squalus acanthias" 01/01/1990 31/12/2011 -03026550 01/01/1990 31/12/2011 LIBEN Fresh or chilled dogfish of the species "scyliorhinus spp." 01/01/1990 31/12/2011 -03026560 01/01/2010 31/12/2011 LIBEN Fresh or chilled porbeagle shark (Lamna nasus) 01/01/2010 31/12/2011 -03026590 01/01/1988 31/12/2009 LIBEN Fresh or chilled sharks (excl. dogfish of the species "Squalus acanthias" and "Scyliorhinus spp.") 01/01/1988 31/12/2009 -03026595 01/01/2010 31/12/2011 LIBEN Fresh or chilled sharks (excl. dogfish of the species "Squalus acanthias", "Scyliorhinus spp." and porbeagle shark (Lamna nasus)) 01/01/2010 31/12/2011 -030266 01/01/1988 31/12/2011 LIBEN Fresh or chilled eels "Anguilla spp." 01/01/1988 31/12/2011 -03026600 01/01/1988 31/12/2011 LIBEN Fresh or chilled eels "Anguilla spp." 01/01/1988 31/12/2011 -030267 01/01/2007 31/12/2011 LIBEN Fresh or chilled swordfish "Xiphias gladius" 01/01/2007 31/12/2011 -03026700 01/01/2007 31/12/2011 LIBEN Fresh or chilled swordfish "Xiphias gladius" 01/01/2007 31/12/2011 -030268 01/01/2007 31/12/2011 LIBEN Fresh or chilled toothfish "Dissostichus spp." 01/01/2007 31/12/2011 -03026800 01/01/2007 31/12/2011 LIBEN Fresh or chilled toothfish "Dissostichus spp." 01/01/2007 31/12/2011 -030269 01/01/1988 31/12/2011 LIBEN Fresh or chilled freshwater and saltwater fish (excl. salmonidae, flat fish, tunas, skipjack or stripe-bellied bonito, herrings, cod, sardines, sardinella, brisling or sprats, haddock, coalfish, mackerel, sharks, eels [Anguilla spp.], swordfish and toothfish) 01/01/1988 31/12/2011 -03026911 01/01/1988 31/12/2011 LIBEN Fresh or chilled carp 01/01/1988 31/12/2011 -03026915 01/01/2010 31/12/2011 LIBEN Fresh or chilled tilapia (Oreochromis spp.) 01/01/2010 31/12/2011 -03026918 01/01/2010 31/12/2011 LIBEN Fresh or chilled freshwater fish (excl. salmonidae, eels, carp and tilapia) 01/01/2010 31/12/2011 -03026919 01/01/1988 31/12/2009 LIBEN Fresh or chilled freshwater fish (excl. salmonidae, eels and carp) 01/01/1988 31/12/2009 -03026921 01/01/1988 31/12/2011 LIBEN Fresh or chilled saltwater fish of the genus Euthynnus for industrial processing or preservation (excl. skipjack or stripe-bellied bonito) 01/01/1988 31/12/2011 -03026925 01/01/1988 31/12/2011 LIBEN Fresh or chilled saltwater fish of the genus Euthynnus (excl. for industrial processing or preservation and skipjack or stripe-bellied bonito) 01/01/1988 31/12/2011 -03026931 01/01/1988 31/12/2011 LIBEN Fresh or chilled redfish "Sebastes marinus" 01/01/1988 31/12/2011 -03026933 01/01/1988 31/12/2011 LIBEN Fresh or chilled redfish "Sebastes spp." (excl. Sebastes marinus) 01/01/1988 31/12/2011 -03026935 01/01/1988 31/12/2011 LIBEN Fresh or chilled saltwater fish of the species Boreogadus saida 01/01/1988 31/12/2011 -03026941 01/01/1988 31/12/2011 LIBEN Fresh or chilled whiting "Merlangus merlangus" 01/01/1988 31/12/2011 -03026945 01/01/1988 31/12/2011 LIBEN Fresh or chilled ling "Molva spp." 01/01/1988 31/12/2011 -03026951 01/01/1988 31/12/2011 LIBEN Fresh or chilled Alaska pollack "Theragra chalcogramma" and pollack "Pollachius pollachius" 01/01/1988 31/12/2011 -03026955 01/01/1988 31/12/2011 LIBEN Fresh or chilled anchovies "Engraulis spp." 01/01/1988 31/12/2011 -03026961 01/01/1988 31/12/2011 LIBEN Fresh or chilled sea bream "Dentex dentex and Pagellus spp." 01/01/1988 31/12/2011 -03026965 01/01/1988 31/12/1996 LIBEN Fresh or chilled hake 01/01/1988 31/12/1996 -03026966 01/01/1997 31/12/2011 LIBEN Fresh or chilled Cape hake "shallow-water hake" "Merluccius capensis" and deepwater hake "deepwater Cape hake" "Merluccius paradoxus" 01/01/1997 31/12/2011 -03026967 01/01/1997 31/12/2011 LIBEN Fresh or chilled Southern hake "Merluccius australis" 01/01/1997 31/12/2011 -03026968 01/01/1997 31/12/2011 LIBEN Fresh or chilled hake of the genus "Merluccius" (excl. Cape hake "shallow-water hake", deepwater hake "deepwater Cape hake" and Southern hake) 01/01/1997 31/12/2011 -03026969 01/01/1997 31/12/2011 LIBEN Fresh or chilled hake of the genus "Urophycis" 01/01/1997 31/12/2011 -03026971 01/01/1988 31/12/1989 LIBEN Fresh or chilled megrim 01/01/1988 31/12/1989 -03026975 01/01/1988 31/12/2011 LIBEN Fresh or chilled ray's bream "Brama spp." 01/01/1988 31/12/2011 -03026981 01/01/1988 31/12/2011 LIBEN Fresh or chilled monkfish "Lophius spp." 01/01/1988 31/12/2011 -03026982 01/01/2010 31/12/2011 LIBEN Fresh or chilled blue whiting "Micromesistius poutassou or Gadus poutassou) and southern blue whiting (Micromesistius australis) 01/01/2010 31/12/2011 -03026985 01/01/1988 31/12/2009 LIBEN Fresh or chilled blue whiting "Micromesistius poutassou or Gadus poutassou" 01/01/1988 31/12/2009 -03026986 01/01/1995 31/12/2009 LIBEN Fresh or chilled southern blue whiting "Micromesistius australis" 01/01/1995 31/12/2009 -03026987 01/01/1991 31/12/2006 LIBEN Fresh or chilled swordfish "Xiphias gladius" 01/01/1991 31/12/2006 -03026988 01/01/2002 31/12/2006 LIBEN Fresh or chilled toothfish "Dissostichus spp." 01/01/2002 31/12/2006 -03026991 01/01/1993 31/12/2011 LIBEN Horse mackerel in "scad" "Caranx trachurus, Trachurus trachurus", fresh or chilled 01/01/1993 31/12/2011 -03026992 01/01/1995 31/12/2011 LIBEN Fresh or chilled pink cusk-eel "Genypterus blacodes" 01/01/1995 31/12/2011 -03026993 01/01/1995 31/12/2000 LIBEN Fish of the species Kathetostoma giganteum, fresh or chilled 01/01/1995 31/12/2000 -03026994 01/01/1996 31/12/2011 LIBEN Fresh or chilled sea bass "Dicentrarchus labrax" 01/01/1996 31/12/2011 -03026995 01/01/1988 31/12/1990 LIBEN Fresh or chilled saltwater fish n.e.s. 01/01/1988 31/12/1990 -03026995 01/01/1996 31/12/2011 LIBEN Fresh or chilled gilt-head seabreams "Sparus aurata" 01/01/1996 31/12/2011 -03026996 01/01/1995 31/12/1995 LIBEN Saltwater fish, edible, fresh or chilled, n.e.s. 01/01/1995 31/12/1995 -03026997 01/01/1993 31/12/1994 LIBEN Saltwater fish, edible, fresh or chilled, n.e.s. 01/01/1993 31/12/1994 -03026998 01/01/1991 31/12/1992 LIBEN Fresh or chilled fish (excl. 0302.11-00 to 0302.69-87) 01/01/1991 31/12/1992 -03026998 01/01/2001 31/12/2001 LIBEN Fresh or chilled saltwater fish, edible (excl. Salmonidae, flat fish, tunas, skipjack, herrings, cod, sardines, anchovies, sprats, haddock, coalfish, mackerel, sharks, eels [Anguilla spp.], fish of the genus redfish of the species Sebastes, Boreogadus saida, whiting, ling, Alaska pollack and pollack, anchovies, sea bream, hake, Ray's bream, monkfish, blue and southern blue whiting, swordfish, horse mackerel, pink cusk-eel, sea bass and gilthead seabreams) 01/01/2001 31/12/2001 -03026999 01/01/1996 31/12/2000 LIBEN Fresh or chilled saltwater fish, edible (excl. Salmonidae, flat fish, tunas, skipjack, herrings, cod, sardines, anchovies, sprats, haddock, coalfish, mackerel, sharks, eels [Anguilla spp.], fish of the genus redfish of the species Sebastes, Boreogadus saida, whiting, ling, Alaska pollack and pollack, anchovies, sea bream, hake, Ray's bream, monkfish, blue and southern blue whiting, swordfish, horse mackerel, pink cuskeel, fish of the species Kathetostoma giganteum, sea bass and gilthead seabreams) 01/01/1996 31/12/2000 -03026999 01/01/2002 31/12/2011 LIBEN Fresh or chilled saltwater fish, edible (excl. salmonidae, flat fish, tunas, skipjack or stripe-bellied bonito, herrings, cod, sardines, sardinella, brisling or sprats, haddock, coalfish, mackerel, sharks, eels [Anguilla spp.], swordfish, toothfish, fish of the genus redfish of the species Sebastes, Boreogadus saida, whiting, ling, Alaska pollack and pollack, anchovies, sea bream, hake, Ray's bream, monkfish, blue and southern blue whiting, horse mackerel, pink cusk-eel, sea bass and gilt-head seabreams) 01/01/2002 31/12/2011 -030270 01/01/1988 31/12/2011 LIBEN Fresh or chilled fish livers and roes 01/01/1988 31/12/2011 -03027000 01/01/1988 31/12/2011 LIBEN Fresh or chilled fish livers and roes 01/01/1988 31/12/2011 -030271 01/01/2012 31/12/2500 LIBEN Fresh or chilled tilapia "Oreochromis spp." 01/01/2012 31/12/2500 -03027100 01/01/2012 31/12/2500 LIBEN Fresh or chilled tilapia "Oreochromis spp." 01/01/2012 31/12/2500 -030272 01/01/2012 31/12/2500 LIBEN Fresh or chilled catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp." 01/01/2012 31/12/2500 -03027200 01/01/2012 31/12/2500 LIBEN Fresh or chilled catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp." 01/01/2012 31/12/2500 -030273 01/01/2012 31/12/2500 LIBEN Fresh or chilled carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp." 01/01/2012 31/12/2500 -03027300 01/01/2012 31/12/2016 LIBEN Fresh or chilled carp "Cyprinus carpio, Carassius carassius, Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus" 01/01/2012 31/12/2016 -03027300 01/01/2017 31/12/2500 LIBEN Fresh or chilled carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp." 01/01/2017 31/12/2500 -030274 01/01/2012 31/12/2500 LIBEN Fresh or chilled eels "Anguilla spp." 01/01/2012 31/12/2500 -03027400 01/01/2012 31/12/2500 LIBEN Fresh or chilled eels "Anguilla spp." 01/01/2012 31/12/2500 -030279 01/01/2012 31/12/2500 LIBEN Fresh or chilled, Nile perch "Lates niloticus" and snakeheads "Channa spp." 01/01/2012 31/12/2500 -03027900 01/01/2012 31/12/2500 LIBEN Fresh or chilled, Nile perch "Lates niloticus" and snakeheads "Channa spp." 01/01/2012 31/12/2500 -030281 01/01/2012 31/12/2500 LIBEN Fresh or chilled dogfish and other sharks 01/01/2012 31/12/2500 -03028110 01/01/2012 31/12/2016 LIBEN Fresh or chilled dogfish of the species Squalus acanthias 01/01/2012 31/12/2016 -03028115 01/01/2017 31/12/2500 LIBEN Fresh or chilled picked dogfish "Squalus acanthias" and catsharks "Scyliorhinus spp." 01/01/2017 31/12/2500 -03028120 01/01/2012 31/12/2016 LIBEN Fresh or chilled dogfish of the species Scyliorhinus spp. 01/01/2012 31/12/2016 -03028130 01/01/2012 31/12/2016 LIBEN Fresh or chilled porbeagle shark "Lamna nasus" 01/01/2012 31/12/2016 -03028130 01/01/2017 31/12/2500 LIBEN Fresh or chilled porbeagle shark "Lamna nasus" 01/01/2017 31/12/2500 -03028140 01/01/2017 31/12/2500 LIBEN Fresh or chilled blue shark "Prionace glauca" 01/01/2017 31/12/2500 -03028180 01/01/2017 31/12/2500 LIBEN Fresh or chilled dogfish and other sharks (excl. picked dogfish "Squalus acanthias", catsharks "Scyliorhinus spp.", porbeagle shark "Lamna nasus" and blue shark "Prionace glauca") 01/01/2017 31/12/2500 -03028190 01/01/2012 31/12/2016 LIBEN Fresh or chilled dogfish and other sharks (excl. dogfish "Squalus acanthias and Scyliorhinus spp." and porbeagle shark) 01/01/2012 31/12/2016 -030282 01/01/2012 31/12/2500 LIBEN Fresh or chilled, rays and skates "Rajidae" 01/01/2012 31/12/2500 -03028200 01/01/2012 31/12/2500 LIBEN Fresh or chilled, rays and skates "Rajidae" 01/01/2012 31/12/2500 -030283 01/01/2012 31/12/2500 LIBEN Fresh or chilled toothfish "Dissostichus spp." 01/01/2012 31/12/2500 -03028300 01/01/2012 31/12/2500 LIBEN Fresh or chilled toothfish "Dissostichus spp." 01/01/2012 31/12/2500 -030284 01/01/2012 31/12/2500 LIBEN Fresh or chilled sea bass "Dicentrarchus spp." 01/01/2012 31/12/2500 -03028410 01/01/2012 31/12/2500 LIBEN Fresh or chilled European sea bass "Dicentrarchus labrax" 01/01/2012 31/12/2500 -03028490 01/01/2012 31/12/2500 LIBEN Fresh or chilled sea bass "Dicentrarchus spp." (excl. European sea bass) 01/01/2012 31/12/2500 -030285 01/01/2012 31/12/2500 LIBEN Fresh or chilled sea bream "Sparidae" 01/01/2012 31/12/2500 -03028510 01/01/2012 31/12/2500 LIBEN Fresh or chilled sea bream of the species Dentex dentex or Pagellus spp. 01/01/2012 31/12/2500 -03028530 01/01/2012 31/12/2500 LIBEN Fresh or chilled gilt-head sea bream "Sparus aurata" 01/01/2012 31/12/2500 -03028590 01/01/2012 31/12/2500 LIBEN Fresh or chilled sea bream "Sparidae" (excl. gilt-head sea bream, Dentex dentex and Pagellus spp.) 01/01/2012 31/12/2500 -030289 01/01/2012 31/12/2500 LIBEN Fresh or chilled fish, n.e.s. 01/01/2012 31/12/2500 -03028910 01/01/2012 31/12/2016 LIBEN Fresh or chilled freshwater fish, n.e.s. 01/01/2012 31/12/2016 -03028910 01/01/2017 31/12/2500 LIBEN Fresh or chilled freshwater fish, n.e.s. 01/01/2017 31/12/2500 -03028921 01/01/2012 31/12/2016 LIBEN Fresh or chilled fish of the genus Euthynnus, for industrial processing or preservation (excl. skipjack or stripe-bellied bonito) 01/01/2012 31/12/2016 -03028921 01/01/2017 31/12/2500 LIBEN Fresh or chilled fish of the genus Euthynnus, for industrial processing or preservation (excl. skipjack or stripe-bellied bonito and Kawakawa) 01/01/2017 31/12/2500 -03028929 01/01/2012 31/12/2016 LIBEN Fresh or chilled fish of the genus Euthynnus (excl. skipjack or stripe-bellied bonito, and fish for industrial processing or preservation) 01/01/2012 31/12/2016 -03028929 01/01/2017 31/12/2500 LIBEN Fresh or chilled fish of the genus Euthynnus (excl. skipjack or stripe-bellied bonito and Kawakawa, and fish for industrial processing or preservation) 01/01/2017 31/12/2500 -03028931 01/01/2012 31/12/2500 LIBEN Fresh or chilled redfish "Sebastes marinus" 01/01/2012 31/12/2500 -03028939 01/01/2012 31/12/2500 LIBEN Fresh or chilled redfish "Sebastes spp." (excl. Sebastes marinus) 01/01/2012 31/12/2500 -03028940 01/01/2012 31/12/2500 LIBEN Fresh or chilled ray's bream "Brama spp." 01/01/2012 31/12/2500 -03028950 01/01/2012 31/12/2500 LIBEN Fresh or chilled monkfish "Lophius spp." 01/01/2012 31/12/2500 -03028960 01/01/2012 31/12/2500 LIBEN Fresh or chilled pink cusk-eel "Genypterus blacodes" 01/01/2012 31/12/2500 -03028990 01/01/2012 31/12/2016 LIBEN Fresh or chilled fish, n.e.s. 01/01/2012 31/12/2016 -03028990 01/01/2017 31/12/2500 LIBEN Fresh or chilled fish, n.e.s. 01/01/2017 31/12/2500 -030290 01/01/2012 31/12/2016 LIBEN Fresh or chilled fish livers and roes 01/01/2012 31/12/2016 -03029000 01/01/2012 31/12/2016 LIBEN Fresh or chilled fish livers and roes 01/01/2012 31/12/2016 -030291 01/01/2017 31/12/2500 LIBEN Fresh or chilled fish livers, roes and milt 01/01/2017 31/12/2500 -03029100 01/01/2017 31/12/2500 LIBEN Fresh or chilled fish livers, roes and milt 01/01/2017 31/12/2500 -030292 01/01/2017 31/12/2500 LIBEN Fresh or chilled shark fins 01/01/2017 31/12/2500 -03029200 01/01/2017 31/12/2500 LIBEN Fresh or chilled shark fins 01/01/2017 31/12/2500 -030299 01/01/2017 31/12/2500 LIBEN Fresh or chilled fish fins, heads, tails, maws and other edible fish offal (excl. livers, roes, milt and shark fins) 01/01/2017 31/12/2500 -03029900 01/01/2017 31/12/2500 LIBEN Fresh or chilled fish fins, heads, tails, maws and other edible fish offal (excl. livers, roes, milt and shark fins) 01/01/2017 31/12/2500 -0303 01/01/1988 31/12/2500 LIBEN Frozen fish (excl. fish fillets and other fish meat of heading 0304) 01/01/1988 31/12/2500 -030310 01/01/1988 31/12/2001 LIBEN Frozen Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus" 01/01/1988 31/12/2001 -03031000 01/01/1988 31/12/2001 LIBEN Frozen Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus" 01/01/1988 31/12/2001 -030311 01/01/2002 31/12/2500 LIBEN Frozen sockeye salmon [red salmon] "Oncorhynchus nerka" 01/01/2002 31/12/2500 -03031100 01/01/2002 31/12/2500 LIBEN Frozen sockeye salmon [red salmon] "Oncorhynchus nerka" 01/01/2002 31/12/2500 -030312 01/01/2012 31/12/2500 LIBEN Frozen Pacific salmon (excl. sockeye salmon "red salmon") 01/01/2012 31/12/2500 -03031200 01/01/2012 31/12/2500 LIBEN Frozen Pacific salmon (excl. sockeye salmon "red salmon") 01/01/2012 31/12/2500 -030313 01/01/2012 31/12/2500 LIBEN Frozen, Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho" 01/01/2012 31/12/2500 -03031300 01/01/2012 31/12/2500 LIBEN Frozen, Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho" 01/01/2012 31/12/2500 -030314 01/01/2012 31/12/2500 LIBEN Frozen trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae, Oncorhynchus apache and Oncorhynchus chrysogaster" 01/01/2012 31/12/2500 -03031410 01/01/2012 31/12/2500 LIBEN Frozen trout "Oncorhynchus apache and Oncorhynchus chrysogaster" 01/01/2012 31/12/2500 -03031420 01/01/2012 31/12/2500 LIBEN Frozen trout "Oncorhynchus mykiss", with heads and gills on, gutted, weighing more than 1,2 kg each, or with heads off, gilled and gutted, weighing more than 1 kg each 01/01/2012 31/12/2500 -03031490 01/01/2012 31/12/2500 LIBEN Frozen trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita and Oncorhynchus gilae" (excl. Oncorhynchus mykiss with heads and gills on, gutted, weighing more than 1,2 kg each, or with heads off, gilled and gutted, weighing more than 1 kg each) 01/01/2012 31/12/2500 -030319 01/01/2002 31/12/2500 LIBEN Frozen salmonidae (excl. trout and Pacific, Atlantic and Danube salmon) 01/01/2002 31/12/2500 -03031900 01/01/2002 31/12/2011 LIBEN Frozen Pacific salmon "Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus" (excl. sockeye salmon [red salmon] "Oncorhynchus nerka") 01/01/2002 31/12/2011 -03031900 01/01/2012 31/12/2500 LIBEN Frozen salmonidae (excl. trout and Pacific, Atlantic and Danube salmon) 01/01/2012 31/12/2500 -030321 01/01/1988 31/12/2011 LIBEN Frozen trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae, Oncorhynchus apache and Oncorhynchus chrysogaster" 01/01/1988 31/12/2011 -03032100 01/01/1988 31/12/1995 LIBEN Frozen trout "Salmo trutta, Salmo gairdneri, Salmo clarki, Salmo aguabonita, Salmo gilae" 01/01/1988 31/12/1995 -03032110 01/01/1996 31/12/2011 LIBEN Frozen trout "Oncorhynchus apache and Oncorhynchus chrysogaster" 01/01/1996 31/12/2011 -03032120 01/01/2003 31/12/2011 LIBEN Frozen trout of the species "Oncorhynchus mykiss", with heads on and gills on, gutted, weighing > 1,2 kg each, or with heads off, gilled and gutted, weighing > 1 kg each 01/01/2003 31/12/2011 -03032180 01/01/2003 31/12/2011 LIBEN Frozen trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita and Oncorhynchus gilae" (excl. of the species "Oncorhynchus mykiss", with heads on and gills on, gutted, weighing > 1,2 kg each, or with heads off, gilled and gutted, weighing > 1 kg each) 01/01/2003 31/12/2011 -03032190 01/01/1996 31/12/2002 LIBEN Forellen der Arten "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita und Oncorhynchus gilae", gefroren 01/01/1996 31/12/2002 -030322 01/01/1988 31/12/2011 LIBEN Frozen Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho" 01/01/1988 31/12/2011 -03032200 01/01/1988 31/12/2011 LIBEN Frozen Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho" 01/01/1988 31/12/2011 -030323 01/01/2012 31/12/2500 LIBEN Frozen tilapia "Oreochromis spp." 01/01/2012 31/12/2500 -03032300 01/01/2012 31/12/2500 LIBEN Frozen tilapia "Oreochromis spp." 01/01/2012 31/12/2500 -030324 01/01/2012 31/12/2500 LIBEN Frozen catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp." 01/01/2012 31/12/2500 -03032400 01/01/2012 31/12/2500 LIBEN Frozen catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp." 01/01/2012 31/12/2500 -030325 01/01/2012 31/12/2500 LIBEN Frozen carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp." 01/01/2012 31/12/2500 -03032500 01/01/2012 31/12/2016 LIBEN Frozen carp "Cyprinus carpio, Carassius carassius, Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus" 01/01/2012 31/12/2016 -03032500 01/01/2017 31/12/2500 LIBEN Frozen carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp." 01/01/2017 31/12/2500 -030326 01/01/2012 31/12/2500 LIBEN Frozen eels "Anguilla spp." 01/01/2012 31/12/2500 -03032600 01/01/2012 31/12/2500 LIBEN Frozen eels "Anguilla spp." 01/01/2012 31/12/2500 -030329 01/01/1988 31/12/2500 LIBEN Frozen, Nile perch (Lates niloticus) and snakeheads (Channa spp.) 01/01/1988 31/12/2500 -03032900 01/01/1988 31/12/1995 LIBEN Frozen salmonidae (excl. Pacific salmon, Atlantic salmon, Danube salmon and trout) 01/01/1988 31/12/1995 -03032900 01/01/1996 31/12/2011 LIBEN Frozen salmonidae (excl. Pacific salmon, Atlantic salmon, Danube salmon and trout) 01/01/1996 31/12/2011 -03032900 01/01/2012 31/12/2500 LIBEN Frozen, Nile perch (Lates niloticus) and snakeheads (Channa spp.) 01/01/2012 31/12/2500 -030331 01/01/1988 31/12/2500 LIBEN Frozen lesser or Greenland halibut "Reinhardtius hippoglossoides", Atlantic halibut "Hippoglossus hippoglossus" and Pacific halibut "Hippoglossus stenolepis" 01/01/1988 31/12/2500 -03033110 01/01/1988 31/12/2500 LIBEN Frozen lesser or Greenland halibut "Reinhardtius hippoglossoides" 01/01/1988 31/12/2500 -03033130 01/01/1988 31/12/2500 LIBEN Frozen Atlantic halibut "Hippoglossus hippoglossus" 01/01/1988 31/12/2500 -03033190 01/01/1988 31/12/2500 LIBEN Frozen Pacific halibut "Hippoglossus stenolepis" 01/01/1988 31/12/2500 -030332 01/01/1988 31/12/2500 LIBEN Frozen plaice "Pleuronectes platessa" 01/01/1988 31/12/2500 -03033200 01/01/1988 31/12/2500 LIBEN Frozen plaice "Pleuronectes platessa" 01/01/1988 31/12/2500 -030333 01/01/1988 31/12/2500 LIBEN Frozen sole "Solea spp." 01/01/1988 31/12/2500 -03033300 01/01/1988 31/12/2500 LIBEN Frozen sole "Solea spp." 01/01/1988 31/12/2500 -030334 01/01/2012 31/12/2500 LIBEN Frozen turbot "Psetta maxima" 01/01/2012 31/12/2500 -03033400 01/01/2012 31/12/2500 LIBEN Frozen turbot "Psetta maxima" 01/01/2012 31/12/2500 -030339 01/01/1988 31/12/2500 LIBEN Frozen flat fish "Pleuronectidae, Bothidae, Cynoglossidae, Soleidae, Scophthalmidae and Citharidae" (excl. halibut, plaice, sole and turbot) 01/01/1988 31/12/2500 -03033910 01/01/1988 31/12/2500 LIBEN Frozen flounder "Platichthys flesus" 01/01/1988 31/12/2500 -03033920 01/01/1990 31/12/2003 LIBEN Frozen megrim "Lepidorhombus spp." 01/01/1990 31/12/2003 -03033930 01/01/1995 31/12/2500 LIBEN Frozen fish of the genus Rhombosolea 01/01/1995 31/12/2500 -03033950 01/01/2012 31/12/2500 LIBEN Frozen fish "Pelotreis flavilatus or Peltorhamphus novaezelandiae" 01/01/2012 31/12/2500 -03033970 01/01/2004 31/12/2011 LIBEN Frozen flat fish "Pleuronectidae, Bothidae, Cynoglossidae, Soleidae, Scophthalmidae and Citharidae" (excl. halibut, plaice, sole, flounder and Rhombosolea spp.) 01/01/2004 31/12/2011 -03033980 01/01/1995 31/12/2003 LIBEN Frozen flat fish "Pleuronectidae, Bothidae, Cynoglossidae, Soleidae, Scophthalmidae and Citharidae" (excl. halibut, plaice, sole, flounder, megrim and Rhombosolea spp.) 01/01/1995 31/12/2003 -03033985 01/01/2012 31/12/2500 LIBEN Frozen flat fish "Pleuronectidae, Bothidae, Cynoglossidae, Soleidae, Scophthalmidae and Citharidae" (excl. halibut, plaice, sole, turbot, flounder, Rhombosolea spp., Pelotreis flavilatus and Peltorhamphus novaezelandiae) 01/01/2012 31/12/2500 -03033990 01/01/1988 31/12/1994 LIBEN Frozen flat fish (excl. halibut, plaice, sole, flounder and megrim) 01/01/1988 31/12/1994 -030341 01/01/1988 31/12/2500 LIBEN Frozen albacore or longfinned tunas "Thunnus alalunga" 01/01/1988 31/12/2500 -03034110 01/01/2010 31/12/2500 LIBEN Frozen albacore or longfinned tunas "Thunnus alalunga" for industrial manufacture of products of 1604 01/01/2010 31/12/2500 -03034111 01/01/1988 31/12/2009 LIBEN Frozen whole albacore or longfinned tunas "Thunnus alalunga" for industrial processing or preservation 01/01/1988 31/12/2009 -03034113 01/01/1988 31/12/2009 LIBEN Frozen gilled and gutted albacore or longfinned tunas "Thunnus alalunga" for industrial processing or preservation 01/01/1988 31/12/2009 -03034119 01/01/1988 31/12/2009 LIBEN Frozen albacore or longfinned tunas "Thunnus alalunga" for industrial processing or preservation, without head and gills, but still to be gutted 01/01/1988 31/12/2009 -03034190 01/01/1988 31/12/2500 LIBEN Frozen albacore or longfinned tunas "Thunnus alalunga" (excl. for industrial processing or preservation) 01/01/1988 31/12/2500 -030342 01/01/1988 31/12/2500 LIBEN Frozen yellowfin tunas "Thunnus albacares" 01/01/1988 31/12/2500 -03034211 01/01/1988 31/12/1989 LIBEN Frozen yellowfin tunas for industrial processing or preservation, whole, weighing =< 10 kg each 01/01/1988 31/12/1989 -03034212 01/01/1990 31/12/2016 LIBEN Frozen yellowfin tunas "Thunnus albacares" for industrial manufacture of products of 1604, whole, weighing > 10 kg each 01/01/1990 31/12/2016 -03034218 01/01/1990 31/12/2016 LIBEN Frozen yellowfin tunas "Thunnus albacares" for industrial manufacture of products of 1604, whole, weighing <= 10 kg each 01/01/1990 31/12/2016 -03034219 01/01/1988 31/12/1989 LIBEN Frozen yellowfin tunas for industrial processing or preservation, whole, weighing > 10 kg each 01/01/1988 31/12/1989 -03034220 01/01/2017 31/12/2500 LIBEN Frozen yellowfin tuna "Thunnus albacares" for industrial manufacture of products of 1604 01/01/2017 31/12/2500 -03034231 01/01/1988 31/12/1989 LIBEN Frozen yellowfin tunas for industrial processing or preservation, gilled and gutted, weighing =< 10 kg each 01/01/1988 31/12/1989 -03034232 01/01/1990 31/12/2009 LIBEN Frozen yellowfin tunas "Thunnus albacares" for industrial manufacture of products of 1604, gilled and gutted, weighing > 10 kg each 01/01/1990 31/12/2009 -03034238 01/01/1990 31/12/2009 LIBEN Frozen yellowfin tunas "Thunnus albacares" for industrial manufacture of products of 1604, gilled and gutted, weighing <= 10 kg each 01/01/1990 31/12/2009 -03034239 01/01/1988 31/12/1989 LIBEN Frozen yellowfin tunas for industrial processing or preservation, gilled and gutted, weighing > 10 kg each 01/01/1988 31/12/1989 -03034242 01/01/2010 31/12/2016 LIBEN Frozen yellowfin tunas "Thunnus albacares" for industrial manufacture of products of 1604, weighing > 10 kg each (excl. whole) 01/01/2010 31/12/2016 -03034248 01/01/2010 31/12/2016 LIBEN Frozen yellowfin tunas "Thunnus albacares" for industrial manufacture of products of 1604, weighing <= 10 kg each (excl. whole) 01/01/2010 31/12/2016 -03034251 01/01/1988 31/12/1989 LIBEN Frozen yellowfin tunas for industrial processing or preservation, weighing =< 10 kg each, without head and gills, but still to be gutted 01/01/1988 31/12/1989 -03034252 01/01/1990 31/12/2009 LIBEN Frozen yellowfin tunas "Thunnus albacares" for industrial manufacture of products of 1604, weighing > 10 kg each (excl. whole, gilled or gutted) 01/01/1990 31/12/2009 -03034258 01/01/1990 31/12/2009 LIBEN Frozen yellowfin tunas "Thunnus albacares" for industrial manufacture of products of 1604, weighing <= 10 kg each (excl. whole, gilled or gutted) 01/01/1990 31/12/2009 -03034259 01/01/1988 31/12/1989 LIBEN Frozen yellowfin tunas for industrial processing or preservation, weighing > 10 kg each, without head and gills, but still to be gutted 01/01/1988 31/12/1989 -03034290 01/01/1988 31/12/2500 LIBEN Frozen yellowfin tunas "Thunnus albacares" (excl. for industrial manufacture of products of 1604) 01/01/1988 31/12/2500 -030343 01/01/1988 31/12/2500 LIBEN Frozen skipjack or stripe-bellied bonito "Euthynnus -Katsuwonus- pelamis" 01/01/1988 31/12/2500 -03034310 01/01/2010 31/12/2500 LIBEN Frozen skipjack or stripe-bellied bonito "Euthynnus -Katsuwonus- pelamis" for industrial processing or preservation 01/01/2010 31/12/2500 -03034311 01/01/1988 31/12/2009 LIBEN Frozen skipjack or stripe-bellied bonito "Euthynnus -Katsuwonus- pelamis" for industrial processing or preservation, whole 01/01/1988 31/12/2009 -03034313 01/01/1988 31/12/2009 LIBEN Frozen skipjack or stripe-bellied bonito "Euthynnus -Katsuwonus- pelamis" for industrial processing or preservation, gilled and gutted 01/01/1988 31/12/2009 -03034319 01/01/1988 31/12/2009 LIBEN Frozen skipjack or stripe-bellied bonito "Euthynnus -Katsuwonus- pelamis" for industrial processing or preservation, without head and gills, but still to be gutted 01/01/1988 31/12/2009 -03034390 01/01/1988 31/12/2500 LIBEN Frozen skipjack or stripe-bellied bonito "Euthynnus -Katsuwonus- pelamis" (excl. for industrial processing or preservation) 01/01/1988 31/12/2500 -030344 01/01/2002 31/12/2500 LIBEN Frozen bigeye tunas "Thunnus obesus" 01/01/2002 31/12/2500 -03034410 01/01/2010 31/12/2500 LIBEN Frozen bigeye tunas "Thunnus obesus" for industrial processing or preservation 01/01/2010 31/12/2500 -03034411 01/01/2002 31/12/2009 LIBEN Frozen bigeye tunas "Thunnus obesus", for industrial processing or preservation, whole 01/01/2002 31/12/2009 -03034413 01/01/2002 31/12/2009 LIBEN Frozen bigeye tunas "Thunnus obesus" for industrial processing or preservation, gilled and gutted 01/01/2002 31/12/2009 -03034419 01/01/2002 31/12/2009 LIBEN Frozen bigeye tunas "Thunnus obesus" for industrial processing or preservation, without head and gills, but still to be gutted 01/01/2002 31/12/2009 -03034490 01/01/2002 31/12/2500 LIBEN Frozen bigeye tunas "Thunnus obesus" (excl. for industrial processing or preservation) 01/01/2002 31/12/2500 -030345 01/01/2002 31/12/2500 LIBEN Frozen Atlantic and Pacific bluefin tuna (Thunnus thynnus, Thunnus orientalis) 01/01/2002 31/12/2500 -03034510 01/01/2010 31/12/2011 LIBEN Frozen bluefin tunas "Thunnus thynnus" for industrial processing or preservation 01/01/2010 31/12/2011 -03034511 01/01/2002 31/12/2009 LIBEN Frozen bluefin tunas "Thunnus thynnus" for industrial processing or preservation, whole 01/01/2002 31/12/2009 -03034512 01/01/2012 31/12/2500 LIBEN Frozen Atlantic bluefin tuna "Thunnus thynnus", for industrial processing or preservation 01/01/2012 31/12/2500 -03034513 01/01/2002 31/12/2009 LIBEN Frozen bluefin tunas "Thunnus thynnus" for industrial processing or preservation, gilled and gutted 01/01/2002 31/12/2009 -03034518 01/01/2012 31/12/2500 LIBEN Frozen Atlantic bluefin tuna "Thunnus thynnus" (excl. for industrial processing or preservation) 01/01/2012 31/12/2500 -03034519 01/01/2002 31/12/2009 LIBEN Frozen bluefin tunas "Thunnus thynnus" for industrial processing or preservation, without head and gills, but still to be gutted 01/01/2002 31/12/2009 -03034590 01/01/2002 31/12/2011 LIBEN Frozen bluefin tunas "Thunnus thynnus" (excl. for industrial processing or preservation) 01/01/2002 31/12/2011 -03034591 01/01/2012 31/12/2500 LIBEN Frozen Pacific bluefin tuna "Thunnus orientalis", for industrial processing or preservation 01/01/2012 31/12/2500 -03034599 01/01/2012 31/12/2500 LIBEN Frozen Pacific bluefin tuna "Thunnus orientalis" (excl. for industrial processing or preservation) 01/01/2012 31/12/2500 -030346 01/01/2002 31/12/2500 LIBEN Frozen Southern bluefin tunas "Thunnus maccoyii" 01/01/2002 31/12/2500 -03034610 01/01/2010 31/12/2500 LIBEN Frozen Southern bluefin tunas "Thunnus maccoyii" for industrial processing or preservation 01/01/2010 31/12/2500 -03034611 01/01/2002 31/12/2009 LIBEN Frozen Southern bluefin tunas "Thunnus maccoyii" for industrial processing or preservation, whole 01/01/2002 31/12/2009 -03034613 01/01/2002 31/12/2009 LIBEN Frozen Southern bluefin tunas "Thunnus maccoyii" for industrial processing or preservation, gilled and gutted 01/01/2002 31/12/2009 -03034619 01/01/2002 31/12/2009 LIBEN Frozen Southern bluefin tunas "Thunnus maccoyii" for industrial processing or preservation, without head and gills, but still to be gutted 01/01/2002 31/12/2009 -03034690 01/01/2002 31/12/2500 LIBEN Frozen Southern bluefin tunas "Thunnus maccoyii" (excl. for industrial processing or preservation) 01/01/2002 31/12/2500 -030349 01/01/1988 31/12/2500 LIBEN Frozen tunas of the genus "Thunnus" (excl. Thunnus alalunga, Thunnus albacares, Thunnus obesus, Thunnus thynnus, Thunnus orientalis and Thunnus maccoyii) 01/01/1988 31/12/2500 -03034911 01/01/1988 31/12/1993 LIBEN Frozen tunas for industrial processing or preservation, whole (excl. albacore or longfinned and yellowfin) 01/01/1988 31/12/1993 -03034913 01/01/1988 31/12/1993 LIBEN Frozen tunas for industrial processing or preservation, gilled and gutted (excl. albacore or longfinned and yellowfin) 01/01/1988 31/12/1993 -03034919 01/01/1988 31/12/1993 LIBEN Frozen tunas for industrial processing or preservation, without head and gills, but still to be gutted (excl. albacore or longfinned and yellowfin) 01/01/1988 31/12/1993 -03034920 01/01/2012 31/12/2500 LIBEN Frozen tunas of the genus "Thunnus" for industrial processing or preservation (excl. Thunnus alalunga, Thunnus albacares, Thunnus obesus, Thunnus thynnus, Thunnus orientalis and Thunnus maccoyii) 01/01/2012 31/12/2500 -03034921 01/01/1994 31/12/2001 LIBEN Bluefin tunas 'Thunnus thynnus', frozen, for industrial processing or preservation, whole 01/01/1994 31/12/2001 -03034923 01/01/1994 31/12/2001 LIBEN Bluefin tunas 'Thunnus thynnus', frozen, for industrial processing or preservation, gilled and gutted 01/01/1994 31/12/2001 -03034929 01/01/1994 31/12/2001 LIBEN Bluefin tunas 'Thunnus thynnus', frozen, for industrial processing or preservation (excl. whole and gilled and gutted) 01/01/1994 31/12/2001 -03034930 01/01/2010 31/12/2011 LIBEN Frozen tunas of the genus "Thunnus" for industrial processing or preservation (excl. Thunnus alalunga, Thunnus albacares, Thunnus obesus, Thunnus thynnus and Thunnus maccoyii) 01/01/2010 31/12/2011 -03034931 01/01/2002 31/12/2009 LIBEN Frozen tunas of the genus "Thunnus" for industrial processing or preservation, whole (excl. Thunnus alalunga, Thunnus albacares, Thunnus obesus, Thunnus thynnus and Thunnus maccoyii) 01/01/2002 31/12/2009 -03034933 01/01/2002 31/12/2009 LIBEN Frozen tunas of the genus "Thunnus" for industrial processing or preservation, gilled and gutted (excl. Thunnus alalunga, Thunnus albacares, Thunnus obesus, Thunnus thynnus and Thunnus maccoyii) 01/01/2002 31/12/2009 -03034939 01/01/2002 31/12/2009 LIBEN Frozen tunas of the genus Thunnus for industrial processing or preservation, without head and gills, but still to be gutted (excl. Thunnus alalunga, Thunnus albacares, Thunnus obesus, Thunnus thynnus and Thunnus maccoyii) 01/01/2002 31/12/2009 -03034941 01/01/1994 31/12/2001 LIBEN Tunas of the genus Thunnus, frozen, for industrial processing or preservation, whole (excl. white, yellowfin and bluefin) 01/01/1994 31/12/2001 -03034943 01/01/1994 31/12/2001 LIBEN Tunas of the genus Thunnus, frozen, for industrial processing or preservation, gilled and gutted (excl. white, yellowfin and bluefin) 01/01/1994 31/12/2001 -03034949 01/01/1994 31/12/2001 LIBEN Tunas of the genus Thunnus, frozen, for industrial processing or preservation (excl. white, yellowfin and bluefin, whether whole or gilled and gutted) 01/01/1994 31/12/2001 -03034980 01/01/2002 31/12/2011 LIBEN Frozen tunas of the genus "Thunnus" (excl. tunas for industrial processing or preservation and Thunnus alalunga, Thunnus albacares, Thunnus obesus, Thunnus thynnus and Thunnus maccoyii) 01/01/2002 31/12/2011 -03034985 01/01/2012 31/12/2500 LIBEN Frozen tunas of the genus "Thunnus" (excl. tunas for industrial processing or preservation and Thunnus alalunga, Thunnus albacares, Thunnus obesus, Thunnus thynnus, Thunnus orientalis and Thunnus maccoyii) 01/01/2012 31/12/2500 -03034990 01/01/1988 31/12/2001 LIBEN Frozen tunas of the genus Thunnus (excl. albacore or longfinned and yellowfin and those for industrial processing or preservation) 01/01/1988 31/12/2001 -030350 01/01/1988 31/12/2006 LIBEN Frozen herrings "Clupea harengus, Clupea pallasii" 01/01/1988 31/12/2006 -03035000 01/01/2000 31/12/2006 LIBEN Frozen herrings "Clupea harengus, Clupea pallasii" 01/01/2000 31/12/2006 -03035005 01/01/1996 31/12/1999 LIBEN Frozen herrings "Clupea harengus, Clupea pallasii", from 1 January to 14 February 01/01/1996 31/12/1999 -03035010 01/01/1988 31/12/1999 LIBEN Frozen herrings "Clupea harengus, Clupea pallasii", from 15 February to 15 June 01/01/1988 31/12/1999 -03035090 01/01/1988 31/12/1995 LIBEN Frozen herrings "Clupea harengus, Clupea pallasii", from 16 june to 14 February 01/01/1988 31/12/1995 -03035098 01/01/1996 31/12/1999 LIBEN Frozen herrings "Clupea harengus, Clupea pallasii", from 16 June to 31 December 01/01/1996 31/12/1999 -030351 01/01/2007 31/12/2500 LIBEN Frozen herrings "Clupea harengus, Clupea pallasii" 01/01/2007 31/12/2500 -03035100 01/01/2007 31/12/2500 LIBEN Frozen herrings "Clupea harengus, Clupea pallasii" 01/01/2007 31/12/2500 -030352 01/01/2007 31/12/2011 LIBEN Frozen cod "Gadus morhua, Gadus ogac, Gadus macrocephalus" 01/01/2007 31/12/2011 -03035210 01/01/2007 31/12/2011 LIBEN Frozen cod "Gadus Morhua" 01/01/2007 31/12/2011 -03035230 01/01/2007 31/12/2011 LIBEN Frozen cod "Gadus Ogac" 01/01/2007 31/12/2011 -03035290 01/01/2007 31/12/2011 LIBEN Frozen cod "Gadus macrocephalus" 01/01/2007 31/12/2011 -030353 01/01/2012 31/12/2500 LIBEN Frozen sardines "Sardina pilchardus, Sardinops spp.", sardinella "Sardinella spp.", brisling or sprats "Sprattus sprattus" 01/01/2012 31/12/2500 -03035310 01/01/2012 31/12/2500 LIBEN Frozen sardines "Sardina pilchardus" 01/01/2012 31/12/2500 -03035330 01/01/2012 31/12/2500 LIBEN Frozen sardines "Sardinops spp." and sardinella "Sardinella spp." 01/01/2012 31/12/2500 -03035390 01/01/2012 31/12/2500 LIBEN Frozen brisling or sprats "Sprattus sprattus" 01/01/2012 31/12/2500 -030354 01/01/2012 31/12/2500 LIBEN Frozen mackerel "Scomber scombrus, Scomber australasicus, Scomber japonicus" 01/01/2012 31/12/2500 -03035410 01/01/2012 31/12/2500 LIBEN Frozen mackerel "Scomber scombrus, Scomber japonicus" 01/01/2012 31/12/2500 -03035490 01/01/2012 31/12/2500 LIBEN Frozen mackerel "Scomber australasicus" 01/01/2012 31/12/2500 -030355 01/01/2012 31/12/2500 LIBEN Frozen jack and horse mackerel "Trachurus spp." 01/01/2012 31/12/2500 -03035510 01/01/2012 31/12/2500 LIBEN Frozen Atlantic horse mackerel "Trachurus trachurus" 01/01/2012 31/12/2500 -03035530 01/01/2012 31/12/2500 LIBEN Frozen Chilean jack mackerel "Trachurus murphyi" 01/01/2012 31/12/2500 -03035590 01/01/2012 31/12/2500 LIBEN Frozen jack and horse mackerel "Trachurus spp." "(excl. Atlantic horse mackerel and Chilean jack mackerel) 01/01/2012 31/12/2500 -030356 01/01/2012 31/12/2500 LIBEN Frozen cobia "Rachycentron canadum" 01/01/2012 31/12/2500 -03035600 01/01/2012 31/12/2500 LIBEN Frozen cobia "Rachycentron canadum" 01/01/2012 31/12/2500 -030357 01/01/2012 31/12/2500 LIBEN Frozen swordfish "Xiphias gladius" 01/01/2012 31/12/2500 -03035700 01/01/2012 31/12/2500 LIBEN Frozen swordfish "Xiphias gladius" 01/01/2012 31/12/2500 -030359 01/01/2017 31/12/2500 LIBEN Frozen anchovies "Engraulis spp.", Indian mackerels "Rastrelliger spp.", seerfishes "Scomberomorus spp.", jacks, crevalles "Caranx spp.", silver pomfrets "Pampus spp.", Pacific saury "Cololabis saira", scads "Decapterus spp.", capelin "Mallotus villosus", Kawakawa "Euthynnus affinis", bonitos "Sarda spp.", marlins, sailfishes and spearfish "Istiophoridae" 01/01/2017 31/12/2500 -03035910 01/01/2017 31/12/2500 LIBEN Frozen anchovies "Engraulis spp." 01/01/2017 31/12/2500 -03035921 01/01/2017 31/12/2500 LIBEN Frozen Kawakawa "Euthynnus affinis" for industrial processing or preservation 01/01/2017 31/12/2500 -03035929 01/01/2017 31/12/2500 LIBEN Frozen Kawakawa "Euthynnus affinis" (excl. for industrial processing or preservation) 01/01/2017 31/12/2500 -03035990 01/01/2017 31/12/2500 LIBEN Frozen Indian mackerels "Rastrelliger spp.", seerfishes "Scomberomorus spp.", jacks, crevalles "Caranx spp.", silver pomfrets "Pampus spp.", Pacific saury "Cololabis saira", scads "Decapterus spp.", capelin "Mallotus villosus", bonitos "Sarda spp.", marlins, sailfishes and spearfish "Istiophoridae" 01/01/2017 31/12/2500 -030360 01/01/1988 31/12/2006 LIBEN Frozen cod "Gadus morhua, Gadus ogac and Gadus macrocephalus" 01/01/1988 31/12/2006 -03036010 01/01/1988 31/12/1988 LIBEN Frozen cod 'gadus morhua' and 'gadus ogac' 01/01/1988 31/12/1988 -03036011 01/01/1989 31/12/2006 LIBEN Frozen cod "Gadus Morhua" 01/01/1989 31/12/2006 -03036019 01/01/1989 31/12/2006 LIBEN Frozen cod "Gadus Ogac" 01/01/1989 31/12/2006 -03036090 01/01/1988 31/12/2006 LIBEN Frozen cod "Gadus macrocephalus" 01/01/1988 31/12/2006 -030361 01/01/2007 31/12/2011 LIBEN Frozen swordfish "Xiphias gladius" 01/01/2007 31/12/2011 -03036100 01/01/2007 31/12/2011 LIBEN Frozen swordfish "Xiphias gladius" 01/01/2007 31/12/2011 -030362 01/01/2007 31/12/2011 LIBEN Frozen toothfish "Dissostichus spp." 01/01/2007 31/12/2011 -03036200 01/01/2007 31/12/2011 LIBEN Frozen toothfish "Dissostichus spp." 01/01/2007 31/12/2011 -030363 01/01/2012 31/12/2500 LIBEN Frozen cod "Gadus morhua, Gadus ogac, Gadus macrocephalus" 01/01/2012 31/12/2500 -03036310 01/01/2012 31/12/2500 LIBEN Frozen cod "Gadus morhua" 01/01/2012 31/12/2500 -03036330 01/01/2012 31/12/2500 LIBEN Frozen cod "Gadus ogac" 01/01/2012 31/12/2500 -03036390 01/01/2012 31/12/2500 LIBEN Frozen cod "Gadus macrocephalus" 01/01/2012 31/12/2500 -030364 01/01/2012 31/12/2500 LIBEN Frozen haddock "Melanogrammus aeglefinus" 01/01/2012 31/12/2500 -03036400 01/01/2012 31/12/2500 LIBEN Frozen haddock "Melanogrammus aeglefinus" 01/01/2012 31/12/2500 -030365 01/01/2012 31/12/2500 LIBEN Frozen coalfish "Pollachius virens" 01/01/2012 31/12/2500 -03036500 01/01/2012 31/12/2500 LIBEN Frozen coalfish "Pollachius virens" 01/01/2012 31/12/2500 -030366 01/01/2012 31/12/2500 LIBEN Frozen hake "Merluccius spp., Urophycis spp." 01/01/2012 31/12/2500 -03036611 01/01/2012 31/12/2500 LIBEN Frozen Cape hake "shallow-water hake" "Merluccius capensis" and deepwater hake "deepwater Cape hake" "Merluccius paradoxus" 01/01/2012 31/12/2500 -03036612 01/01/2012 31/12/2500 LIBEN Frozen Argentine hake "Southwest Atlantic hake" "Merluccius hubbsi" 01/01/2012 31/12/2500 -03036613 01/01/2012 31/12/2500 LIBEN Frozen southern hake "Merluccius australis" 01/01/2012 31/12/2500 -03036619 01/01/2012 31/12/2500 LIBEN Frozen hake "Merluccius spp." (excl. cape hake, deepwater hake, Argentine hake and southern hake) 01/01/2012 31/12/2500 -03036690 01/01/2012 31/12/2500 LIBEN Frozen hake "Urophycis spp." 01/01/2012 31/12/2500 -030367 01/01/2012 31/12/2500 LIBEN Frozen Alaska pollack "Theragra chalcogramma" 01/01/2012 31/12/2500 -03036700 01/01/2012 31/12/2500 LIBEN Frozen Alaska pollack "Theragra chalcogramma" 01/01/2012 31/12/2500 -030368 01/01/2012 31/12/2500 LIBEN Frozen blue whiting "Micromesistius poutassou, Micromesistius australis" 01/01/2012 31/12/2500 -03036810 01/01/2012 31/12/2500 LIBEN Frozen blue whiting "Micromesistius poutassou" 01/01/2012 31/12/2500 -03036890 01/01/2012 31/12/2500 LIBEN Frozen southern blue whiting "Micromesistius australis" 01/01/2012 31/12/2500 -030369 01/01/2012 31/12/2500 LIBEN Frozen fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae (excl. cod, haddock, coalfish, hake, Alaska pollack and blue whiting) 01/01/2012 31/12/2500 -03036910 01/01/2012 31/12/2500 LIBEN Frozen fish of the species Boreogadus saida 01/01/2012 31/12/2500 -03036930 01/01/2012 31/12/2500 LIBEN Frozen whiting "Merlangius merlangus" 01/01/2012 31/12/2500 -03036950 01/01/2012 31/12/2500 LIBEN Frozen pollack "Pollachius pollachius" 01/01/2012 31/12/2500 -03036970 01/01/2012 31/12/2500 LIBEN Frozen blue grenadier "Macruronus novaezelandiae" 01/01/2012 31/12/2500 -03036980 01/01/2012 31/12/2500 LIBEN Frozen ling "Molva spp." 01/01/2012 31/12/2500 -03036990 01/01/2012 31/12/2500 LIBEN Frozen fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae (excl. cod, haddock, coalfish, hake, Alaska pollack, blue whitings, Boreogadus saida, whiting, pollack, blue grenadier and ling) 01/01/2012 31/12/2500 -030371 01/01/1988 31/12/2011 LIBEN Frozen sardines "Sardina pilchardus, Sardinops spp.", sardinella "Sardinella spp." and brisling or sprats "Sprattus sprattus" 01/01/1988 31/12/2011 -03037110 01/01/1988 31/12/2011 LIBEN Frozen sardines "Sardina pilchardus" 01/01/1988 31/12/2011 -03037130 01/01/1988 31/12/2011 LIBEN Frozen sardines "Sardinops spp." and sardinella "Sardinella spp." 01/01/1988 31/12/2011 -03037180 01/01/2000 31/12/2011 LIBEN Frozen brisling or sprats "Sprattus sprattus" 01/01/2000 31/12/2011 -03037190 01/01/1996 31/12/1999 LIBEN Frozen brisling or sprats "Sprattus sprattus", from 1 January to 14 February 01/01/1996 31/12/1999 -03037191 01/01/1988 31/12/1999 LIBEN Frozen brisling or sprats "Sprattus sprattus", from 15 February to 15 June 01/01/1988 31/12/1999 -03037198 01/01/1996 31/12/1999 LIBEN Frozen brisling or sprats "Sprattus sprattus", from 16 June to 31 December 01/01/1996 31/12/1999 -03037199 01/01/1988 31/12/1995 LIBEN Frozen brisling or sprats, from 16 June to 14 February 01/01/1988 31/12/1995 -030372 01/01/1988 31/12/2011 LIBEN Frozen haddock "Melanogrammus aeglefinus" 01/01/1988 31/12/2011 -03037200 01/01/1988 31/12/2011 LIBEN Frozen haddock "Melanogrammus aeglefinus" 01/01/1988 31/12/2011 -030373 01/01/1988 31/12/2011 LIBEN Frozen coalfish "Pollachius virens" 01/01/1988 31/12/2011 -03037300 01/01/1988 31/12/2011 LIBEN Frozen coalfish "Pollachius virens" 01/01/1988 31/12/2011 -030374 01/01/1988 31/12/2011 LIBEN Frozen mackerel "Scomber scombrus, Scomber australasicus, Scomber japonicus" 01/01/1988 31/12/2011 -03037410 01/01/1996 31/12/1999 LIBEN Frozen mackerel "Scomber scombrus and Scomber japonicus", from 1 January to 14 February 01/01/1996 31/12/1999 -03037411 01/01/1988 31/12/1999 LIBEN Frozen mackerel "Scomber scombrus and Scomber japonicus", from 15 February to 15 June 01/01/1988 31/12/1999 -03037419 01/01/1988 31/12/1995 LIBEN Frozen mackerel "Scomber scombrus and Scomber japonicus", from 16 June to 14 February 01/01/1988 31/12/1995 -03037420 01/01/1996 31/12/1999 LIBEN Frozen mackerel "Scomber scombrus and Scomber japonicus", from 16 June to 31 December 01/01/1996 31/12/1999 -03037430 01/01/2000 31/12/2011 LIBEN Frozen mackerel "Scomber scombrus" and "Scomber japonicus" 01/01/2000 31/12/2011 -03037490 01/01/1988 31/12/2011 LIBEN Frozen mackerel "Scomber australasicus" 01/01/1988 31/12/2011 -030375 01/01/1988 31/12/2011 LIBEN Frozen dogfish and other sharks 01/01/1988 31/12/2011 -03037510 01/01/1988 31/12/1989 LIBEN Frozen dogfish of the species 'squalus acanthias' and 'scyliorhinus spp.' 01/01/1988 31/12/1989 -03037520 01/01/1990 31/12/2011 LIBEN Frozen dogfish of the species "squalus acanthias" 01/01/1990 31/12/2011 -03037550 01/01/1990 31/12/2011 LIBEN Frozen dogfish of the species "scyliorhinus spp." 01/01/1990 31/12/2011 -03037560 01/01/2010 31/12/2011 LIBEN Frozen porbeagle shark (Lamna nasus) 01/01/2010 31/12/2011 -03037590 01/01/1988 31/12/2009 LIBEN Frozen sharks (excl. dogfish) 01/01/1988 31/12/2009 -03037595 01/01/2010 31/12/2011 LIBEN "Frozen sharks (excl. dogfish of the species "Squalus acanthias", "Scyliorhinus spp." and porbeagle shark (Lamna nasus))" 01/01/2010 31/12/2011 -030376 01/01/1988 31/12/2011 LIBEN Frozen eels "Anguilla spp." 01/01/1988 31/12/2011 -03037600 01/01/1988 31/12/2011 LIBEN Frozen eels "Anguilla spp." 01/01/1988 31/12/2011 -030377 01/01/1988 31/12/2011 LIBEN Frozen sea bass "Dicentrarchus labrax, Dicentrarchus punctatus" 01/01/1988 31/12/2011 -03037700 01/01/1988 31/12/2011 LIBEN Frozen sea bass "Dicentrarchus labrax, Dicentrarchus punctatus" 01/01/1988 31/12/2011 -030378 01/01/1988 31/12/2011 LIBEN Frozen hake "Merluccius spp., Urophycis spp." 01/01/1988 31/12/2011 -03037810 01/01/1988 31/12/1996 LIBEN Frozen hake "Merluccius spp." 01/01/1988 31/12/1996 -03037811 01/01/1997 31/12/2011 LIBEN Frozen Cape hake "shallow-water hake" "Merluccius capensis" and deepwater hake "deepwater Cape hake" "Merluccius paradoxus" 01/01/1997 31/12/2011 -03037812 01/01/1997 31/12/2011 LIBEN Frozen Argentine hake "Southwest Atlantic hake" "Merluccius hubbsi" 01/01/1997 31/12/2011 -03037813 01/01/1997 31/12/2011 LIBEN Frozen Southern hake "Merluccius australis" 01/01/1997 31/12/2011 -03037819 01/01/1997 31/12/2011 LIBEN Frozen hake of the genus "Merluccius" (excl. Cape hake "shallow-water hake", deepwater hake "deepwater Cape hake", Argentine hake "Southwest Atlantic hake and Southern hake) 01/01/1997 31/12/2011 -03037890 01/01/1988 31/12/2011 LIBEN Frozen hake "Urophycis spp." 01/01/1988 31/12/2011 -030379 01/01/1988 31/12/2011 LIBEN Frozen freshwater and saltwater fish (excl. salmonidae, flat fish, tunas, skipjack or stripe-bellied bonito, herrings, cod, swordfish, toothfish, sardines, sardinella, brisling or sprats, haddock, coalfish, mackerel, dogfish and other sharks, eels [Anguilla spp.], sea bass and hake) 01/01/1988 31/12/2011 -03037911 01/01/1988 31/12/2011 LIBEN Frozen carp 01/01/1988 31/12/2011 -03037919 01/01/1988 31/12/2011 LIBEN Frozen freshwater fish (excl. salmonidae, eels and carp) 01/01/1988 31/12/2011 -03037920 01/01/2010 31/12/2011 LIBEN Frozen saltwater fish of the genus Euthynnus, for industrial processing or preservation (excl. skipjack or stripe-bellied bonito of subheading 0303 43) 01/01/2010 31/12/2011 -03037921 01/01/1988 31/12/2009 LIBEN Frozen saltwater fish of the genus Euthynnus, for industrial processing or preservation, whole (excl. skipjack or stripe-bellied bonito of subheading 0303.43) 01/01/1988 31/12/2009 -03037923 01/01/1988 31/12/2009 LIBEN Frozen saltwater fish of the genus Euthynnus, for industrial processing or preservation, gilled and gutted (excl. skipjack or stripe-bellied bonito of subheading 0303.43) 01/01/1988 31/12/2009 -03037929 01/01/1988 31/12/2009 LIBEN Frozen saltwater fish of the genus Euthynnus, for industrial processing or preservation, without head and gills, but still to be gutted (excl. skipjack or stripe-bellied bonito of subheading 0303.43) 01/01/1988 31/12/2009 -03037931 01/01/1988 31/12/2011 LIBEN Frozen saltwater fish of the genus Euthynnus (excl. skipjack or stripe-bellied bonito of subheading 0303.43 and those for industrial processing or preservation) 01/01/1988 31/12/2011 -03037935 01/01/1988 31/12/2011 LIBEN Frozen redfish "Sebastes marinus" 01/01/1988 31/12/2011 -03037937 01/01/1988 31/12/2011 LIBEN Frozen redfish "Sebastes spp." (excl. Sebastes marinus) 01/01/1988 31/12/2011 -03037941 01/01/1988 31/12/2011 LIBEN Frozen saltwater fish of the species Boreogadus saida 01/01/1988 31/12/2011 -03037945 01/01/1988 31/12/2011 LIBEN Frozen whiting "Merlangius merlangus" 01/01/1988 31/12/2011 -03037951 01/01/1988 31/12/2011 LIBEN Frozen ling "Molva spp." 01/01/1988 31/12/2011 -03037955 01/01/1988 31/12/2011 LIBEN Frozen Alaska pollack "Theragra chalcogramma" and pollack "Pollachius pollachius" 01/01/1988 31/12/2011 -03037958 01/01/2000 31/12/2011 LIBEN Frozen saltwater fish of the species "Orcynopsis unicolor" 01/01/2000 31/12/2011 -03037960 01/01/1996 31/12/1999 LIBEN Frozen saltwater fish of the species Orcynopsis unicolor, from 1 January to 14 February 01/01/1996 31/12/1999 -03037961 01/01/1988 31/12/1999 LIBEN Frozen saltwater fish of the species Orcynopsis unicolor, from 15 February to 15 June 01/01/1988 31/12/1999 -03037962 01/01/1996 31/12/1999 LIBEN Frozen saltwater fish of the species Orcynopsis unicolor, from 16 June to 31 December 01/01/1996 31/12/1999 -03037963 01/01/1988 31/12/1995 LIBEN Frozen saltwater fish of the species Orcynopsis unicolor, from 16 June to 14 February 01/01/1988 31/12/1995 -03037965 01/01/1988 31/12/2011 LIBEN Frozen anchovies "Engraulis spp." 01/01/1988 31/12/2011 -03037971 01/01/1988 31/12/2011 LIBEN Frozen sea bream "Dentex dentex and Pagellus spp." 01/01/1988 31/12/2011 -03037973 01/01/1988 31/12/1989 LIBEN Frozen megrim 'lepidorhombus spp.' 01/01/1988 31/12/1989 -03037975 01/01/1988 31/12/2011 LIBEN Frozen Ray's bream "Brama spp." 01/01/1988 31/12/2011 -03037981 01/01/1988 31/12/2011 LIBEN Frozen monkfish "Lophius spp." 01/01/1988 31/12/2011 -03037983 01/01/1988 31/12/2011 LIBEN Frozen blue whiting "Micromesistius poutassou or Gadus poutassou" 01/01/1988 31/12/2011 -03037985 01/01/1995 31/12/2011 LIBEN Frozen southern blue whiting "Micromesistius australis" 01/01/1995 31/12/2011 -03037987 01/01/1991 31/12/2006 LIBEN Frozen swordfish "Xiphias gladius" 01/01/1991 31/12/2006 -03037988 01/01/2000 31/12/2006 LIBEN Frozen toothfish "Dissostichus spp." 01/01/2000 31/12/2006 -03037991 01/01/1993 31/12/2011 LIBEN Horse mackerel "scad" "Caranx trachurus, Trachurus trachurus", frozen 01/01/1993 31/12/2011 -03037992 01/01/1995 31/12/2011 LIBEN Frozen blue grenadier "Macruronus novaezelandiae" 01/01/1995 31/12/2011 -03037993 01/01/1995 31/12/2011 LIBEN Frozen pink cusk-eel "Genypterus blacodes" 01/01/1995 31/12/2011 -03037994 01/01/1995 31/12/2011 LIBEN Frozen fish of the species Pelotreis flavilatus and Peltorhamphus novaezelandiae 01/01/1995 31/12/2011 -03037995 01/01/1995 31/12/2000 LIBEN Frozen fish of the species Kathetostoma giganteum 01/01/1995 31/12/2000 -03037996 01/01/1995 31/12/1999 LIBEN Frozen saltwater fish, edible (excl. Salmonidae, flat fish, tunas, skipjack, herrings, cod, sardines, anchovies, sprats, haddock, coalfish, mackerel, sharks, eels [Anguilla spp.], sea bream, hake, fish of the genus Euthynnus, redfish of the species Sebastes, Boreogadus saida, whiting, ling, Alaska pollack and pollack, of the species Orcynopsis unicolor, anchovies, sea bream, Ray's bream, monkfish, blue and southern blue whiting, swordfish, horse mackerel, blue grenadier, pink cuskeel, of the species Pelotreis flavilatus and Peltorhamphus novaezealandiae and of the species Kathetostoma giganteum) 01/01/1995 31/12/1999 -03037997 01/01/1993 31/12/1994 LIBEN Saltwater fish, edible, frozen, n.e.s. 01/01/1993 31/12/1994 -03037998 01/01/1991 31/12/1992 LIBEN Frozen saltwater fish (excl. 0303.10-00 to 0303.79-87) 01/01/1991 31/12/1992 -03037998 01/01/2001 31/12/2011 LIBEN Frozen saltwater fish, edible (excl. salmonidae, flat fish, tunas, skipjack or stripe-bellied bonit, herrings, cod, swordfish, toothfish, sardines, sardinella, brisling or sprats, haddock, coalfish, mackerel, sharks, eels [Anguilla spp.], sea bass, hake, fish of the genus Euthynnus, redfish of the species Sebastes, fish of the species Boreogadus saida, whiting, ling, Alaska pollack and pollack "Pollachius pollachius", fish of the species Orcynopsis unicolor, anchovies, sea bream, Ray's bream, monkfish, blue and southern blue whiting, horse mackerel, blue grenadier, pink cusk-eel, fish of the species Pelotreis flavilatus and Peltorhamphus novaezelandiae) 01/01/2001 31/12/2011 -03037999 01/01/1988 31/12/1990 LIBEN Frozen saltwater fish n.e.s. 01/01/1988 31/12/1990 -03037999 01/01/2000 31/12/2000 LIBEN Frozen saltwater fish, edible (excl. Salmonidae, flat fish, tunas, skipjack, herrings, cod, sardines, sardinella, brisling or sprats, haddock, coalfish, mackerel, sharks, eels [Anguilla spp.], sea bass, hake, fish of the genus Euthynnus, redfish of the species Sebastes, fish of the species Boreogadus saida, whiting, ling, Alaska pollack and pollack "Pollachius pollachius", fish of the species Orcynopsis unicolor, anchovies, sea bream, Ray's bream, monkfish, blue and southern blue whiting, swordfish, toothfish, horse mackerel, blue grenadier, pink cusk-eel, fish of the species Pelotreis flavilatus and Peltorhamphus novaezealandiae and of the species Kathetostoma giganteum) 01/01/2000 31/12/2000 -030380 01/01/1988 31/12/2011 LIBEN Frozen fish livers and roes 01/01/1988 31/12/2011 -03038000 01/01/1988 31/12/1996 LIBEN Frozen fish livers and roes 01/01/1988 31/12/1996 -03038010 01/01/1997 31/12/2011 LIBEN Frozen hard and soft fish roes, for the manufacture of deoxyribonucleic acid or protamine sulphate 01/01/1997 31/12/2011 -03038090 01/01/1997 31/12/2011 LIBEN Frozen edible fish livers and roes (excl. hard and soft roes, for the manufacture of deoxyribonucleic acid or protamine sulphate) 01/01/1997 31/12/2011 -030381 01/01/2012 31/12/2500 LIBEN Frozen dogfish and other sharks 01/01/2012 31/12/2500 -03038110 01/01/2012 31/12/2016 LIBEN Frozen dogfish of the species Squalus acanthias 01/01/2012 31/12/2016 -03038115 01/01/2017 31/12/2500 LIBEN Frozen picked dogfish "Squalus acanthias" and catsharks "Scyliorhinus spp." 01/01/2017 31/12/2500 -03038120 01/01/2012 31/12/2016 LIBEN Frozen dogfish of the species Scyliorhinus spp. 01/01/2012 31/12/2016 -03038130 01/01/2012 31/12/2016 LIBEN Frozen porbeagle shark "Lamna nasus" 01/01/2012 31/12/2016 -03038130 01/01/2017 31/12/2500 LIBEN Frozen porbeagle shark "Lamna nasus" 01/01/2017 31/12/2500 -03038140 01/01/2017 31/12/2500 LIBEN Frozen blue shark "Prionace glauca" 01/01/2017 31/12/2500 -03038190 01/01/2012 31/12/2016 LIBEN Frozen dogfish and other sharks (excl. dogfish "Squalus acanthias and Scyliorhinus spp." and porbeagle shark) 01/01/2012 31/12/2016 -03038190 01/01/2017 31/12/2500 LIBEN Frozen dogfish and other sharks (excl. picked dogfish "Squalus acanthias", catsharks "Scyliorhinus spp.", porbeagle shark "Lamna nasus" and blue shark "Prionace glauca") 01/01/2017 31/12/2500 -030382 01/01/2012 31/12/2500 LIBEN Frozen rays and skates "Rajidae" 01/01/2012 31/12/2500 -03038200 01/01/2012 31/12/2500 LIBEN Frozen rays and skates "Rajidae" 01/01/2012 31/12/2500 -030383 01/01/2012 31/12/2500 LIBEN Frozen toothfish "Dissostichus spp." 01/01/2012 31/12/2500 -03038300 01/01/2012 31/12/2500 LIBEN Frozen toothfish "Dissostichus spp." 01/01/2012 31/12/2500 -030384 01/01/2012 31/12/2500 LIBEN Frozen sea bass "Dicentrarchus spp." 01/01/2012 31/12/2500 -03038410 01/01/2012 31/12/2500 LIBEN Frozen European sea bass "Dicentrarchus labrax" 01/01/2012 31/12/2500 -03038490 01/01/2012 31/12/2500 LIBEN Frozen sea bass "Dicentrarchus spp." (excl. European sea bass) 01/01/2012 31/12/2500 -030389 01/01/2012 31/12/2500 LIBEN Frozen fish, n.e.s. 01/01/2012 31/12/2500 -03038910 01/01/2012 31/12/2016 LIBEN Frozen freshwater fish, n.e.s. 01/01/2012 31/12/2016 -03038910 01/01/2017 31/12/2500 LIBEN Frozen freshwater fish, n.e.s. 01/01/2017 31/12/2500 -03038921 01/01/2012 31/12/2016 LIBEN Frozen fish of the genus Euthynnus, for industrial processing or preservation (excl. skipjack or stripe-bellied bonito) 01/01/2012 31/12/2016 -03038921 01/01/2017 31/12/2500 LIBEN Frozen fish of the genus Euthynnus, for industrial processing or preservation (excl. skipjack or stripe-bellied bonito and Kawakawa) 01/01/2017 31/12/2500 -03038929 01/01/2012 31/12/2016 LIBEN Frozen fish of the genus Euthynnus (excl. skipjack or stripe-bellied bonito, and fish for industrial processing or preservation) 01/01/2012 31/12/2016 -03038929 01/01/2017 31/12/2500 LIBEN Frozen fish of the genus Euthynnus (excl. skipjack or stripe-bellied bonito and Kawakawa, and fish for industrial processing or preservation) 01/01/2017 31/12/2500 -03038931 01/01/2012 31/12/2500 LIBEN Frozen redfish "Sebastes marinus" 01/01/2012 31/12/2500 -03038939 01/01/2012 31/12/2500 LIBEN Frozen redfish "Sebastes spp." (excl. Sebastes marinus) 01/01/2012 31/12/2500 -03038940 01/01/2012 31/12/2500 LIBEN Frozen fish of the species Orcynopsis unicolor 01/01/2012 31/12/2500 -03038945 01/01/2012 31/12/2016 LIBEN Frozen anchovies "Engraulis spp." 01/01/2012 31/12/2016 -03038950 01/01/2012 31/12/2500 LIBEN Frozen sea bream of the species Dentex dentex or Pagellus spp. 01/01/2012 31/12/2500 -03038955 01/01/2012 31/12/2500 LIBEN Frozen gilt-head sea bream "Sparus aurata" 01/01/2012 31/12/2500 -03038960 01/01/2012 31/12/2500 LIBEN Frozen ray's bream "Brama spp." 01/01/2012 31/12/2500 -03038965 01/01/2012 31/12/2500 LIBEN Frozen monkfish "Lophius spp." 01/01/2012 31/12/2500 -03038970 01/01/2012 31/12/2500 LIBEN Frozen pink cusk-eel "Genypterus blacodes" 01/01/2012 31/12/2500 -03038990 01/01/2012 31/12/2016 LIBEN Frozen fish, n.e.s. 01/01/2012 31/12/2016 -03038990 01/01/2017 31/12/2500 LIBEN Frozen fish, n.e.s. 01/01/2017 31/12/2500 -030390 01/01/2012 31/12/2016 LIBEN Frozen fish livers and roes 01/01/2012 31/12/2016 -03039010 01/01/2012 31/12/2016 LIBEN Frozen fish roes for the manufacture of deoxyribonucleic acid or protamine sulphate 01/01/2012 31/12/2016 -03039090 01/01/2012 31/12/2016 LIBEN Frozen fish livers and roes (excl. roes for the manufacture of deoxyribonucleic acid or protamine sulphate) 01/01/2012 31/12/2016 -030391 01/01/2017 31/12/2500 LIBEN Frozen fish livers, roes and milt 01/01/2017 31/12/2500 -03039110 01/01/2017 31/12/2500 LIBEN Frozen hard and soft roes for the manufacture of deoxyribonucleic acid or protamine sulphate 01/01/2017 31/12/2500 -03039190 01/01/2017 31/12/2500 LIBEN Frozen fish livers, roes and milt (excl. hard and soft roes for the manufacture of deoxyribonucleic acid or protamine sulphate) 01/01/2017 31/12/2500 -030392 01/01/2017 31/12/2500 LIBEN Frozen shark fins 01/01/2017 31/12/2500 -03039200 01/01/2017 31/12/2500 LIBEN Frozen shark fins 01/01/2017 31/12/2500 -030399 01/01/2017 31/12/2500 LIBEN Frozen fish fins, heads, tails, maws and other edible fish offal (excl. livers, roes, milt and shark fins) 01/01/2017 31/12/2500 -03039900 01/01/2017 31/12/2500 LIBEN Frozen fish fins, heads, tails, maws and other edible fish offal (excl. livers, roes, milt and shark fins) 01/01/2017 31/12/2500 -0304 01/01/1988 31/12/2500 LIBEN Fish fillets and other fish meat, whether or not minced, fresh, chilled or frozen 01/01/1988 31/12/2500 -030410 01/01/1988 31/12/2006 LIBEN Fresh or chilled fillets and other fish meat, whether or not minced 01/01/1988 31/12/2006 -03041011 01/01/1988 31/12/2002 LIBEN Fischfilets von Forellen der Arten "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita und Oncorhynchus gilae", frisch oder gekühlt 01/01/1988 31/12/2002 -03041013 01/01/1988 31/12/2006 LIBEN Fresh or chilled fillets of Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho" 01/01/1988 31/12/2006 -03041015 01/01/2003 31/12/2006 LIBEN Fresh or chilled fillets of trout of the species "Oncorhynchus mykiss" weighing > 400 g each 01/01/2003 31/12/2006 -03041017 01/01/2003 31/12/2006 LIBEN Fresh or chilled fillets of trout "Salmo trutta", "Oncorhynchus mykiss" weighing <= 400 g each, "Oncorhynchus clarki", "Oncorhynchus aguabonita" and "Oncorhynchus gilae" 01/01/2003 31/12/2006 -03041019 01/01/1988 31/12/2006 LIBEN Fresh or chilled fillets of freshwater fish (excl. trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita and Oncorhynchus gilae", Pacific salmon, Atlantic salmon and Danube salmon) 01/01/1988 31/12/2006 -03041031 01/01/1988 31/12/2006 LIBEN Fresh or chilled fillets of cod "Gadus morhua, Gadus ogac, Gadus macrocephalus" and of fish of the species "Boreogadus saida" 01/01/1988 31/12/2006 -03041033 01/01/1993 31/12/2006 LIBEN Fish fillets of coalfish "Pollachius virens", fresh or chilled 01/01/1993 31/12/2006 -03041035 01/01/1993 31/12/2006 LIBEN Fish fillets of redfish "Sebastes spp.", fresh or chilled 01/01/1993 31/12/2006 -03041038 01/01/1993 31/12/2006 LIBEN Fish fillets of saltwater fish, fresh or chilled (excl. cod, fish of the species Boreogadus saida, coalfish and redfish) 01/01/1993 31/12/2006 -03041039 01/01/1988 31/12/1992 LIBEN Fresh or chilled fillets of saltwater fish (excl. cod and fish of the species 'boreogadus saida') 01/01/1988 31/12/1992 -03041091 01/01/1988 31/12/2006 LIBEN Fresh or chilled meat of freshwater fish, whether or not minced (excl. fillets) 01/01/1988 31/12/2006 -03041092 01/01/1990 31/12/1995 LIBEN Flaps of herring, fresh or chilled, from 15 February to 15 June 01/01/1990 31/12/1995 -03041093 01/01/1990 31/12/1995 LIBEN Flaps of herring, fresh or chilled, from 16 June to 14 February 01/01/1990 31/12/1995 -03041094 01/01/1996 31/12/1999 LIBEN Flaps of herring, fresh or chilled, from 1 January to 14 February 01/01/1996 31/12/1999 -03041095 01/01/1996 31/12/1999 LIBEN Flaps of herring, fresh or chilled, from 15 February to 15 June 01/01/1996 31/12/1999 -03041096 01/01/1996 31/12/1999 LIBEN Flaps of herring, fresh or chilled, from 16 June to 31 December 01/01/1996 31/12/1999 -03041097 01/01/2000 31/12/2006 LIBEN Flaps of herring, fresh or chilled 01/01/2000 31/12/2006 -03041098 01/01/1990 31/12/2006 LIBEN Fish meat "whether or not minced", of saltwater fish, fresh or chilled (excl. fish fillets and flaps of herring) 01/01/1990 31/12/2006 -03041099 01/01/1988 31/12/1989 LIBEN Fresh or chilled meat of saltwater fish, whether or not minced (excl. fillets) 01/01/1988 31/12/1989 -030411 01/01/2007 31/12/2011 LIBEN Fresh or chilled fillets and other meat "whether or not minced" of swordfish "Xiphias gladius" 01/01/2007 31/12/2011 -03041110 01/01/2007 31/12/2011 LIBEN Fresh or chilled fillets of swordfish "Xiphias gladius" 01/01/2007 31/12/2011 -03041190 01/01/2007 31/12/2011 LIBEN Fresh or chilled meat "whether or not minced" of swordfish "Xiphias gladius" (excl. fillets) 01/01/2007 31/12/2011 -030412 01/01/2007 31/12/2011 LIBEN Fresh or chilled fillets and other meat "whether or not minced" of toothfish "Dissostichus spp." 01/01/2007 31/12/2011 -03041210 01/01/2007 31/12/2011 LIBEN Fresh or chilled fillets of toothfish "Dissostichus spp." 01/01/2007 31/12/2011 -03041290 01/01/2007 31/12/2011 LIBEN Fresh or chilled meat "whether or not minced" of toothfish "Dissostichus spp." (excl. fillets) 01/01/2007 31/12/2011 -030419 01/01/2007 31/12/2011 LIBEN Fresh or chilled fillets and other fish meat "whether or not minced" (excl. swordfish and toothfish) 01/01/2007 31/12/2011 -03041901 01/01/2010 31/12/2011 LIBEN Fresh or chilled fillets of Nile perch (Lates niloticus) 01/01/2010 31/12/2011 -03041903 01/01/2010 31/12/2011 LIBEN Fresh or chilled fillets of pangasius (Pangasius spp.) 01/01/2010 31/12/2011 -03041913 01/01/2007 31/12/2011 LIBEN Fresh or chilled fillets of Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho" 01/01/2007 31/12/2011 -03041915 01/01/2007 31/12/2011 LIBEN Fresh or chilled fillets of trout of the species "Oncorhynchus mykiss" weighing > 400 g each 01/01/2007 31/12/2011 -03041917 01/01/2007 31/12/2011 LIBEN Fresh or chilled fillets of trout "Salmo trutta", "Oncorhynchus mykiss" weighing <= 400 g each, "Oncorhynchus clarki", "Oncorhynchus aguabonita" and "Oncorhynchus gilae" 01/01/2007 31/12/2011 -03041918 01/01/2010 31/12/2011 LIBEN Fresh or chilled fillets of freshwater fish (excl. trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita and Oncorhynchus gilae", Pacific salmon, Atlantic salmon, Danube salmon, Nile perch and pangasius) 01/01/2010 31/12/2011 -03041919 01/01/2007 31/12/2009 LIBEN Fresh or chilled fillets of freshwater fish (excl. trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita and Oncorhynchus gilae", Pacific salmon, Atlantic salmon and Danube salmon) 01/01/2007 31/12/2009 -03041931 01/01/2007 31/12/2011 LIBEN Fresh or chilled fillets of cod "Gadus morhua, Gadus ogac, Gadus macrocephalus" and of fish of the species "Boreogadus saida" 01/01/2007 31/12/2011 -03041933 01/01/2007 31/12/2011 LIBEN Fresh or chilled fillets of coalfish "Pollachius virens" 01/01/2007 31/12/2011 -03041935 01/01/2007 31/12/2011 LIBEN Fresh or chilled fillets of redfish "Sebastes spp." 01/01/2007 31/12/2011 -03041939 01/01/2007 31/12/2011 LIBEN Fresh or chilled fillets of saltwater fish (excl. swordfish, toothfish, cod, fish of the species Boreogadus saida, coalfish and redfish) 01/01/2007 31/12/2011 -03041991 01/01/2007 31/12/2011 LIBEN Fresh or chilled meat, whether or not minced, of freshwater fish (excl. fillets) 01/01/2007 31/12/2011 -03041997 01/01/2007 31/12/2011 LIBEN Fresh or chilled flaps of herring 01/01/2007 31/12/2011 -03041999 01/01/2007 31/12/2011 LIBEN Fresh or chilled fish meat "whether or not minced", of saltwater fish (excl. swordfish, toothfish, fish fillets and flaps of herring) 01/01/2007 31/12/2011 -030420 01/01/1988 31/12/2006 LIBEN Frozen fish fillets 01/01/1988 31/12/2006 -03042011 01/01/1988 31/12/2002 LIBEN Fischfilets von Forellen der Arten "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita und Oncorhynchus gilae", gefroren 01/01/1988 31/12/2002 -03042013 01/01/1988 31/12/2006 LIBEN Frozen fillets of Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho" 01/01/1988 31/12/2006 -03042015 01/01/2003 31/12/2006 LIBEN Frozen fillets of trout of the species "Oncorhynchus mykiss" weighing > 400 g each 01/01/2003 31/12/2006 -03042017 01/01/2003 31/12/2006 LIBEN Frozen fillets of trout "Salmo trutta", "Oncorhynchus mykiss" weighing <= 400 g each, "Oncorhynchus clarki", "Oncorhynchus aguabonita" and "Oncorhynchus gilae" 01/01/2003 31/12/2006 -03042019 01/01/1988 31/12/2006 LIBEN Frozen fillets of freshwater fish (excl. trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita and Oncorhynchus gilae", Pacific salmon, Atlantic salmon and Danube salmon) 01/01/1988 31/12/2006 -03042021 01/01/1988 31/12/2006 LIBEN Frozen fillets of cod "Gadus macrocephalus" 01/01/1988 31/12/2006 -03042029 01/01/1988 31/12/2006 LIBEN Frozen fillets of cod "Gadus morhua, Gadus ogac" and of fish of species "Boreogadus saida" 01/01/1988 31/12/2006 -03042031 01/01/1988 31/12/2006 LIBEN Frozen fillets of coalfish "Pollachius virens" 01/01/1988 31/12/2006 -03042033 01/01/1988 31/12/2006 LIBEN Frozen fillets of haddock 01/01/1988 31/12/2006 -03042035 01/01/1988 31/12/2006 LIBEN Frozen fillets of redfish "Sebastes marinus" 01/01/1988 31/12/2006 -03042037 01/01/1988 31/12/2006 LIBEN Frozen fillets of redfish "Sebastes spp." (excl. Sebastes marinus) 01/01/1988 31/12/2006 -03042041 01/01/1988 31/12/2006 LIBEN Frozen fillets of whiting "Merlangius merlangus" 01/01/1988 31/12/2006 -03042043 01/01/1988 31/12/2006 LIBEN Frozen fillets of ling "Molva spp." 01/01/1988 31/12/2006 -03042045 01/01/1988 31/12/2006 LIBEN Frozen fillets of tuna "Thunnus" and of fish of the genus "Euthynnus" 01/01/1988 31/12/2006 -03042051 01/01/1988 31/12/2006 LIBEN Frozen fillets of mackerel "Scomber australasicus" 01/01/1988 31/12/2006 -03042053 01/01/1988 31/12/2006 LIBEN Frozen fillets of mackerel "Scomber scombrus, Scomber japonicus" and of fish of the species "Orcynopsis unicolor" 01/01/1988 31/12/2006 -03042055 01/01/1997 31/12/2006 LIBEN Frozen fillets of Cape hake "shallow-water hake" "Merluccius capensis" and of deepwater hake "deepwater Cape hake" "Merluccius paradoxus" 01/01/1997 31/12/2006 -03042056 01/01/1997 31/12/2006 LIBEN Frozen fillets of argentine hake "Southwest Atlantic hake" "Merluccius hubbsi" 01/01/1997 31/12/2006 -03042057 01/01/1988 31/12/1996 LIBEN Frozen fillets of hake "Merluccius" 01/01/1988 31/12/1996 -03042058 01/01/1997 31/12/2006 LIBEN Frozen fillets of hake of the genus "Merluccius" (excl. of Cape hake "shallow-water hake", of deepwater hake "deepwater Cape hake" and of argentine hake "Southwest Atlantic hake") 01/01/1997 31/12/2006 -03042059 01/01/1988 31/12/2006 LIBEN Frozen fillets of hake "Urophycis" 01/01/1988 31/12/2006 -03042061 01/01/1988 31/12/2006 LIBEN Frozen fillets of dogfish "Squalus acanthias and Scyliorhinus spp." 01/01/1988 31/12/2006 -03042069 01/01/1988 31/12/2006 LIBEN Frozen fillets of sharks (excl. dogfish) 01/01/1988 31/12/2006 -03042071 01/01/1988 31/12/2006 LIBEN Frozen fillets of plaice "Pleuronectes platessa" 01/01/1988 31/12/2006 -03042073 01/01/1988 31/12/2006 LIBEN Frozen fillets of flounder "Platichthys flesus" 01/01/1988 31/12/2006 -03042075 01/01/1988 31/12/2006 LIBEN Frozen fillets of herring "Clupea harengus, Clupea pallasii" 01/01/1988 31/12/2006 -03042079 01/01/1988 31/12/2006 LIBEN Frozen fillets of megrim "Lepidorhombus spp." 01/01/1988 31/12/2006 -03042081 01/01/1988 31/12/2003 LIBEN Frozen fillets of ray's bream "Brama spp." 01/01/1988 31/12/2003 -03042083 01/01/1988 31/12/2006 LIBEN Frozen fillets of monkfish "Lophius spp." 01/01/1988 31/12/2006 -03042085 01/01/1990 31/12/2006 LIBEN Frozen fillets of Alaska pollack "Theragra chalcogramma" 01/01/1990 31/12/2006 -03042087 01/01/1991 31/12/2006 LIBEN Frozen fillets of swordfish "Xiphias gladius" 01/01/1991 31/12/2006 -03042088 01/01/2000 31/12/2006 LIBEN Frozen fillets of toothfish "Dissostichus spp." 01/01/2000 31/12/2006 -03042091 01/01/1995 31/12/2006 LIBEN Frozen fillets of blue grenadier "Macruronus novaezealandiae" 01/01/1995 31/12/2006 -03042094 01/01/2004 31/12/2006 LIBEN Frozen fillets of saltwater fish (excl. cod, fish of the species Boreogadus saida, coalfish, haddock, redfish, whiting, ling, tuna, fish of the species Euthynnus, mackerel, fish of the species Orcynopsis unicolor, hake, sharks, plaice, flounder, herring, megrim, monkfish, Alaska pollack, swordfish, toothfish or blue grenadier) 01/01/2004 31/12/2006 -03042095 01/01/2000 31/12/2003 LIBEN Frozen fillets of saltwater fish (excl. cod, fish of the species Boreogadus saida, coalfish, haddock, redfish, whiting, ling, tuna, fish of the species Euthynnus, mackerel, fish of the species Orcynopsis unicolor, hake, sharks, plaice, flounder, herring, megrim, Ray's bream, monkfish, Alaska pollack, swordfish, toothfish or blue grenadier) 01/01/2000 31/12/2003 -03042096 01/01/1995 31/12/1999 LIBEN Frozen fillets of saltwater fish (excl. cod, fish of the species Boreogadus saida, coalfish, haddock, redfish, Norway haddock, deepwater redfish, fish of the species Sebastes, whiting, ling, tunas, fish of the species Euthynnus, mackerel fish of the species Orcynopsis unicolor, hake, sharks, plaice or European plaice, flounder, herrings, megrim, Ray's bream, monkfish, Alaska pollack, swordfish or blue grenadier) 01/01/1995 31/12/1999 -03042097 01/01/1991 31/12/1994 LIBEN Frozen fillets of saltwater fish, (excl. 0304.20-21 to 0304.20-87) 01/01/1991 31/12/1994 -03042098 01/01/1990 31/12/1990 LIBEN Frozen fillets of saltwater fish, (excl. 0304.20-21 to 0304.20-85) 01/01/1990 31/12/1990 -03042099 01/01/1988 31/12/1989 LIBEN Frozen fillets of saltwater fish n.e.s. 01/01/1988 31/12/1989 -030421 01/01/2007 31/12/2011 LIBEN Frozen fillets of swordfish "Xiphias gladius" 01/01/2007 31/12/2011 -03042100 01/01/2007 31/12/2011 LIBEN Frozen fillets of swordfish "Xiphias gladius" 01/01/2007 31/12/2011 -030422 01/01/2007 31/12/2011 LIBEN Frozen fillets of toothfish "Dissostichus spp." 01/01/2007 31/12/2011 -03042200 01/01/2007 31/12/2011 LIBEN Frozen fillets of toothfish "Dissostichus spp." 01/01/2007 31/12/2011 -030429 01/01/2007 31/12/2011 LIBEN Frozen fish fillets (excl. swordfish and toothfish) 01/01/2007 31/12/2011 -03042901 01/01/2010 31/12/2011 LIBEN Frozen fillets of Nile perch (Lates niloticus) 01/01/2010 31/12/2011 -03042903 01/01/2010 31/12/2011 LIBEN Frozen fillets of pangasius (Pangasius spp.) 01/01/2010 31/12/2011 -03042905 01/01/2010 31/12/2011 LIBEN Frozen fillets of tilapia (Oreochromis spp.) 01/01/2010 31/12/2011 -03042913 01/01/2007 31/12/2011 LIBEN Frozen fillets of Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho" 01/01/2007 31/12/2011 -03042915 01/01/2007 31/12/2011 LIBEN Frozen fillets of trout of the species "Oncorhynchus mykiss" weighing > 400 g each 01/01/2007 31/12/2011 -03042917 01/01/2007 31/12/2011 LIBEN Frozen fillets of trout "Salmo trutta", "Oncorhynchus mykiss" weighing <= 400 g each, "Oncorhynchus clarki", "Oncorhynchus aguabonita" and "Oncorhynchus gilae" 01/01/2007 31/12/2011 -03042918 01/01/2010 31/12/2011 LIBEN Frozen fillets of freshwater fish (excl. trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita and Oncorhynchus gilae", Pacific salmon, Atlantic salmon, Danube salmon, , Nile perch, pangasius and tilapia) 01/01/2010 31/12/2011 -03042919 01/01/2007 31/12/2009 LIBEN Frozen fillets of freshwater fish (excl. trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita and Oncorhynchus gilae", Pacific salmon, Atlantic salmon and Danube salmon) 01/01/2007 31/12/2009 -03042921 01/01/2007 31/12/2011 LIBEN Frozen fillets of cod "Gadus macrocephalus" 01/01/2007 31/12/2011 -03042929 01/01/2007 31/12/2011 LIBEN Frozen fillets of cod "Gadus morhua, Gadus ogac" and of fish of species "Boreogadus saida" 01/01/2007 31/12/2011 -03042931 01/01/2007 31/12/2011 LIBEN Frozen fillets of coalfish "Pollachius virens" 01/01/2007 31/12/2011 -03042933 01/01/2007 31/12/2011 LIBEN Frozen fillets of haddock "Melanogrammus aeglefinus" 01/01/2007 31/12/2011 -03042935 01/01/2007 31/12/2011 LIBEN Frozen fillets of redfish "Sebastes marinus" 01/01/2007 31/12/2011 -03042939 01/01/2007 31/12/2011 LIBEN Frozen fillets of redfish "Sebastes spp." (excl. Sebastes marinus) 01/01/2007 31/12/2011 -03042941 01/01/2007 31/12/2011 LIBEN Frozen fillets of whiting "Merlangius merlangus" 01/01/2007 31/12/2011 -03042943 01/01/2007 31/12/2011 LIBEN Frozen fillets of ling "Molva spp." 01/01/2007 31/12/2011 -03042945 01/01/2007 31/12/2011 LIBEN Frozen fillets of tuna of the genus "Thunnus" and of fish of the genus "Euthynnus" 01/01/2007 31/12/2011 -03042951 01/01/2007 31/12/2011 LIBEN Frozen fillets of mackerel "Scomber australasicus" 01/01/2007 31/12/2011 -03042953 01/01/2007 31/12/2011 LIBEN Frozen fillets of mackerel "Scomber scombrus, Scomber japonicus" and of fish of the species "Orcynopsis unicolor" 01/01/2007 31/12/2011 -03042955 01/01/2007 31/12/2011 LIBEN Frozen fillets of Cape hake "shallow-water hake" "Merluccius capensis" and of deepwater hake "deepwater Cape hake" "Merluccius paradoxus" 01/01/2007 31/12/2011 -03042956 01/01/2007 31/12/2011 LIBEN Frozen fillets of argentine hake "Southwest Atlantic hake" "Merluccius hubbsi" 01/01/2007 31/12/2011 -03042958 01/01/2007 31/12/2011 LIBEN Frozen fillets of hake of the genus "Merluccius" (excl. of Cape hake "shallow-water hake", of deepwater hake "deepwater Cape hake" and of argentine hake "Southwest Atlantic hake") 01/01/2007 31/12/2011 -03042959 01/01/2007 31/12/2011 LIBEN Frozen fillets of hake "Urophycis" 01/01/2007 31/12/2011 -03042961 01/01/2007 31/12/2011 LIBEN Frozen fillets of dogfish "Squalus acanthias and Scyliorhinus spp." 01/01/2007 31/12/2011 -03042965 01/01/2010 31/12/2011 LIBEN Frozen fillets of porbeagle shark (Lamna nasus) 01/01/2010 31/12/2011 -03042968 01/01/2010 31/12/2011 LIBEN Frozen fillets of sharks (excl. dogfish of the species "Squalus acanthias", "Scyliorhinus spp." and porbeagle shark (Lamna nasus)) 01/01/2010 31/12/2011 -03042969 01/01/2007 31/12/2009 LIBEN Frozen fillets of sharks (excl. dogfish) 01/01/2007 31/12/2009 -03042971 01/01/2007 31/12/2011 LIBEN Frozen fillets of plaice "Pleuronectes platessa" 01/01/2007 31/12/2011 -03042973 01/01/2007 31/12/2011 LIBEN Frozen fillets of flounder "Platichthys flesus" 01/01/2007 31/12/2011 -03042975 01/01/2007 31/12/2011 LIBEN Frozen fillets of herring "Clupea harengus, Clupea pallasii" 01/01/2007 31/12/2011 -03042979 01/01/2007 31/12/2011 LIBEN Frozen fillets of megrim "Lepidorhombus spp." 01/01/2007 31/12/2011 -03042983 01/01/2007 31/12/2011 LIBEN Frozen fillets of monkfish "Lophius spp." 01/01/2007 31/12/2011 -03042985 01/01/2007 31/12/2011 LIBEN Frozen fillets of Alaska pollack "Theragra chalcogramma" 01/01/2007 31/12/2011 -03042991 01/01/2007 31/12/2011 LIBEN Frozen fillets of blue grenadier "Macruronus novaezelandiae" 01/01/2007 31/12/2011 -03042999 01/01/2007 31/12/2011 LIBEN Frozen fillets of saltwater fish (excl. swordfish, toothfish, cod, fish of the species Boreogadus saida, coalfish, haddock, redfish, whiting, ling, tuna, fish of the species Euthynnus, mackerel, fish of the species Orcynopsis unicolor, hake, sharks, plaice, flounder, herring, megrim, monkfish, Alaska pollack or blue grenadier) 01/01/2007 31/12/2011 -030431 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of tilapia "Oreochromis spp." 01/01/2012 31/12/2500 -03043100 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of tilapia "Oreochromis spp." 01/01/2012 31/12/2500 -030432 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp." 01/01/2012 31/12/2500 -03043200 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp." 01/01/2012 31/12/2500 -030433 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of Nile perch "Lates niloticus" 01/01/2012 31/12/2500 -03043300 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of Nile perch "Lates niloticus" 01/01/2012 31/12/2500 -030439 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", eels "Anguilla spp." and snakeheads "Channa spp." 01/01/2012 31/12/2500 -03043900 01/01/2012 31/12/2016 LIBEN Fresh or chilled fillets of carp "Cyprinus carpio, Carassius carassius, Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus", eels "Anguilla spp." and snakeheads "Channa spp." 01/01/2012 31/12/2016 -03043900 01/01/2017 31/12/2500 LIBEN Fresh or chilled fillets of carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", eels "Anguilla spp." and snakeheads "Channa spp." 01/01/2017 31/12/2500 -030441 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho" 01/01/2012 31/12/2500 -03044100 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho" 01/01/2012 31/12/2500 -030442 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae, Oncorhynchus apache and Oncorhynchus chrysogaster" 01/01/2012 31/12/2500 -03044210 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of trout "Oncorhynchus mykiss", weighing > 400 g each 01/01/2012 31/12/2500 -03044250 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of trout "Oncorhynchus apache and Oncorhynchus chrysogaster" 01/01/2012 31/12/2500 -03044290 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita and Oncorhynchus gilae" (excl. of Oncorhynchus mykiss weighing > 400 g each) 01/01/2012 31/12/2500 -030443 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of flat fish "Pleuronectidae, Bothidae, Cynoglossidae, Soleidae, Scophthalmidae and Citharidae" 01/01/2012 31/12/2500 -03044300 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of flat fish "Pleuronectidae, Bothidae, Cynoglossidae, Soleidae, Scophthalmidae and Citharidae" 01/01/2012 31/12/2500 -030444 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae 01/01/2012 31/12/2500 -03044410 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of cod "Gadus morhua, Gadus ogac, Gadus macrocephalus" and of Boreogadus saida 01/01/2012 31/12/2500 -03044430 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of coalfish "Pollachius virens" 01/01/2012 31/12/2500 -03044490 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae (excl. cod, coalfish and Boreogadus saida) 01/01/2012 31/12/2500 -030445 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of swordfish "Xiphias gladius" 01/01/2012 31/12/2500 -03044500 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of swordfish "Xiphias gladius" 01/01/2012 31/12/2500 -030446 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of toothfish "Dissostichus spp." 01/01/2012 31/12/2500 -03044600 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of toothfish "Dissostichus spp." 01/01/2012 31/12/2500 -030447 01/01/2017 31/12/2500 LIBEN Fresh or chilled fillets of dogfish and other sharks 01/01/2017 31/12/2500 -03044710 01/01/2017 31/12/2500 LIBEN Fresh or chilled fillets of picked dogfish "Squalus acanthias" and catsharks "Scyliorhinus spp." 01/01/2017 31/12/2500 -03044720 01/01/2017 31/12/2500 LIBEN Fresh or chilled fillets of porbeagle shark "Lamna nasus" 01/01/2017 31/12/2500 -03044730 01/01/2017 31/12/2500 LIBEN Fresh or chilled fillets of blue shark "Prionace glauca" 01/01/2017 31/12/2500 -03044790 01/01/2017 31/12/2500 LIBEN Fresh or chilled fillets of dogfish and other sharks (excl. picked dogfish "Squalus acanthias", catsharks "Scyliorhinus spp.", porbeagle shark "Lamna nasus" and blue shark "Prionace glauca") 01/01/2017 31/12/2500 -030448 01/01/2017 31/12/2500 LIBEN Fresh or chilled fillets of rays and skates "Rajidae" 01/01/2017 31/12/2500 -03044800 01/01/2017 31/12/2500 LIBEN Fresh or chilled fillets of rays and skates "Rajidae" 01/01/2017 31/12/2500 -030449 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of fish, n.e.s. 01/01/2012 31/12/2500 -03044910 01/01/2012 31/12/2016 LIBEN Fresh or chilled fillets of freshwater fish, n.e.s. 01/01/2012 31/12/2016 -03044910 01/01/2017 31/12/2500 LIBEN Fresh or chilled fillets of freshwater fish, n.e.s. 01/01/2017 31/12/2500 -03044950 01/01/2012 31/12/2500 LIBEN Fresh or chilled fillets of redfish "Sebastes spp." 01/01/2012 31/12/2500 -03044990 01/01/2012 31/12/2016 LIBEN Fresh or chilled fillets of fish, n.e.s. 01/01/2012 31/12/2016 -03044990 01/01/2017 31/12/2500 LIBEN Fresh or chilled fillets of fish, n.e.s. 01/01/2017 31/12/2500 -030451 01/01/2012 31/12/2500 LIBEN Fresh or chilled meat, whether or not minced, of tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", eels "Anguilla spp.", Nile perch "Lates niloticus" and snakeheads "Channa spp." (excl. fillets) 01/01/2012 31/12/2500 -03045100 01/01/2012 31/12/2016 LIBEN Fresh or chilled meat, whether or not minced, of tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus carpio, Carassius carassius, Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus", eels "Anguilla spp.", Nile perch "Lates niloticus" and snakeheads "Channa spp." (excl. fillets) 01/01/2012 31/12/2016 -03045100 01/01/2017 31/12/2500 LIBEN Fresh or chilled meat, whether or not minced, of tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", eels "Anguilla spp.", Nile perch "Lates niloticus" and snakeheads "Channa spp." (excl. fillets) 01/01/2017 31/12/2500 -030452 01/01/2012 31/12/2500 LIBEN Fresh or chilled meat, whether or not minced, of salmonidae (excl. fillets) 01/01/2012 31/12/2500 -03045200 01/01/2012 31/12/2500 LIBEN Fresh or chilled meat, whether or not minced, of salmonidae (excl. fillets) 01/01/2012 31/12/2500 -030453 01/01/2012 31/12/2500 LIBEN Fresh or chilled meat, whether or not minced, of fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae (excl. fillets) 01/01/2012 31/12/2500 -03045300 01/01/2012 31/12/2500 LIBEN Fresh or chilled meat, whether or not minced, of fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae (excl. fillets) 01/01/2012 31/12/2500 -030454 01/01/2012 31/12/2500 LIBEN Fresh or chilled meat, whether or not minced, of swordfish "Xiphias gladius" (excl. fillets) 01/01/2012 31/12/2500 -03045400 01/01/2012 31/12/2500 LIBEN Fresh or chilled meat, whether or not minced, of swordfish "Xiphias gladius" (excl. fillets) 01/01/2012 31/12/2500 -030455 01/01/2012 31/12/2500 LIBEN Fresh or chilled meat, whether or not minced, of toothfish "Dissostichus spp." (excl. fillets) 01/01/2012 31/12/2500 -03045500 01/01/2012 31/12/2500 LIBEN Fresh or chilled meat, whether or not minced, of toothfish "Dissostichus spp." (excl. fillets) 01/01/2012 31/12/2500 -030456 01/01/2017 31/12/2500 LIBEN Fresh or chilled meat, whether or not minced, of dogfish and other sharks (excl. fillets) 01/01/2017 31/12/2500 -03045610 01/01/2017 31/12/2500 LIBEN Fresh or chilled meat, whether or not minced, of picked dogfish "Squalus acanthias" and catsharks "Scyliorhinus spp." (excl. fillets) 01/01/2017 31/12/2500 -03045620 01/01/2017 31/12/2500 LIBEN Fresh or chilled meat, whether or not minced, of porbeagle shark "Lamna nasus" (excl. fillets) 01/01/2017 31/12/2500 -03045630 01/01/2017 31/12/2500 LIBEN Fresh or chilled meat, whether or not minced, of blue shark "Prionace glauca" (excl. fillets) 01/01/2017 31/12/2500 -03045690 01/01/2017 31/12/2500 LIBEN Fresh or chilled meat, whether or not minced, of dogfish and other sharks (excl. fillets, picked dogfish "Squalus acanthias", catsharks "Scyliorhinus spp.", porbeagle shark "Lamna nasus" and blue shark "Prionace glauca") 01/01/2017 31/12/2500 -030457 01/01/2017 31/12/2500 LIBEN Fresh or chilled meat, whether or not minced, of rays and skates "Rajidae" (excl. fillets) 01/01/2017 31/12/2500 -03045700 01/01/2017 31/12/2500 LIBEN Fresh or chilled meat, whether or not minced, of rays and skates "Rajidae" (excl. fillets) 01/01/2017 31/12/2500 -030459 01/01/2012 31/12/2500 LIBEN Fresh or chilled fish meat, whether or not minced (excl. all fillets, tilapias, catfish, carp, eels, Nile perch, snakeheads, salmonidae, swordfish, toothfish, rays, skates, dogfish and other sharks, and fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae) 01/01/2012 31/12/2500 -03045910 01/01/2012 31/12/2016 LIBEN Fresh or chilled meat of freshwater fish, whether or not minced (excl. all fillets, tilapias, catfish, carp, eels, Nile perch, snakeheads, salmonidae, swordfish, toothfish and fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae) 01/01/2012 31/12/2016 -03045910 01/01/2017 31/12/2500 LIBEN Fresh or chilled meat of freshwater fish, whether or not minced (excl. all fillets, tilapias, catfish, carp, eels, Nile perch, snakeheads, salmonidae, swordfish, toothfish and fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae) 01/01/2017 31/12/2500 -03045950 01/01/2012 31/12/2500 LIBEN Fresh or chilled flaps of herring 01/01/2012 31/12/2500 -03045990 01/01/2012 31/12/2016 LIBEN Fresh or chilled fish meat, whether or not minced (excl. all fillets, freshwater fish, flaps of herring, tilapias, catfish, carp, eels, Nile perch, snakeheads, salmonidae, swordfish, toothfish and fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae) 01/01/2012 31/12/2016 -03045990 01/01/2017 31/12/2500 LIBEN Fresh or chilled fish meat, whether or not minced (excl. all fillets, freshwater fish, flaps of herring, tilapias, catfish, carp, eels, Nile perch, snakeheads, salmonidae, swordfish, toothfish, rays, skates, dogfish and other sharks, and fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae) 01/01/2017 31/12/2500 -030461 01/01/2012 31/12/2500 LIBEN Frozen fillets of tilapia "Oreochromis spp." 01/01/2012 31/12/2500 -03046100 01/01/2012 31/12/2500 LIBEN Frozen fillets of tilapia "Oreochromis spp." 01/01/2012 31/12/2500 -030462 01/01/2012 31/12/2500 LIBEN Frozen fillets of catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp." 01/01/2012 31/12/2500 -03046200 01/01/2012 31/12/2500 LIBEN Frozen fillets of catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp." 01/01/2012 31/12/2500 -030463 01/01/2012 31/12/2500 LIBEN Frozen fillets of Nile perch "Lates niloticus" 01/01/2012 31/12/2500 -03046300 01/01/2012 31/12/2500 LIBEN Frozen fillets of Nile perch "Lates niloticus" 01/01/2012 31/12/2500 -030469 01/01/2012 31/12/2500 LIBEN Frozen fillets of carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", eels "Anguilla spp." and snakeheads "Channa spp." 01/01/2012 31/12/2500 -03046900 01/01/2012 31/12/2016 LIBEN Frozen fillets of carp "Cyprinus carpio, Carassius carassius, Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus", eels "Anguilla spp." and snakeheads "Channa spp." 01/01/2012 31/12/2016 -03046900 01/01/2017 31/12/2500 LIBEN Frozen fillets of carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", eels "Anguilla spp." and snakeheads "Channa spp." 01/01/2017 31/12/2500 -030471 01/01/2012 31/12/2500 LIBEN Frozen fillets of cod "Gadus morhua, Gadus ogac, Gadus macrocephalus" 01/01/2012 31/12/2500 -03047110 01/01/2012 31/12/2500 LIBEN Frozen fillets of cod "Gadus macrocephalus" 01/01/2012 31/12/2500 -03047190 01/01/2012 31/12/2500 LIBEN Frozen fillets of cod "Gadus morhua, Gadus ogac" 01/01/2012 31/12/2500 -030472 01/01/2012 31/12/2500 LIBEN Frozen fillets of haddock "Melanogrammus aeglefinus" 01/01/2012 31/12/2500 -03047200 01/01/2012 31/12/2500 LIBEN Frozen fillets of haddock "Melanogrammus aeglefinus" 01/01/2012 31/12/2500 -030473 01/01/2012 31/12/2500 LIBEN Frozen fillets of coalfish "Pollachius virens" 01/01/2012 31/12/2500 -03047300 01/01/2012 31/12/2500 LIBEN Frozen fillets of coalfish "Pollachius virens" 01/01/2012 31/12/2500 -030474 01/01/2012 31/12/2500 LIBEN Frozen fillets of hake "Merluccius spp., Urophycis spp." 01/01/2012 31/12/2500 -03047411 01/01/2012 31/12/2500 LIBEN Frozen fillets of Cape hake "shallow-water hake" "Merluccius capensis" and deepwater hake "deepwater Cape hake" "Merluccius paradoxus" 01/01/2012 31/12/2500 -03047415 01/01/2012 31/12/2500 LIBEN Frozen fillets of Argentine hake "Southwest Atlantic hake" "Merluccius hubbsi" 01/01/2012 31/12/2500 -03047419 01/01/2012 31/12/2500 LIBEN Frozen fillets of hake "Merluccius spp." (excl. cape hake, deepwater hake and Argentine hake) 01/01/2012 31/12/2500 -03047490 01/01/2012 31/12/2500 LIBEN Frozen fillets of hake "Urophycis spp." 01/01/2012 31/12/2500 -030475 01/01/2012 31/12/2500 LIBEN Frozen fillets of Alaska pollack "Theragra chalcogramma" 01/01/2012 31/12/2500 -03047500 01/01/2012 31/12/2500 LIBEN Frozen fillets of Alaska pollack "Theragra chalcogramma" 01/01/2012 31/12/2500 -030479 01/01/2012 31/12/2500 LIBEN Frozen fillets of fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae (excl. cod, haddock, coalfish, hake and Alaska pollack) 01/01/2012 31/12/2500 -03047910 01/01/2012 31/12/2500 LIBEN Frozen fillets of Boreogadus saida 01/01/2012 31/12/2500 -03047930 01/01/2012 31/12/2500 LIBEN Frozen fillets of whiting "Merlangius merlangus" 01/01/2012 31/12/2500 -03047950 01/01/2012 31/12/2500 LIBEN Frozen fillets of blue grenadier "Macruronus novaezelandiae" 01/01/2012 31/12/2500 -03047980 01/01/2012 31/12/2500 LIBEN Frozen fillets of ling "Molva spp." 01/01/2012 31/12/2500 -03047990 01/01/2012 31/12/2500 LIBEN Frozen fillets of fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae (excl. cod, haddock, coalfish, hake, Alaska pollack, Boreogadus saida, whiting, blue grenadier and ling) 01/01/2012 31/12/2500 -030481 01/01/2012 31/12/2500 LIBEN Frozen fillets of Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho" 01/01/2012 31/12/2500 -03048100 01/01/2012 31/12/2500 LIBEN Frozen fillets of Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho" 01/01/2012 31/12/2500 -030482 01/01/2012 31/12/2500 LIBEN Frozen fillets of trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae, Oncorhynchus apache and Oncorhynchus chrysogaster" 01/01/2012 31/12/2500 -03048210 01/01/2012 31/12/2500 LIBEN Frozen fillets of trout "Oncorhynchus mykiss", weighing > 400 g each 01/01/2012 31/12/2500 -03048250 01/01/2012 31/12/2500 LIBEN Frozen fillets of trout "Oncorhynchus apache and Oncorhynchus chrysogaster" 01/01/2012 31/12/2500 -03048290 01/01/2012 31/12/2500 LIBEN Frozen fillets of trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita and Oncorhynchus gilae" (excl. of Oncorhynchus mykiss weighing > 400 g each) 01/01/2012 31/12/2500 -030483 01/01/2012 31/12/2500 LIBEN Frozen fillets of flat fish "Pleuronectidae, Bothidae, Cynoglossidae, Soleidae, Scophthalmidae and Citharidae" 01/01/2012 31/12/2500 -03048310 01/01/2012 31/12/2500 LIBEN Frozen fillets of plaice "Pleuronectes platessa" 01/01/2012 31/12/2500 -03048330 01/01/2012 31/12/2500 LIBEN Frozen fillets of flounder "Platichthys flesus" 01/01/2012 31/12/2500 -03048350 01/01/2012 31/12/2500 LIBEN Frozen fillets of megrim "Lepidorhombus spp." 01/01/2012 31/12/2500 -03048390 01/01/2012 31/12/2500 LIBEN Frozen fillets of flat fish "Pleuronectidae, Bothidae, Cynoglossidae, Soleidae, Scophthalmidae and Citharidae" (excl. plaice, flounder and megrim) 01/01/2012 31/12/2500 -030484 01/01/2012 31/12/2500 LIBEN Frozen fillets of swordfish "Xiphias gladius" 01/01/2012 31/12/2500 -03048400 01/01/2012 31/12/2500 LIBEN Frozen fillets of swordfish "Xiphias gladius" 01/01/2012 31/12/2500 -030485 01/01/2012 31/12/2500 LIBEN Frozen fillets of toothfish "Dissostichus spp." 01/01/2012 31/12/2500 -03048500 01/01/2012 31/12/2500 LIBEN Frozen fillets of toothfish "Dissostichus spp." 01/01/2012 31/12/2500 -030486 01/01/2012 31/12/2500 LIBEN Frozen fillets of herring "Clupea harengus, Clupea pallasii" 01/01/2012 31/12/2500 -03048600 01/01/2012 31/12/2500 LIBEN Frozen fillets of herring "Clupea harengus, Clupea pallasii" 01/01/2012 31/12/2500 -030487 01/01/2012 31/12/2500 LIBEN Frozen fillets of tuna "of the genus Thunnus", skipjack or stripe-bellied bonito "Euthynnus [Katsuwonus] pelamis" 01/01/2012 31/12/2500 -03048700 01/01/2012 31/12/2500 LIBEN Frozen fillets of tuna "of the genus Thunnus", skipjack or stripe-bellied bonito "Euthynnus [Katsuwonus] pelamis" 01/01/2012 31/12/2500 -030488 01/01/2017 31/12/2500 LIBEN Frozen fillets of dogfish, other sharks, rays and skates "Rajidae" 01/01/2017 31/12/2500 -03048811 01/01/2017 31/12/2500 LIBEN Frozen fillets of picked dogfish "Squalus acanthias" and catsharks "Scyliorhinus spp." 01/01/2017 31/12/2500 -03048815 01/01/2017 31/12/2500 LIBEN Frozen fillets of porbeagle shark "Lamna nasus" 01/01/2017 31/12/2500 -03048818 01/01/2017 31/12/2500 LIBEN Frozen fillets of blue shark "Prionace glauca" 01/01/2017 31/12/2500 -03048819 01/01/2017 31/12/2500 LIBEN Frozen fillets of dogfish and other sharks (excl. picked dogfish "Squalus acanthias", catsharks "Scyliorhinus spp.", porbeagle shark "Lamna nasus" and blue shark "Prionace glauca") 01/01/2017 31/12/2500 -03048890 01/01/2017 31/12/2500 LIBEN Frozen fillets of rays and skates "Rajidae" 01/01/2017 31/12/2500 -030489 01/01/2012 31/12/2500 LIBEN Frozen fish fillets, n.e.s. 01/01/2012 31/12/2500 -03048910 01/01/2012 31/12/2016 LIBEN Frozen fillets of freshwater fish, n.e.s. 01/01/2012 31/12/2016 -03048910 01/01/2017 31/12/2500 LIBEN Frozen fillets of freshwater fish, n.e.s. 01/01/2017 31/12/2500 -03048921 01/01/2012 31/12/2500 LIBEN Frozen fillets of redfish "Sebastes marinus" 01/01/2012 31/12/2500 -03048929 01/01/2012 31/12/2500 LIBEN Frozen fillets of redfish "Sebastes spp." (excl. Sebastes marinus) 01/01/2012 31/12/2500 -03048930 01/01/2012 31/12/2500 LIBEN Frozen fillets of fish of the genus Euthynnus (excl. skipjack or stripe-bellied bonito) 01/01/2012 31/12/2500 -03048941 01/01/2012 31/12/2500 LIBEN Frozen fillets of mackerel "Scomber australasicus" 01/01/2012 31/12/2500 -03048949 01/01/2012 31/12/2500 LIBEN Frozen fillets of mackerel "Scomber scombrus, Scomber japonicus" and fish of the species Orcynopsis unicolor 01/01/2012 31/12/2500 -03048951 01/01/2012 31/12/2016 LIBEN Frozen fillets of dogfish "Squalus acanthias, Scyliorhinus spp." 01/01/2012 31/12/2016 -03048955 01/01/2012 31/12/2016 LIBEN Frozen fillets of porbeagle shark "Lamna nasus" 01/01/2012 31/12/2016 -03048959 01/01/2012 31/12/2016 LIBEN Frozen fillets of dogfish and other sharks (excl. dogfish "Squalus acanthias and Scyliorhinus spp." and porbeagle shark) 01/01/2012 31/12/2016 -03048960 01/01/2012 31/12/2500 LIBEN Frozen fillets of monkfish "Lophius spp." 01/01/2012 31/12/2500 -03048990 01/01/2012 31/12/2016 LIBEN Frozen fish fillets, n.e.s. 01/01/2012 31/12/2016 -03048990 01/01/2017 31/12/2500 LIBEN Frozen fish fillets, n.e.s. 01/01/2017 31/12/2500 -030490 01/01/1988 31/12/2006 LIBEN Frozen fish meat, whether or not minced (excl. fillets) 01/01/1988 31/12/2006 -03049005 01/01/1994 31/12/2006 LIBEN Frozen surimi 01/01/1994 31/12/2006 -03049010 01/01/1988 31/12/2006 LIBEN Frozen meat of freshwater fish, whether or not minced (excl. fillets) 01/01/1988 31/12/2006 -03049020 01/01/1996 31/12/1999 LIBEN Frozen meat of herring "Clupea harengus, Clupea pallasii", whether or not minced, from 1 January to 14 February (excl. fillets) 01/01/1996 31/12/1999 -03049021 01/01/1988 31/12/1999 LIBEN Frozen meat of herring "Clupea harengus, Clupea pallasii", whether or not minced, from 15 February to 15 June (excl. fillets) 01/01/1988 31/12/1999 -03049022 01/01/2000 31/12/2006 LIBEN Frozen meat of herring "Clupea harengus, Clupea pallasii", whether or not minced (excl. fillets) 01/01/2000 31/12/2006 -03049025 01/01/1988 31/12/1995 LIBEN Frozen meat of herring "Clupea harengus, Clupea pallasii", whether or not minced, from 16 June to 14 February (excl. fillets) 01/01/1988 31/12/1995 -03049027 01/01/1996 31/12/1999 LIBEN Frozen meat of herring "Clupea harengus, Clupea pallasii", whether or not minced, from 16 June to 31 December (excl. fillets) 01/01/1996 31/12/1999 -03049031 01/01/1988 31/12/2006 LIBEN Frozen meat of redfish "Sebastes spp.", whether or not minced (excl. fillets) 01/01/1988 31/12/2006 -03049035 01/01/1988 31/12/2006 LIBEN Frozen meat of cod "Gadus macrocephalus", whether or not minced (excl. fillets) 01/01/1988 31/12/2006 -03049037 01/01/1988 31/12/1988 LIBEN Frozen meat of cod 'gadus morhua, gadus oghac' and of fish of the species 'boreogadus saida', whether or not minced (excl. fillets) 01/01/1988 31/12/1988 -03049038 01/01/1989 31/12/2006 LIBEN Frozen meat (excl. fillets) of cod "Gadus Morhua" 01/01/1989 31/12/2006 -03049039 01/01/1989 31/12/2006 LIBEN Frozen meat (excl. fillets) of cod "Gadus Ogac" and of fish of the species "Boreogadus saida" 01/01/1989 31/12/2006 -03049041 01/01/1988 31/12/2006 LIBEN Frozen meat of coalfish "Pollachius virens", whether or not minced (excl. fillets) 01/01/1988 31/12/2006 -03049045 01/01/1988 31/12/2006 LIBEN Frozen meat of haddock "Melanogrammus aeglefinus", whether minced or not (excl. fillets) 01/01/1988 31/12/2006 -03049047 01/01/1988 31/12/2003 LIBEN Frozen meat of hake "Merluccius", whether or not minced (excl. fillets) 01/01/1988 31/12/2003 -03049048 01/01/2004 31/12/2006 LIBEN Frozen meat of hake "Merluccius spp., Urophycis spp.", whether or not minced (excl. fillets) 01/01/2004 31/12/2006 -03049049 01/01/1988 31/12/2003 LIBEN Frozen meat of hake "Urophycis", whether or not minced (excl. fillets) 01/01/1988 31/12/2003 -03049051 01/01/1988 31/12/2006 LIBEN Frozen meat of megrim, whether or not minced (excl. fillets) 01/01/1988 31/12/2006 -03049055 01/01/1988 31/12/2006 LIBEN Frozen meat of Ray's bream "Brama spp.", whether or not minced (excl. fillets) 01/01/1988 31/12/2006 -03049057 01/01/1988 31/12/2006 LIBEN Frozen meat of monkfish "Lophius spp.", whether or not minced (excl. fillets) 01/01/1988 31/12/2006 -03049059 01/01/1988 31/12/2006 LIBEN Frozen meat of blue whiting "Micromesistius poutassou or Gadus poutassou", , whether or not minced (excl. fillets) 01/01/1988 31/12/2006 -03049061 01/01/1990 31/12/1993 LIBEN Frozen meat (excl. fillets) of Alaska Pollack 01/01/1990 31/12/1993 -03049061 01/01/1994 31/12/2006 LIBEN Fish meat of Alaska pollack 'Theragra chalcogramma', whether or not minced, frozen (excl. fish fillets and surimi) 01/01/1994 31/12/2006 -03049065 01/01/1991 31/12/2006 LIBEN Frozen meat (excl. fillets) of swordfish "Xiphias gladius" 01/01/1991 31/12/2006 -03049097 01/01/1991 31/12/1993 LIBEN Frozen meat (excl. fillets) of seawater fish (excl. 0304.90-21 to 0304.90-65) 01/01/1991 31/12/1993 -03049097 01/01/1994 31/12/2006 LIBEN Frozen meat of saltwater fish, whether or not minced (excl. herrings, redfish, Norway haddock, deepwater redfish, fish of the species Sebastes, cod, fish of the species Boreogadus saida, coalfish, haddock, hake, megrim, Ray's bream, monkfish, blue whiting, Alaska pollack or swordfish) 01/01/1994 31/12/2006 -03049098 01/01/1990 31/12/1990 LIBEN Frozen meat (excl. fillets) of seawater fish (excl. 0304.90-21 to 0304.90-61) 01/01/1990 31/12/1990 -03049099 01/01/1988 31/12/1989 LIBEN Frozen meat of seawater fish, whether or not minced n.e.s. 01/01/1988 31/12/1989 -030491 01/01/2007 31/12/2500 LIBEN Frozen meat, whether or not minced, of swordfish "Xiphias gladius" (excl. fillets) 01/01/2007 31/12/2500 -03049100 01/01/2007 31/12/2500 LIBEN Frozen meat, whether or not minced, of swordfish "Xiphias gladius" (excl. fillets) 01/01/2007 31/12/2500 -030492 01/01/2007 31/12/2500 LIBEN Frozen meat, whether or not minced, of toothfish "Dissostichus spp." (excl. fillets) 01/01/2007 31/12/2500 -03049200 01/01/2007 31/12/2500 LIBEN Frozen meat, whether or not minced, of toothfish "Dissostichus spp." (excl. fillets) 01/01/2007 31/12/2500 -030493 01/01/2012 31/12/2500 LIBEN Frozen meat, whether or not minced, of tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", eels "Anguilla spp.", Nile perch "Lates niloticus" and snakeheads "Channa spp." (excl. fillets) 01/01/2012 31/12/2500 -03049310 01/01/2012 31/12/2016 LIBEN Frozen surimi of tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus carpio, Carassius carassius, Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus", eels "Anguilla spp.", Nile perch "Lates niloticus" or snakeheads "Channa spp." 01/01/2012 31/12/2016 -03049310 01/01/2017 31/12/2500 LIBEN Frozen surimi of tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", eels "Anguilla spp.", Nile perch "Lates niloticus" or snakeheads "Channa spp." 01/01/2017 31/12/2500 -03049390 01/01/2012 31/12/2016 LIBEN Frozen meat, whether or not minced, of tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus carpio, Carassius carassius, Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus", eels "Anguilla spp.", Nile perch "Lates niloticus" and snakeheads "Channa spp." (excl. fillets and surimi) 01/01/2012 31/12/2016 -03049390 01/01/2017 31/12/2500 LIBEN Frozen meat, whether or not minced, of tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", eels "Anguilla spp.", Nile perch "Lates niloticus" and snakeheads "Channa spp." (excl. fillets and surimi) 01/01/2017 31/12/2500 -030494 01/01/2012 31/12/2500 LIBEN Frozen meat, whether or not minced, of Alaska pollack "Theragra chalcogramma" (excl. fillets) 01/01/2012 31/12/2500 -03049410 01/01/2012 31/12/2500 LIBEN Frozen surimi of Alaska pollack "Theragra chalcogramma" 01/01/2012 31/12/2500 -03049490 01/01/2012 31/12/2500 LIBEN Frozen meat, whether or not minced, of Alaska pollack "Theragra chalcogramma" (excl. fillets and surimi) 01/01/2012 31/12/2500 -030495 01/01/2012 31/12/2500 LIBEN Frozen meat, whether or not minced, of fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae (excl. fillets and Alaska pollack "Theragra chalcogramma") 01/01/2012 31/12/2500 -03049510 01/01/2012 31/12/2500 LIBEN Frozen surimi of fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae (excl. Alaska pollack "Theragra chalcogramma") 01/01/2012 31/12/2500 -03049521 01/01/2012 31/12/2500 LIBEN Frozen meat, whether or not minced, of cod "Gadus macrocephalus" (excl. fillets and surimi) 01/01/2012 31/12/2500 -03049525 01/01/2012 31/12/2500 LIBEN Frozen meat, whether or not minced, of cod "Gadus morhua" (excl. fillets and surimi) 01/01/2012 31/12/2500 -03049529 01/01/2012 31/12/2500 LIBEN Frozen meat, whether or not minced, of cod "Gadus ogac" and of fish of the species Boreogadus saida (excl. fillets and surimi) 01/01/2012 31/12/2500 -03049530 01/01/2012 31/12/2500 LIBEN Frozen meat, whether or not minced, of haddock "Melanogrammus aeglefinus" (excl. fillets and surimi) 01/01/2012 31/12/2500 -03049540 01/01/2012 31/12/2500 LIBEN Frozen meat, whether or not minced, of coalfish "Pollachius virens" (excl. fillets and surimi) 01/01/2012 31/12/2500 -03049550 01/01/2012 31/12/2500 LIBEN Frozen meat, whether or not minced, of hake "Merluccius spp." (excl. fillets and surimi) 01/01/2012 31/12/2500 -03049560 01/01/2012 31/12/2500 LIBEN Frozen meat, whether or not minced, of blue whiting "Micromesistius poutassou" (excl. fillets and surimi) 01/01/2012 31/12/2500 -03049590 01/01/2012 31/12/2500 LIBEN Frozen meat, whether or not minced, of fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae (excl. fillets, surimi, Alaska pollack "Theragra chalcogramma", cod, haddock, coalfish, hake "Merluccius spp." and blue whiting) 01/01/2012 31/12/2500 -030496 01/01/2017 31/12/2500 LIBEN Frozen meat, whether or not minced, of dogfish and other sharks 01/01/2017 31/12/2500 -03049610 01/01/2017 31/12/2500 LIBEN Frozen meat, whether or not minced, of picked dogfish "Squalus acanthias" and catsharks "Scyliorhinus spp." 01/01/2017 31/12/2500 -03049620 01/01/2017 31/12/2500 LIBEN Frozen meat, whether or not minced, of porbeagle shark "Lamna nasus" 01/01/2017 31/12/2500 -03049630 01/01/2017 31/12/2500 LIBEN Frozen meat, whether or not minced, of blue shark "Prionace glauca" 01/01/2017 31/12/2500 -03049690 01/01/2017 31/12/2500 LIBEN Frozen meat, whether or not minced, of dogfish and other sharks (excl. picked dogfish "Squalus acanthias", catsharks "Scyliorhinus spp.", porbeagle shark "Lamna nasus" and blue shark "Prionace glauca") 01/01/2017 31/12/2500 -030497 01/01/2017 31/12/2500 LIBEN Frozen meat, whether or not minced, of rays and skates "Rajidae" 01/01/2017 31/12/2500 -03049700 01/01/2017 31/12/2500 LIBEN Frozen meat, whether or not minced, of rays and skates "Rajidae" 01/01/2017 31/12/2500 -030499 01/01/2007 31/12/2500 LIBEN Frozen fish meat n.e.s. (excl. fillets) 01/01/2007 31/12/2500 -03049910 01/01/2007 31/12/2011 LIBEN Frozen surimi 01/01/2007 31/12/2011 -03049910 01/01/2012 31/12/2016 LIBEN Frozen surimi of fish n.e.s. 01/01/2012 31/12/2016 -03049910 01/01/2017 31/12/2500 LIBEN Frozen surimi of fish n.e.s. 01/01/2017 31/12/2500 -03049921 01/01/2007 31/12/2011 LIBEN Frozen meat "whether or not minced" of freshwater fish (excl. fillets) 01/01/2007 31/12/2011 -03049921 01/01/2012 31/12/2016 LIBEN Frozen meat of freshwater fish n.e.s. (excl. fillets and surimi) 01/01/2012 31/12/2016 -03049921 01/01/2017 31/12/2500 LIBEN Frozen meat of freshwater fish n.e.s. (excl. fillets and surimi) 01/01/2017 31/12/2500 -03049923 01/01/2007 31/12/2500 LIBEN Frozen meat "whether or not minced" of herring "Clupea harengus, Clupea pallasii" (excl. fillets) 01/01/2007 31/12/2500 -03049929 01/01/2007 31/12/2500 LIBEN Frozen meat "whether or not minced" of redfish "Sebastes spp." (excl. fillets) 01/01/2007 31/12/2500 -03049931 01/01/2007 31/12/2011 LIBEN Frozen meat "whether or not minced" of cod "Gadus macrocephalus" (excl. fillets) 01/01/2007 31/12/2011 -03049933 01/01/2007 31/12/2011 LIBEN Frozen meat "whether or not minced" of cod "Gadus Morhua" (excl. fillets) 01/01/2007 31/12/2011 -03049939 01/01/2007 31/12/2011 LIBEN Frozen meat "whether or not minced" of cod "Gadus Ogac" and of fish of the species "Boreogadus saida" (excl. fillets) 01/01/2007 31/12/2011 -03049941 01/01/2007 31/12/2011 LIBEN Frozen meat "whether or not minced" of coalfish "Pollachius virens" (excl. fillets) 01/01/2007 31/12/2011 -03049945 01/01/2007 31/12/2011 LIBEN Frozen meat "whether or not minced" of haddock "Melanogrammus aeglefinus" (excl. fillets) 01/01/2007 31/12/2011 -03049951 01/01/2007 31/12/2011 LIBEN Frozen meat "whether or not minced" of hake "Merluccius spp., Urophycis spp." (excl. fillets) 01/01/2007 31/12/2011 -03049955 01/01/2007 31/12/2500 LIBEN Frozen meat "whether or not minced" of megrim (excl. fillets) 01/01/2007 31/12/2500 -03049961 01/01/2007 31/12/2500 LIBEN Frozen meat "whether or not minced" of Ray's bream "Brama spp." (excl. fillets) 01/01/2007 31/12/2500 -03049965 01/01/2007 31/12/2500 LIBEN Frozen meat "whether or not minced" of monkfish "Lophius spp." (excl. fillets) 01/01/2007 31/12/2500 -03049971 01/01/2007 31/12/2011 LIBEN Frozen meat "whether or not minced" of blue whiting "Micromesistius poutassou or Gadus poutassou" (excl. fillets) 01/01/2007 31/12/2011 -03049975 01/01/2007 31/12/2011 LIBEN Fish meat "whether or not minced" of Alaska pollack 'Theragra chalcogramma', frozen (excl. fish fillets) 01/01/2007 31/12/2011 -03049999 01/01/2007 31/12/2011 LIBEN Frozen meat "whether or not minced" of saltwater fish (excl. swordfish, toothfish, herrings, redfish, cod, fish of the species Boreogadus saida, coalfish, haddock, hake, megrim, Ray's bream, monkfish, blue whiting, Alaska pollack and fillets) 01/01/2007 31/12/2011 -03049999 01/01/2012 31/12/2016 LIBEN Frozen meat of saltwater fish n.e.s. (excl. fillets and surimi) 01/01/2012 31/12/2016 -03049999 01/01/2017 31/12/2500 LIBEN Frozen meat of saltwater fish n.e.s. (excl. fillets and surimi) 01/01/2017 31/12/2500 -0305 01/01/1988 31/12/2500 LIBEN Fish, fit for human consumption, dried, salted or in brine; smoked fish, fit for human consumption, whether or not cooked before or during the smoking process; flours, meals and pellets of fish, fit for human consumption 01/01/1988 31/12/2500 -030510 01/01/1988 31/12/2500 LIBEN Flours, meals and pellets of fish, fit for human consumption 01/01/1988 31/12/2500 -03051000 01/01/1988 31/12/2500 LIBEN Flours, meals and pellets of fish, fit for human consumption 01/01/1988 31/12/2500 -030520 01/01/1988 31/12/2500 LIBEN Fish livers, roes and milt, dried, smoked, salted or in brine 01/01/1988 31/12/2500 -03052000 01/01/1988 31/12/2500 LIBEN Fish livers, roes and milt, dried, smoked, salted or in brine 01/01/1988 31/12/2500 -030530 01/01/1988 31/12/2011 LIBEN Fish fillets, dried, salted or in brine, not smoked 01/01/1988 31/12/2011 -03053011 01/01/1988 31/12/2011 LIBEN Fillets of cod "Gadus macrocephalus", dried, salted or in brine, but not smoked 01/01/1988 31/12/2011 -03053019 01/01/1988 31/12/2011 LIBEN Fillets of cod "Gadus morhua, Gadus ogac" and of fish of the species "Boreogadus saida", dried, salted or in brine, but not smoked 01/01/1988 31/12/2011 -03053030 01/01/1988 31/12/2011 LIBEN Fillets of Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho", salted or in brine, but not smoked 01/01/1988 31/12/2011 -03053050 01/01/1988 31/12/2011 LIBEN Fillets of lesser or Greenland halibut "Reinhardtius hippoglossoides", salted or in brine, but not smoked 01/01/1988 31/12/2011 -03053090 01/01/1988 31/12/2011 LIBEN Fillets of fish, dried, salted or in brine, but not smoked (excl. cod, and fish fillets, salted or in brine of Pacific salmon, Atlantic salmon, Danube salmon and lesser or Greenland halibut) 01/01/1988 31/12/2011 -030531 01/01/2012 31/12/2500 LIBEN Fillets, dried, salted or in brine, but not smoked, of tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", eels "Anguilla spp.", Nile perch "Lates niloticus" and snakeheads "Channa spp." 01/01/2012 31/12/2500 -03053100 01/01/2012 31/12/2016 LIBEN Fillets, dried, salted or in brine, but not smoked, of tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus carpio, Carassius carassius, Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus", eels "Anguilla spp.", Nile perch "Lates niloticus" and snakeheads "Channa spp." 01/01/2012 31/12/2016 -03053100 01/01/2017 31/12/2500 LIBEN Fillets, dried, salted or in brine, but not smoked, of tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", eels "Anguilla spp.", Nile perch "Lates niloticus" and snakeheads "Channa spp." 01/01/2017 31/12/2500 -030532 01/01/2012 31/12/2500 LIBEN Fillets, dried, salted or in brine, but not smoked, of fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae 01/01/2012 31/12/2500 -03053211 01/01/2012 31/12/2500 LIBEN Fillets, dried, salted or in brine, but not smoked, of cod "Gadus macrocephalus" 01/01/2012 31/12/2500 -03053219 01/01/2012 31/12/2500 LIBEN Fillets, dried, salted or in brine, but not smoked, of cod "Gadus morhua, Gadus ogac" and of fish of the species Boreogadus saida 01/01/2012 31/12/2500 -03053290 01/01/2012 31/12/2500 LIBEN Fillets, dried, salted or in brine, but not smoked, of fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae (excl. cod and Boreogadus saida) 01/01/2012 31/12/2500 -030539 01/01/2012 31/12/2500 LIBEN Fish fillets, dried, salted or in brine, but not smoked (excl. tilapia, catfish, carp, eels, Nile perch, snakeheads and fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae) 01/01/2012 31/12/2500 -03053910 01/01/2012 31/12/2500 LIBEN Fillets of Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho", salted or in brine, but not smoked 01/01/2012 31/12/2500 -03053950 01/01/2012 31/12/2500 LIBEN Fillets of lesser or Greenland halibut "Reinhardtius hippoglossoides", salted or in brine, but not smoked 01/01/2012 31/12/2500 -03053990 01/01/2012 31/12/2016 LIBEN Fillets of fish, dried, salted or in brine, but not smoked (excl. tilapia, catfish, carp, eels, Nile perch, snakeheads, fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae, and fish fillets, salted or in brine of Pacific salmon, Atlantic salmon, Danube salmon and lesser or Greenland halibut) 01/01/2012 31/12/2016 -03053990 01/01/2017 31/12/2500 LIBEN Fillets of fish, dried, salted or in brine, but not smoked (excl. tilapia, catfish, carp, eels, Nile perch, snakeheads, fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae, and fish fillets, salted or in brine of Pacific salmon, Atlantic salmon, Danube salmon and lesser or Greenland halibut) 01/01/2017 31/12/2500 -030541 01/01/1988 31/12/2500 LIBEN Smoked Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho", incl. fillets (excl. offal) 01/01/1988 31/12/2500 -03054100 01/01/1988 31/12/2011 LIBEN Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho", smoked, incl. fillets 01/01/1988 31/12/2011 -03054100 01/01/2012 31/12/2500 LIBEN Smoked Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho", incl. fillets (excl. offal) 01/01/2012 31/12/2500 -030542 01/01/1988 31/12/2500 LIBEN Smoked herring "Clupea harengus, Clupea pallasii", incl. fillets (excl. offal) 01/01/1988 31/12/2500 -03054200 01/01/1988 31/12/2011 LIBEN Herrings "Clupea harengus, Clupea pallasii", smoked, incl. fillets 01/01/1988 31/12/2011 -03054200 01/01/2012 31/12/2500 LIBEN Smoked herring "Clupea harengus, Clupea pallasii", incl. fillets (excl. offal) 01/01/2012 31/12/2500 -030543 01/01/2012 31/12/2500 LIBEN Smoked trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae, Oncorhynchus apache and Oncorhynchus chrysogaster", incl. fillets (excl. offal) 01/01/2012 31/12/2500 -03054300 01/01/2012 31/12/2500 LIBEN Smoked trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae, Oncorhynchus apache and Oncorhynchus chrysogaster", incl. fillets (excl. offal) 01/01/2012 31/12/2500 -030544 01/01/2012 31/12/2500 LIBEN Smoked tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", eels "Anguilla spp.", Nile perch "Lates niloticus" and snakeheads "Channa spp.", incl. fillets (excl. offal) 01/01/2012 31/12/2500 -03054410 01/01/2012 31/12/2500 LIBEN Smoked eels "Anguilla spp.", incl. fillets (excl. offal) 01/01/2012 31/12/2500 -03054490 01/01/2012 31/12/2016 LIBEN Smoked tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus carpio, Carassius carassius, Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus", Nile perch "Lates niloticus" and snakeheads "Channa spp.", incl. fillets (excl. offal) 01/01/2012 31/12/2016 -03054490 01/01/2017 31/12/2500 LIBEN Smoked tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", Nile perch "Lates niloticus" and snakeheads "Channa spp.", incl. fillets (excl. offal) 01/01/2017 31/12/2500 -030549 01/01/1988 31/12/2500 LIBEN Smoked fish, incl. fillets (excl. offal, Pacific salmon, Atlantic salmon, Danube salmon, herring, trout, tilapia, catfish, carp, eels, Nile perch and snakeheads) 01/01/1988 31/12/2500 -03054910 01/01/1988 31/12/2011 LIBEN Lesser or Greenland halibut "Reinhardtius hippoglossoides", smoked, incl. fillets 01/01/1988 31/12/2011 -03054910 01/01/2012 31/12/2500 LIBEN Smoked lesser or Greenland halibut "Reinhardtius hippoglossoides", incl. fillets (excl. offal) 01/01/2012 31/12/2500 -03054920 01/01/1988 31/12/2011 LIBEN Atlantic halibut "Hippoglossus hippoglossus", smoked, incl. fillets 01/01/1988 31/12/2011 -03054920 01/01/2012 31/12/2500 LIBEN Smoked Atlantic halibut "Hippoglossus hippoglossus", incl. fillets (excl. offal) 01/01/2012 31/12/2500 -03054930 01/01/1988 31/12/2011 LIBEN Mackerel "Scomber scombrus, Scomber australasicus, Scomber japonicus", smoked, incl. fillets 01/01/1988 31/12/2011 -03054930 01/01/2012 31/12/2500 LIBEN Smoked mackerel "Scomber scombrus, Scomber australasicus, Scomber japonicus", incl. fillets (excl. offal) 01/01/2012 31/12/2500 -03054940 01/01/1988 31/12/1995 LIBEN Trout "Salmo trutta, Salmo gairdneri, Salmo clarki, Salmo aguabonita, Salmo gilae", smoked, incl. fillets 01/01/1988 31/12/1995 -03054945 01/01/1996 31/12/2011 LIBEN Trout "Salmo trutta, Oncorhynchus mykiss, Oncorhynchus clarki, Oncorhynchus aguabonita, Oncorhynchus gilae, Oncorhynchus apache and Oncorhynchus chrysogaster", smoked, incl. fillets 01/01/1996 31/12/2011 -03054950 01/01/1988 31/12/2011 LIBEN Eels "Anguilla spp.", smoked, incl. fillets 01/01/1988 31/12/2011 -03054980 01/01/1996 31/12/2011 LIBEN Smoked fish, incl. fillets (excl. Pacific salmon, Atlantic salmon, Danube salmon, herrings, lesser or Greenland halibut, Atlantic halibut, mackerel, trout and eels) 01/01/1996 31/12/2011 -03054980 01/01/2012 31/12/2016 LIBEN Smoked fish, incl. fillets (excl. offal, Pacific salmon, Atlantic salmon, Danube salmon, herring, lesser or Greenland halibut, Atlantic halibut, mackerel, trout, tilapia, catfish, carp, eels, Nile perch and snakeheads) 01/01/2012 31/12/2016 -03054980 01/01/2017 31/12/2500 LIBEN Smoked fish, incl. fillets (excl. offal, Pacific salmon, Atlantic salmon, Danube salmon, herring, lesser or Greenland halibut, Atlantic halibut, mackerel, trout, tilapia, catfish, carp, eels, Nile perch and snakeheads) 01/01/2017 31/12/2500 -03054990 01/01/1988 31/12/1995 LIBEN Smoked fish, incl. fillets (excl. Pacific salmon, Atlantic salmon, Danube salmon, herrings, lesser or Greenland halibut, Atlantic halibut, mackerel, trout and eels) 01/01/1988 31/12/1995 -030551 01/01/1988 31/12/2500 LIBEN Dried cod "Gadus morhua, Gadus ogac, Gadus macrocephalus", even salted, not smoked (excl. fillets and offal) 01/01/1988 31/12/2500 -03055110 01/01/1988 31/12/2011 LIBEN Cod "Gadus morhua, Gadus ogac, Gadus macrocephalus", dried, unsalted and unsmoked stockfish (excl. fillets) 01/01/1988 31/12/2011 -03055110 01/01/2012 31/12/2500 LIBEN Cod "Gadus morhua, Gadus ogac, Gadus macrocephalus", dried, unsalted, not smoked stockfish (excl. fillets and offal) 01/01/2012 31/12/2500 -03055190 01/01/1988 31/12/2011 LIBEN Cod "Gadus morhua, Gadus ogac, Gadus macrocephalus", dried, salted, not smoked klippfish (excl. fillets) 01/01/1988 31/12/2011 -03055190 01/01/2012 31/12/2500 LIBEN Cod "Gadus morhua, Gadus ogac, Gadus macrocephalus", dried, salted, not smoked clipfish (excl. fillets and offal) 01/01/2012 31/12/2500 -030552 01/01/2017 31/12/2500 LIBEN Dried tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", eels "Anguilla spp.", Nile perch "Lates niloticus" and snakeheads "Channa spp.", even salted but not smoked (excl. fillets and offal) 01/01/2017 31/12/2500 -03055200 01/01/2017 31/12/2500 LIBEN Dried tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", eels "Anguilla spp.", Nile perch "Lates niloticus" and snakeheads "Channa spp.", even salted but not smoked (excl. fillets and offal) 01/01/2017 31/12/2500 -030553 01/01/2017 31/12/2500 LIBEN Dried fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae, even salted but not smoked (excl. fillets, offal and cod "Gadus morhua, Gadus ogac, Gadus macrocephalus") 01/01/2017 31/12/2500 -03055310 01/01/2017 31/12/2500 LIBEN Dried polar cod "Boreogadus saida", even salted but not smoked (excl. fillets and offal) 01/01/2017 31/12/2500 -03055390 01/01/2017 31/12/2500 LIBEN Dried fish of the families Bregmacerotidae, Euclichthyidae, Gadidae, Macrouridae, Melanonidae, Merlucciidae, Moridae and Muraenolepididae, even salted but not smoked (excl. fillets, offal, cod "Gadus morhua, Gadus ogac, Gadus macrocephalus" and polar cod "Boreogadus saida") 01/01/2017 31/12/2500 -030554 01/01/2017 31/12/2500 LIBEN Dried herrings "Clupea harengus, Clupea pallasii", anchovies "Engraulis spp.", sardines "Sardina pilchardus, Sardinops spp.", sardinella "Sardinella spp.", brisling or sprats "Sprattus sprattus", mackerel "Scomber scombrus, Scomber australasicus, Scomber japonicus", Indian mackerels "Rastrelliger spp.", seerfishes "Scomberomorus spp.", jack and horse mackerel "Trachurus spp.", jacks, crevalles "Caranx spp.", cobia "Rachycentron canadum", silver pomfrets "Pampus spp.", Pacific saury "Cololabis saira", scads "Decapterus spp.", capelin "Mallotus villosus", swordfish "Xiphias gladius", Kawakawa "Euthynnus affinis", bonitos "Sarda spp.", marlins, sailfishes and spearfish "Istiophoridae", even salted but not smoked (excl. fillets and offal) 01/01/2017 31/12/2500 -03055430 01/01/2017 31/12/2500 LIBEN Dried herrings "Clupea harengus, Clupea pallasii", even salted but not smoked (excl. fillets and offal) 01/01/2017 31/12/2500 -03055450 01/01/2017 31/12/2500 LIBEN Dried anchovies "Engraulis spp.", even salted but not smoked (excl. fillets and offal) 01/01/2017 31/12/2500 -03055490 01/01/2017 31/12/2500 LIBEN Dried sardines "Sardina pilchardus, Sardinops spp.", sardinella "Sardinella spp.", brisling or sprats "Sprattus sprattus", mackerel "Scomber scombrus, Scomber australasicus, Scomber japonicus", Indian mackerels "Rastrelliger spp.", seerfishes "Scomberomorus spp.", jack and horse mackerel "Trachurus spp.", jacks, crevalles "Caranx spp.", cobia "Rachycentron canadum", silver pomfrets "Pampus spp.", Pacific saury "Cololabis saira", scads "Decapterus spp.", capelin "Mallotus villosus", swordfish "Xiphias gladius", Kawakawa "Euthynnus affinis", bonitos "Sarda spp.", marlins, sailfishes and spearfish "Istiophoridae", even salted but not smoked (excl. fillets and offal) 01/01/2017 31/12/2500 -030559 01/01/1988 31/12/2500 LIBEN Fish, dried, even salted but not smoked, n.e.s. (excl. fillets and offal) 01/01/1988 31/12/2500 -03055910 01/01/2010 31/12/2011 LIBEN Fish of the species Boreogadus saida, dried, whether or not salted, not smoked stockfish (excl. fillets) 01/01/2010 31/12/2011 -03055910 01/01/2012 31/12/2016 LIBEN Fish of the species Boreogadus saida, dried, even salted, not smoked (excl. fillets and offal) 01/01/2012 31/12/2016 -03055911 01/01/1988 31/12/2009 LIBEN Fish of the species Boreogadus saida, dried, unsalted, not smoked stockfish (excl. fillets) 01/01/1988 31/12/2009 -03055919 01/01/1988 31/12/2009 LIBEN Fish of the species Boreogadus saida, dried and salted, not smoked stockfish (excl. fillets) 01/01/1988 31/12/2009 -03055930 01/01/1988 31/12/2011 LIBEN Herrings "Clupea harengus, Clupea pallasii", dried, whether or not salted, not smoked (excl. fillets) 01/01/1988 31/12/2011 -03055930 01/01/2012 31/12/2016 LIBEN Herring "Clupea harengus, Clupea pallasii", dried, even salted, not smoked (excl. fillets and offal) 01/01/2012 31/12/2016 -03055950 01/01/1988 31/12/2011 LIBEN Anchovies "Engraulis spp." dried, whether or not salted, not smoked (excl. fillets) 01/01/1988 31/12/2011 -03055950 01/01/2012 31/12/2016 LIBEN Anchovies "Engraulis spp." dried, even salted, not smoked (excl. fillets and offal) 01/01/2012 31/12/2016 -03055960 01/01/1988 31/12/2003 LIBEN Lesser or Greenland Halibut "Reinhardtius hippoglossoides" and Pacific Halibut "Hippoglossus stenolepis", dried, whether or not salted, not smoked (excl. fillets) 01/01/1988 31/12/2003 -03055970 01/01/1988 31/12/2011 LIBEN Atlantic Halibut "Hippoglossus Hippoglossus", dried, whether or not salted, not smoked (excl. fillets) 01/01/1988 31/12/2011 -03055970 01/01/2012 31/12/2500 LIBEN Atlantic Halibut "Hippoglossus Hippoglossus", dried, even salted, not smoked (excl. fillets and offal) 01/01/2012 31/12/2500 -03055980 01/01/2004 31/12/2011 LIBEN Fish, dried, whether or not salted, not smoked (excl. cod, fish of the species Boreogadus saida, herrings, anchovies, Atlantic halibut and fillets in general) 01/01/2004 31/12/2011 -03055980 01/01/2012 31/12/2016 LIBEN Fish, dried, even salted, not smoked (excl. cod, Boreogadus saida, herring, anchovies, Atlantic halibut and fillets and offal) 01/01/2012 31/12/2016 -03055985 01/01/2017 31/12/2500 LIBEN Fish, dried, even salted but not smoked, n.e.s. (excl. fillets and offal) 01/01/2017 31/12/2500 -03055990 01/01/1988 31/12/2003 LIBEN Fish, dried, whether or not salted, not smoked (excl. cod, fish of the species Boreogadus saida, herrings, anchovies, lesser or Greenland halibut, Pacific halibut, Atlantic halibut and fillets in general) 01/01/1988 31/12/2003 -030561 01/01/1988 31/12/2500 LIBEN Herring (Clupea harengus, Clupea pallasii), only salted or in brine (excl. fillets and offal) 01/01/1988 31/12/2500 -03056100 01/01/1988 31/12/2011 LIBEN Herrings (Clupea harengus, Clupea pallasii), only salted or in brine (excl. fillets) 01/01/1988 31/12/2011 -03056100 01/01/2012 31/12/2500 LIBEN Herring (Clupea harengus, Clupea pallasii), only salted or in brine (excl. fillets and offal) 01/01/2012 31/12/2500 -030562 01/01/1988 31/12/2500 LIBEN Cod "Gadus morhua, Gadus ogac, Gadus macrocephalus", salted or in brine only (excl. fillets and offal) 01/01/1988 31/12/2500 -03056200 01/01/1988 31/12/2011 LIBEN Cod "Gadus morhua, Gadus ogac, Gadus macrocephalus", salted or in brine only (excl. fillets) 01/01/1988 31/12/2011 -03056200 01/01/2012 31/12/2500 LIBEN Cod "Gadus morhua, Gadus ogac, Gadus macrocephalus", salted or in brine only (excl. fillets and offal) 01/01/2012 31/12/2500 -030563 01/01/1988 31/12/2500 LIBEN Anchovies "Engraulis spp.", salted or in brine only (excl. fillets and offal) 01/01/1988 31/12/2500 -03056300 01/01/1988 31/12/2011 LIBEN Anchovies "Engraulis spp.", salted or in brine only (excl. fillets) 01/01/1988 31/12/2011 -03056300 01/01/2012 31/12/2500 LIBEN Anchovies "Engraulis spp.", salted or in brine only (excl. fillets and offal) 01/01/2012 31/12/2500 -030564 01/01/2012 31/12/2500 LIBEN Tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", eels "Anguilla spp.", Nile perch "Lates niloticus" and snakeheads "Channa spp.", salted or in brine only (excl. fillets and offal) 01/01/2012 31/12/2500 -03056400 01/01/2012 31/12/2016 LIBEN Tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus carpio, Carassius carassius, Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus", eels "Anguilla spp.", Nile perch "Lates niloticus" and snakeheads "Channa spp.", salted or in brine only (excl. fillets and offal) 01/01/2012 31/12/2016 -03056400 01/01/2017 31/12/2500 LIBEN Tilapia "Oreochromis spp.", catfish "Pangasius spp., Silurus spp., Clarias spp., Ictalurus spp.", carp "Cyprinus spp., Carassius spp., Ctenopharyngodon idellus, Hypophthalmichthys spp., Cirrhinus spp., Mylopharyngodon piceus, Catla catla, Labeo spp., Osteochilus hasselti, Leptobarbus hoeveni, Megalobrama spp.", eels "Anguilla spp.", Nile perch "Lates niloticus" and snakeheads "Channa spp.", salted or in brine only (excl. fillets and offal) 01/01/2017 31/12/2500 -030569 01/01/1988 31/12/2500 LIBEN Fish, salted or in brine only (excl. fillets, offal, herring, cod, anchovies, tilapia, catfish, carp, eels, Nile perch and snakeheads) 01/01/1988 31/12/2500 -03056910 01/01/1988 31/12/2011 LIBEN Fish of the species Boreogadus saida, salted or in brine only (excl. fillets) 01/01/1988 31/12/2011 -03056910 01/01/2012 31/12/2500 LIBEN Fish of the species Boreogadus saida, salted or in brine only (excl. fillets and offal) 01/01/2012 31/12/2500 -03056920 01/01/1988 31/12/2003 LIBEN Lesser or Greenland halibut "Reinhardtius hippoglossoides" and Pacific halibut "Hippoglossus stenolepis", salted or in brine only (excl. fillets) 01/01/1988 31/12/2003 -03056930 01/01/1988 31/12/2011 LIBEN Atlantic halibut "Hippoglossus hippoglossus", salted or in brine only (excl. fillets) 01/01/1988 31/12/2011 -03056930 01/01/2012 31/12/2500 LIBEN Atlantic halibut "Hippoglossus hippoglossus", salted or in brine only (excl. fillets and offal) 01/01/2012 31/12/2500 -03056950 01/01/1988 31/12/2011 LIBEN Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho", only salted or in brine (excl. fillets) 01/01/1988 31/12/2011 -03056950 01/01/2012 31/12/2500 LIBEN Pacific salmon "Oncorhynchus nerka, Oncorhynchus gorbuscha, Oncorhynchus keta, Oncorhynchus tschawytscha, Oncorhynchus kisutch, Oncorhynchus masou and Oncorhynchus rhodurus", Atlantic salmon "Salmo salar" and Danube salmon "Hucho hucho", only salted or in brine (excl. fillets and offal) 01/01/2012 31/12/2500 -03056980 01/01/2004 31/12/2011 LIBEN Fish, salted or in brine, but neither dried nor smoked (excl. herrings, cod, anchovies, fish of the species Boreogadus saida, Atlantic halibut, Pacific salmon, Atlantic salmon, Danube salmon and fillets in general) 01/01/2004 31/12/2011 -03056980 01/01/2012 31/12/2016 LIBEN Fish, only salted or in brine (excl. herring, cod, anchovies, tilapia, catfish, carp, eels, Nile perch, snakeheads, Boreogadus saida, Atlantic halibut, Pacific salmon, Atlantic salmon, Danube salmon and fillets and offal) 01/01/2012 31/12/2016 -03056980 01/01/2017 31/12/2500 LIBEN Fish, only salted or in brine (excl. herring, cod, anchovies, tilapia, catfish, carp, eels, Nile perch, snakeheads, Boreogadus saida, Atlantic halibut, Pacific salmon, Atlantic salmon, Danube salmon and fillets and offal) 01/01/2017 31/12/2500 -03056990 01/01/1988 31/12/2003 LIBEN Fish, salted or in brine, but neither dried nor smoked (excl. herrings, cod, anchovies, fish of the species Boreogadus saida, lesser or Greenland halibut, Pacific halibut, Atlantic halibut, Pacific salmon, Atlantic salmon, Danube salmon and fillets in general) 01/01/1988 31/12/2003 -030571 01/01/2012 31/12/2500 LIBEN Shark fins, smoked, dried, salted or in brine 01/01/2012 31/12/2500 -03057100 01/01/2017 31/12/2500 LIBEN Shark fins, smoked, dried, salted or in brine 01/01/2017 31/12/2500 -03057110 01/01/2012 31/12/2016 LIBEN Shark fins, smoked 01/01/2012 31/12/2016 -03057190 01/01/2012 31/12/2016 LIBEN Shark fins, dried, salted or in brine (excl. smoked) 01/01/2012 31/12/2016 -030572 01/01/2012 31/12/2500 LIBEN Fish heads, tails and maws, smoked, dried, salted or in brine 01/01/2012 31/12/2500 -03057200 01/01/2012 31/12/2500 LIBEN Fish heads, tails and maws, smoked, dried, salted or in brine 01/01/2012 31/12/2500 -030579 01/01/2012 31/12/2500 LIBEN Fish fins and other edible fish offal, smoked, dried, salted or in brine (excl. heads, tails, maws and shark fins) 01/01/2012 31/12/2500 -03057900 01/01/2012 31/12/2500 LIBEN Fish fins and other edible fish offal, smoked, dried, salted or in brine (excl. heads, tails, maws and shark fins) 01/01/2012 31/12/2500 -0306 01/01/1988 31/12/2500 LIBEN Crustaceans, whether in shell or not, live, fresh, chilled, frozen, dried, salted or in brine, even smoked, incl. crustaceans in shell cooked by steaming or by boiling in water; flours, meals and pellets of crustaceans, fit for human consumption 01/01/1988 31/12/2500 -030611 01/01/1988 31/12/2500 LIBEN Frozen rock lobster and other sea crawfish "Palinurus spp.", "Panulirus spp." and "Jasus spp.", even smoked, whether in shell or not, incl. rock lobster and other sea crawfish in shell, cooked by steaming or by boiling in water 01/01/1988 31/12/2500 -03061100 01/01/1988 31/12/1994 LIBEN Frozen rock lobster and other sea crawfish, whether in shell or not, incl. rock lobster and other sea crawfish in shell, cooked by steaming or by boiling in water 01/01/1988 31/12/1994 -03061105 01/01/2012 31/12/2016 LIBEN Frozen rock lobster and other sea crawfish "Palinurus spp.", "Panulirus spp." and "Jasus spp.", smoked, even in shell, even cooked but not otherwise prepared 01/01/2012 31/12/2016 -03061110 01/01/1995 31/12/2016 LIBEN Frozen crawfish tails "Palinurus spp., Panulirus spp., Jasus spp.", even in shell, incl. crawfish tails in their shell, cooked by steaming or by boiling in water (excl. smoked) 01/01/1995 31/12/2016 -03061110 01/01/2017 31/12/2500 LIBEN Frozen crawfish tails "Palinurus spp., Panulirus spp., Jasus spp.", even smoked, whether in shell or not, incl. crawfish tails in their shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03061190 01/01/1995 31/12/2016 LIBEN Frozen rock lobster and other sea crawfish "Palinurus spp., Panulirus spp. and Jasus spp.", even in shell, incl. rock lobster and other sea crawfish in shell, cooked by steaming or by boiling in water (excl. crawfish tails and smoked) 01/01/1995 31/12/2016 -03061190 01/01/2017 31/12/2500 LIBEN Frozen rock lobster and other sea crawfish "Palinurus spp., Panulirus spp. and Jasus spp.", even smoked, whether in shell or not, incl. ones in shell, cooked by steaming or by boiling in water (excl. crawfish tails) 01/01/2017 31/12/2500 -030612 01/01/1988 31/12/2500 LIBEN Frozen lobsters "Homarus spp.", even smoked, whether in shell or not, incl. lobsters in shell, cooked by steaming or by boiling in water 01/01/1988 31/12/2500 -03061205 01/01/2012 31/12/2016 LIBEN Frozen lobsters "Homarus spp.", smoked, even in shell, even cooked but not otherwise prepared 01/01/2012 31/12/2016 -03061210 01/01/1988 31/12/2016 LIBEN Frozen lobsters "Homarus spp.", whole, even cooked by steaming or by boiling in water (excl. smoked) 01/01/1988 31/12/2016 -03061210 01/01/2017 31/12/2500 LIBEN Frozen lobsters "Homarus spp.", whole, even smoked or cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03061290 01/01/1988 31/12/2016 LIBEN Frozen lobsters "Homarus spp." (excl. whole and smoked) 01/01/1988 31/12/2016 -03061290 01/01/2017 31/12/2500 LIBEN Frozen lobsters "Homarus spp.", even smoked, whether in shell or not, incl. lobsters in shell, cooked by steaming or by boiling in water (excl. whole) 01/01/2017 31/12/2500 -030613 01/01/1988 31/12/2011 LIBEN Frozen shrimps and prawns, whether in shell or not, incl. shrimps and prawns in shell, cooked by steaming or by boiling in water 01/01/1988 31/12/2011 -03061310 01/01/1988 31/12/2011 LIBEN Frozen shrimps and prawns of the Pandalidae family, whether in shell or not, incl. shrimps and prawns in shell, cooked by steaming or by boiling in water 01/01/1988 31/12/2011 -03061330 01/01/1988 31/12/2011 LIBEN Frozen shrimps of the genus Crangon, whether in shell or not, incl. shrimps in shell, cooked by steaming or by boiling in water 01/01/1988 31/12/2011 -03061340 01/01/1997 31/12/2011 LIBEN Frozen deepwater rose shrimps "Parapenaeus longirostris", whether in shell or not, incl. shrimps in shell, cooked by steaming or by boiling in water 01/01/1997 31/12/2011 -03061350 01/01/1997 31/12/2011 LIBEN Frozen shrimps of the genus "Penaeus", whether in shell or not, incl. shrimps in shell, cooked by steaming or by boiling in water 01/01/1997 31/12/2011 -03061380 01/01/1997 31/12/2011 LIBEN Frozen shrimps and prawns, whether in shell or not, incl. shrimps and prawns in shell, cooked by steaming or by boiling in water (excl. "Pandalidae", "Crangon", deepwater rose shrimps "Parapenaeus longirostris" and shrimps of the genus "Penaeus") 01/01/1997 31/12/2011 -03061390 01/01/1988 31/12/1996 LIBEN Frozen shrimps and prawns, whether in shell or not, incl. shrimps and prawns in shell, cooked by steaming or by boiling in water (excl. "Pandalidae" and "Crangon") 01/01/1988 31/12/1996 -030614 01/01/1988 31/12/2500 LIBEN Frozen crabs, even smoked, whether in shell or not, incl. crabs in shell, cooked by steaming or by boiling in water 01/01/1988 31/12/2500 -03061405 01/01/2012 31/12/2016 LIBEN Frozen crabs, smoked, even in shell, even cooked but not otherwise prepared 01/01/2012 31/12/2016 -03061410 01/01/1988 31/12/2016 LIBEN Frozen crabs "Paralithodes camchaticus, Chionoecetes spp. and Callinectes sapidus", even in shell, incl. crabs in shell, cooked by steaming or by boiling in water (excl. smoked) 01/01/1988 31/12/2016 -03061410 01/01/2017 31/12/2500 LIBEN Frozen crabs "Paralithodes camchaticus, Chionoecetes spp. and Callinectes sapidus", even smoked, whether in shell or not, incl. crabs in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03061430 01/01/1988 31/12/2016 LIBEN Frozen crabs "Cancer pagurus", even in shell, incl. crabs in shell, cooked by steaming or by boiling in water (excl. smoked) 01/01/1988 31/12/2016 -03061430 01/01/2017 31/12/2500 LIBEN Frozen crabs "Cancer pagurus", even smoked, whether in shell or not, incl. crabs in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03061490 01/01/1988 31/12/2016 LIBEN Frozen crabs, even in shell, incl. crabs in shell, cooked by steaming or by boiling in water (excl. smoked and "Paralithodes camchaticus", "Chionoecetes spp.", "Callinectes sapidus" and "Cancer pagurus") 01/01/1988 31/12/2016 -03061490 01/01/2017 31/12/2500 LIBEN Frozen crabs, even smoked, whether in shell or not, incl. crabs in shell, cooked by steaming or by boiling in water (excl. "Paralithodes camchaticus", "Chionoecetes spp.", "Callinectes sapidus" and "Cancer pagurus") 01/01/2017 31/12/2500 -030615 01/01/2012 31/12/2500 LIBEN Frozen Norway lobsters "Nephrops norvegicus", even smoked, whether in shell or not, incl. lobsters in shell, cooked by steaming or by boiling in water 01/01/2012 31/12/2500 -03061500 01/01/2017 31/12/2500 LIBEN Frozen Norway lobsters "Nephrops norvegicus", even smoked, whether in shell or not, incl. lobsters in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03061510 01/01/2012 31/12/2016 LIBEN Frozen Norway lobsters "Nephrops norvegicus", smoked, even in shell, even cooked but not otherwise prepared 01/01/2012 31/12/2016 -03061590 01/01/2012 31/12/2016 LIBEN Frozen Norway lobsters "Nephrops norvegicus", even in shell, incl. lobsters in shell, cooked by steaming or by boiling in water (excl. smoked) 01/01/2012 31/12/2016 -030616 01/01/2012 31/12/2500 LIBEN Frozen cold-water shrimps and prawns "Pandalus spp., Crangon crangon", even smoked, whether in shell or not, incl. shrimps and prawns in shell, cooked by steaming or by boiling in water 01/01/2012 31/12/2500 -03061610 01/01/2012 31/12/2016 LIBEN Frozen cold-water shrimps and prawns "Pandalus spp., Crangon crangon", smoked, even in shell, even cooked but not otherwise prepared 01/01/2012 31/12/2016 -03061691 01/01/2012 31/12/2016 LIBEN Frozen cold-water shrimps "Crangon crangon", even in shell, incl. shrimps in shell, cooked by steaming or by boiling in water (excl smoked) 01/01/2012 31/12/2016 -03061691 01/01/2017 31/12/2500 LIBEN Frozen cold-water shrimps "Crangon crangon", even smoked, whether in shell or not, incl. shrimps in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03061699 01/01/2012 31/12/2016 LIBEN Frozen cold-water shrimps and prawns "Pandalus spp.", even in shell, incl. shrimps and prawns in shell, cooked by steaming or by boiling in water (excl. smoked) 01/01/2012 31/12/2016 -03061699 01/01/2017 31/12/2500 LIBEN Frozen cold-water shrimps and prawns "Pandalus spp.", even smoked, whether in shell or not, incl. shrimps and prawns in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -030617 01/01/2012 31/12/2500 LIBEN Frozen shrimps and prawns, even smoked, whether in shell or not, incl. shrimps and prawns in shell, cooked by steaming or by boiling in water (excl. cold-water shrimps and prawns) 01/01/2012 31/12/2500 -03061710 01/01/2012 31/12/2016 LIBEN Frozen shrimps and prawns, smoked, even in shell, even cooked but not otherwise prepared (excl. cold-water shrimps and prawns) 01/01/2012 31/12/2016 -03061791 01/01/2012 31/12/2016 LIBEN Frozen deepwater rose shrimps "Parapenaeus longirostris", even in shell, incl. shrimps in shell, cooked by steaming or by boiling in water (excl. smoked) 01/01/2012 31/12/2016 -03061791 01/01/2017 31/12/2500 LIBEN Frozen deepwater rose shrimps "Parapenaeus longirostris", even smoked, whether in shell or not, incl. shrimps in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03061792 01/01/2012 31/12/2016 LIBEN Frozen shrimps of the genus "Penaeus", even in shell, incl. shrimps in shell, cooked by steaming or by boiling in water (excl. smoked) 01/01/2012 31/12/2016 -03061792 01/01/2017 31/12/2500 LIBEN Frozen shrimps of the genus "Penaeus", even smoked, whether in shell or not, incl. shrimps in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03061793 01/01/2012 31/12/2016 LIBEN Frozen shrimps of the family Pandalidae, even in shell, incl. shrimps in shell, cooked by steaming or by boiling in water (excl. smoked and Pandalus) 01/01/2012 31/12/2016 -03061793 01/01/2017 31/12/2500 LIBEN Frozen shrimps of the family Pandalidae, even smoked, whether in shell or not, incl. shrimps in shell, cooked by steaming or by boiling in water (excl. Pandalus) 01/01/2017 31/12/2500 -03061794 01/01/2012 31/12/2016 LIBEN Frozen shrimps of the genus Crangon, even in shell, incl. shrimps in shell, cooked by steaming or by boiling in water (excl. smoked and Crangon crangon) 01/01/2012 31/12/2016 -03061794 01/01/2017 31/12/2500 LIBEN Frozen shrimps of the genus Crangon, even smoked, whether in shell or not, incl. shrimps in shell, cooked by steaming or by boiling in water (excl. "Crangon crangon") 01/01/2017 31/12/2500 -03061799 01/01/2012 31/12/2016 LIBEN Frozen shrimps and prawns, even in shell, incl. shrimps and prawns in shell, cooked by steaming or by boiling in water (excl. smoked and "Pandalidae", "Crangon", deepwater rose shrimps "Parapenaeus longirostris" and shrimps of the genus "Penaeus") 01/01/2012 31/12/2016 -03061799 01/01/2017 31/12/2500 LIBEN Frozen shrimps and prawns, even smoked, whether in shell or not, incl. shrimps and prawns in shell, cooked by steaming or by boiling in water (excl. "Pandalidae", "Crangon", deepwater rose shrimps "Parapenaeus longirostris" and "Penaeus") 01/01/2017 31/12/2500 -030619 01/01/1988 31/12/2500 LIBEN Frozen crustaceans, even smoked, fit for human consumption, whether in shell or not, incl. crustaceans in shell, cooked beforehand by steaming or by boiling in water (excl. rock lobster and other sea crawfish, lobsters, crabs, Norway lobsters, shrimps and prawns); frozen flours, meals, and pellets of crustaceans, even smoked, fit for human consumption 01/01/1988 31/12/2500 -03061905 01/01/2012 31/12/2016 LIBEN Frozen crustaceans, fit for human consumption, smoked, even in shell, even cooked but not otherwise prepared (excl. rock lobster and other sea crawfish, lobsters, crabs, Norway lobsters, shrimps and prawns); frozen flours, meals and pellets of crustaceans, smoked, fit for human consumption 01/01/2012 31/12/2016 -03061910 01/01/1988 31/12/2016 LIBEN Frozen freshwater crayfish, even in shell, incl. crayfish in shell, cooked by steaming or by boiling in water (excl. smoked) 01/01/1988 31/12/2016 -03061910 01/01/2017 31/12/2500 LIBEN Frozen freshwater crayfish, even smoked, whether in shell or not, incl. crayfish in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03061930 01/01/1988 31/12/2011 LIBEN Frozen Norway lobsters "Nephrops norvegicus", whether in shell or not, incl. Norway lobsters in shell, cooked by steaming or by boiling in water 01/01/1988 31/12/2011 -03061990 01/01/1988 31/12/2016 LIBEN Frozen crustaceans, fit for human consumption, even in shell, incl. crustaceans in shell, cooked by steaming or by boiling in water (excl. smoked and rock lobster and other sea crawfish, lobsters, shrimps, prawns, crabs, freshwater crayfish and Norway lobsters "Nephrops norvegicus"); frozen flours, meals, and pellets of crustaceans, fit for human consumption (excl. smoked) 01/01/1988 31/12/2016 -03061990 01/01/2017 31/12/2500 LIBEN Frozen crustaceans, fit for human consumption, even smoked, whether in shell or not, incl. crustaceans in shell, cooked by steaming or by boiling in water (excl. rock lobster and other sea crawfish, lobsters, shrimps, prawns, crabs, freshwater crayfish and Norway lobsters "Nephrops norvegicus"); frozen flours, meals, and pellets of crustaceans, fit for human consumption 01/01/2017 31/12/2500 -030621 01/01/1988 31/12/2016 LIBEN Rock lobster and other sea crawfish "Palinurus spp., Panulirus spp. and Jasus spp.", even smoked, whether in shell or not, live, fresh, chilled, dried, salted or in brine, incl. in shell, cooked by steaming or by boiling in water 01/01/1988 31/12/2016 -03062100 01/01/1988 31/12/2011 LIBEN Rock lobster and other sea crawfish "Palinurus spp., Panulirus spp. and Jasus spp.", whether in shell or not, live, fresh, chilled, dried, salted or in brine, incl. in shell, cooked by steaming or by boiling in water 01/01/1988 31/12/2011 -03062110 01/01/2012 31/12/2016 LIBEN Rock lobster and other sea crawfish "Palinurus spp., Panulirus spp. and Jasus spp.", smoked, even in shell, even cooked but not otherwise prepared (excl. frozen) 01/01/2012 31/12/2016 -03062190 01/01/2012 31/12/2016 LIBEN Rock lobster and other sea crawfish "Palinurus spp., Panulirus spp. and Jasus spp.", even in shell, live, fresh, chilled, dried, salted or in brine, incl. in shell, cooked by steaming or by boiling in water (excl. smoked) 01/01/2012 31/12/2016 -030622 01/01/1988 31/12/2016 LIBEN Lobsters "Homarus spp.", even smoked, whether in shell or not, live, fresh, chilled, dried, salted or in brine, incl. lobsters in shell, cooked by steaming or by boiling in water 01/01/1988 31/12/2016 -03062210 01/01/1988 31/12/2016 LIBEN Live lobsters "Homarus spp." 01/01/1988 31/12/2016 -03062230 01/01/2012 31/12/2016 LIBEN Lobsters "Homarus spp.", smoked, even in shell, even cooked but not otherwise prepared 01/01/2012 31/12/2016 -03062291 01/01/1988 31/12/2016 LIBEN Whole lobsters "Homarus spp.", fresh, chilled, dried, salted or in brine, incl. lobsters in shell, cooked by steaming or by boiling in water (excl. smoked) 01/01/1988 31/12/2016 -03062299 01/01/1988 31/12/2016 LIBEN Parts of lobsters "Homarus spp.", fresh, chilled, dried, salted or in brine, incl. parts in shell, cooked by steaming or by boiling in water (excl. smoked) 01/01/1988 31/12/2016 -030623 01/01/1988 31/12/2011 LIBEN Shrimps and prawns, whether in shell or not, live, fresh, chilled, dried, salted or in brine, incl. shrimps and prawns in shell, cooked by steaming or by boiling in water 01/01/1988 31/12/2011 -03062310 01/01/1988 31/12/2011 LIBEN Shrimps and prawns of the Pandalidae family, whether in shell or not, live, fresh, chilled, dried, salted or in brine, incl. shrimps and prawns in shell, cooked by steaming or by boiling in water 01/01/1988 31/12/2011 -03062331 01/01/1988 31/12/2011 LIBEN Shrimps of the genus Crangon, whether in shell or not, fresh, chilled or cooked by steaming or by boiling in water 01/01/1988 31/12/2011 -03062339 01/01/1988 31/12/2011 LIBEN Shrimps of the genus Crangon, whether in shell or not, live, dried, salted or in brine, incl. shrimps in shell, cooked by steaming or by boiling in water, whether or not chilled 01/01/1988 31/12/2011 -03062390 01/01/1988 31/12/2011 LIBEN Shrimps and prawns, whether in shell or not, live, fresh, chilled, dried, salted or in brine, incl. shrimps in shell, cooked by steaming or by boiling in water (excl. "Pandalidae" and "Crangon") 01/01/1988 31/12/2011 -030624 01/01/1988 31/12/2016 LIBEN Crabs, even smoked, whether in shell or not, live, fresh, chilled, dried, salted or in brine, incl. crabs in shell, cooked by steaming or by boiling in water 01/01/1988 31/12/2016 -03062410 01/01/1988 31/12/2003 LIBEN Crabs "Paralithodes camchaticus, Chionoecetes spp." and "Callinectes sapidus", whether in shell or not, live, dried, salted or in brine, incl. crabs in shell, cooked by steaming or by boiling in water 01/01/1988 31/12/2003 -03062410 01/01/2012 31/12/2016 LIBEN Crabs, smoked, even in shell, even cooked but not otherwise prepared (excl. frozen) 01/01/2012 31/12/2016 -03062430 01/01/1988 31/12/2016 LIBEN Crabs "Cancer pagurus", even in shell, live, fresh, chilled, dried, salted or in brine, incl. crabs in shell, cooked by steaming or by boiling in water (excl. smoked) 01/01/1988 31/12/2016 -03062480 01/01/2004 31/12/2016 LIBEN Crabs, even in shell, live, fresh, chilled, dried, salted or in brine, incl. crabs in shell, cooked by steaming or by boiling in water (excl. smoked and "Cancer pagurus") 01/01/2004 31/12/2016 -03062490 01/01/1988 31/12/2003 LIBEN Crabs, whether in shell or not, live, dried, salted or in brine, incl. crabs in shell, cooked by steaming or by boiling in water (excl. "Paralithodes camchaticus, Chionoecetes spp.", "Callinectes sapidus", and "Cancer pagurus") 01/01/1988 31/12/2003 -030625 01/01/2012 31/12/2016 LIBEN Norway lobsters "Nephrops norvegicus", even smoked, whether in shell or not, live, fresh, chilled, dried, salted or in brine, incl. lobsters in shell, cooked by steaming or by boiling in water 01/01/2012 31/12/2016 -03062510 01/01/2012 31/12/2016 LIBEN Norway lobsters "Nephrops norvegicus", smoked, even in shell, even cooked but not otherwise prepared (excl. frozen) 01/01/2012 31/12/2016 -03062590 01/01/2012 31/12/2016 LIBEN Norway lobsters "Nephrops norvegicus", even in shell, live, fresh, chilled, dried, salted or in brine, incl. lobsters in shell, cooked by steaming or by boiling in water (excl. smoked) 01/01/2012 31/12/2016 -030626 01/01/2012 31/12/2016 LIBEN Cold-water shrimps and prawns "Pandalus spp., Crangon crangon", even smoked, whether in shell or not, live, fresh, chilled, dried, salted or in brine, incl. shrimps and prawns in shell, cooked by steaming or by boiling in water 01/01/2012 31/12/2016 -03062610 01/01/2012 31/12/2016 LIBEN Cold-water shrimps and prawns "Pandalus spp., Crangon crangon", smoked, even in shell, even cooked but not otherwise prepared (excl. frozen) 01/01/2012 31/12/2016 -03062631 01/01/2012 31/12/2016 LIBEN Shrimps "Crangon crangon", even in shell, fresh or chilled, or cooked by steaming or by boiling in water (excl. smoked) 01/01/2012 31/12/2016 -03062639 01/01/2012 31/12/2016 LIBEN Shrimps "Crangon crangon", live, dried, salted or in brine (excl. smoked) 01/01/2012 31/12/2016 -03062690 01/01/2012 31/12/2016 LIBEN Cold-water shrimps and prawns "Pandalus spp.", even in shell, live, fresh, chilled, dried, salted or in brine, incl. shrimps and prawns in shell, cooked by steaming or by boiling in water (excl. smoked) 01/01/2012 31/12/2016 -030627 01/01/2012 31/12/2016 LIBEN Shrimps and prawns, even smoked, whether in shell or not, live, fresh, chilled, dried, salted or in brine, incl. shrimps and prawns in shell, cooked by steaming or by boiling in water (excl. cold-water shrimps and prawns) 01/01/2012 31/12/2016 -03062710 01/01/2012 31/12/2016 LIBEN Shrimps and prawns, smoked, even in shell, even cooked but not otherwise prepared (excl. frozen and cold-water shrimps and prawns) 01/01/2012 31/12/2016 -03062791 01/01/2012 31/12/2016 LIBEN Shrimps of the family Pandalidae, even in shell, incl. shrimps in shell, cooked by steaming or by boiling in water (excl. smoked, frozen and Pandalus) 01/01/2012 31/12/2016 -03062795 01/01/2012 31/12/2016 LIBEN Shrimps of the genus Crangon, even in shell, incl. shrimps in shell, cooked by steaming or by boiling in water (excl. smoked, frozen and Crangon crangon) 01/01/2012 31/12/2016 -03062799 01/01/2012 31/12/2016 LIBEN Shrimps and prawns, even in shell, incl. shrimps and prawns in shell, cooked by steaming or by boiling in water (excl. smoked, frozen and "Pandalidae" and "Crangon") 01/01/2012 31/12/2016 -030629 01/01/1988 31/12/2016 LIBEN Crustaceans, even smoked, fit for human consumption, whether in shell or not, live, fresh, chilled, dried, salted or in brine, incl. crustaceans in shell, cooked by steaming or by boiling in water (excl. rock lobster and other sea crawfish, lobsters, crabs, Norway lobsters, shrimps and prawns); flours, meals and pellets of crustaceans, even smoked, fit for human consumption 01/01/1988 31/12/2016 -03062905 01/01/2012 31/12/2016 LIBEN Crustaceans, fit for human consumption, smoked, even in shell, even cooked but not otherwise prepared (excl. frozen and rock lobster and other sea crawfish, lobsters, crabs, Norway lobsters, shrimps and prawns); flours, meals and pellets of crustaceans, smoked, fit for human consumption (excl. frozen) 01/01/2012 31/12/2016 -03062910 01/01/1988 31/12/2016 LIBEN Freshwater crayfish, even in shell, incl. crayfish in shell, cooked by steaming or by boiling in water (excl. smoked and frozen) 01/01/1988 31/12/2016 -03062930 01/01/1988 31/12/2011 LIBEN Norway lobsters "Nephrops norvegicus", whether in shell or not, live, fresh, chilled, dried, salted or in brine, incl. Norway lobsters in shell, cooked by steaming or by boiling in water 01/01/1988 31/12/2011 -03062990 01/01/1988 31/12/2016 LIBEN Crustaceans, fit for human consumption, even in shell, incl. crustaceans in shell, cooked by steaming or by boiling in water (excl. smoked, frozen and rock lobster and other sea crawfish, lobsters, shrimps, prawns, crabs, freshwater crayfish and Norway lobsters "Nephrops norvegicus"); flours, meals, and pellets of crustaceans, fit for human consumption (excl. smoked and frozen) 01/01/1988 31/12/2016 -030631 01/01/2017 31/12/2500 LIBEN Rock lobster and other sea crawfish "Palinurus spp., Panulirus spp. and Jasus spp.", whether in shell or not, live, fresh or chilled 01/01/2017 31/12/2500 -03063100 01/01/2017 31/12/2500 LIBEN Rock lobster and other sea crawfish "Palinurus spp., Panulirus spp. and Jasus spp.", whether in shell or not, live, fresh or chilled 01/01/2017 31/12/2500 -030632 01/01/2017 31/12/2500 LIBEN Lobsters "Homarus spp.", whether in shell or not, live, fresh or chilled 01/01/2017 31/12/2500 -03063210 01/01/2017 31/12/2500 LIBEN Live lobsters "Homarus spp." 01/01/2017 31/12/2500 -03063291 01/01/2017 31/12/2500 LIBEN Whole lobsters "Homarus spp.", fresh or chilled 01/01/2017 31/12/2500 -03063299 01/01/2017 31/12/2500 LIBEN Parts of lobsters "Homarus spp.", fresh or chilled, whether in shell or not 01/01/2017 31/12/2500 -030633 01/01/2017 31/12/2500 LIBEN Crabs, whether in shell or not, live, fresh or chilled 01/01/2017 31/12/2500 -03063310 01/01/2017 31/12/2500 LIBEN Crabs "Cancer pagurus", whether in shell or not, live, fresh or chilled 01/01/2017 31/12/2500 -03063390 01/01/2017 31/12/2500 LIBEN Crabs, whether in shell or not, live, fresh or chilled (excl. "Cancer pagurus") 01/01/2017 31/12/2500 -030634 01/01/2017 31/12/2500 LIBEN Norway lobsters "Nephrops norvegicus", whether in shell or not, live, fresh or chilled 01/01/2017 31/12/2500 -03063400 01/01/2017 31/12/2500 LIBEN Norway lobsters "Nephrops norvegicus", whether in shell or not, live, fresh or chilled 01/01/2017 31/12/2500 -030635 01/01/2017 31/12/2500 LIBEN Cold-water shrimps and prawns "Pandalus spp., Crangon crangon", whether in shell or not, live, fresh or chilled 01/01/2017 31/12/2500 -03063510 01/01/2017 31/12/2500 LIBEN Shrimps "Crangon crangon", whether in shell or not, fresh or chilled 01/01/2017 31/12/2500 -03063550 01/01/2017 31/12/2500 LIBEN Live shrimps "Crangon crangon" 01/01/2017 31/12/2500 -03063590 01/01/2017 31/12/2500 LIBEN Cold-water shrimps and prawns "Pandalus spp.", whether in shell or not, live, fresh or chilled 01/01/2017 31/12/2500 -030636 01/01/2017 31/12/2500 LIBEN Shrimps and prawns, whether in shell or not, live, fresh or chilled (excl. cold-water shrimps and prawns "Pandalus spp., Crangon crangon") 01/01/2017 31/12/2500 -03063610 01/01/2017 31/12/2500 LIBEN Shrimps of the family Pandalidae, whether in shell or not, live, fresh or chilled (excl. "Pandalus spp.") 01/01/2017 31/12/2500 -03063650 01/01/2017 31/12/2500 LIBEN Shrimps of the genus Crangon, whether in shell or not, live, fresh or chilled (excl. "Crangon crangon") 01/01/2017 31/12/2500 -03063690 01/01/2017 31/12/2500 LIBEN Shrimps and prawns, whether in shell or not, live, fresh or chilled (excl. "Pandalidae" and "Crangon") 01/01/2017 31/12/2500 -030639 01/01/2017 31/12/2500 LIBEN Crustaceans, fit for human consumption, whether in shell or not, live, fresh or chilled (excl. rock lobster and other sea crawfish, lobsters, crabs, Norway lobsters, shrimps and prawns); flours, meals and pellets of crustaceans, fit for human consumption, fresh or chilled 01/01/2017 31/12/2500 -03063910 01/01/2017 31/12/2500 LIBEN Freshwater crayfish, whether in shell or not, live, fresh or chilled 01/01/2017 31/12/2500 -03063990 01/01/2017 31/12/2500 LIBEN Crustaceans, fit for human consumption, whether in shell or not, live, fresh or chilled (excl. rock lobster and other sea crawfish, lobsters, crabs, Norway lobsters, shrimps, prawns and freshwater crayfish); flours, meals and pellets of crustaceans, fit for human consumption, fresh or chilled 01/01/2017 31/12/2500 -030691 01/01/2017 31/12/2500 LIBEN Rock lobster and other sea crawfish "Palinurus spp., Panulirus spp. and Jasus spp.", whether in shell or not, dried, salted, smoked or in brine, incl. in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03069100 01/01/2017 31/12/2500 LIBEN Rock lobster and other sea crawfish "Palinurus spp., Panulirus spp. and Jasus spp.", whether in shell or not, dried, salted, smoked or in brine, incl. in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -030692 01/01/2017 31/12/2500 LIBEN Lobsters "Homarus spp.", whether in shell or not, dried, salted, smoked or in brine, incl. lobsters in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03069210 01/01/2017 31/12/2500 LIBEN Whole lobsters "Homarus spp.", dried, salted, smoked or in brine, incl. lobsters in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03069290 01/01/2017 31/12/2500 LIBEN Parts of lobsters "Homarus spp.", whether in shell or not, dried, salted, smoked or in brine, incl. parts in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -030693 01/01/2017 31/12/2500 LIBEN Crabs, whether in shell or not, dried, salted, smoked or in brine, incl. crabs in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03069310 01/01/2017 31/12/2500 LIBEN Crabs "Cancer pagurus", whether in shell or not, dried, salted, smoked or in brine, incl. crabs in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03069390 01/01/2017 31/12/2500 LIBEN Crabs, whether in shell or not, dried, salted, smoked or in brine, incl. crabs in shell, cooked by steaming or by boiling in water (excl. "Cancer pagurus") 01/01/2017 31/12/2500 -030694 01/01/2017 31/12/2500 LIBEN Norway lobsters "Nephrops norvegicus", whether in shell or not, dried, salted, smoked or in brine, incl. lobsters in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03069400 01/01/2017 31/12/2500 LIBEN Norway lobsters "Nephrops norvegicus", whether in shell or not, dried, salted, smoked or in brine, incl. lobsters in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -030695 01/01/2017 31/12/2500 LIBEN Shrimps and prawns, whether in shell or not, dried, salted, smoked or in brine, incl. ones in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03069511 01/01/2017 31/12/2500 LIBEN Shrimps "Crangon crangon", whether in shell or not, dried, salted, smoked or in brine, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03069519 01/01/2017 31/12/2500 LIBEN Shrimps "Crangon crangon", whether in shell or not, dried, salted, smoked or in brine (excl. cooked by steaming or by boiling in water) 01/01/2017 31/12/2500 -03069520 01/01/2017 31/12/2500 LIBEN Shrimps and prawns "Pandalus spp.", whether in shell or not, dried, salted, smoked or in brine, incl. ones in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03069530 01/01/2017 31/12/2500 LIBEN Shrimps of the family Pandalidae, whether in shell or not, dried, salted, smoked or in brine, incl. shrimps in shell, cooked by steaming or by boiling in water (excl. "Pandalus spp.") 01/01/2017 31/12/2500 -03069540 01/01/2017 31/12/2500 LIBEN Shrimps of the genus Crangon, whether in shell or not, dried, salted, smoked or in brine, incl. shrimps in shell, cooked by steaming or by boiling in water (excl. "Crangon crangon") 01/01/2017 31/12/2500 -03069590 01/01/2017 31/12/2500 LIBEN Shrimps and prawns, whether in shell or not, dried, salted, smoked or in brine, incl. ones in shell, cooked by steaming or by boiling in water (excl. "Pandalidae" and "Crangon") 01/01/2017 31/12/2500 -030699 01/01/2017 31/12/2500 LIBEN Crustaceans, fit for human consumption, whether in shell or not, dried, salted, smoked or in brine, incl. crustaceans in shell, cooked by steaming or by boiling in water (excl. rock lobster and other sea crawfish, lobsters, crabs, Norway lobsters, shrimps and prawns); flours, meals and pellets of crustaceans, dried, salted, smoked or in brine, fit for human consumption 01/01/2017 31/12/2500 -03069910 01/01/2017 31/12/2500 LIBEN Freshwater crayfish, whether in shell or not, dried, salted, smoked or in brine, incl. crayfish in shell, cooked by steaming or by boiling in water 01/01/2017 31/12/2500 -03069990 01/01/2017 31/12/2500 LIBEN Crustaceans, fit for human consumption, whether in shell or not, dried, salted, smoked or in brine, incl. crustaceans in shell, cooked by steaming or by boiling in water (excl. rock lobster and other sea crawfish, lobsters, crabs, Norway lobsters, shrimps, prawns and freshwater crayfish); flours, meals and pellets of crustaceans, dried, salted, smoked or in brine, fit for human consumption 01/01/2017 31/12/2500 -0307 01/01/1988 31/12/2500 LIBEN Molluscs, fit for human consumption, even smoked, whether in shell or not, live, fresh, chilled, frozen, dried, salted or in brine; flours, meals and pellets of molluscs, fit for human consumption 01/01/1988 31/12/2500 -030710 01/01/1988 31/12/2011 LIBEN Oysters, live, fresh, chilled, frozen, dried, salted or in brine 01/01/1988 31/12/2011 -03071010 01/01/1988 31/12/2011 LIBEN Live flat oysters "Ostrea spp.", weighing <= 40 g each incl. shell 01/01/1988 31/12/2011 -03071090 01/01/1988 31/12/2011 LIBEN Oysters, live, fresh, chilled, frozen, dried, salted or in brine (excl. live flat oysters "Ostrea spp.", weighing <= 40 g each incl. shell) 01/01/1988 31/12/2011 -030711 01/01/2012 31/12/2500 LIBEN Oysters, even in shell, live, fresh or chilled 01/01/2012 31/12/2500 -03071110 01/01/2012 31/12/2500 LIBEN Live flat oysters "Ostrea" weighing "incl. shell" <= 40 g 01/01/2012 31/12/2500 -03071190 01/01/2012 31/12/2500 LIBEN Oysters, even in shell, live, fresh or chilled (excl. live flat oysters "Ostrea" weighing "incl. shell" <= 40 g) 01/01/2012 31/12/2500 -030712 01/01/2017 31/12/2500 LIBEN Oysters, even in shell, frozen 01/01/2017 31/12/2500 -03071200 01/01/2017 31/12/2500 LIBEN Oysters, even in shell, frozen 01/01/2017 31/12/2500 -030719 01/01/2012 31/12/2500 LIBEN Oysters, even in shell, smoked, dried, salted or in brine 01/01/2012 31/12/2500 -03071900 01/01/2017 31/12/2500 LIBEN Oysters, even in shell, smoked, dried, salted or in brine 01/01/2017 31/12/2500 -03071910 01/01/2012 31/12/2016 LIBEN Oysters, smoked, even in shell, even cooked but not otherwise prepared 01/01/2012 31/12/2016 -03071990 01/01/2012 31/12/2016 LIBEN Oysters, even in shell, frozen, dried, salted or in brine (excl. smoked) 01/01/2012 31/12/2016 -030721 01/01/1988 31/12/2500 LIBEN Live, fresh or chilled, scallops, incl. queen scallops, of the genera Pecten, Chlamys or Placopecten, even in shell 01/01/1988 31/12/2500 -03072100 01/01/1988 31/12/2500 LIBEN Live, fresh or chilled, scallops, incl. queen scallops, of the genera Pecten, Chlamys or Placopecten, even in shell 01/01/1988 31/12/2500 -030722 01/01/2017 31/12/2500 LIBEN Scallops, incl. queen scallops, of the genera Pecten, Chlamys or Placopecten, frozen, even in shell 01/01/2017 31/12/2500 -03072210 01/01/2017 31/12/2500 LIBEN Coquilles St Jacques "Pecten maximus", frozen, even in shell 01/01/2017 31/12/2500 -03072290 01/01/2017 31/12/2500 LIBEN Scallops, incl. queen scallops, of the genera Pecten, Chlamys or Placopecten, frozen, even in shell (excl. Coquilles St Jacques "Pecten maximus") 01/01/2017 31/12/2500 -030729 01/01/1988 31/12/2500 LIBEN Scallops, incl. queen scallops, of the genera Pecten, Chlamys or Placopecten, smoked, dried, salted or in brine, even in shell 01/01/1988 31/12/2500 -03072900 01/01/2017 31/12/2500 LIBEN Scallops, incl. queen scallops, of the genera Pecten, Chlamys or Placopecten, smoked, dried, salted or in brine, even in shell 01/01/2017 31/12/2500 -03072905 01/01/2012 31/12/2016 LIBEN Scallops, incl. queen scallops, of the genera Pecten, Chlamys or Placopecten, smoked, even in shell, even cooked but not otherwise prepared 01/01/2012 31/12/2016 -03072910 01/01/1988 31/12/2016 LIBEN Coquilles St Jacques "Pecten maximus", frozen, even in shell (excl. smoked) 01/01/1988 31/12/2016 -03072990 01/01/1988 31/12/2016 LIBEN Scallops, incl. queen scallops, of the genera Pecten, Chlamys or Placopecten, frozen, dried, salted or in brine, even in shell (excl. smoked, and frozen Coquilles St Jacques "Pecten maximus") 01/01/1988 31/12/2016 -030731 01/01/1988 31/12/2500 LIBEN Live, fresh or chilled, not smoked, mussels "Mytilus spp., Perna spp.", with or without shell 01/01/1988 31/12/2500 -03073110 01/01/1988 31/12/2500 LIBEN Mussels "Mytilus spp.", live, fresh or chilled, with or without shell 01/01/1988 31/12/2500 -03073190 01/01/1988 31/12/2500 LIBEN Mussels "Perna spp.", live, fresh or chilled, with or without shell 01/01/1988 31/12/2500 -030732 01/01/2017 31/12/2500 LIBEN Mussels "Mytilus spp., Perna spp.", frozen, even in shell 01/01/2017 31/12/2500 -03073210 01/01/2017 31/12/2500 LIBEN Mussels "Mytilus spp.", frozen, even in shell 01/01/2017 31/12/2500 -03073290 01/01/2017 31/12/2500 LIBEN Mussels "Perna spp.", frozen, even in shell 01/01/2017 31/12/2500 -030739 01/01/1988 31/12/2500 LIBEN Mussels "Mytilus spp., Perna spp.", smoked, dried, salted or in brine, even in shell 01/01/1988 31/12/2500 -03073905 01/01/2012 31/12/2016 LIBEN Mussels "Mytilus spp., Perna spp.", smoked, even in shell, even cooked but not otherwise prepared 01/01/2012 31/12/2016 -03073910 01/01/1988 31/12/2016 LIBEN Mussels "Mytilus spp.", frozen, dried, salted or in brine, even in shell (excl. smoked) 01/01/1988 31/12/2016 -03073920 01/01/2017 31/12/2500 LIBEN Mussels "Mytilus spp.", smoked, dried, salted or in brine, even in shell 01/01/2017 31/12/2500 -03073980 01/01/2017 31/12/2500 LIBEN Mussels "Perna spp.", smoked, dried, salted or in brine, even in shell 01/01/2017 31/12/2500 -03073990 01/01/1988 31/12/2016 LIBEN Mussels "Perna spp.", frozen, dried, salted or in brine, even in shell (excl. smoked) 01/01/1988 31/12/2016 -030741 01/01/1988 31/12/2016 LIBEN Live, fresh or chilled, not smoked, cuttle fish "Sepia officinalis, Rossia macrosoma, Sepiola spp." and squid "Ommastrephes spp., Loligo spp., Nototodarus spp., Sepioteuthis spp.", with or without shell 01/01/1988 31/12/2016 -03074110 01/01/1988 31/12/2016 LIBEN Cuttle fish "Sepia officinalis, Rossia macrosoma, Sepiola spp.", live, fresh or chilled, with or without shell 01/01/1988 31/12/2016 -03074191 01/01/1988 31/12/2013 LIBEN Squid "Loligo spp., Ommastrephes sagittatus", live, fresh or chilled, with or without shell 01/01/1988 31/12/2013 -03074192 01/01/2014 31/12/2016 LIBEN Squid "Loligo spp." live, fresh or chilled, with or without shell 01/01/2014 31/12/2016 -03074199 01/01/1988 31/12/2016 LIBEN Squid "Ommastrephes spp.", "Nototodarus spp. and Sepioteuthis spp.", live, fresh or chilled, with or without shell 01/01/1988 31/12/2016 -030742 01/01/2017 31/12/2500 LIBEN Cuttle fish and squid, live, fresh or chilled, with or without shell 01/01/2017 31/12/2500 -03074210 01/01/2017 31/12/2500 LIBEN Cuttle fish "Sepia officinalis, Rossia macrosoma, Sepiola spp.", live, fresh or chilled, with or without shell 01/01/2017 31/12/2500 -03074220 01/01/2017 31/12/2500 LIBEN Squid "Loligo spp.", live, fresh or chilled 01/01/2017 31/12/2500 -03074230 01/01/2017 31/12/2500 LIBEN Squid "Ommastrephes spp., Nototodarus spp., Sepioteuthis spp.", live, fresh or chilled 01/01/2017 31/12/2500 -03074240 01/01/2017 31/12/2500 LIBEN European flying squid "Todarodes sagittatus", live, fresh or chilled 01/01/2017 31/12/2500 -03074290 01/01/2017 31/12/2500 LIBEN Cuttle fish and squid, live, fresh or chilled, with or without shell (excl. "Sepia officinalis, Rossia macrosoma, Sepiola spp., Loligo spp., Ommastrephes spp., Nototodarus spp., Sepioteuthis spp., Todarodes sagittatus") 01/01/2017 31/12/2500 -030743 01/01/2017 31/12/2500 LIBEN Cuttle fish and squid, frozen, with or without shell 01/01/2017 31/12/2500 -03074321 01/01/2017 31/12/2500 LIBEN Lesser cuttle fish "Sepiola rondeleti", frozen, with or without shell 01/01/2017 31/12/2500 -03074325 01/01/2017 31/12/2500 LIBEN Cuttle fish "Sepiola spp.", frozen, with or without shell (excl. "Sepiola rondeleti") 01/01/2017 31/12/2500 -03074329 01/01/2017 31/12/2500 LIBEN Cuttle fish "Sepia officinalis, Rossia macrosoma", frozen, with or without shell 01/01/2017 31/12/2500 -03074331 01/01/2017 31/12/2500 LIBEN Squid "Loligo vulgaris", frozen 01/01/2017 31/12/2500 -03074333 01/01/2017 31/12/2500 LIBEN Squid "Loligo pealei", frozen 01/01/2017 31/12/2500 -03074335 01/01/2017 31/12/2500 LIBEN Squid "Loligo gahi", frozen 01/01/2017 31/12/2500 -03074338 01/01/2017 31/12/2500 LIBEN Squid "Loligo spp.", frozen (excl. "Loligo vulgaris, pealei and gahi") 01/01/2017 31/12/2500 -03074391 01/01/2017 31/12/2500 LIBEN Squid "Ommastrephes spp., Nototodarus spp., Sepioteuthis spp.", frozen (excl. "Ommastrephes sagittatus") 01/01/2017 31/12/2500 -03074392 01/01/2017 31/12/2500 LIBEN Squid "Illex spp.", frozen 01/01/2017 31/12/2500 -03074395 01/01/2017 31/12/2500 LIBEN European flying squid "Todarodes sagittatus, Ommastrephes sagittatus", frozen 01/01/2017 31/12/2500 -03074399 01/01/2017 31/12/2500 LIBEN Cuttle fish and squid, frozen, with or without shell (excl. "Sepia officinalis, Rossia macrosoma, Sepiola spp., Loligo spp., Ommastrephes spp., Nototodarus spp., Sepioteuthis spp., Illex spp., Todarodes sagittatus") 01/01/2017 31/12/2500 -030749 01/01/1988 31/12/2500 LIBEN Cuttle fish and squid, smoked, dried, salted or in brine, with or without shell 01/01/1988 31/12/2500 -03074901 01/01/1995 31/12/2011 LIBEN Frozen lesser cuttle fish "Sepiola rondeleti", with or without shell 01/01/1995 31/12/2011 -03074905 01/01/2012 31/12/2016 LIBEN Cuttle fish "Sepia officinalis, Rossia macrosoma, Sepiola spp." and squid "Ommastrephes spp., Loligo spp., Nototodarus spp., Sepioteuthis spp.", smoked, even cooked but not otherwise prepared 01/01/2012 31/12/2016 -03074909 01/01/2012 31/12/2016 LIBEN Frozen lesser cuttle fish "Sepiola rondeleti" (excl. smoked) 01/01/2012 31/12/2016 -03074911 01/01/1988 31/12/2016 LIBEN Frozen cuttle fish "Sepiola", with or without shell (excl. "Sepiola rondeleti") 01/01/1988 31/12/2016 -03074918 01/01/1995 31/12/2016 LIBEN Frozen cuttle fish "Sepia officinalis" and "Rossia macrosoma", with or without shell 01/01/1995 31/12/2016 -03074919 01/01/1988 31/12/1994 LIBEN Frozen cuttlefish 'sepia officinalis, rossia macrosoma, sepiola rondeleti', with or without shell 01/01/1988 31/12/1994 -03074920 01/01/2017 31/12/2500 LIBEN Cuttle fish "Sepia officinalis, Rossia macrosoma, Sepiola spp.", smoked, dried, salted or in brine, with or without shell 01/01/2017 31/12/2500 -03074931 01/01/1988 31/12/2016 LIBEN Frozen squid "Loligo vulgaris", with or without shell 01/01/1988 31/12/2016 -03074933 01/01/1988 31/12/2016 LIBEN Frozen squid "Loligo pealei", with or without shell 01/01/1988 31/12/2016 -03074935 01/01/1990 31/12/2016 LIBEN Squid "loligo patagonica", frozen 01/01/1990 31/12/2016 -03074938 01/01/1990 31/12/2016 LIBEN Squid "loligo spp.", frozen (excl. loligo vulgaris, pealei and patagonica) 01/01/1990 31/12/2016 -03074939 01/01/1988 31/12/1989 LIBEN Frozen squid 'loligo spp.', with or without shell (excl. 'loligo vulgaris' and 'pealei') 01/01/1988 31/12/1989 -03074940 01/01/2017 31/12/2500 LIBEN Squid "Loligo spp.", smoked, dried, salted or in brine 01/01/2017 31/12/2500 -03074950 01/01/2017 31/12/2500 LIBEN Squid "Ommastrephes spp., Nototodarus spp., Sepioteuthis spp.", smoked, dried, salted or in brine (excl. "Ommastrephes sagittatus") 01/01/2017 31/12/2500 -03074951 01/01/1988 31/12/2013 LIBEN Frozen squid "Ommastrephes sagittatus", with or without shell 01/01/1988 31/12/2013 -03074959 01/01/1988 31/12/2016 LIBEN Frozen squid "Ommastrephes spp.", "Nototodarus spp." and "Sepioteuthis spp.", with or without shell 01/01/1988 31/12/2016 -03074960 01/01/2017 31/12/2500 LIBEN European flying squid "Todarodes sagittatus, Ommastrephes sagittatus", smoked, dried, salted or in brine 01/01/2017 31/12/2500 -03074971 01/01/1988 31/12/2016 LIBEN Cuttle fish "Sepia officinalis, Rossia macrosoma, Sepiola spp.", dried, salted or in brine, with or without shell 01/01/1988 31/12/2016 -03074980 01/01/2017 31/12/2500 LIBEN Cuttle fish and squid, smoked, dried, salted or in brine, with or without shell (excl. "Sepia officinalis, Rossia macrosoma, Sepiola spp., Loligo spp., Ommastrephes spp., Nototodarus spp., Sepioteuthis spp., Todarodes sagittatus") 01/01/2017 31/12/2500 -03074991 01/01/1988 31/12/2013 LIBEN Squid "Loligo spp., Ommastrephes sagittatus", dried, salted or in brine, with or without shell 01/01/1988 31/12/2013 -03074992 01/01/2014 31/12/2016 LIBEN Squid "Loligo spp.", dried, salted or in brine, with or without shell 01/01/2014 31/12/2016 -03074999 01/01/1988 31/12/2016 LIBEN Squid "Ommastrephes spp.", "Nototodarus spp.", "Sepioteuthis spp.", dried, salted or in brine, with or without shell 01/01/1988 31/12/2016 -030751 01/01/1988 31/12/2500 LIBEN Octopus "Octopus spp.", live, fresh or chilled 01/01/1988 31/12/2500 -03075100 01/01/1988 31/12/2500 LIBEN Octopus "Octopus spp.", live, fresh or chilled 01/01/1988 31/12/2500 -030752 01/01/2017 31/12/2500 LIBEN Octopus "Octopus spp.", frozen 01/01/2017 31/12/2500 -03075200 01/01/2017 31/12/2500 LIBEN Octopus "Octopus spp.", frozen 01/01/2017 31/12/2500 -030759 01/01/1988 31/12/2500 LIBEN Octopus "Octopus spp.", smoked, dried, salted or in brine 01/01/1988 31/12/2500 -03075900 01/01/2017 31/12/2500 LIBEN Octopus "Octopus spp.", smoked, dried, salted or in brine 01/01/2017 31/12/2500 -03075905 01/01/2012 31/12/2016 LIBEN Octopus "Octopus spp.", smoked, even cooked but not otherwise prepared 01/01/2012 31/12/2016 -03075910 01/01/1988 31/12/2016 LIBEN Octopus "Octopus spp.", frozen (excl. smoked) 01/01/1988 31/12/2016 -03075990 01/01/1988 31/12/2016 LIBEN Octopus "Octopus spp.", dried, salted or in brine (excl. smoked) 01/01/1988 31/12/2016 -030760 01/01/1988 31/12/2500 LIBEN Snails, live, fresh, chilled, frozen, salted, dried or in brine, even smoked, with or without shell (excl. sea snails) 01/01/1988 31/12/2500 -03076000 01/01/1988 31/12/2011 LIBEN Snails, live, fresh, chilled, frozen, salted, dried or in brine, with or without shell (excl. sea snails) 01/01/1988 31/12/2011 -03076000 01/01/2017 31/12/2500 LIBEN Snails, live, fresh, chilled, frozen, salted, dried or in brine, even smoked, with or without shell (excl. sea snails) 01/01/2017 31/12/2500 -03076010 01/01/2012 31/12/2016 LIBEN Snails, smoked, even in shell, even cooked but not otherwise prepared (excl. sea snails) 01/01/2012 31/12/2016 -03076090 01/01/2012 31/12/2016 LIBEN Snails, live, fresh, chilled, frozen, salted, dried or in brine, even in shell (excl. smoked and sea snails) 01/01/2012 31/12/2016 -030771 01/01/2012 31/12/2500 LIBEN Live, fresh or chilled, even in shell, clams, cockles and ark shells "families Arcidae, Arcticidae, Cardiidae, Donacidae, Hiatellidae, Mactridae, Mesodesmatidae, Myidae, Semelidae, Solecurtidae, Solenidae, Tridacnidae and Veneridae" 01/01/2012 31/12/2500 -03077100 01/01/2012 31/12/2500 LIBEN Live, fresh or chilled, even in shell, clams, cockles and ark shells "families Arcidae, Arcticidae, Cardiidae, Donacidae, Hiatellidae, Mactridae, Mesodesmatidae, Myidae, Semelidae, Solecurtidae, Solenidae, Tridacnidae and Veneridae" 01/01/2012 31/12/2500 -030772 01/01/2017 31/12/2500 LIBEN Frozen, even in shell, clams, cockles and ark shells "families Arcidae, Arcticidae, Cardiidae, Donacidae, Hiatellidae, Mactridae, Mesodesmatidae, Myidae, Semelidae, Solecurtidae, Solenidae, Tridacnidae and Veneridae" 01/01/2017 31/12/2500 -03077210 01/01/2017 31/12/2500 LIBEN Striped venus or other "Veneridae", even in shell, frozen 01/01/2017 31/12/2500 -03077290 01/01/2017 31/12/2500 LIBEN Frozen, even in shell, clams, cockles and ark shells "families Arcidae, Arcticidae, Cardiidae, Donacidae, Hiatellidae, Mactridae, Mesodesmatidae, Myidae, Semelidae, Solecurtidae, Solenidae, Tridacnidae" 01/01/2017 31/12/2500 -030779 01/01/2012 31/12/2500 LIBEN Smoked, dried, salted or in brine, even in shell, clams, cockles and ark shells "families Arcidae, Arcticidae, Cardiidae, Donacidae, Hiatellidae, Mactridae, Mesodesmatidae, Myidae, Semelidae, Solecurtidae, Solenidae, Tridacnidae and Veneridae" 01/01/2012 31/12/2500 -03077900 01/01/2017 31/12/2500 LIBEN Smoked, dried, salted or in brine, even in shell, clams, cockles and ark shells "families Arcidae, Arcticidae, Cardiidae, Donacidae, Hiatellidae, Mactridae, Mesodesmatidae, Myidae, Semelidae, Solecurtidae, Solenidae, Tridacnidae and Veneridae" 01/01/2017 31/12/2500 -03077910 01/01/2012 31/12/2016 LIBEN Clams, cockles and ark shells "families Arcidae, Arcticidae, Cardiidae, Donacidae, Hiatellidae, Mactridae, Mesodesmatidae, Myidae, Semelidae, Solecurtidae, Solenidae, Tridacnidae and Veneridae", smoked, even in shell, even cooked but not otherwise prepared 01/01/2012 31/12/2016 -03077930 01/01/2013 31/12/2016 LIBEN Striped venus or other "Veneridae", even in shell, frozen (excl. smoked) 01/01/2013 31/12/2016 -03077990 01/01/2012 31/12/2016 LIBEN Frozen, dried, salted or in brine, even in shell, clams, cockles and ark shells "families Arcidae, Arcticidae, Cardiidae, Donacidae, Hiatellidae, Mactridae, Mesodesmatidae, Myidae, Semelidae, Solecurtidae, Solenidae, Tridacnidae and Veneridae" (excl. frozen Veneridae, and smoked) 01/01/2012 31/12/2016 -030781 01/01/2012 31/12/2500 LIBEN Live, fresh or chilled, even in shell, abalone "Haliotis spp." 01/01/2012 31/12/2500 -03078100 01/01/2012 31/12/2500 LIBEN Live, fresh or chilled, even in shell, abalone "Haliotis spp." 01/01/2012 31/12/2500 -030782 01/01/2017 31/12/2500 LIBEN Live, fresh or chilled, even in shell, stromboid conchs "Strombus spp." 01/01/2017 31/12/2500 -03078200 01/01/2017 31/12/2500 LIBEN Live, fresh or chilled, even in shell, stromboid conchs "Strombus spp." 01/01/2017 31/12/2500 -030783 01/01/2017 31/12/2500 LIBEN Frozen, even in shell, abalone "Haliotis spp." 01/01/2017 31/12/2500 -03078300 01/01/2017 31/12/2500 LIBEN Frozen, even in shell, abalone "Haliotis spp." 01/01/2017 31/12/2500 -030784 01/01/2017 31/12/2500 LIBEN Frozen, even in shell, stromboid conchs "Strombus spp." 01/01/2017 31/12/2500 -03078400 01/01/2017 31/12/2500 LIBEN Frozen, even in shell, stromboid conchs "Strombus spp." 01/01/2017 31/12/2500 -030787 01/01/2017 31/12/2500 LIBEN Smoked, dried, salted or in brine, even in shell, abalone "Haliotis spp." 01/01/2017 31/12/2500 -03078700 01/01/2017 31/12/2500 LIBEN Smoked, dried, salted or in brine, even in shell, abalone "Haliotis spp." 01/01/2017 31/12/2500 -030788 01/01/2017 31/12/2500 LIBEN Smoked, dried, salted or in brine, even in shell, stromboid conchs "Strombus spp." 01/01/2017 31/12/2500 -03078800 01/01/2017 31/12/2500 LIBEN Smoked, dried, salted or in brine, even in shell, stromboid conchs "Strombus spp." 01/01/2017 31/12/2500 -030789 01/01/2012 31/12/2016 LIBEN Smoked, frozen, dried, salted or in brine, abalone "Haliotis spp.", even in shell 01/01/2012 31/12/2016 -03078910 01/01/2012 31/12/2016 LIBEN Abalone "Haliotis spp.", smoked, even in shell, even cooked but not otherwise prepared 01/01/2012 31/12/2016 -03078990 01/01/2012 31/12/2016 LIBEN Abalone "Haliotis spp.", frozen, dried, salted or in brine, even in shell (excl. smoked) 01/01/2012 31/12/2016 -030791 01/01/1988 31/12/2500 LIBEN Live, fresh or chilled molluscs, even in shell (excl. oysters, scallops of the genera Pecten, Chlamys or Placopecten, mussels "Mytilus spp., Perna spp.", cuttle fish and squid, octopus "Octopus spp.", snails other than sea snails, clams, cockles and ark shells, abalone and stromboid conchs); fresh or chilled flours, meals and pellets of molluscs, fit for human consumption 01/01/1988 31/12/2500 -03079100 01/01/1988 31/12/2011 LIBEN Live, fresh or chilled molluscs, fit for human consumption, whether in shell or not, incl. sea urchins, sea cucumbers and other aquatic invertebrates (other than crustaceans); fresh or chilled flours, meals and pellets of aquatic invertebrates (other than crustaceans), fit for human consumption (excl. oysters, queen scallops, queen scallops of the genera Pecten, Chlamys or Placopecten, mussels "Mytilus spp., Perna spp.", cuttle fish "Sepia officinalis, Rossia macrosoma, Sepiola spp.", squid "Ommastrephes spp., Loligo spp., Nototodarus spp., Sepioteuthis spp.", octopus "Octopus spp." and snails other than sea snails) 01/01/1988 31/12/2011 -03079100 01/01/2012 31/12/2013 LIBEN Live, fresh or chilled molluscs, fit for human consumption, even in shell (excl. oysters, scallops of the genera Pecten, Chlamys or Placopecten, mussels "Mytilus spp., Perna spp.", cuttle fish "Sepia officinalis, Rossia macrosoma, Sepiola spp.", squid "Om 01/01/2012 31/12/2013 -03079100 01/01/2017 31/12/2500 LIBEN Live, fresh or chilled molluscs, even in shell (excl. oysters, scallops of the genera Pecten, Chlamys or Placopecten, mussels "Mytilus spp., Perna spp.", cuttle fish and squid, octopus "Octopus spp.", snails other than sea snails, clams, cockles and ark shells, abalone and stromboid conchs); fresh or chilled flours, meals and pellets of molluscs, fit for human consumption 01/01/2017 31/12/2500 -03079110 01/01/2014 31/12/2016 LIBEN Live, fresh or chilled, European flying squid "Todarodes sagittatus" 01/01/2014 31/12/2016 -03079190 01/01/2014 31/12/2016 LIBEN Live, fresh or chilled molluscs, fit for human consumption, even in shell (excl. oysters, scallops of the genera Pecten, Chlamys or Placopecten, mussels "Mytilus spp., Perna spp.", cuttle fish "Sepia officinalis, Rossia macrosoma, Sepiola spp.", squid "Ommastrephes spp., Loligo spp., Nototodarus spp., Sepioteuthis spp., Todarodes sagittatus", octopus "Octopus spp.", snails other than sea snails, clams, cockles and ark shells and abalone); fresh or chilled flours, meals and pellets of molluscs, fit for human consumption 01/01/2014 31/12/2016 -030792 01/01/2017 31/12/2500 LIBEN Molluscs, even in shell, frozen (excl. oysters, scallops of the genera Pecten, Chlamys or Placopecten, mussels "Mytilus spp., Perna spp.", cuttle fish and squid, octopus "Octopus spp.", snails other than sea snails, clams, cockles and ark shells, abalone and stromboid conchs); flours, meals and pellets of molluscs, frozen, fit for human consumption 01/01/2017 31/12/2500 -03079200 01/01/2017 31/12/2500 LIBEN Molluscs, even in shell, frozen (excl. oysters, scallops of the genera Pecten, Chlamys or Placopecten, mussels "Mytilus spp., Perna spp.", cuttle fish and squid, octopus "Octopus spp.", snails other than sea snails, clams, cockles and ark shells, abalone and stromboid conchs); flours, meals and pellets of molluscs, frozen, fit for human consumption 01/01/2017 31/12/2500 -030799 01/01/1988 31/12/2500 LIBEN Molluscs, even in shell, smoked, dried, salted or in brine (excl. oysters, scallops of the genera Pecten, Chlamys or Placopecten, mussels "Mytilus spp., Perna spp.", cuttle fish and squid, octopus "Octopus spp.", snails other than sea snails, clams, cockles and ark shells, abalone and stromboid conchs); flours, meals and pellets of molluscs, smoked, dried, salted or in brine, fit for human consumption 01/01/1988 31/12/2500 -03079900 01/01/2017 31/12/2500 LIBEN Molluscs, even in shell, smoked, dried, salted or in brine (excl. oysters, scallops of the genera Pecten, Chlamys or Placopecten, mussels "Mytilus spp., Perna spp.", cuttle fish and squid, octopus "Octopus spp.", snails other than sea snails, clams, cockles and ark shells, abalone and stromboid conchs); flours, meals and pellets of molluscs, smoked, dried, salted or in brine, fit for human consumption 01/01/2017 31/12/2500 -03079910 01/01/2012 31/12/2016 LIBEN Molluscs, fit for human consumption, even in shell, smoked, even cooked but not otherwise prepared (excl. oysters, scallops of the genera Pecten, Chlamys or Placopecten, mussels "Mytilus spp., Perna spp.", cuttle fish "Sepia officinalis, Rossia macrosoma, Sepiola spp.", squid "Ommastrephes spp., Loligo spp., Nototodarus spp., Sepioteuthis spp.", octopus "Octopus spp.", snails other than sea snails, clams, cockles and ark shells and abalone) 01/01/2012 31/12/2016 -03079911 01/01/1988 31/12/2016 LIBEN "Illex spp.", even in shell, frozen (excl. smoked) 01/01/1988 31/12/2016 -03079913 01/01/1988 31/12/2012 LIBEN Striped venus and other "Veneridae", even in shell, frozen (excl. smoked) 01/01/1988 31/12/2012 -03079914 01/01/2014 31/12/2016 LIBEN European flying squid "Todarodes sagittatus", frozen (excl. smoked) 01/01/2014 31/12/2016 -03079915 01/01/1995 31/12/2011 LIBEN Frozen jellyfish "Rhopilema spp." 01/01/1995 31/12/2011 -03079917 01/01/2012 31/12/2016 LIBEN Molluscs, fit for human consumption, even in shell, frozen (excl. smoked and oysters, scallops of the genera Pecten, Chlamys or Placopecten, mussels "Mytilus spp., Perna spp.", cuttle fish "Sepia officinalis, Rossia macrosoma, Sepiola spp.", squid "Ommastrephes spp., Loligo spp., Nototodarus spp., Sepioteuthis spp., Todarodes sagittatus", octopus "Octopus spp.", snails other than sea snails, clams, cockles and ark shells, abalone, Illex spp. and Veneridae); frozen flours, meals and pellets of molluscs, fit for human consumption 01/01/2012 31/12/2016 -03079918 01/01/1995 31/12/2011 LIBEN Frozen molluscs, fit for human consumption, whether in shell or not, incl. sea urchins, sea cucumbers and other aquatic invertebrates (other than crustaceans); frozen flours, meals and pellets of aquatic invertebrates (other than crustaceans), fit for human consumption (excl. oysters, queen scallops, queen scallops of the genera Pecten, Chlamys or Placopecten, mussels "Mytilus spp., Perna spp.", cuttle fish "Sepia officinalis, Rossia macrosoma, Sepiola spp.", squid "Ommastrephes spp., Loligo spp., Nototodarus spp., Sepioteuthis spp.", octopus "Octopus spp." and snails other than sea snails, Illex spp., clams and other molluscs of the family Veneridae and jellyfish "Rhopilema spp.") 01/01/1995 31/12/2011 -03079919 01/01/1988 31/12/1994 LIBEN Frozen molluscs, fit for human consumption, with or without shell, n.e.s., including sea urchins, sea cucumbers and other aquatic invertebrates other than crustaceans; frozen flours, meals and pellets of aquatic invertebrates other than crustaceans, fit for human consumption 01/01/1988 31/12/1994 -03079920 01/01/2014 31/12/2016 LIBEN European flying squid "Todarodes sagittatus", dried, salted or in brine (excl. smoked) 01/01/2014 31/12/2016 -03079980 01/01/2012 31/12/2016 LIBEN Molluscs, fit for human consumption, even in shell, dried, salted or in brine (excl. smoked and oysters, scallops of the genera Pecten, Chlamys or Placopecten, mussels "Mytilus spp., Perna spp.", cuttle fish "Sepia officinalis, Rossia macrosoma, Sepiola spp.", squid "Ommastrephes spp., Loligo spp., Nototodarus spp., Sepioteuthis spp., Todarodes sagittatus", octopus "Octopus spp.", snails other than sea snails, clams, cockles and ark shells and abalone); dried, salted or in brine, flours, meals and pellets of molluscs, fit for human consumption 01/01/2012 31/12/2016 -03079990 01/01/1988 31/12/2011 LIBEN Molluscs, fit for human consumption, whether in shell or not, dried, salted or in brine, incl. sea urchins, sea cucumbers and other aquatic invertebrates (other than crustaceans); flours, meals and pellets of aquatic invertebrates (other than crustaceans), fit for human consumption (excl. fresh, chilled or frozen, oysters, queen scallops, queen scallops of the genera Pecten, Chlamys or Placopecten, mussels "Mytilus spp., Perna spp.", cuttle fish "Sepia officinalis, Rossia macrosoma, Sepiola spp.", squid "Ommastrephes spp., Loligo spp., Nototodarus spp., Sepioteuthis spp.", octopus "Octopus spp." and snails other than sea snails) 01/01/1988 31/12/2011 -0308 01/01/2012 31/12/2500 LIBEN Aquatic invertebrates other than crustaceans and molluscs, live, fresh, chilled, frozen, dried, salted or in brine, even smoked; flours, meals and pellets of aquatic invertebrates other than crustaceans and molluscs, fit for human consumption 01/01/2012 31/12/2500 -030811 01/01/2012 31/12/2500 LIBEN Live, fresh or chilled, sea cucumbers "Stichopus japonicus, Holothurioidea" 01/01/2012 31/12/2500 -03081100 01/01/2012 31/12/2500 LIBEN Live, fresh or chilled, sea cucumbers "Stichopus japonicus, Holothurioidea" 01/01/2012 31/12/2500 -030812 01/01/2017 31/12/2500 LIBEN Frozen sea cucumbers "Stichopus japonicus, Holothuroidea" 01/01/2017 31/12/2500 -03081200 01/01/2017 31/12/2500 LIBEN Frozen sea cucumbers "Stichopus japonicus, Holothuroidea" 01/01/2017 31/12/2500 -030819 01/01/2012 31/12/2500 LIBEN Smoked, dried, salted or in brine, sea cucumbers "Stichopus japonicus, Holothuroidea" 01/01/2012 31/12/2500 -03081900 01/01/2017 31/12/2500 LIBEN Smoked, dried, salted or in brine, sea cucumbers "Stichopus japonicus, Holothuroidea" 01/01/2017 31/12/2500 -03081910 01/01/2012 31/12/2016 LIBEN Sea cucumbers "Stichopus japonicus, Holothurioidea", smoked, even cooked but not otherwise prepared 01/01/2012 31/12/2016 -03081930 01/01/2012 31/12/2016 LIBEN Sea cucumbers "Stichopus japonicus, Holothurioidea", frozen (excl. smoked) 01/01/2012 31/12/2016 -03081990 01/01/2012 31/12/2016 LIBEN Sea cucumbers "Stichopus japonicus, Holothurioidea", dried, salted or in brine (excl. smoked) 01/01/2012 31/12/2016 -030821 01/01/2012 31/12/2500 LIBEN Live, fresh or chilled, sea urchins "Strongylocentrotus spp., Paracentrotus lividus, Loxechinus albus, Echichinus esculentus" 01/01/2012 31/12/2500 -03082100 01/01/2012 31/12/2500 LIBEN Live, fresh or chilled, sea urchins "Strongylocentrotus spp., Paracentrotus lividus, Loxechinus albus, Echichinus esculentus" 01/01/2012 31/12/2500 -030822 01/01/2017 31/12/2500 LIBEN Frozen sea urchins "Strongylocentrotus spp., Paracentrotus lividus, Loxechinus albus, Echinus esculentus" 01/01/2017 31/12/2500 -03082200 01/01/2017 31/12/2500 LIBEN Frozen sea urchins "Strongylocentrotus spp., Paracentrotus lividus, Loxechinus albus, Echinus esculentus" 01/01/2017 31/12/2500 -030829 01/01/2012 31/12/2500 LIBEN Smoked, dried, salted or in brine, sea urchins "Strongylocentrotus spp., Paracentrotus lividus, Loxechinus albus, Echinus esculentus" 01/01/2012 31/12/2500 -03082900 01/01/2017 31/12/2500 LIBEN Smoked, dried, salted or in brine, sea urchins "Strongylocentrotus spp., Paracentrotus lividus, Loxechinus albus, Echinus esculentus" 01/01/2017 31/12/2500 -03082910 01/01/2012 31/12/2016 LIBEN Smoked sea urchins "Strongylocentrotus spp., Paracentrotus lividus, Loxechinus albus, Echichinus esculentus", even cooked but not otherwise prepared 01/01/2012 31/12/2016 -03082930 01/01/2012 31/12/2016 LIBEN Frozen sea urchins "Strongylocentrotus spp., Paracentrotus lividus, Loxechinus albus, Echichinus esculentus" (excl. smoked) 01/01/2012 31/12/2016 -03082990 01/01/2012 31/12/2016 LIBEN Dried, salted or in brine, sea urchins "Strongylocentrotus spp., Paracentrotus lividus, Loxechinus albus, Echichinus esculentus" (excl. smoked) 01/01/2012 31/12/2016 -030830 01/01/2012 31/12/2500 LIBEN Live, fresh, chilled, frozen, dried, salted or in brine, even smoked, jellyfish "Rhopilema spp." 01/01/2012 31/12/2500 -03083010 01/01/2012 31/12/2018 LIBEN Live, fresh or chilled, jellyfish "Rhopilema spp." 01/01/2012 31/12/2018 -03083030 01/01/2012 31/12/2016 LIBEN Smoked jellyfish "Rhopilema spp.", even cooked but not otherwise prepared 01/01/2012 31/12/2016 -03083050 01/01/2012 31/12/2500 LIBEN Frozen jellyfish "Rhopilema spp." (excl. smoked) 01/01/2012 31/12/2500 -03083080 01/01/2019 31/12/2500 LIBEN Live, fresh, chilled, smoked, dried, salted or in brine, jellyfish "Rhopilema spp." 01/01/2019 31/12/2500 -03083090 01/01/2012 31/12/2016 LIBEN Dried, salted or in brine, jellyfish "Rhopilema spp." (excl. smoked) 01/01/2012 31/12/2016 -03083090 01/01/2017 31/12/2018 LIBEN Smoked, dried, salted or in brine, jellyfish "Rhopilema spp." 01/01/2017 31/12/2018 -030890 01/01/2012 31/12/2500 LIBEN Live, fresh, chilled, frozen, dried, salted or in brine, even smoked, aquatic invertebrates (excl. crustaceans, molluscs, sea cucumbers, sea urchins and jellyfish); all flours, meals and pellets of aquatic invertebrates other than crustaceans and molluscs, fit for human consumption 01/01/2012 31/12/2500 -03089010 01/01/2012 31/12/2500 LIBEN Live, fresh or chilled, aquatic invertebrates (excl. crustaceans, molluscs, sea cucumbers, sea urchins and jellyfish); all fresh or chilled flours, meals and pellets of aquatic invertebrates other than crustaceans and molluscs, fit for human consumption 01/01/2012 31/12/2500 -03089030 01/01/2012 31/12/2016 LIBEN Smoked aquatic invertebrates, even cooked but not otherwise prepared (excl. crustaceans, molluscs, sea cucumbers, sea urchins and jellyfish) 01/01/2012 31/12/2016 -03089050 01/01/2012 31/12/2500 LIBEN Frozen aquatic invertebrates (excl. crustaceans, molluscs, sea cucumbers, sea urchins and jellyfish); all frozen flours, meals and pellets of aquatic invertebrates other than crustaceans and molluscs, fit for human consumption 01/01/2012 31/12/2500 -03089090 01/01/2012 31/12/2016 LIBEN Dried, salted or in brine, aquatic invertebrates (excl. smoked and crustaceans, molluscs, sea cucumbers, sea urchins and jellyfish); dried, salted or in brine, flours, meals and pellets of aquatic invertebrates other than crustaceans and molluscs, fit for human consumption 01/01/2012 31/12/2016 -03089090 01/01/2017 31/12/2500 LIBEN Smoked, dried, salted or in brine, aquatic invertebrates (excl. crustaceans, molluscs, sea cucumbers, sea urchins and jellyfish); smoked, dried, salted or in brine, flours, meals and pellets of aquatic invertebrates other than crustaceans and molluscs, fit for human consumption 01/01/2017 31/12/2500 -03CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 03 01/01/2002 31/12/2500 -03CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 03 01/01/2002 31/12/2500 -03CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 03 01/01/2002 31/12/2500 -03MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -03MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -03MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -03SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 03 01/01/1988 31/12/2500 -03SSS0 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 03 and SITC section 0 01/01/1997 31/12/2500 -03SSS012 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 03 and SITC group 012 01/01/1997 31/12/2500 -03SSS034 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 03 and SITC group 034 01/01/1997 31/12/2500 -03SSS035 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 03 and SITC group 035 01/01/1997 31/12/2500 -03SSS036 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 03 and SITC group 036 01/01/1997 31/12/2500 -03SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 03 and SITC section 9 01/01/1988 31/12/1996 -03SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 03 and SITC section 9 01/01/1997 31/12/2500 -03SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 03 and SITC group 999 01/01/1988 31/12/1996 -03SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 03 and SITC group 999 01/01/1997 31/12/2500 -04 01/01/1988 31/12/2500 LIBEN DAIRY PRODUCE; BIRDS' EGGS; NATURAL HONEY; EDIBLE PRODUCTS OF ANIMAL ORIGIN, NOT ELSEWHERE SPECIFIED OR INCLUDED 01/01/1988 31/12/2500 -0401 01/01/1988 31/12/2500 LIBEN Milk and cream, not concentrated nor containing added sugar or other sweetening matter 01/01/1988 31/12/2500 -040110 01/01/1988 31/12/2500 LIBEN Milk and cream of a fat content by weight of <= 1%, not concentrated nor containing added sugar or other sweetening matter 01/01/1988 31/12/2500 -04011010 01/01/1988 31/12/2500 LIBEN Milk and cream of a fat content by weight of <= 1%, in immediate packings of <= 2 l, not concentrated nor containing added sugar or other sweetening matter 01/01/1988 31/12/2500 -04011090 01/01/1988 31/12/2500 LIBEN Milk and cream of a fat content by weight of <= 1%, not concentrated nor containing added sugar or other sweetening matter (excl. in immediate packings of <= 2 l) 01/01/1988 31/12/2500 -040120 01/01/1988 31/12/2500 LIBEN Milk and cream of a fat content by weight of > 1% but <= 6%, not concentrated nor containing added sugar or other sweetening matter 01/01/1988 31/12/2500 -04012011 01/01/1988 31/12/2500 LIBEN Milk and cream of a fat content by weight of <= 3% but > 1%, in immediate packings of <= 2 l, not concentrated nor containing added sugar or other sweetening matter 01/01/1988 31/12/2500 -04012019 01/01/1988 31/12/2500 LIBEN Milk and cream of a fat content by weight of <= 3% but > 1%, not concentrated nor containing added sugar or other sweetening matter (excl. in immediate packings of <= 2 l) 01/01/1988 31/12/2500 -04012091 01/01/1988 31/12/2500 LIBEN Milk and cream of a fat content by weight of > 3% but <= 6%, in immediate packings of <= 2 l, not concentrated nor containing added sugar or other sweetening matter 01/01/1988 31/12/2500 -04012099 01/01/1988 31/12/2500 LIBEN Milk and cream of a fat content by weight of > 3% but <= 6%, not concentrated nor containing added sugar or other sweetening matter (excl. in immediate packings of <= 2 l) 01/01/1988 31/12/2500 -040130 01/01/1988 31/12/2011 LIBEN Milk and cream of a fat content by weight of > 6%, not concentrated nor containing added sugar or other sweetening matter 01/01/1988 31/12/2011 -04013011 01/01/1988 31/12/2011 LIBEN Milk and cream of a fat content by weight of <= 21% but > 6%, in immediate packings of <= 2 l, not concentrated nor containing added sugar or other sweetening matter 01/01/1988 31/12/2011 -04013019 01/01/1988 31/12/2011 LIBEN Milk and cream of a fat content by weight of <= 21% but > 6%, not concentrated nor containing added sugar or other sweetening matter (excl. in immediate packings of <= 2 l) 01/01/1988 31/12/2011 -04013031 01/01/1988 31/12/2011 LIBEN Milk and cream of a fat content by weight of > 21% but <= 45%, in immediate packings of <= 2 l, not concentrated nor containing added sugar or other sweetening matter 01/01/1988 31/12/2011 -04013039 01/01/1988 31/12/2011 LIBEN Milk and cream of a fat content by weight of > 21% but <= 45%, not concentrated nor containing added sugar or other sweetening matter (excl. in immediate packings of <= 2 l) 01/01/1988 31/12/2011 -04013091 01/01/1988 31/12/2011 LIBEN Milk and cream of a fat content by weight of > 45%, in immediate packings of <= 2 l, not concentrated nor containing added sugar or other sweetening matter 01/01/1988 31/12/2011 -04013099 01/01/1988 31/12/2011 LIBEN Milk and cream of a fat content by weight of > 45%, not concentrated nor containing added sugar or other sweetening matter (excl. in immediate packings of <= 2 l) 01/01/1988 31/12/2011 -040140 01/01/2012 31/12/2500 LIBEN Milk and cream of a fat content by weight of > 6% but <= 10%, not concentrated nor containing added sugar or other sweetening matter 01/01/2012 31/12/2500 -04014010 01/01/2012 31/12/2500 LIBEN Milk and cream of a fat content by weight of > 6% but <= 10%, in immediate packings of <= 2 l, not concentrated nor containing added sugar or other sweetening matter 01/01/2012 31/12/2500 -04014090 01/01/2012 31/12/2500 LIBEN Milk and cream of a fat content by weight of > 6% but <= 10%, not concentrated nor containing added sugar or other sweetening matter (excl. in immediate packings of <= 2 l) 01/01/2012 31/12/2500 -040150 01/01/2012 31/12/2500 LIBEN Milk and cream of a fat content by weight of > 10%, not concentrated nor containing added sugar or other sweetening matter 01/01/2012 31/12/2500 -04015011 01/01/2012 31/12/2500 LIBEN Milk and cream of a fat content by weight of <= 21% but > 10%, in immediate packings of <= 2 l, not concentrated nor containing added sugar or other sweetening matter 01/01/2012 31/12/2500 -04015019 01/01/2012 31/12/2500 LIBEN Milk and cream of a fat content by weight of <= 21% but > 10%, not concentrated nor containing added sugar or other sweetening matter (excl. in immediate packings of <= 2 l) 01/01/2012 31/12/2500 -04015031 01/01/2012 31/12/2500 LIBEN Milk and cream of a fat content by weight of > 21% but <= 45%, in immediate packings of <= 2 l, not concentrated nor containing added sugar or other sweetening matter 01/01/2012 31/12/2500 -04015039 01/01/2012 31/12/2500 LIBEN Milk and cream of a fat content by weight of > 21% but <= 45%, not concentrated nor containing added sugar or other sweetening matter (excl. in immediate packings of <= 2 l) 01/01/2012 31/12/2500 -04015091 01/01/2012 31/12/2500 LIBEN Milk and cream of a fat content by weight of > 45%, in immediate packings of <= 2 l, not concentrated nor containing added sugar or other sweetening matter 01/01/2012 31/12/2500 -04015099 01/01/2012 31/12/2500 LIBEN Milk and cream of a fat content by weight of > 45%, not concentrated nor containing added sugar or other sweetening matter (excl. in immediate packings of <= 2 l) 01/01/2012 31/12/2500 -0402 01/01/1988 31/12/2500 LIBEN Milk and cream, concentrated or containing added sugar or other sweetening matter 01/01/1988 31/12/2500 -040210 01/01/1988 31/12/2500 LIBEN Milk and cream in solid forms, of a fat content by weight of <= 1,5% 01/01/1988 31/12/2500 -04021011 01/01/1988 31/12/2500 LIBEN Milk and cream in solid forms, of a fat content by weight of <= 1,5%, unsweetened, in immediate packings of <= 2,5 kg 01/01/1988 31/12/2500 -04021019 01/01/1988 31/12/2500 LIBEN Milk and cream in solid forms, of a fat content by weight of <= 1,5%, unsweetened, in immediate packings of > 2,5 kg 01/01/1988 31/12/2500 -04021091 01/01/1988 31/12/2500 LIBEN Milk and cream in solid forms, of a fat content by weight of <= 1,5%, sweetened, in immediate packings of <= 2,5 kg 01/01/1988 31/12/2500 -04021099 01/01/1988 31/12/2500 LIBEN Milk and cream in solid forms, of a fat content by weight of <= 1,5%, sweetened, in immediate packings of > 2,5 kg 01/01/1988 31/12/2500 -040221 01/01/1988 31/12/2500 LIBEN Milk and cream in solid forms, of a fat content by weight of > 1,5%, unsweetened 01/01/1988 31/12/2500 -04022111 01/01/1988 31/12/2500 LIBEN Milk and cream in solid forms, of a fat content by weight of > 1,5% but < 27%, unsweetened, in immediate packings of <= 2,5 kg 01/01/1988 31/12/2500 -04022117 01/01/1988 31/12/2011 LIBEN Milk and cream in solid forms, of a fat content by weight of <= 11% but > 1,5%, unsweetened, in immediate packings of > 2,5 kg or put up otherwise 01/01/1988 31/12/2011 -04022118 01/01/2012 31/12/2500 LIBEN Milk and cream in solid forms, of a fat content by weight of <= 27% but > 1,5%, unsweetened, in immediate packings of > 2,5 kg or put up otherwise 01/01/2012 31/12/2500 -04022119 01/01/1988 31/12/2011 LIBEN Milk and cream in solid forms, of a fat content by weight of > 11% but <= 27%, unsweetened, in immediate packings of > 2,5 kg or put up otherwise 01/01/1988 31/12/2011 -04022191 01/01/1988 31/12/2500 LIBEN Milk and cream in solid forms, of a fat content by weight of > 27%, unsweetened, in immediate packings of <= 2,5 kg 01/01/1988 31/12/2500 -04022199 01/01/1988 31/12/2500 LIBEN Milk and cream in solid forms, of a fat content by weight of > 27%, unsweetened, in immediate packings of > 2,5 kg 01/01/1988 31/12/2500 -040229 01/01/1988 31/12/2500 LIBEN Milk and cream in solid forms, of a fat content by weight of > 1,5%, sweetened 01/01/1988 31/12/2500 -04022911 01/01/1988 31/12/2500 LIBEN Special milk for infants, in solid forms, sweetened, of a fat content by weight of > 10% but <= 27%, in hermetically sealed containers of <= 500 g 01/01/1988 31/12/2500 -04022915 01/01/1988 31/12/2500 LIBEN Milk and cream in solid forms, of a fat content by weight of <= 27% but > 1,5%, sweetened, in immediate packings of <= 2,5 kg (excl. for infants in hermetically sealed containers of <= 500 g) 01/01/1988 31/12/2500 -04022919 01/01/1988 31/12/2500 LIBEN Milk and cream in solid forms, of a fat content by weight of <= 27% but > 1,5%, sweetened, in immediate packings of > 2,5 kg 01/01/1988 31/12/2500 -04022991 01/01/1988 31/12/2500 LIBEN Milk and cream in solid forms, of a fat content by weight of > 27%, sweetened, in immediate packings of <= 2,5 kg 01/01/1988 31/12/2500 -04022999 01/01/1988 31/12/2500 LIBEN Milk and cream in solid forms, of a fat content by weight of > 27%, sweetened, in immediate packings of > 2,5 kg 01/01/1988 31/12/2500 -040291 01/01/1988 31/12/2500 LIBEN Milk and cream, concentrated but unsweetened (excl. in solid forms) 01/01/1988 31/12/2500 -04029110 01/01/2008 31/12/2500 LIBEN Milk and cream, concentrated, of a fat content by weight of <= 8%, unsweetened (excl. in solid forms) 01/01/2008 31/12/2500 -04029111 01/01/1988 31/12/2007 LIBEN Milk and cream, concentrated, of a fat content by weight of <= 8%, unsweetened, in immediate packings of <= 2,5 kg (excl. in solid forms) 01/01/1988 31/12/2007 -04029119 01/01/1988 31/12/2007 LIBEN Milk and cream, concentrated, of a fat content by weight of <= 8%, unsweetened, in immediate packings of > 2,5 kg (excl. in solid forms) 01/01/1988 31/12/2007 -04029130 01/01/2008 31/12/2500 LIBEN Milk and cream, concentrated, of a fat content by weight of > 8% but <= 10%, unsweetened (excl. in solid forms) 01/01/2008 31/12/2500 -04029131 01/01/1988 31/12/2007 LIBEN Milk and cream, concentrated, of a fat content by weight of > 8% but <= 10%, unsweetened, in immediate packings of <= 2,5 kg (excl. in solid forms) 01/01/1988 31/12/2007 -04029139 01/01/1988 31/12/2007 LIBEN Milk and cream, concentrated, of a fat content by weight of > 8% but <= 10%, unsweetened, in immediate packings of > 2,5 kg (excl. in solid forms) 01/01/1988 31/12/2007 -04029151 01/01/1988 31/12/2500 LIBEN Milk and cream, concentrated, of a fat content by weight of > 10% but <= 45%, unsweetened, in immediate packings of <= 2,5 kg (excl. in solid forms) 01/01/1988 31/12/2500 -04029159 01/01/1988 31/12/2500 LIBEN Milk and cream, concentrated, of a fat content by weight of > 10% but <= 45%, unsweetened, in immediate packings of > 2,5 kg (excl. in solid forms) 01/01/1988 31/12/2500 -04029191 01/01/1988 31/12/2500 LIBEN Milk and cream, concentrated, of a fat content by weight of > 45%, unsweetened, in immediate packings of <= 2,5 kg (excl. in solid forms) 01/01/1988 31/12/2500 -04029199 01/01/1988 31/12/2500 LIBEN Milk and cream, concentrated, of a fat content by weight of > 45%, unsweetened, in immediate packings of > 2,5 kg (excl. in solid forms) 01/01/1988 31/12/2500 -040299 01/01/1988 31/12/2500 LIBEN Milk and cream, concentrated and sweetened (excl. in solid forms) 01/01/1988 31/12/2500 -04029910 01/01/2008 31/12/2500 LIBEN Milk and cream, concentrated, of a fat content by weight of <= 9,5%, sweetened (excl. in solid forms) 01/01/2008 31/12/2500 -04029911 01/01/1988 31/12/2007 LIBEN Milk and cream, concentrated, of a fat content by weight of <= 9,5%, sweetened, in immediate packings of <= 2,5 kg (excl. in solid forms) 01/01/1988 31/12/2007 -04029919 01/01/1988 31/12/2007 LIBEN Milk and cream, concentrated, of a fat content by weight of <= 9,5%, sweetened, in immediate packings of > 2,5 kg (excl. in solid forms) 01/01/1988 31/12/2007 -04029931 01/01/1988 31/12/2500 LIBEN Milk and cream, concentrated, of a fat content by weight of > 9,5% but <= 45%, sweetened, in immediate packings of <= 2,5 kg (excl. in solid forms) 01/01/1988 31/12/2500 -04029939 01/01/1988 31/12/2500 LIBEN Milk and cream, concentrated, of a fat content by weight of > 9,5% but <= 45%, sweetened, in immediate packings of > 2,5 kg (excl. in solid forms) 01/01/1988 31/12/2500 -04029991 01/01/1988 31/12/2500 LIBEN Milk and cream, concentrated, of a fat content by weight of > 45%, sweetened, in immediate packings of <= 2,5 kg (excl. in solid forms) 01/01/1988 31/12/2500 -04029999 01/01/1988 31/12/2500 LIBEN Milk and cream, concentrated, of a fat content by weight of > 45%, sweetened, in immediate packings of > 2,5 kg (excl. in solid forms) 01/01/1988 31/12/2500 -0403 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, yogurt, kephir and other fermented or acidified milk and cream, whether or not concentrated or flavoured or containing added sugar or other sweetening matter, fruits, nuts or cocoa 01/01/1988 31/12/2500 -040310 01/01/1988 31/12/2500 LIBEN Yogurt, whether or not flavoured or containing added sugar or other sweetening matter, fruits, nuts or cocoa 01/01/1988 31/12/2500 -04031002 01/01/1991 31/12/1995 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa or sweetener), in solid forms, of a fat content by weight <= 1,5% 01/01/1991 31/12/1995 -04031004 01/01/1991 31/12/1995 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa or sweetener), in solid forms, of a fat content by weight > 1,5% but <= 27% 01/01/1991 31/12/1995 -04031006 01/01/1991 31/12/1995 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa or sweetener), in solid forms, of a fat content by weight > 27% 01/01/1991 31/12/1995 -04031011 01/01/1988 31/12/1990 LIBEN Yogurt, of a fat content by weight of =< 3 % (excl. flavoured or with added fruit, cocoa or sugar or other sweetening matter) 01/01/1988 31/12/1990 -04031011 01/01/1996 31/12/2500 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa, not containing added sugar or other sweetening matter), of a fat content by weight <= 3,0% 01/01/1996 31/12/2500 -04031012 01/01/1991 31/12/1995 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa), sweetened, in solid forms, of a fat content by weight <= 1,5% 01/01/1991 31/12/1995 -04031013 01/01/1988 31/12/1990 LIBEN Yogurt, of a fat content by weight of > 3 % but =< 6 % (excl. flavoured or with added fruit, cocoa or sugar or other sweetening matter) 01/01/1988 31/12/1990 -04031013 01/01/1996 31/12/2500 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa, not containing added sugar or other sweetening matter), of a fat content by weight > 3,0% but <= 6,0% 01/01/1996 31/12/2500 -04031014 01/01/1991 31/12/1995 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa), sweetened, in solid forms, of a fat content by weight > 1,5% but <= 27% 01/01/1991 31/12/1995 -04031016 01/01/1991 31/12/1995 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa), sweetened, in solid forms, of a fat content by weight > 27% 01/01/1991 31/12/1995 -04031019 01/01/1988 31/12/1990 LIBEN Yogurt, of a fat content by weight of > 6 % (excl. flavoured or with added fruit, cocoa or sugar or other sweetening matter) 01/01/1988 31/12/1990 -04031019 01/01/1996 31/12/2500 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa, not containing added sugar or other sweetening matter), of a fat content by weight > 6,0% 01/01/1996 31/12/2500 -04031022 01/01/1991 31/12/1995 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa or sweetened) (excl. in solid forms), of a milkfat content by weight <= 3% 01/01/1991 31/12/1995 -04031024 01/01/1991 31/12/1995 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa or sweetened) (excl. in solid forms), of a milkfat content by weight > 3% but <= 6% 01/01/1991 31/12/1995 -04031026 01/01/1991 31/12/1995 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa or sweetened) (excl. in solid forms), of a milkfat content by weight > 6% 01/01/1991 31/12/1995 -04031031 01/01/1988 31/12/1990 LIBEN Yogurt, sweetened, of a fat content by weight of =< 3 % (excl. flavoured or with added fruit or cocoa) 01/01/1988 31/12/1990 -04031031 01/01/1996 31/12/2500 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa, with added sugar or other sweetening matter), of a fat content by weight <= 3,0% 01/01/1996 31/12/2500 -04031032 01/01/1991 31/12/1995 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa) (excl. in solid forms), sweetened, of a milkfat content by weight <= 3% 01/01/1991 31/12/1995 -04031033 01/01/1988 31/12/1990 LIBEN Yogurt, sweetened, of a fat content by weight of > 3 % but =< 6 % (excl. flavoured or with added fruit or cocoa) 01/01/1988 31/12/1990 -04031033 01/01/1996 31/12/2500 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa), with added sugar or other sweetening matter, of a fat content by weight > 3,0% but <= 6,0% 01/01/1996 31/12/2500 -04031034 01/01/1991 31/12/1995 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa) (excl. in solid forms), sweetened, of a milkfat content by weight > 3% but <= 6% 01/01/1991 31/12/1995 -04031036 01/01/1991 31/12/1995 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa) (excl. in solid forms), sweetened, of a milkfat content by weight > 6% 01/01/1991 31/12/1995 -04031039 01/01/1988 31/12/1990 LIBEN Yogurt, sweetened, of a fat content by weight of > 6 % (excl. flavoured or with added fruit or cocoa) 01/01/1988 31/12/1990 -04031039 01/01/1996 31/12/2500 LIBEN Yogurt (excl. flavoured or with added fruit, nuts or cocoa), with added sugar or other sweetening matter, of a fat content, by weight, of > 6,0% 01/01/1996 31/12/2500 -04031051 01/01/1988 31/12/2500 LIBEN Yogurt, whether or not concentrated, flavoured or with added fruit, nuts or cocoa, sweetened, in solid forms, of a milkfat content by weight of <= 1,5% 01/01/1988 31/12/2500 -04031053 01/01/1988 31/12/2500 LIBEN Yogurt, whether or not concentrated, flavoured or with added fruit, nuts or cocoa, sweetened, in solid forms, of a milkfat content by weight of > 1,5% but <= 27% 01/01/1988 31/12/2500 -04031059 01/01/1988 31/12/2500 LIBEN Yogurt, whether or not concentrated, flavoured or with added fruit, nuts or cocoa, sweetened, in solid forms, of a milkfat content by weight of > 27% 01/01/1988 31/12/2500 -04031091 01/01/1988 31/12/2500 LIBEN Yogurt, whether or not concentrated, flavoured or with added fruit, nuts or cocoa, sweetened, of a milkfat content by weight of <= 3% (excl. in solid forms) 01/01/1988 31/12/2500 -04031093 01/01/1988 31/12/2500 LIBEN Yogurt, whether or not concentrated, flavoured or with added fruit, nuts or cocoa, sweetened, of a milkfat content by weight of > 3% but <= 6% (excl. in solid forms) 01/01/1988 31/12/2500 -04031099 01/01/1988 31/12/2500 LIBEN Yogurt, whether or not concentrated, flavoured or with added fruit, nuts or cocoa, sweetened, of a milkfat content by weight of > 6% (excl. in solid forms) 01/01/1988 31/12/2500 -040390 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream, whether or not concentrated or flavoured or containing added sugar or other sweetening matter, fruits, nuts or cocoa (excl. yogurt) 01/01/1988 31/12/2500 -04039011 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream in solid forms, unsweetened, with a fat content by weight of <= 1,5% (excl. yogurt, flavoured or with added fruit, nuts or cocoa) 01/01/1988 31/12/2500 -04039013 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream in solid forms, unsweetened, with a fat content by weight of > 1,5% but <= 27% (excl. yogurt, flavoured or with added fruit, nuts or cocoa) 01/01/1988 31/12/2500 -04039019 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream in solid forms, unsweetened, with a fat content by weight of > 27% (excl. yogurt, flavoured or with added fruit, nuts or cocoa) 01/01/1988 31/12/2500 -04039031 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream in solid forms, sweetened, with a fat content by weight of <= 1,5% (excl. yogurt, flavoured or with added fruit, nuts or cocoa) 01/01/1988 31/12/2500 -04039033 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream in solid forms, sweetened, with a fat content by weight of > 1,5% but <= 27% (excl. yogurt, flavoured or with added fruit, nuts or cocoa) 01/01/1988 31/12/2500 -04039039 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream in solid forms, sweetened, with a fat content by weight of > 27% (excl. yogurt, flavoured or with added fruit, nuts or cocoa) 01/01/1988 31/12/2500 -04039051 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream, whether or not concentrated, unsweetened, with a fat content by weight of <= 3% (excl. in solid forms, yogurt, flavoured or with added fruit, nuts or cocoa) 01/01/1988 31/12/2500 -04039053 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream, whether or not concentrated, unsweetened, with a fat content by weight of > 3% but <= 6% (excl. in solid forms, yogurt, flavoured or with added fruit, nuts or cocoa) 01/01/1988 31/12/2500 -04039059 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream, whether or not concentrated, unsweetened, with a fat content by weight of > 6% (excl. in solid forms, yogurt, flavoured or with added fruit, nuts or cocoa) 01/01/1988 31/12/2500 -04039061 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream, whether or not concentrated, sweetened, with a fat content by weight of <= 3% (excl. in solid forms, yogurt, flavoured or with added fruit, nuts or cocoa) 01/01/1988 31/12/2500 -04039063 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream, whether or not concentrated, sweetened, with a fat content by weight of > 3% but <= 6% (excl. in solid forms, yogurt, flavoured or with added fruit, nuts or cocoa) 01/01/1988 31/12/2500 -04039069 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream, whether or not concentrated, sweetened, with a fat content by weight of > 6% (excl. in solid forms, yogurt, flavoured or with added fruit, nuts or cocoa) 01/01/1988 31/12/2500 -04039071 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream, flavoured or with added fruit, nuts or cocoa, whether or not sweetened, in solid forms, with a fat content by weight of <= 1,5% (excl. yogurt) 01/01/1988 31/12/2500 -04039073 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream, flavoured or with added fruit, nuts or cocoa, whether or not sweetened, in solid forms, with a fat content by weight of > 1,5% but <= 27% (excl. yogurt) 01/01/1988 31/12/2500 -04039079 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream, flavoured or with added fruit, nuts or cocoa, whether or not sweetened, in solid forms, with a fat content by weight of > 27% (excl. yogurt) 01/01/1988 31/12/2500 -04039091 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream, whether or not concentrated, flavoured or with added fruit, nuts or cocoa, whether or not sweetened, with a fat content by weight of <= 3% (excl. in solid forms and yogurt) 01/01/1988 31/12/2500 -04039093 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream, whether or not concentrated, flavoured or with added fruit, nuts or cocoa, whether or not sweetened, with a fat content by weight of > 3% but <= 6% (excl. in solid forms and yogurt) 01/01/1988 31/12/2500 -04039099 01/01/1988 31/12/2500 LIBEN Buttermilk, curdled milk and cream, kephir and other fermented or acidified milk and cream, whether or not concentrated, flavoured or with added fruit, nuts or cocoa, whether or not sweetened, with a fat content by weight of > 6% (excl. in solid forms and yogurt) 01/01/1988 31/12/2500 -0404 01/01/1988 31/12/2500 LIBEN Whey, whether or not concentrated or containing added sugar or other sweetening matter; products consisting of natural milk constituents, whether or not containing added sugar or other sweetening matter, n.e.s. 01/01/1988 31/12/2500 -040410 01/01/1988 31/12/2500 LIBEN Whey and modified whey, whether or not concentrated or containing added sugar or other sweetening matter 01/01/1988 31/12/2500 -04041002 01/01/1993 31/12/2500 LIBEN Whey and modified whey, in powder, granules or other solid forms, without added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38" of <= 15% by weight and a fat content, by weight, of <= 1,5% 01/01/1993 31/12/2500 -04041004 01/01/1993 31/12/2500 LIBEN Whey and modified whey, in powder, granules or other solid forms, without added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38" of <= 15% by weight and a fat content, by weight, of > 1,5 and <= 27% 01/01/1993 31/12/2500 -04041006 01/01/1993 31/12/2500 LIBEN Whey and modified whey, in powder, granules or other solid forms, without added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38" of <= 15% by weight and a fat content, by weight, of > 27% 01/01/1993 31/12/2500 -04041011 01/01/1988 31/12/1992 LIBEN Whey and modified whey, in powder, granules or other solid forms, not containing added sugar or other sweetening matter 01/01/1988 31/12/1992 -04041012 01/01/1993 31/12/2500 LIBEN Whey and modified whey, in powder, granules or other solid forms, without added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38" of > 15% by weight and a fat content, by weight, of <= 1,5% 01/01/1993 31/12/2500 -04041014 01/01/1993 31/12/2500 LIBEN Whey and modified whey, in powder, granules or other solid forms, without added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38" of > 15% by weight and a fat content, by weight, of > 1,5% and <= 27% 01/01/1993 31/12/2500 -04041016 01/01/1993 31/12/2500 LIBEN Whey and modified whey, in powder, granules or other solid forms, without added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38" of > 15% by weight and a fat content, by weight, of > 27% 01/01/1993 31/12/2500 -04041019 01/01/1988 31/12/1992 LIBEN Whey and modified whey, in powder, granules or other solid forms, containing added sugar or other sweetening matter 01/01/1988 31/12/1992 -04041026 01/01/1993 31/12/2500 LIBEN Whey and modified whey, in powder, granules or other solid forms, with added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38" of <= 15% by weight and a fat content, by weight, of <= 1,5% 01/01/1993 31/12/2500 -04041028 01/01/1993 31/12/2500 LIBEN Whey and modified whey, in powder, granules or other solid forms, with added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38" of <= 15% by weight and a fat content, by weight, of > 1,5% and <= 27% 01/01/1993 31/12/2500 -04041032 01/01/1993 31/12/2500 LIBEN Whey and modified whey, in powder, granules or other solid forms, with added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38" of <= 15% by weight and a fat content, by weight, of > 27% 01/01/1993 31/12/2500 -04041034 01/01/1993 31/12/2500 LIBEN Whey and modified whey, in powder, granules or other solid forms, with added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38" of > 15% by weight and a fat content, by weight, of <= 1,5% 01/01/1993 31/12/2500 -04041036 01/01/1993 31/12/2500 LIBEN Whey and modified whey, in powder, granules or other solid forms, with added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38" of > 15% by weight and a fat content, by weight, of > 1,5% and <= 27% 01/01/1993 31/12/2500 -04041038 01/01/1993 31/12/2500 LIBEN Whey and modified whey, in powder, granules or other solid forms, with added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38" of > 15% by weight and a fat content, by weight, of > 27% 01/01/1993 31/12/2500 -04041048 01/01/1993 31/12/2500 LIBEN Whey and modified whey, whether or not concentrated, not containing added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38", by weight of <= 15% and of a fat content, by weight, of <= 1,5% (excl. in powder, granules or other solid forms) 01/01/1993 31/12/2500 -04041052 01/01/1993 31/12/2500 LIBEN Whey and modified whey, whether or not concentrated, not containing added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38", by weight of <= 15% and of a fat content, by weight, of > 1,5% and <= 27% (excl. in powder, granules or other solid forms) 01/01/1993 31/12/2500 -04041054 01/01/1993 31/12/2500 LIBEN Whey and modified whey, whether or not concentrated, not containing added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38", by weight of <= 15% and of a fat content, by weight, of > 27% (excl. in powder, granules or other solid forms) 01/01/1993 31/12/2500 -04041056 01/01/1993 31/12/2500 LIBEN Whey and modified whey, whether or not concentrated, not containing added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38", by weight of > 15% and of a fat content, by weight, of <= 1,5% (excl. in powder, granules or other solid forms) 01/01/1993 31/12/2500 -04041058 01/01/1993 31/12/2500 LIBEN Whey and modified whey, whether or not concentrated, not containing added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38", by weight of > 15% and of a fat content, by weight, of > 1,5% and <= 27% (excl. in powder, granules or other solid forms) 01/01/1993 31/12/2500 -04041062 01/01/1993 31/12/2500 LIBEN Whey and modified whey, whether or not concentrated, not containing added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38", by weight of > 15% and of a fat content, by weight, of > 27% (excl. in powder, granules or other solid forms) 01/01/1993 31/12/2500 -04041072 01/01/1993 31/12/2500 LIBEN Whey and modified whey, whether or not concentrated, containing added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38", by weight of <= 15% and of a fat content, by weight, of <= 1,5% (excl. in powder, granules or other solid forms) 01/01/1993 31/12/2500 -04041074 01/01/1993 31/12/2500 LIBEN Whey and modified whey, whether or not concentrated, containing added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38", by weight of <= 15% and of a fat content, by weight, of > 1,5% and <= 27% (excl. in powder, granules or other solid forms) 01/01/1993 31/12/2500 -04041076 01/01/1993 31/12/2500 LIBEN Whey and modified whey, whether or not concentrated, containing added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38", by weight of <= 15% and of a fat content, by weight, of > 27% (excl. in powder, granules or other solid forms) 01/01/1993 31/12/2500 -04041078 01/01/1993 31/12/2500 LIBEN Whey and modified whey, whether or not concentrated, containing added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38", by weight of > 15% and of a fat content, by weight, of <= 1,5% (excl. in powder, granules or other solid forms) 01/01/1993 31/12/2500 -04041082 01/01/1993 31/12/2500 LIBEN Whey and modified whey, whether or not concentrated, containing added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38", by weight of > 15% and of a fat content, by weight, of > 1,5% and <= 27% (excl. in powder, granules or other solid forms) 01/01/1993 31/12/2500 -04041084 01/01/1993 31/12/2500 LIBEN Whey and modified whey, whether or not concentrated, containing added sugar or other sweetening matter, of a protein content "nitrogen content x 6.38", by weight of > 15% and of a fat content, by weight, of > 27% (excl. in powder, granules or other solid forms) 01/01/1993 31/12/2500 -04041091 01/01/1988 31/12/1992 LIBEN Whey and modified whey, not containing added sugar or other sweetening matter (excl. in powder, granules or other solid forms) 01/01/1988 31/12/1992 -04041099 01/01/1988 31/12/1992 LIBEN Whey and modified whey, containing added sugar or other sweetening matter (excl. in powder, granules or other solid forms) 01/01/1988 31/12/1992 -040490 01/01/1988 31/12/2500 LIBEN Products consisting of natural milk constituents, whether or not sweetened, n.e.s. 01/01/1988 31/12/2500 -04049011 01/01/1988 31/12/1995 LIBEN Products consisting of natural milk constituents, unsweetened, of a protein content of <= 42% and a fat content by weight of <= 1,5% n.e.s. 01/01/1988 31/12/1995 -04049013 01/01/1988 31/12/1995 LIBEN Products consisting of natural milk constituents, unsweetened, of a protein content of <= 42% and a fat content by weight of > 1,5% but <= 27% n.e.s. 01/01/1988 31/12/1995 -04049019 01/01/1988 31/12/1995 LIBEN Products consisting of natural milk constituents, unsweetened, of a protein content of <= 42% and a fat content by weight of > 27% n.e.s. 01/01/1988 31/12/1995 -04049021 01/01/1996 31/12/2500 LIBEN Products consisting of natural milk constituents, not containing added sugar or other sweetening matter, of a fat content, by weight, of <= 1,5%, n.e.s. 01/01/1996 31/12/2500 -04049023 01/01/1996 31/12/2500 LIBEN Products consisting of natural milk constituents, not containing added sugar or other sweetening matter, of a fat content, by weight, of > 1,5% but <= 27%, n.e.s. 01/01/1996 31/12/2500 -04049029 01/01/1996 31/12/2500 LIBEN Products consisting of natural milk constituents, not containing added sugar or other sweetening matter, of a fat content, by weight, of > 27%, n.e.s. 01/01/1996 31/12/2500 -04049031 01/01/1988 31/12/1995 LIBEN Products consisting of natural milk constituents, unsweetened, of a protein content of > 42% and a fat content by weight of <= 1,5% n.e.s. 01/01/1988 31/12/1995 -04049033 01/01/1988 31/12/1995 LIBEN Products consisting of natural milk constituents, unsweetened, of a protein content of > 42% and a fat content by weight of > 1,5% but <= 27% n.e.s. 01/01/1988 31/12/1995 -04049039 01/01/1988 31/12/1995 LIBEN Products consisting of natural milk constituents, unsweetened, of a protein content of > 42% and a fat content by weight of > 27% n.e.s. 01/01/1988 31/12/1995 -04049051 01/01/1988 31/12/1995 LIBEN Products consisting of natural milk constituents, sweetened, of a protein content of <= 42% and a fat content by weight of <= 1,5% n.e.s. 01/01/1988 31/12/1995 -04049053 01/01/1988 31/12/1995 LIBEN Products consisting of natural milk constituents, sweetened, of a protein content of <= 42% and a fat content by weight of > 1,5% but <= 27% n.e.s. 01/01/1988 31/12/1995 -04049059 01/01/1988 31/12/1995 LIBEN Products consisting of natural milk constituents, sweetened, of a protein content of <= 42% and a fat content by weight of > 27% n.e.s. 01/01/1988 31/12/1995 -04049081 01/01/1996 31/12/2500 LIBEN Products consisting of natural milk constituents, with added sugar or other sweetening matter, of a fat content, by weight, of <= 1,5%, n.e.s. 01/01/1996 31/12/2500 -04049083 01/01/1996 31/12/2500 LIBEN Products consisting of natural milk constituents, with added sugar or other sweetening matter, of a fat content, by weight, of > 1,5% but <= 27%, n.e.s. 01/01/1996 31/12/2500 -04049089 01/01/1996 31/12/2500 LIBEN Products consisting of natural milk constituents, with added sugar or other sweetening matter, of a fat content, by weight, of > 27%, n.e.s. 01/01/1996 31/12/2500 -04049091 01/01/1988 31/12/1995 LIBEN Products consisting of natural milk constituents, sweetened, of a protein content of > 42% and a fat content by weight of <= 1,5% n.e.s. 01/01/1988 31/12/1995 -04049093 01/01/1988 31/12/1995 LIBEN Products consisting of natural milk constituents, sweetened, of a protein content of > 42% and a fat content by weight of > 1,5% but <= 27% n.e.s. 01/01/1988 31/12/1995 -04049099 01/01/1988 31/12/1995 LIBEN Products consisting of natural milk constituents, sweetened, of a protein content of > 42% and a fat content by weight of > 27% n.e.s. 01/01/1988 31/12/1995 -0404S0 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 0404 and SITC section 0 01/01/1997 31/12/2500 -0404S022 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 0404 and SITC group 022 01/01/1997 31/12/2500 -0405 01/01/1988 31/12/2500 LIBEN Butter, incl. dehydrated butter and ghee, and other fats and oils derived from milk; dairy spreads 01/01/1988 31/12/2500 -040500 01/01/1988 31/12/1995 LIBEN Butter and other fats and oils derived from milk 01/01/1988 31/12/1995 -04050010 01/01/1988 31/12/1992 LIBEN Butter and other fats and oils derived from milk, of a fat content by weight of =< 85 % 01/01/1988 31/12/1992 -04050011 01/01/1993 31/12/1995 LIBEN Butter and other fats and oils derived from milk, of a fat content, by weight, of <= 85%, in immediate packings of a net content of <= 1 kg 01/01/1993 31/12/1995 -04050019 01/01/1993 31/12/1995 LIBEN Butter and other fats and oils derived from milk, of a fat content, by weight, of <= 85% (excl. those in immediate packings of a net content of <= 1 kg) 01/01/1993 31/12/1995 -04050090 01/01/1988 31/12/1995 LIBEN Butter and other fats and oils derived from milk, of a fat content by weight of > 85% 01/01/1988 31/12/1995 -040510 01/01/1996 31/12/2500 LIBEN Butter (excl. dehydrated butter and ghee) 01/01/1996 31/12/2500 -04051011 01/01/1996 31/12/2500 LIBEN Natural butter of a fat content, by weight, of >= 80% but <= 85%, in immediate packings of a net content of <= 1 kg (excl. dehydrated butter and ghee) 01/01/1996 31/12/2500 -04051019 01/01/1996 31/12/2500 LIBEN Natural butter of a fat content, by weight, of >= 80% but <= 85% (excl. in immediate packings of a net content of <= 1 kg, and dehydrated butter and ghee) 01/01/1996 31/12/2500 -04051030 01/01/1996 31/12/2500 LIBEN Recombined butter of a fat content, by weight, of >= 80% but <= 85% (excl. dehydrated butter and ghee) 01/01/1996 31/12/2500 -04051050 01/01/1996 31/12/2500 LIBEN Whey butter of a fat content, by weight, of >= 80% but <= 85% (excl. dehydrated butter and ghee) 01/01/1996 31/12/2500 -04051090 01/01/1996 31/12/2500 LIBEN Butter of a fat content, by weight, of > 85% but <= 95% (excl. dehydrated butter and ghee) 01/01/1996 31/12/2500 -040520 01/01/1996 31/12/2500 LIBEN Dairy spreads of a fat content, by weight, of >= 39% but < 80% 01/01/1996 31/12/2500 -04052010 01/01/1996 31/12/2500 LIBEN Dairy spreads of a fat content, by weight, of >= 39% but < 60% 01/01/1996 31/12/2500 -04052030 01/01/1996 31/12/2500 LIBEN Dairy spreads of a fat content, by weight, of >= 60% but <= 75% 01/01/1996 31/12/2500 -04052090 01/01/1996 31/12/2500 LIBEN Dairy spreads of a fat content, by weight, of > 75% but < 80% 01/01/1996 31/12/2500 -040590 01/01/1996 31/12/2500 LIBEN Fats and oils derived from milk, and dehydrated butter and ghee (excl. natural butter, recombined butter and whey butter) 01/01/1996 31/12/2500 -04059010 01/01/1996 31/12/2500 LIBEN Fats and oils derived from milk, of a fat content, by weight, of >= 99,3% and of a water content, by weight, of <= 0,5% 01/01/1996 31/12/2500 -04059090 01/01/1996 31/12/2500 LIBEN Fats and oils derived from milk, dehydrated butter and ghee (excl. of a fat content, by weight, of >= 99,3% and a water content, by weight, of <= 0,5%, and natural butter, recombined butter and whey butter) 01/01/1996 31/12/2500 -0406 01/01/1988 31/12/2500 LIBEN Cheese and curd 01/01/1988 31/12/2500 -040610 01/01/1988 31/12/2500 LIBEN Fresh cheese "unripened or uncured cheese", incl. whey cheese, and curd 01/01/1988 31/12/2500 -04061010 01/01/1988 31/12/1991 LIBEN Fresh cheese, incl. whey cheese, not fermented, and curd, of a fat content by weight of =< 40 % 01/01/1988 31/12/1991 -04061020 01/01/1992 31/12/2014 LIBEN Fresh cheese "unripened or uncured cheese", incl. whey cheese and curd of a fat content, by weight, of <= 40% 01/01/1992 31/12/2014 -04061030 01/01/2015 31/12/2500 LIBEN Fresh Mozzarella, whether or not in a liquid, of a fat content, by weight, of <= 40% 01/01/2015 31/12/2500 -04061050 01/01/2015 31/12/2500 LIBEN Fresh cheese "unripened or uncured cheese", incl. whey cheese and curd of a fat content, by weight, of <= 40% (excl. Mozzarella) 01/01/2015 31/12/2500 -04061080 01/01/1992 31/12/2500 LIBEN Fresh cheese "unripened or uncured cheese", incl. whey cheese and curd of a fat content, by weight, of > 40% 01/01/1992 31/12/2500 -04061090 01/01/1988 31/12/1991 LIBEN Fresh cheese, incl. whey cheese, not fermented, and curd, of a fat content by weight of > 40 % 01/01/1988 31/12/1991 -040620 01/01/1988 31/12/2500 LIBEN Grated or powdered cheese, of all kinds 01/01/1988 31/12/2500 -04062000 01/01/2015 31/12/2500 LIBEN Grated or powdered cheese, of all kinds 01/01/2015 31/12/2500 -04062010 01/01/1988 31/12/2014 LIBEN Glarus herb cheese, grated or powdered 01/01/1988 31/12/2014 -04062090 01/01/1988 31/12/2014 LIBEN Grated or powdered cheese (excl. glarus herb cheese, known as Schabziger) 01/01/1988 31/12/2014 -040630 01/01/1988 31/12/2500 LIBEN Processed cheese, not grated or powdered 01/01/1988 31/12/2500 -04063010 01/01/1988 31/12/2500 LIBEN Processed cheese, not grated or powdered, in the manufacture of which no cheeses other than Emmentaler, Gruyère and Appenzell have been used and which may contain, as an addition, Glarus herb cheese "known as Schabziger"; put up for retail sale, of a fat content by weight in the dry matter of <= 56% 01/01/1988 31/12/2500 -04063031 01/01/1988 31/12/2500 LIBEN Processed cheese, not grated or powdered, of a fat content, by weight, of <= 36% and of a fat content, by weight, in the dry matter of <= 48% (excl. processed cheese mixtures made from Emmentaler, Gruyère and Appenzell, with or without the addition of Glarus herb cheese known as Schabziger, put up for retail sale) 01/01/1988 31/12/2500 -04063039 01/01/1988 31/12/2500 LIBEN Processed cheese, not grated or powdered, of a fat content, by weight, of <= 36% and of a fat content, by weight, in the dry matter of > 48% (excl. processed cheese mixtures made from Emmentaler, Gruyère and Appenzell, with or without the addition of Glarus herb cheese known as Schabziger, put up for retail sale, of a fat content by weight in the dry matter of <= 56%) 01/01/1988 31/12/2500 -04063090 01/01/1988 31/12/2500 LIBEN Processed cheese, not grated or powdered, of a fat content, by weight, of > 36% (excl. processed cheese mixtures made from Emmentaler, Gruyère and Appenzell, with or without the addition of Glarus herb cheese known as Schabziger, put up for retail sale, of a fat content by weight in the dry matter of <= 56%) 01/01/1988 31/12/2500 -040640 01/01/1988 31/12/2500 LIBEN Blue-veined cheese and other cheese containing veins produced by "Penicillium roqueforti" 01/01/1988 31/12/2500 -04064000 01/01/1988 31/12/1993 LIBEN Blue-veined cheese 01/01/1988 31/12/1993 -04064010 01/01/1994 31/12/2500 LIBEN Roquefort 01/01/1994 31/12/2500 -04064050 01/01/1994 31/12/2500 LIBEN Gorgonzola 01/01/1994 31/12/2500 -04064090 01/01/1994 31/12/2500 LIBEN Blue-veined cheese and other cheese containing veins produced by "Penicillium roqueforti" (excl. roquefort and gorgonzola) 01/01/1994 31/12/2500 -040690 01/01/1988 31/12/2500 LIBEN Cheese (excl. fresh cheese, incl. whey cheese, curd, processed cheese, blue-veined cheese and other cheese containing veins produced by "Penicillium roqueforti", and grated or powdered cheese) 01/01/1988 31/12/2500 -04069001 01/01/1995 31/12/2500 LIBEN Cheese for processing (excl. fresh cheese, incl. whey cheese, curd, processed cheese, blue-veined cheese and other cheese containing veins produced by "Penicillium roqueforti", and grated or powdered cheese): 01/01/1995 31/12/2500 -04069002 01/01/1995 31/12/2005 LIBEN Emmentaler, Gruyère, Sbrinz, Bergkäse and Appenzell, of a fat content of >= 45% by weight in the dry matter, matured for three months or more, whole cheeses of a type specified in Additional Note 2 to chapter 4, with a free-at-frontier value per 100 kg net weight > € 401,85 but <= € 430,62 01/01/1995 31/12/2005 -04069003 01/01/1995 31/12/2005 LIBEN Emmentaler, Gruyère, Sbrinz, Bergkäse and Appenzell, of a fat content of >= 45% by weight in the dry matter, matured for three months or more, whole cheeses of a type specified in Additional Note 2 to chapter 4, with a free-at-frontier value per 100 kg net weight > € 430,62 01/01/1995 31/12/2005 -04069004 01/01/1995 31/12/2005 LIBEN Emmentaler, Gruyère, Sbrinz, Bergkäse and Appenzell, of a fat content of >= 45% by weight in the dry matter, matured for three months or more, pieces packed in vacuum or inert gas, with rind on at least one side, of a net weight of >= 1 kg but < 5 kg and with a free-at-frontier value > € 430,62 but <= € 459,39 per 100 kg net weight 01/01/1995 31/12/2005 -04069005 01/01/1995 31/12/2005 LIBEN Emmentaler, Gruyère, Sbrinz, Bergkäse and Appenzell, of a fat content of >= 45% by weight in the dry matter, matured for three months or more, pieces packed in vacuum or inert gas, with rind on at least one side, of a net weight of >= 1 kg and with a free-at-frontier value > € 459,39 per 100 kg net weight 01/01/1995 31/12/2005 -04069006 01/01/1995 31/12/2005 LIBEN Emmentaler, Gruyère, Sbrinz, Bergkäse and Appenzell, of a fat content of >= 45% by weight in the dry matter, matured for three months or more, pieces without rind, of a net weight of < 450 g and with a free-at-frontier value > € 499,67 per 100 kg net weight, packed in vacuum or inert gas, in packings bearing the description of the cheese, the fat content, the packer responsible and the country of manufacture 01/01/1995 31/12/2005 -04069007 01/01/1995 31/12/1996 LIBEN Emmentaler (excl. grated or powdered, for processing and subheadings 0406.90.02 to 0406.90.06) 01/01/1995 31/12/1996 -04069008 01/01/1995 31/12/1996 LIBEN Gruyère, Sbrinz (excl. grated or powdered, for processing and subheadings 0406.90.02 to 0406.90.06) 01/01/1995 31/12/1996 -04069009 01/01/1995 31/12/1996 LIBEN Bergkäse, Appenzell (excl. grated or powdered, for processing and subheadings 0406.90.02 to 0406.90.06) 01/01/1995 31/12/1996 -04069011 01/01/1988 31/12/1994 LIBEN Cheese for processing (excl. fresh cheese, incl. whey cheese, not fermented, curd, processed cheese, blue-veined cheese, and grated or powdered cheese) 01/01/1988 31/12/1994 -04069012 01/01/1995 31/12/1996 LIBEN Emmentaler (excl. grated or powdered, for processing and subheadings 0406.90.02 to 0406.90.07) 01/01/1995 31/12/1996 -04069013 01/01/1988 31/12/1994 LIBEN Emmentaler (excl. grated or powdered and for processing) 01/01/1988 31/12/1994 -04069013 01/01/1997 31/12/2005 LIBEN Emmentaler (excl. grated or powdered, that for processing and that of subheading 0406.90.02 to 0406.90.06) 01/01/1997 31/12/2005 -04069013 01/01/2006 31/12/2500 LIBEN Emmentaler (excl. grated or powdered and that for processing) 01/01/2006 31/12/2500 -04069014 01/01/1995 31/12/1996 LIBEN Gruyère, Sbrinz (excl. grated or powdered, for processing and subheadings 0406.90.02 to 0406.90.08) 01/01/1995 31/12/1996 -04069015 01/01/1988 31/12/1994 LIBEN Gruyere, sbrinz (excl. grated or powdered and for processing) 01/01/1988 31/12/1994 -04069015 01/01/1997 31/12/2005 LIBEN Gruyère and Sbrinz (excl. grated or powdered, those for processing and those of subheading 0406.90.02 to 0406.90.06) 01/01/1997 31/12/2005 -04069015 01/01/2006 31/12/2500 LIBEN Gruyère and Sbrinz (excl. grated or powdered and those for processing) 01/01/2006 31/12/2500 -04069016 01/01/1995 31/12/1996 LIBEN Berkäse, Appenzell (excl. grated or powdered, for processing and subheadings 0406.90.02 to 0406.90.09) 01/01/1995 31/12/1996 -04069017 01/01/1988 31/12/1994 LIBEN Bergkase, appenzell, fromage fribourgeois, vacherin mont d'or and tête de moine (excl. grated or powdered and for processing) 01/01/1988 31/12/1994 -04069017 01/01/1997 31/12/2005 LIBEN Bergkäse and Appenzell (excl. grated or powdered, those for processing and those of subheading 0406.90.02 to 0406.90.06) 01/01/1997 31/12/2005 -04069017 01/01/2006 31/12/2500 LIBEN Bergkäse and Appenzell (excl. grated or powdered and those for processing) 01/01/2006 31/12/2500 -04069018 01/01/1995 31/12/2500 LIBEN Fromage fribourgeois, Vacherin Mont d'Or and Tête de Moine (excl. grated or powdered and for processing) 01/01/1995 31/12/2500 -04069019 01/01/1988 31/12/2014 LIBEN Glarus herb cheese "known as Schabziger" made from skimmed milk and mixed with finely ground herbs (excl. grated or powdered and for processing) 01/01/1988 31/12/2014 -04069021 01/01/1988 31/12/2500 LIBEN Cheddar (excl. grated or powdered and for processing) 01/01/1988 31/12/2500 -04069023 01/01/1988 31/12/2500 LIBEN Edam (excl. grated or powdered and for processing) 01/01/1988 31/12/2500 -04069025 01/01/1988 31/12/2500 LIBEN Tilsit (excl. grated or powdered and for processing) 01/01/1988 31/12/2500 -04069027 01/01/1988 31/12/2014 LIBEN Butterkäse (excl. grated or powdered and for processing) 01/01/1988 31/12/2014 -04069029 01/01/1988 31/12/2500 LIBEN Kashkaval (excl. grated or powdered and for processing) 01/01/1988 31/12/2500 -04069031 01/01/1988 31/12/2006 LIBEN Feta of sheep's or buffalo milk, in containers containing brine, or in sheepskin or goatskin bottles 01/01/1988 31/12/2006 -04069032 01/01/2007 31/12/2500 LIBEN Feta (excl. for processing) 01/01/2007 31/12/2500 -04069033 01/01/1988 31/12/2006 LIBEN Feta (excl. for processing, grated or powdered and of sheep's or buffalo milk, in containers containing brine, or in sheepskin or goatskin bottles) 01/01/1988 31/12/2006 -04069035 01/01/1988 31/12/2500 LIBEN Kefalo-Tyri (excl. grated or powdered and for processing) 01/01/1988 31/12/2500 -04069037 01/01/1988 31/12/2500 LIBEN Finlandia (excl. grated or powdered and for processing) 01/01/1988 31/12/2500 -04069039 01/01/1988 31/12/2500 LIBEN Jarlsberg (excl. grated or powdered and for processing) 01/01/1988 31/12/2500 -04069050 01/01/1988 31/12/2500 LIBEN Sheep's or buffalo milk cheese, in containers containing brine, or in sheepskin or goatskin bottles (excl. feta) 01/01/1988 31/12/2500 -04069061 01/01/1988 31/12/2500 LIBEN Grana Padano and Parmigiano Reggiano, of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of <= 47% (excl. grated or powdered and for processing) 01/01/1988 31/12/2500 -04069063 01/01/1988 31/12/2500 LIBEN Fiore Sardo and Pecorino, of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of <= 47% (excl. grated or powdered and for processing) 01/01/1988 31/12/2500 -04069069 01/01/1988 31/12/2500 LIBEN Cheese of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of <= 47%, n.e.s. 01/01/1988 31/12/2500 -04069071 01/01/1988 31/12/1991 LIBEN Fresh cheese, fermented, of a fat content by weight of =< 40 % and a water content, by weight, of non-fatty matter of > 47 % but =< 72% (excl. for processing) 01/01/1988 31/12/1991 -04069073 01/01/1988 31/12/2500 LIBEN Provolone of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of > 47% but <= 72% (excl. grated or powdered and for processing) 01/01/1988 31/12/2500 -04069074 01/01/2015 31/12/2500 LIBEN Maasdam of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of > 47% but <= 72% (excl. grated or powdered and for processing) 01/01/2015 31/12/2500 -04069075 01/01/1988 31/12/2500 LIBEN Asiago, Caciocavallo, Montasio and Ragusano, of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of > 47% but <= 72% (excl. grated or powdered and for processing) 01/01/1988 31/12/2500 -04069076 01/01/1994 31/12/2500 LIBEN Danbo, Fontal, Fontina, Fynbo, Havarti, Maribo and Samsø, of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of > 47% but <= 72% (excl. grated or powdered and for processing) 01/01/1994 31/12/2500 -04069077 01/01/1988 31/12/1993 LIBEN Danbo, fontal, fontina, fynbo, gouda, havarti, maribo, samsoe, of a fat content by weight of =< 40 % and a water content, by weight, of non-fatty matter of > 47 % but =< 72% (excl. grated or powdered and for processing) 01/01/1988 31/12/1993 -04069078 01/01/1994 31/12/2500 LIBEN Gouda, of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of > 47% but <= 72% (excl. grated or powdered and for processing) 01/01/1994 31/12/2500 -04069079 01/01/1988 31/12/2500 LIBEN Esrom, Italico, Kernhem, Saint-Nectaire, Saint-Paulin and Taleggio, of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of > 47% but <= 72% (excl. grated or powdered and for processing) 01/01/1988 31/12/2500 -04069081 01/01/1988 31/12/2500 LIBEN Cantal, Cheshire, Wensleydale, Lancashire, Double Gloucester, Blarney, Colby and Monterey, of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of > 47% but <= 72% (excl. grated or powdered and for processing) 01/01/1988 31/12/2500 -04069082 01/01/1994 31/12/2500 LIBEN Camembert, of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of > 47% but <= 72% (excl. grated or powdered and for processing) 01/01/1994 31/12/2500 -04069083 01/01/1988 31/12/1991 LIBEN Ricotta, salted (excl. grated or powdered and for processing) 01/01/1988 31/12/1991 -04069084 01/01/1994 31/12/2500 LIBEN Brie, of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of > 47% but <= 72% (excl. grated or powdered and for processing) 01/01/1994 31/12/2500 -04069085 01/01/1988 31/12/2500 LIBEN Kefalograviera and Kasseri, of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of > 47% but <= 72% (excl. grated or powdered and for processing) 01/01/1988 31/12/2500 -04069086 01/01/1994 31/12/2500 LIBEN Cheese, of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of > 47% but <= 52%, n.e.s. 01/01/1994 31/12/2500 -04069087 01/01/1994 31/12/2014 LIBEN Cheese, of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of > 52% but <= 62%, n.e.s. 01/01/1994 31/12/2014 -04069088 01/01/1994 31/12/2014 LIBEN Cheese, of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of > 62% but <= 72%, n.e.s. 01/01/1994 31/12/2014 -04069089 01/01/1988 31/12/1991 LIBEN Cheese of a fat content by weight of =< 40 % and a water content, by weight, of non-fatty matter of > 47 % but =< 72%, n.e.s. 01/01/1988 31/12/1991 -04069089 01/01/1992 31/12/1993 LIBEN Cheese of a fat content by weight of =< 40 % and a water content, by weight, of non-fatty matter of > 47 % but =< 72%, n.e.s. 01/01/1992 31/12/1993 -04069089 01/01/2015 31/12/2500 LIBEN Cheese, of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of > 52% but <= 62%, n.e.s. 01/01/2015 31/12/2500 -04069091 01/01/1988 31/12/1991 LIBEN Fresh cheese, fermented, of a fat content by weight of =< 40 % and a water content, by weight, of non-fatty matter of > 72% (excl. for processing) 01/01/1988 31/12/1991 -04069092 01/01/2015 31/12/2500 LIBEN Cheese, of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of > 62% but <= 72%, n.e.s. 01/01/2015 31/12/2500 -04069093 01/01/1988 31/12/2500 LIBEN Cheese, of a fat content by weight of <= 40% and a water content, by weight, of non-fatty matter of > 72%, n.e.s. 01/01/1988 31/12/2500 -04069097 01/01/1988 31/12/1991 LIBEN Fresh cheese, fermented, of a fat content by weight of > 40 % (excl. for processing) 01/01/1988 31/12/1991 -04069099 01/01/1988 31/12/2500 LIBEN Cheese of a fat content by weight of > 40%, n.e.s. 01/01/1988 31/12/2500 -0407 01/01/1988 31/12/2500 LIBEN Birds' eggs, in shell, fresh, preserved or cooked 01/01/1988 31/12/2500 -040700 01/01/1988 31/12/2011 LIBEN Birds' eggs, in shell, fresh, preserved or cooked 01/01/1988 31/12/2011 -04070011 01/01/1988 31/12/2011 LIBEN Turkey or goose eggs for hatching 01/01/1988 31/12/2011 -04070019 01/01/1988 31/12/2011 LIBEN Poultry eggs for hatching (excl. turkey or goose) 01/01/1988 31/12/2011 -04070030 01/01/1988 31/12/2011 LIBEN Poultry eggs, in shell, fresh, preserved or cooked (excl. for hatching) 01/01/1988 31/12/2011 -04070090 01/01/1988 31/12/2011 LIBEN Birds' eggs, in shell, fresh, preserved or cooked (excl. poultry) 01/01/1988 31/12/2011 -040711 01/01/2012 31/12/2500 LIBEN Fertilised eggs for incubation, of domestic fowls 01/01/2012 31/12/2500 -04071100 01/01/2012 31/12/2500 LIBEN Fertilised eggs for incubation, of domestic fowls 01/01/2012 31/12/2500 -040719 01/01/2012 31/12/2500 LIBEN Fertilised birds' eggs for incubation (excl. of domestic fowls) 01/01/2012 31/12/2500 -04071911 01/01/2012 31/12/2500 LIBEN Fertilised eggs for incubation, of domestic turkeys or domestic geese 01/01/2012 31/12/2500 -04071919 01/01/2012 31/12/2500 LIBEN Fertilised poultry eggs for incubation (excl. of turkeys, geese and fowls) 01/01/2012 31/12/2500 -04071990 01/01/2012 31/12/2500 LIBEN Fertilised birds' eggs for incubation (excl. of poultry) 01/01/2012 31/12/2500 -040721 01/01/2012 31/12/2500 LIBEN Fresh eggs of domestic fowls, in shell (excl. fertilised for incubation) 01/01/2012 31/12/2500 -04072100 01/01/2012 31/12/2500 LIBEN Fresh eggs of domestic fowls, in shell (excl. fertilised for incubation) 01/01/2012 31/12/2500 -040729 01/01/2012 31/12/2500 LIBEN Fresh birds' eggs, in shell (excl. of domestic fowls, and fertilised for incubation) 01/01/2012 31/12/2500 -04072910 01/01/2012 31/12/2500 LIBEN Fresh poultry eggs, in shell (excl. of fowls, and fertilised for incubation) 01/01/2012 31/12/2500 -04072990 01/01/2012 31/12/2500 LIBEN Fresh birds' eggs, in shell (excl. of poultry, and fertilised for incubation) 01/01/2012 31/12/2500 -040790 01/01/2012 31/12/2500 LIBEN Birds' eggs, in shell, preserved or cooked 01/01/2012 31/12/2500 -04079010 01/01/2012 31/12/2500 LIBEN Poultry eggs, in shell, preserved or cooked 01/01/2012 31/12/2500 -04079090 01/01/2012 31/12/2500 LIBEN Birds' eggs, in shell, preserved or cooked (excl. of poultry) 01/01/2012 31/12/2500 -0408 01/01/1988 31/12/2500 LIBEN Birds' eggs, not in shell, and egg yolks, fresh, dried, cooked by steaming or by boiling in water, moulded, frozen or otherwise preserved, whether or not containing added sugar or other sweetening matter 01/01/1988 31/12/2500 -040811 01/01/1988 31/12/2500 LIBEN Dried egg yolks, whether or not sweetened 01/01/1988 31/12/2500 -04081110 01/01/1988 31/12/1993 LIBEN Dried egg yolks for human consumption, whether or not sweetened 01/01/1988 31/12/1993 -04081120 01/01/1994 31/12/2500 LIBEN Egg yolks, dried, not suitable for human consumption, whether or not containing added sugar or other sweetening matter 01/01/1994 31/12/2500 -04081180 01/01/1994 31/12/2500 LIBEN Egg yolks, dried, for human consumption, whether or not containing added sugar or other sweetening matter 01/01/1994 31/12/2500 -04081190 01/01/1988 31/12/1993 LIBEN Dried egg yolks, whether or not sweetened (excl. for human consumption) 01/01/1988 31/12/1993 -040819 01/01/1988 31/12/2500 LIBEN Egg yolks, fresh, cooked by steaming or boiling in water, moulded, frozen or otherwise preserved, whether or not sweetened (excl. dried) 01/01/1988 31/12/2500 -04081911 01/01/1988 31/12/1993 LIBEN Liquid egg yolks for human consumption, whether or not sweetened 01/01/1988 31/12/1993 -04081919 01/01/1988 31/12/1993 LIBEN Frozen egg yolks for human consumption, whether or not sweetened 01/01/1988 31/12/1993 -04081920 01/01/1994 31/12/2500 LIBEN Egg yolks, fresh, cooked by steaming or boiling in water, moulded, frozen or otherwise preserved, whether or not containing added sugar or other sweetening matter, unsuitable for human consumption (excl. dried) 01/01/1994 31/12/2500 -04081981 01/01/1994 31/12/2500 LIBEN Egg yolks, liquid, suitable for human consumption, whether or not containing added sugar or other sweetening matter 01/01/1994 31/12/2500 -04081989 01/01/1994 31/12/2500 LIBEN Egg yolks (other than liquid), frozen or otherwise preserved, suitable for human consumption, whether or not containing added sugar or other sweetening matter (excl. dried) 01/01/1994 31/12/2500 -04081990 01/01/1988 31/12/1993 LIBEN Egg yolks, fresh, cooked by steaming or boiling in water, moulded, frozen or otherwise preserved, whether or not sweetened (excl. dried and for human consumption) 01/01/1988 31/12/1993 -040891 01/01/1988 31/12/2500 LIBEN Dried birds' eggs, not in shell, whether or not sweetened (excl. egg yolks) 01/01/1988 31/12/2500 -04089110 01/01/1988 31/12/1993 LIBEN Dried birds' eggs, not in shell, whether or not sweetened, for human consumption (excl. egg yolks) 01/01/1988 31/12/1993 -04089120 01/01/1994 31/12/2500 LIBEN Dried birds' eggs, not in shell, whether or not containing added sugar or other sweetening matter, not suitable for human consumption (excl. egg yolks) 01/01/1994 31/12/2500 -04089180 01/01/1994 31/12/2500 LIBEN Dried birds' eggs, not in shell, whether or not containing added sugar or other sweetening matter, suitable for human consumption (excl. egg yolks) 01/01/1994 31/12/2500 -04089190 01/01/1988 31/12/1993 LIBEN Dried birds' eggs, not in shell, whether or not sweetened (excl. for human consumption and egg yolks) 01/01/1988 31/12/1993 -040899 01/01/1988 31/12/2500 LIBEN Birds' eggs, not in shell, fresh, cooked by steaming or boiling in water, moulded, frozen or otherwise preserved, whether or not sweetened (excl. dried) 01/01/1988 31/12/2500 -04089910 01/01/1988 31/12/1993 LIBEN Birds' eggs, not in shell, fresh, cooked by steaming or boiling water, moulded, frozen or otherwise preserved, whether or not sweetened, for human consumption (excl. dried) 01/01/1988 31/12/1993 -04089920 01/01/1994 31/12/2500 LIBEN Birds' eggs, not in shell, fresh, cooked by steaming or by boiling in water, moulded, frozen or otherwise preserved, whether or not containing added sugar or other sweetening matter, not suitable for human consumption (excl. dried and egg yolks) 01/01/1994 31/12/2500 -04089980 01/01/1994 31/12/2500 LIBEN Birds' eggs, not in shell, fresh, cooked by steaming or by boiling in water, moulded, frozen or otherwise preserved, whether or not containing added sugar or other sweetening matter, suitable for human consumption (excl. dried and egg yolks) 01/01/1994 31/12/2500 -04089990 01/01/1988 31/12/1993 LIBEN Birds' eggs, not in shell, fresh, cooked by steaming or boiling water, moulded, frozen or otherwise preserved, whether or not sweetened (excl. dried and for human consumption) 01/01/1988 31/12/1993 -0409 01/01/1988 31/12/2500 LIBEN Natural honey 01/01/1988 31/12/2500 -040900 01/01/1988 31/12/2500 LIBEN Natural honey 01/01/1988 31/12/2500 -04090000 01/01/1988 31/12/2500 LIBEN Natural honey 01/01/1988 31/12/2500 -0410 01/01/1988 31/12/2500 LIBEN Turtles' eggs, birds' nests and other edible products of animal origin, n.e.s. 01/01/1988 31/12/2500 -041000 01/01/1988 31/12/2500 LIBEN Turtles' eggs, birds' nests and other edible products of animal origin, n.e.s. 01/01/1988 31/12/2500 -04100000 01/01/1988 31/12/2500 LIBEN Turtles' eggs, birds' nests and other edible products of animal origin, n.e.s. 01/01/1988 31/12/2500 -04CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 04 01/01/2002 31/12/2500 -04CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 04 01/01/2002 31/12/2500 -04CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 04 01/01/2002 31/12/2500 -04MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -04MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -04MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -04SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 04 01/01/1988 31/12/2500 -04SSS0 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 04 and SITC section 0 01/01/1997 31/12/2500 -04SSS022 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 04 and SITC group 022 01/01/1997 31/12/2500 -04SSS023 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 04 and SITC group 023 01/01/1997 31/12/2500 -04SSS024 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 04 and SITC group 024 01/01/1997 31/12/2500 -04SSS025 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 04 and SITC group 025 01/01/1997 31/12/2500 -04SSS061 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 04 and SITC group 061 01/01/1997 31/12/2500 -04SSS098 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 04 and SITC group 098 01/01/1997 31/12/2500 -04SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 04 and SITC section 9 01/01/1988 31/12/1996 -04SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 04 and SITC section 9 01/01/1997 31/12/2500 -04SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 04 and SITC group 999 01/01/1988 31/12/1996 -04SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 04 and SITC group 999 01/01/1997 31/12/2500 -05 01/01/1988 31/12/2500 LIBEN PRODUCTS OF ANIMAL ORIGIN, NOT ELSEWHERE SPECIFIED OR INCLUDED 01/01/1988 31/12/2500 -0501 01/01/1988 31/12/2500 LIBEN Human hair, unworked, whether or not washed or scoured; waste of human hair 01/01/1988 31/12/2500 -050100 01/01/1988 31/12/2500 LIBEN Human hair, unworked, whether or not washed or scoured; waste of human hair 01/01/1988 31/12/2500 -05010000 01/01/1988 31/12/2500 LIBEN Human hair, unworked, whether or not washed or scoured; waste of human hair 01/01/1988 31/12/2500 -0502 01/01/1988 31/12/2500 LIBEN Pigs', hogs' or boars' bristles and hair; badger hair and other brush making hair; waste of such bristles or hair 01/01/1988 31/12/2500 -050210 01/01/1988 31/12/2500 LIBEN Pigs', hogs' or boars' bristles and waste of such bristles 01/01/1988 31/12/2500 -05021000 01/01/1993 31/12/2500 LIBEN Pigs', hogs' or boars' bristles and waste of such bristles 01/01/1993 31/12/2500 -05021010 01/01/1988 31/12/1992 LIBEN Unworked pigs', hogs' or boars' bristles or hair, whether or not washed, degreased or disinfected and waste thereof 01/01/1988 31/12/1992 -05021090 01/01/1988 31/12/1992 LIBEN Pigs', hogs', or boars' bristles or hair, worked 01/01/1988 31/12/1992 -050290 01/01/1988 31/12/2500 LIBEN Badger and other brush making hair and waste thereof 01/01/1988 31/12/2500 -05029000 01/01/1988 31/12/2500 LIBEN Badger and other brush making hair and waste thereof 01/01/1988 31/12/2500 -0503 01/01/1988 31/12/2006 LIBEN Horsehair and horsehair waste, whether or not put up as a layer, with or without supporting material 01/01/1988 31/12/2006 -050300 01/01/1988 31/12/2006 LIBEN Horsehair and horsehair waste, whether or not put up as a layer, with or without supporting material 01/01/1988 31/12/2006 -05030000 01/01/1988 31/12/2006 LIBEN Horsehair and horsehair waste, whether or not put up as a layer, with or without supporting material 01/01/1988 31/12/2006 -0504 01/01/1988 31/12/2500 LIBEN Guts, bladders and stomachs of animals (other than fish), whole and pieces thereof, fresh, chilled, frozen, salted, in brine, dried or smoked 01/01/1988 31/12/2500 -050400 01/01/1988 31/12/2500 LIBEN Guts, bladders and stomachs of animals (other than fish), whole and pieces thereof, fresh, chilled, frozen, salted, in brine, dried or smoked 01/01/1988 31/12/2500 -05040000 01/01/1988 31/12/2500 LIBEN Guts, bladders and stomachs of animals (other than fish), whole and pieces thereof, fresh, chilled, frozen, salted, in brine, dried or smoked 01/01/1988 31/12/2500 -0505 01/01/1988 31/12/2500 LIBEN Skins and other parts of birds, with their feathers or down, feathers and parts of feathers, whether or not with trimmed edges, and down, not further worked than cleaned, disinfected or treated for preservation; powder and waste of feathers or parts of feathers 01/01/1988 31/12/2500 -050510 01/01/1988 31/12/2500 LIBEN Feathers used for stuffing and down, not further worked than cleaned, disinfected or treated for preservation 01/01/1988 31/12/2500 -05051010 01/01/1988 31/12/2500 LIBEN Raw feathers used for stuffing and down, whether or not de-dusted, disinfected or simply cleaned 01/01/1988 31/12/2500 -05051090 01/01/1988 31/12/2500 LIBEN Feathers used for stuffing and down, thoroughly cleaned and treated for preservation 01/01/1988 31/12/2500 -050590 01/01/1988 31/12/2500 LIBEN Skins and other parts of birds, with their feathers or down, feathers and parts of feathers, whether or not with trimmed edges, not further worked than cleaned, disinfected or treated for preservation; powder and waste of feathers or parts of feathers (excl. feathers used for stuffing and down) 01/01/1988 31/12/2500 -05059000 01/01/1988 31/12/2500 LIBEN Skins and other parts of birds, with their feathers or down, feathers and parts of feathers, whether or not with trimmed edges, not further worked than cleaned, disinfected or treated for preservation; powder and waste of feathers or parts of feathers (excl. feathers used for stuffing and down) 01/01/1988 31/12/2500 -0506 01/01/1988 31/12/2500 LIBEN Bones and horn-cores and their powder and waste, unworked, defatted, simply prepared, treated with acid or degelatinised (excl. cut to shape) 01/01/1988 31/12/2500 -050610 01/01/1988 31/12/2500 LIBEN Ossein and bones treated with acid 01/01/1988 31/12/2500 -05061000 01/01/1988 31/12/2500 LIBEN Ossein and bones treated with acid 01/01/1988 31/12/2500 -050690 01/01/1988 31/12/2500 LIBEN Bones and horn-cores and their powder and waste, unworked, defatted, degelatinised or simply prepared (excl. ossein and bones treated with acid and cut to shape) 01/01/1988 31/12/2500 -05069000 01/01/1988 31/12/2500 LIBEN Bones and horn-cores and their powder and waste, unworked, defatted, degelatinised or simply prepared (excl. ossein and bones treated with acid and cut to shape) 01/01/1988 31/12/2500 -0507 01/01/1988 31/12/2500 LIBEN Ivory, tortoiseshell, whalebone and whalebone hair, horns, antlers, hooves, nails, claws and beaks, unworked or simply prepared; powder and waste of these products (excl. cut to shape) 01/01/1988 31/12/2500 -050710 01/01/1988 31/12/2500 LIBEN Ivory, unworked or simply prepared, its powder and waste (excl. cut to shape) 01/01/1988 31/12/2500 -05071000 01/01/1988 31/12/2500 LIBEN Ivory, unworked or simply prepared, its powder and waste (excl. cut to shape) 01/01/1988 31/12/2500 -050790 01/01/1988 31/12/2500 LIBEN Tortoiseshell, whalebone and whalebone hair, horns, antlers, hooves, nails, claws and beaks, unworked or simply prepared, their powder and waste (excl. cut to shape and ivory) 01/01/1988 31/12/2500 -05079000 01/01/1988 31/12/2500 LIBEN Tortoiseshell, whalebone and whalebone hair, horns, antlers, hooves, nails, claws and beaks, unworked or simply prepared, their powder and waste (excl. cut to shape and ivory) 01/01/1988 31/12/2500 -0508 01/01/1988 31/12/2500 LIBEN Coral and similar materials, shells of molluscs, crustaceans or echinoderms, cuttle-bone, powder and waste thereof, unworked or simply prepared but not otherwise worked or cut to shape 01/01/1988 31/12/2500 -050800 01/01/1988 31/12/2500 LIBEN Coral and similar materials, shells of molluscs, crustaceans or echinoderms, cuttle-bone, powder and waste thereof, unworked or simply prepared but not otherwise worked or cut to shape 01/01/1988 31/12/2500 -05080000 01/01/1988 31/12/2020 LIBEN Coral and similar materials, shells of molluscs, crustaceans or echinoderms, cuttle-bone, powder and waste thereof, unworked or simply prepared but not otherwise worked or cut to shape 01/01/1988 31/12/2020 -05080010 01/01/2021 31/12/2500 LIBEN Red coral "Corallium rubrum", unworked or simply prepared but not otherwise worked 01/01/2021 31/12/2500 -05080090 01/01/2021 31/12/2500 LIBEN Coral and similar materials, shells of molluscs, crustaceans or echinoderms, cuttle-bone, powder and waste thereof, unworked or simply prepared but not otherwise worked or cut to shape (excl. red coral) 01/01/2021 31/12/2500 -0509 01/01/1988 31/12/2006 LIBEN Natural sponges of animal origin 01/01/1988 31/12/2006 -050900 01/01/1988 31/12/2006 LIBEN Natural sponges of animal origin 01/01/1988 31/12/2006 -05090010 01/01/1988 31/12/2006 LIBEN Raw natural sponges of animal origin, whether or not washed in saltwater or simply cleaned 01/01/1988 31/12/2006 -05090090 01/01/1988 31/12/2006 LIBEN Natural sponges of animal origin (excl. raw) 01/01/1988 31/12/2006 -0510 01/01/1988 31/12/2500 LIBEN Ambergris, castoreum, civet and musk; cantharides; bile, whether or not dried; glands and other animal products used in the preparation of pharmaceutical products, fresh, chilled, frozen or otherwise provisionally preserved 01/01/1988 31/12/2500 -051000 01/01/1988 31/12/2500 LIBEN Ambergris, castoreum, civet and musk; cantharides; bile, whether or not dried; glands and other animal products used in the preparation of pharmaceutical products, fresh, chilled, frozen or otherwise provisionally preserved 01/01/1988 31/12/2500 -05100000 01/01/1988 31/12/1992 LIBEN Ambergris, castoreum, civet and musk; cantharides; bile, whether or not dried; glands and other animal products used in the preparation of pharmaceutical products, fresh, chilled, frozen or otherwise provisionally preserved 01/01/1988 31/12/1992 -05100000 01/01/1997 31/12/2500 LIBEN Ambergris, castoreum, civet and musk; cantharides; bile, whether or not dried; glands and other animal products used in the preparation of pharmaceutical products, fresh, chilled, frozen or otherwise provisionally preserved 01/01/1997 31/12/2500 -05100010 01/01/1993 31/12/1996 LIBEN Glands and other organs for organo-therapeutic uses, fresh, chilled, frozen or otherwise provisionally preserved 01/01/1993 31/12/1996 -05100090 01/01/1993 31/12/1996 LIBEN Ambergris, castoreum, civet and musk; cantharides; bile, whether or not dried; other animal products used in the preparation of pharmaceutical products, fresh, chilled, frozen or otherwise provisionally preserved (excl. glands and other organs for organo-therapeutic uses) 01/01/1993 31/12/1996 -0511 01/01/1988 31/12/2500 LIBEN Animal products n.e.s.; dead animals of all types, unfit for human consumption 01/01/1988 31/12/2500 -051110 01/01/1988 31/12/2500 LIBEN Bovine semen 01/01/1988 31/12/2500 -05111000 01/01/1988 31/12/2500 LIBEN Bovine semen 01/01/1988 31/12/2500 -051191 01/01/1988 31/12/2500 LIBEN Products of fish or crustaceans, molluscs or other aquatic invertebrates; dead fish, crustaceans, molluscs or other aquatic invertebrates, unfit for human consumption 01/01/1988 31/12/2500 -05119110 01/01/1988 31/12/2500 LIBEN Fish waste 01/01/1988 31/12/2500 -05119190 01/01/1988 31/12/2500 LIBEN Products of fish or crustaceans, molluscs or other aquatic invertebrates (excl. fish waste); dead fish, crustaceans, molluscs or other aquatic invertebrates, unfit for human consumption 01/01/1988 31/12/2500 -051199 01/01/1988 31/12/2500 LIBEN Products of animal origin, n.e.s., dead animals, unfit for human consumption (excl. fish, crustaceans, molluscs or other aquatic invertebrates) 01/01/1988 31/12/2500 -05119910 01/01/1988 31/12/2500 LIBEN Sinews or tendons of animal origin, parings and similar waste of raw hides or skins 01/01/1988 31/12/2500 -05119931 01/01/2007 31/12/2500 LIBEN Raw natural sponges of animal origin 01/01/2007 31/12/2500 -05119939 01/01/2007 31/12/2500 LIBEN Natural sponges of animal origin (excl. raw) 01/01/2007 31/12/2500 -05119950 01/01/1993 31/12/2000 LIBEN Embryos of bovine animals 01/01/1993 31/12/2000 -05119980 01/01/1993 31/12/2000 LIBEN Animal products, n.e.s.; dead animals, unfit for human consumption (excl. fish, crustaceans, molluscs and other aquatic invertebrates) 01/01/1993 31/12/2000 -05119985 01/01/2007 31/12/2500 LIBEN Animal products, n.e.s.; dead animals, unfit for human consumption (excl. fish, crustaceans, molluscs and other aquatic invertebrates) 01/01/2007 31/12/2500 -05119990 01/01/1988 31/12/1992 LIBEN Products of animal origin n.e.s., dead animals, unfit for human consumption (excl. fish, crustaceans, molluscs or other aquatic invertebrates) 01/01/1988 31/12/1992 -05119990 01/01/2001 31/12/2006 LIBEN Animal products, n.e.s.; dead animals, unfit for human consumption (excl. fish, crustaceans, molluscs and other aquatic invertebrates) 01/01/2001 31/12/2006 -05CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 05 01/01/2002 31/12/2500 -05CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 05 01/01/2002 31/12/2500 -05CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 05 01/01/2002 31/12/2500 -05MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -05MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -05MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -05SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 05 01/01/1988 31/12/2500 -05SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 05 and SITC section 0 01/01/1997 31/12/2001 -05SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 05 and SITC group 000 01/01/1997 31/12/2001 -05SSS2 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 05 and SITC section 2 01/01/1992 31/12/2500 -05SSS268 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 05 and SITC group 268 01/01/1997 31/12/2500 -05SSS291 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 05 and SITC group 291 01/01/1992 31/12/2500 -05SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 05 and SITC section 9 01/01/1988 31/12/1996 -05SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 05 and SITC section 9 01/01/1997 31/12/2500 -05SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 05 and SITC group 999 01/01/1988 31/12/1996 -05SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 05 and SITC group 999 01/01/1997 31/12/2500 -06 01/01/1988 31/12/2500 LIBEN LIVE TREES AND OTHER PLANTS; BULBS, ROOTS AND THE LIKE; CUT FLOWERS AND ORNAMENTAL FOLIAGE 01/01/1988 31/12/2500 -0601 01/01/1988 31/12/2500 LIBEN Bulbs, tubers, tuberous roots, corms, crowns and rhizomes, dormant, in growth or in flower, chicory plants and roots (excl. bulbs, tubers and tuberous roots used for human consumption and chicory roots of the variety cichorium intybus sativum) 01/01/1988 31/12/2500 -060110 01/01/1988 31/12/2500 LIBEN Bulbs, tubers, tuberous roots, corms, crowns and rhizomes, dormant (excl. those used for human consumption and chicory plants and roots) 01/01/1988 31/12/2500 -06011010 01/01/1988 31/12/2500 LIBEN Dormant hyacinth bulbs 01/01/1988 31/12/2500 -06011020 01/01/1988 31/12/2500 LIBEN Dormant narcissi bulbs 01/01/1988 31/12/2500 -06011030 01/01/1988 31/12/2500 LIBEN Dormant tulip bulbs 01/01/1988 31/12/2500 -06011040 01/01/1988 31/12/2500 LIBEN Dormant gladioli bulbs 01/01/1988 31/12/2500 -06011090 01/01/1988 31/12/2500 LIBEN Dormant bulbs, tubers, tuberous roots, corms, crowns and rhizomes (excl. those used for human consumption, hyacinth, narcissi, tulip, gladioli and chicory plants and roots) 01/01/1988 31/12/2500 -060120 01/01/1988 31/12/2500 LIBEN Bulbs, tubers, tuberous roots, corms, crowns and rhizomes, in growth or in flower; chicory plants and roots (excl. those used for human consumption and chicory roots of the variety cichorium intybus sativum) 01/01/1988 31/12/2500 -06012010 01/01/1988 31/12/2500 LIBEN Chicory plants and roots (excl. chicory roots of the variety cichorium intybus sativum) 01/01/1988 31/12/2500 -06012030 01/01/1988 31/12/2500 LIBEN Orchid, hyacinth, narcissi and tulip bulbs, in growth or in flower 01/01/1988 31/12/2500 -06012090 01/01/1988 31/12/2500 LIBEN Bulbs, tubers, tuberous roots, corms, crowns and rhizomes, in growth or in flower (excl. those used for human consumption, orchids, hyacinths, narcissi, tulips and chicory plants and roots) 01/01/1988 31/12/2500 -0602 01/01/1988 31/12/2500 LIBEN Live plants incl. their roots, cuttings and slips; mushroom spawn (excl. bulbs, tubers, tuberous roots, corms, crowns and rhizomes, and chicory plants and roots) 01/01/1988 31/12/2500 -060210 01/01/1988 31/12/2500 LIBEN Unrooted cuttings and slips 01/01/1988 31/12/2500 -06021010 01/01/1988 31/12/2500 LIBEN Unrooted vine cuttings and slips 01/01/1988 31/12/2500 -06021090 01/01/1988 31/12/2500 LIBEN Unrooted cuttings and slips (excl. vines) 01/01/1988 31/12/2500 -060220 01/01/1988 31/12/2500 LIBEN Edible fruit or nut trees, shrubs and bushes, whether or not grafted 01/01/1988 31/12/2500 -06022010 01/01/1988 31/12/2500 LIBEN Vine slips, grafted or rooted 01/01/1988 31/12/2500 -06022020 01/01/2016 31/12/2500 LIBEN Trees, shrubs and bushes, with bare roots, grafted or not, of kinds which bear edible fruit or nuts (excl. vine slips) 01/01/2016 31/12/2500 -06022030 01/01/2016 31/12/2500 LIBEN Citrus trees and shrubs, grafted or not (excl. with bare roots) 01/01/2016 31/12/2500 -06022080 01/01/2016 31/12/2500 LIBEN Trees, shrubs and bushes, grafted or not, of kinds which bear edible fruit or nuts (excl. with bare roots, citrus, and vine slips) 01/01/2016 31/12/2500 -06022090 01/01/1993 31/12/2015 LIBEN Trees, shrubs and bushes, grafted or not, of kinds which bear edible fruit or nuts (excl. vine slips) 01/01/1993 31/12/2015 -06022091 01/01/1988 31/12/1992 LIBEN Trees, shrubs and bushes of kinds which bear edible fruit or nuts (excl. grafted or budded and vines) 01/01/1988 31/12/1992 -06022099 01/01/1988 31/12/1992 LIBEN Trees, shrubs and bushes of kinds which bear edible fruit or nuts, budded or grafted (excl. vines) 01/01/1988 31/12/1992 -060230 01/01/1988 31/12/2500 LIBEN Rhododendrons and azaleas, grafted or not 01/01/1988 31/12/2500 -06023000 01/01/1993 31/12/2500 LIBEN Rhododendrons and azaleas, grafted or not 01/01/1993 31/12/2500 -06023010 01/01/1988 31/12/1992 LIBEN Rhododendrons simsii 'azalea indica', whether or not grafted 01/01/1988 31/12/1992 -06023090 01/01/1988 31/12/1992 LIBEN Rhododendrons and azaleas, whether or not grafted (excl. rhododendrons simsii) 01/01/1988 31/12/1992 -060240 01/01/1988 31/12/2500 LIBEN Roses, whether or not grafted 01/01/1988 31/12/2500 -06024000 01/01/2008 31/12/2500 LIBEN Roses, whether or not grafted 01/01/2008 31/12/2500 -06024010 01/01/1993 31/12/2007 LIBEN Roses (excl. budded or grafted) 01/01/1993 31/12/2007 -06024011 01/01/1988 31/12/1992 LIBEN Roses with stock diameter of =< 10 mm (excl. budded or grafted) 01/01/1988 31/12/1992 -06024019 01/01/1988 31/12/1992 LIBEN Roses with stock diameter of > 10 mm (excl. budded or grafted) 01/01/1988 31/12/1992 -06024090 01/01/1988 31/12/2007 LIBEN Budded or grafted roses 01/01/1988 31/12/2007 -060290 01/01/1996 31/12/2500 LIBEN Live plants, incl. their roots, and mushroom spawn (excl. bulbs, tubers, tuberous roots, corms, crowns and rhizomes, incl. chicory plants and roots, unrooted cuttings and slips, fruit and nut trees, rhododendrons, azaleas and roses) 01/01/1996 31/12/2500 -06029010 01/01/1996 31/12/2500 LIBEN Mushroom spawn 01/01/1996 31/12/2500 -06029020 01/01/1996 31/12/2500 LIBEN Pineapple plants 01/01/1996 31/12/2500 -06029030 01/01/1996 31/12/2500 LIBEN Vegetable and strawberry plants 01/01/1996 31/12/2500 -06029041 01/01/1996 31/12/2500 LIBEN Live forest trees 01/01/1996 31/12/2500 -06029045 01/01/1996 31/12/2500 LIBEN Outdoor rooted cuttings and young plants of trees, shrubs and bushes (excl. fruit, nut and forest trees) 01/01/1996 31/12/2500 -06029046 01/01/2016 31/12/2500 LIBEN Outdoor trees, shrubs and bushes, incl. their roots, with bare roots (excl. cuttings, slips and young plants, and fruit, nut and forest trees) 01/01/2016 31/12/2500 -06029047 01/01/2016 31/12/2500 LIBEN Conifer and evergreen outdoor trees, shrubs and bushes, incl. their roots (excl. with bare roots, cuttings, slips, young plants and fruit, nut and forest trees) 01/01/2016 31/12/2500 -06029048 01/01/2016 31/12/2500 LIBEN Outdoor trees, shrubs and bushes, incl. their roots (excl. with bare roots, cuttings, slips, young plants, conifers, evergreens and fruit, nut and forest trees) 01/01/2016 31/12/2500 -06029049 01/01/1996 31/12/2015 LIBEN Outdoor trees, shrubs and bushes, incl. their roots (excl. cuttings, slips and young plants, and fruit, nut and forest trees) 01/01/1996 31/12/2015 -06029050 01/01/2008 31/12/2500 LIBEN Live outdoor plants, incl. their roots (excl. bulbs, tubers, tuberous roots, corms, crowns and rhizomes, incl. chicory plants and roots, unrooted cuttings, slips, rhododendrons, azaleas, roses, mushroom spawn, pineapple plants, vegetable and strawberry plants, trees, shrubs and bushes) 01/01/2008 31/12/2500 -06029051 01/01/1996 31/12/2007 LIBEN Perennial outdoor plants 01/01/1996 31/12/2007 -06029059 01/01/1996 31/12/2007 LIBEN Live outdoor plants, incl. their roots (excl. bulbs, tubers, tuberous roots, corms, crowns and rhizomes, incl. chicory plants and roots, unrooted cuttings, slips, rhododendrons, azaleas, roses, mushroom spawn, pineapple plants, vegetable and strawberry plants, trees, shrubs and bushes) 01/01/1996 31/12/2007 -06029070 01/01/1996 31/12/2500 LIBEN Indoor rooted cuttings and young plants (excl. cacti) 01/01/1996 31/12/2500 -06029091 01/01/1996 31/12/2500 LIBEN Indoor flowering plants with buds or flowers (excl. cacti) 01/01/1996 31/12/2500 -06029099 01/01/1996 31/12/2500 LIBEN Live indoor plants and cacti (excl. rooted cuttings, young plants and flowering plants with buds or flowers) 01/01/1996 31/12/2500 -060291 01/01/1988 31/12/1995 LIBEN Mushroom spawn 01/01/1988 31/12/1995 -06029100 01/01/1988 31/12/1995 LIBEN Mushroom spawn 01/01/1988 31/12/1995 -060299 01/01/1988 31/12/1995 LIBEN Live plants incl. their roots (excl. bulbs, tubers, tuberous roots, corms, crowns and rhizomes, incl. chicory plants and roots, unrooted cuttings and slips, fruit and nut trees, rhododendrons, roses and mushroom spawn) 01/01/1988 31/12/1995 -06029910 01/01/1988 31/12/1995 LIBEN Pineapple plants 01/01/1988 31/12/1995 -06029930 01/01/1988 31/12/1995 LIBEN Vegetable and strawberry plants 01/01/1988 31/12/1995 -06029941 01/01/1988 31/12/1995 LIBEN Live forest trees 01/01/1988 31/12/1995 -06029945 01/01/1988 31/12/1995 LIBEN Outdoor rooted cuttings and young plants of trees, shrubs and bushes (excl. fruit, nut and forest trees) 01/01/1988 31/12/1995 -06029949 01/01/1988 31/12/1995 LIBEN Outdoor trees, shrubs and bushes, incl. their roots (excl. cuttings, slips and young plants, and fruit, nut and forest trees) 01/01/1988 31/12/1995 -06029951 01/01/1988 31/12/1995 LIBEN Perennial outdoor plants 01/01/1988 31/12/1995 -06029959 01/01/1988 31/12/1995 LIBEN Live perennial outdoor plants incl. their roots n.e.s. 01/01/1988 31/12/1995 -06029970 01/01/1988 31/12/1995 LIBEN Indoor rooted cuttings and young plants (excl. cacti) 01/01/1988 31/12/1995 -06029991 01/01/1988 31/12/1995 LIBEN Indoor flowering plants with buds or flowers (excl. cacti) 01/01/1988 31/12/1995 -06029999 01/01/1988 31/12/1995 LIBEN Live indoor plants and cacti (excl. rooted cuttings, young plants and flowering plants with buds or flowers) 01/01/1988 31/12/1995 -0603 01/01/1988 31/12/2500 LIBEN Cut flowers and flower buds of a kind suitable for bouquets or for ornamental purposes, fresh, dried, dyed, bleached, impregnated or otherwise prepared 01/01/1988 31/12/2500 -060310 01/01/1988 31/12/2006 LIBEN Fresh cut flowers and flower buds, for bouquets or for ornamental purposes 01/01/1988 31/12/2006 -06031010 01/01/2000 31/12/2006 LIBEN Fresh cut roses and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/2000 31/12/2006 -06031011 01/01/1988 31/12/1999 LIBEN Fresh cut roses and buds from 1 June to 31 October, of a kind suitable for bouquets or for ornamental purposes 01/01/1988 31/12/1999 -06031013 01/01/1988 31/12/1999 LIBEN Fresh cut carnations and buds from 1 June to 31 October, of a kind suitable for bouquets or for ornamental purposes 01/01/1988 31/12/1999 -06031015 01/01/1988 31/12/1999 LIBEN Fresh cut orchids and buds from 1 June to 31 October, of a kind suitable for bouquets or for ornamental purposes 01/01/1988 31/12/1999 -06031020 01/01/2000 31/12/2006 LIBEN Fresh cut carnations and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/2000 31/12/2006 -06031021 01/01/1988 31/12/1999 LIBEN Fresh cut gladioli and buds from 1 June to 31 October, of a kind suitable for bouquets or for ornamental purposes 01/01/1988 31/12/1999 -06031025 01/01/1988 31/12/1999 LIBEN Fresh cut chrysanthemums and buds from 1 June to 31 October, of a kind suitable for bouquets or for ornamental purposes 01/01/1988 31/12/1999 -06031029 01/01/1988 31/12/1999 LIBEN Fresh cut flowers and buds, from 1 June to 31 October, of a kind suitable for bouquets or for ornamental purposes (excl. roses, carnations, orchids, gladioli and chrysanthemums) 01/01/1988 31/12/1999 -06031030 01/01/2000 31/12/2006 LIBEN Fresh cut orchids and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/2000 31/12/2006 -06031040 01/01/2000 31/12/2006 LIBEN Fresh cut gladioli and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/2000 31/12/2006 -06031050 01/01/2000 31/12/2006 LIBEN Fresh cut chrysanthemums and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/2000 31/12/2006 -06031051 01/01/1988 31/12/1999 LIBEN Fresh cut roses and buds from 1 November to 31 May, of a kind suitable for bouquets or for ornamental purposes 01/01/1988 31/12/1999 -06031053 01/01/1988 31/12/1999 LIBEN Fresh cut carnations and buds from 1 November to 31 May, of a kind suitable for bouquets or for ornamental purposes 01/01/1988 31/12/1999 -06031055 01/01/1988 31/12/1999 LIBEN Fresh cut orchids and buds from 1 November to 31 May, of a kind suitable for bouquets or for ornamental purposes 01/01/1988 31/12/1999 -06031061 01/01/1988 31/12/1999 LIBEN Fresh cut gladioli and buds from 1 November to 31 May, of a kind suitable for bouquets or for ornamental purposes 01/01/1988 31/12/1999 -06031065 01/01/1988 31/12/1999 LIBEN Fresh cut chrysanthemums and buds from 1 November to 31 May, of a kind suitable for bouquets or for ornamental purposes 01/01/1988 31/12/1999 -06031069 01/01/1988 31/12/1999 LIBEN Fresh cut flowers and buds from 1 November to 31 May, of a kind suitable for bouquets or for ornamental purposes (excl. roses, carnations, orchids, gladioli and chrysanthemums) 01/01/1988 31/12/1999 -06031080 01/01/2000 31/12/2006 LIBEN Fresh cut flowers and buds, of a kind suitable for bouquets or for ornamental purposes (excl. roses, carnations, orchids, gladioli and chrysanthemums) 01/01/2000 31/12/2006 -060311 01/01/2007 31/12/2500 LIBEN Fresh cut roses and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/2007 31/12/2500 -06031100 01/01/2007 31/12/2500 LIBEN Fresh cut roses and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/2007 31/12/2500 -060312 01/01/2007 31/12/2500 LIBEN Fresh cut carnations and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/2007 31/12/2500 -06031200 01/01/2007 31/12/2500 LIBEN Fresh cut carnations and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/2007 31/12/2500 -060313 01/01/2007 31/12/2500 LIBEN Fresh cut orchids and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/2007 31/12/2500 -06031300 01/01/2007 31/12/2500 LIBEN Fresh cut orchids and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/2007 31/12/2500 -060314 01/01/2007 31/12/2500 LIBEN Fresh cut chrysanthemums and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/2007 31/12/2500 -06031400 01/01/2007 31/12/2500 LIBEN Fresh cut chrysanthemums and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/2007 31/12/2500 -060315 01/01/2012 31/12/2500 LIBEN Fresh cut lilies "Lilium spp." and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/2012 31/12/2500 -06031500 01/01/2012 31/12/2500 LIBEN Fresh cut lilies "Lilium spp." and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/2012 31/12/2500 -060319 01/01/2007 31/12/2500 LIBEN Fresh cut flowers and buds, of a kind suitable for bouquets or for ornamental purposes (excl. roses, carnations, orchids, chrysanthemums and lilies) 01/01/2007 31/12/2500 -06031910 01/01/2007 31/12/2500 LIBEN Fresh cut gladioli and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/2007 31/12/2500 -06031920 01/01/2016 31/12/2500 LIBEN Fresh cut ranunculi and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/2016 31/12/2500 -06031970 01/01/2016 31/12/2500 LIBEN Fresh cut flowers and buds, of a kind suitable for bouquets or for ornamental purposes (excl. roses, carnations, orchids, gladioli, ranunculi, chrysanthemums and lilies) 01/01/2016 31/12/2500 -06031980 01/01/2012 31/12/2015 LIBEN Fresh cut flowers and buds, of a kind suitable for bouquets or for ornamental purposes (excl. roses, carnations, orchids, gladioli, chrysanthemums and lilies) 01/01/2012 31/12/2015 -06031990 01/01/2007 31/12/2011 LIBEN Fresh cut flowers and buds, of a kind suitable for bouquets or for ornamental purposes (excl. roses, carnations, orchids, gladioli and chrysanthemums) 01/01/2007 31/12/2011 -060390 01/01/1988 31/12/2500 LIBEN Dried, dyed, bleached, impregnated or otherwise prepared cut flowers and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/1988 31/12/2500 -06039000 01/01/1988 31/12/2500 LIBEN Dried, dyed, bleached, impregnated or otherwise prepared cut flowers and buds, of a kind suitable for bouquets or for ornamental purposes 01/01/1988 31/12/2500 -0604 01/01/1988 31/12/2500 LIBEN Foliage, branches and other parts of plants, without flowers or flower buds, and grasses, mosses and lichens, of a kind suitable for bouquets or for ornamental purposes, fresh, dried, dyed, bleached, impregnated or otherwise prepared 01/01/1988 31/12/2500 -060410 01/01/1988 31/12/2011 LIBEN Mosses and lichens for bouquets or for ornamental purposes, fresh, dried, dyed, bleached, impregnated or otherwise prepared 01/01/1988 31/12/2011 -06041010 01/01/1988 31/12/2011 LIBEN Reindeer moss, for bouquets or ornamental purposes, fresh, dried, dyed, bleached, impregnated or otherwise prepared 01/01/1988 31/12/2011 -06041090 01/01/1988 31/12/2011 LIBEN Mosses and lichens, for bouquets or ornamental purposes, fresh, dried, dyed, bleached, impregnated or otherwise prepared (excl. reindeer moss) 01/01/1988 31/12/2011 -060420 01/01/2012 31/12/2500 LIBEN Foliage, branches and other parts of plants, without flowers or flower buds, and grasses, mosses and lichens, being goods of a kind suitable for bouquets or for ornamental purposes, fresh 01/01/2012 31/12/2500 -06042011 01/01/2012 31/12/2500 LIBEN Reindeer moss, suitable for bouquets or ornamental purposes, fresh 01/01/2012 31/12/2500 -06042019 01/01/2012 31/12/2500 LIBEN Mosses and lichens, suitable for bouquets or ornamental purposes, fresh (excl. reindeer moss) 01/01/2012 31/12/2500 -06042020 01/01/2012 31/12/2500 LIBEN Fresh Christmas trees 01/01/2012 31/12/2500 -06042040 01/01/2012 31/12/2500 LIBEN Fresh conifer branches, suitable for bouquets or ornamental purposes 01/01/2012 31/12/2500 -06042090 01/01/2012 31/12/2500 LIBEN Foliage, branches and other parts of plants, without flowers or flower buds, and grasses, fresh, suitable for bouquets or ornamental purposes (excl. Christmas trees and conifer branches) 01/01/2012 31/12/2500 -060490 01/01/2012 31/12/2500 LIBEN Foliage, branches and other parts of plants, without flowers or flower buds, and grasses, mosses and lichens, being goods of a kind suitable for bouquets or for ornamental purposes, dried, dyed, bleached, impregnated or otherwise prepared 01/01/2012 31/12/2500 -06049011 01/01/2012 31/12/2500 LIBEN Reindeer moss, suitable for bouquets or ornamental purposes, dried, dyed, bleached, impregnated or otherwise prepared 01/01/2012 31/12/2500 -06049019 01/01/2012 31/12/2500 LIBEN Mosses and lichens, suitable for bouquets or ornamental purposes, dried, dyed, bleached, impregnated or otherwise prepared (excl. reindeer moss) 01/01/2012 31/12/2500 -06049091 01/01/2012 31/12/2500 LIBEN Foliage, branches and other parts of plants, without flowers or flower buds, and grasses, suitable for bouquets or ornamental purposes, dried 01/01/2012 31/12/2500 -06049099 01/01/2012 31/12/2500 LIBEN Foliage, branches and other parts of plants, without flowers or buds, and grasses, suitable for bouquets or for ornamental purposes, dyed, bleached, impregnated or otherwise prepared (excl. dried) 01/01/2012 31/12/2500 -060491 01/01/1988 31/12/2011 LIBEN Foliage, branches and other parts of plants, without flowers or flower buds, grasses, fresh, for bouquets or ornamental purposes 01/01/1988 31/12/2011 -06049110 01/01/1988 31/12/1993 LIBEN Fresh Christmas trees and conifer branches, for bouquets or ornamental purposes 01/01/1988 31/12/1993 -06049120 01/01/2005 31/12/2011 LIBEN Fresh Christmas trees 01/01/2005 31/12/2011 -06049121 01/01/1994 31/12/2004 LIBEN Nordmann's firs [Abies nordmanniana [Stev.] Spach] and noble firs [Abies procera Rehd.], as Christmas trees, fresh 01/01/1994 31/12/2004 -06049129 01/01/1994 31/12/2004 LIBEN Fresh Christmas trees (excl. fir trees [Abies nordmanniana [Stev.] Spach] and noble firs [Abies procera Rehd.]) 01/01/1994 31/12/2004 -06049140 01/01/2005 31/12/2011 LIBEN Fresh conifer branches, for bouquets or ornamental purposes 01/01/2005 31/12/2011 -06049141 01/01/1994 31/12/2004 LIBEN Fresh branches of Nordmann's firs [Abies nordmanniana [Stev.] Spach] and noble firs [Abies procera Rehd.], for ornamental purposes 01/01/1994 31/12/2004 -06049149 01/01/1994 31/12/2004 LIBEN Fresh branches of conifers, for bouquets or ornamental purposes (excl. fir trees [Abies nordmanniana [Stev.] Spach] and noble firs [Abies procera Rehd.]) 01/01/1994 31/12/2004 -06049190 01/01/1988 31/12/2011 LIBEN Foliage, branches and other parts of plants, without flowers or flower buds, grasses, fresh, for bouquets or ornamental purposes (excl. Christmas trees and conifer branches) 01/01/1988 31/12/2011 -060499 01/01/1988 31/12/2011 LIBEN Foliage, branches and other parts of plants, without flowers or flower buds, grasses, for bouquets or ornamental purposes, dried, dyed, bleached, impregnated or otherwise prepared 01/01/1988 31/12/2011 -06049910 01/01/1988 31/12/2011 LIBEN Dried foliage, branches and other parts of plants, without flowers or flower buds, grasses, for bouquets or ornamental purposes 01/01/1988 31/12/2011 -06049990 01/01/1988 31/12/2011 LIBEN Dyed, bleached, impregnated or otherwise prepared foliage, branches and other parts of plants, without flowers or buds, grasses, for bouquets or for ornamental purposes (excl. dried) 01/01/1988 31/12/2011 -06CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 06 01/01/2002 31/12/2500 -06CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 06 01/01/2002 31/12/2500 -06CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 06 01/01/2002 31/12/2500 -06MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -06MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -06MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -06SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 06 01/01/1988 31/12/2500 -06SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 06 and SITC section 2 01/01/1997 31/12/2500 -06SSS292 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 06 and SITC group 292 01/01/1997 31/12/2500 -06SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 06 and SITC section 9 01/01/1988 31/12/1996 -06SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 06 and SITC section 9 01/01/1997 31/12/2500 -06SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 06 and SITC group 999 01/01/1988 31/12/1996 -06SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 06 and SITC group 999 01/01/1997 31/12/2500 -07 01/01/1988 31/12/2500 LIBEN EDIBLE VEGETABLES AND CERTAIN ROOTS AND TUBERS 01/01/1988 31/12/2500 -0701 01/01/1988 31/12/2500 LIBEN Potatoes, fresh or chilled 01/01/1988 31/12/2500 -070110 01/01/1988 31/12/2500 LIBEN Seed potatoes 01/01/1988 31/12/2500 -07011000 01/01/1988 31/12/2500 LIBEN Seed potatoes 01/01/1988 31/12/2500 -070190 01/01/1988 31/12/2500 LIBEN Fresh or chilled potatoes (excl. seed) 01/01/1988 31/12/2500 -07019010 01/01/1988 31/12/2500 LIBEN Potatoes for manufacture of starch, fresh or chilled 01/01/1988 31/12/2500 -07019050 01/01/2000 31/12/2500 LIBEN Fresh or chilled new potatoes from 1 January to 30 June 01/01/2000 31/12/2500 -07019051 01/01/1988 31/12/1999 LIBEN New potatoes from 1 January to 15 May, fresh or chilled 01/01/1988 31/12/1999 -07019059 01/01/1988 31/12/1999 LIBEN New potatoes from 16 May to 30 June, fresh or chilled 01/01/1988 31/12/1999 -07019090 01/01/1988 31/12/2500 LIBEN Potatoes, fresh or chilled (excl. new potatoes from 1 January to 30 June, seed potatoes and potatoes for manufacture of starch) 01/01/1988 31/12/2500 -0702 01/01/1988 31/12/2500 LIBEN Tomatoes, fresh or chilled 01/01/1988 31/12/2500 -070200 01/01/1988 31/12/2500 LIBEN Tomatoes, fresh or chilled 01/01/1988 31/12/2500 -07020000 01/01/1998 31/12/2500 LIBEN Tomatoes, fresh or chilled 01/01/1998 31/12/2500 -07020010 01/01/1988 31/12/1994 LIBEN Tomatoes from 1 November to 14 May, fresh or chilled 01/01/1988 31/12/1994 -07020015 01/01/1995 31/12/1997 LIBEN Tomatoes from 1 January to 31 March, fresh or chilled 01/01/1995 31/12/1997 -07020020 01/01/1995 31/12/1997 LIBEN Tomatoes from 1 to 30 April, fresh or chilled 01/01/1995 31/12/1997 -07020025 01/01/1995 31/12/1997 LIBEN Tomatoes from 1 to 14 May, fresh or chilled 01/01/1995 31/12/1997 -07020030 01/01/1995 31/12/1997 LIBEN Tomatoes from 15 to 31 May, fresh or chilled 01/01/1995 31/12/1997 -07020035 01/01/1995 31/12/1997 LIBEN Tomatoes from 1 June to 30 September, fresh or chilled 01/01/1995 31/12/1997 -07020040 01/01/1995 31/12/1997 LIBEN Tomatoes from 1 to 31 October, fresh or chilled 01/01/1995 31/12/1997 -07020045 01/01/1995 31/12/1997 LIBEN Tomatoes from 1 November to 20 December, fresh or chilled 01/01/1995 31/12/1997 -07020050 01/01/1995 31/12/1997 LIBEN Tomatoes from 21 to 31 December, fresh or chilled 01/01/1995 31/12/1997 -07020090 01/01/1988 31/12/1994 LIBEN Tomatoes from 15 May to 31 October, fresh or chilled 01/01/1988 31/12/1994 -0703 01/01/1988 31/12/2500 LIBEN Onions, shallots, garlic, leeks and other alliaceous vegetables, fresh or chilled 01/01/1988 31/12/2500 -070310 01/01/1988 31/12/2500 LIBEN Fresh or chilled onions and shallots 01/01/1988 31/12/2500 -07031011 01/01/1988 31/12/2500 LIBEN Onion sets, fresh or chilled 01/01/1988 31/12/2500 -07031019 01/01/1988 31/12/2500 LIBEN Onions, fresh or chilled (excl. sets) 01/01/1988 31/12/2500 -07031090 01/01/1988 31/12/2500 LIBEN Shallots, fresh or chilled 01/01/1988 31/12/2500 -070320 01/01/1988 31/12/2500 LIBEN Garlic, fresh or chilled 01/01/1988 31/12/2500 -07032000 01/01/1988 31/12/2500 LIBEN Garlic, fresh or chilled 01/01/1988 31/12/2500 -070390 01/01/1988 31/12/2500 LIBEN Leeks and other alliaceous vegetables, fresh or chilled (excl. onions, shallots and garlic) 01/01/1988 31/12/2500 -07039000 01/01/1988 31/12/2500 LIBEN Leeks and other alliaceous vegetables, fresh or chilled (excl. onions, shallots and garlic) 01/01/1988 31/12/2500 -0704 01/01/1988 31/12/2500 LIBEN Cabbages, cauliflowers, kohlrabi, kale and similar edible brassicas, fresh or chilled 01/01/1988 31/12/2500 -070410 01/01/1988 31/12/2500 LIBEN Fresh or chilled cauliflowers and headed broccoli 01/01/1988 31/12/2500 -07041000 01/01/2000 31/12/2500 LIBEN Fresh or chilled cauliflowers and headed broccoli 01/01/2000 31/12/2500 -07041005 01/01/1996 31/12/1999 LIBEN Fresh or chilled cauliflowers from 1 January to 14 April 01/01/1996 31/12/1999 -07041010 01/01/1988 31/12/1999 LIBEN Cauliflowers and headed broccoli from 15 April to 30 November, fresh or chilled 01/01/1988 31/12/1999 -07041080 01/01/1996 31/12/1999 LIBEN Fresh or chilled cauliflowers from 1 to 31 December 01/01/1996 31/12/1999 -07041090 01/01/1988 31/12/1995 LIBEN Cauliflowers and headed broccoli from 1 December to 14 April, fresh or chilled 01/01/1988 31/12/1995 -070420 01/01/1988 31/12/2500 LIBEN Brussels sprouts, fresh or chilled 01/01/1988 31/12/2500 -07042000 01/01/1988 31/12/2500 LIBEN Brussels sprouts, fresh or chilled 01/01/1988 31/12/2500 -070490 01/01/1988 31/12/2500 LIBEN Fresh or chilled cabbages, kohlrabi, kale and similar edible brassicas (excl. cauliflowers, headed broccoli and Brussels sprouts) 01/01/1988 31/12/2500 -07049010 01/01/1988 31/12/2500 LIBEN White and red cabbages, fresh or chilled 01/01/1988 31/12/2500 -07049090 01/01/1988 31/12/2500 LIBEN Kohlrabi, kale and similar edible brassicas, fresh or chilled (excl. cauliflowers, headed broccoli, Brussels sprouts, white and red cabbages) 01/01/1988 31/12/2500 -0705 01/01/1988 31/12/2500 LIBEN Lettuce "Lactuca sativa" and chicory "Cichorium spp.", fresh or chilled 01/01/1988 31/12/2500 -070511 01/01/1988 31/12/2500 LIBEN Fresh or chilled cabbage lettuce 01/01/1988 31/12/2500 -07051100 01/01/2000 31/12/2500 LIBEN Fresh or chilled cabbage lettuce 01/01/2000 31/12/2500 -07051105 01/01/1996 31/12/1999 LIBEN Fresh or chilled cabbage lettuce from 1 January to 31 March 01/01/1996 31/12/1999 -07051110 01/01/1988 31/12/1999 LIBEN Fresh or chilled cabbage lettuce from 1 April to 30 November 01/01/1988 31/12/1999 -07051180 01/01/1996 31/12/1999 LIBEN Fresh or chilled cabbage lettuce from 1 to 31 December 01/01/1996 31/12/1999 -07051190 01/01/1988 31/12/1995 LIBEN Fresh or chilled cabbage lettuce from 1 December to 31 March 01/01/1988 31/12/1995 -070519 01/01/1988 31/12/2500 LIBEN Fresh or chilled lettuce (excl. cabbage lettuce) 01/01/1988 31/12/2500 -07051900 01/01/1988 31/12/2500 LIBEN Fresh or chilled lettuce (excl. cabbage lettuce) 01/01/1988 31/12/2500 -070521 01/01/1988 31/12/2500 LIBEN Fresh or chilled witloof chicory 01/01/1988 31/12/2500 -07052100 01/01/1988 31/12/2500 LIBEN Fresh or chilled witloof chicory 01/01/1988 31/12/2500 -070529 01/01/1988 31/12/2500 LIBEN Fresh or chilled chicory (excl. witloof chicory) 01/01/1988 31/12/2500 -07052900 01/01/1988 31/12/2500 LIBEN Fresh or chilled chicory (excl. witloof chicory) 01/01/1988 31/12/2500 -0706 01/01/1988 31/12/2500 LIBEN Carrots, turnips, salad beetroot, salsify, celeriac, radishes and similar edible roots, fresh or chilled 01/01/1988 31/12/2500 -070610 01/01/1988 31/12/2500 LIBEN Fresh or chilled carrots and turnips 01/01/1988 31/12/2500 -07061000 01/01/1988 31/12/2500 LIBEN Fresh or chilled carrots and turnips 01/01/1988 31/12/2500 -070690 01/01/1988 31/12/2500 LIBEN Fresh or chilled salad beetroot, salsify, celeriac, radishes and similar edible roots (excl. carrots and turnips) 01/01/1988 31/12/2500 -07069005 01/01/1996 31/12/1999 LIBEN Fresh or chilled celeriac "rooted celery or German celery", from 1 January to 30 April 01/01/1996 31/12/1999 -07069010 01/01/2000 31/12/2500 LIBEN Fresh or chilled celeriac "rooted celery or German celery" 01/01/2000 31/12/2500 -07069011 01/01/1988 31/12/1999 LIBEN Fresh or chilled celeriac from 1 May to 30 September 01/01/1988 31/12/1999 -07069017 01/01/1996 31/12/1999 LIBEN Fresh or chilled celeriac "rooted celery or German celery", from 1 October to 31 December 01/01/1996 31/12/1999 -07069019 01/01/1988 31/12/1995 LIBEN Fresh or chilled celeriac from 1 October to 30 April 01/01/1988 31/12/1995 -07069030 01/01/1988 31/12/2500 LIBEN Fresh or chilled horse-radish "Cochlearia armoracia" 01/01/1988 31/12/2500 -07069090 01/01/1988 31/12/2500 LIBEN Fresh or chilled salad beetroot, salsify, radishes and similar edible roots (excl. carrots, turnips, celeriac and horse-radish) 01/01/1988 31/12/2500 -0707 01/01/1988 31/12/2500 LIBEN Cucumbers and gherkins, fresh or chilled 01/01/1988 31/12/2500 -070700 01/01/1988 31/12/2500 LIBEN Cucumbers and gherkins, fresh or chilled 01/01/1988 31/12/2500 -07070005 01/01/1998 31/12/2500 LIBEN Cucumbers, fresh or chilled 01/01/1998 31/12/2500 -07070010 01/01/1995 31/12/1997 LIBEN Cucumbers and gherkins from 1 January to end February, fresh or chilled 01/01/1995 31/12/1997 -07070011 01/01/1988 31/12/1994 LIBEN Fresh or chilled cucumbers from 1 November to 15 May 01/01/1988 31/12/1994 -07070015 01/01/1995 31/12/1997 LIBEN Cucumbers and gherkins from 1 March to 30 April, fresh or chilled 01/01/1995 31/12/1997 -07070019 01/01/1988 31/12/1994 LIBEN Fresh or chilled cucumber from 16 May to 31 October 01/01/1988 31/12/1994 -07070020 01/01/1995 31/12/1997 LIBEN Cucumbers and gherkins from 1 to 15 May, fresh or chilled 01/01/1995 31/12/1997 -07070025 01/01/1995 31/12/1997 LIBEN Cucumbers and gherkins from 16 May to 30 September, fresh or chilled 01/01/1995 31/12/1997 -07070030 01/01/1995 31/12/1997 LIBEN Cucumbers and gherkins from 1 to 31 October, fresh or chilled 01/01/1995 31/12/1997 -07070035 01/01/1995 31/12/1997 LIBEN Cucumbers and gherkins from 1 to 10 November, fresh or chilled 01/01/1995 31/12/1997 -07070040 01/01/1995 31/12/1997 LIBEN Cucumbers and gherkins from 11 November to 31 December, fresh or chilled 01/01/1995 31/12/1997 -07070090 01/01/1988 31/12/2500 LIBEN Fresh or chilled gherkins 01/01/1988 31/12/2500 -0708 01/01/1988 31/12/2500 LIBEN Leguminous vegetables, shelled or unshelled, fresh or chilled 01/01/1988 31/12/2500 -070810 01/01/1988 31/12/2500 LIBEN Fresh or chilled peas "Pisum sativum", shelled or unshelled 01/01/1988 31/12/2500 -07081000 01/01/2000 31/12/2500 LIBEN Fresh or chilled peas "Pisum sativum", shelled or unshelled 01/01/2000 31/12/2500 -07081010 01/01/1988 31/12/1995 LIBEN Fresh or chilled peas "Pisum sativum" from 1 September to 31 May, shelled or unshelled 01/01/1988 31/12/1995 -07081020 01/01/1996 31/12/1999 LIBEN Fresh or chilled peas "Pisum sativum" from 1 January to 31 May, shelled or unshelled 01/01/1996 31/12/1999 -07081090 01/01/1988 31/12/1999 LIBEN Fresh or chilled peas "Pisum sativum" from 1 June to 31 August, shelled or unshelled 01/01/1988 31/12/1999 -07081095 01/01/1996 31/12/1999 LIBEN Fresh or chilled peas "Pisum sativum" from 1 September to 31 December, shelled or unshelled 01/01/1996 31/12/1999 -070820 01/01/1988 31/12/2500 LIBEN Fresh or chilled beans "Vigna spp., Phaseolus spp.", shelled or unshelled 01/01/1988 31/12/2500 -07082000 01/01/2000 31/12/2500 LIBEN Fresh or chilled beans "Vigna spp., Phaseolus spp.", shelled or unshelled 01/01/2000 31/12/2500 -07082010 01/01/1988 31/12/1995 LIBEN Fresh or chilled beans "Vigna spp., Phaseolus spp." from 1 October to 30 June, shelled or unshelled 01/01/1988 31/12/1995 -07082020 01/01/1996 31/12/1999 LIBEN Fresh or chilled beans "Vigna spp., Phaseolus spp." from 1 January to 30 June, shelled or unshelled 01/01/1996 31/12/1999 -07082090 01/01/1988 31/12/1999 LIBEN Fresh or chilled beans "Vigna spp., Phaseolus spp." from 1 July to 30 September, shelled or unshelled 01/01/1988 31/12/1999 -07082095 01/01/1996 31/12/1999 LIBEN Fresh or chilled beans "Vigna spp., Phaseolus spp." from 1 October to 31 December, shelled or unshelled 01/01/1996 31/12/1999 -070890 01/01/1988 31/12/2500 LIBEN Fresh or chilled leguminous vegetables, shelled or unshelled (excl. peas "Pisum sativum" and beans "Vigna spp., Phaseolus spp.") 01/01/1988 31/12/2500 -07089000 01/01/1988 31/12/2500 LIBEN Fresh or chilled leguminous vegetables, shelled or unshelled (excl. peas "Pisum sativum" and beans "Vigna spp., Phaseolus spp.") 01/01/1988 31/12/2500 -0709 01/01/1988 31/12/2500 LIBEN Other vegetables, fresh or chilled (excl. potatoes, tomatoes, alliaceous vegetables, edible brassicas, lettuce "Lactuca sativa" and chicory "Cichorium spp.", carrots, turnips, salad beetroot, salsify, celeriac, radishes and similar edible roots, cucumbers and gherkins, and leguminous vegatables) 01/01/1988 31/12/2500 -070910 01/01/1988 31/12/2006 LIBEN Fresh or chilled globe artichokes 01/01/1988 31/12/2006 -07091000 01/01/1988 31/12/1994 LIBEN Fresh or chilled globe artichokes 01/01/1988 31/12/1994 -07091000 01/01/1998 31/12/2006 LIBEN Fresh or chilled globe artichokes 01/01/1998 31/12/2006 -07091010 01/01/1995 31/12/1997 LIBEN Globe artichokes from 1 January to 31 May, fresh or chilled 01/01/1995 31/12/1997 -07091020 01/01/1995 31/12/1997 LIBEN Globe artichokes from 1 to 30 June, fresh or chilled 01/01/1995 31/12/1997 -07091030 01/01/1995 31/12/1997 LIBEN Globe artichokes from 1 July to 31 October, fresh or chilled 01/01/1995 31/12/1997 -07091040 01/01/1995 31/12/1997 LIBEN Globe artichokes from 1 November to 31 December, fresh or chilled 01/01/1995 31/12/1997 -070920 01/01/1988 31/12/2500 LIBEN Fresh or chilled asparagus 01/01/1988 31/12/2500 -07092000 01/01/1988 31/12/2500 LIBEN Fresh or chilled asparagus 01/01/1988 31/12/2500 -070930 01/01/1988 31/12/2500 LIBEN Fresh or chilled aubergines "eggplants" 01/01/1988 31/12/2500 -07093000 01/01/1988 31/12/2500 LIBEN Fresh or chilled aubergines "eggplants" 01/01/1988 31/12/2500 -070940 01/01/1988 31/12/2500 LIBEN Fresh or chilled celery (excl. celeriac) 01/01/1988 31/12/2500 -07094000 01/01/1988 31/12/2500 LIBEN Fresh or chilled celery (excl. celeriac) 01/01/1988 31/12/2500 -070951 01/01/1988 31/12/2001 LIBEN Fresh or chilled mushrooms 01/01/1988 31/12/2001 -070951 01/01/2002 31/12/2500 LIBEN Fresh or chilled mushrooms of the genus "Agaricus" 01/01/2002 31/12/2500 -07095100 01/01/2002 31/12/2500 LIBEN Fresh or chilled mushrooms of the genus "Agaricus" 01/01/2002 31/12/2500 -07095110 01/01/1988 31/12/2001 LIBEN Fresh or chilled mushrooms of the genus Agaricus 01/01/1988 31/12/2001 -07095130 01/01/1988 31/12/2001 LIBEN Fresh or chilled chanterelles 01/01/1988 31/12/2001 -07095150 01/01/1988 31/12/2001 LIBEN Fresh or chilled flap mushrooms 01/01/1988 31/12/2001 -07095190 01/01/1988 31/12/2001 LIBEN Fresh or chilled edible mushrooms (excl. chanterelles, flap, mushrooms of the genus Agaricus and truffles) 01/01/1988 31/12/2001 -070952 01/01/1988 31/12/2006 LIBEN Fresh or chilled truffles 01/01/1988 31/12/2006 -07095200 01/01/1988 31/12/2006 LIBEN Fresh or chilled truffles 01/01/1988 31/12/2006 -070959 01/01/2002 31/12/2500 LIBEN Fresh or chilled edible mushrooms and truffles (excl. mushrooms of the genus "Agaricus") 01/01/2002 31/12/2500 -07095910 01/01/2002 31/12/2500 LIBEN Fresh or chilled chanterelles 01/01/2002 31/12/2500 -07095930 01/01/2002 31/12/2500 LIBEN Fresh or chilled flap mushrooms 01/01/2002 31/12/2500 -07095950 01/01/2007 31/12/2500 LIBEN Fresh or chilled truffles 01/01/2007 31/12/2500 -07095990 01/01/2002 31/12/2500 LIBEN Fresh or chilled edible mushrooms (excl. chanterelles, flap mushrooms, mushrooms of the genus "Agaricus" and truffles) 01/01/2002 31/12/2500 -070960 01/01/1988 31/12/2500 LIBEN Fresh or chilled fruits of the genus Capsicum or Pimenta 01/01/1988 31/12/2500 -07096010 01/01/1988 31/12/2500 LIBEN Fresh or chilled sweet peppers 01/01/1988 31/12/2500 -07096091 01/01/1988 31/12/2500 LIBEN Fresh or chilled fruits of genus Capsicum for industrial manufacture of capsicin or capsicum oleoresin dyes 01/01/1988 31/12/2500 -07096095 01/01/1988 31/12/2500 LIBEN Fresh or chilled fruits of genus Capsicum or Pimenta for industrial manufacture of essential oils or resinoids 01/01/1988 31/12/2500 -07096099 01/01/1988 31/12/2500 LIBEN Fresh or chilled fruits of genus Capsicum or Pimenta (excl. for industrial manufacture of capsicin or capsicum oleoresin dyes, for industrial manufacture of essential oils or resinoids, and sweet peppers) 01/01/1988 31/12/2500 -070970 01/01/1988 31/12/2500 LIBEN Fresh or chilled spinach, New Zealand spinach and orache spinach 01/01/1988 31/12/2500 -07097000 01/01/1988 31/12/2500 LIBEN Fresh or chilled spinach, New Zealand spinach and orache spinach 01/01/1988 31/12/2500 -070990 01/01/1988 31/12/2011 LIBEN Fresh or chilled vegetables (excl. potatoes, tomatoes, vegetables of the Allium spp., cabbages of the genus Brassica, lettuces [Lactuca sativa] and chicory of the species Cichorium, carrots, turnips, salad beetroot, salsify, celeriac, radishes and similar edible roots, cucumbers and gherkins, leguminous vegetables, asparagus, aubergines, mushrooms, truffles, fruits of the genus Capsicum or of the genus Pimenta, spinach, New Zealand spinach and orache spinach) 01/01/1988 31/12/2011 -07099010 01/01/1988 31/12/2011 LIBEN Fresh or chilled salad vegetables (excl. lettuce and chicory) 01/01/1988 31/12/2011 -07099020 01/01/1988 31/12/2011 LIBEN Fresh or chilled chard "white beet" and cardoons 01/01/1988 31/12/2011 -07099031 01/01/1988 31/12/2011 LIBEN Fresh or chilled olives (excl. for oil production) 01/01/1988 31/12/2011 -07099039 01/01/1988 31/12/2011 LIBEN Fresh or chilled olives for oil production 01/01/1988 31/12/2011 -07099040 01/01/1988 31/12/2011 LIBEN Fresh or chilled capers 01/01/1988 31/12/2011 -07099050 01/01/1988 31/12/2011 LIBEN Fresh or chilled fennel 01/01/1988 31/12/2011 -07099060 01/01/1988 31/12/2011 LIBEN Fresh or chilled sweetcorn 01/01/1988 31/12/2011 -07099070 01/01/1988 31/12/1994 LIBEN Fresh or chilled courgettes 01/01/1988 31/12/1994 -07099070 01/01/1998 31/12/2011 LIBEN Fresh or chilled courgettes 01/01/1998 31/12/2011 -07099071 01/01/1995 31/12/1997 LIBEN Courgettes from 1 to 31 January, fresh or chilled 01/01/1995 31/12/1997 -07099073 01/01/1995 31/12/1997 LIBEN Courgettes from 1 February to 31 March, fresh or chilled 01/01/1995 31/12/1997 -07099075 01/01/1995 31/12/1997 LIBEN Courgettes from 1 April to 31 May, fresh or chilled 01/01/1995 31/12/1997 -07099077 01/01/1995 31/12/1997 LIBEN Courgettes from 1 June to 31 July, fresh or chilled 01/01/1995 31/12/1997 -07099079 01/01/1995 31/12/1997 LIBEN Courgettes from 1 August to 31 December, fresh or chilled 01/01/1995 31/12/1997 -07099080 01/01/2007 31/12/2011 LIBEN Fresh or chilled globe artichokes 01/01/2007 31/12/2011 -07099090 01/01/1988 31/12/2011 LIBEN Fresh or chilled vegetables (excl. potatoes, tomatoes, vegetables of the Allium spp., cabbages of the genus Brassica, lettuces [Lactuca sativa] and chicory of the species Cichorium, carrots, turnips, salad beetroot, salsify, celeriac, radishes and similar edible roots, cucumbers and gherkins, leguminous vegetables, artichokes, asparagus, aubergines, mushrooms, truffles, fruits of the genus Capsicum or of the genus Pimenta, spinach, New Zealand spinach, orache spinach, chard, cardoon, olives, capers, fennel, sweetcorn and courgettes) 01/01/1988 31/12/2011 -070991 01/01/2012 31/12/2500 LIBEN Fresh or chilled globe artichokes 01/01/2012 31/12/2500 -07099100 01/01/2012 31/12/2500 LIBEN Fresh or chilled globe artichokes 01/01/2012 31/12/2500 -070992 01/01/2012 31/12/2500 LIBEN Fresh or chilled olives 01/01/2012 31/12/2500 -07099210 01/01/2012 31/12/2500 LIBEN Fresh or chilled olives (excl. for oil production) 01/01/2012 31/12/2500 -07099290 01/01/2012 31/12/2500 LIBEN Fresh or chilled olives for oil production 01/01/2012 31/12/2500 -070993 01/01/2012 31/12/2500 LIBEN Fresh or chilled pumpkins, squash and gourds "Cucurbita spp." 01/01/2012 31/12/2500 -07099310 01/01/2012 31/12/2500 LIBEN Fresh or chilled courgettes 01/01/2012 31/12/2500 -07099390 01/01/2012 31/12/2500 LIBEN Fresh or chilled pumpkins, squash and gourds "Cucurbita spp." (excl. courgettes) 01/01/2012 31/12/2500 -070999 01/01/2012 31/12/2500 LIBEN Fresh or chilled vegetables n.e.s. 01/01/2012 31/12/2500 -07099910 01/01/2012 31/12/2500 LIBEN Fresh or chilled salad vegetables (excl. lettuce and chicory) 01/01/2012 31/12/2500 -07099920 01/01/2012 31/12/2500 LIBEN Fresh or chilled chard "white beet" and cardoons 01/01/2012 31/12/2500 -07099940 01/01/2012 31/12/2500 LIBEN Fresh or chilled capers 01/01/2012 31/12/2500 -07099950 01/01/2012 31/12/2500 LIBEN Fresh or chilled fennel 01/01/2012 31/12/2500 -07099960 01/01/2012 31/12/2500 LIBEN Fresh or chilled sweetcorn 01/01/2012 31/12/2500 -07099990 01/01/2012 31/12/2500 LIBEN Fresh or chilled vegetables n.e.s. 01/01/2012 31/12/2500 -0710 01/01/1988 31/12/2500 LIBEN Vegetables, uncooked or cooked by steaming or boiling in water, frozen 01/01/1988 31/12/2500 -071010 01/01/1988 31/12/2500 LIBEN Potatoes, uncooked or cooked by steaming or by boiling in water, frozen 01/01/1988 31/12/2500 -07101000 01/01/1988 31/12/2500 LIBEN Potatoes, uncooked or cooked by steaming or by boiling in water, frozen 01/01/1988 31/12/2500 -071021 01/01/1988 31/12/2500 LIBEN Shelled or unshelled peas "Pisum sativum", uncooked or cooked by steaming or by boiling in water, frozen 01/01/1988 31/12/2500 -07102100 01/01/1988 31/12/2500 LIBEN Shelled or unshelled peas "Pisum sativum", uncooked or cooked by steaming or by boiling in water, frozen 01/01/1988 31/12/2500 -071022 01/01/1988 31/12/2500 LIBEN Shelled or unshelled beans "Vigna spp., Phaseolus spp.", uncooked or cooked by steaming or by boiling in water, frozen 01/01/1988 31/12/2500 -07102200 01/01/1988 31/12/2500 LIBEN Shelled or unshelled beans "Vigna spp., Phaseolus spp.", uncooked or cooked by steaming or by boiling in water, frozen 01/01/1988 31/12/2500 -071029 01/01/1988 31/12/2500 LIBEN Leguminous vegetables, shelled or unshelled, uncooked or cooked by steaming or by boiling in water, frozen (excl. peas and beans) 01/01/1988 31/12/2500 -07102900 01/01/1988 31/12/2500 LIBEN Leguminous vegetables, shelled or unshelled, uncooked or cooked by steaming or by boiling in water, frozen (excl. peas and beans) 01/01/1988 31/12/2500 -071030 01/01/1988 31/12/2500 LIBEN Spinach, New Zealand spinach and orache spinach, uncooked or cooked by steaming or by boiling in water, frozen 01/01/1988 31/12/2500 -07103000 01/01/1988 31/12/2500 LIBEN Spinach, New Zealand spinach and orache spinach, uncooked or cooked by steaming or by boiling in water, frozen 01/01/1988 31/12/2500 -071040 01/01/1988 31/12/2500 LIBEN Sweetcorn, uncooked or cooked by steaming or by boiling in water, frozen 01/01/1988 31/12/2500 -07104000 01/01/1988 31/12/2500 LIBEN Sweetcorn, uncooked or cooked by steaming or by boiling in water, frozen 01/01/1988 31/12/2500 -071080 01/01/1988 31/12/2500 LIBEN Vegetables, uncooked or cooked by steaming or by boiling in water, frozen (excl. potatoes, leguminous vegetables, spinach, New Zealand spinach, orache spinach, and sweetcorn) 01/01/1988 31/12/2500 -07108010 01/01/1988 31/12/2500 LIBEN Olives, uncooked or cooked by steaming or by boiling in water, frozen 01/01/1988 31/12/2500 -07108051 01/01/1988 31/12/2500 LIBEN Sweet peppers, uncooked or cooked by steaming or by boiling in water, frozen 01/01/1988 31/12/2500 -07108059 01/01/1988 31/12/2500 LIBEN Fruits of genus Capsicum or Pimenta, uncooked or cooked by steaming or by boiling in water, frozen (excl. sweet peppers) 01/01/1988 31/12/2500 -07108060 01/01/1988 31/12/1995 LIBEN Mushrooms, uncooked or cooked by steaming or by boiling in water, frozen 01/01/1988 31/12/1995 -07108061 01/01/1996 31/12/2500 LIBEN Frozen mushrooms of the genus Agaricus, uncooked or cooked by steaming or by boiling in water 01/01/1996 31/12/2500 -07108069 01/01/1996 31/12/2500 LIBEN Frozen mushrooms, uncooked or cooked by steaming or by boiling in water (excl. of the genus Agaricus) 01/01/1996 31/12/2500 -07108070 01/01/1988 31/12/2500 LIBEN Tomatoes, uncooked or cooked by steaming or by boiling in water, frozen 01/01/1988 31/12/2500 -07108080 01/01/1988 31/12/2500 LIBEN Artichokes, uncooked or cooked by steaming or by boiling in water, frozen 01/01/1988 31/12/2500 -07108085 01/01/1994 31/12/2500 LIBEN Asparagus, whether or not cooked by boiling in water or by steaming, frozen 01/01/1994 31/12/2500 -07108090 01/01/1988 31/12/1993 LIBEN Vegetables, uncooked or cooked by steaming or by boiling in water, frozen (excl. potatoes, leguminous vegetables, spinach, New Zealand spinach, orache spinach, sweetcorn, olives, sweet peppers, fruits of genus capsicum or pimenta, mushrooms, tomatoes and artichokes) 01/01/1988 31/12/1993 -07108095 01/01/1994 31/12/2500 LIBEN Vegetables, whether or not cooked by boiling in water or by steaming, frozen (excl. potatoes, leguminous vegetables, spinach, New Zealand spinach, orache spinach, sweetcorn, olives, fruits of the genus Capsicum or of the genus Pimenta, mushrooms, tomatoes, globe artichokes and asparagus) 01/01/1994 31/12/2500 -071090 01/01/1988 31/12/2500 LIBEN Mixtures of vegetables, uncooked or cooked by steaming or by boiling in water, frozen 01/01/1988 31/12/2500 -07109000 01/01/1988 31/12/2500 LIBEN Mixtures of vegetables, uncooked or cooked by steaming or by boiling in water, frozen 01/01/1988 31/12/2500 -0711 01/01/1988 31/12/2500 LIBEN Vegetables provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2500 -071110 01/01/1988 31/12/2001 LIBEN Onions provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2001 -07111000 01/01/1988 31/12/2001 LIBEN Onions provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2001 -071120 01/01/1988 31/12/2500 LIBEN Olives, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2500 -07112010 01/01/1988 31/12/2500 LIBEN Olives provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption (excl. for oil production) 01/01/1988 31/12/2500 -07112090 01/01/1988 31/12/2500 LIBEN Olives provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption, for oil production 01/01/1988 31/12/2500 -071130 01/01/1988 31/12/2006 LIBEN Capers provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2006 -07113000 01/01/1988 31/12/2006 LIBEN Capers provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2006 -071140 01/01/1988 31/12/2500 LIBEN Cucumbers and gherkins provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2500 -07114000 01/01/1988 31/12/2500 LIBEN Cucumbers and gherkins provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2500 -071151 01/01/2002 31/12/2500 LIBEN Mushrooms of the genus "Agaricus", provisionally preserved, e.g., by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/2002 31/12/2500 -07115100 01/01/2002 31/12/2500 LIBEN Mushrooms of the genus "Agaricus", provisionally preserved, e.g., by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/2002 31/12/2500 -071159 01/01/2002 31/12/2500 LIBEN Mushrooms and truffles, provisionally preserved, e.g., by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption (excl. mushrooms of the genus "Agaricus") 01/01/2002 31/12/2500 -07115900 01/01/2002 31/12/2500 LIBEN Mushrooms and truffles, provisionally preserved, e.g., by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption (excl. mushrooms of the genus "Agaricus") 01/01/2002 31/12/2500 -071190 01/01/1988 31/12/2500 LIBEN Vegetables and mixtures of vegetables provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption (excl. olives, cucumbers, gherkins, mushrooms and truffles, not mixed) 01/01/1988 31/12/2500 -07119010 01/01/1988 31/12/2500 LIBEN Fruits of genus Capsicum or Pimenta provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption (excl. sweet pepper) 01/01/1988 31/12/2500 -07119030 01/01/1988 31/12/2500 LIBEN Sweetcorn provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2500 -07119040 01/01/1993 31/12/2001 LIBEN Mushrooms of the genus "Agaricus", provisionally preserved, e.g., by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1993 31/12/2001 -07119050 01/01/1988 31/12/1992 LIBEN Mushrooms provisionally preserved, but unsuitable in that state for immediate consumption 01/01/1988 31/12/1992 -07119050 01/01/2002 31/12/2500 LIBEN Onions provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/2002 31/12/2500 -07119060 01/01/1993 31/12/2001 LIBEN Mushrooms, provisionally preserved, e.g., by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption (excl. mushrooms of the genus Agaricus) 01/01/1993 31/12/2001 -07119070 01/01/1988 31/12/2001 LIBEN Vegetables provisionally preserved, e.g., by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption (excl. onions, olives, capers, cucumbers and gherkins, fruits of the genus Capsicum or of the genus Pimenta, other than sweet peppers, sweetcorn, mushrooms and mixtures of vegetables) 01/01/1988 31/12/2001 -07119070 01/01/2007 31/12/2500 LIBEN Capers provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/2007 31/12/2500 -07119080 01/01/2002 31/12/2500 LIBEN Vegetables provisionally preserved, e.g., by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption (excl. olives, capers, cucumbers and gherkins, mushrooms, truffles, fruits of the genus Capsicum or of the genus Pimenta, other than sweet peppers, sweetcorn, onions and mixtures of vegetables) 01/01/2002 31/12/2500 -07119090 01/01/1988 31/12/2500 LIBEN Mixture of vegetables provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2500 -0712 01/01/1988 31/12/2500 LIBEN Dried vegetables, whole, cut, sliced, broken or in powder, but not further prepared 01/01/1988 31/12/2500 -071210 01/01/1988 31/12/1995 LIBEN Dried potatoes, whether or not cut or sliced, but not further prepared 01/01/1988 31/12/1995 -07121000 01/01/1988 31/12/1995 LIBEN Dried potatoes, whether or not cut or sliced, but not further prepared 01/01/1988 31/12/1995 -071220 01/01/1988 31/12/2500 LIBEN Dried onions, whole, cut, sliced, broken or in powder, but not further prepared 01/01/1988 31/12/2500 -07122000 01/01/1988 31/12/2500 LIBEN Dried onions, whole, cut, sliced, broken or in powder, but not further prepared 01/01/1988 31/12/2500 -071230 01/01/1988 31/12/2001 LIBEN Dried mushrooms and truffles, whole, cut, sliced, broken or in powder, but not further prepared 01/01/1988 31/12/2001 -07123000 01/01/1988 31/12/2001 LIBEN Dried mushrooms and truffles, whole, cut, sliced, broken or in powder, but not further prepared 01/01/1988 31/12/2001 -071231 01/01/2002 31/12/2500 LIBEN Dried mushrooms of the genus "Agaricus", whole, cut, sliced, broken or in powder, but not further prepared 01/01/2002 31/12/2500 -07123100 01/01/2002 31/12/2500 LIBEN Dried mushrooms of the genus "Agaricus", whole, cut, sliced, broken or in powder, but not further prepared 01/01/2002 31/12/2500 -071232 01/01/2002 31/12/2500 LIBEN Dried wood ears "Auricularia spp.", whole, cut, sliced, broken or in powder, but not further prepared 01/01/2002 31/12/2500 -07123200 01/01/2002 31/12/2500 LIBEN Dried wood ears "Auricularia spp.", whole, cut, sliced, broken or in powder, but not further prepared 01/01/2002 31/12/2500 -071233 01/01/2002 31/12/2500 LIBEN Dried jelly fungi "Tremella spp.", whole, cut, sliced, broken or in powder, but not further prepared 01/01/2002 31/12/2500 -07123300 01/01/2002 31/12/2500 LIBEN Dried jelly fungi "Tremella spp.", whole, cut, sliced, broken or in powder, but not further prepared 01/01/2002 31/12/2500 -071239 01/01/2002 31/12/2500 LIBEN Dried mushrooms and truffles, whole, cut, sliced, broken or in powder, but not further prepared (excl. mushrooms of the genus "Agaricus", wood ears "Auricularia spp." and jelly fungi "Tremella spp.") 01/01/2002 31/12/2500 -07123900 01/01/2002 31/12/2500 LIBEN Dried mushrooms and truffles, whole, cut, sliced, broken or in powder, but not further prepared (excl. mushrooms of the genus "Agaricus", wood ears "Auricularia spp." and jelly fungi "Tremella spp.") 01/01/2002 31/12/2500 -071290 01/01/1988 31/12/2500 LIBEN Dried vegetables and mixtures of vegetables, whole, cut, sliced, broken or in powder, but not further prepared (excl. onions, mushrooms and truffles, not mixed) 01/01/1988 31/12/2500 -07129005 01/01/1996 31/12/2500 LIBEN Dried potatoes, whether or not cut or sliced, but not further prepared 01/01/1996 31/12/2500 -07129011 01/01/1988 31/12/2500 LIBEN Dried sweetcorn, hybrid, for sowing 01/01/1988 31/12/2500 -07129019 01/01/1988 31/12/2500 LIBEN Dried sweetcorn "Zea mays var. saccharata", whether or nor cut or sliced, but not further prepared (excl. hybrids for sowing) 01/01/1988 31/12/2500 -07129030 01/01/1988 31/12/2500 LIBEN Dried tomatoes, whole, cut, sliced, broken or in powder, but not further prepared 01/01/1988 31/12/2500 -07129050 01/01/1988 31/12/2500 LIBEN Dried carrots, whole, cut, sliced, broken or in powder, but not further prepared 01/01/1988 31/12/2500 -07129090 01/01/1988 31/12/2500 LIBEN Dried vegetables and mixtures of vegetables, whole, cut, sliced, broken or in powder, but not further prepared (excl. potatoes, onions, mushrooms, truffles, sweetcorn, tomatoes and carrots) 01/01/1988 31/12/2500 -0713 01/01/1988 31/12/2500 LIBEN Dried leguminous vegetables, shelled, whether or not skinned or split 01/01/1988 31/12/2500 -071310 01/01/1988 31/12/2500 LIBEN Dried, shelled peas "Pisum sativum", whether or not skinned or split 01/01/1988 31/12/2500 -07131010 01/01/1993 31/12/2500 LIBEN Peas, "Pisum sativum", dried and shelled, for sowing 01/01/1993 31/12/2500 -07131011 01/01/1988 31/12/1992 LIBEN Dried forage peas for sowing, shelled 01/01/1988 31/12/1992 -07131019 01/01/1988 31/12/1992 LIBEN Dried peas for sowing, shelled (excl. forage peas) 01/01/1988 31/12/1992 -07131090 01/01/1988 31/12/2500 LIBEN Peas, "Pisum sativum", dried and shelled, whether or not skinned or split (excl. peas for sowing) 01/01/1988 31/12/2500 -071320 01/01/1988 31/12/2500 LIBEN Dried, shelled chickpeas "garbanzos", whether or not skinned or split 01/01/1988 31/12/2500 -07132000 01/01/1997 31/12/2500 LIBEN Dried, shelled chickpeas "garbanzos", whether or not skinned or split 01/01/1997 31/12/2500 -07132010 01/01/1988 31/12/1996 LIBEN Dried chickpeas for sowing, shelled 01/01/1988 31/12/1996 -07132090 01/01/1988 31/12/1996 LIBEN Dried chickpeas, shelled, whether or not skinned or split (excl. for sowing) 01/01/1988 31/12/1996 -071331 01/01/1988 31/12/2500 LIBEN Dried, shelled beans of species "Vigna mungo [L.] Hepper or Vigna radiata [L.] Wilczek", whether or not skinned or split 01/01/1988 31/12/2500 -07133100 01/01/1997 31/12/2500 LIBEN Dried, shelled beans of species "Vigna mungo [L.] Hepper or Vigna radiata [L.] Wilczek", whether or not skinned or split 01/01/1997 31/12/2500 -07133110 01/01/1988 31/12/1996 LIBEN Dried, shelled beans of species "Vigna mungo (L) Hepper or Vigna radiata (L) Wilczek", for sowing 01/01/1988 31/12/1996 -07133190 01/01/1988 31/12/1996 LIBEN Dried, shelled beans of species "Vigna mungo (L) Hepper or Vigna radiata (L) Wilczek", whether or not skinned or split (excl. for sowing) 01/01/1988 31/12/1996 -071332 01/01/1988 31/12/2500 LIBEN Dried, shelled small red "Adzuki" beans "Phaseolus or Vigna angularis", whether or not skinned or split 01/01/1988 31/12/2500 -07133200 01/01/1997 31/12/2500 LIBEN Dried, shelled small red "Adzuki" beans "Phaseolus or Vigna angularis", whether or not skinned or split 01/01/1997 31/12/2500 -07133210 01/01/1988 31/12/1996 LIBEN Dried Adzuki beans "Phaseolus or Vigna angularis" for sowing, shelled 01/01/1988 31/12/1996 -07133290 01/01/1988 31/12/1996 LIBEN Dried Adzuki beans "Phaseolus or Vigna angularis", shelled, whether or not skinned or split (excl. for sowing) 01/01/1988 31/12/1996 -071333 01/01/1988 31/12/2500 LIBEN Dried, shelled kidney beans "Phaseolus vulgaris", whether or not skinned or split 01/01/1988 31/12/2500 -07133310 01/01/1988 31/12/2500 LIBEN Dried, shelled kidney beans "Phaseolus vulgaris", for sowing 01/01/1988 31/12/2500 -07133390 01/01/1988 31/12/2500 LIBEN Dried, shelled kidney beans "Phaseolus vulgaris", whether or not skinned or split (excl. for sowing) 01/01/1988 31/12/2500 -071334 01/01/2012 31/12/2500 LIBEN Dried, shelled bambara beans "Vigna subterranea or Voandzeia subterranea", whether or not skinned or split 01/01/2012 31/12/2500 -07133400 01/01/2012 31/12/2500 LIBEN Dried, shelled bambara beans "Vigna subterranea or Voandzeia subterranea", whether or not skinned or split 01/01/2012 31/12/2500 -071335 01/01/2012 31/12/2500 LIBEN Dried, shelled cow peas "Vigna unguiculata", whether or not skinned or split 01/01/2012 31/12/2500 -07133500 01/01/2012 31/12/2500 LIBEN Dried, shelled cow peas "Vigna unguiculata", whether or not skinned or split 01/01/2012 31/12/2500 -071339 01/01/1988 31/12/2500 LIBEN Dried, shelled beans "Vigna and Phaseolus", whether or not skinned or split (excl. beans of species "Vigna mungo [L.] Hepper or Vigna radiata [L.] Wilczek", small red "Adzuki" beans, kidney beans, Bambara beans and cow peas) 01/01/1988 31/12/2500 -07133900 01/01/1997 31/12/2011 LIBEN Dried, shelled beans "Vigna and Phaseolus", whether or not skinned or split (excl. beans of species "Vigna mungo [L] Hepper or Vigna radiata [L.] Wilczek", small red "Adzuki" beans and kidney beans) 01/01/1997 31/12/2011 -07133900 01/01/2012 31/12/2500 LIBEN Dried, shelled beans "Vigna and Phaseolus", whether or not skinned or split (excl. beans of species "Vigna mungo [L.] Hepper or Vigna radiata [L.] Wilczek", small red "Adzuki" beans, kidney beans, Bambara beans and cow peas) 01/01/2012 31/12/2500 -07133910 01/01/1988 31/12/1996 LIBEN Dried, shelled beans "Vigna and Phaseolus", for sowing (excl. beans of species "Vigna mungo (L.) Hepper or Vigna radiata (L.) Wilczek", Adzuki beans and kidney beans) 01/01/1988 31/12/1996 -07133990 01/01/1988 31/12/1996 LIBEN Dried, shelled beans "Vigna and Phaseolus", whether or not skinned or split (excl. for sowing and beans of species "Vigna mungo (L.) Hepper or Vigna radiata (L.) Wilczek", Adzuki beans and kidney beans) 01/01/1988 31/12/1996 -071340 01/01/1988 31/12/2500 LIBEN Dried, shelled lentils, whether or not skinned or split 01/01/1988 31/12/2500 -07134000 01/01/1997 31/12/2500 LIBEN Dried, shelled lentils, whether or not skinned or split 01/01/1997 31/12/2500 -07134010 01/01/1988 31/12/1996 LIBEN Dried lentils for sowing, shelled 01/01/1988 31/12/1996 -07134090 01/01/1988 31/12/1996 LIBEN Dried lentils, shelled, whether or not skinned or split (excl. for sowing) 01/01/1988 31/12/1996 -071350 01/01/1988 31/12/2500 LIBEN Dried, shelled broad beans "Vicia faba var. major" and horse beans "Vicia faba var. equina and Vicia faba var. minor", whether or not skinned or split 01/01/1988 31/12/2500 -07135000 01/01/1997 31/12/2500 LIBEN Dried, shelled broad beans "Vicia faba var. major" and horse beans "Vicia faba var. equina and Vicia faba var. minor", whether or not skinned or split 01/01/1997 31/12/2500 -07135010 01/01/1988 31/12/1996 LIBEN Dried broad beans and horse beans for sowing, shelled 01/01/1988 31/12/1996 -07135090 01/01/1988 31/12/1996 LIBEN Dried broad beans and horse beans, shelled, whether or not skinned or split (excl. for sowing) 01/01/1988 31/12/1996 -071360 01/01/2012 31/12/2500 LIBEN Dried, shelled pigeon peas "Cajanus cajan", whether or not skinned or split 01/01/2012 31/12/2500 -07136000 01/01/2012 31/12/2500 LIBEN Dried, shelled pigeon peas "Cajanus cajan", whether or not skinned or split 01/01/2012 31/12/2500 -071390 01/01/1988 31/12/2500 LIBEN Dried, shelled leguminous vegetables, whether or not skinned or split (excl. peas, chickpeas, beans, lentils, broad beans, horse beans and pigeon peas) 01/01/1988 31/12/2500 -07139000 01/01/2004 31/12/2011 LIBEN Dried, shelled leguminous vegetables, whether or not skinned or split (excl. peas, chickpeas, beans, lentils, broad beans and horse beans) 01/01/2004 31/12/2011 -07139000 01/01/2012 31/12/2500 LIBEN Dried, shelled leguminous vegetables, whether or not skinned or split (excl. peas, chickpeas, beans, lentils, broad beans, horse beans and pigeon peas) 01/01/2012 31/12/2500 -07139010 01/01/1988 31/12/2003 LIBEN Dried, shelled leguminous vegetables, for sowing (excl. peas, chickpeas, beans, lentils, broad beans and horse beans) 01/01/1988 31/12/2003 -07139090 01/01/1988 31/12/2003 LIBEN Dried, shelled leguminous vegetables, whether or not skinned or split (excl. for sowing and peas, chickpeas, beans, lentils, broad beans and horse beans) 01/01/1988 31/12/2003 -0714 01/01/1988 31/12/2500 LIBEN Roots and tubers of manioc, arrowroot, salep, Jerusalem artichokes, sweet potatoes and similar roots and tubers with high starch or inulin content, fresh, chilled, frozen or dried, whether or not sliced or in the form of pellets; sago pith 01/01/1988 31/12/2500 -071410 01/01/1988 31/12/2500 LIBEN Fresh, chilled, frozen or dried roots and tubers of manioc "cassava", whether or not sliced or in the form of pellets 01/01/1988 31/12/2500 -07141000 01/01/2013 31/12/2500 LIBEN Fresh, chilled, frozen or dried roots and tubers of manioc "cassava", whether or not sliced or in the form of pellets 01/01/2013 31/12/2500 -07141010 01/01/1988 31/12/2007 LIBEN Pellets of manioc flour and meal 01/01/1988 31/12/2007 -07141090 01/01/1988 31/12/1988 LIBEN Fresh or dried manioc 'cassava', whether or not sliced or in the form of pellets (excl. pellets of flour and meal) 01/01/1988 31/12/1988 -07141091 01/01/1989 31/12/2012 LIBEN Fresh and whole or without skin and frozen manioc, whether or not sliced, for human consumption, in packings <= 28 kg 01/01/1989 31/12/2012 -07141098 01/01/2008 31/12/2012 LIBEN Fresh or dried whole or sliced manioc or in the form of pellets (excl. fresh and whole or without skin and frozen manioc, whether or not sliced, for human consumption, in packings <= 28 kg) 01/01/2008 31/12/2012 -07141099 01/01/1989 31/12/2007 LIBEN Fresh or dried whole or sliced manioc or in the form of pellets (excl. 0714.10.10 and 0714.10.91) 01/01/1989 31/12/2007 -071420 01/01/1988 31/12/2500 LIBEN Sweet potatoes, fresh, chilled, frozen or dried, whether or not sliced or in the form of pellets 01/01/1988 31/12/2500 -07142000 01/01/1988 31/12/1988 LIBEN Sweet potatoes, fresh or dried, whether or not sliced or in the form of pellets 01/01/1988 31/12/1988 -07142010 01/01/1989 31/12/2500 LIBEN Sweet potatoes, fresh, whole, for human consumption 01/01/1989 31/12/2500 -07142090 01/01/1989 31/12/2500 LIBEN Sweet potatoes, fresh, chilled, frozen or dried, whether or not sliced or in the form of pellets (excl. fresh whole sweet potatoes used for human consumption) 01/01/1989 31/12/2500 -071430 01/01/2012 31/12/2500 LIBEN Yams "Dioscorea spp.", fresh, chilled, frozen or dried, whether or not sliced or in the form of pellets 01/01/2012 31/12/2500 -07143000 01/01/2013 31/12/2500 LIBEN Yams "Dioscorea spp.", fresh, chilled, frozen or dried, whether or not sliced or in the form of pellets 01/01/2013 31/12/2500 -07143010 01/01/2012 31/12/2012 LIBEN Yams "Dioscorea spp.", either fresh and whole or without skin and frozen, even sliced, for human consumption, in packings <= 28 kg 01/01/2012 31/12/2012 -07143090 01/01/2012 31/12/2012 LIBEN Yams "Dioscorea spp.", fresh, chilled, frozen or dried, even sliced or in the form of pellets (excl. either fresh and whole or without skin and frozen for human consumption in packings <= 28 kg) 01/01/2012 31/12/2012 -071440 01/01/2012 31/12/2500 LIBEN Taro "Colocasia spp.", fresh, chilled, frozen or dried, whether or not sliced or in the form of pellets 01/01/2012 31/12/2500 -07144000 01/01/2013 31/12/2500 LIBEN Taro "Colocasia spp.", fresh, chilled, frozen or dried, whether or not sliced or in the form of pellets 01/01/2013 31/12/2500 -07144010 01/01/2012 31/12/2012 LIBEN Taro "Colocasia spp.", either fresh and whole or without skin and frozen, even sliced, for human consumption, in packings <= 28 kg 01/01/2012 31/12/2012 -07144090 01/01/2012 31/12/2012 LIBEN Taro "Colocasia spp.", fresh, chilled, frozen or dried, even sliced or in the form of pellets (excl. either fresh and whole or without skin and frozen for human consumption in packings <= 28 kg) 01/01/2012 31/12/2012 -071450 01/01/2012 31/12/2500 LIBEN Yautia "Xanthosoma spp.", fresh, chilled, frozen or dried, whether or not sliced or in the form of pellets 01/01/2012 31/12/2500 -07145000 01/01/2013 31/12/2500 LIBEN Yautia "Xanthosoma spp.", fresh, chilled, frozen or dried, whether or not sliced or in the form of pellets 01/01/2013 31/12/2500 -07145010 01/01/2012 31/12/2012 LIBEN Yautia "Xanthosoma spp.", either fresh and whole or without skin and frozen, even sliced, for human consumption, in packings <= 28 kg 01/01/2012 31/12/2012 -07145090 01/01/2012 31/12/2012 LIBEN Yautia "Xanthosoma spp.", fresh, chilled, frozen or dried, even sliced or in the form of pellets (excl. either fresh and whole or without skin and frozen for human consumption in packings <= 28 kg) 01/01/2012 31/12/2012 -071490 01/01/1988 31/12/2500 LIBEN Arrowroot, salep, Jerusalem artichokes and similar roots and tubers with high starch or inulin content, fresh, chilled, frozen or dried, whether or not sliced or in the form of pellets, and sago pith (excl. manioc "cassava", sweet potatoes, yams, taro and yautia) 01/01/1988 31/12/2500 -07149010 01/01/1988 31/12/1988 LIBEN Arrowroot, salep, and similar roots and tubers with high starch content, fresh or dried, whether or not sliced or in the form of pellets (excl. manioc and sweet potatoes) 01/01/1988 31/12/1988 -07149011 01/01/1989 31/12/2011 LIBEN Fresh and whole or without skin and frozen arrowroot, salep and similar roots and tubers (excl. manioc, Jerusalem artichokes and sweet potatoes) with high starch content, whether or not sliced, for human consumption, in packings <= 28 kg 01/01/1989 31/12/2011 -07149012 01/01/2012 31/12/2012 LIBEN Fresh and whole or without skin and frozen, arrowroot, salep and similar roots and tubers (excl. manioc, Jerusalem artichokes, sweet potatoes, yams, taro and yautia) with high starch content, even sliced, for human consumption, in packings <= 28 kg 01/01/2012 31/12/2012 -07149018 01/01/2012 31/12/2012 LIBEN Roots and tubers of arrowroot, salep and similar roots and tubers with high starch content, fresh, chilled, frozen or dried, even sliced or in the form of pellets (excl. either fresh and whole or without skin and frozen for human consumption in packings of <= 28 kg, and roots and tubers of manioc, Jerusalem artichokes, sweet potatoes, yams, taro and yautia) 01/01/2012 31/12/2012 -07149019 01/01/1989 31/12/2011 LIBEN Roots and tubers of arrowroot, salep and similar roots and tubers with high starch content, fresh, chilled, frozen or dried, whether or not sliced or in the form of pellets (excl. used for human consumptino in immediate packings of a net content of <= 28 kg,, either fresh and whole or without skin and frozen, roots and tubers of manioc, sweet potatoes and Jerusalem artichokes) 01/01/1989 31/12/2011 -07149020 01/01/2013 31/12/2500 LIBEN Arrowroot, salep and similar roots and tubers with high starch content, fresh, chilled, frozen or dried, whether or not sliced or in the form of pellets (excl. manioc "cassava", sweet potatoes, yams, taro and yautia) 01/01/2013 31/12/2500 -07149090 01/01/1988 31/12/2500 LIBEN Jerusalem artichokes and similar roots and tubers with high inulin content, fresh, chilled, frozen or dried, even sliced or in the form of pellets, and sago pith (excl. manioc, arrowroot, salep, sweet potatoes, yams, taro and yautia) 01/01/1988 31/12/2500 -07CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 07 01/01/2002 31/12/2500 -07CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 07 01/01/2002 31/12/2500 -07CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 07 01/01/2002 31/12/2500 -07MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -07MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -07MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -07SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 07 01/01/1988 31/12/2500 -07SSS0 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 07 and SITC section 0 01/01/1997 31/12/2500 -07SSS054 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 07 and SITC group 054 01/01/1997 31/12/2500 -07SSS056 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 07 and SITC group 056 01/01/1997 31/12/2500 -07SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 07 and SITC section 9 01/01/1988 31/12/1996 -07SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 07 and SITC section 9 01/01/1997 31/12/2500 -07SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 07 and SITC group 999 01/01/1988 31/12/1996 -07SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 07 and SITC group 999 01/01/1997 31/12/2500 -08 01/01/1988 31/12/2500 LIBEN EDIBLE FRUIT AND NUTS; PEEL OF CITRUS FRUIT OR MELONS 01/01/1988 31/12/2500 -0801 01/01/1988 31/12/2500 LIBEN Coconuts, Brazil nuts and cashew nuts, fresh or dried, whether or not shelled or peeled 01/01/1988 31/12/2500 -080110 01/01/1988 31/12/1995 LIBEN Fresh or dried coconuts, whether or not shelled or peeled 01/01/1988 31/12/1995 -08011010 01/01/1988 31/12/1995 LIBEN Dessicated coconut 01/01/1988 31/12/1995 -08011090 01/01/1988 31/12/1995 LIBEN Fresh or dried coconuts, whether or not shelled or peeled (excl. dessicated) 01/01/1988 31/12/1995 -080111 01/01/1996 31/12/2500 LIBEN Desiccated coconuts 01/01/1996 31/12/2500 -08011100 01/01/1996 31/12/2500 LIBEN Desiccated coconuts 01/01/1996 31/12/2500 -080112 01/01/2012 31/12/2500 LIBEN Fresh coconuts in the inner shell "endocarp" 01/01/2012 31/12/2500 -08011200 01/01/2012 31/12/2500 LIBEN Fresh coconuts in the inner shell "endocarp" 01/01/2012 31/12/2500 -080119 01/01/1996 31/12/2500 LIBEN Fresh coconuts, whether or not shelled or peeled (excl. in the inner shell "endocarp") 01/01/1996 31/12/2500 -08011900 01/01/1996 31/12/2011 LIBEN Fresh coconuts, whether or not shelled or peeled 01/01/1996 31/12/2011 -08011900 01/01/2012 31/12/2500 LIBEN Fresh coconuts, whether or not shelled or peeled (excl. in the inner shell "endocarp") 01/01/2012 31/12/2500 -080120 01/01/1988 31/12/1995 LIBEN Fresh or dried Brazil nuts, whether or not shelled or peeled 01/01/1988 31/12/1995 -08012000 01/01/1988 31/12/1995 LIBEN Fresh or dried Brazil nuts, whether or not shelled or peeled 01/01/1988 31/12/1995 -080121 01/01/1996 31/12/2500 LIBEN Fresh or dried brazil nuts, in shell 01/01/1996 31/12/2500 -08012100 01/01/1996 31/12/2500 LIBEN Fresh or dried brazil nuts, in shell 01/01/1996 31/12/2500 -080122 01/01/1996 31/12/2500 LIBEN Fresh or dried brazil nuts, shelled 01/01/1996 31/12/2500 -08012200 01/01/1996 31/12/2500 LIBEN Fresh or dried brazil nuts, shelled 01/01/1996 31/12/2500 -080130 01/01/1988 31/12/1995 LIBEN Fresh or dried cashew nuts, whether or not shelled or peeled 01/01/1988 31/12/1995 -08013000 01/01/1988 31/12/1995 LIBEN Fresh or dried cashew nuts, whether or not shelled or peeled 01/01/1988 31/12/1995 -080131 01/01/1996 31/12/2500 LIBEN Fresh or dried cashew nuts, in shell 01/01/1996 31/12/2500 -08013100 01/01/1996 31/12/2500 LIBEN Fresh or dried cashew nuts, in shell 01/01/1996 31/12/2500 -080132 01/01/1996 31/12/2500 LIBEN Fresh or dried cashew nuts, shelled 01/01/1996 31/12/2500 -08013200 01/01/1996 31/12/2500 LIBEN Fresh or dried cashew nuts, shelled 01/01/1996 31/12/2500 -0802 01/01/1988 31/12/2500 LIBEN Other nuts, fresh or dried, whether or not shelled or peeled (excl. coconuts, Brazil nuts and cashew nuts) 01/01/1988 31/12/2500 -080211 01/01/1988 31/12/2500 LIBEN Fresh or dried almonds in shell 01/01/1988 31/12/2500 -08021110 01/01/1988 31/12/2500 LIBEN Fresh or dried bitter almonds in shell 01/01/1988 31/12/2500 -08021190 01/01/1988 31/12/2500 LIBEN Fresh or dried almonds in shell (excl. bitter) 01/01/1988 31/12/2500 -080212 01/01/1988 31/12/2500 LIBEN Fresh or dried almonds, shelled 01/01/1988 31/12/2500 -08021210 01/01/1988 31/12/2500 LIBEN Fresh or dried bitter almonds, shelled 01/01/1988 31/12/2500 -08021290 01/01/1988 31/12/2500 LIBEN Fresh or dried almonds, shelled (excl. bitter) 01/01/1988 31/12/2500 -080221 01/01/1988 31/12/2500 LIBEN Fresh or dried hazelnuts or filberts "Corylus spp.", in shell 01/01/1988 31/12/2500 -08022100 01/01/1988 31/12/2500 LIBEN Fresh or dried hazelnuts or filberts "Corylus spp.", in shell 01/01/1988 31/12/2500 -080222 01/01/1988 31/12/2500 LIBEN Fresh or dried hazelnuts or filberts "Corylus spp.", shelled 01/01/1988 31/12/2500 -08022200 01/01/1988 31/12/2500 LIBEN Fresh or dried hazelnuts or filberts "Corylus spp.", shelled 01/01/1988 31/12/2500 -080231 01/01/1988 31/12/2500 LIBEN Fresh or dried walnuts, in shell 01/01/1988 31/12/2500 -08023100 01/01/1988 31/12/2500 LIBEN Fresh or dried walnuts, in shell 01/01/1988 31/12/2500 -080232 01/01/1988 31/12/2500 LIBEN Fresh or dried walnuts, shelled 01/01/1988 31/12/2500 -08023200 01/01/1988 31/12/2500 LIBEN Fresh or dried walnuts, shelled 01/01/1988 31/12/2500 -080240 01/01/1988 31/12/2011 LIBEN Fresh or dried chestnuts "Castanea spp.", whether or not shelled or peeled 01/01/1988 31/12/2011 -08024000 01/01/1988 31/12/2011 LIBEN Fresh or dried chestnuts "Castanea spp.", whether or not shelled or peeled 01/01/1988 31/12/2011 -080241 01/01/2012 31/12/2500 LIBEN Fresh or dried chestnuts "Castanea spp.", in shell 01/01/2012 31/12/2500 -08024100 01/01/2012 31/12/2500 LIBEN Fresh or dried chestnuts "Castanea spp.", in shell 01/01/2012 31/12/2500 -080242 01/01/2012 31/12/2500 LIBEN Fresh or dried chestnuts "Castanea spp.", shelled 01/01/2012 31/12/2500 -08024200 01/01/2012 31/12/2500 LIBEN Fresh or dried chestnuts "Castanea spp.", shelled 01/01/2012 31/12/2500 -080250 01/01/1988 31/12/2011 LIBEN Fresh or dried pistachios, whether or not shelled or peeled 01/01/1988 31/12/2011 -08025000 01/01/1988 31/12/2011 LIBEN Fresh or dried pistachios, whether or not shelled or peeled 01/01/1988 31/12/2011 -080251 01/01/2012 31/12/2500 LIBEN Fresh or dried pistachios, in shell 01/01/2012 31/12/2500 -08025100 01/01/2012 31/12/2500 LIBEN Fresh or dried pistachios, in shell 01/01/2012 31/12/2500 -080252 01/01/2012 31/12/2500 LIBEN Fresh or dried pistachios, shelled 01/01/2012 31/12/2500 -08025200 01/01/2012 31/12/2500 LIBEN Fresh or dried pistachios, shelled 01/01/2012 31/12/2500 -080260 01/01/2007 31/12/2011 LIBEN Macadamia nuts, fresh or dried, whether or not shelled or peeled 01/01/2007 31/12/2011 -08026000 01/01/2007 31/12/2011 LIBEN Macadamia nuts, fresh or dried, whether or not shelled or peeled 01/01/2007 31/12/2011 -080261 01/01/2012 31/12/2500 LIBEN Fresh or dried macadamia nuts, in shell 01/01/2012 31/12/2500 -08026100 01/01/2012 31/12/2500 LIBEN Fresh or dried macadamia nuts, in shell 01/01/2012 31/12/2500 -080262 01/01/2012 31/12/2500 LIBEN Fresh or dried macadamia nuts, shelled 01/01/2012 31/12/2500 -08026200 01/01/2012 31/12/2500 LIBEN Fresh or dried macadamia nuts, shelled 01/01/2012 31/12/2500 -080270 01/01/2012 31/12/2500 LIBEN Fresh or dried kola nuts "Cola spp.", whether or not shelled or peeled 01/01/2012 31/12/2500 -08027000 01/01/2012 31/12/2500 LIBEN Fresh or dried kola nuts "Cola spp.", whether or not shelled or peeled 01/01/2012 31/12/2500 -080280 01/01/2012 31/12/2500 LIBEN Fresh or dried areca nuts, whether or not shelled or peeled 01/01/2012 31/12/2500 -08028000 01/01/2012 31/12/2500 LIBEN Fresh or dried areca nuts, whether or not shelled or peeled 01/01/2012 31/12/2500 -080290 01/01/1988 31/12/2500 LIBEN Nuts, fresh or dried, whether or not shelled or peeled (excl. coconuts, Brazil nuts, cashew nuts, almonds, hazelnuts, filberts, walnuts, chestnuts, pistachios, macadamia nuts, kola nuts and areca nuts) 01/01/1988 31/12/2500 -08029010 01/01/1988 31/12/2000 LIBEN Fresh or dried pecans, whether or not shelled or peeled 01/01/1988 31/12/2000 -08029010 01/01/2012 31/12/2500 LIBEN Fresh or dried pecans, whether or not shelled or peeled 01/01/2012 31/12/2500 -08029020 01/01/2001 31/12/2011 LIBEN Fresh or dried areca "betel", cola and pecans, whether or not shelled or peeled 01/01/2001 31/12/2011 -08029030 01/01/1988 31/12/2000 LIBEN Fresh or dried areca "betel" and cola nuts, whether or not shelled or peeled 01/01/1988 31/12/2000 -08029050 01/01/1993 31/12/2500 LIBEN Pine "Pinus spp." nuts, fresh or dried, whether or not shelled or peeled 01/01/1993 31/12/2500 -08029060 01/01/1995 31/12/2006 LIBEN Macadamia nuts, fresh or dried, whether or not shelled or peeled 01/01/1995 31/12/2006 -08029080 01/01/1993 31/12/1994 LIBEN Nuts, fresh or dried, whether or not shelled or peeled (excl. coco nuts, brazil nuts, cashew nuts, almonds, hazelnuts, walnuts, chestnuts 'castania spp.', pistachios, pecans, areca 'betel' nuts, cola nuts and pine nuts) 01/01/1993 31/12/1994 -08029085 01/01/1995 31/12/2500 LIBEN Nuts, fresh or dried, whether or not shelled or peeled (excl. coconuts, Brazil nuts, cashew nuts, almonds, hazelnuts, walnuts, chestnuts "Castania spp.", pistachios, pecans, areca "betel" nuts, cola nuts, pine nuts and macadamia nuts) 01/01/1995 31/12/2500 -08029090 01/01/1988 31/12/1992 LIBEN Fresh or dried nuts, whether or not shelled or peeled (excl. coconuts, brazil nuts, cashew nuts, almonds, hazelnuts, walnuts, chestnuts, pistachios, pecans, areca 'betel' and cola nuts) 01/01/1988 31/12/1992 -0803 01/01/1988 31/12/2500 LIBEN Bananas, incl. plantains, fresh or dried 01/01/1988 31/12/2500 -080300 01/01/1988 31/12/2011 LIBEN Bananas, incl. plantains, fresh or dried 01/01/1988 31/12/2011 -08030010 01/01/1988 31/12/1993 LIBEN Fresh bananas, incl. plantains 01/01/1988 31/12/1993 -08030011 01/01/1994 31/12/2011 LIBEN Plantains, fresh 01/01/1994 31/12/2011 -08030019 01/01/1994 31/12/2011 LIBEN Bananas, fresh (excl. plantains) 01/01/1994 31/12/2011 -08030090 01/01/1988 31/12/2011 LIBEN Dried bananas, incl. plantains 01/01/1988 31/12/2011 -080310 01/01/2012 31/12/2500 LIBEN Fresh or dried plantains 01/01/2012 31/12/2500 -08031010 01/01/2012 31/12/2500 LIBEN Plantains, fresh 01/01/2012 31/12/2500 -08031090 01/01/2012 31/12/2500 LIBEN Plantains, dried 01/01/2012 31/12/2500 -080390 01/01/2012 31/12/2500 LIBEN Fresh or dried bananas (excl. plantains) 01/01/2012 31/12/2500 -08039010 01/01/2012 31/12/2500 LIBEN Bananas, fresh (excl. plantains) 01/01/2012 31/12/2500 -08039090 01/01/2012 31/12/2500 LIBEN Bananas, dried (excl. plantains) 01/01/2012 31/12/2500 -0804 01/01/1988 31/12/2500 LIBEN Dates, figs, pineapples, avocados, guavas, mangoes and mangosteens, fresh or dried 01/01/1988 31/12/2500 -080410 01/01/1988 31/12/2500 LIBEN Fresh or dried dates 01/01/1988 31/12/2500 -08041000 01/01/1988 31/12/2500 LIBEN Fresh or dried dates 01/01/1988 31/12/2500 -080420 01/01/1988 31/12/2500 LIBEN Fresh or dried figs 01/01/1988 31/12/2500 -08042010 01/01/1988 31/12/2500 LIBEN Fresh figs 01/01/1988 31/12/2500 -08042090 01/01/1988 31/12/2500 LIBEN Dried figs 01/01/1988 31/12/2500 -080430 01/01/1988 31/12/2500 LIBEN Fresh or dried pineapples 01/01/1988 31/12/2500 -08043000 01/01/1988 31/12/2500 LIBEN Fresh or dried pineapples 01/01/1988 31/12/2500 -080440 01/01/1988 31/12/2500 LIBEN Fresh or dried avocados 01/01/1988 31/12/2500 -08044000 01/01/2000 31/12/2500 LIBEN Fresh or dried avocados 01/01/2000 31/12/2500 -08044010 01/01/1988 31/12/1995 LIBEN Fresh or dried avocados, from 1 December to 31 May 01/01/1988 31/12/1995 -08044020 01/01/1996 31/12/1999 LIBEN Fresh or dried avocados, from 1 January to 31 May 01/01/1996 31/12/1999 -08044090 01/01/1988 31/12/1999 LIBEN Fresh or dried avocados, from 1 June to 30 November 01/01/1988 31/12/1999 -08044095 01/01/1996 31/12/1999 LIBEN Fresh or dried avocados, from 1 to 31 December 01/01/1996 31/12/1999 -080450 01/01/1988 31/12/2500 LIBEN Fresh or dried guavas, mangoes and mangosteens 01/01/1988 31/12/2500 -08045000 01/01/1988 31/12/2500 LIBEN Fresh or dried guavas, mangoes and mangosteens 01/01/1988 31/12/2500 -0805 01/01/1988 31/12/2500 LIBEN Citrus fruit, fresh or dried 01/01/1988 31/12/2500 -080510 01/01/1988 31/12/2500 LIBEN Fresh or dried oranges 01/01/1988 31/12/2500 -08051001 01/01/1995 31/12/1997 LIBEN Fresh sanguines and semi-sanguines, from 1 January to 31 March 01/01/1995 31/12/1997 -08051005 01/01/1995 31/12/1997 LIBEN Fresh navels, navelines, navelates, salustianas, vernas, valencia lates, maltese, shamoutis, ovalis, trovita and hamlins, from 1 January to 31 March 01/01/1995 31/12/1997 -08051009 01/01/1995 31/12/1997 LIBEN Fresh sweet oranges, from 1 January to 31 March (excl. sanguines and semi-sanguines, navels, navelines, navelates, salustianas, vernas, valencia lates, maltese, shamoutis, ovalis, trovita and hamlins) 01/01/1995 31/12/1997 -08051010 01/01/1998 31/12/2004 LIBEN Fresh sanguines and semi-sanguines 01/01/1998 31/12/2004 -08051011 01/01/1988 31/12/1997 LIBEN Fresh sanguines and semi-sanguines, from 1 to 30 April 01/01/1988 31/12/1997 -08051015 01/01/1988 31/12/1997 LIBEN Fresh navels, navelines, navelates, salustianas, vernas, valencialates, maltese, shamoutis, ovalis, trovita and hamlins, from 1 to 30 April 01/01/1988 31/12/1997 -08051019 01/01/1988 31/12/1997 LIBEN Fresh sweet oranges from 1 to 30 April (excl. sanguines and semi-sanguines, navels, navelines, navelates, salustianas, vernas, valencialates, maltese, shamoutis, ovalis, trovita and hamlins) 01/01/1988 31/12/1997 -08051020 01/01/2005 31/12/2016 LIBEN Fresh sweet oranges 01/01/2005 31/12/2016 -08051021 01/01/1988 31/12/1997 LIBEN Fresh sanguines and semi-sanguines, from 1 to 15 May 01/01/1988 31/12/1997 -08051022 01/01/2017 31/12/2500 LIBEN Fresh navel oranges 01/01/2017 31/12/2500 -08051024 01/01/2017 31/12/2500 LIBEN Fresh white oranges 01/01/2017 31/12/2500 -08051025 01/01/1988 31/12/1997 LIBEN Fresh navels, navelines, navelates, salustianas, vernas, valencialates, maltese, shamoutis, ovalis, trovita and hamlins, from 1 to 15 May 01/01/1988 31/12/1997 -08051028 01/01/2017 31/12/2500 LIBEN Fresh sweet oranges (excl. navel and white oranges) 01/01/2017 31/12/2500 -08051029 01/01/1988 31/12/1997 LIBEN Fresh sweet oranges from 1 to 15 May (excl. sanguines and semi-sanguines, navels, navelines, navelates, salustianas, vernas, valencialates, maltese, shamoutis, ovalis, trovita and hamlins) 01/01/1988 31/12/1997 -08051030 01/01/1998 31/12/2004 LIBEN Fresh Navels, Navelines, Navelates, Salustianas, Vernas, Valencia lates, Maltese, Shamoutis, Ovalis, Trovita and Hamlins 01/01/1998 31/12/2004 -08051031 01/01/1988 31/12/1994 LIBEN Fresh sanguines and semi-sanguines, from 16 May to 15 October 01/01/1988 31/12/1994 -08051031 01/01/1996 31/12/1997 LIBEN Fresh sanguines and semi-sanguines, from 16 to 31 May 01/01/1996 31/12/1997 -08051032 01/01/1995 31/12/1995 LIBEN Fresh sanguines and semi-sanguines, from 16 May to 30 September 01/01/1995 31/12/1995 -08051033 01/01/1996 31/12/1997 LIBEN Fresh navels, navelines, navelates, salustianas, vernas, Valencia lates, Maltese, shamoutis, ovalis, trovita and hamlins, from 16 to 31 May 01/01/1996 31/12/1997 -08051034 01/01/1995 31/12/1995 LIBEN Fresh navels, navelines, navelates, salustianas, vernas, valencia lates, maltese, shamoutis, ovalis, trovita and hamlins, from 16 May to 30 September 01/01/1995 31/12/1995 -08051035 01/01/1988 31/12/1994 LIBEN Fresh navels, navelines, navelates, salustianas, vernas, valencialates, maltese, shamoutis, ovalis, trovita and hamlins, from 16 May to 15 October 01/01/1988 31/12/1994 -08051035 01/01/1996 31/12/1997 LIBEN Fresh sweet oranges, from 16 to 31 May (excl. sanguines and semi-sanguines, navels, navelines, navelates, salustianas, vernas, Valencia lates, Maltese, shamoutis, ovalis, trovita and hamlins) 01/01/1996 31/12/1997 -08051036 01/01/1995 31/12/1995 LIBEN Fresh sweet oranges, from 16 May to 15 October (excl. sanguines and semi-sanguines, navels, navelines, navelates, salustianas, vernas, valencia lates, maltese, shamoutis, ovalis, trovita and hamlins) 01/01/1995 31/12/1995 -08051037 01/01/1996 31/12/1997 LIBEN Fresh sanguines and semi-sanguines, from 1 June to 30 September 01/01/1996 31/12/1997 -08051038 01/01/1996 31/12/1997 LIBEN Fresh navels, navelines, navelates, salustianas, vernas, Valencia lates, Maltese, shamoutis, ovalis, trovita and hamlins, from 1 June to 30 September 01/01/1996 31/12/1997 -08051039 01/01/1988 31/12/1994 LIBEN Fresh sweet oranges from 16 May to 15 October (excl. sanguines and semi-sanguines, navels, navelines, navelates, salustianas, vernas, valencialates, maltese, shamoutis, ovalis, trovita and hamlins) 01/01/1988 31/12/1994 -08051039 01/01/1996 31/12/1997 LIBEN Fresh sweet oranges, from 1 June to 30 September (excl. sanguines and semi-sanguines, navels, navelines, navelates, salustianas, vernas, Valencia lates, Maltese, shamoutis, ovalis, trovita and hamlins) 01/01/1996 31/12/1997 -08051041 01/01/1988 31/12/1994 LIBEN Fresh sanguines and semi-sanguines, from 16 October to 31 March 01/01/1988 31/12/1994 -08051042 01/01/1995 31/12/1997 LIBEN Fresh sanguines and semi-sanguines, from 1 to 15 October 01/01/1995 31/12/1997 -08051044 01/01/1995 31/12/1997 LIBEN Fresh navels, navelines, navelates, salustianas, vernas, valencia lates, maltese, shamoutis, ovalis, trovita and hamlins, from 1 to 15 October 01/01/1995 31/12/1997 -08051045 01/01/1988 31/12/1994 LIBEN Fresh navels, navelines, navelates, salustianas, vernas, valencialates, maltese, shamoutis, ovalis, trovita and hamlins, from 16 October to 31 March 01/01/1988 31/12/1994 -08051046 01/01/1995 31/12/1997 LIBEN Fresh sweet oranges, from 1 to 15 October (excl. sanguines and semi-sanguines, navels, navelines, navelates, salustianas, vernas, valencia lates, maltese, shamoutis, ovalis, trovita and hamlins) 01/01/1995 31/12/1997 -08051049 01/01/1988 31/12/1994 LIBEN Fresh sweet oranges from 16 October to 31 March(excl. sanguines and semi-sanguines, navels, navelines, navelates, salustianas, vernas, valencialates, maltese, shamoutis, ovalis, trovita and hamlins) 01/01/1988 31/12/1994 -08051050 01/01/1998 31/12/2004 LIBEN Fresh sweet oranges (excl. sanguines and semi-sanguines, Navels, Navelines, Navelates, Salustianas, Vernas, Valencia lates, Maltese, Shamoutis, Ovalis, Trovita and Hamlins) 01/01/1998 31/12/2004 -08051051 01/01/1995 31/12/1997 LIBEN Fresh sanguines and semi-sanguines, from 16 October to 30 November 01/01/1995 31/12/1997 -08051055 01/01/1995 31/12/1997 LIBEN Fresh navels, navelines, navelates, salustianas, vernas, valencia lates, maltese, shamoutis, ovalis, trovita and hamlins, from 16 October to 30 November 01/01/1995 31/12/1997 -08051059 01/01/1995 31/12/1997 LIBEN Fresh sweet oranges, from 16 October to 30 November (excl. sanguines and semi-sanguines, navels, navelines, navelates, salustianas, vernas, valencia lates, maltese, shamoutis, ovalis, trovita and hamlins) 01/01/1995 31/12/1997 -08051061 01/01/1995 31/12/1997 LIBEN Fresh sanguines and semi-sanguines, from 1 to 31 December 01/01/1995 31/12/1997 -08051065 01/01/1995 31/12/1997 LIBEN Fresh navels, navelines, navelates, salustianas, vernas, valencia lates, maltese, shamoutis, ovalis, trovita and hamlins, from 1 to 31 December 01/01/1995 31/12/1997 -08051069 01/01/1995 31/12/1997 LIBEN Fresh sweet oranges, from 1 to 31 December (excl. sanguines and semi-sanguines, navels, navelines, navelates, salustianas, vernas, valencia lates, maltese, shamoutis, ovalis, trovita and hamlins) 01/01/1995 31/12/1997 -08051070 01/01/1988 31/12/1994 LIBEN Fresh or dried oranges, from 1 April to 15 October (excl. fresh sweet oranges) 01/01/1988 31/12/1994 -08051080 01/01/2000 31/12/2500 LIBEN Fresh or dried oranges (excl. fresh sweet oranges) 01/01/2000 31/12/2500 -08051082 01/01/1995 31/12/1999 LIBEN Fresh or dried oranges, from 1 January to 31 March (excl. fresh sweet oranges) 01/01/1995 31/12/1999 -08051084 01/01/1995 31/12/1999 LIBEN Fresh or dried oranges, from 1 April to 15 October (excl. fresh sweet oranges) 01/01/1995 31/12/1999 -08051086 01/01/1995 31/12/1999 LIBEN Fresh or dried oranges, from 16 October to 31 December (excl. fresh sweet oranges) 01/01/1995 31/12/1999 -08051090 01/01/1988 31/12/1994 LIBEN Fresh or dried oranges, from 16 October to 31 March(excl. fresh sweet oranges) 01/01/1988 31/12/1994 -080520 01/01/1988 31/12/2016 LIBEN Fresh or dried mandarins incl. tangerines and satsumas, clementines, wilkings and similar citrus hybrids 01/01/1988 31/12/2016 -08052010 01/01/1988 31/12/1994 LIBEN Fresh or dried clementines 01/01/1988 31/12/1994 -08052010 01/01/1998 31/12/2016 LIBEN Fresh or dried clementines 01/01/1998 31/12/2016 -08052011 01/01/1995 31/12/1997 LIBEN Fresh or dried clementines, from 1 January to end February 01/01/1995 31/12/1997 -08052013 01/01/1995 31/12/1997 LIBEN Fresh or dried monreales or satsumas, from 1 January to end February 01/01/1995 31/12/1997 -08052015 01/01/1995 31/12/1997 LIBEN Fresh or dried mandarins and wilkings, from 1 January to end February 01/01/1995 31/12/1997 -08052017 01/01/1995 31/12/1997 LIBEN Fresh or dried tangerines, from 1 January to end February 01/01/1995 31/12/1997 -08052019 01/01/1995 31/12/1997 LIBEN Fresh or dried tangelos, ortaniques, malaquinas and similar citrus hybrids, from 1 January to end February (excl. clementines, monreales, satsumas, mandarins, wilkings and tangerines) 01/01/1995 31/12/1997 -08052021 01/01/1995 31/12/1997 LIBEN Fresh or dried clementines, from 1 March to 31 October 01/01/1995 31/12/1997 -08052023 01/01/1995 31/12/1997 LIBEN Fresh or dried monreales or satsumas, from 1 March to 31 October 01/01/1995 31/12/1997 -08052025 01/01/1995 31/12/1997 LIBEN Fresh or dried mandarins and wilkings, from 1 March to 31 October 01/01/1995 31/12/1997 -08052027 01/01/1995 31/12/1997 LIBEN Fresh or dried tangerines, from 1 March to 31 October 01/01/1995 31/12/1997 -08052029 01/01/1995 31/12/1997 LIBEN Fresh or dried tangelos, ortaniques, malaquinas and similar citrus hybrids, from 1 March to 31 October (excl. clementines, monreales, satsumas, mandarins, wilkings and tangerines) 01/01/1995 31/12/1997 -08052030 01/01/1988 31/12/1994 LIBEN Fresh or dried monreales and satsumas 01/01/1988 31/12/1994 -08052030 01/01/1998 31/12/2016 LIBEN Fresh or dried monreales and satsumas 01/01/1998 31/12/2016 -08052031 01/01/1995 31/12/1997 LIBEN Fresh or dried clementines, from 1 November to 31 December 01/01/1995 31/12/1997 -08052033 01/01/1995 31/12/1997 LIBEN Fresh or dried monreales or satsumas, from 1 November to 31 December 01/01/1995 31/12/1997 -08052035 01/01/1995 31/12/1997 LIBEN Fresh or dried mandarins and wilkings, from 1 November to 31 December 01/01/1995 31/12/1997 -08052037 01/01/1995 31/12/1997 LIBEN Fresh or dried tangerines, from 1 November to 31 December 01/01/1995 31/12/1997 -08052039 01/01/1995 31/12/1997 LIBEN Fresh or dried tangelos, ortaniques, malaquinas and similar citrus hybrids, from 1 November to 31 December (excl. clementines, monreales, satsumas, mandarins, wilkings and tangerines) 01/01/1995 31/12/1997 -08052050 01/01/1988 31/12/1994 LIBEN Fresh or dried mandarins and wilkings 01/01/1988 31/12/1994 -08052050 01/01/1998 31/12/2016 LIBEN Fresh or dried mandarins and wilkings 01/01/1998 31/12/2016 -08052070 01/01/1988 31/12/1994 LIBEN Fresh or dried tangerines 01/01/1988 31/12/1994 -08052070 01/01/1998 31/12/2016 LIBEN Fresh or dried tangerines 01/01/1998 31/12/2016 -08052090 01/01/1988 31/12/1994 LIBEN Fresh or dried tangelos, ortaniques, malaquinas and similar citrus hybrids (excl. clementines, monreals, satsumas, mandarins, wilkings and tangerines) 01/01/1988 31/12/1994 -08052090 01/01/1998 31/12/2016 LIBEN Fresh or dried tangelos, ortaniques, malaquinas and similar citrus hybrids (excl. clementines, monreales, satsumas, mandarins, wilkings and tangerines) 01/01/1998 31/12/2016 -080521 01/01/2017 31/12/2500 LIBEN Fresh or dried mandarins incl. tangerines and satsumas (excl. clementines) 01/01/2017 31/12/2500 -08052110 01/01/2017 31/12/2500 LIBEN Fresh or dried satsumas 01/01/2017 31/12/2500 -08052190 01/01/2017 31/12/2500 LIBEN Fresh or dried mandarins incl. tangerines (excl. clementines and satsumas) 01/01/2017 31/12/2500 -080522 01/01/2017 31/12/2500 LIBEN Fresh or dried clementines incl. monreales 01/01/2017 31/12/2500 -08052200 01/01/2017 31/12/2500 LIBEN Fresh or dried clementines incl. monreales 01/01/2017 31/12/2500 -080529 01/01/2017 31/12/2500 LIBEN Fresh or dried wilkings and similar citrus hybrids 01/01/2017 31/12/2500 -08052900 01/01/2017 31/12/2500 LIBEN Fresh or dried wilkings and similar citrus hybrids 01/01/2017 31/12/2500 -080530 01/01/1988 31/12/2001 LIBEN Fresh or dried lemons "Citrus limon, Citrus limonum" and limes "Citrus aurantifolia" 01/01/1988 31/12/2001 -08053010 01/01/1988 31/12/1994 LIBEN Fresh or dried lemons 01/01/1988 31/12/1994 -08053010 01/01/1998 31/12/2001 LIBEN Fresh or dried lemons "Citrus limon, Citrus limonum" 01/01/1998 31/12/2001 -08053020 01/01/1995 31/12/1997 LIBEN Fresh or dried lemons "Citrus limon, Citrus limonum", from 1 January to 31 May 01/01/1995 31/12/1997 -08053030 01/01/1995 31/12/1997 LIBEN Fresh or dried lemons "Citrus limon, Citrus limonum", from 1 June to 31 October 01/01/1995 31/12/1997 -08053040 01/01/1995 31/12/1997 LIBEN Fresh or dried lemons "Citrus limon, Citrus limonum", from 1 November to 31 December 01/01/1995 31/12/1997 -08053090 01/01/1988 31/12/2001 LIBEN Fresh or dried limes "Citrus aurantifolia" 01/01/1988 31/12/2001 -080540 01/01/1988 31/12/2500 LIBEN Fresh or dried grapefruit 01/01/1988 31/12/2500 -08054000 01/01/1988 31/12/1994 LIBEN Fresh or dried grapefruit 01/01/1988 31/12/1994 -08054000 01/01/2000 31/12/2500 LIBEN Fresh or dried grapefruit 01/01/2000 31/12/2500 -08054010 01/01/1995 31/12/1995 LIBEN Fresh or dried grapefruit, from 1 November to 30 April 01/01/1995 31/12/1995 -08054020 01/01/1996 31/12/1999 LIBEN Fresh or dried grapefruit, from 1 January to 30 April 01/01/1996 31/12/1999 -08054090 01/01/1995 31/12/1999 LIBEN Fresh or dried grapefruit, from 1 May to 31 October 01/01/1995 31/12/1999 -08054095 01/01/1996 31/12/1999 LIBEN Fresh or dried grapefruit, from 1 November to 31 December 01/01/1996 31/12/1999 -080550 01/01/2002 31/12/2500 LIBEN Fresh or dried lemons "Citrus limon, Citrus limonum" and limes "Citrus aurantifolia, Citrus latifolia" 01/01/2002 31/12/2500 -08055010 01/01/2002 31/12/2500 LIBEN Fresh or dried lemons "Citrus limon, Citrus limonum" 01/01/2002 31/12/2500 -08055090 01/01/2002 31/12/2500 LIBEN Fresh or dried limes "Citrus aurantifolia, Citrus latifolia" 01/01/2002 31/12/2500 -080590 01/01/1988 31/12/2500 LIBEN Fresh or dried citrus fruit (excl. oranges, lemons "Citrus limon, Citrus limonum", limes "Citrus aurantifolia, Citrus latifolia", grapefruit, mandarins, incl. tangerines and satsumas, clementines, wilkings and similar citrus hybrids) 01/01/1988 31/12/2500 -08059000 01/01/1988 31/12/2001 LIBEN Fresh or dried citrus fruit (excl. oranges, lemons, grapefruit, mandarins, incl. tangerines and satsumas, clementines, wilkings and similar citrus hybrids) 01/01/1988 31/12/2001 -08059000 01/01/2002 31/12/2500 LIBEN Fresh or dried citrus fruit (excl. oranges, lemons "Citrus limon, Citrus limonum", limes "Citrus aurantifolia, Citrus latifolia", grapefruit, mandarins, incl. tangerines and satsumas, clementines, wilkings and similar citrus hybrids) 01/01/2002 31/12/2500 -0806 01/01/1988 31/12/2500 LIBEN Grapes, fresh or dried 01/01/1988 31/12/2500 -080610 01/01/1988 31/12/2500 LIBEN Fresh grapes 01/01/1988 31/12/2500 -08061010 01/01/1998 31/12/2500 LIBEN Fresh table grapes 01/01/1998 31/12/2500 -08061011 01/01/1988 31/12/1994 LIBEN Fresh table grapes of variety emperor, from 1 December to 31 January 01/01/1988 31/12/1994 -08061015 01/01/1988 31/12/1994 LIBEN Fresh table grapes, from 1 November to 14 July (excl. emperor variety, from 1 December to 31 January) 01/01/1988 31/12/1994 -08061019 01/01/1988 31/12/1994 LIBEN Fresh table grapes, from 15 July to 31 October 01/01/1988 31/12/1994 -08061021 01/01/1995 31/12/1997 LIBEN Fresh table grapes of the variety Emperor "Vitis vinifera cv.", from 1 to 31 January 01/01/1995 31/12/1997 -08061029 01/01/1995 31/12/1997 LIBEN Fresh table grapes, from 1 January to 14 July (excl. the variety Emperor, from 1 to 31 January) 01/01/1995 31/12/1997 -08061030 01/01/1995 31/12/1997 LIBEN Fresh table grapes, from 15 to 20 July 01/01/1995 31/12/1997 -08061040 01/01/1995 31/12/1997 LIBEN Fresh table grapes, from 21 July to 31 October 01/01/1995 31/12/1997 -08061050 01/01/1995 31/12/1997 LIBEN Fresh table grapes, from 1 to 20 November 01/01/1995 31/12/1997 -08061061 01/01/1995 31/12/1997 LIBEN Fresh table grapes of the variety Emperor "Vitis vinifera cv.", from 1 to 31 December 01/01/1995 31/12/1997 -08061069 01/01/1995 31/12/1997 LIBEN Fresh table grapes, from 21 November to 31 December (excl. the variety Emperor, from 1 to 31 December) 01/01/1995 31/12/1997 -08061090 01/01/2000 31/12/2500 LIBEN Fresh grapes (excl. table grapes) 01/01/2000 31/12/2500 -08061091 01/01/1988 31/12/1995 LIBEN Fresh grapes, from 1 November to 14 July (excl. table) 01/01/1988 31/12/1995 -08061093 01/01/1996 31/12/1999 LIBEN Fresh grapes, from 1 January to 14 July (excl. table grapes) 01/01/1996 31/12/1999 -08061095 01/01/1996 31/12/1999 LIBEN Fresh grapes, from 15 July to 31 October (excl. table grapes) 01/01/1996 31/12/1999 -08061097 01/01/1996 31/12/1999 LIBEN Fresh grapes, from 1 November to 31 December (excl. table grapes) 01/01/1996 31/12/1999 -08061099 01/01/1988 31/12/1995 LIBEN Fresh grapes, from 15 July to 31 October (excl. table) 01/01/1988 31/12/1995 -080620 01/01/1988 31/12/2500 LIBEN Dried grapes 01/01/1988 31/12/2500 -08062010 01/01/2005 31/12/2500 LIBEN Currants 01/01/2005 31/12/2500 -08062011 01/01/1988 31/12/2004 LIBEN Currants, in immediate containers of net capacity of <= 2 kg 01/01/1988 31/12/2004 -08062012 01/01/1990 31/12/2004 LIBEN Sultanas, in immediate containers of net capacity <= 2 kg 01/01/1990 31/12/2004 -08062018 01/01/1990 31/12/2004 LIBEN Dried grapes (excl. currants and sultanas), in immediate containers of net capacity <= 2 kg 01/01/1990 31/12/2004 -08062019 01/01/1988 31/12/1989 LIBEN Dried grapes, in immediate containers of net capacity of =< 2 kg (excl. currants) 01/01/1988 31/12/1989 -08062030 01/01/2005 31/12/2500 LIBEN Sultanas 01/01/2005 31/12/2500 -08062090 01/01/2005 31/12/2500 LIBEN Dried grapes (excl. currants and sultanas) 01/01/2005 31/12/2500 -08062091 01/01/1988 31/12/2004 LIBEN Currants, in immediate containers of net capacity of > 2 kg 01/01/1988 31/12/2004 -08062092 01/01/1990 31/12/2004 LIBEN Sultanas, in immediate containers of net capacity > 2 kg 01/01/1990 31/12/2004 -08062098 01/01/1990 31/12/2004 LIBEN Dried grapes (excl. currants and sultanas), in immediate containers of net capacity > 2 kg 01/01/1990 31/12/2004 -08062099 01/01/1988 31/12/1989 LIBEN Dried grapes, in immediate containers of net capacity of > 2 kg (excl. currants) 01/01/1988 31/12/1989 -0807 01/01/1988 31/12/2500 LIBEN Melons, incl. watermelons, and papaws "papayas", fresh 01/01/1988 31/12/2500 -080710 01/01/1988 31/12/1995 LIBEN Fresh melons, incl. watermelons 01/01/1988 31/12/1995 -08071010 01/01/1988 31/12/1995 LIBEN Fresh watermelons 01/01/1988 31/12/1995 -08071090 01/01/1988 31/12/1995 LIBEN Fresh melons (excl. watermelons) 01/01/1988 31/12/1995 -080711 01/01/1996 31/12/2500 LIBEN Fresh watermelons 01/01/1996 31/12/2500 -08071100 01/01/1996 31/12/2500 LIBEN Fresh watermelons 01/01/1996 31/12/2500 -080719 01/01/1996 31/12/2500 LIBEN Fresh melons (excl. watermelons) 01/01/1996 31/12/2500 -08071900 01/01/1996 31/12/2500 LIBEN Fresh melons (excl. watermelons) 01/01/1996 31/12/2500 -080720 01/01/1988 31/12/2500 LIBEN Fresh pawpaws "papayas" 01/01/1988 31/12/2500 -08072000 01/01/1988 31/12/2500 LIBEN Fresh pawpaws "papayas" 01/01/1988 31/12/2500 -0808 01/01/1988 31/12/2500 LIBEN Apples, pears and quinces, fresh 01/01/1988 31/12/2500 -080810 01/01/1988 31/12/2500 LIBEN Fresh apples 01/01/1988 31/12/2500 -08081010 01/01/1988 31/12/2500 LIBEN Fresh cider apples, in bulk, from 16 September to 15 December 01/01/1988 31/12/2500 -08081020 01/01/1998 31/12/2004 LIBEN Fresh apples of the variety Golden Delicious 01/01/1998 31/12/2004 -08081031 01/01/1993 31/12/1994 LIBEN Apples of the variety golden delicious, fresh, from 1 august to 31 December 01/01/1993 31/12/1994 -08081033 01/01/1993 31/12/1994 LIBEN Apples of the variety granny smith, fresh, from 1 august to 31 December 01/01/1993 31/12/1994 -08081039 01/01/1993 31/12/1994 LIBEN Apples, fresh, from 1 august to 31 December (excl. cider apples, in bulk, from 16 September to 15 December, and applies of the varieties golden delicious and granny smith) 01/01/1993 31/12/1994 -08081050 01/01/1998 31/12/2004 LIBEN Fresh apples of the variety Granny Smith 01/01/1998 31/12/2004 -08081051 01/01/1993 31/12/1997 LIBEN Apples of the variety Golden Delicious, fresh, from 1 January to 31 March 01/01/1993 31/12/1997 -08081053 01/01/1993 31/12/1997 LIBEN Apples of the variety Granny Smith, fresh, from 1 January to 31 March 01/01/1993 31/12/1997 -08081059 01/01/1993 31/12/1997 LIBEN Apples, fresh, from 1 January to 31 March (excl. apples of the varieties Golden Delicious and Granny Smith) 01/01/1993 31/12/1997 -08081061 01/01/1995 31/12/1997 LIBEN Fresh apples of the variety Golden Delicious, from 1 April to 30 June 01/01/1995 31/12/1997 -08081063 01/01/1995 31/12/1997 LIBEN Fresh apples of the variety Granny Smith, from 1 April to 30 June 01/01/1995 31/12/1997 -08081069 01/01/1995 31/12/1997 LIBEN Fresh apples, from 1 April to 30 June (excl. the varieties Golden Delicious and Granny Smith) 01/01/1995 31/12/1997 -08081071 01/01/1995 31/12/1997 LIBEN Fresh apples of the variety Golden Delicious, from 1 to 31 July 01/01/1995 31/12/1997 -08081073 01/01/1995 31/12/1997 LIBEN Fresh apples of the variety Granny Smith, from 1 to 31 July 01/01/1995 31/12/1997 -08081079 01/01/1995 31/12/1997 LIBEN Fresh apples, from 1 to 31 July (excl. the varieties Golden Delicious and Granny Smith) 01/01/1995 31/12/1997 -08081080 01/01/2005 31/12/2500 LIBEN Fresh apples (excl. cider apples, in bulk, from 16 September to 15 December) 01/01/2005 31/12/2500 -08081081 01/01/1993 31/12/1994 LIBEN Apples of the variety golden delicious, fresh, from 1 April to 31 July 01/01/1993 31/12/1994 -08081083 01/01/1993 31/12/1994 LIBEN Apples of the variety granny smith, fresh, from 1 April to 31 July 01/01/1993 31/12/1994 -08081089 01/01/1993 31/12/1994 LIBEN Apples, fresh, from 1 April to 31 July (excl. apples of the varieties golden delicious and granny smith) 01/01/1993 31/12/1994 -08081090 01/01/1998 31/12/2004 LIBEN Fresh apples (excl. cider apples, in bulk, from 16 September to 15 December, and the varieties Golden Delicious and Granny Smith) 01/01/1998 31/12/2004 -08081091 01/01/1988 31/12/1992 LIBEN Fresh apples, from 1 august to 31 December (excl. cider apples, in bulk, from 16 September to 15 December) 01/01/1988 31/12/1992 -08081092 01/01/1995 31/12/1997 LIBEN Fresh apples of the variety Golden Delicious, from 1 August to 31 December 01/01/1995 31/12/1997 -08081093 01/01/1988 31/12/1992 LIBEN Fresh apples, from 1 January to 31 March 01/01/1988 31/12/1992 -08081094 01/01/1995 31/12/1997 LIBEN Fresh apples of the variety Granny Smith, from 1 August to 31 December 01/01/1995 31/12/1997 -08081098 01/01/1995 31/12/1997 LIBEN Fresh apples, from 1 August to 31 December (excl. cider apples, in bulk, from 16 September to 15 December, and the varieties Golden Delicious and Granny Smith) 01/01/1995 31/12/1997 -08081099 01/01/1988 31/12/1992 LIBEN Fresh apples, from 1 April to 31 July 01/01/1988 31/12/1992 -080820 01/01/1988 31/12/2011 LIBEN Fresh pears and quinces 01/01/1988 31/12/2011 -08082010 01/01/1988 31/12/2011 LIBEN Fresh perry pears, in bulk, from 1 August to 31 December 01/01/1988 31/12/2011 -08082031 01/01/1988 31/12/1997 LIBEN Fresh pears, from 1 January to 31 March 01/01/1988 31/12/1997 -08082033 01/01/1988 31/12/1994 LIBEN Fresh pears, from 1 April to 15 July 01/01/1988 31/12/1994 -08082035 01/01/1988 31/12/1994 LIBEN Fresh pears, from 16 July to 31 July 01/01/1988 31/12/1994 -08082037 01/01/1995 31/12/1997 LIBEN Fresh pears, from 1 to 30 April 01/01/1995 31/12/1997 -08082039 01/01/1988 31/12/1994 LIBEN Fresh pears, from 1 august to 31 December (excl. perry pears, in bulk) 01/01/1988 31/12/1994 -08082041 01/01/1995 31/12/1997 LIBEN Fresh pears, from 1 May to 30 June 01/01/1995 31/12/1997 -08082047 01/01/1995 31/12/1997 LIBEN Fresh pears, from 1 to 15 July 01/01/1995 31/12/1997 -08082050 01/01/1998 31/12/2011 LIBEN Fresh pears (excl. perry pears, in bulk, from 1 August to 31 December) 01/01/1998 31/12/2011 -08082051 01/01/1995 31/12/1997 LIBEN Fresh pears, from 16 to 31 July 01/01/1995 31/12/1997 -08082057 01/01/1995 31/12/1997 LIBEN Fresh pears, from 1 August to 31 October (excl. perry pears, in bulk) 01/01/1995 31/12/1997 -08082067 01/01/1995 31/12/1997 LIBEN Fresh pears, from 1 November to 31 December (excl. perry pears, in bulk) 01/01/1995 31/12/1997 -08082090 01/01/1988 31/12/2011 LIBEN Fresh quinces 01/01/1988 31/12/2011 -080830 01/01/2012 31/12/2500 LIBEN Fresh pears 01/01/2012 31/12/2500 -08083010 01/01/2012 31/12/2500 LIBEN Fresh perry pears, in bulk, from 1 August to 31 December 01/01/2012 31/12/2500 -08083090 01/01/2012 31/12/2500 LIBEN Fresh pears (excl. perry pears in bulk from 1 August to 31 December) 01/01/2012 31/12/2500 -080840 01/01/2012 31/12/2500 LIBEN Fresh quinces 01/01/2012 31/12/2500 -08084000 01/01/2012 31/12/2500 LIBEN Fresh quinces 01/01/2012 31/12/2500 -0809 01/01/1988 31/12/2500 LIBEN Apricots, cherries, peaches incl. nectarines, plums and sloes, fresh 01/01/1988 31/12/2500 -080910 01/01/1988 31/12/2500 LIBEN Fresh apricots 01/01/1988 31/12/2500 -08091000 01/01/1988 31/12/1994 LIBEN Fresh apricots 01/01/1988 31/12/1994 -08091000 01/01/1998 31/12/2500 LIBEN Fresh apricots 01/01/1998 31/12/2500 -08091010 01/01/1995 31/12/1997 LIBEN Fresh apricots, from 1 January to 31 May 01/01/1995 31/12/1997 -08091020 01/01/1995 31/12/1997 LIBEN Fresh apricots, from 1 to 20 June 01/01/1995 31/12/1997 -08091030 01/01/1995 31/12/1997 LIBEN Fresh apricots, from 21 to 30 June 01/01/1995 31/12/1997 -08091040 01/01/1995 31/12/1997 LIBEN Fresh apricots, from 1 to 31 July 01/01/1995 31/12/1997 -08091050 01/01/1995 31/12/1997 LIBEN Fresh apricots, from 1 August to 31 December 01/01/1995 31/12/1997 -080920 01/01/1988 31/12/2011 LIBEN Fresh cherries 01/01/1988 31/12/2011 -08092005 01/01/1998 31/12/2011 LIBEN Fresh sour cherries "Prunus cerasus" 01/01/1998 31/12/2011 -08092010 01/01/1988 31/12/1992 LIBEN Fresh cherries, from 1 May to 15 July 01/01/1988 31/12/1992 -08092011 01/01/1995 31/12/1997 LIBEN Fresh sour cherries "Prunus cerasus", from 1 January to 30 April 01/01/1995 31/12/1997 -08092019 01/01/1995 31/12/1997 LIBEN Fresh cherries, from 1 January to 30 April (excl. sour cherries "Prunus cerasus") 01/01/1995 31/12/1997 -08092020 01/01/1993 31/12/1994 LIBEN Sour cherries 'prunus cerasus', fresh, from 1 May to 15 July 01/01/1993 31/12/1994 -08092021 01/01/1995 31/12/1997 LIBEN Fresh sour cherries "Prunus cerasus", from 1 to 20 May 01/01/1995 31/12/1997 -08092029 01/01/1995 31/12/1997 LIBEN Fresh cherries, from 1 to 20 May (excl. sour cherries "Prunus cerasus") 01/01/1995 31/12/1997 -08092031 01/01/1995 31/12/1997 LIBEN Fresh sour cherries "Prunus cerasus", from 21 to 31 May 01/01/1995 31/12/1997 -08092039 01/01/1995 31/12/1997 LIBEN Fresh cherries, from 21 to 31 May (excl. sour cherries "Prunus cerasus") 01/01/1995 31/12/1997 -08092040 01/01/1993 31/12/1994 LIBEN Cherries, fresh, from 1 May to 15 July (excl. sour cherries 'prunus cerasus') 01/01/1993 31/12/1994 -08092041 01/01/1995 31/12/1997 LIBEN Fresh sour cherries "Prunus cerasus", from 1 June to 15 July 01/01/1995 31/12/1997 -08092049 01/01/1995 31/12/1997 LIBEN Fresh cherries, from 1 June to 15 July (excl. sour cherries "Prunus cerasus") 01/01/1995 31/12/1997 -08092051 01/01/1995 31/12/1997 LIBEN Fresh sour cherries "Prunus cerasus", from 16 to 31 July 01/01/1995 31/12/1997 -08092059 01/01/1995 31/12/1997 LIBEN Fresh cherries, from 16 to 31 July (excl. sour cherries "Prunus cerasus") 01/01/1995 31/12/1997 -08092060 01/01/1993 31/12/1994 LIBEN Sour cherries 'prunus cerasus', fresh, from 16 July to 30 April 01/01/1993 31/12/1994 -08092061 01/01/1995 31/12/1997 LIBEN Fresh sour cherries "Prunus cerasus", from 1 to 10 August 01/01/1995 31/12/1997 -08092069 01/01/1995 31/12/1997 LIBEN Fresh cherries, from 1 to 10 August (excl. sour cherries "Prunus cerasus") 01/01/1995 31/12/1997 -08092071 01/01/1995 31/12/1997 LIBEN Fresh sour cherries "Prunus cerasus", from 11 August to 31 December 01/01/1995 31/12/1997 -08092079 01/01/1995 31/12/1997 LIBEN Fresh cherries, from 11 August to 31 December (excl. sour cherries "Prunus cerasus") 01/01/1995 31/12/1997 -08092080 01/01/1993 31/12/1994 LIBEN Cherries, fresh, from 16 July t 30 April (excl. sour cherries 'prunus cerasus') 01/01/1993 31/12/1994 -08092090 01/01/1988 31/12/1992 LIBEN Fresh cherries, from 16 July to 31 April 01/01/1988 31/12/1992 -08092095 01/01/1998 31/12/2011 LIBEN Fresh cherries (excl. sour cherries "Prunus cerasus") 01/01/1998 31/12/2011 -080921 01/01/2012 31/12/2500 LIBEN Fresh sour cherries "Prunus cerasus" 01/01/2012 31/12/2500 -08092100 01/01/2012 31/12/2500 LIBEN Fresh sour cherries "Prunus cerasus" 01/01/2012 31/12/2500 -080929 01/01/2012 31/12/2500 LIBEN Fresh cherries (excl. sour cherries) 01/01/2012 31/12/2500 -08092900 01/01/2012 31/12/2500 LIBEN Fresh cherries (excl. sour cherries) 01/01/2012 31/12/2500 -080930 01/01/1988 31/12/2500 LIBEN Fresh peaches, incl. nectarines 01/01/1988 31/12/2500 -08093000 01/01/1988 31/12/1992 LIBEN Fresh peaches, incl. nectarines 01/01/1988 31/12/1992 -08093010 01/01/1993 31/12/1994 LIBEN Nectarines, fresh 01/01/1993 31/12/1994 -08093010 01/01/1998 31/12/2500 LIBEN Fresh nectarines 01/01/1998 31/12/2500 -08093011 01/01/1995 31/12/1997 LIBEN Fresh nectarines, from 1 January to 10 June 01/01/1995 31/12/1997 -08093019 01/01/1995 31/12/1997 LIBEN Fresh peaches, from 1 January to 10 June (excl. nectarines) 01/01/1995 31/12/1997 -08093021 01/01/1995 31/12/1997 LIBEN Fresh nectarines, from 11 to 20 June 01/01/1995 31/12/1997 -08093029 01/01/1995 31/12/1997 LIBEN Fresh peaches, from 11 to 20 June (excl. nectarines) 01/01/1995 31/12/1997 -08093031 01/01/1995 31/12/1997 LIBEN Fresh nectarines, from 21 June to 31 July 01/01/1995 31/12/1997 -08093039 01/01/1995 31/12/1997 LIBEN Fresh peaches, from 21 June to 31 July (excl. nectarines) 01/01/1995 31/12/1997 -08093041 01/01/1995 31/12/1997 LIBEN Fresh nectarines, from 1 August to 30 September 01/01/1995 31/12/1997 -08093049 01/01/1995 31/12/1997 LIBEN Fresh peaches, from 1 August to 30 September (excl. nectarines) 01/01/1995 31/12/1997 -08093051 01/01/1995 31/12/1997 LIBEN Fresh nectarines, from 1 October to 31 December 01/01/1995 31/12/1997 -08093059 01/01/1995 31/12/1997 LIBEN Fresh peaches, from 1 October to 31 December (excl. nectarines) 01/01/1995 31/12/1997 -08093090 01/01/1993 31/12/1994 LIBEN Peaches, fresh (excl. nectarines) 01/01/1993 31/12/1994 -08093090 01/01/1998 31/12/2500 LIBEN Fresh peaches (excl. nectarines) 01/01/1998 31/12/2500 -080940 01/01/1988 31/12/2500 LIBEN Fresh plums and sloes 01/01/1988 31/12/2500 -08094005 01/01/1998 31/12/2500 LIBEN Fresh plums 01/01/1998 31/12/2500 -08094010 01/01/1995 31/12/1997 LIBEN Fresh plums, from 1 January to 10 June 01/01/1995 31/12/1997 -08094011 01/01/1988 31/12/1994 LIBEN Fresh plums, from 1 July to 30 September 01/01/1988 31/12/1994 -08094019 01/01/1988 31/12/1994 LIBEN Fresh plums, from 1 October to 30 June 01/01/1988 31/12/1994 -08094020 01/01/1995 31/12/1997 LIBEN Fresh plums, from 11 to 30 June 01/01/1995 31/12/1997 -08094030 01/01/1995 31/12/1997 LIBEN Fresh plums, from 1 July to 30 September 01/01/1995 31/12/1997 -08094040 01/01/1995 31/12/1997 LIBEN Fresh plums, from 1 October to 31 December 01/01/1995 31/12/1997 -08094090 01/01/1988 31/12/2500 LIBEN Fresh sloes 01/01/1988 31/12/2500 -0810 01/01/1988 31/12/2500 LIBEN Fresh strawberries, raspberries, blackberries, back, white or red currants, gooseberries and other edible fruits (excl. nuts, bananas, dates, figs, pineapples, avocados, guavas, mangoes, mangosteens, papaws "papayas", citrus fruit, grapes, melons, apples, pears, quinces, apricots, cherries, peaches, plums and sloes) 01/01/1988 31/12/2500 -081010 01/01/1988 31/12/2500 LIBEN Fresh strawberries 01/01/1988 31/12/2500 -08101000 01/01/2000 31/12/2500 LIBEN Fresh strawberries 01/01/2000 31/12/2500 -08101005 01/01/1996 31/12/1999 LIBEN Fresh strawberries, from 1 January to 30 April 01/01/1996 31/12/1999 -08101010 01/01/1988 31/12/1999 LIBEN Fresh strawberries, from 1 May to 31 July 01/01/1988 31/12/1999 -08101080 01/01/1996 31/12/1999 LIBEN Fresh strawberries, from 1 August to 31 December 01/01/1996 31/12/1999 -08101090 01/01/1988 31/12/1995 LIBEN Fresh strawberries, from 1 August to 30 April 01/01/1988 31/12/1995 -081020 01/01/1988 31/12/2500 LIBEN Fresh raspberries, blackberries, mulberries and loganberries 01/01/1988 31/12/2500 -08102010 01/01/1988 31/12/2500 LIBEN Fresh raspberries 01/01/1988 31/12/2500 -08102090 01/01/1988 31/12/2500 LIBEN Fresh blackberries, mulberries and loganberries 01/01/1988 31/12/2500 -081030 01/01/1988 31/12/2006 LIBEN Fresh black, white or red currants and gooseberries 01/01/1988 31/12/2006 -081030 01/01/2012 31/12/2500 LIBEN Fresh black-, white- or redcurrants and gooseberries 01/01/2012 31/12/2500 -08103010 01/01/1988 31/12/2006 LIBEN Fresh black currants 01/01/1988 31/12/2006 -08103010 01/01/2012 31/12/2500 LIBEN Fresh blackcurrants 01/01/2012 31/12/2500 -08103030 01/01/1988 31/12/2006 LIBEN Fresh red currants 01/01/1988 31/12/2006 -08103030 01/01/2012 31/12/2500 LIBEN Fresh redcurrants 01/01/2012 31/12/2500 -08103090 01/01/1988 31/12/2006 LIBEN Fresh white currants and gooseberries 01/01/1988 31/12/2006 -08103090 01/01/2012 31/12/2500 LIBEN Fresh whitecurrants and gooseberries 01/01/2012 31/12/2500 -081040 01/01/1988 31/12/2500 LIBEN Fresh cranberries, bilberries and other fruits of the genus Vaccinium 01/01/1988 31/12/2500 -08104010 01/01/1988 31/12/2500 LIBEN Fresh cowberries, foxberries or mountain cranberries "fruit of the species Vaccinium vitis-idaea" 01/01/1988 31/12/2500 -08104030 01/01/1988 31/12/2500 LIBEN Fresh fruit of species Vaccinium myrtillus 01/01/1988 31/12/2500 -08104050 01/01/1988 31/12/2500 LIBEN Fresh fruit of species Vaccinium macrocarpum and Vaccinium corymbosum 01/01/1988 31/12/2500 -08104090 01/01/1988 31/12/2500 LIBEN Fresh fruits of genus Vaccinium (excl. of species Vaccinium vitis-idaea, myrtillus, macrocarpum and corymbosum) 01/01/1988 31/12/2500 -081050 01/01/1996 31/12/2500 LIBEN Fresh kiwifruit 01/01/1996 31/12/2500 -08105000 01/01/1996 31/12/1996 LIBEN Fresh kiwifruit 01/01/1996 31/12/1996 -08105000 01/01/2000 31/12/2500 LIBEN Fresh kiwifruit 01/01/2000 31/12/2500 -08105010 01/01/1997 31/12/1999 LIBEN Fresh kiwifruit, from 1 January to 14 May 01/01/1997 31/12/1999 -08105020 01/01/1997 31/12/1999 LIBEN Fresh kiwifruit, from 15 May to 15 November 01/01/1997 31/12/1999 -08105030 01/01/1997 31/12/1999 LIBEN Fresh kiwifruit, from 16 November to 31 December 01/01/1997 31/12/1999 -081060 01/01/2002 31/12/2500 LIBEN Fresh durians 01/01/2002 31/12/2500 -08106000 01/01/2002 31/12/2500 LIBEN Fresh durians 01/01/2002 31/12/2500 -081070 01/01/2012 31/12/2500 LIBEN Fresh persimmons 01/01/2012 31/12/2500 -08107000 01/01/2012 31/12/2500 LIBEN Fresh persimmons 01/01/2012 31/12/2500 -081090 01/01/1988 31/12/2500 LIBEN Fresh tamarinds, cashew apples, jackfruit, lychees, sapodillo plums, passion fruit, carambola, pitahaya and other edible fruit (excl. nuts, bananas, dates, figs, pineapples, avocados, guavas, mangoes, mangosteens, papaws "papayas", citrus fruit, grapes, melons, apples, pears quinces, apricots, cherries, peaches, plums, sloes, strawberries, raspberries, mulberries, blackberries, loganberries, cranberries, fruits of the genus Vaccinium, kiwifruit, durians, persimmons, black-, white- and redcurrants and gooseberries) 01/01/1988 31/12/2500 -08109010 01/01/1988 31/12/1995 LIBEN Fresh kiwi fruit 01/01/1988 31/12/1995 -08109020 01/01/2008 31/12/2500 LIBEN Fresh tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya 01/01/2008 31/12/2500 -08109030 01/01/1990 31/12/2007 LIBEN Tamarinds, cashew apples, jackfruit, lychees and sapodillo plums, fresh 01/01/1990 31/12/2007 -08109040 01/01/1995 31/12/2007 LIBEN Fresh passion fruit, carambola and pitahaya 01/01/1995 31/12/2007 -08109050 01/01/2007 31/12/2011 LIBEN Fresh black currants 01/01/2007 31/12/2011 -08109060 01/01/2007 31/12/2011 LIBEN Fresh red currants 01/01/2007 31/12/2011 -08109070 01/01/2007 31/12/2011 LIBEN Fresh white currants and gooseberries 01/01/2007 31/12/2011 -08109075 01/01/2012 31/12/2500 LIBEN Fresh fruit, edible (excl. nuts, bananas, dates, figs, pineapples, avocados, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, jackfruit, lychees, sapodillo plums, passion fruit, carambola, pitahaya, citrus fruit, grapes, melons, apples, pears, quinces, apricots, cherries, peaches, plums, sloes, strawberries, raspberries, blackberries, mulberries, loganberries, black, white or red currants, gooseberries, cranberries, fruits of the genus Vaccinium, kiwifruit, durians and persimmons) 01/01/2012 31/12/2500 -08109080 01/01/1990 31/12/1994 LIBEN Fruits, edible, fresh, n.e.s. 01/01/1990 31/12/1994 -08109085 01/01/1995 31/12/2001 LIBEN Fresh fruit, edible (excl. nuts, bananas, dates, figs, pineapples, avocadoes, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, jackfruit, lychees, sapodillo plums, passion fruit, carambola, pitahaya, citrus fruit, grapes, melons, apples, pears, quinces, apricots, cherries, peaches, plums, sloes, strawberries, raspberries, blackberries, mulberries, loganberries, black, white or redcurrants, gooseberries, cranberries, fruits of the genus Vaccinium and kiwis) 01/01/1995 31/12/2001 -08109090 01/01/1988 31/12/1989 LIBEN Fresh edible fruit n.e.s. 01/01/1988 31/12/1989 -08109095 01/01/2002 31/12/2011 LIBEN Fresh fruit, edible (excl. nuts, bananas, dates, figs, pineapples, avocados, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, jackfruit, lychees, sapodillo plums, passion fruit, carambola, pitahaya, citrus fruit, grapes, melons, apples, pears, quinces, apricots, cherries, peaches, plums, sloes, strawberries, raspberries, blackberries, mulberries, loganberries, black, white or red currants, gooseberries, cranberries, fruits of the genus Vaccinium, kiwifruit and durians) 01/01/2002 31/12/2011 -0811 01/01/1988 31/12/2500 LIBEN Fruit and nuts, uncooked or cooked by steaming or boiling in water, frozen, whether or not containing added sugar or other sweetening matter 01/01/1988 31/12/2500 -081110 01/01/1988 31/12/2500 LIBEN Frozen strawberries, uncooked or cooked by steaming or boiling in water, whether or not sweetened 01/01/1988 31/12/2500 -08111011 01/01/1988 31/12/2500 LIBEN Strawberries, uncooked or cooked by steaming or boiling in water, sweetened, with sugar content of > 13%, frozen 01/01/1988 31/12/2500 -08111019 01/01/1988 31/12/2500 LIBEN Strawberries, uncooked or cooked by steaming or boiling in water, sweetened, with sugar content of <= 13%, frozen 01/01/1988 31/12/2500 -08111090 01/01/1988 31/12/2500 LIBEN Strawberries, uncooked or cooked by steaming or boiling in water, unsweetened, frozen 01/01/1988 31/12/2500 -081120 01/01/1988 31/12/2500 LIBEN Frozen raspberries, blackberries, mulberries, loganberries, black-, white- or red currants and gooseberries, uncooked or cooked by steaming or boiling in water, whether or not sweetened 01/01/1988 31/12/2500 -08112011 01/01/1988 31/12/2500 LIBEN Raspberries, blackberries, mulberries, loganberries, black, white or red currants and gooseberries, uncooked or cooked by steaming or boiling in water, sweetened, with sugar content of > 13%, frozen 01/01/1988 31/12/2500 -08112019 01/01/1988 31/12/2500 LIBEN Raspberries, blackberries, mulberries, loganberries, black, white or red currants and gooseberries, uncooked or cooked by steaming or boiling in water, sweetened, with sugar content of <= 13%, frozen 01/01/1988 31/12/2500 -08112031 01/01/1988 31/12/2500 LIBEN Raspberries, uncooked or cooked by steaming or boiling in water, frozen, unsweetened 01/01/1988 31/12/2500 -08112039 01/01/1988 31/12/2500 LIBEN Black currants, uncooked or cooked by steaming or boiling in water, frozen, unsweetened 01/01/1988 31/12/2500 -08112051 01/01/1988 31/12/2500 LIBEN Red currants, uncooked or cooked by steaming or boiling in water, frozen, unsweetened 01/01/1988 31/12/2500 -08112059 01/01/1988 31/12/2500 LIBEN Blackberries and mulberries, uncooked or cooked by steaming or boiling in water, frozen, unsweetened 01/01/1988 31/12/2500 -08112090 01/01/1988 31/12/2500 LIBEN Loganberries, white currants and gooseberries, uncooked or cooked by steaming or boiling in water, frozen, unsweetened 01/01/1988 31/12/2500 -081190 01/01/1988 31/12/2500 LIBEN Frozen fruit and nuts, uncooked or cooked by steaming or boiling in water, whether or not sweetened (excl. strawberries, raspberries, blackberries, mulberries, loganberries, black, white or red currants and gooseberries) 01/01/1988 31/12/2500 -08119010 01/01/1988 31/12/1994 LIBEN Fruit and nuts, uncooked or cooked by steaming or boiling in water, frozen, sweetened, with sugar content of > 13 % (excl. strawberries, raspberries, blackberries, mulberries, loganberries, black, white or red currants and gooseberries) 01/01/1988 31/12/1994 -08119011 01/01/1995 31/12/2500 LIBEN Guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, uncooked or cooked by steaming or boiling in water, frozen, containing added sugar or other sweetening matter, with a sugar content of > 13% by weight 01/01/1995 31/12/2500 -08119019 01/01/1995 31/12/2500 LIBEN Frozen fruit and nuts, edible, uncooked or cooked by steaming or boiling in water, containing added sugar or other sweetening matter, with a sugar content of > 13% by weight (excl. strawberries, raspberries, blackberries, mulberries, loganberries, black, white or red currants, gooseberries, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts and macadamia nuts) 01/01/1995 31/12/2500 -08119030 01/01/1988 31/12/1994 LIBEN Fruit and nuts, uncooked or cooked by steaming or boiling in water, frozen, sweetened, with sugar content of =< 13 % (excl. strawberries, raspberries, blackberries, mulberries, loganberries, black, white or red currants and gooseberries) 01/01/1988 31/12/1994 -08119031 01/01/1995 31/12/2500 LIBEN Guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, uncooked or cooked by steaming or boiling in water, frozen, containing added sugar or other sweetening matter, with a sugar content of <= 13% by weight 01/01/1995 31/12/2500 -08119039 01/01/1995 31/12/2500 LIBEN Frozen fruit and nuts, edible, uncooked or cooked by steaming or boiling in water, containing added sugar or other sweetening matter, with a sugar content of <= 13% by weight (excl. strawberries, raspberries, blackberries, mulberries, loganberries, black, white or red currants, gooseberries, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts and macadamia nuts) 01/01/1995 31/12/2500 -08119050 01/01/1988 31/12/2500 LIBEN Fruit of species vaccinium myrtillus, uncooked or cooked by steaming or boiling in water, frozen, unsweetened 01/01/1988 31/12/2500 -08119070 01/01/1988 31/12/2500 LIBEN Fruit of species vaccinium myrtilloides and vaccinium angustifolium, uncooked or cooked by steaming or boiling in water, frozen, unsweetened 01/01/1988 31/12/2500 -08119075 01/01/1993 31/12/2500 LIBEN Sour cherries "Prunus cerasus", whether or not boiled or steamed, frozen, not containing sugar or other sweetening matter 01/01/1993 31/12/2500 -08119080 01/01/1993 31/12/2500 LIBEN Cherries, whether or not boiled or steamed, frozen, not containing added sugar or other sweetening matter (excl. sour cherries "Prunus cerasus") 01/01/1993 31/12/2500 -08119085 01/01/1995 31/12/2500 LIBEN Guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, uncooked or cooked by steaming or boiling in water, frozen, not containing added sugar or other sweetening matter 01/01/1995 31/12/2500 -08119090 01/01/1988 31/12/1992 LIBEN Unsweetened fruits and nuts, uncooked or cooked by steaming or boiling in water, frozen (excl. strawberries, raspberries, blackberries, mulberries, loganberries, black, white or red currants, gooseberries, and fruit of species vaccinium myrtillus, vaccinium myrtilloides and vaccinium angustifolium) 01/01/1988 31/12/1992 -08119095 01/01/1995 31/12/2500 LIBEN Frozen fruit and nuts, edible, uncooked or cooked by steaming or boiling in water, not containing added sugar or other sweetening matter (excl. strawberries, raspberries, blackberries, mulberries, loganberries, black, white or red currants, fruits of the species Vaccinium myrtillus, Vaccinium myrtilloides and Vaccinium angustifolium, cherries, gooseberries, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts and macadamia nuts) 01/01/1995 31/12/2500 -08119099 01/01/1993 31/12/1994 LIBEN Edible fruit and nuts, whether or not boiled or steamed, frozen, not containing added sugar or other sweetening matter (excl. strawberries, raspberries, blackberries, mulberries, loganberries, redcurrants, gooseberries, blueberries of the genus vaccinium myrtillus, of the genus vaccinium myrtilloides or of the genus vaccinium angustifolium, and cherries) 01/01/1993 31/12/1994 -0811S0 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 0811 and SITC section 0 01/01/2001 31/12/2500 -0811S058 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 0811 and SITC group 058 01/01/2001 31/12/2500 -0812 01/01/1988 31/12/2500 LIBEN Fruit and nuts, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2500 -081210 01/01/1988 31/12/2500 LIBEN Cherries, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2500 -08121000 01/01/1988 31/12/2500 LIBEN Cherries, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2500 -081220 01/01/1988 31/12/2001 LIBEN Strawberries, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2001 -08122000 01/01/1988 31/12/2001 LIBEN Strawberries, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2001 -081290 01/01/1988 31/12/2500 LIBEN Fruit and nuts, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption (excl. cherries) 01/01/1988 31/12/2500 -08129010 01/01/1988 31/12/2011 LIBEN Apricots, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2011 -08129020 01/01/1988 31/12/2011 LIBEN Oranges, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2011 -08129025 01/01/2012 31/12/2500 LIBEN Apricots and oranges, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/2012 31/12/2500 -08129030 01/01/1988 31/12/2500 LIBEN Pawpaws, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2500 -08129040 01/01/1988 31/12/2500 LIBEN Fruit of species vaccinium myrtillus, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2500 -08129050 01/01/1988 31/12/2004 LIBEN Black currants, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2004 -08129060 01/01/1988 31/12/2004 LIBEN Raspberries, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable in that state for immediate consumption 01/01/1988 31/12/2004 -08129070 01/01/1995 31/12/2500 LIBEN Guavas, mangoes, mangosteens, tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable for immediate consumption 01/01/1995 31/12/2500 -08129090 01/01/1988 31/12/1994 LIBEN Fruit and nuts, provisionally preserved, but unsuitable in that state for immediate consumption (excl. cherries, strawberries, apricots, oranges, pawpaws, fruit of species vaccinium myrtillus, blackcurrants and raspberries) 01/01/1988 31/12/1994 -08129095 01/01/1995 31/12/2001 LIBEN Fruit and nuts, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable for immediate consumption (excl. cherries, strawberries, apricots, oranges, papaws "papayas", fruit of the species Vaccinium myrtillus, blackcurrants, raspberries, guavas, mangoes, mangosteens, tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola-nuts and macadamia nuts) 01/01/1995 31/12/2001 -08129098 01/01/2005 31/12/2500 LIBEN Fruit and nuts, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable for immediate consumption (excl. cherries, apricots, oranges, papaws "papayas", fruit of the species Vaccinium myrtillus, guavas, mangoes, mangosteens, tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola-nuts and macadamia nuts) 01/01/2005 31/12/2500 -08129099 01/01/2002 31/12/2004 LIBEN Fruit and nuts, provisionally preserved, e.g. by sulphur dioxide gas, in brine, in sulphur water or in other preservative solutions, but unsuitable for immediate consumption (excl. cherries, apricots, oranges, papaws "papayas", fruit of the species Vaccinium myrtillus, black currants, raspberries, guavas, mangoes, mangosteens, tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola-nuts and macadamia nuts) 01/01/2002 31/12/2004 -0812S0 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 0812 and SITC section 0 01/01/2001 31/12/2500 -0812S058 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 0812 and SITC group 058 01/01/2001 31/12/2500 -0813 01/01/1988 31/12/2500 LIBEN Dried apricots, prunes, apples, peaches, pears, papaws "papayas", tamarinds and other edible fruits, and mixtures of edible and dried fruits or of edible nuts (excl. nuts, bananas, dates, figs, pineapples, avocados, guavas, mangoes, mangosteens, citrus fruit and grapes, unmixed) 01/01/1988 31/12/2500 -081310 01/01/1988 31/12/2500 LIBEN Dried apricots 01/01/1988 31/12/2500 -08131000 01/01/1988 31/12/2500 LIBEN Dried apricots 01/01/1988 31/12/2500 -081320 01/01/1988 31/12/2500 LIBEN Dried prunes 01/01/1988 31/12/2500 -08132000 01/01/1988 31/12/2500 LIBEN Dried prunes 01/01/1988 31/12/2500 -081330 01/01/1988 31/12/2500 LIBEN Dried apples 01/01/1988 31/12/2500 -08133000 01/01/1988 31/12/2500 LIBEN Dried apples 01/01/1988 31/12/2500 -081340 01/01/1988 31/12/2500 LIBEN Dried peaches, pears, papaws "papayas", tamarinds and other edible fruits (excl. nuts, bananas, dates, figs, pineapples, avocados, guavas, mangoes, mangosteens, citrus fruit, grapes apricots, prunes and apples, unmixed) 01/01/1988 31/12/2500 -08134010 01/01/1988 31/12/2500 LIBEN Dried peaches, incl. nectarines 01/01/1988 31/12/2500 -08134030 01/01/1988 31/12/2500 LIBEN Dried pears 01/01/1988 31/12/2500 -08134050 01/01/1988 31/12/2500 LIBEN Dried pawpaws 01/01/1988 31/12/2500 -08134060 01/01/1990 31/12/2007 LIBEN Dried tamarinds 01/01/1990 31/12/2007 -08134065 01/01/2008 31/12/2500 LIBEN Dried tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya 01/01/2008 31/12/2500 -08134070 01/01/1995 31/12/2007 LIBEN Dried cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya 01/01/1995 31/12/2007 -08134080 01/01/1990 31/12/1994 LIBEN Dried fruit (excl. 0801.10-10 to 0806.20-98 and 0813.10-00 to 0813.40-60) 01/01/1990 31/12/1994 -08134090 01/01/1988 31/12/1989 LIBEN Dried fruit n.e.s. 01/01/1988 31/12/1989 -08134095 01/01/1995 31/12/2500 LIBEN Dried fruit, edible (excl. nuts, bananas, dates, figs, pineapples, avocados, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, citrus fruit, grapes, apricots, plums, apples, pears and peaches, unmixed) 01/01/1995 31/12/2500 -081350 01/01/1988 31/12/2500 LIBEN Mixtures of nuts or dried fruits 01/01/1988 31/12/2500 -08135011 01/01/1988 31/12/1994 LIBEN Mixtures of dried apricots, apples, peaches, incl. nectarines, pears, pawpaws, or other dried fruits n.e.s., not including prunes (excl. mixtures of nuts) 01/01/1988 31/12/1994 -08135012 01/01/1995 31/12/2500 LIBEN Mixtures of dried papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, not containing prunes 01/01/1995 31/12/2500 -08135015 01/01/1995 31/12/2500 LIBEN Mixtures of dried fruit, not containing prunes (excl. mixtures of nuts, bananas, dates, figs, pineapples, avocados, guavas, mangoes, mangosteens, papaws "papayas", citrus fruit, grapes, tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya) 01/01/1995 31/12/2500 -08135019 01/01/1988 31/12/2500 LIBEN Mixtures of dried apricots, apples, peaches, incl. prunus persica nectarina and nectarines, pears, papaws "papayas" or other edible and dried fruit, containing prunes (excl. mixtures of edible nuts, bananas, dates, figs, pineapples, avocados, guavas, mangoes, mangosteens, citrus fruit and grapes) 01/01/1988 31/12/2500 -08135030 01/01/1988 31/12/1994 LIBEN Mixtures of nuts only 01/01/1988 31/12/1994 -08135031 01/01/1995 31/12/2500 LIBEN Mixtures exclusively of dried coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts and macadamia nuts 01/01/1995 31/12/2500 -08135039 01/01/1995 31/12/2500 LIBEN Mixtures exclusively of edible and dried nuts of heading 0802 (excl. of coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts and macadamia nuts) 01/01/1995 31/12/2500 -08135091 01/01/1988 31/12/2500 LIBEN Mixtures of edible and dried nuts, bananas, dates, pineapples, avocados, guavas, mangoes, mangosteens, citrus fruit and grapes, not containing plums or figs (excl. mixtures exclusively of nuts of heading 0801 and 0802) 01/01/1988 31/12/2500 -08135099 01/01/1988 31/12/2500 LIBEN Mixtures of edible and dried nuts, bananas, dates, figs, pineapples, avocados, guavas, mangoes, mangosteens, citrus fruit and grapes, containing plums or figs 01/01/1988 31/12/2500 -0814 01/01/1988 31/12/2500 LIBEN Peel of citrus fruit or melons, incl. watermelons, fresh, frozen, dried or provisionally preserved in brine, or in water with other additives 01/01/1988 31/12/2500 -081400 01/01/1988 31/12/2500 LIBEN Peel of citrus fruit or melons, incl. watermelons, fresh, frozen, dried or provisionally preserved in brine, or in water with other additives 01/01/1988 31/12/2500 -08140000 01/01/1988 31/12/2500 LIBEN Peel of citrus fruit or melons, incl. watermelons, fresh, frozen, dried or provisionally preserved in brine, or in water with other additives 01/01/1988 31/12/2500 -08CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 08 01/01/2002 31/12/2500 -08CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 08 01/01/2002 31/12/2500 -08CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 08 01/01/2002 31/12/2500 -08MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -08MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -08MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -08SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 08 01/01/1988 31/12/2500 -08SSS0 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 08 and SITC section 0 01/01/1992 31/12/2500 -08SSS057 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 08 and SITC group 057 01/01/1997 31/12/2500 -08SSS058 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 08 and SITC group 058 01/01/1992 31/12/2500 -08SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 08 and SITC section 9 01/01/1988 31/12/1996 -08SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 08 and SITC section 9 01/01/1997 31/12/2500 -08SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 08 and SITC group 999 01/01/1988 31/12/1996 -08SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 08 and SITC group 999 01/01/1997 31/12/2500 -09 01/01/1988 31/12/2500 LIBEN COFFEE, TEA, MATE AND SPICES 01/01/1988 31/12/2500 -0901 01/01/1988 31/12/2500 LIBEN Coffee, whether or not roasted or decaffeinated; coffee husks and skins; coffee substitutes containing coffee in any proportion 01/01/1988 31/12/2500 -090111 01/01/1988 31/12/2500 LIBEN Coffee (excl. roasted and decaffeinated) 01/01/1988 31/12/2500 -09011100 01/01/1988 31/12/2500 LIBEN Coffee (excl. roasted and decaffeinated) 01/01/1988 31/12/2500 -090112 01/01/1988 31/12/2500 LIBEN Decaffeinated coffee (excl. roasted) 01/01/1988 31/12/2500 -09011200 01/01/1988 31/12/2500 LIBEN Decaffeinated coffee (excl. roasted) 01/01/1988 31/12/2500 -090121 01/01/1988 31/12/2500 LIBEN Roasted coffee (excl. decaffeinated) 01/01/1988 31/12/2500 -09012100 01/01/1988 31/12/2500 LIBEN Roasted coffee (excl. decaffeinated) 01/01/1988 31/12/2500 -090122 01/01/1988 31/12/2500 LIBEN Roasted, decaffeinated coffee 01/01/1988 31/12/2500 -09012200 01/01/1988 31/12/2500 LIBEN Roasted, decaffeinated coffee 01/01/1988 31/12/2500 -090130 01/01/1988 31/12/1995 LIBEN Coffee husks and skins 01/01/1988 31/12/1995 -09013000 01/01/1988 31/12/1995 LIBEN Coffee husks and skins 01/01/1988 31/12/1995 -090140 01/01/1988 31/12/1995 LIBEN Coffee substitutes containing coffee 01/01/1988 31/12/1995 -09014000 01/01/1988 31/12/1995 LIBEN Coffee substitutes containing coffee 01/01/1988 31/12/1995 -090190 01/01/1996 31/12/2500 LIBEN Coffee husks and skins; coffee substitutes containing coffee in any proportion 01/01/1996 31/12/2500 -09019010 01/01/1996 31/12/2500 LIBEN Coffee husks and skins 01/01/1996 31/12/2500 -09019090 01/01/1996 31/12/2500 LIBEN Coffee substitutes containing coffee in any proportion 01/01/1996 31/12/2500 -0901S0 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 0901 and SITC section 0 01/01/1997 31/12/2500 -0901S071 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 0901 and SITC group 071 01/01/1997 31/12/2500 -0902 01/01/1988 31/12/2500 LIBEN Tea, whether or not flavoured 01/01/1988 31/12/2500 -090210 01/01/1988 31/12/2500 LIBEN Green tea in immediate packings of <= 3 kg 01/01/1988 31/12/2500 -09021000 01/01/1988 31/12/2500 LIBEN Green tea in immediate packings of <= 3 kg 01/01/1988 31/12/2500 -090220 01/01/1988 31/12/2500 LIBEN Green tea in immediate packings of > 3 kg 01/01/1988 31/12/2500 -09022000 01/01/1988 31/12/2500 LIBEN Green tea in immediate packings of > 3 kg 01/01/1988 31/12/2500 -090230 01/01/1988 31/12/2500 LIBEN Black fermented tea and partly fermented tea, whether or not flavoured, in immediate packings of <= 3 kg 01/01/1988 31/12/2500 -09023000 01/01/1988 31/12/2500 LIBEN Black fermented tea and partly fermented tea, whether or not flavoured, in immediate packings of <= 3 kg 01/01/1988 31/12/2500 -090240 01/01/1988 31/12/2500 LIBEN Black fermented tea and partly fermented tea, whether or not flavoured, in immediate packings of > 3 kg 01/01/1988 31/12/2500 -09024000 01/01/1988 31/12/2500 LIBEN Black fermented tea and partly fermented tea, whether or not flavoured, in immediate packings of > 3 kg 01/01/1988 31/12/2500 -0903 01/01/1988 31/12/2500 LIBEN Mate 01/01/1988 31/12/2500 -090300 01/01/1988 31/12/2500 LIBEN Mate 01/01/1988 31/12/2500 -09030000 01/01/1988 31/12/2500 LIBEN Mate 01/01/1988 31/12/2500 -0904 01/01/1988 31/12/2500 LIBEN Pepper of the genus Piper; dried or crushed or ground fruits of the genus Capsicum or of the genus Pimenta 01/01/1988 31/12/2500 -090411 01/01/1988 31/12/2500 LIBEN Pepper of the genus Piper, neither crushed nor ground 01/01/1988 31/12/2500 -09041100 01/01/2001 31/12/2500 LIBEN Pepper of the genus Piper, neither crushed nor ground 01/01/2001 31/12/2500 -09041110 01/01/1988 31/12/2000 LIBEN Pepper of the genus Piper for industrial manufacture of essential oils or resinoids (excl. crushed or ground) 01/01/1988 31/12/2000 -09041190 01/01/1988 31/12/2000 LIBEN Pepper of the genus Piper (excl. crushed or ground and for manufacture of essential oils or resinoids) 01/01/1988 31/12/2000 -090412 01/01/1988 31/12/2500 LIBEN Pepper of the genus Piper, crushed or ground 01/01/1988 31/12/2500 -09041200 01/01/1988 31/12/2500 LIBEN Pepper of the genus Piper, crushed or ground 01/01/1988 31/12/2500 -090420 01/01/1988 31/12/2011 LIBEN Fruits of the genus Capsicum or of the genus Pimenta, dried or crushed or ground 01/01/1988 31/12/2011 -09042010 01/01/1988 31/12/2011 LIBEN Dried sweet peppers (excl. crushed or ground) 01/01/1988 31/12/2011 -09042030 01/01/2001 31/12/2011 LIBEN Dried fruits of genus Capsicum or Pimenta, neither crushed or ground (excl. sweet peppers) 01/01/2001 31/12/2011 -09042031 01/01/1988 31/12/2000 LIBEN Dried fruits of genus Capsicum for manufacture of capsicin or capsicum oleoresin dyes (excl. crushed or ground) 01/01/1988 31/12/2000 -09042035 01/01/1988 31/12/2000 LIBEN Dried fruits of genus Capsicum or Pimenta, for industrial manufacture of essential oils or resinoids (excl. crushed or ground) 01/01/1988 31/12/2000 -09042039 01/01/1988 31/12/2000 LIBEN Dried fruits of genus Capsicum or Pimenta (excl. crushed or ground, for industrial manufacture of capsicin, capsicum oleoresin dyes, essential oils or resinoids, and sweet peppers) 01/01/1988 31/12/2000 -09042090 01/01/1988 31/12/2011 LIBEN Crushed or ground fruits of genus Capsicum or Pimenta 01/01/1988 31/12/2011 -090421 01/01/2012 31/12/2500 LIBEN Fruits of the genus Capsicum or of the genus Pimenta, dried, neither crushed nor ground 01/01/2012 31/12/2500 -09042110 01/01/2012 31/12/2500 LIBEN Dried sweet peppers (excl. crushed or ground) 01/01/2012 31/12/2500 -09042190 01/01/2012 31/12/2500 LIBEN Dried fruit of genus Capsicum or Pimenta, neither crushed nor ground (excl. sweet peppers) 01/01/2012 31/12/2500 -090422 01/01/2012 31/12/2500 LIBEN Fruits of the genus Capsicum or of the genus Pimenta, crushed or ground 01/01/2012 31/12/2500 -09042200 01/01/2012 31/12/2500 LIBEN Fruits of the genus Capsicum or of the genus Pimenta, crushed or ground 01/01/2012 31/12/2500 -0905 01/01/1988 31/12/2500 LIBEN Vanilla 01/01/1988 31/12/2500 -090500 01/01/1988 31/12/2011 LIBEN Vanilla 01/01/1988 31/12/2011 -09050000 01/01/1988 31/12/2011 LIBEN Vanilla 01/01/1988 31/12/2011 -090510 01/01/2012 31/12/2500 LIBEN Vanilla, neither crushed nor ground 01/01/2012 31/12/2500 -09051000 01/01/2012 31/12/2500 LIBEN Vanilla, neither crushed nor ground 01/01/2012 31/12/2500 -090520 01/01/2012 31/12/2500 LIBEN Vanilla, crushed or ground 01/01/2012 31/12/2500 -09052000 01/01/2012 31/12/2500 LIBEN Vanilla, crushed or ground 01/01/2012 31/12/2500 -0906 01/01/1988 31/12/2500 LIBEN Cinnamon and cinnamon-tree flowers 01/01/1988 31/12/2500 -090610 01/01/1988 31/12/2006 LIBEN Cinnamon and cinnamon-tree flowers (excl. crushed and ground) 01/01/1988 31/12/2006 -09061000 01/01/1988 31/12/2006 LIBEN Cinnamon and cinnamon-tree flowers (excl. crushed and ground) 01/01/1988 31/12/2006 -090611 01/01/2007 31/12/2500 LIBEN Cinnamon "Cinnamomum zeylanicum Blume" (excl. crushed and ground) 01/01/2007 31/12/2500 -09061100 01/01/2007 31/12/2500 LIBEN Cinnamon "Cinnamomum zeylanicum Blume" (excl. crushed and ground) 01/01/2007 31/12/2500 -090619 01/01/2007 31/12/2500 LIBEN Cinnamon and cinnamon-tree flowers (excl. cinnamon "Cinnamomum zeylanicum Blume" and crushed and ground cinnamon) 01/01/2007 31/12/2500 -09061900 01/01/2007 31/12/2500 LIBEN Cinnamon and cinnamon-tree flowers (excl. cinnamon "Cinnamomum zeylanicum Blume" and crushed and ground cinnamon) 01/01/2007 31/12/2500 -090620 01/01/1988 31/12/2500 LIBEN Crushed or ground cinnamon and cinnamon-tree flowers 01/01/1988 31/12/2500 -09062000 01/01/1988 31/12/2500 LIBEN Crushed or ground cinnamon and cinnamon-tree flowers 01/01/1988 31/12/2500 -0907 01/01/1988 31/12/2500 LIBEN Cloves, whole fruit, cloves and stems 01/01/1988 31/12/2500 -090700 01/01/1988 31/12/2011 LIBEN Cloves, whole fruit, cloves and stems 01/01/1988 31/12/2011 -09070000 01/01/1988 31/12/2011 LIBEN Cloves, whole fruit, cloves and stems 01/01/1988 31/12/2011 -090710 01/01/2012 31/12/2500 LIBEN Cloves, whole fruit, cloves and stems, neither crushed nor ground 01/01/2012 31/12/2500 -09071000 01/01/2012 31/12/2500 LIBEN Cloves, whole fruit, cloves and stems, neither crushed nor ground 01/01/2012 31/12/2500 -090720 01/01/2012 31/12/2500 LIBEN Cloves, whole fruit, cloves and stems, crushed or ground 01/01/2012 31/12/2500 -09072000 01/01/2012 31/12/2500 LIBEN Cloves, whole fruit, cloves and stems, crushed or ground 01/01/2012 31/12/2500 -0908 01/01/1988 31/12/2500 LIBEN Nutmeg, mace and cardamoms 01/01/1988 31/12/2500 -090810 01/01/1988 31/12/2011 LIBEN Nutmeg 01/01/1988 31/12/2011 -09081000 01/01/2001 31/12/2011 LIBEN Nutmeg 01/01/2001 31/12/2011 -09081010 01/01/1988 31/12/2000 LIBEN Nutmeg for industrial manufacture of essential oils or resinoids (excl. crushed or ground) 01/01/1988 31/12/2000 -09081090 01/01/1988 31/12/2000 LIBEN Nutmeg, whether or not crushed or ground (excl. for industrial manufacture of essential oils or resinoids) 01/01/1988 31/12/2000 -090811 01/01/2012 31/12/2500 LIBEN Nutmeg, neither crushed nor ground 01/01/2012 31/12/2500 -09081100 01/01/2012 31/12/2500 LIBEN Nutmeg, neither crushed nor ground 01/01/2012 31/12/2500 -090812 01/01/2012 31/12/2500 LIBEN Nutmeg, crushed or ground 01/01/2012 31/12/2500 -09081200 01/01/2012 31/12/2500 LIBEN Nutmeg, crushed or ground 01/01/2012 31/12/2500 -090820 01/01/1988 31/12/2011 LIBEN Mace 01/01/1988 31/12/2011 -09082000 01/01/2001 31/12/2011 LIBEN Mace 01/01/2001 31/12/2011 -09082010 01/01/1988 31/12/2000 LIBEN Mace (excl. crushed or ground) 01/01/1988 31/12/2000 -09082090 01/01/1988 31/12/2000 LIBEN Crushed or ground mace 01/01/1988 31/12/2000 -090821 01/01/2012 31/12/2500 LIBEN Mace, neither crushed nor ground 01/01/2012 31/12/2500 -09082100 01/01/2012 31/12/2500 LIBEN Mace, neither crushed nor ground 01/01/2012 31/12/2500 -090822 01/01/2012 31/12/2500 LIBEN Mace, crushed or ground 01/01/2012 31/12/2500 -09082200 01/01/2012 31/12/2500 LIBEN Mace, crushed or ground 01/01/2012 31/12/2500 -090830 01/01/1988 31/12/2011 LIBEN Cardamoms 01/01/1988 31/12/2011 -09083000 01/01/1988 31/12/2011 LIBEN Cardamoms 01/01/1988 31/12/2011 -090831 01/01/2012 31/12/2500 LIBEN Cardamoms, neither crushed nor ground 01/01/2012 31/12/2500 -09083100 01/01/2012 31/12/2500 LIBEN Cardamoms, neither crushed nor ground 01/01/2012 31/12/2500 -090832 01/01/2012 31/12/2500 LIBEN Cardamoms, crushed or ground 01/01/2012 31/12/2500 -09083200 01/01/2012 31/12/2500 LIBEN Cardamoms, crushed or ground 01/01/2012 31/12/2500 -0909 01/01/1988 31/12/2500 LIBEN Seeds of anis, badian, fennel, coriander, cumin or caraway; juniper berries 01/01/1988 31/12/2500 -090910 01/01/1988 31/12/2011 LIBEN Seeds of anise or badian 01/01/1988 31/12/2011 -09091000 01/01/2001 31/12/2011 LIBEN Seeds of anise or badian 01/01/2001 31/12/2011 -09091010 01/01/1988 31/12/2000 LIBEN Anise seeds 01/01/1988 31/12/2000 -09091090 01/01/1988 31/12/2000 LIBEN Badian seeds 01/01/1988 31/12/2000 -090920 01/01/1988 31/12/2011 LIBEN Coriander seeds 01/01/1988 31/12/2011 -09092000 01/01/1988 31/12/2011 LIBEN Coriander seeds 01/01/1988 31/12/2011 -090921 01/01/2012 31/12/2500 LIBEN Coriander seeds, neither crushed nor ground 01/01/2012 31/12/2500 -09092100 01/01/2012 31/12/2500 LIBEN Coriander seeds, neither crushed nor ground 01/01/2012 31/12/2500 -090922 01/01/2012 31/12/2500 LIBEN Coriander seeds, crushed or ground 01/01/2012 31/12/2500 -09092200 01/01/2012 31/12/2500 LIBEN Coriander seeds, crushed or ground 01/01/2012 31/12/2500 -090930 01/01/1988 31/12/2011 LIBEN Cumin seeds 01/01/1988 31/12/2011 -09093000 01/01/2001 31/12/2011 LIBEN Cumin seeds 01/01/2001 31/12/2011 -09093011 01/01/1988 31/12/2000 LIBEN Cumin seeds for industrial manufacture of essential oils or resinoids (excl. crushed or ground) 01/01/1988 31/12/2000 -09093019 01/01/1988 31/12/2000 LIBEN Cumin seeds (excl. crushed or ground or for industrial manufacture of essential oils or resinoids) 01/01/1988 31/12/2000 -09093090 01/01/1988 31/12/2000 LIBEN Crushed or ground cumin seeds 01/01/1988 31/12/2000 -090931 01/01/2012 31/12/2500 LIBEN Cumin seeds, neither crushed nor ground 01/01/2012 31/12/2500 -09093100 01/01/2012 31/12/2500 LIBEN Cumin seeds, neither crushed nor ground 01/01/2012 31/12/2500 -090932 01/01/2012 31/12/2500 LIBEN Cumin seeds, crushed or ground 01/01/2012 31/12/2500 -09093200 01/01/2012 31/12/2500 LIBEN Cumin seeds, crushed or ground 01/01/2012 31/12/2500 -090940 01/01/1988 31/12/2011 LIBEN Caraway seeds 01/01/1988 31/12/2011 -09094000 01/01/2001 31/12/2011 LIBEN Caraway seeds 01/01/2001 31/12/2011 -09094011 01/01/1988 31/12/2000 LIBEN Caraway seeds for industrial manufacture of essential oils or resinoids (excl. crushed or ground) 01/01/1988 31/12/2000 -09094019 01/01/1988 31/12/2000 LIBEN Caraway seeds (excl. crushed, ground or for industrial manufacture of essential oils or resinoids) 01/01/1988 31/12/2000 -09094090 01/01/1988 31/12/2000 LIBEN Crushed or ground caraway seeds 01/01/1988 31/12/2000 -090950 01/01/1988 31/12/2011 LIBEN Seeds of fennel; juniper berries 01/01/1988 31/12/2011 -09095000 01/01/2001 31/12/2011 LIBEN Seeds of fennel; juniper berries 01/01/2001 31/12/2011 -09095011 01/01/1988 31/12/2000 LIBEN Fennel seeds or juniper berries for industrial manufacture of essential oils or resinoids (excl. crushed or ground) 01/01/1988 31/12/2000 -09095019 01/01/1988 31/12/2000 LIBEN Fennel seeds or juniper berries (excl. crushed, ground or for industrial manufacture of essential oils or resinoids) 01/01/1988 31/12/2000 -09095090 01/01/1988 31/12/2000 LIBEN Crushed or ground fennel seeds or juniper berries 01/01/1988 31/12/2000 -090961 01/01/2012 31/12/2500 LIBEN Juniper berries and seeds of anise, badian, caraway or fennel, neither crushed nor ground 01/01/2012 31/12/2500 -09096100 01/01/2012 31/12/2500 LIBEN Juniper berries and seeds of anise, badian, caraway or fennel, neither crushed nor ground 01/01/2012 31/12/2500 -090962 01/01/2012 31/12/2500 LIBEN Juniper berries and seeds of anise, badian, caraway or fennel, crushed or ground 01/01/2012 31/12/2500 -09096200 01/01/2012 31/12/2500 LIBEN Juniper berries and seeds of anise, badian, caraway or fennel, crushed or ground 01/01/2012 31/12/2500 -0910 01/01/1988 31/12/2500 LIBEN Ginger, saffron, turmeric "curcuma", thyme, bay leaves, curry and other spices (excl. pepper of the genus Piper, fruit of the genus Capsicum or of the genus Pimenta, vanilla, cinnamon, cinnamontree flowers, cloves [wholefruit], clove stems, nutmeg, mace, cardamoms, seeds of anise, badian, fennel, coriander, cumin and caraway, and juniper berries) 01/01/1988 31/12/2500 -091010 01/01/1988 31/12/2011 LIBEN Ginger 01/01/1988 31/12/2011 -09101000 01/01/1988 31/12/1994 LIBEN Ginger 01/01/1988 31/12/1994 -09101000 01/01/2001 31/12/2011 LIBEN Ginger 01/01/2001 31/12/2011 -09101011 01/01/1995 31/12/2000 LIBEN Ginger, whole roots, pieces or slices, for the industrial manufacture of essential oils or resinoids 01/01/1995 31/12/2000 -09101019 01/01/1995 31/12/2000 LIBEN Ginger, whole roots, pieces or slices (excl. for the industrial manufacture of essential oils or resinoids) 01/01/1995 31/12/2000 -09101090 01/01/1995 31/12/2000 LIBEN Ginger (excl. whole roots, pieces or slices) 01/01/1995 31/12/2000 -091011 01/01/2012 31/12/2500 LIBEN Ginger, neither crushed nor ground 01/01/2012 31/12/2500 -09101100 01/01/2012 31/12/2500 LIBEN Ginger, neither crushed nor ground 01/01/2012 31/12/2500 -091012 01/01/2012 31/12/2500 LIBEN Ginger, crushed or ground 01/01/2012 31/12/2500 -09101200 01/01/2012 31/12/2500 LIBEN Ginger, crushed or ground 01/01/2012 31/12/2500 -091020 01/01/1988 31/12/2500 LIBEN Saffron 01/01/1988 31/12/2500 -09102010 01/01/1988 31/12/2500 LIBEN Saffron (excl. crushed or ground) 01/01/1988 31/12/2500 -09102090 01/01/1988 31/12/2500 LIBEN Crushed or ground saffron 01/01/1988 31/12/2500 -091030 01/01/1988 31/12/2500 LIBEN Turmeric "curcuma" 01/01/1988 31/12/2500 -09103000 01/01/1988 31/12/2500 LIBEN Turmeric "curcuma" 01/01/1988 31/12/2500 -091040 01/01/1988 31/12/2006 LIBEN Thyme and bay leaves 01/01/1988 31/12/2006 -09104011 01/01/1988 31/12/2006 LIBEN Wild thyme "Thymus serpyllum" (excl. crushed or ground) 01/01/1988 31/12/2006 -09104013 01/01/1988 31/12/2006 LIBEN Thyme (excl. crushed or ground and wild thyme) 01/01/1988 31/12/2006 -09104019 01/01/1988 31/12/2006 LIBEN Crushed or ground thyme 01/01/1988 31/12/2006 -09104090 01/01/1988 31/12/2006 LIBEN Bay leaves 01/01/1988 31/12/2006 -091050 01/01/1988 31/12/2006 LIBEN Curry 01/01/1988 31/12/2006 -09105000 01/01/1988 31/12/2006 LIBEN Curry 01/01/1988 31/12/2006 -091091 01/01/1988 31/12/2500 LIBEN Mixtures of different types of spices 01/01/1988 31/12/2500 -09109105 01/01/2010 31/12/2500 LIBEN Curry 01/01/2010 31/12/2500 -09109110 01/01/1988 31/12/2500 LIBEN Mixtures of different types of spices (excl. crushed or ground) 01/01/1988 31/12/2500 -09109190 01/01/1988 31/12/2500 LIBEN Crushed or ground mixtures of different types of spices 01/01/1988 31/12/2500 -091099 01/01/1988 31/12/2500 LIBEN Spices (excl. pepper of the genus Piper, fruit of the genus Capsicum or of the genus Pimenta, vanilla, cinnamon, cinnamontree flowers, clove "wholefruit", clove stems, nutmeg, mace, cardamoms, seeds of anise, badian, fennel, coriander, cumin and caraway, and juniper berries, ginger, saffron, turmeric "curcuma" and mixtures of various types of spices) 01/01/1988 31/12/2500 -09109910 01/01/1988 31/12/2500 LIBEN Fenugreek seed 01/01/1988 31/12/2500 -09109931 01/01/2007 31/12/2500 LIBEN Wild thyme "Thymus serpyllum" (excl. crushed or ground) 01/01/2007 31/12/2500 -09109933 01/01/2007 31/12/2500 LIBEN Thyme (excl. crushed or ground and wild thyme) 01/01/2007 31/12/2500 -09109939 01/01/2007 31/12/2500 LIBEN Crushed or ground thyme 01/01/2007 31/12/2500 -09109950 01/01/2007 31/12/2500 LIBEN Bay leaves 01/01/2007 31/12/2500 -09109960 01/01/2007 31/12/2009 LIBEN Curry 01/01/2007 31/12/2009 -09109991 01/01/1988 31/12/2500 LIBEN Spices, neither crushed nor ground (excl. pepper of the genus Piper, fruit of the genus Capsicum or of the genus Pimenta, vanilla, cinnamon, cinnamontree flowers, cloves "wholefruit", clove stems, nutmeg, mace, cardamoms, seeds of anise, badian, fennel, coriander, cumin and caraway, and juniper berries, ginger, saffron, turmeric "curcuma", thyme, bay leaves, curry and seeds of fenugreek, and mixtures of various types of spices) 01/01/1988 31/12/2500 -09109999 01/01/1988 31/12/2500 LIBEN Spices, crushed or ground (excl. pepper of the genus Piper, fruit of the genus Capsicum or of the genus Pimenta, vanilla, cinnamon, cinnamontree flowers, clove "wholefruit", clove stems, nutmeg, mace, cardamoms, seeds of anise, badian, fennel, coriander, cumin and caraway, and juniper berries, ginger, saffron, turmeric "curcuma", thyme, bay leaves, curry and seeds of fenugreek, and mixtures of various types of spices) 01/01/1988 31/12/2500 -09CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 09 01/01/2002 31/12/2500 -09CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 09 01/01/2002 31/12/2500 -09CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 09 01/01/2002 31/12/2500 -09MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -09MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -09MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -09SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 09 01/01/1988 31/12/2500 -09SSS0 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 09 and SITC section 0 01/01/1997 31/12/2500 -09SSS071 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 09 and SITC group 071 01/01/1997 31/12/2500 -09SSS074 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 09 and SITC group 074 01/01/1997 31/12/2500 -09SSS075 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 09 and SITC group 075 01/01/1997 31/12/2500 -09SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 09 and SITC section 9 01/01/1988 31/12/1996 -09SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 09 and SITC section 9 01/01/1997 31/12/2500 -09SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 09 and SITC group 999 01/01/1988 31/12/1996 -09SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 09 and SITC group 999 01/01/1997 31/12/2500 -10 01/01/1988 31/12/2500 LIBEN CEREALS 01/01/1988 31/12/2500 -1001 01/01/1988 31/12/2500 LIBEN Wheat and meslin 01/01/1988 31/12/2500 -100110 01/01/1988 31/12/2011 LIBEN Durum wheat 01/01/1988 31/12/2011 -10011000 01/01/1993 31/12/2011 LIBEN Durum wheat 01/01/1993 31/12/2011 -10011010 01/01/1988 31/12/1992 LIBEN Durum wheat seed 01/01/1988 31/12/1992 -10011090 01/01/1988 31/12/1992 LIBEN Durum wheat (excl. seed) 01/01/1988 31/12/1992 -100111 01/01/2012 31/12/2500 LIBEN Durum wheat seed for sowing 01/01/2012 31/12/2500 -10011100 01/01/2012 31/12/2500 LIBEN Durum wheat seed for sowing 01/01/2012 31/12/2500 -100119 01/01/2012 31/12/2500 LIBEN Durum wheat (excl. seed for sowing) 01/01/2012 31/12/2500 -10011900 01/01/2012 31/12/2500 LIBEN Durum wheat (excl. seed for sowing) 01/01/2012 31/12/2500 -100190 01/01/1988 31/12/2011 LIBEN Wheat and meslin (excl. durum wheat) 01/01/1988 31/12/2011 -10019010 01/01/1988 31/12/2011 LIBEN Spelt for sowing 01/01/1988 31/12/2011 -10019091 01/01/1988 31/12/2011 LIBEN Common wheat and meslin seed 01/01/1988 31/12/2011 -10019099 01/01/1988 31/12/2011 LIBEN Spelt, common wheat and meslin (excl. seed) 01/01/1988 31/12/2011 -100191 01/01/2012 31/12/2500 LIBEN Seed of wheat and meslin, for sowing (excl. durum) 01/01/2012 31/12/2500 -10019110 01/01/2012 31/12/2500 LIBEN Spelt seed for sowing 01/01/2012 31/12/2500 -10019120 01/01/2012 31/12/2500 LIBEN Seed of common wheat or meslin, for sowing 01/01/2012 31/12/2500 -10019190 01/01/2012 31/12/2500 LIBEN Wheat seed for sowing (excl. durum, common wheat and spelt) 01/01/2012 31/12/2500 -100199 01/01/2012 31/12/2500 LIBEN Wheat and meslin (excl. seed for sowing, and durum wheat) 01/01/2012 31/12/2500 -10019900 01/01/2012 31/12/2500 LIBEN Wheat and meslin (excl. seed for sowing, and durum wheat) 01/01/2012 31/12/2500 -1002 01/01/1988 31/12/2500 LIBEN Rye 01/01/1988 31/12/2500 -100200 01/01/1988 31/12/2011 LIBEN Rye 01/01/1988 31/12/2011 -10020000 01/01/1988 31/12/2011 LIBEN Rye 01/01/1988 31/12/2011 -100210 01/01/2012 31/12/2500 LIBEN Rye seed for sowing 01/01/2012 31/12/2500 -10021000 01/01/2012 31/12/2500 LIBEN Rye seed for sowing 01/01/2012 31/12/2500 -100290 01/01/2012 31/12/2500 LIBEN Rye (excl. seed for sowing) 01/01/2012 31/12/2500 -10029000 01/01/2012 31/12/2500 LIBEN Rye (excl. seed for sowing) 01/01/2012 31/12/2500 -1003 01/01/1988 31/12/2500 LIBEN Barley 01/01/1988 31/12/2500 -100300 01/01/1988 31/12/2011 LIBEN Barley 01/01/1988 31/12/2011 -10030010 01/01/1988 31/12/2011 LIBEN Barley seed 01/01/1988 31/12/2011 -10030020 01/01/1993 31/12/1993 LIBEN Barley for the manufacture of malt 01/01/1993 31/12/1993 -10030080 01/01/1993 31/12/1993 LIBEN Barley (excl. barley for sowing or for the manufacture of malt) 01/01/1993 31/12/1993 -10030090 01/01/1988 31/12/1992 LIBEN Barley (excl. seed) 01/01/1988 31/12/1992 -10030090 01/01/1994 31/12/2011 LIBEN Barley (excl. seed) 01/01/1994 31/12/2011 -100310 01/01/2012 31/12/2500 LIBEN Barley seed for sowing 01/01/2012 31/12/2500 -10031000 01/01/2012 31/12/2500 LIBEN Barley seed for sowing 01/01/2012 31/12/2500 -100390 01/01/2012 31/12/2500 LIBEN Barley (excl. seed for sowing) 01/01/2012 31/12/2500 -10039000 01/01/2012 31/12/2500 LIBEN Barley (excl. seed for sowing) 01/01/2012 31/12/2500 -1004 01/01/1988 31/12/2500 LIBEN Oats 01/01/1988 31/12/2500 -100400 01/01/1988 31/12/2011 LIBEN Oats 01/01/1988 31/12/2011 -10040000 01/01/1993 31/12/2011 LIBEN Oats 01/01/1993 31/12/2011 -10040010 01/01/1988 31/12/1992 LIBEN Oat seed 01/01/1988 31/12/1992 -10040090 01/01/1988 31/12/1992 LIBEN Oats (excl. seed) 01/01/1988 31/12/1992 -100410 01/01/2012 31/12/2500 LIBEN Oats seed for sowing 01/01/2012 31/12/2500 -10041000 01/01/2012 31/12/2500 LIBEN Oats seed for sowing 01/01/2012 31/12/2500 -100490 01/01/2012 31/12/2500 LIBEN Oats (excl. seed for sowing) 01/01/2012 31/12/2500 -10049000 01/01/2012 31/12/2500 LIBEN Oats (excl. seed for sowing) 01/01/2012 31/12/2500 -1005 01/01/1988 31/12/2500 LIBEN Maize or corn 01/01/1988 31/12/2500 -100510 01/01/1988 31/12/2500 LIBEN Maize seed for sowing 01/01/1988 31/12/2500 -10051011 01/01/1988 31/12/2011 LIBEN Double and top cross hybrid maize seed 01/01/1988 31/12/2011 -10051013 01/01/1988 31/12/2500 LIBEN Three-cross hybrid maize seed for sowing 01/01/1988 31/12/2500 -10051015 01/01/1988 31/12/2500 LIBEN Simple hybrid maize seed for sowing 01/01/1988 31/12/2500 -10051018 01/01/2012 31/12/2500 LIBEN Hybrid maize seed for sowing (excl. three-cross and simple hybrid seed) 01/01/2012 31/12/2500 -10051019 01/01/1988 31/12/2011 LIBEN Hybrid maize seed (excl. double, top cross, three-cross and simple hybrid maize seed) 01/01/1988 31/12/2011 -10051090 01/01/1988 31/12/2500 LIBEN Maize seed for sowing (excl. hybrid) 01/01/1988 31/12/2500 -100590 01/01/1988 31/12/2500 LIBEN Maize (excl. seed for sowing) 01/01/1988 31/12/2500 -10059000 01/01/1988 31/12/2500 LIBEN Maize (excl. seed for sowing) 01/01/1988 31/12/2500 -1006 01/01/1988 31/12/2500 LIBEN Rice 01/01/1988 31/12/2500 -100610 01/01/1988 31/12/2500 LIBEN Rice in the husk, "paddy" or rough 01/01/1988 31/12/2500 -10061010 01/01/1988 31/12/2500 LIBEN Rice in husk for sowing 01/01/1988 31/12/2500 -10061021 01/01/1989 31/12/2016 LIBEN Round grain rice in husk, parboiled 01/01/1989 31/12/2016 -10061023 01/01/1989 31/12/2016 LIBEN Medium grain rice in husk, parboiled 01/01/1989 31/12/2016 -10061025 01/01/1989 31/12/2016 LIBEN Long grain rice in husk, length-width ratio > 2 but < 3, parboiled 01/01/1989 31/12/2016 -10061027 01/01/1989 31/12/2016 LIBEN Long grain rice in husk, length-width ratio >= 3, parboiled 01/01/1989 31/12/2016 -10061030 01/01/2017 31/12/2500 LIBEN Round grain rice in husk 01/01/2017 31/12/2500 -10061050 01/01/2017 31/12/2500 LIBEN Medium grain rice in husk 01/01/2017 31/12/2500 -10061071 01/01/2017 31/12/2500 LIBEN Long grain rice in husk, length-width ratio > 2 but < 3 01/01/2017 31/12/2500 -10061079 01/01/2017 31/12/2500 LIBEN Long grain rice in husk, length-width ratio >= 3 01/01/2017 31/12/2500 -10061091 01/01/1988 31/12/1988 LIBEN Round grain rice in husk (excl. for sowing) 01/01/1988 31/12/1988 -10061092 01/01/1989 31/12/2016 LIBEN Round grain rice in husk (excl. parboiled and that for sowing) 01/01/1989 31/12/2016 -10061094 01/01/1989 31/12/2016 LIBEN Medium grain rice in husk (excl. parboiled and that for sowing) 01/01/1989 31/12/2016 -10061096 01/01/1989 31/12/2016 LIBEN Long grain rice in husk, length-width ratio > 2 but < 3 (excl. parboiled and that for sowing) 01/01/1989 31/12/2016 -10061098 01/01/1989 31/12/2016 LIBEN Long grain rice in husk, length-width ratio >= 3 (excl. parboiled and that for sowing) 01/01/1989 31/12/2016 -10061099 01/01/1988 31/12/1988 LIBEN Long grain rice in husk (excl. for sowing) 01/01/1988 31/12/1988 -100620 01/01/1988 31/12/2500 LIBEN Husked or brown rice 01/01/1988 31/12/2500 -10062010 01/01/1988 31/12/1988 LIBEN Round grain husked or brown rice 01/01/1988 31/12/1988 -10062011 01/01/1989 31/12/2500 LIBEN Round grain husked [brown] rice, parboiled 01/01/1989 31/12/2500 -10062013 01/01/1989 31/12/2500 LIBEN Medium grain husked [brown] rice, parboiled 01/01/1989 31/12/2500 -10062015 01/01/1989 31/12/2500 LIBEN Long grain husked [brown] rice, length-width ratio > 2 but < 3, parboiled 01/01/1989 31/12/2500 -10062017 01/01/1989 31/12/2500 LIBEN Long grain husked [brown] rice, length-width ratio >= 3, parboiled 01/01/1989 31/12/2500 -10062090 01/01/1988 31/12/1988 LIBEN Long grain husked or brown rice 01/01/1988 31/12/1988 -10062092 01/01/1989 31/12/2500 LIBEN Round grain husked [brown] rice (excl. parboiled) 01/01/1989 31/12/2500 -10062094 01/01/1989 31/12/2500 LIBEN Medium grain husked [brown] rice (excl. parboiled) 01/01/1989 31/12/2500 -10062096 01/01/1989 31/12/2500 LIBEN Long grain husked [brown] rice, length-width ratio > 2 but < 3 (excl. parboiled) 01/01/1989 31/12/2500 -10062098 01/01/1989 31/12/2500 LIBEN Long grain husked [brown] rice, length-width ratio >= 3 (excl. parboiled) 01/01/1989 31/12/2500 -100630 01/01/1988 31/12/2500 LIBEN Semi-milled or wholly milled rice, whether or not polished or glazed 01/01/1988 31/12/2500 -10063011 01/01/1988 31/12/1988 LIBEN Semi-milled round grain rice 01/01/1988 31/12/1988 -10063019 01/01/1988 31/12/1988 LIBEN Semi-milled long grain rice 01/01/1988 31/12/1988 -10063021 01/01/1989 31/12/2500 LIBEN Semi-milled round grain rice, parboiled 01/01/1989 31/12/2500 -10063023 01/01/1989 31/12/2500 LIBEN Semi-milled medium grain rice, parboiled 01/01/1989 31/12/2500 -10063025 01/01/1989 31/12/2500 LIBEN Semi-milled long grain rice, length-width ratio > 2 but < 3, parboiled 01/01/1989 31/12/2500 -10063027 01/01/1989 31/12/2500 LIBEN Semi-milled long grain rice, length-width ratio >= 3, parboiled 01/01/1989 31/12/2500 -10063042 01/01/1989 31/12/2500 LIBEN Semi-milled round grain rice (excl. parboiled) 01/01/1989 31/12/2500 -10063044 01/01/1989 31/12/2500 LIBEN Semi-milled medium grain rice (excl. parboiled) 01/01/1989 31/12/2500 -10063046 01/01/1989 31/12/2500 LIBEN Semi-milled long grain rice, length-width ratio > 2 but < 3 (excl. parboiled) 01/01/1989 31/12/2500 -10063048 01/01/1989 31/12/2500 LIBEN Semi-milled long grain rice, length-width ratio >= 3 (excl. parboiled) 01/01/1989 31/12/2500 -10063061 01/01/1989 31/12/2500 LIBEN Wholly milled round grain rice, parboiled, whether or not polished or glazed 01/01/1989 31/12/2500 -10063063 01/01/1989 31/12/2500 LIBEN Wholly milled medium grain rice, parboiled, whether or not polished or glazed 01/01/1989 31/12/2500 -10063065 01/01/1989 31/12/2500 LIBEN Wholly milled long grain rice, length-width ratio > 2 but < 3, parboiled, whether or not polished or glazed 01/01/1989 31/12/2500 -10063067 01/01/1989 31/12/2500 LIBEN Wholly milled long grain rice, length-width ratio >= 3, parboiled, whether or not polished or glazed 01/01/1989 31/12/2500 -10063091 01/01/1988 31/12/1988 LIBEN Wholly milled round grain rice 01/01/1988 31/12/1988 -10063092 01/01/1989 31/12/2500 LIBEN Wholly milled round grain rice, whether or not polished or glazed (excl. parboiled) 01/01/1989 31/12/2500 -10063094 01/01/1989 31/12/2500 LIBEN Wholly milled medium grain rice, whether or not polished or glazed (excl. parboiled) 01/01/1989 31/12/2500 -10063096 01/01/1989 31/12/2500 LIBEN Wholly milled long grain rice, length-width > 2 but < 3, whether or not polished or glazed (excl. parboiled) 01/01/1989 31/12/2500 -10063098 01/01/1989 31/12/2500 LIBEN Wholly milled long grain rice, length-width ratio >= 3, whether or not polished or glazed (excl. parboiled) 01/01/1989 31/12/2500 -10063099 01/01/1988 31/12/1988 LIBEN Wholly milled long grain rice 01/01/1988 31/12/1988 -100640 01/01/1988 31/12/2500 LIBEN Broken rice 01/01/1988 31/12/2500 -10064000 01/01/1988 31/12/2500 LIBEN Broken rice 01/01/1988 31/12/2500 -1007 01/01/1988 31/12/2500 LIBEN Grain sorghum 01/01/1988 31/12/2500 -100700 01/01/1988 31/12/2011 LIBEN Grain sorghum 01/01/1988 31/12/2011 -10070010 01/01/1988 31/12/2011 LIBEN Hybrid grain sorghum, for sowing 01/01/1988 31/12/2011 -10070090 01/01/1988 31/12/2011 LIBEN Grain sorghum (excl. hybrid for sowing) 01/01/1988 31/12/2011 -100710 01/01/2012 31/12/2500 LIBEN Grain sorghum, for sowing 01/01/2012 31/12/2500 -10071010 01/01/2012 31/12/2500 LIBEN Hybrid grain sorghum, for sowing 01/01/2012 31/12/2500 -10071090 01/01/2012 31/12/2500 LIBEN Grain sorghum, for sowing (excl. hybrids) 01/01/2012 31/12/2500 -100790 01/01/2012 31/12/2500 LIBEN Grain sorghum (excl. for sowing) 01/01/2012 31/12/2500 -10079000 01/01/2012 31/12/2500 LIBEN Grain sorghum (excl. for sowing) 01/01/2012 31/12/2500 -1008 01/01/1988 31/12/2500 LIBEN Buckwheat, millet, canary seed and other cereals (excl. wheat and meslin, rye, barley, oats, maize, rice and grain sorghum) 01/01/1988 31/12/2500 -100810 01/01/1988 31/12/2500 LIBEN Buckwheat 01/01/1988 31/12/2500 -10081000 01/01/1988 31/12/2500 LIBEN Buckwheat 01/01/1988 31/12/2500 -100820 01/01/1988 31/12/2011 LIBEN Millet (excl. grain sorghum) 01/01/1988 31/12/2011 -10082000 01/01/1988 31/12/2011 LIBEN Millet (excl. grain sorghum) 01/01/1988 31/12/2011 -100821 01/01/2012 31/12/2500 LIBEN Millet seed for sowing (excl. grain sorghum) 01/01/2012 31/12/2500 -10082100 01/01/2012 31/12/2500 LIBEN Millet seed for sowing (excl. grain sorghum) 01/01/2012 31/12/2500 -100829 01/01/2012 31/12/2500 LIBEN Millet (excl. grain sorghum, and seed for sowing) 01/01/2012 31/12/2500 -10082900 01/01/2012 31/12/2500 LIBEN Millet (excl. grain sorghum, and seed for sowing) 01/01/2012 31/12/2500 -100830 01/01/1988 31/12/2500 LIBEN Canary seed 01/01/1988 31/12/2500 -10083000 01/01/1988 31/12/2500 LIBEN Canary seed 01/01/1988 31/12/2500 -100840 01/01/2012 31/12/2500 LIBEN Fonio "Digitaria spp." 01/01/2012 31/12/2500 -10084000 01/01/2012 31/12/2500 LIBEN Fonio "Digitaria spp." 01/01/2012 31/12/2500 -100850 01/01/2012 31/12/2500 LIBEN Quinoa "Chenopodium quinoa" 01/01/2012 31/12/2500 -10085000 01/01/2012 31/12/2500 LIBEN Quinoa "Chenopodium quinoa" 01/01/2012 31/12/2500 -100860 01/01/2012 31/12/2500 LIBEN Triticale 01/01/2012 31/12/2500 -10086000 01/01/2012 31/12/2500 LIBEN Triticale 01/01/2012 31/12/2500 -100890 01/01/1988 31/12/2500 LIBEN Cereals (excl. wheat and meslin, rye, barley, oats, maize, rice, grain sorghum, buckwheat, millet, canary seeds, fonio, quinoa and triticale) 01/01/1988 31/12/2500 -10089000 01/01/2012 31/12/2500 LIBEN Cereals (excl. wheat and meslin, rye, barley, oats, maize, rice, grain sorghum, buckwheat, millet, canary seeds, fonio, quinoa and triticale) 01/01/2012 31/12/2500 -10089010 01/01/1988 31/12/2011 LIBEN Triticale 01/01/1988 31/12/2011 -10089090 01/01/1988 31/12/2011 LIBEN Cereals (excl. wheat and meslin, rye, barley, oats, maize, rice, buckwheat, millet, canary seed, triticale and grain sorghum) 01/01/1988 31/12/2011 -10CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 10 01/01/2002 31/12/2500 -10CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 10 01/01/2002 31/12/2500 -10CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 10 01/01/2002 31/12/2500 -10MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -10MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -10MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -10SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 10 01/01/1988 31/12/2500 -10SSS0 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 10 and SITC section 0 01/01/1997 31/12/2500 -10SSS041 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 10 and SITC group 041 01/01/1997 31/12/2500 -10SSS042 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 10 and SITC group 042 01/01/1997 31/12/2500 -10SSS043 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 10 and SITC group 043 01/01/1997 31/12/2500 -10SSS044 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 10 and SITC group 044 01/01/1997 31/12/2500 -10SSS045 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 10 and SITC group 045 01/01/1997 31/12/2500 -10SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 10 and SITC section 9 01/01/1988 31/12/1996 -10SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 10 and SITC section 9 01/01/1997 31/12/2500 -10SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 10 and SITC group 999 01/01/1988 31/12/1996 -10SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 10 and SITC group 999 01/01/1997 31/12/2500 -11 01/01/1988 31/12/2500 LIBEN PRODUCTS OF THE MILLING INDUSTRY; MALT; STARCHES; INULIN; WHEAT GLUTEN 01/01/1988 31/12/2500 -1101 01/01/1988 31/12/2500 LIBEN Wheat or meslin flour 01/01/1988 31/12/2500 -110100 01/01/1988 31/12/2500 LIBEN Wheat or meslin flour 01/01/1988 31/12/2500 -11010000 01/01/1988 31/12/1994 LIBEN Wheat or meslin flour 01/01/1988 31/12/1994 -11010011 01/01/1995 31/12/2500 LIBEN Durum wheat flour 01/01/1995 31/12/2500 -11010015 01/01/1995 31/12/2500 LIBEN Flour of common wheat and spelt 01/01/1995 31/12/2500 -11010090 01/01/1995 31/12/2500 LIBEN Meslin flour 01/01/1995 31/12/2500 -1101S0 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1101 and SITC section 0 01/01/1997 31/12/2500 -1101S046 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1101 and SITC group 046 01/01/1997 31/12/2500 -1102 01/01/1988 31/12/2500 LIBEN Cereal flours (excl. wheat or meslin) 01/01/1988 31/12/2500 -110210 01/01/1988 31/12/2011 LIBEN Rye flour 01/01/1988 31/12/2011 -11021000 01/01/1988 31/12/2011 LIBEN Rye flour 01/01/1988 31/12/2011 -110220 01/01/1988 31/12/2500 LIBEN Maize "corn" flour 01/01/1988 31/12/2500 -11022010 01/01/1988 31/12/2500 LIBEN Maize flour, with fat content of <= 1,5% by weight 01/01/1988 31/12/2500 -11022090 01/01/1988 31/12/2500 LIBEN Maize flour, with fat content of > 1,5% by weight 01/01/1988 31/12/2500 -110230 01/01/1988 31/12/2006 LIBEN Rice flour 01/01/1988 31/12/2006 -11023000 01/01/1988 31/12/2006 LIBEN Rice flour 01/01/1988 31/12/2006 -110290 01/01/1988 31/12/2500 LIBEN Cereal flours (excl. wheat, meslin and maize) 01/01/1988 31/12/2500 -11029010 01/01/1988 31/12/2500 LIBEN Barley flour 01/01/1988 31/12/2500 -11029030 01/01/1988 31/12/2500 LIBEN Oat flour 01/01/1988 31/12/2500 -11029050 01/01/2007 31/12/2500 LIBEN Rice flour 01/01/2007 31/12/2500 -11029070 01/01/2012 31/12/2500 LIBEN Rye flour 01/01/2012 31/12/2500 -11029090 01/01/1988 31/12/2500 LIBEN Cereal flours (excl. wheat, meslin, rye, maize, rice, barley and oat) 01/01/1988 31/12/2500 -1103 01/01/1988 31/12/2500 LIBEN Cereal groats, meal and pellets 01/01/1988 31/12/2500 -110311 01/01/1988 31/12/2500 LIBEN Groats and meal of wheat 01/01/1988 31/12/2500 -11031110 01/01/1988 31/12/1992 LIBEN Durum wheat groats and meal 01/01/1988 31/12/1992 -11031110 01/01/1994 31/12/2500 LIBEN Groats and meal, of durum wheat 01/01/1994 31/12/2500 -11031130 01/01/1993 31/12/1993 LIBEN Groats of durum wheat 01/01/1993 31/12/1993 -11031150 01/01/1993 31/12/1993 LIBEN Meal of durum wheat 01/01/1993 31/12/1993 -11031190 01/01/1988 31/12/2500 LIBEN Common wheat and spelt groats and meal 01/01/1988 31/12/2500 -110312 01/01/1988 31/12/2001 LIBEN Groats and meal of oats 01/01/1988 31/12/2001 -11031200 01/01/1988 31/12/2001 LIBEN Groats and meal of oats 01/01/1988 31/12/2001 -110313 01/01/1988 31/12/2500 LIBEN Groats and meal of maize "corn" 01/01/1988 31/12/2500 -11031310 01/01/1992 31/12/2500 LIBEN Groats and meal of maize, "corn", with a fat content, by weight, of <= 1,5% 01/01/1992 31/12/2500 -11031311 01/01/1988 31/12/1991 LIBEN Groats and meal of maize, with fat content of =< 1.5 % by weight, for the brewing industry 01/01/1988 31/12/1991 -11031319 01/01/1988 31/12/1991 LIBEN Groats and meal of maize, with fat content of =< 1.5 % by weight (excl. for the brewing industry) 01/01/1988 31/12/1991 -11031390 01/01/1988 31/12/2500 LIBEN Groats and meal of maize, "corn", with a fat content, by weight, of > 1,5% 01/01/1988 31/12/2500 -110314 01/01/1988 31/12/2001 LIBEN Rice groats and meal 01/01/1988 31/12/2001 -11031400 01/01/1988 31/12/2001 LIBEN Rice groats and meal 01/01/1988 31/12/2001 -110319 01/01/1988 31/12/2500 LIBEN Groats and meal of cereals (excl. wheat and maize) 01/01/1988 31/12/2500 -11031910 01/01/1988 31/12/2011 LIBEN Rye groats and meal 01/01/1988 31/12/2011 -11031920 01/01/2012 31/12/2500 LIBEN Groats and meal of rye or barley 01/01/2012 31/12/2500 -11031930 01/01/1988 31/12/2011 LIBEN Barley groats and meal 01/01/1988 31/12/2011 -11031940 01/01/2002 31/12/2500 LIBEN Groats and meal of oats 01/01/2002 31/12/2500 -11031950 01/01/2002 31/12/2500 LIBEN Rice groats and meal 01/01/2002 31/12/2500 -11031990 01/01/1988 31/12/2500 LIBEN Groats and meal of cereals (excl. wheat, oats, maize, rice, rye and barley) 01/01/1988 31/12/2500 -110320 01/01/2002 31/12/2500 LIBEN Cereal pellets 01/01/2002 31/12/2500 -11032010 01/01/2002 31/12/2011 LIBEN Rye pellets 01/01/2002 31/12/2011 -11032020 01/01/2002 31/12/2011 LIBEN Barley pellets 01/01/2002 31/12/2011 -11032025 01/01/2012 31/12/2500 LIBEN Pellets of rye or barley 01/01/2012 31/12/2500 -11032030 01/01/2002 31/12/2500 LIBEN Pellets of oats 01/01/2002 31/12/2500 -11032040 01/01/2002 31/12/2500 LIBEN Maize pellets 01/01/2002 31/12/2500 -11032050 01/01/2002 31/12/2500 LIBEN Rice pellets 01/01/2002 31/12/2500 -11032060 01/01/2002 31/12/2500 LIBEN Wheat pellets 01/01/2002 31/12/2500 -11032090 01/01/2002 31/12/2500 LIBEN Cereal pellets (excl. rye, barley, oats, maize, rice and wheat) 01/01/2002 31/12/2500 -110321 01/01/1988 31/12/2001 LIBEN Wheat pellets 01/01/1988 31/12/2001 -11032100 01/01/1988 31/12/2001 LIBEN Wheat pellets 01/01/1988 31/12/2001 -110329 01/01/1988 31/12/2001 LIBEN Cereal pellets (excl. wheat) 01/01/1988 31/12/2001 -11032910 01/01/1988 31/12/2001 LIBEN Rye pellets 01/01/1988 31/12/2001 -11032920 01/01/1988 31/12/2001 LIBEN Barley pellets 01/01/1988 31/12/2001 -11032930 01/01/1988 31/12/2001 LIBEN Pellets of oats 01/01/1988 31/12/2001 -11032940 01/01/1988 31/12/2001 LIBEN Maize pellets 01/01/1988 31/12/2001 -11032950 01/01/1988 31/12/2001 LIBEN Rice pellets 01/01/1988 31/12/2001 -11032990 01/01/1988 31/12/2001 LIBEN Cereal pellets (excl. wheat, rye, barley, oats, maize and rice) 01/01/1988 31/12/2001 -1104 01/01/1988 31/12/2500 LIBEN Cereal grains otherwise worked, e.g. hulled, rolled, flaked, pearled, sliced or kibbled; germ of cereals, whole, rolled, flaked or ground (excl. cereal flours, and husked and semi- or wholly milled rice and broken rice) 01/01/1988 31/12/2500 -110411 01/01/1988 31/12/2001 LIBEN Rolled or flaked grains of barley 01/01/1988 31/12/2001 -11041110 01/01/1988 31/12/2001 LIBEN Rolled barley grains 01/01/1988 31/12/2001 -11041190 01/01/1988 31/12/2001 LIBEN Flaked barley grains 01/01/1988 31/12/2001 -110412 01/01/1988 31/12/2500 LIBEN Rolled or flaked grains of oats 01/01/1988 31/12/2500 -11041210 01/01/1988 31/12/2500 LIBEN Rolled oat grains 01/01/1988 31/12/2500 -11041290 01/01/1988 31/12/2500 LIBEN Flaked oat grains 01/01/1988 31/12/2500 -110419 01/01/1988 31/12/2500 LIBEN Rolled or flaked grains of cereals (excl. oats) 01/01/1988 31/12/2500 -11041910 01/01/1988 31/12/2500 LIBEN Rolled or flaked wheat grains 01/01/1988 31/12/2500 -11041930 01/01/1988 31/12/2500 LIBEN Rolled or flaked rye grains 01/01/1988 31/12/2500 -11041950 01/01/1988 31/12/2500 LIBEN Rolled or flaked maize grains 01/01/1988 31/12/2500 -11041961 01/01/2002 31/12/2500 LIBEN Rolled barley grains 01/01/2002 31/12/2500 -11041969 01/01/2002 31/12/2500 LIBEN Flaked barley grains 01/01/2002 31/12/2500 -11041991 01/01/1988 31/12/2500 LIBEN Flaked rice grains 01/01/1988 31/12/2500 -11041999 01/01/1988 31/12/2500 LIBEN Rolled or flaked cereal grains (excl. grains of oats, wheat, rye, maize and barley, and flaked rice) 01/01/1988 31/12/2500 -110421 01/01/1988 31/12/2001 LIBEN Hulled, pearled, sliced, kibbled or otherwise worked grains of barley (excl. barley flour) 01/01/1988 31/12/2001 -11042110 01/01/1988 31/12/1994 LIBEN Hulled barley grains 01/01/1988 31/12/1994 -11042110 01/01/1995 31/12/2001 LIBEN Hulled [shelled or husked] barley grains 01/01/1995 31/12/2001 -11042130 01/01/1988 31/12/1994 LIBEN Hulled, sliced or kibbled barley grains 01/01/1988 31/12/1994 -11042130 01/01/1995 31/12/2001 LIBEN Hulled, sliced or kibbled barley grains 01/01/1995 31/12/2001 -11042150 01/01/1988 31/12/1994 LIBEN Pearled barley grains 01/01/1988 31/12/1994 -11042150 01/01/1995 31/12/2001 LIBEN Pearled barley grains 01/01/1995 31/12/2001 -11042190 01/01/1988 31/12/1994 LIBEN Kibbled barley grains 01/01/1988 31/12/1994 -11042190 01/01/1995 31/12/2001 LIBEN Kibbled barley grains 01/01/1995 31/12/2001 -11042199 01/01/1995 31/12/2001 LIBEN Cereal grains of barley (other than hulled [shelled or husked] and sliced or kibbled ['Grütze' or 'grutten'], pearled or not otherwise worked than kibbled) 01/01/1995 31/12/2001 -110422 01/01/1988 31/12/2500 LIBEN Hulled, pearled, sliced, kibbled or otherwise worked oat grains (excl. rolled, flaked, pellets and flour) 01/01/1988 31/12/2500 -11042210 01/01/1988 31/12/1994 LIBEN Hulled oat grains 01/01/1988 31/12/1994 -11042210 01/01/1995 31/12/1995 LIBEN Hulled oat grains 01/01/1995 31/12/1995 -11042220 01/01/1996 31/12/2011 LIBEN Oat grains, hulled [shelled or husked] (excl. clipped) 01/01/1996 31/12/2011 -11042230 01/01/1988 31/12/1994 LIBEN Hulled, sliced or kibbled oat grains 01/01/1988 31/12/1994 -11042230 01/01/1995 31/12/2011 LIBEN Hulled, sliced or kibbled oat grains 01/01/1995 31/12/2011 -11042240 01/01/2012 31/12/2500 LIBEN Hulled, even sliced or kibbled oat grains 01/01/2012 31/12/2500 -11042250 01/01/1988 31/12/1994 LIBEN Pearled oat grains 01/01/1988 31/12/1994 -11042250 01/01/1995 31/12/2500 LIBEN Pearled oat grains 01/01/1995 31/12/2500 -11042290 01/01/1988 31/12/1994 LIBEN Kibbled oat grains 01/01/1988 31/12/1994 -11042290 01/01/1995 31/12/2011 LIBEN Kibbled oat grains 01/01/1995 31/12/2011 -11042292 01/01/1996 31/12/1996 LIBEN Oat grains, clipped 01/01/1996 31/12/1996 -11042295 01/01/2012 31/12/2500 LIBEN Sliced, kibbled or otherwise worked oat grains (excl. rolled, flaked, hulled, pearled, and pellets and flour) 01/01/2012 31/12/2500 -11042298 01/01/1997 31/12/2011 LIBEN Oat grains (excl. clipped, hulled [shelled or husked] and sliced or kibbled ["Grütze" or "grutten"], pearled and not otherwise worked than kibbled) 01/01/1997 31/12/2011 -11042299 01/01/1995 31/12/1996 LIBEN Oat grains (excl. clipped, hulled [shelled or husked] and sliced or kibbled ["Grütze" or "grutten"], pearled and not otherwise worked than kibbled) 01/01/1995 31/12/1996 -110423 01/01/1988 31/12/2500 LIBEN Hulled, pearled, sliced, kibbled or otherwise worked maize grains (excl. rolled, flaked, pellets and flour) 01/01/1988 31/12/2500 -11042310 01/01/1988 31/12/1994 LIBEN Hulled, sliced or kibbled maize grains 01/01/1988 31/12/1994 -11042310 01/01/1995 31/12/2011 LIBEN Hulled [shelled or husked], maize grains, whether or not sliced or kibbled 01/01/1995 31/12/2011 -11042330 01/01/1988 31/12/1994 LIBEN Pearled maize grains 01/01/1988 31/12/1994 -11042330 01/01/1995 31/12/2011 LIBEN Pearled maize grains 01/01/1995 31/12/2011 -11042340 01/01/2012 31/12/2500 LIBEN Hulled maize grains, even sliced or kibbled; pearled maize grains 01/01/2012 31/12/2500 -11042390 01/01/1988 31/12/1994 LIBEN Kibbled maize grains 01/01/1988 31/12/1994 -11042390 01/01/1995 31/12/2011 LIBEN Kibbled maize grains 01/01/1995 31/12/2011 -11042398 01/01/2012 31/12/2500 LIBEN Sliced, kibbled or otherwise worked maize grains (excl. rolled, flaked, hulled, pearled, and pellets and flour) 01/01/2012 31/12/2500 -11042399 01/01/1995 31/12/2011 LIBEN Cereal grains of maize (other than hulled [shelled or husked], sliced or kibbled, pearled or not otherwise worked than kibbled) 01/01/1995 31/12/2011 -110429 01/01/1988 31/12/2500 LIBEN Grains of cereals, hulled, pearled, sliced, kibbled or otherwise worked (excl. rolled, flaked, flour, pellets, and oats and maize, and husked and semi- or wholly milled rice and broken rice) 01/01/1988 31/12/2500 -11042901 01/01/2002 31/12/2011 LIBEN Hulled [shelled or husked] barley grains 01/01/2002 31/12/2011 -11042903 01/01/2002 31/12/2011 LIBEN Hulled and sliced or kibbled barley grains ['Grütze' or 'grutten'] 01/01/2002 31/12/2011 -11042904 01/01/2012 31/12/2500 LIBEN Hulled, even sliced or kibbled barley grains 01/01/2012 31/12/2500 -11042905 01/01/2002 31/12/2500 LIBEN Pearled barley grains 01/01/2002 31/12/2500 -11042907 01/01/2002 31/12/2011 LIBEN Barley grains, only kibbled 01/01/2002 31/12/2011 -11042908 01/01/2012 31/12/2500 LIBEN Sliced, kibbled or otherwise worked barley grains (excl. rolled, flaked, hulled, pearled, and pellets and flour) 01/01/2012 31/12/2500 -11042909 01/01/2002 31/12/2011 LIBEN Barley grains (other than hulled [shelled or husked] and sliced or kibbled ['Grütze' or 'grutten'], pearled or not otherwise worked than kibbled) 01/01/2002 31/12/2011 -11042910 01/01/1988 31/12/1989 LIBEN Hulled grains, whether or not sliced or kibbled (excl. barley, oats, maize and rice) 01/01/1988 31/12/1989 -11042911 01/01/1990 31/12/1994 LIBEN Hulled -shelled or husked- wheat grains 01/01/1990 31/12/1994 -11042911 01/01/1995 31/12/2011 LIBEN Hulled [shelled or husked] wheat grains 01/01/1995 31/12/2011 -11042915 01/01/1990 31/12/1994 LIBEN Hulled -shelled or husked- rye grains 01/01/1990 31/12/1994 -11042915 01/01/1995 31/12/2005 LIBEN Hulled [shelled or husked] rye grains 01/01/1995 31/12/2005 -11042917 01/01/2012 31/12/2500 LIBEN Hulled, even sliced or kibbled cereal grains (excl. rice, oats, maize and barley) 01/01/2012 31/12/2500 -11042918 01/01/2006 31/12/2011 LIBEN Hulled [shelled or husked] cereal grains (excl. barley, oats, maize, rice or wheat) 01/01/2006 31/12/2011 -11042919 01/01/1990 31/12/1994 LIBEN Hulled -shelled or husked- cereal grains, (excl. barley, oats, maize, rice, wheat or rye) 01/01/1990 31/12/1994 -11042919 01/01/1995 31/12/2005 LIBEN Hulled [shelled or husked] cereal grains (excl. barley, oats, maize, rice, wheat or rye) 01/01/1995 31/12/2005 -11042930 01/01/1988 31/12/1989 LIBEN Pearled grains (excl. barley, oats, maize and rice) 01/01/1988 31/12/1989 -11042930 01/01/2006 31/12/2500 LIBEN Pearled cereal grains (excl. barley, oats, maize or rice) 01/01/2006 31/12/2500 -11042931 01/01/1990 31/12/1994 LIBEN Pearled wheat grains 01/01/1990 31/12/1994 -11042931 01/01/1995 31/12/2005 LIBEN Pearled wheat grains 01/01/1995 31/12/2005 -11042935 01/01/1990 31/12/1994 LIBEN Pearled rye grains 01/01/1990 31/12/1994 -11042935 01/01/1995 31/12/2005 LIBEN Pearled rye grains 01/01/1995 31/12/2005 -11042939 01/01/1990 31/12/1994 LIBEN Pearled cereal grains (excl. barley, oats, maize, rice, wheat or rye) 01/01/1990 31/12/1994 -11042939 01/01/1995 31/12/2005 LIBEN Pearled cereal grains (excl. barley, oats, maize, rice, wheat or rye) 01/01/1995 31/12/2005 -11042951 01/01/1995 31/12/2500 LIBEN Cereal grains of wheat, not otherwise worked than kibbled 01/01/1995 31/12/2500 -11042955 01/01/1995 31/12/2500 LIBEN Cereal grains of rye, not otherwise worked than kibbled 01/01/1995 31/12/2500 -11042959 01/01/1995 31/12/2500 LIBEN Cereal grains, not otherwise worked than kibbled (other than barley, oats, maize, wheat and rye) 01/01/1995 31/12/2500 -11042981 01/01/1995 31/12/2500 LIBEN Wheat grains, sliced, kibbled or otherwise worked (excl. rolled, flaked, flour, pellets, hulled, pearled, and not otherwise worked than kibbled) 01/01/1995 31/12/2500 -11042985 01/01/1995 31/12/2500 LIBEN Rye grains, sliced, kibbled or otherwise worked (excl. rolled, flaked, flour, pellets, hulled, pearled, and not otherwise worked than kibbled) 01/01/1995 31/12/2500 -11042989 01/01/1995 31/12/2500 LIBEN Cereal grains, sliced, kibbled or otherwise worked (excl. barley, oats, maize, wheat and rye, and rolled, flaked, flour, pellets, hulled, pearled, not otherwise worked than kibbled, and semi- or wholly milled rice and broken rice) 01/01/1995 31/12/2500 -11042991 01/01/1988 31/12/1994 LIBEN Kibbled wheat grains 01/01/1988 31/12/1994 -11042995 01/01/1988 31/12/1994 LIBEN Kibbled rye grains 01/01/1988 31/12/1994 -11042999 01/01/1988 31/12/1994 LIBEN Kibbled cereal grains (excl. barley, oat, maize, wheat and rye) 01/01/1988 31/12/1994 -110430 01/01/1988 31/12/2500 LIBEN Germ of cereals, whole, rolled, flaked or ground 01/01/1988 31/12/2500 -11043010 01/01/1988 31/12/2500 LIBEN Wheat germ, whole, rolled, flaked or ground 01/01/1988 31/12/2500 -11043090 01/01/1988 31/12/2500 LIBEN Cereal germ, whole, rolled, flaked or ground (excl. wheat) 01/01/1988 31/12/2500 -1105 01/01/1988 31/12/2500 LIBEN Flour, meal, powder, flakes, granules and pellets of potatoes 01/01/1988 31/12/2500 -110510 01/01/1988 31/12/2500 LIBEN Flour, meal and powder of potatoes 01/01/1988 31/12/2500 -11051000 01/01/1988 31/12/2500 LIBEN Flour, meal and powder of potatoes 01/01/1988 31/12/2500 -110520 01/01/1988 31/12/2500 LIBEN Flakes, granules and pellets of potatoes 01/01/1988 31/12/2500 -11052000 01/01/1988 31/12/2500 LIBEN Flakes, granules and pellets of potatoes 01/01/1988 31/12/2500 -1106 01/01/1988 31/12/2500 LIBEN Flour, meal and powder of peas, beans, lentils and other dried leguminous vegetables of heading 0713, of sago and manioc, arrowroot and salep, Jerusalem artichoke, sweet potatoes and similar roots and tubers with high starch or inulin content of heading 0714, produce of chapter 8 "Edible fruit and nuts; peel of citrus fruits or melons" 01/01/1988 31/12/2500 -110610 01/01/1988 31/12/2500 LIBEN Flour, meal and powder of peas, beans, lentils and the other dried leguminous vegetables of heading 0713 01/01/1988 31/12/2500 -11061000 01/01/1988 31/12/2500 LIBEN Flour, meal and powder of peas, beans, lentils and the other dried leguminous vegetables of heading 0713 01/01/1988 31/12/2500 -110620 01/01/1988 31/12/2500 LIBEN Flour, meal and powder of sago or of roots or tubers of manioc, arrowroot, salep, sweet potatoes and similar roots and tubers with a high content of starch or inulin of heading 0714 01/01/1988 31/12/2500 -11062010 01/01/1988 31/12/2500 LIBEN Denatured flour, meal and powder of sago or of manioc, arrowroot, salep, Jerusalem artichokes, sweet potatoes and similar roots and tubers with a high content of starch or inulin of heading 0714 01/01/1988 31/12/2500 -11062090 01/01/1992 31/12/2500 LIBEN Flour, meal and powder of sago and of root or tubers of manioc, arrowroot, salep, Jerusalem artichokes, sweet potatoes and similar roots and tubers with a high content of starch or inulin of heading 0714 (excl. denatured) 01/01/1992 31/12/2500 -11062091 01/01/1988 31/12/1991 LIBEN Flour and meal of sago or of manioc, arrowroot, salep, Jerusalem artichokes, sweet potatoes and similar roots and tubers with high starch or inulin content, for the extraction of starch 01/01/1988 31/12/1991 -11062099 01/01/1988 31/12/1991 LIBEN Flour and meal of sago or of manioc, arrowroot, salep, Jerusalem artichokes, sweet potatoes and similar roots and tubers with high starch or inulin content (excl. for the extraction of starch) 01/01/1988 31/12/1991 -110630 01/01/1988 31/12/2500 LIBEN Flour, meal and powder of produce of chapter 8 "Edible fruit and nuts; peel of citrus fruits or melons" 01/01/1988 31/12/2500 -11063010 01/01/1988 31/12/2500 LIBEN Flour, meal and powder of bananas 01/01/1988 31/12/2500 -11063090 01/01/1988 31/12/2500 LIBEN Flour, meal and powder of produce of chapter 8 "Edible fruit and nuts; peel of citrus fruits or melons" (other than bananas) 01/01/1988 31/12/2500 -1107 01/01/1988 31/12/2500 LIBEN Malt, whether or not roasted 01/01/1988 31/12/2500 -110710 01/01/1988 31/12/2500 LIBEN Malt (excl. roasted) 01/01/1988 31/12/2500 -11071011 01/01/1988 31/12/2500 LIBEN Wheat malt in flour form (excl. roasted) 01/01/1988 31/12/2500 -11071019 01/01/1988 31/12/2500 LIBEN Wheat malt (excl. flour and roasted) 01/01/1988 31/12/2500 -11071091 01/01/1988 31/12/2500 LIBEN Malt in flour form (excl. roasted and wheat) 01/01/1988 31/12/2500 -11071099 01/01/1988 31/12/2500 LIBEN Malt (excl. roasted, wheat and flour) 01/01/1988 31/12/2500 -110720 01/01/1988 31/12/2500 LIBEN Roasted malt 01/01/1988 31/12/2500 -11072000 01/01/1988 31/12/2500 LIBEN Roasted malt 01/01/1988 31/12/2500 -1108 01/01/1988 31/12/2500 LIBEN Starches; inulin 01/01/1988 31/12/2500 -110811 01/01/1988 31/12/2500 LIBEN Wheat starch 01/01/1988 31/12/2500 -11081100 01/01/1988 31/12/2500 LIBEN Wheat starch 01/01/1988 31/12/2500 -110812 01/01/1988 31/12/2500 LIBEN Maize starch 01/01/1988 31/12/2500 -11081200 01/01/1988 31/12/2500 LIBEN Maize starch 01/01/1988 31/12/2500 -110813 01/01/1988 31/12/2500 LIBEN Potato starch 01/01/1988 31/12/2500 -11081300 01/01/1988 31/12/2500 LIBEN Potato starch 01/01/1988 31/12/2500 -110814 01/01/1988 31/12/2500 LIBEN Manioc starch 01/01/1988 31/12/2500 -11081400 01/01/1988 31/12/2500 LIBEN Manioc starch 01/01/1988 31/12/2500 -110819 01/01/1988 31/12/2500 LIBEN Starch (excl. wheat, maize, potato and manioc) 01/01/1988 31/12/2500 -11081910 01/01/1988 31/12/2500 LIBEN Rice starch 01/01/1988 31/12/2500 -11081990 01/01/1988 31/12/2500 LIBEN Starch (excl. wheat, maize, potato, manioc and rice) 01/01/1988 31/12/2500 -110820 01/01/1988 31/12/2500 LIBEN Inulin 01/01/1988 31/12/2500 -11082000 01/01/1988 31/12/2500 LIBEN Inulin 01/01/1988 31/12/2500 -1108S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1108 and SITC section 5 01/01/1997 31/12/2500 -1108S592 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1108 and SITC group 592 01/01/1997 31/12/2500 -1109 01/01/1988 31/12/2500 LIBEN Wheat gluten, whether or not dried 01/01/1988 31/12/2500 -110900 01/01/1988 31/12/2500 LIBEN Wheat gluten, whether or not dried 01/01/1988 31/12/2500 -11090000 01/01/1988 31/12/2500 LIBEN Wheat gluten, whether or not dried 01/01/1988 31/12/2500 -1109S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1109 and SITC section 5 01/01/1997 31/12/2500 -1109S592 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1109 and SITC group 592 01/01/1997 31/12/2500 -11CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 11 01/01/2002 31/12/2500 -11CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 11 01/01/2002 31/12/2500 -11CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 11 01/01/2002 31/12/2500 -11MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -11MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -11MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -11SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 11 01/01/1988 31/12/2500 -11SSS0 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 11 and SITC section 0 01/01/1992 31/12/2500 -11SSS046 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 11 and SITC group 046 01/01/1997 31/12/2500 -11SSS047 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 11 and SITC group 047 01/01/1992 31/12/2500 -11SSS048 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 11 and SITC group 048 01/01/1992 31/12/2500 -11SSS056 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 11 and SITC group 056 01/01/1997 31/12/2500 -11SSS5 01/01/1991 31/12/2500 LIBEN Confidential trade of chapter 11 and SITC section 5 01/01/1991 31/12/2500 -11SSS592 01/01/1991 31/12/2500 LIBEN Confidential trade of chapter 11 and SITC group 592 01/01/1991 31/12/2500 -11SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 11 and SITC section 9 01/01/1988 31/12/1996 -11SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 11 and SITC section 9 01/01/1997 31/12/2500 -11SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 11 and SITC group 999 01/01/1988 31/12/1996 -11SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 11 and SITC group 999 01/01/1997 31/12/2500 -12 01/01/1988 31/12/2500 LIBEN OIL SEEDS AND OLEAGINOUS FRUITS; MISCELLANEOUS GRAINS, SEEDS AND FRUIT; INDUSTRIAL OR MEDICINAL PLANTS; STRAW AND FODDER 01/01/1988 31/12/2500 -1201 01/01/1988 31/12/2500 LIBEN Soya beans, whether or not broken 01/01/1988 31/12/2500 -120100 01/01/1988 31/12/2011 LIBEN Soya beans, whether or not broken 01/01/1988 31/12/2011 -12010010 01/01/1988 31/12/2011 LIBEN Soya beans for sowing 01/01/1988 31/12/2011 -12010090 01/01/1988 31/12/2011 LIBEN Soya beans (excl. for sowing) 01/01/1988 31/12/2011 -120110 01/01/2012 31/12/2500 LIBEN Soya bean seed, for sowing 01/01/2012 31/12/2500 -12011000 01/01/2012 31/12/2500 LIBEN Soya bean seed, for sowing 01/01/2012 31/12/2500 -120190 01/01/2012 31/12/2500 LIBEN Soya beans, whether or not broken (excl. seed for sowing) 01/01/2012 31/12/2500 -12019000 01/01/2012 31/12/2500 LIBEN Soya beans, whether or not broken (excl. seed for sowing) 01/01/2012 31/12/2500 -1202 01/01/1988 31/12/2500 LIBEN Groundnuts, whether or not shelled or broken (excl. roasted or otherwise cooked) 01/01/1988 31/12/2500 -120210 01/01/1988 31/12/2011 LIBEN Groundnuts in shell, not roasted or otherwise cooked 01/01/1988 31/12/2011 -12021010 01/01/1988 31/12/2011 LIBEN Groundnuts in shell for sowing 01/01/1988 31/12/2011 -12021090 01/01/1988 31/12/2011 LIBEN Groundnuts in shell (excl. roasted or otherwise cooked and for sowing) 01/01/1988 31/12/2011 -120220 01/01/1988 31/12/2011 LIBEN Shelled groundnuts, whether or not broken (excl. roasted or otherwise cooked) 01/01/1988 31/12/2011 -12022000 01/01/1988 31/12/2011 LIBEN Shelled groundnuts, whether or not broken (excl. roasted or otherwise cooked) 01/01/1988 31/12/2011 -120230 01/01/2012 31/12/2500 LIBEN Groundnut seed, for sowing 01/01/2012 31/12/2500 -12023000 01/01/2012 31/12/2500 LIBEN Groundnut seed, for sowing 01/01/2012 31/12/2500 -120241 01/01/2012 31/12/2500 LIBEN Groundnuts, in shell (excl. seed for sowing, roasted or otherwise cooked) 01/01/2012 31/12/2500 -12024100 01/01/2012 31/12/2500 LIBEN Groundnuts, in shell (excl. seed for sowing, roasted or otherwise cooked) 01/01/2012 31/12/2500 -120242 01/01/2012 31/12/2500 LIBEN Groundnuts, shelled, whether or not broken (excl. seed for sowing, roasted or otherwise cooked) 01/01/2012 31/12/2500 -12024200 01/01/2012 31/12/2500 LIBEN Groundnuts, shelled, whether or not broken (excl. seed for sowing, roasted or otherwise cooked) 01/01/2012 31/12/2500 -1203 01/01/1988 31/12/2500 LIBEN Copra 01/01/1988 31/12/2500 -120300 01/01/1988 31/12/2500 LIBEN Copra 01/01/1988 31/12/2500 -12030000 01/01/1988 31/12/2500 LIBEN Copra 01/01/1988 31/12/2500 -1204 01/01/1988 31/12/2500 LIBEN Linseed, whether or not broken 01/01/1988 31/12/2500 -120400 01/01/1988 31/12/2500 LIBEN Linseed, whether or not broken 01/01/1988 31/12/2500 -12040010 01/01/1988 31/12/2500 LIBEN Linseed for sowing 01/01/1988 31/12/2500 -12040090 01/01/1988 31/12/2500 LIBEN Linseed (excl. for sowing) 01/01/1988 31/12/2500 -1205 01/01/1988 31/12/2001 LIBEN Rape or colza seeds, whether or not broken 01/01/1988 31/12/2001 -1205 01/01/2002 31/12/2500 LIBEN Rape or colza seeds, whether or not broken 01/01/2002 31/12/2500 -120500 01/01/1988 31/12/2001 LIBEN Rape or colza seeds, whether or not broken 01/01/1988 31/12/2001 -12050010 01/01/1988 31/12/2001 LIBEN Rape or colza seeds, for sowing 01/01/1988 31/12/2001 -12050090 01/01/1988 31/12/2001 LIBEN Rape or colza seeds (excl. for sowing) 01/01/1988 31/12/2001 -120510 01/01/2002 31/12/2500 LIBEN Low erucic acid rape or colza seeds "yielding a fixed oil which has an erucic acid content of < 2% and yielding a solid component of glucosinolates of < 30 micromoles/g" 01/01/2002 31/12/2500 -12051010 01/01/2002 31/12/2500 LIBEN Low erucic acid rape or colza seeds "yielding a fixed oil which has an erucic acid content of < 2% and yielding a solid component of glucosinolates of < 30 micromoles/g", for sowing 01/01/2002 31/12/2500 -12051090 01/01/2002 31/12/2500 LIBEN Low erucic rape or colza seeds "yielding a fixed oil which has an erucic acid content of < 2% and yielding a solid component of glucosinolates of < 30 micromoles/g", whether or not broken (excl. for sowing) 01/01/2002 31/12/2500 -120590 01/01/2002 31/12/2500 LIBEN High erucic rape or colza seeds "yielding a fixed oil which has an erucic acid content of >= 2% and yielding a solid component of glucosinolates of >= 30 micromoles/g", whether or not broken 01/01/2002 31/12/2500 -12059000 01/01/2002 31/12/2500 LIBEN High erucic rape or colza seeds "yielding a fixed oil which has an erucic acid content of >= 2% and yielding a solid component of glucosinolates of >= 30 micromoles/g", whether or not broken 01/01/2002 31/12/2500 -1206 01/01/1988 31/12/2500 LIBEN Sunflower seeds, whether or not broken 01/01/1988 31/12/2500 -120600 01/01/1988 31/12/2500 LIBEN Sunflower seeds, whether or not broken 01/01/1988 31/12/2500 -12060010 01/01/1988 31/12/2500 LIBEN Sunflower seeds for sowing 01/01/1988 31/12/2500 -12060090 01/01/1988 31/12/1993 LIBEN Sunflower seeds (excl. for sowing) 01/01/1988 31/12/1993 -12060091 01/01/1994 31/12/2500 LIBEN Sunflower seeds, whether or not broken, shelled or in grey and white striped shell (excl. for sowing) 01/01/1994 31/12/2500 -12060099 01/01/1994 31/12/2500 LIBEN Sunflower seeds, whether or not broken (excl. for sowing, shelled and in grey and white striped shell) 01/01/1994 31/12/2500 -1207 01/01/1988 31/12/2500 LIBEN Other oil seeds and oleaginous fruits, whether or not broken (excl. edible nuts, olives, soya beans, groundnuts, copra, linseed, rape or colza seeds and sunflower seeds) 01/01/1988 31/12/2500 -120710 01/01/1988 31/12/2006 LIBEN Palm nuts and kernels, whether or not broken 01/01/1988 31/12/2006 -120710 01/01/2012 31/12/2500 LIBEN Palm nuts and kernels 01/01/2012 31/12/2500 -12071000 01/01/2012 31/12/2500 LIBEN Palm nuts and kernels 01/01/2012 31/12/2500 -12071010 01/01/1988 31/12/2006 LIBEN Palm nuts and kernels for sowing 01/01/1988 31/12/2006 -12071090 01/01/1988 31/12/2006 LIBEN Palm nuts and kernels, whether or not broken (excl. for sowing) 01/01/1988 31/12/2006 -120720 01/01/1988 31/12/2011 LIBEN Cotton seeds, whether or not broken 01/01/1988 31/12/2011 -12072010 01/01/1988 31/12/2011 LIBEN Cotton seeds for sowing 01/01/1988 31/12/2011 -12072090 01/01/1988 31/12/2011 LIBEN Cotton seeds, whether or not broken (excl. for sowing) 01/01/1988 31/12/2011 -120721 01/01/2012 31/12/2500 LIBEN Cotton seeds for sowing 01/01/2012 31/12/2500 -12072100 01/01/2012 31/12/2500 LIBEN Cotton seeds for sowing 01/01/2012 31/12/2500 -120729 01/01/2012 31/12/2500 LIBEN Cotton seeds (excl. for sowing) 01/01/2012 31/12/2500 -12072900 01/01/2012 31/12/2500 LIBEN Cotton seeds (excl. for sowing) 01/01/2012 31/12/2500 -120730 01/01/1988 31/12/2006 LIBEN Castor oil seeds, whether or not broken 01/01/1988 31/12/2006 -120730 01/01/2012 31/12/2500 LIBEN Castor oil seeds 01/01/2012 31/12/2500 -12073000 01/01/2012 31/12/2500 LIBEN Castor oil seeds 01/01/2012 31/12/2500 -12073010 01/01/1988 31/12/2006 LIBEN Castor oil seeds for sowing 01/01/1988 31/12/2006 -12073090 01/01/1988 31/12/2006 LIBEN Castor oil seeds, whether or not broken (excl. for sowing) 01/01/1988 31/12/2006 -120740 01/01/1988 31/12/2500 LIBEN Sesamum seeds, whether or not broken 01/01/1988 31/12/2500 -12074010 01/01/1988 31/12/2500 LIBEN Sesamum seeds for sowing 01/01/1988 31/12/2500 -12074090 01/01/1988 31/12/2500 LIBEN Sesamum seeds, whether or not broken (excl. for sowing) 01/01/1988 31/12/2500 -120750 01/01/1988 31/12/2500 LIBEN Mustard seeds, whether or not broken 01/01/1988 31/12/2500 -12075010 01/01/1988 31/12/2500 LIBEN Mustard seeds for sowing 01/01/1988 31/12/2500 -12075090 01/01/1988 31/12/2500 LIBEN Mustard seeds, whether or not broken (excl. for sowing) 01/01/1988 31/12/2500 -120760 01/01/1988 31/12/2006 LIBEN Safflower seeds, whether or not broken 01/01/1988 31/12/2006 -120760 01/01/2012 31/12/2500 LIBEN Safflower "Carthamus tinctorius" seeds 01/01/2012 31/12/2500 -12076000 01/01/2012 31/12/2500 LIBEN Safflower "Carthamus tinctorius" seeds 01/01/2012 31/12/2500 -12076010 01/01/1988 31/12/2006 LIBEN Safflower seeds for sowing 01/01/1988 31/12/2006 -12076090 01/01/1988 31/12/2006 LIBEN Safflower seeds, whether or not broken (excl. for sowing) 01/01/1988 31/12/2006 -120770 01/01/2012 31/12/2500 LIBEN Melon seeds 01/01/2012 31/12/2500 -12077000 01/01/2012 31/12/2500 LIBEN Melon seeds 01/01/2012 31/12/2500 -120791 01/01/1988 31/12/2500 LIBEN Poppy seeds, whether or not broken 01/01/1988 31/12/2500 -12079110 01/01/1988 31/12/2500 LIBEN Poppy seeds for sowing 01/01/1988 31/12/2500 -12079190 01/01/1988 31/12/2500 LIBEN Poppy seeds, whether or not broken (excl. for sowing) 01/01/1988 31/12/2500 -120792 01/01/1988 31/12/2001 LIBEN Shea nuts "karite nuts", whether or not broken 01/01/1988 31/12/2001 -12079210 01/01/1988 31/12/2001 LIBEN Shea nuts "karite nuts" for sowing 01/01/1988 31/12/2001 -12079290 01/01/1988 31/12/2001 LIBEN Shea nuts "karite nuts", whether or not broken (excl. for sowing) 01/01/1988 31/12/2001 -120799 01/01/1988 31/12/2500 LIBEN Oil seeds and oleaginous fruits, whether or not broken (excl. edible nuts, olives, soya beans, groundnuts, copra, linseed, rape or colza seeds, sunflower seeds, palm nuts and kernels, cotton, castor oil, sesamum, mustard, safflower, melon and poppy seeds) 01/01/1988 31/12/2500 -12079910 01/01/1988 31/12/2001 LIBEN Oilseeds and oleaginous fruits, for sowing (excl. edible nuts, olives, soya beans, groundnuts, copra, linseed, rape or colza seeds, sunflower seeds, palm nuts and kernels, cotton seeds, castoroil seeds, sesamum seeds, mustard seeds, safflower seeds, poppy seeds and shea "karite" nuts) 01/01/1988 31/12/2001 -12079915 01/01/2007 31/12/2011 LIBEN Oil seeds and oleaginous fruits, for sowing (excl. edible nuts, olives, soya beans, groundnuts, copra, linseed, rape or colza seeds, sunflower seeds, cotton seeds, sesamum seeds, mustard seeds and poppy seeds) 01/01/2007 31/12/2011 -12079920 01/01/2002 31/12/2006 LIBEN Oil seeds and oleaginous fruits, for sowing (excl. edible nuts, olives, soya beans, groundnuts, copra, linseed, rape or colza seeds, sunflower seeds, palm nuts and kernels, cotton seeds, castoroil seeds, sesamum seeds, mustard seeds, safflower seeds and poppy seeds) 01/01/2002 31/12/2006 -12079920 01/01/2012 31/12/2500 LIBEN Oil seeds and oleaginous fruits, for sowing (excl. edible nuts, olives, soya beans, groundnuts, copra, linseed, rape or colza seeds, sunflower seeds, palm nuts and kernels, cotton, castor oil, sesamum, mustard, safflower, melon and poppy seeds) 01/01/2012 31/12/2500 -12079991 01/01/1988 31/12/2500 LIBEN Hemp seeds, whether or not broken (excl. for sowing) 01/01/1988 31/12/2500 -12079996 01/01/2012 31/12/2500 LIBEN Oil seeds and oleaginous fruits, whether or not broken (excl. for sowing and edible nuts, olives, soya beans, groundnuts, copra, linseed, rape or colza seeds, sunflower seeds, palm nuts and kernels, cotton, castor oil, sesamum, mustard, safflower, melon, poppy and hemp seeds) 01/01/2012 31/12/2500 -12079997 01/01/2007 31/12/2011 LIBEN Oil seeds and oleaginous fruits, whether or not broken (excl. for sowing and edible nuts, olives, soya beans, groundnuts, copra, linseed, rape or colza seeds, sunflower seeds, cotton, sesamum, mustard, poppy and hemp seeds) 01/01/2007 31/12/2011 -12079998 01/01/2002 31/12/2006 LIBEN Oil seeds and oleaginous fruits, whether or not broken (excl. for sowing and edible nuts, olives, soya beans, groundnuts, copra, linseed, rape or colza seeds, sunflower seeds, palm nuts and kernels, cotton, castor oil, sesamum, mustard, safflower, poppy and hemp seeds) 01/01/2002 31/12/2006 -12079999 01/01/1988 31/12/2001 LIBEN Oil seeds and oleaginous fruits, whether or not broken (excl. for sowing and edible nuts, olives, soya beans, ground-nuts, copra, linseed, rape or colza seeds, sunflower seeds, palm nuts and kernels, cotton, castor oil, sesamum, mustard, safflower and poppy seeds, shea nuts and hemp seeds) 01/01/1988 31/12/2001 -1208 01/01/1988 31/12/2500 LIBEN Flours and meals of oil seeds or oleaginous fruits (excl. mustard) 01/01/1988 31/12/2500 -120810 01/01/1988 31/12/2500 LIBEN Soya bean flour and meal 01/01/1988 31/12/2500 -12081000 01/01/1988 31/12/2500 LIBEN Soya bean flour and meal 01/01/1988 31/12/2500 -120890 01/01/1988 31/12/2500 LIBEN Flours and meal of oil seeds or oleaginous fruit (excl. soya and mustard) 01/01/1988 31/12/2500 -12089000 01/01/1988 31/12/2500 LIBEN Flours and meal of oil seeds or oleaginous fruit (excl. soya and mustard) 01/01/1988 31/12/2500 -1209 01/01/1988 31/12/2500 LIBEN Seeds, fruits and spores, for sowing (excl. leguminous vegetables and sweetcorn, coffee, tea, maté and spices, cereals, oil seeds and oleaginous fruits, and seeds and fruit used primarily in perfumery, medicaments or for insecticidal, fungicidal or similar purposes) 01/01/1988 31/12/2500 -120910 01/01/2002 31/12/2500 LIBEN Sugar beet seed, for sowing 01/01/2002 31/12/2500 -12091000 01/01/2002 31/12/2500 LIBEN Sugar beet seed, for sowing 01/01/2002 31/12/2500 -120911 01/01/1988 31/12/2001 LIBEN Sugar beet seed, for sowing 01/01/1988 31/12/2001 -12091100 01/01/1988 31/12/2001 LIBEN Sugar beet seed, for sowing 01/01/1988 31/12/2001 -120919 01/01/1988 31/12/2001 LIBEN Beet seed for sowing (excl. sugar beet) 01/01/1988 31/12/2001 -12091900 01/01/1988 31/12/2001 LIBEN Beet seed for sowing (excl. sugar beet) 01/01/1988 31/12/2001 -120921 01/01/1988 31/12/2500 LIBEN Alfalfa seed for sowing 01/01/1988 31/12/2500 -12092100 01/01/1988 31/12/2500 LIBEN Alfalfa seed for sowing 01/01/1988 31/12/2500 -120922 01/01/1988 31/12/2500 LIBEN Clover "Trifolium spp" seed, for sowing 01/01/1988 31/12/2500 -12092200 01/01/1993 31/12/1993 LIBEN Clover 'trifolium spp' seed, for sowing 01/01/1993 31/12/1993 -12092210 01/01/1988 31/12/1992 LIBEN Red clover 'trifolium pratense l.' seed for sowing 01/01/1988 31/12/1992 -12092210 01/01/1994 31/12/2500 LIBEN Red clover "Trifolium pratense L." seed for sowing 01/01/1994 31/12/2500 -12092230 01/01/1988 31/12/1992 LIBEN White clover 'trifolium repens l.' seed for sowing 01/01/1988 31/12/1992 -12092280 01/01/1994 31/12/2500 LIBEN Clover "Trifolium spp." seed for sowing (excl. red clover [Trifolium pratense L.]) 01/01/1994 31/12/2500 -12092290 01/01/1988 31/12/1992 LIBEN Clover 'trifolium spp.' seed for sowing (excl. red and white) 01/01/1988 31/12/1992 -120923 01/01/1988 31/12/2500 LIBEN Fescue seed for sowing 01/01/1988 31/12/2500 -12092310 01/01/1988 31/12/1989 LIBEN Meadow fescue seed and red fescue seed for sowing 01/01/1988 31/12/1989 -12092311 01/01/1990 31/12/2500 LIBEN Meadow fescue seed for sowing 01/01/1990 31/12/2500 -12092315 01/01/1990 31/12/2500 LIBEN Red fescue seed "Festuca rubra L." for sowing 01/01/1990 31/12/2500 -12092330 01/01/1988 31/12/1992 LIBEN Sheeps fescue seed for sowing 01/01/1988 31/12/1992 -12092380 01/01/1993 31/12/2500 LIBEN Fescue seed, for sowing (excl. meadow fescue "Festuca pratensis Huds" seed and red fescue "Festuca rubra L." seed) 01/01/1993 31/12/2500 -12092390 01/01/1988 31/12/1992 LIBEN Fescue seed for sowing (excl. meadow, red and sheeps) 01/01/1988 31/12/1992 -120924 01/01/1988 31/12/2500 LIBEN Kentucky blue grass "Poa pratensis L." seed for sowing 01/01/1988 31/12/2500 -12092400 01/01/1988 31/12/2500 LIBEN Kentucky blue grass "Poa pratensis L." seed for sowing 01/01/1988 31/12/2500 -120925 01/01/1988 31/12/2500 LIBEN Ryegrass "Lolium multiflorum lam., Lolium perenne L." seed, for sowing 01/01/1988 31/12/2500 -12092500 01/01/1993 31/12/1993 LIBEN Rye grass 'lolium multiflorum lam., lolium perenne l.' seed, for sowing 01/01/1993 31/12/1993 -12092510 01/01/1988 31/12/1992 LIBEN Italian ryegrass, incl. westerwolds, seed for sowing 01/01/1988 31/12/1992 -12092510 01/01/1994 31/12/2500 LIBEN Italian ryegrass, incl. westerwolds "Lolium multiflorum L.", seed for sowing 01/01/1994 31/12/2500 -12092590 01/01/1988 31/12/1992 LIBEN Perennial rye grass seed for sowing 01/01/1988 31/12/1992 -12092590 01/01/1994 31/12/2500 LIBEN Perennial ryegrass "Lolium perenne L.", seed for sowing 01/01/1994 31/12/2500 -120926 01/01/1988 31/12/2006 LIBEN Timothy grass seed for sowing 01/01/1988 31/12/2006 -12092600 01/01/1988 31/12/2006 LIBEN Timothy grass seed for sowing 01/01/1988 31/12/2006 -120929 01/01/1988 31/12/2500 LIBEN Seeds of forage plants for sowing (excl. of cereals and of sugar beet, alfalfa, clover "Trifolium spp.", fescue, Kentucky blue grass "Poa pratensis L." and ryegrass "Lolium multiflorum lam. and Lolium perenne L.") 01/01/1988 31/12/2500 -12092910 01/01/1993 31/12/2011 LIBEN Vetch seed, seeds of the genus Poa palustris L. and Poa trivialis L., seeds of cocksfoot grass "Dactylis glomerata L.", and seeds of bent grass "Agrostis", for sowing 01/01/1993 31/12/2011 -12092911 01/01/1988 31/12/1992 LIBEN Vetch seed of species 'vicia sativa l.' for sowing 01/01/1988 31/12/1992 -12092919 01/01/1988 31/12/1992 LIBEN Vetch seed for sowing (excl. vicia sativa) 01/01/1988 31/12/1992 -12092920 01/01/1988 31/12/1992 LIBEN Seeds of genus 'poa palustris' and 'trivialis' for sowing 01/01/1988 31/12/1992 -12092930 01/01/1988 31/12/1992 LIBEN Cocksfoot grass seed for sowing 01/01/1988 31/12/1992 -12092935 01/01/2007 31/12/2011 LIBEN Timothy grass seed for sowing 01/01/2007 31/12/2011 -12092940 01/01/1988 31/12/1992 LIBEN Bent grass seed for sowing 01/01/1988 31/12/1992 -12092945 01/01/2012 31/12/2500 LIBEN Timothy grass seed, vetch seed, seeds of the genus Poa palustris L. and Poa trivialis L., seeds of cocksfoot grass "Dactylis glomerata L.", and seeds of bent grass "Agrostis", for sowing 01/01/2012 31/12/2500 -12092950 01/01/1988 31/12/2500 LIBEN Lupine seed for sowing 01/01/1988 31/12/2500 -12092960 01/01/1988 31/12/1992 LIBEN Hybrid ryegrass seed for sowing 01/01/1988 31/12/1992 -12092960 01/01/2002 31/12/2002 LIBEN Samen von Rüben, zur Aussaat (ausg. Zuckerrübensamen) 01/01/2002 31/12/2002 -12092960 01/01/2003 31/12/2500 LIBEN Fodder beet seed "Beta vulgaris var. alba", for sowing 01/01/2003 31/12/2500 -12092970 01/01/1988 31/12/1989 LIBEN Wood meadowgrass and tall oatgrass seed for sowing 01/01/1988 31/12/1989 -12092971 01/01/1990 31/12/1992 LIBEN Wood meadowgrass seed for sowing 01/01/1990 31/12/1992 -12092975 01/01/1990 31/12/1992 LIBEN Tall oatgrass seed for sowing 01/01/1990 31/12/1992 -12092980 01/01/1993 31/12/2500 LIBEN Seeds of forage plants, for sowing (excl. cereals and fodder beet seed "Beta vulgaris var. alba", sugar beet seed, lucerne seed, clover "Trifolium spp." seed, fesque seed, Kentucky blue grass "Poa pratensis L." seed, ryegrass "Lolium multiflorum lam., Lolium perenne L." seed, Timothy grass seed, vetch seed, seeds of the genus Poa palustris L and Poa trivialis L., cocksfoot grass "Dactylis glomerata L." seed, bent grass "Agrostis" seed and lupine seed) 01/01/1993 31/12/2500 -12092990 01/01/1988 31/12/1992 LIBEN Seeds of forage plants for sowing (excl. cereals and sugar beet, alfalfa, clover 'trifolium spp.', fescue, kentucky blue grass, rye grass, timothy grass, vetch, cocksfoot grass, bent grass, lupine, hybrid ryegrass and tall oatgrass) 01/01/1988 31/12/1992 -120930 01/01/1988 31/12/2500 LIBEN Seeds of herbaceous plants cultivated mainly for flowers, for sowing 01/01/1988 31/12/2500 -12093000 01/01/1988 31/12/2500 LIBEN Seeds of herbaceous plants cultivated mainly for flowers, for sowing 01/01/1988 31/12/2500 -120991 01/01/1988 31/12/2500 LIBEN Vegetable seeds, for sowing 01/01/1988 31/12/2500 -12099110 01/01/1988 31/12/2011 LIBEN Kohlrabi seed "Brassica oleracea, var. caulorapa and gongylodes L." for sowing 01/01/1988 31/12/2011 -12099130 01/01/2003 31/12/2500 LIBEN Salad beet seed or beetroot seed "Beta vulgaris var. conditiva", for sowing 01/01/2003 31/12/2500 -12099180 01/01/2012 31/12/2500 LIBEN Vegetable seeds for sowing (excl. salad beet or beetroot "Beta vulgaris var. conditiva") 01/01/2012 31/12/2500 -12099190 01/01/1988 31/12/2011 LIBEN Vegetable seeds for sowing (excl. kohlrabi "Brassica oleracea, var. caulorapa and gongylodes L." and salad beet or beetroot "Beta vulgaris var. conditiva") 01/01/1988 31/12/2011 -120999 01/01/1988 31/12/2500 LIBEN Seeds, fruits and spores, for sowing (excl. leguminous vegetables and sweetcorn, coffee, tea, maté and spices, cereals, oil seeds and oleaginous fruits, beets, forage plants, vegetable seeds, and seeds of herbaceous plants cultivated mainly for flowers or used primarily in perfumery, medicaments or for insecticidal, fungicidal or similar purposes) 01/01/1988 31/12/2500 -12099910 01/01/1988 31/12/2500 LIBEN Forest-tree seed for sowing 01/01/1988 31/12/2500 -12099991 01/01/1988 31/12/2500 LIBEN Seeds of non-herbaceous plants cultivated mainly for flowers, for sowing 01/01/1988 31/12/2500 -12099999 01/01/1988 31/12/2500 LIBEN Seeds, fruit and spores, for sowing (excl. leguminous vegetables and sweetcorn, coffee, tea, maté and spices, cereals, oil seeds and oleaginous fruits, beets, forage plants, vegetable seeds, forest-tree seeds and seeds of plants cultivated mainly for flowers or used primarily in perfumery, medicaments or for insecticidal, fungicidal or similar purposes) 01/01/1988 31/12/2500 -1209S2 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1209 and SITC section 2 01/01/1997 31/12/2500 -1209S292 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1209 and SITC group 292 01/01/1997 31/12/2500 -1210 01/01/1988 31/12/2500 LIBEN Hop cones, fresh or dried, whether or not ground, powdered or in the form of pellets; lupulin 01/01/1988 31/12/2500 -121010 01/01/1988 31/12/2500 LIBEN Hop cones, fresh or dried (excl. ground, powdered or in the form of pellets) 01/01/1988 31/12/2500 -12101000 01/01/1988 31/12/2500 LIBEN Hop cones, fresh or dried (excl. ground, powdered or in the form of pellets) 01/01/1988 31/12/2500 -121020 01/01/1988 31/12/2500 LIBEN Hop cones, ground, powdered or in the form of pellets; lupulin 01/01/1988 31/12/2500 -12102000 01/01/1988 31/12/1991 LIBEN Hop cones, ground, powdered or pellets, fresh or dried; lupulin 01/01/1988 31/12/1991 -12102010 01/01/1992 31/12/2500 LIBEN Hop cones, ground, powdered or in the form of pellets, with higher lupulin content; lupulin 01/01/1992 31/12/2500 -12102090 01/01/1992 31/12/2500 LIBEN Hop cones, ground powdered or in the form of pellets (excl. with higher lupulin content) 01/01/1992 31/12/2500 -1211 01/01/1988 31/12/2500 LIBEN Plants and parts of plants, incl. seeds and fruits, of a kind used primarily in perfumery, in pharmacy or for insecticidal, fungicidal or similar purposes, fresh, chilled, frozen or dried, whether or not cut, crushed or powdered 01/01/1988 31/12/2500 -121110 01/01/1988 31/12/2006 LIBEN Liquorice roots, fresh or dried, whether or not cut, crushed or powdered 01/01/1988 31/12/2006 -12111000 01/01/1988 31/12/2006 LIBEN Liquorice roots, fresh or dried, whether or not cut, crushed or powdered 01/01/1988 31/12/2006 -121120 01/01/1988 31/12/2500 LIBEN Ginseng roots, fresh, chilled, frozen or dried, whether or not cut, crushed or powdered 01/01/1988 31/12/2500 -12112000 01/01/1988 31/12/2016 LIBEN Ginseng roots, fresh or dried, whether or not cut, crushed or powdered 01/01/1988 31/12/2016 -12112000 01/01/2017 31/12/2500 LIBEN Ginseng roots, fresh, chilled, frozen or dried, whether or not cut, crushed or powdered 01/01/2017 31/12/2500 -121130 01/01/2002 31/12/2500 LIBEN Coca leaf, fresh, chilled, frozen or dried, whether or not cut, crushed or powdered 01/01/2002 31/12/2500 -12113000 01/01/2002 31/12/2016 LIBEN Coca leaf, fresh or dried, whether or not cut, crushed or powdered 01/01/2002 31/12/2016 -12113000 01/01/2017 31/12/2500 LIBEN Coca leaf, fresh, chilled, frozen or dried, whether or not cut, crushed or powdered 01/01/2017 31/12/2500 -121140 01/01/2002 31/12/2500 LIBEN Poppy straw, fresh, chilled, frozen or dried, whether or not cut, crushed or powdered 01/01/2002 31/12/2500 -12114000 01/01/2002 31/12/2016 LIBEN Poppy straw, fresh or dried, whether or not cut, crushed or powdered 01/01/2002 31/12/2016 -12114000 01/01/2017 31/12/2500 LIBEN Poppy straw, fresh, chilled, frozen or dried, whether or not cut, crushed or powdered 01/01/2017 31/12/2500 -121150 01/01/2017 31/12/2500 LIBEN Ephedra plants and parts thereof, incl. seeds and fruits, fresh, chilled, frozen or dried, whether or not cut, crushed or powdered 01/01/2017 31/12/2500 -12115000 01/01/2017 31/12/2500 LIBEN Ephedra plants and parts thereof, incl. seeds and fruits, fresh, chilled, frozen or dried, whether or not cut, crushed or powdered 01/01/2017 31/12/2500 -121190 01/01/1988 31/12/2500 LIBEN Plants, parts of plants, incl. seeds and fruits, used primarily in perfumery, in pharmacy or for insecticidal, fungicidal or similar purposes, fresh, chilled, frozen or dried, whether or not cut, crushed or powdered (excl. ginseng roots, coca leaf, poppy straw and ephedra) 01/01/1988 31/12/2500 -12119010 01/01/1988 31/12/2000 LIBEN Pyrethrum, fresh or dried, whether or not cut, crushed or powdered 01/01/1988 31/12/2000 -12119020 01/01/2013 31/12/2016 LIBEN Plants and parts of plants of the genus Ephedra, incl. seeds and fruits, fresh or dried, whether or not cut, crushed or powdered 01/01/2013 31/12/2016 -12119030 01/01/1988 31/12/2016 LIBEN Tonquin beans, fresh or dried, whether or not cut, crushed or powdered 01/01/1988 31/12/2016 -12119030 01/01/2017 31/12/2500 LIBEN Tonquin beans, fresh, chilled, frozen or dried, whether or not cut, crushed or powdered 01/01/2017 31/12/2500 -12119040 01/01/1993 31/12/1996 LIBEN Mint "stems and leaves", fresh or dried, whether or not in pieces, crushed or powdered 01/01/1993 31/12/1996 -12119050 01/01/1988 31/12/1992 LIBEN Cinchona bark, fresh or dried, whether or not cut, crushed or powdered 01/01/1988 31/12/1992 -12119060 01/01/1993 31/12/1996 LIBEN Linden "flowers and leaves", fresh or dried, whether or not in pieces, crushed or powdered 01/01/1993 31/12/1996 -12119065 01/01/1993 31/12/1996 LIBEN Verbena "leaves and tops", fresh or dried, whether or not in pieces, crushed or powdered 01/01/1993 31/12/1996 -12119070 01/01/1993 31/12/2003 LIBEN Wild marjoran "Origanum vulgare", "branches, stems and leaves", whether or not in pieces, crushed or powdered 01/01/1993 31/12/2003 -12119075 01/01/1993 31/12/2003 LIBEN Sage "Salvia officinalis", "leaves and flowers", fresh or dried, whether or not in pieces, crushed or powdered 01/01/1993 31/12/2003 -12119080 01/01/1993 31/12/1996 LIBEN Plants and parts of plants, incl. seeds and fruits, used primarily in perfumery, in pharmacy or for insecticidal, fungicidal or similar purposes, fresh or dried, whether or not cut, crushed or powdered (excl. liquorice and ginseng roots, pyrethrum, tonquin beans, mint -stems and leaves-, linden -flowers and leaves-, verbena -leaves and tops-, wild marjoram -branches, stems and leaves-, and sage -leaves and flowers-) 01/01/1993 31/12/1996 -12119085 01/01/2007 31/12/2012 LIBEN Plants and parts of plants, incl. seeds and fruits, used primarily in perfumery, in pharmacy or for insecticidal, fungicidal or similar purposes, fresh or dried, whether or not cut, crushed or powdered (excl. ginseng roots, coca leaf, poppy straw and tonquin beans) 01/01/2007 31/12/2012 -12119086 01/01/2013 31/12/2016 LIBEN Plants and parts of plants, incl. seeds and fruits, used primarily in perfumery, in pharmacy or for insecticidal, fungicidal or similar purposes, fresh or dried, whether or not cut, crushed or powdered (excl. ginseng roots, coca leaf, poppy straw, genus Ephedra and tonquin beans) 01/01/2013 31/12/2016 -12119086 01/01/2017 31/12/2500 LIBEN Plants and parts of plants, incl. seeds and fruits, used primarily in perfumery, in pharmacy or for insecticidal, fungicidal or similar purposes, fresh, chilled, frozen or dried, whether or not cut, crushed or powdered (excl. ginseng roots, coca leaf, poppy straw, ephedra and tonquin beans) 01/01/2017 31/12/2500 -12119090 01/01/1988 31/12/1992 LIBEN Plants, parts of plants, seeds and fruit used in perfumery, medicaments or for insecticidal, fungicidal or similar purposes, fresh or dried, whether or not cut, crushed or powdered (excl. liquorice and ginseng roots, pyrethrum, tonquin beans and cinchona bark) 01/01/1988 31/12/1992 -12119095 01/01/1997 31/12/2000 LIBEN Plants and parts of plants, incl. seeds and fruits, used primarily in perfumery, in pharmacy or for insecticidal, fungicidal or similar purposes, fresh or dried, whether or not cut, crushed or powdered (excl. liquorice and ginseng roots, pyrethrum, tonquin beans, wild marjoran "Origanum vulgare", "branches, stems and leaves", and sage) 01/01/1997 31/12/2000 -12119097 01/01/2004 31/12/2006 LIBEN Plants and parts of plants, incl. seeds and fruits, used primarily in perfumery, in pharmacy or for insecticidal, fungicidal or similar purposes, fresh or dried, whether or not cut, crushed or powdered (excl. liquorice and ginseng roots, coca leaf, poppy straw and tonquin beans) 01/01/2004 31/12/2006 -12119098 01/01/2002 31/12/2003 LIBEN Plants and parts of plants, incl. seeds and fruits, used primarily in perfumery, in pharmacy or for insecticidal, fungicidal or similar purposes, fresh or dried, whether or not cut, crushed or powdered (excl. liquorice and ginseng roots, coca leaf, poppy straw, tonquin beans, wild marjoran "Origanum vulgare" [branches, stems and leaves] and sage [leaves and flowers]) 01/01/2002 31/12/2003 -12119099 01/01/2001 31/12/2001 LIBEN Plants and parts of plants, incl. seeds and fruits, used primarily in perfumery, in pharmacy or for insecticidal, fungicidal or similar purposes, fresh or dried, whether or not cut, crushed or powdered (excl. liquorice and ginseng roots, tonquin beans, wild marjoran "Origanum vulgare" [branches, stems and leaves], and sage [leaves and flowers]) 01/01/2001 31/12/2001 -1212 01/01/1988 31/12/2500 LIBEN Locust beans, seaweeds and other algae, sugar beet and sugar cane, fresh, chilled, frozen or dried, whether or not ground; fruit stones and kernels and other vegetable products, incl. unroasted chicory roots of the variety Cichorium intybus sativum, of a kind used primarily for human consumption, n.e.s. 01/01/1988 31/12/2500 -121210 01/01/1988 31/12/2006 LIBEN Locust beans, incl. locust bean seed, fresh, chilled, frozen or dried, whether or not ground 01/01/1988 31/12/2006 -12121010 01/01/1988 31/12/2006 LIBEN Locust beans, fresh, chilled, frozen or dried, whether or not ground 01/01/1988 31/12/2006 -12121091 01/01/1988 31/12/2006 LIBEN Locust bean seed, fresh or dried (excl. decorticated, crushed or ground) 01/01/1988 31/12/2006 -12121099 01/01/1988 31/12/2006 LIBEN Locust bean seed, decorticated, crushed or ground, fresh or dried 01/01/1988 31/12/2006 -121220 01/01/1988 31/12/2011 LIBEN Seaweeds and other algae, fresh, chilled, frozen or dried, whether or not ground 01/01/1988 31/12/2011 -12122000 01/01/1988 31/12/2011 LIBEN Seaweeds and other algae, fresh, chilled, frozen or dried, whether or not ground 01/01/1988 31/12/2011 -121221 01/01/2012 31/12/2500 LIBEN Seaweeds and other algae, fresh, chilled, frozen or dried, whether or not ground, fit for human consumption 01/01/2012 31/12/2500 -12122100 01/01/2012 31/12/2500 LIBEN Seaweeds and other algae, fresh, chilled, frozen or dried, whether or not ground, fit for human consumption 01/01/2012 31/12/2500 -121229 01/01/2012 31/12/2500 LIBEN Seaweeds and other algae, fresh, chilled, frozen or dried, whether or not ground, unfit for human consumption 01/01/2012 31/12/2500 -12122900 01/01/2012 31/12/2500 LIBEN Seaweeds and other algae, fresh, chilled, frozen or dried, whether or not ground, unfit for human consumption 01/01/2012 31/12/2500 -121230 01/01/1988 31/12/2006 LIBEN Apricot, peach "incl. nectarine" or plum stones and kernels 01/01/1988 31/12/2006 -12123000 01/01/1988 31/12/2006 LIBEN Apricot, peach "incl. nectarine" or plum stones and kernels 01/01/1988 31/12/2006 -121291 01/01/1988 31/12/2500 LIBEN Sugar beet, fresh, chilled, frozen or dried, whether or not ground 01/01/1988 31/12/2500 -12129110 01/01/1988 31/12/1995 LIBEN Fresh sugar beet 01/01/1988 31/12/1995 -12129120 01/01/1996 31/12/2500 LIBEN Sugar beet, dried, whether or not ground 01/01/1996 31/12/2500 -12129180 01/01/1996 31/12/2500 LIBEN Sugar beet, fresh, chilled or frozen 01/01/1996 31/12/2500 -12129190 01/01/1988 31/12/1995 LIBEN Dried or powdered sugar beet 01/01/1988 31/12/1995 -121292 01/01/1988 31/12/2001 LIBEN Sugar cane, fresh, chilled, frozen or dried, whether or not ground 01/01/1988 31/12/2001 -121292 01/01/2012 31/12/2500 LIBEN Locust beans "carob", fresh, chilled, frozen or dried, whether or not ground 01/01/2012 31/12/2500 -12129200 01/01/1988 31/12/2001 LIBEN Sugar cane, fresh, chilled, frozen or dried, whether or not ground 01/01/1988 31/12/2001 -12129200 01/01/2012 31/12/2500 LIBEN Locust beans "carob", fresh, chilled, frozen or dried, whether or not ground 01/01/2012 31/12/2500 -121293 01/01/2012 31/12/2500 LIBEN Sugar cane, fresh, chilled, frozen or dried, whether or not ground 01/01/2012 31/12/2500 -12129300 01/01/2012 31/12/2500 LIBEN Sugar cane, fresh, chilled, frozen or dried, whether or not ground 01/01/2012 31/12/2500 -121294 01/01/2012 31/12/2500 LIBEN Chicory roots, fresh, chilled, frozen or dried, whether or not ground 01/01/2012 31/12/2500 -12129400 01/01/2012 31/12/2500 LIBEN Chicory roots, fresh, chilled, frozen or dried, whether or not ground 01/01/2012 31/12/2500 -121299 01/01/1988 31/12/2001 LIBEN Fruit stones and kernels and other vegetable products, incl. unroasted chicory roots of the variety cichorium intybus sativum, of a kind used primarily for human consumption, n.e.s. 01/01/1988 31/12/2001 -121299 01/01/2002 31/12/2500 LIBEN Fruit stones and kernels and other vegetable products, incl. unroasted chicory roots of the variety cichorium intybus sativum, of a kind used primarily for human consumption, n.e.s. 01/01/2002 31/12/2500 -12129900 01/01/2001 31/12/2001 LIBEN Fruit stones and kernels and other vegetable products, incl. unroasted chicory roots of the variety cichorium intybus sativum, of a kind used primarily for human consumption, n.e.s. 01/01/2001 31/12/2001 -12129910 01/01/1988 31/12/2000 LIBEN Unroasted chicory roots of the variety cichorium intybus sativum 01/01/1988 31/12/2000 -12129920 01/01/2002 31/12/2011 LIBEN Sugar cane, fresh, chilled, frozen or dried, whether or not ground 01/01/2002 31/12/2011 -12129930 01/01/2007 31/12/2011 LIBEN Locust beans, fresh, chilled, frozen or dried, whether or not ground 01/01/2007 31/12/2011 -12129941 01/01/2007 31/12/2500 LIBEN Locust bean seed, fresh or dried (excl. decorticated, crushed or ground) 01/01/2007 31/12/2500 -12129949 01/01/2007 31/12/2500 LIBEN Locust bean seed, decorticated, crushed or ground, fresh or dried 01/01/2007 31/12/2500 -12129970 01/01/2007 31/12/2011 LIBEN Fruit stones and kernels and other vegetable products, incl. unroasted chicory roots of the variety "Cichorium intybus sativum", of a kind used primarily for human consumption, n.e.s. 01/01/2007 31/12/2011 -12129980 01/01/2002 31/12/2006 LIBEN Fruit stones and kernels and other vegetable products, incl. unroasted chicory roots of the variety "Cichorium intybus sativum", of a kind used primarily for human consumption, n.e.s. 01/01/2002 31/12/2006 -12129990 01/01/1988 31/12/2000 LIBEN Fruit stones and kernels and other vegetable products of a kind used primarily for human consumption, n.e.s. 01/01/1988 31/12/2000 -12129995 01/01/2012 31/12/2500 LIBEN Fruit stones and kernels and other vegetable products, of a kind used primarily for human consumption, n.e.s. 01/01/2012 31/12/2500 -1212S0 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1212 and SITC section 0 01/01/1997 31/12/2500 -1212S054 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1212 and SITC group 054 01/01/1997 31/12/2500 -1213 01/01/1988 31/12/2500 LIBEN Cereal straw and husks, unprepared, whether or not chopped, ground, pressed or in the form of pellets 01/01/1988 31/12/2500 -121300 01/01/1988 31/12/2500 LIBEN Cereal straw and husks, unprepared, whether or not chopped, ground, pressed or in the form of pellets 01/01/1988 31/12/2500 -12130000 01/01/1988 31/12/2500 LIBEN Cereal straw and husks, unprepared, whether or not chopped, ground, pressed or in the form of pellets 01/01/1988 31/12/2500 -1214 01/01/1988 31/12/2500 LIBEN Swedes, mangolds, fodder roots, hay, alfalfa, clover, sainfoin, forage kale, lupines, vetches and similar forage products, whether or not in the form of pellets 01/01/1988 31/12/2500 -121410 01/01/1988 31/12/2500 LIBEN Alfalfa meal and pellets 01/01/1988 31/12/2500 -12141000 01/01/1988 31/12/2500 LIBEN Alfalfa meal and pellets 01/01/1988 31/12/2500 -121490 01/01/1988 31/12/2500 LIBEN Swedes, mangolds, fodder roots, hay, lucerne "alfalfa", clover, sainfoin, forage kale, lupines, vetches and similar forage products, whether or not in the form of pellets (excl. lucerne "alfalfa" meal and pellets) 01/01/1988 31/12/2500 -12149010 01/01/1988 31/12/2500 LIBEN Swedes, mangolds, fodder roots 01/01/1988 31/12/2500 -12149090 01/01/1988 31/12/1992 LIBEN Hay, alfalfa, clover, sainfoin, forage kale, lupines, vetches and similar forage products, whether or not in the form of pellets (excl. swedes, mangolds, fodder roots, alfalfa meal and pellets) 01/01/1988 31/12/1992 -12149090 01/01/2004 31/12/2500 LIBEN Hay, lucerne, clover, sainfoin, forage kale, lupines, vetches and similar forage products (excl. swedes, mangolds and other fodder roots and lucerne meal) 01/01/2004 31/12/2500 -12149091 01/01/1993 31/12/2003 LIBEN Pellets of hay, clover, sainfoin, forage kale, lupines, vetches and similar forage products (excl. lucerne "alfalfa", mangolds, swedes and other fodder roots) 01/01/1993 31/12/2003 -12149099 01/01/1993 31/12/2003 LIBEN Hay, lucerne, clover, sainfoin, forage kale, lupines, vetches and similar forage products (excl. those in pellet form, swedes, mangolds and other fodder roots and lucerne meal) 01/01/1993 31/12/2003 -12CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 12 01/01/2002 31/12/2500 -12CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 12 01/01/2002 31/12/2500 -12CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 12 01/01/2002 31/12/2500 -12MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -12MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -12MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -12PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 12 carried by post 01/01/1988 31/12/2500 -12PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 12 carried by post 01/01/1988 31/12/2500 -12PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 12 carried by post 01/01/1988 31/12/2500 -12SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 12 01/01/1988 31/12/2500 -12SSS0 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 12 and SITC section 0 01/01/1997 31/12/2500 -12SSS054 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 12 and SITC group 054 01/01/1997 31/12/2500 -12SSS081 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 12 and SITC group 081 01/01/1997 31/12/2500 -12SSS2 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 12 and SITC section 2 01/01/1990 31/12/2500 -12SSS222 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 12 and SITC group 222 01/01/1997 31/12/2500 -12SSS223 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 12 and SITC group 223 01/01/1990 31/12/2500 -12SSS292 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 12 and SITC group 292 01/01/1992 31/12/2500 -12SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 12 and SITC section 9 01/01/1988 31/12/1996 -12SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 12 and SITC section 9 01/01/1997 31/12/2500 -12SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 12 and SITC group 999 01/01/1988 31/12/1996 -12SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 12 and SITC group 999 01/01/1997 31/12/2500 -13 01/01/1988 31/12/2500 LIBEN LAC; GUMS, RESINS AND OTHER VEGETABLE SAPS AND EXTRACTS 01/01/1988 31/12/2500 -1301 01/01/1988 31/12/2500 LIBEN Lac; natural gums, resins, gum-resins, balsams and other natural oleoresins 01/01/1988 31/12/2500 -130110 01/01/1988 31/12/2006 LIBEN Natural lac 01/01/1988 31/12/2006 -13011000 01/01/1988 31/12/2006 LIBEN Natural lac 01/01/1988 31/12/2006 -130120 01/01/1988 31/12/2500 LIBEN Natural gum Arabic 01/01/1988 31/12/2500 -13012000 01/01/1988 31/12/2500 LIBEN Natural gum Arabic 01/01/1988 31/12/2500 -130190 01/01/1988 31/12/2500 LIBEN Lac; natural gums, resins, gum-resins, balsams and other natural oleoresins (excl. gum Arabic) 01/01/1988 31/12/2500 -13019000 01/01/1988 31/12/1992 LIBEN Natural gums, resins, gum-resins and balsams (excl. gum arabic) 01/01/1988 31/12/1992 -13019000 01/01/2005 31/12/2006 LIBEN Natural gums, resins, gum-resins, balsams and other natural oleoresins (excl. gum Arabic) 01/01/2005 31/12/2006 -13019000 01/01/2007 31/12/2500 LIBEN Lac; natural gums, resins, gum-resins, balsams and other natural oleoresins (excl. gum Arabic) 01/01/2007 31/12/2500 -13019010 01/01/1993 31/12/2004 LIBEN Chios mastic "mastic of the tree of the species Pistacia lentiscus" 01/01/1993 31/12/2004 -13019090 01/01/1993 31/12/2004 LIBEN Natural gums, resins, gum-resins, balsams and other natural oleoresins (excl. gum Arabic and chios mastic "mastic of the tree of the species Pistacia lentiscus") 01/01/1993 31/12/2004 -1302 01/01/1988 31/12/2500 LIBEN Vegetable saps and extracts; pectic substances, pectinates and pectates; agar-agar and other mucilages and thickeners derived from vegetable products, whether or not modified, 01/01/1988 31/12/2500 -130211 01/01/1988 31/12/2500 LIBEN Opium 01/01/1988 31/12/2500 -13021100 01/01/1988 31/12/2001 LIBEN Opium 01/01/1988 31/12/2001 -13021100 01/01/2002 31/12/2500 LIBEN Opium 01/01/2002 31/12/2500 -130212 01/01/1988 31/12/2500 LIBEN Extracts of liquorice (excl. that with a sucrose content by weight of > 10% or in the form of confectionery) 01/01/1988 31/12/2500 -13021200 01/01/1988 31/12/1995 LIBEN Extracts of liquorice (excl. that with a sucrose content by weight of > 10% or in the form of confectionery) 01/01/1988 31/12/1995 -13021200 01/01/1996 31/12/2500 LIBEN Extracts of liquorice (excl. that with a sucrose content by weight of > 10% or in the form of confectionery) 01/01/1996 31/12/2500 -130213 01/01/1988 31/12/2500 LIBEN Extracts of hops 01/01/1988 31/12/2500 -13021300 01/01/1988 31/12/1995 LIBEN Extracts of hops 01/01/1988 31/12/1995 -13021300 01/01/1996 31/12/2500 LIBEN Extracts of hops 01/01/1996 31/12/2500 -130214 01/01/1988 31/12/2006 LIBEN Extracts of pyrethrum and of roots containing rotenone 01/01/1988 31/12/2006 -130214 01/01/2017 31/12/2500 LIBEN Saps and extracts of ephedra 01/01/2017 31/12/2500 -13021400 01/01/1988 31/12/1995 LIBEN Extracts of pyrethrum and of roots containing rotenone 01/01/1988 31/12/1995 -13021400 01/01/1996 31/12/2006 LIBEN Extracts of pyrethrum and of roots containing rotenone 01/01/1996 31/12/2006 -13021400 01/01/2017 31/12/2500 LIBEN Saps and extracts of ephedra 01/01/2017 31/12/2500 -130219 01/01/1988 31/12/2500 LIBEN Vegetable saps and extracts (excl. liquorice, hops, opium and ephedra) 01/01/1988 31/12/2500 -13021905 01/01/1996 31/12/2500 LIBEN Vanilla oleoresin 01/01/1996 31/12/2500 -13021910 01/01/1988 31/12/1995 LIBEN Extracts of Quassia amara; aloes and manna 01/01/1988 31/12/1995 -13021910 01/01/1996 31/12/2000 LIBEN Extracts of Quassia amara; aloes and manna 01/01/1996 31/12/2000 -13021920 01/01/2013 31/12/2016 LIBEN Vegetable saps and extracts of plants of the genus Ephedra 01/01/2013 31/12/2016 -13021930 01/01/1988 31/12/1995 LIBEN Intermixtures of vegetable extracts, for manufacture of beverages or food preparations 01/01/1988 31/12/1995 -13021930 01/01/1996 31/12/2004 LIBEN Intermixtures of vegetable extracts, for manufacture of beverages or food preparations 01/01/1996 31/12/2004 -13021970 01/01/2013 31/12/2500 LIBEN Vegetable saps and extracts (excl. opium, liquorice, hops, vanilla oleoresin and genus Ephedra) 01/01/2013 31/12/2500 -13021980 01/01/2007 31/12/2012 LIBEN Vegetable saps and extracts (excl. liquorice, hops, vanilla oleoresin and opium) 01/01/2007 31/12/2012 -13021990 01/01/2005 31/12/2006 LIBEN Vegetable saps and extracts (excl. liquorice, hops, pyrethrum, roots of plants containing rotenone, vanilla oleoresin and opium) 01/01/2005 31/12/2006 -13021991 01/01/1988 31/12/1995 LIBEN Medicinal vegetable saps and extracts (excl. pharmaceutical products and reagents to determine blood groups or blood factors) 01/01/1988 31/12/1995 -13021991 01/01/1996 31/12/2004 LIBEN Medicinal vegetable saps and extracts (excl. pharmaceutical products and reagents to determine blood groups or blood factors) 01/01/1996 31/12/2004 -13021998 01/01/2001 31/12/2001 LIBEN Vegetable saps and extracts (excl. liquorice, hops, pyrethrum, roots of plants containing rotenone, vanilla oleoresin, opium, intermixtures of vegetable extracts for manufacture of beverages or food preparations and medicinal vegetable saps and extracts) 01/01/2001 31/12/2001 -13021998 01/01/2002 31/12/2004 LIBEN Vegetable saps and extracts (excl. liquorice, hops, pyrethrum, roots of plants containing rotenone, vanilla oleoresin, opium, intermixtures of vegetable extracts for manufacture of beverages or food preparations and medicinal vegetable saps and extracts) 01/01/2002 31/12/2004 -13021999 01/01/1988 31/12/1995 LIBEN Vegetable saps and extracts (excl. liquorice, hops, pryrethrum, roots of plants containing rotenone, quassia amara, opium, aloes and manna, intermixtures of vegetable extracts for manufacture of beverages or food preparations and medicinal vegetable saps and extracts) 01/01/1988 31/12/1995 -13021999 01/01/1996 31/12/2000 LIBEN Vegetable saps and extracts (excl. liquorice, hops, pyrethrum, roots of plants containing rotenone, quassia amara, vanilla oleoresin, opium, aloes and manna, intermixtures of vegetable extracts for manufacture of beverages or food preparations and medicinal vegetable saps and extracts) 01/01/1996 31/12/2000 -130220 01/01/1988 31/12/2500 LIBEN Pectic substances, pectinates and pectates 01/01/1988 31/12/2500 -13022010 01/01/1988 31/12/2500 LIBEN Dry pectic substances, pectinates and pectates in powder form 01/01/1988 31/12/2500 -13022090 01/01/1988 31/12/2500 LIBEN Liquid pectic substances, pectinates and pectates 01/01/1988 31/12/2500 -130231 01/01/1988 31/12/2500 LIBEN Agar-agar, whether or not modified 01/01/1988 31/12/2500 -13023100 01/01/1988 31/12/2500 LIBEN Agar-agar, whether or not modified 01/01/1988 31/12/2500 -130232 01/01/1988 31/12/2500 LIBEN Mucilages and thickeners, derived from locust beans, locust bean seeds or guar seeds, whether or not modified 01/01/1988 31/12/2500 -13023210 01/01/1988 31/12/2500 LIBEN Mucilages and thickeners of locust beans or bean seeds, whether or not modified 01/01/1988 31/12/2500 -13023290 01/01/1988 31/12/2500 LIBEN Mucilages and thickeners of guar seeds, whether or not modified 01/01/1988 31/12/2500 -130239 01/01/1988 31/12/2500 LIBEN Mucilages and thickeners derived from vegetable products, whether or not modified (excl. from locust beans, locust bean seeds, guar seeds and agar-agar) 01/01/1988 31/12/2500 -13023900 01/01/1988 31/12/2500 LIBEN Mucilages and thickeners derived from vegetable products, whether or not modified (excl. from locust beans, locust bean seeds, guar seeds and agar-agar) 01/01/1988 31/12/2500 -13CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 13 01/01/2002 31/12/2500 -13CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 13 01/01/2002 31/12/2500 -13CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 13 01/01/2002 31/12/2500 -13MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -13MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -13MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -13SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 13 01/01/1988 31/12/2500 -13SSS2 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 13 and SITC section 2 01/01/1988 31/12/2500 -13SSS292 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 13 and SITC group 292 01/01/1988 31/12/2500 -13SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 13 and SITC section 9 01/01/1988 31/12/1996 -13SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 13 and SITC section 9 01/01/1997 31/12/2500 -13SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 13 and SITC group 999 01/01/1988 31/12/1996 -13SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 13 and SITC group 999 01/01/1997 31/12/2500 -14 01/01/1988 31/12/2500 LIBEN VEGETABLE PLAITING MATERIALS; VEGETABLE PRODUCTS NOT ELSEWHERE SPECIFIED OR INCLUDED 01/01/1988 31/12/2500 -1401 01/01/1988 31/12/2500 LIBEN Vegetable materials of a kind used primarily for plaiting, e.g. bamboos, rattans, reeds, rushes, osier, raffia, cleaned, bleached or dyed cereal straw, and lime bark 01/01/1988 31/12/2500 -140110 01/01/1988 31/12/2500 LIBEN Bamboos 01/01/1988 31/12/2500 -14011000 01/01/1988 31/12/2500 LIBEN Bamboos 01/01/1988 31/12/2500 -140120 01/01/1988 31/12/2500 LIBEN Rattans 01/01/1988 31/12/2500 -14012000 01/01/1988 31/12/2500 LIBEN Rattans 01/01/1988 31/12/2500 -140190 01/01/1988 31/12/2500 LIBEN Reeds, rushes, osier, raffia, cleaned, bleached or dyed cereal straw, lime bark and other vegetable materials of a kind used primarily for plaiting (excl. bamboos and rattans) 01/01/1988 31/12/2500 -14019000 01/01/1988 31/12/2500 LIBEN Reeds, rushes, osier, raffia, cleaned, bleached or dyed cereal straw, lime bark and other vegetable materials of a kind used primarily for plaiting (excl. bamboos and rattans) 01/01/1988 31/12/2500 -1402 01/01/1988 31/12/2006 LIBEN Vegetable materials of a kind used primarily as stuffing or as padding, e.g. kapok, vegetable hair and eelgrass, whether or not put up as a layer, with or without supporting material 01/01/1988 31/12/2006 -140200 01/01/2002 31/12/2006 LIBEN Vegetable materials of a kind used primarily as stuffing or as padding, e.g. kapok, vegetable hair and eelgrass, whether or not put up as a layer, with or without supporting material 01/01/2002 31/12/2006 -14020000 01/01/2002 31/12/2006 LIBEN Vegetable materials of a kind used primarily as stuffing or as padding, e.g. kapok, vegetable hair and eelgrass, whether or not put up as a layer, with or without supporting material 01/01/2002 31/12/2006 -140210 01/01/1988 31/12/2001 LIBEN Kapok, whether or not put up as a layer, with or without supporting material 01/01/1988 31/12/2001 -14021000 01/01/1988 31/12/1994 LIBEN Kapok, whether or not put up as a layer, with or without supporting material 01/01/1988 31/12/1994 -14021000 01/01/2001 31/12/2001 LIBEN Kapok, whether or not put up as a layer, with or without supporting material 01/01/2001 31/12/2001 -14021010 01/01/1995 31/12/2000 LIBEN Raw kapok 01/01/1995 31/12/2000 -14021091 01/01/1995 31/12/2000 LIBEN Kapok, put up as layer with supporting material 01/01/1995 31/12/2000 -14021099 01/01/1995 31/12/2000 LIBEN Kapok (excl. raw and put up as a layer with supporting material) 01/01/1995 31/12/2000 -140290 01/01/1996 31/12/2001 LIBEN Vegetable hair, eel-grass and other vegetable materials of a kind used primarily as stuffing or as padding, whether or not put up as a layer with or without supporting material (excl. kapok) 01/01/1996 31/12/2001 -14029000 01/01/1996 31/12/2001 LIBEN Vegetable hair, eel-grass and other vegetable materials of a kind used primarily as stuffing or as padding, whether or not put up as a layer with or without supporting material (excl. kapok) 01/01/1996 31/12/2001 -140291 01/01/1988 31/12/1995 LIBEN Vegetable hair, whether or not put up as a layer, with or without supporting material 01/01/1988 31/12/1995 -14029100 01/01/1988 31/12/1995 LIBEN Vegetable hair, whether or not put up as a layer, with or without supporting material 01/01/1988 31/12/1995 -140299 01/01/1988 31/12/1995 LIBEN Eel-grass and other vegetable materials primarily for stuffing or padding, whether or not put up as a layer, with or without supporting material (excl. kapok and vegetable hair) 01/01/1988 31/12/1995 -14029900 01/01/1988 31/12/1995 LIBEN Eel-grass and other vegetable materials primarily for stuffing or padding, whether or not put up as a layer, with or without supporting material (excl. kapok and vegetable hair) 01/01/1988 31/12/1995 -1403 01/01/1988 31/12/2006 LIBEN Vegetable materials, such as broom-corn, piassava, couch grass and istle, of a kind used primarily in brooms or in brushes, whether or not in hanks or bundles 01/01/1988 31/12/2006 -140300 01/01/2002 31/12/2006 LIBEN Vegetable materials, such as broom-corn, piassava, couch grass and istle, of a kind used primarily in brooms or in brushes, whether or not in hanks or bundles 01/01/2002 31/12/2006 -14030000 01/01/2002 31/12/2006 LIBEN Vegetable materials, such as broom-corn, piassava, couch grass and istle, of a kind used primarily in brooms or in brushes, whether or not in hanks or bundles 01/01/2002 31/12/2006 -140310 01/01/1988 31/12/2001 LIBEN Broomcorn 01/01/1988 31/12/2001 -14031000 01/01/1988 31/12/2001 LIBEN Broomcorn 01/01/1988 31/12/2001 -140390 01/01/1988 31/12/2001 LIBEN Piassava, brush-grass, istle and other vegetable materials primarily for brooms or brushes (excl. broomcorn) 01/01/1988 31/12/2001 -14039000 01/01/1988 31/12/2001 LIBEN Piassava, brush-grass, istle and other vegetable materials primarily for brooms or brushes (excl. broomcorn) 01/01/1988 31/12/2001 -1404 01/01/1988 31/12/2500 LIBEN Vegetable products, n.e.s. 01/01/1988 31/12/2500 -140410 01/01/1988 31/12/2006 LIBEN Raw vegetable materials primarily for dyeing or tanning, n.e.s. 01/01/1988 31/12/2006 -14041000 01/01/1988 31/12/2006 LIBEN Raw vegetable materials primarily for dyeing or tanning, n.e.s. 01/01/1988 31/12/2006 -140420 01/01/1988 31/12/2500 LIBEN Cotton linters 01/01/1988 31/12/2500 -14042000 01/01/1988 31/12/2500 LIBEN Cotton linters 01/01/1988 31/12/2500 -140490 01/01/1988 31/12/2500 LIBEN Vegetable products n.e.s 01/01/1988 31/12/2500 -14049000 01/01/1988 31/12/2006 LIBEN Vegetable products n.e.s 01/01/1988 31/12/2006 -14049000 01/01/2007 31/12/2016 LIBEN Vegetable products n.e.s 01/01/2007 31/12/2016 -14049000 01/01/2017 31/12/2500 LIBEN Vegetable products n.e.s 01/01/2017 31/12/2500 -14CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 14 01/01/2002 31/12/2500 -14CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 14 01/01/2002 31/12/2500 -14CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 14 01/01/2002 31/12/2500 -14MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -14MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -14MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -14SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 14 01/01/1988 31/12/2500 -14SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 14 and SITC section 0 01/01/1997 31/12/2001 -14SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 14 and SITC group 000 01/01/1997 31/12/2001 -14SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 14 and SITC section 2 01/01/1997 31/12/2500 -14SSS263 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 14 and SITC group 263 01/01/1997 31/12/2500 -14SSS292 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 14 and SITC group 292 01/01/1997 31/12/2500 -14SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 14 and SITC section 9 01/01/1988 31/12/1996 -14SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 14 and SITC section 9 01/01/1997 31/12/2500 -14SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 14 and SITC group 999 01/01/1988 31/12/1996 -14SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 14 and SITC group 999 01/01/1997 31/12/2500 -15 01/01/1988 31/12/2500 LIBEN ANIMAL OR VEGETABLE FATS AND OILS AND THEIR CLEAVAGE PRODUCTS; PREPARED EDIBLE FATS; ANIMAL OR VEGETABLE WAXES 01/01/1988 31/12/2500 -1501 01/01/1988 31/12/2500 LIBEN Pig fat, incl. lard, and poultry fat, rendered or otherwise extracted (excl. lard stearin and lard oil) 01/01/1988 31/12/2500 -150100 01/01/1988 31/12/2011 LIBEN Pig fat, incl. lard, and poultry fat, rendered or otherwise extracted (excl. lard stearin and lard oil) 01/01/1988 31/12/2011 -15010011 01/01/1988 31/12/2011 LIBEN Pig fat, incl. lard, rendered or otherwise extracted, for industrial uses (excl. for the manufacture of foodstuffs, lard stearin and lard oil) 01/01/1988 31/12/2011 -15010019 01/01/1988 31/12/2011 LIBEN Pig fat, incl. lard, rendered or otherwise extracted (excl. for technical/industrial uses, lard stearin and lard oil) 01/01/1988 31/12/2011 -15010090 01/01/1988 31/12/2011 LIBEN Poultry fat, rendered or otherwise extracted 01/01/1988 31/12/2011 -150110 01/01/2012 31/12/2500 LIBEN Lard, rendered or otherwise extracted (excl. lard stearin and lard oil) 01/01/2012 31/12/2500 -15011010 01/01/2012 31/12/2500 LIBEN Lard, rendered or otherwise extracted, for industrial uses (excl. for the manufacture of foodstuffs, lard stearin and lard oil) 01/01/2012 31/12/2500 -15011090 01/01/2012 31/12/2500 LIBEN Lard, rendered or otherwise extracted (excl. for technical/industrial uses, and lard stearin and lard oil) 01/01/2012 31/12/2500 -150120 01/01/2012 31/12/2500 LIBEN Pig fat, rendered or otherwise extracted (excl. lard) 01/01/2012 31/12/2500 -15012010 01/01/2012 31/12/2500 LIBEN Pig fat, rendered or otherwise extracted, for industrial uses (excl. for the manufacture of foodstuffs, and lard) 01/01/2012 31/12/2500 -15012090 01/01/2012 31/12/2500 LIBEN Pig fat, rendered or otherwise extracted (excl. for technical/industrial uses, and lard) 01/01/2012 31/12/2500 -150190 01/01/2012 31/12/2500 LIBEN Poultry fat, rendered or otherwise extracted 01/01/2012 31/12/2500 -15019000 01/01/2012 31/12/2500 LIBEN Poultry fat, rendered or otherwise extracted 01/01/2012 31/12/2500 -1502 01/01/1988 31/12/2500 LIBEN Fats of bovine animals, sheep or goats (excl. oil and oleostearin) 01/01/1988 31/12/2500 -150200 01/01/1988 31/12/2011 LIBEN Fats of bovine animals, sheep or goats (excl. lard stearin, lard oil, oleostearin, oleooil and tallow oil, not emulsified or mixed or otherwise prepared) 01/01/1988 31/12/2011 -15020010 01/01/1988 31/12/2011 LIBEN Fats of bovine animals, sheep or goats, for industrial uses (other than the manufacture of foodstuffs for human consumption, lard stearin, lard oil, oleostearin, oleooil and tallow oil, not emulsified, mixed or otherwise prepared) 01/01/1988 31/12/2011 -15020090 01/01/1993 31/12/2011 LIBEN Fats of bovine animals, sheep or goats (excl. for industrial uses, lard stearin, lard oil, oleostearin, oleooil and tallow oil, not emulsified, mixed or otherwise prepared) 01/01/1993 31/12/2011 -15020091 01/01/1988 31/12/1992 LIBEN Fats of bovine animals, raw or rendered, whether or not pressed or solvent-extracted (excl. for industrial uses) 01/01/1988 31/12/1992 -15020099 01/01/1988 31/12/1992 LIBEN Fats of sheep or goats, raw or rendered, whether or not pressed or solvent-extracted (excl. for industrial uses) 01/01/1988 31/12/1992 -150210 01/01/2012 31/12/2500 LIBEN Tallow of bovine animals, sheep or goats (excl. oil and oleostearin) 01/01/2012 31/12/2500 -15021010 01/01/2012 31/12/2500 LIBEN Tallow of bovine animals, sheep or goats, for industrial uses (excl. for manufacture of foodstuffs, and oil and oleostearin) 01/01/2012 31/12/2500 -15021090 01/01/2012 31/12/2500 LIBEN Tallow of bovine animals, sheep or goats (excl. for technical/industrial uses, and oil and oleostearin) 01/01/2012 31/12/2500 -150290 01/01/2012 31/12/2500 LIBEN Fats of bovine animals, sheep or goats (excl. tallow, oleostearin and oleo-oil) 01/01/2012 31/12/2500 -15029010 01/01/2012 31/12/2500 LIBEN Fats of bovine animals, sheep or goats, for industrial uses (excl. for manufacture of foodstuffs, and tallow, oleostearin and oleo-oil) 01/01/2012 31/12/2500 -15029090 01/01/2012 31/12/2500 LIBEN Fats of bovine animals, sheep or goats (excl. for technical/industrial uses, and tallow, oleostearin and oleo-oil) 01/01/2012 31/12/2500 -1503 01/01/1988 31/12/2500 LIBEN Lard stearin, lard oil, oleostearin, oleo-oil and tallow oil (excl. emulsified, mixed or otherwise prepared) 01/01/1988 31/12/2500 -150300 01/01/1988 31/12/2500 LIBEN Lard stearin, lard oil, oleostearin, oleo-oil and tallow oil (excl. emulsified, mixed or otherwise prepared) 01/01/1988 31/12/2500 -15030011 01/01/1988 31/12/2500 LIBEN Lard stearin and oleostearin for industrial uses (excl. emulsified, mixed or otherwise prepared) 01/01/1988 31/12/2500 -15030019 01/01/1988 31/12/2500 LIBEN Lard stearin and oleostearin (excl. for industrial uses and emulsified, mixed or otherwise prepared) 01/01/1988 31/12/2500 -15030030 01/01/1988 31/12/2500 LIBEN Tallow oil for industrial uses (excl. for production of foodstuffs and emulsified, mixed or otherwise prepared) 01/01/1988 31/12/2500 -15030090 01/01/1988 31/12/2500 LIBEN Tallow oil, oleo-oil and lard oil (excl. emulsified, mixed or otherwise prepared, and tallow oil for industrial uses) 01/01/1988 31/12/2500 -1504 01/01/1988 31/12/2500 LIBEN Fats and oils and their fractions of fish or marine mammals, whether or not refined (excl. chemically modified) 01/01/1988 31/12/2500 -150410 01/01/1988 31/12/2500 LIBEN Fish-liver oils and their fractions, whether or not refined (excl. chemically modified) 01/01/1988 31/12/2500 -15041010 01/01/1988 31/12/2500 LIBEN Fish-liver oils and their fractions with vitamin A content of <= 2.500 international units per g, whether or not refined (excl. chemically modified) 01/01/1988 31/12/2500 -15041090 01/01/1988 31/12/1994 LIBEN Fish-liver oils and their fractions with vitamin a content of > 2 500 international units per g, whether or not refined (excl. chemically modified) 01/01/1988 31/12/1994 -15041091 01/01/1995 31/12/2500 LIBEN Fish-liver oils and their fractions, of halibut, whether or not refined, but not chemically modified (excl. fish-liver oils with vitamin A content <= 2.500 international units per g) 01/01/1995 31/12/2500 -15041099 01/01/1995 31/12/2500 LIBEN Fish-liver oils and their fractions, whether or not refined but not chemically modified (excl. fish-liver oils with vitamin A content <= 2.500 international units per g, and of halibut) 01/01/1995 31/12/2500 -150420 01/01/1988 31/12/2500 LIBEN Fats and oils of fish and their fractions, whether or not refined (excl. liver oils and chemically modified) 01/01/1988 31/12/2500 -15042010 01/01/1988 31/12/2500 LIBEN Solid fractions of fish fats and oils, whether or not refined (excl. chemically modified and liver oils) 01/01/1988 31/12/2500 -15042090 01/01/1988 31/12/2500 LIBEN Fish fats and oils and liquid fractions, whether or not refined (excl. chemically modified and liver oils) 01/01/1988 31/12/2500 -150430 01/01/1988 31/12/2500 LIBEN Fats and oils and their fractions of marine mammals, whether or not refined (excl. chemically modified) 01/01/1988 31/12/2500 -15043010 01/01/1999 31/12/2500 LIBEN Solid marine mammal fat and oil fractions, whether or not refined (excl. chemically modified) 01/01/1999 31/12/2500 -15043011 01/01/1988 31/12/1998 LIBEN Solid whale and sperm oil fractions, whether or not refined (excl. chemically modified) 01/01/1988 31/12/1998 -15043019 01/01/1988 31/12/1998 LIBEN Solid marine mammal fat and oil fractions, whether or not refined (excl. chemically modified and whale and sperm oil) 01/01/1988 31/12/1998 -15043090 01/01/1988 31/12/2500 LIBEN Marine mammal fats, oils and their liquid fractions, whether or not refined (excl. chemically modified) 01/01/1988 31/12/2500 -1505 01/01/1988 31/12/2500 LIBEN Wool grease and fatty substances derived therefrom, incl. lanolin 01/01/1988 31/12/2500 -150500 01/01/2002 31/12/2500 LIBEN Wool grease and fatty substances derived therefrom, incl. lanolin 01/01/2002 31/12/2500 -15050010 01/01/2002 31/12/2500 LIBEN Crude wool grease 01/01/2002 31/12/2500 -15050090 01/01/2002 31/12/2500 LIBEN Wool grease and fatty substances derived therefrom, incl. lanolin (excl. crude wool grease) 01/01/2002 31/12/2500 -150510 01/01/1988 31/12/2001 LIBEN Crude wool grease 01/01/1988 31/12/2001 -15051000 01/01/1988 31/12/2001 LIBEN Crude wool grease 01/01/1988 31/12/2001 -150590 01/01/1988 31/12/2001 LIBEN Wool grease and fatty substances derived therefrom incl. lanolin (excl. crude) 01/01/1988 31/12/2001 -15059000 01/01/1988 31/12/2001 LIBEN Wool grease and fatty substances derived therefrom incl. lanolin (excl. crude) 01/01/1988 31/12/2001 -1506 01/01/1988 31/12/2500 LIBEN Other animal fats and oils and their fractions, whether or not refined, but not chemically modified (excl. pig fat, poultry fat, fats of bovine animals, sheep and goats, fats of fish and other marine animals, lard stearin, lard oil, oloestearin, oleo-oil, tallow oil, wool grease and fatty substances derived therefrom) 01/01/1988 31/12/2500 -150600 01/01/1988 31/12/2500 LIBEN Other animal fats and oils and their fractions, whether or not refined, but not chemically modified (excl. pig fat, poultry fat, fats of bovine animals, sheep and goats, fats of fish and other marine animals, lard stearin, lard oil, oloestearin, oleo-oil, tallow oil, wool grease and fatty substances derived therefrom) 01/01/1988 31/12/2500 -15060000 01/01/1988 31/12/2500 LIBEN Other animal fats and oils and their fractions, whether or not refined, but not chemically modified (excl. pig fat, poultry fat, fats of bovine animals, sheep and goats, fats of fish and other marine animals, lard stearin, lard oil, oloestearin, oleo-oil, tallow oil, wool grease and fatty substances derived therefrom) 01/01/1988 31/12/2500 -1507 01/01/1988 31/12/2500 LIBEN Soya-bean oil and its fractions, whether or not refined (excl. chemically modified) 01/01/1988 31/12/2500 -150710 01/01/1988 31/12/2500 LIBEN Crude soya-bean oil, whether or not degummed 01/01/1988 31/12/2500 -15071010 01/01/1988 31/12/2500 LIBEN Crude soya-bean oil, whether or not degummed, for technical or industrial uses (excl. for production of foodstuffs) 01/01/1988 31/12/2500 -15071090 01/01/1988 31/12/2500 LIBEN Crude soya-bean oil, whether or not degummed (excl. for technical or industrial uses) 01/01/1988 31/12/2500 -150790 01/01/1988 31/12/2500 LIBEN Soya-bean oil and its fractions, whether or not refined (excl. chemically modified and crude) 01/01/1988 31/12/2500 -15079010 01/01/1988 31/12/2500 LIBEN Soya-bean oil and its fractions, whether or not refined, for technical or industrial uses (excl. chemically modified, crude, and for production of foodstuffs) 01/01/1988 31/12/2500 -15079090 01/01/1988 31/12/2500 LIBEN Soya-bean oil and its fractions, whether or not refined (excl. for technical or industrial uses, chemically modified, and crude) 01/01/1988 31/12/2500 -1508 01/01/1988 31/12/2500 LIBEN Groundnut oil and its fractions, whether or not refined, but not chemically modified 01/01/1988 31/12/2500 -150810 01/01/1988 31/12/2500 LIBEN Crude groundnut oil 01/01/1988 31/12/2500 -15081010 01/01/1988 31/12/2500 LIBEN Crude groundnut oil for technical or industrial uses (excl. for production of foodstuffs) 01/01/1988 31/12/2500 -15081090 01/01/1988 31/12/2500 LIBEN Crude groundnut oil (excl. for technical or industrial uses) 01/01/1988 31/12/2500 -150890 01/01/1988 31/12/2500 LIBEN Groundnut oil and its fractions, whether or not refined (excl. chemically modified and crude) 01/01/1988 31/12/2500 -15089010 01/01/1988 31/12/2500 LIBEN Groundnut oil and its fractions, whether or not refined, for industrial uses (excl. chemically modified, crude, and for production of foodstuffs) 01/01/1988 31/12/2500 -15089090 01/01/1988 31/12/2500 LIBEN Groundnut oil and its fractions, whether or not refined (excl. chemically modified, crude, and for technical or industrial uses) 01/01/1988 31/12/2500 -1509 01/01/1988 31/12/2500 LIBEN Olive oil and its fractions obtained from the fruit of the olive tree solely by mechanical or other physical means under conditions that do not lead to deterioration of the oil, whether or not refined, but not chemically modified 01/01/1988 31/12/2500 -150910 01/01/1988 31/12/2500 LIBEN Virgin olive oil and its fractions obtained from the fruit of the olive tree solely by mechanical or other physical means under conditions that do not lead to deterioration of the oil 01/01/1988 31/12/2500 -15091010 01/01/1988 31/12/2500 LIBEN Virgin lampante olive oil obtained from the fruit of the olive tree solely by mechanical or other physical means under conditions that do not lead to deterioration of the oil 01/01/1988 31/12/2500 -15091020 01/01/2017 31/12/2500 LIBEN Extra virgin olive oil obtained from the fruit of the olive tree solely by mechanical or other physical means under conditions that do not lead to deterioration of the oil, untreated (excl. lampante oil) 01/01/2017 31/12/2500 -15091080 01/01/2017 31/12/2500 LIBEN Virgin olive oil obtained from the fruit of the olive tree solely by mechanical or other physical means under conditions that do not lead to deterioration of the oil, untreated (excl. lampante oil and extra virgin oil) 01/01/2017 31/12/2500 -15091090 01/01/1988 31/12/2016 LIBEN Olive oil obtained from the fruit of the olive tree solely by mechanical or other physical means under conditions that do not lead to deterioration of the oil, untreated (excl. virgin lampante oil) 01/01/1988 31/12/2016 -150990 01/01/1988 31/12/2500 LIBEN Olive oil and fractions obtained from the fruit of the olive tree solely by mechanical or other physical means under conditions that do not lead to deterioration of the oil (excl. virgin and chemically modified) 01/01/1988 31/12/2500 -15099000 01/01/1988 31/12/2500 LIBEN Olive oil and fractions obtained from the fruit of the olive tree solely by mechanical or other physical means under conditions that do not lead to deterioration of the oil (excl. virgin and chemically modified) 01/01/1988 31/12/2500 -1510 01/01/1988 31/12/2500 LIBEN Other oils and their fractions, obtained solely from olives, whether or not refined, but not chemically modified, incl. blends of these oils or fractions with oils or fractions of heading 1509 01/01/1988 31/12/2500 -151000 01/01/1988 31/12/2500 LIBEN Other oils and their fractions, obtained solely from olives, whether or not refined, but not chemically modified, incl. blends of these oils or fractions with oils or fractions of heading 1509 01/01/1988 31/12/2500 -15100010 01/01/1988 31/12/2500 LIBEN Crude olive oils and blends, incl. blends with those of heading 1509 01/01/1988 31/12/2500 -15100090 01/01/1988 31/12/2500 LIBEN Other oils and their fractions, obtained solely from olives, whether or not refined, but not chemically modified, incl. blends of these oils or fractions with oils or fractions of heading 1509 (excl. crude) 01/01/1988 31/12/2500 -1511 01/01/1988 31/12/2500 LIBEN Palm oil and its fractions, whether or not refined (excl. chemically modified) 01/01/1988 31/12/2500 -151110 01/01/1988 31/12/2500 LIBEN Crude palm oil 01/01/1988 31/12/2500 -15111010 01/01/1988 31/12/2500 LIBEN Crude palm oil, for technical or industrial uses (excl. for manufacture of foodstuffs) 01/01/1988 31/12/2500 -15111090 01/01/1988 31/12/2500 LIBEN Crude palm oil (excl. for technical or industrial uses) 01/01/1988 31/12/2500 -151190 01/01/1988 31/12/2500 LIBEN Palm oil and its fractions, whether or not refined (excl. chemically modified and crude) 01/01/1988 31/12/2500 -15119011 01/01/1988 31/12/2500 LIBEN Solid palm oil fractions, whether or not refined, but not chemically modified, in packings of <= 1 kg 01/01/1988 31/12/2500 -15119019 01/01/1988 31/12/2500 LIBEN Solid palm oil fractions, whether or not refined, but not chemically modified, in packings of > 1 kg or put up otherwise 01/01/1988 31/12/2500 -15119091 01/01/1988 31/12/2500 LIBEN Palm oil and its liquid fractions, whether or not refined, but not chemically modified, for industrial uses (excl. for production of foodstuffs and crude) 01/01/1988 31/12/2500 -15119099 01/01/1988 31/12/2500 LIBEN Palm oil and its liquid fractions, whether or not refined, but not chemically modified (excl. for industrial uses and crude) 01/01/1988 31/12/2500 -1512 01/01/1988 31/12/2500 LIBEN Sunflower-seed, safflower or cotton-seed oil and fractions thereof, whether or not refined, but not chemically modified 01/01/1988 31/12/2500 -151211 01/01/1988 31/12/2500 LIBEN Crude sunflower-seed or safflower oil 01/01/1988 31/12/2500 -15121110 01/01/1988 31/12/2500 LIBEN Crude sunflower-seed or safflower oil, for technical or industrial uses (excl. for manufacture of foodstuffs) 01/01/1988 31/12/2500 -15121191 01/01/1988 31/12/2500 LIBEN Crude sunflower-seed oil (excl. for technical or industrial uses) 01/01/1988 31/12/2500 -15121199 01/01/1988 31/12/2500 LIBEN Crude safflower oil (excl. for technical or industrial uses) 01/01/1988 31/12/2500 -151219 01/01/1988 31/12/2500 LIBEN Sunflower-seed or safflower oil and their fractions, whether or not refined, but not chemically modified (excl. crude) 01/01/1988 31/12/2500 -15121910 01/01/1988 31/12/2500 LIBEN Sunflower-seed or safflower oil and their fractions, whether or not refined, but not chemically modified, for technical or industrial uses (excl. crude and for manufacture of foodstuffs) 01/01/1988 31/12/2500 -15121990 01/01/2004 31/12/2500 LIBEN Sunflower-seed or safflower oil and their fractions, whether or not refined, but not chemically modified (excl. for technical or industrial uses and crude) 01/01/2004 31/12/2500 -15121991 01/01/1988 31/12/2003 LIBEN Sunflower-seed oil and its fractions, whether or not refined, but not chemically modified (excl. crude and for technical or industrial uses) 01/01/1988 31/12/2003 -15121999 01/01/1988 31/12/2003 LIBEN Safflower oil and its fractions, whether or not refined, but not chemically modified (excl. crude and for technical or industrial uses) 01/01/1988 31/12/2003 -151221 01/01/1988 31/12/2500 LIBEN Crude cotton-seed oil 01/01/1988 31/12/2500 -15122110 01/01/1988 31/12/2500 LIBEN Crude cotton-seed oil, for technical or industrial uses (excl. for manufacture of foodstuffs) 01/01/1988 31/12/2500 -15122190 01/01/1988 31/12/2500 LIBEN Crude cotton-seed oil (excl. for technical or industrial uses) 01/01/1988 31/12/2500 -151229 01/01/1988 31/12/2500 LIBEN Cotton-seed oil and its fractions, whether or not refined, but not chemically modified (excl. crude) 01/01/1988 31/12/2500 -15122910 01/01/1988 31/12/2500 LIBEN Cotton-seed oil and its fractions, whether or not refined, but not chemically modified, for technical or industrial uses (excl. crude and for manufacture of foodstuffs) 01/01/1988 31/12/2500 -15122990 01/01/1988 31/12/2500 LIBEN Cotton-seed oil and its fractions, whether or not refined, but not chemically modified (excl. for technical or industrial uses and crude) 01/01/1988 31/12/2500 -1513 01/01/1988 31/12/2500 LIBEN Coconut "copra", palm kernel or babassu oil and fractions thereof, whether or not refined, but not chemically modified 01/01/1988 31/12/2500 -151311 01/01/1988 31/12/2500 LIBEN Crude coconut oil 01/01/1988 31/12/2500 -15131110 01/01/1988 31/12/2500 LIBEN Crude coconut oil, for technical or industrial uses (excl. for manufacture of foodstuffs) 01/01/1988 31/12/2500 -15131191 01/01/1988 31/12/2500 LIBEN Crude coconut oil, in immediate packings of <= 1 kg (excl. for technical or industrial uses) 01/01/1988 31/12/2500 -15131199 01/01/1988 31/12/2500 LIBEN Crude coconut oil, in immediate packings of > 1 kg or put up otherwise (excl. for technical or industrial uses) 01/01/1988 31/12/2500 -151319 01/01/1988 31/12/2500 LIBEN Coconut oil and its fractions, whether or not refined, but not chemically modified (excl. crude) 01/01/1988 31/12/2500 -15131911 01/01/1988 31/12/2500 LIBEN Solid coconut oil fractions, whether or not refined, but not chemically modified, in immediate packings of <= 1 kg 01/01/1988 31/12/2500 -15131919 01/01/1988 31/12/2500 LIBEN Solid coconut oil fractions, whether or not refined, but not chemically modified, in immediate packings of > 1 kg or put up otherwise 01/01/1988 31/12/2500 -15131930 01/01/1988 31/12/2500 LIBEN Coconut oil and its liquid fractions, whether or not refined, but not chemically modified, for technical or industrial uses (excl. for manufacture of foodstuffs and crude) 01/01/1988 31/12/2500 -15131991 01/01/1988 31/12/2500 LIBEN Coconut oil and its liquid fractions, whether or not refined, but not chemically modified, in immediate packings of <= 1 kg (excl. for technical or industrial uses and crude) 01/01/1988 31/12/2500 -15131999 01/01/1988 31/12/2500 LIBEN Coconut oil and its liquid fractions, whether or not refined, but not chemically modified, in immediate packings of > 1 kg or put up otherwise (excl. for technical or industrial uses and crude) 01/01/1988 31/12/2500 -151321 01/01/1988 31/12/2500 LIBEN Crude palm kernel and babassu oil 01/01/1988 31/12/2500 -15132110 01/01/2004 31/12/2500 LIBEN Crude palm kernel and babassu oil, for technical or industrial uses (excl. for manufacture of foodstuffs) 01/01/2004 31/12/2500 -15132111 01/01/1988 31/12/2003 LIBEN Crude palm kernel oil, for technical or industrial uses (excl. for manufacture of foodstuffs) 01/01/1988 31/12/2003 -15132119 01/01/1988 31/12/2003 LIBEN Crude babassu oil, for technical or industrial uses (excl. for manufacture of foodstuffs) 01/01/1988 31/12/2003 -15132130 01/01/1988 31/12/2500 LIBEN Crude palm kernel and babassu oil, in immediate packings of <= 1 kg (excl. for technical or industrial uses) 01/01/1988 31/12/2500 -15132190 01/01/1993 31/12/2500 LIBEN Raw palm kernel oil and babassu oil in immediate packings of a net content of > 1 kg or put up otherwise (excl. oils for technical or industrial uses) 01/01/1993 31/12/2500 -15132191 01/01/1988 31/12/1992 LIBEN Crude palm kernel oil, in immediate packings of > 1 kg (excl. for industrial uses) 01/01/1988 31/12/1992 -15132199 01/01/1988 31/12/1992 LIBEN Crude babassu oil, in immediate packings of > 1 kg (excl. for industrial uses) 01/01/1988 31/12/1992 -151329 01/01/1988 31/12/2500 LIBEN Palm kernel and babassu oil and their fractions, whether or not refined, but not chemically modified (excl. crude) 01/01/1988 31/12/2500 -15132911 01/01/1988 31/12/2500 LIBEN Solid palm kernel and babassu oil fractions, whether or not refined, but not chemically modified, in immediate packings of <= 1 kg 01/01/1988 31/12/2500 -15132919 01/01/1988 31/12/2500 LIBEN Solid palm kernel and babassu oil fractions, whether or not refined, but not chemically modified, in immediate packings of > 1 kg or put up otherwise 01/01/1988 31/12/2500 -15132930 01/01/1988 31/12/2500 LIBEN Palm kernel and babassu oil and their liquid fractions, whether or not refined, but not chemically modified, for technical or industrial uses (excl. for manufacture of foodstuffs and crude) 01/01/1988 31/12/2500 -15132950 01/01/1988 31/12/2500 LIBEN Palm kernel and babassu oil and their liquid fractions, whether or not refined, but not chemically modified, in immediate packings of <= 1 kg (excl. for technical or industrial uses and crude) 01/01/1988 31/12/2500 -15132990 01/01/2004 31/12/2500 LIBEN Palm kernel and babassu oil and their liquid fractions, whether or not refined, but not chemically modified, in immediate packings of > 1 kg or put up otherwise (excl. for technical or industrial uses and crude) 01/01/2004 31/12/2500 -15132991 01/01/1988 31/12/2003 LIBEN Palm kernel oil and its liquid fractions, whether or not refined, but not chemically modified, in immediate packings of > 1 kg or put up otherwise (excl. for technical or industrial uses and crude) 01/01/1988 31/12/2003 -15132999 01/01/1988 31/12/2003 LIBEN Babassu oil and its liquid fractions, whether or not refined, but not chemically modified, in immediate packings of > 1 kg or put up otherwise (excl. for technical or industrial uses and crude) 01/01/1988 31/12/2003 -1513S4 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1513 and SITC section 4 01/01/1997 31/12/2500 -1513S422 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1513 and SITC group 422 01/01/1997 31/12/2500 -1514 01/01/1988 31/12/2500 LIBEN Rape, colza or mustard oil and fractions thereof, whether or not refined, but not chemically modified 01/01/1988 31/12/2500 -151410 01/01/1988 31/12/2001 LIBEN Crude rape, colza or mustard oil 01/01/1988 31/12/2001 -15141010 01/01/1988 31/12/2001 LIBEN Crude rape, colza or mustard oil, for technical or industrial uses (excl. for manufacture of foodstuffs) 01/01/1988 31/12/2001 -15141090 01/01/1988 31/12/2001 LIBEN Crude rape, colza or mustard oil (excl. for technical or industrial uses) 01/01/1988 31/12/2001 -151411 01/01/2002 31/12/2500 LIBEN Low erucic acid rape or colza oil "fixed oil which has an erucic acid content of < 2%", crude 01/01/2002 31/12/2500 -15141110 01/01/2002 31/12/2500 LIBEN Low erucic acid rape or colza oil "fixed oil which has an erucic acid content of < 2%", crude, for technical or industrial uses (excl. for manufacture of foodstuffs for human consumption) 01/01/2002 31/12/2500 -15141190 01/01/2002 31/12/2500 LIBEN Low erucic acid rape or colza oil "fixed oil which has an erucic acid content of < 2%", crude (excl. for technical or industrial uses) 01/01/2002 31/12/2500 -151419 01/01/2002 31/12/2500 LIBEN Low erucic acid rape or colza oil "fixed oil which has an erucic acid content of < 2%" and its fractions, whether or not refined, but not chemically modified (excl. crude) 01/01/2002 31/12/2500 -15141910 01/01/2002 31/12/2500 LIBEN Low erucic acid rape or colza oil "fixed oil which has an erucic acid content of < 2%" and its fractions, whether or not refined, but not chemically modified, for technical or industrial uses (excl. for manufacture of foodstuffs for human consumption and crude) 01/01/2002 31/12/2500 -15141990 01/01/2002 31/12/2500 LIBEN Low erucic acid rape or colza oil "fixed oil which has an erucic acid content of < 2%" and its fractions, whether or not refined, but not chemically modified (excl. for technical or industrial uses and crude) 01/01/2002 31/12/2500 -151490 01/01/1988 31/12/2001 LIBEN Rape, colza or mustard oil and fractions thereof, whether or not refined, but not chemically modified (excl. crude) 01/01/1988 31/12/2001 -15149010 01/01/1988 31/12/2001 LIBEN Rape, colza or mustard oil and fractions thereof, whether or not refined, but not chemically modified, for technical or industrial uses (excl. for manufacture of foodstuffs and crude) 01/01/1988 31/12/2001 -15149090 01/01/1988 31/12/2001 LIBEN Rape, colza or mustard oil and fractions thereof, whether or not refined, but not chemically modified (excl. for technical or industrial uses and crude) 01/01/1988 31/12/2001 -151491 01/01/2002 31/12/2500 LIBEN High erucic acid rape or colza oil "fixed oil which has an erucic acid content of >= 2%" and mustard oil, crude 01/01/2002 31/12/2500 -15149110 01/01/2002 31/12/2500 LIBEN High erucic acid rape or colza oil "fixed oil which has an erucic acid content of >= 2%", and mustard oil, crude, for technical or industrial uses (excl. for manufacture of foodstuffs for human consumption) 01/01/2002 31/12/2500 -15149190 01/01/2002 31/12/2500 LIBEN High erucic acid rape or colza oil "fixed oil which has an erucic acid content of >= 2%", and mustard oil, crude (excl. for technical or industrial uses) 01/01/2002 31/12/2500 -151499 01/01/2002 31/12/2500 LIBEN High erucic acid rape or colza oil "fixed oil which has an erucic acid content of >= 2%", and mustard oil, and fractions thereof, whether or not refined, but not chemically modified (excl. crude) 01/01/2002 31/12/2500 -15149910 01/01/2002 31/12/2500 LIBEN High erucic acid rape or colza oil "fixed oil which has an erucic acid content of >= 2%", and mustard oil, and fractions thereof, whether or not refined, but not chemically modified, for technical or industrial uses (excl. for manufacture of foodstuffs for human consumption and crude) 01/01/2002 31/12/2500 -15149990 01/01/2002 31/12/2500 LIBEN High erucic acid rape or colza oil "fixed oil which has an erucic acid content of >= 2%", and mustard oil, and fractions thereof, whether or not refined, but not chemically modified (excl. for technical or industrial uses and crude) 01/01/2002 31/12/2500 -1515 01/01/1988 31/12/2500 LIBEN Fixed vegetable fats and oils, incl. jojoba oil, and their fractions, whether or not refined, but not chemically modified (excl. soya-bean, groundnut, olive, palm, sunflower-seed, safflower, cotton-seed, coconut, palm kernel, babassu, rape, colza and mustard oil) 01/01/1988 31/12/2500 -151511 01/01/1988 31/12/2500 LIBEN Crude linseed oil 01/01/1988 31/12/2500 -15151100 01/01/1988 31/12/2500 LIBEN Crude linseed oil 01/01/1988 31/12/2500 -151519 01/01/1988 31/12/2500 LIBEN Linseed oil and fractions thereof, whether or not refined, but not chemically modified (excl. crude) 01/01/1988 31/12/2500 -15151910 01/01/1988 31/12/2500 LIBEN Linseed oil and fractions thereof, whether or not refined, but not chemically modified, for technical or industrial uses (excl. crude and for manufacture of foodstuffs) 01/01/1988 31/12/2500 -15151990 01/01/1988 31/12/2500 LIBEN Linseed oil and fractions thereof, whether or not refined, but not chemically modified (excl. for technical or industrial uses and crude) 01/01/1988 31/12/2500 -151521 01/01/1988 31/12/2500 LIBEN Crude maize oil 01/01/1988 31/12/2500 -15152110 01/01/1988 31/12/2500 LIBEN Crude maize oil, for technical or industrial uses (excl. for manufacture of foodstuffs) 01/01/1988 31/12/2500 -15152190 01/01/1988 31/12/2500 LIBEN Crude maize oil (excl. for technical or industrial uses) 01/01/1988 31/12/2500 -151529 01/01/1988 31/12/2500 LIBEN Maize oil and fractions thereof, whether or not refined, but not chemically modified (excl. crude) 01/01/1988 31/12/2500 -15152910 01/01/1988 31/12/2500 LIBEN Maize oil and fractions thereof, whether or not refined, but not chemically modified, for industrial uses (excl. crude and for manufacture of foodstuffs) 01/01/1988 31/12/2500 -15152990 01/01/1988 31/12/2500 LIBEN Maize oil and fractions thereof, whether or not refined, but not chemically modified (excl. for industrial uses and crude) 01/01/1988 31/12/2500 -151530 01/01/1988 31/12/2500 LIBEN Castor oil and fractions thereof, whether or not refined, but not chemically modified 01/01/1988 31/12/2500 -15153010 01/01/1988 31/12/2500 LIBEN Castor oil and fractions thereof, whether or not refined, but not chemically modified, for production of aminoundecanoic acid for manufacture of synthetic textile fibres or artificial plastic materials 01/01/1988 31/12/2500 -15153090 01/01/1988 31/12/2500 LIBEN Castor oil and fractions thereof, whether or not refined, but not chemically modified (excl. for production of aminoundecanoic acid for manufacture of synthetic textile fibres or artificial plastic materials) 01/01/1988 31/12/2500 -151540 01/01/1988 31/12/2006 LIBEN Tung oil and its fractions, whether or not refined, but not chemically modified 01/01/1988 31/12/2006 -15154000 01/01/1988 31/12/2006 LIBEN Tung oil and its fractions, whether or not refined, but not chemically modified 01/01/1988 31/12/2006 -151550 01/01/1988 31/12/2500 LIBEN Sesame oil and its fractions, whether or not refined, but not chemically modified 01/01/1988 31/12/2500 -15155011 01/01/1988 31/12/2500 LIBEN Crude sesame oil, for technical or industrial uses (excl. for manufacture of foodstuffs) 01/01/1988 31/12/2500 -15155019 01/01/1988 31/12/2500 LIBEN Crude sesame oil (excl. for technical or industrial uses) 01/01/1988 31/12/2500 -15155091 01/01/1988 31/12/2500 LIBEN Sesame oil and its fractions, whether or not refined, but not chemically modified, for technical or industrial uses (excl. crude) 01/01/1988 31/12/2500 -15155099 01/01/1988 31/12/2500 LIBEN Sesame oil and its fractions, whether or not refined, but not chemically modified (excl. for technical or industrial uses and crude) 01/01/1988 31/12/2500 -151560 01/01/1988 31/12/2001 LIBEN Jojoba oil and its fractions, whether or not refined, but not chemically modified 01/01/1988 31/12/2001 -15156000 01/01/2001 31/12/2001 LIBEN Jojoba oil and its fractions, whether or not refined, but not chemically modified 01/01/2001 31/12/2001 -15156010 01/01/1988 31/12/2000 LIBEN Crude jojoba oil 01/01/1988 31/12/2000 -15156090 01/01/1988 31/12/2000 LIBEN Jojoba oil and its fractions, whether or not refined, but not chemically modified (excl. crude) 01/01/1988 31/12/2000 -151590 01/01/1988 31/12/2500 LIBEN Fixed vegetable fats and oils and their fractions, whether or not refined, but not chemically modified (excl. soya-bean, groundnut, olive, palm, sunflower-seed, safflower, cotton-seed, coconut, palm kernel, babassu, rape, colza and mustard, linseed, maize, castor and sesame oil) 01/01/1988 31/12/2500 -15159010 01/01/1988 31/12/2001 LIBEN Oiticica oils, myrtle and Japan wax and their fractions, whether or not refined, but not chemically modified 01/01/1988 31/12/2001 -15159011 01/01/2007 31/12/2500 LIBEN Tung, jojoba and oiticica oils, myrtle and Japan wax and their fractions, whether or not refined, but not chemically modified 01/01/2007 31/12/2500 -15159015 01/01/2002 31/12/2006 LIBEN Jojoba and oiticica oils, myrtle and Japan wax and their fractions, whether or not refined, but not chemically modified 01/01/2002 31/12/2006 -15159021 01/01/1988 31/12/2500 LIBEN Crude tobacco-seed oil, for technical or industrial uses (excl. for manufacture of foodstuffs) 01/01/1988 31/12/2500 -15159029 01/01/1988 31/12/2500 LIBEN Crude tobacco-seed oil (excl. for technical or industrial uses) 01/01/1988 31/12/2500 -15159031 01/01/1988 31/12/2500 LIBEN Tobacco-seed oil and its fractions, whether or not refined, but not chemically modified, for technical or industrial uses (excl. for manufacture of foodstuffs and crude) 01/01/1988 31/12/2500 -15159039 01/01/1988 31/12/2500 LIBEN Tobacco-seed oil and its fractions, whether or not refined, but not chemically modified (excl. for technical or industrial uses and crude) 01/01/1988 31/12/2500 -15159040 01/01/1988 31/12/2500 LIBEN Crude fixed vegetable fats and oils and their fractions, for technical or industrial uses (excl. for production of foodstuffs, soya-bean, groundnut, olive, palm, sunflower-seed, safflower, cotton-seed, coconut, palm kernel, babassu, rape, colza and mustard, linseed, maize, castor, tung, sesame, jojoba, oiticica, myrtle, Japan wax and tobacco-seed oil) 01/01/1988 31/12/2500 -15159051 01/01/1988 31/12/2500 LIBEN Solid crude fixed vegetable fats and oils, in immediate packings of <= 1 kg (excl. for technical or industrial uses and soya-bean, groundnut, olive, palm, sunflower-seed, safflower, cotton-seed, coconut, palm kernel, babassu, rape, colza and mustard, linseed, maize, castor, tung, sesame, jojoba, oiticica, myrtle, Japan wax and tobacco-seed oil) 01/01/1988 31/12/2500 -15159059 01/01/1988 31/12/2500 LIBEN Crude fixed vegetable fats and oils, in immediate packings of a content of > 1 kg, or crude, liquid (excl. those for technical or industrial uses; soya-bean, peanut, olive, palm, sunflower, safflower, cotton-seed, coconut, palm kernel, babassu, rubsen, mustard seed, linseed, maize germ, castor, tung, sesame, jojoba or oiticica oil; myrtle wax, japan wax and tobacco seed oil) 01/01/1988 31/12/2500 -15159060 01/01/1988 31/12/2500 LIBEN Vegetable fats and oils and their fractions, whether or not refined (excl. chemically modified) for technical or industrial uses (excl. for the manufacture of foodstuffs; crude fats and oils; soya-bean, peanut, olive, palm, sunflower, safflower, cotton-seed, coconut, palm kernel, babassu, rubsen, mustard seed, linseed, maize germ, castor, tung, sesame, jojoba or oiticica oil; myrtle wax, japan wax and tobacco seed oil) 01/01/1988 31/12/2500 -15159091 01/01/1988 31/12/2500 LIBEN Solid fixed vegetable fats and oils and their fractions, whether or not refined, but not chemically modified, in immediate packings of <= 1 kg, n.e.s. (excl. for technical or industrial uses and crude fats and oils) 01/01/1988 31/12/2500 -15159099 01/01/1988 31/12/2500 LIBEN Solid fixed vegetable fats and oils and their fractions, whether or not refined, but not chemically modified, in immediate packings of > 1 kg, or liquid, n.e.s. (excl. for technical or industrial uses and crude fats and oils) 01/01/1988 31/12/2500 -1515S4 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1515 and SITC section 4 01/01/1997 31/12/2500 -1515S421 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1515 and SITC group 421 01/01/1997 31/12/2500 -1516 01/01/1988 31/12/2500 LIBEN Animal or vegetable fats and oils and their fractions, partly or wholly hydrogenated, inter-esterified, re-esterified or elaidinised, whether or not refined, but not further prepared 01/01/1988 31/12/2500 -151610 01/01/1988 31/12/2500 LIBEN Animal fats and oils and their fractions, partly or wholly hydrogenated, inter-esterified, re-esterified or elaidinised, whether or not refined, but not further prepared 01/01/1988 31/12/2500 -15161010 01/01/1988 31/12/2500 LIBEN Animal fats, oils and their fractions, partly or wholly hydrogenated, inter-esterified, re-esterified or elaidinised, whether or not refined, but not further prepared, in immediate packings of <= 1 kg 01/01/1988 31/12/2500 -15161090 01/01/1988 31/12/2500 LIBEN Animal fats, oils and their fractions, partly or wholly hydrogenated, inter-esterified, re-esterified or elaidinised, whether or not refined, but not further prepared, in immediate packings of > 1 kg or put up otherwise 01/01/1988 31/12/2500 -151620 01/01/1988 31/12/2500 LIBEN Vegetable fats and oils and their fractions, partly or wholly hydrogenated, inter-esterified, re-esterified or elaidinised, whether or not refined, but not further prepared 01/01/1988 31/12/2500 -15162010 01/01/1988 31/12/2500 LIBEN Hydrogenated castor oil, so called "opal wax" 01/01/1988 31/12/2500 -15162091 01/01/1988 31/12/2500 LIBEN Vegetable fats and oils and their fractions, partly or wholly hydrogenated, inter-esterified, re-esterified or elaidinised, whether or not refined, in immediate packings of <= 1 kg (excl. hydrogenated castor oil "opal wax" and further prepared) 01/01/1988 31/12/2500 -15162095 01/01/1995 31/12/2500 LIBEN Rapeseed, colza, linseed, sunflower-seed, illipe, karite, makore, touloucouna or babassu oils and their fractions, partly or wholly hydrogenated, inter-esterified, re-esterified or elaidinised, whether or not refined, for technical or industrial uses, in immediate packings with a net content of > 1 kg or otherwise prepared (excl. for the manufacture of foodstuffs for human consumption) 01/01/1995 31/12/2500 -15162096 01/01/1995 31/12/2500 LIBEN Groundnut, cotton-seed, soya-bean or sunflower-seed oil and their fractions (excl. those of subheading 1516.20.95); other oils and their fractions containing < 50% by weight of free fatty acids, in immediate packings with a net content of > 1 kg or otherwise prepared (excl. palm kernel, illipe, coconut "copra", rapeseed or copaiba oils, and oils of subheading 1516.20.95) 01/01/1995 31/12/2500 -15162098 01/01/1995 31/12/2500 LIBEN Vegetable fats and oils and their fractions, partly or wholly hydrogenated, inter-esterified, re-esterified or elaidinised, whether or not refined, in immediate packings of > 1 kg or in another form (excl. fats and oils and their fractions, further prepared, hydrogenated castor oil and subheading 1516.20.95 and 1516.20.96) 01/01/1995 31/12/2500 -15162099 01/01/1988 31/12/1994 LIBEN Vegetable fats, oils and their fractions, partly or wholly hydrogenated, inter-esterified, re-esterified or elaidinised, whether or not refined, in immediate packings of > 1 kg (excl. 'opal wax' and further prepared) 01/01/1988 31/12/1994 -1516S4 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1516 and SITC section 4 01/01/1997 31/12/2500 -1516S431 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1516 and SITC group 431 01/01/1997 31/12/2500 -1517 01/01/1988 31/12/2500 LIBEN Margarine, other edible mixtures or preparations of animal or vegetable fats or oils and edible fractions of different fats or oils (excl. fats, oils and their fractions, partly or wholly hydrogenated, inter-esterified, re-esterified or elaidinised, whether or not refined, but not further prepared, and mixtures of olive oils and their fractions) 01/01/1988 31/12/2500 -151710 01/01/1988 31/12/2500 LIBEN Margarine (excl. liquid) 01/01/1988 31/12/2500 -15171010 01/01/1988 31/12/2500 LIBEN Margarine containing > 10% but <= 15% milkfats (excl. liquid) 01/01/1988 31/12/2500 -15171090 01/01/1988 31/12/2500 LIBEN Margarine containing <= 10% milkfats (excl. liquid) 01/01/1988 31/12/2500 -151790 01/01/1988 31/12/2500 LIBEN Edible mixtures or preparations of animal or vegetable fats or oils and edible fractions of different fats or oils (excl. fats, oils and their fractions, partly or wholly hydrogenated, inter-esterified, re-esterified or elaidinised, whether or not refined, but not further prepared, mixtures of olive oils and their fractions, and solid margarine) 01/01/1988 31/12/2500 -15179010 01/01/1988 31/12/2500 LIBEN Edible mixtures or preparations of animal or vegetable fats or oils or of fractions of different fats or oils, with a milkfat content, by weight, of > 10% and <= 15% (excl. fats and oils and their fractions, partly or wholly hydrogenated, inter-esterified, re-esterified or elaidinised, whether or not refined, but not further prepared, mixtures of olive oils, olive oil fractions and fixed margarine) 01/01/1988 31/12/2500 -15179091 01/01/1988 31/12/2500 LIBEN Edible fixed vegetable oils, fluid, mixed, containing <= 10% milkfats (excl. oils, partly or wholly hydrogenated, inter-esterified, re-esterified or elaidinised, whether or not refined, but not further prepared, and mixtures of olive oils) 01/01/1988 31/12/2500 -15179093 01/01/1988 31/12/2500 LIBEN Edible mixtures or preparations for mould-release preparations, containing <= 10% milkfats 01/01/1988 31/12/2500 -15179099 01/01/1988 31/12/2500 LIBEN Edible mixtures or preparations of animal or vegetable fats or oils and edible fractions of different fats or oils, containing <= 10% milkfats (excl. fixed vegetable oils, fluid, mixed, edible mixtures or preparations for mould-release preparations, and solid margarine) 01/01/1988 31/12/2500 -1518 01/01/1988 31/12/2500 LIBEN Animal or vegetable fats and oils and their fractions, boiled, oxidised, dehydrated, sulphurised, blown, polymerised by heat in vacuum or in inert gas or otherwise chemically modified, inedible mixtures or preparations of animal or vegetable fats or oils or of fractions of different fats or oils, n.e.s. 01/01/1988 31/12/2500 -151800 01/01/1988 31/12/2500 LIBEN Animal or vegetable fats and oils and their fractions, boiled, oxidised, dehydrated, sulphurised, blown, polymerised by heat in vacuum or in inert gas or otherwise chemically modified, inedible mixtures or preparations of animal or vegetable fats or oils or of fractions of different fats or oils, n.e.s. 01/01/1988 31/12/2500 -15180010 01/01/1988 31/12/2500 LIBEN Linoxyn 01/01/1988 31/12/2500 -15180031 01/01/1988 31/12/2500 LIBEN Crude fixed vegetable oils, fluid, mixed, inedible, n.e.s., for technical or industrial uses (excl. for production of foodstuffs) 01/01/1988 31/12/2500 -15180039 01/01/1988 31/12/2500 LIBEN Fixed vegetable oils, fluid, mixed, inedible, n.e.s., for technical or industrial uses (excl. crude oils and for production of foodstuffs) 01/01/1988 31/12/2500 -15180090 01/01/1988 31/12/1992 LIBEN Animal or vegetable fats and oils and fractions thereof, boiled, oxidised, dehydrated, sulphurised, blown, polymerised by heat in vacuum or in inert gas or otherwise chemically modified, inedible mixtures and preparations of animal or vegetable fats and oils, and inedible fractions of various fats and oils n.e.s. 01/01/1988 31/12/1992 -15180091 01/01/1993 31/12/2500 LIBEN Animal or vegetable fats and oils and their fractions, boiled, oxidised, dehydrated, sulphurised, blown, polymerised by heat in vacuum or in inert gas or otherwise chemically modified (excl. those of heading 1516 and linoxyn [oxidised linseed oil]) 01/01/1993 31/12/2500 -15180095 01/01/1993 31/12/2500 LIBEN Inedible mixtures or preparations "yellow grease" of animal or of animal and vegetable fats and oils and their fractions 01/01/1993 31/12/2500 -15180099 01/01/1993 31/12/2500 LIBEN Mixtures and preparations of animal or vegetable fats and oils and of fractions of various fats and oils, inedible, n.e.s., in chapter 15 01/01/1993 31/12/2500 -1519 01/01/1988 31/12/1995 LIBEN Industrial monocarboxylic fatty acids; acid oils from refining; industrial fatty alcohols 01/01/1988 31/12/1995 -151911 01/01/1988 31/12/1995 LIBEN Industrial stearic acid 01/01/1988 31/12/1995 -15191100 01/01/1988 31/12/1995 LIBEN Industrial stearic acid 01/01/1988 31/12/1995 -151912 01/01/1988 31/12/1995 LIBEN Industrial oleic acid 01/01/1988 31/12/1995 -15191200 01/01/1988 31/12/1995 LIBEN Industrial oleic acid 01/01/1988 31/12/1995 -151913 01/01/1988 31/12/1995 LIBEN Industrial tall oil fatty acids 01/01/1988 31/12/1995 -15191300 01/01/1988 31/12/1995 LIBEN Industrial tall oil fatty acids 01/01/1988 31/12/1995 -151919 01/01/1988 31/12/1995 LIBEN Fatty acids, industrial, monocarboxylic; acid oils from refining (excl. stearic acid, oleic acid and tall oil fatty acids) 01/01/1988 31/12/1995 -15191900 01/01/1988 31/12/1990 LIBEN Industrial monocarboxylic fatty acids (excl. stearic acid, oleic acid, tall oil fatty acids) 01/01/1988 31/12/1990 -15191910 01/01/1991 31/12/1995 LIBEN Fatty acids, distilled 01/01/1991 31/12/1995 -15191930 01/01/1991 31/12/1995 LIBEN Fatty acid distillate 01/01/1991 31/12/1995 -15191990 01/01/1991 31/12/1991 LIBEN Fatty acids, industrial, monocarboxylic; acid oils from refining (excl. stearic acid, oleic acid and tall oil fatty acids, distiled fatty acids and fatty acid distillate) 01/01/1991 31/12/1991 -15191990 01/01/1992 31/12/1995 LIBEN Fatty acids, industrial, monocarboxylic; acid oils from refining (excl. stearic acid, oleic acid and tall oil fatty acids, distiled fatty acids and fatty acid distillate) 01/01/1992 31/12/1995 -151920 01/01/1988 31/12/1995 LIBEN Fatty alcohols, industrial 01/01/1988 31/12/1995 -15192000 01/01/1988 31/12/1991 LIBEN Acid oils from refining. 01/01/1988 31/12/1991 -15192000 01/01/1992 31/12/1995 LIBEN Fatty alcohols, industrial 01/01/1992 31/12/1995 -151930 01/01/1988 31/12/1991 LIBEN Industrial fatty alcohols 01/01/1988 31/12/1991 -15193000 01/01/1988 31/12/1991 LIBEN Industrial fatty alcohols 01/01/1988 31/12/1991 -1520 01/01/1988 31/12/2500 LIBEN Glycerol, crude; glycerol waters and glycerol lyes 01/01/1988 31/12/2500 -152000 01/01/1996 31/12/2500 LIBEN Glycerol, crude; glycerol waters and glycerol lyes 01/01/1996 31/12/2500 -15200000 01/01/1996 31/12/2500 LIBEN Glycerol, crude; glycerol waters and glycerol lyes 01/01/1996 31/12/2500 -152010 01/01/1988 31/12/1995 LIBEN Glycerol, crude; waters and lyes 01/01/1988 31/12/1995 -15201000 01/01/1988 31/12/1995 LIBEN Glycerol, crude; waters and lyes 01/01/1988 31/12/1995 -152090 01/01/1988 31/12/1995 LIBEN Glycerol, whether or not pure, incl. synthetic (excl. crude and glycerol waters and glycerol lyes) 01/01/1988 31/12/1995 -15209000 01/01/1988 31/12/1995 LIBEN Glycerol, whether or not pure, incl. synthetic (excl. crude and glycerol waters and glycerol lyes) 01/01/1988 31/12/1995 -1521 01/01/1988 31/12/2500 LIBEN Vegetable waxes, beeswax, other insect waxes and spermaceti, whether or not refined or coloured (excl. triglycerides) 01/01/1988 31/12/2500 -152110 01/01/1988 31/12/2500 LIBEN Vegetable waxes, whether or not refined or coloured (excl. triglycerides) 01/01/1988 31/12/2500 -15211000 01/01/2001 31/12/2500 LIBEN Vegetable waxes, whether or not refined or coloured (excl. triglycerides) 01/01/2001 31/12/2500 -15211010 01/01/1988 31/12/2000 LIBEN Crude vegetable waxes (excl. triglycerides) 01/01/1988 31/12/2000 -15211090 01/01/1988 31/12/2000 LIBEN Vegetable waxes, whether or not refined or coloured (excl. crude vegetable waxes and triglycerides) 01/01/1988 31/12/2000 -152190 01/01/1988 31/12/2500 LIBEN Beeswax, other insect waxes and spermaceti, whether or not refined or coloured 01/01/1988 31/12/2500 -15219010 01/01/1988 31/12/2500 LIBEN Spermaceti, whether or not refined or coloured 01/01/1988 31/12/2500 -15219091 01/01/1988 31/12/2500 LIBEN Beeswax and other insect waxes, crude 01/01/1988 31/12/2500 -15219099 01/01/1988 31/12/2500 LIBEN Beeswax and other insect waxes, whether or not refined or coloured (excl. crude) 01/01/1988 31/12/2500 -1522 01/01/1988 31/12/2500 LIBEN Degras; residues resulting from the treatment of fatty substances or animal or vegetable waxes 01/01/1988 31/12/2500 -152200 01/01/1988 31/12/2500 LIBEN Degras; residues resulting from the treatment of fatty substances or animal or vegetable waxes 01/01/1988 31/12/2500 -15220010 01/01/1988 31/12/2500 LIBEN Degras 01/01/1988 31/12/2500 -15220031 01/01/1988 31/12/2500 LIBEN Soapstocks containing oil with characteristics of olive oil 01/01/1988 31/12/2500 -15220039 01/01/1988 31/12/2500 LIBEN Residues from treatment of fatty substances containing oil with characteristics of olive oil (excl. soapstocks) 01/01/1988 31/12/2500 -15220091 01/01/1988 31/12/2500 LIBEN Oil foots and dregs; soapstocks (excl. those containing oil with characteristics of olive oil) 01/01/1988 31/12/2500 -15220099 01/01/1988 31/12/2500 LIBEN Residues from treatment of fatty substances or animal and vegetable waxes (excl. those containing oil with characteristics of olive oil, oil foots and dregs and soapstocks) 01/01/1988 31/12/2500 -15CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 15 01/01/2002 31/12/2500 -15CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 15 01/01/2002 31/12/2500 -15CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 15 01/01/2002 31/12/2500 -15MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -15MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -15MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -15SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 15 01/01/1988 31/12/2500 -15SSS0 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 15 and SITC section 0 01/01/1997 31/12/2500 -15SSS091 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 15 and SITC group 091 01/01/1997 31/12/2500 -15SSS4 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 15 and SITC section 4 01/01/1992 31/12/2500 -15SSS411 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 15 and SITC group 411 01/01/1997 31/12/2500 -15SSS421 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 15 and SITC group 421 01/01/1997 31/12/2500 -15SSS422 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 15 and SITC group 422 01/01/1997 31/12/2500 -15SSS431 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 15 and SITC group 431 01/01/1992 31/12/2500 -15SSS5 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 15 and SITC section 5 01/01/1997 31/12/2500 -15SSS512 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 15 and SITC group 512 01/01/1997 31/12/2500 -15SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 15 and SITC section 9 01/01/1988 31/12/1996 -15SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 15 and SITC section 9 01/01/1997 31/12/2500 -15SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 15 and SITC group 999 01/01/1988 31/12/1996 -15SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 15 and SITC group 999 01/01/1997 31/12/2500 -16 01/01/1988 31/12/2500 LIBEN PREPARATIONS OF MEAT, OF FISH OR OF CRUSTACEANS, MOLLUSCS OR OTHER AQUATIC INVERTEBRATES 01/01/1988 31/12/2500 -1601 01/01/1988 31/12/2500 LIBEN Sausages and similar products, of meat, offal or blood; food preparations based on these products 01/01/1988 31/12/2500 -160100 01/01/1988 31/12/2500 LIBEN Sausages and similar products, of meat, offal or blood; food preparations based on these products 01/01/1988 31/12/2500 -16010010 01/01/1988 31/12/2500 LIBEN Liver sausages and similar products and food preparations based thereon 01/01/1988 31/12/2500 -16010091 01/01/1988 31/12/2500 LIBEN Uncooked sausages, dry or for spreading, of meat, offal or blood (excl. liver) 01/01/1988 31/12/2500 -16010099 01/01/1988 31/12/2500 LIBEN Sausages and similar products of meat, offal or blood and food preparations based thereon (excl. liver sausages and uncooked sausages) 01/01/1988 31/12/2500 -1602 01/01/1988 31/12/2500 LIBEN Prepared or preserved meat, offal or blood (excl. sausages and similar products, and meat extracts and juices) 01/01/1988 31/12/2500 -160210 01/01/1988 31/12/2500 LIBEN Homogenised prepared meat, offal or blood, put up for retail sale as infant food or for dietetic purposes, in containers of <= 250 g 01/01/1988 31/12/2500 -16021000 01/01/1988 31/12/2500 LIBEN Homogenised prepared meat, offal or blood, put up for retail sale as infant food or for dietetic purposes, in containers of <= 250 g 01/01/1988 31/12/2500 -160220 01/01/1988 31/12/2500 LIBEN Preparations of liver of any animal (excl. sausages and similar products and finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g) 01/01/1988 31/12/2500 -16022010 01/01/1988 31/12/1992 LIBEN Preparations of goose or duck liver (excl. sausages and similar products and homogenized preparations of heading 1602 10 00) 01/01/1988 31/12/1992 -16022010 01/01/2008 31/12/2500 LIBEN Preparations of goose or duck liver (excl. sausages and similar products and finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g) 01/01/2008 31/12/2500 -16022011 01/01/1993 31/12/2007 LIBEN Preparations of goose or duck liver, containing >= 75% by weight of fatty livers (excl. sausages and similar products and finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g) 01/01/1993 31/12/2007 -16022019 01/01/1993 31/12/2007 LIBEN Preparations of goose or duck liver (excl. containing >= 75% by weight of fatty livers, sausages and similar products and finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g) 01/01/1993 31/12/2007 -16022090 01/01/1988 31/12/2500 LIBEN Preparations of liver (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g and goose or duck liver) 01/01/1988 31/12/2500 -160231 01/01/1988 31/12/2500 LIBEN Meat or offal of turkeys "Gallus domesticus", prepared or preserved (excl. sausages and similar products, and finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1988 31/12/2500 -16023111 01/01/1988 31/12/2500 LIBEN Preparations containing exclusively uncooked turkey meat (excl. sausages and similar products) 01/01/1988 31/12/2500 -16023119 01/01/1988 31/12/2500 LIBEN Meat or offal of turkeys "poultry", prepared or preserved, containing >= 57% by weight of meat or offal of poultry (excl. containing exclusively uncooked turkey meat, sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts) 01/01/1988 31/12/2500 -16023130 01/01/1988 31/12/2011 LIBEN Meat or offal of turkeys "poultry", prepared or preserved, containing >= 25% but < 57% by weight of meat or offal of poultry (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts) 01/01/1988 31/12/2011 -16023180 01/01/2012 31/12/2500 LIBEN Meat or offal of domestic turkeys, prepared or preserved, containing < 57% by weight "excl. bones" of meat or offal of poultry (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts) 01/01/2012 31/12/2500 -16023190 01/01/1988 31/12/2011 LIBEN Meat or offal of turkeys "poultry", prepared or preserved (excl. containing >= 25% of meat or offal of poultry, sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1988 31/12/2011 -160232 01/01/1996 31/12/2500 LIBEN Meat or offal of fowls of the species "Gallus domesticus", prepared or preserved (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1996 31/12/2500 -16023211 01/01/1996 31/12/2500 LIBEN Uncooked, prepared or preserved meat or meat offal of fowls of the species Gallus domesticus containing >= 57% meat or offal of poultry (excl. sausages and similar products, and preparations of liver) 01/01/1996 31/12/2500 -16023219 01/01/1996 31/12/2500 LIBEN Cooked, prepared or preserved meat or meat offal of fowls of the species Gallus domesticus containing >= 57% meat or offal of poultry (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts) 01/01/1996 31/12/2500 -16023230 01/01/1996 31/12/2500 LIBEN Prepared or preserved meat or meat offal of fowls of the species Gallus domesticus containing >= 25% but < 57% of poultry meat or offal (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts) 01/01/1996 31/12/2500 -16023290 01/01/1996 31/12/2500 LIBEN Prepared or preserved meat or meat offal of fowls of the species Gallus domesticus (excl. that containing >= 25% meat or offal of poultry, meat or offal of turkeys or guinea fowl, sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1996 31/12/2500 -160239 01/01/1988 31/12/2500 LIBEN Prepared or preserved meat or meat offal of ducks, geese and guinea fowl of the species domesticus (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1988 31/12/2500 -16023911 01/01/1988 31/12/1995 LIBEN Uncooked preparations containing >= 57% poultry meat or offal (excl. turkey, sausages and similar products, and preparations of liver) 01/01/1988 31/12/1995 -16023919 01/01/1988 31/12/1995 LIBEN Cooked preparations containing >= 57% poultry meat or offal (excl. turkey, sausages and similar products, homogenized preparations of heading 1602.10.00, preparations of liver and meat extracts) 01/01/1988 31/12/1995 -16023921 01/01/1996 31/12/2500 LIBEN Uncooked, prepared or preserved meat or meat offal of ducks, geese and guinea fowl of the species domesticus, containing >= 57% meat or offal of poultry (excl. sausages and similar products, and preparations of liver) 01/01/1996 31/12/2500 -16023929 01/01/1996 31/12/2500 LIBEN Cooked, prepared or preserved meat or meat offal of ducks, geese and guinea fowl of the species domesticus, containing >= 57% meat or offal of poultry (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts) 01/01/1996 31/12/2500 -16023930 01/01/1988 31/12/1995 LIBEN Poultry preparations containing >= 25% but < 57% meat or offal (excl. turkey, sausages and similar products, homogenized preparations of heading 1602.10.00, preparations of liver and meat extracts) 01/01/1988 31/12/1995 -16023940 01/01/1996 31/12/2011 LIBEN Prepared or preserved meat or meat offal of ducks, geese and guinea fowl of the species domesticus, containing >= 25% but < 57% meat or offal of poultry (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts) 01/01/1996 31/12/2011 -16023980 01/01/1996 31/12/2011 LIBEN Prepared or preserved meat or meat offal of ducks, geese and guinea fowl of the species domesticus (excl. that containing >= 25% meat or offal of poultry, and sausages and similar products, homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1996 31/12/2011 -16023985 01/01/2012 31/12/2500 LIBEN Prepared or preserved meat or meat offal of domestic ducks, geese and guinea fowls, containing < 57% by weight "excl. bones" meat or offal of poultry (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts) 01/01/2012 31/12/2500 -16023990 01/01/1988 31/12/1995 LIBEN Poultry preparations containing < 25% meat or offal (excl. turkey, sausages and similar products, homogenized preparations of heading 1602.10.00, preparations of liver and meat extracts and juices) 01/01/1988 31/12/1995 -160241 01/01/1988 31/12/2500 LIBEN Hams of swine and cuts thereof, prepared or preserved 01/01/1988 31/12/2500 -16024110 01/01/1988 31/12/2500 LIBEN Hams and cuts thereof, of domestic swine, prepared or preserved 01/01/1988 31/12/2500 -16024190 01/01/1988 31/12/2500 LIBEN Prepared or preserved hams and cuts thereof, of swine (excl. domestic) 01/01/1988 31/12/2500 -160242 01/01/1988 31/12/2500 LIBEN Prepared or preserved shoulders and cuts thereof, of swine 01/01/1988 31/12/2500 -16024210 01/01/1988 31/12/2500 LIBEN Prepared or preserved shoulders and cuts thereof, of domestic swine 01/01/1988 31/12/2500 -16024290 01/01/1988 31/12/2500 LIBEN Prepared or preserved shoulders and cuts thereof, of swine (excl. domestic) 01/01/1988 31/12/2500 -160249 01/01/1988 31/12/2500 LIBEN Prepared or preserved meat and offal of swine, incl. mixtures (excl. hams, shoulders and cuts thereof, sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purpose, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1988 31/12/2500 -16024911 01/01/1988 31/12/2500 LIBEN Prepared or preserved domestic swine loins and parts thereof, incl. mixtures of loins or hams (excl. collars) 01/01/1988 31/12/2500 -16024913 01/01/1988 31/12/2500 LIBEN Prepared or preserved domestic swine collars and parts thereof, incl. mixtures of collars and shoulders 01/01/1988 31/12/2500 -16024915 01/01/1988 31/12/2500 LIBEN Prepared or preserved mixtures of domestic swine hams, shoulders, loins, collars and parts thereof (excl. mixtures of only loins and hams or only collars and shoulders) 01/01/1988 31/12/2500 -16024919 01/01/1988 31/12/2500 LIBEN Meat or offal, incl. mixtures, of domestic swine, prepared or preserved, containing, by weight, >= 80% of meat or offal of any kind, incl. pork fat and fats of any kind or origin (excl. hams, shoulders, loins, collars and parts thereof, sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of livers and meat extracts) 01/01/1988 31/12/2500 -16024930 01/01/1988 31/12/2500 LIBEN Prepared or preserved meat, offal and mixtures, of domestic swine, containing >= 40% but < 80% meat or offal of any kind and fats of any kind (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts) 01/01/1988 31/12/2500 -16024950 01/01/1988 31/12/2500 LIBEN Prepared or preserved meat, offal and mixtures of domestic swine containing < 40% meat or offal of any kind and fats of any kind (excl. sausages and similar products, homogenised preparations for put up retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1988 31/12/2500 -16024990 01/01/1988 31/12/2500 LIBEN Prepared or preserved meat, offal and mixtures of swine (excl. domestic, hams, shoulders and parts thereof, sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1988 31/12/2500 -160250 01/01/1988 31/12/2500 LIBEN Prepared or preserved meat or offal of bovine animals (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1988 31/12/2500 -16025010 01/01/1988 31/12/2500 LIBEN Prepared or preserved meat or offal of bovine animals, uncooked, incl. mixtures of cooked meat or offal and uncooked meat or offal (excl. sausages and similar products, and preparations of liver) 01/01/1988 31/12/2500 -16025031 01/01/1993 31/12/2500 LIBEN Corned beef, in airtight containers 01/01/1993 31/12/2500 -16025039 01/01/1993 31/12/2007 LIBEN Meat or offal of bovine animals, prepared or preserved, cooked, in airtight containers (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, meat extracts and juices and corned beef) 01/01/1993 31/12/2007 -16025080 01/01/1993 31/12/2007 LIBEN Meat or offal of bovine animals, prepared or preserved, cooked (excl. meat or offal in airtight containers, sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1993 31/12/2007 -16025090 01/01/1988 31/12/1992 LIBEN Prepared or preserved meat or offal of bovine animals, cooked (excl. sausages and similar products, homogenized preparations of subheading 1602 10 00, preparations of liver and meat extracts and juices) 01/01/1988 31/12/1992 -16025095 01/01/2008 31/12/2500 LIBEN Meat or offal of bovine animals, prepared or preserved, cooked (excl. corned beef in airtight containers, sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/2008 31/12/2500 -160290 01/01/1988 31/12/2500 LIBEN Prepared or preserved meat, offal or blood (excl. meat or offal of poultry, swine and bovine animals, sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1988 31/12/2500 -16029010 01/01/1988 31/12/2500 LIBEN Preparations of blood of any animal (excl. sausages and similar products) 01/01/1988 31/12/2500 -16029031 01/01/1988 31/12/2500 LIBEN Prepared or preserved meat or meat offal of game or rabbits (excl. of wild pigs, sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1988 31/12/2500 -16029041 01/01/1996 31/12/2007 LIBEN Prepared or preserved meat or meat offal of reindeer (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1996 31/12/2007 -16029051 01/01/1988 31/12/2500 LIBEN Prepared or preserved meat or meat offal containing meat or offal of domestic swine (excl. of poultry, bovine animals, reindeer, game or rabbits, sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts) 01/01/1988 31/12/2500 -16029061 01/01/1988 31/12/2500 LIBEN Prepared or preserved meat or meat offal, uncooked, containing meat or offal of bovines, incl. mixtures of cooked or uncooked meat and cooked or uncooked offal (excl. of poultry, domestic swine, reindeer, game or rabbits, sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, and preparations of liver) 01/01/1988 31/12/2500 -16029069 01/01/1988 31/12/2500 LIBEN Prepared or preserved meat or meat offal, cooked, containing meat or offal of bovine animals (excl. of poultry, domestic swine, game or rabbits, sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1988 31/12/2500 -16029071 01/01/1988 31/12/1994 LIBEN Prepared or preserved meat or offal of sheep and goats, uncooked, incl. mixtures of cooked and uncooked meat or offal (excl. sausages and similar products, and preparations of liver) 01/01/1988 31/12/1994 -16029072 01/01/1995 31/12/2011 LIBEN Prepared or preserved meat or offal of sheep, uncooked, incl. mixtures of cooked and uncooked meat or offal (excl. sausages and similar products and preparations of liver) 01/01/1995 31/12/2011 -16029074 01/01/1995 31/12/2011 LIBEN Prepared or preserved meat or offal of goats, uncooked, incl. mixtures of cooked and uncooked meat or offal (excl. sausages and similar products and preparations of liver) 01/01/1995 31/12/2011 -16029076 01/01/1995 31/12/2011 LIBEN Prepared or preserved meat or offal of sheep, cooked (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1995 31/12/2011 -16029078 01/01/1995 31/12/2011 LIBEN Prepared or preserved meat or offal of goats, cooked (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1995 31/12/2011 -16029079 01/01/1988 31/12/1994 LIBEN Prepared or preserved meat or offal of sheep and goats, cooked (excl. sausages and similar products, homogenized preparations of subheading 1602 10 00, preparations of liver and meat extracts and juices) 01/01/1988 31/12/1994 -16029091 01/01/2012 31/12/2500 LIBEN Prepared or preserved meat or offal of sheep (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes in containers of a net weight of <= 250 g, preparations of liver, meat extracts, juices, and containing meat or offal of bovines or domestic swine) 01/01/2012 31/12/2500 -16029095 01/01/2012 31/12/2500 LIBEN Prepared or preserved meat or offal of goats (excl. sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes in containers of a net weight of <= 250 g, preparations of liver, meat extracts, juices, and containing meat or offal of bovines or domestic swine) 01/01/2012 31/12/2500 -16029098 01/01/1996 31/12/2007 LIBEN Prepared or preserved meat or meat offal (excl. of poultry, swine, bovine animals, reindeer, game or rabbits, sheep or goats, sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g, preparations of liver and meat extracts and juices) 01/01/1996 31/12/2007 -16029099 01/01/1988 31/12/1995 LIBEN Prepared or preserved meat or offal (excl. of poultry, swine, bovine animals, game or rabbit, sheep or goats, sausages and similar products, homogenized preparations of subheading 1602.10.00, preparations of liver and meat extracts and juices) 01/01/1988 31/12/1995 -16029099 01/01/2008 31/12/2500 LIBEN Prepared or preserved meat or meat offal (excl. of poultry, swine, bovine animals, game or rabbits, sheep or goats, sausages and similar products, finely homogenised preparations put up for retail sale as infant food or for dietetic purposes in containers of a net weight of <= 250 g, preparations of liver, meat extracts, juices, and containing meat or offal of bovines or domestic swine) 01/01/2008 31/12/2500 -1603 01/01/1988 31/12/2500 LIBEN Extracts and juices of meat, fish or crustaceans, molluscs and other aquatic invertebrates 01/01/1988 31/12/2500 -160300 01/01/1988 31/12/2500 LIBEN Extracts and juices of meat, fish or crustaceans, molluscs and other aquatic invertebrates 01/01/1988 31/12/2500 -16030010 01/01/1988 31/12/2500 LIBEN Extracts and juices of meat, fish, crustaceans, molluscs and other aquatic invertebrates, in immediate packings of <= 1 kg 01/01/1988 31/12/2500 -16030030 01/01/1988 31/12/2000 LIBEN Extracts and juices of meat, fish, crustaceans, molluscs and other aquatic invertebrates, in immediate packings of > 1 kg but < 20 kg 01/01/1988 31/12/2000 -16030080 01/01/2001 31/12/2500 LIBEN Extracts and juices of meat, fish, crustaceans, molluscs and other aquatic invertebrates, in immediate packings of > 1 kg or put up otherwise 01/01/2001 31/12/2500 -16030090 01/01/1988 31/12/2000 LIBEN Extracts and juices of meat, fish, crustaceans, molluscs and other aquatic invertebrates, in immediate packings of >= 20 kg or put up otherwise 01/01/1988 31/12/2000 -1604 01/01/1988 31/12/2500 LIBEN Prepared or preserved fish; caviar and caviar substitutes prepared from fish eggs 01/01/1988 31/12/2500 -160411 01/01/1988 31/12/2500 LIBEN Prepared or preserved salmon, whole or in pieces (excl. minced) 01/01/1988 31/12/2500 -16041100 01/01/1988 31/12/2500 LIBEN Prepared or preserved salmon, whole or in pieces (excl. minced) 01/01/1988 31/12/2500 -160412 01/01/1988 31/12/2500 LIBEN Prepared or preserved herrings, whole or in pieces (excl. minced) 01/01/1988 31/12/2500 -16041210 01/01/1988 31/12/2500 LIBEN Fillets of herring, raw, merely coated with butter or breadcrumbs, whether or not pre-fried in oil, frozen 01/01/1988 31/12/2500 -16041290 01/01/1988 31/12/1993 LIBEN Herrings, prepared or preserved, whole or in pieces (excl. minced herring, fillet of herring, raw, merely coated with butter or breadcrumbs, whether or not prefried in oil, frozen) 01/01/1988 31/12/1993 -16041291 01/01/1994 31/12/2500 LIBEN Herrings, prepared or preserved, whole or in pieces, in airtight containers (excl. minced herrings and herring fillets, raw, merely coated with batter or breadcrumbs, whether or not pre-fried in oil, frozen) 01/01/1994 31/12/2500 -16041299 01/01/1994 31/12/2500 LIBEN Herrings, prepared or preserved, whole or in pieces (excl. minced herrings and herring fillets, raw, merely coated with batter or breadcrumbs, whether or not pre-fried in oil, frozen and in airtight containers) 01/01/1994 31/12/2500 -160413 01/01/1988 31/12/2500 LIBEN Prepared or preserved sardines, sardinella and brisling or sprats, whole or in pieces (excl. minced) 01/01/1988 31/12/2500 -16041310 01/01/1988 31/12/1992 LIBEN Prepared or preserved sardines, whole or in pieces (excl. minced) 01/01/1988 31/12/1992 -16041311 01/01/1993 31/12/2500 LIBEN Sardines, prepared or preserved, whole or in pieces, in olive oil (excl. minced sardines) 01/01/1993 31/12/2500 -16041319 01/01/1993 31/12/2500 LIBEN Sardines, prepared or preserved, whole or in pieces (excl. minced sardines and sardines in olive oil) 01/01/1993 31/12/2500 -16041390 01/01/1988 31/12/2500 LIBEN Prepared or preserved sardinella, brisling or sprats, whole or in pieces (excl. minced) 01/01/1988 31/12/2500 -160414 01/01/1988 31/12/2500 LIBEN Prepared or preserved tunas, skipjack and Atlantic bonito, whole or in pieces (excl. minced) 01/01/1988 31/12/2500 -16041410 01/01/1988 31/12/1992 LIBEN Prepared or preserved tuna and skipjack, whole or in pieces (excl. minced) 01/01/1988 31/12/1992 -16041411 01/01/1993 31/12/1993 LIBEN Tuna and bonito 'sarda spp.', prepared or preserved, whole or in pieces, in vegetable oil (excl. minced fish) 01/01/1993 31/12/1993 -16041411 01/01/1997 31/12/2014 LIBEN Prepared or preserved tunas and skipjack, whole or in pieces, in vegetable oil (excl. minced) 01/01/1997 31/12/2014 -16041412 01/01/1994 31/12/1996 LIBEN Loins of tunas or skipjack, prepared or preserved, in vegetable oil 01/01/1994 31/12/1996 -16041414 01/01/1994 31/12/1996 LIBEN Tunas and skipjack, prepared or preserved, whole or in pieces, in vegetable oil (excl. minced and loins) 01/01/1994 31/12/1996 -16041416 01/01/1994 31/12/2014 LIBEN Fillets known as "loins" of tunas or skipjack, prepared or preserved (excl. such products in vegetable oil) 01/01/1994 31/12/2014 -16041418 01/01/1994 31/12/2014 LIBEN Prepared or preserved tunas and skipjack (excl. minced, fillets known as "loins" and such products in vegetable oil) 01/01/1994 31/12/2014 -16041419 01/01/1993 31/12/1993 LIBEN Tunas and bonito 'sarda spp.', prepared or preserved (excl. minced fish and fish in vegetable oil) 01/01/1993 31/12/1993 -16041421 01/01/2015 31/12/2500 LIBEN Prepared or preserved skipjack, whole or in pieces, in vegetable oil (excl. minced) 01/01/2015 31/12/2500 -16041426 01/01/2015 31/12/2500 LIBEN Fillets known as "loins" of skipjack, prepared or preserved, whole or in pieces (excl. such products in vegetable oil or minced) 01/01/2015 31/12/2500 -16041428 01/01/2015 31/12/2500 LIBEN Prepared or preserved skipjack, whole or in pieces (excl. minced, fillets known as "loins" and such products in vegetable oil) 01/01/2015 31/12/2500 -16041431 01/01/2015 31/12/2500 LIBEN Prepared or preserved Yellowfin tuna "Thunnus albacares", whole or in pieces, in vegetable oil (excl. minced) 01/01/2015 31/12/2500 -16041436 01/01/2015 31/12/2500 LIBEN Fillets known as "loins" of Yellowfin tuna "Thunnus albacares", prepared or preserved, whole or in pieces (excl. such products in vegetable oil or minced) 01/01/2015 31/12/2500 -16041438 01/01/2015 31/12/2500 LIBEN Prepared or preserved Yellowfin tuna "Thunnus albacares", whole or in pieces (excl. minced, fillets known as "loins" and such products in vegetable oil) 01/01/2015 31/12/2500 -16041441 01/01/2015 31/12/2500 LIBEN Prepared or preserved tunas, whole or in pieces, in vegetable oil (excl. minced, skipjack and Yellowfin tuna "Thunnus albacares") 01/01/2015 31/12/2500 -16041446 01/01/2015 31/12/2500 LIBEN Fillets known as "loins" of tuna, prepared or preserved, whole or in pieces (excl. such products in vegetable oil or minced, skipjack and Yellowfin tuna "Thunnus albacares") 01/01/2015 31/12/2500 -16041448 01/01/2015 31/12/2500 LIBEN Prepared or preserved tuna, whole or in pieces (excl. minced, fillets known as "loins" and such products in vegetable oil, skipjack and Yellowfin tuna "Thunnus albacares") 01/01/2015 31/12/2500 -16041490 01/01/1988 31/12/2500 LIBEN Prepared or preserved bonito "sarda spp.", whole or in pieces (excl. minced) 01/01/1988 31/12/2500 -160415 01/01/1988 31/12/2500 LIBEN Prepared or preserved mackerel, whole or in pieces (excl. minced) 01/01/1988 31/12/2500 -16041510 01/01/1988 31/12/1992 LIBEN Prepared or preserved mackerel of species scomber scombrus and japonicus, whole or in pieces (excl. minced) 01/01/1988 31/12/1992 -16041511 01/01/1993 31/12/2500 LIBEN Fillets of mackerel of the species Scomber scombrus and Scomber japonicus, prepared or preserved 01/01/1993 31/12/2500 -16041519 01/01/1993 31/12/2500 LIBEN Mackerel of the species Scomber scombrus and Scomber japonicus, prepared or preserved, whole or in pieces (excl. minced mackerel and fillets of mackerel) 01/01/1993 31/12/2500 -16041590 01/01/1988 31/12/2500 LIBEN Prepared or preserved mackerel of species Scomber australasicus, whole or in pieces (excl. minced) 01/01/1988 31/12/2500 -160416 01/01/1988 31/12/2500 LIBEN Prepared or preserved anchovies, whole or in pieces (excl. minced) 01/01/1988 31/12/2500 -16041600 01/01/1988 31/12/2500 LIBEN Prepared or preserved anchovies, whole or in pieces (excl. minced) 01/01/1988 31/12/2500 -160417 01/01/2012 31/12/2500 LIBEN Prepared or preserved eels, whole or in pieces (excl. minced) 01/01/2012 31/12/2500 -16041700 01/01/2012 31/12/2500 LIBEN Prepared or preserved eels, whole or in pieces (excl. minced) 01/01/2012 31/12/2500 -160418 01/01/2017 31/12/2500 LIBEN Prepared or preserved shark fins, whole or in pieces (excl. minced) 01/01/2017 31/12/2500 -16041800 01/01/2017 31/12/2500 LIBEN Prepared or preserved shark fins, whole or in pieces (excl. minced) 01/01/2017 31/12/2500 -160419 01/01/1988 31/12/2500 LIBEN Prepared or preserved fish, whole or in pieces (excl. minced, merely smoked, and salmon, herrings, sardines, sardinella, brisling or sprats, tunas, skipjack, bonito "sarda spp.", mackerel, anchovies, eels and shark fins) 01/01/1988 31/12/2500 -16041910 01/01/1988 31/12/2500 LIBEN Prepared or preserved salmonidae, whole or in pieces (excl. salmon and minced) 01/01/1988 31/12/2500 -16041930 01/01/1988 31/12/1993 LIBEN Prepared or preserved fish of species euthynnus, whole or in pieces (excl. skipjack and minced) 01/01/1988 31/12/1993 -16041931 01/01/1994 31/12/2500 LIBEN Fillets known as "loins" of fish of the genus "Euthynnus" prepared or preserved (excl. of skipjack [Euthynnus Katsuwonus pelamis]) 01/01/1994 31/12/2500 -16041939 01/01/1994 31/12/2500 LIBEN Prepared or preserved fish of the genus "Euthynnus", whole or in pieces (excl. minced, fillets known as "loins" and of skipjack [Euthynnus Katsuwonus pelamis]) 01/01/1994 31/12/2500 -16041950 01/01/1988 31/12/2500 LIBEN Prepared or preserved fish of species Orcynopsis unicolor, whole or in pieces (excl. minced) 01/01/1988 31/12/2500 -16041991 01/01/1988 31/12/2500 LIBEN Frozen raw fish fillets, coated with batter or breadcrumbs, whether or not pre-fried in oil (excl. salmonidae, herrings, sardines, sardinella, brisling or sprats, tunas, skipjack and Atlantic bonito, bonito "sarda spp.", mackerel, anchovies, fish of species Euthynnus and fish of species Orcynopsis unicolor) 01/01/1988 31/12/2500 -16041992 01/01/1993 31/12/2500 LIBEN Cod of the species Gadus morhua, Gadus ogac, Gadus macrocephalus, prepared or preserved, whole or in pieces (excl. finely minced and fillets, raw, merely coated with batter or breadcrumbs, whether or not pre-fried in oil, frozen) 01/01/1993 31/12/2500 -16041993 01/01/1993 31/12/2500 LIBEN Coalfish "Pollachius virens", prepared or preserved, whole or in pieces (excl. finely minced and fillets, raw, merely coated with batter or breadcrumbs, whether or not pre-fried in oil, frozen) 01/01/1993 31/12/2500 -16041994 01/01/1993 31/12/2500 LIBEN Hake "Merluccius spp., Urophycis spp.", prepared or preserved, whole or in pieces (excl. finely minced and fillets, raw, merely coated with batter or breadcrumbs, whether or not pre-fried in oil, frozen) 01/01/1993 31/12/2500 -16041995 01/01/1993 31/12/2500 LIBEN Alaska pollock "Theragra chalcogramma" and pollack "Pollachius pollachius", prepared or preserved, whole or in pieces (excl. finely minced and fillets, raw, merely coated with batter or breadcrumbs, whether or not pre-fried in oil, frozen) 01/01/1993 31/12/2500 -16041997 01/01/2012 31/12/2016 LIBEN Fish, prepared or preserved, whole or in pieces (excl. minced, merely smoked, and salmonidae, herrings, sardines, sardinella, anchovies, brisling, sprats, tunas, bonito "Sarda spp.", mackerel, eels, Euthynnus spp., Orcynopsis unicolor, cod, coalfish, hake, Alaska pollack and pollack; fillets, raw, merely coated with batter or breadcrumbs, even pre-fried in oil, frozen) 01/01/2012 31/12/2016 -16041997 01/01/2017 31/12/2500 LIBEN Fish, prepared or preserved, whole or in pieces (excl. minced, merely smoked, and salmonidae, herrings, sardines, sardinella, anchovies, brisling, sprats, tunas, bonito "Sarda spp.", mackerel, eels, shark fins, Euthynnus spp., Orcynopsis unicolor, cod, coalfish, hake, Alaska pollock and pollack; fillets, raw, merely coated with batter or breadcrumbs, even pre-fried in oil, frozen) 01/01/2017 31/12/2500 -16041998 01/01/1993 31/12/2011 LIBEN Fish, prepared or preserved, whole or in pieces (excl. finely minced, fillets, raw, merely coated with batter or breadcrumbs, whether or not pre-fried in oil, frozen, and salmon, herrings, sardines, anchovies, sprats, tunas, skipjack, bonito "Sarda spp.", mackerel, sardines, salmonidae, fish of the Euthynnus spp. and of the species Orcynopsis unicolor, cod, coalfish, hake, Alaska pollack and pollack) 01/01/1993 31/12/2011 -16041999 01/01/1988 31/12/1992 LIBEN Prepared or preserved fish, whole or in pieces (excl. minced and salmonidae, herrings, sardines, sardinella, brisling or sprats, tunas, skipjack and atlantic bonito, bonito 'sarda spp.', mackerel, anchovies, fish of species euthynnus, fish of species orcynopsis unicolor and deep frozen raw fish fillets, coated with batter or breadcrumbs) 01/01/1988 31/12/1992 -160420 01/01/1988 31/12/2500 LIBEN Prepared or preserved fish (excl. whole or in pieces) 01/01/1988 31/12/2500 -16042005 01/01/1994 31/12/2500 LIBEN Preparations of surimi 01/01/1994 31/12/2500 -16042010 01/01/1988 31/12/2500 LIBEN Prepared or preserved salmon (excl. whole or in pieces) 01/01/1988 31/12/2500 -16042030 01/01/1988 31/12/2500 LIBEN Prepared or preserved salmonidae (excl. salmon and whole or in pieces) 01/01/1988 31/12/2500 -16042040 01/01/1988 31/12/2500 LIBEN Prepared or preserved anchovies (excl. whole or in pieces) 01/01/1988 31/12/2500 -16042050 01/01/1988 31/12/2500 LIBEN Prepared or preserved sardines, bonito, mackerel of species Scomber scombrus and japonicus and fish of species Orcynopsis unicolor (excl. whole or in pieces) 01/01/1988 31/12/2500 -16042070 01/01/1988 31/12/2500 LIBEN Prepared or preserved tunas, skipjack or other fish of genus Euthynnus (excl. whole or in pieces) 01/01/1988 31/12/2500 -16042090 01/01/1988 31/12/1993 LIBEN Prepared or preserved fish (excl. whole or in pieces and salmonidae, anchovies, sardines, bonito, mackerel of species scomber scombrus and japonicus and fish of species orcynopsis unicolor, tunas, skipjack or other fish of genus euthynnus) 01/01/1988 31/12/1993 -16042090 01/01/1994 31/12/2500 LIBEN Fish, prepared or preserved (excl. fish whole or in pieces, preparations of surimi and salmonidae, anchovies, sardines, bonito, mackerel of the species Scomber scombrus and of the species Scomber japonicus and fish of the species Orcynopsis unicolor, tunas, skipjack and other fish of the species Euthynnus) 01/01/1994 31/12/2500 -160430 01/01/1988 31/12/2011 LIBEN Caviar and caviar substitutes prepared from fish eggs 01/01/1988 31/12/2011 -16043010 01/01/1988 31/12/2011 LIBEN Caviar 01/01/1988 31/12/2011 -16043090 01/01/1988 31/12/2011 LIBEN Caviar substitutes prepared from fish eggs 01/01/1988 31/12/2011 -160431 01/01/2012 31/12/2500 LIBEN Caviar 01/01/2012 31/12/2500 -16043100 01/01/2012 31/12/2500 LIBEN Caviar 01/01/2012 31/12/2500 -160432 01/01/2012 31/12/2500 LIBEN Caviar substitutes prepared from fish eggs 01/01/2012 31/12/2500 -16043200 01/01/2012 31/12/2500 LIBEN Caviar substitutes prepared from fish eggs 01/01/2012 31/12/2500 -1605 01/01/1988 31/12/2500 LIBEN Crustaceans, molluscs and other aquatic invertebrates, prepared or preserved (excl. smoked) 01/01/1988 31/12/2500 -160510 01/01/1988 31/12/2500 LIBEN Crab, prepared or preserved (excl. smoked) 01/01/1988 31/12/2500 -16051000 01/01/1988 31/12/2011 LIBEN Crab, prepared or preserved 01/01/1988 31/12/2011 -16051000 01/01/2012 31/12/2500 LIBEN Crab, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -160520 01/01/1988 31/12/2011 LIBEN Shrimps and prawns, prepared or preserved 01/01/1988 31/12/2011 -16052000 01/01/1988 31/12/1993 LIBEN Shrimps and prawns, prepared or preserved 01/01/1988 31/12/1993 -16052010 01/01/1994 31/12/2011 LIBEN Shrimps and prawns, prepared or preserved, in airtight containers 01/01/1994 31/12/2011 -16052091 01/01/1994 31/12/2011 LIBEN Shrimps and prawns, prepared or preserved, in immediate packings of a net content of <= 2 kg (excl. shrimps and prawns in airtight containers) 01/01/1994 31/12/2011 -16052099 01/01/1994 31/12/2011 LIBEN Shrimps and prawns, prepared or preserved, in immediate packings of a net content of > 2 kg (excl. shrimps and prawns in airtight containers) 01/01/1994 31/12/2011 -160521 01/01/2012 31/12/2500 LIBEN Shrimps and prawns, prepared or preserved, not in airtight containers (excl. smoked) 01/01/2012 31/12/2500 -16052110 01/01/2012 31/12/2500 LIBEN Shrimps and prawns, prepared or preserved, in immediate packings of a net content of <= 2 kg (excl. merely smoked, and in airtight containers) 01/01/2012 31/12/2500 -16052190 01/01/2012 31/12/2500 LIBEN Shrimps and prawns, prepared or preserved, in immediate packings of a net content of > 2 kg (excl. merely smoked, and in airtight containers) 01/01/2012 31/12/2500 -160529 01/01/2012 31/12/2500 LIBEN Shrimps and prawns, prepared or preserved, in airtight containers (excl. smoked) 01/01/2012 31/12/2500 -16052900 01/01/2012 31/12/2500 LIBEN Shrimps and prawns, prepared or preserved, in airtight containers (excl. smoked) 01/01/2012 31/12/2500 -160530 01/01/1988 31/12/2500 LIBEN Lobster, prepared or preserved (excl. smoked) 01/01/1988 31/12/2500 -16053000 01/01/1988 31/12/1996 LIBEN Lobster, prepared or preserved 01/01/1988 31/12/1996 -16053010 01/01/1997 31/12/2500 LIBEN Lobster meat, cooked, for the manufacture of lobster butter or of lobster pastes, pâtés, soups or sauces 01/01/1997 31/12/2500 -16053090 01/01/1997 31/12/2011 LIBEN Lobster, prepared or preserved (excl. lobster meat, cooked, for the manufacture of lobster butter or of lobster pastes, pâtés, soups or sauces) 01/01/1997 31/12/2011 -16053090 01/01/2012 31/12/2500 LIBEN Lobster, prepared or preserved (excl. merely smoked; lobster meat, cooked, for the manufacture of lobster butter or of lobster pastes, pâtés, soups or sauces) 01/01/2012 31/12/2500 -160540 01/01/1988 31/12/2500 LIBEN Crustaceans, prepared or preserved (excl. smoked, crabs, shrimps, prawns and lobster) 01/01/1988 31/12/2500 -16054000 01/01/1988 31/12/2011 LIBEN Crustaceans, prepared or preserved (excl. crabs, shrimps, prawns and lobster) 01/01/1988 31/12/2011 -16054000 01/01/2012 31/12/2500 LIBEN Crustaceans, prepared or preserved (excl. smoked, crabs, shrimps, prawns and lobster) 01/01/2012 31/12/2500 -160551 01/01/2012 31/12/2500 LIBEN Oysters, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -16055100 01/01/2012 31/12/2500 LIBEN Oysters, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -160552 01/01/2012 31/12/2500 LIBEN Scallops, incl. queen scallops, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -16055200 01/01/2012 31/12/2500 LIBEN Scallops, incl. queen scallops, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -160553 01/01/2012 31/12/2500 LIBEN Mussels, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -16055310 01/01/2012 31/12/2500 LIBEN Mussels, prepared or preserved, in airtight containers (excl. merely smoked) 01/01/2012 31/12/2500 -16055390 01/01/2012 31/12/2500 LIBEN Mussels, prepared or preserved (excl. in airtight containers, and merely smoked) 01/01/2012 31/12/2500 -160554 01/01/2012 31/12/2500 LIBEN Cuttlefish and squid, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -16055400 01/01/2012 31/12/2016 LIBEN Cuttlefish and squid, prepared or preserved (excl. smoked) 01/01/2012 31/12/2016 -16055400 01/01/2017 31/12/2500 LIBEN Cuttlefish and squid, prepared or preserved (excl. smoked) 01/01/2017 31/12/2500 -160555 01/01/2012 31/12/2500 LIBEN Octopus, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -16055500 01/01/2012 31/12/2500 LIBEN Octopus, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -160556 01/01/2012 31/12/2500 LIBEN Clams, cockles and arkshells, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -16055600 01/01/2012 31/12/2500 LIBEN Clams, cockles and arkshells, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -160557 01/01/2012 31/12/2500 LIBEN Abalone, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -16055700 01/01/2012 31/12/2500 LIBEN Abalone, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -160558 01/01/2012 31/12/2500 LIBEN Snails, prepared or preserved (excl. smoked and sea snails) 01/01/2012 31/12/2500 -16055800 01/01/2012 31/12/2500 LIBEN Snails, prepared or preserved (excl. smoked and sea snails) 01/01/2012 31/12/2500 -160559 01/01/2012 31/12/2500 LIBEN Molluscs, prepared or preserved (excl. smoked, oysters, scallops, mussels, cuttle fish, squid, octopus, abalone, snails, and clams, cockles and arkshells) 01/01/2012 31/12/2500 -16055900 01/01/2012 31/12/2016 LIBEN Molluscs, prepared or preserved (excl. smoked, oysters, scallops, mussels, cuttle fish, squid, octopus, abalone, snails, and clams, cockles and arkshells) 01/01/2012 31/12/2016 -16055900 01/01/2017 31/12/2500 LIBEN Molluscs, prepared or preserved (excl. smoked, oysters, scallops, mussels, cuttle fish, squid, octopus, abalone, snails, and clams, cockles and arkshells) 01/01/2017 31/12/2500 -160561 01/01/2012 31/12/2500 LIBEN Sea cucumbers, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -16056100 01/01/2012 31/12/2500 LIBEN Sea cucumbers, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -160562 01/01/2012 31/12/2500 LIBEN Sea urchins, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -16056200 01/01/2012 31/12/2500 LIBEN Sea urchins, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -160563 01/01/2012 31/12/2500 LIBEN Jellyfish, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -16056300 01/01/2012 31/12/2500 LIBEN Jellyfish, prepared or preserved (excl. smoked) 01/01/2012 31/12/2500 -160569 01/01/2012 31/12/2500 LIBEN Aquatic invertebrates, prepared or preserved (excl. smoked, crustaceans, molluscs, sea cucumbers, sea urchins and jellyfish) 01/01/2012 31/12/2500 -16056900 01/01/2012 31/12/2500 LIBEN Aquatic invertebrates, prepared or preserved (excl. smoked, crustaceans, molluscs, sea cucumbers, sea urchins and jellyfish) 01/01/2012 31/12/2500 -160590 01/01/1988 31/12/2011 LIBEN Molluscs and aquatic invertebrates, prepared or preserved 01/01/1988 31/12/2011 -16059010 01/01/1988 31/12/1993 LIBEN Mussels, snails and other molluscs, prepared or preserved 01/01/1988 31/12/1993 -16059011 01/01/1994 31/12/2011 LIBEN Mussels of the species Mytilus and of the species Perna, prepared or preserved, in airtight containers 01/01/1994 31/12/2011 -16059019 01/01/1994 31/12/2011 LIBEN Mussels of the species Mytilus and of the species Perna, prepared or preserved (excl. mussels in airtight containers) 01/01/1994 31/12/2011 -16059030 01/01/1994 31/12/2011 LIBEN Mussels, snails and other molluscs, prepared or preserved (excl. mussels of the species Mytilus and of the species Perna) 01/01/1994 31/12/2011 -16059090 01/01/1988 31/12/2011 LIBEN Sea urchins, sea cucumbers, jellyfish and other aquatic invertebrates, prepared or preserved (excl. molluscs) 01/01/1988 31/12/2011 -16CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 16 01/01/2002 31/12/2500 -16CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 16 01/01/2002 31/12/2500 -16CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 16 01/01/2002 31/12/2500 -16MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -16MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -16MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -16SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 16 01/01/1988 31/12/2500 -16SSS0 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 16 and SITC section 0 01/01/1997 31/12/2500 -16SSS017 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 16 and SITC group 017 01/01/1997 31/12/2500 -16SSS037 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 16 and SITC group 037 01/01/1997 31/12/2500 -16SSS098 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 16 and SITC group 098 01/01/1997 31/12/2500 -16SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 16 and SITC section 9 01/01/1988 31/12/1996 -16SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 16 and SITC section 9 01/01/1997 31/12/2500 -16SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 16 and SITC group 999 01/01/1988 31/12/1996 -16SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 16 and SITC group 999 01/01/1997 31/12/2500 -17 01/01/1988 31/12/2500 LIBEN SUGARS AND SUGAR CONFECTIONERY 01/01/1988 31/12/2500 -1701 01/01/1988 31/12/2500 LIBEN Cane or beet sugar and chemically pure sucrose, in solid form 01/01/1988 31/12/2500 -170111 01/01/1988 31/12/2011 LIBEN Raw cane sugar (excl. added flavouring or colouring) 01/01/1988 31/12/2011 -17011110 01/01/1988 31/12/2011 LIBEN Raw cane sugar, for refining (excl. added flavouring or colouring) 01/01/1988 31/12/2011 -17011190 01/01/1988 31/12/2011 LIBEN Raw cane sugar (excl. for refining and added flavouring or colouring) 01/01/1988 31/12/2011 -170112 01/01/1988 31/12/2500 LIBEN Raw beet sugar (excl. added flavouring or colouring) 01/01/1988 31/12/2500 -17011210 01/01/1988 31/12/2500 LIBEN Raw beet sugar, for refining (excl. added flavouring or colouring) 01/01/1988 31/12/2500 -17011290 01/01/1988 31/12/2500 LIBEN Raw beet sugar (excl. for refining and added flavouring or colouring) 01/01/1988 31/12/2500 -170113 01/01/2012 31/12/2500 LIBEN Raw cane sugar, in solid form, not containing added flavouring or colouring matter, obtained without centrifugation, with sucrose content 69° to 93°, containing only natural anhedral microcrystals (see subheading note 2.) 01/01/2012 31/12/2500 -17011310 01/01/2012 31/12/2500 LIBEN Raw cane sugar for refining, in solid form, not containing added flavouring or colouring matter, obtained without centrifugation, with sucrose content 69° to 93°, containing only natural anhedral microcrystals [see subheading note 2.] 01/01/2012 31/12/2500 -17011390 01/01/2012 31/12/2500 LIBEN Raw cane sugar, in solid form, not containing added flavouring or colouring matter, obtained without centrifugation, with sucrose content 69° to 93°, containing only natural anhedral microcrystals [see subheading note 2.] (excl. for refining) 01/01/2012 31/12/2500 -170114 01/01/2012 31/12/2500 LIBEN Raw cane sugar, in solid form, not containing added flavouring or colouring matter (excl. cane sugar of 1701 13) 01/01/2012 31/12/2500 -17011410 01/01/2012 31/12/2500 LIBEN Raw cane sugar for refining, in solid form, not containing added flavouring or colouring matter (excl. cane sugar of 1701 13) 01/01/2012 31/12/2500 -17011490 01/01/2012 31/12/2500 LIBEN Raw cane sugar, in solid form, not containing added flavouring or colouring matter (excl. for refining, and cane sugar of 1701 13) 01/01/2012 31/12/2500 -170191 01/01/1988 31/12/2500 LIBEN Refined cane or beet sugar, containing added flavouring or colouring, in solid form 01/01/1988 31/12/2500 -17019100 01/01/1988 31/12/2500 LIBEN Refined cane or beet sugar, containing added flavouring or colouring, in solid form 01/01/1988 31/12/2500 -170199 01/01/1988 31/12/2500 LIBEN Cane or beet sugar and chemically pure sucrose, in solid form (excl. cane and beet sugar containing added flavouring or colouring and raw sugar) 01/01/1988 31/12/2500 -17019910 01/01/1988 31/12/2500 LIBEN White sugar, containing in dry state>= 99,5% sucrose (excl. flavoured or coloured) 01/01/1988 31/12/2500 -17019990 01/01/1988 31/12/2500 LIBEN Cane or beet sugar and chemically pure sucrose, in solid form (excl. cane and beet sugar containing added flavouring or colouring, raw sugar and white sugar) 01/01/1988 31/12/2500 -1702 01/01/1988 31/12/2500 LIBEN Other sugars, incl. chemically pure lactose, maltose, glucose and fructose, in solid form; sugar syrups not containing added flavouring or colouring matter; artificial honey, whether or not mixed with natural honey; caramel 01/01/1988 31/12/2500 -170210 01/01/1988 31/12/1995 LIBEN Lactose in solid form and lactose syrup (excl. flavoured or coloured) 01/01/1988 31/12/1995 -17021010 01/01/1988 31/12/1995 LIBEN Lactose in solid form and lactose syrup not containing added flavouring or colouring matter, containing, in the dry state, >= 99% by weight of the pure product 01/01/1988 31/12/1995 -17021090 01/01/1988 31/12/1995 LIBEN Lactose in solid form and lactose syrup not containing added flavouring or colouring matter, containing, in the dry state, < 99% by weight of the pure product 01/01/1988 31/12/1995 -170211 01/01/1996 31/12/2500 LIBEN Lactose in solid form and lactose syrup, not containing added flavouring or colouring matter, containing by weight >= 99% lactose, expressed as anhydrous lactose, calculated on the dry matter 01/01/1996 31/12/2500 -17021100 01/01/1996 31/12/2500 LIBEN Lactose in solid form and lactose syrup, not containing added flavouring or colouring matter, containing by weight >= 99% lactose, expressed as anhydrous lactose, calculated on the dry matter 01/01/1996 31/12/2500 -170219 01/01/1996 31/12/2500 LIBEN Lactose in solid form and lactose syrup, not containing added flavouring or colouring matter, containing by weight < 99% lactose, expressed as anhydrous lactose, calculated on the dry matter 01/01/1996 31/12/2500 -17021900 01/01/1996 31/12/2500 LIBEN Lactose in solid form and lactose syrup, not containing added flavouring or colouring matter, containing by weight < 99% lactose, expressed as anhydrous lactose, calculated on the dry matter 01/01/1996 31/12/2500 -170220 01/01/1988 31/12/2500 LIBEN Maple sugar, in solid form, and maple syrup (excl. flavoured or coloured) 01/01/1988 31/12/2500 -17022010 01/01/1988 31/12/2500 LIBEN Maple sugar, in solid form, flavoured or coloured 01/01/1988 31/12/2500 -17022090 01/01/1988 31/12/2500 LIBEN Maple sugar, in solid form, and maple syrup (excl. flavoured or coloured) 01/01/1988 31/12/2500 -170230 01/01/1988 31/12/2500 LIBEN Glucose in solid form and glucose syrup, not containing added flavouring or colouring matter and not containing fructose or containing in the dry state, < 20% by weight of fructose 01/01/1988 31/12/2500 -17023010 01/01/1988 31/12/2500 LIBEN Isoglucose, containing in the dry state >= 10% and < 20% by weight of fructose 01/01/1988 31/12/2500 -17023050 01/01/2008 31/12/2500 LIBEN Glucose "dextrose" in the form of white crystalline powder, whether or not agglomerated, not containing fructose or containing in the dry state < 20% by weight of glucose (excl. isoglucose) 01/01/2008 31/12/2500 -17023051 01/01/1988 31/12/2007 LIBEN Glucose "dextrose" in the form of white crystalline powder, whether or not agglomerated, not containing fructose or containing in the dry state < 20% by weight of glucose and containing in the dry state >= 99% by weight of glucose (excl. isoglucose) 01/01/1988 31/12/2007 -17023059 01/01/1988 31/12/2007 LIBEN Glucose in solid form and glucose syrup, not containing added flavouring or colouring matter and not containing fructose or containing in the dry state < 20% by weight of fructose and containing in the dry state >= 99% by weight of glucose (excl. isoglucose and glucose "dextrose" in the form of white crystalline powder, whether or not agglomerated) 01/01/1988 31/12/2007 -17023090 01/01/2008 31/12/2500 LIBEN Glucose in solid form and glucose syrup, not containing added flavouring or colouring matter and not containing fructose or containing in the dry state < 20% by weight of fructose (excl. isoglucose and glucose "dextrose" in the form of white crystalline powder, whether or not agglomerated) 01/01/2008 31/12/2500 -17023091 01/01/1988 31/12/2007 LIBEN Glucose "dextrose" in the form of white crystalline powder, whether or not agglomerated, not containing fructose or containing in the dry state < 20% by weight of glucose and containing in the dry state < 99% by weight of glucose (excl. isoglucose) 01/01/1988 31/12/2007 -17023099 01/01/1988 31/12/2007 LIBEN Glucose in solid form and glucose syrup, not containing added flavouring or colouring matter and not containing fructose or containing in the dry state < 20% by weight of fructose and < 99% by weight of glucose (excl. isoglucose and glucose "dextrose" in the form of white crystalline powder, whether or not agglomerated) 01/01/1988 31/12/2007 -170240 01/01/1988 31/12/2500 LIBEN Glucose in solid form and glucose syrup, not containing added flavouring or colouring matter, and containing in the dry state >= 20% and < 50% by weight of fructose (excl. invert sugar) 01/01/1988 31/12/2500 -17024010 01/01/1988 31/12/2500 LIBEN Isoglucose, containing in the dry state >= 20% and < 50% by weight of fructose (excl. invert sugar) 01/01/1988 31/12/2500 -17024090 01/01/1988 31/12/2500 LIBEN Glucose in solid form and glucose syrup, not containing added flavouring or colouring matter, and containing in the dry state >= 20% and < 50% by weight of fructose (excl. isoglucose and invert sugar) 01/01/1988 31/12/2500 -170250 01/01/1988 31/12/2500 LIBEN Chemically pure fructose in solid form 01/01/1988 31/12/2500 -17025000 01/01/1988 31/12/2500 LIBEN Chemically pure fructose in solid form 01/01/1988 31/12/2500 -170260 01/01/1988 31/12/2500 LIBEN Fructose in solid form and fructose syrup, not containing added flavouring or colouring matter and containing in the dry state > 50% by weight of fructose (excl. chemically pure fructose and invert sugar) 01/01/1988 31/12/2500 -17026010 01/01/1988 31/12/2500 LIBEN Isoglucose, containing in the dry state > 50% by weight of fructose (excl. chemically pure fructose and invert sugar) 01/01/1988 31/12/2500 -17026080 01/01/1998 31/12/2500 LIBEN Inulin syrup obtained directly by hydrolysis of inulin or oligofructoses, containing in the dry state > 50% by weight of fructose in free form or as sucrose 01/01/1998 31/12/2500 -17026090 01/01/1988 31/12/1997 LIBEN Fructose in solid form and fructose syrup not containing added flavouring or colouring matter and containing, in the dry state, > 50% by weight of fructose (excl. isoglucose and chemically pure fructose) 01/01/1988 31/12/1997 -17026095 01/01/1998 31/12/2500 LIBEN Fructose in solid form and fructose syrup not containing added flavouring or colouring matter and containing in the dry state > 50% by weight of fructose (excl. isoglucose, inulin syrup, chemically pure fructose and invert sugar) 01/01/1998 31/12/2500 -170290 01/01/1988 31/12/2500 LIBEN Sugars in solid form, incl. invert sugar and chemically pure maltose, and sugar and sugar syrup blends containing in the dry state 50% by weight of fructose, not flavoured or coloured, artificial honey, whether or not mixed with natural honey and caramel (excl. cane or beet sugar, chemically pure sucrose, lactose, maple sugar, glucose, fructose, and syrups thereof) 01/01/1988 31/12/2500 -17029010 01/01/1988 31/12/2500 LIBEN Chemically pure maltose, in solid form 01/01/1988 31/12/2500 -17029030 01/01/1988 31/12/2500 LIBEN Isoglucose, containing in the dry state 50% by weight of fructose 01/01/1988 31/12/2500 -17029050 01/01/1988 31/12/2500 LIBEN Maltodextrine in solid form and maltodextrine syrup (excl. flavoured or coloured) 01/01/1988 31/12/2500 -17029060 01/01/1988 31/12/2007 LIBEN Artificial honey, whether or not mixed with natural honey 01/01/1988 31/12/2007 -17029071 01/01/1988 31/12/2500 LIBEN Sugar and molasses, caramelised, containing in the dry state >= 50% by weight of sucrose 01/01/1988 31/12/2500 -17029075 01/01/1988 31/12/2500 LIBEN Sugar and molasses, caramelised, containing in the dry state < 50% by weight of sucrose, in powder form, whether or not agglomerated 01/01/1988 31/12/2500 -17029079 01/01/1988 31/12/2500 LIBEN Sugar and molasses, caramelised, containing in the dry state < 50% by weight of sucrose (excl. sugar and molasses in powder form, whether or not agglomerated) 01/01/1988 31/12/2500 -17029080 01/01/1995 31/12/2500 LIBEN Inulin syrup, obtained directly by hydrolysis of inulin or oligofructoses, containing in the dry state >= 10% but <= 50% by weight of fructose in free form or as sucrose 01/01/1995 31/12/2500 -17029090 01/01/1988 31/12/1994 LIBEN Sugars in solid forms, sugar syrup (excl. flavoured or coloured), (excl. 1702.10-10 to 1702.90-79) 01/01/1988 31/12/1994 -17029095 01/01/2008 31/12/2500 LIBEN Sugars in solid form, incl. invert sugar, and sugar and sugar syrup blends containing in the dry state 50% by weight of fructose, not containing added flavouring or colouring matter (excl. cane or beet sugar, chemically pure sucrose and maltose, lactose, maple sugar, glucose, fructose, maltodextrine, and syrups thereof, isoglucose, inulin syrup and caramel) 01/01/2008 31/12/2500 -17029099 01/01/1995 31/12/2007 LIBEN Sugars in solid form, incl. invert sugar, and sugar and sugar syrup blends containing in the dry state 50% by weight of fructose, not containing added flavouring or colouring matter (excl. cane or beet sugar, chemically pure sucrose and maltose, lactose, maple sugar, glucose, fructose, maltodextrine, and syrups thereof, isoglucose, inulin syrup, artificial honey and caramel) 01/01/1995 31/12/2007 -1702S0 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1702 and SITC section 0 01/01/1997 31/12/2500 -1702S061 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1702 and SITC group 061 01/01/1997 31/12/2500 -1703 01/01/1988 31/12/2500 LIBEN Molasses resulting from the extraction or refining of sugar 01/01/1988 31/12/2500 -170310 01/01/1988 31/12/2500 LIBEN Cane molasses resulting from the extraction or refining of sugar 01/01/1988 31/12/2500 -17031000 01/01/1988 31/12/2500 LIBEN Cane molasses resulting from the extraction or refining of sugar 01/01/1988 31/12/2500 -170390 01/01/1988 31/12/2500 LIBEN Beet molasses resulting from the extraction or refining of sugar 01/01/1988 31/12/2500 -17039000 01/01/1988 31/12/2500 LIBEN Beet molasses resulting from the extraction or refining of sugar 01/01/1988 31/12/2500 -1704 01/01/1988 31/12/2500 LIBEN Sugar confectionery not containing cocoa, incl. white chocolate 01/01/1988 31/12/2500 -170410 01/01/1988 31/12/2500 LIBEN Chewing gum, whether or not sugar-coated 01/01/1988 31/12/2500 -17041010 01/01/2008 31/12/2500 LIBEN Chewing gum, whether or not sugar-coated, containing < 60% sucrose, incl. invert sugar expressed as sucrose 01/01/2008 31/12/2500 -17041011 01/01/1988 31/12/2007 LIBEN Chewing gum, whether or not sugar-coated, in strips, containing < 60% sucrose, incl. invert sugar expressed as sucrose 01/01/1988 31/12/2007 -17041019 01/01/1988 31/12/2007 LIBEN Chewing gum, whether or not sugar-coated, containing < 60% sucrose, incl. invert sugar expressed as sucrose (excl. in strips) 01/01/1988 31/12/2007 -17041090 01/01/2008 31/12/2500 LIBEN Chewing gum, whether or not sugar-coated, containing >= 60% sucrose, incl. invert sugar expressed as sucrose 01/01/2008 31/12/2500 -17041091 01/01/1988 31/12/2007 LIBEN Chewing gum, whether or not sugar-coated, in strips, containing >= 60% sucrose, incl. invert sugar expressed as sucrose 01/01/1988 31/12/2007 -17041099 01/01/1988 31/12/2007 LIBEN Chewing gum, whether or not sugar-coated, containing >= 60% sucrose, incl. invert sugar expressed as sucrose (excl. in strips) 01/01/1988 31/12/2007 -170490 01/01/1988 31/12/2500 LIBEN Sugar confectionery not containing cocoa, incl. white chocolate (excl. chewing gum) 01/01/1988 31/12/2500 -17049010 01/01/1988 31/12/2500 LIBEN Liquorice extract containing > 10% sucrose, without other added substances 01/01/1988 31/12/2500 -17049030 01/01/1988 31/12/2500 LIBEN White chocolate 01/01/1988 31/12/2500 -17049051 01/01/1988 31/12/2500 LIBEN Pastes, incl. marzipan, in immediate packings of >= 1 kg 01/01/1988 31/12/2500 -17049055 01/01/1988 31/12/2500 LIBEN Throat pastilles and cough drops 01/01/1988 31/12/2500 -17049061 01/01/1988 31/12/2500 LIBEN Sugar-coated "panned" goods, not containing cocoa 01/01/1988 31/12/2500 -17049065 01/01/1988 31/12/2500 LIBEN Gum and jelly confectionery, incl. fruit pastes in the form of sugar confectionery 01/01/1988 31/12/2500 -17049071 01/01/1988 31/12/2500 LIBEN Boiled sweets, whether or not filled 01/01/1988 31/12/2500 -17049075 01/01/1988 31/12/2500 LIBEN Toffees, caramels and similar sweets 01/01/1988 31/12/2500 -17049081 01/01/1988 31/12/2500 LIBEN Compressed tablets of sugar confectionery, whether or not manufactured with binding agents, not containing cocoa (excl. chewing gum, white chocolate, throat pastilles and cough drops, gum confectionery and jelly confectionery incl. fruit pastes in the form of sugar confectionery, boiled sweets, whether or not filled, pastes, incl. marzipan, in immediate packings of a net content of >= 1 kg) 01/01/1988 31/12/2500 -17049099 01/01/1988 31/12/2500 LIBEN Pastes, marzipan, nougat and other prepared sugar confectionery, not containing cocoa (excl. chewing gum, white chocolate, throat pastilles and cough drops, gum and jelly confectionery incl. fruit pastes in the form of sugar confectionery, boiled sweets, toffees, caramels and similar sweets, compressed tablets, and pastes incl. marzipan in immediate packings of >= 1 kg) 01/01/1988 31/12/2500 -1704S0 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1704 and SITC section 0 01/01/1997 31/12/2500 -1704S062 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 1704 and SITC group 062 01/01/1997 31/12/2500 -17CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 17 01/01/2002 31/12/2500 -17CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 17 01/01/2002 31/12/2500 -17CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 17 01/01/2002 31/12/2500 -17MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -17MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -17MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -17SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 17 01/01/1988 31/12/2500 -17SSS0 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 17 and SITC section 0 01/01/1988 31/12/2500 -17SSS061 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 17 and SITC group 061 01/01/1988 31/12/2500 -17SSS062 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 17 and SITC group 062 01/01/1992 31/12/2500 -17SSS5 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 17 and SITC section 5 01/01/1997 31/12/2500 -17SSS516 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 17 and SITC group 516 01/01/1997 31/12/2500 -17SSS9 01/01/1988 31/12/1991 LIBEN Confidential trade of chapter 17 and SITC section 9 01/01/1988 31/12/1991 -17SSS9 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 17 and SITC section 9 01/01/1992 31/12/2500 -17SSS999 01/01/1988 31/12/1991 LIBEN Confidential trade of chapter 17 and SITC group 999 01/01/1988 31/12/1991 -17SSS999 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 17 and SITC group 999 01/01/1992 31/12/2500 -18 01/01/1988 31/12/2500 LIBEN COCOA AND COCOA PREPARATIONS 01/01/1988 31/12/2500 -1801 01/01/1988 31/12/2500 LIBEN Cocoa beans, whole or broken, raw or roasted 01/01/1988 31/12/2500 -180100 01/01/1988 31/12/2500 LIBEN Cocoa beans, whole or broken, raw or roasted 01/01/1988 31/12/2500 -18010000 01/01/1988 31/12/2500 LIBEN Cocoa beans, whole or broken, raw or roasted 01/01/1988 31/12/2500 -1802 01/01/1988 31/12/2500 LIBEN Cocoa shells, husks, skins and other cocoa waste 01/01/1988 31/12/2500 -180200 01/01/1988 31/12/2500 LIBEN Cocoa shells, husks, skins and other cocoa waste 01/01/1988 31/12/2500 -18020000 01/01/1988 31/12/2500 LIBEN Cocoa shells, husks, skins and other cocoa waste 01/01/1988 31/12/2500 -1803 01/01/1988 31/12/2500 LIBEN Cocoa paste, whether or not defatted 01/01/1988 31/12/2500 -180310 01/01/1988 31/12/2500 LIBEN Cocoa paste (excl. defatted) 01/01/1988 31/12/2500 -18031000 01/01/1988 31/12/2500 LIBEN Cocoa paste (excl. defatted) 01/01/1988 31/12/2500 -180320 01/01/1988 31/12/2500 LIBEN Cocoa paste, wholly or partly defatted 01/01/1988 31/12/2500 -18032000 01/01/1988 31/12/2500 LIBEN Cocoa paste, wholly or partly defatted 01/01/1988 31/12/2500 -1804 01/01/1988 31/12/2500 LIBEN Cocoa butter, fat and oil 01/01/1988 31/12/2500 -180400 01/01/1988 31/12/2500 LIBEN Cocoa butter, fat and oil 01/01/1988 31/12/2500 -18040000 01/01/1988 31/12/2500 LIBEN Cocoa butter, fat and oil 01/01/1988 31/12/2500 -1805 01/01/1988 31/12/2500 LIBEN Cocoa powder, not containing added sugar or other sweetening matter 01/01/1988 31/12/2500 -180500 01/01/1988 31/12/2500 LIBEN Cocoa powder, not containing added sugar or other sweetening matter 01/01/1988 31/12/2500 -18050000 01/01/1988 31/12/2500 LIBEN Cocoa powder, not containing added sugar or other sweetening matter 01/01/1988 31/12/2500 -1806 01/01/1988 31/12/2500 LIBEN Chocolate and other food preparations containing cocoa 01/01/1988 31/12/2500 -180610 01/01/1988 31/12/2500 LIBEN Cocoa powder, sweetened 01/01/1988 31/12/2500 -18061010 01/01/1988 31/12/1994 LIBEN Sweetened cocoa powder, containing no sucrose or < 65 % sucrose, incl. inverted sugar expressed as sucrose or isoglucose expressed as sucrose 01/01/1988 31/12/1994 -18061015 01/01/1995 31/12/2500 LIBEN Cocoa powder, containing added sugar or other sweetening matter but containing no sucrose or containing < 5% by weight of sucrose, incl. inverted sugar expressed as sucrose or isoglucose expressed as sucrose 01/01/1995 31/12/2500 -18061020 01/01/1995 31/12/2500 LIBEN Cocoa powder, containing added sugar or other sweetening matter, containing >= 5% but < 65% by weight of sucrose, incl. inverted sugar expressed as sucrose or isoglucose expressed as sucrose 01/01/1995 31/12/2500 -18061030 01/01/1988 31/12/2500 LIBEN Sweetened cocoa powder, containing >= 65% but < 80% sucrose, incl. inverted sugar expressed as sucrose or isoglucose expressed as sucrose 01/01/1988 31/12/2500 -18061090 01/01/1988 31/12/2500 LIBEN Sweetened cocoa powder, containing >= 80% sucrose, incl. inverted sugar expressed as sucrose or isoglucose expressed as sucrose 01/01/1988 31/12/2500 -180620 01/01/1988 31/12/2500 LIBEN Chocolate and other food preparations containing cocoa, in blocks, slabs or bars weighing > 2 kg or in liquid, paste, powder, granular or other bulk form, in containers or immediate packings of a content > 2 kg (excl. cocoa powder) 01/01/1988 31/12/2500 -18062010 01/01/1988 31/12/2500 LIBEN Chocolate and other food preparations containing cocoa, in blocks, slabs or bars weighing > 2 kg or in liquid, paste, powder, granular or other bulk form, in containers or immediate packings of a content > 2 kg, containing >= 31%, by weight, of cocoa butter or containing a combined weight of >= 31% of cocoa butter and milkfat (excl. cocoa powder) 01/01/1988 31/12/2500 -18062030 01/01/1988 31/12/2500 LIBEN Chocolate and other food preparations containing cocoa, in blocks, slabs or bars weighing > 2 kg or in liquid, paste, powder, granular or other bulk form, in containers or immediate packings of a content > 2 kg, containing a combined weight of >= 25% but < 31% of cocoa butter and milkfat (excl. cocoa powder) 01/01/1988 31/12/2500 -18062050 01/01/1988 31/12/2500 LIBEN Chocolate and other food preparations containing cocoa, in blocks, slabs or bars weighing > 2 kg or in liquid, paste, powder, granular or other bulk form, in containers or immediate packings of a content > 2 kg, containing >= 18% by weight but < 31% by weight of cocoa butter (excl. cocoa powder) 01/01/1988 31/12/2500 -18062070 01/01/1988 31/12/2500 LIBEN Chocolate milk crumb preparations in containers or immediate packings of a content of > 2 kg 01/01/1988 31/12/2500 -18062080 01/01/1991 31/12/2500 LIBEN Chocolate flavour coating in containers or immediate packings of a content > 2 kg 01/01/1991 31/12/2500 -18062090 01/01/1988 31/12/1990 LIBEN Chocolate and other preparations containing cocoa, in blocks, slabs or bars of > 2 kg, liquids, pastes, powders, granular or similar, in packings of > 2 kg, containing < 18 % cocoa butter (excl. cocoa powder and chocolate milk crumb preparations) 01/01/1988 31/12/1990 -18062095 01/01/1991 31/12/2500 LIBEN Chocolate and other food preparations containing cocoa, in blocks, slabs or bars weighing > 2 kg or in liquid, paste, powder, granular or other bulk form, in containers or immediate packings of a content > 2 kg, containing < 18% by weight of cocoa butter (excl. cocoa powder, chocolate flavour coating and chocolate milk crumb) 01/01/1991 31/12/2500 -180631 01/01/1988 31/12/2500 LIBEN Chocolate and other preparations containing cocoa, in blocks, slabs or bars of <= 2 kg, filled 01/01/1988 31/12/2500 -18063100 01/01/1988 31/12/2500 LIBEN Chocolate and other preparations containing cocoa, in blocks, slabs or bars of <= 2 kg, filled 01/01/1988 31/12/2500 -180632 01/01/1988 31/12/2500 LIBEN Chocolate and other preparations containing cocoa, in blocks, slabs or bars of <= 2 kg (excl. filled) 01/01/1988 31/12/2500 -18063210 01/01/1988 31/12/2500 LIBEN Chocolate and other preparations containing cocoa, in blocks, slabs or bars of <= 2 kg, with added cereal, fruit or nuts (excl. filled) 01/01/1988 31/12/2500 -18063290 01/01/1988 31/12/2500 LIBEN Chocolate and other preparations containing cocoa, in blocks, slabs or bars of <= 2 kg (excl. filled and with added cereal, fruit or nuts) 01/01/1988 31/12/2500 -180690 01/01/1988 31/12/2500 LIBEN Chocolate and other preparations containing cocoa, in containers or immediate packings of <= 2 kg (excl. in blocks, slabs or bars and cocoa powder) 01/01/1988 31/12/2500 -18069011 01/01/1988 31/12/2500 LIBEN Chocolate and chocolate products in the form of chocolates, whether or not filled, containing alcohol 01/01/1988 31/12/2500 -18069019 01/01/1988 31/12/2500 LIBEN Chocolate and chocolate products in the form of chocolates, whether or not filled, not containing alcohol 01/01/1988 31/12/2500 -18069031 01/01/1988 31/12/2500 LIBEN Chocolate and chocolate products, filled (excl. in blocks, slabs or bars and chocolates) 01/01/1988 31/12/2500 -18069039 01/01/1988 31/12/2500 LIBEN Chocolates and chocolate products, unfilled (excl. in blocks, slabs or bars, chocolates) 01/01/1988 31/12/2500 -18069050 01/01/1988 31/12/2500 LIBEN Sugar confectionery and substitutes therefor made from sugar substitution products, containing cocoa 01/01/1988 31/12/2500 -18069060 01/01/1988 31/12/2500 LIBEN Spreads containing cocoa 01/01/1988 31/12/2500 -18069070 01/01/1988 31/12/2500 LIBEN Preparations containing cocoa, for making beverages 01/01/1988 31/12/2500 -18069090 01/01/1988 31/12/2500 LIBEN Preparations containing cocoa, in containers or immediate packings of <= 2 kg (excl. chocolate, chocolates and other chocolate products, sugar confectionery and substitutes therefor made from sugar substitution products, spreads and preparations containing cocoa for making beverages, and cocoa powder) 01/01/1988 31/12/2500 -18CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 18 01/01/2002 31/12/2500 -18CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 18 01/01/2002 31/12/2500 -18CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 18 01/01/2002 31/12/2500 -18MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -18MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -18MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -18SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 18 01/01/1988 31/12/2500 -18SSS0 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 18 and SITC section 0 01/01/1997 31/12/2500 -18SSS072 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 18 and SITC group 072 01/01/1997 31/12/2500 -18SSS073 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 18 and SITC group 073 01/01/1997 31/12/2500 -18SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 18 and SITC section 9 01/01/1988 31/12/1996 -18SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 18 and SITC section 9 01/01/1997 31/12/2500 -18SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 18 and SITC group 999 01/01/1988 31/12/1996 -18SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 18 and SITC group 999 01/01/1997 31/12/2500 -19 01/01/1988 31/12/2500 LIBEN PREPARATIONS OF CEREALS, FLOUR, STARCH OR MILK; PASTRYCOOKS' PRODUCTS 01/01/1988 31/12/2500 -1901 01/01/1988 31/12/2500 LIBEN Malt extract; food preparations of flour, groats, meal, starch or malt extract, not containing cocoa or containing < 40% by weight of cocoa calculated on a totally defatted basis, n.e.s.; food preparations of milk, cream, butter milk, sour milk, sour cream, whey, yogurt, kephir, and similar goods of heading 0401 to 0404, not containing cocoa or containing < 5% by weight of cocoa calculated on a totally defatted basis, n.e.s. 01/01/1988 31/12/2500 -190110 01/01/1988 31/12/2500 LIBEN Food preparations for infant use, put up for retail sale, of flour, groats, meal, starch or malt extract, not containing cocoa or containing < 40% by weight of cocoa calculated on a totally defatted basis, n.e.s. and of milk, sour cream, whey, yogurt, kephir or similar goods of heading 0401 to 0404, not containing cocoa or containing < 5% by weight of cocoa calculated on a totally defatted basis, n.e.s. 01/01/1988 31/12/2500 -19011000 01/01/1988 31/12/2500 LIBEN Food preparations for infant use, put up for retail sale, of flour, groats, meal, starch or malt extract, not containing cocoa or containing < 40% by weight of cocoa calculated on a totally defatted basis, n.e.s. and of milk, sour cream, whey, yogurt, kephir or similar goods of heading 0401 to 0404, not containing cocoa or containing < 5% by weight of cocoa calculated on a totally defatted basis, n.e.s. 01/01/1988 31/12/2500 -190120 01/01/1988 31/12/2500 LIBEN Mixes and doughs of flour, groats, meal, starch or malt extract, not containing cocoa or containing < 40% by weight of cocoa calculated on a totally defatted basis, n.e.s. and of mixes and doughs of milk, cream, butter milk, sour milk, sour cream, whey, yogurt, kephir or similar goods of heading 0401 to 0404, not containing cocoa or containing < 5% by weight of cocoa calculated on a totally defatted basis, n.e.s., for the preparation of bakers' wares of heading 1905 01/01/1988 31/12/2500 -19012000 01/01/1988 31/12/2500 LIBEN Mixes and doughs of flour, groats, meal, starch or malt extract, not containing cocoa or containing < 40% by weight of cocoa calculated on a totally defatted basis, n.e.s. and of mixes and doughs of milk, cream, butter milk, sour milk, sour cream, whey, yogurt, kephir or similar goods of heading 0401 to 0404, not containing cocoa or containing < 5% by weight of cocoa calculated on a totally defatted basis, n.e.s., for the preparation of bakers' wares of heading 1905 01/01/1988 31/12/2500 -190190 01/01/1988 31/12/2500 LIBEN Malt extract; food preparations of flour, groats, meal, starch or malt extract, not containing cocoa or containing < 40% by weight of cocoa calculated on a totally defatted basis, n.e.s. and food preparations of milk, cream, butter milk, sour milk, sour cream, whey, yogurt, kephir or similar goods of heading 0401 to 0404, not containing cocoa or containing < 5% by weight of cocoa calculated on a totally defatted basis, n.e.s. (excl. for infant use, put up for retail sale, and mixes and doughs for the preparation of bakers' wares of heading 1905) 01/01/1988 31/12/2500 -19019011 01/01/1988 31/12/2500 LIBEN Malt extract with a dry extract content of >= 90% 01/01/1988 31/12/2500 -19019019 01/01/1988 31/12/2500 LIBEN Malt extract with a dry extract content of < 90% 01/01/1988 31/12/2500 -19019090 01/01/1988 31/12/1994 LIBEN Preparations of flour, meal, starch or malt extract, not containing cocoa powder or containing cocoa powder in a proportion by weight of < 50 % n.e.s.; food preparations of goods of headings 04 01 to 04 04, not containing cocoa powder or containing cocoa powder in a proportion by weight of < 10 % n.e.s. (excl. for infant use, retail sale, and mixes and dough for preparation of bakers' wares) 01/01/1988 31/12/1994 -19019091 01/01/1995 31/12/2500 LIBEN Food preparations of flour, groats, meal, starch or malt extract, containing no milkfats, sucrose, isoglucose, glucose or starch or containing < 1,5% milkfat, 5% sucrose, isoglucose, glucose or starch, not containing cocoa or containing cocoa in a proportion by weight of < 40%, calculated on a totally defatted basis (excl. malt extract and for infant food, put up for retail sale, mixes and doughs for the preparation of bakers' wares and in powder form of milk, cream, butter milk, sour milk, sour cream, whey, yogurt, kephir or similar goods of heading 0401 to 0404) 01/01/1995 31/12/2500 -19019095 01/01/2020 31/12/2500 LIBEN Food preparations in powder form, consisting of a blend of skimmed milk and/or whey and vegetable fats/oils, with a content of fats/oils <=30% by weight 01/01/2020 31/12/2500 -19019099 01/01/1995 31/12/2019 LIBEN Food preparations of flour, groats, meal, starch or malt extract, not containing cocoa or containing cocoa in a proportion by weight of < 40%, calculated on a totally defatted basis, and food preparations of milk, cream, butter milk, sour milk, sour cream, whey, yogurt, kephir or similar goods in heading 0401 to 0404, not containing cocoa or containing cocoa in a proportion by weight of < 5%, calculated on a totally defatted basis, n.e.s. (excl. malt extract and preparations for infant food, put up for retail sale, mixes and doughs for preparation of bakers' wares and goods in subheading 1901.90.91) 01/01/1995 31/12/2019 -19019099 01/01/2020 31/12/2500 LIBEN Food preparations of flour, groats, meal, starch or malt extract, not containing cocoa or containing cocoa in a proportion by weight of < 40%, calculated on a totally defatted basis, and food preparations of milk, cream, butter milk, sour milk, sour cream, whey, yogurt, kephir or similar goods in heading 0401 to 0404, not containing cocoa or containing cocoa in a proportion by weight of < 5%, calculated on a totally defatted basis, n.e.s. (excl. malt extract and preparations for infant food, put up for retail sale, mixes and doughs for preparation of bakers' wares and goods in subheadings 1901.90.91 and 1901.90.95) 01/01/2020 31/12/2500 -1902 01/01/1988 31/12/2500 LIBEN Pasta, whether or not cooked or stuffed with meat or other substances or otherwise prepared, such as spaghetti, macaroni, noodles, lasagne, gnocchi, ravioli, cannelloni; couscous, whether or not prepared 01/01/1988 31/12/2500 -190211 01/01/1988 31/12/2500 LIBEN Uncooked pasta, not stuffed or otherwise prepared, containing eggs 01/01/1988 31/12/2500 -19021100 01/01/1988 31/12/1990 LIBEN Uncooked pasta, not stuffed or otherwise prepared, containing eggs 01/01/1988 31/12/1990 -19021100 01/01/1993 31/12/2500 LIBEN Uncooked pasta, not stuffed or otherwise prepared, containing eggs 01/01/1993 31/12/2500 -19021110 01/01/1991 31/12/1992 LIBEN Uncooked pasta containing eggs, neither stuffed nor otherwise prepared 01/01/1991 31/12/1992 -19021190 01/01/1991 31/12/1992 LIBEN Uncooked pasta containing eggs, (unprepared) (excl. 1902.11-10) 01/01/1991 31/12/1992 -190219 01/01/1988 31/12/2500 LIBEN Uncooked pasta, not stuffed or otherwise prepared, not containing eggs 01/01/1988 31/12/2500 -19021900 01/01/1993 31/12/1994 LIBEN Uncooked pasta, not stuffed or otherwise prepared, not containing eggs 01/01/1993 31/12/1994 -19021910 01/01/1988 31/12/1990 LIBEN Uncooked pasta, neither stuffed nor otherwise prepared (excl. common wheat meal or flour and eggs) 01/01/1988 31/12/1990 -19021910 01/01/1995 31/12/2500 LIBEN Uncooked pasta, not stuffed or otherwise prepared, not containing common wheat flour or meal or eggs 01/01/1995 31/12/2500 -19021911 01/01/1991 31/12/1992 LIBEN Uncooked pasta, (unprepared), containing only durum wheat flour or meal 01/01/1991 31/12/1992 -19021919 01/01/1991 31/12/1992 LIBEN Uncooked pasta, (unprepared) (excl. eggs, common wheat flour or meal and 1902.19-11) 01/01/1991 31/12/1992 -19021990 01/01/1988 31/12/1992 LIBEN Uncooked pasta, neither stuffed nor otherwise prepared, containing common wheat meal or flour (excl. eggs) 01/01/1988 31/12/1992 -19021990 01/01/1995 31/12/2500 LIBEN Uncooked pasta, not stuffed or otherwise prepared, containing common wheat flour or meal but no eggs 01/01/1995 31/12/2500 -190220 01/01/1988 31/12/2500 LIBEN Pasta, stuffed with meat or other substances, whether or not cooked or otherwise prepared 01/01/1988 31/12/2500 -19022010 01/01/1988 31/12/2500 LIBEN Pasta, stuffed with meat or other substances, whether or not cooked or otherwise prepared, containing > 20% by weight of fish, crustaceans, molluscs or other aquatic invertebrates 01/01/1988 31/12/2500 -19022030 01/01/1988 31/12/2500 LIBEN Pasta, stuffed with meat or other substances, whether or not cooked or otherwise prepared, containing > 20% by weight of sausages and the like, of meat and meat offal of any kind, incl. fats of any kind or origin 01/01/1988 31/12/2500 -19022091 01/01/1988 31/12/2500 LIBEN Cooked pasta, stuffed with meat or other substances (excl. containing > 20% by weight of sausages and the like, of meat and meat offal of any kind, incl. fats of any kind or origin or > 20% by weight of fish, crustaceans, molluscs or other aquatic invertebrates) 01/01/1988 31/12/2500 -19022099 01/01/1988 31/12/2500 LIBEN Pasta, otherwise prepared, stuffed with meat or other substances (excl. cooked, or containing > 20% by weight of sausages and the like, of meat and meat offal of any kind, incl. fats of any kind or origin or > 20% by weight of fish, crustaceans, molluscs or other aquatic invertebrates) 01/01/1988 31/12/2500 -190230 01/01/1988 31/12/2500 LIBEN Pasta, cooked or otherwise prepared (excl. stuffed) 01/01/1988 31/12/2500 -19023010 01/01/1988 31/12/2500 LIBEN Dried, prepared pasta (excl. stuffed) 01/01/1988 31/12/2500 -19023090 01/01/1988 31/12/2500 LIBEN Pasta, cooked or otherwise prepared (excl. stuffed or dried pasta) 01/01/1988 31/12/2500 -190240 01/01/1988 31/12/2500 LIBEN Couscous, whether or not prepared 01/01/1988 31/12/2500 -19024010 01/01/1988 31/12/2500 LIBEN Couscous unprepared 01/01/1988 31/12/2500 -19024090 01/01/1988 31/12/2500 LIBEN Couscous, cooked or otherwise prepared 01/01/1988 31/12/2500 -1903 01/01/1988 31/12/2500 LIBEN Tapioca and substitutes therefor prepared from starch, in the form of flakes, grains, pearls, siftings or similar forms 01/01/1988 31/12/2500 -190300 01/01/1988 31/12/2500 LIBEN Tapioca and substitutes therefor prepared from starch, in the form of flakes, grains, pearls, siftings or similar forms 01/01/1988 31/12/2500 -19030000 01/01/1988 31/12/2500 LIBEN Tapioca and substitutes therefor prepared from starch, in the form of flakes, grains, pearls, siftings or similar forms 01/01/1988 31/12/2500 -1904 01/01/1988 31/12/2500 LIBEN Prepared foods obtained by the swelling or roasting of cereals or cereal products, e.g. corn flakes; cereals (other than maize "corn") in grain form or in the form of flakes or other worked grains (except flour, groats and meal), pre-cooked or otherwise prepared, n.e.s. 01/01/1988 31/12/2500 -190410 01/01/1988 31/12/2500 LIBEN Prepared foods obtained by swelling or roasting cereals or cereal products, e.g. corn flakes 01/01/1988 31/12/2500 -19041010 01/01/1988 31/12/1995 LIBEN Prepared foods obtained by swelling or roasting cereals or cereal products based on maize 01/01/1988 31/12/1995 -19041010 01/01/1996 31/12/2500 LIBEN Prepared foods obtained by swelling or roasting cereals or cereal products based on maize 01/01/1996 31/12/2500 -19041030 01/01/1988 31/12/1995 LIBEN Prepared foods obtained by swelling or roasting cereals or cereal products based on rice 01/01/1988 31/12/1995 -19041030 01/01/1996 31/12/2500 LIBEN Prepared foods obtained by swelling or roasting cereals or cereal products based on rice 01/01/1996 31/12/2500 -19041090 01/01/1988 31/12/1995 LIBEN Prepared foods obtained by swelling or roasting cereals or cereal products (excl. based on maize or rice) 01/01/1988 31/12/1995 -19041090 01/01/1996 31/12/2500 LIBEN Prepared foods obtained by swelling or roasting cereals or cereal products (excl. based on maize or rice) 01/01/1996 31/12/2500 -190420 01/01/1996 31/12/2500 LIBEN Prepared foods obtained from unroasted cereal flakes or from mixtures of unroasted cereal flakes and roasted cereal flakes or swelled cereals 01/01/1996 31/12/2500 -19042010 01/01/1996 31/12/2500 LIBEN Preparations of the Müsli type based on unroasted cereal flakes 01/01/1996 31/12/2500 -19042091 01/01/1996 31/12/2500 LIBEN Prepared foods obtained from unroasted cereal flakes or from mixtures of unroasted cereal flakes and roasted cereal flakes or swelled cereals, obtained from maize (excl. preparations of the Müsli type on the basis of unroasted cereal flakes) 01/01/1996 31/12/2500 -19042095 01/01/1996 31/12/2500 LIBEN Prepared foods obtained from unroasted cereal flakes or from mixtures of unroasted cereal flakes and roasted cereal flakes or swelled cereals, obtained from rice (excl. preparations of the Müsli type on the basis of unroasted cereal flakes) 01/01/1996 31/12/2500 -19042099 01/01/1996 31/12/2500 LIBEN Prepared foods obtained from unroasted cereal flakes or from mixtures of unroasted and roasted cereal flakes or swelled cereals (excl. obtained from maize or rice and preparations of the Müsli type based on unroasted cereal flakes) 01/01/1996 31/12/2500 -190430 01/01/2002 31/12/2500 LIBEN Bulgur wheat in the form of worked grains, obtained by cooking hard wheat grains 01/01/2002 31/12/2500 -19043000 01/01/2002 31/12/2500 LIBEN Bulgur wheat in the form of worked grains, obtained by cooking hard wheat grains 01/01/2002 31/12/2500 -190490 01/01/1988 31/12/2500 LIBEN Cereals (excl. maize [corn]) in grain or flake form or other worked grains, pre-cooked or otherwise prepared, n.e.s. (excl. flour, groats and meal, food preparations obtained by swelling or roasting or from unroasted cereal flakes or from mixtures of unroasted cereal flakes and roasted cereal flakes or swelled cereals and bulgur wheat) 01/01/1988 31/12/2500 -19049010 01/01/1988 31/12/2500 LIBEN Rice, pre-cooked or otherwise prepared, n.e.s. (excl. flour, groats and meal, food preparations obtained by swelling or roasting or from unroasted cereal flakes or from mixtures of unroasted cereal flakes and roasted cereal flakes or swelled cereals) 01/01/1988 31/12/2500 -19049080 01/01/2002 31/12/2500 LIBEN Cereals in grain or flake form or other worked grains, pre-cooked or otherwise prepared, n.e.s. (excl. rice, maize [corn], flour, groats and meal, food preparations obtained by swelling or roasting or from unroasted cereal flakes or from mixtures of unroasted cereal flakes and roasted cereal flakes or swelled cereals and bulgur wheat) 01/01/2002 31/12/2500 -19049090 01/01/1988 31/12/2001 LIBEN Cereals in grain or flake form, pre-cooked or otherwise prepared, n.e.s. (excl. rice, maize, flour and meal, food preparations obtained by swelling or roasting or from unroasted cereal flakes or from mixtures of unroasted cereal flakes and roasted cereal flakes or swelled cereals) 01/01/1988 31/12/2001 -1905 01/01/1988 31/12/2500 LIBEN Bread, pastry, cakes, biscuits and other bakers' wares, whether or not containing cocoa; communion wafers, empty cachets of a kind suitable for pharmaceutical use, sealing wafers, rice paper and similar products 01/01/1988 31/12/2500 -190510 01/01/1988 31/12/2500 LIBEN Crispbread 01/01/1988 31/12/2500 -19051000 01/01/1988 31/12/2500 LIBEN Crispbread 01/01/1988 31/12/2500 -190520 01/01/1988 31/12/2500 LIBEN Gingerbread and the like, whether or not containing cocoa 01/01/1988 31/12/2500 -19052010 01/01/1988 31/12/2500 LIBEN Gingerbread and the like, whether or not containing cocoa, containing < 30% sucrose, incl. invert sugar expressed as sucrose 01/01/1988 31/12/2500 -19052030 01/01/1988 31/12/2500 LIBEN Gingerbread and the like, whether or not containing cocoa, containing >= 30% but < 50% sucrose, incl. invert sugar expressed as sucrose 01/01/1988 31/12/2500 -19052090 01/01/1988 31/12/2500 LIBEN Gingerbread and the like, whether or not containing cocoa, containing >= 50% sucrose, incl. invert sugar expressed as sucrose 01/01/1988 31/12/2500 -190530 01/01/1988 31/12/2001 LIBEN Sweet biscuits, waffles and wafers, whether or not containing cocoa (excl. with water content of > 10%) 01/01/1988 31/12/2001 -19053011 01/01/1988 31/12/2001 LIBEN Sweet biscuits, waffles and wafers, whether or not containing cocoa, coated or covered with chocolate or cocoa preparations, in immediate packings of <= 85 g (excl. waffles and wafers with water content of > 10%) 01/01/1988 31/12/2001 -19053019 01/01/1988 31/12/2001 LIBEN Sweet biscuits, waffles and wafers, whether or not containing cocoa, coated or covered with chocolate or cocoa preparations, in immediate packings of > 85 g (excl. waffles and wafers with water content of > 10%) 01/01/1988 31/12/2001 -19053030 01/01/1988 31/12/2001 LIBEN Sweet biscuits, whether or not containing cocoa, containing >= 8% milkfats (excl. coated or covered with chocolate or cocoa preparations, and waffles and wafers) 01/01/1988 31/12/2001 -19053051 01/01/1988 31/12/2001 LIBEN Sweet sandwich biscuits, whether or not containing cocoa, containing < 8% milkfats (excl. coated or covered with chocolate or cocoa preparations, and waffles and wafers) 01/01/1988 31/12/2001 -19053059 01/01/1988 31/12/2001 LIBEN Sweet biscuits, whether or not containing cocoa, containing < 8% milkfats (excl. coated or covered with chocolate or cocoa preparations, sandwich biscuits, and waffles and wafers) 01/01/1988 31/12/2001 -19053091 01/01/1988 31/12/2001 LIBEN Waffles and wafers, salted, whether or not filled (excl. with water content of > 10%) 01/01/1988 31/12/2001 -19053099 01/01/1988 31/12/2001 LIBEN Waffles and wafers, whether or not filled (excl. salted and with water content of > 10%) 01/01/1988 31/12/2001 -190531 01/01/2002 31/12/2500 LIBEN Sweet biscuits 01/01/2002 31/12/2500 -19053111 01/01/2002 31/12/2500 LIBEN Sweet biscuits, whether or not containing cocoa, coated or covered with chocolate or cocoa preparations, in immediate packings of <= 85 g 01/01/2002 31/12/2500 -19053119 01/01/2002 31/12/2500 LIBEN Sweet biscuits, whether or not containing cocoa, coated or covered with chocolate or cocoa preparations, in immediate packings of > 85 g 01/01/2002 31/12/2500 -19053130 01/01/2002 31/12/2500 LIBEN Sweet biscuits, whether or not containing cocoa, containing >= 8% milkfats (excl. coated or covered with chocolate or cocoa preparations) 01/01/2002 31/12/2500 -19053191 01/01/2002 31/12/2500 LIBEN Sweet sandwich biscuits, whether or not containing cocoa, containing < 8% milkfats (excl. coated or covered with chocolate or cocoa preparations) 01/01/2002 31/12/2500 -19053199 01/01/2002 31/12/2500 LIBEN Sweet biscuits, whether or not containing cocoa, containing < 8% milkfats (excl. coated or covered with chocolate or cocoa preparations and sandwich biscuits) 01/01/2002 31/12/2500 -190532 01/01/2002 31/12/2500 LIBEN Waffles and wafers 01/01/2002 31/12/2500 -19053205 01/01/2004 31/12/2500 LIBEN Waffles and wafers of a water content, by weight, of > 10% 01/01/2004 31/12/2500 -19053211 01/01/2002 31/12/2500 LIBEN Waffles and wafers, whether or not containing cocoa, coated or covered with chocolate or cocoa preparations, in immediate packings of <= 85 g (excl. of a water content, by weight, of > 10%) 01/01/2002 31/12/2500 -19053219 01/01/2002 31/12/2500 LIBEN Waffles and wafers, whether or not containing cocoa, coated or covered with chocolate or cocoa preparations (excl. in immediate packings of <= 85 g and waffles and wafers of a water content, by weight, of > 10%) 01/01/2002 31/12/2500 -19053291 01/01/2002 31/12/2500 LIBEN Waffles and wafers, salted, whether or not filled (excl. of a water content, by weight, of > 10%) 01/01/2002 31/12/2500 -19053299 01/01/2002 31/12/2500 LIBEN Waffles and wafers, whether or not containing cocoa, whether or not filled (excl. coated or covered with chocolate or cocoa preparations, salted and those with water content of > 10%) 01/01/2002 31/12/2500 -190540 01/01/1988 31/12/2500 LIBEN Rusks, toasted bread and similar toasted products 01/01/1988 31/12/2500 -19054000 01/01/1988 31/12/1992 LIBEN Rusks, toasted bread and similar toasted products 01/01/1988 31/12/1992 -19054010 01/01/1993 31/12/2500 LIBEN Rusks 01/01/1993 31/12/2500 -19054090 01/01/1993 31/12/2500 LIBEN Toasted bread and similar toasted products (excl. rusks) 01/01/1993 31/12/2500 -190590 01/01/1988 31/12/2500 LIBEN Bread, pastry, cakes, biscuits and other bakers' wares, whether or not containing cocoa; communion wafers, empty cachets of a kind suitable for pharmaceutical use, sealing wafers, rice paper and similar products (excl. crispbread, gingerbread and the like, sweet biscuits, waffles, wafers not mentioned, rusks, toasted bread and similar toasted products) 01/01/1988 31/12/2500 -19059010 01/01/1988 31/12/2500 LIBEN Matzos 01/01/1988 31/12/2500 -19059020 01/01/1988 31/12/2500 LIBEN Communion wafers, empty cachets for pharmaceutical use, sealing wafers, rice paper and similar products 01/01/1988 31/12/2500 -19059030 01/01/1988 31/12/2500 LIBEN Bread, not containing added honey, eggs, cheese or fruit, whether or not containing in the dry state <= 5% by weight of either sugars or fats 01/01/1988 31/12/2500 -19059040 01/01/1988 31/12/2003 LIBEN Waffles and wafers with water content of > 10% by weight 01/01/1988 31/12/2003 -19059045 01/01/1991 31/12/2500 LIBEN Biscuits (excl. sweet biscuits) 01/01/1991 31/12/2500 -19059050 01/01/1988 31/12/1990 LIBEN Unsweetened biscuits, such as extruded or expanded products, savoury or salted (excl. crispbread, rusks, toasted bread and similar toasted products, and waffles and wafers) 01/01/1988 31/12/1990 -19059055 01/01/1991 31/12/2500 LIBEN Extruded or expanded products, savoury or salted (excl. crispbread, rusks, toasted bread, similar toasted products and waffles and wafers) 01/01/1991 31/12/2500 -19059060 01/01/1988 31/12/2017 LIBEN Pineapple juice, unfermented, Brix value > 20 but <= 67 at 20°C, value of <= 30 € per 100 kg, containing <= 30% added sugar (excl. containing spirit) 01/01/1988 31/12/2017 -19059070 01/01/2018 31/12/2500 LIBEN Fruit tarts, currant bread, panettone, meringues, Christmas stollen, croissants and other bakers' wares containing by weight >=5% of sucrose, invert sugar or isoglucose (excl. crispbread, gingerbread and the like, sweet biscuits, waffles and wafers, and rusks) 01/01/2018 31/12/2500 -19059080 01/01/2018 31/12/2500 LIBEN Pizzas, quiches and other bakers' wares containing by weight <5% of sucrose, invert sugar or isoglucose (excl. crispbread, gingerbread and the like, sweet biscuits, waffles and wafers, rusks and similar toasted products, bread, communion wafers, empty cachets for pharmaceutical use, sealing wafers, rice paper and similar products) 01/01/2018 31/12/2500 -19059090 01/01/1988 31/12/2017 LIBEN Pineapple juice, unfermented, Brix value > 20 but <= 67 at 20°C (excl. containing added sugar or containing spirit) 01/01/1988 31/12/2017 -19CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 19 01/01/2002 31/12/2500 -19CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 19 01/01/2002 31/12/2500 -19CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 19 01/01/2002 31/12/2500 -19MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -19MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -19MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -19SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 19 01/01/1988 31/12/2500 -19SSS0 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 19 and SITC section 0 01/01/1997 31/12/2500 -19SSS048 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 19 and SITC group 048 01/01/1997 31/12/2500 -19SSS056 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 19 and SITC group 056 01/01/1997 31/12/2500 -19SSS098 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 19 and SITC group 098 01/01/1997 31/12/2500 -19SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 19 and SITC section 9 01/01/1988 31/12/1996 -19SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 19 and SITC section 9 01/01/1997 31/12/2500 -19SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 19 and SITC group 999 01/01/1988 31/12/1996 -19SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 19 and SITC group 999 01/01/1997 31/12/2500 -20 01/01/1988 31/12/2500 LIBEN PREPARATIONS OF VEGETABLES, FRUIT, NUTS OR OTHER PARTS OF PLANTS 01/01/1988 31/12/2500 -2001 01/01/1988 31/12/2500 LIBEN Vegetables, fruit, nuts and other edible parts of plants, prepared or preserved by vinegar or acetic acid 01/01/1988 31/12/2500 -200110 01/01/1988 31/12/2500 LIBEN Cucumbers and gherkins, prepared or preserved by vinegar or acetic acid 01/01/1988 31/12/2500 -20011000 01/01/1988 31/12/2500 LIBEN Cucumbers and gherkins, prepared or preserved by vinegar or acetic acid 01/01/1988 31/12/2500 -200120 01/01/1988 31/12/2001 LIBEN Onions, prepared or preserved by vinegar or acetic acid 01/01/1988 31/12/2001 -20012000 01/01/1988 31/12/2001 LIBEN Onions, prepared or preserved by vinegar or acetic acid 01/01/1988 31/12/2001 -200190 01/01/1988 31/12/2500 LIBEN Vegetables, fruit, nuts and other edible parts of plants, prepared or preserved by vinegar or acetic acid (excl. cucumbers and gherkins) 01/01/1988 31/12/2500 -20019010 01/01/1988 31/12/2500 LIBEN Mango chutney, prepared or preserved by vinegar or acetic acid 01/01/1988 31/12/2500 -20019020 01/01/1988 31/12/2500 LIBEN Fruit of genus capsicum, prepared or preserved by vinegar or acetic acid (excl. sweet peppers and pimentos) 01/01/1988 31/12/2500 -20019030 01/01/1988 31/12/2500 LIBEN Sweetcorn "Zea Mays var. Saccharata", prepared or preserved by vinegar or acetic acid 01/01/1988 31/12/2500 -20019040 01/01/1988 31/12/2500 LIBEN Yams, sweet potatoes and similar parts of plants containing >= 5% starch, prepared or preserved by vinegar or acetic acid 01/01/1988 31/12/2500 -20019050 01/01/1988 31/12/2500 LIBEN Mushrooms, prepared or preserved by vinegar or acetic acid 01/01/1988 31/12/2500 -20019060 01/01/1990 31/12/2011 LIBEN Palm hearts, prepared or preserved by vinegar or acetic acid 01/01/1990 31/12/2011 -20019065 01/01/1993 31/12/2500 LIBEN Olives, prepared or preserved by vinegar or acetic acid 01/01/1993 31/12/2500 -20019070 01/01/1993 31/12/2500 LIBEN Sweet peppers, prepared or preserved by vinegar or acetic acid 01/01/1993 31/12/2500 -20019075 01/01/1993 31/12/2003 LIBEN Salad beetroot "Beta vulgaris var. conditiva", prepared or preserved by vinegar or acetic acid 01/01/1993 31/12/2003 -20019080 01/01/1990 31/12/1992 LIBEN Vegetables, fruit, nuts and other edible parts of plants (excl. 2001.10-00 to 2001.90-60), prepared or preserved by vinegar or acetic acid 01/01/1990 31/12/1992 -20019085 01/01/1993 31/12/2003 LIBEN Red cabbages, prepared or preserved by vinegar or acetic acid 01/01/1993 31/12/2003 -20019090 01/01/1988 31/12/1989 LIBEN Vegetables, fruit, nuts and other edible parts of plants, prepared or preserved by vinegar or acetic acid (excl. cucumbers, gherkins, onions, mango chutney, fruit of genus capsicum other than sweet peppers and pimentos, sweetcorn 'zea mays var. saccharata', yams, sweet potatoes and similar parts of plants containing >= 5 % starch, and mushrooms) 01/01/1988 31/12/1989 -20019091 01/01/1995 31/12/2011 LIBEN Guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved by vinegar or acetic acid 01/01/1995 31/12/2011 -20019092 01/01/2012 31/12/2500 LIBEN Palm hearts, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved by vinegar or acetic acid 01/01/2012 31/12/2500 -20019093 01/01/2002 31/12/2007 LIBEN Onions, prepared or preserved by vinegar or acetic acid 01/01/2002 31/12/2007 -20019095 01/01/1993 31/12/1994 LIBEN Vegetables, fruit, nuts and other edible parts of plants, prepared or preserved by vinegar or acetic acid (excl. onions, cucumbers and gherkins, mango chutney, fruit of the genus capsicum other than sweet peppers or pimentos, sweetcorn, yams, sweet potatoes and similar edible parts of plants containing >= 5% by weight of starch; mushrooms, palm hearts, olives, red cabbages, salad beetroot and sweet peppers) 01/01/1993 31/12/1994 -20019096 01/01/1995 31/12/2003 LIBEN Vegetables, fruit, nuts and other edible parts of plants, prepared or preserved by vinegar (excl. onions, cucumbers and gherkins, mango chutney, fruit of the genus Capsicum other than sweet peppers or pimentos, sweetcorn, yams, sweet potatoes and similar edible parts of plants, containing >= 5% by weight of starch; mushrooms, palm hearts, olives, red cabbages, salad beetroot, sweet peppers and guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts and macadamia nuts) 01/01/1995 31/12/2003 -20019097 01/01/2008 31/12/2500 LIBEN Vegetables, fruit, nuts and other edible parts of plants, prepared or preserved by vinegar or acetic acid (excl. cucumbers and gherkins, mango chutney, fruit of the genus Capsicum other than sweet peppers or pimentos, sweetcorn, yams, sweet potatoes and similar edible parts of plants, containing >= 5% by weight of starch; mushrooms, palm hearts, olives, sweet peppers, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts and macadamia nuts) 01/01/2008 31/12/2500 -20019099 01/01/2004 31/12/2007 LIBEN Vegetables, fruit, nuts and other edible parts of plants, prepared or preserved by vinegar (excl. onions, cucumbers and gherkins, mango chutney, fruit of the genus Capsicum other than sweet peppers or pimentos, sweetcorn, yams, sweet potatoes and similar edible parts of plants, containing >= 5% by weight of starch; mushrooms, palm hearts, olives, sweet peppers, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts and macadamia nuts) 01/01/2004 31/12/2007 -2002 01/01/1988 31/12/2500 LIBEN Tomatoes, prepared or preserved otherwise than by vinegar or acetic acid 01/01/1988 31/12/2500 -200210 01/01/1988 31/12/2500 LIBEN Tomatoes, whole or in pieces, prepared or preserved otherwise than by vinegar or acetic acid 01/01/1988 31/12/2500 -20021000 01/01/1988 31/12/1989 LIBEN Tomatoes, whole or in pieces, prepared or preserved otherwise than by vinegar or acetic acid 01/01/1988 31/12/1989 -20021010 01/01/1990 31/12/2500 LIBEN Peeled tomatoes, whole or in pieces, prepared or preserved otherwise than by vinegar or acetic acid 01/01/1990 31/12/2500 -20021090 01/01/1990 31/12/2500 LIBEN Unpeeled tomatoes, whole or in pieces, prepared or preserved otherwise than by vinegar or acetic acid 01/01/1990 31/12/2500 -200290 01/01/1988 31/12/2500 LIBEN Tomatoes, prepared or preserved otherwise than by vinegar or acetic acid (excl. whole or in pieces) 01/01/1988 31/12/2500 -20029010 01/01/1988 31/12/1993 LIBEN Tomatoes, prepared or preserved otherwise than by vinegar or acetic acid with a dry matter content of < 12% by weight (excl. whole tomatoes or tomatoes in pieces) 01/01/1988 31/12/1993 -20029011 01/01/1994 31/12/2500 LIBEN Tomatoes, prepared or preserved otherwise than by vinegar or acetic acid, with dry matter content of < 12%, in immediate packings of a net content of > 1 kg (excl. whole or in pieces) 01/01/1994 31/12/2500 -20029019 01/01/1994 31/12/2500 LIBEN Tomatoes, prepared or preserved otherwise than by vinegar or acetic acid, with dry matter content of < 12%, in immediate packings of a net content of <= 1 kg (excl. whole or in pieces) 01/01/1994 31/12/2500 -20029030 01/01/1988 31/12/1993 LIBEN Tomatoes, prepared or preserved otherwise than by vinegar or acetic acid with a dry matter content of >= 12% and <= 30% by weight (excl. whole tomatoes or tomatoes in pieces) 01/01/1988 31/12/1993 -20029031 01/01/1994 31/12/2500 LIBEN Tomatoes, prepared or preserved otherwise than by vinegar or acetic acid, with dry matter content of >= 12% but <= 30%, in immediate packings of a net content of > 1 kg (excl. whole or in pieces) 01/01/1994 31/12/2500 -20029039 01/01/1994 31/12/2500 LIBEN Tomatoes, prepared or preserved otherwise than by vinegar or acetic acid, with dry matter content of >= 12% but 30%, in immediate packings of a net content of <= 1 kg (excl. whole or in pieces) 01/01/1994 31/12/2500 -20029090 01/01/1988 31/12/1993 LIBEN Tomatoes, prepared or preserved otherwise than by vinegar or acetic acid with a dry matter content of > 30% by weight (excl. whole tomatoes or tomatoes in pieces) 01/01/1988 31/12/1993 -20029091 01/01/1994 31/12/2500 LIBEN Tomatoes, prepared or preserved otherwise than by vinegar or acetic acid, with dry matter content of > 30%, in immediate packings of a net content of > 1 kg (excl. whole or in pieces) 01/01/1994 31/12/2500 -20029099 01/01/1994 31/12/2500 LIBEN Tomatoes, prepared or preserved otherwise than by vinegar or acetic acid, with dry matter content of > 30%, in immediate packings of a net content of <= 1 kg (excl. whole or in pieces) 01/01/1994 31/12/2500 -2003 01/01/1988 31/12/2500 LIBEN Mushrooms and truffles, prepared or preserved otherwise than by vinegar or acetic acid 01/01/1988 31/12/2500 -200310 01/01/1988 31/12/2500 LIBEN Mushrooms of the genus "Agaricus", prepared or preserved otherwise than by vinegar or acetic acid 01/01/1988 31/12/2500 -20031010 01/01/1988 31/12/1992 LIBEN Cultivated mushrooms, prepared or preserved otherwise than by vinegar or acetic acid 01/01/1988 31/12/1992 -20031020 01/01/1993 31/12/2500 LIBEN Mushrooms of the genus Agaricus, provisionally preserved otherwise than by vinegar or acetic acid, completely cooked 01/01/1993 31/12/2500 -20031030 01/01/1993 31/12/2500 LIBEN Mushrooms of the genus Agaricus, prepared or preserved otherwise than by vinegar or acetic acid (excl. completely cooked mushrooms and provisionally preserved mushrooms) 01/01/1993 31/12/2500 -20031080 01/01/1993 31/12/2001 LIBEN Mushrooms, prepared or preserved otherwise than by vinegar or acetic acid (excl. mushrooms of the genus Agaricus) 01/01/1993 31/12/2001 -20031090 01/01/1988 31/12/1992 LIBEN Mushrooms, prepared or preserved otherwise than by vinegar or acetic acid (excl. cultivated) 01/01/1988 31/12/1992 -200320 01/01/1988 31/12/2011 LIBEN Truffles, prepared or preserved otherwise than by vinegar or acetic acid 01/01/1988 31/12/2011 -20032000 01/01/1988 31/12/2011 LIBEN Truffles, prepared or preserved otherwise than by vinegar or acetic acid 01/01/1988 31/12/2011 -200390 01/01/2002 31/12/2500 LIBEN Mushrooms and truffles, prepared or preserved otherwise than by vinegar or acetic acid (excl. mushrooms of the genus "Agaricus") 01/01/2002 31/12/2500 -20039000 01/01/2002 31/12/2011 LIBEN Mushrooms, prepared or preserved otherwise than by vinegar or acetic acid (excl. mushrooms of the genus "Agaricus") 01/01/2002 31/12/2011 -20039010 01/01/2012 31/12/2500 LIBEN Truffles, prepared or preserved otherwise than by vinegar or acetic acid 01/01/2012 31/12/2500 -20039090 01/01/2012 31/12/2500 LIBEN Mushrooms, prepared or preserved otherwise than by vinegar or acetic acid (excl. mushrooms of the genus "Agaricus") 01/01/2012 31/12/2500 -2004 01/01/1988 31/12/2500 LIBEN Vegetables prepared or preserved otherwise than by vinegar or acetic acid, frozen (excl. preserved by sugar, and tomatoes, mushrooms and truffles) 01/01/1988 31/12/2500 -200410 01/01/1988 31/12/2500 LIBEN Potatoes, prepared or preserved otherwise than by vinegar or acetic acid, frozen 01/01/1988 31/12/2500 -20041010 01/01/1988 31/12/2500 LIBEN Cooked potatoes, frozen 01/01/1988 31/12/2500 -20041091 01/01/1988 31/12/2500 LIBEN Potatoes, prepared or preserved in the form of flour, meal or flakes, frozen 01/01/1988 31/12/2500 -20041099 01/01/1988 31/12/2500 LIBEN Potatoes, prepared or preserved otherwise than by vinegar or acetic acid, frozen (excl. cooked only and in the form of flour, meal or flakes) 01/01/1988 31/12/2500 -200490 01/01/1988 31/12/2500 LIBEN Vegetables and mixtures of vegetables, prepared or preserved otherwise than by vinegar or acetic acid, frozen (excl. preserved by sugar, and tomatoes, mushrooms, truffles and potatoes, unmixed) 01/01/1988 31/12/2500 -20049010 01/01/1988 31/12/2500 LIBEN Sweetcorn "Zea Mays var. Zaccharata", prepared or preserved otherwise than by vinegar or acetic acid, frozen 01/01/1988 31/12/2500 -20049030 01/01/1988 31/12/2500 LIBEN Sauerkraut, capers and olives, prepared or preserved otherwise than by vinegar or acetic acid, frozen 01/01/1988 31/12/2500 -20049050 01/01/1988 31/12/2500 LIBEN Peas "Pisum sativum" and immature beans "Phaseolus spp.", prepared or preserved otherwise than by vinegar or acetic acid, frozen 01/01/1988 31/12/2500 -20049091 01/01/1988 31/12/2500 LIBEN Frozen cooked onions 01/01/1988 31/12/2500 -20049095 01/01/1988 31/12/1995 LIBEN Artichokes, prepared or preserved otherwise than by vinegar or acetic acid, frozen 01/01/1988 31/12/1995 -20049098 01/01/1996 31/12/2500 LIBEN Vegetables and mixtures of vegetables, prepared or preserved otherwise than by vinegar or acetic acid, frozen (excl. preserved by sugar, and tomatoes, mushrooms, truffles, potatoes, sweetcorn "Zea Mays var. Saccharata", sauerkraut, capers, olives, peas "Pisum sativum", beans "Phaseolus spp." and cooked onions, unmixed) 01/01/1996 31/12/2500 -20049099 01/01/1988 31/12/1995 LIBEN Vegetables and mixtures of vegetables, prepared or preserved otherwise than by vinegar or acetic acid, frozen (excl. tomatoes, mushrooms, truffles, potatoes, sweet corn "Zea Mays var. Zaccharata", sauerkraut, capers, olives, peas and immature beans, cooked onions and artichokes) 01/01/1988 31/12/1995 -2005 01/01/1988 31/12/2500 LIBEN Other vegetables prepared or preserved otherwise than by vinegar or acetic acid, not frozen (excl. preserved by sugar, and tomatoes, mushrooms and truffles) 01/01/1988 31/12/2500 -200510 01/01/1988 31/12/2500 LIBEN Homogenised vegetables put up for retail sale as infant food or for dietetic purposes, in containers of <= 250 g 01/01/1988 31/12/2500 -20051000 01/01/1988 31/12/2500 LIBEN Homogenised vegetables put up for retail sale as infant food or for dietetic purposes, in containers of <= 250 g 01/01/1988 31/12/2500 -200520 01/01/1988 31/12/2500 LIBEN Potatoes, prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/1988 31/12/2500 -20052010 01/01/1988 31/12/2500 LIBEN Potatoes in the form of flour, meal or flakes (excl. frozen) 01/01/1988 31/12/2500 -20052020 01/01/1994 31/12/2500 LIBEN Potatoes in thin slices, cooked in fat or oil, whether or not salted or flavoured, in airtight packings, suitable for direct consumption, not frozen 01/01/1994 31/12/2500 -20052080 01/01/1994 31/12/2500 LIBEN Potatoes, prepared or preserved otherwise than by vinegar or acetic acid, not frozen (excl. potatoes in the form of flour, meal or flakes, and thinly sliced, cooked in fat or oil, whether or not salted or flavoured, in airtight packings, suitable for direct consumption) 01/01/1994 31/12/2500 -20052090 01/01/1988 31/12/1993 LIBEN Potatoes, prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen and in the form of flour, meal or flakes) 01/01/1988 31/12/1993 -200530 01/01/1988 31/12/1995 LIBEN Sauerkraut, prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/1988 31/12/1995 -20053000 01/01/1988 31/12/1995 LIBEN Sauerkraut, prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/1988 31/12/1995 -200540 01/01/1988 31/12/2500 LIBEN Peas "Pisum Sativum", prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/1988 31/12/2500 -20054000 01/01/1988 31/12/2500 LIBEN Peas "Pisum Sativum", prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/1988 31/12/2500 -200551 01/01/1988 31/12/2500 LIBEN Shelled beans "Vigna spp., Phaseolus spp.", prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/1988 31/12/2500 -20055100 01/01/1988 31/12/2500 LIBEN Shelled beans "Vigna spp., Phaseolus spp.", prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/1988 31/12/2500 -200559 01/01/1988 31/12/2500 LIBEN Unshelled beans "Vigna spp., Phaseolus spp.", prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/1988 31/12/2500 -20055900 01/01/1988 31/12/2500 LIBEN Unshelled beans "Vigna spp., Phaseolus spp.", prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/1988 31/12/2500 -200560 01/01/1988 31/12/2500 LIBEN Asparagus, prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/1988 31/12/2500 -20056000 01/01/1988 31/12/2500 LIBEN Asparagus, prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/1988 31/12/2500 -200570 01/01/1988 31/12/2500 LIBEN Olives, prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/1988 31/12/2500 -20057000 01/01/1988 31/12/1993 LIBEN Olives, prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/1988 31/12/1993 -20057000 01/01/2008 31/12/2500 LIBEN Olives, prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/2008 31/12/2500 -20057010 01/01/1994 31/12/2007 LIBEN Olives, prepared or preserved otherwise than by vinegar or acetic acid, not frozen, in immediate packings of a net content of <= 5 kg 01/01/1994 31/12/2007 -20057090 01/01/1994 31/12/2007 LIBEN Olives, prepared or preserved otherwise than by vinegar or acetic acid, not frozen, in immediate packings of a net content of > 5 kg 01/01/1994 31/12/2007 -200580 01/01/1988 31/12/2500 LIBEN Sweetcorn "Zea Mays var. Saccharata", prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/1988 31/12/2500 -20058000 01/01/1988 31/12/2500 LIBEN Sweetcorn "Zea Mays var. Saccharata", prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/1988 31/12/2500 -200590 01/01/1988 31/12/2006 LIBEN Vegetables and mixtures of vegetables, prepared or preserved otherwise than by vinegar, non-frozen (excl. preserved by sugar, homogenised vegetables of subheading 2005.10, and tomatoes, mushrooms, truffles, potatoes, peas "Pisum sativum", beans "Vigna, Phaseolus", asparagus, olives and sweetcorn "Zea Mays var. Saccharata", unmixed) 01/01/1988 31/12/2006 -20059010 01/01/1988 31/12/2006 LIBEN Fruit of genus capsicum, prepared or preserved otherwise than by vinegar or acetic acid (excl. sweet peppers and pimentos and frozen) 01/01/1988 31/12/2006 -20059030 01/01/1988 31/12/2006 LIBEN Capers, prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/1988 31/12/2006 -20059050 01/01/1988 31/12/2006 LIBEN Artichokes, prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/1988 31/12/2006 -20059060 01/01/1994 31/12/2006 LIBEN Carrots, prepared or preserved otherwise than by vinegar or acetic acid, not frozen 01/01/1994 31/12/2006 -20059070 01/01/1994 31/12/2006 LIBEN Mixtures of vegetables, prepared or preserved otherwise than by vinegar or acetic acid, not frozen 01/01/1994 31/12/2006 -20059075 01/01/1996 31/12/2006 LIBEN Sauerkraut, non-frozen 01/01/1996 31/12/2006 -20059080 01/01/1994 31/12/2006 LIBEN Vegetables, prepared or preserved otherwise than by vinegar or acetic acid, not frozen (excl. preserved by sugar, homogenised vegetables of subheading 2005.10, and tomatoes, mushrooms, truffles, potatoes, sauerkraut, peas "Pisum sativum", beans "Vigna spp., Phaseolus spp." asparagus, olives, sweetcorn "Zea Mays var. Saccharata", fruit of the genus Capsicum hot to the taste, capers, artichokes, carrots and mixtures of vegetables) 01/01/1994 31/12/2006 -20059090 01/01/1988 31/12/1993 LIBEN Vegetables and mixtures of vegetables, prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen, homogenized vegetables of subheading 2005 10 00, potatoes, sauerkraut, peas 'pisum sativum', beans 'vigna spp., phaseolus spp.' asparagus, olives, sweetcorn 'zea mays var. saccharata', fruit of genus capsicum other than sweet peppers and pimentos, capers and artichokes) 01/01/1988 31/12/1993 -200591 01/01/2007 31/12/2500 LIBEN Bamboo shoots, prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/2007 31/12/2500 -20059100 01/01/2007 31/12/2500 LIBEN Bamboo shoots, prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/2007 31/12/2500 -200599 01/01/2007 31/12/2500 LIBEN Vegetables and mixtures of vegetables, prepared or preserved otherwise than by vinegar, non-frozen (excl. preserved by sugar, homogenised vegetables of subheading 2005.10, and tomatoes, mushrooms, truffles, potatoes, peas "Pisum sativum", beans "Vigna, Phaseolus", asparagus, olives, sweetcorn "Zea Mays var. Saccharata" and bamboo shoots, unmixed) 01/01/2007 31/12/2500 -20059910 01/01/2007 31/12/2500 LIBEN Fruit of genus capsicum, prepared or preserved otherwise than by vinegar or acetic acid (excl. sweet peppers and pimentos and frozen) 01/01/2007 31/12/2500 -20059920 01/01/2007 31/12/2500 LIBEN Capers, prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/2007 31/12/2500 -20059930 01/01/2007 31/12/2500 LIBEN Artichokes, prepared or preserved otherwise than by vinegar or acetic acid (excl. frozen) 01/01/2007 31/12/2500 -20059940 01/01/2007 31/12/2011 LIBEN Carrots, prepared or preserved otherwise than by vinegar or acetic acid, not frozen 01/01/2007 31/12/2011 -20059950 01/01/2007 31/12/2500 LIBEN Mixtures of vegetables, prepared or preserved otherwise than by vinegar or acetic acid, not frozen 01/01/2007 31/12/2500 -20059960 01/01/2007 31/12/2500 LIBEN Sauerkraut, non-frozen 01/01/2007 31/12/2500 -20059980 01/01/2012 31/12/2500 LIBEN Vegetables, prepared or preserved otherwise than by vinegar or acetic acid, not frozen (excl. preserved by sugar, homogenised vegetables of subheading 2005.10, and tomatoes, mushrooms, truffles, potatoes, sauerkraut, peas "Pisum sativum", beans "Vigna spp., Phaseolus spp." asparagus, olives, sweetcorn "Zea Mays var. Saccharata", bamboo shoots, fruit of the genus Capsicum hot to the taste, capers, artichokes and mixtures of vegetables) 01/01/2012 31/12/2500 -20059990 01/01/2007 31/12/2011 LIBEN Vegetables, prepared or preserved otherwise than by vinegar or acetic acid, not frozen (excl. preserved by sugar, homogenised vegetables of subheading 2005.10, and tomatoes, mushrooms, truffles, potatoes, sauerkraut, peas "Pisum sativum", beans "Vigna spp., Phaseolus spp." asparagus, olives, sweetcorn "Zea Mays var. Saccharata", bamboo shoots, fruit of the genus Capsicum hot to the taste, capers, artichokes, carrots and mixtures of vegetables) 01/01/2007 31/12/2011 -2006 01/01/1988 31/12/2500 LIBEN Vegetables, fruit, nuts, fruit-peel and other edible parts of plants, preserved by sugar "drained, glacé or crystallised" 01/01/1988 31/12/2500 -200600 01/01/1988 31/12/2500 LIBEN Vegetables, fruit, nuts, fruit-peel and other edible parts of plants, preserved by sugar "drained, glacé or crystallised" 01/01/1988 31/12/2500 -20060010 01/01/1988 31/12/2500 LIBEN Ginger, preserved by sugar, drained, glacé or crystallised 01/01/1988 31/12/2500 -20060031 01/01/1988 31/12/2500 LIBEN Cherries, with a sugar content of > 13%, preserved by sugar, drained, glacé or crystallised 01/01/1988 31/12/2500 -20060035 01/01/1995 31/12/2500 LIBEN Guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, preserved by sugar drained, glacé or crystallised, with a sugar content of > 13% by weight 01/01/1995 31/12/2500 -20060038 01/01/1995 31/12/2500 LIBEN Vegetables, fruit, nuts, fruit-peel and other edible parts of plants, preserved by sugar "drained, glacé or crystallised", with a sugar content of > 13% by weight (excl. cherries, ginger, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts and macadamia nuts) 01/01/1995 31/12/2500 -20060039 01/01/1988 31/12/1994 LIBEN Fruits, nuts, peel and other parts of plants, preserved by sugar, drained, glacé or crystallized, with a sugar content of > 13 % (excl. cherries and ginger) 01/01/1988 31/12/1994 -20060090 01/01/1988 31/12/1994 LIBEN Fruits, nuts, peel and other parts of plants, preserved by sugar, drained, glacé or crystallized, with sugar content of =< 13 % (excl. ginger) 01/01/1988 31/12/1994 -20060091 01/01/1995 31/12/2500 LIBEN Guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, preserved by sugar drained, glacé or crystallised, with a sugar content of <= 13% by weight 01/01/1995 31/12/2500 -20060099 01/01/1995 31/12/2500 LIBEN Vegetables, fruit, nuts, fruit-peel and other edible parts of plants, preserved by sugar "drained, glacé or crystallised", with a sugar content of <= 13% by weight (excl. ginger, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts and macadamia nuts) 01/01/1995 31/12/2500 -2007 01/01/1988 31/12/2500 LIBEN Jams, fruit jellies, marmalades, fruit or nut purée and fruit or nut pastes, obtained by cooking, whether or not containing added sugar or other sweetening matter 01/01/1988 31/12/2500 -200710 01/01/1988 31/12/2500 LIBEN Homogenised preparations of jams, jellies, marmalades, fruit or nut purées and nut pastes, obtained by cooking, whether or not containing added sugar or other sweetening matter, put up for retail sale as infant food or for dietetic purposes, in containers of <= 250 g 01/01/1988 31/12/2500 -20071010 01/01/1988 31/12/2500 LIBEN Homogenised preparations of jams, fruit jellies, marmalades, fruit or nut purée and pastes, obtained by cooking, put up for retail sale as infant food or for dietetic purposes, in containers of <= 250 g, with sugar content of > 13% by weight 01/01/1988 31/12/2500 -20071090 01/01/1988 31/12/1994 LIBEN Homogenized preparations of jams, jellies, marmalades, fruit or nut purées and pastes, obtained by cooking, whether or not containing added sugar or other sweetening matter, put up for retail sale as infant food or for dietetic purposes, in containers of =< 250 g (excl. with sugar content of > 13 %) 01/01/1988 31/12/1994 -20071091 01/01/1995 31/12/2500 LIBEN Jams, jellies, marmalades, purée and pastes, of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, obtained by cooking, whether or not containing added sugar or other sweetening matter, put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g (excl. with a sugar content of > 13% by weight) 01/01/1995 31/12/2500 -20071099 01/01/1995 31/12/2500 LIBEN Jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, whether or not containing added sugar or other sweetening matter, put up for retail sale as infant food or for dietetic purposes, in containers of a net weight of <= 250 g (excl. with a sugar content of > 13% by weight and preparations of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya) 01/01/1995 31/12/2500 -200791 01/01/1988 31/12/2500 LIBEN Citrus fruit jams, jellies, marmalades, purées or pastes, obtained by cooking, whether or not containing added sugar or other sweetening matter (excl. homogenised preparations of subheading 2007.10) 01/01/1988 31/12/2500 -20079110 01/01/1988 31/12/2500 LIBEN Citrus fruit jams, jellies, marmalades, purées or pastes, obtained by cooking, with sugar content of > 30% by weight (excl. homogenised preparations of subheading 2007.10) 01/01/1988 31/12/2500 -20079130 01/01/1988 31/12/2500 LIBEN Citrus fruit jams, jellies, marmalades, purées or pastes, obtained by cooking, with sugar content of > 13% but <= 30% by weight (excl. homogenised preparations of subheading 2007.10) 01/01/1988 31/12/2500 -20079190 01/01/1988 31/12/2500 LIBEN Citrus fruit jams, jellies, marmalades, purées or pastes, obtained by cooking, whether or not containing added sugar or other sweetening matter (excl. with sugar content of > 13% by weight and homogenised preparations of subheading 2007.10) 01/01/1988 31/12/2500 -200799 01/01/1988 31/12/2500 LIBEN Jams, jellies, marmalades, purées or pastes of fruit, obtained by cooking, whether or not containing added sugar or other sweetening matter (excl. citrus fruit and homogenised preparations of subheading 2007.10) 01/01/1988 31/12/2500 -20079910 01/01/1988 31/12/2500 LIBEN Plum purée and paste, obtained by cooking, with sugar content of > 30% by weight, in packings of > 100 kg, for industrial processing 01/01/1988 31/12/2500 -20079920 01/01/1988 31/12/2500 LIBEN Chestnut purée and paste, obtained by cooking, with sugar content of > 30% by weight (excl. homogenised preparations of subheading 2007.10) 01/01/1988 31/12/2500 -20079931 01/01/1988 31/12/2500 LIBEN Cherry jams, jellies, marmalades, purées or pastes, obtained by cooking, with sugar content of > 30% by weight (excl. homogenised preparations of subheading 2007.10) 01/01/1988 31/12/2500 -20079933 01/01/1988 31/12/2500 LIBEN Strawberry jams, jellies, marmalades, purées or pastes, obtained by cooking, with sugar content of > 30% (excl. homogenised preparations of subheading 2007.10) 01/01/1988 31/12/2500 -20079935 01/01/1988 31/12/2500 LIBEN Raspberry jams, jellies, marmalades, purées or pastes, obtained by cooking, with sugar content of > 30% by weight (excl. homogenised preparations of subheading 2007.10) 01/01/1988 31/12/2500 -20079939 01/01/1988 31/12/2500 LIBEN Jams, jellies, marmalades, fruit purées or pastes, obtained by cooking, with sugar content of > 30% by weight (excl. raspberries, strawberries, cherries and citrus fruits, chestnut purée and paste, homogenised preparations of subheading 2007.10, and plum purée and paste, in packings of > 100 kg, for industrial processing) 01/01/1988 31/12/2500 -20079950 01/01/2008 31/12/2500 LIBEN Jams, fruit jellies, marmalades, fruit purée and fruit pastes, obtained by cooking, with a sugar content of > 13 to 30% by weight (excl. such products made from citrus fruits and homogenised preparations of subheading 2007.10) 01/01/2008 31/12/2500 -20079951 01/01/1988 31/12/2003 LIBEN Chestnut puree and paste, obtained by cooking, with sugar content of > 13% but <= 30% by weight (excl. homogenised preparations of subheading 2007.10) 01/01/1988 31/12/2003 -20079955 01/01/1994 31/12/2007 LIBEN Apple purée, obtained by cooking, with a sugar content of > 13% but <= 30% by weight (excl. homogenised preparations of subheading 2007.10) 01/01/1994 31/12/2007 -20079957 01/01/2004 31/12/2007 LIBEN Jams, fruit jellies, marmalades, fruit purée and fruit pastes, obtained by cooking, with a sugar content of > 13 to 30% by weight (excl. such products made from citrus fruits, apple purée and homogenised preparations of subheading 2007.10) 01/01/2004 31/12/2007 -20079958 01/01/1994 31/12/2003 LIBEN Jams, fruit jellies, marmalades, fruit purée and fruit pastes, obtained by cooking, with a sugar content of > 13-30% by weight (excl. such products made from citrus fruits, chestnut purée and paste, apple purée and homogenised preparations of subheading 2007.10) 01/01/1994 31/12/2003 -20079959 01/01/1988 31/12/1993 LIBEN Jams, jellies, marmalades, fruit purées or pastes, obtained by cooking, with sugar content of > 13 % but =< 30 % (excl. citrus fruits, chestnut purée and paste and homogenized preparations of subheading 2007 10 10) 01/01/1988 31/12/1993 -20079990 01/01/1988 31/12/1993 LIBEN Jams, jellies, marmalades, fruit purées or pastes, whether or not sweetened (excl. with sugar content of > 13 %, homogenized preparations of subheading 2007 10 90 and citrus fruit) 01/01/1988 31/12/1993 -20079991 01/01/1994 31/12/2007 LIBEN Apple purée, obtained by cooking, whether or not containing added sugar or other sweetening matter (excl. such products with a sugar content of > 13% by weight and homogenised preparations of subheading 2007.10) 01/01/1994 31/12/2007 -20079993 01/01/1995 31/12/2500 LIBEN Jams, fruit jellies, marmalades, fruit purée and pastes of guavas, mangoes, mangosteens, papaws "papayas", jackfruits, passion fruit, tamarinds, cashew apples, lychees, sapodillo plums, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts and macadamia nuts, obtained by cooking, whether or not containing added sugar or other sweetening matter (excl. with a sugar content of > 13% by weight and homogenised preparations of subheading 2007.10) 01/01/1995 31/12/2500 -20079997 01/01/2008 31/12/2500 LIBEN Jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, whether or not containing added sugar or other sweetening matter (excl. with a sugar content of > 13% by weight, homogenised preparations of subheading 2007.10 and of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts, macadamia nuts and citrus fruit) 01/01/2008 31/12/2500 -20079998 01/01/1995 31/12/2007 LIBEN Jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, whether or not containing added sugar or other sweetening matter (excl. with a sugar content of > 13% by weight, apple purée, homogenised preparations of subheading 2007.10 and of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts, macadamia nuts and citrus fruit) 01/01/1995 31/12/2007 -20079999 01/01/1994 31/12/1994 LIBEN Jams, fruit jellies, marmalades, fruit purée and fruit pastes, whether or not containing added sugar or other sweetening matter (excl. such products with a sugar content of > 13% by weight, apple purée, homogenized preparations of subheading 2007.10-90 and such products made from citrus fruits) 01/01/1994 31/12/1994 -2008 01/01/1988 31/12/2500 LIBEN Fruits, nuts and other edible parts of plants, prepared or preserved, whether or not containing added sugar or other sweetening matter or spirit (excl. prepared or preserved with vinegar, preserved with sugar but not laid in syrup, and jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking) 01/01/1988 31/12/2500 -200811 01/01/1988 31/12/2500 LIBEN Groundnuts, prepared or preserved (excl. preserved with sugar) 01/01/1988 31/12/2500 -20081110 01/01/1988 31/12/2500 LIBEN Peanut butter 01/01/1988 31/12/2500 -20081191 01/01/1988 31/12/1995 LIBEN Ground-nuts, prepared or preserved, in packings of > 1 kg (excl. peanut butter) 01/01/1988 31/12/1995 -20081191 01/01/2008 31/12/2500 LIBEN Groundnuts, prepared or preserved, in immediate packings of a net content of > 1 kg (excl. roasted, preserved with sugar and peanut butter) 01/01/2008 31/12/2500 -20081192 01/01/1996 31/12/2007 LIBEN Groundnuts, roasted, in immediate packings of a net content of > 1 kg 01/01/1996 31/12/2007 -20081194 01/01/1996 31/12/2007 LIBEN Groundnuts, prepared or preserved, in immediate packings of a net content of > 1 kg (excl. roasted, preserved with sugar and peanut butter) 01/01/1996 31/12/2007 -20081196 01/01/1995 31/12/2500 LIBEN Groundnuts, roasted, in immediate packings of a net content <= 1 kg 01/01/1995 31/12/2500 -20081198 01/01/1995 31/12/2500 LIBEN Groundnuts, prepared or preserved, in immediate packings of a content of <= 1 kg (excl. roasted, preserved with sugar and peanut butter) 01/01/1995 31/12/2500 -20081199 01/01/1988 31/12/1994 LIBEN Ground-nuts, prepared or preserved, in packings of =< 1 kg (excl. peanut butter) 01/01/1988 31/12/1994 -200819 01/01/1988 31/12/2500 LIBEN Nuts and other seeds, incl. mixtures, prepared or preserved (excl. prepared or preserved with vinegar, preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, and groundnuts) 01/01/1988 31/12/2500 -20081910 01/01/1988 31/12/1994 LIBEN Nuts and other seeds, incl. mixtures, prepared or preserved, in packings of > 1 kg (excl. peanut butter and ground-nuts otherwise prepared or preserved) 01/01/1988 31/12/1994 -20081911 01/01/1995 31/12/2013 LIBEN Coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, incl. mixtures containing guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitaha 01/01/1995 31/12/2013 -20081912 01/01/2014 31/12/2500 LIBEN Coconuts, cashew nuts, Brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, incl. mixtures containing these nuts >= 50% by weight, prepared or preserved, in immediate packings of a net content of > 1 kg (excl. preserved with sugar) 01/01/2014 31/12/2500 -20081913 01/01/1995 31/12/2500 LIBEN Roasted almonds and pistachios, in immediate packings of a net content > 1 kg 01/01/1995 31/12/2500 -20081919 01/01/1995 31/12/2016 LIBEN Nuts and other seeds, incl. mixtures, prepared or preserved, in immediate packings of a content of > 1 kg (excl. prepared or preserved with vinegar, preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, groundnuts, roasted almonds and pistachios and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts and macadamia nuts and mixtures containing >= 50% by weight of tropical nuts) 01/01/1995 31/12/2016 -20081919 01/01/2017 31/12/2500 LIBEN Nuts and other seeds, incl. mixtures, prepared or preserved, in immediate packings of a content of > 1 kg (excl. prepared or preserved with vinegar, preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, groundnuts, roasted almonds and pistachios and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts and macadamia nuts and mixtures containing >= 50% by weight of tropical nuts) 01/01/2017 31/12/2500 -20081951 01/01/1996 31/12/2003 LIBEN Coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, roasted, in immediate packings of a net content of <= 1 kg 01/01/1996 31/12/2003 -20081959 01/01/1996 31/12/2003 LIBEN Coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, incl. mixtures containing guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts and macadamia nuts of >= 50% by weight, prepared or preserved, in immediate packings of a net content of <= 1 kg, n.e.s. (excl. roasted coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts) 01/01/1996 31/12/2003 -20081990 01/01/1988 31/12/1994 LIBEN Nuts and other seeds, incl. mixtures, prepared or preserved, in packings of =< 1 kg (excl. peanut butter and ground-nuts otherwise prepared or preserved) 01/01/1988 31/12/1994 -20081991 01/01/1995 31/12/1995 LIBEN Coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, incl. mixtures containing 50% or more by weight of tropical fruit and tropical nuts of a type specified in Additional Notes 7 and 8 to chapter 20, in immediate packings of a net content <= 1 kg 01/01/1995 31/12/1995 -20081991 01/01/2004 31/12/2013 LIBEN Coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, incl. mixtures containing guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitaha 01/01/2004 31/12/2013 -20081992 01/01/2014 31/12/2500 LIBEN Coconuts, cashew nuts, Brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, incl. mixtures containing these nuts >= 50% by weight, prepared or preserved, in immediate packings of a net content of <= 1 kg 01/01/2014 31/12/2500 -20081993 01/01/1995 31/12/2500 LIBEN Roasted almonds and pistachios, in immediate packings of a net content <= 1 kg 01/01/1995 31/12/2500 -20081995 01/01/1995 31/12/2500 LIBEN Roasted nuts, in immediate packings of a net content <= 1 kg (excl. groundnuts, almonds, pistachios, coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts) 01/01/1995 31/12/2500 -20081999 01/01/1995 31/12/2016 LIBEN Nuts and other seeds, incl. mixtures, prepared or preserved, in immediate packings of a content of <= 1 kg (excl. prepared or preserved with vinegar, preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, groundnuts, roasted nuts, and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts and macadamia nuts and mixtures containing >= 50% by weight of tropical nuts) 01/01/1995 31/12/2016 -20081999 01/01/2017 31/12/2500 LIBEN Nuts and other seeds, incl. mixtures, prepared or preserved, in immediate packings of a content of <= 1 kg (excl. prepared or preserved with vinegar, preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, groundnuts, roasted nuts, and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, colanuts and macadamia nuts and mixtures containing >= 50% by weight of tropical nuts) 01/01/2017 31/12/2500 -200820 01/01/1988 31/12/2500 LIBEN Pineapples, prepared or preserved, whether or not containing added sugar or other sweetening matter or spirit (excl. preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking) 01/01/1988 31/12/2500 -20082011 01/01/1988 31/12/2500 LIBEN Pineapples, prepared or preserved, containing added spirit, with sugar content of > 17%, in immediate packings of a net content of > 1 kg 01/01/1988 31/12/2500 -20082019 01/01/1988 31/12/2500 LIBEN Pineapples, prepared or preserved, containing added spirit, in immediate packings of a net content of > 1 kg (excl. with sugar content of > 17%) 01/01/1988 31/12/2500 -20082031 01/01/1988 31/12/2500 LIBEN Pineapples, prepared or preserved, containing added spirit, with sugar content of > 19%, in immediate packings of a net content of <= 1 kg 01/01/1988 31/12/2500 -20082039 01/01/1988 31/12/2500 LIBEN Pineapples, prepared or preserved, containing added spirit, in immediate packings of a net content of <= 1 kg (excl. with sugar content of > 19%) 01/01/1988 31/12/2500 -20082051 01/01/1988 31/12/2500 LIBEN Pineapples, prepared or preserved, containing added sugar but no added spirit, with sugar content of > 17%, in immediate packings of a net content of > 1 kg 01/01/1988 31/12/2500 -20082059 01/01/1988 31/12/2500 LIBEN Pineapples, prepared or preserved, containing added sugar but no added spirit, with a sugar content of > 13% but <= 17%, in immediate packings of a net content of > 1 kg 01/01/1988 31/12/2500 -20082071 01/01/1988 31/12/2500 LIBEN Pineapples, prepared or preserved, containing added sugar but no added spirit, with sugar content of > 19%, in immediate packings of a net content of <= 1 kg 01/01/1988 31/12/2500 -20082079 01/01/1988 31/12/2500 LIBEN Pineapples, prepared or preserved, containing added sugar but no added spirit, with sugar content of > 13% but <=19%, in immediate packings of a net content of <= 1 kg 01/01/1988 31/12/2500 -20082090 01/01/2004 31/12/2500 LIBEN Pineapples, prepared or preserved, not containing added spirit or added sugar 01/01/2004 31/12/2500 -20082091 01/01/1988 31/12/2003 LIBEN Pineapples, prepared or preserved, in immediate packings of a net content of >= 4,5 kg (excl. added sugar or spirit) 01/01/1988 31/12/2003 -20082099 01/01/1988 31/12/2003 LIBEN Pineapples, prepared or preserved, in immediate packings of a net content of < 4,5 kg (excl. added sugar or spirit) 01/01/1988 31/12/2003 -200830 01/01/1988 31/12/2500 LIBEN Citrus fruit, prepared or preserved, whether or not containing added sugar or other sweetening matter or spirit, n.e.s. 01/01/1988 31/12/2500 -20083011 01/01/1988 31/12/2500 LIBEN Citrus fruit, prepared or preserved, containing added spirit, with sugar content of > 9% and actual alcoholic strength of <= 11,85% mas 01/01/1988 31/12/2500 -20083019 01/01/1988 31/12/2500 LIBEN Citrus fruit, prepared or preserved, containing added spirit, with sugar content of > 9% and actual alcoholic strength of > 11,85% mas 01/01/1988 31/12/2500 -20083031 01/01/1988 31/12/2500 LIBEN Citrus fruit, prepared or preserved, containing added spirit, with actual alcoholic strength of <= 11,85% mas (excl. with sugar content of > 9%) 01/01/1988 31/12/2500 -20083039 01/01/1988 31/12/2500 LIBEN Citrus fruit, prepared or preserved, containing added spirit, with actual alcoholic strength of > 11,85% mas (excl. with sugar content of > 9%) 01/01/1988 31/12/2500 -20083051 01/01/1988 31/12/2500 LIBEN Grapefruit segments, prepared or preserved, containing added sugar but no added spirit, in immediate packings of a net content of > 1 kg 01/01/1988 31/12/2500 -20083055 01/01/1988 31/12/2500 LIBEN Mandarins, incl. tangerines and satsumas, clementines, wilkings and similar citrus hybrids, prepared or preserved, containing added sugar but no added spirit, in immediate packings of a net content of > 1 kg 01/01/1988 31/12/2500 -20083059 01/01/1988 31/12/2500 LIBEN Citrus fruits, prepared or preserved, containing added sugar but no added spirit, in immediate packings of a net content of > 1 kg (excl. grapefruit segments, mandarins, incl. tangerines and satsumas, clementines, wilkings and similar citrus hybrids) 01/01/1988 31/12/2500 -20083071 01/01/1988 31/12/2500 LIBEN Grapefruit segments, prepared or preserved, containing added sugar but no added spirit, in immediate packings of a net content of <= 1 kg 01/01/1988 31/12/2500 -20083075 01/01/1988 31/12/2500 LIBEN Mandarins, incl. tangerines and satsumas, clementines, wilkings and similar citrus hybrids, prepared or preserved, containing added sugar but no added spirit, in immediate packings of a net content of <= 1 kg 01/01/1988 31/12/2500 -20083079 01/01/1988 31/12/2500 LIBEN Citrus fruits, prepared or preserved, containing added sugar but no added spirit, in immediate packings of a net content of <= 1 kg (excl. grapefruit segments, mandarins, incl. tangerines and satsumas, clementines, wilkings and similar citrus hybrids) 01/01/1988 31/12/2500 -20083090 01/01/2002 31/12/2500 LIBEN Citrus fruit, prepared or preserved, not containing added spirit or added sugar 01/01/2002 31/12/2500 -20083091 01/01/1988 31/12/2001 LIBEN Citrus fruit, prepared or preserved, in immediate packings of a net content of >= 4,5 kg (excl. added spirit or sugar) 01/01/1988 31/12/2001 -20083099 01/01/1988 31/12/2001 LIBEN Citrus fruit, prepared or preserved, in immediate packings of a net content of < 4,5 kg (excl. added spirit or sugar) 01/01/1988 31/12/2001 -200840 01/01/1988 31/12/2500 LIBEN Pears, prepared or preserved, whether or not containing added sugar or other sweetening matter or spirit, n.e.s. 01/01/1988 31/12/2500 -20084011 01/01/1988 31/12/2500 LIBEN Pears, prepared or preserved, containing added spirit, with sugar content of > 13% and actual alcoholic strength of <= 11,85% mas, in immediate packings of a net content of > 1 kg 01/01/1988 31/12/2500 -20084019 01/01/1988 31/12/2500 LIBEN Pears, prepared or preserved, containing added spirit, with sugar content of > 13% and actual alcoholic strength of > 11,85% mas, in immediate packings of a net content of > 1 kg 01/01/1988 31/12/2500 -20084021 01/01/1988 31/12/2500 LIBEN Pears, prepared or preserved, containing added spirit, with actual alcoholic strength of <= 11,85% mas, in immediate packings of a net content of > 1 kg (excl. sugar content of > 13%) 01/01/1988 31/12/2500 -20084029 01/01/1988 31/12/2500 LIBEN Pears, prepared or preserved, containing added spirit, with actual alcoholic strength of > 11,85% mas, in immediate packings of a net content of > 1 kg (excl. sugar content of > 13%) 01/01/1988 31/12/2500 -20084031 01/01/1988 31/12/2500 LIBEN Pears, prepared or preserved, containing added spirit, with sugar content of > 15%, in immediate packings of a net content of <= 1 kg 01/01/1988 31/12/2500 -20084039 01/01/1988 31/12/2500 LIBEN Pears, prepared or preserved, containing added spirit, in immediate packings of a net content of <= 1 kg (excl. sugar content of > 15%) 01/01/1988 31/12/2500 -20084051 01/01/1988 31/12/2500 LIBEN Pears, prepared or preserved, containing no spirit but with added sugar, with sugar content of > 13%, in immediate packings of a net content of > 1 kg 01/01/1988 31/12/2500 -20084059 01/01/1988 31/12/2500 LIBEN Pears, prepared or preserved, containing no spirit but with added sugar, with sugar content of <= 13%, in immediate packings of a net content of > 1 kg 01/01/1988 31/12/2500 -20084071 01/01/1988 31/12/2500 LIBEN Pears, prepared or preserved, containing no spirit but with added sugar, with sugar content of > 15%, in immediate packings of a net content of <= 1 kg 01/01/1988 31/12/2500 -20084079 01/01/1988 31/12/2500 LIBEN Pears, prepared or preserved, containing no spirit but with added sugar, with sugar content of <= 15%, in immediate packings of a net content of <= 1 kg 01/01/1988 31/12/2500 -20084090 01/01/2004 31/12/2500 LIBEN Pears, prepared or preserved, not containing added spirit or added sugar 01/01/2004 31/12/2500 -20084091 01/01/1988 31/12/2003 LIBEN Pears, prepared or preserved, in immediate packings of a net content of >= 4,5 kg (excl. added spirit or sugar) 01/01/1988 31/12/2003 -20084099 01/01/1988 31/12/2003 LIBEN Pears, prepared or preserved, in immediate packings of a net content of < 4,5 kg (excl. added spirit or sugar) 01/01/1988 31/12/2003 -200850 01/01/1988 31/12/2500 LIBEN Apricots, prepared or preserved, whether or not containing added sugar or other sweetening matter or spirit (excl. preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking) 01/01/1988 31/12/2500 -20085011 01/01/1988 31/12/2500 LIBEN Apricots, prepared or preserved, containing added spirit, with sugar content of > 13% and actual alcoholic strength of <= 11,85% mas, in immediate packings of a net content of of > 1 kg 01/01/1988 31/12/2500 -20085019 01/01/1988 31/12/2500 LIBEN Apricots, prepared or preserved, containing added spirit, with sugar content of > 13% and actual alcoholic strength of > 11,85% mas, in immediate packings of a net content of > 1 kg 01/01/1988 31/12/2500 -20085031 01/01/1988 31/12/2500 LIBEN Apricots, prepared or preserved, containing added spirit, with actual alcoholic strength of <= 11,85% mas, in immediate packings of a net content of > 1 kg (excl. sugar content of > 13%) 01/01/1988 31/12/2500 -20085039 01/01/1988 31/12/2500 LIBEN Apricots, prepared or preserved, containing added spirit, with actual alcoholic strength of > 11,85% mas, in immediate packings of a net content of > 1 kg (excl. sugar content of > 13%) 01/01/1988 31/12/2500 -20085051 01/01/1988 31/12/2500 LIBEN Apricots, prepared or preserved, containing added spirit, with sugar content of > 15%, in immediate packings of a net content of <= 1 kg 01/01/1988 31/12/2500 -20085059 01/01/1988 31/12/2500 LIBEN Apricots, prepared or preserved, containing added spirit, in immediate packings of a net content of <= 1 kg (excl. sugar content of> 15%) 01/01/1988 31/12/2500 -20085061 01/01/1988 31/12/2500 LIBEN Apricots, prepared or preserved, containing no spirit but with added sugar, with sugar content of > 13%, in immediate packings of a net content of > 1 kg 01/01/1988 31/12/2500 -20085069 01/01/1988 31/12/2500 LIBEN Apricots, prepared or preserved, containing no spirit but with added sugar, with sugar content of > 9% but <= 13%, in immediate packings of a net content of > 1 kg 01/01/1988 31/12/2500 -20085071 01/01/1988 31/12/2500 LIBEN Apricots, prepared or preserved, containing no spirit but with added sugar, with sugar content of > 15%, in immediate packings of a net content of <= 1 kg 01/01/1988 31/12/2500 -20085079 01/01/1988 31/12/2500 LIBEN Apricots, prepared or preserved, containing no spirit but with added sugar, with sugar content of > 9% but <= 15%, in immediate packings of a net content of <= 1 kg 01/01/1988 31/12/2500 -20085091 01/01/1988 31/12/1994 LIBEN Apricots, prepared or preserved, in packings of >= 4.5 kg (excl. added spirit or sugar) 01/01/1988 31/12/1994 -20085092 01/01/1995 31/12/2500 LIBEN Apricots, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of >= 5 kg 01/01/1995 31/12/2500 -20085094 01/01/1995 31/12/2011 LIBEN Apricots, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content >= 4,5 kg but < 5 kg 01/01/1995 31/12/2011 -20085098 01/01/2012 31/12/2500 LIBEN Apricots, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of < 5 kg 01/01/2012 31/12/2500 -20085099 01/01/1988 31/12/2011 LIBEN Apricots, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of < 4,5 kg 01/01/1988 31/12/2011 -200860 01/01/1988 31/12/2500 LIBEN Cherries, prepared or preserved, whether or not containing added sugar or other sweetening matter or spirit (excl. preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking) 01/01/1988 31/12/2500 -20086011 01/01/1988 31/12/2500 LIBEN Cherries, prepared or preserved, containing added spirit, with sugar content of > 9% and actual alcoholic strength of <= 11,85% mas 01/01/1988 31/12/2500 -20086019 01/01/1988 31/12/2500 LIBEN Cherries, prepared or preserved, containing added spirit, with sugar content of > 9% and actual alcoholic strength of > 11,85% mas 01/01/1988 31/12/2500 -20086031 01/01/1988 31/12/2500 LIBEN Cherries, prepared or preserved, containing added spirit, with actual alcoholic strength of <= 11,85% mas (excl. sugar content of > 9%) 01/01/1988 31/12/2500 -20086039 01/01/1988 31/12/2500 LIBEN Cherries, prepared or preserved, containing added spirit, with actual alcoholic strength of > 11,85% mas (excl. sugar content of > 9%) 01/01/1988 31/12/2500 -20086050 01/01/2005 31/12/2500 LIBEN Cherries, prepared or preserved, containing no spirit but with added sugar, in immediate packings of a net content > 1 kg 01/01/2005 31/12/2500 -20086051 01/01/1988 31/12/2004 LIBEN Sour cherries "Prunus cerasus", prepared or preserved, containing no spirit but with added sugar, in immediate packings of a net content of > 1 kg 01/01/1988 31/12/2004 -20086059 01/01/1988 31/12/2004 LIBEN Cherries, prepared or preserved, containing no spirit but with added sugar, in immediate packings of a net content > 1 kg (excl. sour cherries "Prunus cerasus") 01/01/1988 31/12/2004 -20086060 01/01/2005 31/12/2500 LIBEN Cherries, prepared or preserved, containing no spirit but with added sugar, in immediate packings of a net content <= 1 kg 01/01/2005 31/12/2500 -20086061 01/01/1988 31/12/2004 LIBEN Sour cherries "Prunus cerasus", prepared or preserved, containing no spirit but with added sugar, in immediate packings of a net content <= 1 kg 01/01/1988 31/12/2004 -20086069 01/01/1988 31/12/2004 LIBEN Cherries, prepared or preserved, containing no spirit but with added sugar, in immediate packings of a net content <= 1 kg (excl. sour cherries "Prunus cerasus") 01/01/1988 31/12/2004 -20086070 01/01/2005 31/12/2500 LIBEN Cherries, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content >= 4,5 kg 01/01/2005 31/12/2500 -20086071 01/01/1988 31/12/2004 LIBEN Sour cherries "Prunus cerasus", prepared or preserved, in immediate packings of a net content >= 4,5 kg (excl. added spirit or sugar) 01/01/1988 31/12/2004 -20086079 01/01/1988 31/12/2004 LIBEN Cherries, prepared or preserved, in immediate packings of a net content >= 4,5 kg (excl. added spirit or sugar and sour cherries "Prunus cerasus") 01/01/1988 31/12/2004 -20086090 01/01/2005 31/12/2500 LIBEN Cherries, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content < 4,5 kg 01/01/2005 31/12/2500 -20086091 01/01/1988 31/12/2004 LIBEN Sour cherries "Prunus cerasus", prepared or preserved, in immediate packings of a net content < 4,5 kg (excl. added spirit or sugar) 01/01/1988 31/12/2004 -20086099 01/01/1988 31/12/2004 LIBEN Cherries, prepared or preserved, in immediate packings of a net content < 4,5 kg (excl. added spirit or sugar and sour cherries "Prunus cerasus") 01/01/1988 31/12/2004 -200870 01/01/1988 31/12/2500 LIBEN Peaches, incl. nectarines, prepared or preserved, whether or not containing added sugar or other sweetening matter or spirit (excl. preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking) 01/01/1988 31/12/2500 -20087011 01/01/1988 31/12/2500 LIBEN Peaches incl. nectarines, prepared or preserved, containing added spirit, with sugar content of > 13% and actual alcoholic strength of <= 11,85% mas, in immediate packings of a net content > 1 kg 01/01/1988 31/12/2500 -20087019 01/01/1988 31/12/2500 LIBEN Peaches incl. nectarines, prepared or preserved, containing added spirit, with sugar content of > 13% and actual alcoholic strength of > 11,85% mas, in immediate packings of a net content > 1 kg 01/01/1988 31/12/2500 -20087031 01/01/1988 31/12/2500 LIBEN Peaches incl. nectarines, prepared or preserved, containing added spirit, with actual alcoholic strength of <= 11,85% mas, in immediate packings of a net content > 1 kg (excl. sugar content of > 13%) 01/01/1988 31/12/2500 -20087039 01/01/1988 31/12/2500 LIBEN Peaches incl. nectarines, prepared or preserved, containing added spirit, with actual alcoholic strength of > 11,85% mas, in immediate packings of a net content > 1 kg (excl. sugar content of > 13%) 01/01/1988 31/12/2500 -20087051 01/01/1988 31/12/2500 LIBEN Peaches incl. nectarines, prepared or preserved, containing added spirit, with sugar content of > 15%, in immediate packings of a net content <= 1 kg 01/01/1988 31/12/2500 -20087059 01/01/1988 31/12/2500 LIBEN Peaches incl. nectarines, prepared or preserved, containing added spirit, in immediate packings of a net content of <= 1 kg (excl. sugar content of > 15%) 01/01/1988 31/12/2500 -20087061 01/01/1988 31/12/2500 LIBEN Peaches incl. nectarines, prepared or preserved, containing no spirit but with added sugar, with sugar content of > 13%, in immediate packings of a net content of > 1 kg 01/01/1988 31/12/2500 -20087069 01/01/1988 31/12/2500 LIBEN Peaches incl. nectarines, prepared or preserved, containing no spirit but with added sugar, with sugar content of > 9% but <= 13%, in immediate packings of > 1 kg 01/01/1988 31/12/2500 -20087071 01/01/1988 31/12/2500 LIBEN Peaches incl. nectarines, prepared or preserved, containing no spirit but with added sugar, with sugar content of > 15%, in immediate packings of a net content of <= 1 kg 01/01/1988 31/12/2500 -20087079 01/01/1988 31/12/2500 LIBEN Peaches incl. nectarines, prepared or preserved, containing no spirit but with added sugar, with sugar content of > 9% but <= 15%, in immediate packings of a net content of <= 1 kg 01/01/1988 31/12/2500 -20087091 01/01/1988 31/12/1994 LIBEN Peaches, prepared or preserved, in packings of >= 4.5 kg (excl. added spirit or sugar) 01/01/1988 31/12/1994 -20087092 01/01/1995 31/12/2500 LIBEN Peaches incl. nectarines, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of >= 5 kg 01/01/1995 31/12/2500 -20087094 01/01/1995 31/12/2003 LIBEN Peaches incl. nectarines, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of >= 4,5 kg but < 5 kg 01/01/1995 31/12/2003 -20087098 01/01/2004 31/12/2500 LIBEN Peaches incl. nectarines, prepared or preserved, in immediate packings of a net content of < 5 kg (excl. added spirit and sugar) 01/01/2004 31/12/2500 -20087099 01/01/1988 31/12/2003 LIBEN Peaches incl. nectarines, prepared or preserved, in immediate packings of a net content of < 4,5 kg (excl. added spirit and sugar) 01/01/1988 31/12/2003 -200880 01/01/1988 31/12/2500 LIBEN Strawberries, prepared or preserved, whether or not containing added sugar or other sweetening matter or spirit, n.e.s. 01/01/1988 31/12/2500 -20088011 01/01/1988 31/12/2500 LIBEN Strawberries, prepared or preserved, containing added spirit, with sugar content of > 9% and actual alcoholic strength of <= 11,85% mas 01/01/1988 31/12/2500 -20088019 01/01/1988 31/12/2500 LIBEN Strawberries, prepared or preserved, containing added spirit, with sugar content of > 9% and actual alcoholic strength of > 11,85% mas 01/01/1988 31/12/2500 -20088031 01/01/1988 31/12/2500 LIBEN Strawberries, prepared or preserved, containing added spirit, with actual alcoholic strength of <= 11,85% mas (excl. sugar content of > 9%) 01/01/1988 31/12/2500 -20088039 01/01/1988 31/12/2500 LIBEN Strawberries, prepared or preserved, with sugar content <= 9%, of actual alcoholic strength > 11,85% mas 01/01/1988 31/12/2500 -20088050 01/01/1988 31/12/2500 LIBEN Strawberries, prepared or preserved, containing no spirit but with added sugar, in immediate packings of a net content > 1 kg 01/01/1988 31/12/2500 -20088070 01/01/1988 31/12/2500 LIBEN Strawberries, prepared or preserved, containing no spirit but with added sugar, in immediate packings of a net content of <= 1 kg 01/01/1988 31/12/2500 -20088090 01/01/2004 31/12/2500 LIBEN Strawberries, prepared or preserved, not containing added spirit or added sugar 01/01/2004 31/12/2500 -20088091 01/01/1988 31/12/2003 LIBEN Strawberries, prepared or preserved, in immediate packings of a net content of >= 4,5 kg (excl. added sugar or spirit) 01/01/1988 31/12/2003 -20088099 01/01/1988 31/12/2003 LIBEN Strawberries, prepared or preserved, in immediate packings of a net content of < 4,5 kg (excl. added sugar or spirit) 01/01/1988 31/12/2003 -200891 01/01/1988 31/12/2500 LIBEN Palm hearts, prepared or preserved, whether or not containing added sugar or other sweetening matter or spirit (excl. prepared or preserved with vinegar) 01/01/1988 31/12/2500 -20089100 01/01/1988 31/12/2500 LIBEN Palm hearts, prepared or preserved, whether or not containing added sugar or other sweetening matter or spirit (excl. prepared or preserved with vinegar) 01/01/1988 31/12/2500 -200892 01/01/1988 31/12/2011 LIBEN Mixtures of fruits, nuts and other edible parts of plants, prepared or preserved, whether or not containing added sugar or other sweetening matter or spirit (excl. mixtures of nuts, groundnuts and other seeds and preparations of the Müsli type based on unroasted cereal flakes of subheading 1904.20.10, and prepared or preserved with vinegar, preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking) 01/01/1988 31/12/2011 -20089211 01/01/1988 31/12/1994 LIBEN Mixtures of fruits, nuts and other edible parts of plants, prepared or preserved, containing added spirit, with sugar content of > 9 % and actual alcoholic strength of =< 11.85 % mass 01/01/1988 31/12/1994 -20089212 01/01/1995 31/12/2011 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, containing added spirit, with a sugar content of > 9% by weight and of an actual alcoholic strength of <= 11,85% mas 01/01/1995 31/12/2011 -20089214 01/01/1995 31/12/2011 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, containing added spirit, with sugar content > 9% by weight and of an actual alcoholic strength <= 11,85% mas (excl. mixtures of nuts, tropical fruit and tropical fruit/nuts of a type specified in Additional Notes 7 and 8 to chapter 20 with a net content of >= 50% by weight, groundnuts and other seeds) 01/01/1995 31/12/2011 -20089216 01/01/1995 31/12/2011 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, containing added spirit, with sugar content of > 9% by weight and of an actual alcoholic strength of > 11,85% mas 01/01/1995 31/12/2011 -20089218 01/01/1995 31/12/2011 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, containing added spirit, with sugar content > 9% by weight and of an actual alcoholic strength > 11,85% mas (excl. mixtures of nuts, tropical fruit and tropical fruit/nuts of a type specified in Additional Notes 7 and 8 to chapter 20 with a net content of >= 50% by weight, groundnuts and other seeds) 01/01/1995 31/12/2011 -20089219 01/01/1988 31/12/1994 LIBEN Mixtures of fruits, nuts and other edible parts of plants, prepared or preserved, containing added spirit, with sugar content of > 9 % and actual alcoholic strength of > 11.85 % mass 01/01/1988 31/12/1994 -20089231 01/01/1988 31/12/1994 LIBEN Mixtures of fruits, nuts and other edible parts of plants, prepared or preserved, containing added spirit, with actual alcoholic strength of =< 11.85 % mass (excl. sugar content of > 9 %) 01/01/1988 31/12/1994 -20089232 01/01/1995 31/12/2011 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, containing added spirit, of an actual alcoholic strength of <= 11,85% mas (excl. with sugar content of > 9% by weight) 01/01/1995 31/12/2011 -20089234 01/01/1995 31/12/2011 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, containing added spirit, of an actual alcoholic strength <= 11,85% mas (excl. with sugar content > 9% by weight and mixtures of nuts, tropical fruit and tropical fruit/nuts of a type specified in Additional Notes 7 and 8 to chapter 20 with a net content of >= 50% by weight, groundnuts and other seeds) 01/01/1995 31/12/2011 -20089236 01/01/1995 31/12/2011 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, containing added spirit, of an actual alcoholic strength of > 11,85% mas (excl. with sugar content of > 9% by weight) 01/01/1995 31/12/2011 -20089238 01/01/1995 31/12/2011 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, containing added spirit, of an actual alcoholic strength > 11,85% mas (excl. with sugar content > 9% by weight and mixtures of nuts, tropical fruit and tropical fruit/nuts of a type specified in Additional Notes 7 and 8 to chapter 20 with a net content of >= 50% by weight, groundnuts and other seeds) 01/01/1995 31/12/2011 -20089239 01/01/1988 31/12/1994 LIBEN Mixtures of fruits, nuts and other edible parts of plants, prepared or preserved, containing added spirit, with actual alcoholic strength of > 11.85 % mass (excl. sugar content of > 9 %) 01/01/1988 31/12/1994 -20089245 01/01/1993 31/12/1995 LIBEN Preparations of the Müsli type based on unroasted cereal flakes 01/01/1993 31/12/1995 -20089250 01/01/1988 31/12/1994 LIBEN Mixtures of fruits or other edible parts of plants, prepared or preserved, not containing added spirit, but containing added sugar, in immediate packings of a net content of > 1 kg (excl. mixtures of nuts, peanuts and other seeds and preparations of the musli type based on unroasted cereal flakes) 01/01/1988 31/12/1994 -20089251 01/01/1995 31/12/2011 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content of > 1 kg 01/01/1995 31/12/2011 -20089259 01/01/1995 31/12/2011 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content of > 1 kg (excl. mixtures of tropical fruits and tropical fruits and nuts of a type specified in Additional Notes 7 and 8 to chapter 20, containing >= 50% by weight, groundnuts and other seeds and preparations of the Müsli type based on unroasted cereal flakes of subheading 1904.20.10) 01/01/1995 31/12/2011 -20089271 01/01/1988 31/12/1994 LIBEN Mixtures of fruits or other edible parts of plants, prepared or preserved, not containing added spirit, but containing added sugar, in which the weight of no single fruit is > 50% of the total weight of the fruits, in immediate packings of a net content of <= 1 kg (excl. mixtures of nuts, peanuts and other seeds, and preparations of the musli type based on unroasted cereal flakes) 01/01/1988 31/12/1994 -20089272 01/01/1995 31/12/2011 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, not containing added spirit but containing added sugar, in which the weight of no single fruit exceeds 50% of the total weight, in immediate packings of a net content of <= 1 kg 01/01/1995 31/12/2011 -20089274 01/01/1995 31/12/2011 LIBEN Mixtures of fruit, in which the weight of no single fruit exceeds 50% of the total weight, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content of <= 1 kg (excl. mixtures of nuts, tropical fruit and tropical fruit and nuts of a type specified in Additional Notes 7 and 8 to chapter 20, containing >= 50% by weight, groundnuts and other seeds and preparations of the Müsli type based on unroasted cereal flakes of subheading 1904.20.10) 01/01/1995 31/12/2011 -20089276 01/01/1995 31/12/2011 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content of <= 1 kg (excl. mixtures, in which the weight of no single fruit exceeds 50% of the total weight of the fruits) 01/01/1995 31/12/2011 -20089278 01/01/1995 31/12/2011 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content of <= 1 kg (excl. mixtures of nuts, tropical fruits and tropical fruits and nuts of a type specified in Additional Notes 7 and 8 to chapter 20, of >= 50% by weight, groundnuts and other seeds, mixtures in which the weight of no single fruit exceeds 50% of the total weight of the fruits, and preparations of the Müsli type based on unroasted cereal flakes of subheading 1904.20.10) 01/01/1995 31/12/2011 -20089279 01/01/1988 31/12/1994 LIBEN Mixtures of fruits or other edible parts of plants, prepared or preserved, not containing added spirit, but containing added sugar, in which the weight of one fruit is > 50% of the total weight of the fruits, in immediate packings of a net content of <= 1 kg (excl. mixtures of nuts, peanuts and other seeds, and preparations of the musli type based on unroasted cereal flakes) 01/01/1988 31/12/1994 -20089291 01/01/1988 31/12/1992 LIBEN Mixtures of fruit, prepared or preserved, in packings of >= 4.5 kg (excl. added sugar or spirit and mixtures of nuts, groundnuts and other seeds) 01/01/1988 31/12/1992 -20089291 01/01/1993 31/12/1994 LIBEN Mixtures of fruit, prepared or preserved, in packings of >= 4.5 kg (excl. added sugar or spirit and mixtures of nuts, groundnuts and other seeds) 01/01/1993 31/12/1994 -20089292 01/01/1995 31/12/2011 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of >= 5 kg 01/01/1995 31/12/2011 -20089293 01/01/1995 31/12/2011 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of >= 5 kg, n.e.s. (excl. mixtures of nuts, tropical fruits and tropical fruits and nuts of a type specified in Additional Notes 7 and 8 to chapter 20, containing >= 50% by weight, groundnuts and other seeds and preparations of the Müsli type based on unroasted cereal flakes of subheading 1904.20.10) 01/01/1995 31/12/2011 -20089294 01/01/1995 31/12/2011 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of >= 4,5 kg but < 5 kg 01/01/1995 31/12/2011 -20089296 01/01/1995 31/12/2011 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of >= 4,5 kg but < 5 kg, n.e.s. (excl. mixtures of nuts, tropical fruits and tropical fruits and nuts of a type specified in Additional Notes 7 and 8 to chapter 20, containing >= 50% by weight, groundnuts and other seeds and preparations of the Müsli type based on unroasted cereal flakes of subheading 1904.20.10) 01/01/1995 31/12/2011 -20089297 01/01/1995 31/12/2011 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of < 4,5 kg 01/01/1995 31/12/2011 -20089298 01/01/1995 31/12/2011 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of < 4,5 kg, n.e.s. (excl. mixtures of nuts, tropical fruit of a type specified in Additional Note 7 to chapter 20, groundnuts and other seeds and preparations of the Müsli type based on unroasted cereal flakes of subheading 1904.20.10) 01/01/1995 31/12/2011 -20089299 01/01/1988 31/12/1992 LIBEN Mixtures of fruit, prepared or preserved, in packings of < 4.5 kg (excl. added sugar or spirit and mixtures of nuts, groundnuts and other seeds) 01/01/1988 31/12/1992 -20089299 01/01/1993 31/12/1994 LIBEN Mixtures of fruit, prepared or preserved, in packings of < 4.5 kg (excl. added sugar or spirit and mixtures of nuts, groundnuts and other seeds) 01/01/1993 31/12/1994 -200893 01/01/2012 31/12/2500 LIBEN Cranberries "Vaccinium macrocarpon, Vaccinium oxycoccos, Vaccinium vitis-idaea", prepared or preserved, whether or not containing added sugar or other sweetening matter or spirit, n.e.s. 01/01/2012 31/12/2500 -20089311 01/01/2012 31/12/2500 LIBEN Cranberries "Vaccinium macrocarpon, Vaccinium oxycoccos, Vaccinium vitis-idaea", prepared or preserved, containing added spirit, with a sugar content of > 9% by weight and of an actual alcoholic strength of <= 11,85% mas (excl. preserved with sugar but not laid in syrup, jams, jellies, marmalades, purée and pastes, obtained by cooking) 01/01/2012 31/12/2500 -20089319 01/01/2012 31/12/2500 LIBEN Cranberries "Vaccinium macrocarpon, Vaccinium oxycoccos, Vaccinium vitis-idaea", prepared or preserved, containing added spirit, with a sugar content of > 9% by weight and of an actual alcoholic strength of > 11,85% mas (excl. preserved with sugar but not laid in syrup, jams, jellies, marmalades, purée and pastes, obtained by cooking) 01/01/2012 31/12/2500 -20089321 01/01/2012 31/12/2500 LIBEN Cranberries "Vaccinium macrocarpon, Vaccinium oxycoccos, Vaccinium vitis-idaea", prepared or preserved, containing added spirit, with a sugar content of <= 9% by weight and of an actual alcoholic strength of <= 11,85% mas (excl. preserved with sugar but not laid in syrup, jams, jellies, marmalades, purée and pastes, obtained by cooking) 01/01/2012 31/12/2500 -20089329 01/01/2012 31/12/2500 LIBEN Cranberries "Vaccinium macrocarpon, Vaccinium oxycoccos, Vaccinium vitis-idaea", prepared or preserved, containing added spirit, with a sugar content of <= 9% by weight and of an actual alcoholic strength of > 11,85% mas (excl. preserved with sugar but not laid in syrup, jams, jellies, marmalades, purée and pastes, obtained by cooking) 01/01/2012 31/12/2500 -20089391 01/01/2012 31/12/2500 LIBEN Cranberries "Vaccinium macrocarpon, Vaccinium oxycoccos, Vaccinium vitis-idaea", prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of > 1 kg (excl. preserved with sugar but not laid in syrup, jams, jellies, marmalades, purée and pastes, obtained by cooking) 01/01/2012 31/12/2500 -20089393 01/01/2012 31/12/2500 LIBEN Cranberries "Vaccinium macrocarpon, Vaccinium oxycoccos, Vaccinium vitis-idaea", prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of <= 1 kg (excl. preserved with sugar but not laid in syrup, jams, jellies, marmalades, purée and pastes, obtained by cooking) 01/01/2012 31/12/2500 -20089399 01/01/2012 31/12/2500 LIBEN Cranberries "Vaccinium macrocarpon, Vaccinium oxycoccos, Vaccinium vitis-idaea", prepared or preserved, not containing added spirit nor added sugar (excl. jams, jellies, marmalades, purée and pastes, obtained by cooking) 01/01/2012 31/12/2500 -200897 01/01/2012 31/12/2500 LIBEN Mixtures of fruits, nuts and other edible parts of plants, prepared or preserved, whether or not containing added sugar or other sweetening matter or spirit (excl. mixtures of nuts, groundnuts and other seeds and preparations of the Müsli type based on unroasted cereal flakes of subheading 1904.20.10, and prepared or preserved with vinegar, preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking) 01/01/2012 31/12/2500 -20089703 01/01/2014 31/12/2500 LIBEN Mixtures of tropical nuts and tropical fruit, containing by weight >=50% of tropical nuts, prepared or preserved, whether or not containing added sugar or other sweetening matter or spirit, in immediate packings of a net content of > 1 kg 01/01/2014 31/12/2500 -20089705 01/01/2014 31/12/2500 LIBEN Mixtures of tropical nuts and tropical fruit, containing by weight >=50% of tropical nuts, prepared or preserved, whether or not containing added sugar or other sweetening matter or spirit, in immediate packings of a net content of <= 1 kg 01/01/2014 31/12/2500 -20089712 01/01/2012 31/12/2500 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, containing added spirit, with a sugar content of > 9% by weight and of an actual alcoholic strength of <= 11,85% mas 01/01/2012 31/12/2500 -20089714 01/01/2012 31/12/2500 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, containing added spirit, with sugar content > 9% by weight and of an actual alcoholic strength <= 11,85% mas (excl. mixtures of nuts, tropical fruit and tropical fruit/nuts of a type specified in Additional Notes 7 and 8 to chapter 20 with a net content of >= 50% by weight, groundnuts and other seeds) 01/01/2012 31/12/2500 -20089716 01/01/2012 31/12/2500 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, containing added spirit, with sugar content of > 9% by weight and of an actual alcoholic strength of > 11,85% mas 01/01/2012 31/12/2500 -20089718 01/01/2012 31/12/2500 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, containing added spirit, with sugar content > 9% by weight and of an actual alcoholic strength > 11,85% mas (excl. mixtures of nuts, tropical fruit and tropical fruit/nuts of a type specified in Additional Notes 7 and 8 to chapter 20 with a net content of >= 50% by weight, groundnuts and other seeds) 01/01/2012 31/12/2500 -20089732 01/01/2012 31/12/2500 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, containing added spirit, of an actual alcoholic strength of <= 11,85% mas (excl. with sugar content of > 9% by weight) 01/01/2012 31/12/2500 -20089734 01/01/2012 31/12/2500 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, containing added spirit, of an actual alcoholic strength <= 11,85% mas (excl. with sugar content > 9% by weight and mixtures of nuts, tropical fruit and tropical fruit/nuts of a type specified in Additional Notes 7 and 8 to chapter 20 with a net content of >= 50% by weight, groundnuts and other seeds) 01/01/2012 31/12/2500 -20089736 01/01/2012 31/12/2500 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, containing added spirit, of an actual alcoholic strength of > 11,85% mas (excl. with sugar content of > 9% by weight) 01/01/2012 31/12/2500 -20089738 01/01/2012 31/12/2500 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, containing added spirit, of an actual alcoholic strength > 11,85% mas (excl. with sugar content > 9% by weight and mixtures of nuts, tropical fruit and tropical fruit/nuts of a type specified in Additional Notes 7 and 8 to chapter 20 with a net content of >= 50% by weight, groundnuts and other seeds) 01/01/2012 31/12/2500 -20089751 01/01/2012 31/12/2500 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content of > 1 kg 01/01/2012 31/12/2500 -20089759 01/01/2012 31/12/2500 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content of > 1 kg (excl. mixtures of tropical fruits and tropical fruits and nuts of a type specified in Additional Notes 7 and 8 to chapter 20, containing >= 50% by weight, groundnuts and other seeds and preparations of the Müsli type based on unroasted cereal flakes of subheading 1904.20.10) 01/01/2012 31/12/2500 -20089772 01/01/2012 31/12/2500 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, not containing added spirit but containing added sugar, in which the weight of no single fruit exceeds 50% of the total weight, in immediate packings of a net content of <= 1 kg 01/01/2012 31/12/2500 -20089774 01/01/2012 31/12/2500 LIBEN Mixtures of fruit, in which the weight of no single fruit exceeds 50% of the total weight, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content of <= 1 kg (excl. mixtures of nuts, tropical fruit and tropical fruit and nuts of a type specified in Additional Notes 7 and 8 to chapter 20, containing >= 50% by weight, groundnuts and other seeds and preparations of the Müsli type based on unroasted cereal flakes of subheading 1904.20.10) 01/01/2012 31/12/2500 -20089776 01/01/2012 31/12/2500 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content of <= 1 kg (excl. mixtures, in which the weight of no single fruit exceeds 50% of the total weight of the fruits) 01/01/2012 31/12/2500 -20089778 01/01/2012 31/12/2500 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content of <= 1 kg (excl. mixtures of nuts, tropical fruits and tropical fruits and nuts of a type specified in Additional Notes 7 and 8 to chapter 20, of >= 50% by weight, groundnuts and other seeds, mixtures in which the weight of no single fruit exceeds 50% of the total weight of the fruits, and preparations of the Müsli type based on unroasted cereal flakes of subheading 1904.20.10) 01/01/2012 31/12/2500 -20089792 01/01/2012 31/12/2500 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of >= 5 kg 01/01/2012 31/12/2500 -20089793 01/01/2012 31/12/2500 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of >= 5 kg, n.e.s. (excl. mixtures of nuts, tropical fruits and tropical fruits and nuts of a type specified in Additional Notes 7 and 8 to chapter 20, containing >= 50% by weight, groundnuts and other seeds and preparations of the Müsli type based on unroasted cereal flakes of subheading 1904.20.10) 01/01/2012 31/12/2500 -20089794 01/01/2012 31/12/2500 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of >= 4,5 kg but < 5 kg 01/01/2012 31/12/2500 -20089796 01/01/2012 31/12/2500 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of >= 4,5 kg but < 5 kg, n.e.s. (excl. mixtures of nuts, tropical fruits and tropical fruits and nuts of a type specified in Additional Notes 7 and 8 to chapter 20, containing >= 50% by weight, groundnuts and other seeds and preparations of the Müsli type based on unroasted cereal flakes of subheading 1904.20.10) 01/01/2012 31/12/2500 -20089797 01/01/2012 31/12/2500 LIBEN Mixtures of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, incl. mixtures containing >= 50% by weight of these fruits and coconuts, cashew nuts, brazil nuts, areca "betel" nuts, cola nuts and macadamia nuts, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of < 4,5 kg 01/01/2012 31/12/2500 -20089798 01/01/2012 31/12/2500 LIBEN Mixtures of fruit or other edible parts of plants, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of < 4,5 kg, n.e.s. (excl. mixtures of nuts, tropical fruit of a type specified in Additional Note 7 to chapter 20, groundnuts and other seeds and preparations of the Müsli type based on unroasted cereal flakes of subheading 1904.20.10) 01/01/2012 31/12/2500 -200899 01/01/1988 31/12/2500 LIBEN Fruit and other edible parts of plants, prepared or preserved, whether or not containing added sugar or other sweetening matter or spirit (excl. prepared or preserved with vinegar, preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, and nuts, groundnuts and other seeds, pineapples, citrus fruits, pears, apricots, cherries, peaches, strawberries, palm hearts and cranberries) 01/01/1988 31/12/2500 -20089911 01/01/1988 31/12/2500 LIBEN Ginger, prepared or preserved, containing added spirit, with actual alcoholic strength of <= 11,85% mas 01/01/1988 31/12/2500 -20089919 01/01/1988 31/12/2500 LIBEN Ginger, prepared or preserved, containing added spirit, with actual alcoholic strength of > 11,85% mas 01/01/1988 31/12/2500 -20089921 01/01/1988 31/12/2500 LIBEN Grapes, prepared or preserved, containing added spirit, with sugar content of > 13% 01/01/1988 31/12/2500 -20089923 01/01/1990 31/12/2500 LIBEN Grapes, prepared or preserved, with added spirit, with sugar content <= 13% (excl. with sugar content > 13%) 01/01/1990 31/12/2500 -20089924 01/01/2006 31/12/2500 LIBEN Guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, prepared or preserved, containing added spirit, with sugar content > 9% by weight and of an actual alcoholic strength <= 11,85% mas 01/01/2006 31/12/2500 -20089925 01/01/1990 31/12/2005 LIBEN Passionfruit and guavas, prepared or preserved, with sugar content > 9%, of actual alcoholic strength <= 11,85% mas 01/01/1990 31/12/2005 -20089926 01/01/1995 31/12/2005 LIBEN Mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, carambola and pitahaya, prepared or preserved, containing added spirit, with sugar content > 9% by weight and of an actual alcoholic strength <= 11,85% mas 01/01/1995 31/12/2005 -20089927 01/01/1990 31/12/1994 LIBEN Fruit and edible parts of plants, with sugar content > 9 %, of actual alcoholic strength =< 11.85 % mass, (excl. 2008.11-10 to 2008.99-25), (otherwise prepared or preserved in 20.06 and 20.07) 01/01/1990 31/12/1994 -20089928 01/01/1995 31/12/2011 LIBEN Fruit and other edible parts of plants, prepared or preserved, containing added spirit, with a sugar content of > 9% by weight and of an actual alcoholic strength of <= 11,85% mas (excl. preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, and nuts, groundnuts and other seeds, pineapples, citrus fruits, pears, apricots, cherries, peaches, strawberries, ginger, grapes, passion fruit, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, carambola and pitahaya) 01/01/1995 31/12/2011 -20089928 01/01/2012 31/12/2500 LIBEN Fruit and other edible parts of plants, prepared or preserved, containing added spirit, with a sugar content of > 9% by weight and of an actual alcoholic strength of <= 11,85% mas (excl. preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, and nuts, groundnuts and other seeds, pineapples, citrus fruits, pears, apricots, cherries, peaches, strawberries, cranberries, ginger, grapes, passion fruit, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, carambola and pitahaya) 01/01/2012 31/12/2500 -20089929 01/01/1988 31/12/1989 LIBEN Grapes, prepared or preserved, containing added spirit (excl. with sugar content of > 13 %) 01/01/1988 31/12/1989 -20089931 01/01/1988 31/12/1989 LIBEN Fruit, nuts and other edible parts of plants, prepared or preserved, containing added spirit, with sugar content of > 9 %, and actual alcoholic strength of =< 11.85 % mass n.e.s. 01/01/1988 31/12/1989 -20089931 01/01/2006 31/12/2500 LIBEN Guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, prepared or preserved, containing added spirit, with sugar content > 9% by weight and of an actual alcoholic strength > 11,85% mas 01/01/2006 31/12/2500 -20089932 01/01/1990 31/12/2005 LIBEN Passionfruit and guavas, prepared or preserved, with sugar content > 9%, of actual alcoholic strength > 11,85% mas 01/01/1990 31/12/2005 -20089933 01/01/1988 31/12/1989 LIBEN Fruit, nuts and other edible parts of plants, prepared or preserved, containing added spirit, with sugar content of > 9 %, and actual alcoholic strength of > 11.85 % mass n.e.s. 01/01/1988 31/12/1989 -20089933 01/01/1995 31/12/2005 LIBEN Mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, carambola and pitahaya, prepared or preserved, containing added spirit, with sugar content > 9% by weight and of an actual alcoholic strength > 11,85% mas 01/01/1995 31/12/2005 -20089934 01/01/1990 31/12/1994 LIBEN Fruit, with sugar content > 9 %, of actual alcoholic strength > 11.85 % mass, (excl. 2008.11-10 to 2008.99-32), (otherwise prepared or preserved in 20.06 and 20.07) 01/01/1990 31/12/1994 -20089934 01/01/1995 31/12/2011 LIBEN Fruit and other edible parts of plants, prepared or preserved, containing added spirit, with a sugar content of > 9% by weight and of an actual alcoholic strength of > 11,85% mas (excl. preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, and nuts, groundnuts and other seeds, pineapples, citrus fruits, pears, apricots, cherries, peaches, strawberries, ginger, grapes, passion fruit, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, carambola and pitahaya) 01/01/1995 31/12/2011 -20089934 01/01/2012 31/12/2500 LIBEN Fruit and other edible parts of plants, prepared or preserved, containing added spirit, with a sugar content of > 9% by weight and of an actual alcoholic strength of > 11,85% mas (excl. preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, and nuts, groundnuts and other seeds, pineapples, citrus fruits, pears, apricots, cherries, peaches, strawberries, cranberries, ginger, grapes, passion fruit, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, carambola and pitahaya) 01/01/2012 31/12/2500 -20089935 01/01/1988 31/12/1994 LIBEN Fruit, nuts and other edible parts of plants, prepared or preserved, containing added spirit, and actual alcoholic strength of =< 11.85 % mass n.e.s. (excl. with sugar content of > 9 %) 01/01/1988 31/12/1994 -20089936 01/01/1995 31/12/2500 LIBEN Guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, prepared or preserved, containing added spirit, of an actual alcoholic strength <= 11,85% mas (excl. with sugar content > 9% by weight) 01/01/1995 31/12/2500 -20089937 01/01/1995 31/12/2011 LIBEN Fruit and other edible parts of plants, prepared or preserved, containing added spirit, of an actual alcoholic strength of <= 11,85% mas (excl. with a sugar content of > 9% by weight, nuts, groundnuts and other seeds, pineapples, citrus fruits, pears, apricots, cherries, peaches, strawberries, ginger, grapes, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya) 01/01/1995 31/12/2011 -20089937 01/01/2012 31/12/2500 LIBEN Fruit and other edible parts of plants, prepared or preserved, containing added spirit, of an actual alcoholic strength of <= 11,85% mas (excl. with a sugar content of > 9% by weight, nuts, groundnuts and other seeds, pineapples, citrus fruits, pears, apricots, cherries, peaches, strawberries, cranberries, ginger, grapes, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya) 01/01/2012 31/12/2500 -20089938 01/01/1995 31/12/2500 LIBEN Guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, prepared or preserved, containing added spirit, of an actual alcoholic strength > 11,85% mas (excl. with sugar content > 9% by weight) 01/01/1995 31/12/2500 -20089939 01/01/1988 31/12/1994 LIBEN Fruit, nuts and other edible parts of plants, prepared or preserved, containing added spirit, and actual alcoholic strength of > 11.85 % mass n.e.s. (excl. with sugar content of > 9 %) 01/01/1988 31/12/1994 -20089940 01/01/1995 31/12/2011 LIBEN Fruit and other edible parts of plants, prepared or preserved, containing added spirit, of an actual alcoholic strength of > 11,85% mas (excl. with a sugar content of > 9% by weight, nuts, groundnuts and other seeds, pineapples, citrus fruits, pears, apricots, cherries, peaches, strawberries, ginger, grapes, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya) 01/01/1995 31/12/2011 -20089940 01/01/2012 31/12/2500 LIBEN Fruit and other edible parts of plants, prepared or preserved, containing added spirit, of an actual alcoholic strength of > 11,85% mas (excl. with a sugar content of > 9% by weight, nuts, groundnuts and other seeds, pineapples, citrus fruits, pears, apricots, cherries, peaches, strawberries, cranberries, ginger, grapes, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya) 01/01/2012 31/12/2500 -20089941 01/01/1988 31/12/2500 LIBEN Ginger, prepared or preserved, containing no spirit but with added sugar, in immediate packings of a net content of > 1 kg 01/01/1988 31/12/2500 -20089943 01/01/1988 31/12/2500 LIBEN Grapes, prepared or preserved, containing no spirit but with added sugar, in immediate packings of a net content of > 1 kg 01/01/1988 31/12/2500 -20089945 01/01/1988 31/12/2500 LIBEN Plums, prepared or preserved, containing no spirit but with added sugar, in immediate packings of a net content of > 1 kg 01/01/1988 31/12/2500 -20089946 01/01/1990 31/12/2007 LIBEN Passionfruit, guavas and tamarinds, prepared or preserved, containing no spirit but with added sugar, in immediate packings of a net content of > 1 kg 01/01/1990 31/12/2007 -20089947 01/01/1995 31/12/2007 LIBEN Mangoes, mangosteens, papaws "papayas", cashew apples, lychees, jackfruit, sapodillo plums, carambola and pitahaya, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content > 1 kg 01/01/1995 31/12/2007 -20089948 01/01/1990 31/12/1994 LIBEN Fruit and edible parts of plants, with added sugar, in packings > 1 kg, (excl. added spirit and 2008.11-10 to 2008.99-46), (otherwise prepared or preserved in 20.06 and 20.07) 01/01/1990 31/12/1994 -20089948 01/01/2008 31/12/2500 LIBEN Guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content > 1 kg 01/01/2008 31/12/2500 -20089949 01/01/1988 31/12/1989 LIBEN Fruit and other edible parts of plants, prepared or preserved, containing no spirit but with added sugar, in packings of > 1 kg, n.e.s. 01/01/1988 31/12/1989 -20089949 01/01/1995 31/12/2011 LIBEN Fruit and other edible parts of plants, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content of > 1 kg (excl. preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, and nuts, groundnuts and other seeds, pineapples, citrus fruits, pears, apricots, cherries, peaches, strawberries, ginger, grapes, plums, passion fruit, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, carambola and pitahaya) 01/01/1995 31/12/2011 -20089949 01/01/2012 31/12/2500 LIBEN Fruit and other edible parts of plants, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content of > 1 kg (excl. preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, and nuts, groundnuts and other seeds, pineapples, citrus fruits, pears, apricots, cherries, peaches, strawberries, cranberries, ginger, grapes, plums, passion fruit, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, carambola and pitahaya) 01/01/2012 31/12/2500 -20089951 01/01/1988 31/12/2500 LIBEN Ginger, prepared or preserved, containing no spirit but with added sugar, in immediate packings of a net content of <= 1 kg 01/01/1988 31/12/2500 -20089953 01/01/1988 31/12/2003 LIBEN Grapes, prepared or preserved, containing no spirit but with added sugar, in immediate packings of a net content of <= 1 kg 01/01/1988 31/12/2003 -20089955 01/01/1988 31/12/2003 LIBEN Plums, prepared or preserved, containing no spirit but with added sugar, in immediate packings of a net content of <= 1 kg 01/01/1988 31/12/2003 -20089959 01/01/1988 31/12/1989 LIBEN Fruit and other edible parts of plants, prepared or preserved, containing no spirit but with added sugar, in packings of =< 1 kg n.e.s. 01/01/1988 31/12/1989 -20089961 01/01/1990 31/12/2007 LIBEN Passionfruit and guavas, prepared or preserved, containing no spirit but with added sugar, in immediate packings of a net content of <= 1 kg 01/01/1990 31/12/2007 -20089962 01/01/1995 31/12/2007 LIBEN Mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, carambola and pitahaya, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content <= 1 kg (excl. mixtures) 01/01/1995 31/12/2007 -20089963 01/01/2008 31/12/2500 LIBEN Guavas, Mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content <= 1 kg (excl. mixtures) 01/01/2008 31/12/2500 -20089967 01/01/2004 31/12/2011 LIBEN Fruit and other edible parts of plants, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content of <= 1 kg (excl. preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, and nuts, groundnuts and other seeds, pineapples, citrus fruits, pears, apricots, cherries, peaches, strawberries, ginger, passion fruit, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, carambola and pitahaya) 01/01/2004 31/12/2011 -20089967 01/01/2012 31/12/2500 LIBEN Fruit and other edible parts of plants, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content of <= 1 kg (excl. preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, and nuts, groundnuts and other seeds, pineapples, citrus fruits, pears, apricots, cherries, peaches, strawberries, cranberries, ginger, passion fruit, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, carambola and pitahaya) 01/01/2012 31/12/2500 -20089968 01/01/1995 31/12/2003 LIBEN Fruit and other edible parts of plants, prepared or preserved, not containing added spirit but containing added sugar, in immediate packings of a net content of <= 1 kg (excl. preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, and nuts, groundnuts and other seeds, pineapples, citrus fruits, pears, apricots, cherries, peaches, strawberries, ginger, grapes, plums, passion fruit, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, carambola and pitahaya) 01/01/1995 31/12/2003 -20089969 01/01/1990 31/12/1994 LIBEN Fruit and edible parts of plants, with added sugar, in packings =< 1 kg, (excl. 2008.11-10 to 2008.99-61 or added spirit), (otherwise prepared or preserved in 20.06 and 20.07) 01/01/1990 31/12/1994 -20089971 01/01/1988 31/12/1994 LIBEN Plums, prepared or preserved, in packings of >= 4.5 kg (excl. added sugar or spirit) 01/01/1988 31/12/1994 -20089972 01/01/1995 31/12/2500 LIBEN Plums, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of >= 5 kg 01/01/1995 31/12/2500 -20089974 01/01/1995 31/12/2001 LIBEN Plums, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content >= 4,5 kg but < 5 kg 01/01/1995 31/12/2001 -20089978 01/01/2002 31/12/2500 LIBEN Plums, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of < 5 kg 01/01/2002 31/12/2500 -20089979 01/01/1988 31/12/2001 LIBEN Plums, prepared or preserved, not containing added spirit or added sugar, in immediate packings of a net content of < 4,5 kg 01/01/1988 31/12/2001 -20089985 01/01/1988 31/12/2500 LIBEN Maize "corn", prepared or preserved, not containing added spirit or added sugar (excl. sweetcorn "Zea mays var. Saccharata") 01/01/1988 31/12/2500 -20089991 01/01/1988 31/12/2500 LIBEN Yams, sweet potatoes and similar edible parts of plants, containing >= 5% starch, prepared or preserved, not containing added spirit or added sugar (excl. frozen or dried) 01/01/1988 31/12/2500 -20089999 01/01/1988 31/12/2011 LIBEN Fruit and other edible part of plants, prepared or preserved, not containing added spirit or added sugar (excl. prepared or preserved with vinegar, preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, and nuts, groundnuts and other seeds, pineapples, citrus fruits, pears, apricots, cherries, peaches, strawberries, plums, corn, yam roots, sweet potatoes and similar edible parts of plants) 01/01/1988 31/12/2011 -20089999 01/01/2012 31/12/2016 LIBEN Fruit and other edible part of plants, prepared or preserved, not containing added spirit or added sugar (excl. prepared or preserved with vinegar, preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, and nuts, groundnuts and other seeds, pineapples, citrus fruits, pears, apricots, cherries, peaches, strawberries, cranberries, plums, corn, yam roots, sweet potatoes and similar edible parts of plants) 01/01/2012 31/12/2016 -20089999 01/01/2017 31/12/2500 LIBEN Fruit and other edible part of plants, prepared or preserved, not containing added spirit or added sugar (excl. prepared or preserved with vinegar, preserved with sugar but not laid in syrup, jams, fruit jellies, marmalades, fruit purée and pastes, obtained by cooking, and nuts, groundnuts and other seeds, pineapples, citrus fruits, pears, apricots, cherries, peaches, strawberries, cranberries, plums, corn, yam roots, sweet potatoes and similar edible parts of plants) 01/01/2017 31/12/2500 -2009 01/01/1988 31/12/2500 LIBEN Fruit juices, incl. grape must, and vegetable juices, unfermented, not containing added spirit, whether or not containing added sugar or other sweetening matter 01/01/1988 31/12/2500 -200911 01/01/1988 31/12/2500 LIBEN Frozen orange juice, unfermented, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2500 -20091111 01/01/1988 31/12/2500 LIBEN Frozen orange juice, unfermented, Brix value > 67 at 20°C, value of <= 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2500 -20091119 01/01/1988 31/12/2500 LIBEN Frozen orange juice, unfermented, Brix value > 67 at 20°C, value of > 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2500 -20091191 01/01/1988 31/12/2500 LIBEN Frozen orange juice, unfermented, Brix value <= 67 at 20°C, value of <= 30 € per 100 kg, with > 30% added sugar (excl. containing spirit) 01/01/1988 31/12/2500 -20091199 01/01/1988 31/12/2500 LIBEN Frozen orange juice, unfermented, Brix value <= 67 at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit, with a value of <= 30 € per 100 kg and with > 30% added sugar) 01/01/1988 31/12/2500 -200912 01/01/2002 31/12/2500 LIBEN Orange juice, unfermented, Brix value <= 20 at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit and frozen) 01/01/2002 31/12/2500 -20091200 01/01/2002 31/12/2500 LIBEN Orange juice, unfermented, Brix value <= 20 at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit and frozen) 01/01/2002 31/12/2500 -200919 01/01/1988 31/12/2500 LIBEN Orange juice, unfermented, whether or not containing added sugar or other sweetening matter (excl. containing spirit, frozen, and of a Brix value <= 20 at 20°C) 01/01/1988 31/12/2500 -20091911 01/01/1988 31/12/2500 LIBEN Orange juice, unfermented, Brix value > 67 at 20°C, value of <= 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit and frozen) 01/01/1988 31/12/2500 -20091919 01/01/1988 31/12/2500 LIBEN Orange juice, unfermented, Brix value > 67 at 20°C, value of > 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit and frozen) 01/01/1988 31/12/2500 -20091991 01/01/1988 31/12/2500 LIBEN Orange juice, unfermented, Brix value > 20 but <= 67 at 20°C, value of <= 30 € per 100 kg, containing > 30% added sugar (excl. containing spirit and frozen) 01/01/1988 31/12/2500 -20091998 01/01/2002 31/12/2500 LIBEN Orange juice, unfermented, Brix value > 20 but <= 67 at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit and frozen, with a value of <= 30 € per 100 kg and with > 30% added sugar) 01/01/2002 31/12/2500 -20091999 01/01/1988 31/12/2001 LIBEN Orange juice, unfermented, density of <= 1,33 g/cm³ at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit and frozen, with a value of <= 30 € per 100 kg and with > 30% added sugar) 01/01/1988 31/12/2001 -200920 01/01/1988 31/12/2001 LIBEN Grapefruit juice, unfermented, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2001 -20092011 01/01/1988 31/12/2001 LIBEN Grapefruit juice, unfermented, density of > 1,33 g/cm³ at 20°C, value of <= 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2001 -20092019 01/01/1988 31/12/2001 LIBEN Grapefruit juice, unfermented, density of > 1,33 g/cm³ at 20°C, value of > 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2001 -20092091 01/01/1988 31/12/2001 LIBEN Grapefruit juice, unfermented, density of <= 1,33 g/cm³ at 20°C, value of <= 30 € per 100 kg, containing > 30% added sugar (excl. containing spirit) 01/01/1988 31/12/2001 -20092099 01/01/1988 31/12/2001 LIBEN Grapefruit juice, unfermented, density of <= 1,33 g/cm³ at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit, with a value of <= 30 € per 100 kg and with > 30% added sugar) 01/01/1988 31/12/2001 -200921 01/01/2002 31/12/2500 LIBEN Grapefruit juice, unfermented, Brix value <= 20 at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20092100 01/01/2002 31/12/2500 LIBEN Grapefruit juice, unfermented, Brix value <= 20 at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -200929 01/01/2002 31/12/2500 LIBEN Grapefruit juice, unfermented, Brix value > 20 at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20092911 01/01/2002 31/12/2500 LIBEN Grapefruit juice, unfermented, Brix value > 67 at 20°C, value of <= 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20092919 01/01/2002 31/12/2500 LIBEN Grapefruit juice, unfermented, Brix value > 67 at 20°C, value of > 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20092991 01/01/2002 31/12/2500 LIBEN Grapefruit juice, unfermented, Brix value > 20 but <= 67 at 20°C, value of <= 30 € per 100 kg, containing > 30% added sugar (excl. containing spirit) 01/01/2002 31/12/2500 -20092999 01/01/2002 31/12/2500 LIBEN Grapefruit juice, unfermented, Brix value > 20 but <= 67 at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit, with a value of <= 30 € per 100 kg and with > 30% added sugar) 01/01/2002 31/12/2500 -200930 01/01/1988 31/12/2001 LIBEN Juice of citrus fruit, unfermented, whether or not containing added sugar or other sweetening matter (excl. containing spirit, mixtures, orange juice and grapefruit juice) 01/01/1988 31/12/2001 -20093011 01/01/1988 31/12/2001 LIBEN Single citrus fruit juice, unfermented, density of > 1,33 g/cm³ at 20°C, value of <= 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit, mixtures, orange juice and grapefruit juice) 01/01/1988 31/12/2001 -20093019 01/01/1988 31/12/2001 LIBEN Single citrus fruit juice, unfermented, density of > 1,33 g/cm³ at 20°C, value of > 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit, mixtures, orange juice and grapefruit juice) 01/01/1988 31/12/2001 -20093031 01/01/1988 31/12/2001 LIBEN Single citrus fruit juice, unfermented, density of <= 1,33 g/cm³ at 20°C, value of > 30 € per 100 kg, containing added sugar (excl. containing spirit, mixtures, orange juice and grapefruit juice) 01/01/1988 31/12/2001 -20093039 01/01/1988 31/12/2001 LIBEN Single citrus fruit juice, unfermented, density of <= 1,33 g/cm³ at 20°C, with a value of > 30 € per 100 kg (excl. containing added sugar, containing spirit, mixtures, orange juice and grapefruit juice) 01/01/1988 31/12/2001 -20093051 01/01/1988 31/12/2001 LIBEN Lemon juice, unfermented, density of <= 1,33 g/cm³ at 20°C, value of <= 30 € per 100 kg, containing > 30% added sugar (excl. containing spirit) 01/01/1988 31/12/2001 -20093055 01/01/1988 31/12/2001 LIBEN Lemon juice, unfermented, density of <= 1,33 g/cm³ at 20°C, value of <= 30 € per 100 kg, containing <= 30% added sugar (excl. containing spirit) 01/01/1988 31/12/2001 -20093059 01/01/1988 31/12/2001 LIBEN Lemon juice, unfermented, density of <= 1,33 g/cm³ at 20°C, value of <= 30 € per 100 kg (excl. containing spirit or added sugar) 01/01/1988 31/12/2001 -20093091 01/01/1988 31/12/2001 LIBEN Single citrus fruit juice, unfermented, density of <= 1,33 g/cm³ at 20°C, value of <= 30 € per 100 kg, containing > 30% added sugar (excl. or containing spirit, mixtures, lemon, orange and grapefruit juice) 01/01/1988 31/12/2001 -20093095 01/01/1988 31/12/2001 LIBEN Single citrus fruit juice, unfermented, density of <= 1,33 g/cm³ at 20°C, value of <= 30 € per 100 kg, containing <= 30% added sugar (excl. containing spirit, mixtures, lemon, orange and grapefruit juice) 01/01/1988 31/12/2001 -20093099 01/01/1988 31/12/2001 LIBEN Single citrus fruit juice, unfermented, density of <= 1,33 g/cm³ at 20°C, value of <= 30 € per 100 kg (excl. containing added sugar, containing spirit, mixtures, lemon, orange and grapefruit juice) 01/01/1988 31/12/2001 -200931 01/01/2002 31/12/2500 LIBEN Single citrus fruit juice, unfermented, Brix value <= 20 at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit, mixtures, orange juice and grapefruit juice) 01/01/2002 31/12/2500 -20093111 01/01/2002 31/12/2500 LIBEN Single citrus fruit juice, unfermented, Brix value <= 20 at 20°C, value of > 30 € per 100 kg, containing added sugar (excl. containing spirit, mixtures, orange juice and grapefruit juice) 01/01/2002 31/12/2500 -20093119 01/01/2002 31/12/2500 LIBEN Single citrus fruit juice, unfermented, Brix value <= 20 at 20°C, with a value of > 30 € per 100 kg (excl. containing added sugar, containing spirit, mixtures, orange juice and grapefruit juice) 01/01/2002 31/12/2500 -20093151 01/01/2002 31/12/2500 LIBEN Lemon juice, unfermented, Brix value <= 20 at 20°C, value of <= 30 € per 100 kg, containing added sugar (excl. containing spirit) 01/01/2002 31/12/2500 -20093159 01/01/2002 31/12/2500 LIBEN Lemon juice, unfermented, Brix value <= 20 at 20°C, value of <= 30 € per 100 kg (excl. containing spirit or added sugar) 01/01/2002 31/12/2500 -20093191 01/01/2002 31/12/2500 LIBEN Single citrus fruit juice, unfermented, Brix value <= 20 at 20°C, value of <= 30 € per 100 kg, containing added sugar (excl. containing spirit, mixtures, lemon, orange and grapefruit juice) 01/01/2002 31/12/2500 -20093199 01/01/2002 31/12/2500 LIBEN Single citrus fruit juice, unfermented, Brix value <= 20 at 20°C, value of <= 30 € per 100 kg (excl. containing added sugar, containing spirit, mixtures, lemon, orange and grapefruit juice) 01/01/2002 31/12/2500 -200939 01/01/2002 31/12/2500 LIBEN Single citrus fruit juice, unfermented, Brix value > 20 at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit, mixtures, orange juice and grapefruit juice) 01/01/2002 31/12/2500 -20093911 01/01/2002 31/12/2500 LIBEN Single citrus fruit juice, unfermented, Brix value > 67 at 20°C, value of <= 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit, mixtures, orange juice and grapefruit juice) 01/01/2002 31/12/2500 -20093919 01/01/2002 31/12/2500 LIBEN Single citrus fruit juice, unfermented, Brix value > 67 at 20°C, value of > 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit, mixtures, orange juice and grapefruit juice) 01/01/2002 31/12/2500 -20093931 01/01/2002 31/12/2500 LIBEN Single citrus fruit juice, unfermented, Brix value > 20 but <= 67 at 20°C, value of > 30 € per 100 kg, containing added sugar (excl. containing spirit, mixtures, orange juice and grapefruit juice) 01/01/2002 31/12/2500 -20093939 01/01/2002 31/12/2500 LIBEN Single citrus fruit juice, unfermented, Brix value > 20 but <= 67 at 20°C, with a value of > 30 € per 100 kg (excl. containing added sugar, containing spirit, mixtures, orange juice and grapefruit juice) 01/01/2002 31/12/2500 -20093951 01/01/2002 31/12/2500 LIBEN Lemon juice, unfermented, Brix value > 20 but <= 67 at 20°C, value of <= 30 € per 100 kg, containing > 30% added sugar (excl. containing spirit) 01/01/2002 31/12/2500 -20093955 01/01/2002 31/12/2500 LIBEN Lemon juice, unfermented, Brix value > 20 but <= 67 at 20°C, value of <= 30 € per 100 kg, containing <= 30% added sugar (excl. containing spirit) 01/01/2002 31/12/2500 -20093959 01/01/2002 31/12/2500 LIBEN Lemon juice, unfermented, Brix value > 20 but <= 67 at 20°C, value of <= 30 € per 100 kg (excl. containing spirit or added sugar) 01/01/2002 31/12/2500 -20093991 01/01/2002 31/12/2500 LIBEN Single citrus fruit juice, unfermented, Brix value > 20 but <= 67 at 20°C, value of <= 30 € per 100 kg, containing > 30% added sugar (excl. or containing spirit, mixtures, lemon, orange and grapefruit juice) 01/01/2002 31/12/2500 -20093995 01/01/2002 31/12/2500 LIBEN Single citrus fruit juice, unfermented, Brix value > 20 but <= 67 at 20°C, value of <= 30 € per 100 kg, containing <= 30% added sugar (excl. containing spirit, mixtures, lemon, orange and grapefruit juice) 01/01/2002 31/12/2500 -20093999 01/01/2002 31/12/2500 LIBEN Single citrus fruit juice, unfermented, Brix value > 20 but <= 67 at 20°C, value of <= 30 € per 100 kg (excl. containing added sugar, containing spirit, mixtures, lemon, orange and grapefruit juice) 01/01/2002 31/12/2500 -200940 01/01/1988 31/12/2001 LIBEN Pineapple juice, unfermented, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2001 -20094011 01/01/1988 31/12/2001 LIBEN Pineapple juice, unfermented, density of > 1,33 g/cm³ at 20°C, value of <= 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2001 -20094019 01/01/1988 31/12/2001 LIBEN Pineapple juice, unfermented, density of > 1,33 g/cm³ at 20°C, value of > 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2001 -20094030 01/01/1988 31/12/2001 LIBEN Pineapple juice, unfermented, density of <= 1,33 g/cm³ at 20°C, value of > 30 € per 100 kg, containing added sugar (excl. containing spirit) 01/01/1988 31/12/2001 -20094091 01/01/1988 31/12/2001 LIBEN Pineapple juice, unfermented, density of <= 1,33 g/cm³ at 20°C, value of <= 30 € per 100 kg, containing > 30% added sugar (excl. containing spirit) 01/01/1988 31/12/2001 -20094093 01/01/1988 31/12/2001 LIBEN Pineapple juice, unfermented, density of <= 1,33 g/cm³ at 20°C, value of <= 30 € per 100 kg, containing <= 30% added sugar (excl. containing spirit) 01/01/1988 31/12/2001 -20094099 01/01/1988 31/12/2001 LIBEN Pineapple juice, unfermented, density of <= 1,33 g/cm³ at 20°C (excl. containing added sugar or containing spirit) 01/01/1988 31/12/2001 -200941 01/01/2002 31/12/2500 LIBEN Pineapple juice, unfermented, Brix value <= 20 at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20094110 01/01/2002 31/12/2011 LIBEN Pineapple juice, unfermented, Brix value <= 20 at 20°C, value of > 30 € per 100 kg, containing added sugar (excl. containing spirit) 01/01/2002 31/12/2011 -20094191 01/01/2002 31/12/2011 LIBEN Pineapple juice, unfermented, Brix value <= 20 at 20°C, value of <= 30 € per 100 kg, containing added sugar (excl. containing spirit) 01/01/2002 31/12/2011 -20094192 01/01/2012 31/12/2500 LIBEN Pineapple juice, unfermented, Brix value <= 20 at 20°C, containing added sugar (excl. containing spirit) 01/01/2012 31/12/2500 -20094199 01/01/2002 31/12/2500 LIBEN Pineapple juice, unfermented, Brix value <= 20 at 20°C (excl. containing added sugar or containing spirit) 01/01/2002 31/12/2500 -200949 01/01/2002 31/12/2500 LIBEN Pineapple juice, unfermented, Brix value > 20 at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20094911 01/01/2002 31/12/2500 LIBEN Pineapple juice, unfermented, Brix value > 67 at 20°C, value of <= 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20094919 01/01/2002 31/12/2500 LIBEN Pineapple juice, unfermented, Brix value > 67 at 20°C, value of > 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20094930 01/01/2002 31/12/2500 LIBEN Pineapple juice, unfermented, Brix value > 20 but <= 67 at 20°C, value of > 30 € per 100 kg, containing added sugar (excl. containing spirit) 01/01/2002 31/12/2500 -20094991 01/01/2002 31/12/2500 LIBEN Pineapple juice, unfermented, Brix value > 20 but <= 67 at 20°C, value of <= 30 € per 100 kg, containing > 30% added sugar (excl. containing spirit) 01/01/2002 31/12/2500 -20094993 01/01/2002 31/12/2500 LIBEN Pineapple juice, unfermented, Brix value > 20 but <= 67 at 20°C, value of <= 30 € per 100 kg, containing <= 30% added sugar (excl. containing spirit) 01/01/2002 31/12/2500 -20094999 01/01/2002 31/12/2500 LIBEN Pineapple juice, unfermented, Brix value > 20 but <= 67 at 20°C (excl. containing added sugar or containing spirit) 01/01/2002 31/12/2500 -200950 01/01/1988 31/12/2500 LIBEN Tomato juice, unfermented, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2500 -20095010 01/01/1988 31/12/2500 LIBEN Tomato juice of a dry extract content < 7% by weight, containing added sugar, unfermented (excl. containing added spirit) 01/01/1988 31/12/2500 -20095090 01/01/1988 31/12/2500 LIBEN Tomato juice of a dry extract content < 7% by weight, unfermented (excl. containing added sugar or spirit) 01/01/1988 31/12/2500 -200960 01/01/1988 31/12/2001 LIBEN Grape juice, incl. grape must, unfermented, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2001 -20096011 01/01/1988 31/12/2001 LIBEN Grape juice, incl. grape must, unfermented, density of > 1,33 g/cm³ at 20°C, value of <= 22 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2001 -20096019 01/01/1988 31/12/2001 LIBEN Grape juice, incl. grape must, unfermented, density of > 1,33 g/cm³ at 20°C, value of > 22 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2001 -20096051 01/01/1988 31/12/2001 LIBEN Concentrated grape juice, incl. grape must, unfermented, density of <= 1,33 g/cm³ at 20°C, value of > 18 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2001 -20096059 01/01/1988 31/12/2001 LIBEN Grape juice, incl. grape must, unfermented, density of <= 1,33 g/cm³ at 20°C, value of > 18 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. concentrated or containing spirit) 01/01/1988 31/12/2001 -20096071 01/01/1988 31/12/2001 LIBEN Concentrated grape juice, incl. grape must, unfermented, density of <= 1,33 g/cm³ at 20°C, value of <= 18 € per 100 kg, containing > 30% added sugar (excl. containing spirit) 01/01/1988 31/12/2001 -20096079 01/01/1988 31/12/2001 LIBEN Grape juice, incl. grape must, unfermented, density of <= 1,33 g/cm³ at 20°C, value of <= 18 € per 100 kg, containing > 30% added sugar (excl. concentrated or containing spirit) 01/01/1988 31/12/2001 -20096090 01/01/1988 31/12/2001 LIBEN Grape juice, incl. grape must, unfermented, density of <= 1,33 g/cm³ at 20°C, value of <= 18 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing > 30% added sugar or containing spirit) 01/01/1988 31/12/2001 -200961 01/01/2002 31/12/2500 LIBEN Grape juice, incl. grape must, unfermented, Brix value <= 30 at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20096110 01/01/2002 31/12/2500 LIBEN Grape juice, incl. grape must, unfermented, Brix value <= 30 at 20°C, value of > 18 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20096190 01/01/2002 31/12/2500 LIBEN Grape juice, incl. grape must, unfermented, Brix value <= 30 at 20°C, value of <= 18 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -200969 01/01/2002 31/12/2500 LIBEN Grape juice, incl. grape must, unfermented, Brix value > 30 at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20096911 01/01/2002 31/12/2500 LIBEN Grape juice, incl. grape must, unfermented, Brix value > 67 at 20°C, value of <= 22 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20096919 01/01/2002 31/12/2500 LIBEN Grape juice, incl. grape must, unfermented, Brix value > 67 at 20°C, value of > 22 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20096951 01/01/2002 31/12/2500 LIBEN Concentrated grape juice, incl. grape must, unfermented, Brix value > 30 but <= 67 at 20°C, value of > 18 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20096959 01/01/2002 31/12/2500 LIBEN Grape juice, incl. grape must, unfermented, Brix value > 30 but <= 67 at 20°C, value of > 18 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. concentrated or containing spirit) 01/01/2002 31/12/2500 -20096971 01/01/2002 31/12/2500 LIBEN Concentrated grape juice, incl. grape must, unfermented, Brix value > 30 but <= 67 at 20°C, value of <= 18 € per 100 kg, containing > 30% added sugar (excl. containing spirit) 01/01/2002 31/12/2500 -20096979 01/01/2002 31/12/2500 LIBEN Grape juice, incl. grape must, unfermented, Brix value > 30 but <= 67 at 20°C, value of <= 18 € per 100 kg, containing > 30% added sugar (excl. concentrated or containing spirit) 01/01/2002 31/12/2500 -20096990 01/01/2002 31/12/2500 LIBEN Grape juice, incl. grape must, unfermented, Brix value > 30 but <= 67 at 20°C, value of <= 18 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing > 30% added sugar or containing spirit) 01/01/2002 31/12/2500 -200970 01/01/1988 31/12/2001 LIBEN Apple juice, unfermented, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2001 -20097011 01/01/1988 31/12/2001 LIBEN Apple juice, unfermented, density of > 1,33 g/cm³ at 20°C, value of <= 22 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2001 -20097019 01/01/1988 31/12/2001 LIBEN Apple juice, unfermented, density of > 1,33 g/cm³ at 20°C, value of > 22 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2001 -20097030 01/01/1988 31/12/2001 LIBEN Apple juice, unfermented, density of <= 1,33 g/cm³ at 20°C, value of > 18 € per 100 kg, containing added sugar (excl. containing spirit) 01/01/1988 31/12/2001 -20097091 01/01/1988 31/12/2001 LIBEN Apple juice, unfermented, density of <= 1,33 g/cm³ at 20°C, value of > 18 € per 100 kg and containing > 30% added sugar (excl. containing spirit) 01/01/1988 31/12/2001 -20097093 01/01/1988 31/12/2001 LIBEN Apple juice, unfermented, density of <= 1,33 g/cm³ at 20°C, value of > 18 € per 100 kg and containing <= 30% added sugar (excl. containing spirit) 01/01/1988 31/12/2001 -20097099 01/01/1988 31/12/2001 LIBEN Apple juice, unfermented, density of <= 1,33 g/cm³ at 20°C, value of > 18 € per 100 kg (excl. containing added sugar or containing spirit) 01/01/1988 31/12/2001 -200971 01/01/2002 31/12/2500 LIBEN Apple juice, unfermented, Brix value <= 20 at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20097110 01/01/2002 31/12/2007 LIBEN Apple juice, unfermented, Brix value <= 20 at 20°C, value of > 18 € per 100 kg, containing added sugar (excl. containing spirit) 01/01/2002 31/12/2007 -20097120 01/01/2008 31/12/2500 LIBEN Apple juice, unfermented, Brix value <= 20 at 20°C, containing added sugar (excl. containing spirit) 01/01/2008 31/12/2500 -20097191 01/01/2002 31/12/2007 LIBEN Apple juice, unfermented, Brix value <= 20 at 20°C, value of <= 18 € per 100 kg and containing added sugar (excl. containing spirit) 01/01/2002 31/12/2007 -20097199 01/01/2002 31/12/2500 LIBEN Apple juice, unfermented, Brix value <= 20 at 20°C (excl. containing added sugar or containing spirit) 01/01/2002 31/12/2500 -200979 01/01/2002 31/12/2500 LIBEN Apple juice, unfermented, Brix value > 20 at 20°C, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20097911 01/01/2002 31/12/2500 LIBEN Apple juice, unfermented, Brix value > 67 at 20°C, value of <= 22 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20097919 01/01/2002 31/12/2500 LIBEN Apple juice, unfermented, Brix value > 67 at 20°C, value of > 22 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2002 31/12/2500 -20097930 01/01/2002 31/12/2500 LIBEN Apple juice, unfermented, Brix value > 20 but <= 67 at 20°C, value of > 18 € per 100 kg, containing added sugar (excl. containing spirit) 01/01/2002 31/12/2500 -20097991 01/01/2002 31/12/2500 LIBEN Apple juice, unfermented, Brix value > 20 but <= 67 at 20°C, value of <= 18 € per 100 kg, d containing > 30% added sugar (excl. containing spirit) 01/01/2002 31/12/2500 -20097993 01/01/2002 31/12/2011 LIBEN Apple juice, unfermented, Brix value > 20 but <= 67 at 20°C, value of <= 18 € per 100 kg, containing <= 30% added sugar (excl. containing spirit) 01/01/2002 31/12/2011 -20097998 01/01/2012 31/12/2500 LIBEN Apple juice, unfermented, Brix value > 20 but <= 67 at 20°C, value of <= 18 € per 100 kg and containing <= 30% added sugar, or containing no added sugar (excl. containing spirit) 01/01/2012 31/12/2500 -20097999 01/01/2002 31/12/2011 LIBEN Apple juice, unfermented, Brix value > 20 but <= 67 at 20°C (excl. containing added sugar or containing spirit) 01/01/2002 31/12/2011 -200980 01/01/1988 31/12/2011 LIBEN Juice of fruit or vegetables, unfermented, whether or not containing added sugar or other sweetening matter (excl. containing spirit, mixtures, and juice of citrus fruit, pineapples, tomatoes, grapes, incl. grape must and apples) 01/01/1988 31/12/2011 -20098011 01/01/1988 31/12/2011 LIBEN Pear juice, unfermented, Brix value > 67 at 20°C, value of <= 22 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2011 -20098019 01/01/1988 31/12/2011 LIBEN Pear juice, unfermented, Brix value > 67 at 20°C, value of > 22 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2011 -20098031 01/01/1988 31/12/1989 LIBEN Juice of fruit or vegetables, whether or not containing added sugar or other sweetening matter, density of > 1.33 g/ccm at 20.c, value of =< 30 ecu per 100 kg (excl. fermented or containing alcohol, mixtures, citrus fruit, pineapple, tomato, grape, incl. grape must, apple and pear juice) 01/01/1988 31/12/1989 -20098032 01/01/1990 31/12/2005 LIBEN Juice of passionfruit or guavas, unfermented, Brix value > 67 at 20°C, value of <= 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (not containing added spirit) 01/01/1990 31/12/2005 -20098033 01/01/1995 31/12/2005 LIBEN Juice of mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, carambola or pitahaya, unfermented, not containing added spirit, whether or not containing added sugar or other sweetening matter, Brix value > 67 at 20°C, value of <= € 30 per 100 kg (excl. mixtures) 01/01/1995 31/12/2005 -20098034 01/01/1990 31/12/1994 LIBEN Juice of a single fruit or vegetable, of density > 1.33, of value =< 30 ecu per 100 kg, (excl. 2009.11-11 to 2009.80-32), unfermented, (not containing added spirit) 01/01/1990 31/12/1994 -20098034 01/01/2006 31/12/2011 LIBEN Juice of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola or pitahaya, unfermented, not containing added spirit, whether or not containing added sugar or other sweetening matter, Brix value > 67 at 20°C, value of <= € 30 per 100 kg (excl. mixtures) 01/01/2006 31/12/2011 -20098035 01/01/1995 31/12/2011 LIBEN Juice of fruit or vegetables, unfermented, not containing added spirit, whether or not containing added sugar or other sweetening matter, Brix value > 67 at 20°C, value of <= € 30 per 100 kg (excl. mixtures and juice of citrus fruit, passion fruit, mangoes, mangosteens, papaws "papayas", jackfruit, guavas, tamarinds, cashew apples, lychees, sapodillo plums, carambola or pitahaya, pineapples, tomatoes, grapes, apples and pears) 01/01/1995 31/12/2011 -20098036 01/01/1995 31/12/2011 LIBEN Juice of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola or pitahaya, unfermented, whether or not containing added sugar or other sweetening matter, Brix value > 67 at 20°C, value of > € 30 per 100 kg (excl. containing spirit and mixtures) 01/01/1995 31/12/2011 -20098038 01/01/1995 31/12/2011 LIBEN Juice of fruit or vegetables, unfermented, whether or not containing added sugar or other sweetening matter, Brix value > 67 at 20°C, value of > € 30 per 100 kg (excl. containing spirit, mixtures and juice of citrus fruits, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, pineapple juice, tomato juice, grape juice, incl. grape must, apple juice and pear juice) 01/01/1995 31/12/2011 -20098039 01/01/1988 31/12/1994 LIBEN Juice of fruit or vegetables, whether or not containing added sugar or other sweetening matter, density of > 1.33 g/ccm at 20.c, value of > 30 ecu per 100 kg (excl. fermented or containing alcohol, mixtures, citrus fruit, pineapple, tomato, grape, incl. grape must, apple and pear juice) 01/01/1988 31/12/1994 -20098050 01/01/1988 31/12/2011 LIBEN Pear juice, unfermented, Brix value <= 67 at 20°C, value of > 18 € per 100 kg, containing added sugar (excl. containing spirit) 01/01/1988 31/12/2011 -20098061 01/01/1988 31/12/2011 LIBEN Pear juice, unfermented, Brix value <= 67 at 20°C, value of <= 18 € per 100 kg, containing > 30% added sugar (excl. containing spirit) 01/01/1988 31/12/2011 -20098063 01/01/1988 31/12/2011 LIBEN Pear juice, unfermented, Brix value <= 67 at 20°C, value of <= 18 € per 100 kg, containing <= 30% added sugar (excl. containing spirit) 01/01/1988 31/12/2011 -20098069 01/01/1988 31/12/2011 LIBEN Pear juice, unfermented, Brix value <= 67 at 20°C (excl. containing added sugar or containing spirit) 01/01/1988 31/12/2011 -20098071 01/01/1995 31/12/2011 LIBEN Cherry juice, unfermented, Brix value <= 67 at 20°C, value of > € 30 per 100 kg net weight, containing added sugar (excl. containing spirit) 01/01/1995 31/12/2011 -20098073 01/01/1995 31/12/2011 LIBEN Juice of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola or pitahaya, unfermented, Brix value <= 67 at 20°C, value of > € 30 per 100 kg net weight, containing added sugar (excl. mixtures or containing spirit) 01/01/1995 31/12/2011 -20098079 01/01/1995 31/12/2011 LIBEN Juice of fruit or vegetables, unfermented, Brix value <= 67 at 20°C, value of > € 30 per 100 kg, containing added sugar (excl. mixtures or containing spirit and juice of citrus fruits, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, pineapple juice, tomato juice, grape juice, incl. grape must, apple juice, pear juice and cherry juice) 01/01/1995 31/12/2011 -20098080 01/01/1988 31/12/1993 LIBEN Juice of fruit or vegetables, containing added sugar, density of =< 1.33 g/ccm at 20.c, value of > 30 ecu per 100 kg (excl. fermented or containing alcohol, mixtures, citrus fruit, pineapple, tomato, grape, incl. grape must, apple and pear juice) 01/01/1988 31/12/1993 -20098081 01/01/1994 31/12/1994 LIBEN Cherry juice, not frozen, not containing alcohol, of a density of =< 1.33 g/cm³ at 20.c and of a value of > 30 ecus per 100 kg net weight, containing added sugar 01/01/1994 31/12/1994 -20098082 01/01/1994 31/12/1994 LIBEN Juice of fruit or vegetables, not frozen, not containing alcohol, of a density of =< 1.33 g/cm³ at 20.c and of a value of > 30 ecus per 100 kg net weight, containing added sugar (excl. mixtures and juices of citrus fruits, pineapple juice, tomatoe juice, grape juice, incl. grape must, apple juice, pear juice and cherry juice) 01/01/1994 31/12/1994 -20098083 01/01/1990 31/12/2005 LIBEN Juice of passionfruit or guavas, unfermented, Brix value <= 67 at 20°C, value of <= 30 € per 100 kg, containing > 30% added sugar (excl. containing spirit) 01/01/1990 31/12/2005 -20098084 01/01/1995 31/12/2005 LIBEN Juice of mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola or pitahaya, unfermented, Brix value <= 67 at 20°C, value of <= € 30 per 100 kg, containing > 30% added sugar (excl. mixtures or containing spirit) 01/01/1995 31/12/2005 -20098085 01/01/1990 31/12/1994 LIBEN Juice of a single fruit or vegetable, of density =< 1.33, of value =< 30 ecu per 100 kg, with added sugar > 30 %, unfermented, (not containing added spirit), (excl. 2009.11-11 to 2009.80-83) 01/01/1990 31/12/1994 -20098085 01/01/2006 31/12/2011 LIBEN Juice of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola or pitahaya, unfermented, Brix value <= 67 at 20°C, value of <= € 30 per 100 kg, containing > 30% added sugar (excl. mixtures or containing spirit) 01/01/2006 31/12/2011 -20098086 01/01/1995 31/12/2011 LIBEN Juice of fruit or vegetables, unfermented, Brix value <= 67 at 20°C, value of <= € 30 per 100 kg, containing > 30% added sugar (excl. mixtures or containing spirit, and juice of citrus fruits, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, pineapple juice, tomato juice, grape juice, incl. grape must, apple juice and pear juice) 01/01/1995 31/12/2011 -20098088 01/01/1995 31/12/2011 LIBEN Juice of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola or pitahaya, unfermented, Brix value <= 67 at 20°C, value of <= € 30 per 100 kg, containing <= 30% added sugar (excl. mixtures or containing spirit) 01/01/1995 31/12/2011 -20098089 01/01/1995 31/12/2011 LIBEN Juice of fruit or vegetables, unfermented, Brix value <= 67 at 20°C, value of <= € 30 per 100 kg, containing <= 30% added sugar (excl. mixtures or containing spirit, and juice of citrus fruits, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, pineapple juice, tomato juice, grape juice, incl. grape must, apple juice and pear juice) 01/01/1995 31/12/2011 -20098091 01/01/1988 31/12/1989 LIBEN Juice of fruit or vegetables, containing > 30 % added sugar, density of =< 1.33 g/ccm at 20.c, value of =< 30 ecu per 100 kg (excl. fermented or containing alcohol, mixtures, citrus fruit, pineapple, tomato, grape, incl. grape must, apple and pear juice) 01/01/1988 31/12/1989 -20098093 01/01/1988 31/12/1994 LIBEN Juice of fruit or vegetables, containing =< 30 % added sugar, density of =< 1.33 g/ccm at 20.c, value of =< 30 ecu per 100 kg (excl. fermented or containing alcohol, mixtures, citrus fruit, pineapple, tomato, grape, incl. grape must, apple and pear juice) 01/01/1988 31/12/1994 -20098095 01/01/1988 31/12/2011 LIBEN Juice of fruit of the species Vaccinium macrocarpum, unfermented, Brix value <= 67 at 20°C (excl. containing added sugar or spirit) 01/01/1988 31/12/2011 -20098096 01/01/1994 31/12/2011 LIBEN Cherry juice, unfermented, Brix value <= 67 at 20°C (excl. containing added sugar or containing spirit) 01/01/1994 31/12/2011 -20098097 01/01/1995 31/12/2011 LIBEN Juice of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola or pitahaya, unfermented, Brix value <= 67 at 20°C (excl. containing added sugar or containing spirit) 01/01/1995 31/12/2011 -20098098 01/01/1994 31/12/1994 LIBEN Juice of fruit or vegetables, not frozen, not containing alcohol, of a density of =< 1.33 g/cm³ at 20.c and of a value of > 30 ecus per 100 kg net weight,(excl. products containing added sugar, and mixtures and juices of citrus fruits, pineapple juice, tomatoe juice, grape juice, incl. grape must, apple juice, pear juice, juice of fruit of the species vaccinium macrocarpum and cherry juice) 01/01/1994 31/12/1994 -20098099 01/01/1988 31/12/1993 LIBEN Juice of fruit or vegetables, density of =< 1.33 g/ccm at 20.c (excl. fermented or containing alcohol or added sugar, mixtures, citrus fruit, pineapple, tomato, grape, incl. grape must, apple and pear juice, and juice of fruit of the species vaccinium macrocarpum) 01/01/1988 31/12/1993 -20098099 01/01/1995 31/12/2011 LIBEN Juice of fruit or vegetables, unfermented, Brix value <= 67 at 20°C (excl. containing added sugar or containing spirit, mixtures, and juice of citrus fruit, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, pineapples, tomatoes, grapes, incl. grape must, apples, pears, cherries and of the fruit of the species Vaccinium macrocarpon) 01/01/1995 31/12/2011 -200981 01/01/2012 31/12/2500 LIBEN Cranberry "Vaccinium macrocarpon, Vaccinium oxycoccos, Vaccinium vitis-idaea" juice, unfermented, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2012 31/12/2500 -20098111 01/01/2012 31/12/2500 LIBEN Cranberry "Vaccinium macrocarpon, Vaccinium oxycoccos, Vaccinium vitis-idaea" juice, unfermented, whether or not containing added sugar or other sweetening matter, Brix value > 67 at 20°C, value of <= € 30 per 100 kg (excl. containing spirit) 01/01/2012 31/12/2500 -20098119 01/01/2012 31/12/2500 LIBEN Cranberry "Vaccinium macrocarpon, Vaccinium oxycoccos, Vaccinium vitis-idaea" juice, unfermented, whether or not containing added sugar or other sweetening matter, Brix value > 67 at 20°C, value of > € 30 per 100 kg (excl. containing spirit) 01/01/2012 31/12/2500 -20098131 01/01/2012 31/12/2500 LIBEN Cranberry "Vaccinium macrocarpon, Vaccinium oxycoccos, Vaccinium vitis-idaea" juice, unfermented, Brix value <= 67 at 20°C, value of > € 30 per 100 kg, containing added sugar (excl. containing spirit) 01/01/2012 31/12/2500 -20098151 01/01/2012 31/12/2500 LIBEN Cranberry "Vaccinium macrocarpon, Vaccinium oxycoccos, Vaccinium vitis-idaea" juice, unfermented, Brix value <= 67 at 20°C, value of <= € 30 per 100 kg, containing > 30% added sugar (excl. containing spirit) 01/01/2012 31/12/2500 -20098159 01/01/2012 31/12/2500 LIBEN Cranberry "Vaccinium macrocarpon, Vaccinium oxycoccos, Vaccinium vitis-idaea" juice, unfermented, Brix value <= 67 at 20°C, value of <= € 30 per 100 kg, containing <= 30% added sugar (excl. containing spirit) 01/01/2012 31/12/2500 -20098195 01/01/2012 31/12/2500 LIBEN Juice of fruit of the species Vaccinium macrocarpon, unfermented, Brix value <= 67 at 20°C (excl. containing added sugar or spirit) 01/01/2012 31/12/2500 -20098199 01/01/2012 31/12/2500 LIBEN Cranberry "Vaccinium oxycoccos, Vaccinium vitis-idaea" juice, unfermented, Brix value <= 67 at 20°C (excl. containing spirit or added sugar) 01/01/2012 31/12/2500 -200989 01/01/2012 31/12/2500 LIBEN Juice of fruit or vegetables, unfermented, whether or not containing added sugar or other sweetening matter (excl. containing spirit, mixtures, and juice of citrus fruit, pineapples, tomatoes, grapes, incl. grape must, apples and cranberries) 01/01/2012 31/12/2500 -20098911 01/01/2012 31/12/2500 LIBEN Pear juice, unfermented, Brix value > 67 at 20°C, value of <= 22 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2012 31/12/2500 -20098919 01/01/2012 31/12/2500 LIBEN Pear juice, unfermented, Brix value > 67 at 20°C, value of > 22 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/2012 31/12/2500 -20098934 01/01/2012 31/12/2500 LIBEN Juice of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola or pitahaya, unfermented, not containing added spirit, whether or not containing added sugar or other sweetening matter, Brix value > 67 at 20°C, value of <= € 30 per 100 kg (excl. mixtures) 01/01/2012 31/12/2500 -20098935 01/01/2012 31/12/2500 LIBEN Juice of fruit or vegetables, unfermented, not containing added spirit, whether or not containing added sugar or other sweetening matter, Brix value > 67 at 20°C, value of <= € 30 per 100 kg (excl. mixtures and juice of citrus fruit, passion fruit, mangoes, mangosteens, papaws "papayas", jackfruit, guavas, tamarinds, cashew apples, lychees, sapodillo plums, carambola or pitahaya, pineapples, tomatoes, grapes, apples, cranberries and pears) 01/01/2012 31/12/2500 -20098936 01/01/2012 31/12/2500 LIBEN Juice of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola or pitahaya, unfermented, whether or not containing added sugar or other sweetening matter, Brix value > 67 at 20°C, value of > € 30 per 100 kg (excl. containing spirit and mixtures) 01/01/2012 31/12/2500 -20098938 01/01/2012 31/12/2500 LIBEN Juice of fruit or vegetables, unfermented, whether or not containing added sugar or other sweetening matter, Brix value > 67 at 20°C, value of > € 30 per 100 kg (excl. containing spirit, mixtures and juice of citrus fruits, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, pineapples, tomatoes, grapes incl. grape must, apples, cranberries and pears) 01/01/2012 31/12/2500 -20098950 01/01/2012 31/12/2500 LIBEN Pear juice, unfermented, Brix value <= 67 at 20°C, value of > 18 € per 100 kg, containing added sugar (excl. containing spirit) 01/01/2012 31/12/2500 -20098961 01/01/2012 31/12/2500 LIBEN Pear juice, unfermented, Brix value <= 67 at 20°C, value of <= 18 € per 100 kg, containing > 30% added sugar (excl. containing spirit) 01/01/2012 31/12/2500 -20098963 01/01/2012 31/12/2500 LIBEN Pear juice, unfermented, Brix value <= 67 at 20°C, value of <= 18 € per 100 kg, containing <= 30% added sugar (excl. containing spirit) 01/01/2012 31/12/2500 -20098969 01/01/2012 31/12/2500 LIBEN Pear juice, unfermented, Brix value <= 67 at 20°C (excl. containing added sugar or containing spirit) 01/01/2012 31/12/2500 -20098971 01/01/2012 31/12/2500 LIBEN Cherry juice, unfermented, Brix value <= 67 at 20°C, value of > € 30 per 100 kg net weight, containing added sugar (excl. containing spirit) 01/01/2012 31/12/2500 -20098973 01/01/2012 31/12/2500 LIBEN Juice of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola or pitahaya, unfermented, Brix value <= 67 at 20°C, value of > € 30 per 100 kg net weight, containing added sugar (excl. mixtures or containing spirit) 01/01/2012 31/12/2500 -20098979 01/01/2012 31/12/2500 LIBEN Juice of fruit or vegetables, unfermented, Brix value <= 67 at 20°C, value of > € 30 per 100 kg, containing added sugar (excl. mixtures or containing spirit and juice of citrus fruits, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, pineapples, tomatoes, grapes incl. grape must, apples, cranberries, pears and cherries) 01/01/2012 31/12/2500 -20098985 01/01/2012 31/12/2500 LIBEN Juice of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola or pitahaya, unfermented, Brix value <= 67 at 20°C, value of <= € 30 per 100 kg, containing > 30% added sugar (excl. mixtures or containing spirit) 01/01/2012 31/12/2500 -20098986 01/01/2012 31/12/2500 LIBEN Juice of fruit or vegetables, unfermented, Brix value <= 67 at 20°C, value of <= € 30 per 100 kg, containing > 30% added sugar (excl. mixtures or containing spirit, and juice of citrus fruits, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, pineapples, tomatoes, grapes incl. grape must, apples, cranberries and pears) 01/01/2012 31/12/2500 -20098988 01/01/2012 31/12/2500 LIBEN Juice of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola or pitahaya, unfermented, Brix value <= 67 at 20°C, value of <= € 30 per 100 kg, containing <= 30% added sugar (excl. mixtures or containing spirit) 01/01/2012 31/12/2500 -20098989 01/01/2012 31/12/2500 LIBEN Juice of fruit or vegetables, unfermented, Brix value <= 67 at 20°C, value of <= € 30 per 100 kg, containing <= 30% added sugar (excl. mixtures or containing spirit, and juice of citrus fruits, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, pineapples, tomatoes, grapes incl. grape must, apples, cranberries and pears) 01/01/2012 31/12/2500 -20098996 01/01/2012 31/12/2500 LIBEN Cherry juice, unfermented, Brix value <= 67 at 20°C (excl. containing added sugar or containing spirit) 01/01/2012 31/12/2500 -20098997 01/01/2012 31/12/2500 LIBEN Juice of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola or pitahaya, unfermented, Brix value <= 67 at 20°C (excl. mixtures, and containing added sugar or containing spirit) 01/01/2012 31/12/2500 -20098999 01/01/2012 31/12/2500 LIBEN Juice of fruit or vegetables, unfermented, Brix value <= 67 at 20°C (excl. containing added sugar or containing spirit, mixtures, and juice of citrus fruit, guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola, pitahaya, pineapples, tomatoes, grapes, incl. grape must, apples, pears, cherries and cranberries) 01/01/2012 31/12/2500 -200990 01/01/1988 31/12/2500 LIBEN Mixtures of fruit juices, incl. grape must, and vegetable juices, unfermented, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2500 -20099011 01/01/1988 31/12/2500 LIBEN Mixtures of apple and pear juice, unfermented, Brix value > 67 at 20°C, value of <= 22 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2500 -20099019 01/01/1988 31/12/2500 LIBEN Mixtures of apple and pear juice, unfermented, Brix value > 67 at 20°C, value of > 22 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit) 01/01/1988 31/12/2500 -20099021 01/01/1988 31/12/2500 LIBEN Mixtures of fruit juices, incl. grape must, and vegetable juices, unfermented, Brix value > 67 at 20°C, value of <= 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit and mixtures of apple and pear juice) 01/01/1988 31/12/2500 -20099029 01/01/1988 31/12/2500 LIBEN Mixtures of fruit juices, incl. grape must, and vegetable juices, unfermented, Brix value > 67 at 20°C, value of > 30 € per 100 kg, whether or not containing added sugar or other sweetening matter (excl. containing spirit and mixtures of apple and pear juice) 01/01/1988 31/12/2500 -20099031 01/01/1988 31/12/2500 LIBEN Mixtures of apple and pear juice, unfermented, Brix value <= 67 at 20°C, value of <= 18 € per 100 kg, containing > 30% added sugar (excl. containing spirit) 01/01/1988 31/12/2500 -20099039 01/01/1988 31/12/2500 LIBEN Mixtures of apple and pear juice, unfermented, Brix value <= 67 at 20°C, whether or not containing added sugar or other sweetening matter (excl. value of <= 18 € per 100 kg, containing > 30% added sugar or containing spirit) 01/01/1988 31/12/2500 -20099041 01/01/1988 31/12/2500 LIBEN Mixtures of citrus and pineapple juice, unfermented, Brix value <= 67 at 20°C, value of > 30 € per 100 kg, containing added sugar (excl. containing spirit) 01/01/1988 31/12/2500 -20099049 01/01/1988 31/12/2500 LIBEN Mixtures of citrus and pineapple juice, unfermented, Brix value <= 67 at 20°C, value of > 30 € per 100 kg (excl. containing added sugar or containing spirit) 01/01/1988 31/12/2500 -20099051 01/01/1988 31/12/2500 LIBEN Mixtures of fruit juices, incl. grape must, and vegetable juices, unfermented, Brix value <= 67 at 20°C, value of > 30 € per 100 kg, containing added sugar (excl. containing spirit and mixtures of apple and pear or citrus and pineapple juices) 01/01/1988 31/12/2500 -20099059 01/01/1988 31/12/2500 LIBEN Mixtures of fruit juices, incl. grape must, and vegetable juices, unfermented, Brix value <= 67 at 20°C, value of > 30 € per 100 kg (excl. containing added sugar or containing spirit and mixtures of apple and pear or citrus and pineapple juices) 01/01/1988 31/12/2500 -20099071 01/01/1988 31/12/2500 LIBEN Mixtures of citrus and pineapple juice, unfermented, Brix value <= 67 at 20°C, value of <= 30 € per 100 kg, containing > 30% added sugar (excl. containing spirit) 01/01/1988 31/12/2500 -20099073 01/01/1988 31/12/2500 LIBEN Mixtures of citrus and pineapple juice, unfermented, Brix value <= 67 at 20°C, value of <= 30 € per 100 kg, containing <= 30% added sugar (excl. containing spirit) 01/01/1988 31/12/2500 -20099079 01/01/1988 31/12/2500 LIBEN Mixtures of citrus and pineapple juice, unfermented, Brix value <= 67 at 20°C, value of <= 30 € per 100 kg (excl. containing added sugar or containing spirit) 01/01/1988 31/12/2500 -20099091 01/01/1988 31/12/1994 LIBEN Mixtures of juices (excl. citrus and pineapple), of density =< 1,33, of value =< 30 ecu per 100 kg, with added sugar > 30 %, unfermented, (not containing added spirit) 01/01/1988 31/12/1994 -20099092 01/01/1995 31/12/2500 LIBEN Mixtures of juices of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola or pitahaya, unfermented, Brix value <= 67 at 20°C, value of <= € 30 per 100 kg, containing > 30% added sugar (excl. containing spirit) 01/01/1995 31/12/2500 -20099093 01/01/1988 31/12/1994 LIBEN Mixtures of juices (excl. citrus and pineapple), of density =< 1,33, of value =< 30 ecu per 100 kg, with added sugar =< 30 %, unfermented, (not containing added spirit) 01/01/1988 31/12/1994 -20099094 01/01/1995 31/12/2500 LIBEN Mixtures of fruit juices, incl. grape must and juices of vegetables, unfermented, Brix value <= 67 at 20°C, value of <= € 30 per 100 kg, containing > 30% added sugar (excl. containing spirit, mixtures of apple and pear juices or of citrus fruit and pineapple juices and of juices of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya) 01/01/1995 31/12/2500 -20099095 01/01/1995 31/12/2500 LIBEN Mixtures of juices of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola or pitahaya, unfermented, Brix value <= 67 at 20°C, value of <= € 30 per 100 kg, containing <= 30% added sugar (excl. containing spirit) 01/01/1995 31/12/2500 -20099096 01/01/1995 31/12/2500 LIBEN Mixtures of fruit juices, incl. grape must and juices of vegetables, unfermented, Brix value <= 67 at 20°C, value of <= € 30 per 100 kg, containing <= 30% added sugar (excl. containing spirit, mixtures of apple and pear juices or of citrus fruit and pineapple juices and of juices of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya) 01/01/1995 31/12/2500 -20099097 01/01/1995 31/12/2500 LIBEN Mixtures of juices of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola or pitahaya, unfermented, Brix value <= 67 at 20°C, value of <= € 30 per 100 kg (excl. containing added sugar or containing spirit) 01/01/1995 31/12/2500 -20099098 01/01/1995 31/12/2500 LIBEN Mixtures of fruit juices, incl. grape must and juices of vegetables, unfermented, Brix value <= 67 at 20°C, value of <= € 30 per 100 kg (excl. containing added sugar or containing spirit and mixtures of apple and pear juices or of citrus fruit and pineapple juices and of juices of guavas, mangoes, mangosteens, papaws "papayas", tamarinds, cashew apples, lychees, jackfruit, sapodillo plums, passion fruit, carambola and pitahaya) 01/01/1995 31/12/2500 -20099099 01/01/1988 31/12/1994 LIBEN Mixtures of juices (excl. citrus and pineapple), of density =< 1,33, of value =< 30 ecu per 100 kg (excl. added sugar), unfermented, (not containing added spirit) 01/01/1988 31/12/1994 -20CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 20 01/01/2002 31/12/2500 -20CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 20 01/01/2002 31/12/2500 -20CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 20 01/01/2002 31/12/2500 -20MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -20MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -20MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -20SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 20 01/01/1988 31/12/2500 -20SSS0 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 20 and SITC section 0 01/01/1992 31/12/2500 -20SSS056 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 20 and SITC group 056 01/01/1997 31/12/2500 -20SSS058 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 20 and SITC group 058 01/01/1997 31/12/2500 -20SSS059 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 20 and SITC group 059 01/01/1997 31/12/2500 -20SSS062 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 20 and SITC group 062 01/01/1992 31/12/2500 -20SSS098 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 20 and SITC group 098 01/01/1997 31/12/2500 -20SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 20 and SITC section 9 01/01/1988 31/12/1996 -20SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 20 and SITC section 9 01/01/1997 31/12/2500 -20SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 20 and SITC group 999 01/01/1988 31/12/1996 -20SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 20 and SITC group 999 01/01/1997 31/12/2500 -21 01/01/1988 31/12/2500 LIBEN MISCELLANEOUS EDIBLE PREPARATIONS 01/01/1988 31/12/2500 -2101 01/01/1988 31/12/2500 LIBEN Extracts, essences and concentrates, of coffee, tea or maté and preparations with a basis of these products or with a basis of coffee, tea or mate; roasted chicory and other roasted coffee substitutes, and extracts, essences and concentrates thereof 01/01/1988 31/12/2500 -210110 01/01/1988 31/12/1995 LIBEN Extracts, essences and concentrates, of coffee, and preparations with a basis of these extracts, essences or concentrates or with a basis of coffee 01/01/1988 31/12/1995 -21011011 01/01/1988 31/12/1995 LIBEN Solid extracts, essences and concentrates of coffee, with a coffee-based dry matter content of >= 95% by weight 01/01/1988 31/12/1995 -21011019 01/01/1988 31/12/1995 LIBEN Extract, essences and concentrates of coffee, with a coffee-based dry matter content of < 95% by weight (excl. solids) 01/01/1988 31/12/1995 -21011091 01/01/1988 31/12/1994 LIBEN Preparations with a basis of extracts, essences and concentrates of coffee or with a basis of coffee, not containing or containing < 1.5 % milkfat, < 2.5 % milk proteins, < 5 % sucrose or isoglucose, glucose or starch 01/01/1988 31/12/1994 -21011092 01/01/1995 31/12/1995 LIBEN Preparations with a basis of extracts, essences and concentrates of coffee 01/01/1995 31/12/1995 -21011098 01/01/1995 31/12/1995 LIBEN Preparations with a basis of coffee 01/01/1995 31/12/1995 -21011099 01/01/1988 31/12/1994 LIBEN Preparations with a basis of extracts, essences and concentrates of coffee or with a basis of coffee containing >= 1.5 % milkfat, >= 2.5 % milk proteins, >= 5 % sucrose or isoglucose, glucose or starch 01/01/1988 31/12/1994 -210111 01/01/1996 31/12/2500 LIBEN Extracts, essences and concentrates, of coffee 01/01/1996 31/12/2500 -21011100 01/01/2008 31/12/2500 LIBEN Extracts, essences and concentrates, of coffee 01/01/2008 31/12/2500 -21011111 01/01/1996 31/12/2007 LIBEN Solid extracts, essences and concentrates, of coffee, with a coffee-based dry matter content of >= 95% by weight 01/01/1996 31/12/2007 -21011119 01/01/1996 31/12/2007 LIBEN Extract, essences and concentrates, of coffee, with a coffee-based dry matter content of < 95% by weight (excl. solids) 01/01/1996 31/12/2007 -210112 01/01/1996 31/12/2500 LIBEN Preparations with a basis of extracts, essences or concentrates of coffee or with a basis of coffee 01/01/1996 31/12/2500 -21011292 01/01/1996 31/12/2500 LIBEN Preparations with a basis of extracts, essences and concentrates of coffee 01/01/1996 31/12/2500 -21011298 01/01/1996 31/12/2500 LIBEN Preparations with a basis of coffee 01/01/1996 31/12/2500 -210120 01/01/1988 31/12/2500 LIBEN Extracts, essences and concentrates, of tea or mate, and preparations with a basis of these extracts, essences or concentrates, or with a basis of tea or maté 01/01/1988 31/12/2500 -21012010 01/01/1988 31/12/1994 LIBEN Extracts, essences and concentrates of tea or maté and preparations with a basis of these products or with a basis of tea or maté, not containing or containing < 1,5 % milkfat, < 2,5 % milk proteins, < 5 % sucrose or isoglucose, glucose or starch 01/01/1988 31/12/1994 -21012020 01/01/1995 31/12/2500 LIBEN Extracts, essences and concentrates, of tea or maté 01/01/1995 31/12/2500 -21012090 01/01/1988 31/12/1994 LIBEN Extracts, essences and concentrates of tea or maté and preparations with a basis of these products or with a basis of tea or maté, containing >= 1,5 % milkfat, >= 2,5 % milk proteins, > 5 % sucrose or isoglucose, glucose or starch 01/01/1988 31/12/1994 -21012092 01/01/1995 31/12/2500 LIBEN Preparations with a basis of extracts, essences and concentrates of tea or maté 01/01/1995 31/12/2500 -21012098 01/01/1995 31/12/2500 LIBEN Preparations with a basis of tea or maté 01/01/1995 31/12/2500 -210130 01/01/1988 31/12/2500 LIBEN Roasted chicory and other roasted coffee substitutes, and extracts, essences and concentrates thereof 01/01/1988 31/12/2500 -21013011 01/01/1988 31/12/2500 LIBEN Roasted chicory 01/01/1988 31/12/2500 -21013019 01/01/1988 31/12/2500 LIBEN Roasted coffee substitutes (excl. chicory) 01/01/1988 31/12/2500 -21013091 01/01/1988 31/12/2500 LIBEN Extracts, essences and concentrates, of roasted chicory 01/01/1988 31/12/2500 -21013099 01/01/1988 31/12/2500 LIBEN Extracts, essences and concentrates, of roasted coffee substitutes (excl. chicory) 01/01/1988 31/12/2500 -2101S0 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 2101 and SITC section 0 01/01/2001 31/12/2500 -2101S071 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 2101 and SITC group 071 01/01/2001 31/12/2500 -2101S074 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 2101 and SITC group 074 01/01/2001 31/12/2500 -2102 01/01/1988 31/12/2500 LIBEN Yeasts, active or inactive; other dead single-cell micro-organisms, prepared baking powders (excl. single-cell micro-organisms packaged as medicaments) 01/01/1988 31/12/2500 -210210 01/01/1988 31/12/2500 LIBEN Active yeasts 01/01/1988 31/12/2500 -21021010 01/01/1988 31/12/2500 LIBEN Culture yeasts 01/01/1988 31/12/2500 -21021031 01/01/1988 31/12/2500 LIBEN Dried bakers' yeast 01/01/1988 31/12/2500 -21021039 01/01/1988 31/12/2500 LIBEN Bakers' yeast (excl. dried) 01/01/1988 31/12/2500 -21021090 01/01/1988 31/12/2500 LIBEN Active yeasts (excl. culture yeasts and bakers' yeasts) 01/01/1988 31/12/2500 -210220 01/01/1988 31/12/2500 LIBEN Inactive yeasts; other dead single-cell micro-organisms (excl. packaged as medicaments) 01/01/1988 31/12/2500 -21022011 01/01/1988 31/12/2500 LIBEN Inactive yeasts, in tablet, cube or similar form, or in immediate packings of <= 1 kg 01/01/1988 31/12/2500 -21022019 01/01/1988 31/12/2500 LIBEN Inactive yeasts (excl. in tablet, cube or similar form, or in immediate packings of <= 1 kg) 01/01/1988 31/12/2500 -21022090 01/01/1988 31/12/2500 LIBEN Single-cell micro-organisms, dead (excl. packaged as medicaments and yeasts) 01/01/1988 31/12/2500 -210230 01/01/1988 31/12/2500 LIBEN Prepared baking powders 01/01/1988 31/12/2500 -21023000 01/01/1988 31/12/2500 LIBEN Prepared baking powders 01/01/1988 31/12/2500 -2103 01/01/1988 31/12/2500 LIBEN Sauce and preparations therefor; mixed condiments and mixed seasonings; mustard flour and meal, whether or not prepared, and mustard 01/01/1988 31/12/2500 -210310 01/01/1988 31/12/2500 LIBEN Soya sauce 01/01/1988 31/12/2500 -21031000 01/01/1988 31/12/2500 LIBEN Soya sauce 01/01/1988 31/12/2500 -210320 01/01/1988 31/12/2500 LIBEN Tomato ketchup and other tomato sauces 01/01/1988 31/12/2500 -21032000 01/01/1988 31/12/2500 LIBEN Tomato ketchup and other tomato sauces 01/01/1988 31/12/2500 -210330 01/01/1988 31/12/2500 LIBEN Mustard flour and meal, whether or not prepared, and mustard 01/01/1988 31/12/2500 -21033010 01/01/1988 31/12/2500 LIBEN Mustard flour and meal (excl. prepared) 01/01/1988 31/12/2500 -21033090 01/01/1988 31/12/2500 LIBEN Mustard, incl. prepared flour and meal 01/01/1988 31/12/2500 -210390 01/01/1988 31/12/2500 LIBEN Preparations for sauces and prepared sauces; mixed condiments and seasonings (excl. soya sauce, tomato ketchup and other tomato sauces, mustard, and mustard flour and meal) 01/01/1988 31/12/2500 -21039010 01/01/1988 31/12/2500 LIBEN Mango chutney, liquid 01/01/1988 31/12/2500 -21039030 01/01/1993 31/12/2500 LIBEN Aromatic bitters of an alcoholic strength of >= 44,2% but <= 49,2% vol containing >= 1,5% but <= 6% by weight of gentian, spices and various ingredients and >= 4% but <= 10% of sugar, in containers holding <= 0,5 l 01/01/1993 31/12/2500 -21039090 01/01/1988 31/12/2500 LIBEN Sauces and preparations therefor, mixed condiments and mixed seasonings (excl. soya sauce, tomato ketchup and other tomato sauces, liquid mango chutney and aromatic bitters of subheading 2103.90.30) 01/01/1988 31/12/2500 -2104 01/01/1988 31/12/2500 LIBEN Soups and broths and preparations therefor; food preparations consisting of finely homogenised mixtures of two or more basic ingredients such as meat, fish, vegetables or fruit, put up for retail sale as infant food or for dietetic purposes, in containers of <= 250 g 01/01/1988 31/12/2500 -210410 01/01/1988 31/12/2500 LIBEN Soups and broths and preparations therefor 01/01/1988 31/12/2500 -21041000 01/01/1988 31/12/1993 LIBEN Soups and broths and preparations therefor 01/01/1988 31/12/1993 -21041000 01/01/2008 31/12/2500 LIBEN Soups and broths and preparations therefor 01/01/2008 31/12/2500 -21041010 01/01/1994 31/12/2007 LIBEN Soups and broths and preparations therefor, dried 01/01/1994 31/12/2007 -21041090 01/01/1994 31/12/2007 LIBEN Soups and broths and preparations therefor (excl. dried) 01/01/1994 31/12/2007 -210420 01/01/1988 31/12/2500 LIBEN Food preparations consisting of finely homogenised mixtures of two or more basic ingredients, such as meat, fish, vegetables or fruit, put up for retail sale as infant food or for dietetic purposes, in containers of <= 250 g 01/01/1988 31/12/2500 -21042000 01/01/1988 31/12/2500 LIBEN Food preparations consisting of finely homogenised mixtures of two or more basic ingredients, such as meat, fish, vegetables or fruit, put up for retail sale as infant food or for dietetic purposes, in containers of <= 250 g 01/01/1988 31/12/2500 -2105 01/01/1988 31/12/2500 LIBEN Ice cream and other edible ice, whether or not containing cocoa 01/01/1988 31/12/2500 -210500 01/01/1988 31/12/2500 LIBEN Ice cream and other edible ice, whether or not containing cocoa 01/01/1988 31/12/2500 -21050010 01/01/1988 31/12/2500 LIBEN Ice cream and other edible ice, whether or not containing cocoa, not containing milkfats or containing < 3% milkfats 01/01/1988 31/12/2500 -21050091 01/01/1988 31/12/2500 LIBEN Ice cream and other edible ice, containing >= 3% but < 7% milkfats 01/01/1988 31/12/2500 -21050099 01/01/1988 31/12/2500 LIBEN Ice cream and other edible ice, containing >= 7% milkfats 01/01/1988 31/12/2500 -2106 01/01/1988 31/12/2500 LIBEN Food preparations, n.e.s. 01/01/1988 31/12/2500 -210610 01/01/1988 31/12/2500 LIBEN Protein concentrates and textured protein substances 01/01/1988 31/12/2500 -21061010 01/01/1988 31/12/1994 LIBEN Protein concentrates and textured protein substances, not containing or containing < 1.5 % milkfats, < 2.5 % milk proteins, < 5 % sucrose or isoglucose, glucose or starch 01/01/1988 31/12/1994 -21061020 01/01/1995 31/12/2500 LIBEN Protein concentrates and textured protein substances, not containing milkfats, sucrose, isoglucose starch or glucose or containing, by weight, < 1,5% milkfat, < 5% sucrose or isoglucose, < 5% glucose or < 5% starch 01/01/1995 31/12/2500 -21061080 01/01/1995 31/12/2500 LIBEN Protein concentrates and textured protein substances, containing, by weight, >= 1,5% milkfat, >= 5% sucrose or isoglucose, >= 5% glucose or >= 5% starch 01/01/1995 31/12/2500 -21061090 01/01/1988 31/12/1994 LIBEN Protein concentrates and textured protein substances containing >= 1.5 % milkfats, >= 2.5 % milk proteins, >= 5 % sucrose or isoglucose, glucose or starch 01/01/1988 31/12/1994 -210690 01/01/1988 31/12/2500 LIBEN Food preparations, n.e.s. 01/01/1988 31/12/2500 -21069010 01/01/1988 31/12/2006 LIBEN Cheese fondues 01/01/1988 31/12/2006 -21069020 01/01/1996 31/12/2500 LIBEN Compound alcoholic preparations of a kind used for the manufacture of beverages and of an actual alcoholic strength of by volume of > 0,5% vol (excl. those based on odoriferous substances) 01/01/1996 31/12/2500 -21069030 01/01/1988 31/12/2500 LIBEN Flavoured or coloured isoglucose syrups 01/01/1988 31/12/2500 -21069051 01/01/1988 31/12/2500 LIBEN Flavoured or coloured lactose syrups 01/01/1988 31/12/2500 -21069055 01/01/1988 31/12/2500 LIBEN Flavoured or coloured glucose and maltodextrine syrups 01/01/1988 31/12/2500 -21069059 01/01/1988 31/12/2500 LIBEN Flavoured or coloured sugar syrups (excl. isoglucose, lactose, glucose and maltodextrine syrups) 01/01/1988 31/12/2500 -21069091 01/01/1988 31/12/1994 LIBEN Food preparations n.e.s. not containing or containing < 1.5 % milkfats, < 2.5 % milk proteins, < 5 % sucrose or isoglucose, glucose or starch 01/01/1988 31/12/1994 -21069092 01/01/1995 31/12/1995 LIBEN Food preparations n.e.s., not containing milkfats, sucrose, isoglucose starch or glucose or containing < 1,5% milkfat, < 5% sucrose or isoglucose, < 5% glucose or < 5% starch 01/01/1995 31/12/1995 -21069092 01/01/1996 31/12/2500 LIBEN Food preparations, n.e.s., not containing milkfats, sucrose, isoglucose starch or glucose or containing, by weight, < 1,5% milkfat, < 5% sucrose or isoglucose, < 5% glucose or < 5% starch 01/01/1996 31/12/2500 -21069098 01/01/1995 31/12/1995 LIBEN Food preparations n.e.s., containing >= 1,5% milkfat, >= 5% sucrose or isoglucose, >= 5% glucose or >= 5% starch 01/01/1995 31/12/1995 -21069098 01/01/1996 31/12/2006 LIBEN Food preparations, n.e.s., containing, by weight, >= 1,5% milkfat, >= 5% sucrose or isoglucose, >= 5% glucose or >= 5% starch 01/01/1996 31/12/2006 -21069098 01/01/2007 31/12/2500 LIBEN Food preparations, n.e.s., containing, by weight, >= 1,5% milkfat, >= 5% sucrose or isoglucose, >= 5% glucose or >= 5% starch 01/01/2007 31/12/2500 -21069099 01/01/1988 31/12/1994 LIBEN Food preparations n.e.s. containing >= 1.5 % milkfats, >= 2.5 % milk proteins, >= 5 % sucrose or isoglucose, glucose or starch 01/01/1988 31/12/1994 -2106S0 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2106 and SITC section 0 01/01/1997 31/12/2500 -2106S098 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2106 and SITC group 098 01/01/1997 31/12/2500 -21CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 21 01/01/2002 31/12/2500 -21CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 21 01/01/2002 31/12/2500 -21CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 21 01/01/2002 31/12/2500 -21MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -21MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -21MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -21SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 21 01/01/1988 31/12/2500 -21SSS0 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 21 and SITC section 0 01/01/1988 31/12/2500 -21SSS022 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 21 and SITC group 022 01/01/1997 31/12/2500 -21SSS071 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 21 and SITC group 071 01/01/1988 31/12/2500 -21SSS074 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 21 and SITC group 074 01/01/1992 31/12/2500 -21SSS098 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 21 and SITC group 098 01/01/1988 31/12/2500 -21SSS1 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 21 and SITC section 1 01/01/1997 31/12/2500 -21SSS112 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 21 and SITC group 112 01/01/1997 31/12/2500 -21SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 21 and SITC section 9 01/01/1988 31/12/1996 -21SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 21 and SITC section 9 01/01/1997 31/12/2500 -21SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 21 and SITC group 999 01/01/1988 31/12/1996 -21SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 21 and SITC group 999 01/01/1997 31/12/2500 -22 01/01/1988 31/12/2500 LIBEN BEVERAGES, SPIRITS AND VINEGAR 01/01/1988 31/12/2500 -2201 01/01/1988 31/12/2500 LIBEN Waters, incl. natural or artificial mineral waters and aerated waters, not containing added sugar, other sweetening matter or flavoured; ice and snow 01/01/1988 31/12/2500 -220110 01/01/1988 31/12/2500 LIBEN Mineral waters and aerated waters, not containing added sugar, other sweetening matter or flavoured 01/01/1988 31/12/2500 -22011000 01/01/1988 31/12/1991 LIBEN Mineral waters and aerated waters, not containing added sugar, other sweetening matter or flavoured 01/01/1988 31/12/1991 -22011011 01/01/1992 31/12/2500 LIBEN Mineral waters, natural, not containing added sugar or other sweetening matter nor flavoured, not carbonated 01/01/1992 31/12/2500 -22011019 01/01/1992 31/12/2500 LIBEN Mineral waters, natural, not containing added sugar or other sweetening matter nor flavoured, carbonated 01/01/1992 31/12/2500 -22011090 01/01/2001 31/12/2500 LIBEN Mineral waters, artificial, not containing added sugar or other sweetening matter nor flavoured, incl. aerated waters 01/01/2001 31/12/2500 -22011091 01/01/1992 31/12/2000 LIBEN Mineral waters, artificial, not containing added sugar or other sweetening matter nor flavoured, not carbonated 01/01/1992 31/12/2000 -22011099 01/01/1992 31/12/2000 LIBEN Mineral waters, natural, not containing added sugar or other sweetening matter nor flavoured, carbonated, incl. aerated waters 01/01/1992 31/12/2000 -220190 01/01/1988 31/12/2500 LIBEN Ordinary natural water, not containing added sugar, other sweetening matter or flavoured; ice and snow (excl. mineral waters and aerated waters, sea water, distilled water, conductivity water or water of similar purity) 01/01/1988 31/12/2500 -22019000 01/01/1988 31/12/2500 LIBEN Ordinary natural water, not containing added sugar, other sweetening matter or flavoured; ice and snow (excl. mineral waters and aerated waters, sea water, distilled water, conductivity water or water of similar purity) 01/01/1988 31/12/2500 -2202 01/01/1988 31/12/2500 LIBEN Waters, incl. mineral waters and aerated waters, containing added sugar or other sweetening matter or flavoured, and other non-alcoholic beverages (excl. fruit or vegetable juices and milk) 01/01/1988 31/12/2500 -220210 01/01/1988 31/12/2500 LIBEN Waters, incl. mineral and aerated, with added sugar, sweetener or flavour, for direct consumption as a beverage 01/01/1988 31/12/2500 -22021000 01/01/1988 31/12/2500 LIBEN Waters, incl. mineral and aerated, with added sugar, sweetener or flavour, for direct consumption as a beverage 01/01/1988 31/12/2500 -220290 01/01/1988 31/12/2016 LIBEN Non-alcoholic beverages (excl. water, fruit or vegetable juices and milk) 01/01/1988 31/12/2016 -22029010 01/01/1988 31/12/2015 LIBEN Non-alcoholic beverages, not containing milk, milk products and fats derived therefrom (excl. water, fruit or vegetable juices) 01/01/1988 31/12/2015 -22029011 01/01/2016 31/12/2016 LIBEN Soya-based beverages with a protein content of >=2,8 % by weight, not containing alcohol, milk, milk products or fats derived therefrom 01/01/2016 31/12/2016 -22029015 01/01/2016 31/12/2016 LIBEN Soya-based beverages with a protein content of <2,8% by weight and beverages based on nuts of Chapter 8, cereals of Chapter 10 or seeds of Chapter 12, not containing alcohol, milk, milk products or fats derived therefrom 01/01/2016 31/12/2016 -22029019 01/01/2016 31/12/2016 LIBEN Non-alcoholic beverages, not containing milk, milk products and fats derived therefrom (excl. water, fruit or vegetable juices and beverages based on soya or on nuts of Ch 8, cereals of Ch 10 or seeds of Ch 12) 01/01/2016 31/12/2016 -22029091 01/01/1988 31/12/2016 LIBEN Non-alcoholic beverages containing < 0,2% fats derived from milk or milk products 01/01/1988 31/12/2016 -22029095 01/01/1988 31/12/2016 LIBEN Non-alcoholic beverages containing >= 0,2% but < 2% fats derived from milk or milk products 01/01/1988 31/12/2016 -22029099 01/01/1988 31/12/2016 LIBEN Non-alcoholic beverages containing >= 2% fats derived from milk or milk products 01/01/1988 31/12/2016 -220291 01/01/2017 31/12/2500 LIBEN Non-alcoholic beer <= 0.5% vol alc 01/01/2017 31/12/2500 -22029100 01/01/2017 31/12/2500 LIBEN Non-alcoholic beer <= 0.5% vol alc 01/01/2017 31/12/2500 -220299 01/01/2017 31/12/2500 LIBEN Non-alcoholic beverages (excl. water, fruit or vegetable juices, milk and beer) 01/01/2017 31/12/2500 -22029911 01/01/2017 31/12/2500 LIBEN Soya-based beverages with a protein content of >=2,8 % by weight, not containing alcohol, milk, milk products or fats derived therefrom 01/01/2017 31/12/2500 -22029915 01/01/2017 31/12/2500 LIBEN Soya-based beverages with a protein content of <2,8% by weight and beverages based on nuts of Chapter 8, cereals of Chapter 10 or seeds of Chapter 12, not containing alcohol, milk, milk products or fats derived therefrom 01/01/2017 31/12/2500 -22029919 01/01/2017 31/12/2500 LIBEN Non-alcoholic beverages, not containing milk, milk products and fats derived therefrom (excl. water, fruit or vegetable juices, beer and beverages based on soya or on nuts of Ch 8, cereals of Ch 10 or seeds of Ch 12) 01/01/2017 31/12/2500 -22029991 01/01/2017 31/12/2500 LIBEN Non-alcoholic beverages containing < 0,2% fats derived from milk or milk products 01/01/2017 31/12/2500 -22029995 01/01/2017 31/12/2500 LIBEN Non-alcoholic beverages containing >= 0,2% but < 2% fats derived from milk or milk products 01/01/2017 31/12/2500 -22029999 01/01/2017 31/12/2500 LIBEN Non-alcoholic beverages containing >= 2% fats derived from milk or milk products 01/01/2017 31/12/2500 -2202S1 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2202 and SITC section 1 01/01/1997 31/12/2500 -2202S111 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2202 and SITC group 111 01/01/1997 31/12/2500 -2203 01/01/1988 31/12/2500 LIBEN Beer made from malt 01/01/1988 31/12/2500 -220300 01/01/1988 31/12/2500 LIBEN Beer made from malt 01/01/1988 31/12/2500 -22030001 01/01/1994 31/12/2500 LIBEN Beer made from malt, in bottles holding <= 10 l 01/01/1994 31/12/2500 -22030009 01/01/1994 31/12/2500 LIBEN Beer made from malt, in containers holding <= 10 l (excl. in bottles) 01/01/1994 31/12/2500 -22030010 01/01/1988 31/12/2500 LIBEN Malt beer, in containers holding > 10 l 01/01/1988 31/12/2500 -22030090 01/01/1988 31/12/1993 LIBEN Malt beer, in containers holding =< 10 l 01/01/1988 31/12/1993 -2204 01/01/1988 31/12/2500 LIBEN Wine of fresh grapes, incl. fortified wines; grape must, partly fermented and of an actual alcoholic strength of > 0,5% vol or grape must with added alcohol of an actual alcoholic strength of > 0,5% vol 01/01/1988 31/12/2500 -220410 01/01/1988 31/12/2500 LIBEN Sparkling wine of fresh grapes 01/01/1988 31/12/2500 -22041011 01/01/1988 31/12/2500 LIBEN Champagne, with PDO 01/01/1988 31/12/2500 -22041013 01/01/2017 31/12/2500 LIBEN Cava, with PDO 01/01/2017 31/12/2500 -22041015 01/01/2017 31/12/2500 LIBEN Prosecco, with PDO 01/01/2017 31/12/2500 -22041019 01/01/1988 31/12/2009 LIBEN Sparkling wine of fresh grapes of actual alcoholic strength of >= 8,5% vol (excl. champagne) 01/01/1988 31/12/2009 -22041090 01/01/1988 31/12/1993 LIBEN Sparkling wine of fresh grapes of actual alcoholic strength of < 8.5 % vol 01/01/1988 31/12/1993 -22041091 01/01/1994 31/12/2500 LIBEN Asti spumante, with PDO 01/01/1994 31/12/2500 -22041093 01/01/2010 31/12/2016 LIBEN Sparkling wine of fresh grapes with a protected designation of origin (PDO) (excl. Asti spumante and Champagne) 01/01/2010 31/12/2016 -22041093 01/01/2017 31/12/2500 LIBEN Sparkling wine of fresh grapes with a protected designation of origin "PDO" (excl. Asti spumante, Champagne, Cava and Prosecco) 01/01/2017 31/12/2500 -22041094 01/01/2010 31/12/2500 LIBEN Sparkling wine of fresh grapes with a protected geographical indication (PGI) 01/01/2010 31/12/2500 -22041096 01/01/2010 31/12/2500 LIBEN Varietal sparkling wines of fresh grapes without PDO and PGI 01/01/2010 31/12/2500 -22041098 01/01/2010 31/12/2500 LIBEN Sparkling wine of fresh grapes (excl. varietal wines) 01/01/2010 31/12/2500 -22041099 01/01/1994 31/12/2009 LIBEN Sparkling wine of fresh grapes and of actual alcoholic strength of < 8,5% vol (excl. Asti spumante) 01/01/1994 31/12/2009 -220421 01/01/1988 31/12/2500 LIBEN Wine of fresh grapes, incl. fortified wines, and grape must whose fermentation has been arrested by the addition of alcohol, in containers of <= 2 l (excl. sparkling wine) 01/01/1988 31/12/2500 -22042106 01/01/2010 31/12/2500 LIBEN Wine of fresh grapes, incl. fortified wines, in bottles with "mushrooms" stoppers held in place by ties or fastenings, holding <= 2 l; wine otherwise put up with an excess pressure due to carbon dioxide in solution of >= 1 bar but < 3 bar measured at 20°C, in containers holding <= 2 l (excl. sparkling wine), with a protected designation of origin (PDO) 01/01/2010 31/12/2500 -22042107 01/01/2010 31/12/2500 LIBEN Wine of fresh grapes, incl. fortified wines, in bottles with "mushrooms" stoppers held in place by ties or fastenings, holding <= 2 l; wine otherwise put up with an excess pressure due to carbon dioxide in solution of >= 1 bar but < 3 bar measured at 20°C, in containers holding <= 2 l (excl. sparkling wine), with a protected geographical indication (PGI) 01/01/2010 31/12/2500 -22042108 01/01/2010 31/12/2500 LIBEN Wine of fresh grapes, incl. fortified wines, in bottles with "mushrooms" stoppers held in place by ties or fastenings, holding <= 2 l; wine otherwise put up with an excess pressure due to carbon dioxide in solution of >= 1 bar but < 3 bar measured at 20°C, in containers holding <= 2 l (excl. sparkling wine), varietal wines without PDO or PGI 01/01/2010 31/12/2500 -22042109 01/01/2010 31/12/2500 LIBEN Other wine of fresh grapes, incl. fortified wines, in bottles with "mushrooms" stoppers held in place by ties or fastenings, holding <= 2 l; wine otherwise put up with an excess pressure due to carbon dioxide in solution of >= 1 bar but < 3 bar measured at 20°C, in containers holding <= 2 l (excl. sparkling wine and varietal wines) 01/01/2010 31/12/2500 -22042110 01/01/1988 31/12/2009 LIBEN Wine of fresh grapes, incl. fortified wines, in bottles with "mushrooms" stoppers held in place by ties or fastenings, holding <= 2 l; wine otherwise put up with an excess pressure due to carbon dioxide in solution of >= 1 bar but < 3 bar measured at 20°C, in containers holding <= 2 l (excl. sparkling wine) 01/01/1988 31/12/2009 -22042111 01/01/1995 31/12/2009 LIBEN Quality white wines produced in Alsace, in containers holding <= 2 l and of an actual alcoholic strength of by volume of <= 13% vol (excl. sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042111 01/01/2010 31/12/2500 LIBEN White wines produced in Alsace, in containers holding <= 2 l and of an actual alcoholic strength by volume of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042112 01/01/1995 31/12/2009 LIBEN Quality white wines produced in Bordeaux, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (excl. sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042112 01/01/2010 31/12/2500 LIBEN White wines produced in Bordeaux, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042113 01/01/1995 31/12/2009 LIBEN Quality white wines produced in Burgundy, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (excl. sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042113 01/01/2010 31/12/2500 LIBEN White wines produced in Burgundy, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042117 01/01/1995 31/12/2009 LIBEN Quality white wines produced in Val de Loire, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (excl. sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042117 01/01/2010 31/12/2500 LIBEN White wines produced in Val de Loire, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042118 01/01/1995 31/12/2009 LIBEN Quality white wines produced in Mosel-Saar-Ruwer, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (excl. sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042118 01/01/2010 31/12/2500 LIBEN White wines produced in Mosel, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042119 01/01/1995 31/12/2009 LIBEN Quality white wines produced in Pfalz, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (excl. sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042119 01/01/2010 31/12/2500 LIBEN White wines produced in Pfalz, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042121 01/01/1988 31/12/1994 LIBEN Quality white wine produced in specified regions, in containers holding =< 2 l, of actual alcoholic strength of =< 13 % vol 01/01/1988 31/12/1994 -22042122 01/01/1995 31/12/2009 LIBEN Quality white wines produced in Rheinhessen, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (excl. sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042122 01/01/2010 31/12/2500 LIBEN White wines produced in Rheinhessen, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042123 01/01/1988 31/12/1994 LIBEN Quality wine produced in specified regions, in containers holding =< 2 l, of actual alcoholic strength of =< 13 % vol (excl. white) 01/01/1988 31/12/1994 -22042123 01/01/2005 31/12/2009 LIBEN Quality white wines produced in Tokaj "e.g. Aszu, Szamorodni, Máslás, Fordítás", in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (excl. sparkling wine and semi-sparkling wine) 01/01/2005 31/12/2009 -22042123 01/01/2010 31/12/2500 LIBEN White wines produced in Tokaj "e.g. Aszu, Szamorodni, Máslás, Fordítás", in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042124 01/01/1995 31/12/2009 LIBEN Quality white wines produced in Lazio [Latium], in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (excl. sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042124 01/01/2010 31/12/2500 LIBEN White wines produced in Lazio [Latium], in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042125 01/01/1988 31/12/1994 LIBEN White wine of fresh grapes, in containers holding =< 2 l, of actual alcoholic strength of =< 13 % vol (excl. quality wine produced in specified regions) 01/01/1988 31/12/1994 -22042126 01/01/1995 31/12/2009 LIBEN Quality white wines produced in Toscana [Tuscany], in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (excl. sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042126 01/01/2010 31/12/2500 LIBEN White wines produced in Toscana [Tuscany], in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042127 01/01/1995 31/12/2009 LIBEN Quality white wines produced in Trentino, Alto Adige and Friuli, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (excl. sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042127 01/01/2010 31/12/2500 LIBEN White wines produced in Trentino, Alto Adige and Friuli, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042128 01/01/1995 31/12/2009 LIBEN Quality white wines produced in Veneto, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (excl. sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042128 01/01/2010 31/12/2500 LIBEN White wines produced in Veneto, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042129 01/01/1988 31/12/1994 LIBEN Wine of fresh grapes, incl. fortified wines, and grape must whose fermentation has been arrested by the addition of alcohol, in containers of =< 2 l, of actual alcoholic strength of =< 13 % vol (excl. sparkling wine, quality wine produced in specified regions and white wine in general) 01/01/1988 31/12/1994 -22042131 01/01/1988 31/12/1994 LIBEN Quality white wine from specified regions, in containers holding =< 2 l, of actual alcoholic strength of > 13 % but =< 15 % vol 01/01/1988 31/12/1994 -22042131 01/01/2017 31/12/2500 LIBEN White wines produced in Sicilia, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042132 01/01/1995 31/12/2009 LIBEN Quality white wines of the "vinho verde" category, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (excl. sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042132 01/01/2010 31/12/2500 LIBEN White wines of the "vinho verde" category, produced in EU, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042133 01/01/1988 31/12/1994 LIBEN Quality wine from specified regions, in containers holding =< 2 l, of actual alcoholic strength of > 13 % but =< 15 % vol (excl. white) 01/01/1988 31/12/1994 -22042134 01/01/1995 31/12/2009 LIBEN Quality white wines produced in Penedés, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (excl. sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042134 01/01/2010 31/12/2500 LIBEN White wines produced in Penedés, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042135 01/01/1988 31/12/1994 LIBEN White wine from fresh grapes, in containers holding =< 2 l, of actual alcoholic strength of > 13 % but =< 15 % vol (excl. quality wine from specified regions) 01/01/1988 31/12/1994 -22042136 01/01/1995 31/12/2009 LIBEN Quality white wines produced in Rioja, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (excl. sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042136 01/01/2010 31/12/2500 LIBEN White wines produced in Rioja, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042137 01/01/1995 31/12/2009 LIBEN Quality white wines produced in Valencia, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (excl. sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042137 01/01/2010 31/12/2500 LIBEN White wines produced in Valencia, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042138 01/01/1995 31/12/2009 LIBEN Quality white wines produced in specified regions, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than Alsace, Bordeaux, Burgundy, Val de Loire, Mosel-Saar-Ruwer, Pfalz, Rheinhessen, Tokaj, Lazio, Toscana, Trentino, Alto Adige, Friuli, Veneto, vinho verde, Penedés, Rioja, Valencia, sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042138 01/01/2010 31/12/2016 LIBEN White wines produced in EU, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than Alsace, Bordeaux, Bourgogne, Val de Loire, Mosel, Pfalz, Rheinhessen, Tokaj, Lazio, Toscana, Trentino, Alto Adige, Friuli, Veneto, vinho verde, Penedés, Rioja, Valencia, sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2016 -22042138 01/01/2017 31/12/2500 LIBEN White wines produced in EU, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than Alsace, Bordeaux, Bourgogne, Val de Loire, Mosel, Pfalz, Rheinhessen, Tokaj, Lazio, Toscana, Trentino, Alto Adige, Friuli, Veneto, Sicilia, vinho verde, Penedés, Rioja, Valencia, sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042139 01/01/1988 31/12/1994 LIBEN Wine of fresh grapes, incl. fortified wines, and grape must whose fermentation has been arrested by the addition of alcohol, in containers of =< 2 l, of actual alcoholic strength of > 13 % but =< 15 % vol (excl. sparkling wine, quality wine produced in specified regions and white wine in general) 01/01/1988 31/12/1994 -22042141 01/01/1988 31/12/1994 LIBEN Port, madeira, sherry, tokay and setubal muscatel, of actual alcoholic strength of > 15 % but =< 18 % vol, in containers holding =< 2 l 01/01/1988 31/12/1994 -22042142 01/01/1995 31/12/2009 LIBEN Quality wines produced in Bordeaux, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042142 01/01/2010 31/12/2500 LIBEN Wines produced in Bordeaux, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042143 01/01/1995 31/12/2009 LIBEN Quality wines produced in Burgundy, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042143 01/01/2010 31/12/2500 LIBEN Wines produced in Bourgogne (Burgundy), in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042144 01/01/1995 31/12/2009 LIBEN Quality wines produced in Beaujolais, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042144 01/01/2010 31/12/2500 LIBEN Wines produced in Beaujolais, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042146 01/01/1995 31/12/2009 LIBEN Quality wines produced in Côtes-du-Rhône, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042146 01/01/2010 31/12/2014 LIBEN Wines produced in Côtes-du-Rhône, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2014 -22042146 01/01/2015 31/12/2500 LIBEN Wines produced in Vallée du Rhône, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2015 31/12/2500 -22042147 01/01/1995 31/12/2009 LIBEN Quality wines produced in Languedoc-Roussillon, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042147 01/01/2010 31/12/2500 LIBEN Wines produced in Languedoc-Roussillon, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042148 01/01/1995 31/12/2009 LIBEN Quality wines produced in Val de Loire, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042148 01/01/2010 31/12/2500 LIBEN Wines produced in Val de Loire, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042149 01/01/1988 31/12/1994 LIBEN Wine of fresh grapes, incl. fortified wines, in containers holding =< 2 l, of actual alcoholic strength of > 15 % but =< 18 % vol (excl. sparkling wine, quality wine produced in specified regions, white wine in general, port, madeira, sherry, tokay and setubal muscatel) 01/01/1988 31/12/1994 -22042151 01/01/1988 31/12/1994 LIBEN Port, madeira, sherry, tokay and setubal muscatel, of actual alcoholic strength of > 18 % but =< 22 % vol, in containers holding =< 2 l 01/01/1988 31/12/1994 -22042159 01/01/1988 31/12/1994 LIBEN Wine of fresh grapes, incl. fortified wines, in containers holding =< 2 l, of actual alcoholic strength of > 18 % but =< 22 % vol (excl. sparkling wine, quality wine produced in specified regions, white wine in general, port, madeira, sherry, tokay and setubal muscatel) 01/01/1988 31/12/1994 -22042161 01/01/2017 31/12/2500 LIBEN Wines produced in Sicilia, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2017 31/12/2500 -22042162 01/01/1995 31/12/2009 LIBEN Quality wines produced in Piemonte [Piedmont], in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042162 01/01/2010 31/12/2500 LIBEN Wines produced in Piemonte [Piedmont], in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042166 01/01/1995 31/12/2009 LIBEN Quality wines produced in Toscana [Tuscany], in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042166 01/01/2010 31/12/2500 LIBEN Wines produced in Toscana [Tuscany], in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042167 01/01/1995 31/12/2009 LIBEN Quality wines produced in Trentino and Alto Adige, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042167 01/01/2010 31/12/2500 LIBEN Wines produced in Trentino and Alto Adige, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042168 01/01/1995 31/12/2009 LIBEN Quality wines produced in Veneto, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042168 01/01/2010 31/12/2500 LIBEN Wines produced in Veneto, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042169 01/01/1995 31/12/2009 LIBEN Quality wines produced in Dao, Bairrada and Douro, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042169 01/01/2010 31/12/2500 LIBEN Wines produced in Dão, Bairrada and Douro, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042171 01/01/1995 31/12/2009 LIBEN Quality wines produced in Navarra, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042171 01/01/2010 31/12/2500 LIBEN Wines produced in Navarra, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042174 01/01/1995 31/12/2009 LIBEN Quality wines produced in Penedés, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042174 01/01/2010 31/12/2500 LIBEN Wines produced in Penedés, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042176 01/01/1995 31/12/2009 LIBEN Quality wines produced in Rioja, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042176 01/01/2010 31/12/2500 LIBEN Wines produced in Rioja, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042177 01/01/1995 31/12/2009 LIBEN Quality wines produced in Valdepeñas, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042177 01/01/2010 31/12/2500 LIBEN Wines produced in Valdepeñas, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042178 01/01/1995 31/12/2009 LIBEN Quality wines produced in specified regions, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than Bordeaux, Burgundy, Beaujolais, Côtes-du-Rhône, Languedoc-Roussillon, Val de Loire, Piemonte, Toscana, Trentino, Alto Adige, Veneto, Dao, Bairrada, Douro, Navarra, Penedés, Rioja, Valdepeñas, sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042178 01/01/2010 31/12/2014 LIBEN Wines produced in the Community, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than Bordeaux, Bourgogne, Beaujolais, Côtes-du-Rhône, Languedoc-Roussillon, Val de Loire, Piemonte, Toscana, Trentino, Alto Adige, Veneto, Dão, Bairrada, Douro, Navarra, Penedés, Rioja, Valdepeñas, sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2014 -22042178 01/01/2015 31/12/2016 LIBEN Wines produced in EU, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than Bordeaux, Bourgogne, Beaujolais, Vallée du Rhône, Languedoc-Roussillon, Val de Loire, Piemonte, Toscana, Trentino, Alto Adige, Veneto, Dão, Bairrada, Douro, Navarra, Penedés, Rioja, Valdepeñas, sparkling wine, semi-sparkling wine and white wine) 01/01/2015 31/12/2016 -22042178 01/01/2017 31/12/2500 LIBEN Wines produced in EU, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than Bordeaux, Bourgogne, Beaujolais, Vallée du Rhône, Languedoc-Roussillon, Val de Loire, Sicilia, Piemonte, Toscana, Trentino, Alto Adige, Veneto, Dão, Bairrada, Douro, Navarra, Penedés, Rioja, Valdepeñas, sparkling wine, semi-sparkling wine and white wine) 01/01/2017 31/12/2500 -22042179 01/01/1995 31/12/2004 LIBEN White wine of fresh grapes, in containers holding <= 2 l and of an actual alcoholic strength by volume of <= 13% vol (other than sparkling wine, semi-sparkling wine and quality wines produced in specified regions) 01/01/1995 31/12/2004 -22042179 01/01/2005 31/12/2009 LIBEN White wine of fresh grapes, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and quality wines produced in specified regions) 01/01/2005 31/12/2009 -22042179 01/01/2010 31/12/2500 LIBEN White wine produced in EU, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PGI (other than sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042180 01/01/1995 31/12/2009 LIBEN Wine of fresh grapes, incl. wine and grape must with fermentation arrested or interrupted by the addition of alcohol, in containers holding <= 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine, quality wines produced in specified regions and general white wine) 01/01/1995 31/12/2009 -22042180 01/01/2010 31/12/2500 LIBEN Wine produced in EU, in containers holding <= 2 l and of an actual alcoholic strength of <= 15% vol, with PGI (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042181 01/01/1995 31/12/2004 LIBEN Quality white wines produced in specified regions, in containers holding <= 2 l and of an actual alcoholic strength by volume of > 13% vol to 15% vol 01/01/1995 31/12/2004 -22042181 01/01/2005 31/12/2009 LIBEN Quality white wines produced in Tokaj "e.g. Aszu, Szamorodni, Máslás, Fordítás", in containers holding <= 2 l and of an actual alcoholic strength of > 13% vol to 15% vol 01/01/2005 31/12/2009 -22042181 01/01/2010 31/12/2500 LIBEN Varietal white wines without PDO and PGI, produced in EU, in containers holding <= 2 l and of an actual alcoholic strength of <=15% vol (other than sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042182 01/01/1995 31/12/2004 LIBEN Quality wines produced in specified regions, in containers holding <= 2 l and of an actual alcoholic strength by volume of > 13% vol to 15% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2004 -22042182 01/01/2005 31/12/2009 LIBEN Quality white wines produced in specified regions, in containers holding <= 2 l and of an actual alcoholic strength of > 13% vol to 15% vol (other than Tokaj, sparkling wine and semi-sparkling wine) 01/01/2005 31/12/2009 -22042182 01/01/2010 31/12/2500 LIBEN Varietal wines without PDO and PGI, produced in EU, in containers holding <= 2 l and of an actual alcoholic strength of <=15% vol (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042183 01/01/1995 31/12/2004 LIBEN White wine of fresh grapes, in containers holding <= 2 l and of an actual alcoholic strength by volume of > 13% vol to 15% vol (other than sparkling wine, semi-sparkling wine and quality wines produced in specified regions) 01/01/1995 31/12/2004 -22042183 01/01/2005 31/12/2009 LIBEN Quality wines produced in specified regions, in containers holding <= 2 l and of an actual alcoholic strength of > 13% vol to 15% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/2005 31/12/2009 -22042183 01/01/2010 31/12/2500 LIBEN White wines produced in EU, in containers holding <= 2 l and of an actual alcoholic strength of <=15% vol (other than sparkling wine, semi-sparkling wine and varietal wines) 01/01/2010 31/12/2500 -22042184 01/01/1995 31/12/2004 LIBEN Wine of fresh grapes, incl. fortified wine and grape must with fermentation arrested or interrupted by the addition of alcohol, in containers holding <= 2 l and of an actual alcoholic strength by volume of > 13% vol to 15% vol (other than sparkling wine, semi-sparkling wine, quality wines produced in specified regions and general white wine) 01/01/1995 31/12/2004 -22042184 01/01/2005 31/12/2009 LIBEN White wine of fresh grapes, in containers holding <= 2 l and of an actual alcoholic strength of > 13% vol to 15% vol (other than sparkling wine, semi-sparkling wine and quality wines produced in specified regions) 01/01/2005 31/12/2009 -22042184 01/01/2010 31/12/2500 LIBEN Wines produced in EU, in containers holding <= 2 l and of an actual alcoholic strength of <=15% vol (other than sparkling wine, semi-sparkling wine, white wine and varietal wines) 01/01/2010 31/12/2500 -22042185 01/01/2005 31/12/2009 LIBEN Wine of fresh grapes, incl. fortified wine and grape must with fermentation arrested or interrupted by the addition of alcohol, in containers holding <= 2 l and of an actual alcoholic strength of > 13% vol to 15% vol (other than sparkling wine, semi-sparkling wine, quality wines produced in specified regions and general white wine) 01/01/2005 31/12/2009 -22042185 01/01/2010 31/12/2500 LIBEN Madeira and Setubal muscatel, in containers holding <= 2 l and of an actual alcoholic strength of > 15% vol, with PDO or PGI 01/01/2010 31/12/2500 -22042186 01/01/2010 31/12/2500 LIBEN Sherry, in containers holding <= 2 l and of an actual alcoholic strength of > 15% vol, with PDO or PGI 01/01/2010 31/12/2500 -22042187 01/01/1995 31/12/2009 LIBEN Marsala, in containers holding <= 2 l and of an actual alcoholic strength of > 15% vol to 18% vol 01/01/1995 31/12/2009 -22042187 01/01/2010 31/12/2500 LIBEN Marsala, in containers holding <= 2 l and of an actual alcoholic strength of > 15% vol, with PDO or PGI 01/01/2010 31/12/2500 -22042188 01/01/1995 31/12/2009 LIBEN Samos and Muscat de Lemnos, in containers holding <= 2 l and of an actual alcoholic strength of > 15% vol to 18% vol 01/01/1995 31/12/2009 -22042188 01/01/2010 31/12/2500 LIBEN Samos and Muscat de Lemnos, in containers holding <= 2 l and of an actual alcoholic strength of > 15% vol, with PDO or PGI 01/01/2010 31/12/2500 -22042189 01/01/1995 31/12/2009 LIBEN Port, in containers holding <= 2 l and of an actual alcoholic strength of > 15% vol to 18% vol 01/01/1995 31/12/2009 -22042189 01/01/2010 31/12/2500 LIBEN Port, in containers holding <= 2 l and of an actual alcoholic strength of > 15% vol, with PDO or PGI 01/01/2010 31/12/2500 -22042190 01/01/1988 31/12/1994 LIBEN Wine of fresh grapes, incl. fortified wines, in containers holding =< 2 l, of actual alcoholic strength of > 22 % vol (excl. sparkling wine) 01/01/1988 31/12/1994 -22042190 01/01/2010 31/12/2016 LIBEN Wines produced in EU, in containers holding <= 2 l and of an actual alcoholic strength of > 15% vol to 22% vol, with PDO or PGI (other than Port, Madeira, Sherry, Marsala, Samos, Muscat de Lemnos and Setubal muscatel) 01/01/2010 31/12/2016 -22042190 01/01/2017 31/12/2500 LIBEN Wines produced in EU, in containers holding <= 2 l and of an actual alcoholic strength of > 15% vol, with PDO or PGI (other than Port, Madeira, Sherry, Marsala, Samos, Muscat de Lemnos and Setubal muscatel) 01/01/2017 31/12/2500 -22042191 01/01/1995 31/12/2009 LIBEN Madeira and Setubal muscatel, in containers holding <= 2 l and of an actual alcoholic strength of > 15% vol to 18% vol 01/01/1995 31/12/2009 -22042191 01/01/2010 31/12/2016 LIBEN Wines without PDO and PGI, produced in EU, in containers holding <= 2 l and of an actual alcoholic strength of > 15% vol to 22% vol 01/01/2010 31/12/2016 -22042191 01/01/2017 31/12/2500 LIBEN Wines without PDO and PGI, produced in EU, in containers holding <= 2 l and of an actual alcoholic strength of > 15% vol 01/01/2017 31/12/2500 -22042192 01/01/1995 31/12/2009 LIBEN Sherry, in containers holding <= 2 l and of an actual alcoholic strength of > 15% vol to 18% vol 01/01/1995 31/12/2009 -22042192 01/01/2010 31/12/2016 LIBEN Wine of fresh grapes, incl. fortified wine, produced in EU, in containers holding <= 2 l and of an actual alcoholic strength of > 22% vol 01/01/2010 31/12/2016 -22042193 01/01/1995 31/12/2004 LIBEN Tokay [Aszu and Szamorodni], in containers holding <= 2 l and of an actual alcoholic strength by volume of > 15% to 18% vol 01/01/1995 31/12/2004 -22042193 01/01/2010 31/12/2500 LIBEN White wines not produced in EU, in containers holding <= 2 l, with PDO or PGI (other than sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042194 01/01/1995 31/12/2004 LIBEN Wine of fresh grapes, incl fortified wine, in containers holding <= 2 l and of an actual alcoholic strength by volume of > 15% vol to 18% vol (other than sparkling wine, semi-sparkling wine and Marsala, Samos, Muskat de Limnos, Port, Madeira, Setubal muscatel, Sherry and Tokay [Aszu and Szamorodni]) 01/01/1995 31/12/2004 -22042194 01/01/2005 31/12/2009 LIBEN Wine of fresh grapes, incl fortified wine, in containers holding <= 2 l and of an actual alcoholic strength of > 15% vol to 18% vol (other than sparkling wine, semi-sparkling wine and Marsala, Samos, Muskat de Limnos, Port, Madeira, Setubal muscatel and Sherry) 01/01/2005 31/12/2009 -22042194 01/01/2010 31/12/2500 LIBEN Wines not produced in EU, in containers holding <= 2 l, with PDO or PGI (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042195 01/01/1995 31/12/2009 LIBEN Port, in containers holding <= 2 l and of an actual alcoholic strength of > 18% vol to 22% vol 01/01/1995 31/12/2009 -22042195 01/01/2010 31/12/2500 LIBEN Varietal white wines without PDO and PGI, not produced in EU, in containers holding <= 2 l (other than sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2500 -22042196 01/01/1995 31/12/2009 LIBEN Madeira, Sherry and Setubal muscatel, in containers holding <= 2 l and of an actual alcoholic strength of > 18% vol to 22% vol 01/01/1995 31/12/2009 -22042196 01/01/2010 31/12/2500 LIBEN Varietal wines without PDO and PGI, not produced in EU, in containers holding <= 2 l (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2500 -22042197 01/01/1995 31/12/2004 LIBEN Tokay [Aszu and Szamorodni], in containers holding <= 2 l and of an actual alcoholic strength by volume of > 18% vol to 22% vol 01/01/1995 31/12/2004 -22042197 01/01/2010 31/12/2500 LIBEN White wines not produced in EU, in containers holding <= 2 l (other than sparkling wine, semi-sparkling wine and varietal wines) 01/01/2010 31/12/2500 -22042198 01/01/1995 31/12/2004 LIBEN Wine of fresh grapes, incl. fortified wine, in containers holding <= 2 l and of an actual alcoholic strength by volume of > 18% vol to 22% vol (other than Port, Madeira, Sherry, Setubal muscatel and Tokay [Aszu and Szamorodni]) 01/01/1995 31/12/2004 -22042198 01/01/2005 31/12/2009 LIBEN Wine of fresh grapes, incl. fortified wine, in containers holding <= 2 l and of an actual alcoholic strength of > 18% vol to 22% vol (other than Port, Madeira, Sherry and Setubal muscatel) 01/01/2005 31/12/2009 -22042198 01/01/2010 31/12/2500 LIBEN Wines not produced in EU, in containers holding <= 2 l (other than sparkling wine, semi-sparkling wine, white wine and varietal wines) 01/01/2010 31/12/2500 -22042199 01/01/1995 31/12/2009 LIBEN Wine of fresh grapes, incl. fortified wine, in containers holding <= 2 l and of an actual alcoholic strength of > 22% vol 01/01/1995 31/12/2009 -220422 01/01/2017 31/12/2500 LIBEN Wine of fresh grapes, incl. fortified wines, and grape must whose fermentation has been arrested by the addition of alcohol, in containers of > 2 l but <= 10 l (excl. sparkling wine) 01/01/2017 31/12/2500 -22042210 01/01/2017 31/12/2500 LIBEN Wine of fresh grapes, incl. fortified wines, in bottles with "mushroom" stoppers held in place by ties or fastenings, holding > 2 l; wine otherwise put up with an excess pressure due to carbon dioxide in solution of >= 1 bar but < 3 bar measured at 20°C, in containers holding > 2 l but <= 10 l (excl. sparkling wine) 01/01/2017 31/12/2500 -22042222 01/01/2017 31/12/2500 LIBEN Wines produced in Bordeaux, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042223 01/01/2017 31/12/2500 LIBEN Wines produced in Bourgogne "Burgundy", in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042224 01/01/2017 31/12/2500 LIBEN Wines produced in Beaujolais, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042226 01/01/2017 31/12/2500 LIBEN Wines produced in Vallée du Rhône, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042227 01/01/2017 31/12/2500 LIBEN Wines produced in Languedoc-Roussillon, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042228 01/01/2017 31/12/2500 LIBEN Wines produced in Val de Loire "Loire Valley", in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042232 01/01/2017 31/12/2500 LIBEN Wines produced in Piemonte "Piedmont", in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042233 01/01/2017 31/12/2500 LIBEN Wines produced in Tokaj, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042238 01/01/2017 31/12/2500 LIBEN White wines produced in EU, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than Bordeaux, Bourgogne, Beaujolais, Vallée du Rhône, Languedoc-Roussillon, Val de Loire, Piemonte, Tokaj, sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042278 01/01/2017 31/12/2500 LIBEN Wines produced in EU, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than Bordeaux, Bourgogne, Beaujolais, Vallée du Rhône, Languedoc-Roussillon, Val de Loire, Piemonte, Tokaj, sparkling wine, semi-sparkling wine and white wine) 01/01/2017 31/12/2500 -22042279 01/01/2017 31/12/2500 LIBEN White wine of fresh grapes, produced in EU, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of <= 15% vol, with PGI (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042280 01/01/2017 31/12/2500 LIBEN Wines of fresh grapes, produced in EU, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of <= 15% vol, with PGI (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2017 31/12/2500 -22042281 01/01/2017 31/12/2500 LIBEN Varietal white wines without PDO and PGI, produced in EU, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of <=15% vol (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042282 01/01/2017 31/12/2500 LIBEN Varietal wines without PDO and PGI, produced in EU, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of <=15% vol (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2017 31/12/2500 -22042283 01/01/2017 31/12/2500 LIBEN White wines produced in EU, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of <=15% vol (other than sparkling wine, semi-sparkling wine and varietal wines) 01/01/2017 31/12/2500 -22042284 01/01/2017 31/12/2500 LIBEN Wines produced in EU, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of <=15% vol (other than sparkling wine, semi-sparkling wine, white wine and varietal wines) 01/01/2017 31/12/2500 -22042285 01/01/2017 31/12/2500 LIBEN Madeira and Setubal muscatel, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of > 15% vol, with PDO or PGI 01/01/2017 31/12/2500 -22042286 01/01/2017 31/12/2500 LIBEN Sherry, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of > 15% vol, with PDO or PGI 01/01/2017 31/12/2500 -22042288 01/01/2017 31/12/2500 LIBEN Samos and Muscat de Lemnos, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of > 15% vol, with PDO or PGI 01/01/2017 31/12/2500 -22042290 01/01/2017 31/12/2500 LIBEN Wines produced in EU, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of > 15% vol, with PDO or PGI (other than Madeira, Sherry, Samos, Muscat de Lemnos and Setubal muscatel) 01/01/2017 31/12/2500 -22042291 01/01/2017 31/12/2500 LIBEN Wines without PDO and PGI, produced in EU, in containers holding > 2 l but <= 10 l and of an actual alcoholic strength of > 15% vol 01/01/2017 31/12/2500 -22042293 01/01/2017 31/12/2500 LIBEN White wines not produced in EU, in containers holding > 2 l but <= 10 l, with PDO or PGI (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042294 01/01/2017 31/12/2500 LIBEN Wines not produced in EU, in containers holding > 2 l but <= 10 l, with PDO or PGI (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2017 31/12/2500 -22042295 01/01/2017 31/12/2500 LIBEN Varietal white wines without PDO and PGI, not produced in EU, in containers holding > 2 l but <= 10 l (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042296 01/01/2017 31/12/2500 LIBEN Varietal wines without PDO and PGI, not produced in EU, in containers holding > 2 l but <= 10 l (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2017 31/12/2500 -22042297 01/01/2017 31/12/2500 LIBEN White wines not produced in EU, in containers holding > 2 l but <= 10 l (other than sparkling wine, semi-sparkling wine and varietal wines) 01/01/2017 31/12/2500 -22042298 01/01/2017 31/12/2500 LIBEN Wines not produced in EU, in containers holding > 2 l but <= 10 l (other than sparkling wine, semi-sparkling wine, white wine and varietal wines) 01/01/2017 31/12/2500 -220429 01/01/1988 31/12/2500 LIBEN Wine of fresh grapes, incl. fortified wines, and grape must whose fermentation has been arrested by the addition of alcohol, in containers of > 10 l (excl. sparkling wine) 01/01/1988 31/12/2500 -22042910 01/01/1988 31/12/2016 LIBEN Wine of fresh grapes, incl. fortified wines, in bottles with "mushroom" stoppers held in place by ties or fastenings, holding > 2 l; wine otherwise put up with an excess pressure due to carbon dioxide in solution of >= 1 bar but < 3 bar measured at 20°C, in containers holding > 2 l (excl. sparkling wine) 01/01/1988 31/12/2016 -22042910 01/01/2017 31/12/2500 LIBEN Wine of fresh grapes, incl. fortified wines, in bottles with "mushroom" stoppers held in place by ties or fastenings, holding > 2 l; wine otherwise put up with an excess pressure due to carbon dioxide in solution of >= 1 bar but < 3 bar measured at 20°C, in containers holding > 10 l (excl. sparkling wine) 01/01/2017 31/12/2500 -22042911 01/01/2005 31/12/2009 LIBEN Quality white wines produced in Tokaj "e.g. Aszu, Szamorodni, Máslás, Fordítás", in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (excl. sparkling wine and semi-sparkling wine) 01/01/2005 31/12/2009 -22042911 01/01/2010 31/12/2016 LIBEN White wines produced in Tokaj "e.g. Aszu, Szamorodni, Máslás, Fordítás", in containers holding > 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (excl. sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2016 -22042912 01/01/1995 31/12/2009 LIBEN Quality white wines produced in Bordeaux, in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042912 01/01/2010 31/12/2016 LIBEN White wines produced in Bordeaux, in containers holding > 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2016 -22042913 01/01/1995 31/12/2009 LIBEN Quality white wines produced in Burgundy, in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042913 01/01/2010 31/12/2016 LIBEN Quality white wines produced in Bourgogne (Burgundy), in containers holding > 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2016 -22042917 01/01/1995 31/12/2009 LIBEN Quality white wines produced in Val de Loire, in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042917 01/01/2010 31/12/2016 LIBEN White wines produced in Val de Loire, in containers holding > 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2016 -22042918 01/01/1995 31/12/2009 LIBEN Quality white wines produced in specified regions, in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (other than Tokaj, Bordeaux, Burgundy, Val de Loire, sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2009 -22042918 01/01/2010 31/12/2016 LIBEN White wines produced in EU, in containers holding > 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than Tokaj, Bordeaux, Bourgogne, Val de Loire, sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2016 -22042921 01/01/1988 31/12/1994 LIBEN Quality white wine produced in specified regions, in containers holding > 2 l, of actual alcoholic strength of =< 13 % vol 01/01/1988 31/12/1994 -22042922 01/01/2017 31/12/2500 LIBEN Wines produced in Bordeaux, in containers holding > 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042923 01/01/1988 31/12/1994 LIBEN Quality wine produced in specified regions, in containers holding > 2 l, of actual alcoholic strength of =< 13 % vol (excl. white) 01/01/1988 31/12/1994 -22042923 01/01/2017 31/12/2500 LIBEN Wines produced in Bourgogne "Burgundy", in containers holding > 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042924 01/01/2017 31/12/2500 LIBEN Wines produced in Beaujolais, in containers holding > 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042925 01/01/1988 31/12/1994 LIBEN White wine of fresh grapes, in containers holding > 2 l, of actual alcoholic strength of =< 13 % vol (excl. quality wine produced in specified regions) 01/01/1988 31/12/1994 -22042926 01/01/2017 31/12/2500 LIBEN Wines produced in Vallée du Rhône, in containers holding > 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042927 01/01/2017 31/12/2500 LIBEN Wines produced in Languedoc-Roussillon, in containers holding > 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042928 01/01/2017 31/12/2500 LIBEN Wines produced in Val de Loire "Loire Valley", in containers holding > 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042929 01/01/1988 31/12/1994 LIBEN Wine of fresh grapes, incl. fortified wines, and grape must whose fermentation has been arrested by the addition of alcohol, in containers of > 2 l, of actual alcoholic strength of =< 13 % vol (excl. sparkling wine, quality wine produced in specified regions and white wine in general) 01/01/1988 31/12/1994 -22042931 01/01/1988 31/12/1994 LIBEN Quality white wine from specified regions, in containers holding > 2 l, of actual alcoholic strength of > 13 % but =< 15 % vol 01/01/1988 31/12/1994 -22042932 01/01/2017 31/12/2500 LIBEN Wines produced in Piemonte "Piedmont", in containers holding > 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042933 01/01/1988 31/12/1994 LIBEN Quality wine from specified regions, in containers holding > 2 l, of actual alcoholic strength of > 13 % but =< 15 % vol (excl. white) 01/01/1988 31/12/1994 -22042935 01/01/1988 31/12/1994 LIBEN White wine from fresh grapes, in containers holding > 2 l, of actual alcoholic strength of > 13 % but =< 15 % vol (excl. quality wine from specified regions) 01/01/1988 31/12/1994 -22042938 01/01/2017 31/12/2500 LIBEN White wines produced in EU, in containers holding > 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than Bordeaux, Bourgogne, Beaujolais, Vallée du Rhône, Languedoc-Roussillon, Val de Loire, Piemonte, sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042939 01/01/1988 31/12/1994 LIBEN Wine of fresh grapes, incl. fortified wines, and grape must whose fermentation has been arrested by the addition of alcohol, in containers of > 2 l, of actual alcoholic strength of > 13 % but =< 15 % vol (excl. sparkling wine, quality wine produced in specified regions and white wine in general) 01/01/1988 31/12/1994 -22042941 01/01/1988 31/12/1994 LIBEN Port, madeira, sherry and setubal muscatel, of actual alcoholic strength of > 15 % but =< 18 % vol, in containers holding > 2 l 01/01/1988 31/12/1994 -22042942 01/01/1995 31/12/2009 LIBEN Quality wines produced in Bordeaux, in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042942 01/01/2010 31/12/2016 LIBEN Wines produced in Bordeaux, in containers holding > 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2016 -22042943 01/01/1995 31/12/2009 LIBEN Quality wines produced in Burgundy, in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042943 01/01/2010 31/12/2016 LIBEN Wines produced in Bourgogne (Burgundy), in containers holding > 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2016 -22042944 01/01/1995 31/12/2009 LIBEN Quality wines produced in Beaujolais, in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042944 01/01/2010 31/12/2016 LIBEN Wines produced in Beaujolais, in containers holding > 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2016 -22042945 01/01/1988 31/12/1994 LIBEN Tokay, of actual alcoholic strength of > 15 % but =< 18 % vol, in containers holding > 2 l 01/01/1988 31/12/1994 -22042946 01/01/1995 31/12/2009 LIBEN Quality wines produced in Côtes-du-Rhône, in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042946 01/01/2010 31/12/2014 LIBEN Wines produced in Côtes-du-Rhône, in containers holding > 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2014 -22042946 01/01/2015 31/12/2016 LIBEN Wines produced in Vallée du Rhône, in containers holding > 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2015 31/12/2016 -22042947 01/01/1995 31/12/2009 LIBEN Quality wines produced in Languedoc-Roussillon, in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042947 01/01/2010 31/12/2016 LIBEN Wines produced in Languedoc-Roussillon, in containers holding > 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2016 -22042948 01/01/1995 31/12/2009 LIBEN Quality wines produced in Val de Loire, in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042948 01/01/2010 31/12/2016 LIBEN Wines produced in Val de Loire, in containers holding > 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2016 -22042949 01/01/1988 31/12/1994 LIBEN Wine of fresh grapes, incl. fortified wines, in containers holding > 2 l, of actual alcoholic strength of > 15 % but =< 18 % vol (excl. sparkling wine, quality wine produced in specified regions, white wine in general, port, madeira, sherry, tokay and setubal muscatel) 01/01/1988 31/12/1994 -22042951 01/01/1988 31/12/1994 LIBEN Port, madeira, sherry and setubal muscatel, of actual alcoholic strength of > 18 % but =< 22 % vol, in containers holding > 2 l 01/01/1988 31/12/1994 -22042955 01/01/1988 31/12/1994 LIBEN Tokay, of actual alcoholic strength of > 18 % but =< 22 % vol, in containers holding > 2 l 01/01/1988 31/12/1994 -22042958 01/01/1995 31/12/2009 LIBEN Quality wines produced in specified regions, in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (other than Bordeaux, Burgundy, Beaujolais, Côtes-du-Rhône, Languedoc-Roussillon, Val de Loire, and sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042958 01/01/2010 31/12/2014 LIBEN Wines produced in the Community, in containers holding > 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than Bordeaux, Bourgogne, Beaujolais, Côtes-du-Rhône, Languedoc-Roussillon, Val de Loire, sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2014 -22042958 01/01/2015 31/12/2016 LIBEN Wines produced in EU, in containers holding > 2 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than Bordeaux, Bourgogne, Beaujolais, Vallée du Rhône, Languedoc-Roussillon, Val de Loire, sparkling wine, semi-sparkling wine and white wine) 01/01/2015 31/12/2016 -22042959 01/01/1988 31/12/1994 LIBEN Wine of fresh grapes, incl. fortified wines, in containers holding > 2 l, of actual alcoholic strength of > 18 % but =< 22 % vol (excl. sparkling wine, quality wine produced in specified regions, white wine in general, port, madeira, sherry, tokay and setubal muscatel) 01/01/1988 31/12/1994 -22042962 01/01/1995 31/12/2009 LIBEN White wine produced in Sicily, in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and quality wines produced in specified regions) 01/01/1995 31/12/2009 -22042964 01/01/1995 31/12/2009 LIBEN White wine produced in Veneto, in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine and quality wines produced in specified regions) 01/01/1995 31/12/2009 -22042965 01/01/1995 31/12/2004 LIBEN White wine of fresh grapes, in containers holding > 2 l and of an actual alcoholic strength by volume of <= 13% vol (other than sparkling wine, semi-sparkling wine, quality wines produced in specified regions and wines produced in Sicily and Veneto) 01/01/1995 31/12/2004 -22042965 01/01/2005 31/12/2009 LIBEN White wine of fresh grapes, in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine, quality wines produced in specified regions and wines produced in Sicily and Veneto) 01/01/2005 31/12/2009 -22042971 01/01/1995 31/12/2009 LIBEN Wines produced in Puglia [Apulia], in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine, quality wines produced in specified regions and general white wine) 01/01/1995 31/12/2009 -22042972 01/01/1995 31/12/2009 LIBEN Wines produced in Sicily, in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine, quality wines produced in specified regions and general white wine) 01/01/1995 31/12/2009 -22042975 01/01/1995 31/12/2009 LIBEN Wine of fresh grapes, incl. fortified wine and grape must, with fermentation arrested or interrupted by the addition of alcohol, in containers holding > 2 l and of an actual alcoholic strength of <= 13% vol (other than sparkling wine, semi-sparkling wine, wines produced in Puglia and Sicily, quality wines produced in specified regions and general white wine) 01/01/1995 31/12/2009 -22042977 01/01/2005 31/12/2009 LIBEN Quality white wines produced in Tokaj "e.g. Aszu, Szamorodni, Máslás, Fordítás", in containers holding > 2 l and of an actual alcoholic strength of > 13% vol to 15% vol 01/01/2005 31/12/2009 -22042978 01/01/2005 31/12/2009 LIBEN Quality white wines produced in specified regions, in containers holding > 2 l and of an actual alcoholic strength of > 13% vol to 15% vol (other than Tokaj, sparkling wine and semi-sparkling wine) 01/01/2005 31/12/2009 -22042978 01/01/2017 31/12/2500 LIBEN Wines produced in EU, in containers holding > 10 l and of an actual alcoholic strength of <= 15% vol, with PDO (other than Bordeaux, Bourgogne, Beaujolais, Vallée du Rhône, Languedoc-Roussillon, Val de Loire, Piemonte, sparkling wine, semi-sparkling wine and white wine) 01/01/2017 31/12/2500 -22042979 01/01/2010 31/12/2016 LIBEN White wine of fresh grapes, produced in EU, in containers holding > 2 l and of an actual alcoholic strength of <= 15% vol, with PGI (other than sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2016 -22042979 01/01/2017 31/12/2500 LIBEN White wine of fresh grapes, produced in EU, in containers holding > 10 l and of an actual alcoholic strength of <= 15% vol, with PGI (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042980 01/01/2010 31/12/2016 LIBEN Wines of fresh grapes, produced in EU, in containers holding > 2 l and of an actual alcoholic strength of <= 15% vol, with PGI (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2016 -22042980 01/01/2017 31/12/2500 LIBEN Wines of fresh grapes, produced in EU, in containers holding > 10 l and of an actual alcoholic strength of <= 15% vol, with PGI (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2017 31/12/2500 -22042981 01/01/1995 31/12/2004 LIBEN Quality white wines produced in specified regions, in containers holding > 2 l and of an actual alcoholic strength by volume of > 13% vol to 15% vol (other than sparkling wine and semi-sparkling wine) 01/01/1995 31/12/2004 -22042981 01/01/2010 31/12/2016 LIBEN Varietal white wines without PDO and PGI, produced in EU, in containers holding > 2 l and of an actual alcoholic strength of <=15% vol (other than sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2016 -22042981 01/01/2017 31/12/2500 LIBEN Varietal white wines without PDO and PGI, produced in EU, in containers holding > 10 l and of an actual alcoholic strength of <=15% vol (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042982 01/01/1995 31/12/2009 LIBEN Quality wines produced in specified regions, in containers holding > 2 l and of an actual alcoholic strength of > 13% vol to 15% vol (other than sparkling wine, semi-sparkling wine and general white wine) 01/01/1995 31/12/2009 -22042982 01/01/2010 31/12/2016 LIBEN Varietal wines without PDO and PGI, produced in EU, in containers holding > 2 l and of an actual alcoholic strength of <=15% vol (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2016 -22042982 01/01/2017 31/12/2500 LIBEN Varietal wines without PDO and PGI, produced in EU, in containers holding > 10 l and of an actual alcoholic strength of <=15% vol (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2017 31/12/2500 -22042983 01/01/1995 31/12/2004 LIBEN White wine of fresh grapes, in containers holding > 2 l and of an actual alcoholic strength by volume of > 13% vol to 15% vol (other than quality wines produced in specified regions) 01/01/1995 31/12/2004 -22042983 01/01/2005 31/12/2009 LIBEN White wine of fresh grapes, in containers holding > 2 l and of an actual alcoholic strength of > 13% vol to 15% vol (other than quality wines produced in specified regions) 01/01/2005 31/12/2009 -22042983 01/01/2010 31/12/2016 LIBEN White wines produced in EU, in containers holding > 2 l and of an actual alcoholic strength of <=15% vol (other than sparkling wine, semi-sparkling wine and varietal wines) 01/01/2010 31/12/2016 -22042983 01/01/2017 31/12/2500 LIBEN White wines produced in EU, in containers holding > 10 l and of an actual alcoholic strength of <=15% vol (other than sparkling wine, semi-sparkling wine and varietal wines) 01/01/2017 31/12/2500 -22042984 01/01/1995 31/12/2009 LIBEN Wine of fresh grapes, incl. fortified wine and grape must with fermentation arrested or interrupted by the addition of alcohol, in containers holding > 2 l and of an actual alcoholic strength of > 13% vol to 15% vol (other than sparkling wine, semi-sparkling wine, quality wines produced in specified regions and general white wine) 01/01/1995 31/12/2009 -22042984 01/01/2010 31/12/2016 LIBEN Wines produced in EU, in containers holding > 2 l and of an actual alcoholic strength of <=15% vol (other than sparkling wine, semi-sparkling wine, white wine and varietal wines) 01/01/2010 31/12/2016 -22042984 01/01/2017 31/12/2500 LIBEN Wines produced in EU, in containers holding > 10 l and of an actual alcoholic strength of <=15% vol (other than sparkling wine, semi-sparkling wine, white wine and varietal wines) 01/01/2017 31/12/2500 -22042985 01/01/2010 31/12/2016 LIBEN Madeira and Setubal muscatel, in containers holding > 2 l and of an actual alcoholic strength of > 15% vol to 22% vol, with PDO or PGI 01/01/2010 31/12/2016 -22042985 01/01/2017 31/12/2500 LIBEN Madeira and Setubal muscatel, in containers holding > 10 l and of an actual alcoholic strength of > 15% vol, with PDO or PGI 01/01/2017 31/12/2500 -22042986 01/01/2010 31/12/2016 LIBEN Sherry, in containers holding > 2 l and of an actual alcoholic strength of > 15% vol to 22% vol, with PDO or PGI 01/01/2010 31/12/2016 -22042986 01/01/2017 31/12/2500 LIBEN Sherry, in containers holding > 10 l and of an actual alcoholic strength of > 15% vol, with PDO or PGI 01/01/2017 31/12/2500 -22042987 01/01/1995 31/12/2009 LIBEN Marsala, in containers holding > 2 l and of an actual alcoholic strength of > 15% vol to 18% vol 01/01/1995 31/12/2009 -22042987 01/01/2010 31/12/2016 LIBEN Marsala, in containers holding > 2 l and of an actual alcoholic strength of > 15% vol to 22% vol, with PDO or PGI 01/01/2010 31/12/2016 -22042988 01/01/1995 31/12/2009 LIBEN Samos and Muscat de Lemnos, in containers holding > 2 l and of an actual alcoholic strength of > 15% vol to 18% vol 01/01/1995 31/12/2009 -22042988 01/01/2010 31/12/2016 LIBEN Samos and Muscat de Lemnos, in containers holding > 2 l and of an actual alcoholic strength of > 15% vol to 22% vol, with PDO or PGI 01/01/2010 31/12/2016 -22042988 01/01/2017 31/12/2500 LIBEN Samos and Muscat de Lemnos, in containers holding > 10 l and of an actual alcoholic strength of > 15% vol, with PDO or PGI 01/01/2017 31/12/2500 -22042989 01/01/1995 31/12/2009 LIBEN Port, in containers holding > 2 l and of an actual alcoholic strength of > 15% vol to 18% vol 01/01/1995 31/12/2009 -22042989 01/01/2010 31/12/2016 LIBEN Port, in containers holding > 2 l and of an actual alcoholic strength of > 15% vol to 22% vol, with PDO or PGI 01/01/2010 31/12/2016 -22042990 01/01/1988 31/12/1994 LIBEN Wine of fresh grapes, incl. fortified wines, in containers holding > 2 l, of actual alcoholic strength of > 22 % vol (excl. sparkling wine) 01/01/1988 31/12/1994 -22042990 01/01/2010 31/12/2016 LIBEN Wines produced in EU, in containers holding > 2 l and of an actual alcoholic strength of > 15% vol to 22% vol, with PDO or PGI (other than Port, Madeira, Sherry, Marsala, Samos, Muscat de Lemnos and Setubal muscatel) 01/01/2010 31/12/2016 -22042990 01/01/2017 31/12/2500 LIBEN Wines produced in EU, in containers holding > 10 l and of an actual alcoholic strength of > 15% vol, with PDO or PGI (other than Madeira, Sherry, Samos, Muscat de Lemnos and Setubal muscatel) 01/01/2017 31/12/2500 -22042991 01/01/1995 31/12/2009 LIBEN Madeira and Setubal muscatel, in containers holding > 2 l and of an actual alcoholic strength of > 15% vol to 18% vol 01/01/1995 31/12/2009 -22042991 01/01/2010 31/12/2016 LIBEN Wines without PDO and PGI, produced in EU, in containers holding > 2 l and of an actual alcoholic strength of > 15% vol to 22% vol 01/01/2010 31/12/2016 -22042991 01/01/2017 31/12/2500 LIBEN Wines without PDO and PGI, produced in EU, in containers holding > 10 l and of an actual alcoholic strength of > 15% vol 01/01/2017 31/12/2500 -22042992 01/01/1995 31/12/2009 LIBEN Sherry, in containers holding > 2 l and of an actual alcoholic strength of > 15% vol to 18% vol 01/01/1995 31/12/2009 -22042992 01/01/2010 31/12/2016 LIBEN Wine of fresh grapes, incl. fortified wine, produced in EU, in containers holding > 2 l and of an actual alcoholic strength of > 22% vol 01/01/2010 31/12/2016 -22042993 01/01/1995 31/12/2004 LIBEN Tokay [Aszu and Szamorodni], in containers holding > 2 l and of an actual alcoholic strength by volume of > 15% vol to 18% vol 01/01/1995 31/12/2004 -22042993 01/01/2010 31/12/2016 LIBEN White wines not produced in EU, in containers holding > 2 l, with PDO or PGI (other than sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2016 -22042993 01/01/2017 31/12/2500 LIBEN White wines not produced in EU, in containers holding > 10 l, with PDO or PGI (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042994 01/01/1995 31/12/2004 LIBEN Wine of fresh grapes, incl. fortified wine, in containers holding > 2 l and of an actual alcoholic strength by volume of > 15% vol to 18% vol (other than sparkling wine, semi-sparkling wine, quality wines produced in specified regions and general white wine, Marsala, Samos, Muscat de Lemnos, Port, Madeira, Setubal muscatel, Sherry and Tokay [Aszu and Szamorodni]) 01/01/1995 31/12/2004 -22042994 01/01/2005 31/12/2009 LIBEN Wine of fresh grapes, incl. fortified wine, in containers holding > 2 l and of an actual alcoholic strength of > 15% vol to 18% vol (other than sparkling wine, semi-sparkling wine, quality wines produced in specified regions and general white wine, Marsala, Samos, Muscat de Lemnos, Port, Madeira, Setubal muscatel and Sherry) 01/01/2005 31/12/2009 -22042994 01/01/2010 31/12/2016 LIBEN Wines not produced in EU, in containers holding > 2 l, with PDO or PGI (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2016 -22042994 01/01/2017 31/12/2500 LIBEN Wines not produced in EU, in containers holding > 10 l, with PDO or PGI (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2017 31/12/2500 -22042995 01/01/1995 31/12/2009 LIBEN Port, in containers holding > 2 l and of an actual alcoholic strength of > 18% vol to 22% vol 01/01/1995 31/12/2009 -22042995 01/01/2010 31/12/2016 LIBEN Varietal white wines without PDO and PGI, not produced in EU, in containers holding > 2 l (other than sparkling wine and semi-sparkling wine) 01/01/2010 31/12/2016 -22042995 01/01/2017 31/12/2500 LIBEN Varietal white wines without PDO and PGI, not produced in EU, in containers holding > 10 l (other than sparkling wine and semi-sparkling wine) 01/01/2017 31/12/2500 -22042996 01/01/1995 31/12/2009 LIBEN Madeira, Sherry and Setubal muscatel, in containers holding > 2 l and of an actual alcoholic strength of > 18% vol to 22% vol 01/01/1995 31/12/2009 -22042996 01/01/2010 31/12/2016 LIBEN Varietal wines without PDO and PGI, not produced in EU, in containers holding > 2 l (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2010 31/12/2016 -22042996 01/01/2017 31/12/2500 LIBEN Varietal wines without PDO and PGI, not produced in EU, in containers holding > 10 l (other than sparkling wine, semi-sparkling wine and white wine) 01/01/2017 31/12/2500 -22042997 01/01/1995 31/12/2004 LIBEN Tokay [Aszu and Szamorodni], in containers holding > 2 l and of an actual alcoholic strength by volume of > 18% vol to 22% vol 01/01/1995 31/12/2004 -22042997 01/01/2010 31/12/2016 LIBEN White wines not produced in EU, in containers holding > 2 l (other than sparkling wine, semi-sparkling wine and varietal wines) 01/01/2010 31/12/2016 -22042997 01/01/2017 31/12/2500 LIBEN White wines not produced in EU, in containers holding > 10 l (other than sparkling wine, semi-sparkling wine and varietal wines) 01/01/2017 31/12/2500 -22042998 01/01/1995 31/12/2004 LIBEN Wine of fresh grapes, incl. fortified wine, in containers holding > 2 l and of an actual alcoholic strength by volume of > 18% vol to 22% vol (other than Port, Madeira, Sherry, Setubal muscatel and Tokay [Aszu and Szamorodni]) 01/01/1995 31/12/2004 -22042998 01/01/2005 31/12/2009 LIBEN Wine of fresh grapes, incl. fortified wine, in containers holding > 2 l and of an actual alcoholic strength of > 18% vol to 22% vol (other than Port, Madeira, Sherry and Setubal muscatel) 01/01/2005 31/12/2009 -22042998 01/01/2010 31/12/2016 LIBEN Wines not produced in EU, in containers holding > 2 l (other than sparkling wine, semi-sparkling wine, white wine and varietal wines) 01/01/2010 31/12/2016 -22042998 01/01/2017 31/12/2500 LIBEN Wines not produced in EU, in containers holding > 10 l (other than sparkling wine, semi-sparkling wine, white wine and varietal wines) 01/01/2017 31/12/2500 -22042999 01/01/1995 31/12/2009 LIBEN Wine of fresh grapes, incl. fortified wine, in containers holding > 2 l and of an actual alcoholic strength of > 22% vol 01/01/1995 31/12/2009 -220430 01/01/1988 31/12/2500 LIBEN Grape must, of an actual alcoholic strength of > 0,5% vol (excl. grape must whose fermentation has been arrested by the addition of alcohol) 01/01/1988 31/12/2500 -22043010 01/01/1988 31/12/2500 LIBEN Grape must, arrested otherwise than by addition of alcohol, of an actual alcoholic strength of > 1% vol (excl. grape must whose fermentation has been arrested by the addition of alcohol) 01/01/1988 31/12/2500 -22043091 01/01/1988 31/12/1994 LIBEN Grape must, partly fermented, density of =< 1.33 g/cm³, of an actual alcoholic strength of > 0.5 % but =< 1 % vol (excl. grape must whose fermentation has been arrested by the addition of alcohol) 01/01/1988 31/12/1994 -22043092 01/01/1995 31/12/2500 LIBEN Grape must, unfermented, concentrated within the meaning of Additional Note 7 to chapter 22, of a density <= 1,33 g/cm³ at 20°C and of an actual alcoholic strength <= 1% vol but > 0,5% vol (excl. grape must whose fermentation has been arrested by the addition of alcohol) 01/01/1995 31/12/2500 -22043094 01/01/1995 31/12/2500 LIBEN Grape must, unfermented, non-concentrated, of a density <= 1,33 g/cm³ at 20°C and of an actual alcoholic strength <= 1% vol but > 0,5% vol (excl. grape must whose fermentation has been arrested by the addition of alcohol) 01/01/1995 31/12/2500 -22043096 01/01/1995 31/12/2500 LIBEN Grape must, unfermented, concentrated within the meaning of Additional Note 7 to chapter 22, of a density > 1,33 g/cm³ at 20°C and of an actual alcoholic strength <= 1% vol but > 0,5% vol (excl. grape must whose fermentation has been arrested by the addition of alcohol) 01/01/1995 31/12/2500 -22043098 01/01/1995 31/12/2500 LIBEN Grape must, unfermented, non-concentrated, of a density > 1,33 g/cm³ at 20°C and of an actual alcoholic strength <= 1% vol but > 0,5% vol (excl. grape must whose fermentation has been arrested by the addition of alcohol) 01/01/1995 31/12/2500 -22043099 01/01/1988 31/12/1994 LIBEN Grape must, partly fermented, density of > 1.33 g/cm³, of an actual alcoholic strength of > 0.5 % but =< 1 % vol (excl. grape must whose fermentation has been arrested by the addition of alcohol) 01/01/1988 31/12/1994 -2205 01/01/1988 31/12/2500 LIBEN Vermouth and other wine of fresh grapes, flavoured with plants or aromatic substances 01/01/1988 31/12/2500 -220510 01/01/1988 31/12/2500 LIBEN Vermouth and other wine of fresh grapes, flavoured with plants or aromatic substances, in containers of <= 2 l 01/01/1988 31/12/2500 -22051010 01/01/1988 31/12/2500 LIBEN Vermouth and other wine of fresh grapes, flavoured with plants or aromatic substances, in containers holding <= 2 l, of actual alcoholic strength of <= 18% vol 01/01/1988 31/12/2500 -22051090 01/01/1988 31/12/2500 LIBEN Vermouth and other wine of fresh grapes, flavoured with plants or aromatic substances, in containers holding <= 2 l, of actual alcoholic strength of > 18% vol 01/01/1988 31/12/2500 -220590 01/01/1988 31/12/2500 LIBEN Vermouth and other wine of fresh grapes, flavoured with plants or aromatic substances, in containers of > 2 l 01/01/1988 31/12/2500 -22059010 01/01/1988 31/12/2500 LIBEN Vermouth and other wine of fresh grapes, flavoured with plants or aromatic substances, in containers holding > 2 l, of actual alcoholic strength of <= 18% vol 01/01/1988 31/12/2500 -22059090 01/01/1988 31/12/2500 LIBEN Vermouth and other wine of fresh grapes, flavoured with plants or aromatic substances, in containers holding > 2 l, of actual alcoholic strength of > 18% vol 01/01/1988 31/12/2500 -2206 01/01/1988 31/12/2500 LIBEN Cider, perry, mead, saké and other fermented beverages and mixtures of fermented beverages and non-alcoholic beverages, n.e.s. (excl. beer, wine or fresh grapes, grape must, vermouth and other wine of fresh grapes flavoured with plants or aromatic substances) 01/01/1988 31/12/2500 -220600 01/01/1988 31/12/2500 LIBEN Cider, perry, mead, saké and other fermented beverages and mixtures of fermented beverages and non-alcoholic beverages, n.e.s. (excl. beer, wine or fresh grapes, grape must, vermouth and other wine of fresh grapes flavoured with plants or aromatic substances) 01/01/1988 31/12/2500 -22060010 01/01/1988 31/12/2500 LIBEN Piquette, obtained by grape marc 01/01/1988 31/12/2500 -22060031 01/01/1994 31/12/2500 LIBEN Cider and perry, sparkling 01/01/1994 31/12/2500 -22060039 01/01/1994 31/12/2500 LIBEN Mead and other fermented beverages and mixtures of fermented beverages and mixtures of fermented beverages with non-alcoholic beverages, sparkling, n.e.s. 01/01/1994 31/12/2500 -22060051 01/01/1994 31/12/2500 LIBEN Cider and perry, not sparkling, in containers holding <= 2 l 01/01/1994 31/12/2500 -22060059 01/01/1994 31/12/2500 LIBEN Mead and other fermented beverages and mixtures of fermented beverages and mixtures of fermented beverages with non-alcoholic beverages, not sparkling, in containers holding <= 2 l, n.e.s. (excl. wine of fresh grapes, grape must, vermouth and other wine of fresh grapes, with plants or aromatic substances, piquette, cider and perry) 01/01/1994 31/12/2500 -22060081 01/01/1994 31/12/2500 LIBEN Cider and perry, not sparkling, in containers holding > 2 l 01/01/1994 31/12/2500 -22060089 01/01/1994 31/12/2500 LIBEN Mead and other fermented beverages and mixtures of fermented beverages and mixtures of fermented beverages with non-alcoholic beverages, not sparkling, in containers holding > 2 l, n.e.s. (excl. wine of fresh grapes, grape must, vermouth and other wine of fresh grapes, with plants or aromatic substances, piquette, cider and perry) 01/01/1994 31/12/2500 -22060091 01/01/1988 31/12/1993 LIBEN Cider, perry, mead and other fermented beverages and mixtures of fermented beverages and non-alcoholic beverages, sparkling, n.e.s. 01/01/1988 31/12/1993 -22060093 01/01/1988 31/12/1993 LIBEN Cider, perry, mead and other fermented beverages and mixtures of fermented beverages and non-alcoholic beverages, non-sparkling, in containers holding =< 2 l, n.e.s. 01/01/1988 31/12/1993 -22060099 01/01/1988 31/12/1993 LIBEN Cider, perry, mead and other fermented beverages and mixtures of fermented beverages and non-alcoholic beverages, non-sparkling, in containers holding > 2 l, n.e.s. 01/01/1988 31/12/1993 -2207 01/01/1988 31/12/2500 LIBEN Undenatured ethyl alcohol of an alcoholic strength of >= 80%; ethyl alcohol and other spirits, denatured, of any strength 01/01/1988 31/12/2500 -220710 01/01/1988 31/12/2500 LIBEN Undenatured ethyl alcohol, of actual alcoholic strength of >= 80% 01/01/1988 31/12/2500 -22071000 01/01/1988 31/12/2500 LIBEN Undenatured ethyl alcohol, of actual alcoholic strength of >= 80% 01/01/1988 31/12/2500 -220720 01/01/1988 31/12/2500 LIBEN Denatured ethyl alcohol and other spirits of any strength 01/01/1988 31/12/2500 -22072000 01/01/1988 31/12/2500 LIBEN Denatured ethyl alcohol and other spirits of any strength 01/01/1988 31/12/2500 -2207S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2207 and SITC section 5 01/01/1997 31/12/2500 -2207S512 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2207 and SITC group 512 01/01/1997 31/12/2500 -2208 01/01/1988 31/12/2500 LIBEN Undenatured ethyl alcohol of an alcoholic strength of < 80%; spirits, liqueurs and other spirituous beverages (excl. compound alcoholic preparations of a kind used for the manufacture of beverages) 01/01/1988 31/12/2500 -220810 01/01/1988 31/12/1995 LIBEN Compound alcoholic preparations of a kind used for the manufacture of beverages 01/01/1988 31/12/1995 -22081000 01/01/1993 31/12/1995 LIBEN Compound alcoholic preparations of a kind used for the manufacture of beverages 01/01/1993 31/12/1995 -22081010 01/01/1988 31/12/1992 LIBEN Aromatic bitters, of an alcoholic strength of >= 44.2 % but =< 49.2 % vol, containing 1.5 % to 6 % of gentian, spices and other ingredients and 4 % to 10 % sugar, in containers holding =< 0.5 l 01/01/1988 31/12/1992 -22081090 01/01/1988 31/12/1992 LIBEN Compound alcoholic preparations for the manufacture of beverages (excl. aromatic bitters, of an alcoholic strength of >= 44.2 % but =< 49.2 % vol, containing 1.5 % to 6 % of gentian, spices and other ingredients and 4 % to 10 % sugar, in containers holding =< 0.5 l) 01/01/1988 31/12/1992 -220820 01/01/1988 31/12/2500 LIBEN Spirits obtained by distilling grape wine or grape marc 01/01/1988 31/12/2500 -22082010 01/01/1988 31/12/1991 LIBEN Spirits obtained by distilling grape wine or grape marc, in containers holding =< 2 l 01/01/1988 31/12/1991 -22082011 01/01/1992 31/12/1993 LIBEN Cognac and armagnac, in containers holding =< 2 l 01/01/1992 31/12/1993 -22082012 01/01/1994 31/12/2500 LIBEN Cognac, in containers holding <= 2 l 01/01/1994 31/12/2500 -22082014 01/01/1994 31/12/2500 LIBEN Armagnac, in containers holding <= 2 l 01/01/1994 31/12/2500 -22082016 01/01/2020 31/12/2500 LIBEN Brandy de Jerez, in containers holding <= 2 l 01/01/2020 31/12/2500 -22082018 01/01/2020 31/12/2500 LIBEN Brandy/Weinbrand, in containers holding <= 2 l (excl. Brandy de Jerez and Armagnac) 01/01/2020 31/12/2500 -22082019 01/01/1992 31/12/1993 LIBEN Spirits obtained by distilling grape wine or grape marc, in containers holding =< 2 l (excl. cognac and armagnac) 01/01/1992 31/12/1993 -22082019 01/01/2020 31/12/2500 LIBEN Spirits obtained by distilling grape wine, in containers holding <= 2 l (excl. Cognac, Armagnac and Brandy/Weinbrand) 01/01/2020 31/12/2500 -22082026 01/01/1994 31/12/2500 LIBEN Grappa, in containers holding <= 2 l 01/01/1994 31/12/2500 -22082027 01/01/1996 31/12/2019 LIBEN Brandy de Jerez in containers holding <= 2 l 01/01/1996 31/12/2019 -22082028 01/01/1994 31/12/1995 LIBEN Spirits obtained by distilling grape wine or grape marc, in containers holding <= 2 l (excl. Cognac, Armagnac and Grappa) 01/01/1994 31/12/1995 -22082028 01/01/2020 31/12/2500 LIBEN Spirits obtained by distilling grape marc, in containers holding <= 2 l (excl. Grappa) 01/01/2020 31/12/2500 -22082029 01/01/1996 31/12/2019 LIBEN Spirits obtained by distilling grape wine or grape marc, in containers holding <= 2 l (excl. Cognac, Armagnac, Grappa and Brandy de Jerez) 01/01/1996 31/12/2019 -22082040 01/01/1994 31/12/2019 LIBEN Raw distillate, in containers holding > 2 l 01/01/1994 31/12/2019 -22082062 01/01/1994 31/12/2500 LIBEN Cognac, in containers holding > 2 l 01/01/1994 31/12/2500 -22082064 01/01/1994 31/12/2019 LIBEN Armagnac, in containers holding > 2 l 01/01/1994 31/12/2019 -22082066 01/01/2020 31/12/2500 LIBEN Brandy/Weinbrand in containers holding > 2 l 01/01/2020 31/12/2500 -22082069 01/01/2020 31/12/2500 LIBEN Spirits obtained by distilling grape wine, in containers holding > 2 l (incl. Armagnac, excl. Cognac and Brandy/Weinbrand) 01/01/2020 31/12/2500 -22082086 01/01/1994 31/12/2500 LIBEN Grappa, in containers holding > 2 l 01/01/1994 31/12/2500 -22082087 01/01/1996 31/12/2019 LIBEN Brandy de Jerez in containers holding > 2 l 01/01/1996 31/12/2019 -22082088 01/01/1994 31/12/1995 LIBEN Spirits obtained by distilling grape wine or grape marc, in containers holding > 2 l (excl. Cognac, Armagnac and Grappa) 01/01/1994 31/12/1995 -22082088 01/01/2020 31/12/2500 LIBEN Spirits obtained by distilling grape marc, in containers holding > 2 l (excl. Grappa) 01/01/2020 31/12/2500 -22082089 01/01/1996 31/12/2019 LIBEN Spirits obtained by distilling grape wine or grape marc, in containers holding > 2 l (excl. raw distillate, Cognac, Armagnac, Grappa and Brandy de Jerez) 01/01/1996 31/12/2019 -22082090 01/01/1988 31/12/1991 LIBEN Spirits obtained by distilling grape wine or grape marc, in containers holding > 2 l 01/01/1988 31/12/1991 -22082091 01/01/1992 31/12/1993 LIBEN Cognac and armagnac, in containers holding > 2 l 01/01/1992 31/12/1993 -22082099 01/01/1992 31/12/1993 LIBEN Spirits obtained by distilling grape wine or grape marc, in containers holding > 2 l (excl. cognac and armagnac) 01/01/1992 31/12/1993 -220830 01/01/1988 31/12/2500 LIBEN Whiskies 01/01/1988 31/12/2500 -22083011 01/01/1988 31/12/2500 LIBEN Bourbon whiskey, in containers holding <= 2 l 01/01/1988 31/12/2500 -22083019 01/01/1988 31/12/2500 LIBEN Bourbon whiskey, in containers holding > 2 l 01/01/1988 31/12/2500 -22083030 01/01/2010 31/12/2500 LIBEN Single malt Scotch whisky 01/01/2010 31/12/2500 -22083031 01/01/1994 31/12/1994 LIBEN Pure malt whisky, in containers holding =< 2 l 01/01/1994 31/12/1994 -22083032 01/01/1995 31/12/2009 LIBEN Single malt Scotch whisky, in containers holding <= 2 l 01/01/1995 31/12/2009 -22083038 01/01/1995 31/12/2009 LIBEN Single malt Scotch whisky, in containers holding > 2 l 01/01/1995 31/12/2009 -22083039 01/01/1994 31/12/1994 LIBEN Pure malt whisky, in containers holding > 2 l 01/01/1994 31/12/1994 -22083041 01/01/2010 31/12/2500 LIBEN Blended malt Scotch whisky, in containers holding <= 2 l 01/01/2010 31/12/2500 -22083049 01/01/2010 31/12/2500 LIBEN Blended malt Scotch whisky, in containers holding > 2 l 01/01/2010 31/12/2500 -22083051 01/01/1994 31/12/1994 LIBEN Blended whisky, in containers holding =< 2 l 01/01/1994 31/12/1994 -22083052 01/01/1995 31/12/2009 LIBEN Blended Scotch whisky, in containers holding <= 2 l 01/01/1995 31/12/2009 -22083058 01/01/1995 31/12/2009 LIBEN Blended Scotch whisky, in containers holding > 2 l 01/01/1995 31/12/2009 -22083059 01/01/1994 31/12/1994 LIBEN Blended whisky, in containers holding > 2 l 01/01/1994 31/12/1994 -22083061 01/01/2010 31/12/2500 LIBEN Single grain and blended grain Scotch whisky, in containers holding <= 2 l 01/01/2010 31/12/2500 -22083069 01/01/2010 31/12/2500 LIBEN Single grain and blended grain Scotch whisky, in containers holding > 2 l 01/01/2010 31/12/2500 -22083071 01/01/2010 31/12/2500 LIBEN Scotch whisky, in containers holding <= 2 l (other than single malt, blended malt, single grain and blended grain whisky) 01/01/2010 31/12/2500 -22083072 01/01/1995 31/12/2009 LIBEN Scotch whisky, in containers holding <= 2 l (other than single malt whisky and blended whisky) 01/01/1995 31/12/2009 -22083078 01/01/1995 31/12/2009 LIBEN Scotch whisky, in containers holding > 2 l (other than single malt whisky and blended whisky) 01/01/1995 31/12/2009 -22083079 01/01/2010 31/12/2500 LIBEN Scotch whisky, in containers holding > 2 l (other than single malt, blended malt, single grain and blended grain whisky) 01/01/2010 31/12/2500 -22083081 01/01/1994 31/12/1994 LIBEN Whisky, in containers holding =< 2 l (excl. bourbon, pure malt whisky and blended whisky) 01/01/1994 31/12/1994 -22083082 01/01/1995 31/12/2500 LIBEN Whisky, in containers holding <= 2 l (other than Bourbon whiskey and Scotch whisky) 01/01/1995 31/12/2500 -22083088 01/01/1995 31/12/2500 LIBEN Whisky, in containers holding > 2 l (other than Bourbon whiskey and Scotch whisky) 01/01/1995 31/12/2500 -22083089 01/01/1994 31/12/1994 LIBEN Whisky, in containers holding > 2 l (excl. bourbon, pure malt whisky and blended whisky) 01/01/1994 31/12/1994 -22083091 01/01/1988 31/12/1993 LIBEN Whiskey, in containers holding =< 2 l (excl. bourbon) 01/01/1988 31/12/1993 -22083099 01/01/1988 31/12/1993 LIBEN Whiskey, in containers holding > 2 l (excl. bourbon) 01/01/1988 31/12/1993 -220840 01/01/1988 31/12/2500 LIBEN Rum and other spirits obtained by distilling fermented sugar-cane products 01/01/1988 31/12/2500 -22084010 01/01/1988 31/12/1997 LIBEN Rum and taffia, in containers holding <= 2 l 01/01/1988 31/12/1997 -22084011 01/01/1998 31/12/2500 LIBEN Rum with a content of volatile substances (other than ethyl and methyl alcohol) of >= 225 g/hl of pure alcohol "with a 10% tolerance", in containers holding <= 2 l 01/01/1998 31/12/2500 -22084031 01/01/1998 31/12/2500 LIBEN Rum and other spirits obtained by distilling fermented sugar-cane products, of a value > 7,9 €/l of pure alcohol, in containers holding <= 2 l (excl. rum with a content of volatile substances [other than ethyl and methyl alcohol] of >= 225 g/hl of pure alcohol "with a 10% tolerance") 01/01/1998 31/12/2500 -22084039 01/01/1998 31/12/2500 LIBEN Rum and other spirits obtained by distilling fermented sugar-cane products, of a value <= 7,9 €/l of pure alcohol, in containers holding <= 2 l (excl. rum with a content of volatile substances [other than ethyl and methyl alcohol] of >= 225 g/hl of pure alcohol "with a 10% tolerance") 01/01/1998 31/12/2500 -22084051 01/01/1998 31/12/2500 LIBEN Rum with a content of volatile substances (other than ethyl and methyl alcohol) of >= 225 g/hl of pure alcohol "with a 10% tolerance", in containers holding > 2 l 01/01/1998 31/12/2500 -22084090 01/01/1988 31/12/1997 LIBEN Rum and taffia, in containers holding > 2 l 01/01/1988 31/12/1997 -22084091 01/01/1998 31/12/2500 LIBEN Rum and other spirits obtained by distilling fermented sugar-cane products, of a value > 2 €/l of pure alcohol, in containers holding > 2 l (excl. rum with a content of volatile substances [other than ethyl and methyl alcohol] of >= 225 g/hl of pure alcohol "with a 10% tolerance") 01/01/1998 31/12/2500 -22084099 01/01/1998 31/12/2500 LIBEN Rum and other spirits obtained by distilling fermented sugar-cane products, of a value <= 2 €/l of pure alcohol, in containers holding > 2 l (excl. rum with a content of volatile substances [other than ethyl and methyl alcohol] of >= 225 g/hl of pure alcohol "with a 10% tolerance") 01/01/1998 31/12/2500 -220850 01/01/1988 31/12/2500 LIBEN Gin and Geneva 01/01/1988 31/12/2500 -22085011 01/01/1988 31/12/2500 LIBEN Gin, in containers holding <= 2 l 01/01/1988 31/12/2500 -22085019 01/01/1988 31/12/2500 LIBEN Gin, in containers holding > 2 l 01/01/1988 31/12/2500 -22085091 01/01/1988 31/12/2500 LIBEN Geneva, in containers holding <= 2 l 01/01/1988 31/12/2500 -22085099 01/01/1988 31/12/2500 LIBEN Geneva, in containers holding > 2 l 01/01/1988 31/12/2500 -220860 01/01/1996 31/12/2500 LIBEN Vodka 01/01/1996 31/12/2500 -22086011 01/01/1996 31/12/2500 LIBEN Vodka of an alcoholic strength of <= 45,4% vol, in containers holding <= 2 l 01/01/1996 31/12/2500 -22086019 01/01/1996 31/12/2500 LIBEN Vodka of an alcoholic strength of <= 45,4% vol, in containers holding > 2 l 01/01/1996 31/12/2500 -22086091 01/01/1996 31/12/2500 LIBEN Vodka of an alcoholic strength of > 45,4% vol, in containers holding <= 2 l 01/01/1996 31/12/2500 -22086099 01/01/1996 31/12/2500 LIBEN Vodka of an alcoholic strength of > 45,4% vol, in containers holding > 2 l 01/01/1996 31/12/2500 -220870 01/01/1996 31/12/2500 LIBEN Liqueurs and cordials 01/01/1996 31/12/2500 -22087010 01/01/1996 31/12/2500 LIBEN Liqueurs and cordials, in containers holding <= 2 l 01/01/1996 31/12/2500 -22087090 01/01/1996 31/12/2500 LIBEN Liqueurs and cordials, in containers holding > 2 l 01/01/1996 31/12/2500 -220890 01/01/1988 31/12/2500 LIBEN Ethyl alcohol of an alcoholic strength of < 80% vol, not denatured; spirits and other spirituous beverages (excl. compound alcoholic preparations of a kind used for the manufacture of beverages, spirits obtained by distilling grape wine or grape marc, whiskies, rum and other spirits obtained by distilling fermented sugar-cane products, gin, geneva, vodka, liqueurs and cordials) 01/01/1988 31/12/2500 -22089011 01/01/1988 31/12/2500 LIBEN Arrack, in containers holding <= 2 l 01/01/1988 31/12/2500 -22089019 01/01/1988 31/12/2500 LIBEN Arrack, in containers holding > 2 l 01/01/1988 31/12/2500 -22089031 01/01/1988 31/12/1995 LIBEN Vodka, of an alcoholic strength of <= 45,4% vol, in containers holding <= 2 l 01/01/1988 31/12/1995 -22089033 01/01/1988 31/12/2500 LIBEN Plum, pear or cherry spirit, in containers holding <= 2 l 01/01/1988 31/12/2500 -22089035 01/01/1994 31/12/1995 LIBEN Vodka of an alcoholic strength of <= 45,4% vol, in containers holding > 2 l 01/01/1994 31/12/1995 -22089038 01/01/1994 31/12/2500 LIBEN Plum, pear or cherry spirit, in containers holding > 2 l 01/01/1994 31/12/2500 -22089039 01/01/1988 31/12/1993 LIBEN Vodka, of an alcoholic strength of =< 45.4 % vol, plum, pear or cherry spirit, in containers holding > 2 l 01/01/1988 31/12/1993 -22089041 01/01/1994 31/12/2500 LIBEN Ouzo, in containers holding <= 2 l 01/01/1994 31/12/2500 -22089045 01/01/1994 31/12/2500 LIBEN Calvados, in containers holding <= 2 l 01/01/1994 31/12/2500 -22089048 01/01/1994 31/12/2500 LIBEN Spirits distilled from fruit, in containers holding <= 2 l (excl. plum, pear or cherry spirit and Calvados) 01/01/1994 31/12/2500 -22089051 01/01/1988 31/12/1993 LIBEN Spirits distilled from fruit, in containers holding =< 2 l (excl. plum, pear or cherry) 01/01/1988 31/12/1993 -22089052 01/01/1994 31/12/2011 LIBEN Korn, in containers holding <= 2 l 01/01/1994 31/12/2011 -22089053 01/01/1988 31/12/1993 LIBEN Spirits, in containers holding =< 2 l (excl. spirits obtained by distilling grape wine or grape marc, whiskey, rum, taffia, gin, geneva, arrack, vodka of an alcoholic strength of =< 45.4 % vol and spirits distilled from fruit) 01/01/1988 31/12/1993 -22089054 01/01/2003 31/12/2500 LIBEN Tequila in containers holding <= 2 l 01/01/2003 31/12/2500 -22089055 01/01/1988 31/12/1993 LIBEN Liqueurs in containers holding =< 2 l 01/01/1988 31/12/1993 -22089056 01/01/2003 31/12/2011 LIBEN Spirits in containers holding <= 2 l (excl. spirits distilled from grape wine or grape marc, whisky, rum and other spirits obtained by distilling fermented sugar-cane products, gin, geneva, arrack, vodka, liqueurs and cordials, ouzo, spirits distilled from fruit, korn and tequila) 01/01/2003 31/12/2011 -22089056 01/01/2012 31/12/2500 LIBEN Spirits in containers holding <= 2 l (excl. spirits distilled from grape wine or grape marc, whisky, rum and other spirits obtained by distilling fermented sugar-cane products, gin, geneva, arrack, vodka, liqueurs and cordials, ouzo, spirits distilled from fruit, and tequila) 01/01/2012 31/12/2500 -22089057 01/01/1996 31/12/2002 LIBEN Branntwein, in Behältnissen mit einem Inhalt von <= 2 l (ausg. Branntwein aus Wein oder Traubentrester, Whisky, Rum und Taffia, Gin und Genever, Arrak, Wodka, Likör, Ouzo sowie Obstbranntwein und Korn) 01/01/1996 31/12/2002 -22089058 01/01/1994 31/12/1995 LIBEN Spirits in containers holding <= 2 l (excl. spirits distilled from grape wine or grape marc, whisky, rum and taffia, gin and geneva, arrak, vodka of an alcoholic strength of <= 45,4% vol, and spirits distilled from fruit and korn) 01/01/1994 31/12/1995 -22089059 01/01/1988 31/12/1993 LIBEN Spirituous beverages, in containers holding =< 2 l (excl. spirits and liqueurs) 01/01/1988 31/12/1993 -22089065 01/01/1994 31/12/1995 LIBEN Liqueurs in containers holding <= 2 l 01/01/1994 31/12/1995 -22089069 01/01/1994 31/12/2500 LIBEN Spirituous beverages, in containers holding <= 2 l (excl. ouzo, spirits, liqueurs and cordials) 01/01/1994 31/12/2500 -22089071 01/01/1988 31/12/2500 LIBEN Spirits distilled from fruit, in containers holding > 2 l (excl. spirits distilled from grape wine or grape marc, plum, pear or cherry) 01/01/1988 31/12/2500 -22089073 01/01/1988 31/12/1995 LIBEN Spirits, in containers holding > 2 l (excl. spirits obtained by distilling grape wine or grape marc, whiskey, rum, taffia, gin, geneva, arrack, vodka of an alcoholic strength of <= 45,4% vol and spirits distilled from fruit) 01/01/1988 31/12/1995 -22089074 01/01/1996 31/12/2002 LIBEN Branntwein, in Behältnissen mit einem Inhalt von > 2 l (ausg. Branntwein aus Wein oder Traubentrester, Whisky, Rum und Taffia, Gin und Genever, Arrak, Wodka, Likör, Ouzo sowie Obstbranntwein) 01/01/1996 31/12/2002 -22089075 01/01/2003 31/12/2500 LIBEN Tequila in containers holding > 2 l 01/01/2003 31/12/2500 -22089077 01/01/2003 31/12/2500 LIBEN Spirits in containers holding > 2 l (excl. spirits obtained by distilling grape wine or grape marc, whiskies, rum and other spirits obtained by distilling fermented sugar-cane products, gin, geneva, arrack, vodka, liqueurs and cordials, ouzo, spirits distilled from fruit and tequila) 01/01/2003 31/12/2500 -22089078 01/01/1996 31/12/2500 LIBEN Spirituous beverages, in containers holding > 2 l (excl. spirits, liqueurs and cordials and ouzo) 01/01/1996 31/12/2500 -22089079 01/01/1988 31/12/1995 LIBEN Liqueurs and other spirituous beverages, in containers holding > 2 l (excl. spirits obtained by distilling grape wine or grape marc, whiskey, rum, taffia, gin, geneva, arrack, vodka of an alcoholic strength of <= 45,4% vol and spirits distilled from fruit and liqueurs) 01/01/1988 31/12/1995 -22089091 01/01/1988 31/12/2500 LIBEN Undenatured ethyl alcohol, of an alcoholic strength of < 80% vol, in containers holding <= 2 l 01/01/1988 31/12/2500 -22089099 01/01/1988 31/12/2500 LIBEN Undenatured ethyl alcohol, of an alcoholic strength of < 80% vol, in containers holding > 2 l 01/01/1988 31/12/2500 -2209 01/01/1988 31/12/2500 LIBEN Vinegar, fermented vinegar and substitutes for vinegar obtained from acetic acid 01/01/1988 31/12/2500 -220900 01/01/1988 31/12/2500 LIBEN Vinegar, fermented vinegar and substitutes for vinegar obtained from acetic acid 01/01/1988 31/12/2500 -22090011 01/01/1988 31/12/2500 LIBEN Wine vinegar, in containers holding <= 2 l 01/01/1988 31/12/2500 -22090019 01/01/1988 31/12/2500 LIBEN Wine vinegar, in containers holding > 2 l 01/01/1988 31/12/2500 -22090091 01/01/1988 31/12/2500 LIBEN Vinegar and substitutes for vinegar obtained from acetic acid, in containers holding <= 2 l (excl. wine vinegar) 01/01/1988 31/12/2500 -22090099 01/01/1988 31/12/2500 LIBEN Vinegar and substitutes for vinegar obtained from acetic acid, in containers holding > 2 l (excl. wine vinegar) 01/01/1988 31/12/2500 -22CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 22 01/01/2002 31/12/2500 -22CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 22 01/01/2002 31/12/2500 -22CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 22 01/01/2002 31/12/2500 -22MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -22MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -22MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -22SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 22 01/01/1988 31/12/2500 -22SSS0 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 22 and SITC section 0 01/01/1997 31/12/2500 -22SSS098 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 22 and SITC group 098 01/01/1997 31/12/2500 -22SSS1 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 22 and SITC section 1 01/01/1997 31/12/2500 -22SSS111 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 22 and SITC group 111 01/01/1997 31/12/2500 -22SSS112 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 22 and SITC group 112 01/01/1997 31/12/2500 -22SSS5 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 22 and SITC section 5 01/01/1988 31/12/2500 -22SSS512 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 22 and SITC group 512 01/01/1988 31/12/2500 -22SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 22 and SITC section 9 01/01/1988 31/12/1996 -22SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 22 and SITC section 9 01/01/1997 31/12/2500 -22SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 22 and SITC group 999 01/01/1988 31/12/1996 -22SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 22 and SITC group 999 01/01/1997 31/12/2500 -23 01/01/1988 31/12/2500 LIBEN RESIDUES AND WASTE FROM THE FOOD INDUSTRIES; PREPARED ANIMAL FODDER 01/01/1988 31/12/2500 -2301 01/01/1988 31/12/2500 LIBEN Flours, meals and pellets, of meat or meat offal, of fish or of crustaceans, molluscs or other aquatic invertebrates, unfit for human consumption; greaves 01/01/1988 31/12/2500 -230110 01/01/1988 31/12/2500 LIBEN Flours, meals and pellets, of meat or offal, unfit for human consumption; greaves 01/01/1988 31/12/2500 -23011000 01/01/1988 31/12/2500 LIBEN Flours, meals and pellets, of meat or offal, unfit for human consumption; greaves 01/01/1988 31/12/2500 -230120 01/01/1988 31/12/2500 LIBEN Flours, meals and pellets of fish or crustaceans, molluscs or other aquatic invertebrates, unfit for human consumption 01/01/1988 31/12/2500 -23012000 01/01/1988 31/12/2500 LIBEN Flours, meals and pellets of fish or crustaceans, molluscs or other aquatic invertebrates, unfit for human consumption 01/01/1988 31/12/2500 -2302 01/01/1988 31/12/2500 LIBEN Bran, sharps and other residues, whether or not in the form of pellets, derived from the sifting, milling or other working of cereals or of leguminous plants 01/01/1988 31/12/2500 -230210 01/01/1988 31/12/2500 LIBEN Bran, sharps and other residues of maize "corn", whether or not in the form of pellets, derived from sifting, milling or other working 01/01/1988 31/12/2500 -23021010 01/01/1988 31/12/2500 LIBEN Bran, sharps and other residues of maize, whether or not in the form of pellets, derived from sifting, milling or other working, with starch content of <= 35% 01/01/1988 31/12/2500 -23021090 01/01/1988 31/12/2500 LIBEN Bran, sharps and other residues of maize, whether or not in the form of pellets, derived from sifting, milling or other working, with starch content of > 35% 01/01/1988 31/12/2500 -230220 01/01/1988 31/12/2006 LIBEN Bran, sharps and other residues of rice, whether or not in the form of pellets, derived from sifting, milling or other working 01/01/1988 31/12/2006 -23022010 01/01/1988 31/12/2006 LIBEN Bran, sharps and other residues of rice, whether or not in the form of pellets, derived from sifting, milling or other working, with starch content of <= 35% 01/01/1988 31/12/2006 -23022090 01/01/1988 31/12/2006 LIBEN Bran, sharps and other residues of rice, whether or not in the form of pellets, derived from sifting, milling or other working, with starch content of > 35% 01/01/1988 31/12/2006 -230230 01/01/1988 31/12/2500 LIBEN Bran, sharps and other residues of wheat, whether or not in the form of pellets, derived from sifting, milling or other working 01/01/1988 31/12/2500 -23023010 01/01/1988 31/12/2500 LIBEN Bran, sharps and other residues, whether or not in the form of pellets, derived from the sifting, milling or other working of wheat, with a starch content of <= 28% by weight, and of which the proportion that passes through a sieve with an aperture of 0,2 mm is <= 10% by weight or alternatively the proportion that passes through the sieve has an ash content, calculated on the dry product, of >= 1,5% by weight 01/01/1988 31/12/2500 -23023090 01/01/1988 31/12/2500 LIBEN Bran, sharps and other residues of wheat, whether or not in the form of pellets, derived from sifting, milling or other working (excl. those with starch content of <= 28%, provided that either <= 10% passes through a sieve with an aperture of 0,2 mm or if > 10% passes through, the proportion that passes through the sieve has an ash content, calculated on the dry product, of >= 1,5% by weight) 01/01/1988 31/12/2500 -230240 01/01/1988 31/12/2500 LIBEN Bran, sharps and other residues of cereals, whether or not in the form of pellets, derived from sifting, milling or other working (excl. maize and wheat) 01/01/1988 31/12/2500 -23024002 01/01/2007 31/12/2500 LIBEN Bran, sharps and other residues of rice, whether or not in the form of pellets, derived from sifting, milling or other working, with starch content of <= 35% 01/01/2007 31/12/2500 -23024008 01/01/2007 31/12/2500 LIBEN Bran, sharps and other residues of rice, whether or not in the form of pellets, derived from sifting, milling or other working, with starch content of > 35% 01/01/2007 31/12/2500 -23024010 01/01/1988 31/12/2500 LIBEN Bran, sharps and other residues, in the form of pellets or not, derived from the sifting, milling or other working of cereals, with a starch content <= 28% by weight, and of which <= 10% by weight passes through a sieve with an aperture of 0,2 mm or, if > 10% passes through, the proportion that passes through the sieve has an ash content, calculated on the dry product, of >= 1,5% by weight (excl. bran, sharps and other residues of maize, rice or wheat) 01/01/1988 31/12/2500 -23024090 01/01/1988 31/12/2500 LIBEN Bran, sharps and other residues of cereals, whether or not in the form of pellets, derived from sifting, milling or other working (excl. those of maize, rice and wheat and those with a starch content of <= 28%, provided that either <=10% passes through a sieve with an aperture of 0,2 mm or, if > 10% passes through, the proportion that passes through has an ash content of >= 1,5%) 01/01/1988 31/12/2500 -230250 01/01/1988 31/12/2500 LIBEN Bran, sharps and other residues of leguminous plants, whether or not in the form of pellets, derived from sifting, milling or other working 01/01/1988 31/12/2500 -23025000 01/01/1988 31/12/2500 LIBEN Bran, sharps and other residues of leguminous plants, whether or not in the form of pellets, derived from sifting, milling or other working 01/01/1988 31/12/2500 -2303 01/01/1988 31/12/2500 LIBEN Residues of starch manufacture and similar residues, beet-pulp, bagasse and other waste of sugar manufacture, brewing or distilling dregs and waste, whether or not in the form of pellets 01/01/1988 31/12/2500 -230310 01/01/1988 31/12/2500 LIBEN Residues of starch manufacture and similar residues 01/01/1988 31/12/2500 -23031011 01/01/1988 31/12/2500 LIBEN Residues from the manufacture of starch from maize, of a protein content, calculated on the dry product, of > 40% by weight (excl. concentrated steeping liquors) 01/01/1988 31/12/2500 -23031019 01/01/1988 31/12/2500 LIBEN Residues from the manufacture of starch from maize, of a protein content, calculated on the dry product, of <= 40% by weight (excl. concentrated steeping liquors) 01/01/1988 31/12/2500 -23031090 01/01/1988 31/12/2500 LIBEN Residues of starch manufacture and similar residues, incl. concentrated steeping liquors (excl. of starch from maize) 01/01/1988 31/12/2500 -230320 01/01/1988 31/12/2500 LIBEN Beet-pulp, bagasse and other waste of sugar manufacture 01/01/1988 31/12/2500 -23032010 01/01/2005 31/12/2500 LIBEN Beet-pulp 01/01/2005 31/12/2500 -23032011 01/01/1988 31/12/2004 LIBEN Beet-pulp having a dry matter content of >= 87% by weight 01/01/1988 31/12/2004 -23032013 01/01/1988 31/12/1992 LIBEN Beet pulp, of dry matter content of >= 18 % but < 87 % 01/01/1988 31/12/1992 -23032018 01/01/1993 31/12/2004 LIBEN Beet-pulp having a dry matter content of < 87% by weight 01/01/1993 31/12/2004 -23032019 01/01/1988 31/12/1992 LIBEN Beet pulp, of dry matter content of < 18 % 01/01/1988 31/12/1992 -23032090 01/01/1988 31/12/2500 LIBEN Bagasse and other waste of sugar manufacture (excl. beet pulp) 01/01/1988 31/12/2500 -230330 01/01/1988 31/12/2500 LIBEN Brewing or distilling dregs and waste 01/01/1988 31/12/2500 -23033000 01/01/1988 31/12/2500 LIBEN Brewing or distilling dregs and waste 01/01/1988 31/12/2500 -2304 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of soya-bean oil 01/01/1988 31/12/2500 -230400 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of soya-bean oil 01/01/1988 31/12/2500 -23040000 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of soya-bean oil 01/01/1988 31/12/2500 -2305 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of groundnut oil 01/01/1988 31/12/2500 -230500 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of groundnut oil 01/01/1988 31/12/2500 -23050000 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of groundnut oil 01/01/1988 31/12/2500 -2306 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of vegetable fats or oils (excl. from soya-bean oil and groundnut oil) 01/01/1988 31/12/2500 -230610 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of cotton seeds 01/01/1988 31/12/2500 -23061000 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of cotton seeds 01/01/1988 31/12/2500 -230620 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of linseed 01/01/1988 31/12/2500 -23062000 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of linseed 01/01/1988 31/12/2500 -230630 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of sunflower seeds 01/01/1988 31/12/2500 -23063000 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of sunflower seeds 01/01/1988 31/12/2500 -230640 01/01/1988 31/12/2001 LIBEN Oil-cake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of rape or colza seeds 01/01/1988 31/12/2001 -23064000 01/01/1988 31/12/2001 LIBEN Oil-cake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of rape or colza seeds 01/01/1988 31/12/2001 -230641 01/01/2002 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of low erucic acid rape or colza seeds "yielding a fixed oil which has an erucic acid content of < 2% and yielding a solid component of glucosinolates of < 30 micromoles/g" 01/01/2002 31/12/2500 -23064100 01/01/2002 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of low erucic acid rape or colza seeds "yielding a fixed oil which has an erucic acid content of < 2% and yielding a solid component of glucosinolates of < 30 micromoles/g" 01/01/2002 31/12/2500 -230649 01/01/2002 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of high erucic acid rape or colza seeds "yielding a fixed oil which has an erucic acid content of >= 2% and yielding a solid component of glucosinolates of >= 30 micromoles/g" 01/01/2002 31/12/2500 -23064900 01/01/2002 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of high erucic acid rape or colza seeds "yielding a fixed oil which has an erucic acid content of >= 2% and yielding a solid component of glucosinolates of >= 30 micromoles/g" 01/01/2002 31/12/2500 -230650 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of coconut or copra 01/01/1988 31/12/2500 -23065000 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of coconut or copra 01/01/1988 31/12/2500 -230660 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of palm nuts or kernels 01/01/1988 31/12/2500 -23066000 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of palm nuts or kernels 01/01/1988 31/12/2500 -230670 01/01/1996 31/12/2006 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of vegetable fats or oils from maize "corn" germ 01/01/1996 31/12/2006 -23067000 01/01/1996 31/12/2006 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of vegetable fats or oils from maize "corn" germ 01/01/1996 31/12/2006 -230690 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of vegetable fats or oils (excl. of cotton seeds, linseed, sunflower seeds, rape or colza seeds, coconut or copra, palm nuts or kernels, or from the extraction of soya-bean oil or groundnut oil) 01/01/1988 31/12/2500 -23069005 01/01/2007 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of vegetable fats or oils from maize "corn" germ 01/01/2007 31/12/2500 -23069011 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues from the extraction of olive oil, whether or not ground or in the form of pellets, containing <= 3% olive oil 01/01/1988 31/12/2500 -23069019 01/01/1988 31/12/2500 LIBEN Oilcake and other solid residues from the extraction of olive oil, whether or not ground or in the form of pellets, containing > 3% olive oil 01/01/1988 31/12/2500 -23069090 01/01/1997 31/12/2500 LIBEN Oilcake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of vegetable fats or oils (excl. of cotton seeds, linseed, sunflower seeds, rape or colza seeds, coconut or copra, palm nuts or kernels, germ of maize, and from the extraction of olive, soya-bean and groundnut oil) 01/01/1997 31/12/2500 -23069091 01/01/1988 31/12/1995 LIBEN Oil-cake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of germ of maize 01/01/1988 31/12/1995 -23069093 01/01/1988 31/12/1996 LIBEN Oil-cake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of sesame seeds 01/01/1988 31/12/1996 -23069099 01/01/1988 31/12/1996 LIBEN Oil-cake and other solid residues, whether or not ground or in the form of pellets, resulting from the extraction of vegetable fats or oils (excl. of cotton seeds, linseed, sunflower seeds, rape or colza seeds, coconut or copra, palm nuts or kernels, germ of maize, sesame seeds, and from the extraction of olive, soya-bean and ground-nut oil) 01/01/1988 31/12/1996 -2306S0 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2306 and SITC section 0 01/01/1997 31/12/2500 -2306S081 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2306 and SITC group 081 01/01/1997 31/12/2500 -2307 01/01/1988 31/12/2500 LIBEN Wine lees; argol 01/01/1988 31/12/2500 -230700 01/01/1988 31/12/2500 LIBEN Wine lees; argol 01/01/1988 31/12/2500 -23070011 01/01/1988 31/12/2500 LIBEN Wine lees, having a total alcoholic strength of <= 7,9% mas and a dry matter content >= 25% by weight 01/01/1988 31/12/2500 -23070019 01/01/1988 31/12/2500 LIBEN Wine lees (excl. wine lees having a total alcoholic strength of <= 7,9% and a dry matter content of >= 25% by weight) 01/01/1988 31/12/2500 -23070090 01/01/1988 31/12/2500 LIBEN Argol 01/01/1988 31/12/2500 -2308 01/01/1988 31/12/2500 LIBEN Acorns, horse-chestnuts, marc and other vegetable materials and vegetable waste, vegetable residues and by-products of a kind used in animal feeding, whether or not in the form of pellets, n.e.s. 01/01/1988 31/12/2500 -230800 01/01/2002 31/12/2500 LIBEN Acorns, horse-chestnuts, marc and other vegetable materials and vegetable waste, vegetable residues and by-products of a kind used in animal feeding, whether or not in the form of pellets, n.e.s. 01/01/2002 31/12/2500 -23080011 01/01/2002 31/12/2500 LIBEN Grape marc, of a kind used in animal feeding, whether or not in the form of pellets, having a total alcoholic strength of <= 4,3% mas and a dry matter content of >= 40% by weight 01/01/2002 31/12/2500 -23080019 01/01/2002 31/12/2500 LIBEN Grape marc, of a kind used in animal feeding, whether or not in the form of pellets (excl. grape marc having a total alcoholic strength of <= 4,3% mas and a dry matter content of >= 40% by weight) 01/01/2002 31/12/2500 -23080040 01/01/2002 31/12/2500 LIBEN Acorns and horse-chestnuts and pomace or marc of fruit, for animal feeding, whether or not in the form of pellets (excl. grape marc) 01/01/2002 31/12/2500 -23080090 01/01/2002 31/12/2500 LIBEN Maize stalks, maize leaves, fruit peel and other vegetable materials, waste, residues and by-products for animal feeding, whether or not in the form of pellets, n.e.s. (excl. acorns, horse-chestnuts and pomace or marc of fruit) 01/01/2002 31/12/2500 -230810 01/01/1988 31/12/2001 LIBEN Acorns and horse-chestnuts for animal feeding, whether or not in the form of pellets 01/01/1988 31/12/2001 -23081000 01/01/1988 31/12/2001 LIBEN Acorns and horse-chestnuts for animal feeding, whether or not in the form of pellets 01/01/1988 31/12/2001 -230890 01/01/1988 31/12/2001 LIBEN Maize stalks, maize leaves, marc and other vegetable materials, waste, residues and by-products for animal feeding, whether or not in the form of pellets, n.e.s. (excl. acorns and horse-chestnuts) 01/01/1988 31/12/2001 -23089011 01/01/1988 31/12/2001 LIBEN Grape marc, of a kind used in animal feeding, whether or not in the form of pellets, having a total alcoholic strength by mass of <= 4,3% mas and a dry matter content of <= 40% by weight 01/01/1988 31/12/2001 -23089019 01/01/1988 31/12/2001 LIBEN Grape marc, of a kind used in animal feeding, whether or not in the form of pellets (excl. grape marc having a total alcoholic strength by mass of <= 4,3% mas and a dry matter content of <= 40% by weight) 01/01/1988 31/12/2001 -23089030 01/01/1988 31/12/2001 LIBEN Marc for animal feeding, whether or not in the form of pellets (excl. grape marc) 01/01/1988 31/12/2001 -23089090 01/01/1988 31/12/2001 LIBEN Maize stalks, maize leaves, fruit peel and other vegetable materials, waste, residues and by-products for animal feeding, whether or not in the form of pellets, n.e.s. (excl. acorns, horse-chestnuts and marc) 01/01/1988 31/12/2001 -2309 01/01/1988 31/12/2500 LIBEN Preparations of a kind used in animal feeding 01/01/1988 31/12/2500 -230910 01/01/1988 31/12/2500 LIBEN Dog or cat food, put up for retail sale 01/01/1988 31/12/2500 -23091011 01/01/1988 31/12/2500 LIBEN Dog or cat food, put up for retail sale, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup but containing no starch or no milk products or containing <= 10% starch and < 10% by weight of milk products 01/01/1988 31/12/2500 -23091013 01/01/1988 31/12/2500 LIBEN Dog or cat food, put up for retail sale, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup but containing no starch or containing <= 10% starch and >= 10% but < 50% by weight of milk products 01/01/1988 31/12/2500 -23091015 01/01/1988 31/12/2500 LIBEN Dog or cat food, put up for retail sale, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup but containing no starch or containing <= 10% starch and >= 50% but < 75% by weight of milk products 01/01/1988 31/12/2500 -23091019 01/01/1988 31/12/2500 LIBEN Dog or cat food, put up for retail sale, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup but containing no starch or containing <= 10% starch and >= 75% by weight of milk products 01/01/1988 31/12/2500 -23091031 01/01/1988 31/12/2500 LIBEN Dog or cat food, put up for retail sale, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup and containing > 10% but <= 30% of starch and no milk products or < 10% by weight of milk products 01/01/1988 31/12/2500 -23091033 01/01/1988 31/12/2500 LIBEN Dog or cat food, put up for retail sale, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup and containing > 10% but <= 30% of starch and >= 10% but < 50% by weight of milk products 01/01/1988 31/12/2500 -23091039 01/01/1988 31/12/2500 LIBEN Dog or cat food, put up for retail sale, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup and containing > 10% but <= 30% of starch and >= 50% by weight of milk products 01/01/1988 31/12/2500 -23091051 01/01/1988 31/12/2500 LIBEN Dog or cat food, put up for retail sale, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup and containing > 30% of starch and no milk products or < 10% by weight of milk products 01/01/1988 31/12/2500 -23091053 01/01/1988 31/12/2500 LIBEN Dog or cat food, put up for retail sale, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup and containing > 30% of starch and >= 10% but < 50% by weight of milk products 01/01/1988 31/12/2500 -23091059 01/01/1988 31/12/2500 LIBEN Dog or cat food, put up for retail sale, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup and containing > 30% of starch and >= 50% by weight of milk products 01/01/1988 31/12/2500 -23091070 01/01/1988 31/12/2500 LIBEN Dog or cat food put up for retail sale, containing no starch, glucose, maltodextrine or maltodextrine syrup, but containing milk products 01/01/1988 31/12/2500 -23091090 01/01/1988 31/12/2500 LIBEN Dog or cat food put up for retail sale, containing no starch, glucose, maltodextrine or maltodextrine syrup, nor milk products 01/01/1988 31/12/2500 -230990 01/01/1988 31/12/2500 LIBEN Preparations of a kind used in animal feeding (excl. dog or cat food put up for retail sale) 01/01/1988 31/12/2500 -23099010 01/01/1988 31/12/2500 LIBEN Fish or marine mammal solubles, to supplement feedingstuffs produced in the agricultural sector 01/01/1988 31/12/2500 -23099020 01/01/1997 31/12/2500 LIBEN Residues from the manufacture of starch from maize referred to in Additional Note 5 to chapter 23, of a kind used in animal feeding (excl. dog or cat food put up for retail sale) 01/01/1997 31/12/2500 -23099031 01/01/1988 31/12/1996 LIBEN Preparations for animal food, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup but containing no starch or no milk products or containing <= 10% starch and < 10% by weight of milk products (excl. dog or cat food put up for retail sale) 01/01/1988 31/12/1996 -23099031 01/01/1997 31/12/2500 LIBEN Preparations, incl. premixes, for animal food, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup but containing no starch or no milk products or containing <= 10% starch and < 10% by weight of milk products (excl. dog or cat food put up for retail sale) 01/01/1997 31/12/2500 -23099033 01/01/1988 31/12/2500 LIBEN Preparations, incl. premixes, for animal food, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup but containing no starch or containing <= 10% starch and >= 10% but < 50% by weight of milk products (excl. dog or cat food put up for retail sale) 01/01/1988 31/12/2500 -23099035 01/01/1988 31/12/2500 LIBEN Preparations, incl. premixes, for animal food, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup but containing no starch or containing <= 10% starch and >= 50% but < 75% by weight of milk products (excl. dog or cat food put up for retail sale) 01/01/1988 31/12/2500 -23099039 01/01/1988 31/12/2500 LIBEN Preparations, incl. premixes, for animal food, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup but containing no starch or containing <= 10% starch and >= 75% by weight of milk products (excl. dog or cat food put up for retail sale) 01/01/1988 31/12/2500 -23099041 01/01/1988 31/12/1996 LIBEN Preparations for animal food, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup and containing > 10% but <= 30% of starch and no milk products or < 10% by weight of milk products (excl. dog or cat food put up for retail sale) 01/01/1988 31/12/1996 -23099041 01/01/1997 31/12/2500 LIBEN Preparations, incl. premixes, for animal food, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup and containing > 10% but <= 30% of starch and no milk products or < 10% by weight of milk products (excl. dog or cat food put up for retail sale) 01/01/1997 31/12/2500 -23099043 01/01/1988 31/12/2500 LIBEN Preparations, incl. premixes, for animal food, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup and containing > 10% but <= 30% of starch and >= 10% but < 50% by weight of milk products (excl. dog or cat food put up for retail sale) 01/01/1988 31/12/2500 -23099049 01/01/1988 31/12/2500 LIBEN Preparations, incl. premixes, for animal food, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup and containing > 10% but <= 30% of starch and >= 50% by weight of milk products (excl. dog or cat food put up for retail sale) 01/01/1988 31/12/2500 -23099051 01/01/1988 31/12/2500 LIBEN Preparations, incl. premixes, for animal food, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup and containing > 30% of starch and no milk products or < 10% by weight of milk products (excl. dog or cat food put up for retail sale) 01/01/1988 31/12/2500 -23099053 01/01/1988 31/12/2500 LIBEN Preparations, incl. premixes, for animal food, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup and containing > 30% of starch and >= 10% but < 50% by weight of milk products (excl. dog or cat food put up for retail sale) 01/01/1988 31/12/2500 -23099059 01/01/1988 31/12/2500 LIBEN Preparations, incl. premixes, for animal food, containing glucose, glucose syrup, maltodextrine or maltodextrine syrup and containing > 30% of starch and >= 50% by weight of milk products (excl. dog or cat food put up for retail sale) 01/01/1988 31/12/2500 -23099070 01/01/1988 31/12/2500 LIBEN Preparations, incl. premixes, for animal food, containing no starch, glucose, maltodextrine or maltodextrine syrup, but containing milk products (excl. dog or cat food put up for retail sale) 01/01/1988 31/12/2500 -23099091 01/01/1988 31/12/2500 LIBEN Beef-pulp with added molasses of a kind used in animal feeding 01/01/1988 31/12/2500 -23099093 01/01/1994 31/12/2002 LIBEN Vormischungen von der zur Fütterung verwendeten Art, weder Stärke, Glucose, Glucosesirup, Maltodextrin, Maltodextrinsirup noch Milcherzeugnisse enthaltend 01/01/1994 31/12/2002 -23099095 01/01/1997 31/12/2011 LIBEN Preparations of a kind used in animal feeding, containing by weight >=49% of choline chloride, on an organic or inorganic base (excl. premixes) 01/01/1997 31/12/2011 -23099096 01/01/2012 31/12/2500 LIBEN Preparations of a kind used in animal feeding, containing no starch, glucose, glucose syrup, maltodextrine, maltodextrine syrup nor milk products (excl. dog or cat food put up for retail sale, fish or marine mammal solubles, residues from the manufacture of starch from maize referred to in Additional Note 5 to chapter 23, beet-pulp with added molasses, and premixes) 01/01/2012 31/12/2500 -23099097 01/01/1997 31/12/2002 LIBEN Zubereitungen von der zur Fütterung verwendeten Art, weder Stärke, Glucose, Glucosesirup, Maltodextrin, Maltodextrinsirup noch Milcherzeugnisse enthaltend (ausg. Hunde- und Katzenfutter in Aufmachungen für den Einzelverkauf, Solubles von Fischen oder Meeressäugetieren, Rückstände aus der Maisstärkegewinnung gemäß der Zusätzlichen Anmerkung 5 zu Kapitel 23, ausgelaugte, melassierte Rübenschnitzel und Vormischungen sowie Zubereitungen mit einem Gehalt an Cholinchlorid von >= 49 GHT, auf organischem oder anorganischem Trägerstoff) 01/01/1997 31/12/2002 -23099098 01/01/1994 31/12/1996 LIBEN Preparations of a kind used in animal feeding, containing no starch, glucose, glucose syrup, maltodextrine, maltodextrine syrup or milk products (excl. dog or cat food put up for retail sale, fish or marine mammal solubles, beet-pulp with added molasses and premixtures) 01/01/1994 31/12/1996 -23099099 01/01/1988 31/12/1993 LIBEN Preparations for animal food, containing no starch, glucose, maltodextrine or their syrups, nor milk products (excl. dog or cat food put up for retail sale, fish or marine mammal solubles and beet-pulp) 01/01/1988 31/12/1993 -23099099 01/01/2003 31/12/2011 LIBEN Preparations of a kind used in animal feeding, containing no starch, glucose, glucose syrup, maltodextrine, maltodextrine syrup nor milk products (excl. dog or cat food put up for retail sale, fish or marine mammal solubles, residues from the manufacture of starch from maize referred to in Additional Note 5 to chapter 23, beet-pulp with added molasses, preparations containing by weight >= 49% of choline chloride, on an organic or inorganic base and premixes) 01/01/2003 31/12/2011 -23CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 23 01/01/2002 31/12/2500 -23CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 23 01/01/2002 31/12/2500 -23CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 23 01/01/2002 31/12/2500 -23MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -23MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -23MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -23SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 23 01/01/1988 31/12/2500 -23SSS0 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 23 and SITC section 0 01/01/1988 31/12/2500 -23SSS081 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 23 and SITC group 081 01/01/1988 31/12/2500 -23SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 23 and SITC section 9 01/01/1988 31/12/1996 -23SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 23 and SITC section 9 01/01/1997 31/12/2500 -23SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 23 and SITC group 999 01/01/1988 31/12/1996 -23SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 23 and SITC group 999 01/01/1997 31/12/2500 -24 01/01/1988 31/12/2500 LIBEN TOBACCO AND MANUFACTURED TOBACCO SUBSTITUTES 01/01/1988 31/12/2500 -2401 01/01/1988 31/12/2500 LIBEN Unmanufactured tobacco; tobacco refuse 01/01/1988 31/12/2500 -240110 01/01/1988 31/12/2500 LIBEN Tobacco, unstemmed or unstripped 01/01/1988 31/12/2500 -24011010 01/01/1988 31/12/2008 LIBEN Flue-cured Virginia type tobacco, unstemmed or unstripped 01/01/1988 31/12/2008 -24011020 01/01/1988 31/12/2008 LIBEN Light air-cured Burley type tobacco, incl. Burley hybrids, unstemmed or unstripped 01/01/1988 31/12/2008 -24011030 01/01/1988 31/12/2008 LIBEN Light air-cured Maryland type tobacco, unstemmed or unstripped 01/01/1988 31/12/2008 -24011035 01/01/2009 31/12/2500 LIBEN Light air-cured tobacco, unstemmed or unstripped 01/01/2009 31/12/2500 -24011041 01/01/1988 31/12/2008 LIBEN Fire-cured Kentucky type tobacco, unstemmed or unstripped 01/01/1988 31/12/2008 -24011049 01/01/1988 31/12/2008 LIBEN Fire-cured tobacco, unstemmed or unstripped (excl. Kentucky type) 01/01/1988 31/12/2008 -24011050 01/01/1988 31/12/2008 LIBEN Light air-cured tobacco, unstemmed or unstripped (excl. Burley and Maryland types) 01/01/1988 31/12/2008 -24011060 01/01/1988 31/12/2500 LIBEN Sun-cured oriental type tobacco, unstemmed or unstripped 01/01/1988 31/12/2500 -24011070 01/01/1988 31/12/2500 LIBEN Dark air-cured tobacco, unstemmed or unstripped 01/01/1988 31/12/2500 -24011080 01/01/1988 31/12/2008 LIBEN Flue-cured tobacco, unstemmed or unstripped (excl. Virginia type) 01/01/1988 31/12/2008 -24011085 01/01/2009 31/12/2500 LIBEN Flue-cured tobacco, unstemmed or unstripped 01/01/2009 31/12/2500 -24011090 01/01/1988 31/12/2008 LIBEN Tobacco, unstemmed or unstripped (excl. flue-cured, light air-cured, fire-cured, dark air-cured and sun-cured oriental) 01/01/1988 31/12/2008 -24011095 01/01/2009 31/12/2500 LIBEN Tobacco, unstemmed or unstripped (excl. light air-cured, sun-cured oriental, dark air-cured and flue-cured tobacco) 01/01/2009 31/12/2500 -240120 01/01/1988 31/12/2500 LIBEN Tobacco, partly or wholly stemmed or stripped, otherwise unmanufactured 01/01/1988 31/12/2500 -24012010 01/01/1988 31/12/2008 LIBEN Partly or wholly stemmed or stripped flue-cured Virginia type tobacco, otherwise unmanufactured 01/01/1988 31/12/2008 -24012020 01/01/1988 31/12/2008 LIBEN Partly or wholly stemmed or stripped light air-cured Burley type tobacco, incl. Burley hybrids, otherwise unmanufactured 01/01/1988 31/12/2008 -24012030 01/01/1988 31/12/2008 LIBEN Partly or wholly stemmed or stripped light air-cured Maryland type tobacco, otherwise unmanufactured 01/01/1988 31/12/2008 -24012035 01/01/2009 31/12/2500 LIBEN Partly or wholly stemmed or stripped light air-cured tobacco, otherwise unmanufactured 01/01/2009 31/12/2500 -24012041 01/01/1988 31/12/2008 LIBEN Partly or wholly stemmed or stripped fire-cured Kentucky type tobacco, otherwise unmanufactured 01/01/1988 31/12/2008 -24012049 01/01/1988 31/12/2008 LIBEN Partly or wholly stemmed or stripped fire-cured tobacco, otherwise unmanufactured (excl. Kentucky type) 01/01/1988 31/12/2008 -24012050 01/01/1988 31/12/2008 LIBEN Partly or wholly stemmed or stripped light air-cured tobacco, otherwise unmanufactured (excl. Burley or Maryland type) 01/01/1988 31/12/2008 -24012060 01/01/1988 31/12/2500 LIBEN Partly or wholly stemmed or stripped sun-cured oriental type tobacco, otherwise unmanufactured 01/01/1988 31/12/2500 -24012070 01/01/1988 31/12/2500 LIBEN Partly or wholly stemmed or stripped dark air-cured tobacco, otherwise unmanufactured 01/01/1988 31/12/2500 -24012080 01/01/1988 31/12/2008 LIBEN Partly or wholly stemmed or stripped flue-cured tobacco, otherwise unmanufactured (excl. Virginia type) 01/01/1988 31/12/2008 -24012085 01/01/2009 31/12/2500 LIBEN Partly or wholly stemmed or stripped flue-cured tobacco, otherwise unmanufactured 01/01/2009 31/12/2500 -24012090 01/01/1988 31/12/2008 LIBEN Partly or wholly stemmed or stripped tobacco, otherwise unmanufactured (excl. flue-cured, light air-cured, fire-cured, dark air-cured and sun-cured oriental) 01/01/1988 31/12/2008 -24012095 01/01/2009 31/12/2500 LIBEN Partly or wholly stemmed or stripped tobacco, otherwise unmanufactured (excl. light air-cured, sun-cured oriental, dark air-cured and flue-cured tobacco) 01/01/2009 31/12/2500 -240130 01/01/1988 31/12/2500 LIBEN Tobacco refuse 01/01/1988 31/12/2500 -24013000 01/01/1988 31/12/2500 LIBEN Tobacco refuse 01/01/1988 31/12/2500 -2402 01/01/1988 31/12/2500 LIBEN Cigars, cheroots, cigarillos and cigarettes of tobacco or of tobacco substitutes 01/01/1988 31/12/2500 -240210 01/01/1988 31/12/2500 LIBEN Cigars, cheroots and cigarillos containing tobacco 01/01/1988 31/12/2500 -24021000 01/01/1988 31/12/2500 LIBEN Cigars, cheroots and cigarillos containing tobacco 01/01/1988 31/12/2500 -240220 01/01/1988 31/12/2500 LIBEN Cigarettes, containing tobacco 01/01/1988 31/12/2500 -24022000 01/01/1988 31/12/1994 LIBEN Cigarettes containing tobacco 01/01/1988 31/12/1994 -24022010 01/01/1995 31/12/2500 LIBEN Cigarettes, containing tobacco and cloves 01/01/1995 31/12/2500 -24022090 01/01/1995 31/12/2500 LIBEN Cigarettes, containing tobacco (excl. containing cloves) 01/01/1995 31/12/2500 -240220SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 2402 20 01/01/2006 31/12/2500 -240290 01/01/1988 31/12/2500 LIBEN Cigars, cheroots, cigarillos and cigarettes consisting wholly of tobacco substitutes 01/01/1988 31/12/2500 -24029000 01/01/1988 31/12/2500 LIBEN Cigars, cheroots, cigarillos and cigarettes consisting wholly of tobacco substitutes 01/01/1988 31/12/2500 -2403 01/01/1988 31/12/2500 LIBEN Manufactured tobacco and manufactured tobacco substitutes and "homogenised" or "reconstituted" tobacco, tobacco extracts and tobacco essences (excl. cigars, incl. cheroots, cigarillos and cigarettes) 01/01/1988 31/12/2500 -240310 01/01/1988 31/12/2011 LIBEN Smoking tobacco, whether or not containing tobacco substitutes in any proportion 01/01/1988 31/12/2011 -24031000 01/01/1988 31/12/1993 LIBEN Smoking tobacco with or without a proportion of tobacco substitutes 01/01/1988 31/12/1993 -24031010 01/01/1994 31/12/2011 LIBEN Smoking tobacco, whether or not containing tobacco substitutes in any proportion, in immediate packings of a net content of <= 500 g 01/01/1994 31/12/2011 -24031090 01/01/1994 31/12/2011 LIBEN Smoking tobacco, whether or not containing tobacco substitutes in any proportion, in immediate packings of a net content of > 500 g 01/01/1994 31/12/2011 -240311 01/01/2012 31/12/2500 LIBEN Water-pipe tobacco (excl. tobacco-free. See subheading note 1.) 01/01/2012 31/12/2500 -24031100 01/01/2012 31/12/2500 LIBEN Water-pipe tobacco (excl. tobacco-free. See subheading note 1.) 01/01/2012 31/12/2500 -240319 01/01/2012 31/12/2500 LIBEN Smoking tobacco, whether or not containing tobacco substitutes in any proportion (excl. water-pipe tobacco containing tobacco) 01/01/2012 31/12/2500 -24031910 01/01/2012 31/12/2500 LIBEN Smoking tobacco, whether or not containing tobacco substitutes in any proportion, in immediate packings of a net content of <= 500 g (excl. water-pipe tobacco containing tobacco) 01/01/2012 31/12/2500 -24031990 01/01/2012 31/12/2500 LIBEN Smoking tobacco, whether or not containing tobacco substitutes in any proportion, in immediate packings of a net content of > 500 g (excl. water-pipe tobacco containing tobacco) 01/01/2012 31/12/2500 -240391 01/01/1988 31/12/2500 LIBEN Tobacco, "homogenised" or "reconstituted" from finely-chopped tobacco leaves, tobacco refuse or tobacco dust 01/01/1988 31/12/2500 -24039100 01/01/1988 31/12/2500 LIBEN Tobacco, "homogenised" or "reconstituted" from finely-chopped tobacco leaves, tobacco refuse or tobacco dust 01/01/1988 31/12/2500 -240399 01/01/1988 31/12/2500 LIBEN Chewing tobacco, snuff and other manufactured tobacco and manufactured tobacco substitutes, and tobacco powder, tobacco extracts and essences (excl. cigars, cheroots, cigarillos and cigarettes, smoking tobacco whether or not containing tobacco substitutes in any proportion, "homogenised" or "reconstituted" tobacco, nicotine extracted from the tobacco plant and insecticides manufactured from tobacco extracts and essences) 01/01/1988 31/12/2500 -24039910 01/01/1988 31/12/2500 LIBEN Chewing tobacco and snuff 01/01/1988 31/12/2500 -24039990 01/01/1988 31/12/2500 LIBEN Manufactured tobacco and tobacco substitutes, and tobacco powder, tobacco extracts and essences (excl. chewing tobacco, snuff, cigars, cheroots, cigarillos and cigarettes, smoking tobacco whether or not containing tobacco substitutes in any proportion, "homogenised" or "reconstituted" tobacco, nicotine extracted from the tobacco plant and insecticides manufactured from tobacco extracts and essences) 01/01/1988 31/12/2500 -24BB 01/01/1988 31/12/2500 LIBEN Articles of chapters 1 to 24 declared as supplies or services for ships and aircrafts 01/01/1988 31/12/2500 -24BBB0 01/01/1988 31/12/2500 LIBEN Articles of chapters 1 to 24 declared as supplies or services for ships and aircrafts 01/01/1988 31/12/2500 -24BBB000 01/01/1988 31/12/2500 LIBEN Articles of chapters 1 to 24 declared as supplies or services for ships and aircrafts 01/01/1988 31/12/2500 -24CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 24 01/01/2002 31/12/2500 -24CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 24 01/01/2002 31/12/2500 -24CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 24 01/01/2002 31/12/2500 -24FF 01/01/2005 31/12/2500 LIBEN Goods of chapters 1 to 24 destined for the operators of the offshore installation or for the operation of the engines, machines and other equipment of the offshore installation  01/01/2005 31/12/2500 -24FFF0 01/01/2005 31/12/2500 LIBEN Goods of chapters 1 to 24 destined for the operators of the offshore installation or for the operation of the engines, machines and other equipment of the offshore installation  01/01/2005 31/12/2500 -24FFF000 01/01/2005 31/12/2500 LIBEN Goods of chapters 1 to 24 destined for the operators of the offshore installation or for the operation of the engines, machines and other equipment of the offshore installation  01/01/2005 31/12/2500 -24MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -24MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -24MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -24SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 24 01/01/1988 31/12/2500 -24SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 24 and SITC section 0 01/01/1997 31/12/2001 -24SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 24 and SITC group 000 01/01/1997 31/12/2001 -24SSS1 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 24 and SITC section 1 01/01/1997 31/12/2500 -24SSS121 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 24 and SITC group 121 01/01/1997 31/12/2500 -24SSS122 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 24 and SITC group 122 01/01/1997 31/12/2500 -24SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 24 and SITC section 9 01/01/1988 31/12/1996 -24SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 24 and SITC section 9 01/01/1997 31/12/2500 -24SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 24 and SITC group 999 01/01/1988 31/12/1996 -24SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 24 and SITC group 999 01/01/1997 31/12/2500 -24TT 01/01/1988 31/12/2004 LIBEN Foodstuffs, drinks and tobacco for which a simplified declaration applies 01/01/1988 31/12/2004 -24TTT0 01/01/1988 31/12/2004 LIBEN Foodstuffs, drinks and tobacco for which a simplified declaration applies 01/01/1988 31/12/2004 -24TTT000 01/01/1988 31/12/2004 LIBEN Foodstuffs, drinks and tobacco for which a simplified declaration applies 01/01/1988 31/12/2004 -25 01/01/1988 31/12/2500 LIBEN SALT; SULPHUR; EARTHS AND STONE; PLASTERING MATERIALS, LIME AND CEMENT 01/01/1988 31/12/2500 -2501 01/01/1988 31/12/2500 LIBEN Salts, incl. table salt and denatured salt, and pure sodium chloride, whether or not in aqueous solution or containing added anti-caking or free-flowing agents; sea water 01/01/1988 31/12/2500 -250100 01/01/1988 31/12/2500 LIBEN Salts, incl. table salt and denatured salt, and pure sodium chloride, whether or not in aqueous solution or containing added anti-caking or free-flowing agents; sea water 01/01/1988 31/12/2500 -25010010 01/01/1988 31/12/2500 LIBEN Sea water and salt liquors 01/01/1988 31/12/2500 -25010031 01/01/1988 31/12/2500 LIBEN Salt for chemical transformation "separation of Na from Cl" for the manufacture of other products 01/01/1988 31/12/2500 -25010051 01/01/1988 31/12/2500 LIBEN Salt, denatured or for other industrial uses, incl. refining (excl. for chemical transformation or preservation or preparation of foodstuffs for human or animal consumption) 01/01/1988 31/12/2500 -25010091 01/01/1988 31/12/2500 LIBEN Salt suitable for human consumption 01/01/1988 31/12/2500 -25010099 01/01/1988 31/12/2500 LIBEN Salt and pure sodium chloride, whether or not in aqueous solution or containing added anti-caking or free-flowing agents (excl. table salt, salt for chemical transformation "separation of Na from Cl", denatured salt and salt for other industrial uses) 01/01/1988 31/12/2500 -2502 01/01/1988 31/12/2500 LIBEN Unroasted iron pyrites 01/01/1988 31/12/2500 -250200 01/01/1988 31/12/2500 LIBEN Unroasted iron pyrites 01/01/1988 31/12/2500 -25020000 01/01/1988 31/12/2500 LIBEN Unroasted iron pyrites 01/01/1988 31/12/2500 -2502S2 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2502 and SITC section 2 01/01/1997 31/12/2500 -2502S274 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2502 and SITC group 274 01/01/1997 31/12/2500 -2503 01/01/1988 31/12/2500 LIBEN Sulphur of all kinds (excl. sublimed sulphur, precipitated sulphur and colloidal sulphur) 01/01/1988 31/12/2500 -250300 01/01/1996 31/12/2500 LIBEN Sulphur of all kinds (excl. sublimed sulphur, precipitated sulphur and colloidal sulphur) 01/01/1996 31/12/2500 -25030010 01/01/1996 31/12/2500 LIBEN Crude or unrefined sulphur (excl. sublimed sulphur, precipitated sulphur and colloidal sulphur) 01/01/1996 31/12/2500 -25030090 01/01/1996 31/12/2500 LIBEN Sulphur of all kinds (excl. crude or unrefined, and sublimed sulphur, precipitated sulphur and colloidal sulphur) 01/01/1996 31/12/2500 -250310 01/01/1988 31/12/1995 LIBEN Crude or unrefined sulphur (excl. sublimed sulphur, precipitated sulphur and colloidal sulphur) 01/01/1988 31/12/1995 -25031000 01/01/1988 31/12/1995 LIBEN Crude or unrefined sulphur (excl. sublimed sulphur, precipitated sulphur and colloidal sulphur) 01/01/1988 31/12/1995 -250390 01/01/1988 31/12/1995 LIBEN Sulphur of all kinds (excl. crude or unrefined, and sublimed sulphur, precipitated sulphur and colloidal sulphur) 01/01/1988 31/12/1995 -25039000 01/01/1988 31/12/1995 LIBEN Sulphur of all kinds (excl. crude or unrefined, and sublimed sulphur, precipitated sulphur and colloidal sulphur) 01/01/1988 31/12/1995 -2504 01/01/1988 31/12/2500 LIBEN Natural graphite 01/01/1988 31/12/2500 -250410 01/01/1988 31/12/2500 LIBEN Natural graphite in powder or in flakes 01/01/1988 31/12/2500 -25041000 01/01/1988 31/12/2500 LIBEN Natural graphite in powder or in flakes 01/01/1988 31/12/2500 -250490 01/01/1988 31/12/2500 LIBEN Natural graphite (excl. in powder or in flakes) 01/01/1988 31/12/2500 -25049000 01/01/1988 31/12/2500 LIBEN Natural graphite (excl. in powder or in flakes) 01/01/1988 31/12/2500 -2505 01/01/1988 31/12/2500 LIBEN Natural sands of all kinds, whether or not coloured (excl. gold- and platinum-bearing sands, zircon, rutile and ilmenite sands, monazite sands, and tar or asphalt sands) 01/01/1988 31/12/2500 -250510 01/01/1988 31/12/2500 LIBEN Silica sands and quartz sands, whether or not coloured 01/01/1988 31/12/2500 -25051000 01/01/1988 31/12/2500 LIBEN Silica sands and quartz sands, whether or not coloured 01/01/1988 31/12/2500 -250590 01/01/1988 31/12/2500 LIBEN Natural sands of all kinds, whether or not coloured (excl. silica sands, quartz sands, gold- and platinum-bearing sands, zircon, rutile and ilmenite sands, monazite sands, and tar or asphalt sands) 01/01/1988 31/12/2500 -25059000 01/01/1988 31/12/2500 LIBEN Natural sands of all kinds, whether or not coloured (excl. silica sands, quartz sands, gold- and platinum-bearing sands, zircon, rutile and ilmenite sands, monazite sands, and tar or asphalt sands) 01/01/1988 31/12/2500 -2506 01/01/1988 31/12/2500 LIBEN Quartz (excl. natural sands); quartzite, whether or not roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape 01/01/1988 31/12/2500 -250610 01/01/1988 31/12/2500 LIBEN Quartz (excl. quartz sands) 01/01/1988 31/12/2500 -25061000 01/01/1988 31/12/2500 LIBEN Quartz (excl. quartz sands) 01/01/1988 31/12/2500 -250620 01/01/2007 31/12/2500 LIBEN Quartzite, merely cut, by sawing or otherwise, in blocks or slabs of a square or rectangular shape 01/01/2007 31/12/2500 -25062000 01/01/2007 31/12/2500 LIBEN Quartzite, merely cut, by sawing or otherwise, in blocks or slabs of a square or rectangular shape 01/01/2007 31/12/2500 -250621 01/01/1988 31/12/2006 LIBEN Crude or roughly trimmed quartzite 01/01/1988 31/12/2006 -25062100 01/01/1988 31/12/2006 LIBEN Crude or roughly trimmed quartzite 01/01/1988 31/12/2006 -250629 01/01/1988 31/12/2006 LIBEN Quartzite, merely cut, by sawing or otherwise, in blocks or slabs of a square or rectangular shape (excl. roughly trimmed) 01/01/1988 31/12/2006 -25062900 01/01/1988 31/12/2006 LIBEN Quartzite, merely cut, by sawing or otherwise, in blocks or slabs of a square or rectangular shape (excl. roughly trimmed) 01/01/1988 31/12/2006 -2507 01/01/1988 31/12/2500 LIBEN Kaolin and other kaolinic clays, whether or not calcined 01/01/1988 31/12/2500 -250700 01/01/1988 31/12/2500 LIBEN Kaolin and other kaolinic clays, whether or not calcined 01/01/1988 31/12/2500 -25070010 01/01/1988 31/12/1994 LIBEN Kaolin and other kaolinic clays, crude 01/01/1988 31/12/1994 -25070020 01/01/1995 31/12/2500 LIBEN Kaolin 01/01/1995 31/12/2500 -25070080 01/01/1995 31/12/2500 LIBEN Kaolinic clays (other than kaolin) 01/01/1995 31/12/2500 -25070090 01/01/1988 31/12/1994 LIBEN Kaolin and other kaolinic clays, calcined 01/01/1988 31/12/1994 -2508 01/01/1988 31/12/2500 LIBEN Clays, andalusite, kyanite and sillimanite, whether or not calcined; mullite; chamotte or dinas earths (excl. kaolin and other kaolinic clays, and expanded clay) 01/01/1988 31/12/2500 -250810 01/01/1988 31/12/2500 LIBEN Bentonite 01/01/1988 31/12/2500 -25081000 01/01/1988 31/12/2500 LIBEN Bentonite 01/01/1988 31/12/2500 -250820 01/01/1988 31/12/2006 LIBEN Decolourising earths and fuller's earth 01/01/1988 31/12/2006 -25082000 01/01/1988 31/12/2006 LIBEN Decolourising earths and fuller's earth 01/01/1988 31/12/2006 -250830 01/01/1988 31/12/2500 LIBEN Fireclay (excl. kaolin and other kaolinic clays and expanded clay) 01/01/1988 31/12/2500 -25083000 01/01/1988 31/12/2500 LIBEN Fireclay (excl. kaolin and other kaolinic clays and expanded clay) 01/01/1988 31/12/2500 -250840 01/01/1988 31/12/2500 LIBEN Clays (excl. fireclay, bentonite, kaolin and other kaolinic clays and expanded clay) 01/01/1988 31/12/2500 -25084000 01/01/1988 31/12/2006 LIBEN Clays (excl. fireclay, kaolin and other kaolinic clays and expanded clay) 01/01/1988 31/12/2006 -25084000 01/01/2007 31/12/2500 LIBEN Clays (excl. fireclay, bentonite, kaolin and other kaolinic clays and expanded clay) 01/01/2007 31/12/2500 -250850 01/01/1988 31/12/2500 LIBEN Andalusite, kyanite and sillimanite 01/01/1988 31/12/2500 -25085000 01/01/1988 31/12/2500 LIBEN Andalusite, kyanite and sillimanite 01/01/1988 31/12/2500 -250860 01/01/1988 31/12/2500 LIBEN Mullite 01/01/1988 31/12/2500 -25086000 01/01/1988 31/12/2500 LIBEN Mullite 01/01/1988 31/12/2500 -250870 01/01/1988 31/12/2500 LIBEN Chamotte or dinas earths 01/01/1988 31/12/2500 -25087000 01/01/1988 31/12/1993 LIBEN Chamotte or dinas earths 01/01/1988 31/12/1993 -25087000 01/01/2004 31/12/2500 LIBEN Chamotte or dinas earths 01/01/2004 31/12/2500 -25087010 01/01/1994 31/12/2003 LIBEN Chamotte earth 01/01/1994 31/12/2003 -25087090 01/01/1994 31/12/2003 LIBEN Dinas earth 01/01/1994 31/12/2003 -2509 01/01/1988 31/12/2500 LIBEN Chalk 01/01/1988 31/12/2500 -250900 01/01/1988 31/12/2500 LIBEN Chalk 01/01/1988 31/12/2500 -25090000 01/01/1988 31/12/2500 LIBEN Chalk 01/01/1988 31/12/2500 -2510 01/01/1988 31/12/2500 LIBEN Natural calcium phosphates and natural aluminium calcium phosphates, natural and phosphatic chalk 01/01/1988 31/12/2500 -251010 01/01/1988 31/12/2500 LIBEN Natural calcium phosphates and natural aluminium calcium phosphates, natural and phosphatic chalk, unground 01/01/1988 31/12/2500 -25101000 01/01/1988 31/12/2500 LIBEN Natural calcium phosphates and natural aluminium calcium phosphates, natural and phosphatic chalk, unground 01/01/1988 31/12/2500 -251020 01/01/1988 31/12/2500 LIBEN Natural calcium phosphates and natural aluminium calcium phosphates, natural and phosphatic chalk, ground 01/01/1988 31/12/2500 -25102000 01/01/1988 31/12/2500 LIBEN Natural calcium phosphates and natural aluminium calcium phosphates, natural and phosphatic chalk, ground 01/01/1988 31/12/2500 -2510S2 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2510 and SITC section 2 01/01/1997 31/12/2500 -2510S272 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2510 and SITC group 272 01/01/1997 31/12/2500 -2511 01/01/1988 31/12/2500 LIBEN Natural barium sulphate "barytes"; natural barium carbonate "witherite", whether or not calcined (excl. barium oxide) 01/01/1988 31/12/2500 -251110 01/01/1988 31/12/2500 LIBEN Natural barium sulphate "barytes" 01/01/1988 31/12/2500 -25111000 01/01/1988 31/12/2500 LIBEN Natural barium sulphate "barytes" 01/01/1988 31/12/2500 -251120 01/01/1988 31/12/2500 LIBEN Natural barium carbonate "witherite", whether or not calcined (excl. barium oxide) 01/01/1988 31/12/2500 -25112000 01/01/1988 31/12/2500 LIBEN Natural barium carbonate "witherite", whether or not calcined (excl. barium oxide) 01/01/1988 31/12/2500 -2511S2 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2511 and SITC section 2 01/01/1997 31/12/2500 -2511S278 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2511 and SITC group 278 01/01/1997 31/12/2500 -2512 01/01/1988 31/12/2500 LIBEN Siliceous fossil meals, e.g. kieselguhr, tripolite and diatomite, and similar siliceous earths, whether or not calcined, of an apparent specific gravity of <= 1 01/01/1988 31/12/2500 -251200 01/01/1988 31/12/2500 LIBEN Siliceous fossil meals, e.g. kieselguhr, tripolite and diatomite, and similar siliceous earths, whether or not calcined, of an apparent specific gravity of <= 1 01/01/1988 31/12/2500 -25120000 01/01/1988 31/12/2500 LIBEN Siliceous fossil meals, e.g. kieselguhr, tripolite and diatomite, and similar siliceous earths, whether or not calcined, of an apparent specific gravity of <= 1 01/01/1988 31/12/2500 -2513 01/01/1988 31/12/2500 LIBEN Pumice stone; emery; natural corundum, natural garnet and other natural abrasives, whether or not heat-treated 01/01/1988 31/12/2500 -251310 01/01/2007 31/12/2500 LIBEN Pumice stone 01/01/2007 31/12/2500 -25131000 01/01/2007 31/12/2500 LIBEN Pumice stone 01/01/2007 31/12/2500 -251311 01/01/1988 31/12/2006 LIBEN Pumice stone, crude or in irregular pieces, incl. crushed pumice "bimskies" 01/01/1988 31/12/2006 -25131100 01/01/1988 31/12/2006 LIBEN Pumice stone, crude or in irregular pieces, incl. crushed pumice "bimskies" 01/01/1988 31/12/2006 -251319 01/01/1988 31/12/2006 LIBEN Pumice stone, crushed or ground 01/01/1988 31/12/2006 -25131900 01/01/1988 31/12/2006 LIBEN Pumice stone, crushed or ground 01/01/1988 31/12/2006 -251320 01/01/1996 31/12/2500 LIBEN Emery; natural corundum, natural garnet and other natural abrasives, whether or not heat-treated 01/01/1996 31/12/2500 -25132000 01/01/1996 31/12/2500 LIBEN Emery; natural corundum, natural garnet and other natural abrasives, whether or not heat-treated 01/01/1996 31/12/2500 -251321 01/01/1988 31/12/1995 LIBEN Emery, natural corundum, natural garnet and other natural abrasives, crude or in irregular pieces 01/01/1988 31/12/1995 -25132100 01/01/1988 31/12/1995 LIBEN Emery, natural corundum, natural garnet and other natural abrasives, crude or in irregular pieces 01/01/1988 31/12/1995 -251329 01/01/1988 31/12/1995 LIBEN Emery, natural corundum, natural garnet and other natural abrasives, crushed or ground 01/01/1988 31/12/1995 -25132900 01/01/1988 31/12/1995 LIBEN Emery, natural corundum, natural garnet and other natural abrasives, crushed or ground 01/01/1988 31/12/1995 -2514 01/01/1988 31/12/2500 LIBEN Slate, whether or not roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape; slate powder and slate refuse 01/01/1988 31/12/2500 -251400 01/01/1988 31/12/2500 LIBEN Slate, whether or not roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape; slate powder and slate refuse 01/01/1988 31/12/2500 -25140000 01/01/1988 31/12/2500 LIBEN Slate, whether or not roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape; slate powder and slate refuse 01/01/1988 31/12/2500 -2515 01/01/1988 31/12/2500 LIBEN Marble, travertine, ecaussine and other calcareous monumental or building stone of an apparent specific gravity of >= 2,5, and alabaster, whether or not roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape (excl. in the form of granules, chippings or powder) 01/01/1988 31/12/2500 -251511 01/01/1988 31/12/2500 LIBEN Marble and travertine, crude or roughly trimmed 01/01/1988 31/12/2500 -25151100 01/01/1988 31/12/2500 LIBEN Marble and travertine, crude or roughly trimmed 01/01/1988 31/12/2500 -251512 01/01/1988 31/12/2500 LIBEN Marble and travertine, merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape 01/01/1988 31/12/2500 -25151200 01/01/1988 31/12/1991 LIBEN Marble and travertine, merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape 01/01/1988 31/12/1991 -25151200 01/01/2010 31/12/2500 LIBEN Marble and travertine, merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape 01/01/2010 31/12/2500 -25151210 01/01/1992 31/12/1993 LIBEN Marble, travertine, merely cut, by sawing or otherwise, into blocks or slabs of a rectangular or square shape, of a thickness =< 25 cm 01/01/1992 31/12/1993 -25151220 01/01/1994 31/12/2009 LIBEN Marble and travertine, merely cut, by sawing or otherwise, into slabs of a square or rectangular shape, of a thickness of <= 4 cm 01/01/1994 31/12/2009 -25151250 01/01/1994 31/12/2009 LIBEN Marble and travertine, merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape, of a thickness of > 4 cm but <= 25 cm 01/01/1994 31/12/2009 -25151290 01/01/1992 31/12/2009 LIBEN Marble and travertine, merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape, of a thickness of > 25 cm 01/01/1992 31/12/2009 -251520 01/01/1988 31/12/2500 LIBEN Ecaussine and other calcareous monumental or building stone of an apparent specific gravity of >= 2,5, and alabaster, whether or not roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape (excl. in the form of granules, chippings or powder, and marble and travertine) 01/01/1988 31/12/2500 -25152000 01/01/1988 31/12/2500 LIBEN Ecaussine and other calcareous monumental or building stone of an apparent specific gravity of >= 2,5, and alabaster, whether or not roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape (excl. in the form of granules, chippings or powder, and marble and travertine) 01/01/1988 31/12/2500 -2516 01/01/1988 31/12/2500 LIBEN Granite, porphyry, basalt, sandstone and other monumental or building stone, whether or not roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape (excl. in the form of granules, chippings or powder, or already with the characteristics of setts, curbstones and flagstones, and monumental or building stone of an apparent specific gravity of >= 2,5) 01/01/1988 31/12/2500 -251611 01/01/1988 31/12/2500 LIBEN Granite, crude or roughly trimmed (excl. already with the characteristics of setts, curbstones and flagstones) 01/01/1988 31/12/2500 -25161100 01/01/1988 31/12/2500 LIBEN Granite, crude or roughly trimmed (excl. already with the characteristics of setts, curbstones and flagstones) 01/01/1988 31/12/2500 -251612 01/01/1988 31/12/2500 LIBEN Granite, merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape (excl. already with the characteristics of setts, curbstones and flagstones) 01/01/1988 31/12/2500 -25161200 01/01/2010 31/12/2500 LIBEN Granite, merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape (excl. already with the characteristics of setts, curbstones and flagstones) 01/01/2010 31/12/2500 -25161210 01/01/1988 31/12/2009 LIBEN Granite, merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape, of a thickness of <= 25 cm (excl. already with the characteristics of setts, curbstones and flagstones) 01/01/1988 31/12/2009 -25161290 01/01/1988 31/12/2009 LIBEN Granite, merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape, of a thickness of > 25 cm (excl. already with the characteristics of setts, curbstones and flagstones) 01/01/1988 31/12/2009 -251620 01/01/2007 31/12/2500 LIBEN Sandstone, whether or not roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape (excl. already with the characteristics of setts, curbstones and flagstones) 01/01/2007 31/12/2500 -25162000 01/01/2007 31/12/2500 LIBEN Sandstone, whether or not roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape (excl. already with the characteristics of setts, curbstones and flagstones) 01/01/2007 31/12/2500 -251621 01/01/1988 31/12/2006 LIBEN Sandstone, crude or roughly trimmed (excl. already with the characteristics of setts, curbstones and flagstones) 01/01/1988 31/12/2006 -25162100 01/01/1988 31/12/2006 LIBEN Sandstone, crude or roughly trimmed (excl. already with the characteristics of setts, curbstones and flagstones) 01/01/1988 31/12/2006 -251622 01/01/1988 31/12/2006 LIBEN Sandstone, merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape (excl. already with the characteristics of setts, curbstones and flagstones) 01/01/1988 31/12/2006 -25162200 01/01/2000 31/12/2006 LIBEN Sandstone, merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape (excl. already with the characteristics of setts, curbstones and flagstones) 01/01/2000 31/12/2006 -25162210 01/01/1988 31/12/1999 LIBEN Sandstone, merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape, of a thickness of <= 25 cm (excl. already with the characteristics of setts, curbstones and flagstones) 01/01/1988 31/12/1999 -25162290 01/01/1988 31/12/1999 LIBEN Sandstone, merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape, of a thickness of > 25 cm (excl. already with the characteristics of setts, curbstones and flagstones) 01/01/1988 31/12/1999 -251690 01/01/1988 31/12/2500 LIBEN Porphyry, basalt and other monumental or building stone, whether or not roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape (excl. in the form of granules, chippings or powder, or already with the characteristics of setts, curbstones and flagstones, monumental or building stone of an apparent specific gravity of >= 2,5, granite and sandstone) 01/01/1988 31/12/2500 -25169000 01/01/2000 31/12/2500 LIBEN Porphyry, basalt and other monumental or building stone, whether or not roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape (excl. in the form of granules, chippings or powder, or already with the characteristics of setts, curbstones and flagstones, monumental or building stone of an apparent specific gravity of >= 2,5, granite and sandstone) 01/01/2000 31/12/2500 -25169010 01/01/1988 31/12/1999 LIBEN Porphyry, syenite, lava, basalt, gneiss, trachyte and similar hard rocks n.e.s., merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape, of a thickness of <= 25 cm 01/01/1988 31/12/1999 -25169090 01/01/1993 31/12/1999 LIBEN Monumental or building stone, whether or not roughly trimmed or otherwise merely cut into blocks or slabs of a square or rectangular shape, n.e.s. 01/01/1993 31/12/1999 -25169091 01/01/1988 31/12/1992 LIBEN Porphyry and basalt, whether or not roughly trimmed or otherwise merely cut into blocks or slabs of a square or rectangular shape (excl. in blocks or slabs of a thickness of =< 25 cm, in the form of granules, chippings or powder, or already with the characteristics of setts, curbstones and flagstones) 01/01/1988 31/12/1992 -25169099 01/01/1988 31/12/1992 LIBEN Monumental or building stone, whether or not roughly trimmed or otherwise merely cut into blocks or slabs of a square or rectangular shape, n.e.s. 01/01/1988 31/12/1992 -2517 01/01/1988 31/12/2500 LIBEN Pebbles, gravel, broken or crushed stone, for concrete aggregates, for road metalling or for railway ballast, shingle and flint, whether or not heat-treated; macadam of slag, dross or similar industrial waste, whether or not incorporating the materials cited in the first part of the heading; tarred macadam; granules, chippings and powder, of stones of heading 2515 and 2516, whether or not heat-treated 01/01/1988 31/12/2500 -251710 01/01/1988 31/12/2500 LIBEN Pebbles, gravel, broken or crushed stone, for concrete aggregates, for road metalling or for railway or other ballast, shingle and flint, whether or not heat-treated 01/01/1988 31/12/2500 -25171010 01/01/1988 31/12/2500 LIBEN Pebbles and gravel for concrete aggregates, for road metalling or for railway or other ballast, shingle and flint, whether or not heat-treated 01/01/1988 31/12/2500 -25171020 01/01/1995 31/12/2500 LIBEN Broken or crushed dolomite and limestone flux, for concrete aggregates, for road metalling or for railway or other ballast 01/01/1995 31/12/2500 -25171080 01/01/1995 31/12/2500 LIBEN Broken or crushed stone, for concrete aggregates, for road metalling or for railway or other ballast, whether or not heat-treated (excl. pebbles, gravel, flint and shingle, broken or crushed dolomite and limestone flux) 01/01/1995 31/12/2500 -25171090 01/01/1988 31/12/1994 LIBEN Broken or crushed stone, for concrete aggregates, for road metalling or for railway ballast, shingle and flint, whether or not heat-treated 01/01/1988 31/12/1994 -251720 01/01/1988 31/12/2500 LIBEN Macadam of slag, dross or similar industrial waste, whether or not incorporating pebbles, gravel, shingle and flint for concrete aggregates, for road metalling or for railway or other ballast 01/01/1988 31/12/2500 -25172000 01/01/1988 31/12/2500 LIBEN Macadam of slag, dross or similar industrial waste, whether or not incorporating pebbles, gravel, shingle and flint for concrete aggregates, for road metalling or for railway or other ballast 01/01/1988 31/12/2500 -251730 01/01/1988 31/12/2500 LIBEN Tarred macadam 01/01/1988 31/12/2500 -25173000 01/01/1988 31/12/2500 LIBEN Tarred macadam 01/01/1988 31/12/2500 -251741 01/01/1988 31/12/2500 LIBEN Marble granules, chippings and powder, whether or not heat-treated 01/01/1988 31/12/2500 -25174100 01/01/1988 31/12/2500 LIBEN Marble granules, chippings and powder, whether or not heat-treated 01/01/1988 31/12/2500 -251749 01/01/1988 31/12/2500 LIBEN Granules, chippings and powder, whether or not heat-treated, of travertine, ecaussine, alabaster, basalt, granite, sandstone, porphyry, syenite, lava, gneiss, trachyte and other rocks of heading 2515 and 2516 (excl. marble) 01/01/1988 31/12/2500 -25174900 01/01/1988 31/12/2500 LIBEN Granules, chippings and powder, whether or not heat-treated, of travertine, ecaussine, alabaster, basalt, granite, sandstone, porphyry, syenite, lava, gneiss, trachyte and other rocks of heading 2515 and 2516 (excl. marble) 01/01/1988 31/12/2500 -2518 01/01/1988 31/12/2500 LIBEN Dolomite, whether or not calcined or sintered, incl. dolomite roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a rectangular "incl. square" shape, and dolomite ramming mix (excl. broken or crushed dolomite for concrete aggregates, road metalling or railway or other ballast) 01/01/1988 31/12/2500 -251810 01/01/1988 31/12/2500 LIBEN Crude dolomite, not calcined or not sintered, incl. dolomite roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a rectangular "incl. square" shape (excl. broken or crushed dolomite for concrete aggregates, road metalling or railway or other ballast) 01/01/1988 31/12/2500 -25181000 01/01/1988 31/12/2500 LIBEN Crude dolomite, not calcined or not sintered, incl. dolomite roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a rectangular "incl. square" shape (excl. broken or crushed dolomite for concrete aggregates, road metalling or railway or other ballast) 01/01/1988 31/12/2500 -251820 01/01/1988 31/12/2500 LIBEN Calcined or sintered dolomite (excl. broken or crushed dolomite for concrete aggregates, road metalling or railway or other ballast) 01/01/1988 31/12/2500 -25182000 01/01/1988 31/12/2500 LIBEN Calcined or sintered dolomite (excl. broken or crushed dolomite for concrete aggregates, road metalling or railway or other ballast) 01/01/1988 31/12/2500 -251830 01/01/1988 31/12/2500 LIBEN Dolomite ramming mix 01/01/1988 31/12/2500 -25183000 01/01/1988 31/12/2500 LIBEN Dolomite ramming mix 01/01/1988 31/12/2500 -2519 01/01/1988 31/12/2500 LIBEN Natural magnesium carbonate "magnesite"; fused magnesia; dead-burned "sintered" magnesia, whether or not containing small quantities of other oxides added before sintering; other magnesium oxide, whether or not pure 01/01/1988 31/12/2500 -251910 01/01/1988 31/12/2500 LIBEN Natural magnesium carbonate "magnesite" 01/01/1988 31/12/2500 -25191000 01/01/1988 31/12/2500 LIBEN Natural magnesium carbonate "magnesite" 01/01/1988 31/12/2500 -251990 01/01/1988 31/12/2500 LIBEN Fused magnesia; dead-burned "sintered" magnesia, whether or not containing small quantities of other oxides added before sintering; other magnesium oxide (excl. natural magnesium carbonate "magnesite") 01/01/1988 31/12/2500 -25199010 01/01/1988 31/12/2500 LIBEN Magnesium oxide, whether or not pure (excl. calcined natural magnesium carbonate) 01/01/1988 31/12/2500 -25199030 01/01/1988 31/12/2500 LIBEN Dead-burned "sintered" magnesia, whether or not containing small quantities of other oxides added before sintering 01/01/1988 31/12/2500 -25199090 01/01/1988 31/12/2500 LIBEN Fused magnesia 01/01/1988 31/12/2500 -2520 01/01/1988 31/12/2500 LIBEN Gypsum; anhydrite; plasters consisting of calcined gypsum or calcium sulphate, whether or not coloured, with or without small quantities of accelerators or retarders 01/01/1988 31/12/2500 -252010 01/01/1988 31/12/2500 LIBEN Gypsum; anhydrite 01/01/1988 31/12/2500 -25201000 01/01/1988 31/12/2500 LIBEN Gypsum; anhydrite 01/01/1988 31/12/2500 -252020 01/01/1988 31/12/2500 LIBEN Plasters consisting of calcined gypsum or calcium sulphate, whether or not coloured, with or without small quantities of accelerators or retarders 01/01/1988 31/12/2500 -25202000 01/01/2010 31/12/2500 LIBEN Plasters consisting of calcined gypsum or calcium sulphate, whether or not coloured, with or without small quantities of accelerators or retarders 01/01/2010 31/12/2500 -25202010 01/01/1988 31/12/2009 LIBEN Building plasters consisting of calcined gypsum or calcium sulphate, whether or not coloured, with or without small quantities of accelerators or retarders 01/01/1988 31/12/2009 -25202090 01/01/1988 31/12/2009 LIBEN Plasters consisting of calcined gypsum or calcium sulphate, whether or not coloured, with or without small quantities of accelerators or retarders (excl. building) 01/01/1988 31/12/2009 -2521 01/01/1988 31/12/2500 LIBEN Limestone flux; limestone and other calcareous stone, of a kind used for the manufacture of lime or cement 01/01/1988 31/12/2500 -252100 01/01/1988 31/12/2500 LIBEN Limestone flux; limestone and other calcareous stone, of a kind used for the manufacture of lime or cement 01/01/1988 31/12/2500 -25210000 01/01/1988 31/12/2500 LIBEN Limestone flux; limestone and other calcareous stone, of a kind used for the manufacture of lime or cement 01/01/1988 31/12/2500 -2522 01/01/1988 31/12/2500 LIBEN Quicklime, slaked lime and hydraulic lime (excl. pure calcium oxide and calcium hydroxide) 01/01/1988 31/12/2500 -252210 01/01/1988 31/12/2500 LIBEN Quicklime 01/01/1988 31/12/2500 -25221000 01/01/1988 31/12/2500 LIBEN Quicklime 01/01/1988 31/12/2500 -252220 01/01/1988 31/12/2500 LIBEN Slaked lime 01/01/1988 31/12/2500 -25222000 01/01/1988 31/12/2500 LIBEN Slaked lime 01/01/1988 31/12/2500 -252230 01/01/1988 31/12/2500 LIBEN Hydraulic lime (excl. pure calcium oxide and calcium hydroxide) 01/01/1988 31/12/2500 -25223000 01/01/1988 31/12/2500 LIBEN Hydraulic lime (excl. pure calcium oxide and calcium hydroxide) 01/01/1988 31/12/2500 -2523 01/01/1988 31/12/2500 LIBEN Cement, incl. cement clinkers, whether or not coloured 01/01/1988 31/12/2500 -252310 01/01/1988 31/12/2500 LIBEN Cement clinkers 01/01/1988 31/12/2500 -25231000 01/01/1988 31/12/2500 LIBEN Cement clinkers 01/01/1988 31/12/2500 -252321 01/01/1988 31/12/2500 LIBEN White portland cement, whether or not artificially coloured 01/01/1988 31/12/2500 -25232100 01/01/1988 31/12/2500 LIBEN White portland cement, whether or not artificially coloured 01/01/1988 31/12/2500 -252329 01/01/1988 31/12/2500 LIBEN Portland cement (excl. white, whether or not artificially coloured) 01/01/1988 31/12/2500 -25232900 01/01/1988 31/12/2500 LIBEN Portland cement (excl. white, whether or not artificially coloured) 01/01/1988 31/12/2500 -252330 01/01/1988 31/12/2500 LIBEN Aluminous cement 01/01/1988 31/12/2500 -25233000 01/01/1988 31/12/2500 LIBEN Aluminous cement 01/01/1988 31/12/2500 -252390 01/01/1988 31/12/2500 LIBEN Cement, whether or not coloured (excl. portland cement and aluminous cement) 01/01/1988 31/12/2500 -25239000 01/01/2010 31/12/2500 LIBEN Cement, whether or not coloured (excl. portland cement and aluminous cement) 01/01/2010 31/12/2500 -25239010 01/01/1988 31/12/2009 LIBEN Blast furnace cement 01/01/1988 31/12/2009 -25239030 01/01/1988 31/12/2003 LIBEN Pozzolanic cement 01/01/1988 31/12/2003 -25239080 01/01/2004 31/12/2009 LIBEN Cement, whether or not coloured (excl. portland cement, aluminous cement and blast furnace cement) 01/01/2004 31/12/2009 -25239090 01/01/1988 31/12/2003 LIBEN Cement, whether or not coloured (excl. portland cement, aluminous cement, blast furnace cement and pozzolanic cement) 01/01/1988 31/12/2003 -2523S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2523 and SITC section 6 01/01/1997 31/12/2500 -2523S661 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2523 and SITC group 661 01/01/1997 31/12/2500 -2524 01/01/1988 31/12/2500 LIBEN Asbestos (excl. products made from asbestos) 01/01/1988 31/12/2500 -252400 01/01/1988 31/12/2006 LIBEN Asbestos (excl. products made from asbestos) 01/01/1988 31/12/2006 -25240000 01/01/2005 31/12/2006 LIBEN Asbestos (excl. products made from asbestos) 01/01/2005 31/12/2006 -25240010 01/01/1988 31/12/1992 LIBEN Asbestos in rock form, whether or not refined 01/01/1988 31/12/1992 -25240030 01/01/1988 31/12/2004 LIBEN Asbestos fibres, flakes or powder 01/01/1988 31/12/2004 -25240080 01/01/1993 31/12/2004 LIBEN Asbestos (excl. products made from asbestos and asbestos in the form of fibres, flakes and powder) 01/01/1993 31/12/2004 -25240090 01/01/1988 31/12/1992 LIBEN Asbestos (excl. in rock form, fibres, flakes or powder) 01/01/1988 31/12/1992 -252410 01/01/2007 31/12/2500 LIBEN Crocidolite asbestos (excl. products made from crocidolite) 01/01/2007 31/12/2500 -25241000 01/01/2007 31/12/2500 LIBEN Crocidolite asbestos (excl. products made from crocidolite) 01/01/2007 31/12/2500 -252490 01/01/2007 31/12/2500 LIBEN Asbestos (excl. crocidolite and products made from asbestos) 01/01/2007 31/12/2500 -25249000 01/01/2007 31/12/2500 LIBEN Asbestos (excl. crocidolite and products made from asbestos) 01/01/2007 31/12/2500 -2525 01/01/1988 31/12/2500 LIBEN Mica, whether or not rifted into sheets or splittings; mica waste 01/01/1988 31/12/2500 -252510 01/01/1988 31/12/2500 LIBEN Crude mica and mica rifted into sheets or splittings 01/01/1988 31/12/2500 -25251000 01/01/1988 31/12/2500 LIBEN Crude mica and mica rifted into sheets or splittings 01/01/1988 31/12/2500 -252520 01/01/1988 31/12/2500 LIBEN Mica powder 01/01/1988 31/12/2500 -25252000 01/01/1988 31/12/2500 LIBEN Mica powder 01/01/1988 31/12/2500 -252530 01/01/1988 31/12/2500 LIBEN Mica waste 01/01/1988 31/12/2500 -25253000 01/01/1988 31/12/2500 LIBEN Mica waste 01/01/1988 31/12/2500 -2526 01/01/1988 31/12/2500 LIBEN Natural steatite, whether or not roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape; talc 01/01/1988 31/12/2500 -252610 01/01/1988 31/12/2500 LIBEN Natural steatite, whether or not roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape, and talc, uncrushed or unpowdered 01/01/1988 31/12/2500 -25261000 01/01/1988 31/12/2500 LIBEN Natural steatite, whether or not roughly trimmed or merely cut, by sawing or otherwise, into blocks or slabs of a square or rectangular shape, and talc, uncrushed or unpowdered 01/01/1988 31/12/2500 -252620 01/01/1988 31/12/2500 LIBEN Natural steatite and talc, crushed or powdered 01/01/1988 31/12/2500 -25262000 01/01/1988 31/12/2500 LIBEN Natural steatite and talc, crushed or powdered 01/01/1988 31/12/2500 -2526S2 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2526 and SITC section 2 01/01/1997 31/12/2500 -2526S278 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2526 and SITC group 278 01/01/1997 31/12/2500 -2527 01/01/1988 31/12/2001 LIBEN Natural cryolite and natural chiolite 01/01/1988 31/12/2001 -252700 01/01/1988 31/12/2001 LIBEN Natural cryolite and natural chiolite 01/01/1988 31/12/2001 -25270000 01/01/1988 31/12/2001 LIBEN Natural cryolite and natural chiolite 01/01/1988 31/12/2001 -2528 01/01/1988 31/12/2500 LIBEN Borates, natural, and concentrates thereof, whether or not calcined, and natural boric acids containing <= 85% of H3BO3 calculated on the dry weight (excl. borates separated from natural brine) 01/01/1988 31/12/2500 -252800 01/01/2012 31/12/2500 LIBEN Borates, natural, and concentrates thereof, whether or not calcined, and natural boric acids containing <= 85% of H3BO3 calculated on the dry weight (excl. borates separated from natural brine) 01/01/2012 31/12/2500 -25280000 01/01/2012 31/12/2500 LIBEN Borates, natural, and concentrates thereof, whether or not calcined, and natural boric acids containing <= 85% of H3BO3 calculated on the dry weight (excl. borates separated from natural brine) 01/01/2012 31/12/2500 -252810 01/01/1988 31/12/2011 LIBEN Sodium borates, natural, and concentrates thereof, whether or not calcined (excl. sodium borates separated from natural brine) 01/01/1988 31/12/2011 -25281000 01/01/1988 31/12/1991 LIBEN Natural sodium borates and concentrates thereof, whether or not calcined (excl. borates separated from natural brine) 01/01/1988 31/12/1991 -25281000 01/01/1992 31/12/2011 LIBEN Sodium borates, natural, and concentrates thereof, whether or not calcined (excl. sodium borates separated from natural brine) 01/01/1992 31/12/2011 -252890 01/01/1988 31/12/2011 LIBEN Borates, natural, and concentrates thereof, whether or not calcined, and natural boric acids containing <= 85% of H3BO3 calculated on the dry weight (excl. sodium borates and concentrates thereof and borates separated from natural brine) 01/01/1988 31/12/2011 -25289000 01/01/1988 31/12/1991 LIBEN Natural borates and concentrates thereof, whether or not calcined, and natural boric acid containing =< 85 % of h3bo3 calculated on the dry weight (excl. natural sodium borates and concentrates thereof) 01/01/1988 31/12/1991 -25289000 01/01/1992 31/12/2011 LIBEN Borates, natural, and concentrates thereof, whether or not calcined, and natural boric acids containing <= 85% of H3BO3 calculated on the dry weight (excl. sodium borates and concentrates thereof and borates separated from natural brine) 01/01/1992 31/12/2011 -2529 01/01/1988 31/12/2500 LIBEN Feldspar; leucite, nepheline and nepheline syenite; fluorspar 01/01/1988 31/12/2500 -252910 01/01/1988 31/12/2500 LIBEN Feldspar 01/01/1988 31/12/2500 -25291000 01/01/1988 31/12/2500 LIBEN Feldspar 01/01/1988 31/12/2500 -252921 01/01/1988 31/12/2500 LIBEN Fluorspar containing by weight <= 97% calcium fluoride 01/01/1988 31/12/2500 -25292100 01/01/1988 31/12/2500 LIBEN Fluorspar containing by weight <= 97% calcium fluoride 01/01/1988 31/12/2500 -252922 01/01/1988 31/12/2500 LIBEN Fluorspar containing by weight > 97% calcium fluoride 01/01/1988 31/12/2500 -25292200 01/01/1988 31/12/2500 LIBEN Fluorspar containing by weight > 97% calcium fluoride 01/01/1988 31/12/2500 -252930 01/01/1988 31/12/2500 LIBEN Leucite, nepheline and nepheline syenite 01/01/1988 31/12/2500 -25293000 01/01/1988 31/12/2500 LIBEN Leucite, nepheline and nepheline syenite 01/01/1988 31/12/2500 -2530 01/01/1988 31/12/2500 LIBEN Vermiculite, perlite and other mineral substances, n.e.s. 01/01/1988 31/12/2500 -253010 01/01/1988 31/12/2500 LIBEN Vermiculite, perlite and chlorites, unexpanded 01/01/1988 31/12/2500 -25301000 01/01/1988 31/12/1993 LIBEN Vermiculite, perlite and chlorites, unexpanded 01/01/1988 31/12/1993 -25301000 01/01/2010 31/12/2500 LIBEN Vermiculite, perlite and chlorites, unexpanded 01/01/2010 31/12/2500 -25301010 01/01/1994 31/12/2009 LIBEN Perlite, unexpanded 01/01/1994 31/12/2009 -25301090 01/01/1994 31/12/2009 LIBEN Vermiculite and chlorites, unexpanded 01/01/1994 31/12/2009 -253020 01/01/1988 31/12/2500 LIBEN Kieserite and epsomite "natural magnesium sulphates" 01/01/1988 31/12/2500 -25302000 01/01/1988 31/12/2500 LIBEN Kieserite and epsomite "natural magnesium sulphates" 01/01/1988 31/12/2500 -253030 01/01/1988 31/12/1995 LIBEN Earth colours 01/01/1988 31/12/1995 -25303000 01/01/1988 31/12/1995 LIBEN Earth colours 01/01/1988 31/12/1995 -253040 01/01/1988 31/12/2001 LIBEN Natural micaceous iron oxides 01/01/1988 31/12/2001 -25304000 01/01/1988 31/12/2001 LIBEN Natural micaceous iron oxides 01/01/1988 31/12/2001 -253090 01/01/1988 31/12/2500 LIBEN Arsenic sulfides, alunite, pozzuolana, earth colours and other mineral substances, n.e.s. 01/01/1988 31/12/2500 -25309000 01/01/1988 31/12/1993 LIBEN Arsenic sulfides, alunite, pozzolana and other mineral substances n.e.s. 01/01/1988 31/12/1993 -25309000 01/01/2010 31/12/2500 LIBEN Arsenic sulfides, alunite, pozzuolana, earth colours and other mineral substances, n.e.s. 01/01/2010 31/12/2500 -25309010 01/01/1994 31/12/1994 LIBEN Meerschaum, whether or not in polished pieces 01/01/1994 31/12/1994 -25309020 01/01/1995 31/12/2009 LIBEN Sepiolite, natural or recycled 01/01/1995 31/12/2009 -25309080 01/01/1995 31/12/1995 LIBEN Arsenic sulphide, alunite, pozzuolana and other mineral substances, n.e.s. 01/01/1995 31/12/1995 -25309090 01/01/1994 31/12/1994 LIBEN Arsenic sulfides, alunite, pozzolana and other mineral substances n.e.s. 01/01/1994 31/12/1994 -25309095 01/01/1996 31/12/2001 LIBEN Arsenic sulphide, alunite, pozzuolana and other mineral substances, n.e.s. 01/01/1996 31/12/2001 -25309098 01/01/2002 31/12/2009 LIBEN Arsenic sulphide, alunite, pozzuolana and other mineral substances, n.e.s. 01/01/2002 31/12/2009 -25CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 25 01/01/2002 31/12/2500 -25CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 25 01/01/2002 31/12/2500 -25CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 25 01/01/2002 31/12/2500 -25MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -25MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -25MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -25SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 25 01/01/1988 31/12/2500 -25SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 25 and SITC section 0 01/01/1997 31/12/2001 -25SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 25 and SITC group 000 01/01/1997 31/12/2001 -25SSS2 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 25 and SITC section 2 01/01/1990 31/12/2500 -25SSS271 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 25 and SITC group 271 01/01/1997 31/12/2500 -25SSS272 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 25 and SITC group 272 01/01/1997 31/12/2500 -25SSS273 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 25 and SITC group 273 01/01/1997 31/12/2500 -25SSS274 01/01/1994 31/12/2500 LIBEN Confidential trade of chapter 25 and SITC group 274 01/01/1994 31/12/2500 -25SSS277 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 25 and SITC group 277 01/01/1997 31/12/2500 -25SSS278 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 25 and SITC group 278 01/01/1990 31/12/2500 -25SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 25 and SITC section 6 01/01/1997 31/12/2500 -25SSS661 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 25 and SITC group 661 01/01/1997 31/12/2500 -25SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 25 and SITC section 9 01/01/1988 31/12/1996 -25SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 25 and SITC section 9 01/01/1997 31/12/2500 -25SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 25 and SITC group 999 01/01/1988 31/12/1996 -25SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 25 and SITC group 999 01/01/1997 31/12/2500 -26 01/01/1988 31/12/2500 LIBEN ORES, SLAG AND ASH 01/01/1988 31/12/2500 -2601 01/01/1988 31/12/2500 LIBEN Iron ores and concentrates, incl. roasted iron pyrites 01/01/1988 31/12/2500 -260111 01/01/1988 31/12/2500 LIBEN Non-agglomerated iron ores and concentrates (excl. roasted iron pyrites) 01/01/1988 31/12/2500 -26011100 01/01/1988 31/12/2500 LIBEN Non-agglomerated iron ores and concentrates (excl. roasted iron pyrites) 01/01/1988 31/12/2500 -260112 01/01/1988 31/12/2500 LIBEN Agglomerated iron ores and concentrates (excl. roasted iron pyrites) 01/01/1988 31/12/2500 -26011200 01/01/1988 31/12/2500 LIBEN Agglomerated iron ores and concentrates (excl. roasted iron pyrites) 01/01/1988 31/12/2500 -260120 01/01/1988 31/12/2500 LIBEN Roasted iron pyrites 01/01/1988 31/12/2500 -26012000 01/01/1988 31/12/2500 LIBEN Roasted iron pyrites 01/01/1988 31/12/2500 -2601S2 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 2601 and SITC section 2 01/01/2006 31/12/2500 -2601S281 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 2601 and SITC group 281 01/01/2006 31/12/2500 -2602 01/01/1988 31/12/2500 LIBEN Manganese ores and concentrates, incl. ferruginous manganese ores and concentrates, with a manganese content of >= 20%, calculated on the dry weight 01/01/1988 31/12/2500 -260200 01/01/1988 31/12/2500 LIBEN Manganese ores and concentrates, incl. ferruginous manganese ores and concentrates, with a manganese content of >= 20%, calculated on the dry weight 01/01/1988 31/12/2500 -26020000 01/01/1988 31/12/2500 LIBEN Manganese ores and concentrates, incl. ferruginous manganese ores and concentrates, with a manganese content of >= 20%, calculated on the dry weight 01/01/1988 31/12/2500 -2603 01/01/1988 31/12/2500 LIBEN Copper ores and concentrates 01/01/1988 31/12/2500 -260300 01/01/1988 31/12/2500 LIBEN Copper ores and concentrates 01/01/1988 31/12/2500 -26030000 01/01/1988 31/12/2500 LIBEN Copper ores and concentrates 01/01/1988 31/12/2500 -2604 01/01/1988 31/12/2500 LIBEN Nickel ores and concentrates 01/01/1988 31/12/2500 -260400 01/01/1988 31/12/2500 LIBEN Nickel ores and concentrates 01/01/1988 31/12/2500 -26040000 01/01/1988 31/12/2500 LIBEN Nickel ores and concentrates 01/01/1988 31/12/2500 -2605 01/01/1988 31/12/2500 LIBEN Cobalt ores and concentrates 01/01/1988 31/12/2500 -260500 01/01/1988 31/12/2500 LIBEN Cobalt ores and concentrates 01/01/1988 31/12/2500 -26050000 01/01/1988 31/12/2500 LIBEN Cobalt ores and concentrates 01/01/1988 31/12/2500 -2606 01/01/1988 31/12/2500 LIBEN Aluminium ores and concentrates 01/01/1988 31/12/2500 -260600 01/01/1988 31/12/2500 LIBEN Aluminium ores and concentrates 01/01/1988 31/12/2500 -26060000 01/01/1988 31/12/2500 LIBEN Aluminium ores and concentrates 01/01/1988 31/12/2500 -2607 01/01/1988 31/12/2500 LIBEN Lead ores and concentrates 01/01/1988 31/12/2500 -260700 01/01/1988 31/12/2500 LIBEN Lead ores and concentrates 01/01/1988 31/12/2500 -26070000 01/01/1988 31/12/2500 LIBEN Lead ores and concentrates 01/01/1988 31/12/2500 -2608 01/01/1988 31/12/2500 LIBEN Zinc ores and concentrates 01/01/1988 31/12/2500 -260800 01/01/1988 31/12/2500 LIBEN Zinc ores and concentrates 01/01/1988 31/12/2500 -26080000 01/01/1988 31/12/2500 LIBEN Zinc ores and concentrates 01/01/1988 31/12/2500 -2609 01/01/1988 31/12/2500 LIBEN Tin ores and concentrates 01/01/1988 31/12/2500 -260900 01/01/1988 31/12/2500 LIBEN Tin ores and concentrates 01/01/1988 31/12/2500 -26090000 01/01/1988 31/12/2500 LIBEN Tin ores and concentrates 01/01/1988 31/12/2500 -2610 01/01/1988 31/12/2500 LIBEN Chromium ores and concentrates 01/01/1988 31/12/2500 -261000 01/01/1988 31/12/2500 LIBEN Chromium ores and concentrates 01/01/1988 31/12/2500 -26100000 01/01/1988 31/12/2500 LIBEN Chromium ores and concentrates 01/01/1988 31/12/2500 -2611 01/01/1988 31/12/2500 LIBEN Tungsten ores and concentrates 01/01/1988 31/12/2500 -261100 01/01/1988 31/12/2500 LIBEN Tungsten ores and concentrates 01/01/1988 31/12/2500 -26110000 01/01/1988 31/12/2500 LIBEN Tungsten ores and concentrates 01/01/1988 31/12/2500 -2612 01/01/1988 31/12/2500 LIBEN Uranium or thorium ores and concentrates 01/01/1988 31/12/2500 -261210 01/01/1988 31/12/2500 LIBEN Uranium ores and concentrates 01/01/1988 31/12/2500 -26121010 01/01/1988 31/12/2500 LIBEN Uranium ores and pitchblende, with a uranium content of > 5% by weight [Euratom] 01/01/1988 31/12/2500 -26121090 01/01/1988 31/12/2500 LIBEN Uranium ores and concentrates (excl. uranium ores and pitchblende, with a uranium content of > 5% by weight) 01/01/1988 31/12/2500 -261220 01/01/1988 31/12/2500 LIBEN Thorium ores and concentrates 01/01/1988 31/12/2500 -26122010 01/01/1988 31/12/2500 LIBEN Monazite; urano-thorianite and other thorium ores, with a thorium content of > 20% by weight [Euratom] 01/01/1988 31/12/2500 -26122090 01/01/1988 31/12/2500 LIBEN Thorium ores and concentrates (excl. monazite, urano-thorianite and other thorium ores and concentrates, with a thorium content of > 20% by weight) 01/01/1988 31/12/2500 -2613 01/01/1988 31/12/2500 LIBEN Molybdenum ores and concentrates 01/01/1988 31/12/2500 -261310 01/01/1988 31/12/2500 LIBEN Roasted molybdenum ores and concentrates 01/01/1988 31/12/2500 -26131000 01/01/1988 31/12/2500 LIBEN Roasted molybdenum ores and concentrates 01/01/1988 31/12/2500 -261390 01/01/1988 31/12/2500 LIBEN Molybdenum ores and concentrates (excl. roasted) 01/01/1988 31/12/2500 -26139000 01/01/1988 31/12/2500 LIBEN Molybdenum ores and concentrates (excl. roasted) 01/01/1988 31/12/2500 -2614 01/01/1988 31/12/2500 LIBEN Titanium ores and concentrates 01/01/1988 31/12/2500 -261400 01/01/1988 31/12/2500 LIBEN Titanium ores and concentrates 01/01/1988 31/12/2500 -26140000 01/01/2010 31/12/2500 LIBEN Titanium ores and concentrates 01/01/2010 31/12/2500 -26140010 01/01/1988 31/12/2009 LIBEN Ilmenite and concentrates 01/01/1988 31/12/2009 -26140090 01/01/1988 31/12/2009 LIBEN Titanium ores and concentrates (excl. ilmenite and concentrates) 01/01/1988 31/12/2009 -2614S2 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2614 and SITC section 2 01/01/1997 31/12/2500 -2614S287 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2614 and SITC group 287 01/01/1997 31/12/2500 -2615 01/01/1988 31/12/2500 LIBEN Niobium, tantalum, vanadium or zirconium ores and concentrates 01/01/1988 31/12/2500 -261510 01/01/1988 31/12/2500 LIBEN Zirconium ores and concentrates 01/01/1988 31/12/2500 -26151000 01/01/1988 31/12/2500 LIBEN Zirconium ores and concentrates 01/01/1988 31/12/2500 -261590 01/01/1988 31/12/2500 LIBEN Niobium, tantalum or vanadium ores and concentrates 01/01/1988 31/12/2500 -26159000 01/01/2010 31/12/2500 LIBEN Niobium, tantalum or vanadium ores and concentrates 01/01/2010 31/12/2500 -26159010 01/01/1988 31/12/2009 LIBEN Niobium and tantalum ores and concentrates 01/01/1988 31/12/2009 -26159090 01/01/1988 31/12/2009 LIBEN Vanadium ores and concentrates 01/01/1988 31/12/2009 -2615S2 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2615 and SITC section 2 01/01/1998 31/12/2500 -2615S287 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2615 and SITC group 287 01/01/1998 31/12/2500 -2616 01/01/1988 31/12/2500 LIBEN Precious-metal ores and concentrates 01/01/1988 31/12/2500 -261610 01/01/1988 31/12/2500 LIBEN Silver ores and concentrates 01/01/1988 31/12/2500 -26161000 01/01/1988 31/12/2500 LIBEN Silver ores and concentrates 01/01/1988 31/12/2500 -261690 01/01/1988 31/12/2500 LIBEN Precious-metal ores and concentrates (excl. silver ores and oncentrates) 01/01/1988 31/12/2500 -26169000 01/01/1988 31/12/2500 LIBEN Precious-metal ores and concentrates (excl. silver ores and oncentrates) 01/01/1988 31/12/2500 -2617 01/01/1988 31/12/2500 LIBEN Ores and concentrates (excl. iron, manganese, copper, nickel, cobalt, aluminium, lead, zinc, tin, chromium, tungsten, uranium, thorium, molybdenum, titanium, niobium, tantalum, vanadium, zirconium and precious-metal ores and concentrates) 01/01/1988 31/12/2500 -261710 01/01/1988 31/12/2500 LIBEN Antimony ores and concentrates 01/01/1988 31/12/2500 -26171000 01/01/1988 31/12/2500 LIBEN Antimony ores and concentrates 01/01/1988 31/12/2500 -261790 01/01/1988 31/12/2500 LIBEN Ores and concentrates (excl. iron, manganese, copper, nickel, cobalt, aluminium, lead, zinc, tin, chromium, tungsten, uranium, thorium, molybdenum, titanium, niobium, tantalum, vanadium, zirconium, precious-metal or antimony ores and concentrates) 01/01/1988 31/12/2500 -26179000 01/01/1988 31/12/2500 LIBEN Ores and concentrates (excl. iron, manganese, copper, nickel, cobalt, aluminium, lead, zinc, tin, chromium, tungsten, uranium, thorium, molybdenum, titanium, niobium, tantalum, vanadium, zirconium, precious-metal or antimony ores and concentrates) 01/01/1988 31/12/2500 -2618 01/01/1988 31/12/2500 LIBEN Granulated slag "slag sand" from the manufacture of iron or steel 01/01/1988 31/12/2500 -261800 01/01/1988 31/12/2500 LIBEN Granulated slag "slag sand" from the manufacture of iron or steel 01/01/1988 31/12/2500 -26180000 01/01/1988 31/12/2500 LIBEN Granulated slag "slag sand" from the manufacture of iron or steel 01/01/1988 31/12/2500 -2619 01/01/1988 31/12/2500 LIBEN Slag, dross, scalings and other waste from the manufacture of iron or steel (excl. granulated slag) 01/01/1988 31/12/2500 -261900 01/01/1988 31/12/2500 LIBEN Slag, dross, scalings and other waste from the manufacture of iron or steel (excl. granulated slag) 01/01/1988 31/12/2500 -26190010 01/01/1988 31/12/2003 LIBEN Blast-furnace dust 01/01/1988 31/12/2003 -26190020 01/01/2004 31/12/2500 LIBEN Waste from the manufacture of iron or steel suitable for the recovery of iron or manganese 01/01/2004 31/12/2500 -26190040 01/01/2004 31/12/2009 LIBEN Slag from the manufacture of iron or steel suitable for the extraction of titanium oxide 01/01/2004 31/12/2009 -26190080 01/01/2004 31/12/2009 LIBEN Slag, dross, scalings and other waste from the manufacture of iron or steel (excl. granulated slag, waste suitable for the recovery of iron or manganese and slag suitable for the extraction of titanium oxide) 01/01/2004 31/12/2009 -26190090 01/01/2010 31/12/2500 LIBEN Slag, dross, scalings and other waste from the manufacture of iron or steel (excl. granulated slag, waste suitable for the recovery of iron or manganese) 01/01/2010 31/12/2500 -26190091 01/01/1988 31/12/2003 LIBEN Waste from the manufacture of iron or steel suitable for the recovery of iron or manganese 01/01/1988 31/12/2003 -26190093 01/01/1988 31/12/2003 LIBEN Slag from the manufacture of iron or steel suitable for the extraction of titanium oxide 01/01/1988 31/12/2003 -26190095 01/01/1988 31/12/2003 LIBEN Waste from the manufacture of iron or steel suitable for the extraction of vanadium 01/01/1988 31/12/2003 -26190099 01/01/1988 31/12/2003 LIBEN Slag, dross, scalings and other waste from the manufacture of iron or steel (excl. granulated slag, blast-furnace dust, waste suitable for the recovery of iron or manganese or for the extraction of vanadium and slag suitable for the extraction of titanium oxide) 01/01/1988 31/12/2003 -2620 01/01/1988 31/12/2500 LIBEN Slag, ash and residues containing metals, arsenic or their compounds (excl. those from the manufacture of iron or steel) 01/01/1988 31/12/2500 -262011 01/01/1988 31/12/2500 LIBEN Hard zinc spelter 01/01/1988 31/12/2500 -26201100 01/01/1988 31/12/2500 LIBEN Hard zinc spelter 01/01/1988 31/12/2500 -262019 01/01/1988 31/12/2500 LIBEN Slag, ash and residues containing mainly zinc (excl. hard zinc spelter) 01/01/1988 31/12/2500 -26201900 01/01/1988 31/12/2500 LIBEN Slag, ash and residues containing mainly zinc (excl. hard zinc spelter) 01/01/1988 31/12/2500 -262020 01/01/1988 31/12/2001 LIBEN Ash and residues containing mainly lead 01/01/1988 31/12/2001 -26202000 01/01/1988 31/12/2001 LIBEN Ash and residues containing mainly lead 01/01/1988 31/12/2001 -262021 01/01/2002 31/12/2500 LIBEN Leaded gasoline sludges and leaded anti-knock compound sludges, obtained from storage tanks of leaded gasoline and leaded anti-knock compounds and containing mainly lead, lead compounds and iron oxide 01/01/2002 31/12/2500 -26202100 01/01/2002 31/12/2500 LIBEN Leaded gasoline sludges and leaded anti-knock compound sludges, obtained from storage tanks of leaded gasoline and leaded anti-knock compounds and containing mainly lead, lead compounds and iron oxide 01/01/2002 31/12/2500 -262029 01/01/2002 31/12/2500 LIBEN Slag, ash and residues containing mainly lead (excl. leaded gasoline sludges and leaded anti-knock compound sludges) 01/01/2002 31/12/2500 -26202900 01/01/2002 31/12/2500 LIBEN Slag, ash and residues containing mainly lead (excl. leaded gasoline sludges and leaded anti-knock compound sludges) 01/01/2002 31/12/2500 -262030 01/01/1988 31/12/2500 LIBEN Slag, ash and residues containing mainly copper 01/01/1988 31/12/2500 -26203000 01/01/1988 31/12/2500 LIBEN Slag, ash and residues containing mainly copper 01/01/1988 31/12/2500 -262040 01/01/1988 31/12/2500 LIBEN Slag, as and residues containing mainly aluminium 01/01/1988 31/12/2500 -26204000 01/01/1988 31/12/2500 LIBEN Slag, as and residues containing mainly aluminium 01/01/1988 31/12/2500 -262050 01/01/1988 31/12/2001 LIBEN Ash and residues containing mainly vanadium 01/01/1988 31/12/2001 -26205000 01/01/1988 31/12/2001 LIBEN Ash and residues containing mainly vanadium 01/01/1988 31/12/2001 -262060 01/01/2002 31/12/2500 LIBEN Slag, ash and residues, containing arsenic, mercury, thallium or their mixtures, of a kind used for the extraction of arsenic or those metals or for the manufacture of their chemical compounds (excl. those from the manufacture of iron or steel) 01/01/2002 31/12/2500 -26206000 01/01/2002 31/12/2500 LIBEN Slag, ash and residues, containing arsenic, mercury, thallium or their mixtures, of a kind used for the extraction of arsenic or those metals or for the manufacture of their chemical compounds (excl. those from the manufacture of iron or steel) 01/01/2002 31/12/2500 -262090 01/01/1988 31/12/2001 LIBEN Ash and residues, containing metals or metal compounds (excl. those containing primarily zinc, lead, copper, aluminium or vanadium) 01/01/1988 31/12/2001 -26209010 01/01/1988 31/12/2001 LIBEN Ash and residues containing mainly nickel 01/01/1988 31/12/2001 -26209020 01/01/1988 31/12/2001 LIBEN Ash and residues containing mainly niobium or tantalum 01/01/1988 31/12/2001 -26209030 01/01/1988 31/12/2001 LIBEN Ash and residues containing mainly tungsten 01/01/1988 31/12/2001 -26209040 01/01/1988 31/12/2001 LIBEN Ash and residues containing mainly tin 01/01/1988 31/12/2001 -26209050 01/01/1988 31/12/2001 LIBEN Ash and residues containing mainly molybdenum 01/01/1988 31/12/2001 -26209060 01/01/1988 31/12/2001 LIBEN Ash and residues containing mainly titanium 01/01/1988 31/12/2001 -26209070 01/01/1988 31/12/2001 LIBEN Ash and residues containing mainly antimony 01/01/1988 31/12/2001 -26209080 01/01/1988 31/12/2001 LIBEN Ash and residues containing mainly cobalt 01/01/1988 31/12/2001 -26209091 01/01/1988 31/12/2001 LIBEN Ash and residues containing mainly zirconium 01/01/1988 31/12/2001 -26209099 01/01/1988 31/12/1995 LIBEN Ash and residues containing metals or metal compounds (excl. those from the manufacture of iron or steel and those containing primarily zinc, lead, copper, aluminium, vanadium, nickel, niobium, tantalum, tungsten, zinc, molybdenum, titanium, antimony, cobalt or zirconium) 01/01/1988 31/12/1995 -26209099 01/01/1996 31/12/2001 LIBEN Ash and residues containing metals or metal compounds (excl. those from the manufacture of iron or steel and those containing primarily zinc, lead, copper, aluminium, vanadium, nickel, niobium, tantalum, tungsten, zinc, molybdenum, titanium, antimony, cobalt or zirconium) 01/01/1996 31/12/2001 -262091 01/01/2002 31/12/2500 LIBEN Slag, ash and residues, containing antimony, beryllium, cadmium, chromium or their mixtures (excl. those from the manufacture of iron or steel) 01/01/2002 31/12/2500 -26209100 01/01/2002 31/12/2500 LIBEN Slag, ash and residues, containing antimony, beryllium, cadmium, chromium or their mixtures (excl. those from the manufacture of iron or steel) 01/01/2002 31/12/2500 -262099 01/01/2002 31/12/2500 LIBEN Slag, ash and residues, containing metals or metal compounds (excl. those from the manufacture of iron or steel, those containing primarily zinc, lead, copper or aluminium, those containing arsenic, mercury, thallium or their mixtures of a kind used for the extraction of arsenic or those metals or for the manufacture of their chemical compounds and those containing antimony, beryllium, cadmium, chromium or their mixtures) 01/01/2002 31/12/2500 -26209910 01/01/2002 31/12/2500 LIBEN Slag, ash and residues containing mainly nickel 01/01/2002 31/12/2500 -26209920 01/01/2002 31/12/2500 LIBEN Slag, ash and residues containing mainly niobium or tantalum 01/01/2002 31/12/2500 -26209930 01/01/2002 31/12/2003 LIBEN Ash and residues containing mainly tungsten 01/01/2002 31/12/2003 -26209940 01/01/2002 31/12/2500 LIBEN Slag, ash and residues containing mainly tin 01/01/2002 31/12/2500 -26209950 01/01/2002 31/12/2003 LIBEN Ash and residues containing mainly molybdenum 01/01/2002 31/12/2003 -26209960 01/01/2002 31/12/2500 LIBEN Slag, ash and residues containing mainly titanium 01/01/2002 31/12/2500 -26209970 01/01/2002 31/12/2003 LIBEN Ash and residues containing mainly cobalt 01/01/2002 31/12/2003 -26209980 01/01/2002 31/12/2003 LIBEN Ash and residues containing mainly zirconium 01/01/2002 31/12/2003 -26209990 01/01/2002 31/12/2003 LIBEN Ash and residues containing metals or metal compounds (excl. those from the manufacture of iron or steel and those containing primarily zinc, lead, copper, aluminium, nickel, niobium, tantalum, tungsten, tin, molybdenum, titanium, cobalt or zirconium, those containing arsenic, mercury, thallium or their mixtures of a kind used for the extraction of arsenic or those metals or for the manufacture of their chemical compounds and those containing antimony, beryllium, cadmium, chromium or their mixtures) 01/01/2002 31/12/2003 -26209995 01/01/2004 31/12/2500 LIBEN Slag, ash and residues containing metals or metal compounds (excl. those from the manufacture of iron or steel and those containing primarily zinc, lead, copper, aluminium, nickel, niobium, tantalum, tin or titanium, those containing arsenic, mercury, thallium or their mixtures of a kind used for the extraction of arsenic or those metals or for the manufacture of their chemical compounds and those containing antimony, beryllium, cadmium, chromium or their mixtures) 01/01/2004 31/12/2500 -2621 01/01/1988 31/12/2001 LIBEN Slag and ash, incl. seaweed ash "kelp" (excl. slag, incl. granulated, from the manufacture of iron or steel and ashes and residues containing metals or metal compounds) 01/01/1988 31/12/2001 -2621 01/01/2002 31/12/2500 LIBEN Slag and ash, incl. seaweed ash "kelp"; ash and residues from the incineration of municipal waste (excl. slag, incl. granulated, from the manufacture of iron or steel and ashes and residues containing arsenic, metals or metal compounds) 01/01/2002 31/12/2500 -262100 01/01/1988 31/12/2001 LIBEN Slag and ash, incl. seaweed ash "kelp" (excl. slag, incl. granulated, from the manufacture of iron or steel and ashes and residues containing metals or metal compounds) 01/01/1988 31/12/2001 -26210000 01/01/1988 31/12/2001 LIBEN Slag and ash, incl. seaweed ash "kelp" (excl. slag, incl. granulated, from the manufacture of iron or steel and ashes and residues containing metals or metal compounds) 01/01/1988 31/12/2001 -262110 01/01/2002 31/12/2500 LIBEN Ash and residues from the incineration of municipal waste 01/01/2002 31/12/2500 -26211000 01/01/2002 31/12/2500 LIBEN Ash and residues from the incineration of municipal waste 01/01/2002 31/12/2500 -262190 01/01/2002 31/12/2500 LIBEN Slag and ash, incl. seaweed ash "kelp" (excl. slag, incl. granulated, from the manufacture of iron or steel, ashes and residues containing arsenic, metals or metal compounds and those from the incineration of municipal waste) 01/01/2002 31/12/2500 -26219000 01/01/2002 31/12/2500 LIBEN Slag and ash, incl. seaweed ash "kelp" (excl. slag, incl. granulated, from the manufacture of iron or steel, ashes and residues containing arsenic, metals or metal compounds and those from the incineration of municipal waste) 01/01/2002 31/12/2500 -26CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 26 01/01/2002 31/12/2500 -26CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 26 01/01/2002 31/12/2500 -26CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 26 01/01/2002 31/12/2500 -26MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -26MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -26MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -26SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 26 01/01/1988 31/12/2500 -26SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 26 and SITC section 0 01/01/1997 31/12/2001 -26SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 26 and SITC group 000 01/01/1997 31/12/2001 -26SSS2 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 26 and SITC section 2 01/01/1990 31/12/2500 -26SSS278 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 26 and SITC group 278 01/01/1997 31/12/2500 -26SSS281 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 26 and SITC group 281 01/01/1997 31/12/2500 -26SSS283 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 26 and SITC group 283 01/01/1997 31/12/2500 -26SSS284 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 26 and SITC group 284 01/01/1997 31/12/2500 -26SSS285 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 26 and SITC group 285 01/01/1993 31/12/2500 -26SSS286 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 26 and SITC group 286 01/01/1990 31/12/2500 -26SSS287 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 26 and SITC group 287 01/01/1990 31/12/2500 -26SSS288 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 26 and SITC group 288 01/01/1997 31/12/2500 -26SSS289 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 26 and SITC group 289 01/01/1997 31/12/2500 -26SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 26 and SITC section 9 01/01/1988 31/12/1996 -26SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 26 and SITC section 9 01/01/1997 31/12/2500 -26SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 26 and SITC group 999 01/01/1988 31/12/1996 -26SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 26 and SITC group 999 01/01/1997 31/12/2500 -27 01/01/1988 31/12/2500 LIBEN MINERAL FUELS, MINERAL OILS AND PRODUCTS OF THEIR DISTILLATION; BITUMINOUS SUBSTANCES; MINERAL WAXES 01/01/1988 31/12/2500 -2701 01/01/1988 31/12/2500 LIBEN Coal; briquettes, ovoids and similar solid fuels manufactured from coal 01/01/1988 31/12/2500 -270111 01/01/1988 31/12/2500 LIBEN Anthracite, whether or not pulverised, non-agglomerated 01/01/1988 31/12/2500 -27011100 01/01/2012 31/12/2500 LIBEN Anthracite, whether or not pulverised, non-agglomerated 01/01/2012 31/12/2500 -27011110 01/01/1988 31/12/2011 LIBEN Anthracite, whether or not pulverised, having a volatile matter limit of <= 10% on a dry, mineral-matter-free basis, non-agglomerated 01/01/1988 31/12/2011 -27011190 01/01/1988 31/12/2011 LIBEN Anthracite, whether or not pulverised, having a volatile matter limit of > 10% but <= 14% on a dry, mineral-matter-free basis, non-agglomerated 01/01/1988 31/12/2011 -270112 01/01/1988 31/12/2500 LIBEN Bituminous coal, whether or not pulverised, non-agglomerated 01/01/1988 31/12/2500 -27011210 01/01/1988 31/12/2500 LIBEN Coking coal, whether or not pulverised, non-agglomerated 01/01/1988 31/12/2500 -27011290 01/01/1988 31/12/2500 LIBEN Bituminous coal, whether or not pulverised, non-agglomerated (excl. coking) 01/01/1988 31/12/2500 -270112SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 2701 12 01/01/2006 31/12/2500 -270119 01/01/1988 31/12/2500 LIBEN Coal, whether or not pulverised, non-agglomerated (excl. anthracite and bituminous coal) 01/01/1988 31/12/2500 -27011900 01/01/1988 31/12/2500 LIBEN Coal, whether or not pulverised, non-agglomerated (excl. anthracite and bituminous coal) 01/01/1988 31/12/2500 -270120 01/01/1988 31/12/2500 LIBEN Briquettes, ovoids and similar solid fuels manufactured from coal 01/01/1988 31/12/2500 -27012000 01/01/1988 31/12/2500 LIBEN Briquettes, ovoids and similar solid fuels manufactured from coal 01/01/1988 31/12/2500 -2701S3 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2701 and SITC section 3 01/01/1998 31/12/2500 -2701S321 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2701 and SITC group 321 01/01/1998 31/12/2500 -2702 01/01/1988 31/12/2500 LIBEN Lignite, whether or not agglomerated (excl. jet) 01/01/1988 31/12/2500 -270210 01/01/1988 31/12/2500 LIBEN Lignite, whether or not pulverised, non-agglomerated (excl. jet) 01/01/1988 31/12/2500 -27021000 01/01/1988 31/12/2500 LIBEN Lignite, whether or not pulverised, non-agglomerated (excl. jet) 01/01/1988 31/12/2500 -270220 01/01/1988 31/12/2500 LIBEN Agglomerated lignite (excl. jet) 01/01/1988 31/12/2500 -27022000 01/01/1988 31/12/2500 LIBEN Agglomerated lignite (excl. jet) 01/01/1988 31/12/2500 -2703 01/01/1988 31/12/2500 LIBEN Peat, incl. peat litter, whether or not agglomerated 01/01/1988 31/12/2500 -270300 01/01/1988 31/12/2500 LIBEN Peat, incl. peat litter, whether or not agglomerated 01/01/1988 31/12/2500 -27030000 01/01/1988 31/12/2500 LIBEN Peat, incl. peat litter, whether or not agglomerated 01/01/1988 31/12/2500 -2704 01/01/1988 31/12/2500 LIBEN Coke and semi-coke of coal, of lignite or of peat, whether or not agglomerated; retort carbon 01/01/1988 31/12/2500 -270400 01/01/1988 31/12/2500 LIBEN Coke and semi-coke of coal, of lignite or of peat, whether or not agglomerated; retort carbon 01/01/1988 31/12/2500 -27040010 01/01/2014 31/12/2500 LIBEN Coke and semi-coke of coal, whether or not agglomerated 01/01/2014 31/12/2500 -27040011 01/01/1988 31/12/2013 LIBEN Coke and semi-coke of coal, whether or not agglomerated, for the manufacture of electrodes 01/01/1988 31/12/2013 -27040019 01/01/1988 31/12/2013 LIBEN Coke and semi-coke of coal, whether or not agglomerated (excl. for the manufacture of electrodes) 01/01/1988 31/12/2013 -27040030 01/01/1988 31/12/2500 LIBEN Coke and semi-coke of lignite, whether or not agglomerated 01/01/1988 31/12/2500 -27040090 01/01/1988 31/12/2500 LIBEN Coke and semi-coke of peat, whether or not agglomerated; retort carbon 01/01/1988 31/12/2500 -270400SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 2704 00 01/01/2006 31/12/2500 -2705 01/01/1988 31/12/2500 LIBEN Coal gas, water gas, producer gas, lean gas and similar gases (excl. petroleum gases and other gaseous hydrocarbons) 01/01/1988 31/12/2500 -270500 01/01/1988 31/12/2500 LIBEN Coal gas, water gas, producer gas, lean gas and similar gases (excl. petroleum gases and other gaseous hydrocarbons) 01/01/1988 31/12/2500 -27050000 01/01/1988 31/12/2500 LIBEN Coal gas, water gas, producer gas, lean gas and similar gases (excl. petroleum gases and other gaseous hydrocarbons) 01/01/1988 31/12/2500 -2706 01/01/1988 31/12/2500 LIBEN Tar distilled from coal, from lignite or from peat, and other mineral tars, whether or not dehydrated or partially distilled, incl. reconstituted tars 01/01/1988 31/12/2500 -270600 01/01/1988 31/12/2500 LIBEN Tar distilled from coal, from lignite or from peat, and other mineral tars, whether or not dehydrated or partially distilled, incl. reconstituted tars 01/01/1988 31/12/2500 -27060000 01/01/1988 31/12/2500 LIBEN Tar distilled from coal, from lignite or from peat, and other mineral tars, whether or not dehydrated or partially distilled, incl. reconstituted tars 01/01/1988 31/12/2500 -2707 01/01/1988 31/12/2500 LIBEN Oils and other products of the distillation of high temperature coal tar; similar products in which the weight of the aromatic constituents exceeds that of the non-aromatic constituents 01/01/1988 31/12/2500 -270710 01/01/1988 31/12/2500 LIBEN Benzol "benzene" containing > 50% of benzene (excl. chemically defined) 01/01/1988 31/12/2500 -27071000 01/01/2013 31/12/2500 LIBEN Benzol "benzene" containing > 50% of benzene (excl. chemically defined) 01/01/2013 31/12/2500 -27071010 01/01/1988 31/12/2012 LIBEN Benzol "benzene" containing > 50% of benzene, for use as a power or heating fuels (excl. chemically defined) 01/01/1988 31/12/2012 -27071090 01/01/1988 31/12/2012 LIBEN Benzol "benzene" containing > 50% of benzene (excl. chemically defined and for power or heating fuels) 01/01/1988 31/12/2012 -270720 01/01/1988 31/12/2500 LIBEN Toluol "toluene" containing > 50% of toluene (excl. chemically defined) 01/01/1988 31/12/2500 -27072000 01/01/2013 31/12/2500 LIBEN Toluol "toluene" containing > 50% of toluene (excl. chemically defined) 01/01/2013 31/12/2500 -27072010 01/01/1988 31/12/2012 LIBEN Toluol "toluene" containing > 50% of toluene, for use as a power or heating fuels (excl. chemically defined) 01/01/1988 31/12/2012 -27072090 01/01/1988 31/12/2012 LIBEN Toluol "toluene" containing > 50% of toluene (excl. chemically defined and for power or heating fuels) 01/01/1988 31/12/2012 -270730 01/01/1988 31/12/2500 LIBEN Xylol "xylenes" containing > 50% of xylenes (excl. chemically defined) 01/01/1988 31/12/2500 -27073000 01/01/2013 31/12/2500 LIBEN Xylol "xylenes" containing > 50% of xylenes (excl. chemically defined) 01/01/2013 31/12/2500 -27073010 01/01/1988 31/12/2012 LIBEN Xylol "xylenes" containing > 50% of xylenes, for use as a power or heating fuels (excl. chemically defined) 01/01/1988 31/12/2012 -27073090 01/01/1988 31/12/2012 LIBEN Xylol "xylenes" containing > 50% of xylenes (excl. chemically defined and for power or heating fuels) 01/01/1988 31/12/2012 -270740 01/01/1988 31/12/2500 LIBEN Naphthalene containing > 50% of naphthalene (excl. chemically defined) 01/01/1988 31/12/2500 -27074000 01/01/1988 31/12/2500 LIBEN Naphthalene containing > 50% of naphthalene (excl. chemically defined) 01/01/1988 31/12/2500 -270750 01/01/1988 31/12/2500 LIBEN Aromatic hydrocarbon mixtures of which >= 65% by volume, incl. losses, distils at 250°C by the ASTM D 86 method (excl. chemically defined compounds) 01/01/1988 31/12/2500 -27075000 01/01/2013 31/12/2500 LIBEN Aromatic hydrocarbon mixtures of which >= 65% by volume, incl. losses, distils at 250°C by the ASTM D 86 method (excl. chemically defined compounds) 01/01/2013 31/12/2500 -27075010 01/01/1988 31/12/2012 LIBEN Aromatic hydrocarbon mixtures of which >= 65% by volume, incl. losses, distils at 250°C by the ASTM D 86 method, for use as a power or heating fuels (excl. chemically defined compounds) 01/01/1988 31/12/2012 -27075090 01/01/1998 31/12/2012 LIBEN Aromatic hydrocarbon mixtures of which >= 65% by volume, incl. losses, distils at 250°C by the ASTM D 86 method (excl. chemically defined compounds and those for use as a power or heating fuels) 01/01/1998 31/12/2012 -27075091 01/01/1988 31/12/1997 LIBEN Solvent naphtha (excl. chemically defined) 01/01/1988 31/12/1997 -27075099 01/01/1988 31/12/1997 LIBEN Aromatic hydrocarbon mixtures of which >= 65% by volume, incl. losses, distils at 250°C by the ASTM D 86 method (excl. chemically defined compounds, for use as power or heating fuels and solvent naphtha) 01/01/1988 31/12/1997 -270760 01/01/1988 31/12/2006 LIBEN Phenols containing > 50% of phenols (excl. chemically defined) 01/01/1988 31/12/2006 -27076000 01/01/1993 31/12/2006 LIBEN Phenols containing > 50% of phenols (excl. chemically defined) 01/01/1993 31/12/2006 -27076010 01/01/1988 31/12/1992 LIBEN Cresols (excl. chemically defined) 01/01/1988 31/12/1992 -27076030 01/01/1988 31/12/1992 LIBEN Xylenols (excl. chemically defined) 01/01/1988 31/12/1992 -27076090 01/01/1988 31/12/1992 LIBEN Phenols, incl. mixtures of phenols (excl. chemically defined, cresols and xylenols) 01/01/1988 31/12/1992 -270791 01/01/1988 31/12/2500 LIBEN Creosote oils (excl. chemically defined) 01/01/1988 31/12/2500 -27079100 01/01/1988 31/12/2500 LIBEN Creosote oils (excl. chemically defined) 01/01/1988 31/12/2500 -270799 01/01/1988 31/12/2500 LIBEN Oils and other products of the distillation of high temperature coal tars; similar products in which the weight of the aromatic constituents exceeds that of the non-aromatic constituents (excl. chemically-defined compounds, benzol "benzene", toluol "toluene", xylol "xylenes", naphthalene, aromatic hydrocarbon mixtures of subheading 2707.50, and creosote oils) 01/01/1988 31/12/2500 -27079911 01/01/1988 31/12/2500 LIBEN Crude light oils from the distillation of high temperature coal tars, of which >= 90% by volume distils at temperatures of up to 200°C (excl. chemically defined) 01/01/1988 31/12/2500 -27079919 01/01/1988 31/12/2500 LIBEN Crude light oils from the distillation of high temperature coal tars (excl. those of which >= 90% by volume distils at temperatures of up to 200°C and chemically defined compounds) 01/01/1988 31/12/2500 -27079920 01/01/2012 31/12/2500 LIBEN Anthracene (excl. chemically defined); sulphuretted toppings from the first distillation of high temperature coal tars 01/01/2012 31/12/2500 -27079930 01/01/1988 31/12/2011 LIBEN Sulphuretted toppings from the first distillation of high temperature coal tars 01/01/1988 31/12/2011 -27079950 01/01/1988 31/12/2500 LIBEN Pyridine, quinoline, acridine, aniline bases and other basic products of the first distillation of high temperature coal tars, n.e.s. 01/01/1988 31/12/2500 -27079970 01/01/1988 31/12/2011 LIBEN Anthracene (excl. chemically defined) 01/01/1988 31/12/2011 -27079980 01/01/2007 31/12/2500 LIBEN Phenols containing > 50% of phenols (excl. chemically defined) 01/01/2007 31/12/2500 -27079991 01/01/1988 31/12/2500 LIBEN Oils and other products of the distillation of high temperature coal tars and similar products in which the weight of the aromatic constituents exceeds that of the non-aromatic constituents, for the manufacture of carbon in heading 2803 01/01/1988 31/12/2500 -27079999 01/01/1988 31/12/2500 LIBEN Oils and other products of the distillation of high temperature coal tars and similar products in which the weight of the aromatic constituents exceeds that of the non-aromatic constituents, n.e.s. 01/01/1988 31/12/2500 -2708 01/01/1988 31/12/2500 LIBEN Pitch and pitch coke, obtained from coal tar or from other mineral tars 01/01/1988 31/12/2500 -270810 01/01/1988 31/12/2500 LIBEN Pitch obtained from coal tar or from other mineral tars 01/01/1988 31/12/2500 -27081000 01/01/1988 31/12/2500 LIBEN Pitch obtained from coal tar or from other mineral tars 01/01/1988 31/12/2500 -270820 01/01/1988 31/12/2500 LIBEN Pitch coke obtained from coal tar or from other mineral tars 01/01/1988 31/12/2500 -27082000 01/01/1988 31/12/2500 LIBEN Pitch coke obtained from coal tar or from other mineral tars 01/01/1988 31/12/2500 -2708S3 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2708 and SITC section 3 01/01/1998 31/12/2500 -2708S335 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2708 and SITC group 335 01/01/1998 31/12/2500 -2709 01/01/1988 31/12/2500 LIBEN Petroleum oils and oils obtained from bituminous minerals, crude 01/01/1988 31/12/2500 -270900 01/01/1988 31/12/2500 LIBEN Petroleum oils and oils obtained from bituminous minerals, crude 01/01/1988 31/12/2500 -27090000 01/01/1988 31/12/1988 LIBEN Petroleum oils and oils obtained from bituminous minerals, crude 01/01/1988 31/12/1988 -27090010 01/01/1989 31/12/2500 LIBEN Natural gas condensates 01/01/1989 31/12/2500 -27090090 01/01/1989 31/12/2500 LIBEN Petroleum oils and oils obtained from bituminous minerals, crude (excl. natural gas condensates) 01/01/1989 31/12/2500 -270900SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 2709 00 01/01/2006 31/12/2500 -2710 01/01/1988 31/12/2001 LIBEN Petroleum oils and oils obtained from bituminous minerals (excl. crude); preparations containing >= 70% by weight of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations, n.e.s. 01/01/1988 31/12/2001 -2710 01/01/2002 31/12/2500 LIBEN Petroleum oils and oils obtained from bituminous minerals (excl. crude); preparations containing >= 70% by weight of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations, n.e.s.; waste oils containing mainly petroleum or bituminous minerals 01/01/2002 31/12/2500 -271000 01/01/1988 31/12/2001 LIBEN Petroleum oils and oils obtained from bituminous minerals (excl. crude); preparations containing >= 70% by weight of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations, n.e.s. 01/01/1988 31/12/2001 -27100011 01/01/1988 31/12/2001 LIBEN Light oils of petroleum or bituminous minerals for undergoing a specific process as defined in Additional Note 4 to chapter 27 01/01/1988 31/12/2001 -27100015 01/01/1988 31/12/2001 LIBEN Light oils of petroleum or bituminous minerals, for undergoing chemical transformation (excl. specific processes specified in Additional Note 4 to chapter 27) 01/01/1988 31/12/2001 -27100021 01/01/1988 31/12/2001 LIBEN White spirit 01/01/1988 31/12/2001 -27100025 01/01/1988 31/12/2001 LIBEN Special spirits (excl. white spirit) 01/01/1988 31/12/2001 -27100026 01/01/1993 31/12/2001 LIBEN Aviation spirit 01/01/1993 31/12/2001 -27100027 01/01/1993 31/12/2001 LIBEN Motor spirit, with a lead content <= 0,013 g/l, with an research octane number "RON" of < 95 01/01/1993 31/12/2001 -27100029 01/01/1993 31/12/2001 LIBEN Motor spirit, with a lead content <= 0,013 g/l, with an research octane number "RON" of >= 95, but < 98 01/01/1993 31/12/2001 -27100031 01/01/1988 31/12/1992 LIBEN Aviation spirit 01/01/1988 31/12/1992 -27100032 01/01/1993 31/12/2001 LIBEN Motor spirit, with a lead content <= 0,013 g/l, with an research octane number "RON" of >= 98 01/01/1993 31/12/2001 -27100033 01/01/1988 31/12/1992 LIBEN Motor spirit, containing =< 0.013 g/l of lead (excl. aviation spirit) 01/01/1988 31/12/1992 -27100034 01/01/1993 31/12/2001 LIBEN Motor spirit, with a lead content > 0,013 g/l, with an research octane number "RON" of < 98 (excl. aviation spirit) 01/01/1993 31/12/2001 -27100035 01/01/1988 31/12/1992 LIBEN Motor spirit, containing > 0.013 g/l of lead (excl. aviation spirit) 01/01/1988 31/12/1992 -27100036 01/01/1993 31/12/2001 LIBEN Motor spirit, with a lead content > 0,013 g/l, with an research octane number "RON" of >= 98 (excl. aviation spirit) 01/01/1993 31/12/2001 -27100037 01/01/1988 31/12/2001 LIBEN Jet fuel, spirit type (excl. aviation spirit) 01/01/1988 31/12/2001 -27100039 01/01/1988 31/12/2001 LIBEN Light oils of petroleum or bituminous minerals, n.e.s. (excl. for undergoing chemical transformation, for undergoing a specific process as defined in Additional Note 4 to chapter 27, and special spirits, motor spirit and spirit type jet fuel) 01/01/1988 31/12/2001 -27100041 01/01/1988 31/12/2001 LIBEN Medium oils of petroleum or bituminous minerals for undergoing a specific process as defined in Additional Note 4 to chapter 27 01/01/1988 31/12/2001 -27100045 01/01/1988 31/12/2001 LIBEN Medium oils of petroleum or bituminous minerals, for undergoing chemical transformation (excl. specific processes specified in Additional Note 4 to chapter 27) 01/01/1988 31/12/2001 -27100051 01/01/1988 31/12/2001 LIBEN Jet fuel, kerosene type 01/01/1988 31/12/2001 -27100055 01/01/1988 31/12/2001 LIBEN Kerosene (excl. jet fuel) 01/01/1988 31/12/2001 -27100059 01/01/1988 31/12/2001 LIBEN Medium oils of petroleum or bituminous minerals, n.e.s. (excl. for undergoing chemical transformation, for undergoing a specific process as defined in Additional Note 4 to chapter 27, and kerosene) 01/01/1988 31/12/2001 -27100061 01/01/1988 31/12/2001 LIBEN Gas oils of petroleum or bituminous minerals for undergoing a specific process as defined in Additional Note 4 to chapter 27 01/01/1988 31/12/2001 -27100065 01/01/1988 31/12/2001 LIBEN Gas oils of petroleum or bituminous minerals, for undergoing chemical transformation (excl. specific processes specified in Additional Note 4 to chapter 27) 01/01/1988 31/12/2001 -27100066 01/01/1997 31/12/2001 LIBEN Gas oils of petroleum or bituminous minerals, with a sulphur content of <= 0,05% by weight (excl. for undergoing chemical transformation and for undergoing a specific process as defined in Additional Note 4 to chapter 27) 01/01/1997 31/12/2001 -27100067 01/01/1997 31/12/2001 LIBEN Gas oils of petroleum or bituminous minerals, with a sulphur content of > 0,05% but <= 0,2% by weight (excl. for undergoing chemical transformation and for undergoing a specific process as defined in Additional Note 4 to chapter 27) 01/01/1997 31/12/2001 -27100068 01/01/1997 31/12/2001 LIBEN Gas oils of petroleum or bituminous minerals, with a sulphur content of > 0,2% by weight (excl. for undergoing chemical transformation and for undergoing a specific process as defined in Additional Note 4 to chapter 27) 01/01/1997 31/12/2001 -27100069 01/01/1988 31/12/1996 LIBEN Gas oils of petroleum or bituminous minerals (excl. for undergoing chemical transformation and for undergoing a specific process as defined in Additional Note 4 to chapter 27) 01/01/1988 31/12/1996 -27100071 01/01/1988 31/12/2001 LIBEN Fuel oils of petroleum or bituminous minerals for undergoing a specific process as defined in Additional Note 4 to chapter 27 01/01/1988 31/12/2001 -27100072 01/01/1993 31/12/2001 LIBEN Fuel oils obtained from bituminous materials, for undergoing chemical transformation (excl. specific processes specified in Additional Note 4 to chapter 27) 01/01/1993 31/12/2001 -27100074 01/01/1993 31/12/2001 LIBEN Fuel oils obtained from bituminous materials, with a sulphur content of <= 1% by weight (excl. for undergoing chemical transformation or a process as specified in Additional Note 4 to chapter 27) 01/01/1993 31/12/2001 -27100075 01/01/1988 31/12/1992 LIBEN Fuel oils of petroleum or bituminous minerals, for undergoing chemical transformation (excl. processes specified in 2710.00-71) 01/01/1988 31/12/1992 -27100076 01/01/1993 31/12/2001 LIBEN Fuel oils obtained from bituminous materials, with a sulphur content of > 1% to 2% by weight (excl. for undergoing chemical transformation or a process as specified in Additional Note 4 to chapter 27) 01/01/1993 31/12/2001 -27100077 01/01/1993 31/12/2001 LIBEN Fuel oils obtained from bituminous materials, with a sulphur content of > 2% to 2,8% by weight (excl. for undergoing chemical transformation or a process as specified in Additional Note 4 to chapter 27) 01/01/1993 31/12/2001 -27100078 01/01/1993 31/12/2001 LIBEN Fuel oils obtained from bituminous materials, with a sulphur content of > 2,8% by weight (excl. for undergoing chemical transformation or a process as specified in Additional Note 4 to chapter 27) 01/01/1993 31/12/2001 -27100079 01/01/1988 31/12/1992 LIBEN Fuel oils of petroleum or bituminous minerals (excl. for undergoing chemical transformation and for undergoing a specific process as defined in additional note 4 to chapter 27) 01/01/1988 31/12/1992 -27100081 01/01/1993 31/12/2001 LIBEN Lubricating oils and other preparations containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations, for undergoing a process as specified in Additional Note 4 to chapter 27 01/01/1993 31/12/2001 -27100083 01/01/1993 31/12/2001 LIBEN Lubricating oils and other preparations containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations, for undergoing chemical transformation (excl. specific processes specified in Additional Note 4 to chapter 27) 01/01/1993 31/12/2001 -27100085 01/01/1993 31/12/1998 LIBEN Lubricating oils and other preparations containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations, to be mixed in accordance with the terms of Additional Note 6 to chapter 27 01/01/1993 31/12/1998 -27100087 01/01/1993 31/12/2001 LIBEN Motor oils, compressor lube oils and turbine lube oils containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations (excl. for undergoing chemical transformation or the specific processes specified in Additional Note 4 to chapter 27 and to be mixed in accordance with the terms of Additional Note 6 to chapter 27) 01/01/1993 31/12/2001 -27100088 01/01/1993 31/12/2001 LIBEN Liquids for hydraulic purposes containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations (excl. for undergoing chemical transformation or the specific processes specified in Additional Note 4 to chapter 27 and to be mixed in accordance with the terms of Additional Note 6 to chapter 27) 01/01/1993 31/12/2001 -27100089 01/01/1993 31/12/2001 LIBEN White oils, liquid paraffin containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituent of the preparations (excl. for undergoing chemical transformation or the specific processes specified in Additional Note 4 to chapter 27 and to be mixed in accordance with the terms of Additional Note 6 to chapter 27) 01/01/1993 31/12/2001 -27100091 01/01/1988 31/12/1992 LIBEN Lubricating oils and other preparations of a petroleum or bituminous minerals oils content of >= 70 %, these oils being the basic constituents of the preparations, for undergoing a specific process as defined in additional note 4 to chapter 27 01/01/1988 31/12/1992 -27100092 01/01/1993 31/12/2001 LIBEN Gear oils and reductor oils containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituent of the preparations (excl. for undergoing chemical transformation or the specific processes specified in Additional Note 4 to chapter 27 and to be mixed in accordance with the terms of Additional Note 6 to chapter 27) 01/01/1993 31/12/2001 -27100093 01/01/1988 31/12/1992 LIBEN Lubricating oils and other preparations of a petroleum or bituminous minerals oils content of >= 70 %, these oils being the basic constituents of the preparations, for undergoing chemical transformation (excl. processes specified in 2710.00-91) 01/01/1988 31/12/1992 -27100094 01/01/1993 31/12/2001 LIBEN Metal-working compounds, mould release oils, anti-corrosion oils containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituent of the preparations (excl. for undergoing chemical transformation or the specific processes specified in Additional Note 4 to chapter 27 and to be mixed in accordance with the terms of Additional Note 6 to chapter 27) 01/01/1993 31/12/2001 -27100095 01/01/1988 31/12/1992 LIBEN Lubricating oils and other preparations of a petroleum or bituminous minerals oils content of >= 70 %, these oils being the basic constituents of the preparations, to be mixed in accordance with the terms of additional note 6 to chapter 27) 01/01/1988 31/12/1992 -27100096 01/01/1993 31/12/2001 LIBEN Electrical insulating oils containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituent of the preparations (excl. for undergoing chemical transformation or the specific processes specified in Additional Note 4 to chapter 27 and to be mixed in accordance with the terms of Additional Note 6 to chapter 27) 01/01/1993 31/12/2001 -27100097 01/01/1999 31/12/2001 LIBEN Lubricating oils and other preparations, n.e.s. containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations (excl. for undergoing chemical transformation or the specific processes specified in Additional Note 4 to chapter 27) 01/01/1999 31/12/2001 -27100098 01/01/1993 31/12/1998 LIBEN Lubricating oils and other preparations n.e.s. containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations (excl. for undergoing chemical transformation or the specific processes specified in Additional Note 4 to chapter 27 and to be mixed in accordance with the terms of Additional Note 6 to chapter 27) 01/01/1993 31/12/1998 -27100099 01/01/1988 31/12/1992 LIBEN Lubricating oils and other preparations of a petroleum or bituminous minerals oils content of >= 70 %, these oils being the basic constituents of the preparations, n.e.s. (excl. for undergoing chemical transformation, for undergoing a specific process as defined in additional note 4 to chapter 27, to be mixed in accordance with the terms of additional note 6 to chapter 27, and light and medium oils) 01/01/1988 31/12/1992 -271011 01/01/2002 31/12/2011 LIBEN Light oils and preparations, of petroleum or bituminous minerals which >= 90% by volume "incl. losses" distil at 210°C "ASTM D 86 method" 01/01/2002 31/12/2011 -27101111 01/01/2002 31/12/2011 LIBEN Light oils of petroleum or bituminous minerals for undergoing a specific process as defined in Additional Note 4 to chapter 27 01/01/2002 31/12/2011 -27101115 01/01/2002 31/12/2011 LIBEN Light oils of petroleum or bituminous minerals, for undergoing chemical transformation (excl. specific processes specified in Additional Note 4 to chapter 27) 01/01/2002 31/12/2011 -27101121 01/01/2002 31/12/2011 LIBEN White spirit 01/01/2002 31/12/2011 -27101125 01/01/2002 31/12/2011 LIBEN Special spirits (excl. white spirit) of petroleum or bituminous minerals 01/01/2002 31/12/2011 -27101131 01/01/2002 31/12/2011 LIBEN Aviation spirit 01/01/2002 31/12/2011 -27101141 01/01/2002 31/12/2011 LIBEN Motor spirit, with a lead content <= 0,013 g/l, with an research octane number "RON" of < 95 01/01/2002 31/12/2011 -27101145 01/01/2002 31/12/2011 LIBEN Motor spirit, with a lead content <= 0,013 g/l, with an research octane number "RON" of >= 95, but < 98 01/01/2002 31/12/2011 -27101149 01/01/2002 31/12/2011 LIBEN Motor spirit, with a lead content <= 0,013 g/l, with an research octane number "RON" of >= 98 01/01/2002 31/12/2011 -27101151 01/01/2002 31/12/2011 LIBEN Motor spirit, with a lead content > 0,013 g/l, with an research octane number "RON" of < 98 (excl. aviation spirit) 01/01/2002 31/12/2011 -27101159 01/01/2002 31/12/2011 LIBEN Motor spirit, with a lead content > 0,013 g/l, with an research octane number "RON" of >= 98 (excl. aviation spirit) 01/01/2002 31/12/2011 -27101170 01/01/2002 31/12/2011 LIBEN Jet fuel, spirit type (excl. aviation spirit) 01/01/2002 31/12/2011 -27101190 01/01/2002 31/12/2011 LIBEN Light oils and preparations, of petroleum or bituminous minerals, n.e.s. (excl. for undergoing chemical transformation, for undergoing a specific process as defined in Additional Note 4 to chapter 27, and special spirits, motor spirit and spirit type jet fuel) 01/01/2002 31/12/2011 -271011SS 01/01/2006 31/12/2011 LIBEN Confidential trade of heading 2710 11 01/01/2006 31/12/2011 -271012 01/01/2012 31/12/2500 LIBEN Light oils and preparations, of petroleum or bituminous minerals which >= 90% by volume "incl. losses" distil at 210°C "ASTM D 86 method" (excl. containing biodiesel) 01/01/2012 31/12/2500 -27101211 01/01/2012 31/12/2500 LIBEN Light oils of petroleum or bituminous minerals for undergoing a specific process as defined in Additional Note 5 to chapter 27 (excl. containing biodiesel) 01/01/2012 31/12/2500 -27101215 01/01/2012 31/12/2500 LIBEN Light oils of petroleum or bituminous minerals, for undergoing chemical transformation (excl. for specific processes specified in Additional Note 5 to chapter 27, and containing biodiesel) 01/01/2012 31/12/2500 -27101221 01/01/2012 31/12/2500 LIBEN White spirit 01/01/2012 31/12/2500 -27101225 01/01/2012 31/12/2500 LIBEN Special spirits (excl. white spirit) of petroleum or bituminous minerals 01/01/2012 31/12/2500 -27101231 01/01/2012 31/12/2500 LIBEN Aviation spirit 01/01/2012 31/12/2500 -27101241 01/01/2012 31/12/2500 LIBEN Motor spirit, with a lead content <= 0,013 g/l, with a research octane number "RON" of < 95 (excl. containing biodiesel) 01/01/2012 31/12/2500 -27101245 01/01/2012 31/12/2500 LIBEN Motor spirit, with a lead content <= 0,013 g/l, with a research octane number "RON" of >= 95 but < 98 (excl. containing biodiesel) 01/01/2012 31/12/2500 -27101249 01/01/2012 31/12/2500 LIBEN Motor spirit, with a lead content <= 0,013 g/l, with a research octane number "RON" of >= 98 (excl. containing biodiesel) 01/01/2012 31/12/2500 -27101250 01/01/2019 31/12/2500 LIBEN Motor spirit, with a lead content > 0,013 g/l (excl. containing biodiesel, and aviation spirit) 01/01/2019 31/12/2500 -27101251 01/01/2012 31/12/2018 LIBEN Motor spirit, with a lead content > 0,013 g/l and a research octane number "RON" of < 98 (excl. aviation spirit) 01/01/2012 31/12/2018 -27101259 01/01/2012 31/12/2018 LIBEN Motor spirit, with a lead content > 0,013 g/l and a research octane number "RON" of >= 98 (excl. aviation spirit) 01/01/2012 31/12/2018 -27101270 01/01/2012 31/12/2500 LIBEN Jet fuel, spirit type (excl. aviation spirit) 01/01/2012 31/12/2500 -27101290 01/01/2012 31/12/2500 LIBEN Light oils and preparations, of petroleum or bituminous minerals, n.e.s. (excl. containing biodiesel, for undergoing chemical transformation, and special spirits, motor spirit and spirit type jet fuel) 01/01/2012 31/12/2500 -271019 01/01/2002 31/12/2500 LIBEN Medium oils and preparations, of petroleum or bituminous minerals, not containing biodiesel, n.e.s. 01/01/2002 31/12/2500 -27101911 01/01/2002 31/12/2500 LIBEN Medium oils of petroleum or bituminous minerals for undergoing a specific process as defined in Additional Note 5 to chapter 27 01/01/2002 31/12/2500 -27101915 01/01/2002 31/12/2500 LIBEN Medium oils of petroleum or bituminous minerals, for undergoing chemical transformation (excl. for specific processes specified in Additional Note 5 to chapter 27) 01/01/2002 31/12/2500 -27101921 01/01/2002 31/12/2500 LIBEN Jet fuel, kerosene type 01/01/2002 31/12/2500 -27101925 01/01/2002 31/12/2500 LIBEN Kerosene (excl. jet fuel) 01/01/2002 31/12/2500 -27101929 01/01/2002 31/12/2500 LIBEN Medium oils and preparations, of petroleum or bituminous minerals, n.e.s. (excl. for undergoing chemical transformation, and kerosene) 01/01/2002 31/12/2500 -27101931 01/01/2002 31/12/2500 LIBEN Gas oils of petroleum or bituminous minerals for undergoing a specific process as defined in Additional Note 5 to chapter 27 01/01/2002 31/12/2500 -27101935 01/01/2002 31/12/2500 LIBEN Gas oils of petroleum or bituminous minerals, for undergoing chemical transformation (excl. specific processes specified in Additional Note 5 to chapter 27) 01/01/2002 31/12/2500 -27101941 01/01/2002 31/12/2011 LIBEN Gas oils of petroleum or bituminous minerals, with a sulphur content of <= 0,05% by weight (excl. for undergoing chemical transformation and for undergoing a specific process as defined in Additional Note 4 to chapter 27) 01/01/2002 31/12/2011 -27101943 01/01/2012 31/12/2500 LIBEN Gas oils of petroleum or bituminous minerals, with a sulphur content of <= 0,001% by weight (excl. containing biodiesel, and for undergoing chemical transformation) 01/01/2012 31/12/2500 -27101945 01/01/2002 31/12/2011 LIBEN Gas oils of petroleum or bituminous minerals, with a sulphur content of > 0,05% but <= 0,2% by weight (excl. for undergoing chemical transformation and for undergoing a specific process as defined in Additional Note 4 to chapter 27) 01/01/2002 31/12/2011 -27101946 01/01/2012 31/12/2500 LIBEN Gas oils of petroleum or bituminous minerals, with a sulphur content of > 0,001% but <= 0,002% by weight (excl. containing biodiesel, and for undergoing chemical transformation) 01/01/2012 31/12/2500 -27101947 01/01/2012 31/12/2500 LIBEN Gas oils of petroleum or bituminous minerals, with a sulphur content of > 0,002% but <= 0,1% by weight (excl. containing biodiesel, and for undergoing chemical transformation) 01/01/2012 31/12/2500 -27101948 01/01/2012 31/12/2500 LIBEN Gas oils of petroleum or bituminous minerals, with a sulphur content of > 0,1% by weight (excl. containing biodiesel, and for undergoing chemical transformation) 01/01/2012 31/12/2500 -27101949 01/01/2002 31/12/2011 LIBEN Gas oils of petroleum or bituminous minerals, with a sulphur content of > 0,2% by weight (excl. for undergoing chemical transformation and for undergoing a specific process as defined in Additional Note 4 to chapter 27) 01/01/2002 31/12/2011 -27101951 01/01/2002 31/12/2500 LIBEN Fuel oils of petroleum or bituminous minerals for undergoing a specific process as defined in Additional Note 5 to chapter 27 (excl. containing biodiesel) 01/01/2002 31/12/2500 -27101955 01/01/2002 31/12/2500 LIBEN Fuel oils obtained from bituminous materials, for undergoing chemical transformation (excl. for specific processes specified in Additional Note 5 to chapter 27, and containing biodiesel) 01/01/2002 31/12/2500 -27101961 01/01/2002 31/12/2011 LIBEN Fuel oils obtained from bituminous materials, with a sulphur content of <= 1% by weight (excl. for undergoing chemical transformation or a process as specified in Additional Note 4 to chapter 27) 01/01/2002 31/12/2011 -27101962 01/01/2012 31/12/2500 LIBEN Fuel oils obtained from bituminous materials, with a sulphur content of <= 0,1% by weight (excl. for undergoing chemical transformation, and containing biodiesel) 01/01/2012 31/12/2500 -27101963 01/01/2002 31/12/2011 LIBEN Fuel oils obtained from bituminous materials, with a sulphur content of > 1% to 2% by weight (excl. for undergoing chemical transformation or a process as specified in Additional Note 4 to chapter 27) 01/01/2002 31/12/2011 -27101964 01/01/2012 31/12/2019 LIBEN Fuel oils obtained from bituminous materials, with a sulphur content of > 0,1% but <= 1% by weight (excl. for undergoing chemical transformation, and containing biodiesel) 01/01/2012 31/12/2019 -27101965 01/01/2002 31/12/2011 LIBEN Fuel oils obtained from bituminous materials, with a sulphur content of > 2% to 2,8% by weight (excl. for undergoing chemical transformation or a process as specified in Additional Note 4 to chapter 27) 01/01/2002 31/12/2011 -27101966 01/01/2020 31/12/2500 LIBEN Fuel oils obtained from bituminous materials, with a sulphur content of > 0,1% but <= 0,5% by weight (excl. for undergoing chemical transformation, and containing biodiesel) 01/01/2020 31/12/2500 -27101967 01/01/2020 31/12/2500 LIBEN Fuel oils obtained from bituminous materials, with a sulphur content of > 0,5% by weight (excl. for undergoing chemical transformation, and containing biodiesel) 01/01/2020 31/12/2500 -27101968 01/01/2012 31/12/2019 LIBEN Fuel oils obtained from bituminous materials, with a sulphur content of > 1% by weight (excl. for undergoing chemical transformation, and containing biodiesel) 01/01/2012 31/12/2019 -27101969 01/01/2002 31/12/2011 LIBEN Fuel oils obtained from bituminous materials, with a sulphur content of > 2,8% by weight (excl. for undergoing chemical transformation or a process as specified in Additional Note 4 to chapter 27) 01/01/2002 31/12/2011 -27101971 01/01/2002 31/12/2500 LIBEN Lubricating oils and other preparations containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations, for undergoing a specific process as defined in Additional Note 5 to chapter 27 01/01/2002 31/12/2500 -27101975 01/01/2002 31/12/2500 LIBEN Lubricating oils and other preparations containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations, for undergoing chemical transformation (excl. specific processes specified in Additional Note 5 to chapter 27) 01/01/2002 31/12/2500 -27101981 01/01/2002 31/12/2011 LIBEN Motor oils, compressor lube oils and turbine lube oils containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations (excl. for undergoing chemical transformation or the specific processes specified in Additional Note 4 to chapter 27 and to be mixed in accordance with the terms of Additional Note 6 to chapter 27) 01/01/2002 31/12/2011 -27101981 01/01/2012 31/12/2500 LIBEN Motor oils, compressor lube oils and turbine lube oils containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations (excl. for undergoing chemical transformation) 01/01/2012 31/12/2500 -27101983 01/01/2002 31/12/2011 LIBEN Liquids for hydraulic purposes containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations (excl. for undergoing chemical transformation or the specific processes specified in Additional Note 4 to chapter 27 and to be mixed in accordance with the terms of Additional Note 6 to chapter 27) 01/01/2002 31/12/2011 -27101983 01/01/2012 31/12/2500 LIBEN Liquids for hydraulic purposes containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations (excl. for undergoing chemical transformation) 01/01/2012 31/12/2500 -27101985 01/01/2002 31/12/2011 LIBEN White oils, liquid paraffin containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituent of the preparations (excl. for undergoing chemical transformation or the specific processes specified in Additional Note 4 to chapter 27 and to be mixed in accordance with the terms of Additional Note 6 to chapter 27) 01/01/2002 31/12/2011 -27101985 01/01/2012 31/12/2500 LIBEN White oils, liquid paraffin containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituent of the preparations (excl. for undergoing chemical transformation) 01/01/2012 31/12/2500 -27101987 01/01/2002 31/12/2011 LIBEN Gear oils and reductor oils containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituent of the preparations (excl. for undergoing chemical transformation or the specific processes specified in Additional Note 4 to chapter 27 and to be mixed in accordance with the terms of Additional Note 6 to chapter 27) 01/01/2002 31/12/2011 -27101987 01/01/2012 31/12/2500 LIBEN Gear oils and reductor oils containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituent of the preparations (excl. for undergoing chemical transformation) 01/01/2012 31/12/2500 -27101991 01/01/2002 31/12/2011 LIBEN Metalworking compounds, mould-release oils, anti-corrosion oils containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituent of the preparations (excl. for undergoing chemical transformation or the specific processes specified in Additional Note 4 to chapter 27 and to be mixed in accordance with the terms of Additional Note 6 to chapter 27) 01/01/2002 31/12/2011 -27101991 01/01/2012 31/12/2500 LIBEN Metalworking compounds, mould-release oils, anti-corrosion oils containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituent of the preparations (excl. for undergoing chemical transformation) 01/01/2012 31/12/2500 -27101993 01/01/2002 31/12/2011 LIBEN Electrical insulating oils containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituent of the preparations (excl. for undergoing chemical transformation or the specific processes specified in Additional Note 4 to chapter 27 and to be mixed in accordance with the terms of Additional Note 6 to chapter 27) 01/01/2002 31/12/2011 -27101993 01/01/2012 31/12/2500 LIBEN Electrical insulating oils containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituent of the preparations (excl. for undergoing chemical transformation) 01/01/2012 31/12/2500 -27101999 01/01/2002 31/12/2011 LIBEN Lubricating oils and other heavy oils and preparations n.e.s., containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations (excl. for undergoing chemical transformation or the specific processes specified in Additional Note 4 to chapter 27) 01/01/2002 31/12/2011 -27101999 01/01/2012 31/12/2500 LIBEN Lubricating oils and other heavy oils and preparations n.e.s., containing by weight >= 70% of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations (excl. for undergoing chemical transformation) 01/01/2012 31/12/2500 -271019SS 01/01/2007 31/12/2500 LIBEN Confidential trade of heading 2710 19 01/01/2007 31/12/2500 -271020 01/01/2012 31/12/2500 LIBEN Petroleum oils and oils obtained from bituminous minerals (other than crude) and preparations n.e.s. or included, containing by weight 70 % or more of petroleum oils or of oils obtained from bituminous minerals, these oils being the basic constituents of the preparations, containing biodiesel (excl. waste oils) 01/01/2012 31/12/2500 -27102011 01/01/2012 31/12/2500 LIBEN Gas oils of >= 70% of petroleum or bituminous minerals, with a sulphur content of <= 0,001% by weight, containing biodiesel 01/01/2012 31/12/2500 -27102015 01/01/2012 31/12/2019 LIBEN Gas oils of >= 70% of petroleum or bituminous minerals, with a sulphur content of > 0,001% but <= 0,002% by weight, containing biodiesel 01/01/2012 31/12/2019 -27102016 01/01/2020 31/12/2500 LIBEN Gas oils of >= 70% of petroleum or bituminous minerals, with a sulphur content of > 0,001% but <= 0,1% by weight, containing biodiesel 01/01/2020 31/12/2500 -27102017 01/01/2012 31/12/2019 LIBEN Gas oils of >= 70% of petroleum or bituminous minerals, with a sulphur content of > 0,002% but <= 0,1% by weight, containing biodiesel 01/01/2012 31/12/2019 -27102019 01/01/2012 31/12/2500 LIBEN Gas oils of >= 70% of petroleum or bituminous minerals, with a sulphur content of > 0,1% by weight, containing biodiesel 01/01/2012 31/12/2500 -27102031 01/01/2012 31/12/2019 LIBEN Fuel oils of >= 70% of petroleum or bituminous minerals, with a sulphur content of <= 0,1% by weight, containing biodiesel 01/01/2012 31/12/2019 -27102032 01/01/2020 31/12/2500 LIBEN Fuel oils of >= 70% of petroleum or bituminous minerals, with a sulphur content of <= 0,5% by weight, containing biodiesel 01/01/2020 31/12/2500 -27102035 01/01/2012 31/12/2019 LIBEN Fuel oils of >= 70% of petroleum or bituminous minerals, with a sulphur content of > 0,1% but <= 1% by weight, containing biodiesel 01/01/2012 31/12/2019 -27102038 01/01/2020 31/12/2500 LIBEN Fuel oils of >= 70% of petroleum or bituminous minerals, with a sulphur content of > 0,5% by weight, containing biodiesel 01/01/2020 31/12/2500 -27102039 01/01/2012 31/12/2019 LIBEN Fuel oils of >= 70% of petroleum or bituminous minerals, with a sulphur content of > 1% by weight, containing biodiesel 01/01/2012 31/12/2019 -27102090 01/01/2012 31/12/2500 LIBEN Oils of >= 70% of petroleum or bituminous minerals, containing biodiesel (excl. gas oils and fuel oils) 01/01/2012 31/12/2500 -271091 01/01/2002 31/12/2500 LIBEN Waste oils containing polychlorinated biphenyls [PCBs], polychlorinated terphenyls [PCTs] or polybrominated biphenyls [PBBs] 01/01/2002 31/12/2500 -27109100 01/01/2002 31/12/2500 LIBEN Waste oils containing polychlorinated biphenyls [PCBs], polychlorinated terphenyls [PCTs] or polybrominated biphenyls [PBBs] 01/01/2002 31/12/2500 -271099 01/01/2002 31/12/2500 LIBEN Waste oils containing mainly petroleum or bituminous minerals (excl. those containing polychlorinated biphenyls [PCBs], polychlorinated terphenyls [PCTs] or polybrominated biphenyls [PBBs]) 01/01/2002 31/12/2500 -27109900 01/01/2002 31/12/2500 LIBEN Waste oils containing mainly petroleum or bituminous minerals (excl. those containing polychlorinated biphenyls [PCBs], polychlorinated terphenyls [PCTs] or polybrominated biphenyls [PBBs]) 01/01/2002 31/12/2500 -2710S3 01/01/2005 31/12/2500 LIBEN Confidential trade of heading 2710 and SITC section 3 01/01/2005 31/12/2500 -2710S334 01/01/2005 31/12/2500 LIBEN Confidential trade of heading 2710 and SITC group 334 01/01/2005 31/12/2500 -2711 01/01/1988 31/12/2500 LIBEN Petroleum gas and other gaseous hydrocarbons 01/01/1988 31/12/2500 -271111 01/01/1988 31/12/2500 LIBEN Natural gas, liquefied 01/01/1988 31/12/2500 -27111100 01/01/1988 31/12/2500 LIBEN Natural gas, liquefied 01/01/1988 31/12/2500 -271112 01/01/1988 31/12/2500 LIBEN Propane, liquefied 01/01/1988 31/12/2500 -27111211 01/01/1988 31/12/2500 LIBEN Propane of a purity of >= 99%, for use as a power or heating fuel, liquefied 01/01/1988 31/12/2500 -27111219 01/01/1988 31/12/2500 LIBEN Propane of a purity of >= 99%, liquefied (excl. for use as a power or heating fuel) 01/01/1988 31/12/2500 -27111291 01/01/1988 31/12/2500 LIBEN Propane of a purity of < 99%, liquefied, for undergoing a specific process as defined in Additional Note 5 to chapter 27 01/01/1988 31/12/2500 -27111293 01/01/1988 31/12/2500 LIBEN Propane of a purity of < 99%, liquefied, for undergoing chemical transformation (excl. processes specified in 2711.12.91) 01/01/1988 31/12/2500 -27111294 01/01/1993 31/12/2500 LIBEN Liquid propane of a purity of > 90%, but < 99% (excl. for undergoing chemical transformation) 01/01/1993 31/12/2500 -27111296 01/01/1993 31/12/1996 LIBEN Liquified mixtures of propane and butane containing > 50% to 70% of propane (excl. for undergoing chemical transformation or a process as specified in Additional Note 4 to chapter 27) 01/01/1993 31/12/1996 -27111297 01/01/1997 31/12/2500 LIBEN Liquefied propane of a purity of <= 90% (excl. for undergoing chemical transformation) 01/01/1997 31/12/2500 -27111298 01/01/1993 31/12/1996 LIBEN Liquified propane of a purity of <= 90% (excl. for undergoing chemical transformation or a process as specified in Additional Note 4 to chapter 27 and mixtures of propane and butane containing > 50% to 70% of propane) 01/01/1993 31/12/1996 -27111299 01/01/1988 31/12/1992 LIBEN Propane of a purity of < 99 %, liquefied (excl. for undergoing chemical transformation or for undergoing a specific process as defined in additional note 4 to chapter 27) 01/01/1988 31/12/1992 -271113 01/01/1988 31/12/2500 LIBEN Butanes, liquefied (excl. of a purity of >= 95% of N-butane or isobutane) 01/01/1988 31/12/2500 -27111310 01/01/1988 31/12/2500 LIBEN Butanes for undergoing a specific process as defined in Additional Note 5 to chapter 27, liquefied (excl. of a purity of >= 95% of N-butane or isobutane) 01/01/1988 31/12/2500 -27111330 01/01/1988 31/12/2500 LIBEN Butanes for undergoing chemical transformation, liquefied (excl. for specific processes specified in Additional Note 5 to chapter 27 and butanes of a purity of >= 95% of N-butane or isobutane) 01/01/1988 31/12/2500 -27111390 01/01/1988 31/12/1992 LIBEN Butanes, liquefied (excl. for undergoing chemical transformation or for undergoing a specific process as defined in additional note 4 to chapter 27, and butanes of a purity of >= 95 % of n-butane or isobutane) 01/01/1988 31/12/1992 -27111391 01/01/1993 31/12/2500 LIBEN Liquefied butane of a purity of > 90% but < 95% (excl. for undergoing chemical transformation) 01/01/1993 31/12/2500 -27111393 01/01/1993 31/12/1996 LIBEN Mixtures of butane and propane containing > 50% to 65% of butane (excl. for undergoing chemical transformation or a process as specified in Additional Note 4 to chapter 27) 01/01/1993 31/12/1996 -27111397 01/01/1997 31/12/2500 LIBEN Liquefied butane of a purity of <= 90% (excl. for undergoing chemical transformation) 01/01/1997 31/12/2500 -27111398 01/01/1993 31/12/1996 LIBEN Liquified butane of a purity of <= 90% (excl. for undergoing chemical transformation or a process as specified in Additional Note 4 to chapter 27 and mixtures of butane and propane containing > 50% to 65% of butane) 01/01/1993 31/12/1996 -271114 01/01/1988 31/12/2500 LIBEN Ethylene, propylene, butylene and butadiene, liquefied (excl. ethylene of a purity of >= 95% and propylene, butylene and butadiene of a purity of >= 90%) 01/01/1988 31/12/2500 -27111400 01/01/1988 31/12/2500 LIBEN Ethylene, propylene, butylene and butadiene, liquefied (excl. ethylene of a purity of >= 95% and propylene, butylene and butadiene of a purity of >= 90%) 01/01/1988 31/12/2500 -271119 01/01/1988 31/12/2500 LIBEN Gaseous hydrocarbons, liquefied, n.e.s. (excl. natural gas, propane, butane, ethylene, propylene, butylene and butadiene) 01/01/1988 31/12/2500 -27111900 01/01/1988 31/12/2500 LIBEN Gaseous hydrocarbons, liquefied, n.e.s. (excl. natural gas, propane, butane, ethylene, propylene, butylene and butadiene) 01/01/1988 31/12/2500 -271121 01/01/1988 31/12/2500 LIBEN Natural gas in gaseous state 01/01/1988 31/12/2500 -27112100 01/01/1988 31/12/2500 LIBEN Natural gas in gaseous state 01/01/1988 31/12/2500 -271121SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 2711 21 01/01/2006 31/12/2500 -271129 01/01/1988 31/12/2500 LIBEN Hydrocarbons in gaseous state, n.e.s. (excl. natural gas) 01/01/1988 31/12/2500 -27112900 01/01/1988 31/12/2500 LIBEN Hydrocarbons in gaseous state, n.e.s. (excl. natural gas) 01/01/1988 31/12/2500 -2711S3 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2711 and SITC section 3 01/01/1997 31/12/2500 -2711S343 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2711 and SITC group 343 01/01/1997 31/12/2500 -2711S344 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2711 and SITC group 344 01/01/1997 31/12/2500 -2711S34S 01/01/2005 31/12/2500 LIBEN Confidential trade of heading 2711 and SITC division 34 01/01/2005 31/12/2500 -2711S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2711 and SITC section 9 01/01/2002 31/12/2500 -2711S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2711 and SITC group 999 01/01/2002 31/12/2500 -2712 01/01/1988 31/12/2500 LIBEN Petroleum jelly, paraffin wax, micro- crystalline petroleum wax, slack wax, ozokerite, lignite wax, peat wax, other mineral waxes, and similar products obtained by synthesis or by other processes, whether or not coloured 01/01/1988 31/12/2500 -271210 01/01/1988 31/12/2500 LIBEN Petroleum jelly 01/01/1988 31/12/2500 -27121010 01/01/1988 31/12/2500 LIBEN Crude petroleum jelly 01/01/1988 31/12/2500 -27121090 01/01/1988 31/12/2500 LIBEN Petroleum jelly (excl. crude) 01/01/1988 31/12/2500 -271220 01/01/1988 31/12/2500 LIBEN Paraffin wax containing < 0,75% by weight of oil 01/01/1988 31/12/2500 -27122000 01/01/1988 31/12/1996 LIBEN Paraffin wax containing < 0,75% by weight of oil 01/01/1988 31/12/1996 -27122010 01/01/1997 31/12/2500 LIBEN Synthetic paraffin wax containing < 0,75% by weight of oil and of a molecular weight of >= 460 but <= 1.560 01/01/1997 31/12/2500 -27122090 01/01/1997 31/12/2500 LIBEN Paraffin wax containing < 0,75% by weight of oil (excl. synthetic paraffin wax of a molecular weight of >= 460 but <= 1.560) 01/01/1997 31/12/2500 -271290 01/01/1988 31/12/2500 LIBEN Paraffin wax, microcrystalline petroleum wax, slack wax, ozokerite, lignite wax, peat wax, other mineral waxes, and similar products obtained by synthesis or by other processes, whether or not coloured (excl. petroleum jelly and paraffin wax containing < 0,75% by weight of oil) 01/01/1988 31/12/2500 -27129011 01/01/1988 31/12/2500 LIBEN Crude ozokerite, lignite wax or peat wax "natural products" 01/01/1988 31/12/2500 -27129019 01/01/1988 31/12/2500 LIBEN Ozokerite, lignite wax or peat wax "natural products", whether or not coloured (excl. crude) 01/01/1988 31/12/2500 -27129031 01/01/1988 31/12/2500 LIBEN Crude paraffin wax, microcrystalline petroleum wax, slack wax, other mineral waxes, and similar products obtained by synthesis or by other processes, for undergoing a specific process as defined in Additional Note 5 to chapter 27 (excl. petroleum jelly, paraffin wax containing < 0,75% by weight of oil, ozokerite, lignite wax and peat wax) 01/01/1988 31/12/2500 -27129033 01/01/1988 31/12/2500 LIBEN Crude paraffin wax, microcrystalline petroleum wax, slack wax, other mineral waxes, and similar products obtained by synthesis or by other processes, for undergoing chemical transformation (excl. for specific processes specified in Additional Note 5 to chapter 27, petroleum jelly, paraffin wax containing < 0,75% by weight of oil, ozokerite, lignite wax and peat wax) 01/01/1988 31/12/2500 -27129039 01/01/1988 31/12/2500 LIBEN Crude paraffin wax, microcrystalline petroleum wax, slack wax, other mineral waxes, and similar products obtained by synthesis or by other processes (excl. for undergoing chemical transformation, petroleum jelly, paraffin wax containing < 0,75% by weight of oil, ozokerite, lignite wax and peat wax) 01/01/1988 31/12/2500 -27129090 01/01/1988 31/12/1996 LIBEN Paraffin wax, microcrystalline petroleum wax, slack wax, other mineral waxes, and similar products obtained by synthesis or by other processes, whether or not coloured (excl. petroleum jelly, paraffin wax containing < 0,75% by weight of oil, ozokerite, lignite wax and peat wax) 01/01/1988 31/12/1996 -27129091 01/01/1997 31/12/2500 LIBEN Blend of 1-alkenes containing by weight >= 80% of 1-alkenes of a chain-length of >= 24 but <= 28 carbon atoms 01/01/1997 31/12/2500 -27129099 01/01/1997 31/12/2500 LIBEN Paraffin wax, microcrystalline petroleum wax, slack wax, ozokerite, lignite wax, peat wax, other mineral waxes, and similar products obtained by synthesis or by other processes, whether or not coloured (excl. petroleum jelly, paraffin wax containing < 0,75% by weight of oil and a blend of 1-alkenes containing by weight >= 80% of 1-alkenes of a chain-length of >= 24 but <= 28 carbon atoms) 01/01/1997 31/12/2500 -2713 01/01/1988 31/12/2500 LIBEN Petroleum coke, petroleum bitumen and other residues of petroleum oil or of oil obtained from bituminous minerals, n.e.s. 01/01/1988 31/12/2500 -271311 01/01/1988 31/12/2500 LIBEN Petroleum coke, non-calcined 01/01/1988 31/12/2500 -27131100 01/01/1988 31/12/2500 LIBEN Petroleum coke, non-calcined 01/01/1988 31/12/2500 -271312 01/01/1988 31/12/2500 LIBEN Petroleum coke, calcined 01/01/1988 31/12/2500 -27131200 01/01/1988 31/12/2500 LIBEN Petroleum coke, calcined 01/01/1988 31/12/2500 -271320 01/01/1988 31/12/2500 LIBEN Petroleum bitumen 01/01/1988 31/12/2500 -27132000 01/01/1988 31/12/2500 LIBEN Petroleum bitumen 01/01/1988 31/12/2500 -271390 01/01/1988 31/12/2500 LIBEN Residues of petroleum oil or of oil obtained from bituminous minerals (excl. petroleum coke and petroleum bitumen) 01/01/1988 31/12/2500 -27139010 01/01/1988 31/12/2500 LIBEN Residues of petroleum oil or of oil obtained from bituminous minerals for the manufacture of carbon of heading 2803 01/01/1988 31/12/2500 -27139090 01/01/1988 31/12/2500 LIBEN Residues of petroleum oil or of oil obtained from bituminous minerals (excl. for the manufacture of carbon of heading 2803, petroleum coke and petroleum bitumen) 01/01/1988 31/12/2500 -2714 01/01/1988 31/12/2500 LIBEN Bitumen and asphalt, natural; bituminous or oil-shale and tar sands; asphaltites and asphaltic rocks 01/01/1988 31/12/2500 -271410 01/01/1988 31/12/2500 LIBEN Bituminous or oil-shale and tar sands 01/01/1988 31/12/2500 -27141000 01/01/1988 31/12/2500 LIBEN Bituminous or oil-shale and tar sands 01/01/1988 31/12/2500 -271490 01/01/1988 31/12/2500 LIBEN Bitumen and asphalt, natural; asphaltites and asphaltic rocks 01/01/1988 31/12/2500 -27149000 01/01/1988 31/12/2500 LIBEN Bitumen and asphalt, natural; asphaltites and asphaltic rocks 01/01/1988 31/12/2500 -2715 01/01/1988 31/12/2500 LIBEN Bituminous mastics, cut-backs and other bituminous mixtures based on natural asphalt, on natural bitumen, on petroleum bitumen, on mineral tar or on mineral tar pitch 01/01/1988 31/12/2500 -271500 01/01/1988 31/12/2500 LIBEN Bituminous mastics, cut-backs and other bituminous mixtures based on natural asphalt, on natural bitumen, on petroleum bitumen, on mineral tar or on mineral tar pitch 01/01/1988 31/12/2500 -27150000 01/01/1988 31/12/1994 LIBEN Bituminous mastics, cut-backs and other bituminous mixtures based on natural asphalt, on natural bitumen, on petroleum bitumen, on mineral tar or on mineral tar pitch 01/01/1988 31/12/1994 -27150000 01/01/1999 31/12/2500 LIBEN Bituminous mastics, cut-backs and other bituminous mixtures based on natural asphalt, on natural bitumen, on petroleum bitumen, on mineral tar or on mineral tar pitch 01/01/1999 31/12/2500 -27150010 01/01/1995 31/12/1998 LIBEN Bituminous mastics 01/01/1995 31/12/1998 -27150090 01/01/1995 31/12/1998 LIBEN Cut-backs and other bituminous mixtures based on natural asphalt or natural bitumen, petroleoum bitumen, mineral tar or mineral tar pitch (excl. bituminous mastics) 01/01/1995 31/12/1998 -2716 01/01/1988 31/12/2500 LIBEN Electrical energy 01/01/1988 31/12/2500 -271600 01/01/1988 31/12/2500 LIBEN Electrical energy 01/01/1988 31/12/2500 -27160000 01/01/1988 31/12/2500 LIBEN Electrical energy 01/01/1988 31/12/2500 -27BB 01/01/1988 31/12/2500 LIBEN Articles of chapter 27 declared as supplies or services for ships and aircrafts 01/01/1988 31/12/2500 -27BBB0 01/01/1988 31/12/2500 LIBEN Articles of chapter 27 declared as supplies or services for ships and aircrafts 01/01/1988 31/12/2500 -27BBB000 01/01/1988 31/12/2500 LIBEN Articles of chapter 27 declared as supplies or services for ships and aircrafts 01/01/1988 31/12/2500 -27CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 27 01/01/2002 31/12/2500 -27CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 27 01/01/2002 31/12/2500 -27CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 27 01/01/2002 31/12/2500 -27FF 01/01/2005 31/12/2500 LIBEN Goods of chapter 27 destined for the operators of the offshore installation or for the operation of the engines, machines and other equipment of the offshore installation 01/01/2005 31/12/2500 -27FFF0 01/01/2005 31/12/2500 LIBEN Goods of chapter 27 destined for the operators of the offshore installation or for the operation of the engines, machines and other equipment of the offshore installation 01/01/2005 31/12/2500 -27FFF000 01/01/2005 31/12/2500 LIBEN Goods of chapter 27 destined for the operators of the offshore installation or for the operation of the engines, machines and other equipment of the offshore installation 01/01/2005 31/12/2500 -27MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -27MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -27MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -27SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 27 01/01/1988 31/12/2500 -27SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 27 and SITC section 0 01/01/1997 31/12/2001 -27SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 27 and SITC group 000 01/01/1997 31/12/2001 -27SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC section 2 01/01/1997 31/12/2500 -27SSS278 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC group 278 01/01/1997 31/12/2500 -27SSS3 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC section 3 01/01/1988 31/12/2500 -27SSS321 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC group 321 01/01/1997 31/12/2500 -27SSS322 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC group 322 01/01/1997 31/12/2500 -27SSS325 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC group 325 01/01/1997 31/12/2500 -27SSS333 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC group 333 01/01/1997 31/12/2500 -27SSS334 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC group 334 01/01/1993 31/12/2500 -27SSS335 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC group 335 01/01/1988 31/12/2500 -27SSS33S 01/01/2005 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC division 33 01/01/2005 31/12/2500 -27SSS342 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC group 342 01/01/1997 31/12/2500 -27SSS343 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC group 343 01/01/1997 31/12/2500 -27SSS344 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC group 344 01/01/1997 31/12/2500 -27SSS345 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC group 345 01/01/1997 31/12/2500 -27SSS34S 01/01/2005 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC division 34 01/01/2005 31/12/2500 -27SSS351 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC group 351 01/01/1997 31/12/2500 -27SSS3SS 01/01/2005 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC section 3 01/01/2005 31/12/2500 -27SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 27 and SITC section 9 01/01/1988 31/12/1996 -27SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC section 9 01/01/1997 31/12/2500 -27SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 27 and SITC group 999 01/01/1988 31/12/1996 -27SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 27 and SITC group 999 01/01/1997 31/12/2500 -28 01/01/1988 31/12/2500 LIBEN INORGANIC CHEMICALS; ORGANIC OR INORGANIC COMPOUNDS OF PRECIOUS METALS, OF RARE-EARTH METALS, OF RADIOACTIVE ELEMENTS OR OF ISOTOPES 01/01/1988 31/12/2500 -2801 01/01/1988 31/12/2500 LIBEN Fluorine, chlorine, bromine and iodine 01/01/1988 31/12/2500 -280110 01/01/1988 31/12/2500 LIBEN Chlorine 01/01/1988 31/12/2500 -28011000 01/01/1988 31/12/2500 LIBEN Chlorine 01/01/1988 31/12/2500 -280120 01/01/1988 31/12/2500 LIBEN Iodine 01/01/1988 31/12/2500 -28012000 01/01/1988 31/12/2500 LIBEN Iodine 01/01/1988 31/12/2500 -280130 01/01/1988 31/12/2500 LIBEN Fluorine; bromine 01/01/1988 31/12/2500 -28013010 01/01/1988 31/12/2500 LIBEN Fluorine 01/01/1988 31/12/2500 -28013090 01/01/1988 31/12/2500 LIBEN Bromine 01/01/1988 31/12/2500 -2802 01/01/1988 31/12/2500 LIBEN Sulphur, sublimed or precipitated; colloidal sulphur 01/01/1988 31/12/2500 -280200 01/01/1988 31/12/2500 LIBEN Sulphur, sublimed or precipitated; colloidal sulphur 01/01/1988 31/12/2500 -28020000 01/01/1988 31/12/2500 LIBEN Sulphur, sublimed or precipitated; colloidal sulphur 01/01/1988 31/12/2500 -2803 01/01/1988 31/12/2500 LIBEN Carbon "carbon blacks and other forms of carbon", n.e.s. 01/01/1988 31/12/2500 -280300 01/01/1988 31/12/2500 LIBEN Carbon "carbon blacks and other forms of carbon", n.e.s. 01/01/1988 31/12/2500 -28030000 01/01/2009 31/12/2500 LIBEN Carbon "carbon blacks and other forms of carbon", n.e.s. 01/01/2009 31/12/2500 -28030010 01/01/1988 31/12/2008 LIBEN Methane black 01/01/1988 31/12/2008 -28030030 01/01/1988 31/12/1997 LIBEN Acetylene black 01/01/1988 31/12/1997 -28030080 01/01/1998 31/12/2008 LIBEN Carbon "carbon blacks and other forms of carbon", n.e.s. (excl. methane black) 01/01/1998 31/12/2008 -28030090 01/01/1988 31/12/1997 LIBEN Carbon "carbon blacks and other forms of carbon" n.e.s. (excl. methane black and acetylene black) 01/01/1988 31/12/1997 -280300SS 01/01/2007 31/12/2500 LIBEN Confidential trade of heading 2803 00 01/01/2007 31/12/2500 -2804 01/01/1988 31/12/2500 LIBEN Hydrogen, rare gases and other non-metals 01/01/1988 31/12/2500 -280410 01/01/1988 31/12/2500 LIBEN Hydrogen 01/01/1988 31/12/2500 -28041000 01/01/1988 31/12/2500 LIBEN Hydrogen 01/01/1988 31/12/2500 -280421 01/01/1988 31/12/2500 LIBEN Argon 01/01/1988 31/12/2500 -28042100 01/01/1988 31/12/2500 LIBEN Argon 01/01/1988 31/12/2500 -280429 01/01/1988 31/12/2500 LIBEN Rare gases (excl. argon) 01/01/1988 31/12/2500 -28042900 01/01/1988 31/12/1996 LIBEN Rare gases (excl. argon) 01/01/1988 31/12/1996 -28042910 01/01/1997 31/12/2500 LIBEN Helium 01/01/1997 31/12/2500 -28042990 01/01/1997 31/12/2500 LIBEN Neon, krypton and xenon 01/01/1997 31/12/2500 -280430 01/01/1988 31/12/2500 LIBEN Nitrogen 01/01/1988 31/12/2500 -28043000 01/01/1988 31/12/2500 LIBEN Nitrogen 01/01/1988 31/12/2500 -280440 01/01/1988 31/12/2500 LIBEN Oxygen 01/01/1988 31/12/2500 -28044000 01/01/1988 31/12/2500 LIBEN Oxygen 01/01/1988 31/12/2500 -280450 01/01/1988 31/12/2500 LIBEN Boron; tellurium 01/01/1988 31/12/2500 -28045010 01/01/1988 31/12/2500 LIBEN Boron 01/01/1988 31/12/2500 -28045090 01/01/1988 31/12/2500 LIBEN Tellurium 01/01/1988 31/12/2500 -280461 01/01/1988 31/12/2500 LIBEN Silicon containing >= 99,99% by weight of silicon 01/01/1988 31/12/2500 -28046100 01/01/1988 31/12/2500 LIBEN Silicon containing >= 99,99% by weight of silicon 01/01/1988 31/12/2500 -280469 01/01/1988 31/12/2500 LIBEN Silicon containing < 99,99% by weight of silicon 01/01/1988 31/12/2500 -28046900 01/01/1988 31/12/2500 LIBEN Silicon containing < 99,99% by weight of silicon 01/01/1988 31/12/2500 -280470 01/01/1988 31/12/2500 LIBEN Phosphorus 01/01/1988 31/12/2500 -28047000 01/01/1988 31/12/2020 LIBEN Phosphorus 01/01/1988 31/12/2020 -28047010 01/01/2021 31/12/2500 LIBEN Red phosphorus 01/01/2021 31/12/2500 -28047090 01/01/2021 31/12/2500 LIBEN Phosphorus (excl. red phosphorus) 01/01/2021 31/12/2500 -280480 01/01/1988 31/12/2500 LIBEN Arsenic 01/01/1988 31/12/2500 -28048000 01/01/1988 31/12/2500 LIBEN Arsenic 01/01/1988 31/12/2500 -280490 01/01/1988 31/12/2500 LIBEN Selenium 01/01/1988 31/12/2500 -28049000 01/01/1988 31/12/2500 LIBEN Selenium 01/01/1988 31/12/2500 -2804S5 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2804 and SITC section 5 01/01/1998 31/12/2500 -2804S522 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2804 and SITC group 522 01/01/1998 31/12/2500 -2805 01/01/1988 31/12/2500 LIBEN Alkali or alkaline-earth metals; rare-earth metals, scandium and yttrium, whether or not intermixed or interalloyed; mercury 01/01/1988 31/12/2500 -280511 01/01/1988 31/12/2500 LIBEN Sodium 01/01/1988 31/12/2500 -28051100 01/01/1988 31/12/2500 LIBEN Sodium 01/01/1988 31/12/2500 -280512 01/01/2002 31/12/2500 LIBEN Calcium 01/01/2002 31/12/2500 -28051200 01/01/2002 31/12/2500 LIBEN Calcium 01/01/2002 31/12/2500 -280519 01/01/1988 31/12/2001 LIBEN Alkali metals (excl. sodium) 01/01/1988 31/12/2001 -280519 01/01/2002 31/12/2500 LIBEN Alkali or alkaline-earth metals (excl. sodium and calcium) 01/01/2002 31/12/2500 -28051900 01/01/1988 31/12/2001 LIBEN Alkali metals (excl. sodium) 01/01/1988 31/12/2001 -28051910 01/01/2002 31/12/2500 LIBEN Strontium and barium 01/01/2002 31/12/2500 -28051990 01/01/2002 31/12/2500 LIBEN Alkali metals (excl. sodium) 01/01/2002 31/12/2500 -280521 01/01/1988 31/12/2001 LIBEN Calcium 01/01/1988 31/12/2001 -28052100 01/01/1988 31/12/2001 LIBEN Calcium 01/01/1988 31/12/2001 -280522 01/01/1988 31/12/2001 LIBEN Strontium and barium 01/01/1988 31/12/2001 -28052200 01/01/1988 31/12/2001 LIBEN Strontium and barium 01/01/1988 31/12/2001 -280530 01/01/1988 31/12/2500 LIBEN Rare-earth metals, scandium and yttrium, whether or not intermixed or interalloyed 01/01/1988 31/12/2500 -28053010 01/01/1988 31/12/2500 LIBEN Intermixtures or interalloys of rare-earth metals, scandium and yttrium 01/01/1988 31/12/2500 -28053020 01/01/2016 31/12/2500 LIBEN Cerium, lanthanum, praseodymium, neodymium and samarium, of a purity by weight of >=95% (excl. intermixtures and interalloys) 01/01/2016 31/12/2500 -28053030 01/01/2016 31/12/2500 LIBEN Europium, gadolinium, terbium, dysprosium, holmium, erbium, thulium, ytterbium, lutetium and yttrium, of a purity by weight of >=95% (excl. intermixtures and interalloys) 01/01/2016 31/12/2500 -28053040 01/01/2016 31/12/2500 LIBEN Scandium, of a purity by weight of >=95% (excl. intermixtures and interalloys) 01/01/2016 31/12/2500 -28053080 01/01/2016 31/12/2500 LIBEN Rare-earth metals, scandium and yttrium, of a purity by weight of <95% (excl. intermixtures and interalloys) 01/01/2016 31/12/2500 -28053090 01/01/1988 31/12/2015 LIBEN Rare-earth metals, scandium and yttrium (excl. intermixtures or interalloys) 01/01/1988 31/12/2015 -280540 01/01/1988 31/12/2500 LIBEN Mercury 01/01/1988 31/12/2500 -28054010 01/01/1988 31/12/2500 LIBEN Mercury in flasks of a net content of 34,5 kg "standard weight", of a fob value per flask of <= € 224 01/01/1988 31/12/2500 -28054090 01/01/1988 31/12/2500 LIBEN Mercury (excl. in flasks of a net content of 34,5 kg "standard weight", of a fob value per flask of <= € 224) 01/01/1988 31/12/2500 -2805S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2805 and SITC section 5 01/01/1997 31/12/2500 -2805S522 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2805 and SITC group 522 01/01/1997 31/12/2500 -2806 01/01/1988 31/12/2500 LIBEN Hydrogen chloride "hydrochloric acid"; chlorosulphuric acid 01/01/1988 31/12/2500 -280610 01/01/1988 31/12/2500 LIBEN Hydrogen chloride "hydrochloric acid" 01/01/1988 31/12/2500 -28061000 01/01/1988 31/12/2500 LIBEN Hydrogen chloride "hydrochloric acid" 01/01/1988 31/12/2500 -280620 01/01/1988 31/12/2500 LIBEN Chlorosulphuric acid 01/01/1988 31/12/2500 -28062000 01/01/1988 31/12/2500 LIBEN Chlorosulphuric acid 01/01/1988 31/12/2500 -2807 01/01/1988 31/12/2500 LIBEN Sulphuric acid; oleum 01/01/1988 31/12/2500 -280700 01/01/1988 31/12/2500 LIBEN Sulphuric acid; oleum 01/01/1988 31/12/2500 -28070000 01/01/2012 31/12/2500 LIBEN Sulphuric acid; oleum 01/01/2012 31/12/2500 -28070010 01/01/1988 31/12/2011 LIBEN Sulphuric acid 01/01/1988 31/12/2011 -28070090 01/01/1988 31/12/2011 LIBEN Oleum 01/01/1988 31/12/2011 -2807S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2807 and SITC section 5 01/01/1997 31/12/2500 -2807S522 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2807 and SITC group 522 01/01/1997 31/12/2500 -2808 01/01/1988 31/12/2500 LIBEN Nitric acid; sulphonitric acids 01/01/1988 31/12/2500 -280800 01/01/1988 31/12/2500 LIBEN Nitric acid; sulphonitric acids 01/01/1988 31/12/2500 -28080000 01/01/1988 31/12/2500 LIBEN Nitric acid; sulphonitric acids 01/01/1988 31/12/2500 -2809 01/01/1988 31/12/2500 LIBEN Diphosphorus pentaoxide; phosphoric acid; polyphosphoric acids, whether or not chemically defined 01/01/1988 31/12/2500 -280910 01/01/1988 31/12/2500 LIBEN Diphosphorus pentaoxide 01/01/1988 31/12/2500 -28091000 01/01/1988 31/12/2500 LIBEN Diphosphorus pentaoxide 01/01/1988 31/12/2500 -280920 01/01/1988 31/12/2500 LIBEN Phosphoric acid; polyphosphoric acids, whether or not chemically defined 01/01/1988 31/12/2500 -28092000 01/01/1988 31/12/2500 LIBEN Phosphoric acid; polyphosphoric acids, whether or not chemically defined 01/01/1988 31/12/2500 -2809S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2809 and SITC section 5 01/01/1997 31/12/2500 -2809S522 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2809 and SITC group 522 01/01/1997 31/12/2500 -2810 01/01/1988 31/12/2500 LIBEN Oxides of boron; boric acids 01/01/1988 31/12/2500 -281000 01/01/1988 31/12/2500 LIBEN Oxides of boron; boric acids 01/01/1988 31/12/2500 -28100000 01/01/1988 31/12/1996 LIBEN Oxides of boron; boric acids 01/01/1988 31/12/1996 -28100010 01/01/1997 31/12/2500 LIBEN Diboron trioxide 01/01/1997 31/12/2500 -28100090 01/01/1997 31/12/2500 LIBEN Oxides of boron and boric acids (excl. diboron trioxide) 01/01/1997 31/12/2500 -2811 01/01/1988 31/12/2500 LIBEN Inorganic acids and inorganic oxygen compounds of non-metals (excl. hydrogen chloride "hydrochloric acid", chlorosulphuric acid, sulphuric acid, oleum, nitric acid, sulphonitric acids, diphosphorus pentaoxide, phosphoric acid, polyphosphoric acids, oxides of boron and boric acids) 01/01/1988 31/12/2500 -281111 01/01/1988 31/12/2500 LIBEN Hydrogen fluoride "hydrofluoric acid" 01/01/1988 31/12/2500 -28111100 01/01/1988 31/12/2500 LIBEN Hydrogen fluoride "hydrofluoric acid" 01/01/1988 31/12/2500 -281112 01/01/2017 31/12/2500 LIBEN Hydrogen cyanide "hydrocyanic acid" 01/01/2017 31/12/2500 -28111200 01/01/2017 31/12/2500 LIBEN Hydrogen cyanide "hydrocyanic acid" 01/01/2017 31/12/2500 -281119 01/01/1988 31/12/2500 LIBEN Inorganic acids (excl. hydrogen chloride "hydrochloric acid", chlorosulphuric acid, sulphuric acid, oleum, nitric acid, sulphonitric acids, phosphoric acid, polyphosphoric acids, boric acids, hydrogen fluoride "hydrofluoric acid" and hydrogen cyanide "hydrocyanic acid") 01/01/1988 31/12/2500 -28111900 01/01/1988 31/12/1994 LIBEN Inorganic acids (excl. hydrogen chloride 'hydrochloric acid', chlorosulphuric acid, sulphuric acid, oleum, nitric acid, sulphonitric acids, phosphoric acid, polyphosphoric acids, boric acids and hydrogen fluoride 'hydrofluoric acid') 01/01/1988 31/12/1994 -28111910 01/01/1995 31/12/2500 LIBEN Hydrogen bromide "hydrobromic acid" 01/01/1995 31/12/2500 -28111920 01/01/1998 31/12/2016 LIBEN Hydrogen cyanide "hydrocyanic acid" 01/01/1998 31/12/2016 -28111980 01/01/1998 31/12/2500 LIBEN Inorganic acids (excl. hydrogen chloride "hydrochloric acid", chlorosulphuric acid, sulphuric acid, oleum, nitric acid, sulphonitric acids, phosphoric acid, polyphosphoric acids, boric acids, hydrogen fluoride "hydrofluoric acid", hydrogen bromide "hydrobromic acid" and hydrogen cyanide "hydrocyanic acid") 01/01/1998 31/12/2500 -28111990 01/01/1995 31/12/1997 LIBEN Inorganic acids (excl. hydrogen chloride "hydrochloric acid", chlorosulphuric acid, sulphuric acid, oleum, nitric acid, sulphonitric acids, phosphoric acid, polyphosphoric acids, boric acids, hydrogen fluoride "hydrofluoric acid" and hydrobromic acid) 01/01/1995 31/12/1997 -281121 01/01/1988 31/12/2500 LIBEN Carbon dioxide 01/01/1988 31/12/2500 -28112100 01/01/1988 31/12/2500 LIBEN Carbon dioxide 01/01/1988 31/12/2500 -281122 01/01/1988 31/12/2500 LIBEN Silicon dioxide 01/01/1988 31/12/2500 -28112200 01/01/1988 31/12/2500 LIBEN Silicon dioxide 01/01/1988 31/12/2500 -281123 01/01/1988 31/12/2006 LIBEN Sulphur dioxide 01/01/1988 31/12/2006 -28112300 01/01/1988 31/12/2006 LIBEN Sulphur dioxide 01/01/1988 31/12/2006 -281129 01/01/1988 31/12/2500 LIBEN Inorganic oxygen compounds of non-metals (excl. diphosphorus pentaoxide, oxides of boron, carbon dioxide and silicon dioxide) 01/01/1988 31/12/2500 -28112905 01/01/2007 31/12/2500 LIBEN Sulphur dioxide 01/01/2007 31/12/2500 -28112910 01/01/1988 31/12/2500 LIBEN Sulphur trioxide "sulphuric anhydride"; diarsenic trioxide 01/01/1988 31/12/2500 -28112930 01/01/1988 31/12/2500 LIBEN Nitrogen oxides 01/01/1988 31/12/2500 -28112990 01/01/1988 31/12/2500 LIBEN Inorganic oxygen compounds of non-metals (excl. diphosphorus pentaoxide, oxides of boron, carbon dioxide, silicon dioxide, sulphur dioxide, sulphur trioxide "sulphuric anhydride", diarsenic trioxide and nitrogen oxides) 01/01/1988 31/12/2500 -2811S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2811 and SITC section 5 01/01/1997 31/12/2500 -2811S522 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2811 and SITC group 522 01/01/1997 31/12/2500 -2812 01/01/1988 31/12/2500 LIBEN Halides and halide oxides of non-metals 01/01/1988 31/12/2500 -281210 01/01/1988 31/12/2016 LIBEN Chlorides and chloride oxides 01/01/1988 31/12/2016 -28121010 01/01/1988 31/12/1989 LIBEN Chlorides and chloride oxides of phosphorus 01/01/1988 31/12/1989 -28121011 01/01/1990 31/12/2016 LIBEN Phosphorus trichloride oxide "phosphoryl trichloride" 01/01/1990 31/12/2016 -28121015 01/01/1990 31/12/2016 LIBEN Phosphorus trichloride 01/01/1990 31/12/2016 -28121016 01/01/1998 31/12/2016 LIBEN Phosphorus pentachloride 01/01/1998 31/12/2016 -28121018 01/01/1998 31/12/2016 LIBEN Chlorides and chloride oxides of phosphorus (excl. trichloride, trichloride oxide and pentachloride) 01/01/1998 31/12/2016 -28121019 01/01/1990 31/12/1997 LIBEN Chlorides and chloride oxides of phosphorus (excl. trichloride and trichloride oxide) 01/01/1990 31/12/1997 -28121090 01/01/1988 31/12/1997 LIBEN Chlorides and chloride oxides (excl. phosphorus) 01/01/1988 31/12/1997 -28121091 01/01/1998 31/12/2016 LIBEN Disulphur dichloride 01/01/1998 31/12/2016 -28121093 01/01/1998 31/12/2016 LIBEN Sulphur dichloride 01/01/1998 31/12/2016 -28121094 01/01/1998 31/12/2016 LIBEN Phosgene "carbonyl chloride" 01/01/1998 31/12/2016 -28121095 01/01/1998 31/12/2016 LIBEN Thionyl dichloride "thionyl chloride" 01/01/1998 31/12/2016 -28121099 01/01/1998 31/12/2016 LIBEN Chlorides and chloride oxides (excl. phosphorus, and disulphur dichloride, sulphur dichloride, phosgene "carbonyl chloride" and thionyl dichloride "thionyl chloride") 01/01/1998 31/12/2016 -281211 01/01/2017 31/12/2500 LIBEN Carbonyl dichloride "phosgene" 01/01/2017 31/12/2500 -28121100 01/01/2017 31/12/2500 LIBEN Carbonyl dichloride "phosgene" 01/01/2017 31/12/2500 -281212 01/01/2017 31/12/2500 LIBEN Phosphorus oxychloride 01/01/2017 31/12/2500 -28121200 01/01/2017 31/12/2500 LIBEN Phosphorus oxychloride 01/01/2017 31/12/2500 -281213 01/01/2017 31/12/2500 LIBEN Phosphorus trichloride 01/01/2017 31/12/2500 -28121300 01/01/2017 31/12/2500 LIBEN Phosphorus trichloride 01/01/2017 31/12/2500 -281214 01/01/2017 31/12/2500 LIBEN Phosphorus pentachloride 01/01/2017 31/12/2500 -28121400 01/01/2017 31/12/2500 LIBEN Phosphorus pentachloride 01/01/2017 31/12/2500 -281215 01/01/2017 31/12/2500 LIBEN Sulphur monochloride 01/01/2017 31/12/2500 -28121500 01/01/2017 31/12/2500 LIBEN Sulphur monochloride 01/01/2017 31/12/2500 -281216 01/01/2017 31/12/2500 LIBEN Sulphur dichloride 01/01/2017 31/12/2500 -28121600 01/01/2017 31/12/2500 LIBEN Sulphur dichloride 01/01/2017 31/12/2500 -281217 01/01/2017 31/12/2500 LIBEN Thionyl chloride 01/01/2017 31/12/2500 -28121700 01/01/2017 31/12/2500 LIBEN Thionyl chloride 01/01/2017 31/12/2500 -281219 01/01/2017 31/12/2500 LIBEN Chlorides and chloride oxides (excl. carbonyl dichloride "phosgene", phosphorus oxy-, tri- and pentachloride, sulphur monochloride, sulphur dichloride and thionyl chloride) 01/01/2017 31/12/2500 -28121910 01/01/2017 31/12/2500 LIBEN Chlorides and chloride oxides of phosphorus (excl. phosphorus oxy-, tri- and pentachloride) 01/01/2017 31/12/2500 -28121990 01/01/2017 31/12/2500 LIBEN Chlorides and chloride oxides (excl. of phosphorus, carbonyl dichloride "phosgene", sulphur monochloride, sulphur dichloride and thionyl chloride) 01/01/2017 31/12/2500 -281290 01/01/1988 31/12/2500 LIBEN Halides and halide oxides of non-metals (excl. chlorides and chloride oxides) 01/01/1988 31/12/2500 -28129000 01/01/1988 31/12/2500 LIBEN Halides and halide oxides of non-metals (excl. chlorides and chloride oxides) 01/01/1988 31/12/2500 -2813 01/01/1988 31/12/2500 LIBEN Sulphides of non-metals; commercial phosphorus trisulphide 01/01/1988 31/12/2500 -281310 01/01/1988 31/12/2500 LIBEN Carbon disulphide 01/01/1988 31/12/2500 -28131000 01/01/1988 31/12/2500 LIBEN Carbon disulphide 01/01/1988 31/12/2500 -281390 01/01/1988 31/12/2500 LIBEN Sulphides of non-metals (excl. carbon disulphide); commercial phosphorus trisulphide 01/01/1988 31/12/2500 -28139010 01/01/1988 31/12/2500 LIBEN Phosphorus sulphides, incl. commercial phosphorus trisulphide 01/01/1988 31/12/2500 -28139090 01/01/1988 31/12/2500 LIBEN Sulphides of non-metals (excl. phosphorus sulphides, incl. commercial phosphorus trisulphides, and carbon disulphide) 01/01/1988 31/12/2500 -2813S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2813 and SITC section 5 01/01/1997 31/12/2500 -2813S522 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2813 and SITC group 522 01/01/1997 31/12/2500 -2814 01/01/1988 31/12/2500 LIBEN Ammonia, anhydrous or in aqueous solution 01/01/1988 31/12/2500 -281410 01/01/1988 31/12/2500 LIBEN Anhydrous ammonia 01/01/1988 31/12/2500 -28141000 01/01/1988 31/12/2500 LIBEN Anhydrous ammonia 01/01/1988 31/12/2500 -281420 01/01/1988 31/12/2500 LIBEN Ammonia in aqueous solution 01/01/1988 31/12/2500 -28142000 01/01/1988 31/12/2500 LIBEN Ammonia in aqueous solution 01/01/1988 31/12/2500 -2814S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2814 and SITC section 5 01/01/1997 31/12/2500 -2814S522 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2814 and SITC group 522 01/01/1997 31/12/2500 -2815 01/01/1988 31/12/2500 LIBEN Sodium hydroxide "caustic soda", potassium hydroxide "caustic potash"; peroxides of sodium or potassium 01/01/1988 31/12/2500 -281511 01/01/1988 31/12/2500 LIBEN Sodium hydroxide "caustic soda" solid 01/01/1988 31/12/2500 -28151100 01/01/1988 31/12/2500 LIBEN Sodium hydroxide "caustic soda" solid 01/01/1988 31/12/2500 -281512 01/01/1988 31/12/2500 LIBEN Sodium hydroxide "caustic soda" in aqueous solution "soda lye or liquid soda" 01/01/1988 31/12/2500 -28151200 01/01/1988 31/12/2500 LIBEN Sodium hydroxide "caustic soda" in aqueous solution "soda lye or liquid soda" 01/01/1988 31/12/2500 -281520 01/01/1988 31/12/2500 LIBEN Potassium hydroxide "caustic potash" 01/01/1988 31/12/2500 -28152000 01/01/2009 31/12/2500 LIBEN Potassium hydroxide "caustic potash" 01/01/2009 31/12/2500 -28152010 01/01/1988 31/12/2008 LIBEN Potassium hydroxide "caustic potash" solid 01/01/1988 31/12/2008 -28152090 01/01/1988 31/12/2008 LIBEN Potassium hydroxide "caustic potash" in aqueous solution "potassium lye or liquid potassium" 01/01/1988 31/12/2008 -281530 01/01/1988 31/12/2500 LIBEN Peroxides of sodium or potassium 01/01/1988 31/12/2500 -28153000 01/01/1988 31/12/2500 LIBEN Peroxides of sodium or potassium 01/01/1988 31/12/2500 -2816 01/01/1988 31/12/2500 LIBEN Hydroxide and peroxide of magnesium; oxides, hydroxides and peroxides, of strontium or barium 01/01/1988 31/12/2500 -281610 01/01/1988 31/12/2500 LIBEN Hydroxide and peroxide of magnesium 01/01/1988 31/12/2500 -28161000 01/01/1988 31/12/2500 LIBEN Hydroxide and peroxide of magnesium 01/01/1988 31/12/2500 -281620 01/01/1988 31/12/2001 LIBEN Oxide, hydroxide and peroxide of strontium 01/01/1988 31/12/2001 -28162000 01/01/1988 31/12/2001 LIBEN Oxide, hydroxide and peroxide of strontium 01/01/1988 31/12/2001 -281630 01/01/1988 31/12/2001 LIBEN Oxide, hydroxide and peroxide of barium 01/01/1988 31/12/2001 -28163000 01/01/1988 31/12/2001 LIBEN Oxide, hydroxide and peroxide of barium 01/01/1988 31/12/2001 -281640 01/01/2002 31/12/2500 LIBEN Oxides, hydroxides and peroxides, of strontium or barium 01/01/2002 31/12/2500 -28164000 01/01/2002 31/12/2500 LIBEN Oxides, hydroxides and peroxides, of strontium or barium 01/01/2002 31/12/2500 -2817 01/01/1988 31/12/2500 LIBEN Zinc oxide; zinc peroxide 01/01/1988 31/12/2500 -281700 01/01/1988 31/12/2500 LIBEN Zinc oxide; zinc peroxide 01/01/1988 31/12/2500 -28170000 01/01/1988 31/12/2500 LIBEN Zinc oxide; zinc peroxide 01/01/1988 31/12/2500 -2818 01/01/1988 31/12/2500 LIBEN Artificial corundum, whether or not chemically defined; aluminium oxide; aluminium hydroxide 01/01/1988 31/12/2500 -281810 01/01/1988 31/12/2500 LIBEN Corundum, artificial, whether or not chemically defined 01/01/1988 31/12/2500 -28181000 01/01/1988 31/12/1996 LIBEN Corundum, artificial, whether or not chemically defined 01/01/1988 31/12/1996 -28181010 01/01/1997 31/12/2007 LIBEN Artificial corundum, whether or not chemically defined, white, pink or ruby, with an aluminium oxide content > 97,5% by weight "high purity" 01/01/1997 31/12/2007 -28181011 01/01/2008 31/12/2500 LIBEN Artificial corundum, whether or not chemically defined, with < 50 % of the total weight having a particle size > 10 mm (excl. with aluminium oxide content < 98,5% by weight) 01/01/2008 31/12/2500 -28181019 01/01/2008 31/12/2500 LIBEN Artificial corundum, whether or not chemically defined, with >= 50 % of the total weight having a particle size > 10 mm (excl. with an aluminium oxide content < 98,5% by weight) 01/01/2008 31/12/2500 -28181090 01/01/1997 31/12/2007 LIBEN Artificial corundum, whether or not chemically defined (excl. white, pink or ruby, with an aluminium oxide content > 97,5% by weight "high purity") 01/01/1997 31/12/2007 -28181091 01/01/2008 31/12/2500 LIBEN Artificial corundum, whether or not chemically defined, with < 50 % of the total weight having a particle size > 10 mm (excl. with an aluminium oxide content >= 98,5% by weight "high purity") 01/01/2008 31/12/2500 -28181099 01/01/2008 31/12/2500 LIBEN Artificial corundum, whether or not chemically defined, with >= 50 % of the total weight having a particle size > 10 mm (excl. with an aluminium oxide content >= 98,5% by weight "high purity") 01/01/2008 31/12/2500 -281820 01/01/1988 31/12/2500 LIBEN Aluminium oxide (excl. artificial corundum) 01/01/1988 31/12/2500 -28182000 01/01/1988 31/12/2500 LIBEN Aluminium oxide (excl. artificial corundum) 01/01/1988 31/12/2500 -281830 01/01/1988 31/12/2500 LIBEN Aluminium hydroxide 01/01/1988 31/12/2500 -28183000 01/01/1988 31/12/2500 LIBEN Aluminium hydroxide 01/01/1988 31/12/2500 -2819 01/01/1988 31/12/2500 LIBEN Chromium oxides and hydroxides 01/01/1988 31/12/2500 -281910 01/01/1988 31/12/2500 LIBEN Chromium trioxide 01/01/1988 31/12/2500 -28191000 01/01/1988 31/12/2500 LIBEN Chromium trioxide 01/01/1988 31/12/2500 -281990 01/01/1988 31/12/2500 LIBEN Chromium oxides and hydroxides (excl. chromium trioxide) 01/01/1988 31/12/2500 -28199000 01/01/1988 31/12/1996 LIBEN Chromium oxides and hydroxides (excl. chromium trioxide) 01/01/1988 31/12/1996 -28199010 01/01/1997 31/12/2500 LIBEN Chromium dioxide 01/01/1997 31/12/2500 -28199090 01/01/1997 31/12/2500 LIBEN Chromium oxides and hydroxides (excl. chromium trioxide and chromium dioxide) 01/01/1997 31/12/2500 -2819S5 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 2819 and SITC section 5 01/01/2001 31/12/2500 -2819S522 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 2819 and SITC group 522 01/01/2001 31/12/2500 -2819S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2819 and SITC section 9 01/01/2002 31/12/2500 -2819S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2819 and SITC group 999 01/01/2002 31/12/2500 -2820 01/01/1988 31/12/2500 LIBEN Manganese oxides 01/01/1988 31/12/2500 -282010 01/01/1988 31/12/2500 LIBEN Manganese dioxide 01/01/1988 31/12/2500 -28201000 01/01/1988 31/12/2500 LIBEN Manganese dioxide 01/01/1988 31/12/2500 -282090 01/01/1988 31/12/2500 LIBEN Manganese oxides (excl. manganese dioxide) 01/01/1988 31/12/2500 -28209000 01/01/1988 31/12/1996 LIBEN Manganese oxides (excl. manganese dioxide) 01/01/1988 31/12/1996 -28209010 01/01/1997 31/12/2500 LIBEN Manganese oxide containing by weight >= 77% of manganese 01/01/1997 31/12/2500 -28209090 01/01/1997 31/12/2500 LIBEN Manganese oxides (excl. manganese dioxide and manganese oxide containing by weight >= 77% of manganese) 01/01/1997 31/12/2500 -2821 01/01/1988 31/12/2500 LIBEN Iron oxides and hydroxides; earth colours containing >= 70% by weight of combined iron evaluated as Fe2O3 01/01/1988 31/12/2500 -282110 01/01/1988 31/12/2500 LIBEN Iron oxides and hydroxides 01/01/1988 31/12/2500 -28211000 01/01/1988 31/12/2500 LIBEN Iron oxides and hydroxides 01/01/1988 31/12/2500 -282120 01/01/1988 31/12/2500 LIBEN Earth colours containing >= 70% by weight of combined iron evaluated as Fe2O3 01/01/1988 31/12/2500 -28212000 01/01/1988 31/12/2500 LIBEN Earth colours containing >= 70% by weight of combined iron evaluated as Fe2O3 01/01/1988 31/12/2500 -2822 01/01/1988 31/12/2500 LIBEN Cobalt oxides and hydroxides; commercial cobalt oxides 01/01/1988 31/12/2500 -282200 01/01/1988 31/12/2500 LIBEN Cobalt oxides and hydroxides; commercial cobalt oxides 01/01/1988 31/12/2500 -28220000 01/01/1988 31/12/2500 LIBEN Cobalt oxides and hydroxides; commercial cobalt oxides 01/01/1988 31/12/2500 -2823 01/01/1988 31/12/2500 LIBEN Titanium oxides 01/01/1988 31/12/2500 -282300 01/01/1988 31/12/2500 LIBEN Titanium oxides 01/01/1988 31/12/2500 -28230000 01/01/1988 31/12/2500 LIBEN Titanium oxides 01/01/1988 31/12/2500 -2823S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2823 and SITC section 5 01/01/1997 31/12/2500 -2823S522 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2823 and SITC group 522 01/01/1997 31/12/2500 -2824 01/01/1988 31/12/2500 LIBEN Lead oxides; red lead and orange lead 01/01/1988 31/12/2500 -282410 01/01/1988 31/12/2500 LIBEN Lead monoxide "litharge, massicot" 01/01/1988 31/12/2500 -28241000 01/01/1988 31/12/2500 LIBEN Lead monoxide "litharge, massicot" 01/01/1988 31/12/2500 -282420 01/01/1988 31/12/2006 LIBEN Red lead and orange lead 01/01/1988 31/12/2006 -28242000 01/01/1988 31/12/2006 LIBEN Red lead and orange lead 01/01/1988 31/12/2006 -282490 01/01/1988 31/12/2500 LIBEN Lead oxides (excl. monoxide "litharge, massicot") 01/01/1988 31/12/2500 -28249000 01/01/1988 31/12/2006 LIBEN Lead oxides (excl. monoxide "litharge, massicot") 01/01/1988 31/12/2006 -28249000 01/01/2012 31/12/2500 LIBEN Lead oxides (excl. monoxide "litharge, massicot") 01/01/2012 31/12/2500 -28249010 01/01/2007 31/12/2011 LIBEN Red lead and orange lead 01/01/2007 31/12/2011 -28249090 01/01/2007 31/12/2011 LIBEN Lead oxides (excl. monoxide "litharge, massicot", red lead and orange lead) 01/01/2007 31/12/2011 -2825 01/01/1988 31/12/2500 LIBEN Hydrazine and hydroxylamine and their inorganic salts; inorganic bases, metal oxides, hydroxides and peroxides, n.e.s. 01/01/1988 31/12/2500 -282510 01/01/1988 31/12/2500 LIBEN Hydrazine and hydroxylamine and their inorganic salts 01/01/1988 31/12/2500 -28251000 01/01/1988 31/12/2500 LIBEN Hydrazine and hydroxylamine and their inorganic salts 01/01/1988 31/12/2500 -282520 01/01/1988 31/12/2500 LIBEN Lithium oxide and hydroxide 01/01/1988 31/12/2500 -28252000 01/01/1988 31/12/2500 LIBEN Lithium oxide and hydroxide 01/01/1988 31/12/2500 -282530 01/01/1988 31/12/2500 LIBEN Vanadium oxides and hydroxides 01/01/1988 31/12/2500 -28253000 01/01/1988 31/12/2500 LIBEN Vanadium oxides and hydroxides 01/01/1988 31/12/2500 -282540 01/01/1988 31/12/2500 LIBEN Nickel oxides and hydroxides 01/01/1988 31/12/2500 -28254000 01/01/1988 31/12/2500 LIBEN Nickel oxides and hydroxides 01/01/1988 31/12/2500 -282550 01/01/1988 31/12/2500 LIBEN Copper oxides and hydroxides 01/01/1988 31/12/2500 -28255000 01/01/1988 31/12/2500 LIBEN Copper oxides and hydroxides 01/01/1988 31/12/2500 -282560 01/01/1988 31/12/2500 LIBEN Germanium oxides and zirconium dioxide 01/01/1988 31/12/2500 -28256000 01/01/1993 31/12/2500 LIBEN Germanium oxides and zirconium dioxide 01/01/1993 31/12/2500 -28256010 01/01/1988 31/12/1992 LIBEN Germanium oxides 01/01/1988 31/12/1992 -28256090 01/01/1988 31/12/1992 LIBEN Zirconium dioxide 01/01/1988 31/12/1992 -282570 01/01/1988 31/12/2500 LIBEN Molybdenum oxides and hydroxides 01/01/1988 31/12/2500 -28257000 01/01/1988 31/12/2500 LIBEN Molybdenum oxides and hydroxides 01/01/1988 31/12/2500 -282580 01/01/1988 31/12/2500 LIBEN Antimony oxides 01/01/1988 31/12/2500 -28258000 01/01/1988 31/12/2500 LIBEN Antimony oxides 01/01/1988 31/12/2500 -282590 01/01/1988 31/12/2500 LIBEN Bases, inorganic, and metal oxides, hydroxides and peroxides, n.e.s. 01/01/1988 31/12/2500 -28259010 01/01/1988 31/12/1996 LIBEN Calcium oxide, hydroxide and peroxide 01/01/1988 31/12/1996 -28259011 01/01/1997 31/12/2500 LIBEN Calcium hydroxide of a purity of >= 98% calculated on the dry weight, in the form of particles of which not > 1% by weight have a particle-size > 75 micrometres and not > 4% by weight have a particle-size of < 1,3 micrometres 01/01/1997 31/12/2500 -28259019 01/01/1997 31/12/2500 LIBEN Calcium oxide, hydroxide and peroxide (excl. calcium hydroxide of a purity of >= 98% calculated on the dry weight, in the form of particles of which not > 1% by weight have a particle-size > 75 micrometres and not > 4% by weight have a particle-size of < 1,3 micrometres) 01/01/1997 31/12/2500 -28259020 01/01/1988 31/12/2500 LIBEN Beryllium oxide and hydroxide 01/01/1988 31/12/2500 -28259030 01/01/1988 31/12/2008 LIBEN Tin oxides 01/01/1988 31/12/2008 -28259040 01/01/1988 31/12/2500 LIBEN Tungsten oxides and hydroxides 01/01/1988 31/12/2500 -28259050 01/01/1988 31/12/2006 LIBEN Mercury oxides 01/01/1988 31/12/2006 -28259060 01/01/1995 31/12/2500 LIBEN Cadmium oxide 01/01/1995 31/12/2500 -28259080 01/01/1995 31/12/2006 LIBEN Inorganic bases and metal oxides, hydroxides and peroxides, n.e.s. 01/01/1995 31/12/2006 -28259080 01/01/2007 31/12/2008 LIBEN Inorganic bases and metal oxides, hydroxides and peroxides, n.e.s. 01/01/2007 31/12/2008 -28259085 01/01/2009 31/12/2500 LIBEN Inorganic bases and metal oxides, hydroxides and peroxides, n.e.s. 01/01/2009 31/12/2500 -28259090 01/01/1988 31/12/1994 LIBEN Inorganic bases and metal oxides, hydroxides and peroxides n.e.s. 01/01/1988 31/12/1994 -2825S5 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 2825 and SITC section 5 01/01/2001 31/12/2500 -2825S522 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 2825 and SITC group 522 01/01/2001 31/12/2500 -2825S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2825 and SITC section 9 01/01/2002 31/12/2500 -2825S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2825 and SITC group 999 01/01/2002 31/12/2500 -2826 01/01/1988 31/12/2500 LIBEN Fluorides; fluorosilicates, fluoroaluminates and other complex fluorine salts (excl. inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -282611 01/01/1988 31/12/2006 LIBEN Fluorides of ammonium or of sodium 01/01/1988 31/12/2006 -28261100 01/01/1988 31/12/2006 LIBEN Fluorides of ammonium or of sodium 01/01/1988 31/12/2006 -282612 01/01/1988 31/12/2500 LIBEN Fluoride of aluminium 01/01/1988 31/12/2500 -28261200 01/01/1988 31/12/2500 LIBEN Fluoride of aluminium 01/01/1988 31/12/2500 -282619 01/01/1988 31/12/2500 LIBEN Fluorides (excl. of aluminium and mercury) 01/01/1988 31/12/2500 -28261900 01/01/1988 31/12/2006 LIBEN Fluorides (excl. of ammonium, sodium and aluminium) 01/01/1988 31/12/2006 -28261910 01/01/2007 31/12/2500 LIBEN Fluorides of ammonium or of sodium 01/01/2007 31/12/2500 -28261990 01/01/2007 31/12/2500 LIBEN Fluorides (excl. of ammonium, sodium, aluminium and mercury) 01/01/2007 31/12/2500 -282620 01/01/1988 31/12/2006 LIBEN Fluorosilicates of sodium or of potassium 01/01/1988 31/12/2006 -28262000 01/01/1988 31/12/2006 LIBEN Fluorosilicates of sodium or of potassium 01/01/1988 31/12/2006 -282630 01/01/1988 31/12/2500 LIBEN Sodium hexafluoroaluminate "synthetic cryolite" 01/01/1988 31/12/2500 -28263000 01/01/1988 31/12/2500 LIBEN Sodium hexafluoroaluminate "synthetic cryolite" 01/01/1988 31/12/2500 -282690 01/01/1988 31/12/2500 LIBEN Fluorosilicates, fluoroaluminates and other complex fluorine salts (excl. sodium hexafluoroaluminate "synthetic cryolite" and inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -28269010 01/01/1988 31/12/2500 LIBEN Dipotassium hexafluorozirconate 01/01/1988 31/12/2500 -28269080 01/01/2007 31/12/2500 LIBEN Fluorosilicates, fluoroaluminates and other complex fluorine salts (excl. sodium hexafluoroaluminate "synthetic cryolite", dipotassium hexafluorozirconate and inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -28269090 01/01/1988 31/12/2006 LIBEN Fluorosilicates, fluoroaluminates and other complex fluorine salts (excl. fluorosilicates of sodium or of potassium, sodium hexafluoroaluminate "synthetic cryolite" and dipotassium hexafluorozirconate) 01/01/1988 31/12/2006 -2827 01/01/1988 31/12/2500 LIBEN Chlorides, chloride oxides and chloride hydroxides; bromides and bromide oxides; iodides and iodide oxides 01/01/1988 31/12/2500 -282710 01/01/1988 31/12/2500 LIBEN Ammonium chloride 01/01/1988 31/12/2500 -28271000 01/01/1988 31/12/2500 LIBEN Ammonium chloride 01/01/1988 31/12/2500 -282720 01/01/1988 31/12/2500 LIBEN Calcium chloride 01/01/1988 31/12/2500 -28272000 01/01/1988 31/12/2500 LIBEN Calcium chloride 01/01/1988 31/12/2500 -282731 01/01/1988 31/12/2500 LIBEN Magnesium chloride 01/01/1988 31/12/2500 -28273100 01/01/1988 31/12/2500 LIBEN Magnesium chloride 01/01/1988 31/12/2500 -282732 01/01/1988 31/12/2500 LIBEN Aluminium chloride 01/01/1988 31/12/2500 -28273200 01/01/1988 31/12/2500 LIBEN Aluminium chloride 01/01/1988 31/12/2500 -282733 01/01/1988 31/12/2006 LIBEN Iron chlorides 01/01/1988 31/12/2006 -28273300 01/01/1988 31/12/2006 LIBEN Iron chlorides 01/01/1988 31/12/2006 -282734 01/01/1988 31/12/2006 LIBEN Cobalt chlorides 01/01/1988 31/12/2006 -28273400 01/01/1988 31/12/2006 LIBEN Cobalt chlorides 01/01/1988 31/12/2006 -282735 01/01/1988 31/12/2500 LIBEN Nickel chloride 01/01/1988 31/12/2500 -28273500 01/01/1988 31/12/2500 LIBEN Nickel chloride 01/01/1988 31/12/2500 -282736 01/01/1988 31/12/2006 LIBEN Zinc chloride 01/01/1988 31/12/2006 -28273600 01/01/1988 31/12/2006 LIBEN Zinc chloride 01/01/1988 31/12/2006 -282737 01/01/1988 31/12/1995 LIBEN Tin chloride 01/01/1988 31/12/1995 -28273700 01/01/1988 31/12/1995 LIBEN Tin chloride 01/01/1988 31/12/1995 -282738 01/01/1988 31/12/2001 LIBEN Barium chloride 01/01/1988 31/12/2001 -28273800 01/01/1988 31/12/2001 LIBEN Barium chloride 01/01/1988 31/12/2001 -282739 01/01/1988 31/12/2500 LIBEN Chlorides (excl. ammonium, calcium, magnesium, aluminium, nickel and mercury chloride) 01/01/1988 31/12/2500 -28273900 01/01/1988 31/12/1995 LIBEN Chlorides (excl. ammonium, calcium, magnesium, aluminium, iron, cobalt, nickel, zinc, tin and barium chloride) 01/01/1988 31/12/1995 -28273910 01/01/1996 31/12/2500 LIBEN Tin chlorides 01/01/1996 31/12/2500 -28273920 01/01/2007 31/12/2500 LIBEN Iron chlorides 01/01/2007 31/12/2500 -28273930 01/01/2007 31/12/2500 LIBEN Cobalt chlorides 01/01/2007 31/12/2500 -28273980 01/01/2002 31/12/2006 LIBEN Chlorides (excl. ammonium, calcium, magnesium, aluminium, iron, cobalt, nickel, zinc and tin chloride) 01/01/2002 31/12/2006 -28273985 01/01/2007 31/12/2500 LIBEN Chlorides (excl. ammonium, calcium, magnesium, aluminium, iron, cobalt, nickel, tin and mercury chloride) 01/01/2007 31/12/2500 -28273990 01/01/1996 31/12/2001 LIBEN Chlorides (excl. ammonium, calcium, magnesium, aluminium, iron, cobalt, nickel, zinc, tin and barium chloride) 01/01/1996 31/12/2001 -282741 01/01/1988 31/12/2500 LIBEN Chloride oxides and chloride hydroxides of copper 01/01/1988 31/12/2500 -28274100 01/01/1988 31/12/2500 LIBEN Chloride oxides and chloride hydroxides of copper 01/01/1988 31/12/2500 -282749 01/01/1988 31/12/2500 LIBEN Chloride oxides and chloride hydroxides (excl. copper and mercury) 01/01/1988 31/12/2500 -28274910 01/01/1988 31/12/2500 LIBEN Chloride oxides and chloride hydroxides of lead 01/01/1988 31/12/2500 -28274990 01/01/1988 31/12/2006 LIBEN Chloride oxides and chloride hydroxides (excl. copper and lead) 01/01/1988 31/12/2006 -28274990 01/01/2007 31/12/2500 LIBEN Chloride oxides and chloride hydroxides (excl. copper, lead and mercury) 01/01/2007 31/12/2500 -282751 01/01/1988 31/12/2500 LIBEN Bromides of sodium or of potassium 01/01/1988 31/12/2500 -28275100 01/01/1988 31/12/2500 LIBEN Bromides of sodium or of potassium 01/01/1988 31/12/2500 -282759 01/01/1988 31/12/2500 LIBEN Bromides and bromide oxides (excl. of sodium, potassium and mercury) 01/01/1988 31/12/2500 -28275900 01/01/1988 31/12/2006 LIBEN Bromides and bromide oxides (excl. of sodium and potassium) 01/01/1988 31/12/2006 -28275900 01/01/2007 31/12/2500 LIBEN Bromides and bromide oxides (excl. of sodium, potassium and mercury) 01/01/2007 31/12/2500 -282760 01/01/1988 31/12/2500 LIBEN Iodides and iodide oxides (excl. inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -28276000 01/01/1988 31/12/2006 LIBEN Iodides and iodide oxides 01/01/1988 31/12/2006 -28276000 01/01/2007 31/12/2500 LIBEN Iodides and iodide oxides (excl. inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -2827S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2827 and SITC section 5 01/01/1997 31/12/2500 -2827S523 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2827 and SITC group 523 01/01/1997 31/12/2500 -2828 01/01/1988 31/12/2500 LIBEN Hypochlorites; commercial calcium hypochlorite; chlorites; hypobromites 01/01/1988 31/12/2500 -282810 01/01/1988 31/12/2500 LIBEN Calcium hypochlorites, incl. commercial calcium hypochlorite 01/01/1988 31/12/2500 -28281000 01/01/1993 31/12/2500 LIBEN Calcium hypochlorites, incl. commercial calcium hypochlorite 01/01/1993 31/12/2500 -28281010 01/01/1988 31/12/1992 LIBEN Commercial calcium hypochlorite 01/01/1988 31/12/1992 -28281090 01/01/1988 31/12/1992 LIBEN Calcium hypochlorites (excl. commercial) 01/01/1988 31/12/1992 -282890 01/01/1988 31/12/2500 LIBEN Hypochlorites, chlorites and hypobromites (excl. calcium hypochlorites) 01/01/1988 31/12/2500 -28289000 01/01/1988 31/12/2500 LIBEN Hypochlorites, chlorites and hypobromites (excl. calcium hypochlorites) 01/01/1988 31/12/2500 -2829 01/01/1988 31/12/2500 LIBEN Chlorates and perchlorates; bromates and perbromates; iodates and periodates 01/01/1988 31/12/2500 -282911 01/01/1988 31/12/2500 LIBEN Chlorate of sodium 01/01/1988 31/12/2500 -28291100 01/01/1988 31/12/2500 LIBEN Chlorate of sodium 01/01/1988 31/12/2500 -282919 01/01/1988 31/12/2500 LIBEN Chlorates (excl. sodium) 01/01/1988 31/12/2500 -28291900 01/01/1988 31/12/2500 LIBEN Chlorates (excl. sodium) 01/01/1988 31/12/2500 -282990 01/01/1988 31/12/2500 LIBEN Perchlorates; bromates and perbromates; iodates and periodates (excl. inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -28299010 01/01/1988 31/12/2006 LIBEN Perchlorates 01/01/1988 31/12/2006 -28299010 01/01/2007 31/12/2500 LIBEN Perchlorates (excl. inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -28299040 01/01/1998 31/12/2500 LIBEN Bromates of potassium or of sodium 01/01/1998 31/12/2500 -28299050 01/01/1995 31/12/1997 LIBEN Potassium bromate 01/01/1995 31/12/1997 -28299060 01/01/1995 31/12/1997 LIBEN Sodium bromate 01/01/1995 31/12/1997 -28299080 01/01/1995 31/12/2006 LIBEN Bromates and perbromates (excl. potassium bromate and sodium bromate); iodates and periodates 01/01/1995 31/12/2006 -28299080 01/01/2007 31/12/2500 LIBEN Bromates and perbromates (excl. potassium bromate and sodium bromate); iodates and periodates 01/01/2007 31/12/2500 -28299090 01/01/1988 31/12/1994 LIBEN Bromates and perbromates; iodates and periodates 01/01/1988 31/12/1994 -2829S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2829 and SITC section 5 01/01/1997 31/12/2500 -2829S523 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2829 and SITC group 523 01/01/1997 31/12/2500 -2830 01/01/1988 31/12/2500 LIBEN Sulphides; polysulphides, whether or not chemically defined 01/01/1988 31/12/2500 -283010 01/01/1988 31/12/2500 LIBEN Sodium sulphides 01/01/1988 31/12/2500 -28301000 01/01/1988 31/12/2500 LIBEN Sodium sulphides 01/01/1988 31/12/2500 -283020 01/01/1988 31/12/2006 LIBEN Zinc sulphide 01/01/1988 31/12/2006 -28302000 01/01/1988 31/12/2006 LIBEN Zinc sulphide 01/01/1988 31/12/2006 -283030 01/01/1988 31/12/2006 LIBEN Cadmium sulphide 01/01/1988 31/12/2006 -28303000 01/01/1988 31/12/2006 LIBEN Cadmium sulphide 01/01/1988 31/12/2006 -283090 01/01/1988 31/12/2500 LIBEN Sulphides (excl. sodium); polysulphides, whether or not chemically defined (excl. inorganic or organic compounds of mercury whether or not chemically defined) 01/01/1988 31/12/2500 -28309011 01/01/1988 31/12/2500 LIBEN Sulphides of calcium, of antimony and of iron 01/01/1988 31/12/2500 -28309019 01/01/1988 31/12/1997 LIBEN Sulphides (excl. sodium, zinc, cadmium, calcium, antimony and iron) 01/01/1988 31/12/1997 -28309080 01/01/1998 31/12/2006 LIBEN Sulphides; polysulphides, whether or not chemically defined (excl. sulphides of sodium, zinc, cadmium, calcium, antimony or of iron) 01/01/1998 31/12/2006 -28309085 01/01/2007 31/12/2011 LIBEN Sulphides; polysulphides, whether or not chemically defined (excl. sulphides of sodium, calcium, antimony or of iron, and inorganic or organic compounds of mercury) 01/01/2007 31/12/2011 -28309085 01/01/2012 31/12/2500 LIBEN Sulphides; polysulphides, whether or not chemically defined (excl. sulphides of sodium, calcium, antimony or of iron, and inorganic or organic compounds of mercury) 01/01/2012 31/12/2500 -28309090 01/01/1988 31/12/1997 LIBEN Polysulphides 01/01/1988 31/12/1997 -2830S5 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2830 and SITC section 5 01/01/1998 31/12/2500 -2830S523 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2830 and SITC group 523 01/01/1998 31/12/2500 -2831 01/01/1988 31/12/2500 LIBEN Dithionites and sulfoxylates 01/01/1988 31/12/2500 -283110 01/01/1988 31/12/2500 LIBEN Dithionite and sulfoxylate of sodium 01/01/1988 31/12/2500 -28311000 01/01/1988 31/12/2500 LIBEN Dithionite and sulfoxylate of sodium 01/01/1988 31/12/2500 -283190 01/01/1988 31/12/2500 LIBEN Dithionites and sulfoxylates (excl. sodium) 01/01/1988 31/12/2500 -28319000 01/01/1988 31/12/2500 LIBEN Dithionites and sulfoxylates (excl. sodium) 01/01/1988 31/12/2500 -2831S5 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 2831 and SITC section 5 01/01/2001 31/12/2500 -2831S523 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 2831 and SITC group 523 01/01/2001 31/12/2500 -2831S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2831 and SITC section 9 01/01/2002 31/12/2500 -2831S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2831 and SITC group 999 01/01/2002 31/12/2500 -2832 01/01/1988 31/12/2500 LIBEN Sulphites; thiosulphates 01/01/1988 31/12/2500 -283210 01/01/1988 31/12/2500 LIBEN Sodium sulphites 01/01/1988 31/12/2500 -28321000 01/01/1988 31/12/2500 LIBEN Sodium sulphites 01/01/1988 31/12/2500 -283220 01/01/1988 31/12/2500 LIBEN Sulphites (excl. sodium) 01/01/1988 31/12/2500 -28322000 01/01/1988 31/12/2500 LIBEN Sulphites (excl. sodium) 01/01/1988 31/12/2500 -283230 01/01/1988 31/12/2500 LIBEN Thiosulphates 01/01/1988 31/12/2500 -28323000 01/01/1988 31/12/2500 LIBEN Thiosulphates 01/01/1988 31/12/2500 -2832S5 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2832 and SITC section 5 01/01/1998 31/12/2500 -2832S523 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2832 and SITC group 523 01/01/1998 31/12/2500 -2833 01/01/1988 31/12/2500 LIBEN Sulphates; alums; peroxosulphates "persulphates" 01/01/1988 31/12/2500 -283311 01/01/1988 31/12/2500 LIBEN Disodium sulphate 01/01/1988 31/12/2500 -28331100 01/01/1988 31/12/2500 LIBEN Disodium sulphate 01/01/1988 31/12/2500 -283319 01/01/1988 31/12/2500 LIBEN Sodium sulphates (excl. disodium) 01/01/1988 31/12/2500 -28331900 01/01/1988 31/12/2500 LIBEN Sodium sulphates (excl. disodium) 01/01/1988 31/12/2500 -283321 01/01/1988 31/12/2500 LIBEN Sulphate of magnesium 01/01/1988 31/12/2500 -28332100 01/01/1988 31/12/2500 LIBEN Sulphate of magnesium 01/01/1988 31/12/2500 -283322 01/01/1988 31/12/2500 LIBEN Sulphate of aluminium 01/01/1988 31/12/2500 -28332200 01/01/1988 31/12/2500 LIBEN Sulphate of aluminium 01/01/1988 31/12/2500 -283323 01/01/1988 31/12/2006 LIBEN Sulphates of chromium 01/01/1988 31/12/2006 -28332300 01/01/1988 31/12/2006 LIBEN Sulphates of chromium 01/01/1988 31/12/2006 -283324 01/01/1988 31/12/2500 LIBEN Sulphates of nickel 01/01/1988 31/12/2500 -28332400 01/01/1988 31/12/2500 LIBEN Sulphates of nickel 01/01/1988 31/12/2500 -283325 01/01/1988 31/12/2500 LIBEN Sulphates of copper 01/01/1988 31/12/2500 -28332500 01/01/1988 31/12/2500 LIBEN Sulphates of copper 01/01/1988 31/12/2500 -283326 01/01/1988 31/12/2006 LIBEN Sulphate of zinc 01/01/1988 31/12/2006 -28332600 01/01/1988 31/12/2006 LIBEN Sulphate of zinc 01/01/1988 31/12/2006 -283327 01/01/1988 31/12/2500 LIBEN Sulphate of barium 01/01/1988 31/12/2500 -28332700 01/01/1988 31/12/2500 LIBEN Sulphate of barium 01/01/1988 31/12/2500 -283329 01/01/1988 31/12/2500 LIBEN Sulphates (excl. of sodium, magnesium, aluminium, nickel, copper, barium and mercury) 01/01/1988 31/12/2500 -28332910 01/01/1988 31/12/2006 LIBEN Sulphate of cadmium 01/01/1988 31/12/2006 -28332920 01/01/2007 31/12/2500 LIBEN Sulphates of cadmium, of chromium and of zinc 01/01/2007 31/12/2500 -28332930 01/01/1988 31/12/2500 LIBEN Sulphates of cobalt and of titanium 01/01/1988 31/12/2500 -28332950 01/01/1988 31/12/2008 LIBEN Sulphates of iron 01/01/1988 31/12/2008 -28332960 01/01/2007 31/12/2500 LIBEN Sulphates of lead 01/01/2007 31/12/2500 -28332970 01/01/1988 31/12/2006 LIBEN Sulphates of mercury and of lead 01/01/1988 31/12/2006 -28332980 01/01/2009 31/12/2500 LIBEN Sulphates (excl. of sodium, magnesium, aluminium, nickel, copper, barium, cadmium, chromium, zinc, cobalt, titanium, lead and mercury) 01/01/2009 31/12/2500 -28332990 01/01/1988 31/12/2008 LIBEN Sulphates (excl. of sodium, magnesium, aluminium, chromium, nickel, copper, zinc, barium, cadmium, cobalt, titanium, iron, lead and mercury) 01/01/1988 31/12/2008 -283330 01/01/1988 31/12/2500 LIBEN Alums 01/01/1988 31/12/2500 -28333000 01/01/1999 31/12/2500 LIBEN Alums 01/01/1999 31/12/2500 -28333010 01/01/1988 31/12/1998 LIBEN Aluminium ammonium bis"sulphate" 01/01/1988 31/12/1998 -28333090 01/01/1988 31/12/1998 LIBEN Alums (excl. aluminium ammonium bis"sulphate") 01/01/1988 31/12/1998 -283340 01/01/1988 31/12/2500 LIBEN Peroxosulphates "persulphates" 01/01/1988 31/12/2500 -28334000 01/01/1988 31/12/2500 LIBEN Peroxosulphates "persulphates" 01/01/1988 31/12/2500 -2833S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2833 and SITC section 5 01/01/1997 31/12/2500 -2833S523 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2833 and SITC group 523 01/01/1997 31/12/2500 -2834 01/01/1988 31/12/2500 LIBEN Nitrites; nitrates 01/01/1988 31/12/2500 -283410 01/01/1988 31/12/2500 LIBEN Nitrites 01/01/1988 31/12/2500 -28341000 01/01/1988 31/12/2500 LIBEN Nitrites 01/01/1988 31/12/2500 -283421 01/01/1988 31/12/2500 LIBEN Nitrate of potassium 01/01/1988 31/12/2500 -28342100 01/01/1988 31/12/2500 LIBEN Nitrate of potassium 01/01/1988 31/12/2500 -283422 01/01/1988 31/12/2001 LIBEN Nitrate of bismuth 01/01/1988 31/12/2001 -28342200 01/01/1988 31/12/2001 LIBEN Nitrate of bismuth 01/01/1988 31/12/2001 -283429 01/01/1988 31/12/2500 LIBEN Nitrates (excl. of potassium and of mercury) 01/01/1988 31/12/2500 -28342910 01/01/1988 31/12/1998 LIBEN Nitrates of barium, of beryllium, of cadmium, of cobalt and of nickel 01/01/1988 31/12/1998 -28342920 01/01/1999 31/12/2500 LIBEN Nitrates of barium, of beryllium, of cadmium, of cobalt, of nickel and of lead 01/01/1999 31/12/2500 -28342930 01/01/1988 31/12/2006 LIBEN Nitrates of copper and of mercury 01/01/1988 31/12/2006 -28342940 01/01/2007 31/12/2500 LIBEN Nitrates of copper 01/01/2007 31/12/2500 -28342950 01/01/1988 31/12/1998 LIBEN Nitrate of lead 01/01/1988 31/12/1998 -28342980 01/01/2002 31/12/2500 LIBEN Nitrates (excl. of potassium, barium, beryllium, cadmium, cobalt, nickel, copper, lead and mercury) 01/01/2002 31/12/2500 -28342990 01/01/1988 31/12/2001 LIBEN Nitrates (excl. of potassium, bismuth, barium, beryllium, cadmium, cobalt, nickel, copper, mercury and lead) 01/01/1988 31/12/2001 -2834S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2834 and SITC section 5 01/01/1997 31/12/2500 -2834S523 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2834 and SITC group 523 01/01/1997 31/12/2500 -2835 01/01/1988 31/12/2500 LIBEN Phosphinates "hypophosphites", phosphonates "phosphites" and phosphates; polyphosphates, whether or not chemically defined 01/01/1988 31/12/2500 -283510 01/01/1988 31/12/2500 LIBEN Phosphinates "hypophosphites" and phosphonates "phosphites" 01/01/1988 31/12/2500 -28351000 01/01/1988 31/12/2500 LIBEN Phosphinates "hypophosphites" and phosphonates "phosphites" 01/01/1988 31/12/2500 -283521 01/01/1988 31/12/1995 LIBEN Phosphates of triammonium 01/01/1988 31/12/1995 -28352100 01/01/1988 31/12/1995 LIBEN Phosphates of triammonium 01/01/1988 31/12/1995 -283522 01/01/1988 31/12/2500 LIBEN Mono- or disodium phosphate 01/01/1988 31/12/2500 -28352200 01/01/1988 31/12/1988 LIBEN Phosphates of mono- or disodium 01/01/1988 31/12/1988 -28352200 01/01/1993 31/12/2500 LIBEN Mono- or disodium phosphate 01/01/1993 31/12/2500 -28352210 01/01/1989 31/12/1992 LIBEN Phosphates of monosodium 01/01/1989 31/12/1992 -28352290 01/01/1989 31/12/1992 LIBEN Phosphates of disodium 01/01/1989 31/12/1992 -283523 01/01/1988 31/12/2006 LIBEN Phosphate of trisodium 01/01/1988 31/12/2006 -28352300 01/01/1988 31/12/2006 LIBEN Phosphate of trisodium 01/01/1988 31/12/2006 -283524 01/01/1988 31/12/2500 LIBEN Phosphates of potassium 01/01/1988 31/12/2500 -28352400 01/01/1988 31/12/2500 LIBEN Phosphates of potassium 01/01/1988 31/12/2500 -283525 01/01/1988 31/12/2500 LIBEN Calcium hydrogenorthophosphate "dicalcium phosphate" 01/01/1988 31/12/2500 -28352500 01/01/1988 31/12/1988 LIBEN Calcium hydrogenorthophosphate 'dicalcium phosphate' 01/01/1988 31/12/1988 -28352500 01/01/2009 31/12/2500 LIBEN Calcium hydrogenorthophosphate "dicalcium phosphate" 01/01/2009 31/12/2500 -28352510 01/01/1989 31/12/2008 LIBEN Calcium hydrogenorthophosphate "dicalcium phosphate" with a fluorine content < 0,005% by weight on the dry anhydrous product 01/01/1989 31/12/2008 -28352590 01/01/1989 31/12/2008 LIBEN Calcium hydrogenorthophosphate "dicalcium phosphate" with a fluorine content >= 0,005% but < 0,2% by weight on the dry anhydrous product 01/01/1989 31/12/2008 -283526 01/01/1988 31/12/2500 LIBEN Phosphates of calcium (excl. calcium hydrogenorthophosphate "dicalcium phosphate") 01/01/1988 31/12/2500 -28352600 01/01/1988 31/12/1988 LIBEN Phosphates of calcium (excl. calcium hydrogenorthophosphate 'dicalcium phosphate') 01/01/1988 31/12/1988 -28352600 01/01/2009 31/12/2500 LIBEN Phosphates of calcium (excl. calcium hydrogenorthophosphate "dicalcium phosphate") 01/01/2009 31/12/2500 -28352610 01/01/1989 31/12/2008 LIBEN Phosphates of calcium (excl. calcium hydrogenorthophosphate "dicalcium phosphate") with a fluorine content < 0,005% by weight on the dry anhydrous product 01/01/1989 31/12/2008 -28352690 01/01/1989 31/12/2008 LIBEN Phosphates of calcium (excl. calcium hydrogenorthophosphate "dicalcium phosphate") with a fluorine content >= 0,005% by weight on the dry anhydrous product 01/01/1989 31/12/2008 -283529 01/01/1988 31/12/2500 LIBEN Phosphates (excl. phosphates of monosodium, disodium, potassium, calcium and mercury) 01/01/1988 31/12/2500 -28352900 01/01/1988 31/12/1995 LIBEN Phosphates (excl. phosphates of triammonium, monosodium, disodium, trisodium, of potassium and of calcium) 01/01/1988 31/12/1995 -28352910 01/01/1996 31/12/2500 LIBEN Phosphate of triammonium 01/01/1996 31/12/2500 -28352930 01/01/2007 31/12/2500 LIBEN Phosphate of trisodium 01/01/2007 31/12/2500 -28352990 01/01/1996 31/12/2006 LIBEN Phosphates (excl. phosphates of triammonium, monosodium, disodium, trisodium, of potassium and of calcium) 01/01/1996 31/12/2006 -28352990 01/01/2007 31/12/2500 LIBEN Phosphates (excl. phosphates of triammonium, monosodium, disodium, trisodium, of potassium, of calcium and of mercury) 01/01/2007 31/12/2500 -283531 01/01/1988 31/12/2500 LIBEN Sodium triphosphate "sodium tripolyphosphate", whether or not chemically defined 01/01/1988 31/12/2500 -28353100 01/01/1988 31/12/2500 LIBEN Sodium triphosphate "sodium tripolyphosphate", whether or not chemically defined 01/01/1988 31/12/2500 -283539 01/01/1988 31/12/2500 LIBEN Polyphosphates, whether or not chemically defined (excl. sodium triphosphate "sodium tripolyphosphate", and inorganic or organic compounds of mercury whether or not chemically defined) 01/01/1988 31/12/2500 -28353900 01/01/1999 31/12/2011 LIBEN Polyphosphates, whether or not chemically defined (excl. sodium triphosphate "sodium tripolyphosphate") 01/01/1999 31/12/2011 -28353900 01/01/2012 31/12/2500 LIBEN Polyphosphates, whether or not chemically defined (excl. sodium triphosphate "sodium tripolyphosphate", and inorganic or organic compounds of mercury whether or not chemically defined) 01/01/2012 31/12/2500 -28353910 01/01/1988 31/12/1998 LIBEN Polyphosphates of ammonium 01/01/1988 31/12/1998 -28353930 01/01/1989 31/12/1998 LIBEN Polyphosphates of sodium (excl. triphosphate "tripolyphosphate") 01/01/1989 31/12/1998 -28353950 01/01/1989 31/12/1992 LIBEN Polyphosphates of potassium 01/01/1989 31/12/1992 -28353970 01/01/1993 31/12/1998 LIBEN Polyphosphates (excl. ammonium and sodium phosphates and sodium tripolyphosphate) 01/01/1993 31/12/1998 -28353980 01/01/1989 31/12/1992 LIBEN Polyphosphates (excl. of ammonium, sodium and potassium) 01/01/1989 31/12/1992 -28353990 01/01/1988 31/12/1988 LIBEN Polyphosphates (excl. of ammonium and triphosphate 'tripolyphosphate') 01/01/1988 31/12/1988 -2835S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2835 and SITC section 5 01/01/1997 31/12/2500 -2835S523 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2835 and SITC group 523 01/01/1997 31/12/2500 -2836 01/01/1988 31/12/2500 LIBEN Carbonates; peroxocarbonates "percarbonates"; commercial ammonium carbonate containing ammonium carbamate 01/01/1988 31/12/2500 -283610 01/01/1988 31/12/2006 LIBEN Commercial ammonium carbonate and other ammonium carbonates 01/01/1988 31/12/2006 -28361000 01/01/1988 31/12/2006 LIBEN Commercial ammonium carbonate and other ammonium carbonates 01/01/1988 31/12/2006 -283620 01/01/1988 31/12/2500 LIBEN Disodium carbonate 01/01/1988 31/12/2500 -28362000 01/01/1988 31/12/2500 LIBEN Disodium carbonate 01/01/1988 31/12/2500 -283630 01/01/1988 31/12/2500 LIBEN Sodium hydrogencarbonate "sodium bicarbonate" 01/01/1988 31/12/2500 -28363000 01/01/1988 31/12/2500 LIBEN Sodium hydrogencarbonate "sodium bicarbonate" 01/01/1988 31/12/2500 -283640 01/01/1988 31/12/2500 LIBEN Potassium carbonates 01/01/1988 31/12/2500 -28364000 01/01/1988 31/12/2500 LIBEN Potassium carbonates 01/01/1988 31/12/2500 -283650 01/01/1988 31/12/2500 LIBEN Calcium carbonate 01/01/1988 31/12/2500 -28365000 01/01/1988 31/12/2500 LIBEN Calcium carbonate 01/01/1988 31/12/2500 -283660 01/01/1988 31/12/2500 LIBEN Barium carbonate 01/01/1988 31/12/2500 -28366000 01/01/1988 31/12/2500 LIBEN Barium carbonate 01/01/1988 31/12/2500 -283670 01/01/1988 31/12/2006 LIBEN Lead carbonates 01/01/1988 31/12/2006 -28367000 01/01/1988 31/12/2006 LIBEN Lead carbonates 01/01/1988 31/12/2006 -283691 01/01/1988 31/12/2500 LIBEN Lithium carbonates 01/01/1988 31/12/2500 -28369100 01/01/1988 31/12/2500 LIBEN Lithium carbonates 01/01/1988 31/12/2500 -283692 01/01/1988 31/12/2500 LIBEN Strontium carbonate 01/01/1988 31/12/2500 -28369200 01/01/1988 31/12/2500 LIBEN Strontium carbonate 01/01/1988 31/12/2500 -283693 01/01/1988 31/12/1995 LIBEN Bismuth carbonate 01/01/1988 31/12/1995 -28369300 01/01/1988 31/12/1995 LIBEN Bismuth carbonate 01/01/1988 31/12/1995 -283699 01/01/1988 31/12/2500 LIBEN Carbonates and peroxocarbonates "percarbonates"; commercial ammonium carbonate containing ammonium carbamate (excl. disodium carbonate, sodium hydrogencarbonate "sodium bicarbonate", potassium carbonates, calcium carbonate, barium carbonate, lithium carbonates, strontium carbonate and inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -28369911 01/01/1988 31/12/2500 LIBEN Carbonates of magnesium and of copper 01/01/1988 31/12/2500 -28369917 01/01/2007 31/12/2500 LIBEN Carbonates; commercial ammonium carbonate containing ammonium carbamate (excl. disodium carbonate, sodium hydrogencarbonate "sodium bicarbonate", potassium carbonates, calcium carbonate, barium carbonate, lithium carbonates, strontium carbonate, carbonates of magnesium and of copper and inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -28369918 01/01/1996 31/12/2006 LIBEN Carbonates (excl. commercial ammonium carbonate and other ammonium carbonates, disodium carbonate, sodium hydrogencarbonate "sodium bicarbonate", potassium carbonates, calcium carbonate, barium carbonate, lead carbonate, lithium carbonates, strontium carbonate and carbonates of magnesium and of copper) 01/01/1996 31/12/2006 -28369919 01/01/1988 31/12/1995 LIBEN Carbonates (excl. commercial ammonium carbonate and other ammonium carbonates, disodium carbonate, sodium hydrogencarbonate, sodium bicarbonate, potassium carbonates, calcium carbonate, barium carbonate, lead carbonate, lithium carbonates, strontium carbonate, bismuth carbonate and carbonates of magnesium and of copper) 01/01/1988 31/12/1995 -28369990 01/01/1988 31/12/2500 LIBEN Peroxocarbonates "percarbonates" 01/01/1988 31/12/2500 -2836S5 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 2836 and SITC section 5 01/01/2001 31/12/2500 -2836S523 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 2836 and SITC group 523 01/01/2001 31/12/2500 -2836S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2836 and SITC section 9 01/01/2002 31/12/2500 -2836S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2836 and SITC group 999 01/01/2002 31/12/2500 -2837 01/01/1988 31/12/2500 LIBEN Cyanides, cyanide oxides and complex cyanides 01/01/1988 31/12/2500 -283711 01/01/1988 31/12/2500 LIBEN Sodium cyanide 01/01/1988 31/12/2500 -28371100 01/01/1988 31/12/2500 LIBEN Sodium cyanide 01/01/1988 31/12/2500 -283719 01/01/1988 31/12/2500 LIBEN Cyanides and cyanide oxides (excl. sodium and mercury) 01/01/1988 31/12/2500 -28371900 01/01/1988 31/12/2006 LIBEN Cyanides and oxycyanides (excl. sodium) 01/01/1988 31/12/2006 -28371900 01/01/2007 31/12/2500 LIBEN Cyanides and cyanide oxides (excl. sodium and mercury) 01/01/2007 31/12/2500 -283720 01/01/1988 31/12/2500 LIBEN Complex cyanides (excl. inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -28372000 01/01/1988 31/12/2006 LIBEN Complex cyanides 01/01/1988 31/12/2006 -28372000 01/01/2007 31/12/2500 LIBEN Complex cyanides (excl. inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -2837S5 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2837 and SITC section 5 01/01/1998 31/12/2500 -2837S523 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2837 and SITC group 523 01/01/1998 31/12/2500 -2838 01/01/1988 31/12/2006 LIBEN Fulminates, cyanates and thiocyanates 01/01/1988 31/12/2006 -283800 01/01/1988 31/12/2006 LIBEN Fulminates, cyanates and thiocyanates 01/01/1988 31/12/2006 -28380000 01/01/1988 31/12/2006 LIBEN Fulminates, cyanates and thiocyanates 01/01/1988 31/12/2006 -2839 01/01/1988 31/12/2500 LIBEN Silicates; commercial alkali metal silicates (excl. inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -283911 01/01/1988 31/12/2500 LIBEN Metasilicates of sodium, incl. commercial metasilicates 01/01/1988 31/12/2500 -28391100 01/01/1988 31/12/2500 LIBEN Metasilicates of sodium, incl. commercial metasilicates 01/01/1988 31/12/2500 -283919 01/01/1988 31/12/2500 LIBEN Silicates of sodium, incl. commercial silicates (excl. sodium metasilicates) 01/01/1988 31/12/2500 -28391900 01/01/1988 31/12/2500 LIBEN Silicates of sodium, incl. commercial silicates (excl. sodium metasilicates) 01/01/1988 31/12/2500 -283920 01/01/1988 31/12/2006 LIBEN Silicates of potassium, incl. commercial silicates 01/01/1988 31/12/2006 -28392000 01/01/1988 31/12/2006 LIBEN Silicates of potassium, incl. commercial silicates 01/01/1988 31/12/2006 -283990 01/01/1988 31/12/2500 LIBEN Silicates, incl. commercial alkali metal silicates (excl. sodium silicates) 01/01/1988 31/12/2500 -28399000 01/01/1993 31/12/2006 LIBEN Silicates, incl. commercial alkali metal silicates (excl. sodium and potassium silicates) 01/01/1993 31/12/2006 -28399000 01/01/2012 31/12/2500 LIBEN Silicates, incl. commercial alkali metal silicates (excl. sodium silicates) 01/01/2012 31/12/2500 -28399010 01/01/1988 31/12/1992 LIBEN Silicates of lead 01/01/1988 31/12/1992 -28399010 01/01/2007 31/12/2011 LIBEN Silicates of potassium, incl. commercial silicates 01/01/2007 31/12/2011 -28399090 01/01/1988 31/12/1992 LIBEN Silicates incl. commercial alkali metal silicates (excl. of sodium, potassium and lead) 01/01/1988 31/12/1992 -28399090 01/01/2007 31/12/2011 LIBEN Silicates, incl. commercial alkali metal silicates (excl. sodium and potassium silicates) 01/01/2007 31/12/2011 -2839S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2839 and SITC section 5 01/01/1997 31/12/2500 -2839S523 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2839 and SITC group 523 01/01/1997 31/12/2500 -2840 01/01/1988 31/12/2500 LIBEN Borates; peroxoborates "perborates" 01/01/1988 31/12/2500 -284011 01/01/1988 31/12/2500 LIBEN Anhydrous disodium tetraborate "refined borax" 01/01/1988 31/12/2500 -28401100 01/01/1988 31/12/2500 LIBEN Anhydrous disodium tetraborate "refined borax" 01/01/1988 31/12/2500 -284019 01/01/1988 31/12/2500 LIBEN Disodium tetraborate "refined borax" (excl. anhydrous) 01/01/1988 31/12/2500 -28401900 01/01/1988 31/12/1996 LIBEN Disodium tetraborate "refined borax" (excl. anhydrous) 01/01/1988 31/12/1996 -28401910 01/01/1997 31/12/2500 LIBEN Disodium tetraborate pentahydrate 01/01/1997 31/12/2500 -28401990 01/01/1997 31/12/2500 LIBEN Disodium tetraborate "refined borax" (excl. anhydrous and disodium tetraborate pentahydrate) 01/01/1997 31/12/2500 -284020 01/01/1988 31/12/2500 LIBEN Borates (excl. disodium tetraborate "refined borax") 01/01/1988 31/12/2500 -28402010 01/01/1988 31/12/2500 LIBEN Borates of sodium, anhydrous (excl. disodium tetraborate "refined borax") 01/01/1988 31/12/2500 -28402090 01/01/1988 31/12/2500 LIBEN Borates (excl. of sodium, anhydrous, and disodium tetraborate "refined borax") 01/01/1988 31/12/2500 -284030 01/01/1988 31/12/2500 LIBEN Peroxoborates "perborates" 01/01/1988 31/12/2500 -28403000 01/01/1988 31/12/2500 LIBEN Peroxoborates "perborates" 01/01/1988 31/12/2500 -2841 01/01/1988 31/12/2500 LIBEN Salts of oxometallic or peroxometallic acids 01/01/1988 31/12/2500 -284110 01/01/1988 31/12/2006 LIBEN Aluminates 01/01/1988 31/12/2006 -28411000 01/01/1988 31/12/2006 LIBEN Aluminates 01/01/1988 31/12/2006 -284120 01/01/1988 31/12/2006 LIBEN Chromates of zinc or of lead 01/01/1988 31/12/2006 -28412000 01/01/1988 31/12/2006 LIBEN Chromates of zinc or of lead 01/01/1988 31/12/2006 -284130 01/01/1988 31/12/2500 LIBEN Sodium dichromate 01/01/1988 31/12/2500 -28413000 01/01/1988 31/12/2500 LIBEN Sodium dichromate 01/01/1988 31/12/2500 -284140 01/01/1988 31/12/2001 LIBEN Potassium dichromate 01/01/1988 31/12/2001 -28414000 01/01/1988 31/12/2001 LIBEN Potassium dichromate 01/01/1988 31/12/2001 -284150 01/01/1988 31/12/2500 LIBEN Chromates and dichromates; peroxochromates (excl. sodium dichromate and inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -28415000 01/01/1988 31/12/2001 LIBEN Chromates and dichromates; peroxochromates (excl. chromates of zinc or of lead, sodium dichromate and potassium dichromate) 01/01/1988 31/12/2001 -28415000 01/01/2002 31/12/2006 LIBEN Chromates and dichromates; peroxochromates (excl. chromates of zinc or of lead and sodium dichromate) 01/01/2002 31/12/2006 -28415000 01/01/2007 31/12/2500 LIBEN Chromates and dichromates; peroxochromates (excl. sodium dichromate and inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -284160 01/01/1988 31/12/1995 LIBEN Manganites, manganates and permanganates 01/01/1988 31/12/1995 -28416000 01/01/1988 31/12/1991 LIBEN Manganites, manganates and permanganates 01/01/1988 31/12/1991 -28416010 01/01/1992 31/12/1995 LIBEN Potassium permanganate 01/01/1992 31/12/1995 -28416090 01/01/1992 31/12/1995 LIBEN Manganites, manganates and permanganates (excl. potassium permanganate) 01/01/1992 31/12/1995 -284161 01/01/1996 31/12/2500 LIBEN Potassium permanganate 01/01/1996 31/12/2500 -28416100 01/01/1996 31/12/2500 LIBEN Potassium permanganate 01/01/1996 31/12/2500 -284169 01/01/1996 31/12/2500 LIBEN Manganites, manganates and permanganates (excl. potassium permanganate) 01/01/1996 31/12/2500 -28416900 01/01/1996 31/12/2500 LIBEN Manganites, manganates and permanganates (excl. potassium permanganate) 01/01/1996 31/12/2500 -284170 01/01/1988 31/12/2500 LIBEN Molybdates 01/01/1988 31/12/2500 -28417000 01/01/1988 31/12/2500 LIBEN Molybdates 01/01/1988 31/12/2500 -284180 01/01/1988 31/12/2500 LIBEN Tungstates "wolframates" 01/01/1988 31/12/2500 -28418000 01/01/1988 31/12/2500 LIBEN Tungstates "wolframates" 01/01/1988 31/12/2500 -284190 01/01/1988 31/12/2500 LIBEN Salts of oxometallic or peroxometallic acids (excl. chromates, dichromates, peroxochromates, manganites, manganates, permanganates, molybdates and tungstates "wolframamtes") 01/01/1988 31/12/2500 -28419010 01/01/1988 31/12/2004 LIBEN Antimonates 01/01/1988 31/12/2004 -28419030 01/01/1988 31/12/2500 LIBEN Zincates and vanadates 01/01/1988 31/12/2500 -28419080 01/01/2005 31/12/2006 LIBEN Salts of oxometallic or peroxometallic acids (excl. aluminates, chromates, dichromates, peroxochromates, manganites, manganates, permanganates, molybdates, tungstates "wolframamtes", zincates and vanadates) 01/01/2005 31/12/2006 -28419085 01/01/2007 31/12/2500 LIBEN Salts of oxometallic or peroxometallic acids (excl. chromates, dichromates, peroxochromates, manganites, manganates, permanganates, molybdates, tungstates "wolframamtes", zincates and vanadates) 01/01/2007 31/12/2500 -28419090 01/01/1988 31/12/2004 LIBEN Salts of oxometallic or peroxometallic acids (excl. aluminates, chromates, dichromates, peroxochromates, manganites, manganates, permanganates, molybdates, tungstates "wolframamtes", antimonates, zincates and vanadates) 01/01/1988 31/12/2004 -2841S5 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2841 and SITC section 5 01/01/1998 31/12/2500 -2841S524 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2841 and SITC group 524 01/01/1998 31/12/2500 -2841S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2841 and SITC section 9 01/01/2002 31/12/2500 -2841S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2841 and SITC group 999 01/01/2002 31/12/2500 -2842 01/01/1988 31/12/2500 LIBEN Salts of inorganic acids or peroxoacids, incl. aluminosilicates whether or not chemically defined (excl. of oxometallic or peroxometallic acids and azides, and inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -284210 01/01/1988 31/12/2500 LIBEN Double or complex silicates of inorganic acids or peroxoacids, incl. aluminosilicates whether or not chemically defined (excl. inorganic or organic compounds of mercury whether or not chemically defined) 01/01/1988 31/12/2500 -28421000 01/01/1988 31/12/2001 LIBEN Double or complex silicates 01/01/1988 31/12/2001 -28421000 01/01/2002 31/12/2006 LIBEN Double or complex silicates of inorganic acids or peroxoacids, incl. aluminosilicates whether or not chemically defined 01/01/2002 31/12/2006 -28421000 01/01/2007 31/12/2011 LIBEN Double or complex silicates of inorganic acids or peroxoacids, incl. aluminosilicates whether or not chemically defined (excl. inorganic or organic compounds of mercury) 01/01/2007 31/12/2011 -28421000 01/01/2012 31/12/2500 LIBEN Double or complex silicates of inorganic acids or peroxoacids, incl. aluminosilicates whether or not chemically defined (excl. inorganic or organic compounds of mercury whether or not chemically defined) 01/01/2012 31/12/2500 -284290 01/01/1988 31/12/2500 LIBEN Salts of inorganic acids or peroxoacids (excl. of oxometallic or peroxometallic acids, double or complex silicates [incl. aluminosilicates whether or not chemically defined], azides, and inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -28429010 01/01/1988 31/12/2006 LIBEN Salts, double salts or complex salts of selenium or tellurium acids 01/01/1988 31/12/2006 -28429010 01/01/2007 31/12/2500 LIBEN Salts, double salts or complex salts of selenium or tellurium acids 01/01/2007 31/12/2500 -28429080 01/01/2007 31/12/2500 LIBEN Salts of inorganic acids or peroxoacids (excl. of oxometallic or peroxometallic acids, double or complex silicates [incl. aluminosilicates whether or not chemically defined], salts, double salts or complex salts of selenium or tellurium acids, azides and inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -28429090 01/01/1988 31/12/2006 LIBEN Salts of inorganic acids or peroxoacids (excl. of oxometallic or peroxometallic acids, double or complex silicates [incl. aluminosilicates whether or not chemically defined], salts, double salts or complex salts of selenium or tellurium acids, and azides) 01/01/1988 31/12/2006 -2842S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2842 and SITC section 5 01/01/1997 31/12/2500 -2842S523 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2842 and SITC group 523 01/01/1997 31/12/2500 -2843 01/01/1988 31/12/2500 LIBEN Colloidal precious metals; inorganic or organic compounds of precious metals, whether or not chemically defined; amalgams of precious metals 01/01/1988 31/12/2500 -284310 01/01/1988 31/12/2500 LIBEN Colloidal precious metals 01/01/1988 31/12/2500 -28431010 01/01/1988 31/12/2500 LIBEN Colloidal silver 01/01/1988 31/12/2500 -28431090 01/01/1988 31/12/2500 LIBEN Colloidal precious metals (excl. silver) 01/01/1988 31/12/2500 -284321 01/01/1988 31/12/2500 LIBEN Silver nitrate 01/01/1988 31/12/2500 -28432100 01/01/1988 31/12/2500 LIBEN Silver nitrate 01/01/1988 31/12/2500 -284329 01/01/1988 31/12/2500 LIBEN Silver compounds, inorganic or organic, whether or not chemically defined (excl. of mercury and silver nitrate) 01/01/1988 31/12/2500 -28432900 01/01/1988 31/12/2006 LIBEN Silver compounds, inorganic or organic, whether or not chemically defined (excl. silver nitrate) 01/01/1988 31/12/2006 -28432900 01/01/2007 31/12/2500 LIBEN Silver compounds, inorganic or organic, whether or not chemically defined (excl. of mercury and silver nitrate) 01/01/2007 31/12/2500 -284330 01/01/1988 31/12/2500 LIBEN Gold compounds, inorganic or organic, whether or not chemically defined 01/01/1988 31/12/2500 -28433000 01/01/1988 31/12/2500 LIBEN Gold compounds, inorganic or organic, whether or not chemically defined 01/01/1988 31/12/2500 -284390 01/01/1988 31/12/2500 LIBEN Inorganic or organic compounds of precious metals, whether or not chemically defined (excl. silver and gold); amalgams of precious metals 01/01/1988 31/12/2500 -28439010 01/01/1988 31/12/2500 LIBEN Amalgams of precious metals 01/01/1988 31/12/2500 -28439090 01/01/1988 31/12/2500 LIBEN Inorganic or organic compounds of precious metals, whether or not chemically defined (excl. silver and gold) 01/01/1988 31/12/2500 -2844 01/01/1988 31/12/2500 LIBEN Radioactive chemical elements and radioactive isotopes, incl. their fissile or fertile chemical elements and isotopes, and their compounds; mixtures and residues containing these products 01/01/1988 31/12/2500 -284410 01/01/1988 31/12/2500 LIBEN Natural uranium and its compounds; alloys, dispersions, incl. cermets, ceramic products and mixtures containing natural uranium or natural uranium compound [Euratom] 01/01/1988 31/12/2500 -28441000 01/01/1988 31/12/1994 LIBEN Natural uranium and its compounds; alloys, dispersions, incl. cermets, ceramic products and mixtures containing natural uranium or natural uranium compound 'Euratom' 01/01/1988 31/12/1994 -28441010 01/01/1995 31/12/2500 LIBEN Natural uranium, crude; waste and scrap, of natural uranium [Euratom] 01/01/1995 31/12/2500 -28441030 01/01/1999 31/12/2500 LIBEN Natural uranium, worked [Euratom] 01/01/1999 31/12/2500 -28441031 01/01/1995 31/12/1998 LIBEN Bars, rods, angles, shapes and sections, wire, sheets and strips, produced from natural uranium, crude "Euratom" 01/01/1995 31/12/1998 -28441039 01/01/1995 31/12/1998 LIBEN Natural uranium, worked "Euratom" (excl. bars, rods, angles, shapes and sections, wire, sheets and strips) 01/01/1995 31/12/1998 -28441050 01/01/1995 31/12/2500 LIBEN Alloys, dispersions incl. cermets, ceramic products and mixtures containing natural uranium with iron or compounds of natural uranium with iron "ferro-uranium" 01/01/1995 31/12/2500 -28441090 01/01/1995 31/12/2500 LIBEN Compounds of natural uranium; alloys, dispersions incl. cermets, ceramic products and mixtures containing natural uranium or compounds of natural uranium [Euratom] (excl. ferro-uranium) 01/01/1995 31/12/2500 -284420 01/01/1988 31/12/2500 LIBEN Uranium enriched in U 235 and its compounds: plutonium and its compounds; alloys, dispersions, incl. cermets, ceramic products and mixtures containing uranium enriched in U 235, plutonium or compounds of these products [Euratom] 01/01/1988 31/12/2500 -28442011 01/01/1988 31/12/1994 LIBEN Uranium enriched in u 235 and its compounds; alloys, dispersions, incl. cermets, ceramic products and mixtures containing uranium enriched in u 235 or compounds of these products, of a u 235 content of < 20 % by weight 'euratom' 01/01/1988 31/12/1994 -28442019 01/01/1988 31/12/1994 LIBEN Uranium enriched in u 235 and its compounds; alloys, dispersions, incl. cermets, ceramic products and mixtures containing uranium enriched in u 235 or compounds of these products, of a u 235 content of >= 20 % by weight 'euratom' 01/01/1988 31/12/1994 -28442021 01/01/1995 31/12/1998 LIBEN Alloys, dispersions incl. cermets, ceramic products and mixtures containing uranium with iron enriched in U 235 "ferro-uranium", of a U 235 content of < 20% by weight 01/01/1995 31/12/1998 -28442025 01/01/1999 31/12/2500 LIBEN Alloys, dispersions incl. cermets, ceramic products and mixtures containing uranium with iron enriched in U 235 "ferro-uranium" 01/01/1999 31/12/2500 -28442029 01/01/1995 31/12/1998 LIBEN Uranium enriched in U 235 and its compounds; alloys, dispersions incl. cermets, ceramic products and mixtures containing uranium enriched in U 235, of a U 235 content of < 20% by weight "Euratom" (excl. ferro-uranium) 01/01/1995 31/12/1998 -28442031 01/01/1995 31/12/1998 LIBEN Alloys, dispersions incl. cermets, ceramic products and mixtures containing uranium with iron enriched in U 235 "ferro-uranium", of a U 235 content of >= 20% by weight 01/01/1995 31/12/1998 -28442035 01/01/1999 31/12/2500 LIBEN Uranium enriched in U 235 and its compounds; alloys, dispersions incl. cermets, ceramic products and mixtures containing uranium enriched in U 235 [Euratom] (excl. ferro-uranium) 01/01/1999 31/12/2500 -28442039 01/01/1995 31/12/1998 LIBEN Uranium enriched in U 235 and its compounds; alloys, dispersions incl. cermets, ceramic products and mixtures containing uranium enriched in U 235, of a U 235 content of >= 20% by weight "Euratom" (excl. ferro-uranium) 01/01/1995 31/12/1998 -28442051 01/01/1995 31/12/2500 LIBEN Mixtures of uranium and plutonium with iron "ferro-uranium" 01/01/1995 31/12/2500 -28442059 01/01/1995 31/12/2500 LIBEN Mixtures of uranium and plutonium [Euratom] (excl. ferro-uranium) 01/01/1995 31/12/2500 -28442081 01/01/1995 31/12/1998 LIBEN Alloys, dispersions incl. cermets, ceramic products and mixtures containing plutonium with iron or compounds of this product with iron "ferro-uranium" (excl. mixtures of uranium and plutonium) 01/01/1995 31/12/1998 -28442089 01/01/1995 31/12/1998 LIBEN Plutonium and its compounds; alloys, dispersions incl. cermets, ceramic products and mixtures containing plutonium or compounds of this product (excl. mixtures of uranium and plutonium and ferro-uranium) 01/01/1995 31/12/1998 -28442091 01/01/1988 31/12/1994 LIBEN Mixtures of uranium and plutonium 'euratom' 01/01/1988 31/12/1994 -28442099 01/01/1988 31/12/1994 LIBEN Plutonium and its compounds; alloys, dispersions, incl. cermets, ceramic products and mixtures containing plutonium or compounds of these products 'euratom' (excl. mixtures of uranium and plutonium) 01/01/1988 31/12/1994 -28442099 01/01/1999 31/12/2500 LIBEN Plutonium and its compounds; alloys, dispersions incl. cermets, ceramic products and mixtures containing plutonium or compounds of this product (excl. mixtures of uranium and plutonium) 01/01/1999 31/12/2500 -284430 01/01/1988 31/12/2500 LIBEN Uranium depleted in U 235 and its compounds; thorium and its compounds; alloys, dispersions, incl. cermets, ceramic products and mixtures containing uranium depleted in U 235, thorium or compounds of these products 01/01/1988 31/12/2500 -28443011 01/01/1988 31/12/2500 LIBEN Cermets containing uranium depleted in U 235 or compounds of this product 01/01/1988 31/12/2500 -28443019 01/01/1988 31/12/2500 LIBEN Uranium depleted in U 235; alloys, dispersions, ceramic products and mixtures, containing uranium depleted in U 235 or compounds of this product (excl. cermets) 01/01/1988 31/12/2500 -28443051 01/01/1988 31/12/2500 LIBEN Cermets containing thorium or compounds of this product 01/01/1988 31/12/2500 -28443055 01/01/1995 31/12/2500 LIBEN Thorium, crude; waste and scrap, of thorium [Euratom] 01/01/1995 31/12/2500 -28443059 01/01/1988 31/12/1994 LIBEN Thorium; alloys, dispersions, ceramic products and mixtures, containing thorium or compounds of this product 'euratom' (excl. cermets) 01/01/1988 31/12/1994 -28443061 01/01/1995 31/12/2500 LIBEN Bars, rods, angles, shapes and sections, sheets and strips, of thorium [Euratom] 01/01/1995 31/12/2500 -28443069 01/01/1995 31/12/2500 LIBEN Thorium, worked; alloys, dispersions, ceramic products and mixtures containing thorium or compounds of this product [Euratom] (excl. cermets and bars, rods, angles, shapes and sections, sheets and strips) 01/01/1995 31/12/2500 -28443090 01/01/1988 31/12/1994 LIBEN Compounds of uranium depleted in u 235 or of thorium, whether or not intermixed 'euratom' 01/01/1988 31/12/1994 -28443091 01/01/1995 31/12/2500 LIBEN Compounds of thorium or of uranium depleted in U 235, whether or not intermixed [Euratom] (excl. thorium salts) 01/01/1995 31/12/2500 -28443099 01/01/1995 31/12/2500 LIBEN Thorium salts 01/01/1995 31/12/2500 -284440 01/01/1988 31/12/2500 LIBEN Radioactive elements, isotopes and compounds, and alloys and dispersions, incl. cermets, ceramic products and mixtures, containing these elements, isotopes and compounds; radioactive residues (excl. natural uranium, uranium enriched and depleted in U 235; plutonium, thorium and compounds of these products) 01/01/1988 31/12/2500 -28444000 01/01/1988 31/12/1994 LIBEN Radioactive elements, isotopes and compounds (excl. those of subheadings 2844.10 to 2844.30); alloys, dispersions, incl. cermets, ceramic products and mixtures containing these elements, isotopes or compounds; radioactive residues 01/01/1988 31/12/1994 -28444010 01/01/1999 31/12/2500 LIBEN Uranium derived from U 233 and its compounds; alloys, dispersions incl. cermets, ceramic products and mixtures containing uranium derived from U 233 or compounds of these products 01/01/1999 31/12/2500 -28444011 01/01/1995 31/12/1998 LIBEN Alloys, dispersions incl. cermets, ceramic products and mixtures containing uranium with iron depleted in U 233 or compounds of these products with iron "ferro-uranium" 01/01/1995 31/12/1998 -28444019 01/01/1995 31/12/1998 LIBEN Uranium depleted in U 233 and its compounds; alloys, dispersions incl. cermets, ceramic products and mixtures containing uranium depleted in U 233 or compounds of these products (excl. ferro-uranium) 01/01/1995 31/12/1998 -28444020 01/01/1995 31/12/2500 LIBEN Artificial radioactive isotopes [Euratom] 01/01/1995 31/12/2500 -28444030 01/01/1995 31/12/2500 LIBEN Compounds of artificial radioactive isotopes [Euratom] 01/01/1995 31/12/2500 -28444040 01/01/1995 31/12/1998 LIBEN Inorganic products of a kind used as 'luminophores' activated by radioactive compounds 01/01/1995 31/12/1998 -28444080 01/01/1999 31/12/2500 LIBEN Radioactive elements, isotopes and compounds (excl. subheading 2844.10, 2844.20, 2844.30 and 2844.40.10 to 2844.40.30); alloys, dispersions incl. cermets, ceramic products and mixtures containing these elements, isotopes or compounds; radioactive residues (excl. of uranium derived from U 233) 01/01/1999 31/12/2500 -28444090 01/01/1995 31/12/1998 LIBEN Radioactive elements, isotopes and compounds (excl. subheadings 2844.10, 2844.20, 2844.30 and 2844.40.19 to 2844.40.40); alloys, dispersions incl. cermets, ceramic products and mixtures containing these elements, isotopes or compounds; radioactive residues (excl. of uranium depleted in U 233 and ferro-uranium in subheading 2844.40.11) 01/01/1995 31/12/1998 -284450 01/01/1988 31/12/2500 LIBEN Spent "irradiated" fuel elements "cartridges" of nuclear reactors [Euratom] 01/01/1988 31/12/2500 -28445000 01/01/1988 31/12/2500 LIBEN Spent "irradiated" fuel elements "cartridges" of nuclear reactors [Euratom] 01/01/1988 31/12/2500 -2845 01/01/1988 31/12/2500 LIBEN Non-radioactive isotopes; inorganic or organic compounds of such isotopes, whether or not chemically defined 01/01/1988 31/12/2500 -284510 01/01/1988 31/12/2500 LIBEN Heavy water "deuterium oxide" [Euratom] 01/01/1988 31/12/2500 -28451000 01/01/1988 31/12/2500 LIBEN Heavy water "deuterium oxide" [Euratom] 01/01/1988 31/12/2500 -284590 01/01/1988 31/12/2500 LIBEN Non-radioactive isotopes; inorganic or organic compounds of such isotopes, whether or not chemically defined (excl. heavy water "deuterium oxide") 01/01/1988 31/12/2500 -28459010 01/01/1988 31/12/2500 LIBEN Deuterium and other compounds of deuterium; hydrogen and compounds thereof, enriched in deuterium; mixtures and solutions containing these products [Euratom] (excl. heavy water "deuterium oxide") 01/01/1988 31/12/2500 -28459090 01/01/1988 31/12/2500 LIBEN Isotopes and inorganic or organic compounds of such isotopes, whether or not chemically defined (excl. deuterium, heavy water "deuterium oxide" and other compounds of deuterium, hydrogen and compounds thereof, enriched in deuterium, and mixtures and solutions containing these products) 01/01/1988 31/12/2500 -2846 01/01/1988 31/12/2500 LIBEN Compounds, inorganic or organic, of rare-earth metals, of yttrium or of scandium or of mixtures of these metals 01/01/1988 31/12/2500 -284610 01/01/1988 31/12/2500 LIBEN Cerium compounds 01/01/1988 31/12/2500 -28461000 01/01/1988 31/12/2500 LIBEN Cerium compounds 01/01/1988 31/12/2500 -284690 01/01/1988 31/12/2500 LIBEN Compounds, inorganic or organic, of rare-earth metals, of yttrium or of scandium or of mixtures of these metals (excl. cerium) 01/01/1988 31/12/2500 -28469000 01/01/1988 31/12/2015 LIBEN Compounds, inorganic or organic, of rare-earth metals, of yttrium or of scandium or of mixtures of these metals (excl. cerium) 01/01/1988 31/12/2015 -28469010 01/01/2016 31/12/2500 LIBEN Compounds of lanthanum, praseodymium, neodymium or samarium, inorganic or organic 01/01/2016 31/12/2500 -28469020 01/01/2016 31/12/2500 LIBEN Compounds of europium, gadolinium, terbium, dysprosium, holmium, erbium, thulium, ytterbium, lutetium or yttrium, inorganic or organic 01/01/2016 31/12/2500 -28469030 01/01/2016 31/12/2500 LIBEN Scandium compounds, inorganic or organic 01/01/2016 31/12/2500 -28469090 01/01/2016 31/12/2500 LIBEN Compounds of mixtures of rare-earth metals, yttrium and scandium, inorganic or organic 01/01/2016 31/12/2500 -2847 01/01/1988 31/12/2500 LIBEN Hydrogen peroxide, whether or not solidified with urea 01/01/1988 31/12/2500 -284700 01/01/1988 31/12/2500 LIBEN Hydrogen peroxide, whether or not solidified with urea 01/01/1988 31/12/2500 -28470000 01/01/1988 31/12/2500 LIBEN Hydrogen peroxide, whether or not solidified with urea 01/01/1988 31/12/2500 -2847S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2847 and SITC section 5 01/01/1997 31/12/2500 -2847S524 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2847 and SITC group 524 01/01/1997 31/12/2500 -2848 01/01/1988 31/12/2016 LIBEN Phosphides, whether or not chemically defined (excl. ferrophosphorus, and inorganic or organic compounds of mercury whether or not chemically defined) 01/01/1988 31/12/2016 -284800 01/01/1996 31/12/2016 LIBEN Phosphides, whether or not chemically defined (excl. ferrophosphorus, and inorganic or organic compounds of mercury whether or not chemically defined) 01/01/1996 31/12/2016 -28480000 01/01/1996 31/12/2011 LIBEN Phosphides, whether or not chemically defined (excl. ferrophosphorus) 01/01/1996 31/12/2011 -28480000 01/01/2012 31/12/2016 LIBEN Phosphides, whether or not chemically defined (excl. ferrophosphorus, and inorganic or organic compounds of mercury whether or not chemically defined) 01/01/2012 31/12/2016 -284810 01/01/1988 31/12/1995 LIBEN Phosphides of copper "phosphor copper", containing > 15% by weight of phosphorus, whether or not chemically defined 01/01/1988 31/12/1995 -28481000 01/01/1988 31/12/1995 LIBEN Phosphides of copper "phosphor copper", containing > 15% by weight of phosphorus, whether or not chemically defined 01/01/1988 31/12/1995 -284890 01/01/1988 31/12/1995 LIBEN Phosphides, whether or not chemically defined (excl. of copper "phosphor copper", containing > 15% by weight of phosphorus and ferrophosphorus) 01/01/1988 31/12/1995 -28489000 01/01/1988 31/12/1995 LIBEN Phosphides, whether or not chemically defined (excl. of copper "phosphor copper", containing > 15% by weight of phosphorus and ferrophosphorus) 01/01/1988 31/12/1995 -2849 01/01/1988 31/12/2500 LIBEN Carbides, whether or not chemically defined 01/01/1988 31/12/2500 -284910 01/01/1988 31/12/2500 LIBEN Carbides of calcium, whether or not chemically defined 01/01/1988 31/12/2500 -28491000 01/01/1988 31/12/2500 LIBEN Carbides of calcium, whether or not chemically defined 01/01/1988 31/12/2500 -284920 01/01/1988 31/12/2500 LIBEN Carbides of silicon, whether or not chemically defined 01/01/1988 31/12/2500 -28492000 01/01/1988 31/12/2500 LIBEN Carbides of silicon, whether or not chemically defined 01/01/1988 31/12/2500 -284990 01/01/1988 31/12/2500 LIBEN Carbides, whether or not chemically defined (excl. of calcium or silicon, and inorganic or organic compounds of mercury whether or not chemically defined) 01/01/1988 31/12/2500 -28499010 01/01/1988 31/12/2500 LIBEN Carbides of boron, whether or not chemically defined 01/01/1988 31/12/2500 -28499030 01/01/1988 31/12/2500 LIBEN Carbides of tungsten, whether or not chemically defined 01/01/1988 31/12/2500 -28499050 01/01/1988 31/12/2500 LIBEN Carbides of aluminium, of chromium, of molybdenum, of vanadium, of tantalum, and of titanium, whether or not chemically defined 01/01/1988 31/12/2500 -28499090 01/01/1988 31/12/2011 LIBEN Carbides, whether or not chemically defined (excl. of calcium, silicon, boron, tungsten, aluminium, chromium, molybdenum, vanadium, tantalum and titanium) 01/01/1988 31/12/2011 -28499090 01/01/2012 31/12/2500 LIBEN Carbides, whether or not chemically defined (excl. of calcium, silicon, boron, tungsten, aluminium, chromium, molybdenum, vanadium, tantalum, titanium, and inorganic or organic compounds of mercury whether or not chemically defined) 01/01/2012 31/12/2500 -2850 01/01/1988 31/12/2500 LIBEN Hydrides, nitrides, azides, silicides and borides, whether or not chemically defined (excl. compounds which are also carbides of heading 2849, and inorganic or organic compounds of mercury whether or not chemically defined) 01/01/1988 31/12/2500 -285000 01/01/1988 31/12/2500 LIBEN Hydrides, nitrides, azides, silicides and borides, whether or not chemically defined (excl. compounds which are also carbides of heading 2849, and inorganic or organic compounds of mercury whether or not chemically defined) 01/01/1988 31/12/2500 -28500010 01/01/1988 31/12/1997 LIBEN Hydrides, whether or not chemically defined (excl. compounds which are also carbides of heading 2849) 01/01/1988 31/12/1997 -28500020 01/01/1998 31/12/2011 LIBEN Hydrides and nitrides, whether or not chemically defined (excl. compounds which are also carbides of heading 2849) 01/01/1998 31/12/2011 -28500020 01/01/2012 31/12/2500 LIBEN Hydrides and nitrides, whether or not chemically defined (excl. compounds which are also carbides of heading 2849, and inorganic or organic compounds of mercury) 01/01/2012 31/12/2500 -28500030 01/01/1988 31/12/1997 LIBEN Nitrides, whether or not chemically defined (excl. compounds which are also carbides of heading 2849) 01/01/1988 31/12/1997 -28500050 01/01/1988 31/12/2008 LIBEN Azides, whether or not chemically defined (excl. compounds which are also carbides of heading 2849) 01/01/1988 31/12/2008 -28500060 01/01/2009 31/12/2011 LIBEN Azides, silicides, whether or not chemically defined (excl. compounds which are also carbides of heading 2849) 01/01/2009 31/12/2011 -28500060 01/01/2012 31/12/2500 LIBEN Azides, silicides, whether or not chemically defined (excl. compounds which are also carbides of heading 2849, and inorganic or organic compounds of mercury) 01/01/2012 31/12/2500 -28500070 01/01/1988 31/12/2008 LIBEN Silicides, whether or not chemically defined (excl. compounds which are also carbides of heading 2849) 01/01/1988 31/12/2008 -28500090 01/01/1988 31/12/2011 LIBEN Borides, whether or not chemically defined (excl. compounds which are also carbides of heading 2849) 01/01/1988 31/12/2011 -28500090 01/01/2012 31/12/2500 LIBEN Borides, whether or not chemically defined (excl. compounds which are also carbides of heading 2849, and inorganic or organic compounds of mercury) 01/01/2012 31/12/2500 -2850S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2850 and SITC section 5 01/01/1997 31/12/2500 -2850S524 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2850 and SITC group 524 01/01/1997 31/12/2500 -2851 01/01/1988 31/12/2006 LIBEN Inorganic compounds, incl. distilled or conductivity water and water of similar purity, n.e.s.; liquid air, whether or not rare gases have been removed; compressed air; amalgams (other than amalgams of precious metals) 01/01/1988 31/12/2006 -285100 01/01/1988 31/12/2006 LIBEN Inorganic compounds, incl. distilled or conductivity water and water of similar purity, n.e.s.; liquid air, whether or not rare gases have been removed; compressed air; amalgams (other than amalgams of precious metals) 01/01/1988 31/12/2006 -28510010 01/01/1988 31/12/2006 LIBEN Distilled and conductivity water and water of similar purity 01/01/1988 31/12/2006 -28510030 01/01/1988 31/12/2006 LIBEN Liquid air, whether or not rare gases have been removed; compressed air 01/01/1988 31/12/2006 -28510050 01/01/1998 31/12/2006 LIBEN Cyanogen chloride 01/01/1998 31/12/2006 -28510080 01/01/1998 31/12/2006 LIBEN Inorganic compounds, n.e.s.; amalgams other than amalgams of precious metals 01/01/1998 31/12/2006 -28510090 01/01/1988 31/12/1997 LIBEN Inorganic compounds n.e.s.; amalgams other than amalgams of precious metals 01/01/1988 31/12/1997 -2852 01/01/2007 31/12/2500 LIBEN Compounds, inorganic or organic, of mercury, whether or not chemically defined (excl. amalgams) 01/01/2007 31/12/2500 -285200 01/01/2007 31/12/2011 LIBEN Compounds, inorganic or organic, of mercury (excl. amalgams) 01/01/2007 31/12/2011 -28520000 01/01/2007 31/12/2011 LIBEN Compounds, inorganic or organic, of mercury (excl. amalgams) 01/01/2007 31/12/2011 -285210 01/01/2012 31/12/2500 LIBEN Compounds, inorganic or organic, of mercury, chemically defined (excl. amalgams) 01/01/2012 31/12/2500 -28521000 01/01/2012 31/12/2500 LIBEN Compounds, inorganic or organic, of mercury, chemically defined (excl. amalgams) 01/01/2012 31/12/2500 -285290 01/01/2012 31/12/2500 LIBEN Compounds, inorganic or organic, of mercury, not chemically defined (excl. amalgams) 01/01/2012 31/12/2500 -28529000 01/01/2012 31/12/2500 LIBEN Compounds, inorganic or organic, of mercury, not chemically defined (excl. amalgams) 01/01/2012 31/12/2500 -2853 01/01/2007 31/12/2500 LIBEN Phosphides, whether or not chemically defined (excl. ferrophosphorus); inorganic compounds, incl. distilled or conductivity water and water of similar purity, n.e.s.; liquid air, whether or not rare gases have been removed; compressed air; amalgams (excl. amalgams of precious metals) 01/01/2007 31/12/2500 -285300 01/01/2007 31/12/2016 LIBEN Inorganic compounds, incl. distilled or conductivity water and water of similar purity, n.e.s.; liquid air, whether or not rare gases have been removed; compressed air; amalgams (excl. amalgams of precious metals) 01/01/2007 31/12/2016 -28530010 01/01/2007 31/12/2016 LIBEN Distilled and conductivity water and water of similar purity 01/01/2007 31/12/2016 -28530030 01/01/2007 31/12/2016 LIBEN Liquid air, whether or not rare gases have been removed; compressed air 01/01/2007 31/12/2016 -28530050 01/01/2007 31/12/2016 LIBEN Cyanogen chloride 01/01/2007 31/12/2016 -28530090 01/01/2007 31/12/2016 LIBEN Inorganic compounds, n.e.s.; amalgams (excl. of precious metals) 01/01/2007 31/12/2016 -285310 01/01/2017 31/12/2500 LIBEN Cyanogen chloride "chlorcyan" 01/01/2017 31/12/2500 -28531000 01/01/2017 31/12/2500 LIBEN Cyanogen chloride "chlorcyan" 01/01/2017 31/12/2500 -285390 01/01/2017 31/12/2500 LIBEN Phosphides, whether or not chemically defined (excl. ferrophosphorus); inorganic compounds, incl. distilled or conductivity water and water of similar purity, n.e.s.; liquid air, whether or not rare gases have been removed; compressed air; amalgams (excl. amalgams of precious metals) 01/01/2017 31/12/2500 -28539010 01/01/2017 31/12/2500 LIBEN Distilled or conductivity water and water of similar purity 01/01/2017 31/12/2500 -28539030 01/01/2017 31/12/2500 LIBEN Liquid air, whether or not rare gases have been removed; compressed air 01/01/2017 31/12/2500 -28539090 01/01/2017 31/12/2500 LIBEN Inorganic compounds, n.e.s.; amalgams (excl. of precious metals) 01/01/2017 31/12/2500 -28CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 28 01/01/2002 31/12/2500 -28CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 28 01/01/2002 31/12/2500 -28CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 28 01/01/2002 31/12/2500 -28MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -28MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -28MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -28SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 28 01/01/1988 31/12/2500 -28SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 28 and SITC section 0 01/01/1997 31/12/2001 -28SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 28 and SITC group 000 01/01/1997 31/12/2001 -28SSS2 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 28 and SITC section 2 01/01/1993 31/12/2500 -28SSS285 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 28 and SITC group 285 01/01/1993 31/12/2500 -28SSS5 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 28 and SITC section 5 01/01/1988 31/12/2500 -28SSS522 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 28 and SITC group 522 01/01/1988 31/12/2500 -28SSS523 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 28 and SITC group 523 01/01/1988 31/12/2500 -28SSS524 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 28 and SITC group 524 01/01/1988 31/12/2500 -28SSS525 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 28 and SITC group 525 01/01/1988 31/12/2500 -28SSS9 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 28 and SITC section 9 01/01/1988 31/12/2500 -28SSS999 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 28 and SITC group 999 01/01/1988 31/12/2500 -28VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 28 for the assembly of motor vehicles 01/01/1988 31/12/2500 -28VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 28 for the assembly of motor vehicles 01/01/1988 31/12/2500 -28VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 28 for the assembly of motor vehicles 01/01/1988 31/12/2500 -29 01/01/1988 31/12/2500 LIBEN ORGANIC CHEMICALS 01/01/1988 31/12/2500 -2901 01/01/1988 31/12/2500 LIBEN Acyclic hydrocarbons 01/01/1988 31/12/2500 -290110 01/01/1988 31/12/2500 LIBEN Saturated acyclic hydrocarbons 01/01/1988 31/12/2500 -29011000 01/01/2004 31/12/2500 LIBEN Saturated acyclic hydrocarbons 01/01/2004 31/12/2500 -29011010 01/01/1988 31/12/2003 LIBEN Saturated acyclic hydrocarbons for use as a power or heating fuels 01/01/1988 31/12/2003 -29011090 01/01/1988 31/12/2003 LIBEN Saturated acyclic hydrocarbons (excl. for use as a power or heating fuels) 01/01/1988 31/12/2003 -290121 01/01/1988 31/12/2500 LIBEN Ethylene 01/01/1988 31/12/2500 -29012100 01/01/1988 31/12/1994 LIBEN Ethylene 01/01/1988 31/12/1994 -29012100 01/01/2004 31/12/2500 LIBEN Ethylene 01/01/2004 31/12/2500 -29012110 01/01/1995 31/12/2003 LIBEN Ethylene for use as a power or heating fuel 01/01/1995 31/12/2003 -29012190 01/01/1995 31/12/2003 LIBEN Ethylene (excl. for use as a power or heating fuel) 01/01/1995 31/12/2003 -290122 01/01/1988 31/12/2500 LIBEN Propene "propylene" 01/01/1988 31/12/2500 -29012200 01/01/1988 31/12/1994 LIBEN Propene 'propylene' 01/01/1988 31/12/1994 -29012200 01/01/2004 31/12/2500 LIBEN Propene "propylene" 01/01/2004 31/12/2500 -29012210 01/01/1995 31/12/2003 LIBEN Propene "propylene" for use as a power or heating fuel 01/01/1995 31/12/2003 -29012290 01/01/1995 31/12/2003 LIBEN Propene "propylene" (excl. for use as a power or heating fuel) 01/01/1995 31/12/2003 -290123 01/01/1988 31/12/2500 LIBEN Butene "butylene" and isomers thereof 01/01/1988 31/12/2500 -29012300 01/01/1988 31/12/1993 LIBEN Butene 'butylene' and isomers thereof 01/01/1988 31/12/1993 -29012300 01/01/2009 31/12/2500 LIBEN Butene "butylene" and isomers thereof 01/01/2009 31/12/2500 -29012310 01/01/1994 31/12/1994 LIBEN But-1-ene and but-2-ene 01/01/1994 31/12/1994 -29012310 01/01/2004 31/12/2008 LIBEN But-1-ene and but-2-ene 01/01/2004 31/12/2008 -29012311 01/01/1995 31/12/2003 LIBEN But-1-ene and but-2-ene for use as a power or heating fuels 01/01/1995 31/12/2003 -29012319 01/01/1995 31/12/2003 LIBEN But-1-ene and but-2-ene (excl. for use as a power or heating fuels) 01/01/1995 31/12/2003 -29012390 01/01/1994 31/12/1994 LIBEN Butene (butylene) and isomers thereof (excl. but-1-en and but-2-en) 01/01/1994 31/12/1994 -29012390 01/01/2004 31/12/2008 LIBEN Butene "butylene" and isomers thereof (excl. but-1-ene and but-2-ene) 01/01/2004 31/12/2008 -29012391 01/01/1995 31/12/2003 LIBEN Butene "butylene" and isomers thereof, for use as a power or heating fuel (excl. but-1-ene and but-2-ene) 01/01/1995 31/12/2003 -29012399 01/01/1995 31/12/2003 LIBEN Butene "butylene" and isomers thereof (excl. but-1-ene and but-2-ene and for use as a power or heating fuels) 01/01/1995 31/12/2003 -290124 01/01/1988 31/12/2500 LIBEN Buta-1,3-diene and isoprene 01/01/1988 31/12/2500 -29012400 01/01/1988 31/12/1993 LIBEN Buta-1,3-diene and isoprene 01/01/1988 31/12/1993 -29012400 01/01/2009 31/12/2500 LIBEN Buta-1,3-diene and isoprene 01/01/2009 31/12/2500 -29012410 01/01/1994 31/12/1994 LIBEN Buta-1,3-diene 01/01/1994 31/12/1994 -29012410 01/01/2004 31/12/2008 LIBEN Buta-1,3-diene 01/01/2004 31/12/2008 -29012411 01/01/1995 31/12/2003 LIBEN Buta-1,3-diene for use as a power or heating fuel 01/01/1995 31/12/2003 -29012419 01/01/1995 31/12/2003 LIBEN Buta-1,3-diene (excl. for use as a power or heating fuel) 01/01/1995 31/12/2003 -29012490 01/01/1994 31/12/1994 LIBEN Isoprene 01/01/1994 31/12/1994 -29012490 01/01/2004 31/12/2008 LIBEN Isoprene 01/01/2004 31/12/2008 -29012491 01/01/1995 31/12/2003 LIBEN Isoprene for use as a power or heating fuel 01/01/1995 31/12/2003 -29012499 01/01/1995 31/12/2003 LIBEN Isoprene (excl. for use as a power or heating fuel) 01/01/1995 31/12/2003 -290129 01/01/1988 31/12/2500 LIBEN Hydrocarbons, acyclic, unsaturated (excl. ethylene, propene "propylene", butene "butylene" and isomers thereof and Buta-1,3-diene and isoprene) 01/01/1988 31/12/2500 -29012900 01/01/1993 31/12/1994 LIBEN Hydrocarbons, acyclic, unsaturated (excl. ethylene, propene 'propylene', butene 'butylene' and isomers thereof and buta-1.3-diene and isoprene) 01/01/1993 31/12/1994 -29012900 01/01/2004 31/12/2500 LIBEN Hydrocarbons, acyclic, unsaturated (excl. ethylene, propene "propylene", butene "butylene" and isomers thereof and Buta-1,3-diene and isoprene) 01/01/2004 31/12/2500 -29012910 01/01/1988 31/12/1992 LIBEN Buta-1,2-diene; 3-methylbuta-1,2-diene 01/01/1988 31/12/1992 -29012920 01/01/1995 31/12/2003 LIBEN Hydrocarbons, acyclic, unsaturated, for use as a power or heating fuels (excl. ethylene, propene "propylene", butene "butylene" and its isomers, buta-1,3-diene and isoprene and for use as a power or heating fuels) 01/01/1995 31/12/2003 -29012980 01/01/1995 31/12/2003 LIBEN Hydrocarbons, acyclic, unsaturated (excl. ethylene, propene "propylene", butene "butylene" and its isomers, buta-1,3-diene and isoprene and for use as a power or heating fuels) 01/01/1995 31/12/2003 -29012990 01/01/1988 31/12/1992 LIBEN Unsaturated acyclic hydrocarbons (excl. ethylene, propene 'propylene', butene 'butylene' and isomers thereof, buta-1,3-diene, isoprene, buta-1,2-diene and 3-methylbuta-1,2-diene) 01/01/1988 31/12/1992 -2901S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2901 and SITC section 5 01/01/1997 31/12/2500 -2901S511 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2901 and SITC group 511 01/01/1997 31/12/2500 -2902 01/01/1988 31/12/2500 LIBEN Cyclic hydrocarbons 01/01/1988 31/12/2500 -290211 01/01/1988 31/12/2001 LIBEN Cyclohexane 01/01/1988 31/12/2001 -290211 01/01/2002 31/12/2500 LIBEN Cyclohexane 01/01/2002 31/12/2500 -29021100 01/01/1988 31/12/1994 LIBEN Cyclohexane 01/01/1988 31/12/1994 -29021100 01/01/2002 31/12/2500 LIBEN Cyclohexane 01/01/2002 31/12/2500 -29021110 01/01/1995 31/12/2001 LIBEN Cyclohexane for use as a power or heating fuel 01/01/1995 31/12/2001 -29021190 01/01/1995 31/12/2001 LIBEN Cyclohexane (excl. for use as a power or heating fuel) 01/01/1995 31/12/2001 -290219 01/01/1988 31/12/2500 LIBEN Cyclanes, cyclenes and cycloterpenes (excl. cyclohexane) 01/01/1988 31/12/2500 -29021900 01/01/2009 31/12/2500 LIBEN Cyclanes, cyclenes and cycloterpenes (excl. cyclohexane) 01/01/2009 31/12/2500 -29021910 01/01/1988 31/12/2008 LIBEN Cycloterpenes 01/01/1988 31/12/2008 -29021930 01/01/1988 31/12/2003 LIBEN Azulene and its alkyl derivatives 01/01/1988 31/12/2003 -29021980 01/01/2004 31/12/2008 LIBEN Hydrocarbons, alicyclic (excl. cyclohexane and cycloterpenes) 01/01/2004 31/12/2008 -29021990 01/01/1988 31/12/1994 LIBEN Cyclanes, cyclenes (excl. cyclohexane, cycloterpene and azulene and its alkyl derivatives) 01/01/1988 31/12/1994 -29021990 01/01/2002 31/12/2003 LIBEN Hydrocarbons, alicyclic (excl. cyclohexane, cycloterpenes and azulene and its alkyl derivatives) 01/01/2002 31/12/2003 -29021991 01/01/1995 31/12/2001 LIBEN Hydrocarbons, alicyclic, for use as a power or heating fuel (excl. cyclohexane, cycloterpenes and azulene and its alkyl derivatives) 01/01/1995 31/12/2001 -29021999 01/01/1995 31/12/2001 LIBEN Hydrocarbons, alicyclic (excl. cyclohexane, cycloterpenes and azulene and its alkyl derivatives and for use as a power or heating fuels) 01/01/1995 31/12/2001 -290220 01/01/1988 31/12/2001 LIBEN Benzene 01/01/1988 31/12/2001 -290220 01/01/2002 31/12/2500 LIBEN Benzene 01/01/2002 31/12/2500 -29022000 01/01/2002 31/12/2500 LIBEN Benzene 01/01/2002 31/12/2500 -29022010 01/01/1988 31/12/2001 LIBEN Benzene for use as a power or heating fuel 01/01/1988 31/12/2001 -29022090 01/01/1988 31/12/2001 LIBEN Benzene (excl. for use as a power or heating fuel) 01/01/1988 31/12/2001 -290230 01/01/1988 31/12/2001 LIBEN Toluene 01/01/1988 31/12/2001 -290230 01/01/2002 31/12/2500 LIBEN Toluene 01/01/2002 31/12/2500 -29023000 01/01/2002 31/12/2500 LIBEN Toluene 01/01/2002 31/12/2500 -29023010 01/01/1988 31/12/2001 LIBEN Toluene for use as a power or heating fuels 01/01/1988 31/12/2001 -29023090 01/01/1988 31/12/2001 LIBEN Toluene (excl. for use as a power or heating fuel) 01/01/1988 31/12/2001 -290241 01/01/1988 31/12/2500 LIBEN o-Xylene 01/01/1988 31/12/2500 -29024100 01/01/1988 31/12/2500 LIBEN o-Xylene 01/01/1988 31/12/2500 -290242 01/01/1988 31/12/2500 LIBEN m-Xylene 01/01/1988 31/12/2500 -29024200 01/01/1988 31/12/2500 LIBEN m-Xylene 01/01/1988 31/12/2500 -290243 01/01/1988 31/12/2500 LIBEN p-Xylene 01/01/1988 31/12/2500 -29024300 01/01/1988 31/12/2500 LIBEN p-Xylene 01/01/1988 31/12/2500 -290244 01/01/1988 31/12/2001 LIBEN Mixed xylene isomers 01/01/1988 31/12/2001 -290244 01/01/2002 31/12/2500 LIBEN Mixed xylene isomers 01/01/2002 31/12/2500 -29024400 01/01/2002 31/12/2500 LIBEN Mixed xylene isomers 01/01/2002 31/12/2500 -29024410 01/01/1988 31/12/2001 LIBEN Mixed xylene isomers for use as a power or heating fuels 01/01/1988 31/12/2001 -29024490 01/01/1988 31/12/2001 LIBEN Mixed xylene isomers (excl. for use as a power or heating fuels) 01/01/1988 31/12/2001 -290250 01/01/1988 31/12/2500 LIBEN Styrene 01/01/1988 31/12/2500 -29025000 01/01/1988 31/12/2500 LIBEN Styrene 01/01/1988 31/12/2500 -290260 01/01/1988 31/12/2500 LIBEN Ethylbenzene 01/01/1988 31/12/2500 -29026000 01/01/1988 31/12/2500 LIBEN Ethylbenzene 01/01/1988 31/12/2500 -290270 01/01/1988 31/12/2500 LIBEN Cumene 01/01/1988 31/12/2500 -29027000 01/01/1988 31/12/2500 LIBEN Cumene 01/01/1988 31/12/2500 -290290 01/01/1988 31/12/2500 LIBEN Cyclic hydrocarbons (excl. cyclanes, cyclenes, benzene, toluene, xylenes, styrene, ethylbenzene and cumene) 01/01/1988 31/12/2500 -29029000 01/01/2009 31/12/2500 LIBEN Cyclic hydrocarbons (excl. cyclanes, cyclenes, benzene, toluene, xylenes, styrene, ethylbenzene and cumene) 01/01/2009 31/12/2500 -29029010 01/01/1988 31/12/2008 LIBEN Naphthalene and anthracene 01/01/1988 31/12/2008 -29029030 01/01/1988 31/12/2008 LIBEN Biphenyl and terphenyls 01/01/1988 31/12/2008 -29029050 01/01/1997 31/12/2003 LIBEN Vinyltoluenes 01/01/1997 31/12/2003 -29029060 01/01/1997 31/12/2003 LIBEN 1,3-Diisopropylbenzene 01/01/1997 31/12/2003 -29029080 01/01/1997 31/12/2003 LIBEN Cyclic hydrocarbons (excl. cyclanes, cyclenes, benzene, toluene, xylenes, styrene, ethylbenzene, cumene, naphthalene, anthracene, biphenyl, terphenyls, vinyltoluenes and 1,3-diisopropylbenzene) 01/01/1997 31/12/2003 -29029090 01/01/1988 31/12/1996 LIBEN Cyclic hydrocarbons (excl. cyclanes, cyclenes, benzene, toluene, xylenes, styrene, ethylbenzene, cumene, naphthalene, anthracene, biphenyl and terphenyls) 01/01/1988 31/12/1996 -29029090 01/01/2004 31/12/2008 LIBEN Cyclic hydrocarbons (excl. cyclanes, cyclenes, benzene, toluene, xylenes, styrene, ethylbenzene, cumene, naphthalene, anthracene, biphenyl and terphenyls) 01/01/2004 31/12/2008 -2902S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2902 and SITC section 5 01/01/1997 31/12/2500 -2902S511 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2902 and SITC group 511 01/01/1997 31/12/2500 -2903 01/01/1988 31/12/2500 LIBEN Halogenated derivatives of hydrocarbons 01/01/1988 31/12/2500 -290311 01/01/1988 31/12/2500 LIBEN Chloromethane "methyl chloride" and chloroethane "ethyl chloride" 01/01/1988 31/12/2500 -29031100 01/01/1988 31/12/2500 LIBEN Chloromethane "methyl chloride" and chloroethane "ethyl chloride" 01/01/1988 31/12/2500 -290312 01/01/1988 31/12/2500 LIBEN Dichloromethane "methylene chloride" 01/01/1988 31/12/2500 -29031200 01/01/1988 31/12/2500 LIBEN Dichloromethane "methylene chloride" 01/01/1988 31/12/2500 -290313 01/01/1988 31/12/2500 LIBEN Chloroform "trichloromethane" 01/01/1988 31/12/2500 -29031300 01/01/1988 31/12/2500 LIBEN Chloroform "trichloromethane" 01/01/1988 31/12/2500 -290314 01/01/1988 31/12/2500 LIBEN Carbon tetrachloride 01/01/1988 31/12/2500 -29031400 01/01/1988 31/12/2500 LIBEN Carbon tetrachloride 01/01/1988 31/12/2500 -290315 01/01/1988 31/12/2500 LIBEN Ethylene dichloride (ISO) "1,2 dichloroethane" 01/01/1988 31/12/2500 -29031500 01/01/1988 31/12/2500 LIBEN Ethylene dichloride (ISO) "1,2 dichloroethane" 01/01/1988 31/12/2500 -290316 01/01/1988 31/12/2001 LIBEN 1,2-Dichloropropane "propylene dichloride" and dichlorobutanes 01/01/1988 31/12/2001 -29031600 01/01/1988 31/12/2001 LIBEN 1,2-Dichloropropane "propylene dichloride" and dichlorobutanes 01/01/1988 31/12/2001 -290319 01/01/1988 31/12/2500 LIBEN Saturated chlorinated derivatives of acyclic hydrocarbons (excl. chloromethane [methyl chloride], chloroethane [ethyl chloride], dichloromethane [methylene chloride], chloroform [trichloromethane], carbon tetrachloride and ethylene dichloride (ISO) [1,2 dichloroethane]) 01/01/1988 31/12/2500 -29031900 01/01/1988 31/12/1991 LIBEN Saturated chlorinated derivatives of acyclic hydrocarbons (excl. chloromethane 'methyl chloride', chloroethane 'ethyl chloride', dichloromethane 'methylene chloride', chloroform 'trichloromethane', carbon tetrachloride, 1,2-dichloroethane 'ethylene dichloride', 1,2-dichloropropane 'propylene dichloride' and dichlorobutanes) 01/01/1988 31/12/1991 -29031900 01/01/2016 31/12/2500 LIBEN Saturated chlorinated derivatives of acyclic hydrocarbons (excl. chloromethane [methyl chloride], chloroethane [ethyl chloride], dichloromethane [methylene chloride], chloroform [trichloromethane], carbon tetrachloride and ethylene dichloride (ISO) [1,2 dichloroethane]) 01/01/2016 31/12/2500 -29031910 01/01/1992 31/12/2015 LIBEN 1,1,1-Trichloroethane "methylchloroform" 01/01/1992 31/12/2015 -29031980 01/01/2002 31/12/2015 LIBEN Saturated chlorinated derivatives of acyclic hydrocarbons (excl. chloromethane [methyl chloride], chloroethane [ethyl chloride], dichloromethane [methylene chloride], chloroform [trichloromethane], carbon tetrachloride, ethylene dichloride (ISO) [1,2 dichloroethane] and 1,1,1-trichloroethane [methylchloroform]) 01/01/2002 31/12/2015 -29031990 01/01/1992 31/12/2001 LIBEN Saturated chlorinated derivatives of acyclic hydrocarbons (other than chloromethane [methyl chloride], chloroethane [ethyl chloride], dichloromethane [methylene chloride], chloroform [trichloromethane], carbon tetrachloride, 1,2-dichloroethane [ethylene dichloride], 1,2-dichloropropane [propylene dichloride], dichlorobutanes and 1,1,1-trichloroethane [methylchloroform]) 01/01/1992 31/12/2001 -290321 01/01/1988 31/12/2500 LIBEN Vinyl chloride "chloroethylene" 01/01/1988 31/12/2500 -29032100 01/01/1988 31/12/2500 LIBEN Vinyl chloride "chloroethylene" 01/01/1988 31/12/2500 -290322 01/01/1988 31/12/2500 LIBEN Trichloroethylene 01/01/1988 31/12/2500 -29032200 01/01/1988 31/12/2500 LIBEN Trichloroethylene 01/01/1988 31/12/2500 -290323 01/01/1988 31/12/2500 LIBEN Tetrachloroethylene "perchloroethylene" 01/01/1988 31/12/2500 -29032300 01/01/1988 31/12/2500 LIBEN Tetrachloroethylene "perchloroethylene" 01/01/1988 31/12/2500 -290329 01/01/1988 31/12/2500 LIBEN Unsaturated chlorinated derivatives of acyclic hydrocarbons (excl. vinyl chloride "chloroethylene", trichloroethylene and tetrachloroethylene "perchloroethylene") 01/01/1988 31/12/2500 -29032900 01/01/1988 31/12/2500 LIBEN Unsaturated chlorinated derivatives of acyclic hydrocarbons (excl. vinyl chloride "chloroethylene", trichloroethylene and tetrachloroethylene "perchloroethylene") 01/01/1988 31/12/2500 -290330 01/01/1988 31/12/2006 LIBEN Fluorinated, brominated or iodinated derivatives of acyclic hydrocarbons 01/01/1988 31/12/2006 -29033010 01/01/1988 31/12/1998 LIBEN Fluorides "fluorinated derivatives" of acyclic hydrocarbons 01/01/1988 31/12/1998 -29033031 01/01/1988 31/12/1998 LIBEN Dibromoethane and vinyl bromide 01/01/1988 31/12/1998 -29033033 01/01/1994 31/12/2006 LIBEN Bromomethane "methyl bromide" 01/01/1994 31/12/2006 -29033035 01/01/1997 31/12/2006 LIBEN Dibromomethane 01/01/1997 31/12/2006 -29033036 01/01/1999 31/12/2006 LIBEN Bromides "brominated derivatives" of acyclic hydrocarbons (excl. bromomethane "methyl bromide" and dibromomethane) 01/01/1999 31/12/2006 -29033037 01/01/1997 31/12/1998 LIBEN Bromides "brominated derivatives" of acyclic hydrocarbons (excl. dibromoethane, vinyl bromide, bromomethane "methyl bromide" and dibromomethane) 01/01/1997 31/12/1998 -29033038 01/01/1994 31/12/1996 LIBEN Bromides, bromide derivatives of acyclic hydrocarbons (excl. dibromoethane, vinyl bromide and bromomethane [methyl bromide]) 01/01/1994 31/12/1996 -29033039 01/01/1988 31/12/1993 LIBEN Bromides (excl. dibromoethane and vinyl bromide) 01/01/1988 31/12/1993 -29033080 01/01/1999 31/12/2006 LIBEN Fluorides "fluorinated derivatives" and iodides "iodinated derivatives" of acyclic hydrocarbons 01/01/1999 31/12/2006 -29033090 01/01/1988 31/12/1998 LIBEN Iodides "iodinated derivatives" of acyclic hydrocarbons 01/01/1988 31/12/1998 -290331 01/01/2007 31/12/2500 LIBEN Ethylene dibromide (ISO) "1,2-dibromoethane" 01/01/2007 31/12/2500 -29033100 01/01/2007 31/12/2500 LIBEN Ethylene dibromide (ISO) "1,2-dibromoethane" 01/01/2007 31/12/2500 -290339 01/01/2007 31/12/2500 LIBEN Fluorinated, brominated or iodinated derivatives of acyclic hydrocarbons (excl. ethylene dibromide (ISO) [1,2-dibromoethane]) 01/01/2007 31/12/2500 -29033911 01/01/2007 31/12/2500 LIBEN Bromomethane "methyl bromide" 01/01/2007 31/12/2500 -29033915 01/01/2007 31/12/2500 LIBEN Dibromomethane 01/01/2007 31/12/2500 -29033919 01/01/2007 31/12/2500 LIBEN Bromides "brominated derivatives" of acyclic hydrocarbons (excl. ethylene dibromide (ISO) [1,2-dibromoethane], bromomethane [methyl bromide] and dibromomethane) 01/01/2007 31/12/2500 -29033921 01/01/2016 31/12/2500 LIBEN Difluoromethane 01/01/2016 31/12/2500 -29033923 01/01/2016 31/12/2500 LIBEN Trifluoromethane 01/01/2016 31/12/2500 -29033924 01/01/2016 31/12/2500 LIBEN Pentafluoroethane and 1,1,1-trifluoroethane 01/01/2016 31/12/2500 -29033925 01/01/2016 31/12/2500 LIBEN 1,1-difluoroethane 01/01/2016 31/12/2500 -29033926 01/01/2016 31/12/2500 LIBEN 1,1,1,2-tetrafluoroethane 01/01/2016 31/12/2500 -29033927 01/01/2016 31/12/2500 LIBEN Pentafluoropropanes, hexafluoropropanes and heptafluoropropanes 01/01/2016 31/12/2500 -29033928 01/01/2016 31/12/2500 LIBEN Perfluorinated saturated fluorides 01/01/2016 31/12/2500 -29033929 01/01/2016 31/12/2500 LIBEN Saturated fluorides "fluorinated derivatives" of acyclic hydrocarbons, n.e.s. 01/01/2016 31/12/2500 -29033931 01/01/2016 31/12/2500 LIBEN 2,3,3,3-tetrafluoropropene 01/01/2016 31/12/2500 -29033935 01/01/2016 31/12/2500 LIBEN 1,3,3,3-tetrafluoropropene 01/01/2016 31/12/2500 -29033939 01/01/2016 31/12/2500 LIBEN Unsaturated fluorides "fluorinated derivatives" of acyclic hydrocarbons (excl. 2,3,3,3-tetrafluoropropene and 1,3,3,3-tetrafluoropropene) 01/01/2016 31/12/2500 -29033980 01/01/2016 31/12/2500 LIBEN Iodides "iodinated derivatives" of acyclic hydrocarbons 01/01/2016 31/12/2500 -29033990 01/01/2007 31/12/2015 LIBEN Fluorides "fluorinated derivatives" and iodides "iodinated derivatives" of acyclic hydrocarbons 01/01/2007 31/12/2015 -290340 01/01/1988 31/12/1995 LIBEN Halogenated derivatives of acyclic hydrocarbons containing two or more different halogens 01/01/1988 31/12/1995 -29034000 01/01/1988 31/12/1988 LIBEN Halogenated derivatives of acyclic hydrocarbons containing two or more different halogens 01/01/1988 31/12/1988 -29034010 01/01/1989 31/12/1995 LIBEN Trichlorofluoromethane 01/01/1989 31/12/1995 -29034020 01/01/1989 31/12/1995 LIBEN Dichlorodifluoromethane 01/01/1989 31/12/1995 -29034021 01/01/1995 31/12/1995 LIBEN Chlorotrifluoromethane 01/01/1995 31/12/1995 -29034022 01/01/1995 31/12/1995 LIBEN Pentachlorofluoroethane 01/01/1995 31/12/1995 -29034023 01/01/1995 31/12/1995 LIBEN Tetrachlorodifluoroethanes 01/01/1995 31/12/1995 -29034030 01/01/1989 31/12/1995 LIBEN Trichlorotrifluoroethanes 01/01/1989 31/12/1995 -29034040 01/01/1989 31/12/1995 LIBEN Dichlorotetrafluoroethanes 01/01/1989 31/12/1995 -29034050 01/01/1989 31/12/1995 LIBEN Chloropentafluoroethane 01/01/1989 31/12/1995 -29034051 01/01/1995 31/12/1995 LIBEN Heptachlorofluoropropanes 01/01/1995 31/12/1995 -29034052 01/01/1995 31/12/1995 LIBEN Hexachlorodifluoropropanes 01/01/1995 31/12/1995 -29034053 01/01/1995 31/12/1995 LIBEN Pentachlorotrifluoropropanes 01/01/1995 31/12/1995 -29034054 01/01/1995 31/12/1995 LIBEN Tetrachlorotetrafluoropropanes 01/01/1995 31/12/1995 -29034055 01/01/1995 31/12/1995 LIBEN Trichloropentafluoropropanes 01/01/1995 31/12/1995 -29034056 01/01/1995 31/12/1995 LIBEN Dichlorohexafluoropropanes 01/01/1995 31/12/1995 -29034057 01/01/1995 31/12/1995 LIBEN Chloroheptafluoropropanes 01/01/1995 31/12/1995 -29034060 01/01/1989 31/12/1990 LIBEN Halogenated derivatives of acyclic hydrocarbons only fluorinated and chlorinated (excl. 2903.40-10 to 2903.40-50) 01/01/1989 31/12/1990 -29034061 01/01/1991 31/12/1994 LIBEN Perhalogenated derivatives of acyclic hydrocarbons only fluorinated and chlorinated (excl. 2903.40-10 to 2903.40-50) 01/01/1991 31/12/1994 -29034062 01/01/1995 31/12/1995 LIBEN Perhalogenated derivatives of acyclic hydrocarbons, only fluorinated and chlorinated (other than trichloro-, dichlorodi-, chlorotrifluoromethane, trichlorotri-, dichlorotetra-, pentachloro-, tetrachlorodi-, chloropentafluoroethanes, heptachloro-, hexachlorodi-, pentachlorotri-, tetrachlorotetra-, trichloropenta-, dichlorohexa- and chloroheptafluoropropanes) 01/01/1995 31/12/1995 -29034066 01/01/1995 31/12/1995 LIBEN Halogenated derivatives of methane, ethane or propane, only fluorinated and chlorinated 01/01/1995 31/12/1995 -29034068 01/01/1995 31/12/1995 LIBEN Halogenated derivatives of acyclic hydrocarbons, only fluorinated and chlorinated (other than perhalogenated polymers and of methane, ethane or propane) 01/01/1995 31/12/1995 -29034069 01/01/1991 31/12/1994 LIBEN Halogenated derivatives of acyclic hydrocarbons only fluorinated and chlorinated (excl. 2903.40-10 to 2903.40-61) 01/01/1991 31/12/1994 -29034070 01/01/1989 31/12/1995 LIBEN Bromotrifluoromethane 01/01/1989 31/12/1995 -29034080 01/01/1989 31/12/1995 LIBEN Dibromotetrafluoroethanes 01/01/1989 31/12/1995 -29034091 01/01/1989 31/12/1995 LIBEN Bromochlorodifluoromethane 01/01/1989 31/12/1995 -29034092 01/01/1991 31/12/1995 LIBEN Perhalogenated derivatives of acyclic hydrocarbons with two or more different halogens (other than only fluorinated and chlorinated and bromotrifluoromethane, dibromotetrafluoroethane and bromochlorodifluoromethane) 01/01/1991 31/12/1995 -29034098 01/01/1991 31/12/1995 LIBEN Halogenated derivatives of acyclic hydrocarbons with two or more different halogens (other than only fluorinated, chlorinated and perhalogenated) 01/01/1991 31/12/1995 -29034099 01/01/1989 31/12/1990 LIBEN Halogenated derivatives of acyclic hydrocarbons containing two or more different halogens (excl. 2903.40-10 to 2903.40-91) 01/01/1989 31/12/1990 -290341 01/01/1996 31/12/2011 LIBEN Trichlorofluoromethane 01/01/1996 31/12/2011 -29034100 01/01/1996 31/12/2011 LIBEN Trichlorofluoromethane 01/01/1996 31/12/2011 -290342 01/01/1996 31/12/2011 LIBEN Dichlorodifluoromethane 01/01/1996 31/12/2011 -29034200 01/01/1996 31/12/2011 LIBEN Dichlorodifluoromethane 01/01/1996 31/12/2011 -290343 01/01/1996 31/12/2011 LIBEN Trichlorotrifluoroethanes 01/01/1996 31/12/2011 -29034300 01/01/1996 31/12/2011 LIBEN Trichlorotrifluoroethanes 01/01/1996 31/12/2011 -290344 01/01/1996 31/12/2011 LIBEN Dichlorotetrafluoroethanes and chloropentafluoroethane 01/01/1996 31/12/2011 -29034410 01/01/1996 31/12/2011 LIBEN Dichlorotetrafluoroethanes 01/01/1996 31/12/2011 -29034490 01/01/1996 31/12/2011 LIBEN Chloropentafluoroethane 01/01/1996 31/12/2011 -290345 01/01/1996 31/12/2011 LIBEN Derivatives of acyclic hydrocarbons, perhalogenated only with fluorine and chlorine (excl. trichlorofluoromethane, dichlorodifluoromethane, trichlorotrifluoroethanes, dichlorotetrafluoroethanes and chloropentafluoroethane) 01/01/1996 31/12/2011 -29034510 01/01/1996 31/12/2011 LIBEN Chlorotrifluoromethane 01/01/1996 31/12/2011 -29034515 01/01/1996 31/12/2011 LIBEN Pentachlorofluoroethane 01/01/1996 31/12/2011 -29034520 01/01/1996 31/12/2011 LIBEN Tetrachlorodifluoroethanes 01/01/1996 31/12/2011 -29034525 01/01/1996 31/12/2011 LIBEN Heptachlorofluoropropanes 01/01/1996 31/12/2011 -29034530 01/01/1996 31/12/2011 LIBEN Hexachlorodifluoropropanes 01/01/1996 31/12/2011 -29034535 01/01/1996 31/12/2011 LIBEN Pentachlorotrifluoropropanes 01/01/1996 31/12/2011 -29034540 01/01/1996 31/12/2011 LIBEN Tetrachlorotetrafluoropropanes 01/01/1996 31/12/2011 -29034545 01/01/1996 31/12/2011 LIBEN Trichloropentafluoropropanes 01/01/1996 31/12/2011 -29034550 01/01/1996 31/12/2011 LIBEN Dichlorohexafluoropropanes 01/01/1996 31/12/2011 -29034555 01/01/1996 31/12/2011 LIBEN Chloroheptafluoropropanes 01/01/1996 31/12/2011 -29034590 01/01/1996 31/12/2011 LIBEN Derivatives of acyclic hydrocarbons, perhalogenated only with fluorine and chlorine (excl. trichlorofluoromethane, dichlorodifluoromethane, trichlorotrifluoroethanes, dichlorotetrafluoroethanes, chloropentafluoroethane, chlorotrifluoromethane, pentachlorofluoroethane, tetrachlorodifluoroethanes; heptachlorofluoro, hexachlorodifluoro-, pentachlorotrifluoro-, tetrachlorotetrafluoro-, trichloropentafluoro-, dichlorohexafluoro- and chloroheptafluoropropanes) 01/01/1996 31/12/2011 -290346 01/01/1996 31/12/2011 LIBEN Bromochlorodifluoromethane, bromotrifluoromethane and dibromotetrafluoroethanes 01/01/1996 31/12/2011 -29034610 01/01/1996 31/12/2011 LIBEN Bromochlorodifluoromethane 01/01/1996 31/12/2011 -29034620 01/01/1996 31/12/2011 LIBEN Bromotrifluoromethane 01/01/1996 31/12/2011 -29034690 01/01/1996 31/12/2011 LIBEN Dibromotetrafluoroethanes 01/01/1996 31/12/2011 -290347 01/01/1996 31/12/2011 LIBEN Perhalogenated derivatives of acyclic hydrocarbons with two or more different halogens (excl. only fluorinated and chlorinated and bromochlorodifluoromethane, bromotrifluoromethane and dibromotetrafluoroethanes) 01/01/1996 31/12/2011 -29034700 01/01/1996 31/12/2011 LIBEN Perhalogenated derivatives of acyclic hydrocarbons with two or more different halogens (excl. only fluorinated and chlorinated and bromochlorodifluoromethane, bromotrifluoromethane and dibromotetrafluoroethanes) 01/01/1996 31/12/2011 -290349 01/01/1996 31/12/2011 LIBEN Halogenated derivatives of acyclic hydrocarbons with two or more different halogens (excl. perhalogenated derivatives) 01/01/1996 31/12/2011 -29034910 01/01/1996 31/12/2007 LIBEN Halogenated derivatives of methane, ethane or propane, halogenated only with fluorine and chlorine (excl. perhalogenated) 01/01/1996 31/12/2007 -29034911 01/01/2008 31/12/2011 LIBEN Chlorodifluoromethane (HCFC-22) 01/01/2008 31/12/2011 -29034915 01/01/2008 31/12/2011 LIBEN 1,1-Dichloro-1-fluoroethane (HCFC-141b) 01/01/2008 31/12/2011 -29034919 01/01/2008 31/12/2011 LIBEN Halogenated derivatives of methane, ethane or propane, halogenated only with fluorine and chlorine (excl. perhalogenated, chlorodifluoromethane [HCFC-22] and 1,1-dichloro-1-fluoroethane [HCFC-141b]) 01/01/2008 31/12/2011 -29034920 01/01/1996 31/12/2011 LIBEN Halogenated derivatives of acyclic hydrocarbons, halogenated only with fluorine and chlorine (other than perhalogenated polymers and of methane, ethane or propane) 01/01/1996 31/12/2011 -29034930 01/01/1997 31/12/2011 LIBEN Halogenated derivatives of methane, ethane or propane, halogenated only with fluorine and bromine (excl. perhalogenated) 01/01/1997 31/12/2011 -29034940 01/01/1997 31/12/2011 LIBEN Halogenated derivatives of acyclic hydrocarbons, halogenated only with fluorine and bromine (excl. of methane, ethane or propane, and perhalogenated) 01/01/1997 31/12/2011 -29034980 01/01/1997 31/12/2011 LIBEN Halogenated derivatives of acyclic hydrocarbons with two or more different halogens (other than halogenated only with fluorine and chlorine, halogenated only with fluorine and bromine, and perhalogenated) 01/01/1997 31/12/2011 -29034990 01/01/1996 31/12/1996 LIBEN Halogenated derivatives of acyclic hydrocarbons with two or more different halogens (other than only fluorinated, chlorinated and perhalogenated) 01/01/1996 31/12/1996 -290351 01/01/1988 31/12/2011 LIBEN 1,2,3,4,5,6-Hexachlorocyclohexane [HCH (ISO)], incl. lindane (ISO) (INN) 01/01/1988 31/12/2011 -29035100 01/01/1988 31/12/1991 LIBEN 1,2,3,4,5,6-hexachlorocyclohexane 01/01/1988 31/12/1991 -29035100 01/01/1999 31/12/2011 LIBEN 1,2,3,4,5,6-Hexachlorocyclohexane [HCH (ISO)], incl. lindane (ISO) (INN) 01/01/1999 31/12/2011 -29035110 01/01/1992 31/12/1998 LIBEN Lindane (ISO) 01/01/1992 31/12/1998 -29035190 01/01/1992 31/12/1998 LIBEN 1,2,3,4,5,6-Hexachlorocyclohexane (excl. lindane (ISO)) 01/01/1992 31/12/1998 -290352 01/01/2007 31/12/2011 LIBEN Aldrin (ISO), chlordane (ISO) and heptachlor (ISO) 01/01/2007 31/12/2011 -29035200 01/01/2007 31/12/2011 LIBEN Aldrin (ISO), chlordane (ISO) and heptachlor (ISO) 01/01/2007 31/12/2011 -290359 01/01/1988 31/12/2011 LIBEN Halogenated derivatives of cyclanic, cyclenic or cycloterpenic hydrocarbons (excl. 1,2,3,4,5,6-hexachlorocyclohexane [HCH (ISO)], incl. lindane (ISO) [INN], and aldrin (ISO), chlordane (ISO) and heptachlor (ISO)) 01/01/1988 31/12/2011 -29035900 01/01/1988 31/12/1994 LIBEN Halogenated derivatives of cyclanic, cyclenic or cycloterpenic hydrocarbons (excl. 1,2,3,4,5,6-hexachlorocyclohexane) 01/01/1988 31/12/1994 -29035910 01/01/1995 31/12/2008 LIBEN 1,2-Dibromo-4-"1,2-dibromoethyl"cyclohexane 01/01/1995 31/12/2008 -29035920 01/01/2009 31/12/2011 LIBEN 1,2-Dibromo-4-(1,2-dibromoethyl)cyclohexane; tetrabromocyclooctanes 01/01/2009 31/12/2011 -29035930 01/01/1995 31/12/2008 LIBEN Tetrabromocyclooctanes 01/01/1995 31/12/2008 -29035980 01/01/2007 31/12/2011 LIBEN Halogenated derivatives of cyclanic, cyclenic or cycloterpenic hydrocarbons (excl. 1,2,3,4,5,6-hexachlorocyclohexane [HCH (ISO)], incl. lindane (ISO) [INN], and aldrin (ISO), chlordane (ISO), heptachlor (ISO), 1,2-dibromo-4-"1,2-dibromoethyl"cyclohexane and tetrabromocyclooctanes) 01/01/2007 31/12/2011 -29035990 01/01/1995 31/12/2006 LIBEN Halogenated derivatives of alicyclic hydrocarbons (excl. 1,2,3,4,5,6-hexachlorocyclohexane, 1,2-dibromo-4-"1,2-dibromoethyl"cyclohexane and tetrabromocyclooctanes) 01/01/1995 31/12/2006 -290361 01/01/1988 31/12/2011 LIBEN Chlorobenzene, o-dichlorobenzene and p-dichlorobenzene 01/01/1988 31/12/2011 -29036100 01/01/1988 31/12/2011 LIBEN Chlorobenzene, o-dichlorobenzene and p-dichlorobenzene 01/01/1988 31/12/2011 -290362 01/01/1988 31/12/2011 LIBEN Hexachlorobenzene (ISO) and DDT (ISO) "clofenotane (INN), "1,1,1-trichloro-2,2-bis[p-chlorophenyl]ethane" 01/01/1988 31/12/2011 -29036200 01/01/1988 31/12/2011 LIBEN Hexachlorobenzene (ISO) and DDT (ISO) "clofenotane (INN), "1,1,1-trichloro-2,2-bis[p-chlorophenyl]ethane" 01/01/1988 31/12/2011 -290369 01/01/1988 31/12/2011 LIBEN Halogenated derivatives of aromatic hydrocarbons (excl. chlorobenzene, o-dichlorobenzene and p-dichlorobenzene, hexachlorobenzene (ISO) and DDT (ISO) [clofenotane [INN], "1,1,1-trichloro-2,2-bis[p-chlorophenyl]ethane") 01/01/1988 31/12/2011 -29036900 01/01/1988 31/12/1994 LIBEN Halogenated derivatives of aromatic hydrocarbons (excl. chlorobenzene, o-dichlorobenzene and p-dichlorobenzene, hexachlorobenzene and ddt '1,1,1-trichloro-2,2-bis' 'p-chlorophenyl'ethane') 01/01/1988 31/12/1994 -29036910 01/01/1995 31/12/2011 LIBEN 2,3,4,5,6-Pentabromoethylbenzene 01/01/1995 31/12/2011 -29036990 01/01/1995 31/12/2011 LIBEN Halogenated derivatives of aromatic hydrocarbons (excl. chlorobenzene, o-dichlorobenzene, p-dichlorobenzene, hexachlorobenzene (ISO) and DDT (ISO) [clofenotane [INN], "1,1,1-trichloro-2,2-bis[p-chlorophenyl]ethane" and 2,3,4,5,6-pentabromoethylbenzene) 01/01/1995 31/12/2011 -290371 01/01/2012 31/12/2500 LIBEN Chlorodifluoromethane 01/01/2012 31/12/2500 -29037100 01/01/2012 31/12/2500 LIBEN Chlorodifluoromethane 01/01/2012 31/12/2500 -290372 01/01/2012 31/12/2500 LIBEN Dichlorotrifluoroethanes 01/01/2012 31/12/2500 -29037200 01/01/2012 31/12/2500 LIBEN Dichlorotrifluoroethanes 01/01/2012 31/12/2500 -290373 01/01/2012 31/12/2500 LIBEN Dichlorofluoroethanes 01/01/2012 31/12/2500 -29037300 01/01/2012 31/12/2500 LIBEN Dichlorofluoroethanes 01/01/2012 31/12/2500 -290374 01/01/2012 31/12/2500 LIBEN Chlorodifluoroethanes 01/01/2012 31/12/2500 -29037400 01/01/2012 31/12/2500 LIBEN Chlorodifluoroethanes 01/01/2012 31/12/2500 -290375 01/01/2012 31/12/2500 LIBEN Dichloropentafluoropropanes 01/01/2012 31/12/2500 -29037500 01/01/2012 31/12/2500 LIBEN Dichloropentafluoropropanes 01/01/2012 31/12/2500 -290376 01/01/2012 31/12/2500 LIBEN Bromochlorodifluoromethane, bromotrifluoromethane and dibromotetrafluoroethanes 01/01/2012 31/12/2500 -29037610 01/01/2012 31/12/2500 LIBEN Bromochlorodifluoromethane 01/01/2012 31/12/2500 -29037620 01/01/2012 31/12/2500 LIBEN Bromotrifluoromethane 01/01/2012 31/12/2500 -29037690 01/01/2012 31/12/2500 LIBEN Dibromotetrafluoroethanes 01/01/2012 31/12/2500 -290377 01/01/2012 31/12/2500 LIBEN Halogenated derivatives of acyclic hydrocarbons containing two or more different halogens, perhalogenated only with fluorine and chlorine (excl. chlorodifluoromethane, dichlorotrifluoroethanes, dichlorofluoroethanes, chlorodifluoroethanes, dichloropentafluoropropanes, bromochlorodifluoromethane, bromotrifluoromethane and dibromotetrafluoroethanes) 01/01/2012 31/12/2500 -29037710 01/01/2012 31/12/2015 LIBEN Trichlorofluoromethane 01/01/2012 31/12/2015 -29037720 01/01/2012 31/12/2015 LIBEN Dichlorodifluoromethane 01/01/2012 31/12/2015 -29037730 01/01/2012 31/12/2015 LIBEN Trichlorotrifluoroethanes 01/01/2012 31/12/2015 -29037740 01/01/2012 31/12/2015 LIBEN Dichlorotetrafluoroethanes 01/01/2012 31/12/2015 -29037750 01/01/2012 31/12/2015 LIBEN Chloropentafluoroethane 01/01/2012 31/12/2015 -29037760 01/01/2016 31/12/2500 LIBEN Trichlorofluoromethane, dichlorodifluoromethane, trichlorotrifluoroethanes, dichlorotetrafluoroethanes and chloropentafluoroethane 01/01/2016 31/12/2500 -29037790 01/01/2012 31/12/2500 LIBEN Halogenated derivatives of acyclic hydrocarbons containing two or more different halogens, perhalogenated only with fluorine and chlorine, n.e.s. 01/01/2012 31/12/2500 -290378 01/01/2012 31/12/2500 LIBEN Perhalogenated derivatives of acyclic hydrocarbons containing two or more different halogens, n.e.s. 01/01/2012 31/12/2500 -29037800 01/01/2012 31/12/2500 LIBEN Perhalogenated derivatives of acyclic hydrocarbons containing two or more different halogens, n.e.s. 01/01/2012 31/12/2500 -290379 01/01/2012 31/12/2500 LIBEN Halogenated derivatives of acyclic hydrocarbons containing two or more different halogens (excl. perhalogenated, and chlorodifluoromethane, dichlorotrifluoroethanes, dichlorofluoroethanes, chlorodifluoroethanes, dichloropentafluoropropanes, bromochlorodifluoromethane, bromotrifluoromethane and dibromotetrafluoroethanes) 01/01/2012 31/12/2500 -29037911 01/01/2012 31/12/2015 LIBEN Halogenated derivatives of acyclic hydrocarbons containing two or more different halogens, halogenated only with fluorine and chlorine, of methane, ethane or propane "HCFCs", n.e.s. 01/01/2012 31/12/2015 -29037919 01/01/2012 31/12/2015 LIBEN Halogenated derivatives of acyclic hydrocarbons containing two or more different halogens, halogenated only with fluorine and chlorine, n.e.s. 01/01/2012 31/12/2015 -29037921 01/01/2012 31/12/2015 LIBEN Halogenated derivatives of acyclic hydrocarbons containing two or more different halogens, halogenated only with fluorine and bromine, of methane, ethane or propane, n.e.s. 01/01/2012 31/12/2015 -29037929 01/01/2012 31/12/2015 LIBEN Halogenated derivatives of acyclic hydrocarbons containing two or more different halogens, halogenated only with fluorine and bromine, n.e.s. 01/01/2012 31/12/2015 -29037930 01/01/2016 31/12/2500 LIBEN Halogenated derivatives of acyclic hydrocarbons, halogenated only with bromine and chlorine, fluorine and chlorine or with fluorine and bromine (excl. perhalogenated, and chlorodifluoromethane, dichlorotrifluoroethanes, dichlorofluoroethanes, chlorodifluoroethanes, dichloropentafluoropropanes, bromotrifluoromethane and dibromotetrafluoroethanes) 01/01/2016 31/12/2500 -29037980 01/01/2016 31/12/2500 LIBEN Halogenated derivatives of acyclic hydrocarbons containing two or more different halogens, n.e.s. 01/01/2016 31/12/2500 -29037990 01/01/2012 31/12/2015 LIBEN Halogenated derivatives of acyclic hydrocarbons containing two or more different halogens, n.e.s. 01/01/2012 31/12/2015 -290381 01/01/2012 31/12/2500 LIBEN 1,2,3,4,5,6-Hexachlorocyclohexane (HCH (ISO)), including lindane (ISO, INN) 01/01/2012 31/12/2500 -29038100 01/01/2012 31/12/2500 LIBEN 1,2,3,4,5,6-Hexachlorocyclohexane (HCH (ISO)), including lindane (ISO, INN) 01/01/2012 31/12/2500 -290382 01/01/2012 31/12/2500 LIBEN Aldrin (ISO), chlordane (ISO) and heptachlor (ISO) 01/01/2012 31/12/2500 -29038200 01/01/2012 31/12/2500 LIBEN Aldrin (ISO), chlordane (ISO) and heptachlor (ISO) 01/01/2012 31/12/2500 -290383 01/01/2017 31/12/2500 LIBEN Mirex (ISO) 01/01/2017 31/12/2500 -29038300 01/01/2017 31/12/2500 LIBEN Mirex (ISO) 01/01/2017 31/12/2500 -290389 01/01/2012 31/12/2500 LIBEN Halogenated derivatives of cyclanic, cyclenic or cycloterpenic hydrocarbons (excl. 1,2,3,4,5,6-Hexachlorocyclohexane "HCH (ISO)", lindane [ISO, INN], aldrin (ISO), chlordane (ISO), heptachlor (ISO) and mirex (ISO)) 01/01/2012 31/12/2500 -29038910 01/01/2012 31/12/2500 LIBEN 1,2-Dibromo-4-(1,2-dibromoethyl)cyclohexane; tetrabromocyclooctanes 01/01/2012 31/12/2500 -29038980 01/01/2017 31/12/2500 LIBEN Halogenated derivatives of cyclanic, cyclenic or cycloterpenic hydrocarbons (excl. 1,2,3,4,5,6-Hexachlorocyclohexane "HCH (ISO)", lindane [ISO, INN], aldrin (ISO), chlordane (ISO), heptachlor (ISO), mirex (ISO), 1,2-Dibromo-4-[1,2-dibromoethyl]cyclohexane and tetrabromocyclooctanes) 01/01/2017 31/12/2500 -29038990 01/01/2012 31/12/2016 LIBEN Halogenated derivatives of cyclanic, cyclenic or cycloterpenic hydrocarbons (excl. 1,2,3,4,5,6-Hexachlorocyclohexane "HCH (ISO)", lindane [ISO, INN], aldrin (ISO), chlordane (ISO), heptachlor (ISO), 1,2-Dibromo-4-[1,2-dibromoethyl]cyclohexane and tetrabromocyclooctanes) 01/01/2012 31/12/2016 -290391 01/01/2012 31/12/2500 LIBEN Chlorobenzene, o-dichlorobenzene and p-dichlorobenzene 01/01/2012 31/12/2500 -29039100 01/01/2012 31/12/2500 LIBEN Chlorobenzene, o-dichlorobenzene and p-dichlorobenzene 01/01/2012 31/12/2500 -290392 01/01/2012 31/12/2500 LIBEN Hexachlorobenzene (ISO) and DDT (ISO) (clofenotane (INN), 1,1,1-trichloro-2,2-bis(p-chlorophenyl)ethane) 01/01/2012 31/12/2500 -29039200 01/01/2012 31/12/2500 LIBEN Hexachlorobenzene (ISO) and DDT (ISO) (clofenotane (INN), 1,1,1-trichloro-2,2-bis(p-chlorophenyl)ethane) 01/01/2012 31/12/2500 -290393 01/01/2017 31/12/2500 LIBEN Pentachlorobenzene (ISO) 01/01/2017 31/12/2500 -29039300 01/01/2017 31/12/2500 LIBEN Pentachlorobenzene (ISO) 01/01/2017 31/12/2500 -290394 01/01/2017 31/12/2500 LIBEN Hexabromobiphenyls 01/01/2017 31/12/2500 -29039400 01/01/2017 31/12/2500 LIBEN Hexabromobiphenyls 01/01/2017 31/12/2500 -290399 01/01/2012 31/12/2500 LIBEN Halogenated derivatives of aromatic hydrocarbons (excl. chlorobenzene, o-dichlorobenzene, p-dichlorobenzene, hexachlorobenzene (ISO), DDT (ISO) "clofenotane [INN], 1,1,1-trichloro-2,2-bis[p-chlorophenyl]ethane", pentachlorobenzene (ISO) and hexabromobiphenyls) 01/01/2012 31/12/2500 -29039910 01/01/2012 31/12/2500 LIBEN 2,3,4,5,6-Pentabromoethylbenzene 01/01/2012 31/12/2500 -29039980 01/01/2017 31/12/2500 LIBEN Halogenated derivatives of aromatic hydrocarbons (excl. chlorobenzene, o-dichlorobenzene, p-dichlorobenzene, hexachlorobenzene (ISO), DDT (ISO) "clofenotane [INN], 1,1,1-trichloro-2,2-bis[p-chlorophenyl]ethane", pentachlorobenzene (ISO), hexabromobiphenyls and 2,3,4,5,6-Pentabromoethylbenzene) 01/01/2017 31/12/2500 -29039990 01/01/2012 31/12/2016 LIBEN Halogenated derivatives of aromatic hydrocarbons (excl. chlorobenzene, o-dichlorobenzene, p-dichlorobenzene, hexachlorobenzene (ISO), DDT (ISO) "clofenotane [INN], 1,1,1-trichloro-2,2-bis[p-chlorophenyl]ethane" and 2,3,4,5,6-Pentabromoethylbenzene) 01/01/2012 31/12/2016 -2903S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2903 and SITC section 5 01/01/1997 31/12/2500 -2903S511 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2903 and SITC group 511 01/01/1997 31/12/2500 -2904 01/01/1988 31/12/2500 LIBEN Sulphonated, nitrated or nitrosated derivatives of hydrocarbons, whether or not halogenated 01/01/1988 31/12/2500 -290410 01/01/1988 31/12/2500 LIBEN Derivatives of hydrocarbons containing only sulpho groups, their salts and ethyl esters 01/01/1988 31/12/2500 -29041000 01/01/1988 31/12/2500 LIBEN Derivatives of hydrocarbons containing only sulpho groups, their salts and ethyl esters 01/01/1988 31/12/2500 -290420 01/01/1988 31/12/2500 LIBEN Derivatives of hydrocarbons containing only nitro or nitroso groups 01/01/1988 31/12/2500 -29042000 01/01/1999 31/12/2500 LIBEN Derivatives of hydrocarbons containing only nitro or nitroso groups 01/01/1999 31/12/2500 -29042010 01/01/1988 31/12/1998 LIBEN Trinitrotoluenes and dinitronaphthalenes 01/01/1988 31/12/1998 -29042090 01/01/1988 31/12/1998 LIBEN Derivatives of hydrocarbons containing only nitro or nitroso groups (excl. trinitrotoluenes and dinitronaphthalenes) 01/01/1988 31/12/1998 -290431 01/01/2017 31/12/2500 LIBEN Perfluorooctane sulphonic acid 01/01/2017 31/12/2500 -29043100 01/01/2017 31/12/2500 LIBEN Perfluorooctane sulphonic acid 01/01/2017 31/12/2500 -290432 01/01/2017 31/12/2500 LIBEN Ammonium perfluorooctane sulphonate 01/01/2017 31/12/2500 -29043200 01/01/2017 31/12/2500 LIBEN Ammonium perfluorooctane sulphonate 01/01/2017 31/12/2500 -290433 01/01/2017 31/12/2500 LIBEN Lithium perfluorooctane sulphonate 01/01/2017 31/12/2500 -29043300 01/01/2017 31/12/2500 LIBEN Lithium perfluorooctane sulphonate 01/01/2017 31/12/2500 -290434 01/01/2017 31/12/2500 LIBEN Potassium perfluorooctane sulphonate 01/01/2017 31/12/2500 -29043400 01/01/2017 31/12/2500 LIBEN Potassium perfluorooctane sulphonate 01/01/2017 31/12/2500 -290435 01/01/2017 31/12/2500 LIBEN Salts of perfluorooctane sulphonic acid (excl. ammonium, lithium and potassium perfluorooctane sulphonates) 01/01/2017 31/12/2500 -29043500 01/01/2017 31/12/2500 LIBEN Salts of perfluorooctane sulphonic acid (excl. ammonium, lithium and potassium perfluorooctane sulphonates) 01/01/2017 31/12/2500 -290436 01/01/2017 31/12/2500 LIBEN Perfluorooctane sulphonyl fluoride 01/01/2017 31/12/2500 -29043600 01/01/2017 31/12/2500 LIBEN Perfluorooctane sulphonyl fluoride 01/01/2017 31/12/2500 -290490 01/01/1988 31/12/2016 LIBEN Sulphonated, nitrated or nitrosated derivatives of hydrocarbons, whether or not halogenated (excl. those containing only sulpho, nitro or nitroso groups) 01/01/1988 31/12/2016 -29049010 01/01/1988 31/12/1995 LIBEN Sulphohalogenated derivatives of hydrocarbons 01/01/1988 31/12/1995 -29049020 01/01/1996 31/12/2008 LIBEN Sulphohalogenated derivatives of hydrocarbons (excl. esters of glycerol formed with acid-function compounds) 01/01/1996 31/12/2008 -29049040 01/01/1998 31/12/2016 LIBEN Trichloronitromethane "chloropicrin" 01/01/1998 31/12/2016 -29049080 01/01/1996 31/12/1997 LIBEN Sulphonated, nitrated or nitrosated derivatives of hydrocarbons, whether or not halogenated (excl. those containing only sulpho, nitro or nitroso groups and sulphohalogenated derivatives and esters of glycerol formed with acid-function compounds) 01/01/1996 31/12/1997 -29049085 01/01/1998 31/12/2008 LIBEN Sulphonated, nitrated or nitrosated derivatives of hydrocarbons, whether or not halogenated (excl. those containing only sulpho, nitro or nitroso groups, and sulphohalogenated derivatives, trichloronitromethane "chloropicrin" and esters of glycerol formed with acid-function compounds) 01/01/1998 31/12/2008 -29049090 01/01/1988 31/12/1995 LIBEN Sulphonated, nitrated or nitrosated derivatives of hydrocarbons, whether or not halogenated (excl. those containing only sulpho, nitro or nitroso groups and sulphohalogenated derivatives) 01/01/1988 31/12/1995 -29049095 01/01/2009 31/12/2016 LIBEN Sulphonated, nitrated or nitrosated derivatives of hydrocarbons, whether or not halogenated (excl. those containing only sulpho, nitro or nitroso groups, trichloronitromethane "chloropicrin" and esters of glycerol formed with acid-function compounds) 01/01/2009 31/12/2016 -290491 01/01/2017 31/12/2500 LIBEN Trichloronitromethane "chloropicrin" 01/01/2017 31/12/2500 -29049100 01/01/2017 31/12/2500 LIBEN Trichloronitromethane "chloropicrin" 01/01/2017 31/12/2500 -290499 01/01/2017 31/12/2500 LIBEN Sulphonated, nitrated or nitrosated derivatives of hydrocarbons, whether or not halogenated (excl. those containing only sulpho, nitro or nitroso groups, trichloronitromethane "chloropicrin", perfluorooctane sulphonic acid and its salts, perfluorooctane sulphonyl fluoride and esters of glycerol formed with acid-function compounds) 01/01/2017 31/12/2500 -29049900 01/01/2017 31/12/2500 LIBEN Sulphonated, nitrated or nitrosated derivatives of hydrocarbons, whether or not halogenated (excl. those containing only sulpho, nitro or nitroso groups, trichloronitromethane "chloropicrin", perfluorooctane sulphonic acid and its salts, perfluorooctane sulphonyl fluoride and esters of glycerol formed with acid-function compounds) 01/01/2017 31/12/2500 -2904S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2904 and SITC section 5 01/01/1997 31/12/2500 -2904S511 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2904 and SITC group 511 01/01/1997 31/12/2500 -2905 01/01/1988 31/12/2500 LIBEN Acyclic alcohols and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -290511 01/01/1988 31/12/2500 LIBEN Methanol "methyl alcohol" 01/01/1988 31/12/2500 -29051100 01/01/1988 31/12/2500 LIBEN Methanol "methyl alcohol" 01/01/1988 31/12/2500 -290512 01/01/1988 31/12/2500 LIBEN Propan-1-ol "propyl alcohol" and propan-2-ol "isopropyl alcohol" 01/01/1988 31/12/2500 -29051200 01/01/1988 31/12/2500 LIBEN Propan-1-ol "propyl alcohol" and propan-2-ol "isopropyl alcohol" 01/01/1988 31/12/2500 -290513 01/01/1988 31/12/2500 LIBEN Butan-1-ol "n-butyl alcohol" 01/01/1988 31/12/2500 -29051300 01/01/1988 31/12/2500 LIBEN Butan-1-ol "n-butyl alcohol" 01/01/1988 31/12/2500 -290514 01/01/1988 31/12/2500 LIBEN Butanols (excl. butan-1-ol "n-butyl alcohol") 01/01/1988 31/12/2500 -29051410 01/01/1988 31/12/2500 LIBEN 2-Methylpropan-2-ol "tert-butyl alcohol" 01/01/1988 31/12/2500 -29051490 01/01/1988 31/12/2500 LIBEN Butanols (excl. butan-1-ol "n-butyl alcohol" and 2-Methylpropan-2-ol "tert-butyl alcohol") 01/01/1988 31/12/2500 -290515 01/01/1988 31/12/2006 LIBEN Pentanol "amyl alcohol" and isomers thereof 01/01/1988 31/12/2006 -29051500 01/01/1988 31/12/2006 LIBEN Pentanol "amyl alcohol" and isomers thereof 01/01/1988 31/12/2006 -290516 01/01/1988 31/12/2500 LIBEN Octanol "octyl alcohol" and isomers thereof 01/01/1988 31/12/2500 -29051610 01/01/1988 31/12/2008 LIBEN 2-Ethylhexan-1-ol 01/01/1988 31/12/2008 -29051620 01/01/1997 31/12/2500 LIBEN Octan-2-ol 01/01/1997 31/12/2500 -29051680 01/01/1997 31/12/2008 LIBEN Octanol "octyl alcohol" and isomers thereof (excl. 2-ethylhexan-1-ol and octan-2-ol) 01/01/1997 31/12/2008 -29051685 01/01/2009 31/12/2500 LIBEN Octanol "octyl alcohol" and isomers thereof (excl. octan-2-ol) 01/01/2009 31/12/2500 -29051690 01/01/1988 31/12/1996 LIBEN Octanol "octyl alcohol" and isomers thereof (excl. 2-ethylhexan-1-ol) 01/01/1988 31/12/1996 -290517 01/01/1988 31/12/2500 LIBEN Dodecan-1-ol "lauryl alcohol", hexadecan-1-ol "cetyl alcohol" and octadecan-1-ol "stearyl alcohol" 01/01/1988 31/12/2500 -29051700 01/01/1988 31/12/2500 LIBEN Dodecan-1-ol "lauryl alcohol", hexadecan-1-ol "cetyl alcohol" and octadecan-1-ol "stearyl alcohol" 01/01/1988 31/12/2500 -290519 01/01/1988 31/12/2500 LIBEN Saturated monohydric acyclic alcohols (excl. methanol "methyl alcohol", propan-1-ol "propyl alcohol", propan-2-ol "isopropyl alcohol", butanols, octanol "octyl alcohol" and isomers thereof, dodecan-1-ol "lauryl alcohol", hexadecan-1-ol "cetyl alcohol" and octadecan-1-ol "stearyl alcohol") 01/01/1988 31/12/2500 -29051900 01/01/1999 31/12/2006 LIBEN Saturated monohydric acyclic alcohols (excl. methanol "methyl alcohol", propan-1-ol "propyl alcohol", propan-2-ol "isopropyl alcohol", butanols, pentanol "amyl alcohol" and isomers thereof, octanol "octyl alcohol" and isomers thereof, dodecan-1-ol "lauryl alcohol", hexadecan-1-ol "cetyl alcohol" and octadecan-1-ol "stearyl alcohol") 01/01/1999 31/12/2006 -29051900 01/01/2007 31/12/2500 LIBEN Saturated monohydric acyclic alcohols (excl. methanol "methyl alcohol", propan-1-ol "propyl alcohol", propan-2-ol "isopropyl alcohol", butanols, octanol "octyl alcohol" and isomers thereof, dodecan-1-ol "lauryl alcohol", hexadecan-1-ol "cetyl alcohol" and octadecan-1-ol "stearyl alcohol") 01/01/2007 31/12/2500 -29051910 01/01/1988 31/12/1998 LIBEN Metal alcoholated 01/01/1988 31/12/1998 -29051990 01/01/1988 31/12/1998 LIBEN Saturated monohydric acyclic alcohols (excl. methanol "methyl alcohol", propan-1-ol "propyl alcohol", propan-2-ol "isopropyl alcohol", butanols, pentanol "amyl alcohol" and isomers thereof, octanol "octyl alcohol" and isomers thereof, dodecan-1-ol "lauryl alcohol", hexadecan-1-ol "cetyl alcohol", octadecan-1-ol "stearyl alcohol" and metal alcoholated) 01/01/1988 31/12/1998 -290521 01/01/1988 31/12/1995 LIBEN Allyl alcohol 01/01/1988 31/12/1995 -29052100 01/01/1988 31/12/1995 LIBEN Allyl alcohol 01/01/1988 31/12/1995 -290522 01/01/1988 31/12/2500 LIBEN Acyclic terpene alcohols 01/01/1988 31/12/2500 -29052200 01/01/2009 31/12/2500 LIBEN Acyclic terpene alcohols 01/01/2009 31/12/2500 -29052210 01/01/1988 31/12/2008 LIBEN Geraniol, citronellol, linalol, rhodinol and nerol 01/01/1988 31/12/2008 -29052290 01/01/1988 31/12/2008 LIBEN Acyclic terpene alcohols (excl. geraniol, citronellol, linalol, rhodinol and nerol) 01/01/1988 31/12/2008 -290529 01/01/1988 31/12/2500 LIBEN Unsaturated monohydric acyclic alcohols (excl. acyclic terpene alcohols) 01/01/1988 31/12/2500 -29052900 01/01/1988 31/12/1995 LIBEN Unsaturated monohydric acyclic alcohols (excl. allyl alcohol and acyclic terpene alcohols) 01/01/1988 31/12/1995 -29052910 01/01/1996 31/12/2500 LIBEN Allyl alcohol 01/01/1996 31/12/2500 -29052990 01/01/1996 31/12/2500 LIBEN Unsaturated monohydric acyclic alcohols (excl. allyl alcohol and acyclic terpene alcohols) 01/01/1996 31/12/2500 -290531 01/01/1988 31/12/2500 LIBEN Ethylene glycol "ethanediol" 01/01/1988 31/12/2500 -29053100 01/01/1988 31/12/2500 LIBEN Ethylene glycol "ethanediol" 01/01/1988 31/12/2500 -290532 01/01/1988 31/12/2500 LIBEN Propylene glycol "propane-1,2-diol" 01/01/1988 31/12/2500 -29053200 01/01/1988 31/12/2500 LIBEN Propylene glycol "propane-1,2-diol" 01/01/1988 31/12/2500 -290539 01/01/1988 31/12/2500 LIBEN Diols (excl. ethylene glycol "ethanediol" and propylene glycol "propane-1,2-diol") 01/01/1988 31/12/2500 -29053910 01/01/1988 31/12/2008 LIBEN 2-Methylpentane-2,4-diol "hexylene glycol" 01/01/1988 31/12/2008 -29053920 01/01/1997 31/12/2500 LIBEN Butane-1,3-diol 01/01/1997 31/12/2500 -29053925 01/01/2006 31/12/2015 LIBEN Butane-1,4-diol 01/01/2006 31/12/2015 -29053926 01/01/2016 31/12/2500 LIBEN Butane-1,4-diol or tetramethylene glycol [1,4-butanediol] having a bio-based carbon content of 100% by mass 01/01/2016 31/12/2500 -29053928 01/01/2016 31/12/2500 LIBEN Butane-1,4-diol (excl. having a bio-based carbon content of 100%) 01/01/2016 31/12/2500 -29053930 01/01/1997 31/12/2500 LIBEN 2,4,7,9-Tetramethyldec-5-yne-4,7-diol 01/01/1997 31/12/2500 -29053980 01/01/1997 31/12/2005 LIBEN Acyclic diols (excl. ethylene glycol "ethanediol", propylene glycol "propane-1,2-diol", 2-methylpentane-2,4-diol "hexylene glycol", butane-1,3-diol and 2,4,7,9-tetramethyldec-5-yne-4,7-diol) 01/01/1997 31/12/2005 -29053985 01/01/2006 31/12/2008 LIBEN Acyclic diols (excl. ethylene glycol "ethanediol", propylene glycol "propane-1,2-diol", 2-methylpentane-2,4-diol "hexylene glycol", butane-1,3-diol, butane-1,4-diol and 2,4,7,9-tetramethyldec-5-yne-4,7-diol) 01/01/2006 31/12/2008 -29053990 01/01/1988 31/12/1996 LIBEN Diols (excl. ethylene glycol "ethanediol", propylene glycol "propane-1,2-diol" and 2-Methylpentane-2,4-diol "hexylene glycol") 01/01/1988 31/12/1996 -29053995 01/01/2009 31/12/2500 LIBEN Acyclic diols (excl. ethylene glycol "ethanediol", propylene glycol "propane-1,2-diol", butane-1,3-diol, butane-1,4-diol and 2,4,7,9-tetramethyldec-5-yne-4,7-diol) 01/01/2009 31/12/2500 -290541 01/01/1988 31/12/2500 LIBEN 2-Ethyl-2-"hydroxymethyl" propane-1,3-diol "trimethylolpropane" 01/01/1988 31/12/2500 -29054100 01/01/1988 31/12/2500 LIBEN 2-Ethyl-2-"hydroxymethyl" propane-1,3-diol "trimethylolpropane" 01/01/1988 31/12/2500 -290542 01/01/1988 31/12/2500 LIBEN Pentaerythritol 01/01/1988 31/12/2500 -29054200 01/01/1988 31/12/2500 LIBEN Pentaerythritol 01/01/1988 31/12/2500 -290543 01/01/1988 31/12/2500 LIBEN Mannitol 01/01/1988 31/12/2500 -29054300 01/01/1988 31/12/2500 LIBEN Mannitol 01/01/1988 31/12/2500 -290544 01/01/1988 31/12/2500 LIBEN D-glucitol "sorbitol" 01/01/1988 31/12/2500 -29054411 01/01/1988 31/12/2500 LIBEN D-glucitol "sorbitol", in aqueous solution containing <= 2% by weight of d-mannitol, calculated on the d-glucitol content 01/01/1988 31/12/2500 -29054419 01/01/1988 31/12/2500 LIBEN D-glucitol "sorbitol" in aqueous solution (excl. containing <= 2% by weight of d-mannitol, calculated on the d-glucitol content) 01/01/1988 31/12/2500 -29054491 01/01/1988 31/12/2500 LIBEN D-glucitol "sorbitol", containing <= 2% by weight of d-mannitol, calculated on the d-glucitol content (excl. in aqueous solution) 01/01/1988 31/12/2500 -29054499 01/01/1988 31/12/2500 LIBEN D-glucitol "sorbitol" (excl. in aqueous solution and containing <= 2% by weight of d-mannitol, calculated on the d-glucitol content) 01/01/1988 31/12/2500 -290545 01/01/1996 31/12/2500 LIBEN Glycerol 01/01/1996 31/12/2500 -29054500 01/01/1996 31/12/2500 LIBEN Glycerol 01/01/1996 31/12/2500 -290549 01/01/1988 31/12/2500 LIBEN Tri- and other polyhydric acyclic alcohols (excl. 2-ethyl-2-"hydroxymethyl" propane-1,3-diol "trimethylolpropane", pentaerythritol, mannitol, d-glucitol "sorbitol" and glycerol) 01/01/1988 31/12/2500 -29054900 01/01/2009 31/12/2500 LIBEN Tri- and other polyhydric acyclic alcohols (excl. 2-ethyl-2-"hydroxymethyl" propane-1,3-diol "trimethylolpropane", pentaerythritol, mannitol, d-glucitol "sorbitol" and glycerol) 01/01/2009 31/12/2500 -29054910 01/01/1988 31/12/2008 LIBEN Tri- and tetrahydric acyclic alcohols (excl. 2-ethyl-2-"hydroxymethyl" propane-1,3-diol "trimethylolpropane", pentaerythritol, mannitol, d-glucitol "sorbitol" and glycerol) 01/01/1988 31/12/2008 -29054951 01/01/1996 31/12/2003 LIBEN Esters of glycerol formed with sulphohalogenated derivatives 01/01/1996 31/12/2003 -29054959 01/01/1996 31/12/2003 LIBEN Esters of glycerol formed with acid-function compounds of heading 2904 "Sulphonated, nitrated or nitrosated derivatives of hydrocarbons" (excl. with sulphohalogenated derivatives) 01/01/1996 31/12/2003 -29054980 01/01/2004 31/12/2008 LIBEN Polyhydric acyclic alcohols (excl. diols, triols and tetraols and glycerol 01/01/2004 31/12/2008 -29054990 01/01/1988 31/12/2003 LIBEN Polyhydric acyclic alcohols (excl. diols, triols and tetraols, glycerol and esters of glycerol formed with acid-function compounds of heading 2904) 01/01/1988 31/12/2003 -290550 01/01/1988 31/12/2001 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of acyclic alcohols 01/01/1988 31/12/2001 -29055010 01/01/1988 31/12/1998 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of saturated monohydric alcohols 01/01/1988 31/12/1998 -29055020 01/01/1999 31/12/2001 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of monohydric alcohols 01/01/1999 31/12/2001 -29055030 01/01/1988 31/12/1998 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of unsaturated monohydric alcohols 01/01/1988 31/12/1998 -29055090 01/01/1988 31/12/1994 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of polyhydric alcohols 01/01/1988 31/12/1994 -29055091 01/01/1995 31/12/2001 LIBEN 2,2-Bis"bromomethyl"propanediol 01/01/1995 31/12/2001 -29055099 01/01/1995 31/12/2001 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives or acyclic polyvalent alcohols (excl. 2,2-bis"bromomethyl"propanediol) 01/01/1995 31/12/2001 -290551 01/01/2002 31/12/2500 LIBEN Ethchlorvynol (INN) 01/01/2002 31/12/2500 -29055100 01/01/2002 31/12/2500 LIBEN Ethchlorvynol (INN) 01/01/2002 31/12/2500 -290559 01/01/2002 31/12/2500 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives or acyclic alcohols (excl. ethchlorvynol (INN)) 01/01/2002 31/12/2500 -29055910 01/01/2002 31/12/2008 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of monohydric alcohols 01/01/2002 31/12/2008 -29055991 01/01/2002 31/12/2500 LIBEN 2,2-Bis"bromomethyl"propanediol 01/01/2002 31/12/2500 -29055998 01/01/2009 31/12/2500 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of acyclic alcohols (excl. 2,2-bis"bromomethyl"propanediol and ethchlorvynol (INN)) 01/01/2009 31/12/2500 -29055999 01/01/2002 31/12/2008 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives or acyclic polyhydric alcohols (excl. 2,2-bis"bromomethyl"propanediol and ethchlorvynol (INN)) 01/01/2002 31/12/2008 -2905S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2905 and SITC section 5 01/01/1997 31/12/2500 -2905S512 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2905 and SITC group 512 01/01/1997 31/12/2500 -2906 01/01/1988 31/12/2500 LIBEN Cyclic alcohols and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -290611 01/01/1988 31/12/2500 LIBEN Menthol 01/01/1988 31/12/2500 -29061100 01/01/1988 31/12/2500 LIBEN Menthol 01/01/1988 31/12/2500 -290612 01/01/1988 31/12/2500 LIBEN Cyclohexanol, methylcyclohexanols and dimethylcyclohexanols 01/01/1988 31/12/2500 -29061200 01/01/1988 31/12/2500 LIBEN Cyclohexanol, methylcyclohexanols and dimethylcyclohexanols 01/01/1988 31/12/2500 -290613 01/01/1988 31/12/2500 LIBEN Sterols and inositols 01/01/1988 31/12/2500 -29061300 01/01/1988 31/12/1994 LIBEN Sterols and inositols 01/01/1988 31/12/1994 -29061310 01/01/1995 31/12/2500 LIBEN Sterols 01/01/1995 31/12/2500 -29061390 01/01/1995 31/12/2500 LIBEN Inositols 01/01/1995 31/12/2500 -290614 01/01/1988 31/12/2006 LIBEN Terpineols 01/01/1988 31/12/2006 -29061400 01/01/1988 31/12/2006 LIBEN Terpineols 01/01/1988 31/12/2006 -290619 01/01/1988 31/12/2500 LIBEN Cyclanic, cyclenic or cycloterpenic alcohols and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. menthol, cyclohexanol, methylcyclohexanols, dimethylcyclohexanols, sterols and inositols) 01/01/1988 31/12/2500 -29061900 01/01/1988 31/12/2006 LIBEN Cyclanic, cyclenic or cycloterpenic alcohols and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. menthol, cyclohexanol, methylcyclohexanols, dimethylcyclohexanols, sterols, inositols and terpineols) 01/01/1988 31/12/2006 -29061900 01/01/2007 31/12/2500 LIBEN Cyclanic, cyclenic or cycloterpenic alcohols and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. menthol, cyclohexanol, methylcyclohexanols, dimethylcyclohexanols, sterols and inositols) 01/01/2007 31/12/2500 -290621 01/01/1988 31/12/2500 LIBEN Benzyl alcohol 01/01/1988 31/12/2500 -29062100 01/01/1988 31/12/2500 LIBEN Benzyl alcohol 01/01/1988 31/12/2500 -290629 01/01/1988 31/12/2500 LIBEN Aromatic cyclic alcohols and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. benzyl alcohol) 01/01/1988 31/12/2500 -29062900 01/01/1999 31/12/2500 LIBEN Aromatic cyclic alcohols and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. benzyl alcohol) 01/01/1999 31/12/2500 -29062910 01/01/1988 31/12/1998 LIBEN Cinnamyl alcohol 01/01/1988 31/12/1998 -29062990 01/01/1988 31/12/1998 LIBEN Aromatic cyclic alcohols and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. benzyl alcohol and cinnamyl alcohol) 01/01/1988 31/12/1998 -2906S5 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2906 and SITC section 5 01/01/1998 31/12/2500 -2906S512 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2906 and SITC group 512 01/01/1998 31/12/2500 -2907 01/01/1988 31/12/2500 LIBEN Phenols; phenol-alcohols 01/01/1988 31/12/2500 -290711 01/01/1988 31/12/2500 LIBEN Phenol "hydroxybenzene" and its salts 01/01/1988 31/12/2500 -29071100 01/01/1988 31/12/2500 LIBEN Phenol "hydroxybenzene" and its salts 01/01/1988 31/12/2500 -290712 01/01/1988 31/12/2500 LIBEN Cresols and their salts 01/01/1988 31/12/2500 -29071200 01/01/1988 31/12/2500 LIBEN Cresols and their salts 01/01/1988 31/12/2500 -290713 01/01/1988 31/12/2500 LIBEN Octylphenol, nonylphenol and their isomers; salts thereof 01/01/1988 31/12/2500 -29071300 01/01/1988 31/12/2500 LIBEN Octylphenol, nonylphenol and their isomers; salts thereof 01/01/1988 31/12/2500 -290714 01/01/1988 31/12/2006 LIBEN Xylenols and their salts 01/01/1988 31/12/2006 -29071400 01/01/1988 31/12/2006 LIBEN Xylenols and their salts 01/01/1988 31/12/2006 -290715 01/01/1988 31/12/2500 LIBEN Naphthols and their salts 01/01/1988 31/12/2500 -29071500 01/01/1988 31/12/1996 LIBEN Naphthols and their salts 01/01/1988 31/12/1996 -29071510 01/01/1997 31/12/2500 LIBEN 1-Naphthol 01/01/1997 31/12/2500 -29071590 01/01/1997 31/12/2500 LIBEN Naphthols and their salts (excl. 1-naphthol) 01/01/1997 31/12/2500 -290719 01/01/1988 31/12/2500 LIBEN Monophenols (excl. phenol "hydroxybenzene" and its salts, cresols and their salts, octylphenol, nonylphenol and their isomers and salts thereof and naphthols and their salts) 01/01/1988 31/12/2500 -29071900 01/01/1988 31/12/1989 LIBEN Monophenols (excl. 2907.11-00 to 2907.15-00) 01/01/1988 31/12/1989 -29071900 01/01/1998 31/12/2006 LIBEN Monophenols (excl. phenol "hydroxybenzene" and its salts, cresols and their salts, octylphenol, nonylphenol and their isomers and salts thereof, xylenols and their salts and naphthols and their salts) 01/01/1998 31/12/2006 -29071910 01/01/1990 31/12/1997 LIBEN p-tert-Butylphenol 01/01/1990 31/12/1997 -29071910 01/01/2007 31/12/2500 LIBEN Xylenols and their salts 01/01/2007 31/12/2500 -29071990 01/01/1990 31/12/1997 LIBEN Monophenols (excl. phenol "hydroxybenzene" and its salts, cresols and their salts, octylphenol, nonylphenol and their isomers and salts thereof, xylenols and their salts and naphthols and their salts and p-tert-butylphenol) 01/01/1990 31/12/1997 -29071990 01/01/2007 31/12/2500 LIBEN Monophenols (excl. phenol "hydroxybenzene" and its salts, cresols and their salts, octylphenol, nonylphenol and their isomers and salts thereof, xylenols and their salts and naphthols and their salts) 01/01/2007 31/12/2500 -290721 01/01/1988 31/12/2500 LIBEN Resorcinol and its salts 01/01/1988 31/12/2500 -29072100 01/01/1988 31/12/2500 LIBEN Resorcinol and its salts 01/01/1988 31/12/2500 -290722 01/01/1988 31/12/2500 LIBEN Hydroquinone "quinol" and its salts 01/01/1988 31/12/2500 -29072200 01/01/2004 31/12/2500 LIBEN Hydroquinone "quinol" and its salts 01/01/2004 31/12/2500 -29072210 01/01/1988 31/12/2003 LIBEN Hydroquinone "quinol" 01/01/1988 31/12/2003 -29072290 01/01/1988 31/12/2003 LIBEN Salts of hydroquinone "quinol" 01/01/1988 31/12/2003 -290723 01/01/1988 31/12/2500 LIBEN 4,4'-Isopropylidenediphenol "bisphenol A, diphenylolpropane" and its salts 01/01/1988 31/12/2500 -29072300 01/01/1999 31/12/2500 LIBEN 4,4'-Isopropylidenediphenol "bisphenol A, diphenylolpropane" and its salts 01/01/1999 31/12/2500 -29072310 01/01/1988 31/12/1998 LIBEN 4,4'-Isopropylidenediphenol "bisphenol A, diphenylolpropane" 01/01/1988 31/12/1998 -29072390 01/01/1988 31/12/1998 LIBEN Salts of 4,4'-Isopropylidenediphenol "bisphenol A, diphenylolpropane" 01/01/1988 31/12/1998 -290729 01/01/1988 31/12/2500 LIBEN Polyphenols and phenol-alcohols (excl. resorcinol and hydroquinone "quinol" and their salts, and 4,4'-isopropylidenediphenol "bisphenol A, diphenylolpropane" and its salts) 01/01/1988 31/12/2500 -29072900 01/01/1999 31/12/2001 LIBEN Polyphenols (excl. resorcinol and hydroquinone "quinol" and their salts, and 4,4'-Isopropylidenediphenol "bisphenol A, diphenylolpropane" and its salts) 01/01/1999 31/12/2001 -29072900 01/01/2002 31/12/2500 LIBEN Polyphenols and phenol-alcohols (excl. resorcinol and hydroquinone "quinol" and their salts, and 4,4'-isopropylidenediphenol "bisphenol A, diphenylolpropane" and its salts) 01/01/2002 31/12/2500 -29072910 01/01/1988 31/12/1998 LIBEN Dihydroxynaphthalenes and their salts 01/01/1988 31/12/1998 -29072990 01/01/1988 31/12/1998 LIBEN Polyphenols (excl. resorcinol and hydroquinone "quinol" and their salts, 4,4'-Isopropylidenediphenol "bisphenol A, diphenylolpropane" and its salts and dihydroxynaphthalenes and their salts) 01/01/1988 31/12/1998 -290730 01/01/1988 31/12/2001 LIBEN Phenol-alcohols 01/01/1988 31/12/2001 -29073000 01/01/1988 31/12/2001 LIBEN Phenol-alcohols 01/01/1988 31/12/2001 -2907S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2907 and SITC section 5 01/01/1997 31/12/2500 -2907S512 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2907 and SITC group 512 01/01/1997 31/12/2500 -2908 01/01/1988 31/12/2500 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of phenols or phenol-alcohols 01/01/1988 31/12/2500 -290810 01/01/1988 31/12/2006 LIBEN Derivatives containing only halogen substituents and their salts, of phenols or phenol-alcohols 01/01/1988 31/12/2006 -29081000 01/01/1999 31/12/2006 LIBEN Derivatives containing only halogen substituents and their salts, of phenols or phenol-alcohols 01/01/1999 31/12/2006 -29081010 01/01/1988 31/12/1998 LIBEN Brominated derivatives of phenols or phenol-alcohols 01/01/1988 31/12/1998 -29081090 01/01/1988 31/12/1998 LIBEN Derivatives containing only halogen substituents and their salts, of phenols or phenol-alcohols (excl. brominated derivatives) 01/01/1988 31/12/1998 -290811 01/01/2007 31/12/2500 LIBEN Pentachlorophenol (ISO) 01/01/2007 31/12/2500 -29081100 01/01/2007 31/12/2500 LIBEN Pentachlorophenol (ISO) 01/01/2007 31/12/2500 -290819 01/01/2007 31/12/2500 LIBEN Derivatives containing only halogen substituents and their salts, of phenols or phenol-alcohols (excl. pentachlorophenol (ISO)) 01/01/2007 31/12/2500 -29081900 01/01/2007 31/12/2500 LIBEN Derivatives containing only halogen substituents and their salts, of phenols or phenol-alcohols (excl. pentachlorophenol (ISO)) 01/01/2007 31/12/2500 -290820 01/01/1988 31/12/2006 LIBEN Sulphonated derivatives, their salts and esters, of phenols or phenol-alcohols 01/01/1988 31/12/2006 -29082000 01/01/1988 31/12/2006 LIBEN Sulphonated derivatives, their salts and esters, of phenols or phenol-alcohols 01/01/1988 31/12/2006 -290890 01/01/1988 31/12/2006 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of phenols or phenol-alcohols (excl. derivatives containing only halogen substitutes and their salts or only sulpho groups, their salts and esters) 01/01/1988 31/12/2006 -29089000 01/01/1993 31/12/2006 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of phenols or phenol-alcohols (excl. derivatives containing only halogen substitutes and their salts or only sulpho groups, their salts and esters) 01/01/1993 31/12/2006 -29089010 01/01/1988 31/12/1992 LIBEN Dinoseb 01/01/1988 31/12/1992 -29089090 01/01/1988 31/12/1992 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of phenols or phenol-alcohols (excl. containing only halogen substituents and their salts, sulphonated derivatives and their salts, esters and dinoseb) 01/01/1988 31/12/1992 -290891 01/01/2007 31/12/2500 LIBEN Dinoseb (ISO) and its salts 01/01/2007 31/12/2500 -29089100 01/01/2007 31/12/2500 LIBEN Dinoseb (ISO) and its salts 01/01/2007 31/12/2500 -290892 01/01/2012 31/12/2500 LIBEN 4,6-Dinitro-o-cresol (DNOC (ISO)) and its salts 01/01/2012 31/12/2500 -29089200 01/01/2012 31/12/2500 LIBEN 4,6-Dinitro-o-cresol (DNOC (ISO)) and its salts 01/01/2012 31/12/2500 -290899 01/01/2007 31/12/2500 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of phenols or phenol-alcohols (excl. derivatives containing only halogen substitutes and their salts, dinoseb (ISO) and its salts, and 4,6-Dinitro-o-cresol [DNOC (ISO)] and its salts) 01/01/2007 31/12/2500 -29089900 01/01/2012 31/12/2500 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of phenols or phenol-alcohols (excl. derivatives containing only halogen substitutes and their salts, dinoseb (ISO) and its salts, and 4,6-Dinitro-o-cresol [DNOC (ISO)] and its salts) 01/01/2012 31/12/2500 -29089910 01/01/2007 31/12/2011 LIBEN Sulphonated derivatives, their salts and esters, of phenols or phenol-alcohols 01/01/2007 31/12/2011 -29089990 01/01/2007 31/12/2011 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of phenols or phenol-alcohols (excl. derivatives containing only halogen substitutes and their salts or only sulpho groups, their salts and esters, and dinoseb (ISO) and its salts) 01/01/2007 31/12/2011 -2909 01/01/1988 31/12/2500 LIBEN Ethers, ether-alcohols, ether-phenols, ether-alcohol-phenols, alcohol peroxides, ether peroxide, ketone peroxides, whether or not chemically defined, and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -290911 01/01/1988 31/12/2500 LIBEN Diethyl ether 01/01/1988 31/12/2500 -29091100 01/01/1988 31/12/2500 LIBEN Diethyl ether 01/01/1988 31/12/2500 -290919 01/01/1988 31/12/2500 LIBEN Acyclic ethers and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. diethyl ether) 01/01/1988 31/12/2500 -29091900 01/01/1988 31/12/2007 LIBEN Acyclic ethers and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. diethyl ether) 01/01/1988 31/12/2007 -29091910 01/01/2008 31/12/2500 LIBEN Tert-butyl ethyl ether (ethyl-tertio-butyl-ether, ETBE) 01/01/2008 31/12/2500 -29091990 01/01/2008 31/12/2500 LIBEN Acyclic ethers and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. diethyl ether and tert-butyl ethyl ether [ethyl-tertio-butyl-ether, ETBE]) 01/01/2008 31/12/2500 -290920 01/01/1988 31/12/2500 LIBEN Cyclanic, cyclenic or cycloterpenic ethers and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -29092000 01/01/1988 31/12/2500 LIBEN Cyclanic, cyclenic or cycloterpenic ethers and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -290930 01/01/1988 31/12/2500 LIBEN Aromatic ethers and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -29093010 01/01/1988 31/12/2500 LIBEN Diphenyl ether 01/01/1988 31/12/2500 -29093030 01/01/1988 31/12/1994 LIBEN Brominated derivatives of aromatic ethers 01/01/1988 31/12/1994 -29093031 01/01/1995 31/12/2500 LIBEN Pentabromodiphenyl ether; 1,2,4,5-tetrabromo-3,6-bis"pentabromophenoxy"benzene 01/01/1995 31/12/2500 -29093035 01/01/1997 31/12/2500 LIBEN 1,2-Bis"2,4,6-tribromophenoxy"ethane for the manufacture of acrylonitrile-butadiene-styrene [ABS] 01/01/1997 31/12/2500 -29093038 01/01/1997 31/12/2500 LIBEN Brominated derivatives of aromatic ethers (excl. pentabromodiphenyl ether, 1,2,4,5-tetrabromo-3,6-bis"pentabromophenoxy"benzene and 1,2-bis"2,4,6-tribromophenoxy"ethane for the manufacture of acrylonitrile-butadiene-styrene [ABS]) 01/01/1997 31/12/2500 -29093039 01/01/1995 31/12/1996 LIBEN Brominated derivatives of aromatic ethers (excl. pentabromodiphenyl ether and 1,2,3,4,5-tetrabromo-3,6-bis"pentabromophenoxy"benzene) 01/01/1995 31/12/1996 -29093090 01/01/1988 31/12/2500 LIBEN Aromatic ethers and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. diphenyl ether and brominated derivatives) 01/01/1988 31/12/2500 -290941 01/01/1988 31/12/2500 LIBEN 2,2'-Oxydiethanol "diethylene glycol, digol" 01/01/1988 31/12/2500 -29094100 01/01/1988 31/12/2500 LIBEN 2,2'-Oxydiethanol "diethylene glycol, digol" 01/01/1988 31/12/2500 -290942 01/01/1988 31/12/2006 LIBEN Monomethyl ethers of ethylene glycol or of diethylene glycol 01/01/1988 31/12/2006 -29094200 01/01/1988 31/12/2006 LIBEN Monomethyl ethers of ethylene glycol or of diethylene glycol 01/01/1988 31/12/2006 -290943 01/01/1988 31/12/2500 LIBEN Monobutyl ethers of ethylene glycol or of diethylene glycol 01/01/1988 31/12/2500 -29094300 01/01/1988 31/12/2500 LIBEN Monobutyl ethers of ethylene glycol or of diethylene glycol 01/01/1988 31/12/2500 -290944 01/01/1988 31/12/2500 LIBEN Monoalkylethers of ethylene glycol or of diethylene glycol (excl. monobutyl ethers) 01/01/1988 31/12/2500 -29094400 01/01/1988 31/12/2006 LIBEN Monoalkylethers of ethylene glycol or of diethylene glycol (excl. monomethyl ethers and monobutyl ethers) 01/01/1988 31/12/2006 -29094400 01/01/2007 31/12/2500 LIBEN Monoalkylethers of ethylene glycol or of diethylene glycol (excl. monobutyl ethers) 01/01/2007 31/12/2500 -290949 01/01/1988 31/12/2500 LIBEN Ether-alcohols and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. 2,2'-Oxydiethanol "diethylene glycol, digol" and monoalkylethers of ethylene glycol or of diethylene glycol) 01/01/1988 31/12/2500 -29094910 01/01/1988 31/12/1996 LIBEN Acyclic ether-alcohols and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. 2,2'-Oxydiethanol "diethylene glycol, digol" and monoalkylethers of ethylene glycol or of diethylene glycol) 01/01/1988 31/12/1996 -29094911 01/01/1997 31/12/2500 LIBEN 2-"2-Chloroethoxy"ethanol 01/01/1997 31/12/2500 -29094918 01/01/2007 31/12/2008 LIBEN Acyclic ether-alcohols and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. 2,2'-Oxydiethanol "diethylene glycol, digol", monoalkylethers of ethylene glycol or of diethylene glycol and 2-"2-chloroethoxy"ethanol) 01/01/2007 31/12/2008 -29094919 01/01/1997 31/12/2006 LIBEN Acyclic ether-alcohols and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. 2,2'-Oxydiethanol "diethylene glycol, digol", monoalkylethers of ethylene glycol or of diethylene glycol and 2-"2-chloroethoxy"ethanol) 01/01/1997 31/12/2006 -29094980 01/01/2009 31/12/2500 LIBEN Cyclic ether-alcohols and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. 2-(2-Chloroethoxy)ethanol) 01/01/2009 31/12/2500 -29094990 01/01/1988 31/12/2008 LIBEN Cyclic ether-alcohols and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2008 -290950 01/01/1988 31/12/2500 LIBEN Ether-phenols, ether-alcohol-phenols and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -29095000 01/01/2009 31/12/2500 LIBEN Ether-phenols, ether-alcohol-phenols and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/2009 31/12/2500 -29095010 01/01/1988 31/12/2008 LIBEN Guaiacol and guaiacolsulphonates of potassium 01/01/1988 31/12/2008 -29095090 01/01/1988 31/12/2008 LIBEN Ether-phenols, ether-alcohol-phenols and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. guaiacol and guaiacolsulphonates of potassium) 01/01/1988 31/12/2008 -290960 01/01/1988 31/12/2500 LIBEN Alcohol peroxides, ether peroxides, ketone peroxides and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -29096000 01/01/1993 31/12/2500 LIBEN Alcohol peroxides, ether peroxides, ketone peroxides and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1993 31/12/2500 -29096010 01/01/1988 31/12/1992 LIBEN Dicumyl peroxide 01/01/1988 31/12/1992 -29096090 01/01/1988 31/12/1992 LIBEN Alcohol peroxides, ether peroxides, ketone peroxides and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. dicumyl peroxide) 01/01/1988 31/12/1992 -2910 01/01/1988 31/12/2500 LIBEN Epoxides, epoxyalcohols, epoxyphenols and epoxyethers, with a three-membered ring, and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -291010 01/01/1988 31/12/2500 LIBEN Oxirane "ethylene oxide" 01/01/1988 31/12/2500 -29101000 01/01/1988 31/12/2500 LIBEN Oxirane "ethylene oxide" 01/01/1988 31/12/2500 -291020 01/01/1988 31/12/2500 LIBEN Methyloxirane "propylene oxide" 01/01/1988 31/12/2500 -29102000 01/01/1988 31/12/2500 LIBEN Methyloxirane "propylene oxide" 01/01/1988 31/12/2500 -291030 01/01/1988 31/12/2500 LIBEN 1-Chloro-2,3-epoxypropane "epichlorohydrin" 01/01/1988 31/12/2500 -29103000 01/01/1988 31/12/2500 LIBEN 1-Chloro-2,3-epoxypropane "epichlorohydrin" 01/01/1988 31/12/2500 -291040 01/01/2007 31/12/2500 LIBEN Dieldrin (ISO) (INN) 01/01/2007 31/12/2500 -29104000 01/01/2007 31/12/2500 LIBEN Dieldrin (ISO) (INN) 01/01/2007 31/12/2500 -291050 01/01/2017 31/12/2500 LIBEN Endrin (ISO) 01/01/2017 31/12/2500 -29105000 01/01/2017 31/12/2500 LIBEN Endrin (ISO) 01/01/2017 31/12/2500 -291090 01/01/1988 31/12/2500 LIBEN Epoxides, epoxyalcohols, epoxyphenols and epoxyethers, with a three-membered ring, and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. oxirane "ethylene oxide", methyloxirane "propylene oxide", 1-Chloro-2,3-epoxypropane "epichlorohydrin", dieldrin (ISO) [INN] and endrin (ISO)) 01/01/1988 31/12/2500 -29109000 01/01/1988 31/12/2006 LIBEN Epoxides, epoxyalcohols, epoxyphenols and epoxyethers, with a three-membered ring, and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. oxirane "ethylene oxide", methyloxirane "propylene oxide" and 1-Chloro-2,3-epoxypropane "epichlorohydrin") 01/01/1988 31/12/2006 -29109000 01/01/2007 31/12/2016 LIBEN Epoxides, epoxyalcohols, epoxyphenols and epoxyethers, with a three-membered ring, and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. oxirane "ethylene oxide", methyloxirane "propylene oxide", 1-Chloro-2,3-epoxypropane "epichlorohydrin" and dieldrin (ISO) [INN]) 01/01/2007 31/12/2016 -29109000 01/01/2017 31/12/2500 LIBEN Epoxides, epoxyalcohols, epoxyphenols and epoxyethers, with a three-membered ring, and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. oxirane "ethylene oxide", methyloxirane "propylene oxide", 1-Chloro-2,3-epoxypropane "epichlorohydrin", dieldrin (ISO) [INN] and endrin (ISO)) 01/01/2017 31/12/2500 -2911 01/01/1988 31/12/2500 LIBEN Acetals and hemiacetals, whether or not with other oxygen function, and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -291100 01/01/1988 31/12/2500 LIBEN Acetals and hemiacetals, whether or not with other oxygen function, and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -29110000 01/01/1988 31/12/2500 LIBEN Acetals and hemiacetals, whether or not with other oxygen function, and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -2912 01/01/1988 31/12/2500 LIBEN Aldehydes, whether or not with other oxygen function; cyclic polymers of aldehydes; paraformaldehyde 01/01/1988 31/12/2500 -291211 01/01/1988 31/12/2500 LIBEN Methanal "formaldehyde" 01/01/1988 31/12/2500 -29121100 01/01/1988 31/12/2500 LIBEN Methanal "formaldehyde" 01/01/1988 31/12/2500 -291212 01/01/1988 31/12/2500 LIBEN Ethanal "acetaldehyde" 01/01/1988 31/12/2500 -29121200 01/01/1988 31/12/2500 LIBEN Ethanal "acetaldehyde" 01/01/1988 31/12/2500 -291213 01/01/1988 31/12/2006 LIBEN Butanal "butyraldehyde, normal isomer" 01/01/1988 31/12/2006 -29121300 01/01/1988 31/12/2006 LIBEN Butanal "butyraldehyde, normal isomer" 01/01/1988 31/12/2006 -291219 01/01/1988 31/12/2500 LIBEN Acyclic aldehydes, without other oxygen function (excl. methanal [formaldehyde] and ethanal [acetaldehyde]) 01/01/1988 31/12/2500 -29121900 01/01/1988 31/12/2006 LIBEN Acyclic aldehydes, without other oxygen function (excl. methanal "formaldehyde", ethanal "acetaldehyde" and butanal "butyraldehyde, normal isomer") 01/01/1988 31/12/2006 -29121900 01/01/2012 31/12/2500 LIBEN Acyclic aldehydes, without other oxygen function (excl. methanal [formaldehyde] and ethanal [acetaldehyde]) 01/01/2012 31/12/2500 -29121910 01/01/2007 31/12/2011 LIBEN Butanal "butyraldehyde, normal isomer" 01/01/2007 31/12/2011 -29121990 01/01/2007 31/12/2011 LIBEN Acyclic aldehydes, without other oxygen function (excl. methanal [formaldehyde], ethanal [acetaldehyde] and butanal [butyraldehyde, normal isomer]) 01/01/2007 31/12/2011 -291221 01/01/1988 31/12/2500 LIBEN Benzaldehyde 01/01/1988 31/12/2500 -29122100 01/01/1988 31/12/2500 LIBEN Benzaldehyde 01/01/1988 31/12/2500 -291229 01/01/1988 31/12/2500 LIBEN Cyclic aldehydes, without other oxygen function (excl. benzaldehyde) 01/01/1988 31/12/2500 -29122900 01/01/1988 31/12/2500 LIBEN Cyclic aldehydes, without other oxygen function (excl. benzaldehyde) 01/01/1988 31/12/2500 -291230 01/01/1988 31/12/2011 LIBEN Aldehyde-alcohols 01/01/1988 31/12/2011 -29123000 01/01/1988 31/12/2011 LIBEN Aldehyde-alcohols 01/01/1988 31/12/2011 -291241 01/01/1988 31/12/2500 LIBEN Vanillin "4-hydroxy-3-methoxybenzaldehyde" 01/01/1988 31/12/2500 -29124100 01/01/1988 31/12/2500 LIBEN Vanillin "4-hydroxy-3-methoxybenzaldehyde" 01/01/1988 31/12/2500 -291242 01/01/1988 31/12/2500 LIBEN Ethylvanillin "3-ethoxy-4-hydroxybenzaldehyde" 01/01/1988 31/12/2500 -29124200 01/01/1988 31/12/2500 LIBEN Ethylvanillin "3-ethoxy-4-hydroxybenzaldehyde" 01/01/1988 31/12/2500 -291249 01/01/1988 31/12/2500 LIBEN Aldehyde-alcohols, aldehyde-ethers, aldehyde-phenols and aldehydes with other oxygen function (excl. ethylvanillin "3-ethoxy-4-hydroxybenzaldehyde" and vanillin "4-hydroxy-3-methoxybenzaldehyde") 01/01/1988 31/12/2500 -29124900 01/01/1988 31/12/2011 LIBEN Aldehyde-ethers, aldehyde-phenols and aldehydes with other oxygen function (excl. ethylvanillin "3-ethoxy-4-hydroxybenzaldehyde" and vanillin "4-hydroxy-3-methoxybenzaldehyde") 01/01/1988 31/12/2011 -29124900 01/01/2012 31/12/2500 LIBEN Aldehyde-alcohols, aldehyde-ethers, aldehyde-phenols and aldehydes with other oxygen function (excl. ethylvanillin "3-ethoxy-4-hydroxybenzaldehyde" and vanillin "4-hydroxy-3-methoxybenzaldehyde") 01/01/2012 31/12/2500 -291250 01/01/1988 31/12/2500 LIBEN Cyclic polymers of aldehydes 01/01/1988 31/12/2500 -29125000 01/01/1988 31/12/2500 LIBEN Cyclic polymers of aldehydes 01/01/1988 31/12/2500 -291260 01/01/1988 31/12/2500 LIBEN Paraformaldehyde 01/01/1988 31/12/2500 -29126000 01/01/1988 31/12/2500 LIBEN Paraformaldehyde 01/01/1988 31/12/2500 -2912S5 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2912 and SITC section 5 01/01/1998 31/12/2500 -2912S516 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2912 and SITC group 516 01/01/1998 31/12/2500 -2913 01/01/1988 31/12/2500 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of cyclic polymers of aldehydes or paraformaldehyde 01/01/1988 31/12/2500 -291300 01/01/1988 31/12/2500 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of cyclic polymers of aldehydes or paraformaldehyde 01/01/1988 31/12/2500 -29130000 01/01/1988 31/12/2500 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of cyclic polymers of aldehydes or paraformaldehyde 01/01/1988 31/12/2500 -2914 01/01/1988 31/12/2500 LIBEN Ketones and quinones, whether or not with other oxygen function, and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -291411 01/01/1988 31/12/2500 LIBEN Acetone 01/01/1988 31/12/2500 -29141100 01/01/1988 31/12/2500 LIBEN Acetone 01/01/1988 31/12/2500 -291412 01/01/1988 31/12/2500 LIBEN Butanone "methyl ethyl ketone" 01/01/1988 31/12/2500 -29141200 01/01/1988 31/12/2500 LIBEN Butanone "methyl ethyl ketone" 01/01/1988 31/12/2500 -291413 01/01/1988 31/12/2500 LIBEN 4-Methylpentan-2-one "methyl isobutyl ketone" 01/01/1988 31/12/2500 -29141300 01/01/1988 31/12/2500 LIBEN 4-Methylpentan-2-one "methyl isobutyl ketone" 01/01/1988 31/12/2500 -291419 01/01/1988 31/12/2500 LIBEN Acyclic ketones, without other oxygen function (excl. acetone, butanone "methyl ethyl ketone" and 4-Methylpentan-2-one "Methyl isobutyl ketone") 01/01/1988 31/12/2500 -29141900 01/01/1988 31/12/1996 LIBEN Acyclic ketones, without other oxygen function (excl. acetone, butanone "methyl ethyl ketone" and 4-Methylpentan-2-one "Methyl isobutyl ketone") 01/01/1988 31/12/1996 -29141910 01/01/1997 31/12/2500 LIBEN 5-Methylhexan-2-one 01/01/1997 31/12/2500 -29141990 01/01/1997 31/12/2500 LIBEN Acyclic ketones without other oxygen function (excl. acetone, butanone "methyl ethyl ketone", 4-Methylpentan-2-one "Methyl isobutyl ketone" and 5-methylhexan-2-one) 01/01/1997 31/12/2500 -291421 01/01/1988 31/12/2011 LIBEN Camphor 01/01/1988 31/12/2011 -29142100 01/01/1988 31/12/2011 LIBEN Camphor 01/01/1988 31/12/2011 -291422 01/01/1988 31/12/2500 LIBEN Cyclohexanone and methylcyclohexanones 01/01/1988 31/12/2500 -29142200 01/01/1988 31/12/2500 LIBEN Cyclohexanone and methylcyclohexanones 01/01/1988 31/12/2500 -291423 01/01/1988 31/12/2500 LIBEN Ionones and methylionones 01/01/1988 31/12/2500 -29142300 01/01/1988 31/12/2500 LIBEN Ionones and methylionones 01/01/1988 31/12/2500 -291429 01/01/1988 31/12/2500 LIBEN Cyclanic, cyclenic or cycloterpenic ketones, without other oxygen function (excl. cyclohexanone, methylcyclohexanones, ionones and methylionones) 01/01/1988 31/12/2500 -29142900 01/01/1988 31/12/2011 LIBEN Cyclanic, cyclenic or cycloterpenic ketones, without other oxygen function (excl. camphor, cyclohexanone, methylcyclohexanones, ionones and methylionones) 01/01/1988 31/12/2011 -29142900 01/01/2012 31/12/2500 LIBEN Cyclanic, cyclenic or cycloterpenic ketones, without other oxygen function (excl. cyclohexanone, methylcyclohexanones, ionones and methylionones) 01/01/2012 31/12/2500 -291430 01/01/1988 31/12/1995 LIBEN Aromatic ketones, without other oxygen function 01/01/1988 31/12/1995 -29143000 01/01/1988 31/12/1991 LIBEN Aromatic ketones, without other oxygen function 01/01/1988 31/12/1991 -29143010 01/01/1992 31/12/1995 LIBEN Phenylacetone 01/01/1992 31/12/1995 -29143090 01/01/1992 31/12/1995 LIBEN Ketones, aromatic, without other oxygen function (excl. phenylacetone) 01/01/1992 31/12/1995 -291431 01/01/1996 31/12/2500 LIBEN Phenylacetone "phenylpropan-2-one" 01/01/1996 31/12/2500 -29143100 01/01/1996 31/12/2500 LIBEN Phenylacetone "phenylpropan-2-one" 01/01/1996 31/12/2500 -291439 01/01/1996 31/12/2500 LIBEN Ketones, aromatic, without other oxygen function (excl. phenylacetone [phenylpropan-2-one]) 01/01/1996 31/12/2500 -29143900 01/01/1996 31/12/2500 LIBEN Ketones, aromatic, without other oxygen function (excl. phenylacetone [phenylpropan-2-one]) 01/01/1996 31/12/2500 -291440 01/01/1996 31/12/2500 LIBEN Ketone-alcohols and ketone-aldehydes 01/01/1996 31/12/2500 -29144010 01/01/1996 31/12/2500 LIBEN 4-Hydroxy-4-methylpentan-2-one "diacetone alcohol" 01/01/1996 31/12/2500 -29144090 01/01/1996 31/12/2500 LIBEN Ketone-alcohols and ketone-aldehydes (excl. 4-Hydroxy-4-methylpentan-2-one "diacetone alcohol") 01/01/1996 31/12/2500 -291441 01/01/1988 31/12/1995 LIBEN 4-Hydroxy-4-methylpentan-2-one "diacetone alcohol" 01/01/1988 31/12/1995 -29144100 01/01/1988 31/12/1995 LIBEN 4-Hydroxy-4-methylpentan-2-one "diacetone alcohol" 01/01/1988 31/12/1995 -291449 01/01/1988 31/12/1995 LIBEN Ketone-alcohols and ketone-aldehydes (excl. 4-Hydroxy-4-methylpentan-2-one "diacetone alcohol") 01/01/1988 31/12/1995 -29144900 01/01/1988 31/12/1995 LIBEN Ketone-alcohols and ketone-aldehydes (excl. 4-Hydroxy-4-methylpentan-2-one "diacetone alcohol") 01/01/1988 31/12/1995 -291450 01/01/1988 31/12/2500 LIBEN Ketone-phenols and ketones with other oxygen function 01/01/1988 31/12/2500 -29145000 01/01/1988 31/12/2500 LIBEN Ketone-phenols and ketones with other oxygen function 01/01/1988 31/12/2500 -291461 01/01/1988 31/12/2500 LIBEN Anthraquinone 01/01/1988 31/12/2500 -29146100 01/01/1988 31/12/2500 LIBEN Anthraquinone 01/01/1988 31/12/2500 -291462 01/01/2017 31/12/2500 LIBEN Coenzyme Q10 "ubidecarenone (INN)" 01/01/2017 31/12/2500 -29146200 01/01/2017 31/12/2500 LIBEN Coenzyme Q10 "ubidecarenone (INN)" 01/01/2017 31/12/2500 -291469 01/01/1988 31/12/2500 LIBEN Quinones (excl. anthraquinone and coenzyme Q10 "ubidecarenone (INN)") 01/01/1988 31/12/2500 -29146900 01/01/1988 31/12/1996 LIBEN Quinones (excl. anthraquinone) 01/01/1988 31/12/1996 -29146910 01/01/1997 31/12/2500 LIBEN 1,4-Naphthoquinone 01/01/1997 31/12/2500 -29146980 01/01/2017 31/12/2500 LIBEN Quinones (excl. anthraquinone, coenzyme Q10 "ubidecarenone (INN)" and 1,4-naphthoquinone) 01/01/2017 31/12/2500 -29146990 01/01/1997 31/12/2016 LIBEN Quinones (excl. anthraquinone and 1,4-naphthoquinone) 01/01/1997 31/12/2016 -291470 01/01/1988 31/12/2016 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of ketones or quinones (excl. inorganic or organic compounds of mercury) 01/01/1988 31/12/2016 -29147000 01/01/2004 31/12/2006 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of ketones or quinones 01/01/2004 31/12/2006 -29147000 01/01/2007 31/12/2016 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of ketones or quinones (excl. inorganic or organic compounds of mercury) 01/01/2007 31/12/2016 -29147010 01/01/1988 31/12/2003 LIBEN 4'-tert-Butyl-2',6'-dimethyl-3',5'-dinitroacetophenone "musk ketone" 01/01/1988 31/12/2003 -29147090 01/01/1988 31/12/2003 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of ketones and quinones (excl. 4'-tert-Butyl-2',6'-dimethyl-3',5'-dinitroacetophenone "musk ketone") 01/01/1988 31/12/2003 -291471 01/01/2017 31/12/2500 LIBEN Chlordecone (ISO) 01/01/2017 31/12/2500 -29147100 01/01/2017 31/12/2500 LIBEN Chlordecone (ISO) 01/01/2017 31/12/2500 -291479 01/01/2017 31/12/2500 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of ketones or quinones (excl. chlordecone (ISO) and inorganic or organic compounds of mercury) 01/01/2017 31/12/2500 -29147900 01/01/2017 31/12/2500 LIBEN Halogenated, sulphonated, nitrated or nitrosated derivatives of ketones or quinones (excl. chlordecone (ISO) and inorganic or organic compounds of mercury) 01/01/2017 31/12/2500 -2914S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2914 and SITC section 5 01/01/1997 31/12/2500 -2914S516 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2914 and SITC group 516 01/01/1997 31/12/2500 -2915 01/01/1988 31/12/2500 LIBEN Saturated acyclic monocarboxylic acids and their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -291511 01/01/1988 31/12/2500 LIBEN Formic acid 01/01/1988 31/12/2500 -29151100 01/01/1988 31/12/2500 LIBEN Formic acid 01/01/1988 31/12/2500 -291512 01/01/1988 31/12/2500 LIBEN Salts of formic acid 01/01/1988 31/12/2500 -29151200 01/01/1988 31/12/2500 LIBEN Salts of formic acid 01/01/1988 31/12/2500 -291513 01/01/1988 31/12/2500 LIBEN Esters of formic acid 01/01/1988 31/12/2500 -29151300 01/01/1988 31/12/2500 LIBEN Esters of formic acid 01/01/1988 31/12/2500 -291521 01/01/1988 31/12/2500 LIBEN Acetic acid 01/01/1988 31/12/2500 -29152100 01/01/1988 31/12/2500 LIBEN Acetic acid 01/01/1988 31/12/2500 -291522 01/01/1988 31/12/2006 LIBEN Sodium acetate 01/01/1988 31/12/2006 -29152200 01/01/1988 31/12/2006 LIBEN Sodium acetate 01/01/1988 31/12/2006 -291523 01/01/1988 31/12/2006 LIBEN Cobalt acetates 01/01/1988 31/12/2006 -29152300 01/01/1988 31/12/2006 LIBEN Cobalt acetates 01/01/1988 31/12/2006 -291524 01/01/1988 31/12/2500 LIBEN Acetic anhydride 01/01/1988 31/12/2500 -29152400 01/01/1988 31/12/2500 LIBEN Acetic anhydride 01/01/1988 31/12/2500 -291529 01/01/1988 31/12/2500 LIBEN Salts of acetic acid (excl. inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -29152900 01/01/1988 31/12/2006 LIBEN Salts of acetic acid (excl. sodium and cobalt) 01/01/1988 31/12/2006 -29152900 01/01/2007 31/12/2500 LIBEN Salts of acetic acid (excl. inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -291531 01/01/1988 31/12/2500 LIBEN Ethyl acetate 01/01/1988 31/12/2500 -29153100 01/01/1988 31/12/2500 LIBEN Ethyl acetate 01/01/1988 31/12/2500 -291532 01/01/1988 31/12/2500 LIBEN Vinyl acetate 01/01/1988 31/12/2500 -29153200 01/01/1988 31/12/2500 LIBEN Vinyl acetate 01/01/1988 31/12/2500 -291533 01/01/1988 31/12/2500 LIBEN n-Butyl acetate 01/01/1988 31/12/2500 -29153300 01/01/1988 31/12/2500 LIBEN n-Butyl acetate 01/01/1988 31/12/2500 -291534 01/01/1988 31/12/2006 LIBEN Isobutyl acetate 01/01/1988 31/12/2006 -29153400 01/01/1988 31/12/2006 LIBEN Isobutyl acetate 01/01/1988 31/12/2006 -291535 01/01/1988 31/12/2006 LIBEN 2-Ethoxyethyl acetate 01/01/1988 31/12/2006 -29153500 01/01/1988 31/12/2006 LIBEN 2-Ethoxyethyl acetate 01/01/1988 31/12/2006 -291536 01/01/2007 31/12/2500 LIBEN Dinoseb acetate (ISO) 01/01/2007 31/12/2500 -29153600 01/01/2007 31/12/2500 LIBEN Dinoseb acetate (ISO) 01/01/2007 31/12/2500 -291539 01/01/1988 31/12/2500 LIBEN Esters of acetic acid (excl. ethyl, vinyl, n-butyl and dinoseb (ISO) acetates) 01/01/1988 31/12/2500 -29153900 01/01/2009 31/12/2500 LIBEN Esters of acetic acid (excl. ethyl, vinyl, n-butyl and dinoseb (ISO) acetates) 01/01/2009 31/12/2500 -29153910 01/01/1988 31/12/2008 LIBEN Propyl acetate and isopropyl acetate 01/01/1988 31/12/2008 -29153930 01/01/1988 31/12/2008 LIBEN Methyl acetate, pentyl acetate "amyl acetate", isopentyl acetate "isoamyl acetate" and glycerol acetates 01/01/1988 31/12/2008 -29153950 01/01/1988 31/12/2008 LIBEN p-Tolyl acetate, phenylpropyl acetates, benzyl acetate, rhodinyl acetate, santalyl acetate and the acetates of phenylethane-1,2-diol 01/01/1988 31/12/2008 -29153980 01/01/2007 31/12/2008 LIBEN Esters of acetic acid (excl. ethyl, vinyl, n-butyl, dinoseb (ISO), propyl, isopropyl, methyl, pentyl "amyl", isopentyl "isoamyl", glycerol, p-Tolyl, phenylpropyl, benzyl, rhodinyl, santalyl acetates and the acetates of phenylethane-1,2-diol) 01/01/2007 31/12/2008 -29153990 01/01/1988 31/12/2006 LIBEN Esters of acetic acid (excl. ethyl, vinyl, n-butyl, isobutyl, 2-ethoxyethyl, propyl, isopropyl, methyl, pentyl "amyl", isopentyl "isoamyl", glycerol, p-Tolyl, phenylpropyl, benzyl, rhodinyl, santalyl acetates and the acetates of phenylethane-1,2-diol) 01/01/1988 31/12/2006 -291540 01/01/1988 31/12/2500 LIBEN Mono- di- or trichloroacetic acids, their salts and esters 01/01/1988 31/12/2500 -29154000 01/01/1988 31/12/2500 LIBEN Mono- di- or trichloroacetic acids, their salts and esters 01/01/1988 31/12/2500 -291550 01/01/1988 31/12/2500 LIBEN Propionic acid, its salts and esters 01/01/1988 31/12/2500 -29155000 01/01/1988 31/12/2500 LIBEN Propionic acid, its salts and esters 01/01/1988 31/12/2500 -291560 01/01/1988 31/12/2500 LIBEN Butanoic acids, pentanoic acids, their salts and esters 01/01/1988 31/12/2500 -29156010 01/01/1988 31/12/1996 LIBEN Butyric acids and their salts and esters 01/01/1988 31/12/1996 -29156011 01/01/1997 31/12/2500 LIBEN 1-Isopropyl-2,2-dimethyltrimethylene diisobutyrate 01/01/1997 31/12/2500 -29156019 01/01/1997 31/12/2500 LIBEN Butanoic acids and their salts and esters (excl. 1-isopropyl-2,2-dimethyltrimethylene diisobutyrate) 01/01/1997 31/12/2500 -29156090 01/01/1988 31/12/2500 LIBEN Pentanoic acids and their salts and esters 01/01/1988 31/12/2500 -291570 01/01/1988 31/12/2500 LIBEN Palmitic acid, stearic acid, their salts and esters 01/01/1988 31/12/2500 -29157000 01/01/2009 31/12/2011 LIBEN Palmitic acid, stearic acid, their salts and esters 01/01/2009 31/12/2011 -29157010 01/01/1988 31/12/1990 LIBEN Palmitic acid, its salts and esters 01/01/1988 31/12/1990 -29157015 01/01/1991 31/12/2008 LIBEN Palmitic acid 01/01/1991 31/12/2008 -29157020 01/01/1991 31/12/2008 LIBEN Salts and esters of palmitic acid 01/01/1991 31/12/2008 -29157025 01/01/1991 31/12/2008 LIBEN Stearic acid 01/01/1991 31/12/2008 -29157030 01/01/1988 31/12/2006 LIBEN Salts of stearic acid 01/01/1988 31/12/2006 -29157030 01/01/2007 31/12/2008 LIBEN Salts of stearic acid (excl. inorganic or organic compounds of mercury) 01/01/2007 31/12/2008 -29157040 01/01/2012 31/12/2500 LIBEN Palmitic acid and its salts and esters 01/01/2012 31/12/2500 -29157050 01/01/2012 31/12/2500 LIBEN Stearic acid and its salts and esters 01/01/2012 31/12/2500 -29157080 01/01/1991 31/12/2008 LIBEN Esters of stearic acid 01/01/1991 31/12/2008 -29157090 01/01/1988 31/12/1990 LIBEN Stearic acid and its esters 01/01/1988 31/12/1990 -291590 01/01/1988 31/12/2500 LIBEN Saturated acyclic monocarboxylic acids, their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. formic acid and acetic acid, mono-, di- or trichloroacetic acids, propionic acid, butanoic and pentanoic acids, palmitic and stearic acids, their salts and esters, and acetic anhydride) 01/01/1988 31/12/2500 -29159000 01/01/1988 31/12/1988 LIBEN Saturated acyclic monocarboxilic acids, their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. formic and acetic acid, their salts & esters; acetic anhydride, mono-, di- or trichlorocetic acid, their salts & esters; propionic acid, its salts & esters; butteric and valeric acids, their salts & esters; palmitic and stearic acids, their salts & esters) 01/01/1988 31/12/1988 -29159000 01/01/2009 31/12/2011 LIBEN Saturated acyclic monocarboxylic acids, their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. formic acid and acetic acid, mono-, di- or trichloroacetic acids, propionic acid, butanoic and pentanoic acids, palmitic and stearic acids, their salts and esters, and acetic anhydride) 01/01/2009 31/12/2011 -29159010 01/01/1989 31/12/2008 LIBEN Lauric acid 01/01/1989 31/12/2008 -29159020 01/01/1994 31/12/2008 LIBEN Chloroformate 01/01/1994 31/12/2008 -29159030 01/01/2012 31/12/2500 LIBEN Lauric acid and its salts and esters 01/01/2012 31/12/2500 -29159070 01/01/2012 31/12/2500 LIBEN Saturated acyclic monocarboxylic acids, their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. formic acid and acetic acid, mono-, di- or trichloroacetic acids, propionic acid, butanoic and pentanoic acids, palmitic, stearic and lauric acids and their salts and esters, and acetic anhydride) 01/01/2012 31/12/2500 -29159080 01/01/1994 31/12/2006 LIBEN Saturated acyclic monocarboxylic acids and their anhydrides, halogenides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. formic acid and acetic acid, mono-, di- or trichloroacetic acids, proprionic acid, butanoic and pentanoic acids, palmitic and stearic acids, their salts and esters, and acetic anhydride, lauric acid and chloroformates) 01/01/1994 31/12/2006 -29159080 01/01/2007 31/12/2008 LIBEN Saturated acyclic monocarboxylic acids and their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. formic acid and acetic acid, mono-, di- or trichloroacetic acids, proprionic acid, butanoic and pentanoic acids, palmitic and stearic acids, their salts and esters, and acetic anhydride, lauric acid, chloroformates and inorganic or organic compounds of mercury) 01/01/2007 31/12/2008 -29159090 01/01/1989 31/12/1993 LIBEN Saturated acyclic monocarboxylic acids and their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. formic acid, acetic acid, mono-, di- or trichloroacetic acids, propionic acid, butyric acids, valeric acids, palmitic acids or stearic acids and their salts and esters and excl. anhydrid acid and lauric acid 01/01/1989 31/12/1993 -2915S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2915 and SITC section 5 01/01/1997 31/12/2500 -2915S513 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2915 and SITC group 513 01/01/1997 31/12/2500 -2916 01/01/1988 31/12/2500 LIBEN Unsaturated acyclic monocarboxylic acids, cyclic monocarboxylic acids, their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -291611 01/01/1988 31/12/2500 LIBEN Acrylic acid and its salts 01/01/1988 31/12/2500 -29161100 01/01/2004 31/12/2500 LIBEN Acrylic acid and its salts 01/01/2004 31/12/2500 -29161110 01/01/1988 31/12/2003 LIBEN Acrylic acid 01/01/1988 31/12/2003 -29161190 01/01/1988 31/12/2003 LIBEN Salts of acrylic acid 01/01/1988 31/12/2003 -291612 01/01/1988 31/12/2500 LIBEN Esters of acrylic acid 01/01/1988 31/12/2500 -29161200 01/01/1988 31/12/1993 LIBEN Esters of acrylic acid 01/01/1988 31/12/1993 -29161200 01/01/2009 31/12/2500 LIBEN Esters of acrylic acid 01/01/2009 31/12/2500 -29161210 01/01/1994 31/12/2008 LIBEN Methylacrylate 01/01/1994 31/12/2008 -29161220 01/01/1994 31/12/2008 LIBEN Ethylacrylate 01/01/1994 31/12/2008 -29161290 01/01/1994 31/12/2008 LIBEN Esters of acrylic acid (excl. methylacrylate and ethylacrylate) 01/01/1994 31/12/2008 -291613 01/01/1988 31/12/2500 LIBEN Methacrylic acid and its salts 01/01/1988 31/12/2500 -29161300 01/01/1988 31/12/2500 LIBEN Methacrylic acid and its salts 01/01/1988 31/12/2500 -291614 01/01/1988 31/12/2500 LIBEN Esters of methacrylic acid 01/01/1988 31/12/2500 -29161400 01/01/1988 31/12/1993 LIBEN Esters of methacrylic acid 01/01/1988 31/12/1993 -29161400 01/01/2009 31/12/2500 LIBEN Esters of methacrylic acid 01/01/2009 31/12/2500 -29161410 01/01/1994 31/12/2008 LIBEN Methylmethacrylate 01/01/1994 31/12/2008 -29161490 01/01/1994 31/12/2008 LIBEN Esters of methacrylic acid (excl. methylacrylate) 01/01/1994 31/12/2008 -291615 01/01/1988 31/12/2500 LIBEN Oleic, linoleic or linolenic acids, their salts and esters (excl. inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -29161500 01/01/1988 31/12/2006 LIBEN Oleic, linoleic or linolenic acids, their salts and esters 01/01/1988 31/12/2006 -29161500 01/01/2007 31/12/2500 LIBEN Oleic, linoleic or linolenic acids, their salts and esters (excl. inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -291616 01/01/2012 31/12/2500 LIBEN Binapacryl (ISO) 01/01/2012 31/12/2500 -29161600 01/01/2012 31/12/2500 LIBEN Binapacryl (ISO) 01/01/2012 31/12/2500 -291619 01/01/1988 31/12/2500 LIBEN Unsaturated acyclic monocarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and halogenated, sulphonated, nitrated or nitrosated derivatives (excl. acrylic acid and its salts and esters, methacrylic acid and its salts and esters, and oleic, linoleic or linolenic acids, their salts and esters, and binapacryl (ISO)) 01/01/1988 31/12/2500 -29161910 01/01/1988 31/12/2500 LIBEN Undecenoic acids and their salts and esters 01/01/1988 31/12/2500 -29161930 01/01/1988 31/12/2008 LIBEN Hexa-2,4-dienoic acid "sorbic acid" 01/01/1988 31/12/2008 -29161940 01/01/1997 31/12/2500 LIBEN Crotonic acid 01/01/1997 31/12/2500 -29161950 01/01/2008 31/12/2011 LIBEN Binapacryl (ISO) 01/01/2008 31/12/2011 -29161970 01/01/2007 31/12/2008 LIBEN Unsaturated acyclic monocarboxylic acids, their anhydrides, halides, peroxides, and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. acrylic acid and its salts and esters, methacrylic acid and its salts and esters, oleic, linoleic or linolenic acids, their salts and esters, undecenoic acids and their salts and esters, hexa-2,4-dienoic acid "sorbic acid", crotonic acid and binapacryl (ISO)) 01/01/2007 31/12/2008 -29161980 01/01/1997 31/12/2006 LIBEN Unsaturated acyclic monocarboxylic acids, their anhydrides, halides, peroxides, and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. acrylic acid and its salts and esters, methacrylic acid and its salts and esters, oleic, linoleic or linolenic acids, their salts and esters, undecenoic acids and their salts and esters, hexa-2,4-dienoic acid "sorbic acid" and crotonic acid) 01/01/1997 31/12/2006 -29161990 01/01/1988 31/12/1996 LIBEN Unsaturated acyclic monocarboxylic acids, their anhydrides, halides, peroxides, and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. acrylic acid and its salts and esters, methacrylic acid and its salts and esters, oleic, linoleic or linolenic acids, their salts and esters, undecenoic acids and their salts and esters and hexa-2,4-dienoic acid "Sorbic acid") 01/01/1988 31/12/1996 -29161995 01/01/2009 31/12/2500 LIBEN Unsaturated acyclic monocarboxylic acids, their anhydrides, halides, peroxides, and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. acrylic acid and its salts and esters, methacrylic acid and its salts and esters, oleic, linoleic or linolenic acids, their salts and esters, undecenoic acids and their salts and esters, crotonic acid and binapacryl (ISO)) 01/01/2009 31/12/2500 -291620 01/01/1988 31/12/2500 LIBEN Cyclanic, cyclenic or cycloterpenic monocarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -29162000 01/01/1988 31/12/2006 LIBEN Cyclanic, cyclenic or cycloterpenic monocarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2006 -29162000 01/01/2007 31/12/2500 LIBEN Cyclanic, cyclenic or cycloterpenic monocarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -291631 01/01/1988 31/12/2500 LIBEN Benzoic acid, its salts and esters (excl. inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -29163100 01/01/1988 31/12/2006 LIBEN Benzoic acid, its salts and esters 01/01/1988 31/12/2006 -29163100 01/01/2007 31/12/2500 LIBEN Benzoic acid, its salts and esters (excl. inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -291632 01/01/1988 31/12/2500 LIBEN Benzoyl peroxide and benzoyl chloride 01/01/1988 31/12/2500 -29163200 01/01/2009 31/12/2500 LIBEN Benzoyl peroxide and benzoyl chloride 01/01/2009 31/12/2500 -29163210 01/01/1988 31/12/2008 LIBEN Benzoyl peroxide 01/01/1988 31/12/2008 -29163290 01/01/1988 31/12/2008 LIBEN Benzoyl chloride 01/01/1988 31/12/2008 -291633 01/01/1988 31/12/1995 LIBEN Phenylacetic acid, its salts and esters 01/01/1988 31/12/1995 -29163300 01/01/1988 31/12/1993 LIBEN Phenylacetic acid, its salts and esters 01/01/1988 31/12/1993 -29163310 01/01/1994 31/12/1995 LIBEN Phenylacetic acid and its salts 01/01/1994 31/12/1995 -29163390 01/01/1994 31/12/1995 LIBEN Esters of phenylacetic acid 01/01/1994 31/12/1995 -291634 01/01/1996 31/12/2500 LIBEN Phenylacetic acid and its salts 01/01/1996 31/12/2500 -29163400 01/01/1996 31/12/2500 LIBEN Phenylacetic acid and its salts 01/01/1996 31/12/2500 -291635 01/01/1996 31/12/2011 LIBEN Esters of phenylacetic acid 01/01/1996 31/12/2011 -29163500 01/01/1996 31/12/2011 LIBEN Esters of phenylacetic acid 01/01/1996 31/12/2011 -291636 01/01/2007 31/12/2007 LIBEN Binapacryl (ISO) 01/01/2007 31/12/2007 -29163600 01/01/2007 31/12/2007 LIBEN Binapacryl (ISO) 01/01/2007 31/12/2007 -291639 01/01/1988 31/12/2500 LIBEN Aromatic monocarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. benzoic acid, its salts and esters, benzoyl peroxide, benzoyl chloride, phenylacetic acid and its salts, and inorganic or organic compounds of mercury whether or not chemically defined) 01/01/1988 31/12/2500 -29163900 01/01/1988 31/12/2006 LIBEN Aromatic monocarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. benzoic acid, its salts and esters, benzoyl peroxide, benzoyl chloride, and phenylacetic acid, its salts and esters) 01/01/1988 31/12/2006 -29163900 01/01/2007 31/12/2011 LIBEN Aromatic monocarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. benzoic acid, its salts and esters, benzoyl peroxide, benzoyl chloride, binapacryl (ISO), phenylacetic acid, its salts and esters, and inorganic or organic compounds of mercury) 01/01/2007 31/12/2011 -29163910 01/01/2012 31/12/2500 LIBEN Esters of phenylacetic acid 01/01/2012 31/12/2500 -29163990 01/01/2012 31/12/2500 LIBEN Aromatic monocarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. benzoic acid, its salts and esters, benzoyl peroxide, benzoyl chloride, binapacryl (ISO), phenylacetic acid, its salts and esters, and inorganic or organic compounds of mercury whether or not chemically defined) 01/01/2012 31/12/2500 -2916S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2916 and SITC section 5 01/01/1997 31/12/2500 -2916S513 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2916 and SITC group 513 01/01/1997 31/12/2500 -2917 01/01/1988 31/12/2500 LIBEN Polycarboxylic acids, their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -291711 01/01/1988 31/12/2500 LIBEN Oxalic acid, its salts and esters (excl. inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -29171100 01/01/1988 31/12/2006 LIBEN Oxalic acid, its salts and esters 01/01/1988 31/12/2006 -29171100 01/01/2007 31/12/2500 LIBEN Oxalic acid, its salts and esters (excl. inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -291712 01/01/1988 31/12/2500 LIBEN Adipic acid, its salts and esters 01/01/1988 31/12/2500 -29171200 01/01/2009 31/12/2500 LIBEN Adipic acid, its salts and esters 01/01/2009 31/12/2500 -29171210 01/01/1988 31/12/2008 LIBEN Adipic acid and its salts 01/01/1988 31/12/2008 -29171290 01/01/1988 31/12/2008 LIBEN Esters of adipic acid 01/01/1988 31/12/2008 -291713 01/01/1988 31/12/2500 LIBEN Azelaic acid, sebacic acid, their salts and esters 01/01/1988 31/12/2500 -29171300 01/01/1988 31/12/1996 LIBEN Azelaic acid, sebacic acid, their salts and esters 01/01/1988 31/12/1996 -29171310 01/01/1997 31/12/2500 LIBEN Sebacic acid 01/01/1997 31/12/2500 -29171390 01/01/1997 31/12/2500 LIBEN Azelaic acid, their salts and esters and salts and esters of sebacic acid 01/01/1997 31/12/2500 -291714 01/01/1988 31/12/2500 LIBEN Maleic anhydride 01/01/1988 31/12/2500 -29171400 01/01/1988 31/12/2500 LIBEN Maleic anhydride 01/01/1988 31/12/2500 -291719 01/01/1988 31/12/2500 LIBEN Acyclic polycarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. oxalic acid, its salts and esters, adipic acid, its salts and esters, azelaic acid, sebacic acid, their salts and esters, maleic anhydride, and inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -29171910 01/01/1988 31/12/2500 LIBEN Malonic acid, its salts and esters 01/01/1988 31/12/2500 -29171920 01/01/2016 31/12/2500 LIBEN Ethane-1,2-dicarboxylic acid or butanedioic acid "succinic acid" having a bio-based carbon content of 100% by mass 01/01/2016 31/12/2500 -29171980 01/01/2016 31/12/2500 LIBEN Acyclic polycarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. oxalic acid, adipic acid, azelaic acid, sebacic acid, malonic acid, their salts and esters, maleic anhydride, inorganic or organic compounds of mercury, and ethane-1,2-dicarboxylic acid or butanedioic acid "succinic acid" having a bio-based carbon content of 100%) 01/01/2016 31/12/2500 -29171990 01/01/1988 31/12/2006 LIBEN Acyclic polycarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. oxalic acid, its salts and esters, adipic acid, its salts and esters, azelaic acid, sebacic acid, their salts and esters, malonic acid, its salts and esters and maleic anhydride) 01/01/1988 31/12/2006 -29171990 01/01/2007 31/12/2015 LIBEN Acyclic polycarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. oxalic acid, its salts and esters, adipic acid, its salts and esters, azelaic acid, sebacic acid, their salts and esters, malonic acid, its salts and esters, maleic anhydride, and inorganic or organic compounds of mercury) 01/01/2007 31/12/2015 -291720 01/01/1988 31/12/2500 LIBEN Cyclanic, cyclenic or cycloterpenic polycarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and their derivatives 01/01/1988 31/12/2500 -29172000 01/01/1988 31/12/2500 LIBEN Cyclanic, cyclenic or cycloterpenic polycarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and their derivatives 01/01/1988 31/12/2500 -291731 01/01/1988 31/12/2006 LIBEN Dibutyl orthophthalates 01/01/1988 31/12/2006 -29173100 01/01/1988 31/12/2006 LIBEN Dibutyl orthophthalates 01/01/1988 31/12/2006 -291732 01/01/1988 31/12/2500 LIBEN Dioctyl orthophthalates 01/01/1988 31/12/2500 -29173200 01/01/1988 31/12/2500 LIBEN Dioctyl orthophthalates 01/01/1988 31/12/2500 -291733 01/01/1988 31/12/2500 LIBEN Dinonyl or didecyl orthophthalates 01/01/1988 31/12/2500 -29173300 01/01/1988 31/12/2500 LIBEN Dinonyl or didecyl orthophthalates 01/01/1988 31/12/2500 -291734 01/01/1988 31/12/2500 LIBEN Esters of orthophthalic acid (excl. dioctyl, dinonyl or didecyl orthophthalates) 01/01/1988 31/12/2500 -29173400 01/01/1998 31/12/2006 LIBEN Esters of orthophthalic acid (excl. dibutyl, dioctyl, dinonyl or didecyl orthophthalates) 01/01/1998 31/12/2006 -29173400 01/01/2012 31/12/2500 LIBEN Esters of orthophthalic acid (excl. dioctyl, dinonyl or didecyl orthophthalates) 01/01/2012 31/12/2500 -29173410 01/01/1988 31/12/1997 LIBEN Diisooctyl, diisononyl and diisodecyl orthophthalates 01/01/1988 31/12/1997 -29173410 01/01/2007 31/12/2011 LIBEN Dibutyl orthophthalates 01/01/2007 31/12/2011 -29173490 01/01/1988 31/12/1997 LIBEN Esters of orthophthalic acid (excl. dibutyl, dioctyl, dinonyl, didecyl, diisooctyl, diisononyl or diisodecyl orthophthalates) 01/01/1988 31/12/1997 -29173490 01/01/2007 31/12/2011 LIBEN Esters of orthophthalic acid (excl. dibutyl, dioctyl, dinonyl or didecyl orthophthalates) 01/01/2007 31/12/2011 -291735 01/01/1988 31/12/2500 LIBEN Phthalic anhydride 01/01/1988 31/12/2500 -29173500 01/01/1988 31/12/2500 LIBEN Phthalic anhydride 01/01/1988 31/12/2500 -291736 01/01/1988 31/12/2500 LIBEN Terephthalic acid and its salts 01/01/1988 31/12/2500 -29173600 01/01/1988 31/12/2500 LIBEN Terephthalic acid and its salts 01/01/1988 31/12/2500 -291737 01/01/1988 31/12/2500 LIBEN Dimethyl terephthalate 01/01/1988 31/12/2500 -29173700 01/01/1988 31/12/2500 LIBEN Dimethyl terephthalate 01/01/1988 31/12/2500 -291739 01/01/1988 31/12/2500 LIBEN Aromatic polycarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. esters of orthophthalic acid, phthalic anhydride, terephthalic acid and its salts and dimethyl terephthalate) 01/01/1988 31/12/2500 -29173910 01/01/1988 31/12/1996 LIBEN Brominated derivatives of aromatic polycarboxylic acids 01/01/1988 31/12/1996 -29173911 01/01/1997 31/12/2008 LIBEN Ester or anhydride of tetrabromophthalic acid 01/01/1997 31/12/2008 -29173919 01/01/1997 31/12/2008 LIBEN Brominated derivatives of aromatic polycarboxylic acids (excl. ester or anhydride of tetrabromophthalic acid) 01/01/1997 31/12/2008 -29173920 01/01/2009 31/12/2500 LIBEN Ester or anhydride of tetrabromophthalic acid; benzene-1,2,4-tricarboxylic acid; isophthaloyl dichloride, containing by weight 0,8 % or less of terephthaloyl dichloride; naphthalene-1,4,5,8-tetracarboxylic acid; tetrachlorophthalic anhydride; sodium 3,5-bis(methoxycarbonyl)benzenesulphonate 01/01/2009 31/12/2500 -29173930 01/01/1997 31/12/2008 LIBEN Benzene-1,2,4-tricarboxylic acid 01/01/1997 31/12/2008 -29173940 01/01/1997 31/12/2008 LIBEN Isophthaloyl dichloride containing by weight <= 0,8% of terephthaloyl dichloride 01/01/1997 31/12/2008 -29173950 01/01/1997 31/12/2008 LIBEN Naphthalene-1,4,5,8-tetracarboxylic acid 01/01/1997 31/12/2008 -29173960 01/01/1997 31/12/2008 LIBEN Tetrachlorophthalic anhydride 01/01/1997 31/12/2008 -29173970 01/01/1997 31/12/2008 LIBEN Sodium 3,5-bis"methoxycarbonyl"benzenesulphonate 01/01/1997 31/12/2008 -29173980 01/01/1997 31/12/2008 LIBEN Aromatic polycarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. esters of orthophthalic acid, phthalic anhydride, terephthalic acid and its salts, dimethyl terephthalate, brominated derivatives, benzene-1,2,4-tricarboxylic acid, isophthaloyl dichloride containing by weight <= 0,8% of terephthaloyl dichloride, naphthalene-1,4,5,8-tetracarboxylic acid, tetrachlorophthalic anhydride and sodium 3,5-bis"methoxycarbonyl"benzenesulphonate) 01/01/1997 31/12/2008 -29173990 01/01/1988 31/12/1996 LIBEN Aromatic polycarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. esters of orthophthalic acid, phthalic anhydride, terephthalic acid and its salts, dimethyl terephthalate and brominated derivatives) 01/01/1988 31/12/1996 -29173995 01/01/2009 31/12/2500 LIBEN Aromatic polycarboxylic acids, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. esters of orthophthalic acid, phthalic anhydride, terephthalic acid and its salts, dimethyl terephthalate, ester or anhydride of tetrabromophthalic acid, benzene-1,2,4-tricarboxylic acid, isophthaloyl dichloride containing by weight <= 0,8% of terephthaloyl dichloride, naphthalene-1,4,5,8-tetracarboxylic acid, tetrachlorophthalic anhydride and sodium 3,5-bis"methoxycarbonyl"benzenesulphonate) 01/01/2009 31/12/2500 -2917S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2917 and SITC section 5 01/01/1997 31/12/2500 -2917S513 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2917 and SITC group 513 01/01/1997 31/12/2500 -2918 01/01/1988 31/12/2500 LIBEN Carboxylic acids with additional oxygen function and their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -291811 01/01/1988 31/12/2500 LIBEN Lactic acid, its salts and esters (excl. inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -29181100 01/01/1988 31/12/2006 LIBEN Lactic acid, its salts and esters 01/01/1988 31/12/2006 -29181100 01/01/2007 31/12/2500 LIBEN Lactic acid, its salts and esters (excl. inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -291812 01/01/1988 31/12/2500 LIBEN Tartaric acid 01/01/1988 31/12/2500 -29181200 01/01/1988 31/12/2500 LIBEN Tartaric acid 01/01/1988 31/12/2500 -291813 01/01/1988 31/12/2500 LIBEN Salts and esters of tartaric acid 01/01/1988 31/12/2500 -29181300 01/01/1988 31/12/2500 LIBEN Salts and esters of tartaric acid 01/01/1988 31/12/2500 -291814 01/01/1988 31/12/2500 LIBEN Citric acid 01/01/1988 31/12/2500 -29181400 01/01/1988 31/12/2500 LIBEN Citric acid 01/01/1988 31/12/2500 -291815 01/01/1988 31/12/2500 LIBEN Salts and esters of citric acid (excl. inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -29181500 01/01/1988 31/12/2006 LIBEN Salts and esters of citric acid 01/01/1988 31/12/2006 -29181500 01/01/2007 31/12/2500 LIBEN Salts and esters of citric acid (excl. inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -291816 01/01/1988 31/12/2500 LIBEN Gluconic acid, its salts and esters 01/01/1988 31/12/2500 -29181600 01/01/1988 31/12/2500 LIBEN Gluconic acid, its salts and esters 01/01/1988 31/12/2500 -291817 01/01/1988 31/12/2001 LIBEN Phenylglycolic acid "mandelic acid", its salts and esters 01/01/1988 31/12/2001 -291817 01/01/2017 31/12/2500 LIBEN 2,2-Diphenyl-2-hydroxyacetic acid "benzilic acid" 01/01/2017 31/12/2500 -29181700 01/01/1988 31/12/2001 LIBEN Phenylglycolic acid "mandelic acid", its salts and esters 01/01/1988 31/12/2001 -29181700 01/01/2017 31/12/2500 LIBEN 2,2-Diphenyl-2-hydroxyacetic acid "benzilic acid" 01/01/2017 31/12/2500 -291818 01/01/2007 31/12/2500 LIBEN Chlorobenzilate (ISO) 01/01/2007 31/12/2500 -29181800 01/01/2007 31/12/2500 LIBEN Chlorobenzilate (ISO) 01/01/2007 31/12/2500 -291819 01/01/1988 31/12/2500 LIBEN Carboxylic acids with additional oxygen function and their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. lactic acid, tartaric acid, citric acid, gluconic acid and their salts and esters, and chlorobenzilate (ISO)) 01/01/1988 31/12/2500 -29181910 01/01/1988 31/12/1997 LIBEN Malic acid, its salts and esters 01/01/1988 31/12/1997 -29181930 01/01/1988 31/12/2500 LIBEN Cholic acid and 3-alpha, 12-alpha-dihydroxy-5-beta-cholan-24-oic acid "deoxycholic acid", their salts and esters 01/01/1988 31/12/2500 -29181940 01/01/1997 31/12/2500 LIBEN 2,2-Bis"hydroxymethyl"propionic acid 01/01/1997 31/12/2500 -29181950 01/01/2010 31/12/2016 LIBEN 2,2-Diphenyl-2-hydroxyacetic acid (benzilic acid) 01/01/2010 31/12/2016 -29181980 01/01/1997 31/12/1997 LIBEN Carboxylic acids with additional oxygen function and their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. lactic acid, tartaric acid, citric acid, gluconic acid, phenylglycolic acid "mandelic acid", malic acid, cholic acid, 3-alpha, 12-alpha-dihydroxy-5-beta-cholan-24-oic acid "deoxycholic acid" and their salts and esters and 2,2-bis"hydroxymethyl"propionic acid) 01/01/1997 31/12/1997 -29181980 01/01/2002 31/12/2006 LIBEN Carboxylic acids with additional oxygen function and their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. lactic acid, tartaric acid, citric acid, gluconic acid, cholic acid, 3-alpha, 12-alpha-dihydroxy-5-beta-cholan-24-oic acid "deoxycholic acid" and their salts and esters and 2,2-bis"hydroxymethyl"propionic acid) 01/01/2002 31/12/2006 -29181985 01/01/2007 31/12/2009 LIBEN Carboxylic acids with additional oxygen function and their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. lactic acid, tartaric acid, citric acid, gluconic acid, cholic acid, 3-alpha, 12-alpha-dihydroxy-5-beta-cholan-24-oic acid "deoxycholic acid" and their salts and esters, and 2,2-bis"hydroxymethyl"propionic acid and chlorobenzilate (ISO)) 01/01/2007 31/12/2009 -29181990 01/01/1988 31/12/1996 LIBEN Carboxylic acids with additional oxygen function and their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. lactic acid, tartaric acid, citric acid, gluconic acid, phenylglycolic acid "mandelic acid", malic acid, cholic acid, 3-alpha, 12-alpha-dihydroxy-5-beta-cholan-24-oic acid "deoxycholic acid" and their salts and esters) 01/01/1988 31/12/1996 -29181998 01/01/2010 31/12/2500 LIBEN Carboxylic acids with alcohol function but without other oxygen function and their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. lactic acid, tartaric acid, citric acid, gluconic acid, cholic acid, 3-alpha, 12-alpha-dihydroxy-5-beta-cholan-24-oic acid "deoxycholic acid" and their salts and esters, and 2,2-bis"hydroxymethyl"propionic acid and chlorobenzilate (ISO) and 2,2-Diphenyl-2-hydroxyacetic acid (benzilic acid)) 01/01/2010 31/12/2500 -29181999 01/01/1998 31/12/2001 LIBEN Carboxylic acids with additional oxygen function and their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. lactic acid, tartaric acid, citric acid, gluconic acid, phenylglycolic acid "mandelic acid", cholic acid, 3-alpha, 12-alpha-dihydroxy-5-beta-cholan-24-oic acid "deoxycholic acid" and their salts and esters and 2,2-bis"hydroxymethyl"propionic acid) 01/01/1998 31/12/2001 -291821 01/01/1988 31/12/2500 LIBEN Salicylic acid and its salts (excl. inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -29182100 01/01/1988 31/12/2006 LIBEN Salicylic acid and its salts 01/01/1988 31/12/2006 -29182100 01/01/2007 31/12/2500 LIBEN Salicylic acid and its salts (excl. inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -291822 01/01/1988 31/12/2500 LIBEN o-Acetylsalicylic acid, its salts and esters 01/01/1988 31/12/2500 -29182200 01/01/1988 31/12/2500 LIBEN o-Acetylsalicylic acid, its salts and esters 01/01/1988 31/12/2500 -291823 01/01/1988 31/12/2500 LIBEN Esters of salicylic acid and their salts (excl. o-acetylsalicylic acid, its salts and esters) 01/01/1988 31/12/2500 -29182300 01/01/2009 31/12/2500 LIBEN Esters of salicylic acid and their salts (excl. o-acetylsalicylic acid, its salts and esters) 01/01/2009 31/12/2500 -29182310 01/01/1988 31/12/2008 LIBEN Methyl salicylate and phenyl salicylate "salol" 01/01/1988 31/12/2008 -29182390 01/01/1988 31/12/2008 LIBEN Esters of salicylic acid and their salts (excl. methyl salicylate and phenyl salicylate "salol") 01/01/1988 31/12/2008 -291829 01/01/1988 31/12/2500 LIBEN Carboxylic acids with phenol function but without other oxygen function, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. salicylic acid and o-Acetylsalicylic acid, and their salts and esters) 01/01/1988 31/12/2500 -29182900 01/01/2009 31/12/2500 LIBEN Carboxylic acids with phenol function but without other oxygen function, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. salicylic acid and o-Acetylsalicylic acid, and their salts and esters) 01/01/2009 31/12/2500 -29182910 01/01/1988 31/12/2008 LIBEN Sulphosalicylic acids, hydroxynaphthoic acids, their salts and esters 01/01/1988 31/12/2008 -29182930 01/01/1988 31/12/2008 LIBEN 4-Hydroxybenzoic acid, its salts and esters 01/01/1988 31/12/2008 -29182950 01/01/1988 31/12/2003 LIBEN gallic acid "3,4,5-trihydroxybenzoic acid", its salts and esters 01/01/1988 31/12/2003 -29182980 01/01/2004 31/12/2008 LIBEN Carboxylic acids with phenol function (but without other oxygen function) their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. salicylic acid, o-Acetylsalicylic acid, sulphosalicylic acids, hydroxynaphthoic acids and 4-Hydroxybenzoic acid andits salts and esters) 01/01/2004 31/12/2008 -29182990 01/01/1988 31/12/2003 LIBEN Carboxylic acids with phenol function (but without other oxygen function) their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. salicylic acid, o-Acetylsalicylic acid, sulphosalicylic acids, hydroxynaphthoic acids, 4-Hydroxybenzoic acid, gallic acid "3,4,5-trihydroxybenzoic acid", and their salts and esters) 01/01/1988 31/12/2003 -291830 01/01/1988 31/12/2500 LIBEN Carboxylic acids with aldehyde or ketone function but without other oxygen function, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -29183000 01/01/1988 31/12/2500 LIBEN Carboxylic acids with aldehyde or ketone function but without other oxygen function, their anhydrides, halides, peroxides, peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -291890 01/01/1988 31/12/2006 LIBEN Carboxylic acids with additional oxygen function and their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. only with alcohol, phenol, aldehyde or ketone function) 01/01/1988 31/12/2006 -29189000 01/01/1988 31/12/1996 LIBEN Carboxylic acids with additional oxygen function and their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. only with alcohol, phenol, aldehyde or ketone function) 01/01/1988 31/12/1996 -29189010 01/01/1997 31/12/2006 LIBEN 2,6-Dimethoxybenzoic acid 01/01/1997 31/12/2006 -29189020 01/01/1997 31/12/2006 LIBEN Dicamba (ISO) 01/01/1997 31/12/2006 -29189030 01/01/1997 31/12/2006 LIBEN Sodium phenoxyacetate 01/01/1997 31/12/2006 -29189090 01/01/1997 31/12/2006 LIBEN Carboxylic acids with additional oxygen function, their anhydrides, halides, peroxides and peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. only with alcohol, phenol, aldehyde or ketone function, and 2,6-dimethoxybenzoic acid, dicamba (ISO) and sodium phenoxyacetate) 01/01/1997 31/12/2006 -291891 01/01/2007 31/12/2500 LIBEN 2,4,5-T (ISO) "2,4,5-trichlorophenoxyacetic acid", its salts and esters 01/01/2007 31/12/2500 -29189100 01/01/2007 31/12/2500 LIBEN 2,4,5-T (ISO) "2,4,5-trichlorophenoxyacetic acid", its salts and esters 01/01/2007 31/12/2500 -291899 01/01/2007 31/12/2500 LIBEN Carboxylic acids with additional oxygen function and their anhydrides, halides, peroxides and peroxyacids; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. only with alcohol, phenol, aldehyde or ketone function, and 2,4,5-T (ISO) [2,4,5-trichlorophenoxyacetic acid] and its salts and esters) 01/01/2007 31/12/2500 -29189910 01/01/2007 31/12/2008 LIBEN 2,6-Dimethoxybenzoic acid 01/01/2007 31/12/2008 -29189920 01/01/2007 31/12/2008 LIBEN Dicamba (ISO) 01/01/2007 31/12/2008 -29189930 01/01/2007 31/12/2008 LIBEN Sodium phenoxyacetate 01/01/2007 31/12/2008 -29189940 01/01/2009 31/12/2500 LIBEN 2,6-Dimethoxybenzoic acid; dicamba (ISO); sodium phenoxyacetate 01/01/2009 31/12/2500 -29189990 01/01/2007 31/12/2500 LIBEN Carboxylic acids with additional oxygen function, their anhydrides, halides, peroxides and peroxyacids and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. only with alcohol, phenol, aldehyde or ketone function, and 2,6-dimethoxybenzoic acid, dicamba (ISO), sodium phenoxyacetate, and 2,4,5-T (ISO) [2,4,5-trichlorophenoxyacetic acid] and its salts and esters) 01/01/2007 31/12/2500 -2918S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2918 and SITC section 5 01/01/1997 31/12/2500 -2918S513 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2918 and SITC group 513 01/01/1997 31/12/2500 -2919 01/01/1988 31/12/2500 LIBEN Phosphoric esters and their salts, incl. lactophosphates; their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2500 -291900 01/01/1988 31/12/2006 LIBEN Phosphoric esters and their salts, incl. lactophosphates; their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2006 -29190010 01/01/1993 31/12/2006 LIBEN Tributyl phosphates, triphenyl phosphates, tritolyl phosphates, trixylyl phosphates, and tris"2-chlorethyl" phosphate 01/01/1993 31/12/2006 -29190011 01/01/1988 31/12/1992 LIBEN Tritolyl phosphates 01/01/1988 31/12/1992 -29190019 01/01/1988 31/12/1992 LIBEN Tributyl phosphates, triphenyl phosphate, trixylyl phosphates and tris '2-chloroethyl' phosphate 01/01/1988 31/12/1992 -29190090 01/01/1993 31/12/2006 LIBEN Phosphoric esters and their salts, incl. lactophosphates; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. tibutyl phosphates, triphenyl phosphates, tritolyl phosphates, trixylyl phosphates and tris"2-chlorethyl" phosphate) 01/01/1993 31/12/2006 -29190091 01/01/1988 31/12/1992 LIBEN Glycerophosphoric acids and glycerophosphates; o-methoxyphenyl phosphate 'guaiacol phosphate' 01/01/1988 31/12/1992 -29190099 01/01/1988 31/12/1992 LIBEN Phosphoric esters and their salts, incl. lactophosphates; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. tritolyl phosphates, tributyl phosphates, triphenyl phosphate, trixylyl phosphates, tris '2-chloroethyl' phosphate, glycerophosphoric acids and glycerophosphates, and o-methoxyphenyl phosphate 'guaiacol phosphate') 01/01/1988 31/12/1992 -291910 01/01/2007 31/12/2500 LIBEN Tris"2,3-dibromopropyl" phosphate 01/01/2007 31/12/2500 -29191000 01/01/2007 31/12/2500 LIBEN Tris"2,3-dibromopropyl" phosphate 01/01/2007 31/12/2500 -291990 01/01/2007 31/12/2500 LIBEN Phosphoric esters and their salts, incl. lactophosphates; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. tris"2,3-dibromopropyl" phosphate) 01/01/2007 31/12/2500 -29199000 01/01/2009 31/12/2500 LIBEN Phosphoric esters and their salts, incl. lactophosphates; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. tris"2,3-dibromopropyl" phosphate) 01/01/2009 31/12/2500 -29199010 01/01/2007 31/12/2008 LIBEN Tributyl phosphates, triphenyl phosphates, tritolyl phosphates, trixylyl phosphates, tris"2-chlorethyl" phosphate 01/01/2007 31/12/2008 -29199090 01/01/2007 31/12/2008 LIBEN Phosphoric esters and their salts, incl. lactophosphates; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. tris"2,3-dibromopropyl" phosphate, tributyl phosphates, triphenyl phosphates, tritolyl phosphates, trixylyl phosphates and tris"2-chlorethyl" phosphate) 01/01/2007 31/12/2008 -2920 01/01/1988 31/12/2500 LIBEN Esters of inorganic acids of non-metals and their salts; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. esters of hydrogen halides and of phosphoric esters, their salts and their halogenated, sulphonated, nitrated or nitrosated derivatives) 01/01/1988 31/12/2500 -292010 01/01/1988 31/12/2006 LIBEN Thiophosphoric esters "phosphorothioates" and their salts; their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2006 -29201000 01/01/1988 31/12/2006 LIBEN Thiophosphoric esters "phosphorothioates" and their salts; their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2006 -292011 01/01/2007 31/12/2500 LIBEN Parathion (ISO) and parathion-methyl (ISO) "methyl-parathion" 01/01/2007 31/12/2500 -29201100 01/01/2007 31/12/2500 LIBEN Parathion (ISO) and parathion-methyl (ISO) "methyl-parathion" 01/01/2007 31/12/2500 -292019 01/01/2007 31/12/2500 LIBEN Thiophosphoric esters "phosphorothioates" and their salts; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. parathion (ISO) and parathion-methyl (ISO) [methyl-parathion]) 01/01/2007 31/12/2500 -29201900 01/01/2007 31/12/2500 LIBEN Thiophosphoric esters "phosphorothioates" and their salts; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. parathion (ISO) and parathion-methyl (ISO) [methyl-parathion]) 01/01/2007 31/12/2500 -292021 01/01/2017 31/12/2500 LIBEN Dimethyl phosphite 01/01/2017 31/12/2500 -29202100 01/01/2017 31/12/2500 LIBEN Dimethyl phosphite 01/01/2017 31/12/2500 -292022 01/01/2017 31/12/2500 LIBEN Diethyl phosphite 01/01/2017 31/12/2500 -29202200 01/01/2017 31/12/2500 LIBEN Diethyl phosphite 01/01/2017 31/12/2500 -292023 01/01/2017 31/12/2500 LIBEN Trimethyl phosphite 01/01/2017 31/12/2500 -29202300 01/01/2017 31/12/2500 LIBEN Trimethyl phosphite 01/01/2017 31/12/2500 -292024 01/01/2017 31/12/2500 LIBEN Triethyl phosphite 01/01/2017 31/12/2500 -29202400 01/01/2017 31/12/2500 LIBEN Triethyl phosphite 01/01/2017 31/12/2500 -292029 01/01/2017 31/12/2500 LIBEN Phosphite esters and their salts; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. dimethyl, diethyl, trimethyl and triethyl phosphites) 01/01/2017 31/12/2500 -29202900 01/01/2017 31/12/2500 LIBEN Phosphite esters and their salts; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. dimethyl, diethyl, trimethyl and triethyl phosphites) 01/01/2017 31/12/2500 -292030 01/01/2017 31/12/2500 LIBEN Endosulfan (ISO) 01/01/2017 31/12/2500 -29203000 01/01/2017 31/12/2500 LIBEN Endosulfan (ISO) 01/01/2017 31/12/2500 -292090 01/01/1988 31/12/2500 LIBEN Esters of inorganic acids of non-metals and their salts; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. esters of hydrogen halides, phosphoric esters, phosphite esters, and thiophosphoric esters "phosphorothioates", their salts and their halogenated, sulphonated, nitrated or nitrosated derivatives, endosulfan (ISO) and inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -29209010 01/01/1988 31/12/2006 LIBEN Sulphuric esters and carbonic esters and their salts, and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/2006 -29209010 01/01/2007 31/12/2500 LIBEN Sulphuric esters and carbonic esters and their salts, and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -29209020 01/01/1990 31/12/2016 LIBEN Dimethyl phosphonate "dimethyl phosphite" 01/01/1990 31/12/2016 -29209030 01/01/1990 31/12/2016 LIBEN Trimethyl phosphite "trimethoxyphosphine" 01/01/1990 31/12/2016 -29209040 01/01/1998 31/12/2016 LIBEN Triethyl phosphite 01/01/1998 31/12/2016 -29209050 01/01/1998 31/12/2016 LIBEN Diethyl phosphonate "diethyl hydrogenphosphite" "diethyl phosphite" 01/01/1998 31/12/2016 -29209070 01/01/2017 31/12/2500 LIBEN Esters of inorganic acids of non-metals and their salts; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. esters of hydrogen halides, phosphoric esters, phosphite esters, sulphuric esters, carbonic esters and thiophosphoric esters "phosphorothioates" and their salts, and their halogenated, sulphonated, nitrated or nitrosated derivatives, and endosulfan (ISO)) 01/01/2017 31/12/2500 -29209080 01/01/1990 31/12/1997 LIBEN Esters of inorganic acids and their salts; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. esters of hydrogen halides, phosphoric esters, sulphuric esters, carbonic esters and thiophosphoric esters "phosphorothioates" and their salts, and their halogenated, sulphonated, nitrated or nitrosated derivatives, dimethyl phosphonate "dimethyl phosphite" and trimethyl phosphite "trimethoxyphosphine") 01/01/1990 31/12/1997 -29209085 01/01/1998 31/12/2016 LIBEN Esters of inorganic acids of non-metals and their salts; their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. esters of hydrogen halides, phosphoric esters, sulphuric esters, carbonic esters and thiophosphoric esters "phosphorothioates" and their salts, and their halogenated, sulphonated, nitrated or nitrosated derivatives, dimethyl phosphonate "dimethyl phosphite", trimethyl phosphite "trimethoxyphosphine", triethyl phosphite and diethyl phosphonate "diethyl hydrogenphosphite" "diethyl phosphite") 01/01/1998 31/12/2016 -29209090 01/01/1988 31/12/1989 LIBEN Esters of other inorganic acids and their salts halogenated, sulphonated, nitrated or nitrosated derivatives (excl. esters of hydrogen halides, and triophosphoric esters 'phosphorothioates', sulphuric esters and carbonic esters and their salts, and their halogenated, sulphonated, nitrated or nitrosated derivatives) 01/01/1988 31/12/1989 -2920S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2920 and SITC section 5 01/01/1997 31/12/2500 -2920S516 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2920 and SITC group 516 01/01/1997 31/12/2500 -2921 01/01/1988 31/12/2500 LIBEN Amine-function compounds 01/01/1988 31/12/2500 -292111 01/01/1988 31/12/2500 LIBEN Methylamine, dimethylamine or trimethylamine and their salts 01/01/1988 31/12/2500 -29211100 01/01/2009 31/12/2500 LIBEN Methylamine, dimethylamine or trimethylamine and their salts 01/01/2009 31/12/2500 -29211110 01/01/1988 31/12/1988 LIBEN Methylamine, dimethylamine or trimethylamine 01/01/1988 31/12/1988 -29211110 01/01/1993 31/12/2008 LIBEN Methylamine or di- or trimethylamine (excl. their salts) 01/01/1993 31/12/2008 -29211111 01/01/1989 31/12/1992 LIBEN Methylamine, dimethylamine or trimethylamine, in aqueous solution 01/01/1989 31/12/1992 -29211119 01/01/1989 31/12/1992 LIBEN Methylamine, dimethylamine or trimethylamine (other than in aqueous solution) 01/01/1989 31/12/1992 -29211190 01/01/1988 31/12/2008 LIBEN Salts of methylamine, di- or trimethylamine 01/01/1988 31/12/2008 -292112 01/01/1988 31/12/2006 LIBEN Diethylamine and its salts 01/01/1988 31/12/2006 -292112 01/01/2017 31/12/2500 LIBEN 2-"N,N-Dimethylamino"ethylchloride hydrochloride 01/01/2017 31/12/2500 -29211200 01/01/1988 31/12/2006 LIBEN Diethylamine and its salts 01/01/1988 31/12/2006 -29211200 01/01/2017 31/12/2500 LIBEN 2-"N,N-Dimethylamino"ethylchloride hydrochloride 01/01/2017 31/12/2500 -292113 01/01/2017 31/12/2500 LIBEN 2-"N,N-Diethylamino"ethylchloride hydrochloride 01/01/2017 31/12/2500 -29211300 01/01/2017 31/12/2500 LIBEN 2-"N,N-Diethylamino"ethylchloride hydrochloride 01/01/2017 31/12/2500 -292114 01/01/2017 31/12/2500 LIBEN 2-(N,N-Diisopropylamino)ethylchloride hydrochloride 01/01/2017 31/12/2500 -29211400 01/01/2017 31/12/2500 LIBEN 2-(N,N-Diisopropylamino)ethylchloride hydrochloride 01/01/2017 31/12/2500 -292119 01/01/1988 31/12/2500 LIBEN Acyclic monoamines and their derivatives; salts thereof (excl. methylamine, dimethylamine, trimethylamine, and their salts) 01/01/1988 31/12/2500 -29211910 01/01/1988 31/12/2008 LIBEN Triethylamine and its salts 01/01/1988 31/12/2008 -29211930 01/01/1988 31/12/2008 LIBEN Isopropylamine and its salts 01/01/1988 31/12/2008 -29211940 01/01/1997 31/12/2500 LIBEN 1,1,3,3-Tetramethylbutylamine 01/01/1997 31/12/2500 -29211950 01/01/2007 31/12/2500 LIBEN Diethylamine and its salts 01/01/2007 31/12/2500 -29211960 01/01/2010 31/12/2016 LIBEN 2-(N,N-Diethylamino)ethyl chloride hydrochloride, 2-(N,N-diisopropylamino)ethyl chloride hydrochloride and 2-(N,N-dimethylamino)ethyl chloride hydrochloride 01/01/2010 31/12/2016 -29211980 01/01/1997 31/12/2008 LIBEN Acyclic monoamines and their derivatives; salts thereof (excl. methylamine, dimethylamine, trimethylamine, diethylamine, triethylamine, isopropylamine, and their salts, and 1,1,3,3-tetramethylbutylamine) 01/01/1997 31/12/2008 -29211985 01/01/2009 31/12/2009 LIBEN Acyclic monoamines and their derivatives; salts thereof (excl. methylamine, dimethylamine, trimethylamine, diethylamine, and their salts, and 1,1,3,3-tetramethylbutylamine) 01/01/2009 31/12/2009 -29211990 01/01/1988 31/12/1996 LIBEN Acyclic monoamines and their derivatives; salts thereof (excl. methylamine, dimethylamine, trimethylamine, diethylamine, triethylamine, isopropylamine and their salts) 01/01/1988 31/12/1996 -29211999 01/01/2010 31/12/2500 LIBEN Acyclic monoamines and their derivatives; salts thereof (excl. methylamine, dimethylamine, trimethylamine, diethylamine, and their salts, 1,1,3,3-tetramethylbutylamine, 2-(N,N-Diethylamino)ethyl chloride hydrochloride, 2-(N,N-diisopropylamino)ethyl chloride hydrochloride and 2-(N,N-dimethylamino)ethyl chloride hydrochloride) 01/01/2010 31/12/2500 -292121 01/01/1988 31/12/2500 LIBEN Ethylenediamine and its salts 01/01/1988 31/12/2500 -29212100 01/01/1988 31/12/2500 LIBEN Ethylenediamine and its salts 01/01/1988 31/12/2500 -292122 01/01/1988 31/12/2500 LIBEN Hexamethylenediamine and its salts 01/01/1988 31/12/2500 -29212200 01/01/1988 31/12/2500 LIBEN Hexamethylenediamine and its salts 01/01/1988 31/12/2500 -292129 01/01/1988 31/12/2500 LIBEN Acyclic polyamines and their derivatives; salts thereof (excl. ethylenediamine and hexamethylenediamine, and their salts) 01/01/1988 31/12/2500 -29212900 01/01/1988 31/12/2500 LIBEN Acyclic polyamines and their derivatives; salts thereof (excl. ethylenediamine and hexamethylenediamine, and their salts) 01/01/1988 31/12/2500 -292130 01/01/1988 31/12/2500 LIBEN Cyclanic, cyclenic or cycloterpenic mono- or polyamines, and their derivatives; salts thereof 01/01/1988 31/12/2500 -29213010 01/01/1988 31/12/2500 LIBEN Cyclohexylamine and cyclohexyldimethylamine, and their salts 01/01/1988 31/12/2500 -29213090 01/01/1988 31/12/1996 LIBEN Cyclanic, cyclenic or cycloterpenic mono- or polyamines, and their derivatives; salts thereof (excl. cyclohexylamine and cyclohexyldimethylamine, and their salts) 01/01/1988 31/12/1996 -29213091 01/01/1997 31/12/2500 LIBEN Cyclohex-1,3-ylenediamine "1,3-diaminocyclohexane" 01/01/1997 31/12/2500 -29213099 01/01/1997 31/12/2500 LIBEN Cyclanic, cyclenic or cycloterpenic mono- or polyamines, and their derivatives; salts thereof (excl. cyclohexylamine, cyclohexyldimethylamine and their salts, and cyclohex-1,3-ylenediamine "1,3-diaminocyclohexane") 01/01/1997 31/12/2500 -292141 01/01/1988 31/12/2500 LIBEN Aniline and its salts (excl. inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -29214100 01/01/1988 31/12/2006 LIBEN Aniline and its salts 01/01/1988 31/12/2006 -29214100 01/01/2007 31/12/2500 LIBEN Aniline and its salts (excl. inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -292142 01/01/1988 31/12/2500 LIBEN Aniline derivatives and their salts 01/01/1988 31/12/2500 -29214200 01/01/2009 31/12/2500 LIBEN Aniline derivatives and their salts 01/01/2009 31/12/2500 -29214210 01/01/1988 31/12/2008 LIBEN Halogenated, sulphonated, nitrated and nitrosated aniline derivatives and their salts 01/01/1988 31/12/2008 -29214290 01/01/1988 31/12/2008 LIBEN Aniline derivatives and their salts (excl. halogenated, sulphonated, nitrated and nitrosated aniline derivatives and their salts) 01/01/1988 31/12/2008 -292143 01/01/1988 31/12/2500 LIBEN Toluidines and their derivatives; salts thereof 01/01/1988 31/12/2500 -29214300 01/01/1999 31/12/2500 LIBEN Toluidines and their derivatives; salts thereof 01/01/1999 31/12/2500 -29214310 01/01/1988 31/12/1998 LIBEN Toluidines and their salts 01/01/1988 31/12/1998 -29214390 01/01/1988 31/12/1998 LIBEN Derivatives of toluidines and their salts 01/01/1988 31/12/1998 -292144 01/01/1988 31/12/2500 LIBEN Diphenylamine and its derivatives; salts thereof 01/01/1988 31/12/2500 -29214400 01/01/1988 31/12/2500 LIBEN Diphenylamine and its derivatives; salts thereof 01/01/1988 31/12/2500 -292145 01/01/1988 31/12/2500 LIBEN 1-Naphthylamine "alpha-naphthylamine", 2-naphthylamine "beta-naphthylamine" and their derivatives; salts thereof 01/01/1988 31/12/2500 -29214500 01/01/1988 31/12/2500 LIBEN 1-Naphthylamine "alpha-naphthylamine", 2-naphthylamine "beta-naphthylamine" and their derivatives; salts thereof 01/01/1988 31/12/2500 -292146 01/01/2002 31/12/2500 LIBEN Amfetamine (INN), benzfetamine (INN), dexamfetamine (INN), etilamfetamine (INN), fencamfamine (INN), lefetamine (INN), levamfetamine (INN), mefenorex (INN) and phentermine (INN), and salts thereof 01/01/2002 31/12/2500 -29214600 01/01/2002 31/12/2500 LIBEN Amfetamine (INN), benzfetamine (INN), dexamfetamine (INN), etilamfetamine (INN), fencamfamine (INN), lefetamine (INN), levamfetamine (INN), mefenorex (INN) and phentermine (INN), and salts thereof 01/01/2002 31/12/2500 -292149 01/01/1988 31/12/2500 LIBEN Aromatic monoamines and derivatives; salts thereof (excl. aniline, toluidines, diphenylamine, 1-naphthylamine "alpha-naphthylamine", 2-naphthylamine "beta-naphthylamine" and their derivatives, and salts thereof, and amfetamine (INN), benzfetamine (INN), dexamfetamine (INN), etilamfetamine (INN), fencamfamine (INN), lefetamine (INN), levamfetamine (INN), mefenorex (INN) and phentermine (INN), and salts thereof) 01/01/1988 31/12/2500 -29214900 01/01/2009 31/12/2500 LIBEN Aromatic monoamines and derivatives; salts thereof (excl. aniline, toluidines, diphenylamine, 1-naphthylamine "alpha-naphthylamine", 2-naphthylamine "beta-naphthylamine" and their derivatives, and salts thereof, and amfetamine (INN), benzfetamine (INN), dexamfetamine (INN), etilamfetamine (INN), fencamfamine (INN), lefetamine (INN), levamfetamine (INN), mefenorex (INN) and phentermine (INN), and salts thereof) 01/01/2009 31/12/2500 -29214910 01/01/1988 31/12/2008 LIBEN Xylidines and their derivatives; salts thereof 01/01/1988 31/12/2008 -29214980 01/01/2002 31/12/2008 LIBEN Aromatic monoamines and derivatives; salts thereof (excl. aniline, toluidines, diphenylamine, 1-naphthylamine "alpha-naphthylamine", 2-naphthylamine "beta-naphthylamine", xylidines and their derivatives, and salts thereof, and amfetamine (INN), benzfetamine (INN), dexamfetamine (INN), etilamfetamine (INN), fencamfamine (INN), lefetamine (INN), levamfetamine (INN), mefenorex (INN) and phentermine (INN), and salts thereof) 01/01/2002 31/12/2008 -29214990 01/01/1988 31/12/2001 LIBEN Aromatic monoamines and their derivatives; salts thereof (excl. aniline, toluidines, diphenylamine, 1-naphthylamine "alpha-naphthylamine", 2-naphthylamine "betanaphthylamine", xylidines and their derivatives, and salts thereof) 01/01/1988 31/12/2001 -292151 01/01/1988 31/12/2500 LIBEN o-Phenylenediamine, m-phenylenediamine, p-phenylenediamine or diaminotoluenes and their derivatives; salts thereof 01/01/1988 31/12/2500 -29215110 01/01/1988 31/12/1996 LIBEN O-phenylenediamine, m-phenylenediamine, p-phenylenediamine, diaminotoluenes, and their halogenated, sulphonated, nitrated and nitrosated derivatives; salts thereof 01/01/1988 31/12/1996 -29215111 01/01/1997 31/12/2500 LIBEN m-Phenylenediamine of a purity by weight of >= 99% and containing <= 1% by weight of water, <= 200 mg/kg of o-phenylenediamine and <= 450 mg/kg of p-phenylenediamine 01/01/1997 31/12/2500 -29215119 01/01/1997 31/12/2500 LIBEN o-Phenylenediamine, m-phenylenediamine, p-phenylenediamine, diaminotoluenes, and their halogenated, sulphonated, nitrated and nitrosated derivatives; salts thereof (excl. m-phenylenediamine of a purity by weight of >= 99% and containing <= 1% by weight of water, <= 200 mg/kg of o-phenylenediamine and <= 450 mg/kg of p-phenylenediamine) 01/01/1997 31/12/2500 -29215190 01/01/1988 31/12/2500 LIBEN Derivatives of o-phenylenediamine, m-phenylenediamine, p-phenylenediamine or diaminotoluenes; salts thereof (excl. halogenated, sulphonated, nitrated and nitrosated derivatives, and salts thereof) 01/01/1988 31/12/2500 -292159 01/01/1988 31/12/2500 LIBEN Aromatic polyamines and their derivatives; salts thereof (excl. o-phenylenediamine, m-phenylenediamine, p-phenylenediamine or diaminotoluenes and their derivatives, and salts thereof) 01/01/1988 31/12/2500 -29215900 01/01/1988 31/12/1996 LIBEN Aromatic polyamines and their derivatives; salts thereof (excl. o-phenylenediamine, m-phenylenediamine, p-phenylenediamine or diaminotoluenes and their derivatives, and salts thereof) 01/01/1988 31/12/1996 -29215910 01/01/1997 31/12/2008 LIBEN m-Phenylenebis"methylamine" 01/01/1997 31/12/2008 -29215920 01/01/1997 31/12/2008 LIBEN 2,2'-Dichloro-4,4'-methylenedianiline 01/01/1997 31/12/2008 -29215930 01/01/1997 31/12/2008 LIBEN 4,4'-Bi-o-toluidine 01/01/1997 31/12/2008 -29215940 01/01/1997 31/12/2008 LIBEN 1,8-Naphthylenediamine 01/01/1997 31/12/2008 -29215950 01/01/2009 31/12/2500 LIBEN m-Phenylenebis(methylamine); 2,2'-dichloro-4,4'-methylenedianiline; 4,4'-bi-o-toluidine; 1,8-naphthylenediamine 01/01/2009 31/12/2500 -29215990 01/01/1997 31/12/2500 LIBEN Aromatic polyamines and their derivatives; salts thereof (excl. o-phenylenediamine, m-phenylenediamine, p-phenylenediamine or diaminotoluenes and their derivatives, and salts thereof, m-phenylenebis"methylamine", 2,2'-dichloro-4,4'-methylenedianiline, 4,4'-bi-o-toluidine and 1,8-naphthylenediamine) 01/01/1997 31/12/2500 -2921S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2921 and SITC section 5 01/01/1997 31/12/2500 -2921S514 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2921 and SITC group 514 01/01/1997 31/12/2500 -2922 01/01/1988 31/12/2500 LIBEN Oxygen-function amino-compounds 01/01/1988 31/12/2500 -292211 01/01/1988 31/12/2500 LIBEN Monoethanolamine and its salts 01/01/1988 31/12/2500 -29221100 01/01/1988 31/12/2500 LIBEN Monoethanolamine and its salts 01/01/1988 31/12/2500 -292212 01/01/1988 31/12/2500 LIBEN Diethanolamine and its salts 01/01/1988 31/12/2500 -29221200 01/01/1988 31/12/2500 LIBEN Diethanolamine and its salts 01/01/1988 31/12/2500 -292213 01/01/1988 31/12/2016 LIBEN Triethanolamine and its salts 01/01/1988 31/12/2016 -29221300 01/01/1988 31/12/1997 LIBEN Triethanolamine and its salts 01/01/1988 31/12/1997 -29221310 01/01/1998 31/12/2016 LIBEN Triethanolamine 01/01/1998 31/12/2016 -29221390 01/01/1998 31/12/2016 LIBEN Salts of triethanolamine 01/01/1998 31/12/2016 -292214 01/01/2002 31/12/2500 LIBEN Dextropropoxyphene (INN) and its salts 01/01/2002 31/12/2500 -29221400 01/01/2002 31/12/2500 LIBEN Dextropropoxyphene (INN) and its salts 01/01/2002 31/12/2500 -292215 01/01/2017 31/12/2500 LIBEN Triethanolamine 01/01/2017 31/12/2500 -29221500 01/01/2017 31/12/2500 LIBEN Triethanolamine 01/01/2017 31/12/2500 -292216 01/01/2017 31/12/2500 LIBEN Diethanolammonium perfluorooctane sulphonate 01/01/2017 31/12/2500 -29221600 01/01/2017 31/12/2500 LIBEN Diethanolammonium perfluorooctane sulphonate 01/01/2017 31/12/2500 -292217 01/01/2017 31/12/2500 LIBEN Methyldiethanolamine and ethyldiethanolamine 01/01/2017 31/12/2500 -29221700 01/01/2017 31/12/2500 LIBEN Methyldiethanolamine and ethyldiethanolamine 01/01/2017 31/12/2500 -292218 01/01/2017 31/12/2500 LIBEN 2-"N,N-Diisopropylamino"ethanol 01/01/2017 31/12/2500 -29221800 01/01/2017 31/12/2500 LIBEN 2-"N,N-Diisopropylamino"ethanol 01/01/2017 31/12/2500 -292219 01/01/1988 31/12/2500 LIBEN Amino-alcohols, their ethers and esters; salts thereof (other than those containing > one kind of oxygen function and excl. monoethanolamine, diethanolamine, dextropropoxyphene (INN), their salts, triethanolamine, diethanolammonium perfluorooctane sulphonate, methyldiethanolamine, ethyldiethanolamine and 2-(N,N-Diisopropylamino)ethanol) 01/01/1988 31/12/2500 -29221900 01/01/1988 31/12/1997 LIBEN Amino-alcohols, their ethers and esters, other than those containing > one kind of oxygen function; salts thereof (excl. monoethanolamine, diethanolamine, triethanolamine and their salts) 01/01/1988 31/12/1997 -29221900 01/01/2017 31/12/2500 LIBEN Amino-alcohols, their ethers and esters; salts thereof (other than those containing > one kind of oxygen function and excl. monoethanolamine, diethanolamine, dextropropoxyphene (INN), their salts, triethanolamine, diethanolammonium perfluorooctane sulphonate, methyldiethanolamine, ethyldiethanolamine and 2-(N,N-Diisopropylamino)ethanol) 01/01/2017 31/12/2500 -29221910 01/01/1998 31/12/2016 LIBEN N-Ethyldiethanolamine 01/01/1998 31/12/2016 -29221920 01/01/1998 31/12/2016 LIBEN 2,2'-Methyliminodiethanol "N-methyldiethanolamine" 01/01/1998 31/12/2016 -29221930 01/01/2010 31/12/2016 LIBEN 2-(N,N-Diisopropylamino)ethanol 01/01/2010 31/12/2016 -29221980 01/01/2002 31/12/2009 LIBEN Amino-alcohols, their ethers and esters; salts thereof (other than those containing > one kind of oxygen function and excl. monoethanolamine, diethanolamine, triethanolamine, dextropropoxyphene (INN) and their salts, and N-ethyldiethanolamine and 2,2'-methyliminodiethanol "N-methyldiethanolamine") 01/01/2002 31/12/2009 -29221985 01/01/2010 31/12/2016 LIBEN Amino-alcohols, their ethers and esters; salts thereof (other than those containing > one kind of oxygen function and excl. monoethanolamine, diethanolamine, triethanolamine, dextropropoxyphene (INN) and their salts, and N-ethyldiethanolamine and 2,2'-methyliminodiethanol "N-methyldiethanolamine" and 2-(N,N-Diisopropylamino)ethanol) 01/01/2010 31/12/2016 -29221990 01/01/1998 31/12/2001 LIBEN Amino-alcohols, their ethers and esters; salts thereof (excl. those containing > one kind of oxygen function, monoethanolamine, diethanolamine, triethanolamine, and their salts, and N-ethyldiethanolamine and 2,2'-methyliminodiethanol "N-methyldiethanolamine") 01/01/1998 31/12/2001 -292221 01/01/1988 31/12/2500 LIBEN Aminohydroxynaphthalenesulphonic acids and their salts 01/01/1988 31/12/2500 -29222100 01/01/1988 31/12/2500 LIBEN Aminohydroxynaphthalenesulphonic acids and their salts 01/01/1988 31/12/2500 -292222 01/01/1988 31/12/2006 LIBEN Anisidines, dianisidines, phenetidines, and their salts 01/01/1988 31/12/2006 -29222200 01/01/1988 31/12/2006 LIBEN Anisidines, dianisidines, phenetidines, and their salts 01/01/1988 31/12/2006 -292229 01/01/1988 31/12/2500 LIBEN Amino-naphthols and other amino-phenols, their ethers and esters; salts thereof (excl. those containing > one kind of oxygen function; aminohydroxynaphthalenesulphonic acids and their salts) 01/01/1988 31/12/2500 -29222900 01/01/1988 31/12/2006 LIBEN Amino-naphthols and other amino-phenols, their ethers and esters (excl. those containing > one kind of oxygen function; aminohydroxynaphthalenesulphonic acids, anisidines, dianisidines, phenetidines, and salts thereof) 01/01/1988 31/12/2006 -29222900 01/01/2007 31/12/2500 LIBEN Amino-naphthols and other amino-phenols, their ethers and esters; salts thereof (excl. those containing > one kind of oxygen function; aminohydroxynaphthalenesulphonic acids and their salts) 01/01/2007 31/12/2500 -292230 01/01/1988 31/12/2001 LIBEN Amino-aldehydes, amino-ketones and amino-quinones (other than those containing > one kind of oxygen function); salts thereof 01/01/1988 31/12/2001 -29223000 01/01/1988 31/12/2001 LIBEN Amino-aldehydes, amino-ketones and amino-quinones (other than those containing > one kind of oxygen function); salts thereof 01/01/1988 31/12/2001 -292231 01/01/2002 31/12/2500 LIBEN Amfepramone (INN), methadone (INN) and normethadone (INN), and salts thereof 01/01/2002 31/12/2500 -29223100 01/01/2002 31/12/2500 LIBEN Amfepramone (INN), methadone (INN) and normethadone (INN), and salts thereof 01/01/2002 31/12/2500 -292239 01/01/2002 31/12/2500 LIBEN Amino-aldehydes, amino-ketones and amino-quinones; salts thereof (excl. those containing > one kind of oxygen function, and amfepramone (INN), methadone (INN) and normethadone (INN), and salts thereof) 01/01/2002 31/12/2500 -29223900 01/01/2002 31/12/2500 LIBEN Amino-aldehydes, amino-ketones and amino-quinones; salts thereof (excl. those containing > one kind of oxygen function, and amfepramone (INN), methadone (INN) and normethadone (INN), and salts thereof) 01/01/2002 31/12/2500 -292241 01/01/1988 31/12/2500 LIBEN Lysine and its esters; salts thereof 01/01/1988 31/12/2500 -29224100 01/01/1988 31/12/2500 LIBEN Lysine and its esters; salts thereof 01/01/1988 31/12/2500 -292242 01/01/1988 31/12/2500 LIBEN Glutamic acid and its salts 01/01/1988 31/12/2500 -29224200 01/01/1988 31/12/1994 LIBEN Glutamic acid and its salts 01/01/1988 31/12/1994 -29224200 01/01/1998 31/12/2500 LIBEN Glutamic acid and its salts 01/01/1998 31/12/2500 -29224210 01/01/1995 31/12/1997 LIBEN Sodium hydrogen glutamate "monosodium glutamate" 01/01/1995 31/12/1997 -29224290 01/01/1995 31/12/1997 LIBEN Glutamic acid and its salts (excl. sodium hydrogen glutamate [monosodium glutamate]) 01/01/1995 31/12/1997 -292243 01/01/1996 31/12/2500 LIBEN Anthranilic acid and its salts 01/01/1996 31/12/2500 -29224300 01/01/1996 31/12/2500 LIBEN Anthranilic acid and its salts 01/01/1996 31/12/2500 -292244 01/01/2002 31/12/2500 LIBEN Tilidine (INN) and its salts 01/01/2002 31/12/2500 -29224400 01/01/2002 31/12/2500 LIBEN Tilidine (INN) and its salts 01/01/2002 31/12/2500 -292249 01/01/1988 31/12/2500 LIBEN Amino-acids and their esters; salts thereof (excl. those with > one kind of oxygen function, lysine and its esters, and salts thereof, and glutamic acid, anthranilic acid, tilidine (INN), and salts thereof) 01/01/1988 31/12/2500 -29224910 01/01/1988 31/12/2008 LIBEN Glycine 01/01/1988 31/12/2008 -29224920 01/01/1997 31/12/2500 LIBEN beta-Alanine 01/01/1997 31/12/2500 -29224930 01/01/1988 31/12/1992 LIBEN 4-aminobenzoic acid 'p-aminobenzoic acid' and its salts and esters 01/01/1988 31/12/1992 -29224950 01/01/1993 31/12/1995 LIBEN Anthranilic acid "2-aminobenzoic acid" and their salts 01/01/1993 31/12/1995 -29224970 01/01/1997 31/12/2001 LIBEN Amino-acids and their esters, and salts thereof (excl. those containing > one kind of oxygen function, lysine and its esters and salts thereof, glutamic acid and salts thereof, glycine and anthranilic acid and salts thereof and beta-Alanine) 01/01/1997 31/12/2001 -29224980 01/01/1993 31/12/1996 LIBEN Amino-acids and their esters and salts thereof (excl. those containing > one kind of oxygen function; lysine and its esters and salts thereof, glutamic acid and salts thereof, glycine and anthranilic acid and salts thereof) 01/01/1993 31/12/1996 -29224985 01/01/2009 31/12/2500 LIBEN Amino-acids and their esters; salts thereof (excl. those containing > one kind of oxygen function, lysine and its esters, and salts thereof, and glutamic acid, anthranilic acid, tilidine (INN) and their salts and beta-alanine) 01/01/2009 31/12/2500 -29224990 01/01/1988 31/12/1992 LIBEN Amino-acids and their esters, other than those containing more than one kind of oxygen function; salts thereof (excl. lysine and its esters, glutamic acid and salts thereof, glycine, 4-aminobenzoic acid 'p-aminobenzoic acid' and its salts and esters) 01/01/1988 31/12/1992 -29224995 01/01/2002 31/12/2008 LIBEN Amino-acids and their esters; salts thereof (excl. those containing > one kind of oxygen function, lysine and its esters, and salts thereof, and glutamic acid, anthranilic acid, tilidine (INN) and their salts and glycine and beta-alanine) 01/01/2002 31/12/2008 -292250 01/01/1988 31/12/2500 LIBEN Amino-alcohol-phenols, amino-acid-phenols and other amino-compounds with oxygen function (excl. amino-alcohols, amino-naphthols and other amino-phenols, their ethers and esters and salts thereof, amino-aldehydes, amino-ketones and amino-quinones, and salts thereof, amino-acids and their esters and salts thereof) 01/01/1988 31/12/2500 -29225000 01/01/1988 31/12/2500 LIBEN Amino-alcohol-phenols, amino-acid-phenols and other amino-compounds with oxygen function (excl. amino-alcohols, amino-naphthols and other amino-phenols, their ethers and esters and salts thereof, amino-aldehydes, amino-ketones and amino-quinones, and salts thereof, amino-acids and their esters and salts thereof) 01/01/1988 31/12/2500 -2922S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2922 and SITC section 5 01/01/1997 31/12/2500 -2922S514 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2922 and SITC group 514 01/01/1997 31/12/2500 -2923 01/01/1988 31/12/2500 LIBEN Quaternary ammonium salts and hydroxides; lecithins and other phosphoaminolipids, whether or not chemically defined 01/01/1988 31/12/2500 -292310 01/01/1988 31/12/2500 LIBEN Choline and its salts 01/01/1988 31/12/2500 -29231000 01/01/1998 31/12/2500 LIBEN Choline and its salts 01/01/1998 31/12/2500 -29231010 01/01/1988 31/12/1997 LIBEN Choline chloride 01/01/1988 31/12/1997 -29231090 01/01/1988 31/12/1997 LIBEN Choline and its salts (excl. choline chloride) 01/01/1988 31/12/1997 -292320 01/01/1988 31/12/2500 LIBEN Lecithins and other phosphoaminolipids, whether or not chemically defined 01/01/1988 31/12/2500 -29232000 01/01/1988 31/12/2500 LIBEN Lecithins and other phosphoaminolipids, whether or not chemically defined 01/01/1988 31/12/2500 -292330 01/01/2017 31/12/2500 LIBEN Tetraethylammonium perfluorooctane sulphonate 01/01/2017 31/12/2500 -29233000 01/01/2017 31/12/2500 LIBEN Tetraethylammonium perfluorooctane sulphonate 01/01/2017 31/12/2500 -292340 01/01/2017 31/12/2500 LIBEN Didecyldimethylammonium perfluorooctane sulphonate 01/01/2017 31/12/2500 -29234000 01/01/2017 31/12/2500 LIBEN Didecyldimethylammonium perfluorooctane sulphonate 01/01/2017 31/12/2500 -292390 01/01/1988 31/12/2500 LIBEN Quaternary ammonium salts and hydroxides (excl. choline and its salts, tetraethylammonium perfluorooctane sulphonate and didecyldimethylammonium perfluorooctane sulphonate) 01/01/1988 31/12/2500 -29239000 01/01/1988 31/12/2016 LIBEN Quaternary ammonium salts and hydroxides (excl. choline and its salts) 01/01/1988 31/12/2016 -29239000 01/01/2017 31/12/2500 LIBEN Quaternary ammonium salts and hydroxides (excl. choline and its salts, tetraethylammonium perfluorooctane sulphonate and didecyldimethylammonium perfluorooctane sulphonate) 01/01/2017 31/12/2500 -2923S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2923 and SITC section 5 01/01/1997 31/12/2500 -2923S514 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2923 and SITC group 514 01/01/1997 31/12/2500 -2924 01/01/1988 31/12/2500 LIBEN Carboxyamide-function compounds; amide-function compounds of carbonic acid 01/01/1988 31/12/2500 -292410 01/01/1988 31/12/2001 LIBEN Acyclic amides, incl. acyclic carbamates, and their derivatives; salts thereof 01/01/1988 31/12/2001 -29241000 01/01/1988 31/12/2001 LIBEN Acyclic amides, incl. acyclic carbamates, and their derivatives; salts thereof 01/01/1988 31/12/2001 -292411 01/01/2002 31/12/2500 LIBEN Meprobamate (INN) 01/01/2002 31/12/2500 -29241100 01/01/2002 31/12/2500 LIBEN Meprobamate (INN) 01/01/2002 31/12/2500 -292412 01/01/2007 31/12/2500 LIBEN Fluoroacetamide (ISO), monocrotophos (ISO) and phosphamidon (ISO) 01/01/2007 31/12/2500 -29241200 01/01/2007 31/12/2500 LIBEN Fluoroacetamide (ISO), monocrotophos (ISO) and phosphamidon (ISO) 01/01/2007 31/12/2500 -292419 01/01/2002 31/12/2500 LIBEN Acyclic amides, incl. acyclic carbamates, and their derivatives, and salts thereof (excl. meprobamate [INN], fluoroacetamide (ISO), monocrotophos (ISO) and phosphamidon (ISO)) 01/01/2002 31/12/2500 -29241900 01/01/2002 31/12/2006 LIBEN Acyclic amides, incl. acyclic carbamates, and their derivatives, and salts thereof (excl. meprobamate (INN)) 01/01/2002 31/12/2006 -29241900 01/01/2007 31/12/2500 LIBEN Acyclic amides, incl. acyclic carbamates, and their derivatives, and salts thereof (excl. meprobamate [INN], fluoroacetamide (ISO), monocrotophos (ISO) and phosphamidon (ISO)) 01/01/2007 31/12/2500 -292421 01/01/1988 31/12/2500 LIBEN Ureines and their derivatives; salts thereof 01/01/1988 31/12/2500 -29242100 01/01/1988 31/12/1994 LIBEN Ureines and their derivatives; salts thereof 01/01/1988 31/12/1994 -29242100 01/01/2009 31/12/2500 LIBEN Ureines and their derivatives; salts thereof 01/01/2009 31/12/2500 -29242110 01/01/1995 31/12/2008 LIBEN Isoproturon (ISO) 01/01/1995 31/12/2008 -29242190 01/01/1995 31/12/2008 LIBEN Ureines and their derivatives, salts thereof (excl. isoproturon (ISO)) 01/01/1995 31/12/2008 -292422 01/01/1996 31/12/2001 LIBEN 2-Acetamidobenzoic acid 01/01/1996 31/12/2001 -29242200 01/01/1996 31/12/2001 LIBEN 2-Acetamidobenzoic acid 01/01/1996 31/12/2001 -292423 01/01/2002 31/12/2500 LIBEN 2-Acetamidobenzoic acid "N-acetylanthranilic acid" and its salts 01/01/2002 31/12/2500 -29242300 01/01/2002 31/12/2500 LIBEN 2-Acetamidobenzoic acid "N-acetylanthranilic acid" and its salts 01/01/2002 31/12/2500 -292424 01/01/2002 31/12/2500 LIBEN Ethinamate (INN) 01/01/2002 31/12/2500 -29242400 01/01/2002 31/12/2500 LIBEN Ethinamate (INN) 01/01/2002 31/12/2500 -292425 01/01/2017 31/12/2500 LIBEN Alachlor (ISO) 01/01/2017 31/12/2500 -29242500 01/01/2017 31/12/2500 LIBEN Alachlor (ISO) 01/01/2017 31/12/2500 -292429 01/01/1988 31/12/2500 LIBEN Cyclic amides, incl. cyclic carbamates, and their derivatives; salts thereof (excl. ureines and their derivatives, salts thereof, 2-acetamidobenzoic acid "N-acetylanthranilic acid" and its salts, ethinamate (INN) and alachlor (ISO)) 01/01/1988 31/12/2500 -29242910 01/01/1988 31/12/2500 LIBEN Lidocaine (INN) 01/01/1988 31/12/2500 -29242930 01/01/1988 31/12/2008 LIBEN Paracetamol (INN) 01/01/1988 31/12/2008 -29242940 01/01/1994 31/12/1995 LIBEN 2-Acetamidobenzoic acid [N-acetylanthranilic acid] 01/01/1994 31/12/1995 -29242950 01/01/1992 31/12/1993 LIBEN 2-acetamidobenzoic acid 'n-acetylanthranilic acid' and its salts 01/01/1992 31/12/1993 -29242970 01/01/2017 31/12/2500 LIBEN Cyclic amides, incl. cyclic carbamates, and their derivatives; salts thereof (excl. ureines and their derivatives, salts thereof, 2-acetamidobenzoic acid "N-acetylanthranilic acid" and its salts, ethinamate (INN), alachlor (ISO) and lidocaine (INN)) 01/01/2017 31/12/2500 -29242980 01/01/1992 31/12/1993 LIBEN Amides, cyclic, including cyclic carbamates and their derivatives; salts thereof (excl. ureines and their derivatives and salts thereof and lidocain 'inn', paracetamol 'inn' and 2-acetamidobenzoic acid 'n-acetylanthranilic acid' and its salts) 01/01/1992 31/12/1993 -29242990 01/01/1988 31/12/1991 LIBEN Cyclic amides, incl. cyclic carbamates, and derivatives; salts thereof (excl. ureines and their derivatives, salts thereof, lidocaine and paracetamol) 01/01/1988 31/12/1991 -29242990 01/01/1994 31/12/2001 LIBEN Cyclic amides, incl. cyclic carbamates, and derivatives; salts thereof (excl. ureines and their derivatives, salts thereof, lidocaine (INN), paracetamol (INN) and 2-acetamidobenzoic acid [N-acetylanthranilic acid]) 01/01/1994 31/12/2001 -29242995 01/01/2002 31/12/2008 LIBEN Cyclic amides, incl. cyclic carbamates, and their derivatives; salts thereof (excl. ureines and their derivatives, salts thereof, 2-acetamidobenzoic acid "N-acetylanthranilic acid" and its salts, and ethinamate (INN), lidocaine (INN) and paracetamol (INN)) 01/01/2002 31/12/2008 -29242998 01/01/2009 31/12/2016 LIBEN Cyclic amides, incl. cyclic carbamates, and their derivatives; salts thereof (excl. ureines and their derivatives, salts thereof, 2-acetamidobenzoic acid "N-acetylanthranilic acid" and its salts, and ethinamate (INN), lidocaine (INN) and paracetamol (INN)) 01/01/2009 31/12/2016 -2924S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2924 and SITC section 5 01/01/1997 31/12/2500 -2924S514 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2924 and SITC group 514 01/01/1997 31/12/2500 -2925 01/01/1988 31/12/2500 LIBEN Carboxyimide-function compounds, incl. saccharin and its salts, and imine-function compounds 01/01/1988 31/12/2500 -292511 01/01/1988 31/12/2500 LIBEN Saccharin and its salts 01/01/1988 31/12/2500 -29251100 01/01/1988 31/12/2500 LIBEN Saccharin and its salts 01/01/1988 31/12/2500 -292512 01/01/2002 31/12/2500 LIBEN Glutethimide (INN) 01/01/2002 31/12/2500 -29251200 01/01/2002 31/12/2500 LIBEN Glutethimide (INN) 01/01/2002 31/12/2500 -292519 01/01/1988 31/12/2500 LIBEN Imides and their derivatives; salts thereof (excl. saccharin and its salts, glutethimide [INN] and inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -29251910 01/01/1988 31/12/2008 LIBEN 3,3', 4,4', 5,5', 6,6'-Octabromo-N,N'-ethylenediphthalimide 01/01/1988 31/12/2008 -29251920 01/01/2009 31/12/2500 LIBEN 3,3',4,4',5,5',6,6'-Octabromo-N,N'-ethylenediphthalimide; N,N'-ethylenebis(4,5-dibromohexahydro-3,6-methanophthalimide) 01/01/2009 31/12/2500 -29251930 01/01/1995 31/12/2008 LIBEN N,N'-ethylenebis"4,5-dibromohexahydro-3,6-methanophthalimide" 01/01/1995 31/12/2008 -29251980 01/01/1995 31/12/2001 LIBEN Imides and their derivatives; salts thereof (excl. 3,3', 4,4', 5,5', 6,6'-octabromo N,N'- ethylenediphthalimide, saccharin and its salts and N,N'-ethylenebis[4,5-dibromohexahydro-3,6- methanophthalimide]) 01/01/1995 31/12/2001 -29251990 01/01/1988 31/12/1994 LIBEN Imides and their derivatives; salts thereof (excl. saccharin and its salts and 3,3', 4,4', 5,5', 6,6'-octabromo-n,n'-ethylenediphthalimide) 01/01/1988 31/12/1994 -29251995 01/01/2002 31/12/2006 LIBEN Imides and their derivatives; salts thereof (excl. saccharin, its salts, glutethimide (INN), 3,3',4,4',5,5',6,6'-octabromo-N,N'-ethylenediphthalimide and N,N'-ethylenebis[4,5-dibromohexahydro-3,6- methanophthalimide]) 01/01/2002 31/12/2006 -29251995 01/01/2007 31/12/2500 LIBEN Imides and their derivatives; salts thereof (excl. saccharin, its salts, glutethimide (INN), 3,3',4,4',5,5',6,6'-octabromo-N,N'-ethylenediphthalimide, N,N'-ethylenebis[4,5-dibromohexahydro-3,6- methanophthalimide], and inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -292520 01/01/1988 31/12/2006 LIBEN Imines and their derivatives; salts thereof 01/01/1988 31/12/2006 -29252000 01/01/1993 31/12/2006 LIBEN Imines and their derivatives; salts thereof 01/01/1993 31/12/2006 -29252010 01/01/1988 31/12/1992 LIBEN Guanidine and its salts 01/01/1988 31/12/1992 -29252090 01/01/1988 31/12/1992 LIBEN Imines and their derivatives; salts thereof (excl. guanidine and its salts) 01/01/1988 31/12/1992 -292521 01/01/2007 31/12/2500 LIBEN Chlordimeform (ISO) 01/01/2007 31/12/2500 -29252100 01/01/2007 31/12/2500 LIBEN Chlordimeform (ISO) 01/01/2007 31/12/2500 -292529 01/01/2007 31/12/2500 LIBEN Imines and their derivatives; salts thereof (excl. chlordimeform (ISO)) 01/01/2007 31/12/2500 -29252900 01/01/2007 31/12/2011 LIBEN Imines and their derivatives; salts thereof (excl. chlordimeform (ISO)) 01/01/2007 31/12/2011 -29252900 01/01/2012 31/12/2500 LIBEN Imines and their derivatives; salts thereof (excl. chlordimeform (ISO)) 01/01/2012 31/12/2500 -2926 01/01/1988 31/12/2500 LIBEN Nitrile-function compounds 01/01/1988 31/12/2500 -292610 01/01/1988 31/12/2500 LIBEN Acrylonitrile 01/01/1988 31/12/2500 -29261000 01/01/1988 31/12/2500 LIBEN Acrylonitrile 01/01/1988 31/12/2500 -292620 01/01/1988 31/12/2500 LIBEN 1-Cyanoguanidine "dicyandiamide" 01/01/1988 31/12/2500 -29262000 01/01/1988 31/12/2500 LIBEN 1-Cyanoguanidine "dicyandiamide" 01/01/1988 31/12/2500 -292630 01/01/2002 31/12/2500 LIBEN Fenproporex (INN) and its salts; methadone (INN)-intermediate "4-cyano-2-dimethylamino-4,4-diphenylbutane" 01/01/2002 31/12/2500 -29263000 01/01/2002 31/12/2500 LIBEN Fenproporex (INN) and its salts; methadone (INN)-intermediate "4-cyano-2-dimethylamino-4,4-diphenylbutane" 01/01/2002 31/12/2500 -292640 01/01/2017 31/12/2500 LIBEN alpha-Phenylacetoacetonitrile 01/01/2017 31/12/2500 -29264000 01/01/2017 31/12/2500 LIBEN alpha-Phenylacetoacetonitrile 01/01/2017 31/12/2500 -292690 01/01/1988 31/12/2500 LIBEN Nitrile-function compounds (excl. acrylonitrile, 1-cyanoguanidine "dicyandiamide", fenproporex (INN) and its salts, methadone (INN)-intermediate "4-cyano-2-dimethylamino-4,4-diphenylbutane" and alpha-Phenylacetoacetonitrile) 01/01/1988 31/12/2500 -29269010 01/01/1988 31/12/1997 LIBEN 2-Hydroxy-2-methylpropiononitrile "acetone cyanohydrin" 01/01/1988 31/12/1997 -29269020 01/01/1997 31/12/2500 LIBEN Isophthalonitrile 01/01/1997 31/12/2500 -29269070 01/01/2017 31/12/2500 LIBEN Nitrile-function compounds (excl. acrylonitrile, 1-cyanoguanidine "dicyandiamide", fenproporex (INN) and its salts, methadone (INN)-intermediate "4-cyano-2-dimethylamino-4,4-diphenylbutane", alpha-Phenylacetoacetonitrile and isophthalonitrile) 01/01/2017 31/12/2500 -29269080 01/01/1997 31/12/1997 LIBEN Nitrile-function compounds (excl. acrylonitrile, 1-cyanoguanidine "dicyandiamide", 2-hydroxy-2-methylpropiononitrile "acetone cyanohydrin" and isophthalonitrile) 01/01/1997 31/12/1997 -29269090 01/01/1988 31/12/1996 LIBEN Nitrile-function compounds (excl. acrylonitrile, 1-Cyanoguanidine "dicyandiamide" and 2-Hydroxy-2-methylpropiononitrile "acetone cyanohydrin") 01/01/1988 31/12/1996 -29269095 01/01/2002 31/12/2016 LIBEN Nitrile-function compounds (excl. acrylonitrile, 1-cyanoguanidine "dicyandiamide", fenproporex (INN) and its salts, methadone (INN)-intermediate "4-cyano-2-dimethylamino-4,4-diphenylbutane" and isophthalonitrile) 01/01/2002 31/12/2016 -29269099 01/01/1998 31/12/2001 LIBEN Nitrile-function compounds (excl. acrylonitrile, 1-cyanoguanidine "dicyandiamide" and isophthalonitrile) 01/01/1998 31/12/2001 -2926S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2926 and SITC section 5 01/01/1997 31/12/2500 -2926S514 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2926 and SITC group 514 01/01/1997 31/12/2500 -2927 01/01/1988 31/12/2500 LIBEN Diazo-, azo- or azoxy-compounds 01/01/1988 31/12/2500 -292700 01/01/1988 31/12/2500 LIBEN Diazo-, azo- or azoxy-compounds 01/01/1988 31/12/2500 -29270000 01/01/1988 31/12/2500 LIBEN Diazo-, azo- or azoxy-compounds 01/01/1988 31/12/2500 -2928 01/01/1988 31/12/2500 LIBEN Organic derivatives of hydrazine or of hydroxylamine 01/01/1988 31/12/2500 -292800 01/01/1988 31/12/2500 LIBEN Organic derivatives of hydrazine or of hydroxylamine 01/01/1988 31/12/2500 -29280000 01/01/1988 31/12/1996 LIBEN Organic derivatives of hydrazine or of hydroxylamine 01/01/1988 31/12/1996 -29280010 01/01/1997 31/12/2500 LIBEN N,N-Bis"2-methoxyethyl"hydroxylamine 01/01/1997 31/12/2500 -29280090 01/01/1997 31/12/2500 LIBEN Organic derivatives of hydrazine or of hydroxylamine (excl. N,N-bis"2-methoxyethyl"hydroxylamine) 01/01/1997 31/12/2500 -2929 01/01/1988 31/12/2500 LIBEN Compounds with other nitrogen function (excl. amine-function compounds; oxygen-function amino-compounds; quaternary ammonium salts and hydroxides; lecithin and other phosphoaminolipids; carboxyamide-function compounds; amide-function compounds of carbonic acid; carboxyimide-function, imine-function or nitrile-function compounds; diazo-, azo- or azoxy-compounds; organic derivatives of hydrazine or of hydroxylamine) 01/01/1988 31/12/2500 -292910 01/01/1988 31/12/2500 LIBEN Isocyanates 01/01/1988 31/12/2500 -29291000 01/01/1988 31/12/1993 LIBEN Isocyanates 01/01/1988 31/12/1993 -29291000 01/01/2009 31/12/2500 LIBEN Isocyanates 01/01/2009 31/12/2500 -29291010 01/01/1994 31/12/2008 LIBEN Methylphenylene diisocyanates "toluene diisocyanates" 01/01/1994 31/12/2008 -29291090 01/01/1994 31/12/2008 LIBEN Isocyanates (excl. methylphenylene diisocyanates [toluene diisocyanates]) 01/01/1994 31/12/2008 -292910SS 01/01/2007 31/12/2500 LIBEN Confidential trade of heading 2929 10 01/01/2007 31/12/2500 -292990 01/01/1988 31/12/2500 LIBEN Compounds with nitrogen function (excl. amine-function compounds; oxygen-function amino-compounds; quaternary ammonium salts and hydroxides; lecithin and other phosphoaminolipids; carboxyamide-function compounds; amide-function compounds of carbonic acid; carboxyimide-function, imine-function or nitrile-function compounds; diazo-, azo- or azoxy-compounds; organic derivatives of hydrazine or of hydroxylamine and isocyanates) 01/01/1988 31/12/2500 -29299000 01/01/1988 31/12/2500 LIBEN Compounds with nitrogen function (excl. amine-function compounds; oxygen-function amino-compounds; quaternary ammonium salts and hydroxides; lecithin and other phosphoaminolipids; carboxyamide-function compounds; amide-function compounds of carbonic acid; carboxyimide-function, imine-function or nitrile-function compounds; diazo-, azo- or azoxy-compounds; organic derivatives of hydrazine or of hydroxylamine and isocyanates) 01/01/1988 31/12/2500 -2930 01/01/1988 31/12/2500 LIBEN Organo-sulphur compounds 01/01/1988 31/12/2500 -293010 01/01/1988 31/12/2006 LIBEN Dithiocarbonates "xanthates" 01/01/1988 31/12/2006 -29301000 01/01/1988 31/12/2006 LIBEN Dithiocarbonates "xanthates" 01/01/1988 31/12/2006 -293020 01/01/1988 31/12/2500 LIBEN Thiocarbamates and dithiocarbamates (excl. inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -29302000 01/01/1988 31/12/2006 LIBEN Thiocarbamates and dithiocarbamates 01/01/1988 31/12/2006 -29302000 01/01/2007 31/12/2500 LIBEN Thiocarbamates and dithiocarbamates (excl. inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -293030 01/01/1988 31/12/2500 LIBEN Thiuram mono-, di- or tetrasulphides 01/01/1988 31/12/2500 -29303000 01/01/1988 31/12/2500 LIBEN Thiuram mono-, di- or tetrasulphides 01/01/1988 31/12/2500 -293040 01/01/1988 31/12/2500 LIBEN Methionine 01/01/1988 31/12/2500 -29304000 01/01/1988 31/12/1997 LIBEN Methionine 01/01/1988 31/12/1997 -29304010 01/01/1998 31/12/2500 LIBEN Methionine (INN) 01/01/1998 31/12/2500 -29304090 01/01/1998 31/12/2500 LIBEN Methionine (excl. methionine (INN)) 01/01/1998 31/12/2500 -293050 01/01/2007 31/12/2016 LIBEN Captafol (ISO) and methamidophos (ISO) 01/01/2007 31/12/2016 -29305000 01/01/2007 31/12/2016 LIBEN Captafol (ISO) and methamidophos (ISO) 01/01/2007 31/12/2016 -293060 01/01/2017 31/12/2500 LIBEN 2-(N,N-Diethylamino)ethanethiol 01/01/2017 31/12/2500 -29306000 01/01/2017 31/12/2500 LIBEN 2-(N,N-Diethylamino)ethanethiol 01/01/2017 31/12/2500 -293070 01/01/2017 31/12/2500 LIBEN Bis(2-hydroxyethyl)sulfide (thiodiglycol (INN)) 01/01/2017 31/12/2500 -29307000 01/01/2017 31/12/2500 LIBEN Bis(2-hydroxyethyl)sulfide (thiodiglycol (INN)) 01/01/2017 31/12/2500 -293080 01/01/2017 31/12/2500 LIBEN Aldicarb (ISO), Captafol (ISO) and methamidophos (ISO) 01/01/2017 31/12/2500 -29308000 01/01/2017 31/12/2500 LIBEN Aldicarb (ISO), Captafol (ISO) and methamidophos (ISO) 01/01/2017 31/12/2500 -293090 01/01/1988 31/12/2500 LIBEN Organo-sulphur compounds (excl. thiocarbamates and dithiocarbamates, thiuram mono-, di- or tetrasulphides, methionine, 2-(N,N-Diethylamino)ethanethiol, Bis(2-hydroxyethyl)sulfide (thiodiglycol (INN)), aldicarb (ISO), captafol (ISO) and methamidophos (ISO)) 01/01/1988 31/12/2500 -29309010 01/01/1988 31/12/1995 LIBEN Cysteine, cystine and their derivatives 01/01/1988 31/12/1995 -29309012 01/01/1996 31/12/2003 LIBEN Cysteine 01/01/1996 31/12/2003 -29309013 01/01/2004 31/12/2500 LIBEN Cysteine and cystine 01/01/2004 31/12/2500 -29309014 01/01/1996 31/12/2003 LIBEN Cystine 01/01/1996 31/12/2003 -29309016 01/01/1996 31/12/2500 LIBEN Derivatives of cysteine or of cystine 01/01/1996 31/12/2500 -29309020 01/01/1990 31/12/2016 LIBEN Thiodiglycol (INN) "2,2'-thiodiethanol" 01/01/1990 31/12/2016 -29309030 01/01/1995 31/12/2500 LIBEN DL-2-hydroxy-4-"methylthio"butyric acid 01/01/1995 31/12/2500 -29309040 01/01/1997 31/12/2500 LIBEN 2,2'-Thiodiethyl bis[3-"3,5-di-tert-butyl-4-hydroxyphenyl"propionate] 01/01/1997 31/12/2500 -29309050 01/01/1997 31/12/2500 LIBEN Mixture of isomers consisting of 4-methyl-2,6-bis"methylthio"-m-phenylenediamine and 2-methyl-4,6-bis"methylthio"-m-phenylenediamine 01/01/1997 31/12/2500 -29309060 01/01/2010 31/12/2016 LIBEN 2-(N,N-Diethylamino)ethanethiol 01/01/2010 31/12/2016 -29309070 01/01/1997 31/12/2006 LIBEN Organic thio compounds (excl. dithiocarbonates [xantates], thio- and dithiocarbamates, thioammono-, di- or tetrasulphides, methionine, cysteine or cystine, and their derivatives, thiodiglycol (INN) [2,2-thiodiethanol], DL-2-hydroxy-4-"methylthio"butyric acid, 2,2'-thiodiethyl bis[3-"3,5-di-tert-butyl-4-hydroxyphenyl"propionate] and a mixture of isomers consisting of 4-methyl-2,6-bis"methylthio"-m-phenylenediamine and 2-methyl-4,6-bis"methylthio"-m-phenylenediamine) 01/01/1997 31/12/2006 -29309080 01/01/1990 31/12/1994 LIBEN Organo-sulphur compounds (excl. dithiocarbonates 'xanthates', thiocarbamates and dithiocarbamates, thiuram mono-, di- or tetrasulphides, methionine and cysteine, cystine and their derivatives) 01/01/1990 31/12/1994 -29309085 01/01/2007 31/12/2009 LIBEN Organo-sulphur compounds (excl. thiocarbamates and dithiocarbamates, thiuram mono-, di- or tetrasulphides, methionine, captafol (ISO), methamidophos (ISO), cysteine or cystine and their derivatives, thiodiglycol [INN] [2,2-thiodiethanol], DL-2-hydroxy-4-"methylthio"butyric acid, 2,2'-thiodiethyl bis[3-"3,5-di-tert-butyl-4-hydroxyphenyl"propionate] and a mixture of isomers consisting of 4-methyl-2,6-bis"methylthio"-m-phenylenediamine and 2-methyl-4,6-bis"methylthio"-m-phenylenediamine) 01/01/2007 31/12/2009 -29309090 01/01/1988 31/12/1989 LIBEN Organo-sulphur compounds (excl.2930.10-00 to 2930.90-10) 01/01/1988 31/12/1989 -29309095 01/01/1995 31/12/1996 LIBEN Thio compounds, organic (excl. dithiocarbonates (xantates), thio- and dithiocarbamates, thioammono-, di- or tetrasulphides, methionine, cysteine or cystine, and their derivatives, thiodiglycol (INN) (2,2-thiodiethanol) and DL-2-hydroxy-4-(methylthio) butyric acid) 01/01/1995 31/12/1996 -29309098 01/01/2017 31/12/2500 LIBEN Organo-sulphur compounds (excl. thiocarbamates and dithiocarbamates, thiuram mono-, di- or tetrasulphides, methionine, aldicarb (ISO), captafol (ISO), methamidophos (ISO), cysteine or cystine and their derivatives, thiodiglycol [INN] [bis(2-hydroxyethyl)sulfide], DL-2-hydroxy-4-"methylthio"butyric acid, 2,2'-thiodiethyl bis[3-"3,5-di-tert-butyl-4-hydroxyphenyl"propionate], a mixture of isomers consisting of 4-methyl-2,6-bis"methylthio"-m-phenylenediamine and 2-methyl-4,6-bis"methylthio"-m-phenylenediamine and 2-(N,N-Diethylamino)ethanethiol) 01/01/2017 31/12/2500 -29309099 01/01/2010 31/12/2016 LIBEN Organo-sulphur compounds (excl. thiocarbamates and dithiocarbamates, thiuram mono-, di- or tetrasulphides, methionine, captafol (ISO), methamidophos (ISO), cysteine or cystine and their derivatives, thiodiglycol [INN] [2,2-thiodiethanol], DL-2-hydroxy-4-"methylthio"butyric acid, 2,2'-thiodiethyl bis[3-"3,5-di-tert-butyl-4-hydroxyphenyl"propionate], a mixture of isomers consisting of 4-methyl-2,6-bis"methylthio"-m-phenylenediamine and 2-methyl-4,6-bis"methylthio"-m-phenylenediamine and 2-(N,N-Diethylamino)ethanethiol) 01/01/2010 31/12/2016 -2930S5 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2930 and SITC section 5 01/01/1998 31/12/2500 -2930S515 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2930 and SITC group 515 01/01/1998 31/12/2500 -2931 01/01/1988 31/12/2500 LIBEN Separate chemically defined organo-inorganic compounds (excl. organo-sulphur compounds and those of mercury) 01/01/1988 31/12/2500 -293100 01/01/1988 31/12/2011 LIBEN Separate chemically defined organo-inorganic compounds (excl. organo-sulphur compounds and those of mercury) 01/01/1988 31/12/2011 -29310000 01/01/1988 31/12/1989 LIBEN Organo-inorganic compounds n.e.s. 01/01/1988 31/12/1989 -29310010 01/01/1990 31/12/2011 LIBEN Dimethyl methylphosphonate 01/01/1990 31/12/2011 -29310020 01/01/1990 31/12/2011 LIBEN Methylphosphonoyl difluoride "methylphosphonic difluoride" 01/01/1990 31/12/2011 -29310030 01/01/1990 31/12/2011 LIBEN Methylphosphonoyl dichloride "methylphosphonic dichloride" 01/01/1990 31/12/2011 -29310040 01/01/1994 31/12/1997 LIBEN 2-chloroethylphosphonic acid 01/01/1994 31/12/1997 -29310040 01/01/2010 31/12/2011 LIBEN (5-Ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl)methyl methyl methylphosphonate; bis[(5-ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl)methyl] methylphosphonate; 2,4,6-tripropyl-1,3,5,2,4,6-trioxatriphosphinane 2,4,6-trioxide; dimethyl propylphosphonate; diethyl ethylphosphonate; sodium 3-(trihydroxysilyl)propyl methylphosphonate; mixtures consisting mainly of methylphosphonic acid and (aminoiminomethyl)urea (in the ratio 50:50) 01/01/2010 31/12/2011 -29310050 01/01/1994 31/12/1997 LIBEN Organo-silicon compounds 01/01/1994 31/12/1997 -29310080 01/01/1994 31/12/1997 LIBEN Separate chemically defined organo-inorganic compounds, n.e.s. 01/01/1994 31/12/1997 -29310090 01/01/1990 31/12/1993 LIBEN Other organo-inorganic compounds 01/01/1990 31/12/1993 -29310095 01/01/1998 31/12/2006 LIBEN Separate chemically defined organo-inorganic compounds, n.e.s. 01/01/1998 31/12/2006 -29310095 01/01/2007 31/12/2009 LIBEN Separate chemically defined organo-inorganic compounds (excl. organo-sulphur compounds, dimethyl methylphosphonate, methylphosphonoyl difluoride "methylphosphonic difluoride", methylphosphonoyl dichloride "methylphosphonic dichloride" and those of mercury) 01/01/2007 31/12/2009 -29310099 01/01/2010 31/12/2011 LIBEN Separate chemically defined organo-inorganic compounds (excl. organo-sulphur compounds, dimethyl methylphosphonate, methylphosphonoyl difluoride "methylphosphonic difluoride", methylphosphonoyl dichloride "methylphosphonic dichloride" and those of mercury and (5-Ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl)methyl methyl methylphosphonate; bis[(5-ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl)methyl] methylphosphonate; 2,4,6-tripropyl-1,3,5,2,4,6-trioxatriphosphinane 2,4,6-trioxide; dimethyl propylphosphonate; diethyl ethylphosphonate; sodium 3-(trihydroxysilyl)propyl methylphosphonate; mixtures consisting mainly of methylphosphonic acid and (aminoiminomethyl)urea (in the ratio 50:50)) 01/01/2010 31/12/2011 -293110 01/01/2012 31/12/2500 LIBEN Tetramethyl lead and tetraethyl lead 01/01/2012 31/12/2500 -29311000 01/01/2012 31/12/2500 LIBEN Tetramethyl lead and tetraethyl lead 01/01/2012 31/12/2500 -293120 01/01/2012 31/12/2500 LIBEN Tributyltin compounds 01/01/2012 31/12/2500 -29312000 01/01/2012 31/12/2500 LIBEN Tributyltin compounds 01/01/2012 31/12/2500 -293131 01/01/2017 31/12/2500 LIBEN Dimethyl methylphosphonate 01/01/2017 31/12/2500 -29313100 01/01/2017 31/12/2500 LIBEN Dimethyl methylphosphonate 01/01/2017 31/12/2500 -293132 01/01/2017 31/12/2500 LIBEN Dimethyl propylphosphonate 01/01/2017 31/12/2500 -29313200 01/01/2017 31/12/2500 LIBEN Dimethyl propylphosphonate 01/01/2017 31/12/2500 -293133 01/01/2017 31/12/2500 LIBEN Diethyl ethylphosphonate 01/01/2017 31/12/2500 -29313300 01/01/2017 31/12/2500 LIBEN Diethyl ethylphosphonate 01/01/2017 31/12/2500 -293134 01/01/2017 31/12/2500 LIBEN Sodium 3-(trihydroxysilyl)propyl methylphosphonate 01/01/2017 31/12/2500 -29313400 01/01/2017 31/12/2500 LIBEN Sodium 3-(trihydroxysilyl)propyl methylphosphonate 01/01/2017 31/12/2500 -293135 01/01/2017 31/12/2500 LIBEN 2,4,6-Tripropyl-1,3,5,2,4,6-trioxatriphosphinane 2,4,6-trioxide 01/01/2017 31/12/2500 -29313500 01/01/2017 31/12/2500 LIBEN 2,4,6-Tripropyl-1,3,5,2,4,6-trioxatriphosphinane 2,4,6-trioxide 01/01/2017 31/12/2500 -293136 01/01/2017 31/12/2500 LIBEN (5-Ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl)methyl methyl methylphosphonate 01/01/2017 31/12/2500 -29313600 01/01/2017 31/12/2500 LIBEN (5-Ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl)methyl methyl methylphosphonate 01/01/2017 31/12/2500 -293137 01/01/2017 31/12/2500 LIBEN Bis[(5-ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl)methyl] methylphosphonate 01/01/2017 31/12/2500 -29313700 01/01/2017 31/12/2500 LIBEN Bis[(5-ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl)methyl] methylphosphonate 01/01/2017 31/12/2500 -293138 01/01/2017 31/12/2500 LIBEN Salt of methylphosphonic acid and (aminoiminomethyl)urea (1 : 1) 01/01/2017 31/12/2500 -29313800 01/01/2017 31/12/2500 LIBEN Salt of methylphosphonic acid and (aminoiminomethyl)urea (1 : 1) 01/01/2017 31/12/2500 -293139 01/01/2017 31/12/2500 LIBEN Separate chemically defined organo-phosphorous derivatives, n.e.s. 01/01/2017 31/12/2500 -29313920 01/01/2017 31/12/2500 LIBEN Methylphosphonoyl difluoride "methylphosphonic difluoride" 01/01/2017 31/12/2500 -29313930 01/01/2017 31/12/2500 LIBEN Methylphosphonoyl dichloride "methylphosphonic dichloride" 01/01/2017 31/12/2500 -29313950 01/01/2017 31/12/2500 LIBEN Etidronic acid (INN) "1-hydroxyethane-1,1-diphosphonic acid" and its salts 01/01/2017 31/12/2500 -29313960 01/01/2017 31/12/2500 LIBEN (Nitrilotrimethanediyl)tris(phosphonic acid), {ethane-1,2-diylbis[nitrilobis(methylene)]}tetrakis(phosphonic acid), [(bis{2-[bis(phosphonomethyl)amino]ethyl}amino)methyl]phosphonic acid, {hexane-1,6-diylbis[nitrilobis(methylene)]}tetrakis(phosphonic acid), {[(2-hydroxyethyl)imino]bis(methylene)}bis(phosphonic acid), and [(bis{6-[bis(phosphonomethyl)amino]hexyl}amino)methyl]phosphonic acid; salts thereof 01/01/2017 31/12/2500 -29313990 01/01/2017 31/12/2500 LIBEN Separate chemically defined organo-phosphorous derivatives, n.e.s. 01/01/2017 31/12/2500 -293190 01/01/2012 31/12/2500 LIBEN Separate chemically defined organo-inorganic compounds (excl. organo-sulphur, mercury, tetramethyl lead, tetraethyl lead and tributyltin compounds, and organo-phosphorous derivatives) 01/01/2012 31/12/2500 -29319000 01/01/2017 31/12/2500 LIBEN Separate chemically defined organo-inorganic compounds (excl. organo-sulphur, mercury, tetramethyl lead, tetraethyl lead and tributyltin compounds, and organo-phosphorous derivatives) 01/01/2017 31/12/2500 -29319010 01/01/2012 31/12/2016 LIBEN Dimethyl methylphosphonate 01/01/2012 31/12/2016 -29319020 01/01/2012 31/12/2016 LIBEN Methylphosphonoyl difluoride "methylphosphonic difluoride" 01/01/2012 31/12/2016 -29319030 01/01/2012 31/12/2016 LIBEN Methylphosphonoyl dichloride "methylphosphonic dichloride" 01/01/2012 31/12/2016 -29319040 01/01/2012 31/12/2016 LIBEN (5-Ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl)methyl methyl methylphosphonate; bis[(5-ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl)methyl]methylphosphonate; 2,4,6-tripropyl-1,3,5,2,4,6-trioxatriphosphinane 2,4,6-trioxide; dimethyl propylphosphonate; diethyl ethylphosphonate; sodium 3-(trihydroxysilyl)propyl methylphosphonate; mixtures consisting mainly of methylphosphonic acid and (aminoiminomethyl)urea (in the ratio 50:50) 01/01/2012 31/12/2016 -29319050 01/01/2015 31/12/2016 LIBEN Etidronic acid (INN) (1-hydroxyethane-1,1-diphosphonic acid) and its salts 01/01/2015 31/12/2016 -29319060 01/01/2015 31/12/2016 LIBEN (Nitrilotrimethanediyl)tris(phosphonic acid), {ethane-1,2-diylbis[nitrilobis(methylene)]}tetrakis(phosphonic acid), [(bis{2-[bis(phosphonomethyl)amino]ethyl}amino)methyl]phosphonic acid, {hexane-1,6-diylbis[nitrilobis(methylene)]}tetrakis(phosphonic acid), {[(2-hydroxyethyl)imino]bis(methylene)}bis(phosphonic acid), and [(bis{6-[bis(phosphonomethyl)amino]hexyl}amino)methyl]phosphonic acid; salts thereof 01/01/2015 31/12/2016 -29319080 01/01/2015 31/12/2016 LIBEN Separate chemically defined organo-inorganic compounds, n.e.s. 01/01/2015 31/12/2016 -29319090 01/01/2012 31/12/2014 LIBEN Separate chemically defined organo-inorganic compounds (excl. organo-sulphur compounds, tributyltin compounds, tetramethyl lead, tetraethyl lead, dimethyl methylphosphonate, methylphosphonoyl difluoride "methylphosphonic difluoride", methylphosphonoyl dichloride "methylphosphonic dichloride" and those of mercury and (5-Ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl)methyl methyl methylphosphonate; bis[(5-ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl)methyl] methylphosphonate; 2,4,6-tripropyl-1,3,5,2,4,6-trioxatriphosphinane 2,4,6-trioxide; dimethyl propylphosphonate; diethyl ethylphosphonate; sodium 3-(trihydroxysilyl)propyl methylphosphonate; mixtures consisting mainly of methylphosphonic acid and (aminoiminomethyl)urea (in the ratio 50:50)) 01/01/2012 31/12/2014 -2932 01/01/1988 31/12/2500 LIBEN Heterocyclic compounds with oxygen hetero-atom[s] only 01/01/1988 31/12/2500 -293211 01/01/1988 31/12/2500 LIBEN Tetrahydrofuran 01/01/1988 31/12/2500 -29321100 01/01/1988 31/12/2500 LIBEN Tetrahydrofuran 01/01/1988 31/12/2500 -293212 01/01/1988 31/12/2500 LIBEN 2-Furaldehyde "furfuraldehyde" 01/01/1988 31/12/2500 -29321200 01/01/1988 31/12/2500 LIBEN 2-Furaldehyde "furfuraldehyde" 01/01/1988 31/12/2500 -293213 01/01/1988 31/12/2500 LIBEN Furfuryl alcohol and tetrahydrofurfuryl alcohol 01/01/1988 31/12/2500 -29321300 01/01/1988 31/12/2500 LIBEN Furfuryl alcohol and tetrahydrofurfuryl alcohol 01/01/1988 31/12/2500 -293214 01/01/2017 31/12/2500 LIBEN Sucralose 01/01/2017 31/12/2500 -29321400 01/01/2017 31/12/2500 LIBEN Sucralose 01/01/2017 31/12/2500 -293219 01/01/1988 31/12/2500 LIBEN Heterocyclic compounds with oxygen hetero-atom[s] only, containing an unfused furan ring, whether or not hydrogenated, in the structure (excl. tetrahydrofuran, 2-furaldehyde "furfuraldehyde", furfuryl alcohol, tetrahydrofurfuryl alcohol and sucralose) 01/01/1988 31/12/2500 -29321900 01/01/1988 31/12/2016 LIBEN Heterocyclic compounds with oxygen hetero-atom[s] only, containing an unfused furan ring, whether or not hydrogenated, in the structure (excl. tetrahydrofuran, 2-furaldehyde "furfuraldehyde", furfuryl alcohol and tetrahydrofurfuryl alcohol) 01/01/1988 31/12/2016 -29321900 01/01/2017 31/12/2500 LIBEN Heterocyclic compounds with oxygen hetero-atom[s] only, containing an unfused furan ring, whether or not hydrogenated, in the structure (excl. tetrahydrofuran, 2-furaldehyde "furfuraldehyde", furfuryl alcohol, tetrahydrofurfuryl alcohol and sucralose) 01/01/2017 31/12/2500 -293220 01/01/2012 31/12/2500 LIBEN Lactones 01/01/2012 31/12/2500 -29322010 01/01/2012 31/12/2500 LIBEN Phenolphthalein; 1-Hydroxy-4-[1-(4-hydroxy-3-methoxycarbonyl-1-naphthyl)-3-oxo-1H,3H-benzo[de]isochromen-1-yl]-6-octadecyloxy-2-naphthoic acid; 3′-Chloro-6′-cyclohexylaminospiro[isobenzofuran-1(3H),9′-xanthen]-3-one; 6′-(N-Ethyl-p-toluidino)-2′-methylspiro[isobenzofuran-1(3H),9′-xanthen]-3-one; Methyl-6-docosyloxy-1-hydroxy-4-[1-(4-hydroxy-3-methyl-1-phenanthryl)-3-oxo-1H,3H-naphtho[1,8-cd]pyran-1-yl]naphthalene-2-carboxylate 01/01/2012 31/12/2500 -29322020 01/01/2012 31/12/2500 LIBEN gamma-Butyrolactone 01/01/2012 31/12/2500 -29322090 01/01/2012 31/12/2500 LIBEN Lactones (excl. gamma-Butyrolactone; Phenolphthalein; 1-Hydroxy-4-[1-(4-hydroxy-3-methoxycarbonyl-1-naphthyl)-3-oxo-1H,3H-benzo[de]isochromen-1-yl]-6-octadecyloxy-2-naphthoic acid; 3′-Chloro-6′-cyclohexylaminospiro[isobenzofuran-1(3H),9′-xanthen]-3-one; 6′-(N-Ethyl-p-toluidino)-2′-methylspiro[isobenzofuran-1(3H),9′-xanthen]-3-one; Methyl-6-docosyloxy-1-hydroxy-4-[1-(4-hydroxy-3-methyl-1-phenanthryl)-3-oxo-1H,3H-naphtho[1,8-cd]pyran-1-yl]naphthalene-2-carboxylate) 01/01/2012 31/12/2500 -293221 01/01/1988 31/12/2011 LIBEN Coumarin, methylcoumarins and ethylcoumarins 01/01/1988 31/12/2011 -29322100 01/01/1988 31/12/2011 LIBEN Coumarin, methylcoumarins and ethylcoumarins 01/01/1988 31/12/2011 -293229 01/01/1988 31/12/2011 LIBEN Lactones (excl. coumarin, methylcoumarins, ethylcoumarins, and inorganic or organic compounds of mercury) 01/01/1988 31/12/2011 -29322910 01/01/1988 31/12/2011 LIBEN Phenolphthalein 01/01/1988 31/12/2011 -29322920 01/01/1997 31/12/2011 LIBEN 1-Hydroxy-4-[1-"4-hydroxy-3-methoxycarbonyl-1-naphthyl"-3-oxo-1H, 3H-benzo[de]isochromen-1-yl]-6-octadecyloxy-2-naphthoic acid 01/01/1997 31/12/2011 -29322930 01/01/1997 31/12/2011 LIBEN 3'-Chloro-6'-cyclohexylaminospiro[isobenzofuran-1"3H", 9'-xanthen]-3-one 01/01/1997 31/12/2011 -29322940 01/01/1997 31/12/2011 LIBEN 6'-"N-Ethyl-p-toluidino"-2'-methylspiro[isobenzofuran-1"3H", 9'-xanthen]-3-one 01/01/1997 31/12/2011 -29322950 01/01/1997 31/12/2011 LIBEN Methyl-6-docosyloxy-1-hydroxy-4-[1-"4-hydroxy-3-methyl-1-phenanthryl"-3-oxo-1H, 3H-naphtho[1,8-cd]pyran-1-yl]naphthalene-2-carboxylate 01/01/1997 31/12/2011 -29322960 01/01/2006 31/12/2011 LIBEN gamma-Butyrolactone 01/01/2006 31/12/2011 -29322980 01/01/1997 31/12/2005 LIBEN Lactones (excl. coumarin, methylcoumarins, ethylcoumarins, phenolphthalein, 1-hydroxy-4-[1-"4-hydroxy-3-methoxycarbonyl-1-naphthyl"-3-oxo-1H, 3H-benzo[de]isochromen-1-yl]-6-octadecyloxy-2-naphthoic acid, 3'-chloro-6'-cyclohexylaminospiro[isobenzofuran-1"3H", 9'-xanthen]-3-one, 6'-"N-ethyl-p-toluidino"-2'-methylspiro[isobenzofuran-1"3H", 9'-xanthen]-3-one and methyl-6-docosyloxy-1-hydroxy-4-[1-"4-hydroxy-3-methyl-1-phenanthryl"-3-oxo-1H, 3H-naphtho[1,8-cd]pyran-1-yl]naphthalene-2-carboxylate) 01/01/1997 31/12/2005 -29322985 01/01/2006 31/12/2006 LIBEN Lactones (excl. coumarin, methylcoumarins, ethylcoumarins, phenolphthalein, 1-hydroxy-4-[1-"4-hydroxy-3-methoxycarbonyl-1-naphthyl"-3-oxo-1H, 3H-benzo[de]isochromen-1-yl]-6-octadecyloxy-2-naphthoic acid, 3'-chloro-6'-cyclohexylaminospiro[isobenzofuran-1"3H", 9'-xanthen]-3-one, 6'-"N-ethyl-p-toluidino"-2'-methylspiro[isobenzofuran-1"3H", 9'-xanthen]-3-one, methyl-6-docosyloxy-1-hydroxy-4-[1-"4-hydroxy-3-methyl-1-phenanthryl"-3-oxo-1H, 3H-naphtho[1,8-cd]pyran-1-yl]naphthalene-2-carboxylate and gamma-butyrolactone) 01/01/2006 31/12/2006 -29322985 01/01/2007 31/12/2011 LIBEN Lactones (excl. coumarin, methylcoumarins, ethylcoumarins, phenolphthalein, 1-hydroxy-4-[1-"4-hydroxy-3-methoxycarbonyl-1-naphthyl"-3-oxo-1H, 3H-benzo[de]isochromen-1-yl]-6-octadecyloxy-2-naphthoic acid, 3'-chloro-6'-cyclohexylaminospiro[isobenzofuran-1"3H", 9'-xanthen]-3-one, 6'-"N-ethyl-p-toluidino"-2'-methylspiro[isobenzofuran-1"3H", 9'-xanthen]-3-one, methyl-6-docosyloxy-1-hydroxy-4-[1-"4-hydroxy-3-methyl-1-phenanthryl"-3-oxo-1H, 3H-naphtho[1,8-cd]pyran-1-yl]naphthalene-2-carboxylate, gamma-butyrolactone, and inorganic or organic compounds of mercury) 01/01/2007 31/12/2011 -29322990 01/01/1988 31/12/1996 LIBEN Lactones (excl. coumarin, methylcoumarins, ethylcoumarins and phenolphthalein) 01/01/1988 31/12/1996 -293290 01/01/1988 31/12/1995 LIBEN Heterocyclic compounds with oxygen hetero-atom(s) only (excl. compounds containing unfused furan ring, whether or not hydrogenated, in the structure, and lactones) 01/01/1988 31/12/1995 -29329010 01/01/1988 31/12/1995 LIBEN Benzofuran "coumarone" 01/01/1988 31/12/1995 -29329030 01/01/1988 31/12/1995 LIBEN Internal ethers 01/01/1988 31/12/1995 -29329050 01/01/1988 31/12/1995 LIBEN Epoxides with a four-membered ring 01/01/1988 31/12/1995 -29329070 01/01/1988 31/12/1991 LIBEN Cyclic acetals and internal hemiacetals, whether or not with other oxygen function, and their halogenated, sulphonated, nitrated or nitrosated derivatives 01/01/1988 31/12/1991 -29329071 01/01/1992 31/12/1995 LIBEN Safrole 01/01/1992 31/12/1995 -29329073 01/01/1992 31/12/1995 LIBEN Isosafrole 01/01/1992 31/12/1995 -29329075 01/01/1992 31/12/1995 LIBEN Piperonal 01/01/1992 31/12/1995 -29329077 01/01/1992 31/12/1995 LIBEN 3,4-Methylenedioxphyenylpropan-2-one 01/01/1992 31/12/1995 -29329079 01/01/1992 31/12/1995 LIBEN Acetals, cyclic, and internal hemiacetals, whether or not with other oxygen functions, and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. safrole, isosafrole, piperonal and 3,4-Methylenedioxphyenylpropan-2-one) 01/01/1992 31/12/1995 -29329090 01/01/1988 31/12/1995 LIBEN Heterocyclic compounds with oxygen hetero-atom(s) only (excl. compounds containing an unfused furan ring, whether or not hydrogenated, in the structure, lactones, benzofuran "coumarone", internal ethers, epoxides with a four-membered ring, and cyclic acetals and internal hemiacetals, whether or not with other oxygen function, and their halogenated, sulphonated, nitrated or nitrosated derivatives) 01/01/1988 31/12/1995 -293291 01/01/1996 31/12/2500 LIBEN Isosafrole 01/01/1996 31/12/2500 -29329100 01/01/1996 31/12/2500 LIBEN Isosafrole 01/01/1996 31/12/2500 -293292 01/01/1996 31/12/2500 LIBEN 1-"1,3-Benzodioxol-5-yl"propan-2-one 01/01/1996 31/12/2500 -29329200 01/01/1996 31/12/2500 LIBEN 1-"1,3-Benzodioxol-5-yl"propan-2-one 01/01/1996 31/12/2500 -293293 01/01/1996 31/12/2500 LIBEN Piperonal 01/01/1996 31/12/2500 -29329300 01/01/1996 31/12/2500 LIBEN Piperonal 01/01/1996 31/12/2500 -293294 01/01/1996 31/12/2500 LIBEN Safrole 01/01/1996 31/12/2500 -29329400 01/01/1996 31/12/2500 LIBEN Safrole 01/01/1996 31/12/2500 -293295 01/01/2002 31/12/2500 LIBEN Tetrahydrocannabinols "all isomers" 01/01/2002 31/12/2500 -29329500 01/01/2002 31/12/2500 LIBEN Tetrahydrocannabinols "all isomers" 01/01/2002 31/12/2500 -293299 01/01/1996 31/12/2500 LIBEN Heterocyclic compounds with oxygen hetero-atom[s] only (excl. compounds containing unfused furan ring, whether or not hydrogenated, in the structure, and lactones, isosafrole, 1-[1,3-benzodioxol-5-yl]propan-2-one, piperonal, safrole, tetrahydrocannabinols "all isomers", and inorganic or organic compounds of mercury) 01/01/1996 31/12/2500 -29329900 01/01/2009 31/12/2500 LIBEN Heterocyclic compounds with oxygen hetero-atom[s] only (excl. compounds containing unfused furan ring, whether or not hydrogenated, in the structure, and lactones, isosafrole, 1-[1,3-benzodioxol-5-yl]propan-2-one, piperonal, safrole, tetrahydrocannabinols "all isomers", and inorganic or organic compounds of mercury) 01/01/2009 31/12/2500 -29329910 01/01/1996 31/12/2003 LIBEN Benzofuran "coumarone" 01/01/1996 31/12/2003 -29329930 01/01/1996 31/12/1998 LIBEN Internal ethers 01/01/1996 31/12/1998 -29329950 01/01/1996 31/12/2008 LIBEN Epoxides with a four-membered ring 01/01/1996 31/12/2008 -29329970 01/01/1996 31/12/2008 LIBEN Acetals, cyclic, and internal hemiacetals, whether or not with other oxygen functions, and their halogenated, sulphonated, nitrated or nitrosated derivatives (excl. safrole, isosafrole, piperonal and 1-"1,3-benzodioxol-5-yl"propane-2-one) 01/01/1996 31/12/2008 -29329980 01/01/1999 31/12/2001 LIBEN Heterocyclic compounds with oxygen hetero-atom[s] only (excl. compounds containing an unfused furan ring, whether or not hydrogenated, in the structure, lactones, benzofuran "coumarone", epoxides with a four-membered ring, and cyclic acetals and internal hemiacetals, whether or not with other oxygen function, and their halogenated, sulphonated, nitrated or nitrosated derivatives) 01/01/1999 31/12/2001 -29329985 01/01/2004 31/12/2006 LIBEN Heterocyclic compounds with oxygen hetero-atom[s] only (excl. compounds containing an unfused furan ring, whether or not hydrogenated, in the structure, lactones, isosafrole, 1-[1,3-benzodioxol-5-yl]propan-2-one, piperonal, safrole, tetrahydrocannabinols "all isomers", epoxides with a four-membered ring, and cyclic acetals and internal hemiacetals, whether or not with other oxygen function, and their halogenated, sulphonated, nitrated or nitrosated derivatives) 01/01/2004 31/12/2006 -29329985 01/01/2007 31/12/2008 LIBEN Heterocyclic compounds with oxygen hetero-atom[s] only (excl. compounds containing an unfused furan ring, whether or not hydrogenated, in the structure, lactones, isosafrole, 1-[1,3-benzodioxol-5-yl]propan-2-one, piperonal, safrole, tetrahydrocannabinols "all isomers", epoxides with a four-membered ring, and cyclic acetals and internal hemiacetals, whether or not with other oxygen function, and their halogenated, sulphonated, nitrated or nitrosated derivatives, and inorganic or organic compounds of mercury) 01/01/2007 31/12/2008 -29329990 01/01/1996 31/12/1998 LIBEN Heterocyclic compounds with oxygen hetero-atom[s] only (excl. compounds containing an unfused furan ring, whether or not hydrogenated, in the structure, lactones, benzofuran "coumarone", internal ethers, epoxides with a four-membered ring, and cyclic acetals and internal hemiacetals, whether or not with other oxygen function, and their halogenated, sulphonated, nitrated or nitrosated derivatives) 01/01/1996 31/12/1998 -29329995 01/01/2002 31/12/2003 LIBEN Heterocyclic compounds with oxygen hetero-atom[s] only (excl. compounds containing an unfused furan ring, whether or not hydrogenated, in the structure, lactones, isosafrole, 1-[1,3-benzodioxol-5-yl]propan-2-one, piperonal, safrole, tetrahydrocannabinols "all isomers", benzofuran "coumarone", epoxides with a four-membered ring, and cyclic acetals and internal hemiacetals, whether or not with other oxygen function, and their halogenated, sulphonated, nitrated or nitrosated derivatives) 01/01/2002 31/12/2003 -2932S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2932 and SITC section 5 01/01/1997 31/12/2500 -2932S515 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2932 and SITC group 515 01/01/1997 31/12/2500 -2932S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2932 and SITC section 9 01/01/2002 31/12/2500 -2932S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2932 and SITC group 999 01/01/2002 31/12/2500 -2933 01/01/1988 31/12/2500 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only 01/01/1988 31/12/2500 -293311 01/01/1988 31/12/2500 LIBEN Phenazone "antipyrin" and its derivatives 01/01/1988 31/12/2500 -29331110 01/01/1988 31/12/2500 LIBEN Propyphenazone 01/01/1988 31/12/2500 -29331190 01/01/1988 31/12/2500 LIBEN Phenazone "antipyrin" and its derivatives (excl. propyphenazone (INN)) 01/01/1988 31/12/2500 -293319 01/01/1988 31/12/2500 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing an unfused pyrazole ring, whether or not hydrogenated, in the structure (excl. phenazone "antipyrin" and its derivatives) 01/01/1988 31/12/2500 -29331910 01/01/1988 31/12/2500 LIBEN Phenylbutazone (INN) 01/01/1988 31/12/2500 -29331990 01/01/1988 31/12/2500 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing an unfused pyrazole ring, whether or not hydrogenated, in the structure (excl. phenazone "antipyrin" and its derivatives and phenylbutazone (INN)) 01/01/1988 31/12/2500 -293321 01/01/1988 31/12/2500 LIBEN Hydantoin and its derivatives 01/01/1988 31/12/2500 -29332100 01/01/1988 31/12/2500 LIBEN Hydantoin and its derivatives 01/01/1988 31/12/2500 -293329 01/01/1988 31/12/2500 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing an unfused imidazole ring, whether or not hydrogenated, in the structure (excl. hydantoin and its derivatives, and products of subheading 3002 10) 01/01/1988 31/12/2500 -29332910 01/01/1988 31/12/2500 LIBEN Naphazoline hydrochloride "INNM" and naphazoline nitrate "INNM"; phentolamine (INN); tolazoline hydrochloride "INNM" 01/01/1988 31/12/2500 -29332990 01/01/1988 31/12/2011 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing an unfused imidazole ring, whether or not hydrogenated, in the structure (excl. hydantoin and its derivatives, naphazoline hydrochloride "INNM", naphazoline nitrate "INNM", phentolamine (INN) and tolazoline hydrochloride "INNM") 01/01/1988 31/12/2011 -29332990 01/01/2012 31/12/2500 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing an unfused imidazole ring, whether or not hydrogenated, in the structure (excl. hydantoin and its derivatives, naphazoline hydrochloride "INNM", naphazoline nitrate "INNM", phentolamine (INN) and tolazoline hydrochloride "INNM") 01/01/2012 31/12/2500 -293329SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 2933 29 01/01/2006 31/12/2500 -293331 01/01/1988 31/12/2500 LIBEN Pyridine and its salts 01/01/1988 31/12/2500 -29333100 01/01/1988 31/12/2500 LIBEN Pyridine and its salts 01/01/1988 31/12/2500 -293332 01/01/1996 31/12/2500 LIBEN Piperidine and its salts 01/01/1996 31/12/2500 -29333200 01/01/1996 31/12/2500 LIBEN Piperidine and its salts 01/01/1996 31/12/2500 -293333 01/01/2002 31/12/2500 LIBEN Alfentanil (INN), anileridine (INN), bezitramide (INN), bromazepam (INN), difenoxin (INN), diphenoxylate (INN), dipipanone (INN), fentanyl (INN), ketobemidone (INN), methylphenidate (INN), pentazocine (INN), pethidine (INN), pethidine (INN) intermediate A, phencyclidine (INN) "PCP", phenoperidine (INN), pipradol (INN), piritramide (INN), propiram (INN) and trimeperidine (INN), and salts thereof 01/01/2002 31/12/2500 -29333300 01/01/2002 31/12/2500 LIBEN Alfentanil (INN), anileridine (INN), bezitramide (INN), bromazepam (INN), difenoxin (INN), diphenoxylate (INN), dipipanone (INN), fentanyl (INN), ketobemidone (INN), methylphenidate (INN), pentazocine (INN), pethidine (INN), pethidine (INN) intermediate A, phencyclidine (INN) "PCP", phenoperidine (INN), pipradol (INN), piritramide (INN), propiram (INN) and trimeperidine (INN), and salts thereof 01/01/2002 31/12/2500 -293339 01/01/1988 31/12/2500 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing an unfused pyridine ring, whether or not hydrogenated, in the structure (excl. pyridine, piperidine, alfentanil (INN), anileridine (INN), bezitramide (INN), bromazepam (INN), difenoxin (INN), diphenoxylate (INN), dipipanone (INN), fentanyl (INN), ketobemidone (INN), methylphenidate (INN), pentazocine (INN), pethidine (INN), pethidine (INN) intermediate A, phencyclidine (INN) "PCP", phenoperidine (INN), pipradol (INN), piritramide (INN), propiram (INN), trimeperidine (INN), and salts thereof, and inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -29333910 01/01/1988 31/12/2500 LIBEN Iproniazid (INN); ketobemidone hydrochloride "INNM"; pyrodostigmine bromide (INN) 01/01/1988 31/12/2500 -29333920 01/01/1997 31/12/2500 LIBEN 2,3,5,6-Tetrachloropyridine 01/01/1997 31/12/2500 -29333925 01/01/1997 31/12/2500 LIBEN 3,6-Dichloropyridine-2-carboxylic acid 01/01/1997 31/12/2500 -29333930 01/01/1992 31/12/1995 LIBEN Piperidine and its salts 01/01/1992 31/12/1995 -29333935 01/01/1997 31/12/2500 LIBEN 2-Hydroxyethylammonium-3,6-dichloropyridine-2-carboxylate 01/01/1997 31/12/2500 -29333940 01/01/1997 31/12/2500 LIBEN 2-Butoxyethyl"3,5,6-trichloro-2-pyridyloxy"acetate 01/01/1997 31/12/2500 -29333945 01/01/1997 31/12/2500 LIBEN 3,5-Dichloro-2,4,6-trifluoropyridine 01/01/1997 31/12/2500 -29333950 01/01/1997 31/12/2500 LIBEN Fluroxypyr (ISO) methyl ester 01/01/1997 31/12/2500 -29333955 01/01/1997 31/12/2500 LIBEN 4-Methylpyridine 01/01/1997 31/12/2500 -29333980 01/01/1992 31/12/1996 LIBEN Compounds, heterocyclic, with nitrogen hetero-atom"s" only, containing an unfused pyridine ring, whether or not hydrogenated, in the structure (excl. pyridine and its salts, piperidine and its salts and iproniazid (INN), ketobemidone hydrochloride "INNM" and pyridostigmine bromide (INN)) 01/01/1992 31/12/1996 -29333990 01/01/1988 31/12/1991 LIBEN Heterocyclic compounds with nitrogen hetero-atom(s) only, containing an unfused pyridine ring, whether or not hydrogenated, in the structure (excl. pyridine and its salts, iproniazid, ketobemidone hydrochloride and pyrodostigmine bromide) 01/01/1988 31/12/1991 -29333995 01/01/1997 31/12/2001 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing an unfused pyridine ring, whether or not hydrogenated, in the structure (excl. pyridine and its salts, piperidine and its salts and iproniazid (INN), ketobemidone hydrochloride "INNM", pyridostigmine bromide (INN), 2,3,5,6-tetrachloropyridine, 3,6-dichloropyridine-2-carboxylic acid, 2-hydroxyethylammonium-3,6-dichloropyridine-2-carboxylate, 2-butoxyethyl"3,5,6-trichloro-2-pyridyloxy"acetate, 3,5-dichloro-2,4,6-trifluoropyridine, fluroxypyr (ISO) methyl ester and 4-methylpyridine) 01/01/1997 31/12/2001 -29333999 01/01/2002 31/12/2006 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing an unfused pyridine ring, whether or not hydrogenated, in the structure (excl. pyridine, piperidine, alfentanil (INN), anileridine (INN), bezitramide (INN), bromazepam (INN), difenoxin (INN), diphenoxylate (INN), dipipanone (INN), fentanyl (INN), ketobemidone (INN), methylphenidate (INN), pentazocine (INN), pethidine (INN), pethidine (INN) intermediate A, phencyclidine (INN) "PCP", phenoperidine (INN), pipradol (INN), piritramide (INN), propiram (INN), trimeperidine (INN), and their salts, and iproniazid (INN), ketobemidone hydrochloride "INNM", pyridostigmine bromide (INN), 2,3,5,6-tetrachloropyridine, 3,6-dichloropyridine-2-carboxylic acid, 2-hydroxyethylammonium-3,6-dichloropyridine-2-carboxylate, 2-butoxyethyl"3,5,6-trichloro-2-pyridyloxy"acetate, 3,5-dichloro-2,4,6-trifluoropyridine, fluroxypyr (ISO) methyl ester and 4-methylpyridine) 01/01/2002 31/12/2006 -29333999 01/01/2007 31/12/2016 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing an unfused pyridine ring, whether or not hydrogenated, in the structure (excl. pyridine, piperidine, alfentanil (INN), anileridine (INN), bezitramide (INN), bromazepam (INN), difenoxin (INN), diphenoxylate (INN), dipipanone (INN), fentanyl (INN), ketobemidone (INN), methylphenidate (INN), pentazocine (INN), pethidine (INN), pethidine (INN) intermediate A, phencyclidine (INN) "PCP", phenoperidine (INN), pipradol (INN), piritramide (INN), propiram (INN), trimeperidine (INN), and their salts, and iproniazid (INN), ketobemidone hydrochloride "INNM", pyridostigmine bromide (INN), 2,3,5,6-tetrachloropyridine, 3,6-dichloropyridine-2-carboxylic acid, 2-hydroxyethylammonium-3,6-dichloropyridine-2-carboxylate, 2-butoxyethyl"3,5,6-trichloro-2-pyridyloxy"acetate, 3,5-dichloro-2,4,6-trifluoropyridine, fluroxypyr (ISO) methyl ester, 4-methylpyridine, and inorganic or organic compounds of mercury) 01/01/2007 31/12/2016 -29333999 01/01/2017 31/12/2500 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing an unfused pyridine ring, whether or not hydrogenated, in the structure (excl. pyridine, piperidine, alfentanil (INN), anileridine (INN), bezitramide (INN), bromazepam (INN), difenoxin (INN), diphenoxylate (INN), dipipanone (INN), fentanyl (INN), ketobemidone (INN), methylphenidate (INN), pentazocine (INN), pethidine (INN), pethidine (INN) intermediate A, phencyclidine (INN) "PCP", phenoperidine (INN), pipradol (INN), piritramide (INN), propiram (INN), trimeperidine (INN), and their salts, and iproniazid (INN), ketobemidone hydrochloride "INNM", pyridostigmine bromide (INN), 2,3,5,6-tetrachloropyridine, 3,6-dichloropyridine-2-carboxylic acid, 2-hydroxyethylammonium-3,6-dichloropyridine-2-carboxylate, 2-butoxyethyl"3,5,6-trichloro-2-pyridyloxy"acetate, 3,5-dichloro-2,4,6-trifluoropyridine, fluroxypyr (ISO) methyl ester, 4-methylpyridine, and inorganic or organic compounds of mercury) 01/01/2017 31/12/2500 -293340 01/01/1988 31/12/2001 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing a quinoline or isoquinoline ring-system but not further fused, whether or not hydrogenated 01/01/1988 31/12/2001 -29334010 01/01/1988 31/12/2001 LIBEN Halogen derivatives of quinoline; quinolinecarboxylic acid derivatives 01/01/1988 31/12/2001 -29334030 01/01/1995 31/12/2001 LIBEN Dextromethorphan (INN) and its salts 01/01/1995 31/12/2001 -29334090 01/01/1988 31/12/2001 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing a quinoline or isoquinoline ring-system but not further fused, whether or not hydrogenated (excl. halogen derivatives of quinoline and quinolinecarboxylic acid derivatives) 01/01/1988 31/12/2001 -293341 01/01/2002 31/12/2500 LIBEN Levorphanol (INN) and its salts 01/01/2002 31/12/2500 -29334100 01/01/2002 31/12/2500 LIBEN Levorphanol (INN) and its salts 01/01/2002 31/12/2500 -293349 01/01/2002 31/12/2500 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing in the structure a quinoline or isoquinoline ring-system, whether or not hydrogenated, but not further fused (excl. levorphanol (INN) and its salts, and inorganic or organic compounds of mercury) 01/01/2002 31/12/2500 -29334910 01/01/2002 31/12/2016 LIBEN Halogen derivatives of quinoline; quinolinecarboxylic acid derivatives 01/01/2002 31/12/2016 -29334910 01/01/2017 31/12/2500 LIBEN Halogen derivatives of quinoline; quinolinecarboxylic acid derivatives 01/01/2017 31/12/2500 -29334930 01/01/2002 31/12/2500 LIBEN Dextromethorphan (INN) and its salts 01/01/2002 31/12/2500 -29334990 01/01/2002 31/12/2006 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing in the structure a quinoline or isoquinoline ring-system, whether or not hydrogenated, but not further fused (excl. levorphanol (INN), dextromethorphan (INN), and their salts, halogen derivatives of quinoline and quinolinecarboxylic acid derivatives) 01/01/2002 31/12/2006 -29334990 01/01/2007 31/12/2500 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing in the structure a quinoline or isoquinoline ring-system, whether or not hydrogenated, but not further fused (excl. levorphanol (INN), dextromethorphan (INN), and their salts, halogen derivatives of quinoline, quinolinecarboxylic acid derivatives, and inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -293351 01/01/1988 31/12/2001 LIBEN Malonylurea "barbituric acid" and its derivatives; salts thereof 01/01/1988 31/12/2001 -29335110 01/01/1988 31/12/1997 LIBEN Phenobarbital (INN) and its salts 01/01/1988 31/12/1997 -29335120 01/01/1998 31/12/2001 LIBEN Phenobarbital (INN), barbital (INN), and their salts 01/01/1998 31/12/2001 -29335130 01/01/1988 31/12/1997 LIBEN Barbital (INN) and its salts 01/01/1988 31/12/1997 -29335190 01/01/1988 31/12/2001 LIBEN Malonylurea "barbituric acid" and its derivatives; salts thereof (excl. phenobarbital (INN), barbital (INN) and their salts) 01/01/1988 31/12/2001 -293352 01/01/2002 31/12/2500 LIBEN Malonylurea "barbituric acid" and its salts 01/01/2002 31/12/2500 -29335200 01/01/2002 31/12/2500 LIBEN Malonylurea "barbituric acid" and its salts 01/01/2002 31/12/2500 -293353 01/01/2002 31/12/2500 LIBEN Allobarbital (INN), amobarbital (INN), barbital (INN), butalbital (INN), butobarbital (INN), cyclobarbital (INN), methylphenobarbital (INN), pentobarbital (INN), phenobarbital (INN), secbutabarbital (INN), secobarbital (INN) and vinylbital (INN), and salts thereof 01/01/2002 31/12/2500 -29335310 01/01/2002 31/12/2500 LIBEN Phenobarbital (INN), barbital (INN), and salts thereof 01/01/2002 31/12/2500 -29335390 01/01/2002 31/12/2500 LIBEN Allobarbital (INN), amobarbital (INN), butalbital (INN), butobarbital (INN), cyclobarbital (INN), methylphenobarbital (INN), pentobarbital (INN), secbutabarbital (INN), secobarbital (INN) and vinylbital (INN), and salts thereof 01/01/2002 31/12/2500 -293354 01/01/2002 31/12/2500 LIBEN Derivatives of malonylurea "barbituric acid" and salts thereof (excl. salts of malonylurea) 01/01/2002 31/12/2500 -29335400 01/01/2002 31/12/2500 LIBEN Derivatives of malonylurea "barbituric acid" and salts thereof (excl. salts of malonylurea) 01/01/2002 31/12/2500 -293355 01/01/2002 31/12/2500 LIBEN Loprazolam (INN), mecloqualone (INN), methaqualone (INN) and zipeprol (INN), and salts thereof 01/01/2002 31/12/2500 -29335500 01/01/2002 31/12/2500 LIBEN Loprazolam (INN), mecloqualone (INN), methaqualone (INN) and zipeprol (INN), and salts thereof 01/01/2002 31/12/2500 -293359 01/01/1988 31/12/2500 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing a pyrimidine ring, whether or not hydrogenated, or piperazine ring in the structure (excl. malonylurea "barbituric acid" and its derivatives, allobarbital (INN), amobarbital (INN), barbital (INN), butalbital (INN), butobarbital (INN), cyclobarbital (INN), methylphenobarbital (INN), pentobarbital (INN), phenobarbital (INN), secbutabarbital (INN), secobarbital (INN), vinylbital (INN), loprazolam (INN), mecloqualone (INN), methaqualone (INN) and zipeprol (INN), and salts thereof) 01/01/1988 31/12/2500 -29335910 01/01/1988 31/12/2500 LIBEN Diazinon (ISO) 01/01/1988 31/12/2500 -29335920 01/01/1997 31/12/2500 LIBEN 1,4-Diazabicyclo[2.2.2]octane "triethylenediamine" 01/01/1997 31/12/2500 -29335970 01/01/1997 31/12/2001 LIBEN Heterocyclic compounds with nitrogen hetero-atom"s" only, containing a pyrimidine ring, whether or not hydrogenated, or piperazine ring in the structure (excl. malonylurea "barbituric acid", its derivatives and salts, diazinon (ISO) and 1,4-diazabicyclo[2.2.2]octane "triethylenediamine") 01/01/1997 31/12/2001 -29335980 01/01/1996 31/12/1996 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing a pyrimidine ring, whether or not hydrogenated, or piperazine ring in the structure (excl. malonylurea "barbituric acid", its derivatives and salts, and diazinon (ISO)) 01/01/1996 31/12/1996 -29335990 01/01/1988 31/12/1995 LIBEN Heterocyclic compounds with nitrogen hetero-atom(s) only, containing a pyrimidine ring, whether or not hydrogenated, or piperazine ring in the structure (excl. malonylurea "barbituric acid", its derivatives and salts, and diazinon); nucleic acids and their salts 01/01/1988 31/12/1995 -29335995 01/01/2002 31/12/2016 LIBEN Heterocyclic compounds with nitrogen hetero-atom"s" only, containing a pyrimidine ring, whether or not hydrogenated, or piperazine ring in the structure (excl. malonylurea "barbituric acid" and its derivatives, allobarbital (INN), amobarbital (INN), barbital (INN), butalbital (INN), butobarbital (INN), cyclobarbital (INN), methylphenobarbital (INN), pentobarbital (INN), phenobarbital (INN), secbutabarbital (INN), secobarbital (INN), vinylbital (INN), loprazolam (INN), mecloqualone (INN), methaqualone (INN) and zipeprol (INN), and salts thereof, and diazinon (ISO) and 1,4-diazabicyclo[2.2.2]octane "triethylenediamine") 01/01/2002 31/12/2016 -29335995 01/01/2017 31/12/2500 LIBEN Heterocyclic compounds with nitrogen hetero-atom"s" only, containing a pyrimidine ring, whether or not hydrogenated, or piperazine ring in the structure (excl. malonylurea "barbituric acid" and its derivatives, allobarbital (INN), amobarbital (INN), barbital (INN), butalbital (INN), butobarbital (INN), cyclobarbital (INN), methylphenobarbital (INN), pentobarbital (INN), phenobarbital (INN), secbutabarbital (INN), secobarbital (INN), vinylbital (INN), loprazolam (INN), mecloqualone (INN), methaqualone (INN) and zipeprol (INN), and salts thereof, and diazinon (ISO) and 1,4-diazabicyclo[2.2.2]octane "triethylenediamine") 01/01/2017 31/12/2500 -293361 01/01/1988 31/12/2500 LIBEN Melamine 01/01/1988 31/12/2500 -29336100 01/01/1988 31/12/2500 LIBEN Melamine 01/01/1988 31/12/2500 -293369 01/01/1988 31/12/2500 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing an unfused triazine ring, whether or not hydrogenated, in the structure (excl. melamine) 01/01/1988 31/12/2500 -29336910 01/01/1988 31/12/2500 LIBEN Atrazine (ISO); propazine (ISO); simazine (ISO); hexahydro-1,3,5-trinitro-1,3,5-triazine "hexogen, trimethylenetrinitramine" 01/01/1988 31/12/2500 -29336920 01/01/1994 31/12/2008 LIBEN Methenamine (INN) "hexamethylenetetramine" 01/01/1994 31/12/2008 -29336930 01/01/1997 31/12/2008 LIBEN 2,6-Di-tert-butyl-4-[4,6-bis"octylthio"-1,3,5-triazin-2-ylamino]phenol 01/01/1997 31/12/2008 -29336940 01/01/2009 31/12/2500 LIBEN Methenamine (INN) (hexamethylenetetramine); 2,6-Di-tert-butyl-4-[4,6-bis(octylthio)-1,3,5-triazine-2-ylamino]phenol 01/01/2009 31/12/2500 -29336980 01/01/1997 31/12/2500 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only, containing an unfused triazine ring, whether or not hydrogenated, in the structure (excl. melamine, atrazine (ISO), propazine (ISO), simazine (ISO), hexahydro-1,3,5-trinitro-1,3,5-triazine "hexogen, trimethylenetrinitramine", methenamine [INN] "hexamethylenetetramine" and 2,6-di-tert-butyl-4-[4,6-bis"octylthio"-1,3,5-triazine-2-ylamino]phenol) 01/01/1997 31/12/2500 -29336990 01/01/1988 31/12/1996 LIBEN Heterocyclic compounds with nitrogen hetero-atom(s) only, containing an unfused triazine ring, whether or not hydrogenated, in the structure (excl. melamine, atrazine, propazine, simazine, hexahydro-1,3,5-trinitro-1,3,5-triazine "hexogen, trimethylenetrinitramine" and methenamine (INN) "hexamethylenetetramine") 01/01/1988 31/12/1996 -293371 01/01/1988 31/12/2500 LIBEN 6-Hexanelactam "epsilon-caprolactam" 01/01/1988 31/12/2500 -29337100 01/01/1988 31/12/2500 LIBEN 6-Hexanelactam "epsilon-caprolactam" 01/01/1988 31/12/2500 -293372 01/01/2002 31/12/2500 LIBEN Clobazam (INN) and methyprylon (INN) 01/01/2002 31/12/2500 -29337200 01/01/2002 31/12/2500 LIBEN Clobazam (INN) and methyprylon (INN) 01/01/2002 31/12/2500 -293379 01/01/1988 31/12/2500 LIBEN Lactams (excl. 6-hexanelactam "epsilon-caprolactam", clobazam (INN), methyprylon (INN), and inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -29337900 01/01/1988 31/12/2001 LIBEN Lactams (excl. 6-hexanelactam "epsilon-caprolactam") 01/01/1988 31/12/2001 -29337900 01/01/2002 31/12/2006 LIBEN Lactams (excl. 6-hexanelactam "epsilon-caprolactam", clobazam (INN) and methyprylon (INN)) 01/01/2002 31/12/2006 -29337900 01/01/2007 31/12/2016 LIBEN Lactams (excl. 6-hexanelactam "epsilon-caprolactam", clobazam (INN), methyprylon (INN), and inorganic or organic compounds of mercury) 01/01/2007 31/12/2016 -29337900 01/01/2017 31/12/2500 LIBEN Lactams (excl. 6-hexanelactam "epsilon-caprolactam", clobazam (INN), methyprylon (INN), and inorganic or organic compounds of mercury) 01/01/2017 31/12/2500 -293390 01/01/1988 31/12/2001 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only (excl. those containing an unfused pyrazole, imidazole, pyridine or triazine ring, whether or not hydrogenated, a quinoline or isoquinoline ring-system, not further fused, whether or not hydrogenated, a pyrimidine ring, whether or not hydrogenated, or piperazine ring in the structure, and lactams) 01/01/1988 31/12/2001 -29339010 01/01/1988 31/12/1993 LIBEN Methenamine 'hexamethylenetetramine'; benzimidazole-2-thiol 'mercaptobenzimidazole' 01/01/1988 31/12/1993 -29339020 01/01/1994 31/12/2001 LIBEN Benzimidazole-2-thiol "mercaptobenzimidazole" 01/01/1994 31/12/2001 -29339030 01/01/1988 31/12/1994 LIBEN Indole, 3-methylindole 'skatole', 6-allyl-6,7-dihydro-5h-dibenz(c,e) azepine 'azapetine', chlordiazepoxide, dextromethorphan, phenindamine and their salts; imipramine hydrochloride 01/01/1988 31/12/1994 -29339040 01/01/1995 31/12/2001 LIBEN Indole, 3-methylindole "skatole", 6-allyl-6,7-dihydro-5H-dibenz"c,e"azepine "azapetine", chlorodiazepoxide (INN), phenindamine (INN) and their salts; imipramine hydrochloride "INNM" 01/01/1995 31/12/2001 -29339050 01/01/1988 31/12/2001 LIBEN Monoazepines 01/01/1988 31/12/2001 -29339060 01/01/1988 31/12/2001 LIBEN Diazepines 01/01/1988 31/12/2001 -29339065 01/01/1997 31/12/2001 LIBEN 2,4-Di-tert-butyl-6-"5-chlorobenzotriazol-2-yl"phenol 01/01/1997 31/12/2001 -29339070 01/01/1988 31/12/1992 LIBEN Azocines, whether or not hydrogenated 01/01/1988 31/12/1992 -29339080 01/01/1993 31/12/1996 LIBEN Heterocyclic compounds with nitrogen hetero-atom"s" only (excl. compounds containing an unfused pyrazole, imidazole, pyridine or triazine ring, whether or not hydrogenated, a quinoline orisoquinoline ring-system, whether or not hydrogenated, not further fused, or a piperazine ring, whether or not hydrogenated, in the structure, lactams; benzimidazole2thiol [meraptobenzimidazole], indole, 3methylindole [skatole], 6allyl6, 7dihydro5Hdibenz[c,e]azepine [azapetine], chlordiazepoxide [INN], phenindamine [INN] and their salts, imipramine hydrochloride [INNM], monoazepines and diazepines) 01/01/1993 31/12/1996 -29339090 01/01/1988 31/12/1992 LIBEN Heterocyclic compounds with nitrogen hetero-atom(s) only (excl. those containing an unfused pyrazole, imidazole, pyridine or triazine ring, whether or not hydrogenated, a quinoline or isoquinoline ring-system, not further fused, whether or not hydrogenated, a pyrimidine ring, whether or not hydrogenated, or piperazine ring in the structure, lactams and compounds of subheadings 2933.90-10 to 2933.90-70) 01/01/1988 31/12/1992 -29339095 01/01/1997 31/12/2001 LIBEN Heterocyclic compounds with nitrogen hetero-atom"s" only (excl. compounds containing an unfused pyrazole, imidazole, pyridine or triazine ring, whether or not hydrogenated, a quinoline or isoquinoline ring-system, whether or not hydrogenated, not further fused, or a piperazine ring, whether or not hydrogenated, in the structure, lactams, benzimidazole-2-thiol "mercaptobenzimidazole", indole, 3-methylindole "skatole", 6-allyl-6,7-dihydro-5H-dibenz"c,e"azepine "azapetine", chlorodiazepoxide (INN), phenindamine (INN) and their salts, imipramine hydrochloride "INNM", monoazepines, diazepines and 2,4-di-tert-butyl-6-"5-chlorobenzotriazol-2-yl"phenol) 01/01/1997 31/12/2001 -293391 01/01/2002 31/12/2500 LIBEN Alprazolam (INN), camazepam (INN), chlordiazepoxide (INN), clonazepam (INN), clorazepate, delorazepam (INN), diazepam (INN), estazolam (INN), ethyl loflazepate (INN), fludiazepam (INN), flunitrazepam (INN), flurazepam (INN), halazepam (INN), lorazepam (INN), lormetazepam (INN), mazindol (INN), medazepam (INN), midazolam (INN), nimetazepam (INN), nitrazepam (INN), nordazepam (INN), oxazepam (INN), pinazepam (INN), prazepam (INN), pyrovalerone (INN), temazepam (INN), tetrazepam (INN) and triazolam (INN), and salts thereof 01/01/2002 31/12/2500 -29339110 01/01/2002 31/12/2500 LIBEN Chlorodiazepoxide (INN) 01/01/2002 31/12/2500 -29339190 01/01/2002 31/12/2500 LIBEN Alprazolam (INN), camazepam (INN), clonazepam (INN), clorazepate, delorazepam (INN), diazepam (INN), estazolam (INN), ethyl loflazepate (INN), fludiazepam (INN), flunitrazepam (INN), flurazepam (INN), halazepam (INN), lorazepam (INN), lormetazepam (INN), mazindol (INN), medazepam (INN), midazolam (INN), nimetazepam (INN), nitrazepam (INN), nordazepam (INN), oxazepam (INN), pinazepam (INN), prazepam (INN), pyrovalerone (INN), temazepam (INN), tetrazepam (INN) and triazolam (INN), salts thereof, and salts of chlordiazepoxide (INN) 01/01/2002 31/12/2500 -293392 01/01/2017 31/12/2500 LIBEN Azinphos-methyl (ISO) 01/01/2017 31/12/2500 -29339200 01/01/2017 31/12/2500 LIBEN Azinphos-methyl (ISO) 01/01/2017 31/12/2500 -293399 01/01/2002 31/12/2500 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only (excl. those containing an unfused pyrazole, imidazole, pyridine or triazine ring, whether or not hydrogenated, a quinoline or isoquinoline ring-system, not further fused, whether or not hydrogenated, a pyrimidine ring, whether or not hydrogenated, or piperazine ring in the structure, and lactams, alprazolam (INN), camazepam (INN), chlordiazepoxide (INN), clonazepam (INN), clorazepate, delorazepam (INN), diazepam (INN), estazolam (INN), ethyl loflazepate (INN), fludiazepam (INN), flunitrazepam (INN), flurazepam (INN), halazepam (INN), lorazepam (INN), lormetazepam (INN), mazindol (INN), medazepam (INN), midazolam (INN), nimetazepam (INN), nitrazepam (INN), nordazepam (INN), oxazepam (INN), pinazepam (INN), prazepam (INN), pyrovalerone (INN), temazepam (INN), tetrazepam (INN) and triazolam (INN), salts thereof and azinphos-methyl (ISO)) 01/01/2002 31/12/2500 -29339910 01/01/2002 31/12/2008 LIBEN Benzimidazole-2-thiol "mercaptobenzimidazole" 01/01/2002 31/12/2008 -29339920 01/01/2002 31/12/2500 LIBEN Indole, 3-methylindole "skatole", 6-allyl-6,7-dihydro-5H-dibenz"c,e"azepine "azapetine", phenindamine (INN) and their salts; imipramine hydrochloride "INNM" 01/01/2002 31/12/2500 -29339930 01/01/2002 31/12/2008 LIBEN Monoazepines 01/01/2002 31/12/2008 -29339940 01/01/2002 31/12/2008 LIBEN Diazepines 01/01/2002 31/12/2008 -29339950 01/01/2002 31/12/2500 LIBEN 2,4-Di-tert-butyl-6-"5-chlorobenzotriazol-2-yl"phenol 01/01/2002 31/12/2500 -29339980 01/01/2009 31/12/2016 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only (excl. those containing an unfused pyrazole, imidazole, pyridine or triazine ring, whether or not hydrogenated, a quinoline or isoquinoline ring-system, not further fused, whether or not hydrogenated, a pyrimidine ring, whether or not hydrogenated, or piperazine ring in the structure, lactams, alprazolam (INN), camazepam (INN), chlordiazepoxide (INN), clonazepam (INN), clorazepate, delorazepam (INN), diazepam (INN), estazolam (INN), ethyl loflazepate (INN), fludiazepam (INN), flunitrazepam (INN), flurazepam (INN), halazepam (INN), lorazepam (INN), lormetazepam (INN), mazindol (INN), medazepam (INN), midazolam (INN), nimetazepam (INN), nitrazepam (INN), nordazepam (INN), oxazepam (INN), pinazepam (INN), prazepam (INN), pyrovalerone (INN), temazepam (INN), tetrazepam (INN), triazolam (INN), salts thereof, indole, 3-methylindole "skatole", 6-allyl-6,7-dihydro-5H-dibenz"c,e"azepine "azapetine", phenindamine (INN) and their salts, imipramine hydrochloride "INNM", 2,4-di-tert-butyl-6-"5-chlorobenzotriazol-2-yl"phenol) 01/01/2009 31/12/2016 -29339980 01/01/2017 31/12/2500 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only (excl. those containing an unfused pyrazole, imidazole, pyridine or triazine ring, whether or not hydrogenated, a quinoline or isoquinoline ring-system, not further fused, whether or not hydrogenated, a pyrimidine ring, whether or not hydrogenated, or piperazine ring in the structure, lactams, alprazolam (INN), camazepam (INN), chlordiazepoxide (INN), clonazepam (INN), clorazepate, delorazepam (INN), diazepam (INN), estazolam (INN), ethyl loflazepate (INN), fludiazepam (INN), flunitrazepam (INN), flurazepam (INN), halazepam (INN), lorazepam (INN), lormetazepam (INN), mazindol (INN), medazepam (INN), midazolam (INN), nimetazepam (INN), nitrazepam (INN), nordazepam (INN), oxazepam (INN), pinazepam (INN), prazepam (INN), pyrovalerone (INN), temazepam (INN), tetrazepam (INN), triazolam (INN), salts thereof, indole, 3-methylindole "skatole", 6-allyl-6,7-dihydro-5H-dibenz"c,e"azepine "azapetine", phenindamine (INN) and their salts, imipramine hydrochloride "INNM", 2,4-di-tert-butyl-6-"5-chlorobenzotriazol-2-yl"phenol and azinphos-methyl (ISO)) 01/01/2017 31/12/2500 -29339990 01/01/2002 31/12/2008 LIBEN Heterocyclic compounds with nitrogen hetero-atom[s] only (excl. those containing an unfused pyrazole, imidazole, pyridine or triazine ring, whether or not hydrogenated, a quinoline or isoquinoline ring-system, not further fused, whether or not hydrogenated, a pyrimidine ring, whether or not hydrogenated, or piperazine ring in the structure, lactams, alprazolam (INN), camazepam (INN), chlordiazepoxide (INN), clonazepam (INN), clorazepate, delorazepam (INN), diazepam (INN), estazolam (INN), ethyl loflazepate (INN), fludiazepam (INN), flunitrazepam (INN), flurazepam (INN), halazepam (INN), lorazepam (INN), lormetazepam (INN), mazindol (INN), medazepam (INN), midazolam (INN), nimetazepam (INN), nitrazepam (INN), nordazepam (INN), oxazepam (INN), pinazepam (INN), prazepam (INN), pyrovalerone (INN), temazepam (INN), tetrazepam (INN), triazolam (INN), salts thereof, benzimidazole-2-thiol "mercaptobenzimidazole", indole, 3-methylindole "skatole", 6-allyl-6,7-dihydro-5H-dibenz"c,e"azepine "azapetine", phenindamine (INN) and their salts, imipramine hydrochloride "INNM", monoazepines, diazepines and 2,4-di-tert-butyl-6-"5-chlorobenzotriazol-2-yl"phenol) 01/01/2002 31/12/2008 -2933S5 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 2933 and SITC section 5 01/01/2001 31/12/2500 -2933S515 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 2933 and SITC group 515 01/01/2001 31/12/2500 -2933S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2933 and SITC section 9 01/01/2002 31/12/2500 -2933S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2933 and SITC group 999 01/01/2002 31/12/2500 -2934 01/01/1988 31/12/2500 LIBEN Nucleic acids and their salts, whether or not chemically defined; heterocyclic compounds (excl. with oxygen only or with nitrogen hetero-atom[s] only) 01/01/1988 31/12/2500 -293410 01/01/1988 31/12/2500 LIBEN Heterocyclic compounds containing an unfused thiazole ring, whether or not hydrogenated, in the structure 01/01/1988 31/12/2500 -29341000 01/01/1988 31/12/2500 LIBEN Heterocyclic compounds containing an unfused thiazole ring, whether or not hydrogenated, in the structure 01/01/1988 31/12/2500 -293420 01/01/1988 31/12/2500 LIBEN Heterocyclic compounds containing in the structure a benzothiazole ring-system, whether or not hydrogenated, but not further fused (excl. inorganic or organic compounds of mercury) 01/01/1988 31/12/2500 -29342010 01/01/1988 31/12/1992 LIBEN Di'benzothiazol-2-yl'disulphide 01/01/1988 31/12/1992 -29342020 01/01/1993 31/12/2500 LIBEN Di"benzothiazol-2-yl"disulphide; benzothiazol-2-thiol "mercaptobenzothiazole" and its salts 01/01/1993 31/12/2500 -29342030 01/01/1988 31/12/1992 LIBEN Benzothiazole-2-thiol 'mercaptobenzothiazole' and its salts 01/01/1988 31/12/1992 -29342050 01/01/1988 31/12/1997 LIBEN Benzothiazole-2-thiol "mercaptobenzothiazole" derivatives (excl. salts) 01/01/1988 31/12/1997 -29342080 01/01/1998 31/12/2006 LIBEN Heterocyclic compounds containing in the structure a benzothiazole ring-system, whether or not hydrogenated, but not further fused (excl. di"benzothiazol-2-yl"disulphide; benzothiazole-2-thiol "mercaptobenzothiazole" and its salts) 01/01/1998 31/12/2006 -29342080 01/01/2007 31/12/2500 LIBEN Heterocyclic compounds containing in the structure a benzothiazole ring-system, whether or not hydrogenated, but not further fused (excl. di"benzothiazol-2-yl"disulphide; benzothiazole-2-thiol "mercaptobenzothiazole" and its salts, and inorganic or organic compounds of mercury) 01/01/2007 31/12/2500 -29342090 01/01/1988 31/12/1997 LIBEN Heterocyclic compounds containing a benzothiazole ring-system, whether or not hydrogenated, but not further fused (excl. di"benzothiazol-2-yl"disulphide, benzothiazole-2-thiol "mercaptobenzothiazole" and its salts, and benzothiazole-2-thiol "mercaptobenzothiazole" derivatives, other than salts) 01/01/1988 31/12/1997 -293430 01/01/1988 31/12/2500 LIBEN Heterocyclic compounds containing in the structure a phenothiazine ring-system, whether or not hydrogenated, but not further fused 01/01/1988 31/12/2500 -29343010 01/01/1988 31/12/2500 LIBEN Thiethylperazine (INN); thioridazine (INN) and its salts 01/01/1988 31/12/2500 -29343090 01/01/1988 31/12/2500 LIBEN Heterocyclic compounds containing in the structure a phenothiazine ring-system, whether or not hydrogenated, but not further fused (excl. thiethylperazine (INN), and thioridazine (INN) and its salts) 01/01/1988 31/12/2500 -293490 01/01/1988 31/12/2001 LIBEN Nucleic acids and their salts; heterocyclic compounds (excl. with oxygen only or with nitrogen hetero-atom[s] only, compounds containing an unfused thiazole ring, whether or not hydrogenated, or a benzothiazole or phenothiazine ring-system, not further fused) 01/01/1988 31/12/2001 -29349010 01/01/1988 31/12/1998 LIBEN Thiophene 01/01/1988 31/12/1998 -29349030 01/01/1988 31/12/2001 LIBEN Chlorprothixene (INN); thenalidine(INN) and its tartrates and maleates 01/01/1988 31/12/2001 -29349040 01/01/1988 31/12/2001 LIBEN Furazolidone (INN) 01/01/1988 31/12/2001 -29349050 01/01/1988 31/12/1997 LIBEN Monothiamonoazepines, whether or not hydrogenated 01/01/1988 31/12/1997 -29349060 01/01/1988 31/12/1997 LIBEN Monothioles, whether or not hydrogenated 01/01/1988 31/12/1997 -29349070 01/01/1988 31/12/1997 LIBEN Monooxamonoazines, whether or not hydrogenated 01/01/1988 31/12/1997 -29349080 01/01/1988 31/12/1998 LIBEN Monothiins 01/01/1988 31/12/1998 -29349085 01/01/1992 31/12/2001 LIBEN 7-Aminocephalosporanic acid 01/01/1992 31/12/2001 -29349089 01/01/1996 31/12/1998 LIBEN Nucleic acids and their salts 01/01/1996 31/12/1998 -29349090 01/01/1988 31/12/1991 LIBEN Heterocyclic compounds (excl. compounds whose hetero-atom 'e' is oxygen or nitrogen, containing an unfused thiazole ring, whether or not hydrogenated, or a benzothiazol or phenothiazine ring system, not further fused; thiophenes; chloroprothixene 'inn'; thenalidine 'inn' and its tartrates & maleates; furazolidone 'inn'; monothiins, monothiamonoazepines, monothioles and monooxamonoazines, hydrogenated or not) 01/01/1988 31/12/1991 -29349091 01/01/1997 31/12/2001 LIBEN Salts and esters of "6R, 7R"-3-acetoxymethyl-7-["R"-2-formyloxy-2-phenylacetamido]-8-oxo-5-thia-1-azabicyclo[4.2.0]oct-2-ene-2-carboxylic acid 01/01/1997 31/12/2001 -29349093 01/01/1997 31/12/2001 LIBEN 1-[2-"1,3-Dioxan-2-yl"ethyl]-2-methylpyridinium bromide 01/01/1997 31/12/2001 -29349096 01/01/1999 31/12/2001 LIBEN Heterocyclic compounds (excl. those with oxygen or nitrogen hetero-atom"s" only, compounds containing an unfused thiazole ring or a benzothiazol or phenothiazine ring-system, whether or not hydrogenated or further fused, and chlorpothixene (INN), thenalidine (INN) and its tartrates and maleates, furazolidone (INN), 7-aminocephalosporanic acid, salts and esters of "6R, 7R"-3-acetoxymethyl-7-["R"-2-formyloxy-2-phenylacetamido]-8-oxo-5-thia-1-azabicyclo[4.2.0]oct-2-ene-2-carboxylic acid and 1-[2-"1,3-dioxan-2-yl"ethyl]-2-methylpyridinium bromide) 01/01/1999 31/12/2001 -29349097 01/01/1998 31/12/1998 LIBEN Heterocyclic compounds (excl. those with oxygen or nitrogen hetero-atom"s" only, compounds containing an unfused thiazole ring or a benzothiazol or phenothiazine ring-system, whether or not hydrogenated or further fused, and thiophene, chlorpothixene (INN), thenalidine (INN) and its tartrates and maleates, furazolidone (INN), monothiins, 7-aminocephalosporanic acid, salts and esters of "6R, 7R"-3-acetoxymethyl-7-["R"-2-formyloxy-2-phenylacetamido]-8-oxo-5-thia-1-azabicyclo[4.2.0]oct-2-ene-2-carboxylic acid and 1-[2-"1,3-dioxan-2-yl"ethyl]-2-methylpyridinium bromide) 01/01/1998 31/12/1998 -29349098 01/01/1997 31/12/1997 LIBEN Heterocyclic compounds (excl. those with oxygen or nitrogen hetero-atom"s" only, compounds containing an unfused thiazole ring or a benzothiazol or phenothiazine ring-system, whether or not hydrogenated or further fused, and thiophene, chlorpothixene, thenalidine and its tartrates and maleates, furazolidone, monothiamonoazepines, monothioles, monooxamonoazines, monothiins, 7-aminocephalosporanic acid, salts and esters of "6R, 7R"-3-acetoxymethyl-7-["R"-2-formyloxy-2-phenylacetamido]-8-oxo-5-thia-1-azabicyclo[4.2.0]oct-2-ene-2-carboxylic acid and 1-[2-"1,3-dioxan-2-yl"ethyl]-2-methylpyridinium bromide) 01/01/1997 31/12/1997 -29349099 01/01/1992 31/12/1996 LIBEN Compounds, heterocyclic (excl. those with oxygen or nitrogen hetero-atom"s" only, compounds containing an unfused thiazole ring or a benzothiazol or phenothiazine ring-system, whether or not hydrogenated or further fused, and thiophene, chlorpothixene, thenalidine and its tartrates and maleates, furazolidone, monothiamonoazepines, monothioles, monooxamonoazines, monothiins and 7-aminocephalosporanic acid) 01/01/1992 31/12/1996 -293491 01/01/2002 31/12/2500 LIBEN Aminorex (INN), brotizolam (INN), clotiazepam (INN), cloxazolam (INN), dextromoramide (INN), haloxazolam (INN), ketazolam (INN), mesocarb (INN), oxazolam (INN), pemoline (INN), phendimetrazine (INN), phenmetrazine (INN) and sufentanil (INN), and salts thereof 01/01/2002 31/12/2500 -29349100 01/01/2002 31/12/2500 LIBEN Aminorex (INN), brotizolam (INN), clotiazepam (INN), cloxazolam (INN), dextromoramide (INN), haloxazolam (INN), ketazolam (INN), mesocarb (INN), oxazolam (INN), pemoline (INN), phendimetrazine (INN), phenmetrazine (INN) and sufentanil (INN), and salts thereof 01/01/2002 31/12/2500 -293499 01/01/2002 31/12/2500 LIBEN Nucleic acids and their salts, whether or not chemically defined; heterocyclic compounds (excl. with oxygen only or with nitrogen hetero-atom[s] only, compounds containing in the structure an unfused thiazole ring or a benzothiazole or phenothiazine ring-system, not further fused and aminorex (INN), brotizolam (INN), clotiazepam (INN), cloxazolam (INN), dextromoramide (INN), haloxazolam (INN), ketazolam (INN), mesocarb (INN), oxazolam (INN), pemoline (INN), phendimetrazine (INN), phenmetrazine (INN), sufentanil (INN), and salts thereof, and inorganic or organic compounds of mercury whether or not chemically defined, and products of 3002 10) 01/01/2002 31/12/2500 -29349910 01/01/2002 31/12/2008 LIBEN Chlorprothixene (INN); thenalidine (INN) and its tartrates and maleates 01/01/2002 31/12/2008 -29349920 01/01/2002 31/12/2008 LIBEN Furazolidone (INN) 01/01/2002 31/12/2008 -29349930 01/01/2002 31/12/2008 LIBEN 7-Aminocephalosporanic acid 01/01/2002 31/12/2008 -29349940 01/01/2002 31/12/2008 LIBEN Salts and esters of "6R, 7R"-3-acetoxymethyl-7-["R"-2-formyloxy-2-phenylacetamido]-8-oxo-5-thia-1-azabicyclo[4.2.0]oct-2-ene-2-carboxylic acid 01/01/2002 31/12/2008 -29349950 01/01/2002 31/12/2008 LIBEN 1-[2-"1,3-Dioxan-2-yl"ethyl]-2-methylpyridinium bromide 01/01/2002 31/12/2008 -29349960 01/01/2009 31/12/2500 LIBEN Chlorprothixene (INN); thenalidine (INN) and its tartrates and maleates; furazolidone (INN); 7-aminocephalosporanic acid; salts and esters of (6R,7R)-3-acetoxymethyl-7-[(R)-2-formyloxy-2-phenylacetamido]-8- oxo-5-thia-1-azabicyclo[4.2.0]oct-2-ene-2-carboxylic acid; 1-[2-(1,3-Dioxan-2-yl)ethyl]-2-methylpyridinium bromide 01/01/2009 31/12/2500 -29349990 01/01/2002 31/12/2006 LIBEN Nucleic acids and their salts, whether or not chemically defined; heterocyclic compounds (excl. those with oxygen or nitrogen hetero-atom"s" only, compounds containing in the structure an unfused thiazole ring or a benzothiazole or phenothiazine ring-system or further fused, aminorex (INN), brotizolam (INN), clotiazepam (INN), cloxazolam (INN), dextromoramide (INN), haloxazolam (INN), ketazolam (INN), mesocarb (INN), oxazolam (INN), pemoline (INN), phendimetrazine (INN), phenmetrazine (INN), sufentanil (INN), salts thereof, chlorpothixene (INN), thenalidine (INN) and its tartrates and maleates, furazolidone (INN), 7-aminocephalosporanic acid, salts and esters of "6R, 7R"-3-acetoxymethyl-7-["R"-2-formyloxy-2-phenylacetamido]-8-oxo-5-thia-1-azabicyclo[4.2.0]oct-2-ene-2-carboxylic acid and 1-[2-"1,3-dioxan-2-yl"ethyl]-2-methylpyridinium bromide) 01/01/2002 31/12/2006 -29349990 01/01/2007 31/12/2011 LIBEN Nucleic acids and their salts, whether or not chemically defined; heterocyclic compounds (excl. those with oxygen or nitrogen hetero-atom"s" only, compounds containing in the structure an unfused thiazole ring or a benzothiazole or phenothiazine ring-system or further fused, aminorex (INN), brotizolam (INN), clotiazepam (INN), cloxazolam (INN), dextromoramide (INN), haloxazolam (INN), ketazolam (INN), mesocarb (INN), oxazolam (INN), pemoline (INN), phendimetrazine (INN), phenmetrazine (INN), sufentanil (INN), salts thereof, chlorpothixene (INN), thenalidine (INN) and its tartrates and maleates, furazolidone (INN), 7-aminocephalosporanic acid, salts and esters of "6R, 7R"-3-acetoxymethyl-7-["R"-2-formyloxy-2-phenylacetamido]-8-oxo-5-thia-1-azabicyclo[4.2.0]oct-2-ene-2-carboxylic acid, 1-[2-"1,3-dioxan-2-yl"ethyl]-2-methylpyridinium bromide, and inorganic or organic compounds of mercury) 01/01/2007 31/12/2011 -29349990 01/01/2012 31/12/2016 LIBEN Nucleic acids and their salts, whether or not chemically defined; heterocyclic compounds (excl. those with oxygen or nitrogen hetero-atom"s" only, compounds containing in the structure an unfused thiazole ring or a benzothiazole or phenothiazine ring-system or further fused, aminorex (INN), brotizolam (INN), clotiazepam (INN), cloxazolam (INN), dextromoramide (INN), haloxazolam (INN), ketazolam (INN), mesocarb (INN), oxazolam (INN), pemoline (INN), phendimetrazine (INN), phenmetrazine (INN), sufentanil (INN), salts thereof, chlorpothixene (INN), thenalidine (INN) and its tartrates and maleates, furazolidone (INN), 7-aminocephalosporanic acid, salts and esters of "6R, 7R"-3-acetoxymethyl-7-["R"-2-formyloxy-2-phenylacetamido]-8-oxo-5-thia-1-azabicyclo[4.2.0]oct-2-ene-2-carboxylic acid, 1-[2-"1,3-dioxan-2-yl"ethyl]-2-methylpyridinium bromide, and inorganic or organic compounds of mercury) 01/01/2012 31/12/2016 -29349990 01/01/2017 31/12/2500 LIBEN Nucleic acids and their salts, whether or not chemically defined; heterocyclic compounds (excl. those with oxygen or nitrogen hetero-atom"s" only, compounds containing in the structure an unfused thiazole ring or a benzothiazole or phenothiazine ring-system or further fused, aminorex (INN), brotizolam (INN), clotiazepam (INN), cloxazolam (INN), dextromoramide (INN), haloxazolam (INN), ketazolam (INN), mesocarb (INN), oxazolam (INN), pemoline (INN), phendimetrazine (INN), phenmetrazine (INN), sufentanil (INN), salts thereof, chlorpothixene (INN), thenalidine (INN) and its tartrates and maleates, furazolidone (INN), 7-aminocephalosporanic acid, salts and esters of "6R, 7R"-3-acetoxymethyl-7-["R"-2-formyloxy-2-phenylacetamido]-8-oxo-5-thia-1-azabicyclo[4.2.0]oct-2-ene-2-carboxylic acid, 1-[2-"1,3-dioxan-2-yl"ethyl]-2-methylpyridinium bromide, and inorganic or organic compounds of mercury) 01/01/2017 31/12/2500 -2934S5 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 2934 and SITC section 5 01/01/2001 31/12/2500 -2934S515 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 2934 and SITC group 515 01/01/2001 31/12/2500 -2934S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2934 and SITC section 9 01/01/2002 31/12/2500 -2934S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 2934 and SITC group 999 01/01/2002 31/12/2500 -2935 01/01/1988 31/12/2500 LIBEN Sulphonamides 01/01/1988 31/12/2500 -293500 01/01/1988 31/12/2016 LIBEN Sulphonamides 01/01/1988 31/12/2016 -29350000 01/01/1988 31/12/1996 LIBEN Sulphonamides 01/01/1988 31/12/1996 -29350010 01/01/1997 31/12/2008 LIBEN 3-{1-[7-"Hexadecylsulphonylamino"-1H-indole-3-yl]-3-oxo-1H, 3H-naphtho[1,8-cd]pyran-1-yl}-N,N-dimethyl-1H-indole-7-sulphonamide 01/01/1997 31/12/2008 -29350020 01/01/1997 31/12/2008 LIBEN Metosulam (ISO) 01/01/1997 31/12/2008 -29350030 01/01/2009 31/12/2016 LIBEN 3-{1-[7-(Hexadecylsulphonylamino)-1H-indole-3-yl]-3-oxo-1H,3H-naphtho[1,8-cd]pyran-1-yl}-N,N-dimethyl-1H-indole-7-sulphonamide; metosulam (ISO) 01/01/2009 31/12/2016 -29350090 01/01/1997 31/12/2016 LIBEN Sulphonamides (excl. 3-{1-[7-"hexadecylsulphonylamino"-1H-indole-3-yl]-3-oxo-1H, 3H-naphtho[1,8-cd]pyran-1-yl}-N,N-dimethyl-1H-indole-7-sulphonamide and metosulam (ISO)) 01/01/1997 31/12/2016 -293510 01/01/2017 31/12/2500 LIBEN N-Methylperfluorooctane sulphonamide 01/01/2017 31/12/2500 -29351000 01/01/2017 31/12/2500 LIBEN N-Methylperfluorooctane sulphonamide 01/01/2017 31/12/2500 -293520 01/01/2017 31/12/2500 LIBEN N-Ethylperfluorooctane sulphonamide 01/01/2017 31/12/2500 -29352000 01/01/2017 31/12/2500 LIBEN N-Ethylperfluorooctane sulphonamide 01/01/2017 31/12/2500 -293530 01/01/2017 31/12/2500 LIBEN N-Ethyl-N-(2-hydroxyethyl) perfluorooctane sulphonamide 01/01/2017 31/12/2500 -29353000 01/01/2017 31/12/2500 LIBEN N-Ethyl-N-(2-hydroxyethyl) perfluorooctane sulphonamide 01/01/2017 31/12/2500 -293540 01/01/2017 31/12/2500 LIBEN N-(2-Hydroxyethyl)-N-methylperfluorooctane sulphonamide 01/01/2017 31/12/2500 -29354000 01/01/2017 31/12/2500 LIBEN N-(2-Hydroxyethyl)-N-methylperfluorooctane sulphonamide 01/01/2017 31/12/2500 -293550 01/01/2017 31/12/2500 LIBEN Perfluorooctane sulphonamides (excl. N-Methylperfluorooctane sulphonamide, N-Ethylperfluorooctane sulphonamide, N-Ethyl-N-(2-hydroxyethyl) perfluorooctane sulphonamide and N-(2-Hydroxyethyl)-N-methylperfluorooctane sulphonamide) 01/01/2017 31/12/2500 -29355000 01/01/2017 31/12/2500 LIBEN Perfluorooctane sulphonamides (excl. N-Methylperfluorooctane sulphonamide, N-Ethylperfluorooctane sulphonamide, N-Ethyl-N-(2-hydroxyethyl) perfluorooctane sulphonamide and N-(2-Hydroxyethyl)-N-methylperfluorooctane sulphonamide) 01/01/2017 31/12/2500 -293590 01/01/2017 31/12/2500 LIBEN Sulphonamides (excl. perfluorooctane sulphonamides) 01/01/2017 31/12/2500 -29359030 01/01/2017 31/12/2500 LIBEN 3-{1-[7-(Hexadecylsulphonylamino)-1H-indole-3-yl]-3-oxo-1H,3H-naphtho[1,8-cd]pyran-1-yl}-N,N-dimethyl-1H-indole-7-sulphonamide; metosulam (ISO) 01/01/2017 31/12/2500 -29359090 01/01/2017 31/12/2500 LIBEN Sulphonamides (excl. perfluorooctane sulphonamides, 3-{1-[7-"hexadecylsulphonylamino"-1H-indole-3-yl]-3-oxo-1H, 3H-naphtho[1,8-cd]pyran-1-yl}-N,N-dimethyl-1H-indole-7-sulphonamide and metosulam (ISO)) 01/01/2017 31/12/2500 -2936 01/01/1988 31/12/2500 LIBEN Provitamins and vitamins, natural or reproduced by synthesis, incl. natural concentrates, derivatives thereof used primarily as vitamins, and intermixtures of the foregoing, whether or not in any solvent 01/01/1988 31/12/2500 -293610 01/01/1988 31/12/2006 LIBEN Provitamins, unmixed 01/01/1988 31/12/2006 -29361000 01/01/1988 31/12/2006 LIBEN Provitamins, unmixed 01/01/1988 31/12/2006 -293621 01/01/1988 31/12/2500 LIBEN Vitamins A and their derivatives, used primarily as vitamins 01/01/1988 31/12/2500 -29362100 01/01/1988 31/12/2500 LIBEN Vitamins A and their derivatives, used primarily as vitamins 01/01/1988 31/12/2500 -293622 01/01/1988 31/12/2500 LIBEN Vitamin B1 and its derivatives, used primarily as vitamins 01/01/1988 31/12/2500 -29362200 01/01/1988 31/12/2500 LIBEN Vitamin B1 and its derivatives, used primarily as vitamins 01/01/1988 31/12/2500 -293623 01/01/1988 31/12/2500 LIBEN Vitamin B2 and its derivatives, used primarily as vitamins 01/01/1988 31/12/2500 -29362300 01/01/1988 31/12/2500 LIBEN Vitamin B2 and its derivatives, used primarily as vitamins 01/01/1988 31/12/2500 -293624 01/01/1988 31/12/2500 LIBEN D-Pantothenic or DL-pantothenic acid "Vitamin B3 or B5" and their derivatives, used primarily as vitamins 01/01/1988 31/12/2500 -29362400 01/01/1988 31/12/2500 LIBEN D-Pantothenic or DL-pantothenic acid "Vitamin B3 or B5" and their derivatives, used primarily as vitamins 01/01/1988 31/12/2500 -293625 01/01/1988 31/12/2500 LIBEN Vitamin B6 and its derivatives, used primarily as vitamins 01/01/1988 31/12/2500 -29362500 01/01/1988 31/12/2500 LIBEN Vitamin B6 and its derivatives, used primarily as vitamins 01/01/1988 31/12/2500 -293626 01/01/1988 31/12/2500 LIBEN Vitamin B12 and its derivatives, used primarily as vitamins 01/01/1988 31/12/2500 -29362600 01/01/1988 31/12/2500 LIBEN Vitamin B12 and its derivatives, used primarily as vitamins 01/01/1988 31/12/2500 -293627 01/01/1988 31/12/2500 LIBEN Vitamin C and its derivatives, used primarily as vitamins 01/01/1988 31/12/2500 -29362700 01/01/1988 31/12/2500 LIBEN Vitamin C and its derivatives, used primarily as vitamins 01/01/1988 31/12/2500 -293628 01/01/1988 31/12/2500 LIBEN Vitamin E and its derivatives, used primarily as vitamins 01/01/1988 31/12/2500 -29362800 01/01/1988 31/12/2500 LIBEN Vitamin E and its derivatives, used primarily as vitamins 01/01/1988 31/12/2500 -293629 01/01/1988 31/12/2500 LIBEN Vitamins and their derivatives, used primarily as vitamins, unmixed (excl. vitamins A, B1, B2, B3, B5, B6, B12, C, E and their derivatives) 01/01/1988 31/12/2500 -29362900 01/01/2009 31/12/2500 LIBEN Vitamins and their derivatives, used primarily as vitamins, unmixed (excl. vitamins A, B1, B2, B3, B5, B6, B12, C, E and their derivatives) 01/01/2009 31/12/2500 -29362910 01/01/1988 31/12/2008 LIBEN Vitamin B9 and its derivatives, used primarily as vitamins 01/01/1988 31/12/2008 -29362930 01/01/1988 31/12/2008 LIBEN Vitamin H and its derivatives, used primarily as vitamins 01/01/1988 31/12/2008 -29362990 01/01/1988 31/12/2008 LIBEN Vitamins and their derivatives, used primarily as vitamins, unmixed (excl. vitamins A, B1, B2, B3, B5, B6, B9, B12, C, E, H and their derivatives) 01/01/1988 31/12/2008 -293690 01/01/1988 31/12/2500 LIBEN Provitamins and mixtures of vitamins, of provitamins or of concentrates, whether or not in any solvent, and natural concentrates 01/01/1988 31/12/2500 -29369000 01/01/2009 31/12/2500 LIBEN Provitamins and mixtures of vitamins, of provitamins or of concentrates, whether or not in any solvent, and natural concentrates 01/01/2009 31/12/2500 -29369011 01/01/1988 31/12/2008 LIBEN Natural concentrates of vitamins A+D 01/01/1988 31/12/2008 -29369019 01/01/1988 31/12/2008 LIBEN Natural concentrates of vitamins (excl. of A+D) 01/01/1988 31/12/2008 -29369080 01/01/2007 31/12/2008 LIBEN Provitamins and mixtures of vitamins, of provitamins or of concentrates, whether or not in any solvent (excl. natural concentrates of vitamins) 01/01/2007 31/12/2008 -29369090 01/01/1988 31/12/2006 LIBEN Intermixtures of provitamins or vitamins, whether or not in any solvent 01/01/1988 31/12/2006 -2936S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2936 and SITC section 5 01/01/1997 31/12/2500 -2936S541 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2936 and SITC group 541 01/01/1997 31/12/2500 -2937 01/01/1988 31/12/2500 LIBEN Hormones, prostaglandins, thromboxanes and leukotrienes, natural or reproduced by synthesis; derivatives and structural analogues thereof "incl. chain modified polypeptides", used primarily as hormones 01/01/1988 31/12/2500 -293710 01/01/1988 31/12/2001 LIBEN Pituitary "anterior" or similar hormones, and derivatives, used primarily as hormones 01/01/1988 31/12/2001 -29371000 01/01/1998 31/12/2001 LIBEN Pituitary "anterior" or similar hormones, and derivatives, used primarily as hormones 01/01/1998 31/12/2001 -29371010 01/01/1988 31/12/1997 LIBEN Gonadotrophic hormones 01/01/1988 31/12/1997 -29371090 01/01/1988 31/12/1997 LIBEN Pituitary "anterior" or similar hormones, and their derivatives, used primarily as hormones (excl. gonadotrophic hormones) 01/01/1988 31/12/1997 -293711 01/01/2002 31/12/2500 LIBEN Somatropin, its derivatives and structural analogues, used primarily as hormones 01/01/2002 31/12/2500 -29371100 01/01/2002 31/12/2500 LIBEN Somatropin, its derivatives and structural analogues, used primarily as hormones 01/01/2002 31/12/2500 -293712 01/01/2002 31/12/2500 LIBEN Insulin and its salts, used primarily as hormones 01/01/2002 31/12/2500 -29371200 01/01/2002 31/12/2500 LIBEN Insulin and its salts, used primarily as hormones 01/01/2002 31/12/2500 -293719 01/01/2002 31/12/2500 LIBEN Polypeptide hormones, protein hormones and glycoprotein hormones, their derivatives and structural analogues, used primarily as hormones (excl. somatropin, its derivatives and structural analogues, and insulin and its salts) 01/01/2002 31/12/2500 -29371900 01/01/2002 31/12/2500 LIBEN Polypeptide hormones, protein hormones and glycoprotein hormones, their derivatives and structural analogues, used primarily as hormones (excl. somatropin, its derivatives and structural analogues, and insulin and its salts) 01/01/2002 31/12/2500 -293721 01/01/1988 31/12/2500 LIBEN Cortisone, hydrocortisone, prednisone "dehydrocortisone" and prednisolone "dehydrohydrocortisone" 01/01/1988 31/12/2500 -29372100 01/01/1988 31/12/2500 LIBEN Cortisone, hydrocortisone, prednisone "dehydrocortisone" and prednisolone "dehydrohydrocortisone" 01/01/1988 31/12/2500 -293722 01/01/1988 31/12/2500 LIBEN Halogenated derivatives of corticosteroidal hormones 01/01/1988 31/12/2500 -29372200 01/01/1988 31/12/2500 LIBEN Halogenated derivatives of corticosteroidal hormones 01/01/1988 31/12/2500 -293723 01/01/2002 31/12/2500 LIBEN Oestrogens and progestogens 01/01/2002 31/12/2500 -29372300 01/01/2002 31/12/2500 LIBEN Oestrogens and progestogens 01/01/2002 31/12/2500 -293729 01/01/1988 31/12/2500 LIBEN Steroidal hormones, their derivatives and structural analogues, used primarily as hormones (excl. cortisone, hydrocortisone, prednisone "dehydrocortisone", prednisolone "dehydrohydrocortisone", halogenated derivatives of corticosteroidal hormones, oestrogens and progestogens) 01/01/1988 31/12/2500 -29372900 01/01/1998 31/12/2001 LIBEN Adrenal cortical hormones and their derivatives which are used primarily as hormones (excl. cortisone, hydrocortisone, prednisone "dehydrocortisone", prednisolone "dehydrohydrocortisone" and halogenated derivates of adrenal cortical hormones) 01/01/1998 31/12/2001 -29372900 01/01/2002 31/12/2500 LIBEN Steroidal hormones, their derivatives and structural analogues, used primarily as hormones (excl. cortisone, hydrocortisone, prednisone "dehydrocortisone", prednisolone "dehydrohydrocortisone", halogenated derivatives of corticosteroidal hormones, oestrogens and progestogens) 01/01/2002 31/12/2500 -29372910 01/01/1988 31/12/1997 LIBEN Acetates of cortisone or hydrocortisone 01/01/1988 31/12/1997 -29372990 01/01/1988 31/12/1997 LIBEN Adrenal cortical hormones and their derivatives which are used primarily as hormones (excl. cortisone, hydrocortisone, prednisone (dehydrocortisone), prednisolone (dehydrohydrocortisone), halogenated derivatives of adrenal cortical hormones and acetates of cortisone or hydrocortisone) 01/01/1988 31/12/1997 -293731 01/01/2002 31/12/2011 LIBEN Epinephrine 01/01/2002 31/12/2011 -29373100 01/01/2002 31/12/2011 LIBEN Epinephrine 01/01/2002 31/12/2011 -293739 01/01/2002 31/12/2011 LIBEN Catecholamine hormones, their derivatives and structural analogues, used primarily as hormones (excl. epinephrine) 01/01/2002 31/12/2011 -29373900 01/01/2002 31/12/2011 LIBEN Catecholamine hormones, their derivatives and structural analogues, used primarily as hormones (excl. epinephrine) 01/01/2002 31/12/2011 -293740 01/01/2002 31/12/2011 LIBEN Amino-acid derivatives, used primarily as hormones 01/01/2002 31/12/2011 -29374000 01/01/2002 31/12/2011 LIBEN Amino-acid derivatives, used primarily as hormones 01/01/2002 31/12/2011 -293750 01/01/2002 31/12/2500 LIBEN Prostaglandins, thromboxanes and leukotrienes, their derivatives and structural analogues, used primarily as hormones 01/01/2002 31/12/2500 -29375000 01/01/2002 31/12/2500 LIBEN Prostaglandins, thromboxanes and leukotrienes, their derivatives and structural analogues, used primarily as hormones 01/01/2002 31/12/2500 -293790 01/01/2002 31/12/2500 LIBEN Hormones, natural or reproduced by synthesis; derivatives and structural analogues thereof, used primarily as hormones (excl. polypeptide hormones, protein hormones, glycoprotein hormones, steroidal hormones, catecholamine hormones, prostaglandins, thromboxanes and leukotrienes, their derivatives and structural analogues, and amino-acid derivatives, and products of 3002 10) 01/01/2002 31/12/2500 -29379000 01/01/2002 31/12/2011 LIBEN Hormones, natural or reproduced by synthesis; derivatives and structural analogues thereof, used primarily as hormones (excl. polypeptide hormones, protein hormones, glycoprotein hormones, steroidal hormones, catecholamine hormones, prostaglandins, thromboxanes and leukotrienes, their derivatives and structural analogues, and amino-acid derivatives) 01/01/2002 31/12/2011 -29379000 01/01/2012 31/12/2500 LIBEN Hormones, natural or reproduced by synthesis; derivatives and structural analogues thereof, used primarily as hormones (excl. polypeptide hormones, protein hormones, glycoprotein hormones, steroidal hormones, catecholamine hormones, prostaglandins, thromboxanes and leukotrienes, their derivatives and structural analogues, and amino-acid derivatives, and products of 3002 10) 01/01/2012 31/12/2500 -293791 01/01/1988 31/12/2001 LIBEN Insulin and its salts 01/01/1988 31/12/2001 -29379100 01/01/1988 31/12/2001 LIBEN Insulin and its salts 01/01/1988 31/12/2001 -293792 01/01/1988 31/12/2001 LIBEN Oestrogens and progestogens 01/01/1988 31/12/2001 -29379200 01/01/1988 31/12/2001 LIBEN Oestrogens and progestogens 01/01/1988 31/12/2001 -293799 01/01/1988 31/12/2001 LIBEN Hormones and their derivatives used primarily as hormones (excl. pituitary "anterior" or similar hormones and their derivatives, adrenal cortical hormones and their derivatives, insulin and its salts, oestrogens and progestogens) 01/01/1988 31/12/2001 -29379900 01/01/1988 31/12/2001 LIBEN Hormones and their derivatives used primarily as hormones (excl. pituitary "anterior" or similar hormones and their derivatives, adrenal cortical hormones and their derivatives, insulin and its salts, oestrogens and progestogens) 01/01/1988 31/12/2001 -2937S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2937 and SITC section 5 01/01/1997 31/12/2500 -2937S541 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2937 and SITC group 541 01/01/1997 31/12/2500 -2938 01/01/1988 31/12/2500 LIBEN Glycosides, natural or reproduced by synthesis, and their salts, ethers, esters and other derivatives 01/01/1988 31/12/2500 -293810 01/01/1988 31/12/2500 LIBEN Rutoside "rutin" and its derivatives 01/01/1988 31/12/2500 -29381000 01/01/1988 31/12/2500 LIBEN Rutoside "rutin" and its derivatives 01/01/1988 31/12/2500 -293890 01/01/1988 31/12/2500 LIBEN Glycosides, natural or reproduced by synthesis, and their salts, ethers, esters and other derivatives (excl. rutoside "rutin" and its derivatives) 01/01/1988 31/12/2500 -29389010 01/01/1988 31/12/2500 LIBEN Digitalis glycosides 01/01/1988 31/12/2500 -29389030 01/01/1988 31/12/2500 LIBEN Glycyrrhizic acid and glycyrrhizates 01/01/1988 31/12/2500 -29389090 01/01/1988 31/12/2500 LIBEN Glycosides, natural or reproduced by synthesis, and their salts, ethers, esters and other derivatives (excl. rutoside "rutin" and its derivatives, digitalis glycosides, glycyrrhizic acid and glycyrrhizates) 01/01/1988 31/12/2500 -2939 01/01/1988 31/12/2500 LIBEN Alkaloids, natural or reproduced by synthesis, and their salts, ethers, esters and other derivatives 01/01/1988 31/12/2500 -293910 01/01/1988 31/12/2001 LIBEN Alkaloids of opium and their derivatives; salts thereof 01/01/1988 31/12/2001 -29391000 01/01/1988 31/12/2001 LIBEN Alkaloids of opium and their derivatives; salts thereof 01/01/1988 31/12/2001 -293911 01/01/2002 31/12/2500 LIBEN Concentrates of poppy straw; buprenorphine (INN), codeine, dihydrocodeine (INN), ethylmorphine, etorphine (INN), heroin, hydrocodone (INN), hydromorphone (INN), morphine, nicomorphine (INN), oxycodone (INN), oxymorphone (INN), pholcodine (INN), thebacon (INN) and thebaine, and salts thereof 01/01/2002 31/12/2500 -29391100 01/01/2002 31/12/2500 LIBEN Concentrates of poppy straw; buprenorphine (INN), codeine, dihydrocodeine (INN), ethylmorphine, etorphine (INN), heroin, hydrocodone (INN), hydromorphone (INN), morphine, nicomorphine (INN), oxycodone (INN), oxymorphone (INN), pholcodine (INN), thebacon (INN) and thebaine, and salts thereof 01/01/2002 31/12/2500 -293919 01/01/2002 31/12/2500 LIBEN Alkaloids of opium and their derivatives, and salts thereof (excl. concentrates of poppy straw; buprenorphine (INN), codeine, dihydrocodeine (INN), ethylmorphine, etorphine (INN), heroin, hydrocodone (INN), hydromorphone (INN), morphine, nicomorphine (INN), oxycodone (INN), oxymorphone (INN), pholcodine (INN), thebacon (INN) and thebaine, and salts thereof) 01/01/2002 31/12/2500 -29391900 01/01/2002 31/12/2500 LIBEN Alkaloids of opium and their derivatives, and salts thereof (excl. concentrates of poppy straw; buprenorphine (INN), codeine, dihydrocodeine (INN), ethylmorphine, etorphine (INN), heroin, hydrocodone (INN), hydromorphone (INN), morphine, nicomorphine (INN), oxycodone (INN), oxymorphone (INN), pholcodine (INN), thebacon (INN) and thebaine, and salts thereof) 01/01/2002 31/12/2500 -293920 01/01/2007 31/12/2500 LIBEN Alkaloids of cinchona and their derivatives; salts thereof 01/01/2007 31/12/2500 -29392000 01/01/2007 31/12/2500 LIBEN Alkaloids of cinchona and their derivatives; salts thereof 01/01/2007 31/12/2500 -293921 01/01/1988 31/12/2006 LIBEN Quinine and its salts 01/01/1988 31/12/2006 -29392100 01/01/2004 31/12/2006 LIBEN Quinine and its salts 01/01/2004 31/12/2006 -29392110 01/01/1988 31/12/2003 LIBEN Quinine and quinine sulphate 01/01/1988 31/12/2003 -29392190 01/01/1988 31/12/2003 LIBEN Salts of quinine (excl. quinine sulphate) 01/01/1988 31/12/2003 -293929 01/01/1988 31/12/2006 LIBEN Alkaloids of cinchons and their derivatives; salts thereof (excl. quinine and its salts) 01/01/1988 31/12/2006 -29392900 01/01/1988 31/12/2006 LIBEN Alkaloids of cinchons and their derivatives; salts thereof (excl. quinine and its salts) 01/01/1988 31/12/2006 -293930 01/01/1988 31/12/2500 LIBEN Caffeine and its salts 01/01/1988 31/12/2500 -29393000 01/01/1988 31/12/2500 LIBEN Caffeine and its salts 01/01/1988 31/12/2500 -293940 01/01/1988 31/12/1995 LIBEN Ephedrines and their salts 01/01/1988 31/12/1995 -29394000 01/01/1988 31/12/1991 LIBEN Ephedrines and their salts 01/01/1988 31/12/1991 -29394010 01/01/1992 31/12/1995 LIBEN Ephedrine and its salts 01/01/1992 31/12/1995 -29394030 01/01/1992 31/12/1995 LIBEN Pseudoephedrine (INN) and its salts 01/01/1992 31/12/1995 -29394090 01/01/1992 31/12/1995 LIBEN Ephedrines and their salts (excl. ephedrine, pseudoephedrine (INN) and their salts) 01/01/1992 31/12/1995 -293941 01/01/1996 31/12/2500 LIBEN Ephedrine and its salts 01/01/1996 31/12/2500 -29394100 01/01/1996 31/12/2500 LIBEN Ephedrine and its salts 01/01/1996 31/12/2500 -293942 01/01/1996 31/12/2500 LIBEN Pseudoephedrine (INN) and its salts 01/01/1996 31/12/2500 -29394200 01/01/1996 31/12/2500 LIBEN Pseudoephedrine (INN) and its salts 01/01/1996 31/12/2500 -293943 01/01/2002 31/12/2500 LIBEN Cathine (INN) and its salts 01/01/2002 31/12/2500 -29394300 01/01/2002 31/12/2500 LIBEN Cathine (INN) and its salts 01/01/2002 31/12/2500 -293944 01/01/2012 31/12/2500 LIBEN Norephedrine and its salts 01/01/2012 31/12/2500 -29394400 01/01/2012 31/12/2500 LIBEN Norephedrine and its salts 01/01/2012 31/12/2500 -293949 01/01/1996 31/12/2500 LIBEN Ephedrines and their salts (excl. ephedrine, pseudoephedrine (INN), cathine (INN), norephedrine, and their salts) 01/01/1996 31/12/2500 -29394900 01/01/1996 31/12/2001 LIBEN Ephedrines and their salts (excl. ephedrine and pseudoephedrine (INN) and their salts) 01/01/1996 31/12/2001 -29394900 01/01/2002 31/12/2011 LIBEN Ephedrines and their salts (excl. ephedrine, pseudoephedrine (INN), cathine (INN), and salts thereof) 01/01/2002 31/12/2011 -29394900 01/01/2012 31/12/2500 LIBEN Ephedrines and their salts (excl. ephedrine, pseudoephedrine (INN), cathine (INN), norephedrine, and their salts) 01/01/2012 31/12/2500 -293950 01/01/1988 31/12/2001 LIBEN Theophylline and aminophylline "theophylline-ethylenediamine" and their derivatives; salts thereof 01/01/1988 31/12/2001 -29395000 01/01/1998 31/12/2001 LIBEN Theophylline and aminophylline "theophylline-ethylenediamine" and their derivatives; salts thereof 01/01/1998 31/12/2001 -29395010 01/01/1988 31/12/1997 LIBEN Theophylline and aminophylline "theophylline-ethylenediamine" and salts thereof 01/01/1988 31/12/1997 -29395090 01/01/1988 31/12/1997 LIBEN Derivatives of theophylline and aminophylline "theophylline-ethylenediamine" 01/01/1988 31/12/1997 -293951 01/01/2002 31/12/2500 LIBEN Fenetylline (INN) and its salts 01/01/2002 31/12/2500 -29395100 01/01/2002 31/12/2500 LIBEN Fenetylline (INN) and its salts 01/01/2002 31/12/2500 -293959 01/01/2002 31/12/2500 LIBEN Theophylline and aminophylline "theophylline-ethylenediamine" and their derivatives, and salts thereof (excl. fenetylline (INN) and its salts) 01/01/2002 31/12/2500 -29395900 01/01/2002 31/12/2500 LIBEN Theophylline and aminophylline "theophylline-ethylenediamine" and their derivatives, and salts thereof (excl. fenetylline (INN) and its salts) 01/01/2002 31/12/2500 -293960 01/01/1988 31/12/1995 LIBEN Alkaloids of rye ergot and their derivatives; salts thereof 01/01/1988 31/12/1995 -29396000 01/01/1988 31/12/1991 LIBEN Alkaloids of rye ergot and their derivatives; salts thereof 01/01/1988 31/12/1991 -29396010 01/01/1992 31/12/1995 LIBEN Ergometrine (INN) and its salts 01/01/1992 31/12/1995 -29396030 01/01/1992 31/12/1995 LIBEN Ergotamine (INN) and its salts 01/01/1992 31/12/1995 -29396050 01/01/1992 31/12/1995 LIBEN Lysergic acid and its salts 01/01/1992 31/12/1995 -29396090 01/01/1992 31/12/1995 LIBEN Alkaloids of rye ergot and their derivatives; salts thereof (excl. lysergic acid, ergotamine, ergometrine and their salts) 01/01/1992 31/12/1995 -293961 01/01/1996 31/12/2500 LIBEN Ergometrine (INN) and its salts 01/01/1996 31/12/2500 -29396100 01/01/1996 31/12/2500 LIBEN Ergometrine (INN) and its salts 01/01/1996 31/12/2500 -293962 01/01/1996 31/12/2500 LIBEN Ergotamine (INN) and its salts 01/01/1996 31/12/2500 -29396200 01/01/1996 31/12/2500 LIBEN Ergotamine (INN) and its salts 01/01/1996 31/12/2500 -293963 01/01/1996 31/12/2500 LIBEN Lysergic acid and its salts 01/01/1996 31/12/2500 -29396300 01/01/1996 31/12/2500 LIBEN Lysergic acid and its salts 01/01/1996 31/12/2500 -293969 01/01/1996 31/12/2500 LIBEN Alkaloids of rye ergot and their derivatives; salts thereof (excl. lysergic acid, ergotamine and ergometrine, and their salts) 01/01/1996 31/12/2500 -29396900 01/01/1996 31/12/2500 LIBEN Alkaloids of rye ergot and their derivatives; salts thereof (excl. lysergic acid, ergotamine and ergometrine, and their salts) 01/01/1996 31/12/2500 -293970 01/01/1988 31/12/2001 LIBEN Nicotine and its salts 01/01/1988 31/12/2001 -29397000 01/01/1988 31/12/2001 LIBEN Nicotine and its salts 01/01/1988 31/12/2001 -293971 01/01/2017 31/12/2500 LIBEN Cocaine, ecgonine, levometamfetamine, metamfetamine (INN), metamfetamine racemate, and salts, esters and other derivatives thereof 01/01/2017 31/12/2500 -29397100 01/01/2017 31/12/2500 LIBEN Cocaine, ecgonine, levometamfetamine, metamfetamine (INN), metamfetamine racemate, and salts, esters and other derivatives thereof 01/01/2017 31/12/2500 -293979 01/01/2017 31/12/2500 LIBEN Vegetal alkaloids, natural or reproduced by synthesis, and their salts, ethers, esters and other derivatives (excl. alkaloids of opium, alkaloids of cinchons, theophylline, aminophylline "theophylline-ethylenediamine" alkaloids of rye ergot and their salts and derivatives, cocaine, ecgonine, levometamfetamine, metamfetamine (INN), metamfetamine racemate, and salts, esters and other derivatives thereof, caffeine and ephedrines, and their salts) 01/01/2017 31/12/2500 -29397900 01/01/2017 31/12/2017 LIBEN Phthalic anhydride 01/01/2017 31/12/2017 -29397910 01/01/2018 31/12/2500 LIBEN Nicotine and its salts, ethers, esters and other derivatives thereof 01/01/2018 31/12/2500 -29397990 01/01/2018 31/12/2500 LIBEN Vegetal alkaloids, natural or reproduced by synthesis, and their salts, ethers, esters and other derivatives (excl. alkaloids of opium, alkaloids of cinchons, theophylline, aminophylline "theophylline-ethylenediamine" alkaloids of rye ergot and their salts and derivatives, cocaine, ecgonine, levometamfetamine, metamfetamine (INN), metamfetamine racemate, and salts, esters and other derivatives thereof, caffeine and ephedrines, and their salts, nicotine and its salts, ethers, esters and other derivatives thereof) 01/01/2018 31/12/2500 -293980 01/01/2017 31/12/2500 LIBEN Non-vegetal alkaloids, natural or reproduced by synthesis, and their salts, ethers, esters and other derivatives 01/01/2017 31/12/2500 -29398000 01/01/2017 31/12/2500 LIBEN Non-vegetal alkaloids, natural or reproduced by synthesis, and their salts, ethers, esters and other derivatives 01/01/2017 31/12/2500 -293990 01/01/1988 31/12/2001 LIBEN Vegetable alkaloids, natural or reproduced by synthesis, and their salts, ethers, esters and other derivatives (excl. alkaloids of opium, alkaloids of cinchons, theophylline, aminophylline "theophylline-ethylenediamine" alkaloids of rye ergot and their salts and derivatives, caffeine, ephedrines, nicotine and their salts) 01/01/1988 31/12/2001 -29399011 01/01/1988 31/12/2001 LIBEN Crude cocaine 01/01/1988 31/12/2001 -29399019 01/01/1988 31/12/2001 LIBEN Cocaine and its salts (excl. crude) 01/01/1988 31/12/2001 -29399030 01/01/1988 31/12/2001 LIBEN Emetine and its salts 01/01/1988 31/12/2001 -29399090 01/01/1988 31/12/2001 LIBEN Vegetable alkaloids, natural or reproduced by synthesis, and their salts, ethers, esters and other derivatives (excl. alkaloids of opium, alkaloids of cinchons, theophylline, aminophylline "theophylline-ethylenediamine" alkaloids of rye ergot and their salts and derivatives, caffeine, ephedrines, nicotine, cocaine, emetine and their salts) 01/01/1988 31/12/2001 -293991 01/01/2002 31/12/2016 LIBEN Cocaine, ecgonine, levometamfetamine, metamfetamine (INN), metamfetamine racemate, and salts, esters and other derivatives thereof 01/01/2002 31/12/2016 -29399100 01/01/2009 31/12/2016 LIBEN Cocaine, ecgonine, levometamfetamine, metamfetamine (INN), metamfetamine racemate, and salts, esters and other derivatives thereof 01/01/2009 31/12/2016 -29399111 01/01/2002 31/12/2008 LIBEN Crude cocaine 01/01/2002 31/12/2008 -29399119 01/01/2002 31/12/2008 LIBEN Cocaine and its salts (excl. crude cocain) 01/01/2002 31/12/2008 -29399190 01/01/2002 31/12/2008 LIBEN Ecgonine, levometamfetamine, metamfetamine (INN), metamfetamine racemate, and salts, esters and other derivatives thereof, and esters and other derivatives of cocaine (excl. salts of cocaine) 01/01/2002 31/12/2008 -293999 01/01/2002 31/12/2016 LIBEN Vegetable alkaloids, natural or reproduced by synthesis, and their salts, ethers, esters and other derivatives (excl. alkaloids of opium, alkaloids of cinchons, theophylline, aminophylline "theophylline-ethylenediamine" alkaloids of rye ergot and their salts and derivatives, cocaine, ecgonine, levometamfetamine, metamfetamine (INN), metamfetamine racemate, and salts, esters and other derivatives thereof caffeine and ephedrines, and their salts) 01/01/2002 31/12/2016 -29399900 01/01/2004 31/12/2016 LIBEN Vegetable alkaloids, natural or reproduced by synthesis, and their salts, ethers, esters and other derivatives (excl. alkaloids of opium, alkaloids of cinchons, theophylline, aminophylline "theophylline-ethylenediamine" alkaloids of rye ergot and their salts and derivatives, cocaine, ecgonine, levometamfetamine, metamfetamine (INN), metamfetamine racemate, and salts, esters and other derivatives thereof caffeine and ephedrines, and their salts) 01/01/2004 31/12/2016 -29399910 01/01/2002 31/12/2003 LIBEN Emetine and its salts 01/01/2002 31/12/2003 -29399990 01/01/2002 31/12/2003 LIBEN Vegetable alkaloids, natural or reproduced by synthesis, and their salts, ethers, esters and other derivatives (excl. alkaloids of opium, alkaloids of cinchons, theophylline, aminophylline "theophylline-ethylenediamine" alkaloids of rye ergot and their salts and derivatives, cocaine, ecgonine, levometamfetamine, metamfetamine (INN), metamfetamine racemate, and salts, esters and other derivatives thereof caffeine and ephedrines, emetine and their salts) 01/01/2002 31/12/2003 -2939S5 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2939 and SITC section 5 01/01/1998 31/12/2500 -2939S541 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 2939 and SITC group 541 01/01/1998 31/12/2500 -2940 01/01/1988 31/12/2500 LIBEN Sugars, chemically pure (excl. sucrose, lactose, maltose, glucose and fructose); sugar ethers, sugar acetals and sugar esters, and their salts (excl. natural or reproduced by synthesis, provitamins, vitamins, hormones, glycosides, vegetable alkaloids and their salts, ethers, esters and other derivatives) 01/01/1988 31/12/2500 -294000 01/01/1988 31/12/2500 LIBEN Sugars, chemically pure (excl. sucrose, lactose, maltose, glucose and fructose); sugar ethers, sugar acetals and sugar esters, and their salts (excl. natural or reproduced by synthesis, provitamins, vitamins, hormones, glycosides, vegetable alkaloids and their salts, ethers, esters and other derivatives) 01/01/1988 31/12/2500 -29400000 01/01/2004 31/12/2500 LIBEN Sugars, chemically pure (excl. sucrose, lactose, maltose, glucose and fructose); sugar ethers, sugar acetals and sugar esters, and their salts (excl. natural or reproduced by synthesis, provitamins, vitamins, hormones, glycosides, vegetable alkaloids and their salts, ethers, esters and other derivatives) 01/01/2004 31/12/2500 -29400010 01/01/1988 31/12/2003 LIBEN Rhamnose, raffinose and mannose 01/01/1988 31/12/2003 -29400090 01/01/1988 31/12/2003 LIBEN Sugars, chemically pure (excl. sucrose, lactose, maltose, glucose, fructose, rhamnose, raffinose and mannose); sugar ethers, sugar acetals and sugar esters, and their salts (excl. natural or reproduced by synthesis, provitamins, vitamins, hormones, glycosides, vegetable alkaloids and their salts, ethers, esters and other derivatives) 01/01/1988 31/12/2003 -2940S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2940 and SITC section 5 01/01/1997 31/12/2500 -2940S516 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 2940 and SITC group 516 01/01/1997 31/12/2500 -2941 01/01/1988 31/12/2500 LIBEN Antibiotics 01/01/1988 31/12/2500 -294110 01/01/1988 31/12/2500 LIBEN Penicillins and their derivatives with a penicillanic acid structure; salts thereof 01/01/1988 31/12/2500 -29411000 01/01/1988 31/12/1993 LIBEN Penicillins and their derivatives with a penicillanic acid structure; salts thereof 01/01/1988 31/12/1993 -29411000 01/01/2009 31/12/2500 LIBEN Penicillins and their derivatives with a penicillanic acid structure; salts thereof 01/01/2009 31/12/2500 -29411010 01/01/1994 31/12/2008 LIBEN Amoxicillin (INN), and its salts 01/01/1994 31/12/2008 -29411020 01/01/1994 31/12/2008 LIBEN Ampicillin (INN), metampicillin (INN), pivampicillin (INN), and their salts 01/01/1994 31/12/2008 -29411090 01/01/1994 31/12/2008 LIBEN Penicillins and their derivatives with a penicillanic acid structure; salts thereof (excl. amoxicillin (INN), ampicillin (INN), metampicillin (INN), pivampicillin (INN), and their salts) 01/01/1994 31/12/2008 -294120 01/01/1988 31/12/2500 LIBEN Streptomycins and their derivatives; salts thereof 01/01/1988 31/12/2500 -29412010 01/01/1988 31/12/1997 LIBEN Dihydrostreptomycin 01/01/1988 31/12/1997 -29412020 01/01/1995 31/12/1997 LIBEN Salts, esters and hydrates of dihydrostreptomycin 01/01/1995 31/12/1997 -29412030 01/01/1998 31/12/2500 LIBEN Dihydrostreptomycin, its salts, esters and hydrates 01/01/1998 31/12/2500 -29412080 01/01/1995 31/12/2500 LIBEN Streptomycins and their derivatives; salts thereof (excl. dihydrostreptomycin and its salts, esters and hydrates) 01/01/1995 31/12/2500 -29412090 01/01/1988 31/12/1994 LIBEN Streptomycins and their derivatives; salts thereof (excl. dihydrostreptomycin) 01/01/1988 31/12/1994 -294130 01/01/1988 31/12/2500 LIBEN Tetracyclines and their derivatives; salts thereof 01/01/1988 31/12/2500 -29413000 01/01/1988 31/12/2500 LIBEN Tetracyclines and their derivatives; salts thereof 01/01/1988 31/12/2500 -294140 01/01/1988 31/12/2500 LIBEN Chloramphenicol and its derivatives; salts thereof 01/01/1988 31/12/2500 -29414000 01/01/1988 31/12/2500 LIBEN Chloramphenicol and its derivatives; salts thereof 01/01/1988 31/12/2500 -294150 01/01/1988 31/12/2500 LIBEN Erythromycin and its derivatives; salts thereof 01/01/1988 31/12/2500 -29415000 01/01/1988 31/12/2500 LIBEN Erythromycin and its derivatives; salts thereof 01/01/1988 31/12/2500 -294190 01/01/1988 31/12/2500 LIBEN Antibiotics (excl. penicillins and their derivatives with a penicillanic acid structure, salts thereof, streptomycins, tetracyclines, chloramphenicol and erythromycin, their derivatives and salts thereof) 01/01/1988 31/12/2500 -29419000 01/01/1988 31/12/2500 LIBEN Antibiotics (excl. penicillins and their derivatives with a penicillanic acid structure, salts thereof, streptomycins, tetracyclines, chloramphenicol and erythromycin, their derivatives and salts thereof) 01/01/1988 31/12/2500 -2942 01/01/1988 31/12/2500 LIBEN Separate chemically defined organic compounds, n.e.s. 01/01/1988 31/12/2500 -294200 01/01/1988 31/12/2500 LIBEN Separate chemically defined organic compounds, n.e.s. 01/01/1988 31/12/2500 -29420000 01/01/1988 31/12/2500 LIBEN Separate chemically defined organic compounds, n.e.s. 01/01/1988 31/12/2500 -29CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 29 01/01/2002 31/12/2500 -29CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 29 01/01/2002 31/12/2500 -29CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 29 01/01/2002 31/12/2500 -29EE 01/01/1988 31/12/2004 LIBEN Sets of goods of chapter 29 01/01/1988 31/12/2004 -29EEE0 01/01/1988 31/12/2004 LIBEN Sets of goods of chapter 29 01/01/1988 31/12/2004 -29EEE000 01/01/1988 31/12/2004 LIBEN Sets of goods of chapter 29 01/01/1988 31/12/2004 -29MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -29MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -29MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -29PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 29 carried by post 01/01/1988 31/12/2500 -29PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 29 carried by post 01/01/1988 31/12/2500 -29PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 29 carried by post 01/01/1988 31/12/2500 -29SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 29 01/01/1988 31/12/2500 -29SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 29 and SITC section 0 01/01/1997 31/12/2001 -29SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 29 and SITC group 000 01/01/1997 31/12/2001 -29SSS5 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 29 and SITC section 5 01/01/1988 31/12/2500 -29SSS511 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 29 and SITC group 511 01/01/1988 31/12/2500 -29SSS512 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 29 and SITC group 512 01/01/1988 31/12/2500 -29SSS513 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 29 and SITC group 513 01/01/1988 31/12/2500 -29SSS514 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 29 and SITC group 514 01/01/1988 31/12/2500 -29SSS515 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 29 and SITC group 515 01/01/1988 31/12/2500 -29SSS516 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 29 and SITC group 516 01/01/1988 31/12/2500 -29SSS541 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 29 and SITC group 541 01/01/1988 31/12/2500 -29SSS9 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 29 and SITC section 9 01/01/1988 31/12/2500 -29SSS999 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 29 and SITC group 999 01/01/1988 31/12/2500 -29VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 29 for the assembly of motor vehicles 01/01/1988 31/12/2500 -29VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 29 for the assembly of motor vehicles 01/01/1988 31/12/2500 -29VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 29 for the assembly of motor vehicles 01/01/1988 31/12/2500 -30 01/01/1988 31/12/2500 LIBEN PHARMACEUTICAL PRODUCTS 01/01/1988 31/12/2500 -3001 01/01/1988 31/12/2500 LIBEN Dried glands and other organs for organo-therapeutic uses, whether or not powdered; extracts of glands or other organs or their secretions, for organo-therapeutic uses; heparin and its salts; other human or animal substances prepared for therapeutic or prophylactic uses, n.e.s. 01/01/1988 31/12/2500 -300110 01/01/1988 31/12/2006 LIBEN Dried glands and other organs for organo-therapeutic uses, whether or not powdered 01/01/1988 31/12/2006 -30011010 01/01/1988 31/12/2001 LIBEN Glands and other organs, powdered, for organo-therapeutic uses 01/01/1988 31/12/2001 -30011010 01/01/2002 31/12/2006 LIBEN Glands and other organs, powdered, for organo-therapeutic uses 01/01/2002 31/12/2006 -30011090 01/01/1988 31/12/2001 LIBEN Dried glands and other organs for organo-therapeutic uses (excl. powdered) 01/01/1988 31/12/2001 -30011090 01/01/2002 31/12/2006 LIBEN Dried glands and other organs for organo-therapeutic uses (excl. powdered) 01/01/2002 31/12/2006 -300120 01/01/1988 31/12/2500 LIBEN Extracts of glands or other organs or of their secretions, for organo-therapeutic uses 01/01/1988 31/12/2500 -30012010 01/01/1988 31/12/2001 LIBEN Extracts of glands or other organs or of their secretions, of human origin, for organo-therapeutic uses 01/01/1988 31/12/2001 -30012010 01/01/2002 31/12/2500 LIBEN Extracts of glands or other organs or of their secretions, of human origin, for organo-therapeutic uses 01/01/2002 31/12/2500 -30012090 01/01/1988 31/12/2001 LIBEN Extracts of glands or other organs or of their secretions, of animals, for organo-therapeutic uses 01/01/1988 31/12/2001 -30012090 01/01/2002 31/12/2500 LIBEN Extracts of glands or other organs or of their secretions, of animals, for organo-therapeutic uses 01/01/2002 31/12/2500 -300190 01/01/1988 31/12/2500 LIBEN Dried glands and other organs for organo-therapeutic uses, whether or not powdered; heparin and its salts; other human or animal substances prepared for therapeutic or prophylactic uses, n.e.s. 01/01/1988 31/12/2500 -30019010 01/01/1988 31/12/2001 LIBEN Substances of human origin prepared for therapeutic or prophylactic uses, n.e.s. 01/01/1988 31/12/2001 -30019010 01/01/2002 31/12/2006 LIBEN Substances of human origin prepared for therapeutic or prophylactic uses, n.e.s. 01/01/2002 31/12/2006 -30019020 01/01/2007 31/12/2500 LIBEN Dried glands and other organs for organo-therapeutic uses, whether or not powdered, and other substances of human origin prepared for therapeutic or prophylactic uses, n.e.s. 01/01/2007 31/12/2500 -30019091 01/01/1988 31/12/2001 LIBEN Heparin and its salts 01/01/1988 31/12/2001 -30019091 01/01/2002 31/12/2500 LIBEN Heparin and its salts 01/01/2002 31/12/2500 -30019098 01/01/2007 31/12/2500 LIBEN Dried glands and other organs for organo-therapeutic uses, whether or not powdered, and other substances of animal origin prepared for therapeutic or prophylactic uses, n.e.s. (excl. heparin and its salts) 01/01/2007 31/12/2500 -30019099 01/01/1988 31/12/2001 LIBEN Substances of animal origin prepared for therapeutic or prophylactic uses, n.e.s. 01/01/1988 31/12/2001 -30019099 01/01/2002 31/12/2006 LIBEN Substances of animal origin prepared for therapeutic or prophylactic uses, n.e.s. 01/01/2002 31/12/2006 -3002 01/01/1988 31/12/2500 LIBEN Human blood; animal blood prepared for therapeutic, prophylactic or diagnostic uses; antisera and other blood fractions and immunological products, whether or not modified or obtained by means of biotechnological processes; vaccines, toxins, cultures of micro-organisms (excl. yeasts) and similar products 01/01/1988 31/12/2500 -300210 01/01/1988 31/12/2016 LIBEN Antisera and other blood fractions and immunological products, whether or not modified or obtained by means of biotechnological processes 01/01/1988 31/12/2016 -30021010 01/01/1988 31/12/2001 LIBEN Antisera 01/01/1988 31/12/2001 -30021010 01/01/2002 31/12/2011 LIBEN Antisera 01/01/2002 31/12/2011 -30021010 01/01/2012 31/12/2016 LIBEN Antisera 01/01/2012 31/12/2016 -30021091 01/01/1988 31/12/2001 LIBEN Haemoglobin, blood globulins and serum globulins 01/01/1988 31/12/2001 -30021091 01/01/2002 31/12/2011 LIBEN Haemoglobin, blood globulins and serum globulins 01/01/2002 31/12/2011 -30021091 01/01/2012 31/12/2016 LIBEN Haemoglobin, blood globulins and serum globulins 01/01/2012 31/12/2016 -30021095 01/01/1988 31/12/2001 LIBEN Blood fractions and modified immunological products, whether or not obtained by means of biotechnological processes, of human blood (excl. antisera, haemoglobin, blood globulins and serum globulins) 01/01/1988 31/12/2001 -30021095 01/01/2002 31/12/2011 LIBEN Blood fractions and modified immunological products, whether or not obtained by means of biotechnological processes, of human blood (excl. antisera, haemoglobin, blood globulins and serum globulins) 01/01/2002 31/12/2011 -30021095 01/01/2012 31/12/2012 LIBEN Blood fractions and modified immunological products, whether or not obtained by means of biotechnological processes, of human blood (excl. antisera, haemoglobin, blood globulins and serum globulins) 01/01/2012 31/12/2012 -30021098 01/01/2013 31/12/2016 LIBEN Blood fractions and immunological products, whether or not modified or obtained by means of biotechnological processes (excl. antisera, haemoglobin, blood globulins and serum globulins) 01/01/2013 31/12/2016 -30021099 01/01/1988 31/12/2001 LIBEN Blood fractions and modified immunological products, whether or not obtained by means of biotechnological processes, of animal blood (excl. antisera, haemoglobin, blood globulins and serum globulins) 01/01/1988 31/12/2001 -30021099 01/01/2002 31/12/2011 LIBEN Blood fractions and modified immunological products, whether or not obtained by means of biotechnological processes, of animal blood (excl. antisera, haemoglobin, blood globulins and serum globulins) 01/01/2002 31/12/2011 -30021099 01/01/2012 31/12/2012 LIBEN Blood fractions and modified immunological products, whether or not obtained by means of biotechnological processes, of animal blood (excl. antisera, haemoglobin, blood globulins and serum globulins) 01/01/2012 31/12/2012 -300211 01/01/2017 31/12/2500 LIBEN Malaria diagnostic test kits 01/01/2017 31/12/2500 -30021100 01/01/2017 31/12/2500 LIBEN Malaria diagnostic test kits 01/01/2017 31/12/2500 -300212 01/01/2017 31/12/2500 LIBEN Antisera and other blood fractions 01/01/2017 31/12/2500 -30021200 01/01/2017 31/12/2500 LIBEN Antisera and other blood fractions 01/01/2017 31/12/2500 -300213 01/01/2017 31/12/2500 LIBEN Immunological products, unmixed, not put up in measured doses or in forms or packings for retail sale 01/01/2017 31/12/2500 -30021300 01/01/2017 31/12/2500 LIBEN Immunological products, unmixed, not put up in measured doses or in forms or packings for retail sale 01/01/2017 31/12/2500 -300214 01/01/2017 31/12/2500 LIBEN Immunological products, mixed, not put up in measured doses or in forms or packings for retail sale 01/01/2017 31/12/2500 -30021400 01/01/2017 31/12/2500 LIBEN Immunological products, mixed, not put up in measured doses or in forms or packings for retail sale 01/01/2017 31/12/2500 -300215 01/01/2017 31/12/2500 LIBEN Immunological products, put up in measured doses or in forms or packings for retail sale 01/01/2017 31/12/2500 -30021500 01/01/2017 31/12/2500 LIBEN Immunological products, put up in measured doses or in forms or packings for retail sale 01/01/2017 31/12/2500 -300219 01/01/2017 31/12/2500 LIBEN Immunological products, n.e.s. (code possibly empty, preceding subheadings seem exhaustive) 01/01/2017 31/12/2500 -30021900 01/01/2017 31/12/2500 LIBEN Immunological products, n.e.s. (code possibly empty, preceding subheadings seem exhaustive) 01/01/2017 31/12/2500 -300220 01/01/1988 31/12/2500 LIBEN Vaccines for human medicine 01/01/1988 31/12/2500 -30022000 01/01/1988 31/12/2001 LIBEN Vaccines for human medicine 01/01/1988 31/12/2001 -30022000 01/01/2002 31/12/2011 LIBEN Vaccines for human medicine 01/01/2002 31/12/2011 -30022000 01/01/2012 31/12/2020 LIBEN Vaccines for human medicine 01/01/2012 31/12/2020 -30022010 01/01/2021 31/12/2500 LIBEN Vaccines against SARS-related coronaviruses "SARS-CoV species", for human medicine 01/01/2021 31/12/2500 -30022090 01/01/2021 31/12/2500 LIBEN Vaccines for human medicine (excl. vaccines against SARS-related coronaviruses) 01/01/2021 31/12/2500 -300230 01/01/1996 31/12/2500 LIBEN Vaccines for veterinary medicine 01/01/1996 31/12/2500 -30023000 01/01/1996 31/12/2001 LIBEN Vaccines for veterinary medicine 01/01/1996 31/12/2001 -30023000 01/01/2002 31/12/2500 LIBEN Vaccines for veterinary medicine 01/01/2002 31/12/2500 -300231 01/01/1988 31/12/1995 LIBEN Foot-and-mouth vaccines 01/01/1988 31/12/1995 -30023100 01/01/1988 31/12/1995 LIBEN Foot-and-mouth vaccines 01/01/1988 31/12/1995 -300239 01/01/1988 31/12/1995 LIBEN Vaccines for veterinary medicine (excl. foot-and-mouth vaccines) 01/01/1988 31/12/1995 -30023900 01/01/1988 31/12/1995 LIBEN Vaccines for veterinary medicine (excl. foot-and-mouth vaccines) 01/01/1988 31/12/1995 -300290 01/01/1988 31/12/2500 LIBEN Human blood; animal blood prepared for therapeutic, prophylactic or diagnostic uses; toxins, cultures of micro-organisms and similar products (excl. yeasts and vaccines) 01/01/1988 31/12/2500 -30029010 01/01/1988 31/12/2001 LIBEN Human blood 01/01/1988 31/12/2001 -30029010 01/01/2002 31/12/2500 LIBEN Human blood 01/01/2002 31/12/2500 -30029030 01/01/1988 31/12/2001 LIBEN Animal blood prepared for therapeutic, prophylactic or diagnostic uses 01/01/1988 31/12/2001 -30029030 01/01/2002 31/12/2500 LIBEN Animal blood prepared for therapeutic, prophylactic or diagnostic uses 01/01/2002 31/12/2500 -30029050 01/01/1988 31/12/2001 LIBEN Cultures of microorganisms (excl. yeasts) 01/01/1988 31/12/2001 -30029050 01/01/2002 31/12/2500 LIBEN Cultures of micro-organisms (excl. yeasts) 01/01/2002 31/12/2500 -30029090 01/01/1988 31/12/2001 LIBEN Toxins and similar products, e.g. plasmodia (excl. vaccines and cultures of microorganisms) 01/01/1988 31/12/2001 -30029090 01/01/2002 31/12/2011 LIBEN Toxins and similar products, e.g. plasmodia (excl. vaccines and cultures of micro-organisms) 01/01/2002 31/12/2011 -30029090 01/01/2012 31/12/2016 LIBEN Toxins and similar products, e.g. plasmodia (excl. vaccines and cultures of micro-organisms) 01/01/2012 31/12/2016 -30029090 01/01/2017 31/12/2500 LIBEN Toxins and similar products, e.g. plasmodia (excl. vaccines and cultures of micro-organisms) 01/01/2017 31/12/2500 -3003 01/01/1988 31/12/2500 LIBEN Medicaments consisting of two or more constituents mixed together for therapeutic or prophylactic uses, not in measured doses or put up for retail sale (excl. goods of heading 3002, 3005 or 3006) 01/01/1988 31/12/2500 -300310 01/01/1988 31/12/2500 LIBEN Medicaments containing penicillins or derivatives thereof with a penicillanic acid structure, or streptomycins or derivatives thereof, not in measured doses or put up for retail sale 01/01/1988 31/12/2500 -30031000 01/01/1988 31/12/2001 LIBEN Medicaments containing penicillins or derivatives thereof with a penicillanic acid structure, or streptomycins or derivatives thereof, not in measured doses or put up for retail sale 01/01/1988 31/12/2001 -30031000 01/01/2002 31/12/2500 LIBEN Medicaments containing penicillins or derivatives thereof with a penicillanic acid structure, or streptomycins or derivatives thereof, not in measured doses or put up for retail sale 01/01/2002 31/12/2500 -300320 01/01/1988 31/12/2500 LIBEN Medicaments containing antibiotics, not in measured doses or put up for retail sale (excl. medicaments containing penicillins or derivatives thereof with a penicillanic acid structure, or streptomycins or derivatives thereof) 01/01/1988 31/12/2500 -30032000 01/01/1988 31/12/2001 LIBEN Medicaments containing antibiotics, not in measured doses or put up for retail sale (excl. medicaments containing penicillins or derivatives thereof with a penicillanic acid structure, or streptomycins or derivatives thereof) 01/01/1988 31/12/2001 -30032000 01/01/2002 31/12/2500 LIBEN Medicaments containing antibiotics, not in measured doses or put up for retail sale (excl. medicaments containing penicillins or derivatives thereof with a penicillanic acid structure, or streptomycins or derivatives thereof) 01/01/2002 31/12/2500 -300331 01/01/1988 31/12/2500 LIBEN Medicaments containing insulin, not in measured doses or put up for retail sale 01/01/1988 31/12/2500 -30033100 01/01/1988 31/12/2001 LIBEN Medicaments containing insulin, not in measured doses or put up for retail sale 01/01/1988 31/12/2001 -30033100 01/01/2002 31/12/2500 LIBEN Medicaments containing insulin, not in measured doses or put up for retail sale 01/01/2002 31/12/2500 -300339 01/01/1988 31/12/2500 LIBEN Medicaments containing hormones or steroids used as hormones, not containing antibiotics, not in measured doses or put up for retail sale (excl. those containing insulin) 01/01/1988 31/12/2500 -30033900 01/01/1988 31/12/2001 LIBEN Medicaments containing hormones or steroids used as hormones, not containing antibiotics, not in measured doses or put up for retail sale (excl. those containing insulin) 01/01/1988 31/12/2001 -30033900 01/01/2002 31/12/2500 LIBEN Medicaments containing hormones or steroids used as hormones, not containing antibiotics, not in measured doses or put up for retail sale (excl. those containing insulin) 01/01/2002 31/12/2500 -300340 01/01/1988 31/12/2016 LIBEN Medicaments containing alkaloids or derivatives thereof, not containing hormones, steroids used as hormones or antibiotics, not in measured doses or put up for retail sale 01/01/1988 31/12/2016 -30034000 01/01/1988 31/12/2001 LIBEN Medicaments containing alkaloids or derivatives thereof, not containing hormones, steroids used as hormones or antibiotics, not in measured doses or put up for retail sale 01/01/1988 31/12/2001 -30034000 01/01/2002 31/12/2012 LIBEN Medicaments containing alkaloids or derivatives thereof, not containing hormones, steroids used as hormones or antibiotics, not in measured doses or put up for retail sale 01/01/2002 31/12/2012 -30034020 01/01/2013 31/12/2016 LIBEN Medicaments containing ephedrine or its salts, not containing hormones, steroids used as hormones or antibiotics, not in measured doses or put up for retail sale 01/01/2013 31/12/2016 -30034030 01/01/2013 31/12/2016 LIBEN Medicaments containing pseudoephedrine (INN) or its salts, not containing hormones, steroids used as hormones or antibiotics, not in measured doses or put up for retail sale 01/01/2013 31/12/2016 -30034040 01/01/2013 31/12/2016 LIBEN Medicaments containing norephedrine or its salts, not containing hormones, steroids used as hormones or antibiotics, not in measured doses or put up for retail sale 01/01/2013 31/12/2016 -30034080 01/01/2013 31/12/2016 LIBEN Medicaments containing alkaloids or derivatives thereof, not containing hormones, steroids used as hormones or antibiotics, not in measured doses or put up for retail sale (excl. containing ephedrine, pseudoephedrine (INN), norephedrine or their salts) 01/01/2013 31/12/2016 -300341 01/01/2017 31/12/2500 LIBEN Medicaments containing ephedrine or its salts, not containing hormones, steroids used as hormones or antibiotics, not in measured doses or put up for retail sale 01/01/2017 31/12/2500 -30034100 01/01/2017 31/12/2500 LIBEN Medicaments containing ephedrine or its salts, not containing hormones, steroids used as hormones or antibiotics, not in measured doses or put up for retail sale 01/01/2017 31/12/2500 -300342 01/01/2017 31/12/2500 LIBEN Medicaments containing pseudoephedrine (INN) or its salts, not containing hormones, steroids used as hormones or antibiotics, not in measured doses or put up for retail sale 01/01/2017 31/12/2500 -30034200 01/01/2017 31/12/2500 LIBEN Medicaments containing pseudoephedrine (INN) or its salts, not containing hormones, steroids used as hormones or antibiotics, not in measured doses or put up for retail sale 01/01/2017 31/12/2500 -300343 01/01/2017 31/12/2500 LIBEN Medicaments containing norephedrine or its salts, not containing hormones, steroids used as hormones or antibiotics, not in measured doses or put up for retail sale 01/01/2017 31/12/2500 -30034300 01/01/2017 31/12/2500 LIBEN Medicaments containing norephedrine or its salts, not containing hormones, steroids used as hormones or antibiotics, not in measured doses or put up for retail sale 01/01/2017 31/12/2500 -300349 01/01/2017 31/12/2500 LIBEN Medicaments containing alkaloids or derivatives thereof, not containing hormones, steroids used as hormones or antibiotics, not in measured doses or put up for retail sale (excl. containing ephedrine, pseudoephedrine (INN), norephedrine or their salts) 01/01/2017 31/12/2500 -30034900 01/01/2017 31/12/2500 LIBEN Medicaments containing alkaloids or derivatives thereof, not containing hormones, steroids used as hormones or antibiotics, not in measured doses or put up for retail sale (excl. containing ephedrine, pseudoephedrine (INN), norephedrine or their salts) 01/01/2017 31/12/2500 -300360 01/01/2017 31/12/2500 LIBEN Medicaments containing any of the following antimalarial active principles: artemisinin (INN) for oral ingestion combined with other pharmaceutical active ingredients, or amodiaquine (INN); artelinic acid or its salts; artenimol (INN); artemotil (INN); artemether (INN); artesunate (INN); chloroquine (INN); dihydroartemisinin (INN); lumefantrine (INN); mefloquine (INN); piperaquine (INN); pyrimethamine (INN) or sulfadoxine (INN), not containing hormones, steroids used as hormones or antibiotics, not in measured doses or put up for retail sale 01/01/2017 31/12/2500 -30036000 01/01/2017 31/12/2500 LIBEN Medicaments containing any of the following antimalarial active principles: artemisinin (INN) for oral ingestion combined with other pharmaceutical active ingredients, or amodiaquine (INN); artelinic acid or its salts; artenimol (INN); artemotil (INN); artemether (INN); artesunate (INN); chloroquine (INN); dihydroartemisinin (INN); lumefantrine (INN); mefloquine (INN); piperaquine (INN); pyrimethamine (INN) or sulfadoxine (INN), not containing hormones, steroids used as hormones or antibiotics, not in measured doses or put up for retail sale 01/01/2017 31/12/2500 -300390 01/01/1988 31/12/2500 LIBEN Medicaments consisting of two or more constituents mixed together for therapeutic or prophylactic uses, not in measured doses or put up for retail sale (excl. antibiotics containing hormones or steroids used as hormones, but not containing antibiotics, alkaloids or derivatives thereof, hormones, antibiotics, antimalarial active principles or goods of heading 3002, 3005 or 3006) 01/01/1988 31/12/2500 -30039000 01/01/2010 31/12/2016 LIBEN Medicaments consisting of two or more constituents mixed together for therapeutic or prophylactic uses, not in measured doses or put up for retail sale (excl. antibiotics containing hormones or steroids used as hormones, but not containing antibiotics, alkaloids or derivatives thereof, hormones or antibiotics or goods of heading 3002, 3005 or 3006) 01/01/2010 31/12/2016 -30039000 01/01/2017 31/12/2500 LIBEN Medicaments consisting of two or more constituents mixed together for therapeutic or prophylactic uses, not in measured doses or put up for retail sale (excl. antibiotics containing hormones or steroids used as hormones, but not containing antibiotics, alkaloids or derivatives thereof, hormones, antibiotics, antimalarial active principles or goods of heading 3002, 3005 or 3006) 01/01/2017 31/12/2500 -30039010 01/01/1988 31/12/2001 LIBEN Medicaments containing iodine or iodine compounds, not in measured doses or packaged for retail sale 01/01/1988 31/12/2001 -30039010 01/01/2002 31/12/2009 LIBEN Medicaments containing iodine or iodine compounds, not in measured doses or packaged for retail sale 01/01/2002 31/12/2009 -30039090 01/01/1988 31/12/2001 LIBEN Medicaments consisting of two or more constituents mixed together for therapeutic or prophylactic uses, not in measured doses or put up for retail sale (excl. antibiotics containing hormones or steroids used as hormones, but not containing antibiotics, alkaloids or derivatives thereof, hormones or antibiotics or goods of heading 3002, 3005 or 3006) 01/01/1988 31/12/2001 -30039090 01/01/2002 31/12/2009 LIBEN Medicaments consisting of two or more constituents mixed together for therapeutic or prophylactic uses, not in measured doses or put up for retail sale (excl. antibiotics containing hormones or steroids used as hormones, but not containing antibiotics, alkaloids or derivatives thereof, hormones or antibiotics or goods of heading 3002, 3005 or 3006) 01/01/2002 31/12/2009 -3004 01/01/1988 31/12/2500 LIBEN Medicaments consisting of mixed or unmixed products for therapeutic or prophylactic uses, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale (excl. goods of heading 3002, 3005 or 3006) 01/01/1988 31/12/2500 -300410 01/01/1988 31/12/2500 LIBEN Medicaments containing penicillins or derivatives thereof with a penicillanic acid structure, or streptomycins or derivatives thereof, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale 01/01/1988 31/12/2500 -30041000 01/01/2010 31/12/2500 LIBEN Medicaments containing penicillins or derivatives thereof with a penicillanic acid structure, or streptomycins or derivatives thereof, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale 01/01/2010 31/12/2500 -30041010 01/01/1988 31/12/2001 LIBEN Medicaments containing, as active substances, only penicillins or derivatives thereof with a penicillanic acid structure, in measured doses or put up for retail sale 01/01/1988 31/12/2001 -30041010 01/01/2002 31/12/2009 LIBEN Medicaments containing, as active substances, only penicillins or derivatives thereof with a penicillanic acid structure, put up in measured doses "incl. those in the form of transdermal administration" or in forms or packings for retail sale 01/01/2002 31/12/2009 -30041090 01/01/1988 31/12/2001 LIBEN Medicaments containing streptomycins or derivatives thereof, whether or not in combination with penicillins or derivatives thereof, in measured doses put up for retail sale (excl. medicaments containing only penicillins or derivatives thereof with a penicillanic structure) 01/01/1988 31/12/2001 -30041090 01/01/2002 31/12/2009 LIBEN Medicaments containing streptomycins or derivatives thereof, whether or not in combination with penicillins or derivatives thereof, put up in measured doses "incl. those in the form of transdermal administration" or in forms or packings for retail sale (excl. medicaments containing only penicillins or derivatives thereof with a penicillanic structure) 01/01/2002 31/12/2009 -300420 01/01/1988 31/12/2500 LIBEN Medicaments containing antibiotics, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale (excl. medicaments containing penicillins or derivatives thereof with a penicillanic structure, or streptomycines or derivatives thereof) 01/01/1988 31/12/2500 -30042000 01/01/2010 31/12/2500 LIBEN Medicaments containing antibiotics, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale (excl. medicaments containing penicillins or derivatives thereof with a penicillanic structure, or streptomycines or derivatives thereof) 01/01/2010 31/12/2500 -30042010 01/01/1988 31/12/2001 LIBEN Medicaments containing antibiotics, put up for retail sale (excl. medicaments containing penicillins or derivatives thereof with a penicillanic structure, or streptomycines or derivatives thereof) 01/01/1988 31/12/2001 -30042010 01/01/2002 31/12/2009 LIBEN Medicaments containing antibiotics, put up in forms or packings for retail sale (excl. medicaments containing penicillins or derivatives thereof with a penicillanic structure, or streptomycines or derivatives thereof) 01/01/2002 31/12/2009 -30042090 01/01/1988 31/12/2001 LIBEN Medicaments containing antibiotics, in measured doses (excl. penicillins or derivatives thereof with a penicillanic structure, or streptomycines or derivatives thereof put up for retail sale) 01/01/1988 31/12/2001 -30042090 01/01/2002 31/12/2009 LIBEN Medicaments containing antibiotics, put up in measured doses "incl. those in the form of transdermal administration" (excl. penicillins or derivatives thereof with a penicillanic structure, or streptomycines or derivatives thereof, and those put up for retail sale) 01/01/2002 31/12/2009 -300431 01/01/1988 31/12/2500 LIBEN Medicaments containing insulin but not antibiotics, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale 01/01/1988 31/12/2500 -30043100 01/01/2010 31/12/2500 LIBEN Medicaments containing insulin but not antibiotics, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale 01/01/2010 31/12/2500 -30043110 01/01/1988 31/12/2001 LIBEN Medicaments containing insulin but not antibiotics, put up for retail sale 01/01/1988 31/12/2001 -30043110 01/01/2002 31/12/2009 LIBEN Medicaments containing insulin but not antibiotics, put up in forms or packings for retail sale 01/01/2002 31/12/2009 -30043190 01/01/1988 31/12/2001 LIBEN Medicaments containing insulin but not antibiotics, in measured doses (excl. those put up for retail sale) 01/01/1988 31/12/2001 -30043190 01/01/2002 31/12/2009 LIBEN Medicaments containing insulin but not antibiotics, put up in measured doses "incl. those in the form of transdermal administration" (excl. those put up for retail sale) 01/01/2002 31/12/2009 -300431SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 3004 31 01/01/2006 31/12/2500 -300432 01/01/1988 31/12/2500 LIBEN Medicaments containing corticosteroid hormones, their derivatives or structural analogues but not antibiotics, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale 01/01/1988 31/12/2500 -30043200 01/01/2010 31/12/2500 LIBEN Medicaments containing corticosteroid hormones, their derivatives or structural analogues but not antibiotics, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale 01/01/2010 31/12/2500 -30043210 01/01/1988 31/12/2001 LIBEN Medicaments containing adrenal cortical hormones but not antibiotics, put up for retail sale 01/01/1988 31/12/2001 -30043210 01/01/2002 31/12/2009 LIBEN Medicaments containing corticosteroid hormones, their derivatives or structural analogues but not antibiotics, put up in forms or packings for retail sale 01/01/2002 31/12/2009 -30043290 01/01/1988 31/12/2001 LIBEN Medicaments containing adrenal cortex hormones, in measured doses (excl. those put up for retail sale) 01/01/1988 31/12/2001 -30043290 01/01/2002 31/12/2009 LIBEN Medicaments containing corticosteroid hormones, their derivatives or structural analogues but not antibiotics, put up in measured doses "incl. those in the form of transdermal administration" (excl. those put up for retail sale) 01/01/2002 31/12/2009 -300432SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 3004 32 01/01/2006 31/12/2500 -300439 01/01/1988 31/12/2500 LIBEN Medicaments containing hormones or steroids used as hormones but not antibiotics, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale (excl. medicaments containing insulin or corticosteroid hormones, their derivatives or structural analogues) 01/01/1988 31/12/2500 -30043900 01/01/2010 31/12/2500 LIBEN Medicaments containing hormones or steroids used as hormones but not antibiotics, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale (excl. medicaments containing insulin or corticosteroid hormones, their derivatives or structural analogues) 01/01/2010 31/12/2500 -30043910 01/01/1988 31/12/2001 LIBEN Medicaments containing hormones or steroids used as hormones, but not antibiotics, put up for retail sale (excl. medicaments containing insulin or adrenal cortical hormones) 01/01/1988 31/12/2001 -30043910 01/01/2002 31/12/2009 LIBEN Medicaments containing hormones or steroids used as hormones, but not antibiotics, put up in forms or packings for retail sale (excl. medicaments containing insulin or corticosteroid hormones, their derivatives or structural analogues) 01/01/2002 31/12/2009 -30043990 01/01/1988 31/12/2001 LIBEN Medicaments containing hormones or steroids used as hormones but not antibiotics, in measured doses (excl. medicaments containing insulin or adrenal cortical hormones and those put up for retail sale) 01/01/1988 31/12/2001 -30043990 01/01/2002 31/12/2009 LIBEN Medicaments containing hormones or steroids used as hormones but not antibiotics, put up in measured doses "incl. those in the form of transdermal administration" (excl. medicaments containing insulin or corticosteroid hormones, their derivatives or structural analogues and those put up for retail sale) 01/01/2002 31/12/2009 -300439SS 01/01/2007 31/12/2500 LIBEN Confidential trade of heading 3004 39 01/01/2007 31/12/2500 -300440 01/01/1988 31/12/2016 LIBEN Medicaments containing alkaloids or derivatives thereof, not containing hormones, steroids used as hormones or antibiotics, put up in measured doses "incl. those in the form of transdermal administration" or in forms or packings for retail sale 01/01/1988 31/12/2016 -30044000 01/01/2010 31/12/2012 LIBEN Medicaments containing alkaloids or derivatives thereof, not containing hormones, steroids used as hormones or antibiotics, put up in measured doses "incl. those in the form of transdermal administration" or in forms or packings for retail sale 01/01/2010 31/12/2012 -30044010 01/01/1988 31/12/2001 LIBEN Medicaments containing alkaloids or derivatives thereof, but not containing hormones, steroids used as hormones or antibiotics, put up for retail sale 01/01/1988 31/12/2001 -30044010 01/01/2002 31/12/2009 LIBEN Medicaments containing alkaloids or derivatives thereof, but not containing hormones, steroids used as hormones or antibiotics, put up in forms or packings for retail sale 01/01/2002 31/12/2009 -30044020 01/01/2013 31/12/2016 LIBEN Medicaments containing ephedrine or its salts, not containing hormones, steroids used as hormones or antibiotics, put up in measured doses "incl. those in the form of transdermal administration" or in forms or packings for retail sale 01/01/2013 31/12/2016 -30044030 01/01/2013 31/12/2016 LIBEN Medicaments containing pseudoephedrine (INN) or its salts, not containing hormones, steroids used as hormones or antibiotics, put up in measured doses "incl. those in the form of transdermal administration" or in forms or packings for retail sale 01/01/2013 31/12/2016 -30044040 01/01/2013 31/12/2016 LIBEN Medicaments containing norephedrine or its salts, not containing hormones, steroids used as hormones or antibiotics, put up in measured doses "incl. those in the form of transdermal administration" or in forms or packings for retail sale 01/01/2013 31/12/2016 -30044080 01/01/2013 31/12/2016 LIBEN Medicaments containing alkaloids or derivatives thereof, not containing hormones, steroids used as hormones or antibiotics, put up in measured doses "incl. those in the form of transdermal administration" or in forms or packings for retail sale (excl. containing ephedrine, pseudoephedrine (INN), norephedrine or their salts) 01/01/2013 31/12/2016 -30044090 01/01/1988 31/12/2001 LIBEN Medicaments, containing alkaloids or derivatives thereof, but not containing hormones, steroids used as hormones or antibiotics, in measured doses (excl. those put up for retail sale) 01/01/1988 31/12/2001 -30044090 01/01/2002 31/12/2009 LIBEN Medicaments, containing alkaloids or derivatives thereof, but not containing hormones, steroids used as hormones or antibiotics, put up in measured doses "incl. those in the form of transdermal administration" (excl. those put up for retail sale) 01/01/2002 31/12/2009 -300441 01/01/2017 31/12/2500 LIBEN Medicaments containing ephedrine or its salts, not containing hormones, steroids used as hormones or antibiotics, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale 01/01/2017 31/12/2500 -30044100 01/01/2017 31/12/2500 LIBEN Medicaments containing ephedrine or its salts, not containing hormones, steroids used as hormones or antibiotics, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale 01/01/2017 31/12/2500 -300442 01/01/2017 31/12/2500 LIBEN Medicaments containing pseudoephedrine (INN) or its salts, not containing hormones, steroids used as hormones or antibiotics, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale 01/01/2017 31/12/2500 -30044200 01/01/2017 31/12/2500 LIBEN Medicaments containing pseudoephedrine (INN) or its salts, not containing hormones, steroids used as hormones or antibiotics, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale 01/01/2017 31/12/2500 -300443 01/01/2017 31/12/2500 LIBEN Medicaments containing norephedrine or its salts, not containing hormones, steroids used as hormones or antibiotics, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale 01/01/2017 31/12/2500 -30044300 01/01/2017 31/12/2500 LIBEN Medicaments containing norephedrine or its salts, not containing hormones, steroids used as hormones or antibiotics, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale 01/01/2017 31/12/2500 -300449 01/01/2017 31/12/2500 LIBEN Medicaments containing alkaloids or derivatives thereof, not containing hormones, steroids used as hormones or antibiotics, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale (excl. containing ephedrine, pseudoephedrine (INN), norephedrine or their salts) 01/01/2017 31/12/2500 -30044900 01/01/2017 31/12/2500 LIBEN Medicaments containing alkaloids or derivatives thereof, not containing hormones, steroids used as hormones or antibiotics, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale (excl. containing ephedrine, pseudoephedrine (INN), norephedrine or their salts) 01/01/2017 31/12/2500 -300450 01/01/1988 31/12/2500 LIBEN Medicaments containing provitamins, vitamins, incl. natural concentrates and derivatives thereof used primarily as vitamins, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale (excl. containing antibiotics, hormones, alkaloids, or their derivatives) 01/01/1988 31/12/2500 -30045000 01/01/2010 31/12/2500 LIBEN Medicaments containing provitamins, vitamins, incl. natural concentrates and derivatives thereof used primarily as vitamins, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale (excl. containing antibiotics, hormones, alkaloids, or their derivatives) 01/01/2010 31/12/2500 -30045010 01/01/1988 31/12/2001 LIBEN Medicaments, containing provitamins, vitamins, incl. natural concentrates and derivatives thereof used primarily as vitamins, put up for retail sale 01/01/1988 31/12/2001 -30045010 01/01/2002 31/12/2009 LIBEN Medicaments, containing provitamins, vitamins, incl. natural concentrates and derivatives thereof used primarily as vitamins, put up in forms or packings for retail sale 01/01/2002 31/12/2009 -30045090 01/01/1988 31/12/2001 LIBEN Medicaments, containing provitamins, vitamins, incl. natural concentrates and derivatives thereof used primarily as vitamins, in measured doses (excl. those put up for retail sale) 01/01/1988 31/12/2001 -30045090 01/01/2002 31/12/2009 LIBEN Medicaments, containing provitamins, vitamins, incl. natural concentrates and derivatives thereof used primarily as vitamins, put up in measured doses "incl. those in the form of transdermal administration" (excl. those put up for retail sale) 01/01/2002 31/12/2009 -300460 01/01/2017 31/12/2500 LIBEN Medicaments containing any of the following antimalarial active principles: artemisinin (INN) for oral ingestion combined with other pharmaceutical active ingredients, or amodiaquine (INN); artelinic acid or its salts; artenimol (INN); artemotil (INN); artemether (INN); artesunate (INN); chloroquine (INN); dihydroartemisinin (INN); lumefantrine (INN); mefloquine (INN); piperaquine (INN); pyrimethamine (INN) or sulfadoxine (INN), put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale (excl. containing antibiotics, hormones, alkaloids, provitamins, vitamins, or their derivatives) 01/01/2017 31/12/2500 -30046000 01/01/2017 31/12/2500 LIBEN Medicaments containing any of the following antimalarial active principles: artemisinin (INN) for oral ingestion combined with other pharmaceutical active ingredients, or amodiaquine (INN); artelinic acid or its salts; artenimol (INN); artemotil (INN); artemether (INN); artesunate (INN); chloroquine (INN); dihydroartemisinin (INN); lumefantrine (INN); mefloquine (INN); piperaquine (INN); pyrimethamine (INN) or sulfadoxine (INN), put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale (excl. containing antibiotics, hormones, alkaloids, provitamins, vitamins, or their derivatives) 01/01/2017 31/12/2500 -300490 01/01/1988 31/12/2500 LIBEN Medicaments consisting of mixed or unmixed products for therapeutic or prophylactic purposes, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale (excl. containing antibiotics, hormones or steroids used as hormones, alkaloids, provitamins, vitamins, their derivatives or antimalarial active principles) 01/01/1988 31/12/2500 -30049000 01/01/2010 31/12/2011 LIBEN Medicaments consisting of mixed or unmixed products for therapeutic or prophylactic purposes, put up in measured doses "incl. those in the form of transdermal administration" or in forms or packings for retail sale (excl. medicaments containing antibiotics, medicaments containing hormones or steroids used as hormones, but not containing antibiotics, medicaments containing alkaloids or derivatives thereof but not containing hormones or antibiotics and medicaments containing provitamins, vitamins or derivatives thereof used as vitamins) 01/01/2010 31/12/2011 -30049000 01/01/2012 31/12/2016 LIBEN Medicaments consisting of mixed or unmixed products for therapeutic or prophylactic purposes, put up in measured doses "incl. those in the form of transdermal administration" or in forms or packings for retail sale (excl. medicaments containing antibiotics, medicaments containing hormones or steroids used as hormones, but not containing antibiotics, medicaments containing alkaloids or derivatives thereof but not containing hormones or antibiotics and medicaments containing provitamins, vitamins or derivatives thereof used as vitamins) 01/01/2012 31/12/2016 -30049000 01/01/2017 31/12/2500 LIBEN Medicaments consisting of mixed or unmixed products for therapeutic or prophylactic purposes, put up in measured doses "incl. those for transdermal administration" or in forms or packings for retail sale (excl. containing antibiotics, hormones or steroids used as hormones, alkaloids, provitamins, vitamins, their derivatives or antimalarial active principles) 01/01/2017 31/12/2500 -30049011 01/01/1988 31/12/2001 LIBEN Medicaments containing iodine or iodine compounds, put up for retail sale 01/01/1988 31/12/2001 -30049011 01/01/2002 31/12/2009 LIBEN Medicaments containing iodine or iodine compounds, put up in forms or packings for retail sale 01/01/2002 31/12/2009 -30049019 01/01/1988 31/12/2001 LIBEN Medicaments consisting of mixed or unmixed products for therapeutic or prophylactic purposes, put up for retail sale (excl. antibiotics containing hormones or steroids used as hormones, but not containing antibiotics, alkaloids or derivates thereof, hormones or antibiotics, provitamins, vitamins or derivates thereof used as vitamins, iodine or iodine compounds) 01/01/1988 31/12/2001 -30049019 01/01/2002 31/12/2009 LIBEN Medicaments consisting of mixed or unmixed products for therapeutic or prophylactic purposes, put up in forms or packings for retail sale (excl. medicaments containing antibiotics, medicaments containing hormones or steroids used as hormones, but not containing antibiotics, medicaments containing alkaloids or derivatives thereof but not containing hormones or antibiotics, medicaments containing provitamins, vitamins or derivatives thereof used as vitamins and medicaments containing iodine or iodine compounds) 01/01/2002 31/12/2009 -30049091 01/01/1988 31/12/2001 LIBEN Medicaments containing iodine or iodine compounds, in measured doses (excl. those put up for retail sale) 01/01/1988 31/12/2001 -30049091 01/01/2002 31/12/2009 LIBEN Medicaments containing iodine or iodine compounds, put up in measured doses "incl. those in the form of transdermal administration" (excl. those put up for retail sale) 01/01/2002 31/12/2009 -30049099 01/01/1988 31/12/2001 LIBEN Medicaments consisting of mixed or unmixed products for therapeutic or prophylactic purposes, in measured doses (excl. antibiotics containing hormones or steroids used as hormones, but not containing antibiotics, alkaloids or derivates thereof, hormones or antibiotics, provitamins, vitamins or derivates thereof used as vitamins, iodine or iodine compounds, and those put up for retail sale) 01/01/1988 31/12/2001 -30049099 01/01/2002 31/12/2009 LIBEN Medicaments consisting of mixed or unmixed products for therapeutic or prophylactic purposes, put up in measured doses "incl. those in the form of transdermal administration" (excl. medicaments containing antibiotics, medicaments containing hormones or steroids used as hormones, but not containing antibiotics, medicaments containing alkaloids or derivatives thereof but not containing hormones or antibiotics, medicaments containing provitamins, vitamins or derivatives thereof used as vitamins, medicaments containing iodine or iodine compounds and those put up for retail sale) 01/01/2002 31/12/2009 -3004S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3004 and SITC section 5 01/01/1997 31/12/2500 -3004S542 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3004 and SITC group 542 01/01/1997 31/12/2500 -3005 01/01/1988 31/12/2500 LIBEN Wadding, gauze, bandages and the like, e.g. dressings, adhesive plasters, poultices, impregnated or covered with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes 01/01/1988 31/12/2500 -300510 01/01/1988 31/12/2500 LIBEN Adhesive dressings and other articles having an adhesive layer, impregnated or covered with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes 01/01/1988 31/12/2500 -30051000 01/01/1988 31/12/2001 LIBEN Adhesive dressings and other articles having an adhesive layer, impregnated or covered with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes 01/01/1988 31/12/2001 -30051000 01/01/2002 31/12/2500 LIBEN Adhesive dressings and other articles having an adhesive layer, impregnated or covered with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes 01/01/2002 31/12/2500 -300590 01/01/1988 31/12/2500 LIBEN Wadding, gauze, bandages and the like, e.g. dressings, adhesive plasters, poultices, impregnated or covered with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes (excl. adhesive dressings and other articles having an adhesive layer) 01/01/1988 31/12/2500 -30059010 01/01/1993 31/12/2001 LIBEN Wadding and articles of wadding, impregnated or coated with pharmaceutical substances or put up in forms or packings for retail sale for medical, surgical, dental or veterinary purposes 01/01/1993 31/12/2001 -30059010 01/01/2002 31/12/2500 LIBEN Wadding and articles of wadding, impregnated or coated with pharmaceutical substances or put up in forms or packings for retail sale for medical, surgical, dental or veterinary purposes 01/01/2002 31/12/2500 -30059011 01/01/1988 31/12/1992 LIBEN Wadding and articles of wadding, of viscose or absorbent cotton, impregnated or covered with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes 01/01/1988 31/12/1992 -30059019 01/01/1988 31/12/1992 LIBEN Wadding and articles of wadding impregnated or covered with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes (excl. articles made of viscose or absorbent cotton) 01/01/1988 31/12/1992 -30059031 01/01/1988 31/12/2001 LIBEN Gauze and articles of gauze, impregnated or covered with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes 01/01/1988 31/12/2001 -30059031 01/01/2002 31/12/2500 LIBEN Gauze and articles of gauze, impregnated or covered with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes 01/01/2002 31/12/2500 -30059050 01/01/2010 31/12/2500 LIBEN Bandages and similar articles of textile materials, impregnated or covered with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes (excl. wadding, gauze and articles thereof, adhesive dressings and other articles having an adhesive layer) 01/01/2010 31/12/2500 -30059051 01/01/1988 31/12/2001 LIBEN Bandages and similar articles of non-woven material, impregnated or covered with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes (excl. wadding, gauze and articles thereof, adhesive dressings and other articles having an adhesive layer) 01/01/1988 31/12/2001 -30059051 01/01/2002 31/12/2009 LIBEN Bandages and similar articles of nonwoven material, impregnated or covered with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes (excl. wadding, gauze and articles thereof, adhesive dressings and other articles having an adhesive layer) 01/01/2002 31/12/2009 -30059055 01/01/1988 31/12/2001 LIBEN Bandages and similar articles of textile materials other than non-wovens, impregnated or covered with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes (excl. wadding, gauze and articles thereof, adhesive dressings and other articles having an adhesive layer) 01/01/1988 31/12/2001 -30059055 01/01/2002 31/12/2009 LIBEN Bandages and similar articles of textile materials other than nonwovens, impregnated or covered with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes (excl. wadding, gauze and articles thereof, adhesive dressings and other articles having an adhesive layer) 01/01/2002 31/12/2009 -30059099 01/01/1988 31/12/2001 LIBEN Bandages and similar articles impregnated or covered with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes (excl. those of textile materials, adhesive dressings and other articles having an adhesive layer) 01/01/1988 31/12/2001 -30059099 01/01/2002 31/12/2500 LIBEN Bandages and similar articles impregnated or covered with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes (excl. those of textile materials, adhesive dressings and other articles having an adhesive layer) 01/01/2002 31/12/2500 -3006 01/01/1988 31/12/2500 LIBEN Pharmaceutical preparations and products of subheadings 3006.10.10 to 3006.60.90 01/01/1988 31/12/2500 -300610 01/01/1988 31/12/2500 LIBEN Sterile surgical catgut, similar sterile suture materials, incl. sterile absorbable surgical or dental yarns, and sterile tissue adhesives for surgical wound closure; sterile laminaria and sterile laminaria tents; sterile absorbable surgical or dental haemostatics; sterile surgical or dental adhesion barriers, whether or not absorbable 01/01/1988 31/12/2500 -30061010 01/01/1988 31/12/2001 LIBEN Sterile surgical catgut 01/01/1988 31/12/2001 -30061010 01/01/2002 31/12/2500 LIBEN Sterile surgical catgut 01/01/2002 31/12/2500 -30061030 01/01/2007 31/12/2500 LIBEN Sterile surgical or dental adhesion barriers, whether or not absorbable 01/01/2007 31/12/2500 -30061090 01/01/1988 31/12/2001 LIBEN Sterile suture materials; sterile tissue adhesives for surgical wound closure; sterile laminaria and sterile laminaria tents; sterile absorbable surgical or dental haemostatics (excl. catgut) 01/01/1988 31/12/2001 -30061090 01/01/2002 31/12/2500 LIBEN Sterile suture materials, incl. sterile absorbable surgical or dental yarns (excl. catgut); sterile tissue adhesives for surgical wound closure; sterile laminaria and sterile laminaria tents; sterile absorbable surgical or dental haemostatics 01/01/2002 31/12/2500 -300620 01/01/1988 31/12/2500 LIBEN Reagents for determining blood groups or blood factors 01/01/1988 31/12/2500 -30062000 01/01/1988 31/12/2001 LIBEN Reagents for determining blood groups or blood factors 01/01/1988 31/12/2001 -30062000 01/01/2002 31/12/2500 LIBEN Reagents for determining blood groups or blood factors 01/01/2002 31/12/2500 -300630 01/01/1988 31/12/2500 LIBEN Opacifying preparations for x-ray examinations; diagnostic reagents for administration to patients 01/01/1988 31/12/2500 -30063000 01/01/1988 31/12/2001 LIBEN Opacifying preparations for x-ray examinations; diagnostic reagents for administration to patients 01/01/1988 31/12/2001 -30063000 01/01/2002 31/12/2500 LIBEN Opacifying preparations for x-ray examinations; diagnostic reagents for administration to patients 01/01/2002 31/12/2500 -300640 01/01/1988 31/12/2500 LIBEN Dental cements and other dental fillings; bone reconstruction cements 01/01/1988 31/12/2500 -30064000 01/01/1988 31/12/2001 LIBEN Dental cements and other dental fillings; bone reconstruction cements 01/01/1988 31/12/2001 -30064000 01/01/2002 31/12/2500 LIBEN Dental cements and other dental fillings; bone reconstruction cements 01/01/2002 31/12/2500 -300650 01/01/1988 31/12/2500 LIBEN First-aid boxes and kits 01/01/1988 31/12/2500 -30065000 01/01/1988 31/12/2001 LIBEN First-aid boxes and kits 01/01/1988 31/12/2001 -30065000 01/01/2002 31/12/2500 LIBEN First-aid boxes and kits 01/01/2002 31/12/2500 -300660 01/01/1988 31/12/2500 LIBEN Chemical contraceptive preparations based on hormones, prostaglandins, thromboxanes, leukotrienes, derivatives and structural analogues thereof or on spermicides 01/01/1988 31/12/2500 -30066000 01/01/2012 31/12/2500 LIBEN Chemical contraceptive preparations based on hormones, prostaglandins, thromboxanes, leukotrienes, derivatives and structural analogues thereof or on spermicides 01/01/2012 31/12/2500 -30066010 01/01/2010 31/12/2011 LIBEN Chemical contraceptive preparations based on hormones, prostaglandins, thromboxanes, leukotrienes, derivatives and structural analogues thereof 01/01/2010 31/12/2011 -30066011 01/01/1988 31/12/2001 LIBEN Chemical contraceptive preparations based on hormones, put up for retail sale 01/01/1988 31/12/2001 -30066011 01/01/2002 31/12/2009 LIBEN Chemical contraceptive preparations based on hormones, prostaglandins, thromboxanes, leukotrienes, derivatives and structural analogues thereof, put up for retail sale 01/01/2002 31/12/2009 -30066019 01/01/1988 31/12/2001 LIBEN Chemical contraceptive preparations based on hormones (excl. those put up for retail sale) 01/01/1988 31/12/2001 -30066019 01/01/2002 31/12/2009 LIBEN Chemical contraceptive preparations based on hormones, prostaglandins, thromboxanes, leukotrienes, derivatives and structural analogues thereof (excl. those put up for retail sale) 01/01/2002 31/12/2009 -30066090 01/01/1988 31/12/2001 LIBEN Chemical contraceptive preparations based on spermicides 01/01/1988 31/12/2001 -30066090 01/01/2002 31/12/2011 LIBEN Chemical contraceptive preparations based on spermicides 01/01/2002 31/12/2011 -300660SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 3006 60 01/01/2006 31/12/2500 -300670 01/01/2002 31/12/2500 LIBEN Gel preparations designed to be used in human or veterinary medicine as a lubricant for parts of the body for surgical operations or physical examinations or as a coupling agent between the body and medical instruments 01/01/2002 31/12/2500 -30067000 01/01/2002 31/12/2500 LIBEN Gel preparations designed to be used in human or veterinary medicine as a lubricant for parts of the body for surgical operations or physical examinations or as a coupling agent between the body and medical instruments 01/01/2002 31/12/2500 -300680 01/01/2002 31/12/2006 LIBEN Waste pharmaceuticals 01/01/2002 31/12/2006 -30068000 01/01/2002 31/12/2006 LIBEN Waste pharmaceuticals 01/01/2002 31/12/2006 -300691 01/01/2007 31/12/2500 LIBEN Appliances identifiable for ostomy use 01/01/2007 31/12/2500 -30069100 01/01/2007 31/12/2500 LIBEN Appliances identifiable for ostomy use 01/01/2007 31/12/2500 -300692 01/01/2007 31/12/2500 LIBEN Waste pharmaceuticals 01/01/2007 31/12/2500 -30069200 01/01/2007 31/12/2500 LIBEN Waste pharmaceuticals 01/01/2007 31/12/2500 -3006S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3006 and SITC section 5 01/01/1997 31/12/2500 -3006S541 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3006 and SITC group 541 01/01/1997 31/12/2500 -30CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 30 01/01/2002 31/12/2500 -30CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 30 01/01/2002 31/12/2500 -30CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 30 01/01/2002 31/12/2500 -30MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -30MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -30MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -30PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 30 carried by post 01/01/1988 31/12/2500 -30PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 30 carried by post 01/01/1988 31/12/2500 -30PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 30 carried by post 01/01/1988 31/12/2500 -30SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 30 01/01/1988 31/12/2500 -30SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 30 and SITC section 0 01/01/1997 31/12/2001 -30SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 30 and SITC group 000 01/01/1997 31/12/2001 -30SSS5 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 30 and SITC section 5 01/01/1993 31/12/2500 -30SSS541 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 30 and SITC group 541 01/01/1993 31/12/2500 -30SSS542 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 30 and SITC group 542 01/01/1997 31/12/2500 -30SSS598 01/01/2002 31/12/2500 LIBEN Confidential trade of chapter 30 and SITC group 598 01/01/2002 31/12/2500 -30SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 30 and SITC section 9 01/01/1988 31/12/1996 -30SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 30 and SITC section 9 01/01/1997 31/12/2500 -30SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 30 and SITC group 999 01/01/1988 31/12/1996 -30SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 30 and SITC group 999 01/01/1997 31/12/2500 -31 01/01/1988 31/12/2500 LIBEN FERTILISERS 01/01/1988 31/12/2500 -3101 01/01/1988 31/12/2500 LIBEN Animal or vegetable fertilisers, whether or not mixed together or chemically treated; fertilisers produced by the mixing or chemical treatment of animal or vegetable products (excl. those in pellet or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -310100 01/01/1988 31/12/2500 LIBEN Animal or vegetable fertilisers, whether or not mixed together or chemically treated; fertilisers produced by the mixing or chemical treatment of animal or vegetable products (excl. those in pellet or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31010000 01/01/1988 31/12/2500 LIBEN Animal or vegetable fertilisers, whether or not mixed together or chemically treated; fertilisers produced by the mixing or chemical treatment of animal or vegetable products (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -3102 01/01/1988 31/12/2500 LIBEN Mineral or chemical nitrogenous fertilisers (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -310210 01/01/1988 31/12/2500 LIBEN Urea, whether or not in aqueous solution (excl. that in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31021010 01/01/1988 31/12/2500 LIBEN Urea, whether or not in aqueous solution, containing > 45% nitrogen in relation to the weight of the dry product (excl. that in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31021090 01/01/1993 31/12/2500 LIBEN Urea, whether or not in aqueous solution, containing <= 45% by weight of nitrogen on the dry anhydrous product (excl. goods of this chapter in tablets or similar forms or in packages of a gross weight of <= 10 kg) 01/01/1993 31/12/2500 -31021091 01/01/1988 31/12/1992 LIBEN Urea in aqueous solution, containing > 45 % nitrogen in relation to the weight of the dry product (excl. that in packages with a gross weight of =< 10 kg) 01/01/1988 31/12/1992 -31021099 01/01/1988 31/12/1992 LIBEN Urea, other than in aqueous solution, containing > 45 % nitrogen in relation to the weight of the dry product (excl. that in pellet or similar forms, or in packages with a gross weight of =< 10 kg) 01/01/1988 31/12/1992 -310221 01/01/1988 31/12/2500 LIBEN Ammonium sulphate (excl. that in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31022100 01/01/1988 31/12/2500 LIBEN Ammonium sulphate (excl. that in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -310229 01/01/1988 31/12/2500 LIBEN Double salts and mixtures of ammonium sulphate and ammonium nitrate (excl. goods of this chapter in tablets or similar forms or in packages of a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31022900 01/01/1993 31/12/2500 LIBEN Double salts and mixtures of ammonium sulphate and ammonium nitrate (excl. goods of this chapter in tablets or similar forms or in packages of a gross weight of <= 10 kg) 01/01/1993 31/12/2500 -31022910 01/01/1988 31/12/1992 LIBEN Ammonium sulphate-nitrate (excl. that in pellet or similar forms, or in packages with a gross weight of =< 10 kg) 01/01/1988 31/12/1992 -31022990 01/01/1988 31/12/1992 LIBEN Double salts and mixtures of ammonium sulphate and ammonium nitrate (excl. ammonium sulphate-nitrate, in pellet or similar forms, or in packages with a gross weight of =< 10 kg) 01/01/1988 31/12/1992 -310230 01/01/1988 31/12/2500 LIBEN Ammonium nitrate, whether or not in aqueous solution (excl. that in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31023010 01/01/1988 31/12/2500 LIBEN Ammonium nitrate in aqueous solution (excl. that in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31023090 01/01/1988 31/12/2500 LIBEN Ammonium nitrate (excl. that in aqueous solution, in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -310240 01/01/1988 31/12/2500 LIBEN Mixtures of ammonium nitrate with calcium carbonate or other inorganic non-fertilising substances for use as fertilisers (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31024010 01/01/1988 31/12/2500 LIBEN Mixtures of ammonium nitrate with calcium carbonate or other inorganic non-fertilising substances, for use as fertilisers, containing <= 28% nitrogen by weight (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31024090 01/01/1988 31/12/2500 LIBEN Mixtures of ammonium nitrate with calcium carbonate or other inorganic non-fertilising substances, for use as fertilisers, containing > 28% nitrogen by weight (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -310240SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 3102 40 01/01/2006 31/12/2500 -310250 01/01/1988 31/12/2500 LIBEN Sodium nitrate (excl. that in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31025000 01/01/2014 31/12/2500 LIBEN Sodium nitrate (excl. that in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/2014 31/12/2500 -31025010 01/01/1988 31/12/2013 LIBEN Natural sodium nitrate (excl. that in pellet or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2013 -31025090 01/01/1988 31/12/2013 LIBEN Sodium nitrate (excl. natural sodium nitrate and sodium nitrate in pellet or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2013 -310260 01/01/1988 31/12/2500 LIBEN Double salts and mixtures of calcium nitrate and ammonium nitrate (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31026000 01/01/1988 31/12/2500 LIBEN Double salts and mixtures of calcium nitrate and ammonium nitrate (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -310270 01/01/1988 31/12/2006 LIBEN Calcium cyanamide (excl. that in pellet or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2006 -31027000 01/01/1988 31/12/1995 LIBEN Calcium cyanamide (excl. that in pellet or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/1995 -31027000 01/01/1998 31/12/2006 LIBEN Calcium cyanamide (excl. that in pellet or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1998 31/12/2006 -31027010 01/01/1996 31/12/1997 LIBEN Calcium cyanamide for the manufacture of pharmaceutical products (excl. in tablets or similar forms or in packages of a gross net weight <= 10 kg) 01/01/1996 31/12/1997 -31027090 01/01/1996 31/12/1997 LIBEN Calcium cyanamide (excl. for the manufacture of pharmaceutical products, in tablets or similar forms or in packages of a gross net weight <= 10 kg) 01/01/1996 31/12/1997 -310280 01/01/1988 31/12/2500 LIBEN Mixtures of urea and ammonium nitrate in aqueous or ammoniacal solution (excl. those in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31028000 01/01/1988 31/12/2500 LIBEN Mixtures of urea and ammonium nitrate in aqueous or ammoniacal solution (excl. those in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -310290 01/01/1988 31/12/2500 LIBEN Mineral or chemical nitrogen fertilisers (excl. urea; ammonium sulphate; ammonium nitrate; sodium nitrate; double salts and mixtures of ammonium nitrate with ammonium sulphate or calcium; mixtures of urea and ammonium nitrate in aqueous or ammoniacal solution; mixtures of ammonium nitrate and calcium carbonate or other non-fertilising inorganic elements; in tablets or similar in packages <= 10 kg) 01/01/1988 31/12/2500 -31029000 01/01/1988 31/12/2006 LIBEN Mineral or chemical nitrogen fertilisers (excl. urea; ammonium sulphate; ammonium nitrate; sodium nitrate; calcium cyanamide; double salts and mixtures of ammonium nitrate with ammonium sulphate or calcium; mixtures of urea and ammonium nitrate in aqueous or ammoniacal solution; mixtures of ammonium nitrate and calcium carbonate or other non-fertilising inorganic elements; in tablets or similar in packages <= 10 kg) 01/01/1988 31/12/2006 -31029000 01/01/2007 31/12/2500 LIBEN Mineral or chemical nitrogen fertilisers (excl. urea; ammonium sulphate; ammonium nitrate; sodium nitrate; double salts and mixtures of ammonium nitrate with ammonium sulphate or calcium; mixtures of urea and ammonium nitrate in aqueous or ammoniacal solution; mixtures of ammonium nitrate and calcium carbonate or other non-fertilising inorganic elements; in tablets or similar in packages <= 10 kg) 01/01/2007 31/12/2500 -3102S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3102 and SITC section 5 01/01/1997 31/12/2500 -3102S562 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3102 and SITC group 562 01/01/1997 31/12/2500 -3103 01/01/1988 31/12/2500 LIBEN Mineral or chemical phosphatic fertilisers (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -310310 01/01/1988 31/12/2016 LIBEN Superphosphates (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2016 -31031000 01/01/1988 31/12/1993 LIBEN Superphosphates (excl. those in pellet or similar forms, or in packages with a gross weight of =< 10 kg) 01/01/1988 31/12/1993 -31031010 01/01/1994 31/12/2016 LIBEN Superphosphates containing > 35 by weight of diphosphorus pentoxide (excl. such products in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1994 31/12/2016 -31031090 01/01/1994 31/12/2016 LIBEN Superphosphates (excl. such products containing > 35 by weight of diphosphorus pentoxide, or in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1994 31/12/2016 -310311 01/01/2017 31/12/2500 LIBEN Superphosphates containing by weight => 35 % of diphosphorus pentaoxide "P2O5" (excl. such products in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/2017 31/12/2500 -31031100 01/01/2017 31/12/2500 LIBEN Superphosphates containing by weight => 35 % of diphosphorus pentaoxide "P2O5" (excl. such products in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/2017 31/12/2500 -310319 01/01/2017 31/12/2500 LIBEN Superphosphates (excl. such products containing by weight => 35 % of diphosphorus pentaoxide, or in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/2017 31/12/2500 -31031900 01/01/2017 31/12/2500 LIBEN Superphosphates (excl. such products containing by weight => 35 % of diphosphorus pentaoxide, or in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/2017 31/12/2500 -310320 01/01/1988 31/12/2006 LIBEN Basic slag (excl. that in pellet or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2006 -31032000 01/01/1988 31/12/2006 LIBEN Basic slag (excl. that in pellet or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2006 -310390 01/01/1988 31/12/2500 LIBEN Mineral or chemical phosphatic fertilisers (excl. superphosphates, those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31039000 01/01/1988 31/12/2006 LIBEN Mineral or chemical phosphatic fertilisers (excl. superphosphates, those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2006 -31039000 01/01/2007 31/12/2500 LIBEN Mineral or chemical phosphatic fertilisers (excl. superphosphates, those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/2007 31/12/2500 -3103S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3103 and SITC section 5 01/01/1997 31/12/2500 -3103S562 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3103 and SITC group 562 01/01/1997 31/12/2500 -3104 01/01/1988 31/12/2500 LIBEN Mineral or chemical potassic fertilisers (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -310410 01/01/1988 31/12/2006 LIBEN Carnallite, sylvite and other crude natural potassium salts (excl. those in pellet or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2006 -31041000 01/01/1988 31/12/2006 LIBEN Carnallite, sylvite and other crude natural potassium salts (excl. those in pellet or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2006 -310420 01/01/1988 31/12/2500 LIBEN Potassium chloride for use as fertiliser (excl. that in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31042010 01/01/1988 31/12/2500 LIBEN Potassium chloride containing <= 40% potassium monoxide in relation to the weight of the dry product (excl. that in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31042050 01/01/1988 31/12/2500 LIBEN Potassium chloride containing > 40% but <= 62% potassium monoxide in relation to the weight of the dry product (excl. that in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31042090 01/01/1988 31/12/2500 LIBEN Potassium chloride containing > 62% potassium monoxide in relation to the weight of the dry product (excl. that in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -310430 01/01/1988 31/12/2500 LIBEN Potassium sulphate (excl. that in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31043000 01/01/1988 31/12/2500 LIBEN Potassium sulphate (excl. that in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -310490 01/01/1988 31/12/2500 LIBEN Carnallite, sylvite and other crude natural potassium salts, potassium magnesium sulphate and mixtures of potassic fertilisers, e.g. mixtures of potassium chloride and potassium sulphate (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31049000 01/01/1988 31/12/2006 LIBEN Potassium magnesium sulphate and mixtures of potassic fertilisers, e.g. mixtures of potassium chloride and potassium sulphate (excl. those in pellet or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2006 -31049000 01/01/2007 31/12/2500 LIBEN Carnallite, sylvite and other crude natural potassium salts, potassium magnesium sulphate and mixtures of potassic fertilisers, e.g. mixtures of potassium chloride and potassium sulphate (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/2007 31/12/2500 -3104S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3104 and SITC section 5 01/01/1997 31/12/2500 -3104S562 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3104 and SITC group 562 01/01/1997 31/12/2500 -3104S9 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 3104 and SITC section 9 01/01/2001 31/12/2500 -3104S999 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 3104 and SITC group 999 01/01/2001 31/12/2500 -3105 01/01/1988 31/12/2500 LIBEN Mineral or chemical fertilisers containing two or three of the fertilising elements nitrogen, phosphorus and potassium; other fertilisers (excl. pure animal or vegetable fertilisers or mineral or chemical nitrogenous, phosphatic or potassic fertilisers); animal, vegetable, mineral or chemical fertilisers in tablets or similar forms or in packages of a gross weight of <= 10 kg 01/01/1988 31/12/2500 -310510 01/01/1988 31/12/2500 LIBEN Mineral or chemical fertilisers of animal or vegetable origin, in tablets or similar forms, or in packages with a gross weight of <= 10 kg 01/01/1988 31/12/2500 -31051000 01/01/1988 31/12/2500 LIBEN Mineral or chemical fertilisers of animal or vegetable origin, in tablets or similar forms, or in packages with a gross weight of <= 10 kg 01/01/1988 31/12/2500 -310520 01/01/1988 31/12/2500 LIBEN Mineral or chemical fertilisers containing the three fertilising elements nitrogen, phosphorus and potassium (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31052000 01/01/2011 31/12/2011 LIBEN Mineral or chemical fertilisers containing the three fertilising elements nitrogen, phosphorus and potassium (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/2011 31/12/2011 -31052010 01/01/1988 31/12/2010 LIBEN Mineral or chemical fertilisers containing the three fertilising elements nitrogen, phosphorus and potassium, containing > 10% nitrogen in relation to the weight of the dry product (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2010 -31052010 01/01/2012 31/12/2500 LIBEN Mineral or chemical fertilisers containing phosphorus and potassium, with a nitrogen content > 10 % by weight on the dry anhydrous product (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/2012 31/12/2500 -31052090 01/01/1988 31/12/2010 LIBEN Mineral or chemical fertilisers containing the three fertilising elements nitrogen, phosphorus and potassium, containing <= 10% nitrogen in relation to the weight of the dry product (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2010 -31052090 01/01/2012 31/12/2500 LIBEN Mineral or chemical fertilisers containing nitrogen, phosphorus and potassium, with a nitrogen content <= 10 % by weight on the dry anhydrous product (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/2012 31/12/2500 -310530 01/01/1988 31/12/2500 LIBEN Diammonium hydrogenorthophosphate "diammonium phosphate" (excl. that in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31053000 01/01/1988 31/12/1990 LIBEN Diammonium hydrogenorthophosphate 'diammonium phosphate' (excl. that in pellet or similar forms, or in packages with a gross weight of =< 10 kg) 01/01/1988 31/12/1990 -31053000 01/01/1998 31/12/2500 LIBEN Diammonium hydrogenorthophosphate "diammonium phosphate" (excl. that in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1998 31/12/2500 -31053010 01/01/1991 31/12/1997 LIBEN Diammonium hydrogenorthophosphate "diammonium phosphate", with an iron content <= 0,03% by weight on the dry anhydrous product (excl. that in pellet or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1991 31/12/1997 -31053090 01/01/1991 31/12/1997 LIBEN Diammonium hydrogenorthophosphate "diammonium phosphate", with an iron content > 0,03% by weight on the dry anhydrous product (excl. that in pellet or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1991 31/12/1997 -310540 01/01/1988 31/12/2500 LIBEN Ammonium dihydrogenorthophosphate "monoammonium phosphate", whether or not mixed with diammonium hydrogenorthophosphate "diammonium phosphate" (excl. that in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31054000 01/01/1988 31/12/1990 LIBEN Ammonium dihydrogenorthophosphate 'monoammonium phosphate', whether or not mixed with diammonium hydrogenorthophosphate 'diammonium phosphate' (excl. that in pellet or similar forms, or in packages with a gross weight of =< 10 kg) 01/01/1988 31/12/1990 -31054000 01/01/1998 31/12/2500 LIBEN Ammonium dihydrogenorthophosphate "monoammonium phosphate", whether or not mixed with diammonium hydrogenorthophosphate "diammonium phosphate" (excl. that in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1998 31/12/2500 -31054010 01/01/1991 31/12/1997 LIBEN Ammonium dihydrogenorthophosphate "monoammonium phosphate" and mixture thereof with diammonium hydrogenorthophosphate "diammonium phosphate", with an iron content <= 0,03% by weight on the dry anhydrous product (excl. that in pellet or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1991 31/12/1997 -31054090 01/01/1991 31/12/1997 LIBEN Ammonium dihydrogenorthophosphate "monoammonium phosphate" and mixture thereof with diammonium hydrogenorthophosphate "diammonium phosphate", with an iron content > 0,03% by weight on the dry anhydrous product (excl. that in pellet or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1991 31/12/1997 -310551 01/01/1988 31/12/2500 LIBEN Mineral or chemical fertilisers containing nitrates and phosphates (excl. ammonium dihydrogenorthophosphate "Monoammonium phosphate", diammonium hydrogenorthophosphate "Diammonium phosphate", and those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31055100 01/01/1988 31/12/2500 LIBEN Mineral or chemical fertilisers containing nitrates and phosphates (excl. ammonium dihydrogenorthophosphate "Monoammonium phosphate", diammonium hydrogenorthophosphate "Diammonium phosphate", and those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -310559 01/01/1988 31/12/2500 LIBEN Mineral or chemical fertilisers containing the two fertilising elements nitrogen (excl. nitrate) and phosphorus but not nitrates (excl. ammonium dihydrogenorthophosphate "monoammonium phosphate", diammonium hydrogenorthophosphate "diammonium phosphate" in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31055900 01/01/1988 31/12/2500 LIBEN Mineral or chemical fertilisers containing the two fertilising elements nitrogen (excl. nitrate) and phosphorus but not nitrates (excl. ammonium dihydrogenorthophosphate "monoammonium phosphate", diammonium hydrogenorthophosphate "diammonium phosphate" in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -310560 01/01/1988 31/12/2500 LIBEN Mineral or chemical fertilisers containing the two fertilising elements phosphorus and potassium (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31056000 01/01/2011 31/12/2500 LIBEN Mineral or chemical fertilisers containing the two fertilising elements phosphorus and potassium (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/2011 31/12/2500 -31056010 01/01/1988 31/12/2010 LIBEN Potassic superphosphates (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2010 -31056090 01/01/1988 31/12/2010 LIBEN Mineral or chemical fertilisers containing the two fertilising elements phosphorus and potassium (excl. potassic superphosphates, and those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2010 -310590 01/01/1988 31/12/2500 LIBEN Mineral or chemical fertilisers containing the two fertilising elements nitrogen and potassium or one principal fertilising substance only, incl. mixtures of animal or vegetable fertilisers with chemical or mineral fertilisers (excl. those in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/1988 31/12/2500 -31059010 01/01/1988 31/12/2013 LIBEN Natural potassium sodium nitrate consisting of natural mixtures of sodium nitrate and potassium nitrate, containing <= 44% potassium nitrate and <= 16,3% nitrogen in relation to the weight of the dry product (excl. those in tablets or similar forms, or in 01/01/1988 31/12/2013 -31059020 01/01/2014 31/12/2500 LIBEN Mineral or chemical fertilisers containing the two fertilising elements nitrogen and potassium, or one principal fertilising substance only, incl. mixtures of animal or vegetable fertilisers with chemical or mineral fertilisers, containing > 10% nitrogen by weight (excl. in tablets or similar forms, or in packages with a gross weight of <= 10 kg) 01/01/2014 31/12/2500 -31059080 01/01/2014 31/12/2500 LIBEN Mineral or chemical fertilisers containing the two fertilising elements nitrogen and potassium, or one main fertilising element, incl. mixtures of animal or vegetable fertilisers with chemical or mineral fertilisers, not containing nitrogen or with a nitrogen content, by weight, of <= 10% (excl. in tablets or similar forms or in packages of a gross weight of <= 10 kg) 01/01/2014 31/12/2500 -31059091 01/01/1988 31/12/2013 LIBEN Mineral or chemical fertilisers containing the two fertilising elements nitrogen and potassium, or one principal fertilising substance only, incl. mixtures of animal or vegetable fertilisers with chemical or mineral fertilisers, containing > 10% nitrogen 01/01/1988 31/12/2013 -31059099 01/01/1988 31/12/2013 LIBEN Mineral or chemical fertilisers containing the two fertilising elements nitrogen and potassium, or one main fertilising element, incl. mixtures of animal or vegetable fertilisers with chemical or mineral fertilisers, not containing nitrogen or with a nitr 01/01/1988 31/12/2013 -3105S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3105 and SITC section 5 01/01/1997 31/12/2500 -3105S562 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3105 and SITC group 562 01/01/1997 31/12/2500 -31CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 31 01/01/2002 31/12/2500 -31CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 31 01/01/2002 31/12/2500 -31CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 31 01/01/2002 31/12/2500 -31MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -31MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -31MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -31SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 31 01/01/1988 31/12/2500 -31SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 31 and SITC section 0 01/01/1997 31/12/2001 -31SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 31 and SITC group 000 01/01/1997 31/12/2001 -31SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 31 and SITC section 2 01/01/1997 31/12/2500 -31SSS271 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 31 and SITC group 271 01/01/1997 31/12/2500 -31SSS272 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 31 and SITC group 272 01/01/1997 31/12/2500 -31SSS5 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 31 and SITC section 5 01/01/1990 31/12/2500 -31SSS562 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 31 and SITC group 562 01/01/1990 31/12/2500 -31SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 31 and SITC section 9 01/01/1988 31/12/1996 -31SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 31 and SITC section 9 01/01/1997 31/12/2500 -31SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 31 and SITC group 999 01/01/1988 31/12/1996 -31SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 31 and SITC group 999 01/01/1997 31/12/2500 -32 01/01/1988 31/12/2500 LIBEN TANNING OR DYEING EXTRACTS; TANNINS AND THEIR DERIVATIVES; DYES, PIGMENTS AND OTHER COLOURING MATTER; PAINTS AND VARNISHES; PUTTY AND OTHER MASTICS; INKS 01/01/1988 31/12/2500 -3201 01/01/1988 31/12/2500 LIBEN Tanning extracts of vegetable origin; tannins and their salts, ethers, esters and other derivatives 01/01/1988 31/12/2500 -320110 01/01/1988 31/12/2500 LIBEN Quebracho extract 01/01/1988 31/12/2500 -32011000 01/01/1988 31/12/2500 LIBEN Quebracho extract 01/01/1988 31/12/2500 -320120 01/01/1988 31/12/2500 LIBEN Wattle extract 01/01/1988 31/12/2500 -32012000 01/01/1988 31/12/2500 LIBEN Wattle extract 01/01/1988 31/12/2500 -320130 01/01/1988 31/12/1995 LIBEN Oak or chestnut extract 01/01/1988 31/12/1995 -32013000 01/01/1988 31/12/1995 LIBEN Oak or chestnut extract 01/01/1988 31/12/1995 -320190 01/01/1988 31/12/2500 LIBEN Tanning extracts of vegetable origin (excl. quebracho extract and wattle extract); tannins and their salts, ethers, esters and other derivatives (excl. organic or inorganic compounds of mercury whether or not chemically defined) 01/01/1988 31/12/2500 -32019010 01/01/1988 31/12/1995 LIBEN Sumach extract, valonia extract 01/01/1988 31/12/1995 -32019020 01/01/1996 31/12/2500 LIBEN Sumach, valonea, oak or chestnut extract 01/01/1996 31/12/2500 -32019090 01/01/1988 31/12/2011 LIBEN Tanning extracts of vegetable origin; tannins and their salts, ethers, esters and other derivatives (excl. quebracho extract, wattle extract, oak extract, chestnut extract, sumach extract and valonia extract) 01/01/1988 31/12/2011 -32019090 01/01/2012 31/12/2500 LIBEN Tanning extracts of vegetable origin; tannins and their salts, ethers, esters and other derivatives (excl. quebracho extract, wattle extract, oak extract, chestnut extract, sumach extract and valonia extract) 01/01/2012 31/12/2500 -3202 01/01/1988 31/12/2500 LIBEN Synthetic organic tanning substances; inorganic tanning substances; tanning preparations, whether or not containing natural tanning substances; enzymatic preparations for pre-tanning 01/01/1988 31/12/2500 -320210 01/01/1988 31/12/2500 LIBEN Synthetic organic tanning substances 01/01/1988 31/12/2500 -32021000 01/01/1988 31/12/2500 LIBEN Synthetic organic tanning substances 01/01/1988 31/12/2500 -320290 01/01/1988 31/12/2500 LIBEN Inorganic tanning substances; tanning preparations, whether or not containing natural tanning substances; enzymatic preparations for pre-tanning 01/01/1988 31/12/2500 -32029000 01/01/1988 31/12/2500 LIBEN Inorganic tanning substances; tanning preparations, whether or not containing natural tanning substances; enzymatic preparations for pre-tanning 01/01/1988 31/12/2500 -3202S5 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 3202 and SITC section 5 01/01/1998 31/12/2500 -3202S532 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 3202 and SITC group 532 01/01/1998 31/12/2500 -3203 01/01/1988 31/12/2500 LIBEN Colouring matter of vegetable or animal origin, incl. dye extracts (excl. animal black), whether or not chemically defined; preparations based on colouring matter of vegetable or animal origin of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -320300 01/01/1988 31/12/2500 LIBEN Colouring matter of vegetable or animal origin, incl. dye extracts (excl. animal black), whether or not chemically defined; preparations based on colouring matter of vegetable or animal origin of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -32030010 01/01/2004 31/12/2500 LIBEN Dyes of vegetable origin, incl. dye extracts, whether or not chemically defined; preparations based on dyes of vegetable origin of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/2004 31/12/2500 -32030011 01/01/1988 31/12/2003 LIBEN Black cutch "Acacia catechu" 01/01/1988 31/12/2003 -32030019 01/01/1988 31/12/2003 LIBEN Dyes of vegetable origin, incl. dye extracts, whether or not chemically defined; preparations based on dyes of vegetable origin of a kind used to dye fabrics or produce colorant preparations (excl. black cutch and preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2003 -32030090 01/01/1988 31/12/2500 LIBEN Dyes of animal origin, incl. dye extracts but excl. animal black, whether or not chemically defined; preparations based on dyes of animal origin of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -3204 01/01/1988 31/12/2500 LIBEN Synthetic organic colouring matter, whether or not chemically defined; preparations based on synthetic organic colouring matter of a kind used to dye fabrics or produce colorant preparations; synthetic organic products of a kind used as fluorescent brightening agents or as luminophores, whether or not chemically defined (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -320411 01/01/1988 31/12/2500 LIBEN Synthetic organic disperse dyes; preparations based on synthetic organic disperse dyes of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -32041100 01/01/1988 31/12/2500 LIBEN Synthetic organic disperse dyes; preparations based on synthetic organic disperse dyes of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -320412 01/01/1988 31/12/2500 LIBEN Synthetic organic acid dyes, whether or not metallised, and synthetic organic mordant dyes; preparations based on synthetic organic acid or mordant dyes of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -32041200 01/01/1988 31/12/2500 LIBEN Synthetic organic acid dyes, whether or not metallised, and synthetic organic mordant dyes; preparations based on synthetic organic acid or mordant dyes of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -320413 01/01/1988 31/12/2500 LIBEN Basic synthetic organic dyes; preparations based on basic synthetic organic dyes of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -32041300 01/01/1988 31/12/2500 LIBEN Basic synthetic organic dyes; preparations based on basic synthetic organic dyes of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -320414 01/01/1988 31/12/2500 LIBEN Direct synthetic organic dyes; preparations based on direct synthetic organic dyes of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -32041400 01/01/1988 31/12/2500 LIBEN Direct synthetic organic dyes; preparations based on direct synthetic organic dyes of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -320415 01/01/1988 31/12/2500 LIBEN Synthetic organic vat dyes, incl. those usable in that state as pigments; preparations based on synthetic organic vat dyes of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -32041500 01/01/1988 31/12/2500 LIBEN Synthetic organic vat dyes, incl. those usable in that state as pigments; preparations based on synthetic organic vat dyes of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -320416 01/01/1988 31/12/2500 LIBEN Synthetic organic reactive dyes; preparations based on synthetic organic reactive dyes of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -32041600 01/01/1988 31/12/2500 LIBEN Synthetic organic reactive dyes; preparations based on synthetic organic reactive dyes of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -320417 01/01/1988 31/12/2500 LIBEN Synthetic organic pigments; preparations based on synthetic organic pigments of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -32041700 01/01/1988 31/12/2500 LIBEN Synthetic organic pigments; preparations based on synthetic organic pigments of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -320419 01/01/1988 31/12/2500 LIBEN Synthetic organic colouring matter (excl. disperse dyes, acid dyes, mordant dyes, basic dyes, direct dyes, vat dyes and reactive dyes and organic pigments); preparations of the kind used for colouring any materials or for the production of prepared colours, based thereon (excl. preparations in heading 3207, 3208, 3209, 3210, 3212, 3213 and 3215); mixtures of colouring matter in subheading 3204.11 to 3204.19 01/01/1988 31/12/2500 -32041900 01/01/1988 31/12/2500 LIBEN Synthetic organic colouring matter (excl. disperse dyes, acid dyes, mordant dyes, basic dyes, direct dyes, vat dyes and reactive dyes and organic pigments); preparations of the kind used for colouring any materials or for the production of prepared colours, based thereon (excl. preparations in heading 3207, 3208, 3209, 3210, 3212, 3213 and 3215); mixtures of colouring matter in subheading 3204.11 to 3204.19 01/01/1988 31/12/2500 -320420 01/01/1988 31/12/2500 LIBEN Synthetic organic products of a kind used as fluorescent brightening agents, whether or not chemically defined 01/01/1988 31/12/2500 -32042000 01/01/1988 31/12/2500 LIBEN Synthetic organic products of a kind used as fluorescent brightening agents, whether or not chemically defined 01/01/1988 31/12/2500 -320490 01/01/1988 31/12/2500 LIBEN Synthetic organic products of a kind used as luminophores, whether or not chemically defined 01/01/1988 31/12/2500 -32049000 01/01/1988 31/12/2500 LIBEN Synthetic organic products of a kind used as luminophores, whether or not chemically defined 01/01/1988 31/12/2500 -3204S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3204 and SITC section 5 01/01/1997 31/12/2500 -3204S531 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3204 and SITC group 531 01/01/1997 31/12/2500 -3205 01/01/1988 31/12/2500 LIBEN Colour lakes (other than Chinese or Japanese lacquer and paints); preparations based on colour lakes of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -320500 01/01/1988 31/12/2500 LIBEN Colour lakes (other than Chinese or Japanese lacquer and paints); preparations based on colour lakes of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -32050000 01/01/1988 31/12/2500 LIBEN Colour lakes (other than Chinese or Japanese lacquer and paints); preparations based on colour lakes of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -3206 01/01/1988 31/12/2500 LIBEN Inorganic or mineral colouring matter, n.e.s.; preparations based on inorganic or mineral colouring matter of a kind used for colouring any material or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215); inorganic products of a kind used as luminophores, whether or not chemically defined 01/01/1988 31/12/2500 -320610 01/01/1988 31/12/1995 LIBEN Pigments and preparations based on titanium dioxide of a kind used to dye fabrics or produce colorant preparations (excl. preparations of headings 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/1995 -32061010 01/01/1988 31/12/1995 LIBEN Pigments and preparations based on titanium dioxide of a kind used to dye fabrics or produce colorant preparations, containing >= 80% titanium dioxide by weight (excl. preparations of headings 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/1995 -32061090 01/01/1988 31/12/1995 LIBEN Pigments and preparations based on titanium dioxide of a kind used to dye fabrics or produce colorant preparations, containing < 80% titanium dioxide by weight (excl. preparations of headings 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/1995 -320611 01/01/1996 31/12/2500 LIBEN Pigments and preparations based on titanium dioxide of a kind used for colouring any material or produce colorant preparations, containing >= 80% by weight of titanium dioxide calculated on the dry matter (excl. preparations of heading 3207, 3208, 3209, 3210, 3212, 3213 and 3215) 01/01/1996 31/12/2500 -32061100 01/01/1996 31/12/2500 LIBEN Pigments and preparations based on titanium dioxide of a kind used for colouring any material or produce colorant preparations, containing >= 80% by weight of titanium dioxide calculated on the dry matter (excl. preparations of heading 3207, 3208, 3209, 3210, 3212, 3213 and 3215) 01/01/1996 31/12/2500 -320619 01/01/1996 31/12/2500 LIBEN Pigments and preparations based on titanium dioxide of a kind used for colouring any material or produce colorant preparations, containing < 80% by weight of titanium dioxide calculated on the dry matter (excl. preparations of heading 3207, 3208, 3209, 3210, 3212, 3213 and 3215) 01/01/1996 31/12/2500 -32061900 01/01/1996 31/12/2500 LIBEN Pigments and preparations based on titanium dioxide of a kind used for colouring any material or produce colorant preparations, containing < 80% by weight of titanium dioxide calculated on the dry matter (excl. preparations of heading 3207, 3208, 3209, 3210, 3212, 3213 and 3215) 01/01/1996 31/12/2500 -320620 01/01/1988 31/12/2500 LIBEN Pigments and preparations of a kind used for colouring any material or used as ingredients in the manufacture of colouring preparations based on chromium compounds (excl. preparations of headings 3207, 3208, 3209, 3210, 3212, 3213 and 3215) 01/01/1988 31/12/2500 -32062000 01/01/1993 31/12/2500 LIBEN Pigments and preparations of a kind used for colouring any material or used as ingredients in the manufacture of colouring preparations based on chromium compounds (excl. preparations of headings 3207, 3208, 3209, 3210, 3212, 3213 and 3215) 01/01/1993 31/12/2500 -32062010 01/01/1988 31/12/1992 LIBEN Pigments and preparations based on chromium compounds of a kind used to dye fabrics or produce colorant preparations, containing >= 85 % lead chromate by weight (excl. preparations of headings 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/1992 -32062090 01/01/1988 31/12/1992 LIBEN Pigments and preparations based on chromium compounds of a kind used to dye fabrics or produce colorant preparations, containing < 85 % lead chromate by weight (excl. preparations of headings 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/1992 -320630 01/01/1988 31/12/2006 LIBEN Pigments and preparations based on cadmium compounds of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2006 -32063000 01/01/1988 31/12/2006 LIBEN Pigments and preparations based on cadmium compounds of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2006 -320641 01/01/1988 31/12/2500 LIBEN Ultramarine and preparations based thereon of a kind used for colouring any material or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -32064100 01/01/1988 31/12/2500 LIBEN Ultramarine and preparations based thereon of a kind used for colouring any material or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -320642 01/01/1988 31/12/2500 LIBEN Lithopone and other pigments and preparations based on zinc sulphide of a kind used for colouring any material or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -32064200 01/01/1988 31/12/2500 LIBEN Lithopone and other pigments and preparations based on zinc sulphide of a kind used for colouring any material or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2500 -320643 01/01/1988 31/12/2006 LIBEN Pigments and preparations based on hexacyanoferrates "Ferrocyanides and ferricyanides", of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2006 -32064300 01/01/1988 31/12/2006 LIBEN Pigments and preparations based on hexacyanoferrates "Ferrocyanides and ferricyanides", of a kind used to dye fabrics or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/1988 31/12/2006 -320649 01/01/1988 31/12/2500 LIBEN Inorganic or mineral colouring matter, n.e.s.; preparations based on inorganic or mineral colouring matter of a kind used for colouring any material or produce colorant preparations, n.e.s. (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215 and inorganic products of a kind used as liminophores) 01/01/1988 31/12/2500 -32064910 01/01/1988 31/12/2500 LIBEN Magnetite, fine-ground 01/01/1988 31/12/2500 -32064930 01/01/2007 31/12/2011 LIBEN Pigments and preparations based on cadmium compounds of a kind used for colouring any material or produce colorant preparations (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215) 01/01/2007 31/12/2011 -32064970 01/01/2012 31/12/2500 LIBEN Inorganic or mineral colouring matter, n.e.s.; preparations based on inorganic or mineral colouring matter of a kind used for colouring any material or produce colorant preparations, n.e.s. (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215, inorganic products of a kind used as liminophores and magnetite) 01/01/2012 31/12/2500 -32064980 01/01/2007 31/12/2011 LIBEN Inorganic or mineral colouring matter, n.e.s.; preparations based on inorganic or mineral colouring matter of a kind used for colouring any material or produce colorant preparations, n.e.s. (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215, inorganic products of a kind used as liminophores and magnetite) 01/01/2007 31/12/2011 -32064990 01/01/1988 31/12/2006 LIBEN Inorganic or mineral colouring matter, n.e.s.; preparations based on inorganic or mineral colouring matter of a kind used to dye fabrics or produce colorant preparations, n.e.s. (excl. preparations of heading 3207, 3208, 3209, 3210, 3213 and 3215, inorganic products of a kind used as liminophores and magnetite) 01/01/1988 31/12/2006 -320650 01/01/1988 31/12/2500 LIBEN Inorganic products of a kind used as luminophores, whether or not chemically defined 01/01/1988 31/12/2500 -32065000 01/01/1988 31/12/2500 LIBEN Inorganic products of a kind used as luminophores, whether or not chemically defined 01/01/1988 31/12/2500 -3206S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3206 and SITC section 5 01/01/1997 31/12/2500 -3206S533 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3206 and SITC group 533 01/01/1997 31/12/2500 -3207 01/01/1988 31/12/2500 LIBEN Prepared pigments, prepared opacifiers and prepared colours, vitrifiable enamels and glazes, engobes, liquid lustres and similar preparations of a kind used in the ceramic, enamelling or glass industry; glass frit and other glass in the form of powder, granules or flakes 01/01/1988 31/12/2500 -320710 01/01/1988 31/12/2500 LIBEN Prepared pigments, prepared opacifiers, prepared colours and similar preparations of a kind used in the ceramic, enamelling or glass industry 01/01/1988 31/12/2500 -32071000 01/01/1993 31/12/2500 LIBEN Prepared pigments, prepared opacifiers, prepared colours and similar preparations of a kind used in the ceramic, enamelling or glass industry 01/01/1993 31/12/2500 -32071010 01/01/1988 31/12/1992 LIBEN Prepared pigments, prepared opacifiers, prepared colours and similar preparations containing precious metals or compounds thereof, of a kind used in the ceramic, enamelling or glass industry 01/01/1988 31/12/1992 -32071090 01/01/1988 31/12/1992 LIBEN Prepared pigments, prepared opacifiers, prepared colours and similar preparations, of the kind used in the ceramic, enamelling or glass industry (excl. those containing precious metals or compounds thereof) 01/01/1988 31/12/1992 -320720 01/01/1988 31/12/2500 LIBEN Vitrifiable enamels and glazes, engobes "slips" and similar preparations of the kind used in the ceramic, enamelling or glass industry 01/01/1988 31/12/2500 -32072010 01/01/1988 31/12/2500 LIBEN Engobes "slips" 01/01/1988 31/12/2500 -32072090 01/01/1988 31/12/2500 LIBEN Vitrifiable enamels and glazes and similar preparations (excl. englobes) 01/01/1988 31/12/2500 -320730 01/01/1988 31/12/2500 LIBEN Liquid lustres and similar preparations of the kind used in the ceramic, enamelling or glass industry 01/01/1988 31/12/2500 -32073000 01/01/1988 31/12/2500 LIBEN Liquid lustres and similar preparations of the kind used in the ceramic, enamelling or glass industry 01/01/1988 31/12/2500 -320740 01/01/1988 31/12/2500 LIBEN Glass frit and other glass in the form of powder, granules or flakes 01/01/1988 31/12/2500 -32074010 01/01/1988 31/12/2009 LIBEN Enamel glass in the form of powder, granules or flakes 01/01/1988 31/12/2009 -32074020 01/01/1997 31/12/2009 LIBEN Glass in the form of flakes of a length of >= 0,1 mm but <= 3,5 mm and of a thickness of >= 2 micrometres but <= 5 micrometres (excl. enamel glass) 01/01/1997 31/12/2009 -32074030 01/01/1997 31/12/2009 LIBEN Glass in the form of powder or granules, containing by weight >= 99% of silicon dioxide (excl. enamel glass) 01/01/1997 31/12/2009 -32074040 01/01/2010 31/12/2500 LIBEN Glass in the form of flakes of a length of >= 0,1 mm but <= 3,5 mm and of a thickness of >= 2 micrometres but <= 5 micrometres and glass in the form of powder or granules, containing by weight >= 99% of silicon dioxide (excl. enamel glass) 01/01/2010 31/12/2500 -32074080 01/01/1997 31/12/2009 LIBEN Glass frit and other glass in the form of powder, granules or flakes (excl. enamel glass, glass in the form of flakes of a length of >= 0,1 mm but <= 3,5 mm and of a thickness of >= 2 but <= 5 micrometres and glass in the form of powder or granules containing by weight >= 99% of silicon dioxide) 01/01/1997 31/12/2009 -32074085 01/01/2010 31/12/2500 LIBEN Glass frit and other glass in the form of powder, granules or flakes (excl. glass in the form of flakes of a length of >= 0,1 mm but <= 3,5 mm and of a thickness of >= 2 but <= 5 micrometres and glass in the form of powder or granules containing by weight >= 99% of silicon dioxide) 01/01/2010 31/12/2500 -32074090 01/01/1988 31/12/1996 LIBEN Glass frit and other glass in the form of powder, granules or flakes (excl. enamel glass) 01/01/1988 31/12/1996 -3208 01/01/1988 31/12/2500 LIBEN Paints and varnishes, incl. enamels and lacquers, based on synthetic polymers or chemically modified natural polymers, dispersed or dissolved in a non-aqueous medium; solutions of products of headings 3901 to 3913 in volatile organic solvents, containing > 50% solvent by weight (excl. solutions of collodion) 01/01/1988 31/12/2500 -320810 01/01/1988 31/12/2500 LIBEN Paints and varnishes, incl. enamels and lacquers, based on polyesters, dispersed or dissolved in a non-aqueous medium; solutions based on polyesters in volatile organic solvents, containing > 50% solvent by weight 01/01/1988 31/12/2500 -32081010 01/01/1988 31/12/2500 LIBEN Polyester-based solutions in volatile organic solvents, containing > 50% solvent by weight 01/01/1988 31/12/2500 -32081090 01/01/1988 31/12/2500 LIBEN Paints and varnishes, incl. enamels and lacquers, based on polyesters, dispersed or dissolved in a non-aqueous medium 01/01/1988 31/12/2500 -320820 01/01/1988 31/12/2500 LIBEN Paints and varnishes, incl. enamels and lacquers, based on acrylic or vinyl polymers, dispersed or dissolved in a non-aqueous medium; solutions based on acrylic or vinyl polymers in volatile organic solvents, containing > 50% solvent by weight 01/01/1988 31/12/2500 -32082010 01/01/1988 31/12/2500 LIBEN Solutions based on acrylic or vinyl polymers in volatile organic solvents, containing > 50% solvent by weight 01/01/1988 31/12/2500 -32082090 01/01/1988 31/12/2500 LIBEN Paints and varnishes, incl. enamels and lacquers, based on acrylic or vinyl polymers, dispersed or dissolved in a non-aqueous medium 01/01/1988 31/12/2500 -320890 01/01/1988 31/12/2500 LIBEN Paints and varnishes based, incl. enamels and lacquers, on synthetic polymers or chemically modified natural polymers, dispersed or dissolved in a non-aqueous medium, and solutions of products of headings 3901 to 3913 in volatile organic solvents, containing > 50% solvent by weight (excl. those based on polyesters and acrylic or vinyl polymers and solutions of collodion) 01/01/1988 31/12/2500 -32089010 01/01/1988 31/12/1996 LIBEN Solutions of products of subheadings 3901 to 3913 in volatile organic solvents, containing > 50% solvent by weight (excl. polyesters, acrylic or vinyl polymers and collodion) 01/01/1988 31/12/1996 -32089011 01/01/1997 31/12/2500 LIBEN Polyurethane of 2,2'-"tert-butylimino"diethanol and 4,4'-methylenedicyclohexyl diisocyanate, in the form of a solution in N,N-dimethylacetamide, containing by weight >= 48%, but < 50% of polymer 01/01/1997 31/12/2500 -32089013 01/01/1997 31/12/2500 LIBEN Copolymer of p-cresol and divinylbenzene, in the form of a solution in N,N-dimethylacetamide, containing by weight >= 48%, but < 50% of polymer 01/01/1997 31/12/2500 -32089019 01/01/1997 31/12/2500 LIBEN Solutions of products of headings 3901 to 3913 in volatile organic solvents, containing > 50% solvent by weight (excl. polyesters, acrylic or vinyl polymers and collodion, and polyurethane of 2,2'-"tert-butylimino"diethanol and 4,4'-methylenedicyclohexyl diisocyanate and copolymer of p-cresol and divinylbenzene, both in the form of a solution in N,N-dimethylacetamide, containing by weight >= 48% of polymer) 01/01/1997 31/12/2500 -32089091 01/01/1988 31/12/2500 LIBEN Paints and varnishes, incl. enamels and lacquers, based on synthetic polymers, dispersed or dissolved in a non-aqueous medium (excl. those based on polyesters and acrylic or vinyl polymers) 01/01/1988 31/12/2500 -32089099 01/01/1988 31/12/2500 LIBEN Paints and varnishes, incl. enamels and lacquers, based on chemically modified natural polymers, dispersed or dissolved in a non-aqueous medium 01/01/1988 31/12/2500 -3209 01/01/1988 31/12/2500 LIBEN Paints and varnishes, incl. enamels and lacquers, based on synthetic polymers or chemically modified natural polymers, dispersed or dissolved in an aqueous medium 01/01/1988 31/12/2500 -320910 01/01/1988 31/12/2500 LIBEN Paints and varnishes, incl. enamels and lacquers, based on acrylic or vinyl polymers, dispersed or dissolved in an aqueous medium 01/01/1988 31/12/2500 -32091000 01/01/1988 31/12/2500 LIBEN Paints and varnishes, incl. enamels and lacquers, based on acrylic or vinyl polymers, dispersed or dissolved in an aqueous medium 01/01/1988 31/12/2500 -320990 01/01/1988 31/12/2500 LIBEN Paints and varnishes, incl. enamels and lacquers, based on synthetic or chemically modified natural polymers, dispersed or dissolved in an aqueous medium (excl. those based on acrylic or vinyl polymers) 01/01/1988 31/12/2500 -32099000 01/01/1988 31/12/2500 LIBEN Paints and varnishes, incl. enamels and lacquers, based on synthetic or chemically modified natural polymers, dispersed or dissolved in an aqueous medium (excl. those based on acrylic or vinyl polymers) 01/01/1988 31/12/2500 -3210 01/01/1988 31/12/2500 LIBEN Paints and varnishes, incl. enamels, lacquers and distempers (excl. those based on synthetic polymers or chemically modified natural polymers that are dispersed or dissolved in a medium); prepared water pigments of a kind used for finishing leather 01/01/1988 31/12/2500 -321000 01/01/1988 31/12/2500 LIBEN Paints and varnishes, incl. enamels, lacquers and distempers (excl. those based on synthetic polymers or chemically modified natural polymers that are dispersed or dissolved in a medium); prepared water pigments of a kind used for finishing leather 01/01/1988 31/12/2500 -32100010 01/01/1988 31/12/2500 LIBEN Oil paints and varnishes, incl. enamels and lacquers 01/01/1988 31/12/2500 -32100090 01/01/1988 31/12/2500 LIBEN Paints and varnishes, incl. enamels, lacquers and distempers (excl. those based on synthetic polymers or chemically modified natural polymers that are dispersed or dissolved in a medium, and oil paints and varnishes); prepared water pigments of a kind used for finishing leather 01/01/1988 31/12/2500 -3211 01/01/1988 31/12/2500 LIBEN Prepared driers 01/01/1988 31/12/2500 -321100 01/01/1988 31/12/2500 LIBEN Prepared driers 01/01/1988 31/12/2500 -32110000 01/01/1988 31/12/2500 LIBEN Prepared driers 01/01/1988 31/12/2500 -3212 01/01/1988 31/12/2500 LIBEN Pigments, incl. metallic powders and flakes, dispersed in non-aqueous media, in liquid or paste form, of a kind used in the manufacture of paints; stamping foils of a kind used in the printing of book bindings or hatband leather; colorants and other colouring matter, n.e.s. put up for retail sale 01/01/1988 31/12/2500 -321210 01/01/1988 31/12/2500 LIBEN Stamping foils of a kind used in the printing of book bindings or hatband leather 01/01/1988 31/12/2500 -32121000 01/01/2010 31/12/2500 LIBEN Stamping foils of a kind used in the printing of book bindings or hatband leather 01/01/2010 31/12/2500 -32121010 01/01/1988 31/12/2009 LIBEN Stamping foils of a kind used in the printing of book bindings or hatband leather, based on base metals 01/01/1988 31/12/2009 -32121090 01/01/1988 31/12/2009 LIBEN Stamping foils of a kind used in the printing of book bindings or hatband leather (excl. those based on base metals) 01/01/1988 31/12/2009 -321290 01/01/1988 31/12/2500 LIBEN Pigments, incl. metallic powders and flakes, dispersed in non-aqueous media, in liquid or paste form, of a kind used in the manufacture of paints; colorants and other colouring matter, n.e.s. put up for retail sale 01/01/1988 31/12/2500 -32129000 01/01/2010 31/12/2500 LIBEN Pigments, incl. metallic powders and flakes, dispersed in non-aqueous media, in liquid or paste form, of a kind used in the manufacture of paints; colorants and other colouring matter, n.e.s. put up for retail sale 01/01/2010 31/12/2500 -32129010 01/01/1988 31/12/2003 LIBEN Pearl essence 01/01/1988 31/12/2003 -32129031 01/01/1988 31/12/2009 LIBEN Pigments, incl. metallic powders and flakes, based on aluminium powder, dispersed in non-aqueous media, in liquid or paste form, of a kind used in the manufacture of paints 01/01/1988 31/12/2009 -32129038 01/01/2004 31/12/2009 LIBEN Pigments, incl. metallic powders and flakes, dispersed in non-aqueous media, in liquid or paste form, of a kind used in the manufacture of paints (excl. those based on aluminium powder) 01/01/2004 31/12/2009 -32129039 01/01/1988 31/12/2003 LIBEN Pigments, incl. metallic powders and flakes, dispersed in non-aqueous media, in liquid or paste form, of a kind used in the manufacture of paints (excl. those based on aluminium powder and pearl essence) 01/01/1988 31/12/2003 -32129090 01/01/1988 31/12/2009 LIBEN Dyes and other colouring matter, n.e.s., put up in forms or packings for retail sale 01/01/1988 31/12/2009 -3213 01/01/1988 31/12/2500 LIBEN Artist's, student's or signboard painter's colours, modifying tints, amusement colours and the like, in tablets, tubes, jars, bottles, pans or similar packages 01/01/1988 31/12/2500 -321310 01/01/1988 31/12/2500 LIBEN Sets of artist's, student's or signboard painter's colours, modifying tints, amusement colours and the like, in tablets, tubes, jars, bottles, pans or similar packages 01/01/1988 31/12/2500 -32131000 01/01/1988 31/12/2500 LIBEN Sets of artist's, student's or signboard painter's colours, modifying tints, amusement colours and the like, in tablets, tubes, jars, bottles, pans or similar packages 01/01/1988 31/12/2500 -321390 01/01/1988 31/12/2500 LIBEN Artist's, student's or signboard painter's colours, modifying tints, amusement colours and the like, in tablets, tubes, jars, bottles, pans or similar packages (excl. those in sets) 01/01/1988 31/12/2500 -32139000 01/01/1988 31/12/2500 LIBEN Artist's, student's or signboard painter's colours, modifying tints, amusement colours and the like, in tablets, tubes, jars, bottles, pans or similar packages (excl. those in sets) 01/01/1988 31/12/2500 -3214 01/01/1988 31/12/2500 LIBEN Glaziers' putty, grafting putty, resin cements, caulking compounds and other mastics; painters' fillings; non-refractory surfacing preparations for façades, indoor walls, floors, ceilings or the like 01/01/1988 31/12/2500 -321410 01/01/1988 31/12/2500 LIBEN Glaziers' putty, grafting putty, resin cements, caulking compounds and other mastics; painters' fillings 01/01/1988 31/12/2500 -32141010 01/01/1988 31/12/2500 LIBEN Glaziers' putty, grafting putty, resin cements, caulking compounds and other mastics 01/01/1988 31/12/2500 -32141090 01/01/1988 31/12/2500 LIBEN Painter's fillings 01/01/1988 31/12/2500 -321490 01/01/1988 31/12/2500 LIBEN Non-refractory surfacing preparations for facades, inside walls, floors, ceilings and the like 01/01/1988 31/12/2500 -32149000 01/01/1988 31/12/2500 LIBEN Non-refractory surfacing preparations for facades, inside walls, floors, ceilings and the like 01/01/1988 31/12/2500 -3215 01/01/1988 31/12/2500 LIBEN Printing ink, writing or drawing ink and other inks, whether or not concentrated or solid 01/01/1988 31/12/2500 -321511 01/01/1988 31/12/2500 LIBEN Black printing ink, whether or not concentrated or solid 01/01/1988 31/12/2500 -32151100 01/01/1988 31/12/2016 LIBEN Black printing ink, whether or not concentrated or solid 01/01/1988 31/12/2016 -32151100 01/01/2018 31/12/2500 LIBEN Black printing ink, whether or not concentrated or solid 01/01/2018 31/12/2500 -32151110 01/01/2017 31/12/2017 LIBEN Photographic film "incl. instant print film", in rolls, sensitised, unexposed, without perforations, width <= 105 mm, for colour photography "polychrome" (excl. that of paper, paperboard or textiles and negative film of a width of >= 75 mm but <= 105 mm and of a length of >= 100 m for the manufacture of instant-picture film-packs) 01/01/2017 31/12/2017 -32151190 01/01/2017 31/12/2017 LIBEN Photographic film "incl. instant print film", in rolls, sensitised, unexposed, without perforations, width <= 105 mm, with silver halide emulsion for monochrome photography (excl. that of paper, paperboard or textiles and X-ray film) 01/01/2017 31/12/2017 -321519 01/01/1988 31/12/2500 LIBEN Printing ink, whether or not concentrated or solid (excl. black ink) 01/01/1988 31/12/2500 -32151900 01/01/1988 31/12/2016 LIBEN Printing ink, whether or not concentrated or solid (excl. black ink) 01/01/1988 31/12/2016 -32151900 01/01/2018 31/12/2500 LIBEN Printing ink, whether or not concentrated or solid (excl. black ink) 01/01/2018 31/12/2500 -32151910 01/01/2017 31/12/2017 LIBEN Photographic film "incl. instant print film", sensitised, in rolls, unexposed, without perforations, width <= 35 mm, with silver halide emulsion for monochrome photography (excl. that of paper, paperboard or textiles, X-ray film, microfilm and film for the graphic arts) 01/01/2017 31/12/2017 -32151990 01/01/2017 31/12/2017 LIBEN Photographic film "incl. instant print film", sensitised, in rolls, unexposed, without perforations, of a width of > 35 mm to 105 mm and with silver halide emulsion other than for monochrome photography (excl. film made of paper, paperboard or textiles and films for X-ray) 01/01/2017 31/12/2017 -321590 01/01/1988 31/12/2500 LIBEN Ink, whether or not concentrated or solid (excl. printing ink) 01/01/1988 31/12/2500 -32159000 01/01/2010 31/12/2016 LIBEN Ink, whether or not concentrated or solid (excl. printing ink) 01/01/2010 31/12/2016 -32159010 01/01/1988 31/12/2009 LIBEN Writing or drawing ink, whether or not concentrated or solid 01/01/1988 31/12/2009 -32159020 01/01/2017 31/12/2500 LIBEN Ink cartridges for printers/copiers, without an integrated print head, incorporating mechanical or electrical components, and solid ink in engineered shapes for printers/copiers 01/01/2017 31/12/2500 -32159030 01/01/1988 31/12/1988 LIBEN Copying inks, hectographic inks, inks for duplicating machines, ink pads and ribbons, whether or not concentrated or solid 01/01/1988 31/12/1988 -32159070 01/01/2017 31/12/2500 LIBEN Ink, whether or not concentrated or solid (excl. printing ink, printer/copier ink cartridges incorporating mechanical or electrical components, and solid ink in engineered shapes for printers/copiers) 01/01/2017 31/12/2500 -32159080 01/01/1989 31/12/2009 LIBEN Ink, whether or not concentrated or solid (excl. printing, writing or drawing ink) 01/01/1989 31/12/2009 -32159090 01/01/1988 31/12/1988 LIBEN Inks, whether or not concentrated or solid (excl. writing or drawing inks, copying inks, hectographic inks, inks for duplicating machines, ink pads and ribbons) 01/01/1988 31/12/1988 -32CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 32 01/01/2002 31/12/2500 -32CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 32 01/01/2002 31/12/2500 -32CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 32 01/01/2002 31/12/2500 -32MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -32MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -32MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -32SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 32 01/01/1988 31/12/2500 -32SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 32 and SITC section 0 01/01/1997 31/12/2001 -32SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 32 and SITC group 000 01/01/1997 31/12/2001 -32SSS5 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 32 and SITC section 5 01/01/1988 31/12/2500 -32SSS531 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 32 and SITC group 531 01/01/1988 31/12/2500 -32SSS532 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 32 and SITC group 532 01/01/1997 31/12/2500 -32SSS533 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 32 and SITC group 533 01/01/1990 31/12/2500 -32SSS6 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 32 and SITC section 6 01/01/1988 31/12/2500 -32SSS601 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 32 and SITC group 601 01/01/1988 31/12/2500 -32SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 32 and SITC section 8 01/01/1997 31/12/2500 -32SSS895 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 32 and SITC group 895 01/01/1997 31/12/2500 -32SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 32 and SITC section 9 01/01/1988 31/12/1996 -32SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 32 and SITC section 9 01/01/1997 31/12/2500 -32SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 32 and SITC group 999 01/01/1988 31/12/1996 -32SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 32 and SITC group 999 01/01/1997 31/12/2500 -32VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 32 for the assembly of motor vehicles 01/01/1988 31/12/2500 -32VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 32 for the assembly of motor vehicles 01/01/1988 31/12/2500 -32VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 32 for the assembly of motor vehicles 01/01/1988 31/12/2500 -33 01/01/1988 31/12/2500 LIBEN ESSENTIAL OILS AND RESINOIDS; PERFUMERY, COSMETIC OR TOILET PREPARATIONS 01/01/1988 31/12/2500 -3301 01/01/1988 31/12/2500 LIBEN Essential oils, whether or not terpeneless, incl. concretes and absolutes; resinoids; extracted oleoresins; concentrates of essential oils in fats, fixed oils, waxes or the like, obtained by enfleurage or maceration; terpenic by-products of the deterpenation of essential oils; aqueous distillates and aqueous solutions of essential oils 01/01/1988 31/12/2500 -330111 01/01/1988 31/12/2006 LIBEN Oils of bergamot, whether or not terpeneless, incl. concretes and absolutes 01/01/1988 31/12/2006 -33011110 01/01/1988 31/12/2006 LIBEN Terpenic oils of bergamot, incl. concretes and absolutes 01/01/1988 31/12/2006 -33011190 01/01/1988 31/12/2006 LIBEN Terpeneless oils of bergamot, incl. concretes and absolutes 01/01/1988 31/12/2006 -330112 01/01/1988 31/12/2500 LIBEN Oils of sweet and bitter orange, whether or not terpeneless, incl. concretes and absolutes (excl. orange-flower oil) 01/01/1988 31/12/2500 -33011210 01/01/1988 31/12/2500 LIBEN Terpenic oils of sweet and bitter orange, incl. concretes and absolutes (excl. orange-flower oil) 01/01/1988 31/12/2500 -33011290 01/01/1988 31/12/2500 LIBEN Terpeneless oils of sweet and bitter orange, incl. concretes and absolutes (excl. orange-flower oil) 01/01/1988 31/12/2500 -330113 01/01/1988 31/12/2500 LIBEN Oils of lemon, whether or not terpeneless, incl. concretes and absolutes 01/01/1988 31/12/2500 -33011310 01/01/1988 31/12/2500 LIBEN Terpenic essential oils of lemon, incl. concretes and absolutes 01/01/1988 31/12/2500 -33011390 01/01/1988 31/12/2500 LIBEN Terpeneless oils of lemon, incl. concretes and absolutes 01/01/1988 31/12/2500 -330114 01/01/1988 31/12/2006 LIBEN Oils of lime, whether or not terpeneless, incl. concretes and absolutes 01/01/1988 31/12/2006 -33011410 01/01/1988 31/12/2006 LIBEN Terpenic oils of lime, incl. concretes and absolutes 01/01/1988 31/12/2006 -33011490 01/01/1988 31/12/2006 LIBEN Terpeneless oils of lime, incl. concretes and absolutes 01/01/1988 31/12/2006 -330119 01/01/1988 31/12/2500 LIBEN Essential oils of citrus fruit, whether or not terpeneless, incl. concretes and absolutes (excl. those of sweet and bitter orange and lemon) 01/01/1988 31/12/2500 -33011910 01/01/1988 31/12/2006 LIBEN Terpenic essential oils of citrus fruit, incl. concretes and absolutes (excl. those of bergamot, seet and bitter orange, lemon and lime) 01/01/1988 31/12/2006 -33011920 01/01/2007 31/12/2500 LIBEN Terpenic essential oils of citrus fruit, incl. concretes and absolutes (excl. those of seet and bitter orange and lemon) 01/01/2007 31/12/2500 -33011980 01/01/2007 31/12/2500 LIBEN Terpeneless essential oils of citrus fruit, incl. concretes and absolutes (excl. those of sweet and bitter orange and lemon) 01/01/2007 31/12/2500 -33011990 01/01/1988 31/12/2006 LIBEN Terpeneless essential oils of citrus fruit, incl. concretes and absolutes (excl. those of bergamot, sweet and bitter orange, lemon and lime) 01/01/1988 31/12/2006 -330121 01/01/1988 31/12/2006 LIBEN Oils of geranium, whether or not terpeneless, incl. concretes and absolutes 01/01/1988 31/12/2006 -33012110 01/01/1988 31/12/2006 LIBEN Terpenic oils of geranium, incl. concretes and absolutes 01/01/1988 31/12/2006 -33012190 01/01/1988 31/12/2006 LIBEN Terpeneless oils of geranium, incl. concretes and absolutes 01/01/1988 31/12/2006 -330122 01/01/1988 31/12/2006 LIBEN Oils of jasmin, whether or not terpeneless, incl. concretes and absolutes 01/01/1988 31/12/2006 -33012210 01/01/1988 31/12/2006 LIBEN Terpenic oils of jasmin, incl. concretes and absolutes 01/01/1988 31/12/2006 -33012290 01/01/1988 31/12/2006 LIBEN Terpeneless essential oils of jasmin, incl. concretes and absolutes 01/01/1988 31/12/2006 -330123 01/01/1988 31/12/2006 LIBEN Oils of lavender or of lavandin, whether or not terpeneless, incl. concretes and absolutes 01/01/1988 31/12/2006 -33012310 01/01/1988 31/12/2006 LIBEN Terpenic oils of lavender or of lavandin, incl. concretes and absolutes 01/01/1988 31/12/2006 -33012390 01/01/1988 31/12/2006 LIBEN Terpeneless oils of lavender or of lavandin, incl. concretes and absolutes 01/01/1988 31/12/2006 -330124 01/01/1988 31/12/2500 LIBEN Oils of peppermint "Mentha piperita", whether or not terpeneless, incl. concretes and absolutes 01/01/1988 31/12/2500 -33012410 01/01/1988 31/12/2500 LIBEN Terpenic oils of peppermint "Mentha piperita", incl. concretes and absolutes 01/01/1988 31/12/2500 -33012490 01/01/1988 31/12/2500 LIBEN Terpeneless oils of peppermint "Mentha piperita", incl. concretes and absolutes 01/01/1988 31/12/2500 -330125 01/01/1988 31/12/2500 LIBEN Oils of mints, whether or not terpeneless, incl. concretes and absolutes (excl. those of peppermint "Mentha piperita") 01/01/1988 31/12/2500 -33012510 01/01/1988 31/12/2500 LIBEN Terpenic oils of mints, incl. concretes and absolutes (excl. those of peppermint "Mentha piperita") 01/01/1988 31/12/2500 -33012590 01/01/1988 31/12/2500 LIBEN Terpeneless oils of mints, incl. concretes and absolutes (excl. those of peppermint "Mentha piperita") 01/01/1988 31/12/2500 -330126 01/01/1988 31/12/2006 LIBEN Oils of vetiver, whether or not terpeneless, incl. concretes and absolutes 01/01/1988 31/12/2006 -33012610 01/01/1988 31/12/2006 LIBEN Terpenic oils of vetiver, incl. concretes and absolutes 01/01/1988 31/12/2006 -33012690 01/01/1988 31/12/2006 LIBEN Terpeneless oils of vetiver, incl. concretes and absolutes 01/01/1988 31/12/2006 -330129 01/01/1988 31/12/2500 LIBEN Essential oils, whether or not terpeneless, incl. concretes and absolutes (excl. those of citrus fruit and mint) 01/01/1988 31/12/2500 -33012911 01/01/1988 31/12/2500 LIBEN Terpenic oils of clove, niaouli and ylang-ylang, incl. concretes and absolutes 01/01/1988 31/12/2500 -33012931 01/01/1988 31/12/2500 LIBEN Terpeneless oils of clove, niaouli and ylang-ylang, incl. concretes and absolutes 01/01/1988 31/12/2500 -33012941 01/01/2007 31/12/2500 LIBEN Essential oils, not deterpenated, incl. concretes and absolutes (except of citrus fruit, mint, clove, niaouli and ylang-ylang) 01/01/2007 31/12/2500 -33012951 01/01/1988 31/12/1992 LIBEN Terpenic oils of citronella, incl. concretes and absolutes 01/01/1988 31/12/1992 -33012953 01/01/1988 31/12/1992 LIBEN Terpenic oils of eucalyptus, incl. concretes and absolutes 01/01/1988 31/12/1992 -33012955 01/01/1988 31/12/1992 LIBEN Terpenic oils of rose, incl. concretes and absolutes 01/01/1988 31/12/1992 -33012957 01/01/1988 31/12/1992 LIBEN Terpenic oils of pine needle, incl. concretes and absolutes 01/01/1988 31/12/1992 -33012959 01/01/1988 31/12/1992 LIBEN Terpenic essential oils, incl. concretes and absolutes (excl. those of citrus fruit, geramium, jasmine, lavender, lavandine, mint, vetiver, clove, niaouli, ylang-ylang, citronella, eucalyptus, rose and pine needle) 01/01/1988 31/12/1992 -33012961 01/01/1993 31/12/2006 LIBEN Essential oils, not deterpenated, incl. concretes and absolutes (except of citrus fruit, geranium, jasmine, lavendar or lavendin, mint, vetiver, clove, niaouli and ylang-ylang) 01/01/1993 31/12/2006 -33012971 01/01/2007 31/12/2500 LIBEN Terpeneless oils of geranium, jasmine and vetiver, incl. concretes and absolutes 01/01/2007 31/12/2500 -33012979 01/01/2007 31/12/2500 LIBEN Terpeneless oils of lavender or of lavandin, incl. concretes and absolutes 01/01/2007 31/12/2500 -33012991 01/01/1988 31/12/2500 LIBEN Terpeneless essential oils, incl. concretes and absolutes (excl. of citrus fruit, geranium, jasmine, lavender or of lavandin, mint, vetiver, clove, niaouli and ylang-ylang) 01/01/1988 31/12/2500 -330130 01/01/1988 31/12/2500 LIBEN Resinoids 01/01/1988 31/12/2500 -33013000 01/01/1988 31/12/2500 LIBEN Resinoids 01/01/1988 31/12/2500 -330190 01/01/1988 31/12/2500 LIBEN Extracted oleoresins; concentrates of essential oils in fats, fixed oils, waxes and the like, obtained by enfleurage or maceration; terpenic by-products of the deterpenation of essential oils; aromatic aqueous distillates and aqueous solutions of essential oils 01/01/1988 31/12/2500 -33019010 01/01/1988 31/12/2500 LIBEN Terpenic by-products of the deterpenation of essential oils 01/01/1988 31/12/2500 -33019021 01/01/1996 31/12/2500 LIBEN Extracted oleoresins of liquorice and hops 01/01/1996 31/12/2500 -33019029 01/01/1996 31/12/2000 LIBEN Extracted oleoresins of pyrethrum or of the roots of plants containing rotenone; intermixtures of vegetable extracts, for the manufacture of beverages or food preparations 01/01/1996 31/12/2000 -33019030 01/01/2001 31/12/2500 LIBEN Extracted oleoresins of quassia wood, aloe, manna and other plants (excl. vanilla, liquorice and hops) 01/01/2001 31/12/2500 -33019031 01/01/1996 31/12/2000 LIBEN Extracted oleoresins for medicinal purposes (excl. of vanilla, liquorice, hops, pyrethrum, roots of plants containing rotenone, and pharmaceutical products and reagents to determine blood groups or blood factors) 01/01/1996 31/12/2000 -33019039 01/01/1996 31/12/2000 LIBEN Extracted oleoresins of quassia wood, aloe, manna and other plants (excl. vanilla, liquorice, hops, pyrethrum, roots of plants containing rotenone, intermixtures of vegetable extracts for the manufacture of beverages or food preparations and those for medicinal purposes) 01/01/1996 31/12/2000 -33019090 01/01/1988 31/12/1995 LIBEN Concentrates of essential oils in fats, fixed oils, waxes or the like, obtained by enfleurage or maceration; aqueous distillates and aqueous solutions of essential oils 01/01/1988 31/12/1995 -33019090 01/01/1996 31/12/2500 LIBEN Concentrates of essential oils in fats, fixed oils, waxes or the like, obtained by enfleurage or maceration; aqueous distillates and aqueous solutions of essential oils 01/01/1996 31/12/2500 -3302 01/01/1988 31/12/2500 LIBEN Mixtures of odoriferous substances and mixtures, incl. alcoholic solutions, based on one or more of these substances, of a kind used as raw materials in industry; other preparations based on odoriferous substances, of a kind used for the manufacture of beverages 01/01/1988 31/12/2500 -330210 01/01/1988 31/12/2500 LIBEN Mixtures of odoriferous substances and mixtures, incl. alcoholic solutions, with a basis of one or more of these substances, of a kind used in the food and drink industries; other preparations based on odoriferous substances, of a kind used for the manufacture of beverages 01/01/1988 31/12/2500 -33021000 01/01/1988 31/12/1995 LIBEN Mixtures of odoriferous substances and mixtures, incl. alcoholic solutions, based on one or more of these substances, of a kind used as raw materials in the food or drink industries 01/01/1988 31/12/1995 -33021010 01/01/1996 31/12/2500 LIBEN Preparations based on odoriferous substances, containing all flavouring agents characterizing a beverage, of an actual alcoholic strength of > 0,5% vol, of a kind used in the drink industries 01/01/1996 31/12/2500 -33021021 01/01/1996 31/12/2500 LIBEN Preparations based on odoriferous substances, containing all flavouring agents characterizing a beverage, containing no milkfats, sucrose, isoglucose, glucose or starch or containing, by weight, < 1,5% milkfat, < 5% sucrose or isoglucose, < 5% glucose or < 5% starch, of a kind used in the drink industries (excl. of an actual alcoholic strength of > 0,5% vol) 01/01/1996 31/12/2500 -33021029 01/01/1996 31/12/2500 LIBEN Preparations based on odoriferous substances, containing all flavouring agents characterizing a beverage, containing, by weight, >= 1,5% milkfat, >= 5% sucrose or isoglucose, >= 5% glucose or >= 5% starch, of a kind used in the drink industries (excl. of an actual alcoholic strength of > 0,5% vol) 01/01/1996 31/12/2500 -33021040 01/01/1996 31/12/2500 LIBEN Mixtures of odoriferous substances and mixtures, incl. alcoholic solutions, with a basis of one or more of these substances, of a kind used as raw materials in the drink industries, and preparations based on odoriferous substances of a kind used in the drink industries (excl. those containing all flavouring agents characterizing a beverage) 01/01/1996 31/12/2500 -33021090 01/01/1996 31/12/2500 LIBEN Mixtures of odoriferous substances and mixtures, incl. alcoholic solutions, with a basis of one or more of these substances, of a kind used as raw materials in the food industries 01/01/1996 31/12/2500 -330290 01/01/1988 31/12/2500 LIBEN Mixtures of odoriferous substances and mixtures, incl. alcoholic solutions, based on one or more of these substances, of a kind used as raw materials in industry (excl. food or drink industries) 01/01/1988 31/12/2500 -33029000 01/01/1988 31/12/1993 LIBEN Mixtures of odoriferous substances and mixtures, incl. alcoholic solutions, based on one or more of these substances, of a kind used as raw materials in industry (excl. food or drink industries) 01/01/1988 31/12/1993 -33029010 01/01/1994 31/12/2500 LIBEN Mixtures of odoriferous substances and mixtures based on one or more of these substances, of a kind used as raw materials in industry, as alcoholic solutions (excl. the food and drink industries) 01/01/1994 31/12/2500 -33029090 01/01/1994 31/12/2500 LIBEN Mixtures of odoriferous substances and mixtures based on one or more of these substances, of a kind used as raw materials in industry (excl. the food and drink industries and alcoholic solutions) 01/01/1994 31/12/2500 -3303 01/01/1988 31/12/2500 LIBEN Perfumes and toilet waters (excl. aftershave lotions, personal deodorants and hair lotions) 01/01/1988 31/12/2500 -330300 01/01/1988 31/12/2500 LIBEN Perfumes and toilet waters (excl. aftershave lotions, personal deodorants and hair lotions) 01/01/1988 31/12/2500 -33030010 01/01/1988 31/12/2500 LIBEN Perfumes (excl. aftershave lotions and personal deodorants) 01/01/1988 31/12/2500 -33030090 01/01/1988 31/12/2500 LIBEN Toilet waters (excl. aftershave lotions, deodorants and hair lotions) 01/01/1988 31/12/2500 -3304 01/01/1988 31/12/2500 LIBEN Beauty or make-up preparations and preparations for the care of the skin, incl. sunscreen or suntan preparations (excl. medicaments); manicure or pedicure preparations 01/01/1988 31/12/2500 -330410 01/01/1988 31/12/2500 LIBEN Lip make-up preparations 01/01/1988 31/12/2500 -33041000 01/01/1988 31/12/2500 LIBEN Lip make-up preparations 01/01/1988 31/12/2500 -330420 01/01/1988 31/12/2500 LIBEN Eye make-up preparations 01/01/1988 31/12/2500 -33042000 01/01/1988 31/12/2500 LIBEN Eye make-up preparations 01/01/1988 31/12/2500 -330430 01/01/1988 31/12/2500 LIBEN Manicure or pedicure preparations 01/01/1988 31/12/2500 -33043000 01/01/1988 31/12/2500 LIBEN Manicure or pedicure preparations 01/01/1988 31/12/2500 -330491 01/01/1988 31/12/2500 LIBEN Make-up or skin care powders, incl. baby powders, whether or not compressed (excl. medicaments) 01/01/1988 31/12/2500 -33049100 01/01/1988 31/12/2500 LIBEN Make-up or skin care powders, incl. baby powders, whether or not compressed (excl. medicaments) 01/01/1988 31/12/2500 -330499 01/01/1988 31/12/2500 LIBEN Beauty or make-up preparations and preparations for the care of the skin (other than medicaments), incl. sunscreen or suntan preparations (excl. medicaments, lip and eye make-up preparations, manicure or pedicure preparations and make-up or skin care powders, incl. baby powders) 01/01/1988 31/12/2500 -33049900 01/01/1989 31/12/2500 LIBEN Beauty or make-up preparations and preparations for the care of the skin (other than medicaments), incl. sunscreen or suntan preparations (excl. medicaments, lip and eye make-up preparations, manicure or pedicure preparations and make-up or skin care powders, incl. baby powders) 01/01/1989 31/12/2500 -33049910 01/01/1988 31/12/1988 LIBEN Creams, emulsions and oils in the form of beauty, make-up or skin care preparations 01/01/1988 31/12/1988 -33049990 01/01/1988 31/12/1988 LIBEN Beauty or make-up preparations and skin care preparations, incl. sun protection and sun tan preparations (excl. medicaments, lip make-up, eye make-up, manicure or pedicure preparations and powders, whether or not compressed, creams, emulsions and oils) 01/01/1988 31/12/1988 -3305 01/01/1988 31/12/2500 LIBEN Preparations for use on the hair 01/01/1988 31/12/2500 -330510 01/01/1988 31/12/2500 LIBEN Shampoos 01/01/1988 31/12/2500 -33051000 01/01/1988 31/12/2500 LIBEN Shampoos 01/01/1988 31/12/2500 -330520 01/01/1988 31/12/2500 LIBEN Preparations for permanent waving or straightening 01/01/1988 31/12/2500 -33052000 01/01/1988 31/12/2500 LIBEN Preparations for permanent waving or straightening 01/01/1988 31/12/2500 -330530 01/01/1988 31/12/2500 LIBEN Hair lacquers 01/01/1988 31/12/2500 -33053000 01/01/1988 31/12/2500 LIBEN Hair lacquers 01/01/1988 31/12/2500 -330590 01/01/1988 31/12/2500 LIBEN Preparations for use on the hair (excl. shampoos, preparations for permanent waving or straightening and hair lacquers) 01/01/1988 31/12/2500 -33059000 01/01/2010 31/12/2500 LIBEN Preparations for use on the hair (excl. shampoos, preparations for permanent waving or straightening and hair lacquers) 01/01/2010 31/12/2500 -33059010 01/01/1988 31/12/2009 LIBEN Hair lotions 01/01/1988 31/12/2009 -33059090 01/01/1988 31/12/2009 LIBEN Preparations for use on the hair (excl. shampoos, preparations for permanent waving or straightening, hair lacquers and lotions) 01/01/1988 31/12/2009 -3306 01/01/1988 31/12/2500 LIBEN Preparations for oral or dental hygiene, incl. denture fixative pastes and powders; yarn used to clean between the teeth "dental floss", in individual retail packages 01/01/1988 31/12/2500 -330610 01/01/1988 31/12/2500 LIBEN Dentifrices, incl. those used by dental practitioners 01/01/1988 31/12/2500 -33061000 01/01/1988 31/12/2500 LIBEN Dentifrices, incl. those used by dental practitioners 01/01/1988 31/12/2500 -330620 01/01/1996 31/12/2500 LIBEN Yarn used to clean between the teeth "dental floss", in individual retail packages 01/01/1996 31/12/2500 -33062000 01/01/1996 31/12/2500 LIBEN Yarn used to clean between the teeth "dental floss", in individual retail packages 01/01/1996 31/12/2500 -330690 01/01/1988 31/12/2500 LIBEN Preparations for oral or dental hygiene, incl. denture fixative pastes and powders (excl. dentifrices and yarn used to clean between the teeth "dental floss") 01/01/1988 31/12/2500 -33069000 01/01/1988 31/12/2500 LIBEN Preparations for oral or dental hygiene, incl. denture fixative pastes and powders (excl. dentifrices and yarn used to clean between the teeth "dental floss") 01/01/1988 31/12/2500 -3307 01/01/1988 31/12/2500 LIBEN Shaving preparations, incl. pre-shave and aftershave products, personal deodorants, bath and shower preparations, depilatories and other perfumery, toilet or cosmetic preparations, n.e.s.; prepared room deodorisers, whether or not perfumed or having disinfectant properties 01/01/1988 31/12/2500 -330710 01/01/1988 31/12/2500 LIBEN Shaving preparations, incl. pre-shave and aftershave products 01/01/1988 31/12/2500 -33071000 01/01/1988 31/12/2500 LIBEN Shaving preparations, incl. pre-shave and aftershave products 01/01/1988 31/12/2500 -330720 01/01/1988 31/12/2500 LIBEN Personal deodorants and antiperspirants 01/01/1988 31/12/2500 -33072000 01/01/1988 31/12/2500 LIBEN Personal deodorants and antiperspirants 01/01/1988 31/12/2500 -330730 01/01/1988 31/12/2500 LIBEN Perfumed bath salts and other bath and shower preparations 01/01/1988 31/12/2500 -33073000 01/01/1988 31/12/2500 LIBEN Perfumed bath salts and other bath and shower preparations 01/01/1988 31/12/2500 -330741 01/01/1988 31/12/2500 LIBEN "Agarbatti" and other odoriferous preparations which operate by burning 01/01/1988 31/12/2500 -33074100 01/01/1988 31/12/2500 LIBEN "Agarbatti" and other odoriferous preparations which operate by burning 01/01/1988 31/12/2500 -330749 01/01/1988 31/12/2500 LIBEN Preparations for perfuming or deodorising rooms, incl. odoriferous preparations used during religious rites (excl. agarbatti and other odoriferous preparations which operate by burning) 01/01/1988 31/12/2500 -33074900 01/01/1988 31/12/2500 LIBEN Preparations for perfuming or deodorising rooms, incl. odoriferous preparations used during religious rites (excl. agarbatti and other odoriferous preparations which operate by burning) 01/01/1988 31/12/2500 -330790 01/01/1988 31/12/2500 LIBEN Depilatories and other perfumery, toilet or cosmetic preparations, n.e.s. 01/01/1988 31/12/2500 -33079000 01/01/1988 31/12/2500 LIBEN Depilatories and other perfumery, toilet or cosmetic preparations, n.e.s. 01/01/1988 31/12/2500 -33CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 33 01/01/2002 31/12/2500 -33CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 33 01/01/2002 31/12/2500 -33CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 33 01/01/2002 31/12/2500 -33MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -33MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -33MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -33PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 33 carried by post 01/01/1988 31/12/2500 -33PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 33 carried by post 01/01/1988 31/12/2500 -33PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 33 carried by post 01/01/1988 31/12/2500 -33SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 33 01/01/1988 31/12/2500 -33SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 33 and SITC section 0 01/01/1997 31/12/2001 -33SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 33 and SITC group 000 01/01/1997 31/12/2001 -33SSS5 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 33 and SITC section 5 01/01/1997 31/12/2500 -33SSS551 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 33 and SITC group 551 01/01/1997 31/12/2500 -33SSS553 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 33 and SITC group 553 01/01/1997 31/12/2500 -33SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 33 and SITC section 9 01/01/1988 31/12/1996 -33SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 33 and SITC section 9 01/01/1997 31/12/2500 -33SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 33 and SITC group 999 01/01/1988 31/12/1996 -33SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 33 and SITC group 999 01/01/1997 31/12/2500 -34 01/01/1988 31/12/2500 LIBEN SOAP, ORGANIC SURFACE-ACTIVE AGENTS, WASHING PREPARATIONS, LUBRICATING PREPARATIONS, ARTIFICIAL WAXES, PREPARED WAXES, POLISHING OR SCOURING PREPARATIONS, CANDLES AND SIMILAR ARTICLES, MODELLING PASTES, ‘DENTAL WAXES’ AND DENTAL PREPARATIONS WITH A BASIS OF PLASTER 01/01/1988 31/12/2500 -3401 01/01/1988 31/12/2500 LIBEN Soap; organic surface-active products and preparations for use as soap, in the form of bars, cakes, moulded pieces or shapes, whether or not containing soap; organic surface-active products and preparations for washing the skin, in the form of liquid or cream and put up for retail sale, whether or not containing soap; paper, wadding, felt and nonwovens, impregnated, coated or covered with soap or detergent 01/01/1988 31/12/2500 -340111 01/01/1988 31/12/2500 LIBEN Soap and organic surface-active products and preparations, in the form of bars, cakes, moulded pieces or shapes, and paper, wadding, felt and nonwovens, impregnated, coated or covered with soap or detergent, for toilet use, incl. medicated products 01/01/1988 31/12/2500 -34011100 01/01/1988 31/12/2500 LIBEN Soap and organic surface-active products and preparations, in the form of bars, cakes, moulded pieces or shapes, and paper, wadding, felt and nonwovens, impregnated, coated or covered with soap or detergent, for toilet use, incl. medicated products 01/01/1988 31/12/2500 -340119 01/01/1988 31/12/2500 LIBEN Soap and organic surface-active products and preparations, in the form of bars, cakes, moulded pieces or shapes, and paper, wadding, felt and nonwovens, impregnated, coated or covered with soap or detergent (excl. those for toilet use, incl. medicated products) 01/01/1988 31/12/2500 -34011900 01/01/1988 31/12/2500 LIBEN Soap and organic surface-active products and preparations, in the form of bars, cakes, moulded pieces or shapes, and paper, wadding, felt and nonwovens, impregnated, coated or covered with soap or detergent (excl. those for toilet use, incl. medicated products) 01/01/1988 31/12/2500 -340120 01/01/1988 31/12/2500 LIBEN Soap in the form of flakes, granules, powder, paste or in aqueous solution 01/01/1988 31/12/2500 -34012010 01/01/1988 31/12/2500 LIBEN Soap in the form of flakes, granules or powders 01/01/1988 31/12/2500 -34012090 01/01/1988 31/12/2500 LIBEN Soap in paste form "soft soap" or in aqueous solution "liquid soap" 01/01/1988 31/12/2500 -340130 01/01/2002 31/12/2500 LIBEN Organic surface-active products and preparations for washing the skin, in the form of liquid or cream and put up for retail sale, whether or not containing soap 01/01/2002 31/12/2500 -34013000 01/01/2002 31/12/2500 LIBEN Organic surface-active products and preparations for washing the skin, in the form of liquid or cream and put up for retail sale, whether or not containing soap 01/01/2002 31/12/2500 -3402 01/01/1988 31/12/2500 LIBEN Organic surface-active agents (excl. soap); surface-active preparations, washing preparations, incl. auxiliary washing preparations, and cleaning preparations, whether or not containing soap (excl. those of heading 3401) 01/01/1988 31/12/2500 -340211 01/01/1988 31/12/2500 LIBEN Anionic organic surface-active agents, whether or not put up for retail sale (excl. soap) 01/01/1988 31/12/2500 -34021100 01/01/1988 31/12/1996 LIBEN Anionic organic surface-active agents, whether or not put up for retail sale (excl. soap) 01/01/1988 31/12/1996 -34021110 01/01/1997 31/12/2500 LIBEN Aqueous solution containing by weight >= 30% but <= 50% of disodium alkyl[oxydi"benzenesulphonate"] (excl. soaps) 01/01/1997 31/12/2500 -34021190 01/01/1997 31/12/2500 LIBEN Anionic organic surface-active agents, whether or not put up for retail sale (excl. soaps and aqueous solution containing by weight >= 30% but <= 50% of disodium alkyl[oxydi"benzenesulphonate"]) 01/01/1997 31/12/2500 -340212 01/01/1988 31/12/2500 LIBEN Cationic organic surface-active agents, whether or not put up for retail sale (excl. soap) 01/01/1988 31/12/2500 -34021200 01/01/1988 31/12/2500 LIBEN Cationic organic surface-active agents, whether or not put up for retail sale (excl. soap) 01/01/1988 31/12/2500 -340213 01/01/1988 31/12/2500 LIBEN Non-ionic organic surface-active agents, whether or not put up for retail sale (excl. soap) 01/01/1988 31/12/2500 -34021300 01/01/1988 31/12/2500 LIBEN Non-ionic organic surface-active agents, whether or not put up for retail sale (excl. soap) 01/01/1988 31/12/2500 -340219 01/01/1988 31/12/2500 LIBEN Organic surface-active agents, whether or not put up for retail sale (excl. anionic, cationic or non-ionic agents and soap) 01/01/1988 31/12/2500 -34021900 01/01/1988 31/12/2500 LIBEN Organic surface-active agents, whether or not put up for retail sale (excl. anionic, cationic or non-ionic agents and soap) 01/01/1988 31/12/2500 -340220 01/01/1988 31/12/2500 LIBEN Surface-active preparations, washing preparations, auxiliary washing preparations and cleaning preparations put up for retail sale (excl. organic surface-active agents, soap and organic surface-active preparations in the form of bars, cakes, moulded pieces or shapes, and products and preparations for washing the skin in the form of liquid or cream) 01/01/1988 31/12/2500 -34022010 01/01/1988 31/12/2001 LIBEN Surface-active preparations put up for retail sale (excl. organic surface-active preparations in the form of bars, cakes, moulded pieces or shapes) 01/01/1988 31/12/2001 -34022020 01/01/2002 31/12/2500 LIBEN Surface-active preparations put up for retail sale (excl. organic surface-active preparations in the form of bars, cakes, moulded pieces or shapes, and organic surface-active products and preparations for washing the skin in the form of liquid or cream) 01/01/2002 31/12/2500 -34022090 01/01/1988 31/12/2500 LIBEN Washing preparations, incl. auxiliary washing preparations and cleaning preparations put up for retail sale (excl. organic surface-active agents, soap and surface-active preparations, and products and preparations for washing the skin in the form of liquid or cream) 01/01/1988 31/12/2500 -340290 01/01/1988 31/12/2500 LIBEN Surface-active preparations, washing preparations, incl. auxiliary washing preparations and cleaning preparations (excl. those put up for retail sale, organic surface-active agents, soap and organic surface-active preparations in the form of bars, cakes, moulded pieces or shapes, and products and preparations for washing the skin in the form of liquid or cream) 01/01/1988 31/12/2500 -34029010 01/01/1988 31/12/2500 LIBEN Surface-active preparations (excl. those put up for retail sale, organic surface-active preparations in the form of bars, cakes, moulded pieces or shapes, and products and preparations for washing the skin in the form of liquid or cream) 01/01/1988 31/12/2500 -34029090 01/01/1988 31/12/2500 LIBEN Washing preparations, incl. auxiliary washing preparations and cleaning preparations (excl. those put up for retail sale, organic surface-active agents, soap and surface-active preparations and products and preparations for washing the skin in the form of liquid or cream) 01/01/1988 31/12/2500 -3403 01/01/1988 31/12/2500 LIBEN Lubricant preparations, incl. cutting-oil preparations, bolt or nut release preparations, anti-rust or anti-corrosion preparations and mould-release preparations based on lubricants; textile lubricant preparations and preparations of a kind used for the oil or grease treatment of textile materials, leather, furskins or other materials (excl. preparations containing, as basic constituents, >= 70% petroleum oil or bituminous mineral oil by weight) 01/01/1988 31/12/2500 -340311 01/01/1988 31/12/2500 LIBEN Textile lubricant preparations and preparations of a kind used for the oil or grease treatment of leather, furskins or other material containing petroleum oil or bituminous mineral oil (excl. preparations containing, as basic constituents, >= 70% petroleum oil or bituminous mineral oil by weight) 01/01/1988 31/12/2500 -34031100 01/01/1988 31/12/2500 LIBEN Textile lubricant preparations and preparations of a kind used for the oil or grease treatment of leather, furskins or other material containing petroleum oil or bituminous mineral oil (excl. preparations containing, as basic constituents, >= 70% petroleum oil or bituminous mineral oil by weight) 01/01/1988 31/12/2500 -340319 01/01/1988 31/12/2500 LIBEN Lubricant preparations, incl. cutting-oil preparations, bolt or nut release preparations, anti-rust or anti-corrosion preparations and mould-release preparations, based on lubricants and containing petroleum oil or bituminous mineral oil (excl. preparations containing, as basic constituents, >= 70% of petroleum oil or bituminous mineral oil by weight and preparations for treating textiles, leather, furskins and other materials) 01/01/1988 31/12/2500 -34031910 01/01/1988 31/12/2500 LIBEN Lubricant preparations, incl. cutting-oil preparations, bolt or nut release preparations, anti-rust or anti-corrosion preparations and mould-release preparations, based on lubricants and containing, as non-basic constituents, >= 70% petroleum oil or bituminous mineral oil by weight (excl. preparations for the treatment of textiles, leather, furskins and other materials) 01/01/1988 31/12/2500 -34031920 01/01/2016 31/12/2500 LIBEN Lubricants having a bio-based carbon content of at least 25% by mass and which are biodegradable at a level of at least 60% 01/01/2016 31/12/2500 -34031980 01/01/2016 31/12/2500 LIBEN Lubricating preparations, incl. cutting-oil preparations, bolt or nut release preparations, anti-rust or anti-corrosion preparations and mould-release preparations, based on lubricants, containing, by weight, < 70% of petroleum oil or oil obtained from bituminous minerals (excl. preparations for the treatment of textile materials, leather, fur skins or other materials, and lubricants having a bio-based carbon content of at least 25% by mass and which are biodegradable at a level of at least 60%) 01/01/2016 31/12/2500 -34031990 01/01/2010 31/12/2015 LIBEN Lubricating preparations, incl. cutting-oil preparations, bolt or nut release preparations, anti-rust or anti-corrosion preparations and mould-release preparations, based on lubricants, containing, by weight, < 70% of petroleum oil or oil obtained from bituminous minerals (excl. preparations for the treatment of textile materials, leather, fur skins or other materials) 01/01/2010 31/12/2015 -34031991 01/01/1988 31/12/2009 LIBEN Lubricant preparations for machines, appliances and vehicles containing < 70% petroleum oil or bituminous mineral oil by weight 01/01/1988 31/12/2009 -34031999 01/01/1988 31/12/2009 LIBEN Lubricating preparations, incl. cutting-oil preparations, bolt or nut release preparations, anti-rust or anti-corrosion preparations and mould-release preparations, based on lubricants, containing, by weight, < 70% of petroleum oil or oil obtained from bituminous minerals (excl. lubricating preparations for machines, equipment and vehicles, or for the treatment of textile materials, leather, fur skins or other materials) 01/01/1988 31/12/2009 -340391 01/01/1988 31/12/2500 LIBEN Textile lubricant preparations and preparations of a kind used for the oil or grease treatment of leather, furskins or other material not containing petroleum oil or bituminous mineral oil 01/01/1988 31/12/2500 -34039100 01/01/1988 31/12/2500 LIBEN Textile lubricant preparations and preparations of a kind used for the oil or grease treatment of leather, furskins or other material not containing petroleum oil or bituminous mineral oil 01/01/1988 31/12/2500 -340399 01/01/1988 31/12/2500 LIBEN Lubricant preparations, incl. cutting-oil preparations, bolt or nut release preparations, anti-rust or anti-corrosion preparations and mould-release preparations, based on lubricants but not containing petroleum oil or bituminous mineral oil (excl. preparations for the treatment of textiles, leather, furskins and other materials) 01/01/1988 31/12/2500 -34039900 01/01/2010 31/12/2500 LIBEN Lubricant preparations, incl. cutting-oil preparations, bolt or nut release preparations, anti-rust or anti-corrosion preparations and mould-release preparations, based on lubricants but not containing petroleum oil or bituminous mineral oil (excl. preparations for the treatment of textiles, leather, furskins and other materials) 01/01/2010 31/12/2500 -34039910 01/01/1988 31/12/2009 LIBEN Lubricant preparations for machines, appliances and vehicles not containing petroleum oil or bituminous mineral oil 01/01/1988 31/12/2009 -34039990 01/01/1988 31/12/2009 LIBEN Lubricant preparations, incl. cutting-oil preparations, bolt or nut release preparations, anti-rust or anti-corrosion preparations and mould-release preparations, based on lubricants but not containing petroleum oil or bituminous mineral oil (excl. lubricant preparations for machines, appliances and vehicles and preparations for the treatment of textiles, leather, furskins and other materials) 01/01/1988 31/12/2009 -3404 01/01/1988 31/12/2500 LIBEN Artificial waxes and prepared waxes 01/01/1988 31/12/2500 -340410 01/01/1988 31/12/2006 LIBEN Chemically modified lignite waxes 01/01/1988 31/12/2006 -34041000 01/01/1988 31/12/2006 LIBEN Chemically modified lignite waxes 01/01/1988 31/12/2006 -340420 01/01/1988 31/12/2500 LIBEN Poly"oxyethylene" [polyethylene glycol] waxes 01/01/1988 31/12/2500 -34042000 01/01/1988 31/12/2500 LIBEN Poly"oxyethylene" [polyethylene glycol] waxes 01/01/1988 31/12/2500 -340490 01/01/1988 31/12/2500 LIBEN Artificial waxes and prepared waxes (excl. poly"oxyethylene" [polyethylene glycol] waxes) 01/01/1988 31/12/2500 -34049000 01/01/2010 31/12/2500 LIBEN Artificial waxes and prepared waxes (excl. poly"oxyethylene" [polyethylene glycol] waxes) 01/01/2010 31/12/2500 -34049010 01/01/1988 31/12/2009 LIBEN Prepared waxes, incl. sealing waxes (excl. chemically modified lignite waxes and poly"oxyethylene" [polyethylene glycol] waxes 01/01/1988 31/12/2009 -34049080 01/01/2007 31/12/2009 LIBEN Artificial waxes (excl. prepared waxes, incl. sealing waxes, and poly"oxyethylene" [polyethylene glycol] waxes) 01/01/2007 31/12/2009 -34049090 01/01/1988 31/12/2006 LIBEN Artificial waxes (excl. prepared waxes, incl. sealing waxes and chemically modified lignite waxes and poly"oxyethylene" [polyethylene glycol] waxes 01/01/1988 31/12/2006 -3404S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3404 and SITC section 5 01/01/1997 31/12/2500 -3404S598 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3404 and SITC group 598 01/01/1997 31/12/2500 -3405 01/01/1988 31/12/2500 LIBEN Shoe polish, furniture wax and floor waxes, polishes and creams for coachwork, glass or metal, scouring pastes and powders and similar preparations, whether or not in the form of paper, wadding, felt, nonwovens, sponge plastics, cellular plastics or cellular rubber, impregnated, coated or covered with such preparations (excl. artificial and prepared waxes of heading 3404) 01/01/1988 31/12/2500 -340510 01/01/1988 31/12/2500 LIBEN Polishes, creams and similar preparations, for footwear or leather, whether or not in the form of paper, wadding, felt, nonwovens, cellular plastics or cellular rubber, impregnated, coated or covered with such preparations (excl. artificial and prepared waxes of heading 3404) 01/01/1988 31/12/2500 -34051000 01/01/1988 31/12/2500 LIBEN Polishes, creams and similar preparations, for footwear or leather, whether or not in the form of paper, wadding, felt, nonwovens, cellular plastics or cellular rubber, impregnated, coated or covered with such preparations (excl. artificial and prepared waxes of heading 3404) 01/01/1988 31/12/2500 -340520 01/01/1988 31/12/2500 LIBEN Polishes, creams and similar preparations, for the maintenance of wooden furniture, floors or other woodwork, whether or not in the form of paper, wadding, felt, nonwovens, cellular plastics or cellular rubber, impregnated, coated or covered with such preparations (excl. artificial and prepared waxes of heading 3404) 01/01/1988 31/12/2500 -34052000 01/01/1988 31/12/2500 LIBEN Polishes, creams and similar preparations, for the maintenance of wooden furniture, floors or other woodwork, whether or not in the form of paper, wadding, felt, nonwovens, cellular plastics or cellular rubber, impregnated, coated or covered with such preparations (excl. artificial and prepared waxes of heading 3404) 01/01/1988 31/12/2500 -340530 01/01/1988 31/12/2500 LIBEN Polishes and similar preparations for coachwork, whether or not in the form of paper, wadding, felt, nonwovens, cellular plastics or cellular rubber, impregnated, coated or covered with such preparations (excl. artificial and prepared waxes of heading 3404 and metal polishes) 01/01/1988 31/12/2500 -34053000 01/01/1988 31/12/2500 LIBEN Polishes and similar preparations for coachwork, whether or not in the form of paper, wadding, felt, nonwovens, cellular plastics or cellular rubber, impregnated, coated or covered with such preparations (excl. artificial and prepared waxes of heading 3404 and metal polishes) 01/01/1988 31/12/2500 -340540 01/01/1988 31/12/2500 LIBEN Scouring pastes and powders and other scouring preparations, whether or not in the form of paper, wadding, felt, nonwovens, cellular plastics or cellular rubber, impregnated, coated or covered with such preparations 01/01/1988 31/12/2500 -34054000 01/01/1988 31/12/2500 LIBEN Scouring pastes and powders and other scouring preparations, whether or not in the form of paper, wadding, felt, nonwovens, cellular plastics or cellular rubber, impregnated, coated or covered with such preparations 01/01/1988 31/12/2500 -340590 01/01/1988 31/12/2500 LIBEN Glass or metal polishes, whether or not in the form of paper, wadding, felt, nonwovens, cellular plastics or cellular rubber, impregnated, coated or covered with such preparations 01/01/1988 31/12/2500 -34059010 01/01/1988 31/12/2500 LIBEN Metal polishes, whether or not in the form of paper, wadding, felt, nonwovens, cellular plastics or cellular rubber, impregnated, coated or covered with such preparations 01/01/1988 31/12/2500 -34059090 01/01/1988 31/12/2500 LIBEN Glass polishes, whether or not in the form of paper, wadding, felt, nonwovens, cellular plastics or cellular rubber, impregnated, coated or covered with such preparations 01/01/1988 31/12/2500 -3406 01/01/1988 31/12/2500 LIBEN Candles, tapers and the like 01/01/1988 31/12/2500 -340600 01/01/1988 31/12/2500 LIBEN Candles, tapers and the like 01/01/1988 31/12/2500 -34060000 01/01/2010 31/12/2500 LIBEN Candles, tapers and the like 01/01/2010 31/12/2500 -34060011 01/01/1988 31/12/2009 LIBEN Candles, plain, unperfumed 01/01/1988 31/12/2009 -34060019 01/01/1988 31/12/2009 LIBEN Candles, whether or not perfumed (excl. plain and not perfumed) 01/01/1988 31/12/2009 -34060090 01/01/1988 31/12/2009 LIBEN Tapers, night-lights and the like (excl. candles) 01/01/1988 31/12/2009 -3407 01/01/1988 31/12/2500 LIBEN Modelling pastes, incl. those put up for children's amusement; preparations known as "dental wax" or as "dental impression compounds", put up in sets, in packings for retail sale or in plates, horseshoe shapes, sticks or similar forms; other preparations for use in dentistry, with a basis of plaster "of calcined gypsum or calcium sulphate" 01/01/1988 31/12/2500 -340700 01/01/1988 31/12/2500 LIBEN Modelling pastes, incl. those put up for children's amusement; preparations known as "dental wax" or as "dental impression compounds", put up in sets, in packings for retail sale or in plates, horseshoe shapes, sticks or similar forms; other preparations for use in dentistry, with a basis of plaster "of calcined gypsum or calcium sulphate" 01/01/1988 31/12/2500 -34070000 01/01/1988 31/12/2500 LIBEN Modelling pastes, incl. those put up for children's amusement; preparations known as "dental wax" or as "dental impression compounds", put up in sets, in packings for retail sale or in plates, horseshoe shapes, sticks or similar forms; other preparations for use in dentistry, with a basis of plaster "of calcined gypsum or calcium sulphate" 01/01/1988 31/12/2500 -34CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 34 01/01/2002 31/12/2500 -34CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 34 01/01/2002 31/12/2500 -34CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 34 01/01/2002 31/12/2500 -34MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -34MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -34MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -34SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 34 01/01/1988 31/12/2500 -34SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 34 and SITC section 0 01/01/1997 31/12/2001 -34SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 34 and SITC group 000 01/01/1997 31/12/2001 -34SSS5 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 34 and SITC section 5 01/01/1997 31/12/2500 -34SSS554 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 34 and SITC group 554 01/01/1997 31/12/2500 -34SSS597 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 34 and SITC group 597 01/01/1997 31/12/2500 -34SSS598 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 34 and SITC group 598 01/01/1997 31/12/2500 -34SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 34 and SITC section 8 01/01/1997 31/12/2500 -34SSS899 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 34 and SITC group 899 01/01/1997 31/12/2500 -34SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 34 and SITC section 9 01/01/1988 31/12/1996 -34SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 34 and SITC section 9 01/01/1997 31/12/2500 -34SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 34 and SITC group 999 01/01/1988 31/12/1996 -34SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 34 and SITC group 999 01/01/1997 31/12/2500 -35 01/01/1988 31/12/2500 LIBEN ALBUMINOIDAL SUBSTANCES; MODIFIED STARCHES; GLUES; ENZYMES 01/01/1988 31/12/2500 -3501 01/01/1988 31/12/2500 LIBEN Casein, caseinates and other casein derivatives; casein glues (excl. those packaged as glue for retail sale and weighing net <= 1 kg) 01/01/1988 31/12/2500 -350110 01/01/1988 31/12/2500 LIBEN Casein 01/01/1988 31/12/2500 -35011010 01/01/1988 31/12/2500 LIBEN Casein for the manufacture of artificial textile fibres 01/01/1988 31/12/2500 -35011050 01/01/1988 31/12/2500 LIBEN Casein for industrial uses (excl. the manufacture of foodstuffs or fodder and artificial textile fibres) 01/01/1988 31/12/2500 -35011090 01/01/1988 31/12/2500 LIBEN Casein for the manufacture of foodstuffs and fodder and other types of casein (excl. the manufacture of artificial textile fibres and other industrial uses) 01/01/1988 31/12/2500 -350190 01/01/1988 31/12/2500 LIBEN Caseinates and other casein derivatives; casein glues (excl. those put up for retail sale as glue and weighing <= 1 kg, and organic or inorganic compounds of mercury whether or not chemically defined) 01/01/1988 31/12/2500 -35019010 01/01/1988 31/12/2500 LIBEN Casein glues (excl. those put up for retail sale as glue and weighing net <= 1 kg) 01/01/1988 31/12/2500 -35019090 01/01/1988 31/12/2011 LIBEN Caseinates and other casein derivatives 01/01/1988 31/12/2011 -35019090 01/01/2012 31/12/2500 LIBEN Caseinates and other casein derivatives 01/01/2012 31/12/2500 -3502 01/01/1988 31/12/2500 LIBEN Albumins, incl. concentrates of two or more whey proteins containing by weight > 80% whey proteins, calculated on the dry matter, albuminates and other albumin derivatives 01/01/1988 31/12/2500 -350210 01/01/1988 31/12/1995 LIBEN Egg albumin 01/01/1988 31/12/1995 -35021010 01/01/1988 31/12/1995 LIBEN Egg albumin, unfit for human consumption or rendered thus 01/01/1988 31/12/1995 -35021091 01/01/1988 31/12/1995 LIBEN Egg albumin, fit for human consumption, dried, in sheets, flakes, crystals, powder, etc. 01/01/1988 31/12/1995 -35021099 01/01/1988 31/12/1995 LIBEN Egg albumin, fit for human consumption (excl. dried, in sheets, flakes, crystals, powder, etc.) 01/01/1988 31/12/1995 -350211 01/01/1996 31/12/2500 LIBEN Egg albumin, dried "e.g. in sheets, scales, flakes, powder" 01/01/1996 31/12/2500 -35021110 01/01/1996 31/12/2500 LIBEN Egg albumin, dried "e.g. in sheets, scales, flakes, powder", unfit, or to be rendered unfit, for human consumption 01/01/1996 31/12/2500 -35021190 01/01/1996 31/12/2500 LIBEN Egg albumin, dried "e.g. in sheets, scales, flakes, powder", fit for human consumption 01/01/1996 31/12/2500 -350219 01/01/1996 31/12/2500 LIBEN Egg albumin (excl. dried [e.g. in sheets, scales, flakes, powder]) 01/01/1996 31/12/2500 -35021910 01/01/1996 31/12/2500 LIBEN Egg albumin, unfit, or to be rendered unfit, for human consumption (excl. dried [e.g. in sheets, scales, flakes, powder]) 01/01/1996 31/12/2500 -35021990 01/01/1996 31/12/2500 LIBEN Egg albumin, fit for human consumption (excl. dried [e.g. in sheets, flakes, crystals, powder]) 01/01/1996 31/12/2500 -350220 01/01/1996 31/12/2500 LIBEN Milk albumin "lactalbumin", incl. concentrates of two or more whey proteins containing by weight > 80% whey proteins, calculated on the dry matter 01/01/1996 31/12/2500 -35022010 01/01/1996 31/12/2500 LIBEN Milk albumin "lactalbumin", incl. concentrates of two or more whey proteins, containing by weight > 80% whey proteins, calculated on the dry matter, unfit, or to be rendered unfit, for human consumption 01/01/1996 31/12/2500 -35022091 01/01/1996 31/12/2500 LIBEN Milk albumin "lactalbumin", incl. concentrates of two or more whey proteins, containing by weight > 80% whey proteins, calculated on the dry matter, fit for human consumption, dried "e.g. in sheets, scales, flakes, powder" 01/01/1996 31/12/2500 -35022099 01/01/1996 31/12/2500 LIBEN Milk albumin "lactalbumin", incl. concentrates of two or more whey proteins, containing by weight > 80% whey proteins, calculated on the dry matter, fit for human consumption (excl. dried [e.g. in sheets, flakes, crystals, powder]) 01/01/1996 31/12/2500 -350290 01/01/1988 31/12/2500 LIBEN Albumins, albuminates and other albumin derivatives (excl. egg albumin and milk albumin [incl. concentrates of two or more whey proteins containing by weight > 80% whey proteins, calculated on the dry matter], and organic or inorganic compounds of mercury whether or not chemically defined) 01/01/1988 31/12/2500 -35029010 01/01/1988 31/12/1995 LIBEN Albumins, "incl. concentrates of two or more whey proteins containing by weight > 80% whey proteins, calculated on the dry matter", unfit or to be rendered unfit, for human consumption (excl. egg albumin) 01/01/1988 31/12/1995 -35029020 01/01/1996 31/12/2011 LIBEN Albumins, unfit, or to be rendered unfit, for human consumption (excl. egg albumin and milk albumin [incl. concentrates of two or more whey proteins containing by weight > 80% whey proteins, calculated on the dry matter]) 01/01/1996 31/12/2011 -35029020 01/01/2012 31/12/2500 LIBEN Albumins, unfit, or to be rendered unfit, for human consumption (excl. egg albumin and milk albumin [incl. concentrates of two or more whey proteins containing by weight > 80% whey proteins, calculated on the dry matter]) 01/01/2012 31/12/2500 -35029051 01/01/1988 31/12/1995 LIBEN Milk albumin "lactalbumin, incl. concentrates of two or more whey proteins, containing by weight > 80% whey proteins, calculated on the dry matter", fit for human consumption, dried "for example, in sheets, scales, flakes, powder" 01/01/1988 31/12/1995 -35029059 01/01/1988 31/12/1995 LIBEN Milk albumin "lactalbumin" (excl. dried, in sheets, flakes, crystals, powder, etc.) 01/01/1988 31/12/1995 -35029070 01/01/1988 31/12/2011 LIBEN Albumins, fit for human consumption (excl. egg albumin and milk albumin [incl. concentrates of two or more whey proteins containing by weight > 80% whey proteins, calculated on the dry matter]) 01/01/1988 31/12/2011 -35029070 01/01/2012 31/12/2500 LIBEN Albumins, fit for human consumption (excl. egg albumin and milk albumin [incl. concentrates of two or more whey proteins containing by weight > 80% whey proteins, calculated on the dry matter]) 01/01/2012 31/12/2500 -35029090 01/01/1988 31/12/2011 LIBEN Albuminates and other albumin derivatives 01/01/1988 31/12/2011 -35029090 01/01/2012 31/12/2500 LIBEN Albuminates and other albumin derivatives 01/01/2012 31/12/2500 -3503 01/01/1988 31/12/2500 LIBEN Gelatin, whether or not in square or rectangular sheets, whether or not surface-worked or coloured, and gelatin derivatives; isinglass; other glues of animal origin (excl. those packaged as glue for retail sale and weighing net <= 1 kg, and casein glues of heading 3501) 01/01/1988 31/12/2500 -350300 01/01/1988 31/12/2500 LIBEN Gelatin, whether or not in square or rectangular sheets, whether or not surface-worked or coloured, and gelatin derivatives; isinglass; other glues of animal origin (excl. those packaged as glue for retail sale and weighing net <= 1 kg, and casein glues of heading 3501) 01/01/1988 31/12/2500 -35030010 01/01/1988 31/12/2500 LIBEN Gelatin, whether or not in square or rectangular sheets, whether or not surface-worked or coloured, and derivatives thereof (excl. impure gelatins) 01/01/1988 31/12/2500 -35030050 01/01/1988 31/12/1992 LIBEN Bone glue (excl. that packaged as glue for retail sale and weighing =< 1 kg) 01/01/1988 31/12/1992 -35030080 01/01/1993 31/12/2500 LIBEN Isinglass; other glues of animal origin (excl. casein glues of heading 3501) 01/01/1993 31/12/2500 -35030090 01/01/1988 31/12/1992 LIBEN Isinglass and other glues of animal origin (excl. casein glues and bone glue) 01/01/1988 31/12/1992 -3504 01/01/1988 31/12/2500 LIBEN Peptones and their derivatives; other protein substances and their derivatives, n.e.s.; hide powder, whether or not chromed (excl. organic or inorganic compounds of mercury whether or not chemically defined) 01/01/1988 31/12/2500 -350400 01/01/1988 31/12/2500 LIBEN Peptones and their derivatives; other protein substances and their derivatives, n.e.s.; hide powder, whether or not chromed (excl. organic or inorganic compounds of mercury whether or not chemically defined) 01/01/1988 31/12/2500 -35040000 01/01/1988 31/12/2008 LIBEN Peptones and their derivatives; other albuminous substances and their derivatives, n.e.s.; hide powder, whether or not chromed 01/01/1988 31/12/2008 -35040010 01/01/2009 31/12/2011 LIBEN Concentrated milk proteins with a protein content > 85 % by weight, calculated on the dry matter 01/01/2009 31/12/2011 -35040010 01/01/2012 31/12/2500 LIBEN Concentrated milk proteins with a protein content > 85 % by weight, calculated on the dry matter 01/01/2012 31/12/2500 -35040090 01/01/2009 31/12/2011 LIBEN Peptones and their derivatives; other albuminous substances and their derivatives, n.e.s.; hide powder, whether or not chromed (excl. concentrated milk proteins with a protein content > 85 % by weight, calculated on the dry matter 01/01/2009 31/12/2011 -35040090 01/01/2012 31/12/2500 LIBEN Peptones and their derivatives; other albuminous substances and their derivatives, n.e.s.; hide powder, whether or not chromed (excl. concentrated milk proteins with a protein content > 85 % by weight, calculated on the dry matter 01/01/2012 31/12/2500 -3505 01/01/1988 31/12/2500 LIBEN Dextrins and other modified starches, e.g. pregelatinised or esterified starches; glues based on starches, dextrins or other modified starches (excl. those put up for retail sale and weighing net <= 1 kg) 01/01/1988 31/12/2500 -350510 01/01/1988 31/12/2500 LIBEN Dextrins and other modified starches, e.g. pregelatinised or esterified starches 01/01/1988 31/12/2500 -35051010 01/01/1988 31/12/2500 LIBEN Dextrins 01/01/1988 31/12/2500 -35051050 01/01/1988 31/12/2500 LIBEN Starches, etherified or esterified (excl. dextrins) 01/01/1988 31/12/2500 -35051090 01/01/1988 31/12/2500 LIBEN Modified starches (excl. etherified starches, esterified starches and dextrins) 01/01/1988 31/12/2500 -350520 01/01/1988 31/12/2500 LIBEN Glues based on starches, dextrins or other modified starches (excl. those put up for retail sale and weighing net <= 1 kg) 01/01/1988 31/12/2500 -35052010 01/01/1988 31/12/2500 LIBEN Glues containing < 25% starches, dextrins or other modified starches by weight (excl. those put up for retail sale and weighing net <= 1 kg) 01/01/1988 31/12/2500 -35052030 01/01/1988 31/12/2500 LIBEN Glues containing >= 25% but < 55% starches, dextrins or other modified starches by weight (excl. those put up for retail sale and weighing net <= 1 kg) 01/01/1988 31/12/2500 -35052050 01/01/1988 31/12/2500 LIBEN Glues containing >= 55% but < 80% starches, dextrins or other modified starches by weight (excl. those put up for retail sale and weighing net <= 1 kg) 01/01/1988 31/12/2500 -35052090 01/01/1988 31/12/2500 LIBEN Glues containing >= 80% starches, dextrins or other modified starches by weight (excl. those put up for retail sale and weighing net <= 1 kg) 01/01/1988 31/12/2500 -3505S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3505 and SITC section 5 01/01/1997 31/12/2500 -3505S592 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3505 and SITC group 592 01/01/1997 31/12/2500 -3506 01/01/1988 31/12/2500 LIBEN Prepared glues and other prepared adhesives, n.e.s.; products suitable for use as glues or adhesives, put up for retail sale as glues or adhesives, and weighing net <= 1 kg 01/01/1988 31/12/2500 -350610 01/01/1988 31/12/2500 LIBEN Products suitable for use as glues or adhesives put up for retail sale as glues or adhesives, with a net weight of <= 1 kg 01/01/1988 31/12/2500 -35061000 01/01/1993 31/12/2500 LIBEN Products suitable for use as glues or adhesives put up for retail sale as glues or adhesives, with a net weight of <= 1 kg 01/01/1993 31/12/2500 -35061010 01/01/1988 31/12/1992 LIBEN Cellulose-based glues put up for retail sale as adhesives and weighing =< 1 kg 01/01/1988 31/12/1992 -35061090 01/01/1988 31/12/1992 LIBEN Products put up for retail sale as glues or adhesives and weighing =< 1 kg (excl. cellulose-based glues) 01/01/1988 31/12/1992 -350691 01/01/1988 31/12/2500 LIBEN Adhesives based on polymers of headings 3901 to 3913 or on rubber (excl. put up for retail sale with a net weight of <= 1 kg) 01/01/1988 31/12/2500 -35069100 01/01/1988 31/12/2016 LIBEN Adhesives based on polymers of heading 3901 to 3913 or on rubber (excl. products suitable for use as glues or adhesives put up for retail sale as glues or adhesives, with a net weight of <= 1 kg) 01/01/1988 31/12/2016 -35069110 01/01/2017 31/12/2500 LIBEN Optically clear free-film adhesives and optically clear curable liquid adhesives of a kind used solely or principally for the manufacture of flat panel displays or touch-sensitive screen panels, based on polymers of headings 3901 to 3913 or on rubber 01/01/2017 31/12/2500 -35069190 01/01/2017 31/12/2500 LIBEN Adhesives based on polymers of headings 3901 to 3913 or on rubber (excl. put up for retail sale with a net weight of <= 1 kg, and those used mainly for the manufacture of flat panel displays or touch-sensitive screen panels) 01/01/2017 31/12/2500 -350699 01/01/1988 31/12/2500 LIBEN Glues, prepared, and other prepared adhesives, n.e.s. 01/01/1988 31/12/2500 -35069900 01/01/1993 31/12/2500 LIBEN Glues, prepared, and other prepared adhesives, n.e.s. 01/01/1993 31/12/2500 -35069910 01/01/1988 31/12/1992 LIBEN Glues based on natural resins (excl. those put up for retail sale as adhesives and weighing =< 1 kg) 01/01/1988 31/12/1992 -35069990 01/01/1988 31/12/1992 LIBEN Prepared glues and other prepared adhesives n.e.s. (excl. those put up for retail sale as glues or adhesives and weighing =< 1 kg) 01/01/1988 31/12/1992 -3507 01/01/1988 31/12/2500 LIBEN Enzymes; prepared enzymes, n.e.s. 01/01/1988 31/12/2500 -350710 01/01/1988 31/12/2500 LIBEN Rennet and concentrates thereof 01/01/1988 31/12/2500 -35071000 01/01/1988 31/12/2500 LIBEN Rennet and concentrates thereof 01/01/1988 31/12/2500 -350790 01/01/1988 31/12/2500 LIBEN Enzymes and prepared enzymes, n.e.s. (excl. rennet and concentrates thereof) 01/01/1988 31/12/2500 -35079000 01/01/1988 31/12/1996 LIBEN Enzymes and prepared enzymes n.e.s. (excl. rennet and concentrates thereof) 01/01/1988 31/12/1996 -35079010 01/01/1997 31/12/2009 LIBEN Lipoprotein lipase 01/01/1997 31/12/2009 -35079020 01/01/1997 31/12/2009 LIBEN Aspergillus alkaline protease 01/01/1997 31/12/2009 -35079030 01/01/2010 31/12/2500 LIBEN Lipoprotein lipase and aspergillus alkaline protease 01/01/2010 31/12/2500 -35079090 01/01/1997 31/12/2500 LIBEN Enzymes and prepared enzymes, n.e.s. (excl. rennet and concentrates thereof, lipoprotein lipase and Aspergillus alkaline protease) 01/01/1997 31/12/2500 -3507S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3507 and SITC section 5 01/01/1997 31/12/2500 -3507S516 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3507 and SITC group 516 01/01/1997 31/12/2500 -35CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 35 01/01/2002 31/12/2500 -35CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 35 01/01/2002 31/12/2500 -35CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 35 01/01/2002 31/12/2500 -35MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -35MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -35MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -35SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 35 01/01/1988 31/12/2500 -35SSS0 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 35 and SITC section 0 01/01/1997 31/12/2500 -35SSS025 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 35 and SITC group 025 01/01/1997 31/12/2500 -35SSS5 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 35 and SITC section 5 01/01/1992 31/12/2500 -35SSS516 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 35 and SITC group 516 01/01/1993 31/12/2500 -35SSS592 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 35 and SITC group 592 01/01/1992 31/12/2500 -35SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 35 and SITC section 9 01/01/1988 31/12/1996 -35SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 35 and SITC section 9 01/01/1997 31/12/2500 -35SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 35 and SITC group 999 01/01/1988 31/12/1996 -35SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 35 and SITC group 999 01/01/1997 31/12/2500 -36 01/01/1988 31/12/2500 LIBEN EXPLOSIVES; PYROTECHNIC PRODUCTS; MATCHES; PYROPHORIC ALLOYS; CERTAIN COMBUSTIBLE PREPARATIONS 01/01/1988 31/12/2500 -3601 01/01/1988 31/12/2500 LIBEN Propellent powders 01/01/1988 31/12/2500 -360100 01/01/1988 31/12/2500 LIBEN Propellent powders 01/01/1988 31/12/2500 -36010000 01/01/1988 31/12/2500 LIBEN Propellent powders 01/01/1988 31/12/2500 -3601S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3601 and SITC section 5 01/01/1997 31/12/2500 -3601S593 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3601 and SITC group 593 01/01/1997 31/12/2500 -3602 01/01/1988 31/12/2500 LIBEN Prepared explosives (excl. propellent powders) 01/01/1988 31/12/2500 -360200 01/01/1988 31/12/2500 LIBEN Prepared explosives (excl. propellent powders) 01/01/1988 31/12/2500 -36020000 01/01/1988 31/12/2500 LIBEN Prepared explosives (excl. propellent powders) 01/01/1988 31/12/2500 -3603 01/01/1988 31/12/2500 LIBEN Safety fuses; detonating fuses; percussion or detonating caps; igniters; electric detonators (excl. grenade detonators and cartridge cases, whether or not with percussion caps) 01/01/1988 31/12/2500 -360300 01/01/1988 31/12/2500 LIBEN Safety fuses; detonating fuses; percussion or detonating caps; igniters; electric detonators (excl. grenade detonators and cartridge cases, whether or not with percussion caps) 01/01/1988 31/12/2500 -36030010 01/01/1988 31/12/2017 LIBEN Stearic acid, industrial 01/01/1988 31/12/2017 -36030020 01/01/2018 31/12/2500 LIBEN Safety fuses 01/01/2018 31/12/2500 -36030030 01/01/2018 31/12/2500 LIBEN Detonating fuses 01/01/2018 31/12/2500 -36030040 01/01/2018 31/12/2500 LIBEN Percussion caps (excl. cartridge cases with percussion caps) 01/01/2018 31/12/2500 -36030050 01/01/2018 31/12/2500 LIBEN Detonating caps 01/01/2018 31/12/2500 -36030060 01/01/2018 31/12/2500 LIBEN Igniters 01/01/2018 31/12/2500 -36030080 01/01/2018 31/12/2500 LIBEN Electric detonators (excl. grenade detonators) 01/01/2018 31/12/2500 -36030090 01/01/1988 31/12/2017 LIBEN Oleic acid, industrial 01/01/1988 31/12/2017 -3603S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3603 and SITC section 5 01/01/1997 31/12/2500 -3603S593 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3603 and SITC group 593 01/01/1997 31/12/2500 -3604 01/01/1988 31/12/2500 LIBEN Fireworks, signalling flares, rain rockets, fog signals and other pyrotechnic articles (excl. cartridge blanks) 01/01/1988 31/12/2500 -360410 01/01/1988 31/12/2500 LIBEN Fireworks 01/01/1988 31/12/2500 -36041000 01/01/1988 31/12/2500 LIBEN Fireworks 01/01/1988 31/12/2500 -360490 01/01/1988 31/12/2500 LIBEN Signalling flares, rain rockets, fog signals and other pyrotechnic articles (excl. fireworks and cartridge blanks) 01/01/1988 31/12/2500 -36049000 01/01/1988 31/12/2500 LIBEN Signalling flares, rain rockets, fog signals and other pyrotechnic articles (excl. fireworks and cartridge blanks) 01/01/1988 31/12/2500 -3605 01/01/1988 31/12/2500 LIBEN Matches (excl. pyrotechnic articles of heading 3604) 01/01/1988 31/12/2500 -360500 01/01/1988 31/12/2500 LIBEN Matches (excl. pyrotechnic articles of heading 3604) 01/01/1988 31/12/2500 -36050000 01/01/1988 31/12/2500 LIBEN Matches (excl. pyrotechnic articles of heading 3604) 01/01/1988 31/12/2500 -3606 01/01/1988 31/12/2500 LIBEN Ferro-cerium and other pyrophoric alloys in all forms; metaldehyde, hexamethylenetetramine and similar products in tablets, sticks or similar forms, for use as fuel; alcohol-based fuels and prepared fuels of a similar kind, solid or in paste form; liquid gases and liquid fuels for lighters or igniters, in containers of <= 300 cc; resin torches, firelighters and the like 01/01/1988 31/12/2500 -360610 01/01/1988 31/12/2500 LIBEN Liquid or liquefied-gas fuels in containers of a kind used for filling or refilling cigarette or similar lighters, with a capacity of <= 300 cm³ 01/01/1988 31/12/2500 -36061000 01/01/1988 31/12/2500 LIBEN Liquid or liquefied-gas fuels in containers of a kind used for filling or refilling cigarette or similar lighters, with a capacity of <= 300 cm³ 01/01/1988 31/12/2500 -360690 01/01/1988 31/12/2500 LIBEN Ferro-cerium and other pyrophoric alloys in all forms; metaldehyde, hexamethylenetetramine and similar products in tablets, sticks or similar forms, for use as fuel; alcohol-based fuels and prepared fuels of a similar kind, whether solid or in paste form; resin torches, firelighters and the like 01/01/1988 31/12/2500 -36069010 01/01/1988 31/12/2500 LIBEN Ferro-cerium and other pyrophoric alloys in all forms 01/01/1988 31/12/2500 -36069090 01/01/1988 31/12/2500 LIBEN Metaldehyde, hexamethylenetetramine and similar products in tablets, sticks or similar forms, for use as fuel; alcohol-based fuels and prepared fuels of a similar kind, whether solid or in paste form; resin torches, firelighters and the like 01/01/1988 31/12/2500 -36CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 36 01/01/2002 31/12/2500 -36CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 36 01/01/2002 31/12/2500 -36CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 36 01/01/2002 31/12/2500 -36MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -36MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -36MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -36SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 36 01/01/1988 31/12/2500 -36SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 36 and SITC section 0 01/01/1997 31/12/2001 -36SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 36 and SITC group 000 01/01/1997 31/12/2001 -36SSS5 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 36 and SITC section 5 01/01/1990 31/12/2500 -36SSS572 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 36 and SITC group 572 01/01/1997 31/12/2500 -36SSS593 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 36 and SITC group 593 01/01/1990 31/12/2500 -36SSS6 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 36 and SITC section 6 01/01/1988 31/12/2500 -36SSS601 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 36 and SITC group 601 01/01/1988 31/12/2500 -36SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 36 and SITC section 8 01/01/1997 31/12/2500 -36SSS899 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 36 and SITC group 899 01/01/1997 31/12/2500 -36SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 36 and SITC section 9 01/01/1988 31/12/1996 -36SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 36 and SITC section 9 01/01/1997 31/12/2500 -36SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 36 and SITC group 999 01/01/1988 31/12/1996 -36SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 36 and SITC group 999 01/01/1997 31/12/2500 -37 01/01/1988 31/12/2500 LIBEN PHOTOGRAPHIC OR CINEMATOGRAPHIC GOODS 01/01/1988 31/12/2500 -3701 01/01/1988 31/12/2500 LIBEN Photographic plates and film in the flat, sensitised, unexposed, of any material other than paper, paperboard or textiles; instant print film in the flat, sensitised, unexposed, whether or not in packs 01/01/1988 31/12/2500 -370110 01/01/1988 31/12/2500 LIBEN Photographic plates and film in the flat, sensitised, unexposed, for X-ray (excl. of paper, paperboard and textiles) 01/01/1988 31/12/2500 -37011000 01/01/2010 31/12/2500 LIBEN Photographic plates and film in the flat, sensitised, unexposed, for X-ray (excl. of paper, paperboard and textiles) 01/01/2010 31/12/2500 -37011010 01/01/1988 31/12/2009 LIBEN Photographic plates and film in the flat for medical, dental or veterinary use, sensitised, unexposed, for X-ray (excl. of paper, paperboard or textiles) 01/01/1988 31/12/2009 -37011090 01/01/1988 31/12/2009 LIBEN Photographic plates and film in the flat, sensitised, unexposed, for X-ray (excl. of paper, paperboard and textiles; those for medical, dental or veterinary use) 01/01/1988 31/12/2009 -370120 01/01/1988 31/12/2500 LIBEN Instant print film in the flat, sensitised, unexposed, whether or not in packs 01/01/1988 31/12/2500 -37012000 01/01/1988 31/12/2500 LIBEN Instant print film in the flat, sensitised, unexposed, whether or not in packs 01/01/1988 31/12/2500 -370130 01/01/1988 31/12/2500 LIBEN Photographic plates and film in the flat, sensitised, unexposed, with any side > 255 mm 01/01/1988 31/12/2500 -37013000 01/01/1988 31/12/2500 LIBEN Photographic plates and film in the flat, sensitised, unexposed, with any side > 255 mm 01/01/1988 31/12/2500 -370191 01/01/1988 31/12/2500 LIBEN Photographic plates and film in the flat, sensitised, unexposed, of any material other than paper, paperboard or textiles, for colour photography "polychrome" (excl. instant print film) 01/01/1988 31/12/2500 -37019100 01/01/1990 31/12/2500 LIBEN Photographic plates and film in the flat, sensitised, unexposed, of any material other than paper, paperboard or textiles, for colour photography "polychrome" (excl. instant print film) 01/01/1990 31/12/2500 -37019110 01/01/1988 31/12/1989 LIBEN Disk-shaped film in the flat loaded into cassettes, sensitized, unexposed, for colour photography (excl. film in the flat with at least one side measuring > 255 mm, and instant-print film) 01/01/1988 31/12/1989 -37019190 01/01/1988 31/12/1989 LIBEN Photographic plates and film in the flat for colour photography, sensitized, unexposed, of any material other than paper, paperboard or textile materials (excl. photographic plates and film in the flat with at least one side measuring > 255 mm, instant-print film and disk-shaped film in the flat loaded into cassettes) 01/01/1988 31/12/1989 -370199 01/01/1988 31/12/2500 LIBEN Photographic plates and film in the flat for monochrome photography, sensitised, unexposed, of any material other than paper, paperboard or textiles (excl. X-ray film and photographic plates, film in the flat with any side > 255 mm, and instant print film) 01/01/1988 31/12/2500 -37019900 01/01/1988 31/12/2500 LIBEN Photographic plates and film in the flat for monochrome photography, sensitised, unexposed, of any material other than paper, paperboard or textiles (excl. X-ray film and photographic plates, film in the flat with any side > 255 mm, and instant print film) 01/01/1988 31/12/2500 -3702 01/01/1988 31/12/2500 LIBEN Photographic film in rolls, sensitised, unexposed, of any material other than paper, paperboard or textiles; instant print film in rolls, sensitised, unexposed 01/01/1988 31/12/2500 -370210 01/01/1988 31/12/2500 LIBEN Photographic film in rolls, unexposed, for X-ray (excl. of paper, paperboard or textiles) 01/01/1988 31/12/2500 -37021000 01/01/1988 31/12/2500 LIBEN Photographic film in rolls, unexposed, for X-ray (excl. of paper, paperboard or textiles) 01/01/1988 31/12/2500 -370220 01/01/1988 31/12/2006 LIBEN Instant print film in rolls, sensitised, unexposed 01/01/1988 31/12/2006 -37022000 01/01/1988 31/12/2006 LIBEN Instant print film in rolls, sensitised, unexposed 01/01/1988 31/12/2006 -370231 01/01/1988 31/12/2500 LIBEN Photographic film "incl. instant print film", in rolls, sensitised, unexposed, without perforations, width <= 105 mm, for colour photography "polychrome" (excl. that of paper, paperboard or textiles) 01/01/1988 31/12/2500 -37023110 01/01/1988 31/12/2006 LIBEN Photographic film in rolls, sensitised, unexposed, without perforations, width <= 105 mm, for colour photography "polychrome", length <= 30 m (excl. that of paper, paperboard or textiles) 01/01/1988 31/12/2006 -37023120 01/01/2007 31/12/2011 LIBEN Photographic film "incl. instant print film", in rolls, sensitised, unexposed, without perforations, width <= 105 mm, for colour photography "polychrome", length <= 30 m (excl. that of paper, paperboard or textiles) 01/01/2007 31/12/2011 -37023190 01/01/1988 31/12/1996 LIBEN Photographic film in rolls, sensitized, unexposed, without perforations, width <= 105 mm, for colour photography "polychrome", length > 30m (excl. that of paper, paperboard or textile materials) 01/01/1988 31/12/1996 -37023191 01/01/1997 31/12/2500 LIBEN Colour negative film of a width of >= 75 mm but <= 105 mm and of a length of >= 100 m for the manufacture of instant-picture film-packs, in rolls, sensitised, unexposed, without perforations (excl. that of paper, paperboard or textiles) 01/01/1997 31/12/2500 -37023197 01/01/2012 31/12/2500 LIBEN Photographic film "incl. instant print film", in rolls, sensitised, unexposed, without perforations, width <= 105 mm, for colour photography "polychrome" (excl. that of paper, paperboard or textiles and negative film of a width of >= 75 mm but <= 105 mm and of a length of >= 100 m for the manufacture of instant-picture film-packs) 01/01/2012 31/12/2500 -37023198 01/01/2007 31/12/2011 LIBEN Photographic film "incl. instant print film", in rolls, sensitised, unexposed, without perforations, width <= 105 mm, for colour photography "polychrome", length > 30 m (excl. that of paper, paperboard or textiles and negative film of a width of >= 75 mm but <= 105 mm and of a length of >= 100 m for the manufacture of instant-picture film-packs) 01/01/2007 31/12/2011 -37023199 01/01/1997 31/12/2006 LIBEN Photographic film in rolls, sensitised, unexposed, without perforations, width <= 105 mm, for colour photography "polychrome", length > 30 m (excl. that of paper, paperboard or textiles and negative film of a width of >= 75 mm but <= 105 mm and of a length of >= 100 m for the manufacture of instant-picture film-packs) 01/01/1997 31/12/2006 -370232 01/01/1988 31/12/2500 LIBEN Photographic film "incl. instant print film", in rolls, sensitised, unexposed, without perforations, width <= 105 mm, with silver halide emulsion for monochrome photography (excl. that of paper, paperboard or textiles and X-ray film) 01/01/1988 31/12/2500 -37023210 01/01/2007 31/12/2500 LIBEN Microfilm and photographic film "incl. instant print film" for the graphic arts, sensitised, in rolls, unexposed, without perforations, width <= 35 mm, with silver halide emulsion for monochrome photography (excl. that of paper, paperboard or textiles) 01/01/2007 31/12/2500 -37023211 01/01/1988 31/12/2006 LIBEN Microfilm and film for the graphic arts, sensitised, in rolls, unexposed, without perforations, width <= 35 mm, with silver halide emulsion for monochrome photography (excl. that of paper, paperboard or textiles) 01/01/1988 31/12/2006 -37023219 01/01/1988 31/12/2006 LIBEN Photographic film, sensitised, in rolls, unexposed, without perforations, width <= 35 mm, with silver halide emulsion for monochrome photography (excl. that of paper, paperboard or textiles, X-ray film, microfilm and film for the graphic arts) 01/01/1988 31/12/2006 -37023220 01/01/2007 31/12/2500 LIBEN Photographic film "incl. instant print film", sensitised, in rolls, unexposed, without perforations, width <= 35 mm, with silver halide emulsion for monochrome photography (excl. that of paper, paperboard or textiles, X-ray film, microfilm and film for the graphic arts) 01/01/2007 31/12/2500 -37023231 01/01/1988 31/12/2009 LIBEN Microfilm, sensitised, in rolls, unexposed, without perforations, width > 35 mm to 105 mm, and with silver halide emulsion for monochrome photography 01/01/1988 31/12/2009 -37023250 01/01/2007 31/12/2009 LIBEN Photographic film "incl. instant print film" for the graphic arts, sensitised, in rolls, unexposed, without perforations, width > 35 mm to 105 mm, and with silver halide emulsion for monochrome photography (excl. that of paper, paperboard or textiles) 01/01/2007 31/12/2009 -37023251 01/01/1988 31/12/2006 LIBEN Film for the graphic arts, sensitised, in rolls, unexposed, without perforations, width > 35 mm to 105 mm, and with silver halide emulsion for monochrome photography (excl. that of paper, paperboard or textiles) 01/01/1988 31/12/2006 -37023280 01/01/2007 31/12/2009 LIBEN Photographic film "incl. instant print film", sensitised, in rolls, unexposed, without perforations, of a width of > 35 mm to 105 mm and with silver halide emulsion other than for monochrome photography (excl. film made of paper, paperboard or textiles and films for X-ray, microfilm and film for the graphic arts) 01/01/2007 31/12/2009 -37023285 01/01/2010 31/12/2500 LIBEN Photographic film "incl. instant print film", sensitised, in rolls, unexposed, without perforations, of a width of > 35 mm to 105 mm and with silver halide emulsion other than for monochrome photography (excl. film made of paper, paperboard or textiles and films for X-ray) 01/01/2010 31/12/2500 -37023290 01/01/1993 31/12/2006 LIBEN Film, photographic, sensitised, in rolls, unexposed, without perforations, of a width of > 35 mm to 105 mm and with silver halide emulsion other than for monochrome photography (excl. film made of paper, paperboard or textiles and films for X-ray, microfilm and film for the graphic arts) 01/01/1993 31/12/2006 -37023291 01/01/1988 31/12/1992 LIBEN Photographic film, sensitized, in rolls, unexposed, without sprocket holes, width > 35 mm to 105 mm, with a silver halide emulsion, for black-amd-white photography, length =< 30 m (excl. that of paper, paperboard or textile materials, x-ray film, microfilm and film for the graphic arts) 01/01/1988 31/12/1992 -37023299 01/01/1988 31/12/1992 LIBEN Photographic film, sensitized, in rolls, unexposed, without sprocket holes, width > 35 mm to 105 mm, with a silver halide emulsion, for black-and-white photography, length > 30 m (excl. that of paper, paperboard or textile materials, x-ray film, microfilm and film for the graphic arts) 01/01/1988 31/12/1992 -370239 01/01/1988 31/12/2500 LIBEN Photographic film "incl. instant print film", sensitised, in rolls, unexposed, without perforations, width <= 105 mm, for monochrome photography (excl. film with silver halide emulsion, film made of paper, paperboard or textiles and X-ray film) 01/01/1988 31/12/2500 -37023900 01/01/1988 31/12/2006 LIBEN Photographic film, sensitised, in rolls, unexposed, without perforations, width <= 105 mm, for monochrome photography (excl. film with silver halide emulsion, film made of paper, paperboard or textiles and X-ray film) 01/01/1988 31/12/2006 -37023900 01/01/2007 31/12/2500 LIBEN Photographic film "incl. instant print film", sensitised, in rolls, unexposed, without perforations, width <= 105 mm, for monochrome photography (excl. film with silver halide emulsion, film made of paper, paperboard or textiles and X-ray film) 01/01/2007 31/12/2500 -370241 01/01/1988 31/12/2500 LIBEN Photographic film "incl. instant print film", sensitised, in rolls, unexposed, without perforations, width > 610 mm, length > 200 m, for colour photography "polychrome" (excl. that of paper, paperboard or textiles) 01/01/1988 31/12/2500 -37024100 01/01/1988 31/12/2006 LIBEN Photographic film, sensitised, in rolls, unexposed, without perforations, width > 610 mm, length > 200 m, for colour photography "polychrome" (excl. that of paper, paperboard or textiles) 01/01/1988 31/12/2006 -37024100 01/01/2007 31/12/2500 LIBEN Photographic film "incl. instant print film", sensitised, in rolls, unexposed, without perforations, width > 610 mm, length > 200 m, for colour photography "polychrome" (excl. that of paper, paperboard or textiles) 01/01/2007 31/12/2500 -370242 01/01/1988 31/12/2500 LIBEN Photographic film "incl. instant print film", sensitised, in rolls, unexposed, without perforations, width > 610 mm, length > 200 m, for monochrome photography (excl. that of paper, paperboard or textiles) 01/01/1988 31/12/2500 -37024200 01/01/1988 31/12/2006 LIBEN Photographic film, sensitised, in rolls, unexposed, without perforations, width > 610 mm, length > 200 m, for monochrome photography (excl. that of paper, paperboard or textiles) 01/01/1988 31/12/2006 -37024200 01/01/2007 31/12/2500 LIBEN Photographic film "incl. instant print film", sensitised, in rolls, unexposed, without perforations, width > 610 mm, length > 200 m, for monochrome photography (excl. that of paper, paperboard or textiles) 01/01/2007 31/12/2500 -370243 01/01/1988 31/12/2500 LIBEN Photographic film "incl. instant print film", sensitised, in rolls, unexposed, without perforations, width > 610 mm, length <= 200 m (excl. that of paper, paperboard or textiles) 01/01/1988 31/12/2500 -37024300 01/01/1988 31/12/2006 LIBEN Photographic film, sensitised, in rolls, unexposed, without perforations, width > 610 mm, length <= 200 m (excl. that of paper, paperboard or textiles) 01/01/1988 31/12/2006 -37024300 01/01/2007 31/12/2500 LIBEN Photographic film "incl. instant print film", sensitised, in rolls, unexposed, without perforations, width > 610 mm, length <= 200 m (excl. that of paper, paperboard or textiles) 01/01/2007 31/12/2500 -370244 01/01/1988 31/12/2500 LIBEN Photographic film "incl. instant print film"m, sensitised, in rolls, unexposed, without perforations, width > 105 mm to 610 mm (excl. that of paper, paperboard or textiles) 01/01/1988 31/12/2500 -37024400 01/01/1988 31/12/2006 LIBEN Photographic film, sensitised, in rolls, unexposed, without perforations, width > 105 mm to 610 mm (excl. that of paper, paperboard or textiles) 01/01/1988 31/12/2006 -37024400 01/01/2007 31/12/2500 LIBEN Photographic film "incl. instant print film"m, sensitised, in rolls, unexposed, without perforations, width > 105 mm to 610 mm (excl. that of paper, paperboard or textiles) 01/01/2007 31/12/2500 -370251 01/01/1988 31/12/2011 LIBEN Films, photographic, sensitised, in rolls, unexposed, with perforations, for colour photography "polychrome", with a width of <= 16 mm and a length of <= 14 m (excl. of paper, paperboard or textiles) 01/01/1988 31/12/2011 -37025100 01/01/1993 31/12/2011 LIBEN Films, photographic, sensitised, in rolls, unexposed, with perforations, for colour photography "polychrome", with a width of <= 16 mm and a length of <= 14 m (excl. of paper, paperboard or textiles) 01/01/1993 31/12/2011 -37025110 01/01/1988 31/12/1992 LIBEN Photographic film, sensitized, in rolls, unexposed, with sprocket holes, for colour photography, width =< 16 mm, length =< 5 m 01/01/1988 31/12/1992 -37025190 01/01/1988 31/12/1992 LIBEN Photographic film, sensitized, in rolls, unexposed, with sprocket holes, for colour photography, width =< 16 mm, length > 5 m to 14 m 01/01/1988 31/12/1992 -370252 01/01/1988 31/12/2500 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for colour photography "polychrome", width <= 16 mm (excl. of paper, paperboard or textiles) 01/01/1988 31/12/2500 -37025200 01/01/2004 31/12/2011 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for colour photography "polychrome", width <= 16 mm, length > 14 m (excl. of paper, paperboard or textiles) 01/01/2004 31/12/2011 -37025200 01/01/2012 31/12/2500 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for colour photography "polychrome", width <= 16 mm (excl. of paper, paperboard or textiles) 01/01/2012 31/12/2500 -37025210 01/01/1988 31/12/2003 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforation, for colour photography "polychrome", width <= 16 mm, length > 14 but <= 30 m (excl. of paper, paperboard or textiles) 01/01/1988 31/12/2003 -37025290 01/01/1988 31/12/2003 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforation, for colour photography "polychrome", width <= 16 mm, length > 30 m (excl. of paper, paperboard or textiles) 01/01/1988 31/12/2003 -370253 01/01/1988 31/12/2500 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for colour photography "polychrome", width > 16 mm to 35 mm, length <= 30 m, for slides 01/01/1988 31/12/2500 -37025300 01/01/1988 31/12/2500 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for colour photography "polychrome", width > 16 mm to 35 mm, length <= 30 m, for slides 01/01/1988 31/12/2500 -370254 01/01/1988 31/12/2500 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for colour photography "polychrome", width > 16 mm but <= 35 mm, length <= 30 m (excl. of paper, paperboard and textiles; for slides) 01/01/1988 31/12/2500 -37025400 01/01/1988 31/12/1997 LIBEN Photographic film, sensitized, in rolls, unexposed, with perforations, for colour photography "polychrome", width > 16 mm but <= 35 mm, length <= 30 m (excl. of paper, paperboard and textiles; slide and instant print roll film) 01/01/1988 31/12/1997 -37025400 01/01/2010 31/12/2500 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for colour photography "polychrome", width > 16 mm but <= 35 mm, length <= 30 m (excl. of paper, paperboard and textiles; for slides) 01/01/2010 31/12/2500 -37025410 01/01/1998 31/12/2009 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for colour photography "polychrome", width > 16 mm but <= 24 mm, length <= 30 m (excl. of paper, paperboard and textiles; slide and instant print roll film) 01/01/1998 31/12/2009 -37025490 01/01/1998 31/12/2009 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for colour photography "polychrome", width > 24 mm but <= 35 mm, length <= 30 m (excl. of paper, paperboard and textiles; slide and instant print roll film) 01/01/1998 31/12/2009 -370255 01/01/1988 31/12/2500 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for colour photography "polychrome", width > 16 mm but <= 35 mm, length > 30 m (excl. of paper, paperboard and textiles; for slides) 01/01/1988 31/12/2500 -37025500 01/01/1988 31/12/2500 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for colour photography "polychrome", width > 16 mm but <= 35 mm, length > 30 m (excl. of paper, paperboard and textiles; for slides) 01/01/1988 31/12/2500 -370256 01/01/1988 31/12/2500 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for colour photography "polychrome", width > 35 mm (excl. that of paper, paperboard or textiles) 01/01/1988 31/12/2500 -37025600 01/01/2004 31/12/2500 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for colour photography "polychrome", width > 35 mm (excl. that of paper, paperboard or textiles) 01/01/2004 31/12/2500 -37025610 01/01/1988 31/12/2003 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for colour photography "polychrome", width > 35 mm, length <= 30 m (excl. that of paper, paperboard or textiles) 01/01/1988 31/12/2003 -37025690 01/01/1988 31/12/2003 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for colour photography "polychrome", width > 35 mm, length > 30 m (excl. that of paper, paperboard or textiles) 01/01/1988 31/12/2003 -370291 01/01/1988 31/12/2011 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width <= 16 mm (excl. of paper, paperboard or textiles) 01/01/1988 31/12/2011 -37029110 01/01/1988 31/12/2001 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width <= 16 mm, length <= 14 m, for the graphic arts (excl. of paper, paperboard or textiles) 01/01/1988 31/12/2001 -37029120 01/01/2002 31/12/2011 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width <= 16 mm, for the graphic arts (excl. of paper, paperboard or textiles) 01/01/2002 31/12/2011 -37029180 01/01/2002 31/12/2011 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width <= 16 mm (excl. of paper, paperboard and textiles; film for the graphic arts) 01/01/2002 31/12/2011 -37029190 01/01/1988 31/12/2001 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width <= 16 mm, length <= 14 m (excl. of paper, paperboard and textiles; film for the graphic arts) 01/01/1988 31/12/2001 -370292 01/01/1988 31/12/2001 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width <= 16 mm, length > 14 m (excl. of paper, paperboard or textiles) 01/01/1988 31/12/2001 -37029210 01/01/1988 31/12/2001 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width <= 16 mm, length > 14 m, for the graphic arts (excl. of paper, paperboard or textiles) 01/01/1988 31/12/2001 -37029290 01/01/1988 31/12/2001 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width <= 16 mm, length > 14 m (excl. of paper, paperboard and textiles; film for the graphic arts) 01/01/1988 31/12/2001 -370293 01/01/1988 31/12/2011 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width > 16 mm but <= 35 mm, length <= 30 m (excl. of paper, paperboard and textiles; X-ray film and instant print roll film) 01/01/1988 31/12/2011 -37029310 01/01/1988 31/12/2011 LIBEN Microfilm and film for the graphic arts, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width > 16 mm to 35 mm, length <= 30 m 01/01/1988 31/12/2011 -37029390 01/01/1988 31/12/2011 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width > 16 mm but <= 35 mm, length <= 30 m (excl. of paper, paperboard and textiles; X-ray film, instant print roll film, microfilm and film for the graphic arts) 01/01/1988 31/12/2011 -370294 01/01/1988 31/12/2011 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width > 16 mm but <= 35 mm, length > 30 m (excl. of paper, paperboard and textiles; X-ray film and instant print roll film) 01/01/1988 31/12/2011 -37029410 01/01/1988 31/12/2011 LIBEN Microfilm and film for the graphic arts, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width > 16 mm to 35 mm, length > 30 m 01/01/1988 31/12/2011 -37029490 01/01/1988 31/12/2011 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width > 16 mm but <= 35 mm, length > 30 m (excl. of paper, paperboard and textiles; X-ray film, instant print roll film, microfilm and film for the graphic arts) 01/01/1988 31/12/2011 -370295 01/01/1988 31/12/2011 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width > 35 mm (excl. that of paper, paperboard or textiles, X-ray film, microfilm and film for the graphic arts) 01/01/1988 31/12/2011 -37029500 01/01/1988 31/12/2011 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width > 35 mm (excl. that of paper, paperboard or textiles, X-ray film, microfilm and film for the graphic arts) 01/01/1988 31/12/2011 -370296 01/01/2012 31/12/2500 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width <= 35 mm, length <= 30 m (excl. of paper, paperboard and textiles; X-ray film) 01/01/2012 31/12/2500 -37029610 01/01/2012 31/12/2500 LIBEN Microfilm and film for the graphic arts, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width <= 35 mm, length <= 30 m 01/01/2012 31/12/2500 -37029690 01/01/2012 31/12/2500 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width <= 35 mm, length <= 30 m (excl. of paper, paperboard and textiles; X-ray film, instant print roll film, microfilm and film for the graphic arts) 01/01/2012 31/12/2500 -370297 01/01/2012 31/12/2500 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width <= 35 mm, length > 30 m (excl. of paper, paperboard and textiles; X-ray film) 01/01/2012 31/12/2500 -37029710 01/01/2012 31/12/2500 LIBEN Microfilm and film for the graphic arts, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width <= 35 mm, length > 30 m (excl. of paper, paperboard and textiles) 01/01/2012 31/12/2500 -37029790 01/01/2012 31/12/2500 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width <= 35 mm, length > 30 m (excl. of paper, paperboard and textiles; X-ray film, instant print roll film, microfilm and film for the graphic arts) 01/01/2012 31/12/2500 -370298 01/01/2012 31/12/2500 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width > 35 mm (excl. of paper, paperboard and textiles; X-ray film) 01/01/2012 31/12/2500 -37029800 01/01/2012 31/12/2500 LIBEN Photographic film, sensitised, in rolls, unexposed, with perforations, for monochrome photography, width > 35 mm (excl. of paper, paperboard and textiles; X-ray film) 01/01/2012 31/12/2500 -3703 01/01/1988 31/12/2500 LIBEN Photographic paper, paperboard and textiles, sensitised, unexposed 01/01/1988 31/12/2500 -370310 01/01/1988 31/12/2500 LIBEN Photographic paper, paperboard and textiles, sensitised, unexposed, in rolls > 610 mm wide 01/01/1988 31/12/2500 -37031000 01/01/1988 31/12/2500 LIBEN Photographic paper, paperboard and textiles, sensitised, unexposed, in rolls > 610 mm wide 01/01/1988 31/12/2500 -370320 01/01/1988 31/12/2500 LIBEN Photographic paper, paperboard and textiles, sensitised, unexposed, for colour photography "polychrome" (excl. products in rolls > 610 mm wide) 01/01/1988 31/12/2500 -37032000 01/01/2010 31/12/2500 LIBEN Photographic paper, paperboard and textiles, sensitised, unexposed, for colour photography "polychrome" (excl. products in rolls > 610 mm wide) 01/01/2010 31/12/2500 -37032010 01/01/1988 31/12/2009 LIBEN Photographic paper, paperboard and textiles, sensitised, unexposed, for colour "polychrome" photographs obtained from reversal type film (excl. products in rolls > 610 mm wide) 01/01/1988 31/12/2009 -37032090 01/01/1988 31/12/2009 LIBEN Photographic paper, paperboard and textiles, sensitised, unexposed, for colour "polychrome" photographs (excl. products in rolls > 610 mm wide and photographs obtained from reversal type film) 01/01/1988 31/12/2009 -370390 01/01/1988 31/12/2500 LIBEN Photographic paper, paperboard and textiles, sensitised, unexposed, for monochrome photography (excl. products in rolls > 610 mm wide) 01/01/1988 31/12/2500 -37039000 01/01/2010 31/12/2500 LIBEN Photographic paper, paperboard and textiles, sensitised, unexposed, for monochrome photography (excl. products in rolls > 610 mm wide) 01/01/2010 31/12/2500 -37039010 01/01/1988 31/12/2009 LIBEN Photographic paper, paperboard and textiles, unexposed, for monochrome photography, sensitised with silver or platinum salts (excl. products in rolls > 610 mm wide) 01/01/1988 31/12/2009 -37039090 01/01/1988 31/12/2009 LIBEN Photographic paper, paperboard and textiles, sensitised, unexposed, for monochrome photography (excl. products in rolls > 610 mm wide and products sensitised with silver or platinum salts) 01/01/1988 31/12/2009 -3703S8 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 3703 and SITC section 8 01/01/1998 31/12/2500 -3703S882 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 3703 and SITC group 882 01/01/1998 31/12/2500 -3704 01/01/1988 31/12/2500 LIBEN Photographic plates, film, paper, paperboard and textiles, exposed but not developed 01/01/1988 31/12/2500 -370400 01/01/1988 31/12/2500 LIBEN Photographic plates, film, paper, paperboard and textiles, exposed but not developed 01/01/1988 31/12/2500 -37040010 01/01/1988 31/12/2500 LIBEN Photographic plates and film, exposed but not developed (excl. products made of paper, paperboard or textiles) 01/01/1988 31/12/2500 -37040090 01/01/1988 31/12/2500 LIBEN Photographic paper, paperboard and textiles, exposed but not developed 01/01/1988 31/12/2500 -3705 01/01/1988 31/12/2500 LIBEN Photographic plates and film, exposed and developed (excl. products made of paper, paperboard or textiles, cinematographic film and ready-to-use printing plates) 01/01/1988 31/12/2500 -370500 01/01/2017 31/12/2500 LIBEN Photographic plates and film, exposed and developed (excl. products made of paper, paperboard or textiles, cinematographic film and ready-to-use printing plates) 01/01/2017 31/12/2500 -37050010 01/01/2017 31/12/2500 LIBEN Photographic film, exposed and developed, for offset reproduction 01/01/2017 31/12/2500 -37050090 01/01/2017 31/12/2500 LIBEN Photographic plates and film, exposed and developed (excl. products made of paper, paperboard or textiles, for offset reproduction and cinematographic film and ready-to-use printing plates) 01/01/2017 31/12/2500 -370510 01/01/1988 31/12/2016 LIBEN Photographic plates and film, exposed and developed, for offset reproduction (excl. products made of paper, paperboard or textiles and ready-to-use plates) 01/01/1988 31/12/2016 -37051000 01/01/1988 31/12/2016 LIBEN Photographic plates and film, exposed and developed, for offset reproduction (excl. products made of paper, paperboard or textiles and ready-to-use plates) 01/01/1988 31/12/2016 -370520 01/01/1988 31/12/2006 LIBEN Microfilm, exposed and developed (excl. microfilm for offset reproduction) 01/01/1988 31/12/2006 -37052000 01/01/1988 31/12/2006 LIBEN Microfilm, exposed and developed (excl. microfilm for offset reproduction) 01/01/1988 31/12/2006 -370590 01/01/1988 31/12/2016 LIBEN Photographic plates and film, exposed and developed (excl. products made of paper, paperboard or textiles, cinematographic film and film for offset reproduction) 01/01/1988 31/12/2016 -37059000 01/01/1999 31/12/2006 LIBEN Photographic plates and film, exposed and developed (excl. products made of paper, paperboard or textiles, cinematographic film, film for offset reproduction and microfilm) 01/01/1999 31/12/2006 -37059010 01/01/1988 31/12/1998 LIBEN Photographic plates and film, exposed and developed, for the graphic arts (excl. products made of paper, paperboard or textiles, film for offset reproduction and microfilm) 01/01/1988 31/12/1998 -37059010 01/01/2007 31/12/2016 LIBEN Microfilm, exposed and developed (excl. microfilm for offset reproduction) 01/01/2007 31/12/2016 -37059090 01/01/1988 31/12/1998 LIBEN Photographic plates and film, exposed and developed (excl. products made of paper, paperboard or textiles, cinematographic film, film for offset reproduction or the graphic arts and microfilm) 01/01/1988 31/12/1998 -37059090 01/01/2007 31/12/2016 LIBEN Photographic plates and film, exposed and developed (excl. products made of paper, paperboard or textiles, cinematographic film, film for offset reproduction and microfilm) 01/01/2007 31/12/2016 -3706 01/01/1988 31/12/2500 LIBEN Cinematographic film, exposed and developed, whether or not incorporating soundtrack or consisting only of soundtrack 01/01/1988 31/12/2500 -370610 01/01/1988 31/12/2500 LIBEN Cinematographic film, exposed and developed, whether or not incorporating soundtrack or consisting only of soundtrack, width >= 35 mm 01/01/1988 31/12/2500 -37061010 01/01/1988 31/12/1994 LIBEN Cinematographic film, exposed and developed, width >= 35 mm, comprising soundtrack only 01/01/1988 31/12/1994 -37061010 01/01/1999 31/12/2011 LIBEN Cinematographic film, exposed and developed, consisting only of soundtrack, width >= 35 mm 01/01/1999 31/12/2011 -37061011 01/01/1995 31/12/1998 LIBEN Negatives and intermediate positives of cinematographic films, exposed and developed, consisting only of sound track, width >= 35 mm 01/01/1995 31/12/1998 -37061019 01/01/1995 31/12/1998 LIBEN Positives of cinematographic film, exposed and developed, consisting only of sound track, width < 35 mm (excl. intermediate positives) 01/01/1995 31/12/1998 -37061020 01/01/2012 31/12/2500 LIBEN Cinematographic film, exposed and developed, consisting only of soundtrack, width >= 35 mm; Negatives and intermediate positives of cinematographic film, exposed and developed, whether or not incorporating soundtrack, width >= 35 mm 01/01/2012 31/12/2500 -37061091 01/01/1988 31/12/2011 LIBEN Negatives and intermediate positives of cinematographic film, exposed and developed, whether or not incorporating soundtrack, width >= 35 mm 01/01/1988 31/12/2011 -37061099 01/01/1988 31/12/2500 LIBEN Positives of cinematographic film, exposed and developed, whether or not incorporating soundtrack, width >= 35 mm (excl. intermediate positives, and consisting only of soundtrack) 01/01/1988 31/12/2500 -370690 01/01/1988 31/12/2500 LIBEN Cinematographic film, exposed and developed, whether or not incorporating soundtrack or consisting only of soundtrack, width < 35 mm 01/01/1988 31/12/2500 -37069010 01/01/1988 31/12/1994 LIBEN Cinematographic film, exposed and developed, with sound track only, width < 35 mm 01/01/1988 31/12/1994 -37069010 01/01/1999 31/12/2011 LIBEN Cinematographic film, exposed and developed, consisting only of soundtrack, width < 35 mm 01/01/1999 31/12/2011 -37069011 01/01/1995 31/12/1998 LIBEN Negatives and intermediate positives of cinematographic film, exposed and developed, consisting only of sound track, width < 35 mm 01/01/1995 31/12/1998 -37069019 01/01/1995 31/12/1998 LIBEN Positives of cinematographic films, exposed and developed, consisting only of sound track, width < 35 mm (excl. intermediate positives) 01/01/1995 31/12/1998 -37069031 01/01/1988 31/12/2011 LIBEN Negatives and intermediate positives of cinematographic film, exposed and developed, whether or not incorporating soundtrack, width < 35 mm 01/01/1988 31/12/2011 -37069051 01/01/1988 31/12/2011 LIBEN Positives of newsreels, exposed and developed, whether or not incorporating soundtrack, width < 35 mm (excl. intermediate positives) 01/01/1988 31/12/2011 -37069052 01/01/2012 31/12/2500 LIBEN Cinematographic film, exposed and developed, consisting only of soundtrack, width < 35 mm; Negatives, intermediate positives and newsreels of cinematographic film, exposed and developed, whether or not incorporating soundtrack, width < 35 mm 01/01/2012 31/12/2500 -37069091 01/01/1988 31/12/2500 LIBEN Positives of cinematographic film, exposed and developed, whether or not incorporating soundtrack, width < 10 mm (excl. intermediate positives and newsreels, and consisting only of soundtrack) 01/01/1988 31/12/2500 -37069099 01/01/1988 31/12/2500 LIBEN Positives of cinematographic film, exposed and developed, whether or not incorporating soundtrack, width >= 10 mm but < 35 mm (excl. intermediate positives and newsreels, and consisting only of soundtrack) 01/01/1988 31/12/2500 -3707 01/01/1988 31/12/2500 LIBEN Chemical preparations for photographic uses (excl. varnishes, glues, adhesives and similar preparations); unmixed products for photographic uses, in measured doses or put up for retail sale ready for use (excl. salts, precious-metal compounds and products of heading 2843 to 2846) 01/01/1988 31/12/2500 -370710 01/01/1988 31/12/2500 LIBEN Sensitising emulsions "for photographic uses" 01/01/1988 31/12/2500 -37071000 01/01/1988 31/12/2500 LIBEN Sensitising emulsions "for photographic uses" 01/01/1988 31/12/2500 -370790 01/01/1988 31/12/2500 LIBEN Preparation of chemicals for photographic uses, incl. unmixed products put up in measured portions or put up for retail sale in a form ready for use (excl. varnishes, glues, adhesives and similar preparations, sensitising emulsions and salts and precious-metal compounds etc. of heading 2843 to 2846) 01/01/1988 31/12/2500 -37079011 01/01/1988 31/12/2009 LIBEN Developers and fixers for colour "polychrome" photography in the form of chemical preparations for photographic use, incl. unmixed products, in measured doses or put up for retail sale ready for use, for film and photographic plates (excl. salts and compounds of heading 2843 to 2846) 01/01/1988 31/12/2009 -37079019 01/01/1988 31/12/2009 LIBEN Developers and fixers for colour "polychrome" photography in the form of chemical preparations for photographic use, incl. unmixed products in measured doses or put up for retail sale ready for use (excl. products for film and photographic plates, salts and compounds of heading 2843 to 2846) 01/01/1988 31/12/2009 -37079020 01/01/2010 31/12/2016 LIBEN Developers and fixers in the form of chemical preparations for photographic use, incl. unmixed products, in measured doses or put up for retail sale ready for use (excl. salts and compounds of heading 2843 to 2846) 01/01/2010 31/12/2016 -37079020 01/01/2020 31/12/2500 LIBEN Developers and fixers in the form of chemical preparations for photographic use, incl. unmixed products, in measured doses or put up for retail sale ready for use (excl. salts and compounds of heading 2843 to 2846) 01/01/2020 31/12/2500 -37079021 01/01/2017 31/12/2019 LIBEN Thermoplastic or electrostatic printer/copier toner cartridges, without moving parts 01/01/2017 31/12/2019 -37079029 01/01/2017 31/12/2019 LIBEN Developers and fixers in the form of chemical preparations for photographic use, incl. unmixed products, in measured doses or put up for retail sale ready for use (excl. salts and compounds of heading 2843 to 2846, and printer/copier toner cartridges) 01/01/2017 31/12/2019 -37079030 01/01/1988 31/12/2009 LIBEN Developers and fixers for monochrome photography in the form of chemical preparations for photographic use, incl. unmixed products in measured doses or put up for retail sale ready for use (excl. salts and compounds of heading 2843 to 2846) 01/01/1988 31/12/2009 -37079090 01/01/1988 31/12/2500 LIBEN Preparation of chemicals for photographic uses, incl. unmixed products put up in measured portions or put up for retail sale in a form ready for use (excl. varnishes, glues, adhesives and similar preparations, sensitising emulsions, developers and fixers and salts and precious-metal compounds etc. of heading 2843 to 2846) 01/01/1988 31/12/2500 -37CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 37 01/01/2002 31/12/2500 -37CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 37 01/01/2002 31/12/2500 -37CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 37 01/01/2002 31/12/2500 -37MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -37MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -37MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -37PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 37 carried by post 01/01/1988 31/12/2500 -37PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 37 carried by post 01/01/1988 31/12/2500 -37PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 37 carried by post 01/01/1988 31/12/2500 -37SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 37 01/01/1988 31/12/2500 -37SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 37 and SITC section 0 01/01/1997 31/12/2001 -37SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 37 and SITC group 000 01/01/1997 31/12/2001 -37SSS8 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 37 and SITC section 8 01/01/1992 31/12/2500 -37SSS882 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 37 and SITC group 882 01/01/1992 31/12/2500 -37SSS883 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 37 and SITC group 883 01/01/1997 31/12/2500 -37SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 37 and SITC section 9 01/01/1988 31/12/1996 -37SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 37 and SITC section 9 01/01/1997 31/12/2500 -37SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 37 and SITC group 999 01/01/1988 31/12/1996 -37SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 37 and SITC group 999 01/01/1997 31/12/2500 -38 01/01/1988 31/12/2500 LIBEN MISCELLANEOUS CHEMICAL PRODUCTS 01/01/1988 31/12/2500 -3801 01/01/1988 31/12/2500 LIBEN Artificial graphite; colloidal or semi-colloidal graphite; preparations based on graphite or other carbon in the form of pastes, blocks, plates or other semi-manufactures 01/01/1988 31/12/2500 -380110 01/01/1988 31/12/2500 LIBEN Artificial graphite (excl. retort graphite, retort carbon and goods of artificial graphite, incl. refractory materials based on artificial graphite) 01/01/1988 31/12/2500 -38011000 01/01/1988 31/12/2500 LIBEN Artificial graphite (excl. retort graphite, retort carbon and goods of artificial graphite, incl. refractory materials based on artificial graphite) 01/01/1988 31/12/2500 -380120 01/01/1988 31/12/2500 LIBEN Colloidal or semi-colloidal graphite 01/01/1988 31/12/2500 -38012010 01/01/1988 31/12/2500 LIBEN Colloidal graphite in suspension in oil; semi-colloidal graphite 01/01/1988 31/12/2500 -38012090 01/01/1988 31/12/2500 LIBEN Colloidal graphite (excl. in suspension in oil and semi-colloidal graphite) 01/01/1988 31/12/2500 -380130 01/01/1988 31/12/2500 LIBEN Carbonaceous pastes for electrodes and similar pastes for furnace linings 01/01/1988 31/12/2500 -38013000 01/01/1988 31/12/2500 LIBEN Carbonaceous pastes for electrodes and similar pastes for furnace linings 01/01/1988 31/12/2500 -380190 01/01/1988 31/12/2500 LIBEN Preparations based on graphite or other carbon in the form of pastes, blocks, plates or other semi-manufactures (excl. carbonaceous pastes for electrodes and similar pastes for furnace linings) 01/01/1988 31/12/2500 -38019000 01/01/1988 31/12/2500 LIBEN Preparations based on graphite or other carbon in the form of pastes, blocks, plates or other semi-manufactures (excl. carbonaceous pastes for electrodes and similar pastes for furnace linings) 01/01/1988 31/12/2500 -3801S5 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 3801 and SITC section 5 01/01/2001 31/12/2500 -3801S598 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 3801 and SITC group 598 01/01/2001 31/12/2500 -3802 01/01/1988 31/12/2500 LIBEN Activated carbon; activated natural mineral products; animal black, whether or not spent 01/01/1988 31/12/2500 -380210 01/01/1988 31/12/2500 LIBEN Activated carbon (excl. medicaments or deodorant products for fridges, vehicles etc., put up for retail sale) 01/01/1988 31/12/2500 -38021000 01/01/1988 31/12/2500 LIBEN Activated carbon (excl. medicaments or deodorant products for fridges, vehicles etc., put up for retail sale) 01/01/1988 31/12/2500 -380290 01/01/1988 31/12/2500 LIBEN Activated kieselguhr and other activated natural mineral products; animal black, whether or not spent (excl. activated carbon, calcinated diatomite without the addition of sintering agents and activated chemical products) 01/01/1988 31/12/2500 -38029000 01/01/1988 31/12/2500 LIBEN Activated kieselguhr and other activated natural mineral products; animal black, whether or not spent (excl. activated carbon, calcinated diatomite without the addition of sintering agents and activated chemical products) 01/01/1988 31/12/2500 -3802S5 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 3802 and SITC section 5 01/01/2001 31/12/2500 -3802S598 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 3802 and SITC group 598 01/01/2001 31/12/2500 -3803 01/01/1988 31/12/2500 LIBEN Tall oil, whether or not refined 01/01/1988 31/12/2500 -380300 01/01/1988 31/12/2500 LIBEN Tall oil, whether or not refined 01/01/1988 31/12/2500 -38030010 01/01/1988 31/12/2500 LIBEN Crude tall oil 01/01/1988 31/12/2500 -38030090 01/01/1988 31/12/2500 LIBEN Tall oil, whether or not refined (excl. crude tall oil) 01/01/1988 31/12/2500 -3803S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3803 and SITC section 5 01/01/1997 31/12/2500 -3803S598 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3803 and SITC group 598 01/01/1997 31/12/2500 -3804 01/01/1988 31/12/2500 LIBEN Residual lyes from the manufacture of wood pulp, whether or not concentrated, desugared or chemically treated, incl. lignin sulphonates (excl. tall oil, sodium hydroxide "caustic soda" and sulphate pitch) 01/01/1988 31/12/2500 -380400 01/01/1988 31/12/2500 LIBEN Residual lyes from the manufacture of wood pulp, whether or not concentrated, desugared or chemically treated, incl. lignin sulphonates (excl. tall oil, sodium hydroxide "caustic soda" and sulphate pitch) 01/01/1988 31/12/2500 -38040000 01/01/2010 31/12/2500 LIBEN Residual lyes from the manufacture of wood pulp, whether or not concentrated, desugared or chemically treated, incl. lignin sulphonates (excl. tall oil, sodium hydroxide "caustic soda" and sulphate pitch) 01/01/2010 31/12/2500 -38040010 01/01/1988 31/12/2009 LIBEN Sulphite lye, concentrated 01/01/1988 31/12/2009 -38040090 01/01/1988 31/12/2009 LIBEN Residual lyes from the manufacture of wood pulp, whether or not concentrated, desugared or chemically treated, incl. lignin sulphonates (excl. sulphite lye, crude tall oil, sodium hydroxide "caustic soda" and sulphate pitch) 01/01/1988 31/12/2009 -3804S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3804 and SITC section 5 01/01/1997 31/12/2500 -3804S598 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3804 and SITC group 598 01/01/1997 31/12/2500 -3805 01/01/1988 31/12/2500 LIBEN Gum, wood or sulphate turpentine and other terpenic oils produced by the distillation or other treatment of coniferous woods; crude dipentene; sulphite turpentine and other crude para-cymene; pine oil containing alpha-terpineol as the main constituent 01/01/1988 31/12/2500 -380510 01/01/1988 31/12/2500 LIBEN Gum, wood or sulphate turpentine oils 01/01/1988 31/12/2500 -38051010 01/01/1988 31/12/2500 LIBEN Gum turpentine 01/01/1988 31/12/2500 -38051030 01/01/1988 31/12/2500 LIBEN Wood turpentine 01/01/1988 31/12/2500 -38051090 01/01/1988 31/12/2500 LIBEN Sulphate turpentine 01/01/1988 31/12/2500 -380520 01/01/1988 31/12/2006 LIBEN Pine oil containing alpha-terpineol as the main constituent 01/01/1988 31/12/2006 -38052000 01/01/1988 31/12/2006 LIBEN Pine oil containing alpha-terpineol as the main constituent 01/01/1988 31/12/2006 -380590 01/01/1988 31/12/2500 LIBEN Crude dipentene; sulphite turpentine and other crude para-cymene; terpenic oils produced by the distillation or other treatment of coniferous woods (excl. gum turpentine, wood turpentine and sulphate turpentine) 01/01/1988 31/12/2500 -38059000 01/01/1988 31/12/2006 LIBEN Crude dipentene; sulphate turpentine and other crude para-cymene; terpenic oils produced by the distillation or other treatment of coniferous woods (excl. gum turpentine, wood turpentine, sulphate turpentine and pine oil containing alpha-terpineol as the main constituent) 01/01/1988 31/12/2006 -38059010 01/01/2007 31/12/2500 LIBEN Pine oil containing alpha-terpineol as the main constituent 01/01/2007 31/12/2500 -38059090 01/01/2007 31/12/2500 LIBEN Crude dipentene; sulphite turpentine and other crude para-cymene; terpenic oils produced by the distillation or other treatment of coniferous woods (excl. gum turpentine, wood turpentine, sulphate turpentine and pine oil containing alpha-terpineol as the main constituent) 01/01/2007 31/12/2500 -3805S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3805 and SITC section 5 01/01/1997 31/12/2500 -3805S598 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3805 and SITC group 598 01/01/1997 31/12/2500 -3806 01/01/1988 31/12/2500 LIBEN Rosin, resin acids and derivatives thereof; rosin spirit and rosin oils; run gums 01/01/1988 31/12/2500 -380610 01/01/1988 31/12/2500 LIBEN Rosin and resin acids 01/01/1988 31/12/2500 -38061000 01/01/2010 31/12/2500 LIBEN Rosin and resin acids 01/01/2010 31/12/2500 -38061010 01/01/1988 31/12/2009 LIBEN Rosin obtained from fresh oleoresins 01/01/1988 31/12/2009 -38061090 01/01/1988 31/12/1991 LIBEN Rosin (excl. gum rosin) 01/01/1988 31/12/1991 -38061090 01/01/1992 31/12/2009 LIBEN Rosin and resin acids (excl. those obtained from fresh oleoresins) 01/01/1992 31/12/2009 -380620 01/01/1988 31/12/2500 LIBEN Salts of rosin, of resin acids or of derivatives of rosin or resin acids (excl. salts of rosin adducts) 01/01/1988 31/12/2500 -38062000 01/01/1988 31/12/1995 LIBEN Salts of rosin or of resin acids 01/01/1988 31/12/1995 -38062000 01/01/1996 31/12/2500 LIBEN Salts of rosin, of resin acids or of derivatives of rosin or resin acids (excl. salts of rosin adducts) 01/01/1996 31/12/2500 -380630 01/01/1988 31/12/2500 LIBEN Ester gums 01/01/1988 31/12/2500 -38063000 01/01/1988 31/12/2500 LIBEN Ester gums 01/01/1988 31/12/2500 -380690 01/01/1988 31/12/2500 LIBEN Derivatives of rosin, incl. salts of rosin adducts, and of resin acids, light and heavy resin oils and modified natural resins obtained by heat treatment "run gums" (excl. salts of rosin, of resin acids or salts of derivatives of rosin or resin acids, and ester gums) 01/01/1988 31/12/2500 -38069000 01/01/1988 31/12/1991 LIBEN Resin acids and derivatives thereof, rosin derivatives, rosin spirit and rosin oils; run gums (excl. rosin, salts of rosin or of resin acids and ester gum) 01/01/1988 31/12/1991 -38069000 01/01/1992 31/12/1995 LIBEN Derivatives of rosin and of resin acids, rosin spirit and rosin oils; run gums (excl. rosin, resin acids, ester gum and salts of rosin or of resin acids and ester gum) 01/01/1992 31/12/1995 -38069000 01/01/1996 31/12/2500 LIBEN Derivatives of rosin, incl. salts of rosin adducts, and of resin acids, light and heavy resin oils and modified natural resins obtained by heat treatment "run gums" (excl. salts of rosin, of resin acids or salts of derivatives of rosin or resin acids, and ester gums) 01/01/1996 31/12/2500 -3807 01/01/1988 31/12/2500 LIBEN Wood tar; wood tar oils; wood creosote; wood naphtha; vegetable pitch; brewer's pitch and similar preparations based on rosin, resin acids or vegetable pitch (excl. Burgundy pitch, yellow pitch, stearin pitch, fatty acid pitch, fatty tar and glycerin pitch) 01/01/1988 31/12/2500 -380700 01/01/1988 31/12/2500 LIBEN Wood tar; wood tar oils; wood creosote; wood naphtha; vegetable pitch; brewer's pitch and similar preparations based on rosin, resin acids or vegetable pitch (excl. Burgundy pitch, yellow pitch, stearin pitch, fatty acid pitch, fatty tar and glycerin pitch) 01/01/1988 31/12/2500 -38070010 01/01/1988 31/12/2500 LIBEN Wood tar 01/01/1988 31/12/2500 -38070090 01/01/1988 31/12/2500 LIBEN Brewer's pitch and similar preparations based on rosin, resin acids or vegetable pitch; wood tar oils, wood creosote, wood naphtha and vegetable pitch (excl. wood tar, Burgundy pitch, yellow pitch, stearin pitch, fatty acid pitch, fatty tar and glycerin pitch) 01/01/1988 31/12/2500 -3808 01/01/1988 31/12/2500 LIBEN Insecticides, rodenticides, fungicides, herbicides, anti-sprouting products and plant-growth regulators, disinfectants and similar products, put up for retail sale or as preparations or articles, e.g. sulphur-treated bands, wicks and candles, and fly-papers 01/01/1988 31/12/2500 -380810 01/01/1988 31/12/2006 LIBEN Insecticides put up for retail sale or as preparations or articles 01/01/1988 31/12/2006 -38081000 01/01/1988 31/12/1993 LIBEN Insecticides put up for retail sale or as preparations or articles 01/01/1988 31/12/1993 -38081010 01/01/1994 31/12/2006 LIBEN Insecticides based on pyrethroids, put up in forms or packings for retail sale or as preparations or articles 01/01/1994 31/12/2006 -38081020 01/01/1994 31/12/2006 LIBEN Insecticides based on chlorinated hydrocarbons, put up in forms or packings for retail sale or as preparations or articles 01/01/1994 31/12/2006 -38081030 01/01/1994 31/12/2006 LIBEN Insecticides based on carbamates, put up in forms or packings for retail sale or as preparations or articles 01/01/1994 31/12/2006 -38081040 01/01/1994 31/12/2006 LIBEN Insecticides based on organophosphorus compounds, put up in forms or packings for retail sale or as preparations or articles 01/01/1994 31/12/2006 -38081090 01/01/1994 31/12/2006 LIBEN Insecticides put up in forms or packings for retail sale or as preparations or articles (excl. such products based on pyrethroids, chlorinated hydrocarbons, carbamates or organophosphorus compounds) 01/01/1994 31/12/2006 -380820 01/01/1988 31/12/2006 LIBEN Fungicides put up for retail sale or as preparations or articles 01/01/1988 31/12/2006 -38082010 01/01/1988 31/12/2006 LIBEN Fungicide preparations based on copper compounds, inorganic 01/01/1988 31/12/2006 -38082015 01/01/1994 31/12/2006 LIBEN Fungicides, put up in forms or packings for retail sale or as preparations or articles, inorganic (excl. preparations based on copper compounds) 01/01/1994 31/12/2006 -38082030 01/01/1994 31/12/2006 LIBEN Fungicides based on dithiocarbamates, put up in forms or packings for retail sale or as preparations or articles (excl. inorganic fungicides) 01/01/1994 31/12/2006 -38082040 01/01/1994 31/12/2006 LIBEN Fungicides based on benzimidazoles, put up in forms or packings for retail sale or as preparations or articles (excl. inorganic fungicides) 01/01/1994 31/12/2006 -38082050 01/01/1994 31/12/2006 LIBEN Fungicides based on diazoles or triazoles, put up in forms or packings for retail sale or as preparations or articles (excl. inorganic fungicides) 01/01/1994 31/12/2006 -38082060 01/01/1994 31/12/2006 LIBEN Fungicides based on diazines or morpholines, put up in forms or packings for retail sale or as preparations or articles (excl. inorganic fungicides) 01/01/1994 31/12/2006 -38082080 01/01/1994 31/12/2006 LIBEN Fungicides put up in forms or packings for retail sale or as preparations or articles (excl. inorganic fungicides and fungicides based on dithiocarbamates, benzimidazoles, diazoles, triazoles, diazines or morpholines) 01/01/1994 31/12/2006 -38082090 01/01/1988 31/12/1993 LIBEN Fungicides put up for retail sale or as preparations or articles (excl. preparations based on copper compounds) 01/01/1988 31/12/1993 -380830 01/01/1988 31/12/2006 LIBEN Herbicides, germination inhibitors and plant-growth regulators put up for retail sale or as preparations or articles 01/01/1988 31/12/2006 -38083010 01/01/1988 31/12/1993 LIBEN Herbicides put up for retail sale or as preparations or articles 01/01/1988 31/12/1993 -38083011 01/01/1994 31/12/2006 LIBEN Herbicides based on phenoxy-phytohormones, put up in forms or packings for retail sale or as preparations or articles 01/01/1994 31/12/2006 -38083013 01/01/1994 31/12/2006 LIBEN Herbicides based on triazines, put up in forms or packings for retail sale or as preparations or articles 01/01/1994 31/12/2006 -38083015 01/01/1994 31/12/2006 LIBEN Herbicides based on amides, put up in forms or packings for retail sale or as preparations or articles 01/01/1994 31/12/2006 -38083017 01/01/1994 31/12/2006 LIBEN Herbicides based on carbamates, put up in forms or packings for retail sale or as preparations or articles 01/01/1994 31/12/2006 -38083021 01/01/1994 31/12/2006 LIBEN Herbicides based on dinitroaniline derivatives, put up in forms or packings for retail sale or as preparations or articles 01/01/1994 31/12/2006 -38083023 01/01/1994 31/12/2006 LIBEN Herbicides based on derivatives of urea, uracil or of sulphonylurea, put up in forms or packings for retail sale or as preparations or articles 01/01/1994 31/12/2006 -38083027 01/01/1994 31/12/2006 LIBEN Herbicides put up in forms or packings for retail sale or as preparations or articles (excl. such products based on phenoxy-phytohormones, triazines, amides, carbamates, dinitroaniline derivatives or derivatives of urea, uracil or of sulphonylurea) 01/01/1994 31/12/2006 -38083030 01/01/1988 31/12/2006 LIBEN Anti-sprouting products put up for retail sale or as preparations or articles 01/01/1988 31/12/2006 -38083090 01/01/1988 31/12/2006 LIBEN Plant-growth regulators put up for retail sale or as preparations or articles 01/01/1988 31/12/2006 -380840 01/01/1988 31/12/2006 LIBEN Disinfectants put up for retail sale or as preparations or articles 01/01/1988 31/12/2006 -38084000 01/01/1988 31/12/1993 LIBEN Disinfectants and the like put up for retail sale or as preparations or articles 01/01/1988 31/12/1993 -38084010 01/01/1994 31/12/2006 LIBEN Disinfectants, based on quaternary ammonium salts, put up for retail sale or as preparations or articles 01/01/1994 31/12/2006 -38084020 01/01/1994 31/12/2006 LIBEN Disinfectants, based on halogenated compounds, put up for retail sale or as preparations or articles 01/01/1994 31/12/2006 -38084090 01/01/1994 31/12/2006 LIBEN Disinfectants, put up for retail sale or as preparations or articles (excl. such products based on quaternary ammonium salts or halogenated compounds) 01/01/1994 31/12/2006 -380850 01/01/2007 31/12/2016 LIBEN Goods of heading 3808 containing one or more of the following substances: aldrin (ISO); binapacryl (ISO); camphechlor (ISO) (toxaphene); captafol (ISO); chlordane (ISO); chlordimeform (ISO); chlorobenzilate (ISO); DDT (ISO) (clofenotane (INN), 1,1,1-trichloro-2,2-bis(p-chlorophenyl)ethane); dieldrin (ISO, INN); 4,6-dinitro-o-cresol (DNOC (ISO)) or its salts; dinoseb (ISO), its salts or its esters; ethylene dibromide (ISO) (1,2-dibromoethane); ethylene dichloride (ISO) (1,2-dichloroethane); fluoroacetamide (ISO); heptachlor (ISO); hexachlorobenzene (ISO); 1,2,3,4,5,6-hexachlorocyclohexane (HCH (ISO)), including lindane (ISO, INN); mercury compounds; methamidophos (ISO); monocrotophos (ISO); oxirane (ethylene oxide); parathion (ISO); parathion-methyl (ISO) (methyl-parathion); pentachlorophenol (ISO), its salts or its esters; phosphamidon (ISO); 2,4,5-T (ISO) (2,4,5-trichlorophenoxyacetic acid), its salts or its esters; tributyltin compounds. Also dustable powder formulations containing a mixture of benomyl (ISO), carbofuran (ISO) and thiram (ISO). 01/01/2007 31/12/2016 -38085000 01/01/2007 31/12/2011 LIBEN Goods containing one or more of aldrin (ISO), binapacryl (ISO), camphechlor (ISO) "toxaphene", captafol (ISO), chlordane (ISO), chlordimeform (ISO), chlorobenzilate (ISO), DDT (ISO) "clofenotane (INN), 1,1,1-trichloro-2,2-bis"p-chlorophenyl"ethane], dieldrin (ISO) (INN), dinoseb (ISO), its salts or its esters, ethylene dibromide (ISO) "1,2-dibromoethane", ethylene dichloride (ISO) "1,2-dichloroethane", fluoroacetamide (ISO), heptachlor (ISO), hexachlorobenzene (ISO), 1,2,3,4,5,6-hexachlorocyclohexane [HCH (ISO)], incl. lindane (ISO) (INN), mercury compounds, methamidophos (ISO), monocrotophos (ISO), oxirane "ethylene oxide", parathion (ISO), parathion-methyl (ISO) "methyl-parathion", pentachlorophenol (ISO), phosphamidon (ISO), 2,4,5-T (ISO) "2,4,5-trichlorophenoxyacetic acid", its salts or its esters 01/01/2007 31/12/2011 -38085000 01/01/2012 31/12/2016 LIBEN Goods of heading 3808 containing one or more of the following substances: aldrin (ISO); binapacryl (ISO); camphechlor (ISO) (toxaphene); captafol (ISO); chlordane (ISO); chlordimeform (ISO); chlorobenzilate (ISO); DDT (ISO) (clofenotane (INN), 1,1,1-trichloro-2,2-bis(p-chlorophenyl)ethane); dieldrin (ISO, INN); 4,6-dinitro-o-cresol (DNOC (ISO)) or its salts; dinoseb (ISO), its salts or its esters; ethylene dibromide (ISO) (1,2-dibromoethane); ethylene dichloride (ISO) (1,2-dichloroethane); fluoroacetamide (ISO); heptachlor (ISO); hexachlorobenzene (ISO); 1,2,3,4,5,6-hexachlorocyclohexane (HCH (ISO)), including lindane (ISO, INN); mercury compounds; methamidophos (ISO); monocrotophos (ISO); oxirane (ethylene oxide); parathion (ISO); parathion-methyl (ISO) (methyl-parathion); pentachlorophenol (ISO), its salts or its esters; phosphamidon (ISO); 2,4,5-T (ISO) (2,4,5-trichlorophenoxyacetic acid), its salts or its esters; tributyltin compounds. Also dustable powder formulations containing a mixture of benomyl (ISO), carbofuran (ISO) and thiram (ISO). 01/01/2012 31/12/2016 -380852 01/01/2017 31/12/2500 LIBEN DDT (ISO) "clofenotane (INN)", in packings of a net weight content <= 300 g 01/01/2017 31/12/2500 -38085200 01/01/2017 31/12/2500 LIBEN DDT (ISO) "clofenotane (INN)", in packings of a net weight content <= 300 g 01/01/2017 31/12/2500 -380859 01/01/2017 31/12/2500 LIBEN Goods of heading 3808 containing one or more of the following substances: alachlor (ISO); aldicarb (ISO); aldrin (ISO); azinphos-methyl (ISO); binapacryl (ISO); camphechlor (ISO) (toxaphene); captafol (ISO); chlordane (ISO); chlordimeform (ISO); chlorobenzilate (ISO); dieldrin (ISO, INN); 4,6-dinitro-o-cresol (DNOC (ISO)) or its salts; dinoseb (ISO), its salts or its esters; endosulfan (ISO); ethylene dibromide (ISO) (1,2-dibromoethane); ethylene dichloride (ISO) (1,2-dichloroethane); fluoroacetamide (ISO); heptachlor (ISO); hexachlorobenzene (ISO); 1,2,3,4,5,6-hexachlorocyclohexane (HCH (ISO)), including lindane (ISO, INN); mercury compounds; methamidophos (ISO); monocrotophos (ISO); oxirane (ethylene oxide); parathion (ISO); parathion-methyl (ISO) (methyl-parathion); penta-and-octabromodiphenyl ethers; pentachlorophenol (ISO), its salts or its esters; perfluorooctane sulphonic acid and its salts; perfluorooctane sulphonamides; perfluorooctane sulphonyl fluoride; phosphamidon (ISO); 2,4,5-T (ISO) (2,4,5-trichlorophenoxyacetic acid), its salts or its esters; tributyltin compounds. Also dustable powder formulations containing a mixture of benomyl (ISO), carbofuran (ISO) and thiram (ISO) 01/01/2017 31/12/2500 -38085900 01/01/2017 31/12/2500 LIBEN Goods of heading 3808 containing one or more of the following substances: alachlor (ISO); aldicarb (ISO); aldrin (ISO); azinphos-methyl (ISO); binapacryl (ISO); camphechlor (ISO) (toxaphene); captafol (ISO); chlordane (ISO); chlordimeform (ISO); chlorobenzilate (ISO); dieldrin (ISO, INN); 4,6-dinitro-o-cresol (DNOC (ISO)) or its salts; dinoseb (ISO), its salts or its esters; endosulfan (ISO); ethylene dibromide (ISO) (1,2-dibromoethane); ethylene dichloride (ISO) (1,2-dichloroethane); fluoroacetamide (ISO); heptachlor (ISO); hexachlorobenzene (ISO); 1,2,3,4,5,6-hexachlorocyclohexane (HCH (ISO)), including lindane (ISO, INN); mercury compounds; methamidophos (ISO); monocrotophos (ISO); oxirane (ethylene oxide); parathion (ISO); parathion-methyl (ISO) (methyl-parathion); penta-and-octabromodiphenyl ethers; pentachlorophenol (ISO), its salts or its esters; perfluorooctane sulphonic acid and its salts; perfluorooctane sulphonamides; perfluorooctane sulphonyl fluoride; phosphamidon (ISO); 2,4,5-T (ISO) (2,4,5-trichlorophenoxyacetic acid), its salts or its esters; tributyltin compounds. Also dustable powder formulations containing a mixture of benomyl (ISO), carbofuran (ISO) and thiram (ISO) 01/01/2017 31/12/2500 -380861 01/01/2017 31/12/2500 LIBEN Goods of heading 3808, containing alpha-cypermethrin (ISO), bendiocarb (ISO), bifenthrin (ISO), chlorfenapyr (ISO), cyfluthrin (ISO), deltamethrin "INN, ISO", etofenprox (INN), fenitrothion (ISO), lambda-cyhalothrin (ISO), malathion (ISO), pirimiphos-methyl (ISO) or propoxur (ISO), in packings of a net weight content <= 300 g 01/01/2017 31/12/2500 -38086100 01/01/2017 31/12/2500 LIBEN Goods of heading 3808, containing alpha-cypermethrin (ISO), bendiocarb (ISO), bifenthrin (ISO), chlorfenapyr (ISO), cyfluthrin (ISO), deltamethrin "INN, ISO", etofenprox (INN), fenitrothion (ISO), lambda-cyhalothrin (ISO), malathion (ISO), pirimiphos-methyl (ISO) or propoxur (ISO), in packings of a net weight content <= 300 g 01/01/2017 31/12/2500 -380862 01/01/2017 31/12/2500 LIBEN Goods of heading 3808, containing alpha-cypermethrin (ISO), bendiocarb (ISO), bifenthrin (ISO), chlorfenapyr (ISO), cyfluthrin (ISO), deltamethrin "INN, ISO", etofenprox (INN), fenitrothion (ISO), lambda-cyhalothrin (ISO), malathion (ISO), pirimiphos-methyl (ISO) or propoxur (ISO), in packings of a net weight content > 300 g but <= 7,5 kg 01/01/2017 31/12/2500 -38086200 01/01/2017 31/12/2500 LIBEN Goods of heading 3808, containing alpha-cypermethrin (ISO), bendiocarb (ISO), bifenthrin (ISO), chlorfenapyr (ISO), cyfluthrin (ISO), deltamethrin "INN, ISO", etofenprox (INN), fenitrothion (ISO), lambda-cyhalothrin (ISO), malathion (ISO), pirimiphos-methyl (ISO) or propoxur (ISO), in packings of a net weight content > 300 g but <= 7,5 kg 01/01/2017 31/12/2500 -380869 01/01/2017 31/12/2500 LIBEN Goods of heading 3808, containing alpha-cypermethrin (ISO), bendiocarb (ISO), bifenthrin (ISO), chlorfenapyr (ISO), cyfluthrin (ISO), deltamethrin "INN, ISO", etofenprox (INN), fenitrothion (ISO), lambda-cyhalothrin (ISO), malathion (ISO), pirimiphos-methyl (ISO) or propoxur (ISO) (excl. in packings of a net weight content <= 7,5 kg) 01/01/2017 31/12/2500 -38086900 01/01/2017 31/12/2500 LIBEN Goods of heading 3808, containing alpha-cypermethrin (ISO), bendiocarb (ISO), bifenthrin (ISO), chlorfenapyr (ISO), cyfluthrin (ISO), deltamethrin "INN, ISO", etofenprox (INN), fenitrothion (ISO), lambda-cyhalothrin (ISO), malathion (ISO), pirimiphos-methyl (ISO) or propoxur (ISO) (excl. in packings of a net weight content <= 7,5 kg) 01/01/2017 31/12/2500 -380890 01/01/1988 31/12/2006 LIBEN Rodenticides and other plant protection products put up for retail sale or as preparations or articles (excl. insecticides, fungicides, herbicides and disinfectants) 01/01/1988 31/12/2006 -38089000 01/01/1988 31/12/1993 LIBEN Rodenticides and other plant protection products put up for retail sale or as preparations or articles (excl. insecticides, fungicides, herbicides and disinfectants) 01/01/1988 31/12/1993 -38089010 01/01/1994 31/12/2006 LIBEN Rodenticides, put up for retail sale or as preparations or articles 01/01/1994 31/12/2006 -38089090 01/01/1994 31/12/2006 LIBEN Plant protection products, put up in forms or packings for retail sale or as preparations or articles (excl. insecticides, fungicides, herbicides, disinfectants and rodenticides) 01/01/1994 31/12/2006 -380891 01/01/2007 31/12/2500 LIBEN Insecticides, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheadings 3808.52 to 3808.69) 01/01/2007 31/12/2500 -38089110 01/01/2007 31/12/2011 LIBEN Insecticides based on pyrethroids, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089110 01/01/2012 31/12/2016 LIBEN Insecticides based on pyrethroids, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2012 31/12/2016 -38089110 01/01/2017 31/12/2500 LIBEN Insecticides based on pyrethroids, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheadings 3808.52 to 3808.69) 01/01/2017 31/12/2500 -38089120 01/01/2007 31/12/2011 LIBEN Insecticides based on chlorinated hydrocarbons, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089120 01/01/2012 31/12/2016 LIBEN Insecticides based on chlorinated hydrocarbons, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2012 31/12/2016 -38089120 01/01/2017 31/12/2500 LIBEN Insecticides based on chlorinated hydrocarbons, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheadings 3808.52 to 3808.69) 01/01/2017 31/12/2500 -38089130 01/01/2007 31/12/2011 LIBEN Insecticides based on carbamates, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089130 01/01/2012 31/12/2016 LIBEN Insecticides based on carbamates, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2012 31/12/2016 -38089130 01/01/2017 31/12/2500 LIBEN Insecticides based on carbamates, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheadings 3808.52 to 3808.69) 01/01/2017 31/12/2500 -38089140 01/01/2007 31/12/2011 LIBEN Insecticides based on organophosphorus compounds, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089140 01/01/2012 31/12/2016 LIBEN Insecticides based on organophosphorus compounds, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2012 31/12/2016 -38089140 01/01/2017 31/12/2500 LIBEN Insecticides based on organophosphorus compounds, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheadings 3808.52 to 3808.69) 01/01/2017 31/12/2500 -38089190 01/01/2007 31/12/2011 LIBEN Insecticides put up in forms or packings for retail sale or as preparations or articles (excl. such products based on pyrethroids, chlorinated hydrocarbons, carbamates or organophosphorus compounds and goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089190 01/01/2012 31/12/2016 LIBEN Insecticides put up in forms or packings for retail sale or as preparations or articles (excl. such products based on pyrethroids, chlorinated hydrocarbons, carbamates or organophosphorus compounds and goods of subheading 3808.50) 01/01/2012 31/12/2016 -38089190 01/01/2017 31/12/2500 LIBEN Insecticides put up in forms or packings for retail sale or as preparations or articles (excl. such products based on pyrethroids, chlorinated hydrocarbons, carbamates or organophosphorus compounds, and goods of subheadings 3808.52 to 3808.69) 01/01/2017 31/12/2500 -380892 01/01/2007 31/12/2500 LIBEN Fungicides, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.59) 01/01/2007 31/12/2500 -38089210 01/01/2007 31/12/2011 LIBEN Fungicide preparations based on copper compounds, inorganic (excl. goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089210 01/01/2012 31/12/2500 LIBEN Fungicide preparations based on copper compounds, inorganic (excl. goods of subheading 3808.59) 01/01/2012 31/12/2500 -38089220 01/01/2007 31/12/2011 LIBEN Fungicides, put up in forms or packings for retail sale or as preparations or articles, inorganic (excl. preparations based on copper compounds and goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089220 01/01/2012 31/12/2500 LIBEN Fungicides, put up in forms or packings for retail sale or as preparations or articles, inorganic (excl. preparations based on copper compounds and goods of subheading 3808.59) 01/01/2012 31/12/2500 -38089230 01/01/2007 31/12/2011 LIBEN Fungicides based on dithiocarbamates, put up in forms or packings for retail sale or as preparations or articles (excl. inorganic fungicides and goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089230 01/01/2012 31/12/2500 LIBEN Fungicides based on dithiocarbamates, put up in forms or packings for retail sale or as preparations or articles (excl. inorganic fungicides and goods of subheading 3808.59) 01/01/2012 31/12/2500 -38089240 01/01/2007 31/12/2011 LIBEN Fungicides based on benzimidazoles, put up in forms or packings for retail sale or as preparations or articles (excl. inorganic fungicides and goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089240 01/01/2012 31/12/2500 LIBEN Fungicides based on benzimidazoles, put up in forms or packings for retail sale or as preparations or articles (excl. inorganic fungicides and goods of subheading 3808.59) 01/01/2012 31/12/2500 -38089250 01/01/2007 31/12/2011 LIBEN Fungicides based on diazoles or triazoles, put up in forms or packings for retail sale or as preparations or articles (excl. inorganic fungicides and goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089250 01/01/2012 31/12/2500 LIBEN Fungicides based on diazoles or triazoles, put up in forms or packings for retail sale or as preparations or articles (excl. inorganic fungicides and goods of subheading 3808.59) 01/01/2012 31/12/2500 -38089260 01/01/2007 31/12/2011 LIBEN Fungicides based on diazines or morpholines, put up in forms or packings for retail sale or as preparations or articles (excl. inorganic fungicides and goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089260 01/01/2012 31/12/2500 LIBEN Fungicides based on diazines or morpholines, put up in forms or packings for retail sale or as preparations or articles (excl. inorganic fungicides and goods of subheading 3808.59) 01/01/2012 31/12/2500 -38089290 01/01/2007 31/12/2011 LIBEN Fungicides put up in forms or packings for retail sale or as preparations or articles (excl. inorganic fungicides and fungicides based on dithiocarbamates, benzimidazoles, diazoles, triazoles, diazines or morpholines and goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089290 01/01/2012 31/12/2500 LIBEN Fungicides put up in forms or packings for retail sale or as preparations or articles (excl. inorganic fungicides and fungicides based on dithiocarbamates, benzimidazoles, diazoles, triazoles, diazines or morpholines, and goods of subheading 3808.59) 01/01/2012 31/12/2500 -380893 01/01/2007 31/12/2500 LIBEN Herbicides, anti-sprouting products and plant-growth regulators, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.59) 01/01/2007 31/12/2500 -38089311 01/01/2007 31/12/2011 LIBEN Herbicides based on phenoxy-phytohormones, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089311 01/01/2012 31/12/2500 LIBEN Herbicides based on phenoxy-phytohormones, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.59) 01/01/2012 31/12/2500 -38089313 01/01/2007 31/12/2011 LIBEN Herbicides based on triazines, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089313 01/01/2012 31/12/2500 LIBEN Herbicides based on triazines, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.59) 01/01/2012 31/12/2500 -38089315 01/01/2007 31/12/2011 LIBEN Herbicides based on amides, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089315 01/01/2012 31/12/2016 LIBEN Herbicides based on amides, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2012 31/12/2016 -38089315 01/01/2017 31/12/2500 LIBEN Herbicides based on amides, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.59) 01/01/2017 31/12/2500 -38089317 01/01/2007 31/12/2011 LIBEN Herbicides based on carbamates, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089317 01/01/2012 31/12/2500 LIBEN Herbicides based on carbamates, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.59) 01/01/2012 31/12/2500 -38089321 01/01/2007 31/12/2011 LIBEN Herbicides based on dinitroaniline derivatives, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089321 01/01/2012 31/12/2500 LIBEN Herbicides based on dinitroaniline derivatives, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.59) 01/01/2012 31/12/2500 -38089323 01/01/2007 31/12/2011 LIBEN Herbicides based on derivatives of urea, uracil or of sulphonylurea, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089323 01/01/2012 31/12/2500 LIBEN Herbicides based on derivatives of urea, uracil or of sulphonylurea, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.59) 01/01/2012 31/12/2500 -38089327 01/01/2007 31/12/2011 LIBEN Herbicides put up in forms or packings for retail sale or as preparations or articles (excl. such products based on phenoxy-phytohormones, triazines, amides, carbamates, dinitroaniline derivatives or derivatives of urea, uracil or of sulphonylurea and goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089327 01/01/2012 31/12/2500 LIBEN Herbicides put up in forms or packings for retail sale or as preparations or articles (excl. such products based on phenoxy-phytohormones, triazines, amides, carbamates, dinitroaniline derivatives or derivatives of urea, uracil or of sulphonylurea and goods of subheading 3808.59) 01/01/2012 31/12/2500 -38089330 01/01/2007 31/12/2011 LIBEN Anti-sprouting products put up for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089330 01/01/2012 31/12/2500 LIBEN Anti-sprouting products put up for retail sale or as preparations or articles (excl. goods of subheading 3808.59) 01/01/2012 31/12/2500 -38089390 01/01/2007 31/12/2011 LIBEN Plant-growth regulators put up for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089390 01/01/2012 31/12/2500 LIBEN Plant-growth regulators put up for retail sale or as preparations or articles (excl. goods of subheading 3808.59) 01/01/2012 31/12/2500 -380894 01/01/2007 31/12/2500 LIBEN Disinfectants, put up in forms or packings for retail sale or as preparations or articles (excl. goods of subheading 3808.59) 01/01/2007 31/12/2500 -38089410 01/01/2007 31/12/2011 LIBEN Disinfectants, based on quaternary ammonium salts, put up for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089410 01/01/2012 31/12/2500 LIBEN Disinfectants, based on quaternary ammonium salts, put up for retail sale or as preparations or articles (excl. goods of subheading 3808.59) 01/01/2012 31/12/2500 -38089420 01/01/2007 31/12/2011 LIBEN Disinfectants, based on halogenated compounds, put up for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089420 01/01/2012 31/12/2500 LIBEN Disinfectants, based on halogenated compounds, put up for retail sale or as preparations or articles (excl. goods of subheading 3808.59) 01/01/2012 31/12/2500 -38089490 01/01/2007 31/12/2011 LIBEN Disinfectants, put up for retail sale or as preparations or articles (excl. such products based on quaternary ammonium salts or halogenated compounds and goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089490 01/01/2012 31/12/2500 LIBEN Disinfectants, put up for retail sale or as preparations or articles (excl. such products based on quaternary ammonium salts or halogenated compounds, and goods of subheading 3808.59) 01/01/2012 31/12/2500 -380899 01/01/2007 31/12/2500 LIBEN Rodenticides and other plant protection products put up for retail sale or as preparations or articles (excl. insecticides, fungicides, herbicides, disinfectants, and goods of subheading 3808.59) 01/01/2007 31/12/2500 -38089910 01/01/2007 31/12/2011 LIBEN Rodenticides, put up for retail sale or as preparations or articles (excl. goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089910 01/01/2012 31/12/2500 LIBEN Rodenticides, put up for retail sale or as preparations or articles (excl. goods of subheading 3808.59) 01/01/2012 31/12/2500 -38089990 01/01/2007 31/12/2011 LIBEN Plant protection products, put up in forms or packings for retail sale or as preparations or articles (excl. insecticides, fungicides, herbicides, disinfectants, rodenticides, and goods of subheading 3808.50) 01/01/2007 31/12/2011 -38089990 01/01/2012 31/12/2016 LIBEN Plant protection products, put up in forms or packings for retail sale or as preparations or articles (excl. insecticides, fungicides, herbicides, disinfectants, rodenticides, and goods of subheading 3808.50) 01/01/2012 31/12/2016 -38089990 01/01/2017 31/12/2500 LIBEN Plant protection products, put up in forms or packings for retail sale or as preparations or articles (excl. insecticides, fungicides, herbicides, disinfectants, rodenticides, and goods of subheading 3808.59) 01/01/2017 31/12/2500 -3808S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3808 and SITC section 5 01/01/1997 31/12/2500 -3808S591 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3808 and SITC group 591 01/01/1997 31/12/2500 -3809 01/01/1988 31/12/2500 LIBEN Finishing agents, dye carriers to accelerate the dyeing or fixing of dyestuffs and other products and preparations such as dressings and mordants of a kind used in the textile, paper, leather or like industries, n.e.s. 01/01/1988 31/12/2500 -380910 01/01/1988 31/12/2500 LIBEN Finishing agents, dye carriers to accelerate the dyeing or fixing of dyestuffs and other products and preparations such as dressings and mordants of a kind used in the textile, paper, leather or like industries, n.e.s., based on starch or derivatives thereof 01/01/1988 31/12/2500 -38091010 01/01/1988 31/12/2500 LIBEN Finishing agents, dye carriers to accelerate the dyeing or fixing of dyestuffs and other products and preparations such as dressings and mordants of a kind used in the textile, paper, leather or like industries, n.e.s., with a basis of amylaceous substances, containing < 55% of these substances by weight 01/01/1988 31/12/2500 -38091030 01/01/1988 31/12/2500 LIBEN Finishing agents, dye carriers to accelerate the dyeing or fixing of dyestuffs and other products and preparations such as dressings and mordants of a kind used in the textile, paper, leather or like industries, n.e.s., with a basis of amylaceous substances, containing >= 55% to < 70% of these substances by weight 01/01/1988 31/12/2500 -38091050 01/01/1988 31/12/2500 LIBEN Finishing agents, dye carriers to accelerate the dyeing or fixing of dyestuffs and other products and preparations such as dressings and mordants of a kind used in the textile, paper, leather or like industries, n.e.s., with a basis of amylaceous substances, containing >= 70% to < 83% of these substances by weight 01/01/1988 31/12/2500 -38091090 01/01/1988 31/12/2500 LIBEN Finishing agents, dye carriers to accelerate the dyeing or fixing of dyestuffs and other products and preparations such as dressings and mordants of a kind used in the textile, paper, leather or like industries, n.e.s., with a basis of amylaceous substances, containing >= 83% of these substances by weight 01/01/1988 31/12/2500 -380991 01/01/1988 31/12/2500 LIBEN Finishing agents, dye carriers to accelerate the dyeing or fixing of dyestuffs, and other products and preparations, e.g. dressings and mordants of a kind used in the textile or similar industries, n.e.s. (excl. those with a basis of amylaceous substances) 01/01/1988 31/12/2500 -38099100 01/01/1988 31/12/2500 LIBEN Finishing agents, dye carriers to accelerate the dyeing or fixing of dyestuffs, and other products and preparations, e.g. dressings and mordants of a kind used in the textile or similar industries, n.e.s. (excl. those with a basis of amylaceous substances) 01/01/1988 31/12/2500 -380992 01/01/1988 31/12/2500 LIBEN Finishing agents, dye carriers to accelerate the dyeing or fixing of dyestuffs, and other products and preparations, e.g. dressings and mordants of a kind used in the paper or similar industries, n.e.s. (excl. those with a basis of amylaceous substances) 01/01/1988 31/12/2500 -38099200 01/01/1988 31/12/2500 LIBEN Finishing agents, dye carriers to accelerate the dyeing or fixing of dyestuffs, and other products and preparations, e.g. dressings and mordants of a kind used in the paper or similar industries, n.e.s. (excl. those with a basis of amylaceous substances) 01/01/1988 31/12/2500 -380993 01/01/1992 31/12/2500 LIBEN Finishing agents, dye carriers to accelerate the dyeing or fixing of dyestuffs, and other products and preparations, e.g. dressings and mordants of a kind used in the leather or similar industries, n.e.s. (excl. those with a basis of amylaceous substances) 01/01/1992 31/12/2500 -38099300 01/01/1992 31/12/2500 LIBEN Finishing agents, dye carriers to accelerate the dyeing or fixing of dyestuffs, and other products and preparations, e.g. dressings and mordants of a kind used in the leather or similar industries, n.e.s. (excl. those with a basis of amylaceous substances) 01/01/1992 31/12/2500 -380999 01/01/1988 31/12/1991 LIBEN Finishing agents, dye carriers to accelerate the dyeing or fixing of dyes and other products and preparations such as dressings and mordants of a kind used in the leather and like industries n.e.s. (excl. those based on starch or derivatives thereof) 01/01/1988 31/12/1991 -38099900 01/01/1988 31/12/1991 LIBEN Finishing agents, dye carriers to accelerate the dyeing or fixing of dyes and other products and preparations such as dressings and mordants of a kind used in the leather and like industries n.e.s. (excl. those based on starch or derivatives thereof) 01/01/1988 31/12/1991 -3810 01/01/1988 31/12/2500 LIBEN Pickling preparations for metal surfaces; fluxes and other auxiliary preparations for soldering, brazing or welding; soldering, brazing or welding pastes and powders consisting of metal and other materials; preparations of a kind used as coatings or cores for welding electrodes or rods 01/01/1988 31/12/2500 -381010 01/01/1988 31/12/2500 LIBEN Pickling preparations for metal surfaces; soldering, brazing or welding pastes and powders consisting of metal and other materials 01/01/1988 31/12/2500 -38101000 01/01/1988 31/12/2500 LIBEN Pickling preparations for metal surfaces; soldering, brazing or welding pastes and powders consisting of metal and other materials 01/01/1988 31/12/2500 -381090 01/01/1988 31/12/2500 LIBEN Fluxes and other auxiliary preparations for soldering, brazing or welding; preparations of a kind used as cores or coatings for welding electrodes or rods (excl. soldering, brazing or welding powders and pastes consisting of metal and other materials, and welding electrodes or rods of base metals or metal carbides coated with fluxes) 01/01/1988 31/12/2500 -38109010 01/01/1988 31/12/2500 LIBEN Preparations of a kind used as coatings or cores for welding electrodes or rods 01/01/1988 31/12/2500 -38109090 01/01/1993 31/12/2500 LIBEN Fluxes and other auxiliary preparations for soldering, brazing or welding (excl. preparations of a kind used as cores or coatings for welding electrodes or rods, soldering, brazing or welding powders and pastes consisting of metal and other materials, and welding electrodes or rods of base metals or metal carbides coated with fluxes) 01/01/1993 31/12/2500 -38109091 01/01/1988 31/12/1992 LIBEN Fluxes for welding or soldering 01/01/1988 31/12/1992 -38109099 01/01/1988 31/12/1992 LIBEN Auxiliary preparations of a kind used for welding or soldering (excl. pastes and powders consisting of metal and other materials, fluxes or flux-coated welding electrodes or rods of base metals or metal carbides, together with other coatings or cores for welding electrodes or rods) 01/01/1988 31/12/1992 -3811 01/01/1988 31/12/2500 LIBEN Anti-knock preparations, oxidation inhibitors, gum inhibitors, viscosity improvers, anti-corrosive preparations and other prepared additives, for mineral oils, incl. gasoline, or for other liquids used for the same purposes as mineral oils 01/01/1988 31/12/2500 -381111 01/01/1988 31/12/2500 LIBEN Anti-knock preparations for motor fuels based on lead compounds 01/01/1988 31/12/2500 -38111110 01/01/1988 31/12/2500 LIBEN Anti-knock preparations for motor fuels based on tetraethyl-lead 01/01/1988 31/12/2500 -38111190 01/01/1988 31/12/2500 LIBEN Anti-knock preparations for motor fuels based on lead compounds (excl. tetraethyl-lead) 01/01/1988 31/12/2500 -381119 01/01/1988 31/12/2500 LIBEN Anti-knock preparations for motor fuels (excl. those based on lead compounds) 01/01/1988 31/12/2500 -38111900 01/01/1988 31/12/2500 LIBEN Anti-knock preparations for motor fuels (excl. those based on lead compounds) 01/01/1988 31/12/2500 -381121 01/01/1988 31/12/2500 LIBEN Prepared additives for oil lubricants containing petroleum oil or bituminous mineral oil 01/01/1988 31/12/2500 -38112100 01/01/1988 31/12/2500 LIBEN Prepared additives for oil lubricants containing petroleum oil or bituminous mineral oil 01/01/1988 31/12/2500 -381129 01/01/1988 31/12/2500 LIBEN Prepared additives for oil lubricants not containing petroleum oil or bituminous mineral oil 01/01/1988 31/12/2500 -38112900 01/01/1988 31/12/2500 LIBEN Prepared additives for oil lubricants not containing petroleum oil or bituminous mineral oil 01/01/1988 31/12/2500 -381190 01/01/1988 31/12/2500 LIBEN Oxidation inhibitors, gum inhibitors, viscosity improvers, anti-corrosive preparations and other prepared additives for mineral oils, incl. gasoline, or for other liquids used for the same purposes as mineral oils (excl. anti-knock preparations and oil lubricant additives) 01/01/1988 31/12/2500 -38119000 01/01/1988 31/12/2500 LIBEN Oxidation inhibitors, gum inhibitors, viscosity improvers, anti-corrosive preparations and other prepared additives for mineral oils, incl. gasoline, or for other liquids used for the same purposes as mineral oils (excl. anti-knock preparations and oil lubricant additives) 01/01/1988 31/12/2500 -3812 01/01/1988 31/12/2500 LIBEN Prepared rubber accelerators; compound plasticisers for rubber or plastics, n.e.s.; anti-oxidising preparations and other compound stabilisers for rubber or plastics 01/01/1988 31/12/2500 -381210 01/01/1988 31/12/2500 LIBEN Prepared rubber accelerators 01/01/1988 31/12/2500 -38121000 01/01/1988 31/12/2500 LIBEN Prepared rubber accelerators 01/01/1988 31/12/2500 -381220 01/01/1988 31/12/2500 LIBEN Compound plasticisers for rubber or plastics, n.e.s. 01/01/1988 31/12/2500 -38122000 01/01/1988 31/12/1996 LIBEN Compound plasticisers for rubber or plastics n.e.s. 01/01/1988 31/12/1996 -38122010 01/01/1997 31/12/2500 LIBEN Reaction mixture containing benzyl 3-isobutyryloxy-1-isopropyl-2,2-dimethylpropyl phthalate and benzyl 3-isobutyryloxy-2,2,4-trimethylpentyl phthalate as composite plasticisers for rubber or plastics 01/01/1997 31/12/2500 -38122090 01/01/1997 31/12/2500 LIBEN Composite plasticisers for rubber or plastics, n.e.s. (excl. reaction mixture containing benzyl 3-isobutyryloxy-1-isopropyl-2,2-dimethylpropyl phthalate and benzyl 3-isobutyryloxy-2,2,4-trimethylpentyl phthalate) 01/01/1997 31/12/2500 -381230 01/01/1988 31/12/2016 LIBEN Anti-oxidising preparations and other compound stabilisers for rubber or plastics 01/01/1988 31/12/2016 -38123010 01/01/1988 31/12/1988 LIBEN Antioxidant preparations for rubber 01/01/1988 31/12/1988 -38123020 01/01/1989 31/12/2007 LIBEN Anti-oxidising preparations for rubber or plastics 01/01/1989 31/12/2007 -38123021 01/01/2008 31/12/2016 LIBEN Mixtures of oligomers of 1,2-dihydro-2,2,4-trimethyl-quinoline 01/01/2008 31/12/2016 -38123029 01/01/2008 31/12/2016 LIBEN Anti-oxidising preparations for rubber or plastics (excl. mixtures of oligomers of 1,2-dihydro-2,2,4-trimethyl-quinoline) 01/01/2008 31/12/2016 -38123080 01/01/1989 31/12/2016 LIBEN Compound stabilisers for rubber or plastics (excl. anti-oxidising preparations) 01/01/1989 31/12/2016 -38123090 01/01/1988 31/12/1988 LIBEN Antioxidant preparations and other composite stabilisers for plastics 01/01/1988 31/12/1988 -381231 01/01/2017 31/12/2500 LIBEN Mixtures of oligomers of 2,2,4-trimethyl-1,2-dihydroquinoline "TMQ" 01/01/2017 31/12/2500 -38123100 01/01/2017 31/12/2500 LIBEN Mixtures of oligomers of 2,2,4-trimethyl-1,2-dihydroquinoline "TMQ" 01/01/2017 31/12/2500 -381239 01/01/2017 31/12/2500 LIBEN Anti-oxidising preparations and other compound stabilisers for rubber or plastics (excl. mixtures of oligomers of 2,2,4-trimethyl-1,2-dihydroquinoline "TMQ") 01/01/2017 31/12/2500 -38123910 01/01/2017 31/12/2500 LIBEN Anti-oxidising preparations for rubber or plastics (excl. mixtures of oligomers of 2,2,4-trimethyl-1,2-dihydroquinoline "TMQ") 01/01/2017 31/12/2500 -38123990 01/01/2017 31/12/2500 LIBEN Compound stabilisers for rubber or plastics (excl. anti-oxidising preparations) 01/01/2017 31/12/2500 -3813 01/01/1988 31/12/2500 LIBEN Preparations and charges for fire-extinguishers; charged fire-extinguishing grenades (excl. full or empty fire-extinguishing devices, whether or not portable, unmixed chemically undefined products with fire-extinguishing properties in other forms) 01/01/1988 31/12/2500 -381300 01/01/1988 31/12/2500 LIBEN Preparations and charges for fire-extinguishers; charged fire-extinguishing grenades (excl. full or empty fire-extinguishing devices, whether or not portable, unmixed chemically undefined products with fire-extinguishing properties in other forms) 01/01/1988 31/12/2500 -38130000 01/01/1988 31/12/2500 LIBEN Preparations and charges for fire-extinguishers; charged fire-extinguishing grenades (excl. full or empty fire-extinguishing devices, whether or not portable, unmixed chemically undefined products with fire-extinguishing properties in other forms) 01/01/1988 31/12/2500 -3814 01/01/1988 31/12/2500 LIBEN Organic composite solvents and thinners, n.e.s.; prepared paint or varnish removers (excl. nail varnish remover) 01/01/1988 31/12/2500 -381400 01/01/1988 31/12/2500 LIBEN Organic composite solvents and thinners, n.e.s.; prepared paint or varnish removers (excl. nail varnish remover) 01/01/1988 31/12/2500 -38140010 01/01/1988 31/12/2500 LIBEN Organic composite solvents and thinners and prepared paint or varnish removers, based on butyl acetate (excl. nail varnish remover) 01/01/1988 31/12/2500 -38140090 01/01/1988 31/12/2500 LIBEN Organic composite solvents and thinners and prepared paint or varnish removers (excl. those based on butyl acetate and nail varnish remover) 01/01/1988 31/12/2500 -3815 01/01/1988 31/12/2500 LIBEN Reaction initiators, reaction accelerators and catalytic preparations, n.e.s. (excl. rubber accelerators) 01/01/1988 31/12/2500 -381511 01/01/1988 31/12/2500 LIBEN Supported catalysts with nickel or a nickel compound as the active substance, n.e.s. 01/01/1988 31/12/2500 -38151100 01/01/1988 31/12/2500 LIBEN Supported catalysts with nickel or a nickel compound as the active substance, n.e.s. 01/01/1988 31/12/2500 -381512 01/01/1988 31/12/2500 LIBEN Supported catalysts with precious metal or a precious-metal compound as the active substance, n.e.s. 01/01/1988 31/12/2500 -38151200 01/01/1988 31/12/2500 LIBEN Supported catalysts with precious metal or a precious-metal compound as the active substance, n.e.s. 01/01/1988 31/12/2500 -381519 01/01/1988 31/12/2500 LIBEN Supported catalysts, n.e.s. (excl. with precious metal, a precious-metal compound, nickel or a nickel compound as the active substance) 01/01/1988 31/12/2500 -38151900 01/01/1988 31/12/1996 LIBEN Supported catalysts n.e.s. (excl. with precious metal, a precious metal compound, nickel or a nickel compound as the active substance) 01/01/1988 31/12/1996 -38151910 01/01/1997 31/12/2500 LIBEN Catalysts in the form of grains of which >= 90% by weight have a particle-size <= 10 micrometres, consisting of a mixture of oxides on a magnesium-silicate support, containing by weight >= 20% but <= 35% of copper and >= 2% but <= 3% of bismuth and of an apparent specific gravity of >= 0,2 but <= 1,0 01/01/1997 31/12/2500 -38151990 01/01/1997 31/12/2500 LIBEN Supported catalysts, n.e.s. (excl. supported catalysts with precious metal, a precious-metal compound, nickel or a nickel compound as the active substance and catalysts in the form of grains of which >= 90% by weight have a particle-size <= 10 micrometres, consisting of a mixture of oxides on a magnesium-silicate support, containing by weight >= 20% but <= 35% of copper and >= 2% but <= 3% of bismuth and of an apparent specific gravity of >= 0,2 but <= 1,0) 01/01/1997 31/12/2500 -381590 01/01/1988 31/12/2500 LIBEN Reaction initiators, reaction accelerators and catalytic preparations, n.e.s. (excl. rubber accelerators and supported catalysts) 01/01/1988 31/12/2500 -38159000 01/01/1988 31/12/1996 LIBEN Reaction initiators, reaction accelerators and catalytic preparations n.e.s. (excl. rubber accelerators and supported catalysts) 01/01/1988 31/12/1996 -38159010 01/01/1997 31/12/2500 LIBEN Catalysts consisting of ethyltriphenylphosphonium acetate in the form of a solution in methanol (excl. supported catalysts) 01/01/1997 31/12/2500 -38159090 01/01/1997 31/12/2500 LIBEN Reaction initiators, reaction accelerators and catalytic preparations, n.e.s. (excl. rubber accelerators, supported catalysts and catalysts consisting of ethyltriphenylphosphonium acetate in the form of a solution in methanol) 01/01/1997 31/12/2500 -3816 01/01/1988 31/12/2500 LIBEN Refractory cements, mortars, concretes and similar compositions (excl. preparations based on graphite or other carbonaceous substances) 01/01/1988 31/12/2500 -381600 01/01/1988 31/12/2500 LIBEN Refractory cements, mortars, concretes and similar compositions (excl. preparations based on graphite or other carbonaceous substances) 01/01/1988 31/12/2500 -38160000 01/01/1988 31/12/2500 LIBEN Refractory cements, mortars, concretes and similar compositions (excl. preparations based on graphite or other carbonaceous substances) 01/01/1988 31/12/2500 -3817 01/01/1988 31/12/2500 LIBEN Mixed alkylbenzenes and mixed alkylnaphthalenes produced by the alkylation of benzene and naphthalene (excl. mixed isomers of cyclic hydrocarbons) 01/01/1988 31/12/2500 -381700 01/01/2002 31/12/2500 LIBEN Mixed alkylbenzenes and mixed alkylnaphthalenes produced by the alkylation of benzene and naphthalene (excl. mixed isomers of cyclic hydrocarbons) 01/01/2002 31/12/2500 -38170010 01/01/2002 31/12/2003 LIBEN Dodecylbenzene 01/01/2002 31/12/2003 -38170050 01/01/2002 31/12/2500 LIBEN Linear alkylbenzene 01/01/2002 31/12/2500 -38170080 01/01/2004 31/12/2500 LIBEN Mixed alkylbenzenes and mixed alkylnaphthalenes, produced by the alkylation of benzene and naphthalene (excl. linear alkylbenzene and mixed isomers of cyclic hydrocarbons) 01/01/2004 31/12/2500 -38170090 01/01/2002 31/12/2003 LIBEN Mixed alkylbenzenes and mixed alkylnaphthalenes, produced by the alkylation of benzene and naphthalene (excl. dodecylbenzene, linear alkylbenzene and mixed isomers of cyclic hydrocarbons) 01/01/2002 31/12/2003 -381710 01/01/1988 31/12/2001 LIBEN Mixed alkylbenzenes produced by the alkylation of benzene or naphthalene (excl. mixed isomers of cyclic hydrocarbons) 01/01/1988 31/12/2001 -38171010 01/01/1988 31/12/2001 LIBEN Dodecylbenzene 01/01/1988 31/12/2001 -38171050 01/01/1989 31/12/2001 LIBEN Linear alkylbenzene 01/01/1989 31/12/2001 -38171080 01/01/1989 31/12/2001 LIBEN Mixed alkylnaphthalenes produced by the alkylation of naphthalene (excl. mixed isomers of cyclic hydrocarbons and other than of dodecylbenzene and linear alkylbenzene) 01/01/1989 31/12/2001 -38171090 01/01/1988 31/12/1988 LIBEN Mixed alkybenzenes produced by the alkylation of benzene (excl. mixed isomers of cyclic hydrocarbons and dodecylbenzene) 01/01/1988 31/12/1988 -381720 01/01/1988 31/12/2001 LIBEN Mixed alkylnaphthalenes produced by the alkylation of naphthalene (excl. mixed isomers of cyclic hydrocarbons) 01/01/1988 31/12/2001 -38172000 01/01/1988 31/12/2001 LIBEN Mixed alkylnaphthalenes produced by the alkylation of naphthalene (excl. mixed isomers of cyclic hydrocarbons) 01/01/1988 31/12/2001 -3818 01/01/1988 31/12/2500 LIBEN Chemical elements and compounds doped for use in electronics, in the form of discs, wafers, cylinders, rods or similar forms, or cut into discs, wafers or similar forms, whether or not polished or with a uniform epitaxial coating (excl. elements that have been further processed, e.g. by selective diffusion) 01/01/1988 31/12/2500 -381800 01/01/1988 31/12/2500 LIBEN Chemical elements and compounds doped for use in electronics, in the form of discs, wafers, cylinders, rods or similar forms, or cut into discs, wafers or similar forms, whether or not polished or with a uniform epitaxial coating (excl. elements that have been further processed, e.g. by selective diffusion) 01/01/1988 31/12/2500 -38180010 01/01/1988 31/12/2500 LIBEN Silicon doped for use in electronics, in the form of discs, wafers, cylinders, rods or similar forms, whether or not polished or with a uniform epitaxial coating (excl. elements that have been further processed, e.g. by selective diffusion) 01/01/1988 31/12/2500 -38180090 01/01/1988 31/12/2500 LIBEN Chemical elements and compounds doped for use in electronics, in the form of discs, wafers, cylinders, rods or similar forms, or cut into discs, wafers or similar forms, whether or not polished or with a uniform epitaxial coating (excl. elements that have been further processed, e.g. by selective diffusion, and doped silicon) 01/01/1988 31/12/2500 -3819 01/01/1988 31/12/2500 LIBEN Hydraulic brake fluids and other prepared liquids for hydraulic transmission not containing petroleum oil or bituminous mineral oil, or containing < 70% petroleum oil or bituminous mineral oil by weight 01/01/1988 31/12/2500 -381900 01/01/1988 31/12/2500 LIBEN Hydraulic brake fluids and other prepared liquids for hydraulic transmission not containing petroleum oil or bituminous mineral oil, or containing < 70% petroleum oil or bituminous mineral oil by weight 01/01/1988 31/12/2500 -38190000 01/01/1988 31/12/2500 LIBEN Hydraulic brake fluids and other prepared liquids for hydraulic transmission not containing petroleum oil or bituminous mineral oil, or containing < 70% petroleum oil or bituminous mineral oil by weight 01/01/1988 31/12/2500 -3820 01/01/1988 31/12/2500 LIBEN Anti-freezing preparations and prepared de-icing fluids (excl. prepared additives for mineral oils or other liquids used for the same purposes as mineral oils) 01/01/1988 31/12/2500 -382000 01/01/1988 31/12/2500 LIBEN Anti-freezing preparations and prepared de-icing fluids (excl. prepared additives for mineral oils or other liquids used for the same purposes as mineral oils) 01/01/1988 31/12/2500 -38200000 01/01/1988 31/12/2500 LIBEN Anti-freezing preparations and prepared de-icing fluids (excl. prepared additives for mineral oils or other liquids used for the same purposes as mineral oils) 01/01/1988 31/12/2500 -3821 01/01/1988 31/12/2500 LIBEN Prepared culture media for the development or maintenance of micro-organisms "incl. viruses and the like" or of plant, human or animal cells 01/01/1988 31/12/2500 -382100 01/01/1988 31/12/2500 LIBEN Prepared culture media for the development or maintenance of micro-organisms "incl. viruses and the like" or of plant, human or animal cells 01/01/1988 31/12/2500 -38210000 01/01/1988 31/12/2006 LIBEN Culture media specially prepared for the development of micro-organisms 01/01/1988 31/12/2006 -38210000 01/01/2007 31/12/2500 LIBEN Prepared culture media for the development or maintenance of micro-organisms "incl. viruses and the like" or of plant, human or animal cells 01/01/2007 31/12/2500 -3822 01/01/1988 31/12/2500 LIBEN Diagnostic or laboratory reagents on a backing, prepared diagnostic or laboratory reagents whether or not on a backing, other than those of heading 3002 or 3006; certified reference materials 01/01/1988 31/12/2500 -382200 01/01/1988 31/12/2500 LIBEN Diagnostic or laboratory reagents on a backing, prepared diagnostic or laboratory reagents whether or not on a backing, other than those of heading 3002 or 3006; certified reference materials 01/01/1988 31/12/2500 -38220000 01/01/1988 31/12/1995 LIBEN Composite diagnostic or laboratory reagents (excl. composite diagnostic reagents for administration to patients, reagents for determining blood groups and blood factors, animal blood for diagnostic purposes and vaccines, toxins, cultures of microorganisms and similar products) 01/01/1988 31/12/1995 -38220000 01/01/1996 31/12/2001 LIBEN Diagnostic or laboratory reagents on a backing and prepared diagnostic or laboratory reagents whether or not on a backing (excl. compound diagnostic reagents designed to be administered to the patient, blood-grouping reagents, animal blood prepared for therapeutic, prophylactic or diagnostic uses and vaccines, toxins, cultures of micro-organisms and similar products) 01/01/1996 31/12/2001 -38220000 01/01/2002 31/12/2500 LIBEN Diagnostic or laboratory reagents on a backing, prepared diagnostic or laboratory reagents whether or not on a backing, other than those of heading 3002 or 3006; certified reference materials 01/01/2002 31/12/2500 -3823 01/01/1988 31/12/2500 LIBEN Industrial monocarboxylic fatty acids; acid oils from refining; industrial fatty alcohols 01/01/1988 31/12/2500 -382310 01/01/1988 31/12/1995 LIBEN Prepared binders for foundry moulds or cores 01/01/1988 31/12/1995 -38231000 01/01/1988 31/12/1995 LIBEN Prepared binders for foundry moulds or cores 01/01/1988 31/12/1995 -382311 01/01/1996 31/12/2500 LIBEN Stearic acid, industrial 01/01/1996 31/12/2500 -38231100 01/01/1996 31/12/2500 LIBEN Stearic acid, industrial 01/01/1996 31/12/2500 -382312 01/01/1996 31/12/2500 LIBEN Oleic acid, industrial 01/01/1996 31/12/2500 -38231200 01/01/1996 31/12/2500 LIBEN Oleic acid, industrial 01/01/1996 31/12/2500 -382313 01/01/1996 31/12/2500 LIBEN Tall oil fatty acids, industrial 01/01/1996 31/12/2500 -38231300 01/01/1996 31/12/2500 LIBEN Tall oil fatty acids, industrial 01/01/1996 31/12/2500 -382319 01/01/1996 31/12/2500 LIBEN Fatty acids, industrial, monocarboxylic; acid oils from refining (excl. stearic acid, oleic acid and tall oil fatty acids) 01/01/1996 31/12/2500 -38231910 01/01/1996 31/12/2500 LIBEN Fatty acids, distilled 01/01/1996 31/12/2500 -38231930 01/01/1996 31/12/2500 LIBEN Fatty acid distillate 01/01/1996 31/12/2500 -38231990 01/01/1996 31/12/2500 LIBEN Fatty acids, industrial, monocarboxylic; acid oils from refining (excl. stearic acid, oleic acid and tall oil fatty acids, distilled fatty acids and fatty acid distillate) 01/01/1996 31/12/2500 -382320 01/01/1988 31/12/1995 LIBEN Naphthenic acids and the water-insoluble salts and esters therof 01/01/1988 31/12/1995 -38232000 01/01/1988 31/12/1995 LIBEN Naphthenic acids and the water-insoluble salts and esters therof 01/01/1988 31/12/1995 -382330 01/01/1988 31/12/1995 LIBEN Non-agglomerated metal carbides mixed together or with metallic binders 01/01/1988 31/12/1995 -38233000 01/01/1988 31/12/1995 LIBEN Non-agglomerated metal carbides mixed together or with metallic binders 01/01/1988 31/12/1995 -382340 01/01/1988 31/12/1995 LIBEN Prepared additives for cements, mortars or concretes 01/01/1988 31/12/1995 -38234000 01/01/1988 31/12/1995 LIBEN Prepared additives for cements, mortars or concretes 01/01/1988 31/12/1995 -382350 01/01/1988 31/12/1995 LIBEN Non-refractory mortars and concretes 01/01/1988 31/12/1995 -38235010 01/01/1988 31/12/1995 LIBEN Freshly-mixed concrete 01/01/1988 31/12/1995 -38235090 01/01/1988 31/12/1995 LIBEN Non-refractory mortars and concretes (excl. freshly-mixed concrete) 01/01/1988 31/12/1995 -382360 01/01/1988 31/12/1995 LIBEN Sorbitol (excl. goods of subheading 2905.44) 01/01/1988 31/12/1995 -38236011 01/01/1988 31/12/1995 LIBEN Sorbitol in aqueous solution, containing <= 2% D-mannitol by weight in relation to the D-glucitol content (excl. goods of subheading 2905.44) 01/01/1988 31/12/1995 -38236019 01/01/1988 31/12/1995 LIBEN Sorbitol in aqueous solution, containing > 2% D-mannitol by weight in relation to the D-glucitol content (excl. goods of subheading 2905.44) 01/01/1988 31/12/1995 -38236091 01/01/1988 31/12/1995 LIBEN Sorbitol containing <= 2% D-mannitol by weight in relation to the D-glucitol content (excl. sorbitol in aqueous solution and goods of subheading 2905,44) 01/01/1988 31/12/1995 -38236099 01/01/1988 31/12/1995 LIBEN Sorbitol containing > 2% D-mannitol by weight in relation to the D-glucitol content (excl. sorbitol in aqueous solution and goods of subheading 2905,44) 01/01/1988 31/12/1995 -382370 01/01/1996 31/12/2500 LIBEN Fatty alcohols, industrial 01/01/1996 31/12/2500 -38237000 01/01/1996 31/12/2500 LIBEN Fatty alcohols, industrial 01/01/1996 31/12/2500 -382390 01/01/1988 31/12/1995 LIBEN Products, preparations and residues of the chemical industry or related industries, incl. mixtures of natural products, n.e.s. (excl. binders for foundry moulds or cores; naphthenic acids, their water-insoluble salts and their esters; non-agglomerated metal carbides mixed together or with metallic binders; prepared additives for cements, mortars or concretes; non-refractory mortars and concretes; sorbitol) 01/01/1988 31/12/1995 -38239010 01/01/1988 31/12/1995 LIBEN Thiophenated sulphonic acids of bituminous mineral oil, and salts thereof; petroleum sulphonates (excl. those of ammonium, alkali metals or ethanolamines) 01/01/1988 31/12/1995 -38239020 01/01/1988 31/12/1995 LIBEN Ion exchangers (excl. polymers of chapter 39) 01/01/1988 31/12/1995 -38239030 01/01/1988 31/12/1995 LIBEN Getters for electric vacuum tubes 01/01/1988 31/12/1995 -38239040 01/01/1988 31/12/1995 LIBEN Pyrolignites, e.g. of calcium; crude calcium tartrate; crude calcium citrate 01/01/1988 31/12/1995 -38239050 01/01/1988 31/12/1995 LIBEN Spent gas purification material, particularly for the production of sulphur or cyanides or for use as fertilizers or insecticides 01/01/1988 31/12/1995 -38239060 01/01/1988 31/12/1995 LIBEN Anti-corrosion preparations containing amines as active constituents 01/01/1988 31/12/1995 -38239070 01/01/1988 31/12/1995 LIBEN Inorganic composite solvents and thinners for varnishes and similar products 01/01/1988 31/12/1995 -38239081 01/01/1988 31/12/1995 LIBEN Descaling products and the like 01/01/1988 31/12/1995 -38239083 01/01/1988 31/12/1995 LIBEN Electroplating preparations for the chemical and allied industries 01/01/1988 31/12/1995 -38239085 01/01/1988 31/12/1995 LIBEN Liquid polychlorodiphenyls, liquid chloroparaffins; mixed polyethylene glycols 01/01/1988 31/12/1995 -38239087 01/01/1988 31/12/1995 LIBEN Mixtures of mono-, di- and tri-fatty acid esters of glycerol "fat emulsifiers" 01/01/1988 31/12/1995 -38239091 01/01/1988 31/12/1995 LIBEN Products and preparations for the chemical and allied industries for pharmaceutical or chemical uses n.e.s. 01/01/1988 31/12/1995 -38239093 01/01/1988 31/12/1995 LIBEN Auxiliary products in the form of chemical preparations of a kind used in foundries (excl. prepared binders for foundry moulds or cores) 01/01/1988 31/12/1995 -38239095 01/01/1988 31/12/1995 LIBEN Fireproofing, waterproofing and similar chemical preparations used for the protection of buildings 01/01/1988 31/12/1995 -38239096 01/01/1989 31/12/1990 LIBEN Mixtures comprising halogenated derivatives of acyclic hydrocarbons, only fluorinated and chlorinated 01/01/1989 31/12/1990 -38239096 01/01/1991 31/12/1995 LIBEN Mixtures containing acyclic hydrocarbons perhalogenated only with fluorine and chlorine 01/01/1991 31/12/1995 -38239097 01/01/1989 31/12/1990 LIBEN Mixtures comprising halogenated derivatives of acyclic hydrocarbons containing two or more different halogens (excl. only fluorinated and chlorinated) 01/01/1989 31/12/1990 -38239097 01/01/1991 31/12/1995 LIBEN Mixtures containing perhalogenated derivatives of acyclic hydrocarbons containing two or more different halogens (excl. only with fluorine and chlorine) 01/01/1991 31/12/1995 -38239098 01/01/1989 31/12/1990 LIBEN Chemical products and preparations of the chemical or allied industries -including those consisting of mixtures of natural products-, (not elsewhere specified or included); residual products of the chemical or allied industries, (not elsewhere specified or included) (excl. 3823.20-00 to 3823.90-97) 01/01/1989 31/12/1990 -38239098 01/01/1991 31/12/1995 LIBEN Chemical products and preparations of the chemical or allied industries -including those consisting of mixtures of natural products- (not elsewhere specified or included); residual products of the chemical or allied industries (not elsewhere specified or included) (excl. 3823.20.00 to 3823.90.97) 01/01/1991 31/12/1995 -38239099 01/01/1988 31/12/1988 LIBEN Products and preparations for, and residual products of, the chemical and allied industries, incl. mixtures of natural products, n.e.s. 01/01/1988 31/12/1988 -3823S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3823 and SITC section 5 01/01/1997 31/12/2500 -3823S598 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3823 and SITC group 598 01/01/1997 31/12/2500 -3824 01/01/1996 31/12/2500 LIBEN Prepared binders for foundry moulds or cores; chemical products and preparations for the chemical or allied industries, incl. mixtures of natural products, n.e.s. 01/01/1996 31/12/2500 -382410 01/01/1996 31/12/2500 LIBEN Prepared binders for foundry moulds or cores 01/01/1996 31/12/2500 -38241000 01/01/1996 31/12/2500 LIBEN Prepared binders for foundry moulds or cores 01/01/1996 31/12/2500 -382420 01/01/1996 31/12/2006 LIBEN Naphthenic acids and the water-insoluble salts and esters thereof 01/01/1996 31/12/2006 -38242000 01/01/1996 31/12/2006 LIBEN Naphthenic acids and the water-insoluble salts and esters thereof 01/01/1996 31/12/2006 -382430 01/01/1996 31/12/2500 LIBEN Non-agglomerated metal carbides mixed together or with metallic binders 01/01/1996 31/12/2500 -38243000 01/01/1996 31/12/2500 LIBEN Non-agglomerated metal carbides mixed together or with metallic binders 01/01/1996 31/12/2500 -382440 01/01/1996 31/12/2500 LIBEN Prepared additives for cements, mortars or concretes 01/01/1996 31/12/2500 -38244000 01/01/1996 31/12/2500 LIBEN Prepared additives for cements, mortars or concretes 01/01/1996 31/12/2500 -382450 01/01/1996 31/12/2500 LIBEN Non-refractory mortars and concretes 01/01/1996 31/12/2500 -38245010 01/01/1996 31/12/2500 LIBEN Concrete ready to pour 01/01/1996 31/12/2500 -38245090 01/01/1996 31/12/2500 LIBEN Non-refractory mortars and concretes (excl. concrete ready to pour) 01/01/1996 31/12/2500 -382460 01/01/1996 31/12/2500 LIBEN Sorbitol (excl. D-glucitol [sorbitol]) 01/01/1996 31/12/2500 -38246011 01/01/1996 31/12/2500 LIBEN Sorbitol in aqueous solution, containing <= 2% by weight of D-mannitol, calculated on the D-glucitol content (excl. Dglucitol [sorbitol]) 01/01/1996 31/12/2500 -38246019 01/01/1996 31/12/2500 LIBEN Sorbitol in aqueous solution, containing > 2% by weight of D-mannitol, calculated on the D-glucitol content (excl. Dglucitol [sorbitol]) 01/01/1996 31/12/2500 -38246091 01/01/1996 31/12/2500 LIBEN Sorbitol containing <= 2% by weight of D-mannitol, calculated on the D-glucitol content (excl. sorbitol in aqueous solution and Dglucitol [sorbitol]) 01/01/1996 31/12/2500 -38246099 01/01/1996 31/12/2500 LIBEN Sorbitol containing > 2% by weight of D-mannitol, calculated on the D-glucitol content (excl. sorbitol in aqueous solution and Dglucitol [sorbitol]) 01/01/1996 31/12/2500 -382471 01/01/1996 31/12/2500 LIBEN Mixtures containing chlorofluorocarbons "CFCs", whether or not containing hydrochlorofluorocarbons "HCFCs", perfluorocarbons "PFCs" or hydrofluorocarbons "HFCs" 01/01/1996 31/12/2500 -38247100 01/01/1996 31/12/2006 LIBEN Mixtures containing acyclic hydrocarbons perhalogenated only with fluorine and chlorine 01/01/1996 31/12/2006 -38247100 01/01/2007 31/12/2500 LIBEN Mixtures containing chlorofluorocarbons "CFCs", whether or not containing hydrochlorofluorocarbons "HCFCs", perfluorocarbons "PFCs" or hydrofluorocarbons "HFCs" 01/01/2007 31/12/2500 -382472 01/01/2007 31/12/2500 LIBEN Mixtures containing bromochlorodifluoromethane, bromotrifluoromethane or dibromotetrafluoroethanes 01/01/2007 31/12/2500 -38247200 01/01/2007 31/12/2500 LIBEN Mixtures containing bromochlorodifluoromethane, bromotrifluoromethane or dibromotetrafluoroethanes 01/01/2007 31/12/2500 -382473 01/01/2007 31/12/2500 LIBEN Mixtures containing hydrobromofluorocarbons "HBFCs" 01/01/2007 31/12/2500 -38247300 01/01/2007 31/12/2500 LIBEN Mixtures containing hydrobromofluorocarbons "HBFCs" 01/01/2007 31/12/2500 -382474 01/01/2007 31/12/2500 LIBEN Mixtures containing hydrochlorofluorocarbons "HCFCs", whether or not containing perfluorocarbons "PFCs" or hydrofluorocarbons "HFCs", but not containing chlorofluorocarbons "CFCs" 01/01/2007 31/12/2500 -38247400 01/01/2007 31/12/2500 LIBEN Mixtures containing hydrochlorofluorocarbons "HCFCs", whether or not containing perfluorocarbons "PFCs" or hydrofluorocarbons "HFCs", but not containing chlorofluorocarbons "CFCs" 01/01/2007 31/12/2500 -382475 01/01/2007 31/12/2500 LIBEN Mixtures containing carbon tetrachloride 01/01/2007 31/12/2500 -38247500 01/01/2007 31/12/2500 LIBEN Mixtures containing carbon tetrachloride 01/01/2007 31/12/2500 -382476 01/01/2007 31/12/2500 LIBEN Mixtures containing 1,1,1-trichloroethane "methyl chloroform" 01/01/2007 31/12/2500 -38247600 01/01/2007 31/12/2500 LIBEN Mixtures containing 1,1,1-trichloroethane "methyl chloroform" 01/01/2007 31/12/2500 -382477 01/01/2007 31/12/2500 LIBEN Mixtures containing bromomethane "methyl bromide" or bromochloromethane 01/01/2007 31/12/2500 -38247700 01/01/2007 31/12/2500 LIBEN Mixtures containing bromomethane "methyl bromide" or bromochloromethane 01/01/2007 31/12/2500 -382478 01/01/2007 31/12/2500 LIBEN Mixtures containing perfluorocarbons "PFCs" or hydrofluorocarbons "HFCs", but not containing chlorofluorocarbons "CFCs" or hydrochlorofluorocarbons "HCFCs" 01/01/2007 31/12/2500 -38247800 01/01/2007 31/12/2015 LIBEN Mixtures containing perfluorocarbons "PFCs" or hydrofluorocarbons "HFCs", but not containing chlorofluorocarbons "CFCs" or hydrochlorofluorocarbons "HCFCs" 01/01/2007 31/12/2015 -38247810 01/01/2016 31/12/2500 LIBEN Mixtures containing only 1,1,1-trifluoroethane and pentafluoroethane 01/01/2016 31/12/2500 -38247820 01/01/2016 31/12/2500 LIBEN Mixtures containing only 1,1,1-trifluoroethane, pentafluoroethane and 1,1,1,2-tetrafluoroethane 01/01/2016 31/12/2500 -38247830 01/01/2016 31/12/2500 LIBEN Mixtures containing only difluoromethane and pentafluoroethane 01/01/2016 31/12/2500 -38247840 01/01/2016 31/12/2500 LIBEN Mixtures containing only difluoromethane, pentafluoroethane and 1,1,1,2-tetrafluoroethane 01/01/2016 31/12/2500 -38247880 01/01/2016 31/12/2500 LIBEN Mixtures containing unsaturated hydrofluorocarbons, but not containing chlorofluorocarbons "CFCs" or hydrochlorofluorocarbons "HCFCs" 01/01/2016 31/12/2500 -38247890 01/01/2016 31/12/2500 LIBEN Mixtures containing perfluorocarbons "PFCs" or hydrofluorocarbons "HFCs", n.e.s. 01/01/2016 31/12/2500 -382479 01/01/1996 31/12/2500 LIBEN Mixtures containing halogenated derivatives of methane, ethane or propane (excl. those of subheadings 3824.71.00 to 3824.78.00) 01/01/1996 31/12/2500 -38247900 01/01/1996 31/12/2006 LIBEN Mixtures containing perhalogenated derivatives of acyclic hydrocarbons containing two or more different halogens (excl. only with fluorine and chlorine) 01/01/1996 31/12/2006 -38247900 01/01/2007 31/12/2500 LIBEN Mixtures containing halogenated derivatives of methane, ethane or propane (excl. those of subheadings 3824.71.00 to 3824.78.00) 01/01/2007 31/12/2500 -382481 01/01/2007 31/12/2500 LIBEN Mixtures and preparations containing oxirane "ethylene oxide" 01/01/2007 31/12/2500 -38248100 01/01/2007 31/12/2500 LIBEN Mixtures and preparations containing oxirane "ethylene oxide" 01/01/2007 31/12/2500 -382482 01/01/2007 31/12/2500 LIBEN Mixtures and preparations containing polychlorinated biphenyls "PCBs", polychlorinated terphenyls "PCTs" or polybrominated biphenyls "PBBs" 01/01/2007 31/12/2500 -38248200 01/01/2007 31/12/2500 LIBEN Mixtures and preparations containing polychlorinated biphenyls "PCBs", polychlorinated terphenyls "PCTs" or polybrominated biphenyls "PBBs" 01/01/2007 31/12/2500 -382483 01/01/2007 31/12/2500 LIBEN Mixtures and preparations containing tris"2,3-dibromopropyl" phosphate 01/01/2007 31/12/2500 -38248300 01/01/2007 31/12/2500 LIBEN Mixtures and preparations containing tris"2,3-dibromopropyl" phosphate 01/01/2007 31/12/2500 -382484 01/01/2017 31/12/2500 LIBEN Mixtures and preparations containing aldrin (ISO), camphechlor (ISO) "toxaphene", chlordane (ISO), chlordecone (ISO), DDT (ISO) "clofenotane (INN), 1,1,1-trichloro-2,2-bis"p-chlorophenyl"ethane", dieldrin "ISO, INN", endosulfan (ISO), endrin (ISO), heptachlor (ISO) or mirex (ISO) 01/01/2017 31/12/2500 -38248400 01/01/2017 31/12/2500 LIBEN Mixtures and preparations containing aldrin (ISO), camphechlor (ISO) "toxaphene", chlordane (ISO), chlordecone (ISO), DDT (ISO) "clofenotane (INN), 1,1,1-trichloro-2,2-bis"p-chlorophenyl"ethane", dieldrin "ISO, INN", endosulfan (ISO), endrin (ISO), heptachlor (ISO) or mirex (ISO) 01/01/2017 31/12/2500 -382485 01/01/2017 31/12/2500 LIBEN Mixtures and preparations containing 1,2,3,4,5,6-hexachlorocyclohexane "HCH (ISO)", including lindane "ISO, INN" 01/01/2017 31/12/2500 -38248500 01/01/2017 31/12/2500 LIBEN Mixtures and preparations containing 1,2,3,4,5,6-hexachlorocyclohexane "HCH (ISO)", including lindane "ISO, INN" 01/01/2017 31/12/2500 -382486 01/01/2017 31/12/2500 LIBEN Mixtures and preparations containing pentachlorobenzene (ISO) or hexachlorobenzene (ISO) 01/01/2017 31/12/2500 -38248600 01/01/2017 31/12/2500 LIBEN Mixtures and preparations containing pentachlorobenzene (ISO) or hexachlorobenzene (ISO) 01/01/2017 31/12/2500 -382487 01/01/2017 31/12/2500 LIBEN Mixtures and preparations containing perfluorooctane sulphonic acid, its salts, perfluorooctane sulphonamides, or perfluorooctane sulphonyl fluoride 01/01/2017 31/12/2500 -38248700 01/01/2017 31/12/2500 LIBEN Mixtures and preparations containing perfluorooctane sulphonic acid, its salts, perfluorooctane sulphonamides, or perfluorooctane sulphonyl fluoride 01/01/2017 31/12/2500 -382488 01/01/2017 31/12/2500 LIBEN Mixtures and preparations containing tetra-, penta-, hexa-, hepta- or octabromodiphenyl ethers 01/01/2017 31/12/2500 -38248800 01/01/2017 31/12/2500 LIBEN Mixtures and preparations containing tetra-, penta-, hexa-, hepta- or octabromodiphenyl ethers 01/01/2017 31/12/2500 -382490 01/01/1996 31/12/2016 LIBEN Chemical products and preparations of the chemical or allied industries, incl. those consisting of mixtures of natural products, n.e.s. 01/01/1996 31/12/2016 -38249010 01/01/1996 31/12/2016 LIBEN Thiophenated sulphonic acids of bituminous mineral oil, and salts thereof; petroleum sulphonates (excl. those of ammonium, alkali metals or ethanolamines) 01/01/1996 31/12/2016 -38249015 01/01/1996 31/12/2016 LIBEN Ion-exchangers (excl. polymers of chapter 39) 01/01/1996 31/12/2016 -38249020 01/01/1996 31/12/2016 LIBEN Getters for electric vacuum tubes 01/01/1996 31/12/2016 -38249025 01/01/1996 31/12/2016 LIBEN Pyrolignites, e.g. of calcium; crude calcium tartrate; crude calcium citrate 01/01/1996 31/12/2016 -38249030 01/01/1996 31/12/2003 LIBEN Alkaline iron oxide for the purification of gas 01/01/1996 31/12/2003 -38249030 01/01/2007 31/12/2016 LIBEN Naphthenic acids and the water-insoluble salts and esters thereof 01/01/2007 31/12/2016 -38249035 01/01/1996 31/12/2014 LIBEN Anti-rust preparations containing amines as active constituents 01/01/1996 31/12/2014 -38249040 01/01/1996 31/12/2014 LIBEN Inorganic composite solvents and thinners for varnishes and similar products 01/01/1996 31/12/2014 -38249045 01/01/1996 31/12/2016 LIBEN Anti-scaling and similar compounds 01/01/1996 31/12/2016 -38249050 01/01/1996 31/12/2016 LIBEN Preparations for electroplating for the chemical and allied industries 01/01/1996 31/12/2016 -38249055 01/01/1996 31/12/2016 LIBEN Mixtures of mono-, di- and tri-, fatty acid esters of glycerol "emulsifiers for fats" 01/01/1996 31/12/2016 -38249058 01/01/2012 31/12/2016 LIBEN Nicotine patches (transdermal systems), intented to assist smokers to stop smoking 01/01/2012 31/12/2016 -38249060 01/01/1996 31/12/1996 LIBEN Products and preparations for the chemical and allied industries for pharmaceutical or chemical uses n.e.s. 01/01/1996 31/12/1996 -38249061 01/01/1997 31/12/2016 LIBEN Intermediate products of the antibiotics manufacturing process obtained from the fermentation of Streptomyces tenebrarius, whether or not dried, for use in the manufacture of human medicaments of heading 3004 01/01/1997 31/12/2016 -38249062 01/01/1997 31/12/2016 LIBEN Intermediate products from the manufacture of monensin salts for pharmaceutical or chemical uses 01/01/1997 31/12/2016 -38249064 01/01/1997 31/12/2016 LIBEN Products and preparations for the chemical and allied industries for pharmaceutical or chemical uses, n.e.s. (excl. intermediate products of the antibiotics manufacturing process obtained from the fermentation of Streptomyces tenebrarius, whether or not dried, for use in the manufacture of human medicaments of heading 3004 and intermediate products from the manufacture of monensin salts) 01/01/1997 31/12/2016 -38249065 01/01/1996 31/12/2016 LIBEN Auxiliary products in the form of chemical preparations of a kind used in foundries (excl. prepared binders for foundry moulds or cores) 01/01/1996 31/12/2016 -38249070 01/01/1996 31/12/2016 LIBEN Fire-proofing, water-proofing and similar chemical protective preparations used in the building industry 01/01/1996 31/12/2016 -38249075 01/01/1997 31/12/2016 LIBEN Lithium niobate wafer, undoped 01/01/1997 31/12/2016 -38249080 01/01/1997 31/12/2016 LIBEN Mixture of amines derived from dimerised fatty acids, of an average molecular weight of >= 520 but <= 550 01/01/1997 31/12/2016 -38249085 01/01/1997 31/12/2016 LIBEN 3-"1-Ethyl-1-methylpropyl"isoxazol-5-ylamine, in the form of a solution in toluene 01/01/1997 31/12/2016 -38249087 01/01/2010 31/12/2016 LIBEN Mixtures consisting mainly of (5-ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl)methyl methyl methylphosphonate and bis[(5-ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl)methyl] methylphosphonate and mixtures consisting mainly of dimethyl methylphosphonate, oxirane and diphosphorus pentaoxide 01/01/2010 31/12/2016 -38249090 01/01/1996 31/12/1996 LIBEN Products, preparations and residual products of the chemical or allied industries, incl. those consisting of mixtures of natural products, n.e.s. 01/01/1996 31/12/1996 -38249091 01/01/2008 31/12/2011 LIBEN Fatty acid mono-alkyl esters, containing by volume 96,5 % or more of esters (FAMAE) 01/01/2008 31/12/2011 -38249092 01/01/2015 31/12/2016 LIBEN Chemical products or preparations, predominantly composed of organic compounds, in the form of a liquid at 20°C, n.e.s. 01/01/2015 31/12/2016 -38249093 01/01/2015 31/12/2016 LIBEN Chemical products or preparations, predominantly composed of organic compounds, n.e.s. (excl. in the form of a liquid at 20°C) 01/01/2015 31/12/2016 -38249095 01/01/1997 31/12/2001 LIBEN Products, preparations and residual products of the chemical or allied industries, incl. those consisting of mixtures of natural products, n.e.s. 01/01/1997 31/12/2001 -38249096 01/01/2015 31/12/2016 LIBEN Chemical products and preparations of the chemical or allied industries, incl. those consisting of mixtures of natural products, not predominantly composed of organic compounds, n.e.s. 01/01/2015 31/12/2016 -38249097 01/01/2008 31/12/2009 LIBEN Chemical products and preparations of the chemical or allied industries, incl. those consisting of mixtures of natural products, n.e.s. 01/01/2008 31/12/2009 -38249097 01/01/2010 31/12/2011 LIBEN Chemical products and preparations of the chemical or allied industries, incl. those consisting of mixtures of natural products, n.e.s. 01/01/2010 31/12/2011 -38249097 01/01/2012 31/12/2014 LIBEN Chemical products and preparations of the chemical or allied industries, incl. those consisting of mixtures of natural products, n.e.s. 01/01/2012 31/12/2014 -38249098 01/01/2007 31/12/2007 LIBEN Chemical products and preparations of the chemical or allied industries, incl. those consisting of mixtures of natural products, n.e.s. 01/01/2007 31/12/2007 -38249099 01/01/2002 31/12/2006 LIBEN Chemical products and preparations of the chemical or allied industries, incl. those consisting of mixtures of natural products, n.e.s. 01/01/2002 31/12/2006 -382491 01/01/2017 31/12/2500 LIBEN Mixtures and preparations consisting mainly of "5-ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl"methyl methyl methylphosphonate and bis["5-ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl"methyl] methylphosphonate 01/01/2017 31/12/2500 -38249100 01/01/2017 31/12/2500 LIBEN Mixtures and preparations consisting mainly of "5-ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl"methyl methyl methylphosphonate and bis["5-ethyl-2-methyl-2-oxido-1,3,2-dioxaphosphinan-5-yl"methyl] methylphosphonate 01/01/2017 31/12/2500 -382499 01/01/2017 31/12/2500 LIBEN Chemical products and preparations of the chemical or allied industries, incl. those consisting of mixtures of natural products, n.e.s. 01/01/2017 31/12/2500 -38249910 01/01/2017 31/12/2500 LIBEN Thiophenated sulphonic acids of bituminous mineral oil, and salts thereof; petroleum sulphonates (excl. those of ammonium, alkali metals or ethanolamines) 01/01/2017 31/12/2500 -38249915 01/01/2017 31/12/2500 LIBEN Ion-exchangers (excl. polymers of chapter 39) 01/01/2017 31/12/2500 -38249920 01/01/2017 31/12/2500 LIBEN Getters for vacuum tubes 01/01/2017 31/12/2500 -38249925 01/01/2017 31/12/2500 LIBEN Pyrolignites, e.g. of calcium; crude calcium tartrate; crude calcium citrate 01/01/2017 31/12/2500 -38249930 01/01/2017 31/12/2500 LIBEN Naphthenic acids and the water-insoluble salts and esters thereof 01/01/2017 31/12/2500 -38249945 01/01/2017 31/12/2500 LIBEN Anti-scaling and similar compounds 01/01/2017 31/12/2500 -38249950 01/01/2017 31/12/2500 LIBEN Preparations for electroplating for the chemical and allied industries 01/01/2017 31/12/2500 -38249955 01/01/2017 31/12/2500 LIBEN Mixtures of mono-, di- and tri-, fatty acid esters of glycerol "emulsifiers for fats" 01/01/2017 31/12/2500 -38249956 01/01/2018 31/12/2500 LIBEN Cartridges and refills, filled, for electronic cigarettes, and preparations for use in the cartridges and refills, containing nicotine or its salts, ethers, esters or other derivatives thereof 01/01/2018 31/12/2500 -38249957 01/01/2018 31/12/2500 LIBEN Cartridges and refills, filled, for electronic cigarettes, and preparations for use in the cartridges and refills, not containing nicotine or its salts, ethers, esters or other derivatives thereof 01/01/2018 31/12/2500 -38249958 01/01/2017 31/12/2500 LIBEN Nicotine patches "transdermal systems", intented to assist smokers to stop smoking 01/01/2017 31/12/2500 -38249961 01/01/2017 31/12/2500 LIBEN Intermediate products of the antibiotics manufacturing process obtained from the fermentation of Streptomyces tenebrarius, whether or not dried, for use in the manufacture of human medicaments of heading 3004 01/01/2017 31/12/2500 -38249962 01/01/2017 31/12/2500 LIBEN Intermediate products from the manufacture of monensin salts for pharmaceutical or surgical uses 01/01/2017 31/12/2500 -38249964 01/01/2017 31/12/2500 LIBEN Products and preparations for the chemical and allied industries for pharmaceutical or surgical uses, n.e.s. 01/01/2017 31/12/2500 -38249965 01/01/2017 31/12/2500 LIBEN Auxiliary products for foundries in the form of chemical preparations (excl. prepared binders for foundry moulds or cores) 01/01/2017 31/12/2500 -38249970 01/01/2017 31/12/2500 LIBEN Fireproofing, waterproofing and similar chemical protective preparations used in the building industry 01/01/2017 31/12/2500 -38249975 01/01/2017 31/12/2500 LIBEN Lithium niobate wafer, undoped 01/01/2017 31/12/2500 -38249980 01/01/2017 31/12/2500 LIBEN Mixture of amines derived from dimerised fatty acids, of an average molecular weight of >= 520 but <= 550 01/01/2017 31/12/2500 -38249985 01/01/2017 31/12/2500 LIBEN 3-"1-Ethyl-1-methylpropyl"isoxazol-5-ylamine, in the form of a solution in toluene 01/01/2017 31/12/2500 -38249986 01/01/2017 31/12/2500 LIBEN Mixtures consisting mainly of dimethyl methylphosphonate, oxirane and diphosphorus pentaoxide 01/01/2017 31/12/2500 -38249992 01/01/2017 31/12/2017 LIBEN Non-cellular polyethylene film of a thickness of >= 20 micrometres but <= 40 micrometres, for the production of photoresist film used in the manufacture of semiconductors or printed circuits 01/01/2017 31/12/2017 -38249992 01/01/2018 31/12/2500 LIBEN Chemical products or preparations, predominantly composed of organic compounds, in liquid form at 20°C, n.e.s. 01/01/2018 31/12/2500 -38249992 01/01/2018 31/12/2500 LIBEN CHEMICAL PRODUCTS OR PREPARATIONS, PREDOMINANTLY COMPOSED OF ORGANIC COMPOUNDS, IN LIQUID FORM AT 20°C, N.E.S. 01/01/2018 31/12/2500 -38249993 01/01/2017 31/12/2500 LIBEN Chemical products or preparations, predominantly composed of organic compounds, n.e.s. (excl. in liquid form at 20°C) 01/01/2017 31/12/2500 -38249996 01/01/2017 31/12/2500 LIBEN Chemical products and preparations of the chemical or allied industries, incl. those consisting of mixtures of natural products, not predominantly composed of organic compounds, n.e.s. 01/01/2017 31/12/2500 -3824S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3824 and SITC section 5 01/01/1997 31/12/2500 -3824S598 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3824 and SITC group 598 01/01/1997 31/12/2500 -3825 01/01/2002 31/12/2500 LIBEN Residual products of the chemical or allied industries, n.e.s.; municipal waste; sewage sludge; clinical waste, waste organic solvents, wastes of metal pickling liquors, of hydraulic fluids, brake fluids and anti-freeze fluids and other wastes from chemical or allied industries (excl. wastes containing mainly petroleum oils or oils obtained from bituminous minerals) 01/01/2002 31/12/2500 -382510 01/01/2002 31/12/2500 LIBEN Municipal waste 01/01/2002 31/12/2500 -38251000 01/01/2002 31/12/2500 LIBEN Municipal waste 01/01/2002 31/12/2500 -382520 01/01/2002 31/12/2500 LIBEN Sewage sludge 01/01/2002 31/12/2500 -38252000 01/01/2002 31/12/2500 LIBEN Sewage sludge 01/01/2002 31/12/2500 -382530 01/01/2002 31/12/2500 LIBEN Clinical waste 01/01/2002 31/12/2500 -38253000 01/01/2002 31/12/2500 LIBEN Clinical waste 01/01/2002 31/12/2500 -382541 01/01/2002 31/12/2500 LIBEN Waste organic solvents, halogenated 01/01/2002 31/12/2500 -38254100 01/01/2002 31/12/2500 LIBEN Waste organic solvents, halogenated 01/01/2002 31/12/2500 -382549 01/01/2002 31/12/2500 LIBEN Waste organic solvents, non-halogenated 01/01/2002 31/12/2500 -38254900 01/01/2002 31/12/2500 LIBEN Waste organic solvents, non-halogenated 01/01/2002 31/12/2500 -382550 01/01/2002 31/12/2500 LIBEN Wastes of metal pickling liquors, of hydraulic fluids, brake fluids and anti-freeze fluids 01/01/2002 31/12/2500 -38255000 01/01/2002 31/12/2500 LIBEN Wastes of metal pickling liquors, of hydraulic fluids, brake fluids and anti-freeze fluids 01/01/2002 31/12/2500 -382561 01/01/2002 31/12/2500 LIBEN Wastes from chemical or allied industries, mainly containing organic constituents (excl. anti-freeze fluids) 01/01/2002 31/12/2500 -38256100 01/01/2002 31/12/2500 LIBEN Wastes from chemical or allied industries, mainly containing organic constituents (excl. anti-freeze fluids) 01/01/2002 31/12/2500 -382569 01/01/2002 31/12/2500 LIBEN Wastes from chemical or allied industries (excl. wastes of metal pickling liquors, of hydraulic fluids, brake fluids and anti-freeze fluids and those mainly containing organic constituents) 01/01/2002 31/12/2500 -38256900 01/01/2002 31/12/2500 LIBEN Wastes from chemical or allied industries (excl. wastes of metal pickling liquors, of hydraulic fluids, brake fluids and anti-freeze fluids and those mainly containing organic constituents) 01/01/2002 31/12/2500 -382590 01/01/2002 31/12/2500 LIBEN Residual products of the chemical or allied industries, n.e.s. (excl. waste) 01/01/2002 31/12/2500 -38259000 01/01/2002 31/12/2003 LIBEN Residual products of the chemical or allied industries, n.e.s. (excl. waste) 01/01/2002 31/12/2003 -38259010 01/01/2004 31/12/2500 LIBEN Alkaline iron oxide for the purification of gas 01/01/2004 31/12/2500 -38259090 01/01/2004 31/12/2500 LIBEN Residual products of the chemical or allied industries, n.e.s. (excl. waste) 01/01/2004 31/12/2500 -3826 01/01/2012 31/12/2500 LIBEN Biodiesel and mixtures thereof, not containing or containing < 70 % by weight of petroleum oils or oils obtained from bituminous minerals 01/01/2012 31/12/2500 -382600 01/01/2012 31/12/2500 LIBEN Biodiesel and mixtures thereof, not containing or containing < 70 % by weight of petroleum oils or oils obtained from bituminous minerals 01/01/2012 31/12/2500 -38260010 01/01/2012 31/12/2500 LIBEN Fatty-acid mono-alkyl esters, containing by weight => 96,5 % of esters "FAMAE" 01/01/2012 31/12/2500 -38260090 01/01/2012 31/12/2500 LIBEN Biodiesel and mixtures thereof, not containing or containing < 70 % by weight of petroleum oils or oils obtained from bituminous minerals (excl. fatty-acid mono-alkyl esters containing by weight >= 96,5 % of esters "FAMAE") 01/01/2012 31/12/2500 -38CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 38 01/01/2002 31/12/2500 -38CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 38 01/01/2002 31/12/2500 -38CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 38 01/01/2002 31/12/2500 -38MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -38MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -38MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -38SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 38 01/01/1988 31/12/2500 -38SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 38 and SITC section 0 01/01/1997 31/12/2001 -38SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 38 and SITC group 000 01/01/1997 31/12/2001 -38SSS4 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 38 and SITC section 4 01/01/1997 31/12/2500 -38SSS431 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 38 and SITC group 431 01/01/1997 31/12/2500 -38SSS5 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 38 and SITC section 5 01/01/1988 31/12/2500 -38SSS512 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 38 and SITC group 512 01/01/1997 31/12/2500 -38SSS533 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 38 and SITC group 533 01/01/1997 31/12/2500 -38SSS591 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 38 and SITC group 591 01/01/1997 31/12/2500 -38SSS597 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 38 and SITC group 597 01/01/1988 31/12/2500 -38SSS598 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 38 and SITC group 598 01/01/1988 31/12/2500 -38SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 38 and SITC section 6 01/01/1997 31/12/2500 -38SSS662 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 38 and SITC group 662 01/01/1997 31/12/2500 -38SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 38 and SITC section 9 01/01/1988 31/12/1996 -38SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 38 and SITC section 9 01/01/1997 31/12/2500 -38SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 38 and SITC group 999 01/01/1988 31/12/1996 -38SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 38 and SITC group 999 01/01/1997 31/12/2500 -38VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 38 for the assembly of motor vehicles 01/01/1988 31/12/2500 -38VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 38 for the assembly of motor vehicles 01/01/1988 31/12/2500 -38VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 38 for the assembly of motor vehicles 01/01/1988 31/12/2500 -39 01/01/1988 31/12/2500 LIBEN PLASTICS AND ARTICLES THEREOF 01/01/1988 31/12/2500 -3901 01/01/1988 31/12/2500 LIBEN Polymers of ethylene, in primary forms 01/01/1988 31/12/2500 -390110 01/01/1988 31/12/2500 LIBEN Polyethylene with a specific gravity of < 0,94, in primary forms 01/01/1988 31/12/2500 -39011010 01/01/1988 31/12/2500 LIBEN Linear polyethylene with a specific gravity of < 0,94, in primary forms 01/01/1988 31/12/2500 -39011090 01/01/1988 31/12/2500 LIBEN Polyethylene with a specific gravity of < 0,94, in primary forms (excl. linear polyethylene) 01/01/1988 31/12/2500 -390120 01/01/1988 31/12/2500 LIBEN Polyethylene with a specific gravity of >= 0,94, in primary forms 01/01/1988 31/12/2500 -39012000 01/01/1988 31/12/1996 LIBEN Polyethylene with a specific gravity of >= 0,94, in primary forms 01/01/1988 31/12/1996 -39012010 01/01/1997 31/12/2500 LIBEN Polyethylene in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms, of a specific gravity of >= 0,958 at 23°C, containing <= 50 mg/kg of aluminium, <= 2 mg/kg of calcium, of chromium, of iron, of nickel and of titanium each and <= 8 mg/kg of vanadium, for the manufacture of chlorosulphonated polyethylene 01/01/1997 31/12/2500 -39012090 01/01/1997 31/12/2500 LIBEN Polyethylene with a specific gravity of >= 0,94, in primary forms (excl. polyethylene in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms, of a specific gravity of >= 0,958 at 23°C, containing <= 50 mg/kg of aluminium, <= 2 mg/kg of calcium, of chromium, of iron, of nickel and of titanium each and <= 8 mg/kg of vanadium, for the manufacture of chlorosulphonated polyethylene) 01/01/1997 31/12/2500 -390130 01/01/1988 31/12/2500 LIBEN Ethylene-vinyl acetate copolymers, in primary forms 01/01/1988 31/12/2500 -39013000 01/01/1988 31/12/2500 LIBEN Ethylene-vinyl acetate copolymers, in primary forms 01/01/1988 31/12/2500 -390140 01/01/2017 31/12/2500 LIBEN Ethylene-alpha-olefin copolymers, having a specific gravity of < 0,94 , in primary forms 01/01/2017 31/12/2500 -39014000 01/01/2017 31/12/2500 LIBEN Ethylene-alpha-olefin copolymers, having a specific gravity of < 0,94 , in primary forms 01/01/2017 31/12/2500 -390190 01/01/1988 31/12/2500 LIBEN Polymers of ethylene, in primary forms (excl. polyethylene and ethylene-vinyl acetate copolymers) 01/01/1988 31/12/2500 -39019000 01/01/1988 31/12/1996 LIBEN Polymers of ethylene, in primary forms (excl. polyethylene and ethylene-vinyl acetate copolymers) 01/01/1988 31/12/1996 -39019010 01/01/1997 31/12/2009 LIBEN Ionomer resin consisting of a salt of a terpolymer of ethylene with isobutyl acrylate and methacrylic acid, in primary forms 01/01/1997 31/12/2009 -39019020 01/01/1997 31/12/2009 LIBEN A-B-A block copolymer of ethylene of polystyrene, ethylene-butylene copolymer and polystyrene, containing by weight <= 35% of styrene, in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms 01/01/1997 31/12/2009 -39019030 01/01/2010 31/12/2500 LIBEN Ionomer resin consisting of a salt of a terpolymer of ethylene with isobutyl acrylate and methacrylic acid, in primary forms, and A-B-A block copolymer of ethylene of polystyrene, ethylene-butylene copolymer and polystyrene, containing by weight <= 35% of styrene, in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms 01/01/2010 31/12/2500 -39019080 01/01/2017 31/12/2500 LIBEN Polymers of ethylene, in primary forms (excl. polyethylene, ethylene-vinyl acetate copolymers, ethylene-alpha-olefins copolymers having a specific gravity of < 0,94, ionomer resin consisting of a salt of a terpolymer of ethylene with isobutyl acrylate and methacrylic acid and A-B-A block copolymer of ethylene of polystyrene, ethylene-butylene copolymer and polystyrene, containing by weight <= 35% of styrene, in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms) 01/01/2017 31/12/2500 -39019090 01/01/1997 31/12/2016 LIBEN Polymers of ethylene, in primary forms (excl. polyethylene, ethylene-vinyl acetate copolymers, ionomer resin consisting of a salt of a terpolymer of ethylene with isobutyl acrylate and methacrylic acid and A-B-A block copolymer of ethylene of polystyrene, ethylene-butylene copolymer and polystyrene, containing by weight <= 35% of styrene, in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms) 01/01/1997 31/12/2016 -3901S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3901 and SITC section 5 01/01/1997 31/12/2500 -3901S571 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3901 and SITC group 571 01/01/1997 31/12/2500 -3902 01/01/1988 31/12/2500 LIBEN Polymers of propylene or of other olefins, in primary forms 01/01/1988 31/12/2500 -390210 01/01/1988 31/12/2500 LIBEN Polypropylene, in primary forms 01/01/1988 31/12/2500 -39021000 01/01/1988 31/12/2500 LIBEN Polypropylene, in primary forms 01/01/1988 31/12/2500 -390220 01/01/1988 31/12/2500 LIBEN Polyisobutylene, in primary forms 01/01/1988 31/12/2500 -39022000 01/01/1988 31/12/2500 LIBEN Polyisobutylene, in primary forms 01/01/1988 31/12/2500 -390230 01/01/1988 31/12/2500 LIBEN Propylene copolymers, in primary forms 01/01/1988 31/12/2500 -39023000 01/01/1988 31/12/2500 LIBEN Propylene copolymers, in primary forms 01/01/1988 31/12/2500 -390290 01/01/1988 31/12/2500 LIBEN Polymers of propylene or of other olefins, in primary forms (excl. polypropylene, polyisobutylene and propylene copolymers) 01/01/1988 31/12/2500 -39029000 01/01/1988 31/12/1996 LIBEN Polymers of propylene or of other olefins, in primary forms (excl. polypropylene, polyisobutylene and propylene copolymers) 01/01/1988 31/12/1996 -39029010 01/01/1997 31/12/2500 LIBEN A-B-A block copolymer of propylene or of other olefins, of polystyrene, ethylene-butylene copolymer and polystyrene, containing by weight <= 35% of styrene, in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms 01/01/1997 31/12/2500 -39029020 01/01/1997 31/12/2500 LIBEN Polybut-1-ene, a copolymer of but-1-ene with ethylene containing by weight <= 10% of ethylene, or a blend of polybut-1-ene with polyethylene and/or polypropylene containing by weight <= 10% of polyethylene and/or <= 25% of polypropylene, in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms 01/01/1997 31/12/2500 -39029090 01/01/1997 31/12/2500 LIBEN Polymers of propylene or of other olefins, in primary forms (excl. polypropylene, polyisobutylene, propylene copolymers, and a A-B-A block copolymer of polystyrene, ethylene-butylene copolymer and polystyrene, containing by weight <= 35% of styrene and polybut-1-ene, a copolymer of but-1-ene with ethylene containing by weight <= 10% of ethylene, or a blend of polybut-1-ene with polyethylene and/or polypropylene containing by weight <= 10% of polyethylene and/or <= 25% of polypropylene, in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms) 01/01/1997 31/12/2500 -3902S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3902 and SITC section 5 01/01/1997 31/12/2500 -3902S575 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3902 and SITC group 575 01/01/1997 31/12/2500 -3903 01/01/1988 31/12/2500 LIBEN Polymers of styrene, in primary forms 01/01/1988 31/12/2500 -390311 01/01/1988 31/12/2500 LIBEN Expansible polystyrene, in primary forms 01/01/1988 31/12/2500 -39031100 01/01/1988 31/12/2500 LIBEN Expansible polystyrene, in primary forms 01/01/1988 31/12/2500 -390319 01/01/1988 31/12/2500 LIBEN Polystyrene, in primary forms (excl. expansible) 01/01/1988 31/12/2500 -39031900 01/01/1988 31/12/2500 LIBEN Polystyrene, in primary forms (excl. expansible) 01/01/1988 31/12/2500 -390320 01/01/1988 31/12/2500 LIBEN Styrene-acrylonitrile copolymers "SAN", in primary forms 01/01/1988 31/12/2500 -39032000 01/01/1988 31/12/2500 LIBEN Styrene-acrylonitrile copolymers "SAN", in primary forms 01/01/1988 31/12/2500 -390330 01/01/1988 31/12/2500 LIBEN Acrylonitrile-butadiene-styrene copolymers "ABS", in primary forms 01/01/1988 31/12/2500 -39033000 01/01/1988 31/12/2500 LIBEN Acrylonitrile-butadiene-styrene copolymers "ABS", in primary forms 01/01/1988 31/12/2500 -390390 01/01/1988 31/12/2500 LIBEN Polymers of styrene, in primary forms (excl. polystyrene, styrene-acrylonitrile copolymers "SAN" and acrylonitrile-butadiene-styrene "ABS") 01/01/1988 31/12/2500 -39039000 01/01/1988 31/12/1996 LIBEN Polymers of styrene, in primary forms (excl. polystyrene, styrene-acrylonitrile copolymers "SAN" and acrylonitrile-butadiene-styrene "ABS") 01/01/1988 31/12/1996 -39039010 01/01/1997 31/12/2500 LIBEN Copolymer solely of styrene with allyl alcohol, of an acetyl value of >= 175, in primary form 01/01/1997 31/12/2500 -39039020 01/01/1997 31/12/2500 LIBEN Brominated polystyrene containing by weight >= 58% but <= 71% of bromine, in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms 01/01/1997 31/12/2500 -39039090 01/01/1997 31/12/2500 LIBEN Polymers of styrene, in primary forms (excl. polystyrene, styrene-acrylonitrile copolymers "SAN", acrylonitrile-butadiene-styrene "ABS", copolymer solely of styrene with allyl alcohol, of an acetyl value of >= 175 and brominated polystyrene, containing by weight >= 58% but <= 71% of bromine, in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms) 01/01/1997 31/12/2500 -3903S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3903 and SITC section 5 01/01/1997 31/12/2500 -3903S572 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3903 and SITC group 572 01/01/1997 31/12/2500 -3904 01/01/1988 31/12/2500 LIBEN Polymers of vinyl chloride or of other halogenated olefins, in primary forms 01/01/1988 31/12/2500 -390410 01/01/1988 31/12/2500 LIBEN Poly"vinyl chloride", in primary forms, not mixed with any other substances 01/01/1988 31/12/2500 -39041000 01/01/1988 31/12/2500 LIBEN Poly"vinyl chloride", in primary forms, not mixed with any other substances 01/01/1988 31/12/2500 -390421 01/01/1988 31/12/2500 LIBEN Non-plasticised poly"vinyl chloride", in primary forms, mixed with other substances 01/01/1988 31/12/2500 -39042100 01/01/1988 31/12/2500 LIBEN Non-plasticised poly"vinyl chloride", in primary forms, mixed with other substances 01/01/1988 31/12/2500 -390422 01/01/1988 31/12/2500 LIBEN Plasticised poly"vinyl chloride", in primary forms, mixed with other substances 01/01/1988 31/12/2500 -39042200 01/01/1988 31/12/2500 LIBEN Plasticised poly"vinyl chloride", in primary forms, mixed with other substances 01/01/1988 31/12/2500 -390430 01/01/1988 31/12/2500 LIBEN Vinyl chloride-vinyl acetate copolymers, in primary forms 01/01/1988 31/12/2500 -39043000 01/01/1988 31/12/2500 LIBEN Vinyl chloride-vinyl acetate copolymers, in primary forms 01/01/1988 31/12/2500 -390440 01/01/1988 31/12/2500 LIBEN Vinyl chloride copolymers, in primary forms (excl. vinyl chloride-vinyl acetate copolymers) 01/01/1988 31/12/2500 -39044000 01/01/1988 31/12/2500 LIBEN Vinyl chloride copolymers, in primary forms (excl. vinyl chloride-vinyl acetate copolymers) 01/01/1988 31/12/2500 -390450 01/01/1988 31/12/2500 LIBEN Vinylidene chloride polymers, in primary forms 01/01/1988 31/12/2500 -39045000 01/01/1988 31/12/1996 LIBEN Vinylidene chloride polymers, in primary forms 01/01/1988 31/12/1996 -39045010 01/01/1997 31/12/2500 LIBEN Copolymer of vinylidene chloride with acrylonitrile, in the form of expansible beads of a diameter of >= 4 micrometres but <= 20 micrometres 01/01/1997 31/12/2500 -39045090 01/01/1997 31/12/2500 LIBEN Vinylidene chloride polymers, in primary forms (excl. copolymer of vinylidene chloride with acrylonitrile, in the form of expansible beads of a diameter of >= 4 but <= 20 micrometres) 01/01/1997 31/12/2500 -390461 01/01/1988 31/12/2500 LIBEN Polytetrafluoroethylene, in primary forms 01/01/1988 31/12/2500 -39046100 01/01/1988 31/12/1995 LIBEN Polytetrafluoroethylene, in primary forms 01/01/1988 31/12/1995 -39046100 01/01/1998 31/12/2500 LIBEN Polytetrafluoroethylene, in primary forms 01/01/1998 31/12/2500 -39046110 01/01/1996 31/12/1997 LIBEN Polytetrafluoroethylene, in primary forms, for the manufacture of pharmaceutical products 01/01/1996 31/12/1997 -39046190 01/01/1996 31/12/1997 LIBEN Polytetrafluoroethylene, in primary forms (excl. for the manufacture of pharmaceutical products) 01/01/1996 31/12/1997 -390469 01/01/1988 31/12/2500 LIBEN Fluoropolymers of vinyl chloride or of other halogenated olefins, in primary forms (excl. polytetrafluoroethylene) 01/01/1988 31/12/2500 -39046900 01/01/1988 31/12/1996 LIBEN Fluoro-polymers of vinyl chloride or of other halogenated olefins, in primary forms (excl. polytetrafluoroethylene) 01/01/1988 31/12/1996 -39046910 01/01/1997 31/12/2500 LIBEN Poly"vinyl fluoride" in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms 01/01/1997 31/12/2500 -39046920 01/01/2011 31/12/2500 LIBEN Fluoroelastomers FKM, in primary forms 01/01/2011 31/12/2500 -39046980 01/01/2011 31/12/2500 LIBEN Fluoropolymers of vinyl chloride or of other halogenated olefins, in primary forms (excl. fluoroelastomers FKM, polytetrafluoroethylene, poly(vinyl fluoride) in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms) 01/01/2011 31/12/2500 -39046990 01/01/1997 31/12/2010 LIBEN Fluoropolymers of vinyl chloride or of other halogenated olefins, in primary forms (excl. polytetrafluoroethylene and poly"vinyl fluoride" in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms) 01/01/1997 31/12/2010 -390490 01/01/1988 31/12/2500 LIBEN Polymers of vinyl chloride or other halogenated olefins, in primary forms (excl. poly"vinyl chloride", copolymers of vinyl chloride, polymers of vinyl chloride and fluoropolymers) 01/01/1988 31/12/2500 -39049000 01/01/1988 31/12/2500 LIBEN Polymers of vinyl chloride or other halogenated olefins, in primary forms (excl. poly"vinyl chloride", copolymers of vinyl chloride, polymers of vinyl chloride and fluoropolymers) 01/01/1988 31/12/2500 -3904S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3904 and SITC section 5 01/01/1997 31/12/2500 -3904S573 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3904 and SITC group 573 01/01/1997 31/12/2500 -3905 01/01/1988 31/12/2500 LIBEN Polymers of vinyl acetate or of other vinyl esters, in primary forms; other vinyl polymers, in primary forms 01/01/1988 31/12/2500 -390511 01/01/1988 31/12/1995 LIBEN Polymers of vinyl acetate, in aqueous dispersion 01/01/1988 31/12/1995 -39051100 01/01/1988 31/12/1995 LIBEN Polymers of vinyl acetate, in aqueous dispersion 01/01/1988 31/12/1995 -390512 01/01/1996 31/12/2500 LIBEN Poly"vinyl acetate", in aqueous dispersion 01/01/1996 31/12/2500 -39051200 01/01/1996 31/12/2500 LIBEN Poly"vinyl acetate", in aqueous dispersion 01/01/1996 31/12/2500 -390519 01/01/1988 31/12/2500 LIBEN Poly"vinyl acetate", in primary forms (excl. in aqueous dispersion) 01/01/1988 31/12/2500 -39051900 01/01/1988 31/12/1995 LIBEN Polymers of vinyl acetate, in primary forms (excl. in aqueous dispersion) 01/01/1988 31/12/1995 -39051900 01/01/1996 31/12/2500 LIBEN Poly"vinyl acetate", in primary forms (excl. in aqueous dispersion) 01/01/1996 31/12/2500 -390520 01/01/1988 31/12/1995 LIBEN Polyvinyl alcohols, whether or not containing unhydrolyzed acetate groups, in primary forms 01/01/1988 31/12/1995 -39052000 01/01/1988 31/12/1995 LIBEN Polyvinyl alcohols, whether or not containing unhydrolyzed acetate groups, in primary forms 01/01/1988 31/12/1995 -390521 01/01/1996 31/12/2500 LIBEN Vinyl acetate copolymers, in aqueous dispersion 01/01/1996 31/12/2500 -39052100 01/01/1996 31/12/2500 LIBEN Vinyl acetate copolymers, in aqueous dispersion 01/01/1996 31/12/2500 -390529 01/01/1996 31/12/2500 LIBEN Vinyl acetate copolymers, in primary forms (excl. in aqueous dispersion) 01/01/1996 31/12/2500 -39052900 01/01/1996 31/12/2500 LIBEN Vinyl acetate copolymers, in primary forms (excl. in aqueous dispersion) 01/01/1996 31/12/2500 -390530 01/01/1996 31/12/2500 LIBEN Poly"vinyl alcohol", in primary forms, whether or not containing unhydrolyzed acetate groups 01/01/1996 31/12/2500 -39053000 01/01/1996 31/12/2500 LIBEN Poly"vinyl alcohol", in primary forms, whether or not containing unhydrolyzed acetate groups 01/01/1996 31/12/2500 -390590 01/01/1988 31/12/1995 LIBEN Vinyl polymers or polymers of vinyl esters, in primary forms (excl. those of vinyl chloride or other halogenated olefins, polymers of vinyl acetate and polyvinyl alcohols, whether or not containing unhydrolized acetate groups) 01/01/1988 31/12/1995 -39059000 01/01/1988 31/12/1995 LIBEN Vinyl polymers or polymers of vinyl esters, in primary forms (excl. those of vinyl chloride or other halogenated olefins, polymers of vinyl acetate and polyvinyl alcohols, whether or not containing unhydrolized acetate groups) 01/01/1988 31/12/1995 -390591 01/01/1996 31/12/2500 LIBEN Copolymers of vinyl, in primary forms (excl. vinyl chloride-vinyl acetate copolymers and other vinyl chloride copolymers, and vinyl acetate copolymers) 01/01/1996 31/12/2500 -39059100 01/01/1996 31/12/2500 LIBEN Copolymers of vinyl, in primary forms (excl. vinyl chloride-vinyl acetate copolymers and other vinyl chloride copolymers, and vinyl acetate copolymers) 01/01/1996 31/12/2500 -390599 01/01/1996 31/12/2500 LIBEN Polymers of vinyl esters and other vinyl polymers, in primary forms (excl. those of vinyl chloride or other halogenated olefins, poly"vinyl acetate", vinyl acetate copolymers and poly"vinyl alcohol", whether or not containing unhydrolised acetate groups) 01/01/1996 31/12/2500 -39059900 01/01/1996 31/12/1996 LIBEN Polymers of vinyl esters and other vinyl polymers, in primary forms (excl. those of vinyl chloride or other halogenated olefins, polyvinyl acetate, vinyl acetate copolymers and polyvinyl alcohol, whether or not containing unhydrolized acetate groups) 01/01/1996 31/12/1996 -39059910 01/01/1997 31/12/2500 LIBEN Poly"vinyl formal" in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms, of a molecular weight of >= 10.000 but <= 40.000 and containing by weight >= 9,5% but <= 13% of acetyl groups evaluated as vinyl acetate and >= 5% but <= 6,5% of hydroxy groups evaluated as vinyl alcohol 01/01/1997 31/12/2500 -39059990 01/01/1997 31/12/2500 LIBEN Polymers of vinyl esters and other vinyl polymers, in primary forms (excl. those of vinyl chloride or other halogenated olefins, poly"vinyl acetate", copolymers and poly"vinyl alcohol", whether or not containing unhydrolised acetate groups, and poly"vinyl formal" in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms, of a molecular weight of >= 10.000 but <= 40.000 and containing by weight >= 9,5% but <= 13% of acetyl groups evaluated as vinyl acetate and >= 5% but <= 6,5% of hydroxy groups evaluated as vinyl alcohol) 01/01/1997 31/12/2500 -3905S5 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 3905 and SITC section 5 01/01/1998 31/12/2500 -3905S575 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 3905 and SITC group 575 01/01/1998 31/12/2500 -3906 01/01/1988 31/12/2500 LIBEN Acrylic polymers, in primary forms 01/01/1988 31/12/2500 -390610 01/01/1988 31/12/2500 LIBEN Poly"methyl methacrylate", in primary forms 01/01/1988 31/12/2500 -39061000 01/01/1988 31/12/2500 LIBEN Poly"methyl methacrylate", in primary forms 01/01/1988 31/12/2500 -390690 01/01/1988 31/12/2500 LIBEN Acrylic polymers, in primary forms (excl. poly"methyl methacrylate") 01/01/1988 31/12/2500 -39069000 01/01/1988 31/12/1996 LIBEN Acrylic polymers, in primary forms (excl. polymethyl methacrylate) 01/01/1988 31/12/1996 -39069010 01/01/1997 31/12/2500 LIBEN Poly[N-"3-hydroxyimino-1,1-dimethylbutyl"acrylamide], in primary forms 01/01/1997 31/12/2500 -39069020 01/01/1997 31/12/2500 LIBEN Copolymer of 2-diisopropylaminoethyl methacrylate with decyl methacrylate in the form of a solution in N,N-dimethylacetamide, containing by weight >= 55% of copolymer 01/01/1997 31/12/2500 -39069030 01/01/1997 31/12/2500 LIBEN Copolymer of acrylic acid with 2-ethylhexyl acrylate containing by weight >= 10% but <= 11% of 2-ethylhexyl acrylate, in primary forms 01/01/1997 31/12/2500 -39069040 01/01/1997 31/12/2500 LIBEN Copolymer of acrylonitrile with methyl acrylate, modified with polybutadiene-acrylonitrile "NBR", in primary forms 01/01/1997 31/12/2500 -39069050 01/01/1997 31/12/2500 LIBEN Polymerization product of acrylic acid with alkyl methacrylate and small quantities of other monomers, for use as a thickener in the manufacture of textile printing pastes 01/01/1997 31/12/2500 -39069060 01/01/1997 31/12/2500 LIBEN Copolymer of methyl acrylate with ethylene and a monomer containing a non-terminal carboxy group as a substituent, containing by weight >= 50% of methyl acrylate, whether or not compounded with silica, in primary forms 01/01/1997 31/12/2500 -39069090 01/01/1997 31/12/2500 LIBEN Acrylic polymers in primary forms (excl. poly"methyl methacrylate", poly[N-"3-hydroxyimino-1,1-dimethylbutyl"acrylamide], copolymer of 2-diisopropylaminoethyl methacrylate with decyl methacrylate in the form of a solution in N,N-dimethylacetamide, containing by weight >= 55% of copolymer, copolymer of acrylic acid with 2-ethylhexyl acrylate containing by weight >= 10% but <= 11% of 2-ethylhexyl acrylate, copolymer of acrylonitrile with methyl acrylate modified with polybutadiene-acrylonitrile "NBR", polymerization product of acrylic acid with alkyl methacrylate and small quantities of other monomers for use as a thickener in the manufacture of textile printing pastes and copolymer of methyl acrylate with ethylene and a monomer containing a non-terminal carboxy group as a substituent, containing by weight >= 50% of methyl acrylate, whether or not compounded with silica) 01/01/1997 31/12/2500 -3907 01/01/1988 31/12/2500 LIBEN Polyacetals, other polyethers and epoxide resins, in primary forms; polycarbonates, alkyd resins, polyallyl esters and other polyesters, in primary forms 01/01/1988 31/12/2500 -390710 01/01/1988 31/12/2500 LIBEN Polyacetals, in primary forms 01/01/1988 31/12/2500 -39071000 01/01/1988 31/12/2500 LIBEN Polyacetals, in primary forms 01/01/1988 31/12/2500 -390720 01/01/1988 31/12/2500 LIBEN Polyethers, in primary forms (excl. polyacetals and goods of 3002 10) 01/01/1988 31/12/2500 -39072011 01/01/1988 31/12/1995 LIBEN Polyethylene glycols, in primary forms 01/01/1988 31/12/1995 -39072011 01/01/1998 31/12/2500 LIBEN Polyethylene glycols, in primary forms 01/01/1998 31/12/2500 -39072012 01/01/1996 31/12/1997 LIBEN Polyethylene glycols, in primary forms, for the manufacture of pharmaceutical products 01/01/1996 31/12/1997 -39072019 01/01/1988 31/12/1993 LIBEN Polyether alcohols, in primary forms (excl. polyethylene glycols) 01/01/1988 31/12/1993 -39072019 01/01/1996 31/12/1997 LIBEN Polyethylene glycols, in primary forms (excl. for the manufacture of pharmaceutical products) 01/01/1996 31/12/1997 -39072020 01/01/2010 31/12/2500 LIBEN Polyether alcohols, in primary forms (excl. polyethylene glycols) 01/01/2010 31/12/2500 -39072021 01/01/1994 31/12/2009 LIBEN Polyether alcohols with a hydroxyl number of <= 100, in primary forms (excl. polyethylene glycols) 01/01/1994 31/12/2009 -39072029 01/01/1994 31/12/2009 LIBEN Polyether alcohols with a hydroxyl number of > 100, in primary forms (excl. polyethylene glycols) 01/01/1994 31/12/2009 -39072090 01/01/1988 31/12/1996 LIBEN Polyethers, in primary forms (excl. polyether alcohols and polyacetals) 01/01/1988 31/12/1996 -39072091 01/01/1997 31/12/2500 LIBEN Copolymer of 1-chloro-2,3-epoxypropane with ethylene oxide, in primary forms 01/01/1997 31/12/2500 -39072099 01/01/1997 31/12/2011 LIBEN Polyethers in primary forms (excl. polyether alcohols, polyacetals and copolymer of 1-chloro-2,3-epoxypropane with ethylene oxide) 01/01/1997 31/12/2011 -39072099 01/01/2012 31/12/2500 LIBEN Polyethers in primary forms (excl. polyether alcohols, polyacetals and copolymer of 1-chloro-2,3-epoxypropane with ethylene oxide) 01/01/2012 31/12/2500 -390730 01/01/1988 31/12/2500 LIBEN Epoxide resins, in primary forms 01/01/1988 31/12/2500 -39073000 01/01/1988 31/12/2500 LIBEN Epoxide resins, in primary forms 01/01/1988 31/12/2500 -390740 01/01/1988 31/12/2500 LIBEN Polycarbonates, in primary forms 01/01/1988 31/12/2500 -39074000 01/01/1988 31/12/2500 LIBEN Polycarbonates, in primary forms 01/01/1988 31/12/2500 -390750 01/01/1988 31/12/2500 LIBEN Alkyd resins, in primary forms 01/01/1988 31/12/2500 -39075000 01/01/1988 31/12/2500 LIBEN Alkyd resins, in primary forms 01/01/1988 31/12/2500 -390760 01/01/1988 31/12/2016 LIBEN Poly"ethylene terephthalate", in primary forms 01/01/1988 31/12/2016 -39076000 01/01/1988 31/12/1995 LIBEN Polyethylene terephthalate, in primary forms 01/01/1988 31/12/1995 -39076000 01/01/1998 31/12/1999 LIBEN Polyethylene terephthalate, in primary forms 01/01/1998 31/12/1999 -39076010 01/01/1996 31/12/1997 LIBEN Polyethylene terephtalate, in primary forms, for the manufacture of pharmaceutical products 01/01/1996 31/12/1997 -39076020 01/01/2000 31/12/2016 LIBEN Poly"ethylene terephthalate", in primary forms, having a viscosity number of >= 78 ml/g 01/01/2000 31/12/2016 -39076080 01/01/2000 31/12/2016 LIBEN Poly"ethylene terephthalate", in primary forms, having a viscosity number of < 78 ml/g 01/01/2000 31/12/2016 -39076090 01/01/1996 31/12/1997 LIBEN Polyethylene terephtalate, in primary forms (excl. for the manufacture of pharmaceutical products) 01/01/1996 31/12/1997 -390761 01/01/2017 31/12/2500 LIBEN Poly"ethylene terephthalate", in primary forms, having a viscosity number of >= 78 ml/g 01/01/2017 31/12/2500 -39076100 01/01/2017 31/12/2500 LIBEN Poly"ethylene terephthalate", in primary forms, having a viscosity number of >= 78 ml/g 01/01/2017 31/12/2500 -390769 01/01/2017 31/12/2500 LIBEN Poly"ethylene terephthalate", in primary forms, having a viscosity number of < 78 ml/g 01/01/2017 31/12/2500 -39076900 01/01/2017 31/12/2500 LIBEN Poly"ethylene terephthalate", in primary forms, having a viscosity number of < 78 ml/g 01/01/2017 31/12/2500 -390770 01/01/2007 31/12/2500 LIBEN Poly"lactic acid", in primary forms 01/01/2007 31/12/2500 -39077000 01/01/2007 31/12/2500 LIBEN Poly"lactic acid", in primary forms 01/01/2007 31/12/2500 -390791 01/01/1988 31/12/2500 LIBEN Unsaturated polyallyl esters and other polyesters, in primary forms (excl. polycarbonates, alkyd resins, poly"ethylene terephthalate" and poly"lactic acid") 01/01/1988 31/12/2500 -39079100 01/01/1988 31/12/1988 LIBEN Unsaturated polyallyl esters and other polyesters, in primary forms 01/01/1988 31/12/1988 -39079110 01/01/1989 31/12/2500 LIBEN Unsaturated liquid polyesters, in primary forms (excl. polycarbonates, alkyd resins, poly"ethylene terephthalate" and poly"lactic acid") 01/01/1989 31/12/2500 -39079190 01/01/1989 31/12/2500 LIBEN Unsaturated polyesters, in primary forms (excl. liquid, and polycarbonates, alkyd resins, poly"ethylene terephthalate" and poly"lactic acid") 01/01/1989 31/12/2500 -390799 01/01/1988 31/12/2500 LIBEN Saturated polyesters in primary forms (excl. polycarbonates, alkyd resins, poly"ethylene terephthalate" and poly"lactic acid") 01/01/1988 31/12/2500 -39079900 01/01/1988 31/12/1993 LIBEN Saturated polyallyl esters and other polyesters, in primary forms 01/01/1988 31/12/1993 -39079905 01/01/2017 31/12/2500 LIBEN Thermoplastic liquid crystal aromatic polyester copolymers, saturated, in primary forms 01/01/2017 31/12/2500 -39079910 01/01/1994 31/12/1996 LIBEN Polyesters with a hydroxyl number of <= 100, saturated, in primary forms (excl. polycarbonates, alkyd resins and polyethyleneterephthalate) 01/01/1994 31/12/1996 -39079910 01/01/2010 31/12/2500 LIBEN Poly"ethylene naphthalene-2,6-dicarboxylate", saturated, in primary forms 01/01/2010 31/12/2500 -39079911 01/01/1997 31/12/2009 LIBEN Poly"ethylene naphthalene-2,6-dicarboxylate" with a hydroxyl number of <= 100, saturated, in primary forms 01/01/1997 31/12/2009 -39079919 01/01/1997 31/12/2009 LIBEN Polyesters with a hydroxyl number of <= 100, saturated, in primary forms (excl. polycarbonates, alkyd resins, poly"ethylene terephthalate", poly"lactic acid" and poly"ethylene naphthalene-2,6-dicarboxylate") 01/01/1997 31/12/2009 -39079980 01/01/2017 31/12/2500 LIBEN Polyesters, saturated, in primary forms (excl. polycarbonates, alkyd resins, poly"ethylene terephthalate", poly"lactic acid", poly"ethylene naphthalene-2,6-dicarboxylate" and thermoplastic liquid crystal aromatic polyester copolymers) 01/01/2017 31/12/2500 -39079990 01/01/1994 31/12/1996 LIBEN Polyesters with a hydroxyl number of > 100, saturated, in primary forms (excl. polycarbonates, alkyd resins and polyethyleneterephtalate) 01/01/1994 31/12/1996 -39079990 01/01/2010 31/12/2016 LIBEN Polyesters, saturated, in primary forms (excl. polycarbonates, alkyd resins, poly"ethylene terephthalate", poly"lactic acid" and poly"ethylene naphthalene-2,6-dicarboxylate") 01/01/2010 31/12/2016 -39079991 01/01/1997 31/12/2009 LIBEN Poly"ethylene naphthalene-2,6-dicarboxylate" with a hydroxyl number of > 100, saturated, in primary forms 01/01/1997 31/12/2009 -39079998 01/01/2007 31/12/2009 LIBEN Polyesters with a hydroxyl number of > 100, saturated, in primary forms (excl. polycarbonates, alkyd resins, poly"ethylene terephthalate", poly"lactic acid" and poly"ethylene naphthalene-2,6-dicarboxylate") 01/01/2007 31/12/2009 -39079999 01/01/1997 31/12/2006 LIBEN Polyesters with a hydroxyl number of > 100, saturated, in primary forms (excl. polycarbonates, alkyd resins, poly"ethylene terephtalate" and poly"ethylene naphthalene-2,6-dicarboxylate") 01/01/1997 31/12/2006 -3907S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3907 and SITC section 5 01/01/1997 31/12/2500 -3907S574 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3907 and SITC group 574 01/01/1997 31/12/2500 -3907S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3907 and SITC section 9 01/01/2002 31/12/2500 -3907S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3907 and SITC group 999 01/01/2002 31/12/2500 -3908 01/01/1988 31/12/2500 LIBEN Polyamides, in primary forms 01/01/1988 31/12/2500 -390810 01/01/1988 31/12/2500 LIBEN Polyamides-6, -11, -12, -6,6, -6,9, -6,10 or -6,12, in primary forms 01/01/1988 31/12/2500 -39081000 01/01/1988 31/12/2500 LIBEN Polyamides-6, -11, -12, -6,6, -6,9, -6,10 or -6,12, in primary forms 01/01/1988 31/12/2500 -390890 01/01/1988 31/12/2500 LIBEN Polyamides, in primary forms (excl. polyamides-6, -11, -12, -6,6, -6,9, -6,10 and -6,12) 01/01/1988 31/12/2500 -39089000 01/01/1988 31/12/2500 LIBEN Polyamides, in primary forms (excl. polyamides-6, -11, -12, -6,6, -6,9, -6,10 and -6,12) 01/01/1988 31/12/2500 -3908S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3908 and SITC section 9 01/01/2002 31/12/2500 -3908S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3908 and SITC group 999 01/01/2002 31/12/2500 -3909 01/01/1988 31/12/2500 LIBEN Amino-resins, phenolic resins and polyurethanes, in primary forms 01/01/1988 31/12/2500 -390910 01/01/1988 31/12/2500 LIBEN Urea resins and thiourea resins, in primary forms 01/01/1988 31/12/2500 -39091000 01/01/1988 31/12/2500 LIBEN Urea resins and thiourea resins, in primary forms 01/01/1988 31/12/2500 -390920 01/01/1988 31/12/2500 LIBEN Melamine resins, in primary forms 01/01/1988 31/12/2500 -39092000 01/01/1988 31/12/2500 LIBEN Melamine resins, in primary forms 01/01/1988 31/12/2500 -390930 01/01/1988 31/12/2016 LIBEN Amino-resins, in primary forms (excl. urea resins, thiourea resins and melamine resins) 01/01/1988 31/12/2016 -39093000 01/01/1988 31/12/2016 LIBEN Amino-resins, in primary forms (excl. urea resins, thiourea resins and melamine resins) 01/01/1988 31/12/2016 -390931 01/01/2017 31/12/2500 LIBEN Poly"methylene phenyl isocyanate" "crude MDI, polymeric MDI", in primary forms 01/01/2017 31/12/2500 -39093100 01/01/2017 31/12/2500 LIBEN Poly"methylene phenyl isocyanate" "crude MDI, polymeric MDI", in primary forms 01/01/2017 31/12/2500 -390939 01/01/2017 31/12/2500 LIBEN Amino-resins, in primary forms (excl. urea, thiourea and melamine resins and MDI) 01/01/2017 31/12/2500 -39093900 01/01/2017 31/12/2500 LIBEN Amino-resins, in primary forms (excl. urea, thiourea and melamine resins and MDI) 01/01/2017 31/12/2500 -390940 01/01/1988 31/12/2500 LIBEN Phenolic resins, in primary forms 01/01/1988 31/12/2500 -39094000 01/01/1988 31/12/2500 LIBEN Phenolic resins, in primary forms 01/01/1988 31/12/2500 -390950 01/01/1988 31/12/2500 LIBEN Polyurethanes, in primary forms 01/01/1988 31/12/2500 -39095000 01/01/1988 31/12/1996 LIBEN Polyurethanes, in primary forms 01/01/1988 31/12/1996 -39095010 01/01/1997 31/12/2500 LIBEN Polyurethane of 2,2'-"tert-butylimino"diethanol and 4,4'-methylenedicyclohexyl diisocyanate, in the form of a solution in N,N-dimethylacetamide, containing by weight >= 50% of polymer 01/01/1997 31/12/2500 -39095090 01/01/1997 31/12/2500 LIBEN Polyurethanes in primary forms (excl. polyurethane of 2,2'-"tert-butylimino"diethanol and 4,4'-methylenedicyclohexyl diisocyanate, in the form of a solution in N,N-dimethylacetamide) 01/01/1997 31/12/2500 -390950SS 01/01/2007 31/12/2500 LIBEN Confidential trade of heading 3909 50 01/01/2007 31/12/2500 -3909S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3909 and SITC section 5 01/01/1997 31/12/2500 -3909S575 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3909 and SITC group 575 01/01/1997 31/12/2500 -3910 01/01/1988 31/12/2500 LIBEN Silicones in primary forms 01/01/1988 31/12/2500 -391000 01/01/1988 31/12/2500 LIBEN Silicones in primary forms 01/01/1988 31/12/2500 -39100000 01/01/1988 31/12/2500 LIBEN Silicones in primary forms 01/01/1988 31/12/2500 -3910S5 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 3910 and SITC section 5 01/01/2001 31/12/2500 -3910S575 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 3910 and SITC group 575 01/01/2001 31/12/2500 -3910S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3910 and SITC section 9 01/01/2002 31/12/2500 -3910S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3910 and SITC group 999 01/01/2002 31/12/2500 -3911 01/01/1988 31/12/2500 LIBEN Petroleum resins, coumarone-indene resins, polyterpenes, polysulphides, polysulphones and other polymers and prepolymers produced by chemical synthesis, n.e.s., in primary forms 01/01/1988 31/12/2500 -391110 01/01/1988 31/12/2500 LIBEN Petroleum resins, coumarone, indene or coumarone-indene resins and polyterpenes, in primary forms 01/01/1988 31/12/2500 -39111000 01/01/1988 31/12/2500 LIBEN Petroleum resins, coumarone, indene or coumarone-indene resins and polyterpenes, in primary forms 01/01/1988 31/12/2500 -391190 01/01/1988 31/12/2500 LIBEN Polysulphides, polysulphones and other polymers and prepolymers produced by chemical synthesis, n.e.s., in primary forms 01/01/1988 31/12/2500 -39119010 01/01/1988 31/12/1996 LIBEN Condensation or rearrangement polymerization products, whether or not chemically modified, n.e.s., in primary forms 01/01/1988 31/12/1996 -39119011 01/01/1997 31/12/2500 LIBEN Poly"oxy-1,4-phenylenesulphonyl-1,4-phenyleneoxy-1,4-phenyleneisopropylidene-1,4-phenylene" in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms, whether or not chemically modified 01/01/1997 31/12/2500 -39119013 01/01/1997 31/12/2500 LIBEN Poly"thio-1,4-phenylene", whether or not chemically modified, in primary forms 01/01/1997 31/12/2500 -39119019 01/01/1997 31/12/2500 LIBEN Condensation or rearrangement polymerization products, whether or not chemically modified, n.e.s., in primary forms (excl. poly"oxy-1,4-phenylenesulphonyl-1,4-phenyleneoxy-1,4-phenyleneisopropylidene-1,4-phenylene" in blocks of irregular shape, lumps, powders, granules, flakes and similar bulk forms and poly"thio-1,4-phenylene) 01/01/1997 31/12/2500 -39119090 01/01/1988 31/12/1996 LIBEN Polymer and prepolymer plastics produced by chemical synthesis, n.e.s., in primary forms 01/01/1988 31/12/1996 -39119091 01/01/1997 31/12/2009 LIBEN Copolymer of p-cresol and divinylbenzene, in the form of a solution in N,N-dimethylacetamide, containing by weight >= 50% of polymer, produced by chemical synthesis 01/01/1997 31/12/2009 -39119092 01/01/2010 31/12/2500 LIBEN Hydrogenated copolymers of vinyltoluene and alfa-methylstyrene, and copolymer of p-cresol and divinylbenzene, in the form of a solution in N,N-dimethylacetamide containing by weight 50 % or more of polymer, produced by chemical synthesis, in primary forms 01/01/2010 31/12/2500 -39119093 01/01/1997 31/12/2009 LIBEN Hydrogenated copolymers of vinyltoluene and alfa-methylstyrene, produced by chemical synthesis, in primary forms 01/01/1997 31/12/2009 -39119099 01/01/1997 31/12/2500 LIBEN Polymer and prepolymer plastics produced by chemical synthesis, n.e.s., in primary forms (excl. copolymer of p-cresol and divinylbenzene in the form of a solution in N,N-dimethylacetamide containing by weight >= 50% of polymer and hydrogenated copolymers of vinyltoluene and alfa-methylstyrene) 01/01/1997 31/12/2500 -3911S5 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 3911 and SITC section 5 01/01/1998 31/12/2500 -3911S575 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 3911 and SITC group 575 01/01/1998 31/12/2500 -3911S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3911 and SITC section 9 01/01/2002 31/12/2500 -3911S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3911 and SITC group 999 01/01/2002 31/12/2500 -3912 01/01/1988 31/12/2500 LIBEN Cellulose and its chemical derivatives, n.e.s., in primary forms 01/01/1988 31/12/2500 -391211 01/01/1988 31/12/2500 LIBEN Non-plasticised cellulose acetates, in primary forms 01/01/1988 31/12/2500 -39121100 01/01/1988 31/12/2500 LIBEN Non-plasticised cellulose acetates, in primary forms 01/01/1988 31/12/2500 -391212 01/01/1988 31/12/2500 LIBEN Plasticised cellulose acetates, in primary forms 01/01/1988 31/12/2500 -39121200 01/01/1988 31/12/2500 LIBEN Plasticised cellulose acetates, in primary forms 01/01/1988 31/12/2500 -391220 01/01/1988 31/12/2500 LIBEN Cellulose nitrates, incl. collodions, in primary forms 01/01/1988 31/12/2500 -39122011 01/01/1988 31/12/2500 LIBEN Non-plasticised collodions and celloidin, in primary forms 01/01/1988 31/12/2500 -39122019 01/01/1988 31/12/2500 LIBEN Non-plasticised cellulose nitrates, in primary forms (excl. collodions and colloidin) 01/01/1988 31/12/2500 -39122090 01/01/1988 31/12/2500 LIBEN Plasticised cellulose nitrates, incl. collodions, in primary forms 01/01/1988 31/12/2500 -391231 01/01/1988 31/12/2500 LIBEN Carboxymethylcellulose and its salts, in primary forms 01/01/1988 31/12/2500 -39123100 01/01/1988 31/12/2500 LIBEN Carboxymethylcellulose and its salts, in primary forms 01/01/1988 31/12/2500 -391239 01/01/1988 31/12/2500 LIBEN Cellulose ethers, in primary forms (excl. carboxymethylcellulose and its salts) 01/01/1988 31/12/2500 -39123910 01/01/1988 31/12/2009 LIBEN Ethylcellulose, in primary forms 01/01/1988 31/12/2009 -39123920 01/01/1997 31/12/2500 LIBEN Hydroxypropylcellulose in primary forms 01/01/1997 31/12/2500 -39123980 01/01/1997 31/12/2009 LIBEN Cellulose ethers in primary forms (excl. carboxymethylcellulose and its salts, ethylcellulose and hydroxypropylcellulose) 01/01/1997 31/12/2009 -39123985 01/01/2010 31/12/2500 LIBEN Cellulose ethers in primary forms (excl. carboxymethylcellulose and its salts and hydroxypropylcellulose) 01/01/2010 31/12/2500 -39123990 01/01/1988 31/12/1996 LIBEN Cellulose ethers, in primary forms (excl. ethylcellulose and carboxymethylcellulose and salts thereof) 01/01/1988 31/12/1996 -391290 01/01/1988 31/12/2500 LIBEN Cellulose and chemical derivatives thereof, n.e.s., in primary forms (excl. cellulose acetates, cellulose nitrates and cellulose ethers) 01/01/1988 31/12/2500 -39129010 01/01/1988 31/12/2500 LIBEN Cellulose esters, in primary forms 01/01/1988 31/12/2500 -39129090 01/01/1988 31/12/2500 LIBEN Cellulose and chemical derivatives thereof, n.e.s., in primary forms (excl. cellulose acetates, cellulose nitrates, cellulose ethers and cellulose esters) 01/01/1988 31/12/2500 -3912S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3912 and SITC section 5 01/01/1997 31/12/2500 -3912S575 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3912 and SITC group 575 01/01/1997 31/12/2500 -3913 01/01/1988 31/12/2500 LIBEN Natural polymers, e.g. alginic acid, and modified natural polymers, e.g. hardened proteins, chemical derivatives of natural rubber, n.e.s., in primary forms 01/01/1988 31/12/2500 -391310 01/01/1988 31/12/2500 LIBEN Alginic acid, its salts and esters, in primary forms 01/01/1988 31/12/2500 -39131000 01/01/1988 31/12/2500 LIBEN Alginic acid, its salts and esters, in primary forms 01/01/1988 31/12/2500 -391390 01/01/1988 31/12/2500 LIBEN Natural polymers and modified natural polymers, e.g. hardened proteins, chemical derivatives of natural rubber, n.e.s., in primary forms (excl. alginic acid and its salts and esters) 01/01/1988 31/12/2500 -39139000 01/01/2004 31/12/2500 LIBEN Natural polymers and modified natural polymers, e.g. hardened proteins, chemical derivatives of natural rubber, n.e.s., in primary forms (excl. alginic acid and its salts and esters) 01/01/2004 31/12/2500 -39139010 01/01/1988 31/12/2003 LIBEN Chemical derivatives of natural rubber, in primary forms 01/01/1988 31/12/2003 -39139020 01/01/1992 31/12/2003 LIBEN Amylopektin, in primary forms 01/01/1992 31/12/2003 -39139030 01/01/1992 31/12/2003 LIBEN Amylose, in primary forms 01/01/1992 31/12/2003 -39139080 01/01/1992 31/12/2003 LIBEN Natural polymers and modified natural polymers, e.g. hardened proteins, n.e.s., in primary forms (excl. chemical derivatives of natural rubber, alginic acid, its salts and esters, and amylopektin and amylose) 01/01/1992 31/12/2003 -39139090 01/01/1988 31/12/1991 LIBEN Natural polymers and modified natural polymers, e.g. hardened proteins, n.e.s., in primary forms (excl. chemical derivatives of natural rubber, alginic acid and salts and esters thereof) 01/01/1988 31/12/1991 -3913S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3913 and SITC section 5 01/01/1997 31/12/2500 -3913S575 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3913 and SITC group 575 01/01/1997 31/12/2500 -3914 01/01/1988 31/12/2500 LIBEN Ion-exchangers based on polymers of heading 3901 to 3913, in primary forms 01/01/1988 31/12/2500 -391400 01/01/1988 31/12/2500 LIBEN Ion-exchangers based on polymers of heading 3901 to 3913, in primary forms 01/01/1988 31/12/2500 -39140000 01/01/1988 31/12/2500 LIBEN Ion-exchangers based on polymers of heading 3901 to 3913, in primary forms 01/01/1988 31/12/2500 -3914S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3914 and SITC section 5 01/01/1997 31/12/2500 -3914S575 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3914 and SITC group 575 01/01/1997 31/12/2500 -3914S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3914 and SITC section 9 01/01/2002 31/12/2500 -3914S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3914 and SITC group 999 01/01/2002 31/12/2500 -3915 01/01/1988 31/12/2500 LIBEN Waste, parings and scrap, of plastics 01/01/1988 31/12/2500 -391510 01/01/1988 31/12/2500 LIBEN Waste, parings and scrap, of polymers of ethylene 01/01/1988 31/12/2500 -39151000 01/01/1988 31/12/2500 LIBEN Waste, parings and scrap, of polymers of ethylene 01/01/1988 31/12/2500 -391520 01/01/1988 31/12/2500 LIBEN Waste, parings and scrap, of polymers of styrene 01/01/1988 31/12/2500 -39152000 01/01/1988 31/12/2500 LIBEN Waste, parings and scrap, of polymers of styrene 01/01/1988 31/12/2500 -391530 01/01/1988 31/12/2500 LIBEN Waste, parings and scrap, of polymers of vinyl chloride 01/01/1988 31/12/2500 -39153000 01/01/1988 31/12/2500 LIBEN Waste, parings and scrap, of polymers of vinyl chloride 01/01/1988 31/12/2500 -391590 01/01/1988 31/12/2500 LIBEN Waste, parings and scrap of plastics (excl. that of polymers of ethylene, styrene and vinyl chloride) 01/01/1988 31/12/2500 -39159011 01/01/1988 31/12/1995 LIBEN Waste, parings and scrap, of polymers of propylene 01/01/1988 31/12/1995 -39159011 01/01/1996 31/12/2500 LIBEN Waste, parings and scrap, of polymers of propylene 01/01/1996 31/12/2500 -39159013 01/01/1988 31/12/1995 LIBEN Waste, parings and scrap, of acrylic polymers 01/01/1988 31/12/1995 -39159013 01/01/1996 31/12/2003 LIBEN Waste, parings and scrap, of acrylic polymers 01/01/1996 31/12/2003 -39159018 01/01/2004 31/12/2009 LIBEN Waste, parings and scrap, of addition polymerization products (excl. that of polymers of ethylene, styrene and vinyl chloride and propylene) 01/01/2004 31/12/2009 -39159019 01/01/1988 31/12/1995 LIBEN Waste, parings and scrap, of addition polymerization products (excl. that of acrylic polymers, polymers of ethylene, styrene and vinyl chloride and propylene) 01/01/1988 31/12/1995 -39159019 01/01/1996 31/12/2003 LIBEN Waste, parings and scrap, of addition polymerization products (excl. that of acrylic polymers, polymers of ethylene, styrene and vinyl chloride and propylene) 01/01/1996 31/12/2003 -39159080 01/01/2010 31/12/2500 LIBEN Waste, parings and scrap, of plastics (excl. that of polymers of ethylene, styrene, vinyl chloride and propylene) 01/01/2010 31/12/2500 -39159090 01/01/2004 31/12/2009 LIBEN Waste, parings and scrap, of plastics (excl. that of addition polymerization products) 01/01/2004 31/12/2009 -39159091 01/01/1988 31/12/1995 LIBEN Waste, parings and scrap, of epoxide resins 01/01/1988 31/12/1995 -39159091 01/01/1996 31/12/2003 LIBEN Waste, parings and scrap, of epoxide resins 01/01/1996 31/12/2003 -39159093 01/01/1988 31/12/1995 LIBEN Waste, parings and scrap, of cellulose and its chemical derivatives 01/01/1988 31/12/1995 -39159093 01/01/1996 31/12/2003 LIBEN Waste, parings and scrap, of cellulose and its chemical derivatives 01/01/1996 31/12/2003 -39159099 01/01/1988 31/12/1995 LIBEN Waste, parings and scrap, of plastics (excl. that of addition polymerization products, epoxide resins, cellulose and its chemical derivatives) 01/01/1988 31/12/1995 -39159099 01/01/1996 31/12/2003 LIBEN Waste, parings and scrap, of plastics (excl. that of addition polymerization products, epoxide resins, cellulose and its chemical derivatives) 01/01/1996 31/12/2003 -3915S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3915 and SITC section 9 01/01/2002 31/12/2500 -3915S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3915 and SITC group 999 01/01/2002 31/12/2500 -3916 01/01/1988 31/12/2500 LIBEN Monofilament of which any cross-sectional dimension > 1 mm, rods, sticks and profile shapes, of plastics, whether or not surface-worked but not further worked 01/01/1988 31/12/2500 -391610 01/01/1988 31/12/2500 LIBEN Monofilament of which any cross-sectional dimension > 1 mm, rods, sticks and profile shapes, of polymers of ethylene, whether or not surface-worked but not further worked 01/01/1988 31/12/2500 -39161000 01/01/1988 31/12/2500 LIBEN Monofilament of which any cross-sectional dimension > 1 mm, rods, sticks and profile shapes, of polymers of ethylene, whether or not surface-worked but not further worked 01/01/1988 31/12/2500 -391620 01/01/1988 31/12/2500 LIBEN Monofilament with any cross-sectional dimension of > 1 mm, rods, sticks and profile shapes, whether or not surface-worked but not otherwise worked, of polymers of vinyl chloride 01/01/1988 31/12/2500 -39162000 01/01/1988 31/12/1993 LIBEN Monofilament of which any cross-sectional dimension > 1 mm, rods, sticks and profile shapes, of polymers of vinyl chloride, whether or not surface-worked but not further worked 01/01/1988 31/12/1993 -39162000 01/01/2010 31/12/2500 LIBEN Monofilament with any cross-sectional dimension of > 1 mm, rods, sticks and profile shapes, whether or not surface-worked but not otherwise worked, of polymers of vinyl chloride 01/01/2010 31/12/2500 -39162010 01/01/1994 31/12/2009 LIBEN Monofilament with any cross-sectional dimension of > 1 mm, rods, sticks and profile shapes, whether or not surface-worked but not further worked, of poly"vinyl chloride" 01/01/1994 31/12/2009 -39162090 01/01/1994 31/12/2009 LIBEN Monofilament with any cross-sectional dimension of > 1 mm, rods, sticks and profile shapes, whether or not surface-worked but not further worked, of polymers of vinyl chloride (excl. poly"vinylchloride") 01/01/1994 31/12/2009 -391690 01/01/1988 31/12/2500 LIBEN Monofilament of which any cross-sectional dimension > 1 mm, rods, sticks and profile shapes, of plastics, whether or not surface worked but not further worked (excl. that of polymers of ethylene and vinyl chloride) 01/01/1988 31/12/2500 -39169010 01/01/2010 31/12/2500 LIBEN Monofilament of which any cross-sectional dimension > 1 mm, rods, sticks and profile shapes, of condensation or rearrangement polymerization products, whether or not surface-worked but not further worked, whether or not chemically modified 01/01/2010 31/12/2500 -39169011 01/01/1988 31/12/2009 LIBEN Monofilament of which any cross-sectional dimension > 1 mm, rods, sticks and profile shapes, of polyesters, whether or not surface-worked but not further worked 01/01/1988 31/12/2009 -39169013 01/01/1988 31/12/2009 LIBEN Monofilament of which any cross-sectional dimension > 1 mm, rods, sticks and profile shapes, of polyamides, whether or not surface-worked but not further worked 01/01/1988 31/12/2009 -39169015 01/01/1988 31/12/2009 LIBEN Monofilament of which any cross-sectional dimension > 1 mm, rods, sticks and profile shapes, of epoxide resins, whether or not surface-worked but not further worked 01/01/1988 31/12/2009 -39169019 01/01/1988 31/12/2009 LIBEN Monofilament of which any cross-sectional dimension > 1 mm, rods, sticks and profile shapes, of condensation or rearrangement polymerization products, whether or not surface-worked but not further worked, whether or not chemically modified (excl. that of polyesters, polyamides and epoxide resins) 01/01/1988 31/12/2009 -39169050 01/01/2010 31/12/2500 LIBEN Monofilament of which any cross-sectional dimension > 1 mm, rods, sticks and profile shapes, of addition polymerisation products, whether or not surface-worked but not further worked (excl. that of polymers of ethylene and vinyl chloride) 01/01/2010 31/12/2500 -39169051 01/01/1988 31/12/2009 LIBEN Monofilament of which any cross-sectional dimension > 1 mm, rods, sticks and profile shapes, of polymers of propylene, whether or not surface-worked but not further worked 01/01/1988 31/12/2009 -39169059 01/01/1988 31/12/2009 LIBEN Monofilament of which any cross-sectional dimension > 1 mm, rods, sticks and profile shapes, of addition polymerization products, whether or not surface-worked but not further worked (excl. that of polymers of ethylene, vinyl chloride and propylene) 01/01/1988 31/12/2009 -39169090 01/01/1988 31/12/2500 LIBEN Monofilament of which any cross-sectional dimension > 1 mm, rods, sticks and profile shapes, of plastics, whether or not surface-worked but not further worked (excl. that of addition polymerization products, condensation or rearrangement polymerization products, whether or not chemically modified) 01/01/1988 31/12/2500 -3916S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3916 and SITC section 9 01/01/2002 31/12/2500 -3916S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3916 and SITC group 999 01/01/2002 31/12/2500 -3917 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hoses, and fittings therefor, e.g. joints, elbows, flanges, of plastics 01/01/1988 31/12/2500 -391710 01/01/1988 31/12/2500 LIBEN Artificial guts "sausage casings" of hardened protein or cellulose materials 01/01/1988 31/12/2500 -39171010 01/01/1988 31/12/2500 LIBEN Artificial guts "sausage casings" of hardened protein 01/01/1988 31/12/2500 -39171090 01/01/1988 31/12/2500 LIBEN Artificial guts "sausage casings" of cellulose materials 01/01/1988 31/12/2500 -391721 01/01/1988 31/12/2500 LIBEN Rigid tubes, pipes and hoses, of polymers of ethylene 01/01/1988 31/12/2500 -39172110 01/01/1988 31/12/2500 LIBEN Rigid tubes, pipes and hoses, of polymers of ethylene, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked 01/01/1988 31/12/2500 -39172190 01/01/2006 31/12/2500 LIBEN Rigid tubes, pipes and hoses, of polymers of ethylene (excl. seamless and cut to length only) 01/01/2006 31/12/2500 -39172191 01/01/1988 31/12/2005 LIBEN Rigid tubes, pipes and hoses, with fittings attached, of polymers of ethylene, for the piping of gases or liquids, for civil aircraft 01/01/1988 31/12/2005 -39172199 01/01/1988 31/12/2005 LIBEN Rigid tubes, pipes and hoses, and fittings therefor, of polymers of ethylene (excl. seamless and cut to length only, together with tubes for the piping of gases or liquids, with fittings, seals or connectors, for civil aircraft) 01/01/1988 31/12/2005 -391722 01/01/1988 31/12/2500 LIBEN Rigid tubes, pipes and hoses of polymers of propylene 01/01/1988 31/12/2500 -39172210 01/01/1988 31/12/2500 LIBEN Rigid tubes, pipes and hoses, of polymers of propylene, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked 01/01/1988 31/12/2500 -39172290 01/01/2006 31/12/2500 LIBEN Rigid tubes, pipes and hoses, of polymers of propylene (excl. seamless and cut to length only) 01/01/2006 31/12/2500 -39172291 01/01/1988 31/12/2005 LIBEN Rigid tubes, pipes and hoses, of polymers of propylene, for the piping of gases or liquids, with fittings attached, for civil aircraft 01/01/1988 31/12/2005 -39172299 01/01/1988 31/12/2005 LIBEN Rigid tubes, pipes and hoses of polymers of propylene, whether or not with fittings, seals or connectors (excl. seamless and cut to length only, together with tubes for the piping of gases or liquids, with fittings, seals or connectors, for civil aircraft) 01/01/1988 31/12/2005 -391723 01/01/1988 31/12/2500 LIBEN Rigid tubes, pipes and hoses, of polymers of vinyl chloride 01/01/1988 31/12/2500 -39172310 01/01/1988 31/12/2500 LIBEN Rigid tubes, pipes and hoses, of polymers of vinyl chloride, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked 01/01/1988 31/12/2500 -39172390 01/01/2006 31/12/2500 LIBEN Rigid tubes, pipes and hoses, of polymers of vinyl chloride (excl. seamless and cut to length only) 01/01/2006 31/12/2500 -39172391 01/01/1988 31/12/2005 LIBEN Rigid tubes, pipes and hoses, of polymers of vinyl chloride, for the piping of gases or liquids, with fittings attached, for civil aircraft 01/01/1988 31/12/2005 -39172399 01/01/1988 31/12/2005 LIBEN Rigid tubes, pipes and hoses, and fittings therefor, of polymers of vinyl chloride (excl. seamless and cut to length only, together with tubes for the piping of gases or liquids, with fittings, seals or connectors, for civil aircraft) 01/01/1988 31/12/2005 -391729 01/01/1988 31/12/2500 LIBEN Rigid tubes, pipes and hoses, of plastics (excl. those of polymers of ethylene, propylene and vinyl chloride) 01/01/1988 31/12/2500 -39172900 01/01/2010 31/12/2500 LIBEN Rigid tubes, pipes and hoses, of plastics (excl. those of polymers of ethylene, propylene and vinyl chloride) 01/01/2010 31/12/2500 -39172911 01/01/1988 31/12/1998 LIBEN Rigid tubes, pipes and hoses, of epoxide resins, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked 01/01/1988 31/12/1998 -39172912 01/01/1999 31/12/2009 LIBEN Rigid tubes, pipes and hoses, of condensation or rearrangement polymerization products, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked 01/01/1999 31/12/2009 -39172913 01/01/1988 31/12/1998 LIBEN Rigid tubes, pipes and hoses, of condensation or rearrangement polymerization products, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked (excl. those of epoxide resins) 01/01/1988 31/12/1998 -39172915 01/01/1988 31/12/2009 LIBEN Rigid tubes, pipes and hoses, of addition polymerization products, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked (excl. those of polymers of ethylene, propylene and vinyl chloride) 01/01/1988 31/12/2009 -39172919 01/01/1988 31/12/2009 LIBEN Rigid tubes, pipes and hoses, of plastics, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked (excl. those of addition polymerization products, condensation or rearrangement polymerization products, whether or not chemically modified) 01/01/1988 31/12/2009 -39172990 01/01/2006 31/12/2009 LIBEN Rigid tubes, pipes and hoses, of plastics (excl. those of polymers of ethylene, propylene and vinyl chloride; seamless and cut to length only) 01/01/2006 31/12/2009 -39172991 01/01/1988 31/12/2005 LIBEN Rigid tubes, pipes and hoses, of plastics, for the piping of gases or liquids, with fittings attached, for civil aircraft (excl. those of polymers of ethylene, propylene and vinyl chloride) 01/01/1988 31/12/2005 -39172999 01/01/1988 31/12/2005 LIBEN Rigid tubes, pipes and hoses, and fittings therefor, of plastics (excl. those of polymers of ethylene, propylene and vinyl chloride; seamless and cut to length only; tubes and fittings therefor, for the piping of gases or liquids, for civil aircraft) 01/01/1988 31/12/2005 -391731 01/01/1988 31/12/2500 LIBEN Flexible tubes, pipes and hoses, of plastics, burst pressure >= 27,6 MPa 01/01/1988 31/12/2500 -39173100 01/01/2006 31/12/2500 LIBEN Flexible tubes, pipes and hoses, of plastics, burst pressure >= 27,6 MPa 01/01/2006 31/12/2500 -39173110 01/01/1988 31/12/2005 LIBEN Flexible tubes, pipes and hoses, of plastics, burst pressure >= 27,6 MPa, with fittings attached, for the piping of gases or liquids, for civil aircraft 01/01/1988 31/12/2005 -39173190 01/01/1988 31/12/2005 LIBEN Flexible tubes, pipes and hoses, and fittings therefor, of plastics, burst pressure >= 27,6 MPa (excl. those with fittings attached for civil aircraft) 01/01/1988 31/12/2005 -391732 01/01/1988 31/12/2500 LIBEN Flexible tubes, pipes and hoses of plastics, not reinforced or otherwise combined with other materials, without fittings 01/01/1988 31/12/2500 -39173200 01/01/2010 31/12/2500 LIBEN Flexible tubes, pipes and hoses of plastics, not reinforced or otherwise combined with other materials, without fittings 01/01/2010 31/12/2500 -39173210 01/01/1999 31/12/2009 LIBEN Flexible tubes, pipes and hoses, of condensation or rearrangement polymerization products, whether or not chemically modified, not reinforced or otherwise combined with other materials, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked 01/01/1999 31/12/2009 -39173211 01/01/1988 31/12/1998 LIBEN Flexible tubes, pipes and hoses, of epoxide resins, not reinforced or otherwise combined with other materials, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked 01/01/1988 31/12/1998 -39173219 01/01/1988 31/12/1998 LIBEN Flexible tubes, pipes and hoses, of condensation or rearrangement polymerization products, whether or not chemically modified, not reinforced or otherwise combined with other materials, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked (excl. those of epoxyde resins) 01/01/1988 31/12/1998 -39173231 01/01/1988 31/12/2009 LIBEN Flexible tubes, pipes and hoses, of polymers of ethylene, not reinforced or otherwise combined with other materials, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked 01/01/1988 31/12/2009 -39173235 01/01/1988 31/12/2009 LIBEN Flexible tubes, pipes and hoses, of polymers of vinyl chloride, not reinforced or otherwise combined with other materials, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked 01/01/1988 31/12/2009 -39173239 01/01/1988 31/12/2009 LIBEN Flexible tubes, pipes and hoses, of addition polymerization products, not reinforced or otherwise combined with other materials, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked (excl. those of polymers of ethylene or vinyl chloride) 01/01/1988 31/12/2009 -39173251 01/01/1988 31/12/2009 LIBEN Flexible tubes, pipes and hoses, of plastics, not reinforced or otherwise combined with other materials, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked (excl. tubes of addition polymerization products, condensation or reaaranement polymerization products, whether or not chemically modified) 01/01/1988 31/12/2009 -39173291 01/01/1988 31/12/2009 LIBEN Artificial guts "sausage casings" (excl. those of hardened protein or cellulose materials) 01/01/1988 31/12/2009 -39173299 01/01/1988 31/12/2009 LIBEN Flexible tubes, pipes and hoses of plastics, not reinforced or otherwise combined with other materials, without fittings (excl. seamless and cut to length only and artificial guts) 01/01/1988 31/12/2009 -391733 01/01/1988 31/12/2500 LIBEN Flexible tubes, pipes and hoses of plastics, not reinforced or otherwise combined with other materials, with fittings, seals or connectors 01/01/1988 31/12/2500 -39173300 01/01/2006 31/12/2500 LIBEN Flexible tubes, pipes and hoses of plastics, not reinforced or otherwise combined with other materials, with fittings, seals or connectors 01/01/2006 31/12/2500 -39173310 01/01/1988 31/12/2005 LIBEN Flexible tubes, pipes and hoses, of plastics, not reinforced or otherwise combined with other materials, with fittings attached, for the piping of gases or liquids, for civil aircraft 01/01/1988 31/12/2005 -39173390 01/01/1988 31/12/2005 LIBEN Flexible tubes, pipes and hoses of plastics, not reinforced or otherwise combined with other materials, with fittings, seals or connectors (excl. tubes for the piping of gases or liquids, for civil aircraft) 01/01/1988 31/12/2005 -391739 01/01/1988 31/12/2500 LIBEN Flexible tubes, pipes and hoses, of plastics, reinforced or otherwise combined with other materials (excl. those with a burst pressure of >= 27,6 MPa) 01/01/1988 31/12/2500 -39173900 01/01/2010 31/12/2500 LIBEN Flexible tubes, pipes and hoses, of plastics, reinforced or otherwise combined with other materials (excl. those with a burst pressure of >= 27,6 MPa) 01/01/2010 31/12/2500 -39173911 01/01/1988 31/12/1998 LIBEN Flexible tubes, pipes and hoses, of epoxide resins, reinforced or otherwise combined with other materials, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked (excl. those with a burst pressure of >= 27,6 MPa) 01/01/1988 31/12/1998 -39173912 01/01/1999 31/12/2009 LIBEN Flexible tubes, pipes and hoses of condensation or rearrangement polymerization products, whether or not chemically modified, reinforced or otherwise combined with other materials, seamless and of a length greater than the maximum diameter, whether or not surface-worked but not otherwise worked (excl. tubes with a burst pressure of >= 27,6 MPa) 01/01/1999 31/12/2009 -39173913 01/01/1988 31/12/1998 LIBEN Flexible tubes, pipes and hoses of condensation or rearrangement polymerization products, whether or not chemically modified, reinforced or otherwise combined with other materials, seamless and of a length greater than the maximum diameter, whether or not surface-worked but not otherwise worked (excl. those of epoxide resins and tubes with a burst pressure of >= 27,6 MPa) 01/01/1988 31/12/1998 -39173915 01/01/1988 31/12/2009 LIBEN Flexible tubes, pipes and hoses, of addition polymerization products, reinforced or otherwise combined with other materials, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked (excl. those with a burst pressure of >= 27,6 MPa) 01/01/1988 31/12/2009 -39173919 01/01/1988 31/12/2009 LIBEN Flexible tubes, pipes and hoses, of plastics, reinforced or otherwise combined with other materials, seamless and of a length > the maximum cross-sectional dimension, whether or not surface-worked, but not otherwise worked (excl. addition polymerization products, condensation polymerization products and rearrangement polymerization products, and products able to withstand a pressure of >= 27,6 MPa) 01/01/1988 31/12/2009 -39173990 01/01/2006 31/12/2009 LIBEN Flexible tubes, pipes and hoses, of plastics, reinforced or otherwise combined with other materials (excl. seamless or cut to length only; tubes with a burst pressure of >= 27,6 MPa) 01/01/2006 31/12/2009 -39173991 01/01/1988 31/12/2005 LIBEN Flexible tubes, pipes and hoses, of plastics, reinforced or otherwise combined with other materials, for the piping of gases or liquids, with fittings attached, for civil aircraft (excl. tubes, pipes and hoses with a burst pressure of >= 27,6 MPa) 01/01/1988 31/12/2005 -39173999 01/01/1988 31/12/2005 LIBEN Flexible tubes, pipes and hoses, and fittings therefor, of plastics, reinforced or otherwise combined with other materials (excl. seamless or cut to length only; tubes with a burst pressure of >= 27,6 MPa; tubes for the piping of gases or liquids, with fittings attached, for civil aircraft) 01/01/1988 31/12/2005 -391740 01/01/1988 31/12/2500 LIBEN Fittings, e.g. joints, elbows, flanges, of plastics, for tubes, pipes and hoses 01/01/1988 31/12/2500 -39174000 01/01/2006 31/12/2500 LIBEN Fittings, e.g. joints, elbows, flanges, of plastics, for tubes, pipes and hoses 01/01/2006 31/12/2500 -39174010 01/01/1988 31/12/2005 LIBEN Fittings, e.g. joints, elbows, flanges, of plastics, for tubes, pipes and hoses, for civil aircraft 01/01/1988 31/12/2005 -39174090 01/01/1988 31/12/2005 LIBEN Fittings, e.g. joints, elbows, flanges, of plastics, for tubes, pipes and hoses (excl. those for civil aircraft) 01/01/1988 31/12/2005 -391740SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 3917 40 01/01/2006 31/12/2500 -3917S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3917 and SITC section 9 01/01/2002 31/12/2500 -3917S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3917 and SITC group 999 01/01/2002 31/12/2500 -3918 01/01/1988 31/12/2500 LIBEN Floor coverings of plastics, whether or not self-adhesive, in rolls or in the form of tiles; wall or ceiling coverings of plastics, in rolls with a width of >= 45 cm, consisting of a layer of plastics fixed permanently on a backing of any material other than paper, the face side of which is grained, embossed, coloured, design-printed or otherwise decorated 01/01/1988 31/12/2500 -391810 01/01/1988 31/12/2500 LIBEN Floor coverings, whether or not self-adhesive, in rolls or in the form of tiles, and wall or ceiling coverings "in rolls with a width of >= 45 cm, consisting of a layer of plastics fixed permanently on a backing of any material other than paper, the face side of which is grained, embossed, coloured, design-printed or otherwise decorated", of polymers of vinyl chloride 01/01/1988 31/12/2500 -39181010 01/01/1988 31/12/2500 LIBEN Floor coverings, whether or not self-adhesive, in rolls or in the form of tiles, and wall or ceiling coverings "in rolls with a width of >= 45 cm, consisting of a layer of plastics fixed permanently on a backing of any material other than paper, the face side of which is grained, embossed, coloured, design-printed or otherwise decorated", on a support impregnated, coated or covered with poly"vinyl chloride" 01/01/1988 31/12/2500 -39181090 01/01/1988 31/12/2500 LIBEN Floor coverings of polymers of vinyl chloride, whether or not self-adhesive, in rolls or in the form of tiles (excl. those on a backing coated, impregnated or covered with poly"vinyl chloride") 01/01/1988 31/12/2500 -391890 01/01/1988 31/12/2500 LIBEN Floor coverings of plastics, whether or not self-adhesive, in rolls or in the form of tiles, and wall or ceiling coverings in rolls with a width of >= 45 cm, consisting of a layer of plastics fixed permanently on a backing of any material other than paper, the face side of which is grained, embossed, coloured, design-printed or otherwise decorated (excl. coverings of polymers of vinyl chloride) 01/01/1988 31/12/2500 -39189000 01/01/1988 31/12/2500 LIBEN Floor coverings of plastics, whether or not self-adhesive, in rolls or in the form of tiles, and wall or ceiling coverings in rolls with a width of >= 45 cm, consisting of a layer of plastics fixed permanently on a backing of any material other than paper, the face side of which is grained, embossed, coloured, design-printed or otherwise decorated (excl. coverings of polymers of vinyl chloride) 01/01/1988 31/12/2500 -3919 01/01/1988 31/12/2500 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of plastics, whether or not in rolls (excl. floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -391910 01/01/1988 31/12/2500 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of plastics, in rolls <= 20 cm wide 01/01/1988 31/12/2500 -39191010 01/01/1988 31/12/1993 LIBEN Plastic tape (strip) coated with unvulcanized natural or synthetic rubber, in rolls =< 20 cm wide 01/01/1988 31/12/1993 -39191011 01/01/1994 31/12/2009 LIBEN Plastic strips of plasticised poly"vinyl chloride" or of polyethylene, coated with unvulcanised natural or synthetic rubber, self-adhesive, in rolls <= 20 cm wide 01/01/1994 31/12/2009 -39191012 01/01/2010 31/12/2500 LIBEN Plastic strips of poly"vinyl chloride" or of polyethylene, coated with unvulcanised natural or synthetic rubber, self-adhesive, in rolls <= 20 cm wide 01/01/2010 31/12/2500 -39191013 01/01/1994 31/12/2009 LIBEN Plastic strips of non-plasticised poly"vinyl chloride", coated with unvulcanised natural or synthetic rubber, self-adhesive, in rolls <= 20 cm wide 01/01/1994 31/12/2009 -39191015 01/01/1994 31/12/2500 LIBEN Plastic strips of polypropylene, coated with unvulcanised natural or synthetic rubber, self-adhesive, in rolls <= 20 cm wide 01/01/1994 31/12/2500 -39191019 01/01/1994 31/12/2500 LIBEN Plastic strips, coated with unvulcanised natural or synthetic rubber, self-adhesive, in rolls <= 20 cm wide (excl. such products of poly"vinyl chloride", polyethylenes or polypropylenes) 01/01/1994 31/12/2500 -39191031 01/01/1988 31/12/2009 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of polyesters, in rolls <= 20 cm wide (excl. plastic strips coated with unvulcanised natural or synthetic rubber) 01/01/1988 31/12/2009 -39191035 01/01/1988 31/12/1998 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of epoxide resins, in rolls <= 20 cm wide (excl. plastic strips coated with unvulcanized natural or synthetic rubber) 01/01/1988 31/12/1998 -39191038 01/01/1999 31/12/2009 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of condensation or rearrangement polymerization products, whether or not chemically modified, in rolls <= 20 cm wide (excl. those of polyesters, and plastic strips coated with unvulcanised natural or synthetic rubber) 01/01/1999 31/12/2009 -39191039 01/01/1988 31/12/1998 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of condensation or rearrangement polymerization products, whether or not chemically modified, in rolls <= 20 cm wide (excl. those of polyesters, epoxide resins, and plastic strips coated with unvulcanized natural or synthetic rubber) 01/01/1988 31/12/1998 -39191051 01/01/1988 31/12/1993 LIBEN Self-adhesive foil, film, tape, strip and other flat items of polymers of vinyl chloride, in rolls =< 20 cm wide (excl. those of plastic tape 'strip' coated with unvulcanized natural or synthetic rubber) 01/01/1988 31/12/1993 -39191059 01/01/1988 31/12/1993 LIBEN Self-adhesive foil, film, tape, strip and other flat items of addition polymerization products, in rolls =< 20 cm wide (excl. those of polymers of vinyl chloride, and plastic tape 'strip' coated with unvulcanized natural or synthetic rubber) 01/01/1988 31/12/1993 -39191061 01/01/1994 31/12/2009 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of plasticised poly"vinyl chloride" or of polyethylene, in rolls <= 20 cm wide (excl. rolls of plastic strips coated with unvulcanised natural or synthetic rubber) 01/01/1994 31/12/2009 -39191069 01/01/1994 31/12/2009 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of addition polymerization products, in rolls <= 20 cm wide (excl. such products of plasticised poly"vinyl chloride" or of polyethylene, and rolls of plastic strips coated with unvulcanised natural or synthetic rubber) 01/01/1994 31/12/2009 -39191080 01/01/2010 31/12/2500 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of plastics, in rolls <= 20 cm wide (excl. plastic strips coated with unvulcanised natural or synthetic rubber) 01/01/2010 31/12/2500 -39191090 01/01/1988 31/12/2009 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of plastics, in rolls <= 20 cm wide (excl. those of addition polymerization products, condensation and rearrangement polymerization products, whether or not chemically modified, and plastic strips coated with unvulcanised natural or synthetic rubber) 01/01/1988 31/12/2009 -391990 01/01/1988 31/12/2500 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of plastics, whether or not in rolls > 20 cm wide (excl. floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -39199000 01/01/2010 31/12/2016 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of plastics, whether or not in rolls > 20 cm wide (excl. floor, wall and ceiling coverings of heading 3918) 01/01/2010 31/12/2016 -39199010 01/01/1988 31/12/2009 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of plastics, whether or not in rolls > 20 cm wide, further worked than surface-worked or other than merely cut into squares or rectangles (excl. floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2009 -39199020 01/01/2017 31/12/2500 LIBEN Self-adhesive circular polishing pads of a kind used for the manufacture of semiconductor wafers, of plastics 01/01/2017 31/12/2500 -39199031 01/01/1988 31/12/2009 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of polyesters, whether or not in rolls > 20 cm wide, unworked or merely surface-worked or merely cut into squares or rectangles (excl. floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2009 -39199035 01/01/1988 31/12/1998 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of epoxide resins, whether or not in rolls > 20 cm wide, unworked or merely surface-worked or merely cut into squares or rectangles (excl. floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1998 -39199038 01/01/1999 31/12/2009 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of condensation polymerization products and rearrangement polymerization products, whether or not chemically modified, whether or not in rolls of a width of > 20 cm, not worked, or only surface-worked, or only cut to rectangular, incl. square, shapes (excl. of polyesters, and floor, wall and ceiling coverings of heading 3918) 01/01/1999 31/12/2009 -39199039 01/01/1988 31/12/1998 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of condensation polymerization products and rearrangement polymerization products, whether or not chemically modified, whether or not in rolls of a width of > 20 cm, not worked, or only surface-worked, or only cut to rectangular, incl. square, shapes (excl. floor, wall and ceiling coverings of polyester and epoxide resins in heading 3918) 01/01/1988 31/12/1998 -39199050 01/01/1988 31/12/1993 LIBEN Self-adhesive plates, sheets, foil, film, tape, strip and other flat items of addition polymerization products, whether or not in rolls > 20 cm wide, unworked or merely surface-worked or merely cut into squares or rectangles (excl. floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1993 -39199061 01/01/1994 31/12/2009 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of plasticised poly"vinyl chloride" or of polyethylene, whether or not in rolls > 20 cm wide, unworked or not further worked than surface-worked or merely cut into squares or rectangles (excl. floor, wall and ceiling coverings of heading 3918) 01/01/1994 31/12/2009 -39199069 01/01/1994 31/12/2009 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of addition polymerization products, whether or not in rolls > 20 cm wide, unworked or not further worked than surface-worked or merely cut into squares or rectangles (excl. such products of plasticised poly"vinyl chloride" or of polyethylene, and floor, wall and ceiling coverings of heading 3918) 01/01/1994 31/12/2009 -39199080 01/01/2017 31/12/2500 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of plastics, whether or not in rolls > 20 cm wide (excl. floor, wall and ceiling coverings of heading 3918, and circular polishing pads used in semiconductor wafer production)) 01/01/2017 31/12/2500 -39199090 01/01/1988 31/12/2009 LIBEN Self-adhesive plates, sheets, film, foil, tape, strip and other flat shapes, of plastics, whether or not in rolls > 20 cm wide, unworked or merely surface-worked or merely cut into squares or rectangles (excl. those of addition polymerization products, condensation and rearrangement polymerization products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2009 -3920 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular plastics, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -392010 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polymers of ethylene, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -39201011 01/01/1988 31/12/1992 LIBEN Plates, sheets, foil, film and strip of unexpanded polymers of ethylene, not reinforced, coated, laminated or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles, with a thickness of =< 0.1 mm and a specific gravity of < 0.94 (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1992 -39201019 01/01/1988 31/12/1992 LIBEN Plates, sheets, foil, film and strip of unexpanded polymers of ethylene, not reinforced, coated, laminated or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles, with a thickness of =< 0.1 mm and a specific gravity of >= 0.94 (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1992 -39201021 01/01/1993 31/12/1994 LIBEN Plates, sheets, film, foil and strip, of polyethylene, not reinforced, laminated, supported or similarly combined with other materials, not further worked or only surface-worked and not cut to shapes other than rectangular 'incl. square' of a thickness of<= 0.10 mm and a specific gravity of < 0.94, n.e.s. 01/01/1993 31/12/1994 -39201022 01/01/1995 31/12/1996 LIBEN Plates, sheets, film, foil, tape, strip, of expanded polythene, non-cellular and not reinforced, laminated, supported or similarly combined with other materials, unworked or not further worked than surface-worked or only cut to square or rectangular shapes, of a thickness of <= 0,125 mm and of a specific gravity of < 0,94, n.e.s. 01/01/1995 31/12/1996 -39201023 01/01/1997 31/12/2500 LIBEN Non-cellular polyethylene film of a thickness of >= 20 micrometres but <= 40 micrometres, for the production of photoresist film used in the manufacture of semiconductors or printed circuits 01/01/1997 31/12/2500 -39201024 01/01/1998 31/12/2500 LIBEN Stretch film of non-cellular polyethylene, not printed, of a thickness of <= 0,125 mm and of a specific gravity of < 0,94 01/01/1998 31/12/2500 -39201025 01/01/1997 31/12/1997 LIBEN Plates, sheets, film, foil and strip, of non-cellular polyethylene, not reinforced, laminated, supported or similarly combined with other materials, unworked or not further worked than surface-worked or only cut to square or rectangular shapes, of a thickness of <= 0,125 mm and of a specific gravity of < 0,94, n.e.s. (excl. polyethylene film of a thickness of >= 20 but <= 40 micrometres for the production of photo-resist film used in the manufacture of semiconductors or printed circuits) 01/01/1997 31/12/1997 -39201025 01/01/2010 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polyethylene, printed, not reinforced, laminated, supported or similarly combined with other materials, unworked or not further worked than surface-worked or only cut to square or rectangular shapes, of a thickness of <= 0,125 mm and of a specific gravity of < 0,94, n.e.s. (excl. not printed stretch film, and polyethylene film of a thickness of >= 20 but <= 40 micrometres for the production of photoresist film used in the manufacture of semiconductors or printed circuits) 01/01/2010 31/12/2500 -39201026 01/01/1998 31/12/2009 LIBEN Plates, sheets, film, foil and strip, of non-cellular polyethylene, not printed, not reinforced, laminated, supported or similarly combined with other materials, unworked or not further worked than surface-worked or only cut to square or rectangular shapes, of a thickness of <= 0,125 mm and of a specific gravity of < 0,94, n.e.s. (excl. polyethylene film of a thickness of >= 20 but <= 40 micrometres for the production of photoresist film used in the manufacture of semiconductors or printed circuits, and stretch film) 01/01/1998 31/12/2009 -39201027 01/01/1998 31/12/2009 LIBEN Plates, sheets, film, foil and strip, of non-cellular polyethylene, printed, not reinforced, laminated, supported or similarly combined with other materials, unworked or not further worked than surface-worked or only cut to square or rectangular shapes, of a thickness of <= 0,125 mm and of a specific gravity of < 0,94, n.e.s. (excl. polyethylene film of a thickness of >= 20 but <= 40 micrometres for the production of photoresist film used in the manufacture of semiconductors or printed circuits) 01/01/1998 31/12/2009 -39201028 01/01/1995 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polythene, not reinforced, laminated, supported or similarly combined with other materials, unworked or not further worked than surface-worked or only cut to square or rectangular shapes, of a thickness of <= 0,125 mm and of a specific gravity of >= 0,94, n.e.s. 01/01/1995 31/12/2500 -39201029 01/01/1993 31/12/1994 LIBEN Plates, sheets, film, foil and strip, of polyethylene, not reinforced, laminated, supported or similarly combined with other materials, not further worked or only surface-worked and not cut to shapes other than rectangular 'incl. square' of a thickness of<= 0.10 mm and a specific gravity of >= 0.94, n.e.s. 01/01/1993 31/12/1994 -39201040 01/01/1995 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polymers of ethylene, not reinforced, laminated, supported or similarly combined with other materials, unworked or not further worked than surface-worked or only cut to square or rectangular shapes, of a thickness of <= 0,125 mm (other than self-adhesive, and wall and ceiling coverings of heading 3918) 01/01/1995 31/12/2500 -39201050 01/01/1993 31/12/1994 LIBEN Plates, sheets, film, foil and strip, of copolymers of ethylene, not reinforced, laminated, supported or similarly combined with other materials, not further worked or only surface-worked and not cut to shapes other than rectangular 'incl. square' of a thickness of<= 0.10 mm (excl. self-adhesive and wall or ceiling coverings of chapter no 3918) 01/01/1993 31/12/1994 -39201080 01/01/1995 31/12/1996 LIBEN Plates, sheets, film, foil, tape, strip, of non-expanded polymers of ethylene, not reinforced and non-cellular (laminated) or suported or similarly combined with other materials, unworked or not further worked than surface-worked or only cut to square or rectangular shapes, with a thickness of > 0,125 mm (other than self-adhesive and floor, wall and ceiling coverings of heading 3918) 01/01/1995 31/12/1996 -39201081 01/01/1997 31/12/2500 LIBEN Synthetic paper pulp in the form of moist sheets made from unconnected finely branched non-cellular polyethylene fibrils, whether or not blended with cellulose fibres in a quantity <= 15%, containing poly(vinyl alcohol) dissolved in water as the moistening agent, with a thickness of > 0,125 mm 01/01/1997 31/12/2500 -39201089 01/01/1997 31/12/2500 LIBEN Plates, sheets, film, foil, tape, strip, of unexpanded polymers of ethylene, not reinforced and non-cellular "laminated" or supported or similarly combined with other materials, unworked or not further worked than surface-worked or only cut to square or rectangular shapes, with a thickness of > 0,125 mm (other than self-adhesive and floor, wall and ceiling coverings of heading 3918, and synthetic paper pulp in the form of moist sheets made from unconnected finely branched polyethylene fibrils, whether or not blended with cellulose fibres in a quantity >= 15%, containing poly"vinyl alcohol" dissolved in water as the moistening agent) 01/01/1997 31/12/2500 -39201090 01/01/1988 31/12/1994 LIBEN Plates, sheets, film, foil and strip, of polymers of ethylene, not reinforced, laminated, supported or similarly combined with other materials, not further worked or only surface-worked and not cut to shapes other than rectangular 'incl. square' of a thickness of<= 0.10 mm (excl. self-adhesive and wall or ceiling coverings of chapter no 3918) 01/01/1988 31/12/1994 -392020 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polymers of ethylene, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -39202010 01/01/1988 31/12/1990 LIBEN Plates, sheets, foil, film and strip of unexpanded polymers of propylene, not reinforced, coated, laminated or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles, with a thickness of < 0.05 mm (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1990 -39202021 01/01/1991 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polymers of propylene, not reinforced, laminated, supported or similarly combined with other materials, not further worked or only surface-worked and not cut to shapes other than rectangular "incl. square" of a thickness of <= 0,10 mm, biaxially oriented (excl. self-adhesive and wall or ceiling coverings of chapter No 3918) 01/01/1991 31/12/2500 -39202029 01/01/1991 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polymers of propylene, not reinforced, laminated, supported or similarly combined with other materials, not further worked or only surface-worked and not cut to shapes other than rectangular "incl. square" of a thickness of <= 0,10 mm, not biaxially oriented 01/01/1991 31/12/2500 -39202050 01/01/1988 31/12/1990 LIBEN Plates, sheets, foil, film and strip of expanded polymers of propylene, not reinforced, coated, laminated or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles, with a thickness of 0.05 to 0.01 mm (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1990 -39202071 01/01/1988 31/12/2009 LIBEN Decorative strip of polymers of propylene, of a thickness of > 0,10 mm and a width of > 5 mm to 20 mm, of the kind used for packaging (excl. self-adhesive) 01/01/1988 31/12/2009 -39202079 01/01/1988 31/12/2009 LIBEN Strip of polymers of propylene of a thickness of > 0,10 mm and a width of > 5 mm to 20 mm, of the kind used for packaging (excl. self-adhesive and decorative strip) 01/01/1988 31/12/2009 -39202080 01/01/2010 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polymers of propylene, not reinforced, laminated, supported or similarly combined with other materials, not further worked or only surface-worked and not cut to shapes other than rectangular "incl. square" of a thickness of > 0,10 mm, n.e.s. 01/01/2010 31/12/2500 -39202090 01/01/1988 31/12/2009 LIBEN Plates, sheets, film, foil and strip, of non-cellular polymers of propylene, not reinforced, laminated, supported or similarly combined with other materials, not further worked or only surface-worked and not cut to shapes other than rectangular "incl. square" of a thickness of <= 0,10 mm, n.e.s. (excl. strip, > 5 mm to 20 mm wide, of the kind used for packaging) 01/01/1988 31/12/2009 -392030 01/01/1988 31/12/2500 LIBEN Plates, sheets, foil, film and strip, of non-cellular polymers of styrene, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -39203000 01/01/1988 31/12/2500 LIBEN Plates, sheets, foil, film and strip, of non-cellular polymers of styrene, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -392041 01/01/1988 31/12/2001 LIBEN Rigid plates, sheets, foil, film and strip, of polymers of vinyl chloride, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products and floor coverings) 01/01/1988 31/12/2001 -39204110 01/01/1988 31/12/1989 LIBEN Rigid plates, sheets, foil, film and strip of polymers of vinyl chloride, not reinforced, coated, laminated or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles, with a thickness of =< 1 mm (excl. self-adhesive products and floor coverings) 01/01/1988 31/12/1989 -39204111 01/01/1990 31/12/2001 LIBEN Rigid plates, sheets, film, foil and strip, non-plasticized, of polymers of vinyl chloride, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles, of a thickness <= 1 mm (excl. self-adhesive) 01/01/1990 31/12/2001 -39204119 01/01/1990 31/12/2001 LIBEN Rigid plates, sheets, film, foil and strip, non-plasticized, of polymers of vinyl chloride, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles, of a thickness > 1 mm (excl. self-adhesive) 01/01/1990 31/12/2001 -39204190 01/01/1988 31/12/1989 LIBEN Rigid plates, sheets, foil, film and strip of polymers of vinyl chloride, not reinforced, coated, laminated or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles, with a thickness of > 1 mm (excl. self-adhesive products and floor coverings) 01/01/1988 31/12/1989 -39204191 01/01/1990 31/12/2001 LIBEN Rigid plates, sheets, film, foil and strip, plasticized, of polymers of vinyl chloride, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles, of a thickness <= 1 mm (excl. self-adhesive) 01/01/1990 31/12/2001 -39204199 01/01/1990 31/12/2001 LIBEN Rigid plates, sheets, film, foil and strip, plasticized, of polymers of vinyl chloride, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles, of a thickness > 1 mm (excl. self-adhesive) 01/01/1990 31/12/2001 -392042 01/01/1988 31/12/2001 LIBEN Flexible plates, sheets, film, foil and strip, of non-cellular polymers of vinyl chloride, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2001 -39204210 01/01/1988 31/12/1989 LIBEN No label available... 01/01/1988 31/12/1989 -39204211 01/01/1990 31/12/2001 LIBEN Flexible plates, sheets, film, foil and strip, of non-cellular polymers of vinyl chloride, non-plasticized, of a thickness <= 1 mm, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1990 31/12/2001 -39204219 01/01/1990 31/12/2001 LIBEN Flexible plates, sheets, film, foil and strip, of non-cellular polymers of vinylchloride, unplasticized, not reinforced, laminated, supported or similarly combined with other materials, not worked or only surface-worked, or only cut to rectangular, incl. square, shapes, with a thickness of > 1 mm (excl. self-adhesive products, and floor, wall and ceiling coverings in heading 3918) 01/01/1990 31/12/2001 -39204290 01/01/1988 31/12/1989 LIBEN No label available... 01/01/1988 31/12/1989 -39204291 01/01/1990 31/12/2001 LIBEN Flexible plates, sheets, film, foil and strip, of non-cellular polymers of vinyl chloride, plasticized, of a thickness <= 1 mm, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1990 31/12/2001 -39204299 01/01/1990 31/12/2001 LIBEN Flexible plates, sheets, film, foil and strip, of non-cellular polymers of vinylchloride, plasticized, not reinforced, laminated, supported or similarly combined with other materials, not worked or only surface-worked, or only cut to rectangular, incl. square, shapes, with a thickness of > 1 mm (excl. self-adhesive products, and floor, wall and ceiling coverings in heading 3918) 01/01/1990 31/12/2001 -392043 01/01/2002 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polymers of vinyl chloride, containing by weight >= 6% of plasticisers, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/2002 31/12/2500 -39204310 01/01/2002 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polymers of vinyl chloride, containing by weight >= 6% of plasticisers, of a thickness of <= 1 mm, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/2002 31/12/2500 -39204390 01/01/2002 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polymers of vinyl chloride, containing by weight >= 6% of plasticisers, of a thickness of > 1 mm, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/2002 31/12/2500 -392049 01/01/2002 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polymers of vinyl chloride, containing by weight < 6% of plasticisers, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/2002 31/12/2500 -39204910 01/01/2002 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polymers of vinyl chloride, containing by weight < 6% of plasticisers, of a thickness of <= 1 mm, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/2002 31/12/2500 -39204990 01/01/2002 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polymers of vinyl chloride, containing by weight < 6% of plasticisers, of a thickness of > 1 mm, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/2002 31/12/2500 -392051 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular poly"methyl methacrylate", not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -39205100 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular poly"methyl methacrylate", not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -392059 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular acrylic polymers, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. those of poly"methyl methacrylate", self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -39205900 01/01/1988 31/12/1996 LIBEN Plates, sheets, film, foil and strip, of non-cellular acrylic polymers, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. those of polymethyl methacrylate, self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1996 -39205910 01/01/1997 31/12/2500 LIBEN Copolymer of non-cellular acrylic and methacrylic esters, in the form of film of a thickness of <= 150 micrometres 01/01/1997 31/12/2500 -39205990 01/01/1997 31/12/2500 LIBEN Plates, sheets, foil, film and strip of non-cellular acrylic polymers, not reinforced, coated, laminated or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. those of poly"methyl methacrylate", self-adhesive products and floor, wall and ceiling coverings of heading 3918, and copolymer of acrylic and methacrylic esters in the form of film of a thickness of <= 150 micrometres) 01/01/1997 31/12/2500 -392061 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polycarbonates, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. those of poly"methyl methacrylate", self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -39206100 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polycarbonates, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. those of poly"methyl methacrylate", self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -392062 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular poly"ethylene terephthalate", not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. those of poly"methyl methacrylate", self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -39206200 01/01/1988 31/12/1993 LIBEN Plates, sheets, foil, film and strip of unexpanded polyethylene terephthalate, not reinforced, coated, laminated or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. those of polymethyl methacrylate, self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1993 -39206210 01/01/1994 31/12/1996 LIBEN Plates, sheets, foil, film, tape, strip and other flat items, self-adhesive, of non-cellular polyethylene terephthalate, not reinforced or laminated or similarly combined with other materials, without support, unworked or not further worked than surface-worked or merely cut into squares or rectangles, of a thickness of <= 0,35 mm (excl. such self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1994 31/12/1996 -39206211 01/01/1997 31/12/2009 LIBEN Poly"ethylene terephthalate" film, non-cellular, of a thickness of >= 72 micrometres but <= 79 micrometres, for the manufacture of flexible magnetic disks 01/01/1997 31/12/2009 -39206212 01/01/2010 31/12/2500 LIBEN Poly(ethylene terephthalate) film of a thickness of 72 micrometres or more but not exceeding 79 micrometres, for the manufacture of flexible magnetic disks, and poly"ethylene terephthalate" film, not reinforced, of a thickness of >= 100 micrometres but <= 150 micrometres, for the manufacture of photopolymer printing plates 01/01/2010 31/12/2500 -39206213 01/01/1997 31/12/2009 LIBEN Poly"ethylene terephthalate" film, not reinforced, of a thickness of >= 100 micrometres but <= 150 micrometres, for the manufacture of photopolymer printing plates 01/01/1997 31/12/2009 -39206219 01/01/1997 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular poly"ethylene terephthalate", not reinforced, laminated, supported or similarly combined with other materials, without support, unworked or not further worked than surface-worked or merely cut into squares or rectangles, of a thickness of <= 0,35 mm (excl. such self-adhesive products, floor, wall and ceiling coverings of heading 3918, poly"ethylene terephthalate" film of a thickness of >= 100 but <= 150 micrometres for the manufacture of photopolymer printing plates and poly"ethylene terephthalate" film of a thickness of >= 72 but <= 79 micrometres for the manufacture of flexible magnetic disks) 01/01/1997 31/12/2500 -39206290 01/01/1994 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular poly"ethylene terephthalate", not reinforced, laminated, supported or similarly combined with other materials, without support, unworked or not further worked than surface-worked or merely cut into squares or rectangles, of a thickness of > 0,35 mm (excl. such self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1994 31/12/2500 -392063 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular unsaturated polyesters, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. those of poly"methyl methacrylate", self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -39206300 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular unsaturated polyesters, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. those of poly"methyl methacrylate", self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -392069 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polyesters, not reinforced, laminated, supported or similarly combined with other materials, not worked or only surface-worked, or only cut to rectangular, incl. square, shapes (excl. polycarbonates, polythylene terephthalate and other unsaturated polyesters, self-adhesive products, and floor, wall and ceiling coverings in heading 3918) 01/01/1988 31/12/2500 -39206900 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polyesters, not reinforced, laminated, supported or similarly combined with other materials, not worked or only surface-worked, or only cut to rectangular, incl. square, shapes (excl. polycarbonates, polythylene terephthalate and other unsaturated polyesters, self-adhesive products, and floor, wall and ceiling coverings in heading 3918) 01/01/1988 31/12/2500 -392071 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular regenerated cellulose, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -39207100 01/01/2010 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular regenerated cellulose, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/2010 31/12/2500 -39207110 01/01/1998 31/12/2009 LIBEN Sheets, film or strip, of non-cellular regenerated cellulose, coiled or not, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles, with a thickness of < 0,75 mm (excl. self-adhesive products, and wall and ceiling coverings of heading 3918) 01/01/1998 31/12/2009 -39207111 01/01/1988 31/12/1997 LIBEN Sheets, film or strip, of non-cellular regenerated cellulose, whether or not in rolls, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles, with a thickness of < 0,75 mm, not printed (excl. self-adhesive products, and wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1997 -39207119 01/01/1988 31/12/1997 LIBEN Sheets, film or strip, of non-cellular regenerated cellulose, whether or not in rolls, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles, with a thickness of < 0,75 mm, printed (excl. self-adhesive products, and wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1997 -39207190 01/01/1988 31/12/2009 LIBEN Plates, sheets, film, foil and strip, of non-cellular regenerated cellulose, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. those with a thickness of < 0,75 mm, self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2009 -392072 01/01/1988 31/12/2006 LIBEN Plates, sheets, film, foil and strip of vulcanised fibre, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles 01/01/1988 31/12/2006 -39207200 01/01/1988 31/12/2006 LIBEN Plates, sheets, film, foil and strip of vulcanised fibre, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles 01/01/1988 31/12/2006 -392073 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular cellulose acetates, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -39207310 01/01/1988 31/12/2500 LIBEN Film backing in rolls or strips for use as carriers for sensitised surfaces in the manufacture of films, of non-cellular cellulose acetate 01/01/1988 31/12/2500 -39207350 01/01/1988 31/12/2009 LIBEN Sheets, film or strip, of non-cellular cellulose acetate, coiled or not, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles, with a thickness of < 0,75 mm (excl. film backing in rolls or strips, self-adhesive products, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2009 -39207380 01/01/2010 31/12/2500 LIBEN Plates, sheets, film, foil, tape and strip of non-cellular cellulose acetates, not reinforced, laminated, supported or similarly combined with other materials, not worked or only surface-worked, or only cut to rectangular, incl. square, shapes (excl. film in rolls or in strips, for cinematography or photography, self-adhesive products, and floor, wall and ceiling coverings in heading 3918) 01/01/2010 31/12/2500 -39207390 01/01/1988 31/12/2009 LIBEN Plates, sheets, film, foil, tape and strip of non-cellular cellulose acetates, not reinforced, laminated, supported or similarly combined with other materials, not worked or only surface-worked, or only cut to rectangular, incl. square, shapes (excl. products with a thickness of < 0,75 mm, film in rolls or in strips, for cinematography or photography, self-adhesive products, and floor, wall and ceiling coverings in heading 3918) 01/01/1988 31/12/2009 -392079 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular cellulose derivatives, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. products of cellulose acetates, self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -39207900 01/01/1988 31/12/2006 LIBEN Plates, sheets, film, foil and strip, of non-cellular cellulose derivatives, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. products of cellulose acetates, self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2006 -39207910 01/01/2007 31/12/2500 LIBEN Plates, sheets, film, foil and strip of vulcanised fibre, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles 01/01/2007 31/12/2500 -39207990 01/01/2007 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular cellulose derivatives, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. products of cellulose acetates, vulcanised fibre, self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/2007 31/12/2500 -392091 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular poly"vinyl butyral", not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -39209100 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular poly"vinyl butyral", not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -392092 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polyamides, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -39209200 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular polyamides, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -392093 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular amino-resins, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -39209300 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular amino-resins, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -392094 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular phenolic resins, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -39209400 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular phenolic resins, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -392099 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular plastics, n.e.s., not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918 and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/1988 31/12/2500 -39209911 01/01/1988 31/12/1998 LIBEN Plates, sheets, film, foil and strip, of non-cellular epoxide resins, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1998 -39209919 01/01/1988 31/12/1996 LIBEN Plates, sheets, film, foil, tape and strip of non-cellular condensation polymerization products and rearrangement polymerization products, n.e.s., not reinforced, laminated, supported or similarly combined with other materials, not worked or only surface-worked, or only cut to rectangular, incl. square, shapes (excl. self-adhesive products, and floor, wall and ceiling coverings in heading 3918) 01/01/1988 31/12/1996 -39209921 01/01/1997 31/12/2500 LIBEN Polyimide sheet and strip, non-cellular, uncoated, or coated or covered solely with plastic, not reinforced, laminated, supported or similarly combined with other materials, not worked or only surface-worked, or only cut to rectangular, incl. square, shapes (excl. self-adhesive products, and floor, wall and ceiling coverings in heading 3918) 01/01/1997 31/12/2500 -39209928 01/01/1999 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular condensation polymerization products and rearrangement polymerization products, n.e.s., not reinforced, laminated, supported or similarly combined with other materials, not worked or only surface-worked, or only cut to rectangular, incl. square, shapes (excl. self-adhesive products, floor, wall and ceiling coverings in heading 3918 and polyimide sheet and strip, uncoated, or coated or covered solely with plastic) 01/01/1999 31/12/2500 -39209929 01/01/1997 31/12/1998 LIBEN Plates, sheets, film, foil and strip, of non-cellular condensation polymerization products and rearrangement polymerization products, n.e.s., not reinforced, laminated, supported or similarly combined with other materials, not worked or only surface-worked, or only cut to rectangular, incl. square, shapes (excl. self-adhesive products, floor, wall and ceiling coverings in heading 3918 and polyimide sheet and strip, uncoated, or coated or covered solely with plastic) 01/01/1997 31/12/1998 -39209950 01/01/1988 31/12/1996 LIBEN Plates, sheets, foil, film and strip of unexpanded addition polymerization products n.e.s., not reinforced, coated, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1996 -39209951 01/01/1997 31/12/2009 LIBEN Poly"vinyl fluoride" sheet of non-cellular addition polymerization products, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1997 31/12/2009 -39209952 01/01/2010 31/12/2500 LIBEN Poly(vinyl fluoride) sheet, and biaxially oriented non-cellular poly"vinyl alcohol" film containing by weight >= 97% of poly"vinyl alcohol", uncoated, of a thickness of <= 1 mm, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/2010 31/12/2500 -39209953 01/01/1997 31/12/2500 LIBEN Ion-exchange membranes of fluorinated non-cellular plastic material, for use in chlor-alkali electrolytic cells 01/01/1997 31/12/2500 -39209955 01/01/1997 31/12/2009 LIBEN Biaxially oriented non-cellular poly"vinyl alcohol" film containing by weight >= 97% of poly"vinyl alcohol", uncoated, of a thickness of <= 1 mm, not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1997 31/12/2009 -39209959 01/01/1997 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular addition polymerization products, n.e.s., not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918, poly"vinyl fluoride" sheet, ion-exchange membranes of fluorinated plastic material for use in chlor-alkali electrolytic cells and biaxially oriented poly"vinyl alcohol" film containing by weight >= 97% of poly"vinyl alcohol", uncoated, of a thickness of <= 1 mm) 01/01/1997 31/12/2500 -39209990 01/01/1988 31/12/2006 LIBEN Plates, sheets, film, foil and strip, of non-cellular plastics, n.e.s., not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2006 -39209990 01/01/2007 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of non-cellular plastics, n.e.s., not reinforced, laminated, supported or similarly combined with other materials, without backing, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, those of addition polymerization, condensation and rearrangement polymerization products, floor, wall and ceiling coverings of heading 3918 and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/2007 31/12/2500 -3920S5 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3920 and SITC section 5 01/01/1997 31/12/2500 -3920S582 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 3920 and SITC group 582 01/01/1997 31/12/2500 -3920S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3920 and SITC section 9 01/01/2002 31/12/2500 -3920S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 3920 and SITC group 999 01/01/2002 31/12/2500 -3921 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of plastics, reinforced, laminated, supported or similarly combined with other materials, or of cellular plastic, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -392111 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of cellular polymers of styrene, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918 and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/1988 31/12/2500 -39211100 01/01/1988 31/12/2006 LIBEN Plates, sheets, film, foil and strip, of cellular polymers of styrene, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2006 -39211100 01/01/2007 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of cellular polymers of styrene, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918 and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/2007 31/12/2500 -392112 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of cellular polymers of vinyl chloride, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918 and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/1988 31/12/2500 -39211200 01/01/1988 31/12/2006 LIBEN Plates, sheets, film, foil and strip, of cellular polymers of vinyl chloride, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2006 -39211200 01/01/2007 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of cellular polymers of vinyl chloride, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918 and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/2007 31/12/2500 -392113 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of cellular polyurethanes, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918 and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/1988 31/12/2500 -39211300 01/01/1988 31/12/1993 LIBEN Plates, sheets, foil, film and strip of expanded polyurethanes, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1993 -39211310 01/01/1994 31/12/2006 LIBEN Plates, sheets, film, foil and strip, of flexible cellular polyurethane, unworked or not further worked than surface-worked or merely cut into squares or rectangles (excl. such self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1994 31/12/2006 -39211310 01/01/2007 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of flexible cellular polyurethane, unworked or not further worked than surface-worked or merely cut into squares or rectangles (excl. such self-adhesive products, and floor, wall and ceiling coverings of heading 3918 and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/2007 31/12/2500 -39211390 01/01/1994 31/12/2006 LIBEN Plates, sheets, film, foil and strip, of rigid cellular polyurethane, unworked or not further worked than surface-worked or merely cut into squares or rectangles (excl. such self-adhesive products, and floor, wall and ceiling coverings of heading 3918) 01/01/1994 31/12/2006 -39211390 01/01/2007 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of rigid cellular polyurethane, unworked or not further worked than surface-worked or merely cut into squares or rectangles (excl. such self-adhesive products, and floor, wall and ceiling coverings of heading 3918 and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/2007 31/12/2500 -392114 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of regenerated cellular cellulose, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918 and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/1988 31/12/2500 -39211400 01/01/1988 31/12/2006 LIBEN Plates, sheets, film, foil and strip, of regenerated cellular cellulose, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2006 -39211400 01/01/2007 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of regenerated cellular cellulose, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918 and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/2007 31/12/2500 -392119 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of cellular plastic, unworked or merely surface-worked or merely cut into squares or rectangles (excl.those of polymers of styrene, vinyl chloride, polyurethanes and regenerated cellulose, self-adhesive products, floor, wall and ceiling coverings of heading 3918 and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/1988 31/12/2500 -39211900 01/01/1999 31/12/2006 LIBEN Plates, sheets, film, foil and strip, of cellular plastic, unworked or merely surface-worked or merely cut into squares or rectangles (excl.those of polymers of styrene, vinyl chloride, polyurethanes and regenerated cellulose, self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1999 31/12/2006 -39211900 01/01/2007 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of cellular plastic, unworked or merely surface-worked or merely cut into squares or rectangles (excl.those of polymers of styrene, vinyl chloride, polyurethanes and regenerated cellulose, self-adhesive products, floor, wall and ceiling coverings of heading 3918 and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/2007 31/12/2500 -39211910 01/01/1988 31/12/1998 LIBEN Plates, sheets, film, foil and strip, of cellular epoxide resins, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1998 -39211990 01/01/1988 31/12/1998 LIBEN Plates, sheets, film, foil and strip, of cellular plastic, unworked or merely surface-worked or merely cut into squares or rectangles (excl. those of polymers of styrene, vinyl chloride, polyurethanes, regenerated cellulose and epoxide resins, self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1998 -392190 01/01/1988 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of plastics, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. of cellular plastic; self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/2500 -39219010 01/01/2010 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of polyesters, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. of cellular plastic; self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/2010 31/12/2500 -39219011 01/01/1988 31/12/1995 LIBEN Corrugated sheet and plates of polyester, reinforced, laminated, supported or similarly combined with other materials 01/01/1988 31/12/1995 -39219011 01/01/1996 31/12/2009 LIBEN Corrugated sheet and plates of polyester, reinforced, laminated, supported or similarly combined with other materials 01/01/1996 31/12/2009 -39219019 01/01/1988 31/12/1995 LIBEN Plates, sheets, film, foil and strip, of polyesters, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. of cellular plastic; corrugated sheet and plates, self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1995 -39219019 01/01/1996 31/12/2009 LIBEN Plates, sheets, film, foil and strip, of polyesters, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. of cellular plastic; corrugated sheet and plates, self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1996 31/12/2009 -39219020 01/01/1988 31/12/1995 LIBEN Plates, sheets, film, foil and strip, of epoxide resins, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1995 -39219020 01/01/1996 31/12/1998 LIBEN Plates, sheets, film, foil and strip, of epoxide resins, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1996 31/12/1998 -39219030 01/01/1988 31/12/1995 LIBEN Plates, sheets, film, foil and strip, of phenolic resins, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1995 -39219030 01/01/1996 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of phenolic resins, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1996 31/12/2500 -39219041 01/01/1988 31/12/1995 LIBEN High-pressure laminates of amino-resins, with a decorative surface on one or both sides but otherwise unworked or merely cut into squares or rectangles 01/01/1988 31/12/1995 -39219041 01/01/1996 31/12/2500 LIBEN High-pressure laminates of amino-resins, with a decorative surface on one or both sides but otherwise unworked or merely cut into squares or rectangles 01/01/1996 31/12/2500 -39219043 01/01/1988 31/12/1995 LIBEN Plates, sheets, film, foil and strip, of laminated amino-resins, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. high-pressure laminates of amino-resins, with a decorative surface on one or both sides, and floor coverings) 01/01/1988 31/12/1995 -39219043 01/01/1996 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of laminated amino-resins, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. high-pressure laminates of amino-resins, with a decorative surface on one or both sides, and floor coverings) 01/01/1996 31/12/2500 -39219049 01/01/1988 31/12/1995 LIBEN Plates, sheets, film, foil and strip, of unlaminated amino-resins, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1995 -39219049 01/01/1996 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of unlaminated amino-resins, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1996 31/12/2500 -39219050 01/01/1988 31/12/1998 LIBEN Plates, sheets, film, foil and strip, of condensation or rearrangement polymerization products, whether or not chemically modified, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. products of polyester, epoxide resins, phenolic resins and amino-resins; self-adhesive products and floor coverings of heading 3918) 01/01/1988 31/12/1998 -39219055 01/01/1999 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of condensation or rearrangement polymerization products, whether or not chemically modified, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. products of polyesters, phenolic resins and amino-resins; self-adhesive products and floor coverings of heading 3918) 01/01/1999 31/12/2500 -39219060 01/01/1988 31/12/1995 LIBEN Plates, sheets, film, foil and strip, of addition polymerization products, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1995 -39219060 01/01/1996 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of addition polymerization products, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. self-adhesive products, floor, wall and ceiling coverings of heading 3918) 01/01/1996 31/12/2500 -39219090 01/01/1988 31/12/1995 LIBEN Plates, sheets, film, foil and strip, of plastics, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. of cellular plastic, addition polymerization products, condensation polymerization products and rearrangement polymerization products; self-adhesive products and floor, wall and ceiling coverings of heading 3918) 01/01/1988 31/12/1995 -39219090 01/01/1996 31/12/2500 LIBEN Plates, sheets, film, foil and strip, of plastics, reinforced, laminated, supported or similarly combined with other materials, unworked or merely surface-worked or merely cut into squares or rectangles (excl. of cellular plastic, addition polymerization products, condensation polymerization products and rearrangement polymerization products; self-adhesive products and floor, wall and ceiling coverings of heading 3918) 01/01/1996 31/12/2500 -3922 01/01/1988 31/12/2500 LIBEN Baths, shower-baths, sinks, washbasins, bidets, lavatory pans, seats and covers, flushing cisterns and similar sanitary ware, of plastics 01/01/1988 31/12/2500 -392210 01/01/1988 31/12/2500 LIBEN Baths, shower-baths, sinks and washbasins, of plastics 01/01/1988 31/12/2500 -39221000 01/01/1988 31/12/2001 LIBEN Baths, shower-baths and wash-basins, of plastics 01/01/1988 31/12/2001 -39221000 01/01/2002 31/12/2500 LIBEN Baths, shower-baths, sinks and washbasins, of plastics 01/01/2002 31/12/2500 -392220 01/01/1988 31/12/2500 LIBEN Lavatory seats and covers, of plastics 01/01/1988 31/12/2500 -39222000 01/01/1988 31/12/2500 LIBEN Lavatory seats and covers, of plastics 01/01/1988 31/12/2500 -392290 01/01/1988 31/12/2500 LIBEN Bidets, lavatory pans, flushing cisterns and similar sanitary ware, of plastics (excl. baths, shower-baths, sinks, washbasins, lavatory seats and covers) 01/01/1988 31/12/2500 -39229000 01/01/1988 31/12/2001 LIBEN Bidets, lavatory pans, flushing cisterns and similar sanitary ware, of plastics (excl. baths, shower-baths, wash-basins, lavatory seats and covers) 01/01/1988 31/12/2001 -39229000 01/01/2002 31/12/2500 LIBEN Bidets, lavatory pans, flushing cisterns and similar sanitary ware, of plastics (excl. baths, shower-baths, sinks, washbasins, lavatory seats and covers) 01/01/2002 31/12/2500 -3923 01/01/1988 31/12/2500 LIBEN Articles for the conveyance or packaging of goods, of plastics; stoppers, lids, caps and other closures, of plastics 01/01/1988 31/12/2500 -392310 01/01/1988 31/12/2500 LIBEN Boxes, cases, crates and similar articles for the conveyance or packaging of goods, of plastics 01/01/1988 31/12/2500 -39231000 01/01/1988 31/12/2016 LIBEN Boxes, cases, crates and similar articles for the conveyance or packaging of goods, of plastics 01/01/1988 31/12/2016 -39231010 01/01/2017 31/12/2500 LIBEN Boxes, cases, crates and similar articles, of plastic, specially shaped or fitted for the conveyance or packing of semiconductor wafers, masks, or reticles 01/01/2017 31/12/2500 -39231090 01/01/2017 31/12/2500 LIBEN Boxes, cases, crates and similar articles for the conveyance or packaging of goods, of plastics (excl. special ones for semiconductor wafers, masks or reticles) 01/01/2017 31/12/2500 -392321 01/01/1988 31/12/2500 LIBEN Sacks and bags, incl. cones, of polymers of ethylene 01/01/1988 31/12/2500 -39232100 01/01/1988 31/12/2500 LIBEN Sacks and bags, incl. cones, of polymers of ethylene 01/01/1988 31/12/2500 -392329 01/01/1988 31/12/2500 LIBEN Sacks and bags, incl. cones, of plastics (excl. those of polymers of ethylene) 01/01/1988 31/12/2500 -39232910 01/01/1988 31/12/2500 LIBEN Sacks and bags, incl. cones, of poly"vinyl chloride" 01/01/1988 31/12/2500 -39232990 01/01/1988 31/12/2500 LIBEN Sacks and bags, incl. cones, of plastics (excl. those of poly"vinyl chloride" and polymers of ethylene) 01/01/1988 31/12/2500 -392330 01/01/1988 31/12/2500 LIBEN Carboys, bottles, flasks and similar articles for the conveyance or packaging of goods, of plastics 01/01/1988 31/12/2500 -39233010 01/01/1988 31/12/2500 LIBEN Carboys, bottles, flasks and similar articles for the conveyance or packaging of goods, of plastics, with a capacity of <= 2 l 01/01/1988 31/12/2500 -39233090 01/01/1988 31/12/2500 LIBEN Carboys, bottles, flasks and similar articles for the conveyance or packaging of goods, of plastics, with a capacity of > 2 l 01/01/1988 31/12/2500 -392340 01/01/1988 31/12/2500 LIBEN Spools, cops, bobbins and similar supports, of plastics 01/01/1988 31/12/2500 -39234010 01/01/1988 31/12/2500 LIBEN Spools, reels and similar supports, of plastics, for photographic and cinematographic film or for tapes, films and the like, for sound or video recordings or the recording of signals, data or programmes 01/01/1988 31/12/2500 -39234090 01/01/1988 31/12/2500 LIBEN Spools, cops, bobbins and similar supports, of plastics (excl. those for photographic and cinematographic film or for tapes, films and the like, for sound or video recordings or the recording of signals, data or programmes) 01/01/1988 31/12/2500 -392350 01/01/1988 31/12/2500 LIBEN Stoppers, lids, caps and other closures, of plastics 01/01/1988 31/12/2500 -39235010 01/01/1988 31/12/2500 LIBEN Caps and capsules for bottles, of plastics 01/01/1988 31/12/2500 -39235090 01/01/1988 31/12/2500 LIBEN Stoppers, lids, caps and other closures, of plastics (excl. caps and capsules for bottles) 01/01/1988 31/12/2500 -392390 01/01/1988 31/12/2500 LIBEN Articles for the conveyance or packaging of goods, of plastics (excl. boxes, cases, crates and similar articles; sacks and bags, incl. cones; carboys, bottles, flasks and similar articles; spools, spindles, bobbins and similar supports; stoppers, lids, caps and other closures) 01/01/1988 31/12/2500 -39239000 01/01/2010 31/12/2500 LIBEN Articles for the conveyance or packaging of goods, of plastics (excl. boxes, cases, crates and similar articles; sacks and bags, incl. cones; carboys, bottles, flasks and similar articles; spools, spindles, bobbins and similar supports; stoppers, lids, caps and other closures) 01/01/2010 31/12/2500 -39239010 01/01/1988 31/12/2009 LIBEN Plastic netting extruded in tubular form 01/01/1988 31/12/2009 -39239090 01/01/1988 31/12/2009 LIBEN Articles for the conveyance or packaging of goods, of plastics (excl. boxes, cases, crates and similar articles; sacks and bags, incl. cones; carboys, bottles, flasks and similar articles; spools, spindles, bobbins and similar supports; stoppers, lids, caps and other closures; plastic netting extruded in tubular form) 01/01/1988 31/12/2009 -3924 01/01/1988 31/12/2500 LIBEN Tableware, kitchenware, other household articles and toilet articles, of plastics (excl. baths, shower-baths, washbasins, bidets, lavatory pans, seats and covers, flushing cisterns and similar sanitary ware) 01/01/1988 31/12/2500 -392410 01/01/1988 31/12/2500 LIBEN Tableware and kitchenware, of plastics 01/01/1988 31/12/2500 -39241000 01/01/1988 31/12/2500 LIBEN Tableware and kitchenware, of plastics 01/01/1988 31/12/2500 -392490 01/01/1988 31/12/2500 LIBEN Household articles and toilet articles, of plastics (excl. tableware, kitchenware, baths, shower-baths, washbasins, bidets, lavatory pans, seats and covers, flushing cisterns and similar sanitary ware) 01/01/1988 31/12/2500 -39249000 01/01/2010 31/12/2500 LIBEN Household articles and toilet articles, of plastics (excl. tableware, kitchenware, baths, shower-baths, washbasins, bidets, lavatory pans, seats and covers, flushing cisterns and similar sanitary ware) 01/01/2010 31/12/2500 -39249011 01/01/1988 31/12/2009 LIBEN Sponges for household or toilet purposes, of regenerated cellulose 01/01/1988 31/12/2009 -39249019 01/01/1988 31/12/2009 LIBEN Household articles and toilet articles, of regenerated cellulose (excl. tableware, kitchenware, baths, shower-baths, washbasins, bidets, lavatory pans, seats and covers, flushing cisterns and similar sanitary ware) 01/01/1988 31/12/2009 -39249090 01/01/1988 31/12/2009 LIBEN Household articles and toilet articles, of plastics other than regenerated cellulose (excl. tableware, kitchenware, baths, shower-baths, washbasins, bidets, lavatory pans, seats and covers, flushing cisterns and similar sanitary ware) 01/01/1988 31/12/2009 -3925 01/01/1988 31/12/2500 LIBEN Builders' ware of plastics, n.e.s. 01/01/1988 31/12/2500 -392510 01/01/1988 31/12/2500 LIBEN Reservoirs, tanks, vats and similar containers, of plastics, with a capacity of > 300 l 01/01/1988 31/12/2500 -39251000 01/01/1988 31/12/2500 LIBEN Reservoirs, tanks, vats and similar containers, of plastics, with a capacity of > 300 l 01/01/1988 31/12/2500 -392520 01/01/1988 31/12/2500 LIBEN Doors, windows and their frames and thresholds for doors, of plastics 01/01/1988 31/12/2500 -39252000 01/01/1988 31/12/2500 LIBEN Doors, windows and their frames and thresholds for doors, of plastics 01/01/1988 31/12/2500 -392530 01/01/1988 31/12/2500 LIBEN Shutters, blinds, incl. Venetian blinds, and similar articles and parts thereof, of plastics (excl. fittings and similar articles) 01/01/1988 31/12/2500 -39253000 01/01/1988 31/12/2500 LIBEN Shutters, blinds, incl. Venetian blinds, and similar articles and parts thereof, of plastics (excl. fittings and similar articles) 01/01/1988 31/12/2500 -392590 01/01/1988 31/12/2500 LIBEN Building elements for the manufacture of floors, walls, partition walls, ceilings, roofs, etc., of plastics; gutters and accessories of plastics; railings, fences and similar barriers, of plastics; large shelves, for assembly and permanent installation in shops, workshops, etc., of plastics; architectural ornaments, e.g. friezes, of plastics; fittings and similar products for permanent mounting on buildings, of plastics 01/01/1988 31/12/2500 -39259010 01/01/1988 31/12/2500 LIBEN Fittings and mountings intended for permanent installation in or on doors, windows, staircases, walls or other parts of buildings, of plastics 01/01/1988 31/12/2500 -39259020 01/01/1994 31/12/2500 LIBEN Trunking, ducting and cable trays for electrical circuits, of plastics 01/01/1994 31/12/2500 -39259080 01/01/1994 31/12/2500 LIBEN Builders' ware for the manufacture of flooring, walls, partition walls, ceilings, roofing, etc. guttering and accessories, banisters, fences and the like, fitted shelving for shops, factories, warehouses, storerooms, etc., architectural ornaments such as fluting, vaulting and friezes, of plastics, n.e.s. 01/01/1994 31/12/2500 -39259090 01/01/1988 31/12/1993 LIBEN Building components for the manufacture of flooring, walls, partition walls, ceilings, roofing, etc., of plastics; guttering and accessories, of plastics; bannisters, fences and the like, of plastics; fitted shelving for shops, factories, warehouses, storerooms, etc., of plastics; architectural ornaments such as fluting, vaulting and friezes, of plastics 01/01/1988 31/12/1993 -3926 01/01/1988 31/12/2500 LIBEN Articles of plastics and articles of other materials of heading 3901 to 3914, n.e.s. 01/01/1988 31/12/2500 -392610 01/01/1988 31/12/2500 LIBEN Office or school supplies, of plastics, n.e.s. 01/01/1988 31/12/2500 -39261000 01/01/1988 31/12/2500 LIBEN Office or school supplies, of plastics, n.e.s. 01/01/1988 31/12/2500 -392620 01/01/1988 31/12/2500 LIBEN Articles of apparel and clothing accessories produced by the stitching or sticking together of plastic sheeting, incl. gloves, mittens and mitts (excl. goods of 9619) 01/01/1988 31/12/2500 -39262000 01/01/1988 31/12/2011 LIBEN Articles of apparel and clothing accessories produced by the stitching or sticking together of plastic sheeting, incl. gloves, mittens and mitts 01/01/1988 31/12/2011 -39262000 01/01/2012 31/12/2500 LIBEN Articles of apparel and clothing accessories produced by the stitching or sticking together of plastic sheeting, incl. gloves, mittens and mitts (excl. goods of 9619) 01/01/2012 31/12/2500 -392630 01/01/1988 31/12/2500 LIBEN Fittings for furniture, coachwork and the like, of plastics (excl. building components for permanent mounting on parts of buildings) 01/01/1988 31/12/2500 -39263000 01/01/1988 31/12/2500 LIBEN Fittings for furniture, coachwork and the like, of plastics (excl. building components for permanent mounting on parts of buildings) 01/01/1988 31/12/2500 -392640 01/01/1988 31/12/2500 LIBEN Statuettes and other ornamental articles, of plastics 01/01/1988 31/12/2500 -39264000 01/01/1988 31/12/2500 LIBEN Statuettes and other ornamental articles, of plastics 01/01/1988 31/12/2500 -392690 01/01/1988 31/12/2500 LIBEN Articles of plastics and articles of other materials of heading 3901 to 3914, n.e.s (excl. goods of 9619) 01/01/1988 31/12/2500 -39269010 01/01/1988 31/12/2005 LIBEN Articles for technical use, of plastics or other materials of heading 3901 to 3914, for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -39269050 01/01/1988 31/12/2500 LIBEN Perforated buckets and similar articles used to filter water at the entrance to drains, of plastics 01/01/1988 31/12/2500 -39269060 01/01/2021 31/12/2500 LIBEN Protective face shields/visors of plastics 01/01/2021 31/12/2500 -39269091 01/01/1988 31/12/1995 LIBEN Articles made from plastic sheet, n.e.s. 01/01/1988 31/12/1995 -39269091 01/01/1996 31/12/2006 LIBEN Articles made from plastic sheet, n.e.s. 01/01/1996 31/12/2006 -39269092 01/01/2007 31/12/2019 LIBEN Articles made from plastic sheet, n.e.s. 01/01/2007 31/12/2019 -39269097 01/01/2007 31/12/2011 LIBEN Articles of plastics and articles of other materials of heading 3901 to 3914, n.e.s. 01/01/2007 31/12/2011 -39269097 01/01/2012 31/12/2016 LIBEN Articles of plastics and articles of other materials of heading 3901 to 3914, n.e.s. 01/01/2012 31/12/2016 -39269097 01/01/2017 31/12/2019 LIBEN Articles of plastics and articles of other materials of heading 3901 to 3914, n.e.s. 01/01/2017 31/12/2019 -39269097 01/01/2020 31/12/2020 LIBEN Articles of plastics and articles of other materials of heading 3901 to 3914, n.e.s. 01/01/2020 31/12/2020 -39269097 01/01/2021 31/12/2500 LIBEN Articles of plastics and articles of other materials of heading 3901 to 3914, n.e.s. 01/01/2021 31/12/2500 -39269098 01/01/2006 31/12/2006 LIBEN Articles of plastics and articles of other materials of heading 3901 to 3914, n.e.s. 01/01/2006 31/12/2006 -39269099 01/01/1988 31/12/1995 LIBEN Articles of plastics or other materials of headings 3901 to 3914, n.e.s. (excl. articles made from sheet) 01/01/1988 31/12/1995 -39269099 01/01/1996 31/12/2005 LIBEN Articles of plastics or other materials of heading 3901 to 3914, n.e.s. (excl. articles made from sheet) 01/01/1996 31/12/2005 -39CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 39 01/01/2002 31/12/2500 -39CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 39 01/01/2002 31/12/2500 -39CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 39 01/01/2002 31/12/2500 -39MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -39MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -39MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -39SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 39 01/01/1988 31/12/2500 -39SSS0 01/01/1988 31/12/2007 LIBEN Confidential trade of chapter 39 and SITC section 0 01/01/1988 31/12/2007 -39SSS000 01/01/1988 31/12/2007 LIBEN Confidential trade of chapter 39 and SITC group 000 01/01/1988 31/12/2007 -39SSS5 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC section 5 01/01/1988 31/12/2500 -39SSS571 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC group 571 01/01/1990 31/12/2500 -39SSS572 01/01/1991 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC group 572 01/01/1991 31/12/2500 -39SSS573 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC group 573 01/01/1988 31/12/2500 -39SSS574 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC group 574 01/01/1988 31/12/2500 -39SSS575 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC group 575 01/01/1988 31/12/2500 -39SSS579 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC group 579 01/01/1997 31/12/2500 -39SSS57S 01/01/2005 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC division 57 01/01/2005 31/12/2500 -39SSS581 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC group 581 01/01/1992 31/12/2500 -39SSS582 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC group 582 01/01/1990 31/12/2500 -39SSS583 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC group 583 01/01/1997 31/12/2500 -39SSS6 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC section 6 01/01/1988 31/12/2500 -39SSS601 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC group 601 01/01/1988 31/12/2500 -39SSS8 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC section 8 01/01/1992 31/12/2500 -39SSS848 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC group 848 01/01/1997 31/12/2500 -39SSS893 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC group 893 01/01/1992 31/12/2500 -39SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 39 and SITC section 9 01/01/1988 31/12/1996 -39SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC section 9 01/01/1997 31/12/2500 -39SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 39 and SITC group 999 01/01/1988 31/12/1996 -39SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 39 and SITC group 999 01/01/1997 31/12/2500 -39VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 39 for the assembly of motor vehicles 01/01/1988 31/12/2500 -39VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 39 for the assembly of motor vehicles 01/01/1988 31/12/2500 -39VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 39 for the assembly of motor vehicles 01/01/1988 31/12/2500 -40 01/01/1988 31/12/2500 LIBEN RUBBER AND ARTICLES THEREOF 01/01/1988 31/12/2500 -4001 01/01/1988 31/12/2500 LIBEN Natural rubber, balata, gutta-percha, guayule, chicle and similar natural gums, in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -400110 01/01/1988 31/12/2500 LIBEN Natural rubber latex, whether or not prevulcanised 01/01/1988 31/12/2500 -40011000 01/01/1988 31/12/2500 LIBEN Natural rubber latex, whether or not prevulcanised 01/01/1988 31/12/2500 -400121 01/01/1988 31/12/2500 LIBEN Smoked sheets of natural rubber 01/01/1988 31/12/2500 -40012100 01/01/1988 31/12/2500 LIBEN Smoked sheets of natural rubber 01/01/1988 31/12/2500 -400122 01/01/1988 31/12/2500 LIBEN Technically specified natural rubber "TSNR" 01/01/1988 31/12/2500 -40012200 01/01/1988 31/12/2500 LIBEN Technically specified natural rubber "TSNR" 01/01/1988 31/12/2500 -400129 01/01/1988 31/12/2500 LIBEN Natural rubber in primary forms or in plates, sheets or strip (excl. smoked sheets, technically specified natural rubber "TSNR" and natural rubber latex, whether or not prevulcanised) 01/01/1988 31/12/2500 -40012900 01/01/1999 31/12/2500 LIBEN Natural rubber in primary forms or in plates, sheets or strip (excl. smoked sheets, technically specified natural rubber "TSNR" and natural rubber latex, whether or not prevulcanised) 01/01/1999 31/12/2500 -40012910 01/01/1988 31/12/1998 LIBEN Natural rubber in crepe form "crepe sheets" 01/01/1988 31/12/1998 -40012990 01/01/1988 31/12/1998 LIBEN Natural rubber in primary forms or in plates, sheets or strip (excl. smoked sheets, technically specified natural rubber "TSNR", crepe sheets and natural rubber latex, whether or not prevulcanized) 01/01/1988 31/12/1998 -400130 01/01/1988 31/12/2500 LIBEN Balata, gutta-percha, guayule, chicle and similar natural gums, in primary forms or in plates, sheets or strip (excl. natural rubber, whether or not prevulcanised) 01/01/1988 31/12/2500 -40013000 01/01/1988 31/12/2500 LIBEN Balata, gutta-percha, guayule, chicle and similar natural gums, in primary forms or in plates, sheets or strip (excl. natural rubber, whether or not prevulcanised) 01/01/1988 31/12/2500 -4002 01/01/1988 31/12/2500 LIBEN Synthetic rubber and factice derived from oils, in primary forms or in plates, sheets or strip; mixtures of natural rubber, balata, gutta-percha, guayule, chicle or similar types of natural rubber with synthetic rubber or factice, in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -400211 01/01/1988 31/12/2500 LIBEN Styrene-butadiene rubber latex "SBR"; carboxylated styrene-butadiene rubber latex "XSBR" 01/01/1988 31/12/2500 -40021100 01/01/1988 31/12/2500 LIBEN Styrene-butadiene rubber latex "SBR"; carboxylated styrene-butadiene rubber latex "XSBR" 01/01/1988 31/12/2500 -400219 01/01/1988 31/12/2500 LIBEN Styrene-butadiene rubber "SBR"; carboxylated styrene-butadiene rubber "XSBR", in primary forms or in plates, sheets or strip (excl. latex) 01/01/1988 31/12/2500 -40021900 01/01/1988 31/12/2005 LIBEN Styrene-butadiene rubber "SBR"; carboxylated styrene-butadiene rubber "XSBR", in primary forms or in plates, sheets or strip (excl. latex) 01/01/1988 31/12/2005 -40021910 01/01/2006 31/12/2500 LIBEN Styrene-butadiene rubber produced by emulsion polymerisation "E-SBR", in bales 01/01/2006 31/12/2500 -40021920 01/01/2006 31/12/2500 LIBEN Styrene-butadiene-styrene block copolymers produced by solution polymerisation "SBS, thermoplastic elastomers", in granules, crumbs or powders 01/01/2006 31/12/2500 -40021930 01/01/2006 31/12/2500 LIBEN Styrene-butadiene rubber produced by solution polymerisation "S-SBR", in bales 01/01/2006 31/12/2500 -40021990 01/01/2006 31/12/2500 LIBEN Styrene-butadiene rubber "SBR" and carboxylated styrene-butadiene rubber "XSBR", in primary forms or in plates, sheets or strip (excl. E-SBR and S-SBR in bales, SBS thermoplastic elastomers in granules, crumbs or powder and latex) 01/01/2006 31/12/2500 -400220 01/01/1988 31/12/2500 LIBEN Butadiene rubber "BR", in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -40022000 01/01/1988 31/12/2500 LIBEN Butadiene rubber "BR", in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -400231 01/01/1988 31/12/2500 LIBEN Isobutylene isoprene rubber "IIR", in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -40023100 01/01/1988 31/12/2500 LIBEN Isobutylene isoprene rubber "IIR", in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -400239 01/01/1988 31/12/2500 LIBEN Halo-isobutene-isoprene rubber "CIIR" or "BIIR", in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -40023900 01/01/1988 31/12/2500 LIBEN Halo-isobutene-isoprene rubber "CIIR" or "BIIR", in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -400241 01/01/1988 31/12/2500 LIBEN Chloroprene latex "chlorobutadiene rubber, CR" 01/01/1988 31/12/2500 -40024100 01/01/1988 31/12/2500 LIBEN Chloroprene latex "chlorobutadiene rubber, CR" 01/01/1988 31/12/2500 -400249 01/01/1988 31/12/2500 LIBEN Chloroprene "chlorobutadiene rubber, CR", in primary forms or in plates, sheets or strip (excl. latex) 01/01/1988 31/12/2500 -40024900 01/01/1988 31/12/2500 LIBEN Chloroprene "chlorobutadiene rubber, CR", in primary forms or in plates, sheets or strip (excl. latex) 01/01/1988 31/12/2500 -400251 01/01/1988 31/12/2500 LIBEN Latex of acrylonitrile-butadiene rubber "NBR" 01/01/1988 31/12/2500 -40025100 01/01/1988 31/12/2500 LIBEN Latex of acrylonitrile-butadiene rubber "NBR" 01/01/1988 31/12/2500 -400259 01/01/1988 31/12/2500 LIBEN Acrylonitrile-butadiene rubber "NBR", in primary forms or in plates, sheets or strip (excl. latex) 01/01/1988 31/12/2500 -40025900 01/01/1988 31/12/2500 LIBEN Acrylonitrile-butadiene rubber "NBR", in primary forms or in plates, sheets or strip (excl. latex) 01/01/1988 31/12/2500 -400260 01/01/1988 31/12/2500 LIBEN Isoprene rubber "IR", in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -40026000 01/01/1988 31/12/2500 LIBEN Isoprene rubber "IR", in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -400270 01/01/1988 31/12/2500 LIBEN Ethylene-propylene diene rubber "EPDM", non-conjugated, in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -40027000 01/01/1988 31/12/2500 LIBEN Ethylene-propylene diene rubber "EPDM", non-conjugated, in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -400280 01/01/1988 31/12/2500 LIBEN Mixtures of natural rubber, balata, gutta-percha, guayule, chicle or similar types of natural rubber with synthetic rubber or factice, in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -40028000 01/01/1988 31/12/2500 LIBEN Mixtures of natural rubber, balata, gutta-percha, guayule, chicle or similar types of natural rubber with synthetic rubber or factice, in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -400291 01/01/1988 31/12/2500 LIBEN Synthetic rubber and factice derived from oils, in primary forms or in plates, sheets or strip (excl. styrene-butadiene rubber "SBR", carboxylated styrene-butadiene rubber "XSBR", butadiene rubber "BR", isobutylene isoprene rubber "IIR", halo-isobutene-isoprene rubber "CIIR" or "BIIR", chloroprene rubber "CR", acrylonitrile-butadiene rubber "NBR", isoprene rubber "IR" and non-conjugated ethylene-propylene diene rubber "EPDM") 01/01/1988 31/12/2500 -40029100 01/01/1988 31/12/2500 LIBEN Synthetic rubber and factice derived from oils, in primary forms or in plates, sheets or strip (excl. styrene-butadiene rubber "SBR", carboxylated styrene-butadiene rubber "XSBR", butadiene rubber "BR", isobutylene isoprene rubber "IIR", halo-isobutene-isoprene rubber "CIIR" or "BIIR", chloroprene rubber "CR", acrylonitrile-butadiene rubber "NBR", isoprene rubber "IR" and non-conjugated ethylene-propylene diene rubber "EPDM") 01/01/1988 31/12/2500 -400299 01/01/1988 31/12/2500 LIBEN Synthetic rubber and factice derived from oils, in primary forms or in plates, sheets or strip (excl. latex, styrene-butadiene rubber "SBR", carboxylated styrene-butadiene rubber "XSBR", butadiene rubber "BR", isobutylene isoprene rubber "IIR", halo-isobutene-isoprene rubber "CIIR" or "BIIR", chloroprene rubber "CR", acrylonitrile-butadiene rubber "NBR", isoprene rubber "IR" and non-conjugated ethylene-propylene diene rubber "EPDM") 01/01/1988 31/12/2500 -40029910 01/01/1988 31/12/2500 LIBEN Natural rubber products modified by the incorporation of plastics (excl. depolymerised natural rubber) 01/01/1988 31/12/2500 -40029990 01/01/1988 31/12/2500 LIBEN Synthetic rubber and factice derived from oils, in primary forms or plates, sheets or strip (excl. latex; styrene-butadiene "SBR", carboxylated styrene-butadiene "XSBR", butadiene "BR" butyl "IIR", halo-isobutene-isoprene "CIIR" or "BIIR", chloroprene -chlorobutadiene- "CR", acrylonitrile-butadiene "NBR", isoprene "IR" or ethylene-propylene-non-conjugated diene "EPDM" rubber; products modified by the incorporation of plastics) 01/01/1988 31/12/2500 -4002S2 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 4002 and SITC section 2 01/01/2001 31/12/2500 -4002S232 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 4002 and SITC group 232 01/01/2001 31/12/2500 -4002S9 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 4002 and SITC section 9 01/01/2001 31/12/2500 -4002S999 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 4002 and SITC group 999 01/01/2001 31/12/2500 -4003 01/01/1988 31/12/2500 LIBEN Reclaimed rubber in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -400300 01/01/1988 31/12/2500 LIBEN Reclaimed rubber in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -40030000 01/01/1988 31/12/2500 LIBEN Reclaimed rubber in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -4004 01/01/1988 31/12/2500 LIBEN Waste, parings and scrap of soft rubber and powders and granules obtained therefrom 01/01/1988 31/12/2500 -400400 01/01/1988 31/12/2500 LIBEN Waste, parings and scrap of soft rubber and powders and granules obtained therefrom 01/01/1988 31/12/2500 -40040000 01/01/1988 31/12/2500 LIBEN Waste, parings and scrap of soft rubber and powders and granules obtained therefrom 01/01/1988 31/12/2500 -4005 01/01/1988 31/12/2500 LIBEN Compounded rubber, unvulcanised, in primary forms or in plates, sheets or strip (excl. mixtures of natural rubber, balata, gutta-percha, guayule, chicle and similar natural gums containing synthetic rubber or factice derived from oils) 01/01/1988 31/12/2500 -400510 01/01/1988 31/12/2500 LIBEN Rubber, unvulcanised, compounded with carbon black or silica, in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -40051000 01/01/1988 31/12/2500 LIBEN Rubber, unvulcanised, compounded with carbon black or silica, in primary forms or in plates, sheets or strip 01/01/1988 31/12/2500 -400520 01/01/1988 31/12/2500 LIBEN Compounded rubber, unvulcanised, in the form of solutions or dispersions (excl. rubber compounded with carbon black or silica, and mixtures of natural rubber, balata, gutta-percha, guayule, chicle and similar natural gums containing synthetic rubber or factice derived from oils) 01/01/1988 31/12/2500 -40052000 01/01/1988 31/12/2500 LIBEN Compounded rubber, unvulcanised, in the form of solutions or dispersions (excl. rubber compounded with carbon black or silica, and mixtures of natural rubber, balata, gutta-percha, guayule, chicle and similar natural gums containing synthetic rubber or factice derived from oils) 01/01/1988 31/12/2500 -400591 01/01/1988 31/12/2500 LIBEN Compounded rubber, unvulcanised, in the form of plates, sheets or strip (excl. rubber compounded with carbon black or silica, and mixtures of natural rubber, balata, gutta-percha, guayule, chicle and similar natural gums containing synthetic rubber or factice derived from oils) 01/01/1988 31/12/2500 -40059100 01/01/1988 31/12/2500 LIBEN Compounded rubber, unvulcanised, in the form of plates, sheets or strip (excl. rubber compounded with carbon black or silica, and mixtures of natural rubber, balata, gutta-percha, guayule, chicle and similar natural gums containing synthetic rubber or factice derived from oils) 01/01/1988 31/12/2500 -400599 01/01/1988 31/12/2500 LIBEN Compounded, unvulcanised rubber in primary forms (excl. solutions and dispersions, those containing carbon black or silica, mixtures of natural rubber, balata, gutta-percha, guayule, chicle or similar types of natural rubber with synthetic rubber or factice, and those in the form of plates, sheets or strip) 01/01/1988 31/12/2500 -40059900 01/01/1988 31/12/2500 LIBEN Compounded, unvulcanised rubber in primary forms (excl. solutions and dispersions, those containing carbon black or silica, mixtures of natural rubber, balata, gutta-percha, guayule, chicle or similar types of natural rubber with synthetic rubber or factice, and those in the form of plates, sheets or strip) 01/01/1988 31/12/2500 -4005S9 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 4005 and SITC section 9 01/01/2001 31/12/2500 -4005S999 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 4005 and SITC group 999 01/01/2001 31/12/2500 -4006 01/01/1988 31/12/2500 LIBEN Rods, bars, tubes, profiles and other forms of unvulcanised rubber, incl. mixed rubber, and articles of unvulcanised rubber, incl. mixed rubber (excl. plates, sheets and strip which, apart from basic surface-working, have not been cut, or have merely been cut into square or rectangular shapes) 01/01/1988 31/12/2500 -400610 01/01/1988 31/12/2500 LIBEN 'Camel-back' strips of unvulcanised rubber, for retreading rubber tyres 01/01/1988 31/12/2500 -40061000 01/01/1988 31/12/2500 LIBEN 'Camel-back' strips of unvulcanised rubber, for retreading rubber tyres 01/01/1988 31/12/2500 -400690 01/01/1988 31/12/2500 LIBEN Rods, bars, tubes, profiles and other forms of unvulcanised rubber, incl. mixed rubber, and articles of unvulcanised rubber, incl. mixed rubber (excl. plates, sheets and strip which, apart from basic surface-working, have not been cut, or have merely been cut into square or rectangular shapes, and 'camel-back' strips) 01/01/1988 31/12/2500 -40069000 01/01/1988 31/12/2500 LIBEN Rods, bars, tubes, profiles and other forms of unvulcanised rubber, incl. mixed rubber, and articles of unvulcanised rubber, incl. mixed rubber (excl. plates, sheets and strip which, apart from basic surface-working, have not been cut, or have merely been cut into square or rectangular shapes, and 'camel-back' strips) 01/01/1988 31/12/2500 -4007 01/01/1988 31/12/2500 LIBEN Vulcanised rubber thread and cord (excl. ungimped single thread with a diameter of > 5 mm and textiles combined with rubber thread, e.g. textile-covered thread and cord) 01/01/1988 31/12/2500 -400700 01/01/1988 31/12/2500 LIBEN Vulcanised rubber thread and cord (excl. ungimped single thread with a diameter of > 5 mm and textiles combined with rubber thread, e.g. textile-covered thread and cord) 01/01/1988 31/12/2500 -40070000 01/01/1988 31/12/2500 LIBEN Vulcanised rubber thread and cord (excl. ungimped single thread with a diameter of > 5 mm and textiles combined with rubber thread, e.g. textile-covered thread and cord) 01/01/1988 31/12/2500 -4008 01/01/1988 31/12/2500 LIBEN Plates, sheets, strip, rods and profile shapes, of vulcanised rubber (excl. hard rubber) 01/01/1988 31/12/2500 -400811 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip of cellular rubber 01/01/1988 31/12/2500 -40081100 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip of cellular rubber 01/01/1988 31/12/2500 -400819 01/01/1988 31/12/2500 LIBEN Rods and profile shapes, of cellular rubber 01/01/1988 31/12/2500 -40081900 01/01/1988 31/12/2500 LIBEN Rods and profile shapes, of cellular rubber 01/01/1988 31/12/2500 -400821 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of non-cellular rubber 01/01/1988 31/12/2500 -40082110 01/01/1988 31/12/2500 LIBEN Floor coverings and mats, uncut or simply cut to rectangular or square shape, of non-cellular rubber 01/01/1988 31/12/2500 -40082190 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of non-cellular rubber (excl. floor coverings and mats) 01/01/1988 31/12/2500 -400829 01/01/1988 31/12/2500 LIBEN Rods, tubes and profile shapes, of non-cellular rubber 01/01/1988 31/12/2500 -40082900 01/01/2006 31/12/2500 LIBEN Rods, tubes and profile shapes, of non-cellular rubber 01/01/2006 31/12/2500 -40082910 01/01/1988 31/12/2005 LIBEN Profile shapes, cut to size, for use in civil aircraft 01/01/1988 31/12/2005 -40082990 01/01/1988 31/12/2005 LIBEN Rods, tubes and profile shapes, of non-cellular rubber (excl. profile shapes, cut to size, for use in civil aircraft, subheading 4008.29.10) 01/01/1988 31/12/2005 -4009 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hoses, of vulcanised rubber other than hard rubber, with or without their fittings, e.g. joints, elbows, flanges 01/01/1988 31/12/2500 -400910 01/01/1988 31/12/2001 LIBEN Tubes, pipes and hoses, of vulcanised rubber other than hard rubber, not reinforced or otherwise combined with other materials, without fittings 01/01/1988 31/12/2001 -40091000 01/01/1988 31/12/2001 LIBEN Tubes, pipes and hoses, of vulcanised rubber other than hard rubber, not reinforced or otherwise combined with other materials, without fittings 01/01/1988 31/12/2001 -400911 01/01/2002 31/12/2500 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), not reinforced or otherwise combined with other materials, without fittings 01/01/2002 31/12/2500 -40091100 01/01/2002 31/12/2500 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), not reinforced or otherwise combined with other materials, without fittings 01/01/2002 31/12/2500 -400912 01/01/2002 31/12/2500 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), not reinforced or otherwise combined with other materials, with fittings 01/01/2002 31/12/2500 -40091200 01/01/2006 31/12/2500 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), not reinforced or otherwise combined with other materials, with fittings 01/01/2006 31/12/2500 -40091210 01/01/2002 31/12/2005 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), not reinforced or otherwise combined with other materials, with fittings, suitable for conducting gases or liquids, for use in civil aircraft 01/01/2002 31/12/2005 -40091290 01/01/2002 31/12/2005 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), with fittings, not reinforced or otherwise combined with other materials (excl. suitable for conducting gases or liquids, for use in civil aircraft of subheading 4009.12.10) 01/01/2002 31/12/2005 -400920 01/01/1988 31/12/2001 LIBEN Tubes, pipes and hoses, of vulcanised rubber other than hard rubber, reinforced or otherwise combined only with metal, without fittings 01/01/1988 31/12/2001 -40092000 01/01/1988 31/12/2001 LIBEN Tubes, pipes and hoses, of vulcanised rubber other than hard rubber, reinforced or otherwise combined only with metal, without fittings 01/01/1988 31/12/2001 -400921 01/01/2002 31/12/2500 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined only with metal, without fittings 01/01/2002 31/12/2500 -40092100 01/01/2002 31/12/2500 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined only with metal, without fittings 01/01/2002 31/12/2500 -400922 01/01/2002 31/12/2500 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined only with metal, with fittings 01/01/2002 31/12/2500 -40092200 01/01/2006 31/12/2500 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined only with metal, with fittings 01/01/2006 31/12/2500 -40092210 01/01/2002 31/12/2005 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined only with metal, with fittings, suitable for conducting gases or liquids, for use in civil aircraft 01/01/2002 31/12/2005 -40092290 01/01/2002 31/12/2005 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined only with metal, with fittings (excl. suitable for conducting gases or liquids, for use in civil aircraft of subheading 4009.22.10) 01/01/2002 31/12/2005 -400930 01/01/1988 31/12/2001 LIBEN Tubes, pipes and hoses, of vulcanised rubber other than hard rubber, reinforced or otherwise combined only with textile materials, without fittings 01/01/1988 31/12/2001 -40093000 01/01/1988 31/12/2001 LIBEN Tubes, pipes and hoses, of vulcanised rubber other than hard rubber, reinforced or otherwise combined only with textile materials, without fittings 01/01/1988 31/12/2001 -400931 01/01/2002 31/12/2500 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined only with textile materials, without fittings 01/01/2002 31/12/2500 -40093100 01/01/2002 31/12/2500 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined only with textile materials, without fittings 01/01/2002 31/12/2500 -400932 01/01/2002 31/12/2500 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined only with textile materials, with fittings 01/01/2002 31/12/2500 -40093200 01/01/2006 31/12/2500 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined only with textile materials, with fittings 01/01/2006 31/12/2500 -40093210 01/01/2002 31/12/2005 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined only with textile materials, with fittings, suitable for conducting gases or liquids, for use in civil aircraft 01/01/2002 31/12/2005 -40093290 01/01/2002 31/12/2005 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined only with textile materials, with fittings (excl. suitable for conducting gases or liquids, for use in civil aircraft of subheading 4009.32.10) 01/01/2002 31/12/2005 -400940 01/01/1988 31/12/2001 LIBEN Tubes, pipes and hoses, of vulcanised rubber other than hard rubber, reinforced or otherwise combined only with other materials, without fittings (excl. those reinforced or otherwise combined only with metal or with textile materials) 01/01/1988 31/12/2001 -40094000 01/01/1988 31/12/2001 LIBEN Tubes, pipes and hoses, of vulcanised rubber other than hard rubber, reinforced or otherwise combined only with other materials, without fittings (excl. those reinforced or otherwise combined only with metal or with textile materials) 01/01/1988 31/12/2001 -400941 01/01/2002 31/12/2500 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined with materials other than metal or textile materials, without fittings 01/01/2002 31/12/2500 -40094100 01/01/2002 31/12/2500 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined with materials other than metal or textile materials, without fittings 01/01/2002 31/12/2500 -400942 01/01/2002 31/12/2500 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined with materials other than metal or textile materials, with fittings 01/01/2002 31/12/2500 -40094200 01/01/2006 31/12/2500 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined with materials other than metal or textile materials, with fittings 01/01/2006 31/12/2500 -40094210 01/01/2002 31/12/2005 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined only with other materials other than metal or textile materials, with fittings, suitable for conducting gases or liquids, for use in civil aircraft 01/01/2002 31/12/2005 -40094290 01/01/2002 31/12/2005 LIBEN Tubes, pipes and hoses, of vulcanised rubber (excl. hard rubber), reinforced or otherwise combined with materials other than metal or textile materials, with fittings (excl. suitable for conducting gases or liquids, for use in civil aircraft of subheading 4009.42.10) 01/01/2002 31/12/2005 -400950 01/01/1988 31/12/2001 LIBEN Tubes, pipes and hoses, of vulcanised rubber other than hard rubber, with fittings 01/01/1988 31/12/2001 -40095010 01/01/1988 31/12/2001 LIBEN Tubes, pipes and hoses, of vulcanised rubber other than hard rubber, with fittings, suitable for conducting gases or liquids, for use in civil aircraft 01/01/1988 31/12/2001 -40095030 01/01/1993 31/12/2001 LIBEN Tubes, pipes and hoses, of vulcanised rubber other than hard rubber, with fittings, not reinforced or otherwise combined with other materials (excl. suitable for conducting gases or liquids, for use in civil aircraft of subheading 4009.50.10) 01/01/1993 31/12/2001 -40095050 01/01/1993 31/12/2001 LIBEN Tubes, pipes and hoses, of vulcanised rubber other than hard rubber, with fittings, reinforced or otherwise combined only with metal (excl. suitable for conducting gases or liquids, for use in civil aircraft of subheading 4009.50.10) 01/01/1993 31/12/2001 -40095070 01/01/1993 31/12/2001 LIBEN Tubes, pipes and hoses, of vulcanised rubber other than hard rubber, with fittings, reinforced or otherwise combined only with textile materials (excl. suitable for conducting gases or liquids, for use in civil aircraft of subheading 4009.50.10) 01/01/1993 31/12/2001 -40095090 01/01/1993 31/12/2001 LIBEN Tubes, pipes and hoses, of vulcanised rubber other than hard rubber, with fittings, reinforced or otherwise combined with materials other than metal or textile materials (excl. suitable for conducting gases or liquids, for use in civil aircraft of subheading 4009.50.10) 01/01/1993 31/12/2001 -40095091 01/01/1988 31/12/1992 LIBEN Tubes, pipes and hoses, of vulcanized rubber other than hard rubber, with fittings, with metal reinforcement (excl. those suitable for conducting gases or liquids, for use in civil aircraft, subheading 4009.50-10) 01/01/1988 31/12/1992 -40095099 01/01/1988 31/12/1992 LIBEN Tubes, pipes and hoses, of vulcanized rubber other than hard rubber, with fittings (excl. those with metal reinforcement and those suitable for conducting gases or liquids, for use in civil aircraft, subheading 4009.50-10) 01/01/1988 31/12/1992 -4010 01/01/1988 31/12/2500 LIBEN Conveyor or transmission belts or belting, of vulcanised rubber 01/01/1988 31/12/2500 -401010 01/01/1988 31/12/1995 LIBEN Vee belts of vulcanized rubber 01/01/1988 31/12/1995 -40101000 01/01/1988 31/12/1995 LIBEN Vee belts of vulcanized rubber 01/01/1988 31/12/1995 -401011 01/01/1996 31/12/2500 LIBEN Conveyor belts or belting, of vulcanised rubber, reinforced only with metal 01/01/1996 31/12/2500 -40101100 01/01/1996 31/12/2500 LIBEN Conveyor belts or belting, of vulcanised rubber, reinforced only with metal 01/01/1996 31/12/2500 -401012 01/01/1996 31/12/2500 LIBEN Conveyor belts or belting, of vulcanised rubber, reinforced only with textile materials 01/01/1996 31/12/2500 -40101200 01/01/1996 31/12/2500 LIBEN Conveyor belts or belting, of vulcanised rubber, reinforced only with textile materials 01/01/1996 31/12/2500 -401013 01/01/1996 31/12/2006 LIBEN Conveyor belts or belting, of vulcanised rubber, reinforced only with plastics (other than textile materials) 01/01/1996 31/12/2006 -40101300 01/01/1996 31/12/2006 LIBEN Conveyor belts or belting, of vulcanised rubber, reinforced only with plastics (other than textile materials) 01/01/1996 31/12/2006 -401019 01/01/1996 31/12/2500 LIBEN Conveyor belts or belting, of vulcanised rubber (excl. reinforced only with metal or only with textile materials) 01/01/1996 31/12/2500 -40101900 01/01/1996 31/12/2006 LIBEN Conveyor belts or belting, of vulcanised rubber (excl. reinforced only with metal, only with textile materials or only with plastics) 01/01/1996 31/12/2006 -40101900 01/01/2007 31/12/2500 LIBEN Conveyor belts or belting, of vulcanised rubber (excl. reinforced only with metal or only with textile materials) 01/01/2007 31/12/2500 -401021 01/01/1996 31/12/2001 LIBEN Endless transmission belts of trapezoidal cross-section "V-belts", whether or not grooved, of vulcanised rubber, of a circumference > 60 cm but <= 180 cm 01/01/1996 31/12/2001 -40102100 01/01/1996 31/12/2001 LIBEN Endless transmission belts of trapezoidal cross-section "V-belts", whether or not grooved, of vulcanised rubber, of a circumference > 60 cm but <= 180 cm 01/01/1996 31/12/2001 -401022 01/01/1996 31/12/2001 LIBEN Endless transmission belts of trapezoidal cross-section "V-belts", whether or not grooved, of vulcanised rubber, of a circumference > 180 cm but <= 240 cm 01/01/1996 31/12/2001 -40102200 01/01/1996 31/12/2001 LIBEN Endless transmission belts of trapezoidal cross-section "V-belts", whether or not grooved, of vulcanised rubber, of a circumference > 180 cm but <= 240 cm 01/01/1996 31/12/2001 -401023 01/01/1996 31/12/2001 LIBEN Endless synchronous belts, of vulcanised rubber, of a circumference > 60 cm but <= 150 cm 01/01/1996 31/12/2001 -40102300 01/01/1996 31/12/2001 LIBEN Endless synchronous belts, of vulcanised rubber, of a circumference > 60 cm but <= 150 cm 01/01/1996 31/12/2001 -401024 01/01/1996 31/12/2001 LIBEN Endless synchronous belts, of vulcanised rubber, of a circumference > 150 cm but <= 198 cm 01/01/1996 31/12/2001 -40102400 01/01/1996 31/12/2001 LIBEN Endless synchronous belts, of vulcanised rubber, of a circumference > 150 cm but <= 198 cm 01/01/1996 31/12/2001 -401029 01/01/1996 31/12/2001 LIBEN Transmission belts or belting, of vulcanised rubber (excl. endless transmission belts of trapezoidal cross-section "V-belts", whether or not cogged, of a circumference > 60 cm but <= 240 cm and endless synchronous belts of a circumference > 60 cm but <= 198 cm) 01/01/1996 31/12/2001 -40102900 01/01/1996 31/12/2001 LIBEN Transmission belts or belting, of vulcanised rubber (excl. endless transmission belts of trapezoidal cross-section "V-belts", whether or not cogged, of a circumference > 60 cm but <= 240 cm and endless synchronous belts of a circumference > 60 cm but <= 198 cm) 01/01/1996 31/12/2001 -401031 01/01/2002 31/12/2500 LIBEN Endless transmission belts of trapezoidal cross-section "V-belts", of vulcanised rubber, V-ribbed, of an outside circumference > 60 cm but <= 180 cm 01/01/2002 31/12/2500 -40103100 01/01/2002 31/12/2500 LIBEN Endless transmission belts of trapezoidal cross-section "V-belts", of vulcanised rubber, V-ribbed, of an outside circumference > 60 cm but <= 180 cm 01/01/2002 31/12/2500 -401032 01/01/2002 31/12/2500 LIBEN Endless transmission belts of trapezoidal cross-section "V-belts", of vulcanised rubber, of an outside circumference > 60 cm but <= 180 cm (excl. V-ribbed) 01/01/2002 31/12/2500 -40103200 01/01/2002 31/12/2500 LIBEN Endless transmission belts of trapezoidal cross-section "V-belts", of vulcanised rubber, of an outside circumference > 60 cm but <= 180 cm (excl. V-ribbed) 01/01/2002 31/12/2500 -401033 01/01/2002 31/12/2500 LIBEN Endless transmission belts of trapezoidal cross-section "V-belts", of vulcanised rubber, V-ribbed, of an outside circumference > 180 cm but <= 240 cm 01/01/2002 31/12/2500 -40103300 01/01/2002 31/12/2500 LIBEN Endless transmission belts of trapezoidal cross-section "V-belts", of vulcanised rubber, V-ribbed, of an outside circumference > 180 cm but <= 240 cm 01/01/2002 31/12/2500 -401034 01/01/2002 31/12/2500 LIBEN Endless transmission belts of trapezoidal cross-section "V-belts", of vulcanised rubber, of an outside circumference > 180 cm but <= 240 cm (excl. V-ribbed) 01/01/2002 31/12/2500 -40103400 01/01/2002 31/12/2500 LIBEN Endless transmission belts of trapezoidal cross-section "V-belts", of vulcanised rubber, of an outside circumference > 180 cm but <= 240 cm (excl. V-ribbed) 01/01/2002 31/12/2500 -401035 01/01/2002 31/12/2500 LIBEN Endless synchronous belts, of vulcanised rubber, of an outside circumference > 60 cm but <= 150 cm 01/01/2002 31/12/2500 -40103500 01/01/2002 31/12/2500 LIBEN Endless synchronous belts, of vulcanised rubber, of an outside circumference > 60 cm but <= 150 cm 01/01/2002 31/12/2500 -401036 01/01/2002 31/12/2500 LIBEN Endless synchronous belts, of vulcanised rubber, of an outside circumference > 150 cm but <= 198 cm 01/01/2002 31/12/2500 -40103600 01/01/2002 31/12/2500 LIBEN Endless synchronous belts, of vulcanised rubber, of an outside circumference > 150 cm but <= 198 cm 01/01/2002 31/12/2500 -401039 01/01/2002 31/12/2500 LIBEN Transmission belts or belting, of vulcanised rubber (excl. endless transmission belts of trapezoidal cross-section "V-belts", V-ribbed, of an outside circumference > 60 cm but <= 240 cm and endless synchronous belts of an outside circumference > 60 cm but <= 198 cm) 01/01/2002 31/12/2500 -40103900 01/01/2002 31/12/2500 LIBEN Transmission belts or belting, of vulcanised rubber (excl. endless transmission belts of trapezoidal cross-section "V-belts", V-ribbed, of an outside circumference > 60 cm but <= 240 cm and endless synchronous belts of an outside circumference > 60 cm but <= 198 cm) 01/01/2002 31/12/2500 -401091 01/01/1988 31/12/1995 LIBEN Conveyor or transmission belts, of vulcanized rubber, with a width of > 20 cm 01/01/1988 31/12/1995 -40109100 01/01/1988 31/12/1992 LIBEN Conveyor or transmission belts, of vulcanized rubber, with a width of > 20 cm 01/01/1988 31/12/1992 -40109110 01/01/1993 31/12/1995 LIBEN Conveyor or transmission belts or belting, of vulcanized rubber, of a width of > 20 cm, reinforced only with metal 01/01/1993 31/12/1995 -40109130 01/01/1993 31/12/1995 LIBEN Conveyor or transmission belts or belting, of vulcanized rubber, of a width of > 20 cm, reinforced only with textile materials 01/01/1993 31/12/1995 -40109160 01/01/1993 31/12/1995 LIBEN Conveyor or transmission belts or belting, of vulcanized rubber, of a width of > 20 cm, reinforced with plastics 01/01/1993 31/12/1995 -40109190 01/01/1993 31/12/1995 LIBEN Conveyor or transmission belts or belting, of vulcanized rubber, of a width of > 20 cm (excl. reinforced only with metal, only with textile materials or only with plastics) 01/01/1993 31/12/1995 -401099 01/01/1988 31/12/1995 LIBEN Conveyor or transmission belts, of vulcanized rubber, with a width of <= 20 cm (excl. vee belts) 01/01/1988 31/12/1995 -40109900 01/01/1988 31/12/1992 LIBEN Conveyor or transmission belts, of vulcanized rubber, with a width of =< 20 cm (excl. vee belts) 01/01/1988 31/12/1992 -40109910 01/01/1993 31/12/1995 LIBEN Synchronous transmission belts or belting, of vulcanized rubber, with a width of <= 20 cm 01/01/1993 31/12/1995 -40109990 01/01/1993 31/12/1995 LIBEN Conveyor or transmission belts or belting, of vulcanized rubber, with a width of <= 20 cm (excl. synchronous transmission belts or belting) 01/01/1993 31/12/1995 -4011 01/01/1988 31/12/2500 LIBEN New pneumatic tyres, of rubber 01/01/1988 31/12/2500 -401110 01/01/1988 31/12/2500 LIBEN New pneumatic tyres, of rubber, of a kind used for motor cars, incl. station wagons and racing cars 01/01/1988 31/12/2500 -40111000 01/01/1988 31/12/2500 LIBEN New pneumatic tyres, of rubber, of a kind used for motor cars, incl. station wagons and racing cars 01/01/1988 31/12/2500 -401120 01/01/1988 31/12/2500 LIBEN New pneumatic tyres, of rubber, of a kind used for buses and lorries (excl. tyres with lug, corner or similar treads) 01/01/1988 31/12/2500 -40112000 01/01/1988 31/12/1992 LIBEN New pneumatic tyres, of rubber, of a kind used for buses and lorries (excl. typres with lug, herringbone or similar treads) 01/01/1988 31/12/1992 -40112010 01/01/1993 31/12/2500 LIBEN Pneumatic tyres, new, of rubber, of a kind used for buses or lorries, with a load index of <= 121 01/01/1993 31/12/2500 -40112090 01/01/1993 31/12/2500 LIBEN Pneumatic tyres, new, of rubber, of a kind used for buses or lorries, with a load index of > 121 01/01/1993 31/12/2500 -401130 01/01/1988 31/12/2500 LIBEN New pneumatic tyres, of rubber, of a kind used for aircraft 01/01/1988 31/12/2500 -40113000 01/01/2006 31/12/2500 LIBEN New pneumatic tyres, of rubber, of a kind used for aircraft 01/01/2006 31/12/2500 -40113010 01/01/1988 31/12/2005 LIBEN New pneumatic tyres, of rubber, of a kind used for civil aircraft 01/01/1988 31/12/2005 -40113090 01/01/1988 31/12/2005 LIBEN New pneumatic tyres, of rubber, of a kind used for aircraft (excl. civil of subheading 4011.30.10) 01/01/1988 31/12/2005 -401140 01/01/1988 31/12/2500 LIBEN New pneumatic tyres, of rubber, of a kind used for motorcycles 01/01/1988 31/12/2500 -40114000 01/01/1988 31/12/1992 LIBEN New pneumatic tyres, of rubber, of a kind used for motorcycles and motor scooters 01/01/1988 31/12/1992 -40114000 01/01/2009 31/12/2500 LIBEN New pneumatic tyres, of rubber, of a kind used for motorcycles 01/01/2009 31/12/2500 -40114010 01/01/1993 31/12/1998 LIBEN Pneumatic tyres, new, of rubber, of a kind used for motorcycles, for rims with a diameter of <= 30,5 cm 01/01/1993 31/12/1998 -40114020 01/01/1999 31/12/2008 LIBEN Pneumatic tyres, new, of rubber, of a kind used for motorcycles, for rims with a diameter of <= 33 cm 01/01/1999 31/12/2008 -40114080 01/01/1999 31/12/2008 LIBEN Pneumatic tyres, new, of rubber, of a kind used for motorcycles, for rims with a diameter of > 33 cm 01/01/1999 31/12/2008 -40114091 01/01/1993 31/12/1998 LIBEN Pneumatic tyres, new, of rubber, of a kind used for motorcycles, for rims with a diameter of > 30,5 cm, with a weight of <= 1,4 kg 01/01/1993 31/12/1998 -40114099 01/01/1993 31/12/1998 LIBEN Pneumatic tyres, new, of rubber, of a kind used for motorcycles, for rims with a diameter of > 30,5 cm, with a weight of > 1,4 kg 01/01/1993 31/12/1998 -401150 01/01/1988 31/12/2500 LIBEN New pneumatic tyres, of rubber, of a kind used for bicycles 01/01/1988 31/12/2500 -40115000 01/01/2001 31/12/2500 LIBEN New pneumatic tyres, of rubber, of a kind used for bicycles 01/01/2001 31/12/2500 -40115010 01/01/1988 31/12/2000 LIBEN New tyre cases, of rubber, with sewn-in inner tubes, of a kind used for bicycles 01/01/1988 31/12/2000 -40115090 01/01/1988 31/12/2000 LIBEN New pneumatic tyres, of rubber, of a kind used for bicycles (excl. tyre cases with sewn-in inner tubes) 01/01/1988 31/12/2000 -401161 01/01/2002 31/12/2016 LIBEN Pneumatic tyres, new, of rubber, having a "herring-bone" or similar tread, of a kind used on agricultural or forestry vehicles and machines 01/01/2002 31/12/2016 -40116100 01/01/2002 31/12/2016 LIBEN Pneumatic tyres, new, of rubber, having a "herring-bone" or similar tread, of a kind used on agricultural or forestry vehicles and machines 01/01/2002 31/12/2016 -401162 01/01/2002 31/12/2016 LIBEN Pneumatic tyres, new, of rubber, having a "herring-bone" or similar tread, of a kind used on construction or industrial handling vehicles and machines and having a rim size <= 61 cm 01/01/2002 31/12/2016 -40116200 01/01/2002 31/12/2016 LIBEN Pneumatic tyres, new, of rubber, having a "herring-bone" or similar tread, of a kind used on construction or industrial handling vehicles and machines and having a rim size <= 61 cm 01/01/2002 31/12/2016 -401163 01/01/2002 31/12/2016 LIBEN Pneumatic tyres, new, of rubber, having a "herring-bone" or similar tread, of a kind used on construction or industrial handling vehicles and machines and having a rim size > 61 cm 01/01/2002 31/12/2016 -40116300 01/01/2002 31/12/2016 LIBEN Pneumatic tyres, new, of rubber, having a "herring-bone" or similar tread, of a kind used on construction or industrial handling vehicles and machines and having a rim size > 61 cm 01/01/2002 31/12/2016 -401169 01/01/2002 31/12/2016 LIBEN Pneumatic tyres, new, of rubber, having a "herring-bone" or similar tread (excl. of a kind used on agricultural or forestry and construction or industrial handling vehicles and machines) 01/01/2002 31/12/2016 -40116900 01/01/2002 31/12/2016 LIBEN Pneumatic tyres, new, of rubber, having a "herring-bone" or similar tread (excl. of a kind used on agricultural or forestry and construction or industrial handling vehicles and machines) 01/01/2002 31/12/2016 -401170 01/01/2017 31/12/2500 LIBEN New pneumatic tyres, of rubber, of a kind used on agricultural or forestry vehicles and machines 01/01/2017 31/12/2500 -40117000 01/01/2017 31/12/2500 LIBEN New pneumatic tyres, of rubber, of a kind used on agricultural or forestry vehicles and machines 01/01/2017 31/12/2500 -401180 01/01/2017 31/12/2500 LIBEN New pneumatic tyres, of rubber, of a kind used on construction, mining or industrial handling vehicles and machines 01/01/2017 31/12/2500 -40118000 01/01/2017 31/12/2500 LIBEN New pneumatic tyres, of rubber, of a kind used on construction, mining or industrial handling vehicles and machines 01/01/2017 31/12/2500 -401190 01/01/2017 31/12/2500 LIBEN New pneumatic tyres, of rubber (excl. of a kind used on agricultural, forestry, construction, mining or industrial handling vehicles and machines, for motor cars, station wagons, racing cars, buses, lorries, aircraft, motorcycles and bicycles) 01/01/2017 31/12/2500 -40119000 01/01/2017 31/12/2500 LIBEN New pneumatic tyres, of rubber (excl. of a kind used on agricultural, forestry, construction, mining or industrial handling vehicles and machines, for motor cars, station wagons, racing cars, buses, lorries, aircraft, motorcycles and bicycles) 01/01/2017 31/12/2500 -401191 01/01/1988 31/12/2001 LIBEN New pneumatic tyres, of rubber, with lug, herringbone or similar treads, of the type used for tractors, forestry vehicles, building machinery and construction vehicles 01/01/1988 31/12/2001 -40119100 01/01/1988 31/12/1992 LIBEN New pneumatic tyres, of rubber, with lug, herringbone or similar treads, of the type used for tractors, forestry vehicles, building machinery and construction vehicles 01/01/1988 31/12/1992 -40119110 01/01/1993 31/12/2001 LIBEN Pneumatic tyres, new, of rubber, having a "herring-bone" or similar tread, of a kind used on agricultural and forestry vehicles 01/01/1993 31/12/2001 -40119130 01/01/1993 31/12/2001 LIBEN Pneumatic tyres, new, of rubber, having a "herring-bone" or similar tread, of a kind used on civil engineering vehicles 01/01/1993 31/12/2001 -40119190 01/01/1993 31/12/2001 LIBEN Pneumatic tyres, new, of rubber, having a "herring-bone" or similar tread (excl. of a kind used on civil engineering or agricultural and forestry vehicles) 01/01/1993 31/12/2001 -401192 01/01/2002 31/12/2016 LIBEN Pneumatic tyres, of rubber, new, of a kind used on agricultural or forestry vehicles and machines (excl. having a "herring-bone" or similar tread) 01/01/2002 31/12/2016 -40119200 01/01/2002 31/12/2016 LIBEN Pneumatic tyres, of rubber, new, of a kind used on agricultural or forestry vehicles and machines (excl. having a "herring-bone" or similar tread) 01/01/2002 31/12/2016 -401193 01/01/2002 31/12/2016 LIBEN Pneumatic tyres, new, of rubber, of a kind used on construction or industrial handling vehicles and machines and having a rim size <= 61 cm (excl. having a "herring-bone" or similar tread) 01/01/2002 31/12/2016 -40119300 01/01/2002 31/12/2016 LIBEN Pneumatic tyres, new, of rubber, of a kind used on construction or industrial handling vehicles and machines and having a rim size <= 61 cm (excl. having a "herring-bone" or similar tread) 01/01/2002 31/12/2016 -401194 01/01/2002 31/12/2016 LIBEN Pneumatic tyres, new, of rubber, of a kind used on construction or industrial handling vehicles and machines and having a rim size > 61 cm (excl. having a "herring-bone" or similar tread) 01/01/2002 31/12/2016 -40119400 01/01/2002 31/12/2016 LIBEN Pneumatic tyres, new, of rubber, of a kind used on construction or industrial handling vehicles and machines and having a rim size > 61 cm (excl. having a "herring-bone" or similar tread) 01/01/2002 31/12/2016 -401199 01/01/1988 31/12/2001 LIBEN Pneumatic tyres, new, of rubber (excl. having a "herring-bone" or similar tread and pneumatic tyres of a kind used on motorcars, station wagons, racing cars, buses, lorries, aircraft, motorcycles and bicycles) 01/01/1988 31/12/2001 -401199 01/01/2002 31/12/2016 LIBEN Pneumatic tyres, new, of rubber (excl. having a "herring-bone" or similar tread and pneumatic tyres of a kind used on agricultural or forestry and construction or industrial handling vehicles and machines, on motor cars, station wagons, racing cars, buses, lorries, aircraft, motorcycles and bicycles) 01/01/2002 31/12/2016 -40119900 01/01/1988 31/12/1992 LIBEN New pneumatic tyres, of rubber (excl. tyres with lug, herringbone or similar treads and pneumatic tyres of the type used for motor cars, incl. estate and racing cars, buses, lorries, aircraft, motorcycles, motor scooters and pedal cycles) 01/01/1988 31/12/1992 -40119900 01/01/2002 31/12/2016 LIBEN Pneumatic tyres, new, of rubber (excl. having a "herring-bone" or similar tread and pneumatic tyres of a kind used on agricultural or forestry and construction or industrial handling vehicles and machines, on motor cars, station wagons, racing cars, buses, lorries, aircraft, motorcycles and bicycles) 01/01/2002 31/12/2016 -40119910 01/01/1993 31/12/2001 LIBEN Pneumatic tyres, of rubber, of a kind used on agricultural and forestry vehicles (excl. having a "herring-bone" or similar tread) 01/01/1993 31/12/2001 -40119930 01/01/1993 31/12/2001 LIBEN Pneumatic tyres, of rubber, of a kind used on civil engineering vehicles (excl. having a "herring-bone" or similar tread) 01/01/1993 31/12/2001 -40119990 01/01/1993 31/12/2001 LIBEN Pneumatic tyres, new, of rubber (excl. having a "herring-bone" or similar tread and pneumatic tyres of a kind used on motorcars, station wagons, racing cars, buses, lorries, motorcycles, aircraft, bicycles and civil engineering and agricultural and forestry vehicles) 01/01/1993 31/12/2001 -4011S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 4011 and SITC section 6 01/01/1997 31/12/2500 -4011S625 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 4011 and SITC group 625 01/01/1997 31/12/2500 -4012 01/01/1988 31/12/2500 LIBEN Retreaded or used pneumatic tyres of rubber; solid or cushion tyres, tyre treads and tyre flaps, of rubber 01/01/1988 31/12/2500 -401210 01/01/1988 31/12/2001 LIBEN Retreaded tyres of rubber 01/01/1988 31/12/2001 -40121010 01/01/1988 31/12/2001 LIBEN Retreaded tyres of rubber, for civil aircraft 01/01/1988 31/12/2001 -40121030 01/01/1993 31/12/2001 LIBEN Retreaded pneumatic tyres, of rubber, of a kind used on motor cars "incl. station wagons and racing cars" 01/01/1993 31/12/2001 -40121050 01/01/1993 31/12/2001 LIBEN Retreaded pneumatic tyres, of rubber, of a kind used on buses or lorries 01/01/1993 31/12/2001 -40121080 01/01/1993 31/12/2001 LIBEN Retreaded pneumatic tyres, of rubber (excl. for civil aircraft of subheading 4012.10.10 and pneumatic tyres of a kind used for motorcars, station wagons, racing cars, buses and lorries) 01/01/1993 31/12/2001 -40121090 01/01/1988 31/12/1992 LIBEN Re-treaded tyres of rubber (excl. those for civil aircraft) 01/01/1988 31/12/1992 -401211 01/01/2002 31/12/2500 LIBEN Retreaded pneumatic tyres, of rubber, of a kind used on motor cars "incl. station wagons and racing cars" 01/01/2002 31/12/2500 -40121100 01/01/2002 31/12/2500 LIBEN Retreaded pneumatic tyres, of rubber, of a kind used on motor cars "incl. station wagons and racing cars" 01/01/2002 31/12/2500 -401212 01/01/2002 31/12/2500 LIBEN Retreaded pneumatic tyres, of rubber, of a kind used on buses or lorries 01/01/2002 31/12/2500 -40121200 01/01/2002 31/12/2500 LIBEN Retreaded pneumatic tyres, of rubber, of a kind used on buses or lorries 01/01/2002 31/12/2500 -401213 01/01/2002 31/12/2500 LIBEN Retreaded pneumatic tyres, of rubber, of a kind used on aircraft 01/01/2002 31/12/2500 -40121300 01/01/2006 31/12/2500 LIBEN Retreaded pneumatic tyres, of rubber, of a kind used on aircraft 01/01/2006 31/12/2500 -40121310 01/01/2002 31/12/2005 LIBEN Retreaded tyres of rubber, for civil aircraft 01/01/2002 31/12/2005 -40121390 01/01/2002 31/12/2005 LIBEN Retreaded pneumatic tyres, of rubber (excl. for civil aircraft of subheading 4012.13.10 and pneumatic tyres of a kind used on motor cars, station wagons, racing cars, buses and lorries) 01/01/2002 31/12/2005 -401219 01/01/2002 31/12/2500 LIBEN Retreaded pneumatic tyres, of rubber (excl. of a kind used on motor cars, station wagons, racing cars, buses, lorries and aircraft) 01/01/2002 31/12/2500 -40121900 01/01/2002 31/12/2500 LIBEN Retreaded pneumatic tyres, of rubber (excl. of a kind used on motor cars, station wagons, racing cars, buses, lorries and aircraft) 01/01/2002 31/12/2500 -401220 01/01/1988 31/12/2500 LIBEN Used pneumatic tyres of rubber 01/01/1988 31/12/2500 -40122000 01/01/2006 31/12/2500 LIBEN Used pneumatic tyres of rubber 01/01/2006 31/12/2500 -40122010 01/01/1988 31/12/2005 LIBEN Used pneumatic tyres of rubber, for civil aircraft 01/01/1988 31/12/2005 -40122090 01/01/1988 31/12/2005 LIBEN Used pneumatic tyres of rubber (excl. those for civil aircraft of subheading 4012.20.10) 01/01/1988 31/12/2005 -401290 01/01/1988 31/12/2500 LIBEN Solid or cushion tyres, interchangeable tyre treads and tyre flaps, of rubber 01/01/1988 31/12/2500 -40129010 01/01/1988 31/12/1998 LIBEN Solid or cushion tyres and interchangeable tyre treads, of rubber 01/01/1988 31/12/1998 -40129020 01/01/1999 31/12/2500 LIBEN Solid or cushion tyres, of rubber 01/01/1999 31/12/2500 -40129030 01/01/1999 31/12/2500 LIBEN Tyre treads, of rubber 01/01/1999 31/12/2500 -40129090 01/01/1988 31/12/2500 LIBEN Tyre flaps, of rubber 01/01/1988 31/12/2500 -4012S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 4012 and SITC section 6 01/01/1997 31/12/2500 -4012S625 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 4012 and SITC group 625 01/01/1997 31/12/2500 -4013 01/01/1988 31/12/2500 LIBEN Inner tubes, of rubber 01/01/1988 31/12/2500 -401310 01/01/1988 31/12/2500 LIBEN Inner tubes, of rubber, of a kind used on motor cars, incl. station wagons and racing cars, buses and lorries 01/01/1988 31/12/2500 -40131000 01/01/2009 31/12/2500 LIBEN Inner tubes, of rubber, of a kind used on motor cars, incl. station wagons and racing cars, buses and lorries 01/01/2009 31/12/2500 -40131010 01/01/1988 31/12/2008 LIBEN Inner tubes, of rubber, of a kind used on motor cars, incl. station wagons and racing cars 01/01/1988 31/12/2008 -40131090 01/01/1988 31/12/2008 LIBEN Inner tubes, of rubber, of a kind used on buses or lorries 01/01/1988 31/12/2008 -401320 01/01/1988 31/12/2500 LIBEN Inner tubes, of rubber, of a kind used for bicycles 01/01/1988 31/12/2500 -40132000 01/01/1988 31/12/2500 LIBEN Inner tubes, of rubber, of a kind used for bicycles 01/01/1988 31/12/2500 -401390 01/01/1988 31/12/2500 LIBEN Inner tubes, of rubber (excl. those of a kind used on motor cars, incl. station wagons and racing cars, buses, lorries and bicycles) 01/01/1988 31/12/2500 -40139000 01/01/2004 31/12/2500 LIBEN Inner tubes, of rubber (excl. those of a kind used on motor cars, incl. station wagons and racing cars, buses, lorries and bicycles) 01/01/2004 31/12/2500 -40139010 01/01/1988 31/12/2003 LIBEN Inner tubes, of rubber, of a kind used on motorcycles 01/01/1988 31/12/2003 -40139090 01/01/1988 31/12/2003 LIBEN Inner tubes, of rubber (excl. those of a kind used on motor cars, incl. station wagons and racing cars, buses, lorries, bicycles and motorcycles) 01/01/1988 31/12/2003 -4013S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 4013 and SITC section 6 01/01/1997 31/12/2500 -4013S625 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 4013 and SITC group 625 01/01/1997 31/12/2500 -4013S9 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 4013 and SITC section 9 01/01/2001 31/12/2500 -4013S999 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 4013 and SITC group 999 01/01/2001 31/12/2500 -4014 01/01/1988 31/12/2500 LIBEN Hygienic or pharmaceutical articles, incl. teats, of vulcanised rubber (excl. hard rubber), with or without fittings of hard rubber, n.e.s. (excl. articles of apparel and clothing accessories, incl. gloves, for all purposes) 01/01/1988 31/12/2500 -401410 01/01/1988 31/12/2500 LIBEN Sheath contraceptives, of vulcanised rubber (excl. hard rubber) 01/01/1988 31/12/2500 -40141000 01/01/1988 31/12/2500 LIBEN Sheath contraceptives, of vulcanised rubber (excl. hard rubber) 01/01/1988 31/12/2500 -401490 01/01/1988 31/12/2500 LIBEN Hygienic or pharmaceutical articles, incl. teats, of vulcanised rubber (excl. hard rubber), with or without fittings of hard rubber, n.e.s. (excl. sheath contraceptives and articles of apparel and clothing accessories, incl. gloves, for all purposes) 01/01/1988 31/12/2500 -40149000 01/01/2009 31/12/2500 LIBEN Hygienic or pharmaceutical articles, incl. teats, of vulcanised rubber (excl. hard rubber), with or without fittings of hard rubber, n.e.s. (excl. sheath contraceptives and articles of apparel and clothing accessories, incl. gloves, for all purposes) 01/01/2009 31/12/2500 -40149010 01/01/1988 31/12/2008 LIBEN Teats, nipple shields, and similar articles for babies, of vulcanised rubber (excl. hard rubber), with or without fittings of hard rubber or plastic 01/01/1988 31/12/2008 -40149090 01/01/1988 31/12/2008 LIBEN Hygienic or pharmaceutical articles, of vulcanised rubber (excl. hard rubber), with or without fittings of hard rubber, n.e.s. (excl. teats, nipple shields and similar articles for babies, sheath contraceptives and articles of apparel and clothing accessories, incl. gloves, for all purposes) 01/01/1988 31/12/2008 -4015 01/01/1988 31/12/2500 LIBEN Articles of apparel and clothing accessories, incl. gloves, mittens and mitts, for all purposes, of vulcanised rubber (excl. hard rubber and footwear and headgear and parts thereof) 01/01/1988 31/12/2500 -401511 01/01/1988 31/12/2500 LIBEN Surgical gloves, of vulcanised rubber (excl. fingerstalls) 01/01/1988 31/12/2500 -40151100 01/01/1988 31/12/2001 LIBEN Surgical gloves, of vulcanised rubber other than hard rubber (excl. fingerstalls) 01/01/1988 31/12/2001 -40151100 01/01/2002 31/12/2500 LIBEN Surgical gloves, of vulcanised rubber (excl. fingerstalls) 01/01/2002 31/12/2500 -401519 01/01/1988 31/12/2500 LIBEN Gloves, mittens and mitts, of vulcanised rubber (excl. surgical gloves) 01/01/1988 31/12/2500 -40151900 01/01/2009 31/12/2500 LIBEN Gloves, mittens and mitts, of vulcanised rubber (excl. surgical gloves) 01/01/2009 31/12/2500 -40151910 01/01/1988 31/12/2008 LIBEN Household gloves, of vulcanised rubber 01/01/1988 31/12/2008 -40151990 01/01/1988 31/12/2008 LIBEN Gloves, mittens and mitts, of vulcanised rubber (excl. household and surgical gloves) 01/01/1988 31/12/2008 -401590 01/01/1988 31/12/2500 LIBEN Articles of apparel and clothing accessories, for all purposes, of vulcanised rubber (excl. hard rubber and footwear and headgear and parts thereof, and gloves, mittens and mitts) 01/01/1988 31/12/2500 -40159000 01/01/1988 31/12/2500 LIBEN Articles of apparel and clothing accessories, for all purposes, of vulcanised rubber (excl. hard rubber and footwear and headgear and parts thereof, and gloves, mittens and mitts) 01/01/1988 31/12/2500 -4016 01/01/1988 31/12/2500 LIBEN Articles of vulcanised rubber (excl. hard rubber), n.e.s. 01/01/1988 31/12/2500 -401610 01/01/1988 31/12/2500 LIBEN Articles of cellular rubber, n.e.s. 01/01/1988 31/12/2500 -40161000 01/01/2006 31/12/2500 LIBEN Articles of cellular rubber, n.e.s. 01/01/2006 31/12/2500 -40161010 01/01/1988 31/12/2005 LIBEN Articles of cellular rubber for technical uses, for use in civil aircraft, n.e.s. 01/01/1988 31/12/2005 -40161090 01/01/1988 31/12/2005 LIBEN Articles of cellular rubber, n.e.s. (excl. articles for technical uses, for use in civil aircraft, subheading 4016.10.10) 01/01/1988 31/12/2005 -401691 01/01/1988 31/12/2500 LIBEN Floor coverings and mats, of vulcanised rubber (excl. hard rubber), with chamfered sides, rounded corners or shaped edges or otherwise worked (excl. those simply cut to rectangular or square shape and goods of cellular rubber) 01/01/1988 31/12/2500 -40169100 01/01/1988 31/12/2500 LIBEN Floor coverings and mats, of vulcanised rubber (excl. hard rubber), with chamfered sides, rounded corners or shaped edges or otherwise worked (excl. those simply cut to rectangular or square shape and goods of cellular rubber) 01/01/1988 31/12/2500 -401692 01/01/1988 31/12/2500 LIBEN Erasers, of vulcanised rubber (excl. hard rubber), conditioned (excl. those simply cut to rectangular or square shape) 01/01/1988 31/12/2500 -40169200 01/01/1988 31/12/2500 LIBEN Erasers, of vulcanised rubber (excl. hard rubber), conditioned (excl. those simply cut to rectangular or square shape) 01/01/1988 31/12/2500 -401693 01/01/1988 31/12/2500 LIBEN Gaskets, washers and other seals, of vulcanised rubber (excl. hard rubber and those of cellular rubber) 01/01/1988 31/12/2500 -40169300 01/01/2006 31/12/2500 LIBEN Gaskets, washers and other seals, of vulcanised rubber (excl. hard rubber and those of cellular rubber) 01/01/2006 31/12/2500 -40169310 01/01/1988 31/12/2005 LIBEN Gaskets, washers and other seals, of vulcanised rubber (excl. hard rubber), for technical uses, for use in civil aircraft (excl. those of cellular rubber) 01/01/1988 31/12/2005 -40169390 01/01/1988 31/12/2005 LIBEN Gaskets, washers and other seals, of vulcanised rubber (excl. hard rubber and those of cellular rubber and those for technical uses, for use in civil aircraft, subheading 4016.93.10) 01/01/1988 31/12/2005 -401694 01/01/1988 31/12/2500 LIBEN Boat or dock fenders, whether or not inflatable, of vulcanised rubber (excl. hard rubber and those of cellular rubber) 01/01/1988 31/12/2500 -40169400 01/01/1988 31/12/2500 LIBEN Boat or dock fenders, whether or not inflatable, of vulcanised rubber (excl. hard rubber and those of cellular rubber) 01/01/1988 31/12/2500 -401695 01/01/1988 31/12/2500 LIBEN Inflatable mattresses and cushions and other inflatable articles, of vulcanised rubber (excl. hard rubber and fenders, boats, rafts and other floating devices, and hygienic or pharmaceutical articles) 01/01/1988 31/12/2500 -40169500 01/01/1988 31/12/2500 LIBEN Inflatable mattresses and cushions and other inflatable articles, of vulcanised rubber (excl. hard rubber and fenders, boats, rafts and other floating devices, and hygienic or pharmaceutical articles) 01/01/1988 31/12/2500 -401699 01/01/1988 31/12/2500 LIBEN Articles of vulcanised rubber (excl. hard rubber), n.e.s. 01/01/1988 31/12/2500 -40169910 01/01/1988 31/12/2005 LIBEN Articles of vulcanised rubber (excl. hard rubber), for technical uses, for use in civil aircraft, n.e.s. (excl. those of cellular rubber, and gaskets, washers and other seals) 01/01/1988 31/12/2005 -40169920 01/01/2006 31/12/2008 LIBEN Expander sleeves of vulcanised rubber (excl. hard rubber) 01/01/2006 31/12/2008 -40169930 01/01/1993 31/12/2005 LIBEN Expander sleeves of vulcanised rubber (excl. hard rubber) 01/01/1993 31/12/2005 -40169951 01/01/1993 31/12/1994 LIBEN Rubber-to-metal bonded parts for vehicles n.e.s. 01/01/1993 31/12/1994 -40169952 01/01/1995 31/12/2500 LIBEN Rubber-to-metal bonded parts of vulcanised rubber (excl. hard rubber), of a type intended exclusively or mainly for use in motor vehicles of heading 8701 to 8705 (excl. those of cellular rubber) 01/01/1995 31/12/2500 -40169957 01/01/2009 31/12/2500 LIBEN Articles of vulcanised rubber (excl. hard rubber), of a type intended exclusively or mainly for use in motor vehicles of heading 8701 to 8705, n.e.s. (excl. those of cellular rubber, and rubber-to-metal bonded parts) 01/01/2009 31/12/2500 -40169958 01/01/1995 31/12/2008 LIBEN Articles of vulcanised rubber (excl. hard rubber), of a type intended exclusively or mainly for use in motor vehicles of heading 8701 to 8705, n.e.s. (excl. those of cellular rubber, and rubber-to-metal bonded parts) 01/01/1995 31/12/2008 -40169959 01/01/1993 31/12/1994 LIBEN Articles of vulcanized other than hard rubber for vehicles n.e.s. (excl. rubber-to-metal bonded parts) 01/01/1993 31/12/1994 -40169981 01/01/1993 31/12/1994 LIBEN Rubber-to-metal bonded parts n.e.s. 01/01/1993 31/12/1994 -40169982 01/01/1995 31/12/2005 LIBEN Rubber-to-metal bonded parts of vulcanised rubber (excl. hard rubber and those of cellular rubber and those of a type intended exclusively or mainly for use in motor vehicles of heading 8701 to 8705) 01/01/1995 31/12/2005 -40169988 01/01/1995 31/12/2005 LIBEN Articles of vulcanised rubber, n.e.s. (excl. hard rubber and those of cellular rubber) 01/01/1995 31/12/2005 -40169989 01/01/1993 31/12/1994 LIBEN Articles of vulcanized rubber of other than hard rubber n.e.s. 01/01/1993 31/12/1994 -40169990 01/01/1988 31/12/1992 LIBEN Articles of vulcanized rubber other than hard rubber n.e.s. (excl. those of cellular rubber and those for technical uses, for use in civil aircraft, subheadings 4016.10-10, 4016.93-10 and 4016.99-10) 01/01/1988 31/12/1992 -40169991 01/01/2006 31/12/2500 LIBEN Rubber-to-metal bonded parts of vulcanised rubber (excl. hard rubber and those of cellular rubber and those of a type intended exclusively or mainly for use in motor vehicles of heading 8701 to 8705) 01/01/2006 31/12/2500 -40169997 01/01/2009 31/12/2500 LIBEN Articles of vulcanised rubber, n.e.s. (excl. hard rubber and those of cellular rubber) 01/01/2009 31/12/2500 -40169999 01/01/2006 31/12/2008 LIBEN Articles of vulcanised rubber, n.e.s. (excl. hard rubber and those of cellular rubber) 01/01/2006 31/12/2008 -4017 01/01/1988 31/12/2500 LIBEN Hard rubber, e.g. ebonite, in all forms, incl. waste and scrap; articles of hard rubber, n.e.s. 01/01/1988 31/12/2500 -401700 01/01/1988 31/12/2500 LIBEN Hard rubber, e.g. ebonite, in all forms, incl. waste and scrap; articles of hard rubber, n.e.s. 01/01/1988 31/12/2500 -40170000 01/01/2009 31/12/2500 LIBEN Hard rubber, e.g. ebonite, in all forms, incl. waste and scrap; articles of hard rubber, n.e.s. 01/01/2009 31/12/2500 -40170010 01/01/1999 31/12/2008 LIBEN Hard rubber, e.g. ebonite, in all forms, incl. waste and scrap 01/01/1999 31/12/2008 -40170011 01/01/1988 31/12/1998 LIBEN Hard rubber, e.g. ebonite, in bulk or blocks, plates, sheets or strip, in rods, profile shapes or tubes 01/01/1988 31/12/1998 -40170019 01/01/1988 31/12/1998 LIBEN Waste, powder and scrap, of hard rubber 01/01/1988 31/12/1998 -40170090 01/01/1999 31/12/2008 LIBEN Articles of hard rubber, n.e.s. 01/01/1999 31/12/2008 -40170091 01/01/1988 31/12/1998 LIBEN Piping and tubing of hard rubber, with fittings attached, suitable for conducting gases or liquids, for use in civil aircraft 01/01/1988 31/12/1998 -40170099 01/01/1988 31/12/1998 LIBEN Articles of hard rubber n.e.s. (excl. piping and tubing, with fittings attached, suitable for conducting gases or liquids, for use in civil aircraft of subheading 4017.00.91) 01/01/1988 31/12/1998 -40CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 40 01/01/2002 31/12/2500 -40CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 40 01/01/2002 31/12/2500 -40CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 40 01/01/2002 31/12/2500 -40MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -40MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -40MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -40SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 40 01/01/1988 31/12/2500 -40SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 40 and SITC section 0 01/01/1997 31/12/2001 -40SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 40 and SITC group 000 01/01/1997 31/12/2001 -40SSS2 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 40 and SITC section 2 01/01/1988 31/12/2500 -40SSS231 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 40 and SITC group 231 01/01/1997 31/12/2500 -40SSS232 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 40 and SITC group 232 01/01/1988 31/12/2500 -40SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 40 and SITC section 6 01/01/1997 31/12/2500 -40SSS621 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 40 and SITC group 621 01/01/1997 31/12/2500 -40SSS625 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 40 and SITC group 625 01/01/1997 31/12/2500 -40SSS629 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 40 and SITC group 629 01/01/1997 31/12/2500 -40SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 40 and SITC section 8 01/01/1997 31/12/2500 -40SSS848 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 40 and SITC group 848 01/01/1997 31/12/2500 -40SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 40 and SITC section 9 01/01/1988 31/12/1996 -40SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 40 and SITC section 9 01/01/1997 31/12/2500 -40SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 40 and SITC group 999 01/01/1988 31/12/1996 -40SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 40 and SITC group 999 01/01/1997 31/12/2500 -40VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 40 for the assembly of motor vehicles 01/01/1988 31/12/2500 -40VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 40 for the assembly of motor vehicles 01/01/1988 31/12/2500 -40VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 40 for the assembly of motor vehicles 01/01/1988 31/12/2500 -41 01/01/1988 31/12/2500 LIBEN RAW HIDES AND SKINS (OTHER THAN FURSKINS) AND LEATHER 01/01/1988 31/12/2500 -4101 01/01/1988 31/12/2500 LIBEN Raw hides and skins of bovine "incl. buffalo" or equine animals, fresh, or salted, dried, limed, pickled or otherwise preserved, whether or not dehaired or split (excl. tanned, parchment-dressed or further prepared) 01/01/1988 31/12/2500 -410110 01/01/1988 31/12/2001 LIBEN Whole raw bovine hides and skins, weighing <= 8 kg when dried, <= 10 kg when dry-salted and <= 14 kg when fresh, wet-salted or otherwise preserved, whether or not dehaired or split (excl. parchment-dressed) 01/01/1988 31/12/2001 -41011010 01/01/1988 31/12/2001 LIBEN Fresh or wet-salted whole raw hides and skins of bovine animals weighing <= 14 kg, whether or not dehaired or split 01/01/1988 31/12/2001 -41011090 01/01/1988 31/12/2001 LIBEN Whole raw bovine hides and skins, weighing <= 8 kg when dried, <= 10 kg when dry-salted and <= 14 kg when otherwise preserved, whether or not dehaired or split (excl. fresh, wet-salted or parchment-dressed) 01/01/1988 31/12/2001 -410120 01/01/2002 31/12/2500 LIBEN Whole raw hides and skins of bovine "incl. buffalo" or equine animals, whether or not dehaired, unsplit, of a weight per skin <= 8 kg when simply dried, <= 10 kg when dry-salted, or <= 16 kg when fresh, wet-salted or otherwise preserved (excl. tanned, parchment-dressed or further prepared) 01/01/2002 31/12/2500 -41012010 01/01/2002 31/12/2500 LIBEN Whole raw hides and skins of bovine "incl. buffalo" or equine animals, whether or not dehaired, unsplit, of a weight per skin <= 16 kg, fresh 01/01/2002 31/12/2500 -41012030 01/01/2002 31/12/2500 LIBEN Whole raw hides and skins of bovine "incl. buffalo" or equine animals, whether or not dehaired, unsplit, of a weight per skin <= 16 kg, wet-salted 01/01/2002 31/12/2500 -41012050 01/01/2002 31/12/2500 LIBEN Whole raw hides and skins of bovine "incl. buffalo" or equine animals, whether or not dehaired, unsplit, of a weight per skin <= 8 kg when simply dried or <= 10 kg when dry-salted 01/01/2002 31/12/2500 -41012080 01/01/2012 31/12/2500 LIBEN Whole raw hides and skins of bovine "incl. buffalo" or equine animals, whether or not dehaired, unsplit, of a weight per skin <= 16 kg, limed, pickled or otherwise preserved (excl. fresh or wet-salted, simply dried or dry-salted, tanned, parchment-dressed or further prepared) 01/01/2012 31/12/2500 -41012090 01/01/2002 31/12/2011 LIBEN Whole raw hides and skins of bovine "incl. buffalo" or equine animals, whether or not dehaired or split, of a weight per skin <= 16 kg, limed, pickled or otherwise preserved (excl. fresh or wet-salted, simply dried or dry-salted, tanned, parchment-dressed or further prepared) 01/01/2002 31/12/2011 -410121 01/01/1988 31/12/2001 LIBEN Whole raw bovine hides and skins, weighing > 14 kg, fresh or wet-salted, whether or not dehaired or split 01/01/1988 31/12/2001 -41012100 01/01/1988 31/12/2001 LIBEN Whole raw bovine hides and skins, weighing > 14 kg, fresh or wet-salted, whether or not dehaired or split 01/01/1988 31/12/2001 -410122 01/01/1988 31/12/2001 LIBEN Raw butts and bends of bovine animals, fresh or wet-salted, whether or not dehaired or split 01/01/1988 31/12/2001 -41012200 01/01/1988 31/12/2001 LIBEN Raw butts and bends of bovine animals, fresh or wet-salted, whether or not dehaired or split 01/01/1988 31/12/2001 -410129 01/01/1988 31/12/2001 LIBEN Raw hides and skins of bovine animals, fresh or wet-salted, whether or not dehaired or split (excl. whole hides and skins, butts and bends) 01/01/1988 31/12/2001 -41012900 01/01/1988 31/12/2001 LIBEN Raw hides and skins of bovine animals, fresh or wet-salted, whether or not dehaired or split (excl. whole hides and skins, butts and bends) 01/01/1988 31/12/2001 -410130 01/01/1988 31/12/2001 LIBEN Raw hides and skins of bovine animals, dry-salted, limed, pickled or otherwise preserved, whether or not dehaired or split (excl. fresh or wet-salted, parchment-dressed, whole hides and skins weighing <= 8 kg when dried, <= 10 kg when dry-salted and <= 14 kg when otherwise preserved) 01/01/1988 31/12/2001 -41013010 01/01/1988 31/12/2001 LIBEN Dried or dry-salted raw hides and skins of bovine animals, whether or not dehaired or split (excl. whole hides and skins weighing <= 8 kg when dried or <= 10 kg when dry-salted) 01/01/1988 31/12/2001 -41013090 01/01/1988 31/12/2001 LIBEN Raw hides and skins of bovine animals, limed, pickled or otherwise preserved, whether or not dehaired or split (excl. fresh or wet-salted, dried or dry-salted, parchment-dressed and whole shides and skins weighing <= 14 kg) 01/01/1988 31/12/2001 -410140 01/01/1988 31/12/2001 LIBEN Raw hides and skins of equine animals, fresh or salted, dried, limed, pickled or otherwise prepared, whether or not dehaired or split (excl. parchment-dressed) 01/01/1988 31/12/2001 -41014000 01/01/1988 31/12/2001 LIBEN Raw hides and skins of equine animals, fresh or salted, dried, limed, pickled or otherwise prepared, whether or not dehaired or split (excl. parchment-dressed) 01/01/1988 31/12/2001 -410150 01/01/2002 31/12/2500 LIBEN Whole raw hides and skins of bovine "incl. buffalo" or equine animals, whether or not dehaired or split, of a weight per skin > 16 kg, fresh, or salted, dried, limed, pickled or otherwise preserved (excl. tanned, parchment-dressed or further prepared) 01/01/2002 31/12/2500 -41015010 01/01/2002 31/12/2500 LIBEN Whole raw hides and skins of bovine "incl. buffalo" or equine animals, whether or not dehaired or split, of a weight per skin > 16 kg, fresh 01/01/2002 31/12/2500 -41015030 01/01/2002 31/12/2500 LIBEN Whole raw hides and skins of bovine "incl. buffalo" or equine animals, whether or not dehaired or split, of a weight per skin > 16 kg, wet-salted 01/01/2002 31/12/2500 -41015050 01/01/2002 31/12/2500 LIBEN Whole raw hides and skins of bovine "incl. buffalo" or equine animals, whether or not dehaired or split, of a weight per skin > 16 kg, dried or dry-salted 01/01/2002 31/12/2500 -41015090 01/01/2002 31/12/2500 LIBEN Whole raw hides and skins of bovine "incl. buffalo" or equine animals, whether or not dehaired or split, of a weight per skin > 16 kg, limed, pickled or otherwise preserved (excl. fresh or wet-salted, simply dried or dry-salted, tanned, parchment-dressed or further prepared) 01/01/2002 31/12/2500 -410190 01/01/2002 31/12/2500 LIBEN Butts, bends, bellies and split raw hides and skins of bovine "incl. buffalo" or equine animals, whether or not dehaired, fresh, or salted, dried, limed, pickled or otherwise preserved, and whole raw hides and skins of a weight per skin > 8 kg but < 16 kg when simply dried and > 10 kg but < 16 kg when dry-salted (excl. tanned, parchment-dressed or further prepared) 01/01/2002 31/12/2500 -41019000 01/01/2002 31/12/2011 LIBEN Butts, bends, bellies and split raw hides and skins of bovine "incl. buffalo" or equine animals, whether or not dehaired, fresh, or salted, dried, limed, pickled or otherwise preserved, and whole raw hides and skins of a weight per skin > 8 kg but < 16 kg when simply dried and > 10 kg but < 16 kg when dry-salted (excl. tanned, parchment-dressed or further prepared) 01/01/2002 31/12/2011 -41019000 01/01/2012 31/12/2500 LIBEN Butts, bends, bellies and split raw hides and skins of bovine "incl. buffalo" or equine animals, whether or not dehaired, fresh, or salted, dried, limed, pickled or otherwise preserved, and whole raw hides and skins of a weight per skin > 8 kg but < 16 kg when simply dried and > 10 kg but < 16 kg when dry-salted (excl. tanned, parchment-dressed or further prepared) 01/01/2012 31/12/2500 -4102 01/01/1988 31/12/2500 LIBEN Raw skins of sheep or lambs, fresh, or salted, dried, limed, pickled or otherwise preserved, whether or not dehaired or split (excl. those with wool on, fleeces of Astrakhan, Caracul, Persian, Broadtail or similar lambs, or of Indian, Chinese, Mongolian or Tibetan lambs and tanned, parchment-dressed or further prepared) 01/01/1988 31/12/2500 -410210 01/01/1988 31/12/2500 LIBEN Raw skins of sheep or lambs, with wool on, fresh or salted, dried, limed, pickled or otherwise preserved (excl. those of Astrakhan, Caracul, Persian, Broadtail or similar lambs, or of Indian, Chinese, Mongolian or Tibetan lambs and tanned, parchment-dressed or further prepared) 01/01/1988 31/12/2500 -41021010 01/01/1988 31/12/2500 LIBEN Raw skins of lambs, with wool on, fresh or salted, dried, limed, pickled or otherwise preserved (excl. those of Astrakhan, Caracul, Persian, Broadtail or similar lambs, or of Indian, Chinese, Mongolian or Tibetan lambs and tanned, parchment-dressed or further prepared) 01/01/1988 31/12/2500 -41021090 01/01/1988 31/12/2500 LIBEN Raw skins of sheep, with wool on, fresh or salted, dried, limed, pickled or otherwise preserved (excl. those of lambs and tanned, parchment-dressed or further prepared) 01/01/1988 31/12/2500 -410221 01/01/1988 31/12/2500 LIBEN Raw skins of sheep or lambs, without wool on, pickled, whether or not split 01/01/1988 31/12/2500 -41022100 01/01/1988 31/12/2500 LIBEN Raw skins of sheep or lambs, without wool on, pickled, whether or not split 01/01/1988 31/12/2500 -410229 01/01/1988 31/12/2500 LIBEN Raw skins of sheep or lambs, without wool on, fresh or salted, dried, limed or otherwise preserved, whether or not split (excl. pickled, tanned, parchment-dressed or further prepared) 01/01/1988 31/12/2500 -41022900 01/01/1988 31/12/2500 LIBEN Raw skins of sheep or lambs, without wool on, fresh or salted, dried, limed or otherwise preserved, whether or not split (excl. pickled, tanned, parchment-dressed or further prepared) 01/01/1988 31/12/2500 -4103 01/01/1988 31/12/2500 LIBEN Other raw hides and skins, fresh, or salted, dried, limed, pickled or otherwise preserved, whether or not dehaired or split (excl. those of bovine animals, equine animals, sheep and lambs, those with wool on and those of goats or kids from Yemen, Mongolia or Tibet and tanned, parchment-dressed or further prepared) 01/01/1988 31/12/2500 -410310 01/01/1988 31/12/2006 LIBEN Raw hides and skins of goats or kids, fresh or salted, dried, limed, pickled or otherwise preserved, whether or not dehaired or split (excl. parchment-dressed and hides and skins of goats or kids from Yemen, Mongolia or Tibet) 01/01/1988 31/12/2006 -41031010 01/01/1988 31/12/2001 LIBEN Raw hides and skins of goats or kids, fresh, salted or dried, whether or not dehaired or split (excl. hides and skins of goats or kids from Yemen, Mongolia or Tibet with hair on) 01/01/1988 31/12/2001 -41031020 01/01/2002 31/12/2006 LIBEN Raw hides and skins of goats or kids, fresh, whether or not dehaired or split (excl. hides and skins of goats or kids from Yemen, Mongolia or Tibet with hair on) 01/01/2002 31/12/2006 -41031050 01/01/2002 31/12/2006 LIBEN Raw hides and skins of goats or kids, salted or dried, whether or not dehaired or split (excl. hides and skins of goats or kids from Yemen, Mongolia or Tibet with hair on) 01/01/2002 31/12/2006 -41031090 01/01/1988 31/12/2006 LIBEN Raw hides and skins of goats or kids, limed, pickled or otherwise preserved, whether or not dehaired or split (excl. fresh, salted, dried, parchment-dressed, and hides and skins of goats or kids from Yemen, Mongolia or Tibet with hair on) 01/01/1988 31/12/2006 -410320 01/01/1988 31/12/2500 LIBEN Raw hides and skins of reptiles, fresh or salted, dried, limed, pickled or otherwise preserved (excl. tanned, parchment-dressed or further prepared) 01/01/1988 31/12/2500 -41032000 01/01/1988 31/12/2500 LIBEN Raw hides and skins of reptiles, fresh or salted, dried, limed, pickled or otherwise preserved (excl. tanned, parchment-dressed or further prepared) 01/01/1988 31/12/2500 -410330 01/01/2002 31/12/2500 LIBEN Raw hides and skins of swine, fresh, or salted, dried, limed, pickled or otherwise preserved, whether or not dehaired or split (excl. tanned, parchment-dressed or further prepared) 01/01/2002 31/12/2500 -41033000 01/01/2002 31/12/2500 LIBEN Raw hides and skins of swine, fresh, or salted, dried, limed, pickled or otherwise preserved, whether or not dehaired or split (excl. tanned, parchment-dressed or further prepared) 01/01/2002 31/12/2500 -410390 01/01/1988 31/12/2500 LIBEN Raw hides and skins, fresh, or salted, dried, limed, pickled or otherwise preserved, whether or not dehaired, incl. birdskins without feathers or down (excl. tanned, parchment-dressed or further prepared, hides and skins of bovine "incl. buffalo" animals, equine animals, sheep, lambs, reptiles and swine) 01/01/1988 31/12/2500 -41039000 01/01/1988 31/12/2001 LIBEN Raw hides and skins, fresh or salted, dried, limed, pickled or otherwise preserved, whether or not dehaired, incl. birdskins without feathers or down (excl. parchment-dressed, hides and skins of bovine animals, equine animals, sheep, lambs, goats, kids and reptiles) 01/01/1988 31/12/2001 -41039000 01/01/2002 31/12/2006 LIBEN Raw hides and skins, fresh, or salted, dried, limed, pickled or otherwise preserved, whether or not dehaired, incl. birdskins without feathers or down (excl. parchment-dressed, hides and skins of bovine "incl. buffalo" animals, equine animals, sheep, lambs, goats, kids, reptiles and swine) 01/01/2002 31/12/2006 -41039000 01/01/2012 31/12/2500 LIBEN Raw hides and skins, fresh, or salted, dried, limed, pickled or otherwise preserved, whether or not dehaired, incl. birdskins without feathers or down (excl. tanned, parchment-dressed or further prepared, hides and skins of bovine "incl. buffalo" animals, equine animals, sheep, lambs, reptiles and swine) 01/01/2012 31/12/2500 -41039010 01/01/2007 31/12/2011 LIBEN Raw hides and skins of goats or kids, limed, pickled or otherwise preserved, whether or not dehaired or split (excl. tanned, parchment-dressed or further prepared, and hides and skins of goats or kids from Yemen, Mongolia or Tibet with hair on) 01/01/2007 31/12/2011 -41039090 01/01/2007 31/12/2011 LIBEN Raw hides and skins, fresh, or salted, dried, limed, pickled or otherwise preserved, whether or not dehaired, incl. birdskins without feathers or down (excl. tanned, parchment-dressed or further prepared, hides and skins of bovine "incl. buffalo" animals, equine animals, sheep, lambs, goats, kids, reptiles and swine) 01/01/2007 31/12/2011 -4104 01/01/1988 31/12/2500 LIBEN Tanned or crust hides and skins of bovine "incl. buffalo" or equine animals, without hair on, whether or not split (excl. further prepared) 01/01/1988 31/12/2500 -410410 01/01/1988 31/12/2001 LIBEN Leather of whole hides of bovine animals, with a surface area of <= 2,6 m², dehaired (excl. chamois leather, patent leather, patent laminated leather and metallized leather) 01/01/1988 31/12/2001 -41041010 01/01/1988 31/12/2001 LIBEN East India kip, dehaired, whole, whether or not without head and legs, weighing <= 4,5 kg, vegetable tanned only, whether or not further prepared but obviously unsuitable for immediate use for the manufacture of leather articles 01/01/1988 31/12/2001 -41041030 01/01/1988 31/12/2001 LIBEN Leather of the whole hides of bovine animals, with a surface area of <= 2,6 m², dehaired, chrome-tanned only, in the wet-blue state 01/01/1988 31/12/2001 -41041091 01/01/1988 31/12/2001 LIBEN Leather of the whole hides of bovine animals, with a surface area of <= 2,6 m², dehaired, tanned only (excl. chrome-tanned only, in the wet-blue state, and East India kip of subheading 4104.10.10) 01/01/1988 31/12/2001 -41041095 01/01/1988 31/12/2001 LIBEN Boxcalf of whole calfskins, with a surface area of <= 2,6 m² 01/01/1988 31/12/2001 -41041099 01/01/1988 31/12/2001 LIBEN Leather of the whole hides of bovine animals, with a surface area of <= 2,6 m², dehaired, tanned and further prepared (excl. boxcalf, chamois leather, patent leather, patent laminated leather and metallized leather) 01/01/1988 31/12/2001 -410411 01/01/2002 31/12/2500 LIBEN Full grains, unsplit and grain splits, in the wet state "incl. wet-blue", of hides and skins of bovine "incl. buffalo" or equine animals, tanned, without hair on (excl. further prepared) 01/01/2002 31/12/2500 -41041110 01/01/2002 31/12/2500 LIBEN Full grains, unsplit and grain splits, in the wet state "incl. wet-blue", of the whole hides and skins of bovine "incl. buffalo" animals, with a surface area of <= 2,6 m², tanned, without hair on (excl. further prepared) 01/01/2002 31/12/2500 -41041151 01/01/2002 31/12/2500 LIBEN Full grains, unsplit and grain splits, in the wet state "incl. wet-blue", of the whole hides and skins of bovine "incl. buffalo" animals, with a surface area of > 2,6 m², tanned, without hair on (excl. further prepared) 01/01/2002 31/12/2500 -41041159 01/01/2002 31/12/2500 LIBEN Full grains, unsplit and grain splits, in the wet state "incl. wet-blue", of hides and skins of bovine "incl. buffalo" animals, tanned, without hair on (excl. further prepared and of the whole hides and skins) 01/01/2002 31/12/2500 -41041190 01/01/2002 31/12/2500 LIBEN Full grains, unsplit and grain splits, in the wet state "incl. wet-blue", of hides and skins of equine animals, tanned, without hair on (excl. further prepared) 01/01/2002 31/12/2500 -410419 01/01/2002 31/12/2500 LIBEN Hides and skins of bovine "incl. buffalo" or equine animals, in the wet state "incl. wet-blue", tanned, without hair on, whether or not split (excl. further prepared and full grains, unsplit and grain splits) 01/01/2002 31/12/2500 -41041910 01/01/2002 31/12/2500 LIBEN Whole hides and skins of bovine "incl. buffalo" animals, with a surface area of <= 2,6 m², in the wet state "incl. wet-blue", tanned, without hair on, whether or not split (excl. further prepared and full grains, unsplit and grain splits) 01/01/2002 31/12/2500 -41041951 01/01/2002 31/12/2500 LIBEN Whole hides and skins of bovine "incl. buffalo" animals, with a surface area of > 2,6 m², in the wet state "incl. wet-blue", tanned, without hair on, whether or not split (excl. further prepared and full grains, unsplit and grain splits) 01/01/2002 31/12/2500 -41041959 01/01/2002 31/12/2500 LIBEN Hides and skins of bovine "incl. buffalo" animals, in the wet state "incl. wet-blue", tanned, without hair on, whether or not split (excl. further prepared and whole hides and skins and full grains, unsplit and grain splits) 01/01/2002 31/12/2500 -41041990 01/01/2002 31/12/2500 LIBEN Hides and skins of equine animals, in the wet state "incl. wet-blue", tanned, without hair on, whether or not split (excl. further prepared and full grains, unsplit and grain splits) 01/01/2002 31/12/2500 -410421 01/01/1988 31/12/2001 LIBEN Bovine leather, dehaired, vegetable pre-tanned only, whether or not split (excl. leather of whole hides, with a surface area of <= 2,6 m²) 01/01/1988 31/12/2001 -41042100 01/01/1988 31/12/2001 LIBEN Bovine leather, dehaired, vegetable pre-tanned only, whether or not split (excl. leather of whole hides, with a surface area of <= 2,6 m²) 01/01/1988 31/12/2001 -410422 01/01/1988 31/12/2001 LIBEN Bovine leather, dehaired, mineral or synthetic pre-tanned only, whether or not split (excl. leather of whole hides, with a surface area of <= 2,6 m²) 01/01/1988 31/12/2001 -41042210 01/01/1988 31/12/2001 LIBEN Bovine leather, dehaired, chrome-tanned only, in the wet-blue state, whether or not split (excl. leather of whole hides, with a surface area of <= 2,6 m²) 01/01/1988 31/12/2001 -41042290 01/01/1988 31/12/2001 LIBEN Bovine leather, dehaired, mineral or synthetic pre-tanned only, whether or not split (excl. chrome-tanned only, in the wet-blue state, plus leather of whole hides, with a surface area of <= 2,6 m²) 01/01/1988 31/12/2001 -410429 01/01/1988 31/12/2001 LIBEN Bovine and equine leather, dehaired, tanned or pretanned only, whether or not split (excl. leather of whole hides of bovine animals, with a surface area of <= 2,6 m², and bovine leather, pre-tanned only) 01/01/1988 31/12/2001 -41042900 01/01/1988 31/12/2001 LIBEN Bovine and equine leather, dehaired, tanned or pretanned only, whether or not split (excl. leather of whole hides of bovine animals, with a surface area of <= 2,6 m², and bovine leather, pre-tanned only) 01/01/1988 31/12/2001 -410431 01/01/1988 31/12/2001 LIBEN Full grains and full grain splits of bovine and equine animals, dehaired, prepared after tanning 01/01/1988 31/12/2001 -41043111 01/01/1988 31/12/2001 LIBEN Bovine full grain sole leather, prepared after tanning 01/01/1988 31/12/2001 -41043119 01/01/1988 31/12/2001 LIBEN Full grains of bovine leather, dehaired, prepared after tanning (excl. sole leather) 01/01/1988 31/12/2001 -41043130 01/01/1988 31/12/2001 LIBEN Full grain splits of bovine leather, dehaired, prepared after tanning 01/01/1988 31/12/2001 -41043190 01/01/1988 31/12/2001 LIBEN Full grains and full grain splits of equine animals, dehaired, prepared after tanning 01/01/1988 31/12/2001 -410439 01/01/1988 31/12/2001 LIBEN Bovine and equine leather, dehaired, prepared after tanning, incl. parchment-dressed (excl. leather of whole bovine hides, with a surface area of <= 2,6 m², full grains and full grain splits, chamois leather, patent leather, patent laminated leather and metallized leather) 01/01/1988 31/12/2001 -41043910 01/01/1988 31/12/2001 LIBEN Bovine leather, dehaired, prepared after tanning, incl. parchment-dressed (excl. leather of whole bovine hides, with a surface area of <= 2,6 m², full grains and grain splits, chamois leather, patent leather, patent laminated leather and metallized leather) 01/01/1988 31/12/2001 -41043990 01/01/1988 31/12/2001 LIBEN Equine leather, dehaired, prepared after tanning, incl. parchment-dressed (excl. full grains and grain splits, chamois leather, patent leather, patent laminated leather and metallized leather) 01/01/1988 31/12/2001 -410441 01/01/2002 31/12/2500 LIBEN Full grains leather, unsplit and grain splits leather, in the dry state "crust", of hides and skins of bovine "incl. buffalo" or equine animals, without hair on (excl. further prepared) 01/01/2002 31/12/2500 -41044111 01/01/2002 31/12/2500 LIBEN Full grains leather, unsplit and grain splits leather of East India kip, without hair on, whole, whether or not the heads and legs have been removed, in the dry state "crust", with a surface area of <= 2,6 m² "28 square feet" and each weighing <= 4,5 kg, not further prepared than vegetable tanned, whether or not having undergone certain treatments, but obviously unsuitable for immediate use for the manufacture of leather articles 01/01/2002 31/12/2500 -41044119 01/01/2002 31/12/2500 LIBEN Full grains leather, unsplit and grain splits leather, in the dry state "crust", of whole hides and skins of bovine "incl. buffalo", with a surface area of <= 2,6 m² "28 square feet", without hair on (excl. further prepared and East India kip of subheading 4104.41.11) 01/01/2002 31/12/2500 -41044151 01/01/2002 31/12/2500 LIBEN Full grains leather, unsplit and grain splits leather, in the dry state "crust", of whole hides and skins of bovine "incl. buffalo" animals, with a surface area of > 2,6 m² "28 square feet", without hair on (excl. further prepared and East India kip of subheading 4104.41.11) 01/01/2002 31/12/2500 -41044159 01/01/2002 31/12/2500 LIBEN Full grains leather, unsplit and grain splits leather, in the dry state "crust", of hides and skins of bovine "incl. buffalo" animals, with a surface area of > 2,6 m² "28 square feet", without hair on (excl. further prepared and whole hides and skins and East India kip of subheading 4104.41.11) 01/01/2002 31/12/2500 -41044190 01/01/2002 31/12/2500 LIBEN Full grains leather, unsplit and grain splits leather, in the dry state "crust", of hides and skins of equine animals, without hair on (excl. further prepared) 01/01/2002 31/12/2500 -410449 01/01/2002 31/12/2500 LIBEN Hides and skins of bovine "incl. buffalo" or equine animals, in the dry state "crust", without hair on, whether or not split (excl. further prepared and full grains, unsplit and grain splits) 01/01/2002 31/12/2500 -41044911 01/01/2002 31/12/2500 LIBEN Hides and skins of East India kip, without hair on, whole, whether or not the heads and legs have been removed, in the dry state "crust", with a surface area of <= 2,6 m² "28 square feet" and each weighing <= 4,5 kg, not further prepared than vegetable tanned, whether or not having undergone certain treatments, but obviously unsuitable for immediate use for the manufacture of leather articles (excl. full grains, unsplit and grain splits) 01/01/2002 31/12/2500 -41044919 01/01/2002 31/12/2500 LIBEN Whole hides and skins of bovine "incl. buffalo" animals, with a surface area of <= 2,6 m² "28 square feet", in the dry state "crust", without hair on, whether or not split (excl. further prepared and full grains, unsplit, grain splits and hides and skins of East India kip of subheading 4104.49.11) 01/01/2002 31/12/2500 -41044951 01/01/2002 31/12/2500 LIBEN Whole hides and skins of bovine "incl. buffalo" animals, with a surface area of > 2,6 m² "28 square feet", in the dry state "crust", without hair on, whether or not split (excl. further prepared and full grains, unsplit and grain splits) 01/01/2002 31/12/2500 -41044959 01/01/2002 31/12/2500 LIBEN Hides and skins of bovine "incl. buffalo" animals, with a surface area of > 2,6 m² "28 square feet", in the dry state "crust", without hair on, whether or not split (excl. further prepared and whole hides and skins and full grains, unsplit and grain splits) 01/01/2002 31/12/2500 -41044990 01/01/2002 31/12/2500 LIBEN Hides and skins of equine animals, in the dry state "crust", without hair on, whether or not split (excl. further prepared and full grains, unsplit and grain splits) 01/01/2002 31/12/2500 -4105 01/01/1988 31/12/2500 LIBEN Tanned or crust skins of sheep or lambs, without wool on, whether or not split (excl. further prepared) 01/01/1988 31/12/2500 -410510 01/01/2002 31/12/2500 LIBEN Skins of sheep or lambs, in the wet state "incl. wet-blue", tanned, without wool on, whether or not split (excl. further prepared and pre-tanned only) 01/01/2002 31/12/2500 -41051000 01/01/2012 31/12/2500 LIBEN Skins of sheep or lambs, in the wet state "incl. wet-blue", tanned, without wool on, whether or not split (excl. further prepared and pre-tanned only) 01/01/2012 31/12/2500 -41051010 01/01/2002 31/12/2011 LIBEN Skins of sheep or lambs, in the wet state "incl. wet-blue", tanned, without wool on, unsplit (excl. further prepared and pre-tanned only) 01/01/2002 31/12/2011 -41051090 01/01/2002 31/12/2011 LIBEN Skins of sheep or lambs, in the wet state "incl. wet-blue", tanned, without wool on, split (excl. further prepared and pre-tanned only) 01/01/2002 31/12/2011 -410511 01/01/1988 31/12/2001 LIBEN Sheep or lambskin leather, vegetable pre-tanned only, whether or not split 01/01/1988 31/12/2001 -41051110 01/01/1988 31/12/2001 LIBEN Indian hair sheep leather, without wool on, vegetable pre-tanned, whether or not further prepared but obviously unsuitable for immediate use for the manufacture of leather articles 01/01/1988 31/12/2001 -41051191 01/01/1988 31/12/2001 LIBEN Full grains of sheep or lambskin leather, without wool on, vegetable pre-tanned only (excl. Indian hair sheep leather of subheading 4105.11.10) 01/01/1988 31/12/2001 -41051199 01/01/1988 31/12/2001 LIBEN Grain splits of sheep or lambskin leather, without wool on, vegetable pre-tanned only (excl. Indian hair sheep leather of subheading 4105.11.10) 01/01/1988 31/12/2001 -410512 01/01/1988 31/12/2001 LIBEN Sheep or lambskin leather, without wool on, mineral or synthetic pre-tanned only, whether or not split 01/01/1988 31/12/2001 -41051210 01/01/1988 31/12/2001 LIBEN Full grains of sheep or lambskin leather, without wool on, mineral or synthetic pre-tanned only 01/01/1988 31/12/2001 -41051290 01/01/1988 31/12/2001 LIBEN Grain splits of sheep or lambskin leather, without wool on, mineral or synthetic pre-tanned only 01/01/1988 31/12/2001 -410519 01/01/1988 31/12/2001 LIBEN Sheep or lambskin leather, without wool on, tanned only, whether or not split (excl. pre-tanned only) 01/01/1988 31/12/2001 -41051910 01/01/1988 31/12/2001 LIBEN Full grains of sheep or lambskin leather, without wool on, tanned only (excl. pre-tanned only) 01/01/1988 31/12/2001 -41051990 01/01/1988 31/12/2001 LIBEN Grain splits of sheep or lambskin leather, without wool on, tanned only (excl. pre-tanned only) 01/01/1988 31/12/2001 -410520 01/01/1988 31/12/2001 LIBEN Sheep or lambskin leather, without wool on, prepared after tanning, incl. parchment-dressed (excl. chamois leather, patent leather, patent laminated leather and metallized leather) 01/01/1988 31/12/2001 -41052000 01/01/1988 31/12/2001 LIBEN Sheep or lambskin leather, without wool on, prepared after tanning, incl. parchment-dressed (excl. chamois leather, patent leather, patent laminated leather and metallized leather) 01/01/1988 31/12/2001 -410530 01/01/2002 31/12/2500 LIBEN Skins of sheep or lambs, in the dry state "crust", without wool on, whether or not split (excl. further prepared and pre-tanned only) 01/01/2002 31/12/2500 -41053010 01/01/2002 31/12/2500 LIBEN Indian hair sheep skins, in the dry state "crust", without wool on, vegetable pre-tanned, whether or not having undergone certain treatments, but obviously unsuitable for immediate use for the manufacture of leather articles 01/01/2002 31/12/2500 -41053090 01/01/2012 31/12/2500 LIBEN Skins of sheep or lambs, in the dry state "crust", without wool on (excl. further prepared and pre-tanned only, and Indian hair sheep skins, vegetable pre-tanned, whether or not having undergone certain treatments, but obviously unsuitable for immediate use for the manufacture of leather articles) 01/01/2012 31/12/2500 -41053091 01/01/2002 31/12/2011 LIBEN Skins of sheep or lambs, in the dry state "crust", without wool on, unsplit (excl. further prepared and pre-tanned only, and Indian hair sheep skins, vegetable pre-tanned, whether or not having undergone certain treatments, but obviously unsuitable for immediate use for the manufacture of leather articles) 01/01/2002 31/12/2011 -41053099 01/01/2002 31/12/2011 LIBEN Skins of sheep or lambs, in the dry state "crust", without wool on, split (excl. further prepared and pre-tanned only, and Indian hair sheep skins, vegetable pre-tanned, whether or not having undergone certain treatments, but obviously unsuitable for immediate use for the manufacture of leather articles) 01/01/2002 31/12/2011 -4106 01/01/1988 31/12/2500 LIBEN Tanned or crust hides and skins of goats or kids, pigs, reptiles and other animals, without wool on, and leather of hairless animals, whether or not split (excl. further prepared and leather of bovine and equine animals, sheep and lambs) 01/01/1988 31/12/2500 -410611 01/01/1988 31/12/2001 LIBEN Goat or kidskin leather, dehaired, vegetable pre-tanned only, whether or not split 01/01/1988 31/12/2001 -41061110 01/01/1988 31/12/2001 LIBEN Indian goat leather, dehaired, vegetable pre-tanned, whether or not further prepared but obviously unsuitable for immediate use for the manufacture of leather articles 01/01/1988 31/12/2001 -41061190 01/01/1988 31/12/2001 LIBEN Goat or kidskin leather, dehaired, vegetable pre-tanned only, whether or not split (excl. Indian goat leather of subheading 4106.11.10) 01/01/1988 31/12/2001 -410612 01/01/1988 31/12/2001 LIBEN Goat or kidskin leather, dehaired, mineral or synthetic pre-tanned only, whether or not split 01/01/1988 31/12/2001 -41061200 01/01/1988 31/12/2001 LIBEN Goat or kidskin leather, dehaired, mineral or synthetic pre-tanned only, whether or not split 01/01/1988 31/12/2001 -410619 01/01/1988 31/12/2001 LIBEN Goat or kidskin leather, dehaired, tanned only, whether or not split (excl. pre-tanned only) 01/01/1988 31/12/2001 -41061900 01/01/1988 31/12/2001 LIBEN Goat or kidskin leather, dehaired, tanned only, whether or not split (excl. pre-tanned only) 01/01/1988 31/12/2001 -410620 01/01/1988 31/12/2001 LIBEN Goat or kidskin leather, dehaired, prepared after tanning or parchment-dressed (excl. chamois leather, patent leather, patent laminated leather and metallized leather) 01/01/1988 31/12/2001 -41062000 01/01/1988 31/12/2001 LIBEN Goat or kidskin leather, dehaired, prepared after tanning or parchment-dressed (excl. chamois leather, patent leather, patent laminated leather and metallized leather) 01/01/1988 31/12/2001 -410621 01/01/2002 31/12/2500 LIBEN Hides and skins of goats or kids, in the wet state "incl. wet-blue", tanned, without wool on, whether or not split (excl. further prepared and pre-tanned only) 01/01/2002 31/12/2500 -41062100 01/01/2012 31/12/2500 LIBEN Hides and skins of goats or kids, in the wet state "incl. wet-blue", tanned, without wool on, whether or not split (excl. further prepared and pre-tanned only) 01/01/2012 31/12/2500 -41062110 01/01/2002 31/12/2011 LIBEN Skins of goats or kids, in the wet state "incl. wet-blue", tanned, without wool on, unsplit (excl. further prepared and pre-tanned only) 01/01/2002 31/12/2011 -41062190 01/01/2002 31/12/2011 LIBEN Skins of goats or kids, in the wet state "incl. wet-blue", tanned, without wool on, split (excl. further prepared and pre-tanned only) 01/01/2002 31/12/2011 -410622 01/01/2002 31/12/2500 LIBEN Hides and skins of goats or kids, in the dry state "crust", without wool on, whether or not split (excl. further prepared and pre-tanned only) 01/01/2002 31/12/2500 -41062210 01/01/2002 31/12/2500 LIBEN Indian goat or kid skins, in the dry state "crust", without wool on, vegetable pre-tanned, whether or not having undergone certain treatments, but obviously unsuitable for immediate use for the manufacture of leather articles 01/01/2002 31/12/2500 -41062290 01/01/2002 31/12/2500 LIBEN Hides and skins of goats or kids, in the dry state "crust", without wool on, whether or not split (excl. further prepared and pre-tanned only and vegetable pre-tanned Indian goat or kid hides and skins of subheading 4106.22.10) 01/01/2002 31/12/2500 -410631 01/01/2002 31/12/2500 LIBEN Hides and skins of swine, in the wet state (incl. wet-blue), tanned, without wool on, whether or not split (excl. further prepared and pre-tanned only) 01/01/2002 31/12/2500 -41063100 01/01/2011 31/12/2500 LIBEN Hides and skins of swine, in the wet state (incl. wet-blue), tanned, without wool on, whether or not split (excl. further prepared and pre-tanned only) 01/01/2011 31/12/2500 -41063110 01/01/2002 31/12/2010 LIBEN Hides and skins of swine, in the wet state "incl. wet-blue", tanned, without hair on, unsplit (excl. further prepared and pre-tanned only) 01/01/2002 31/12/2010 -41063190 01/01/2002 31/12/2010 LIBEN Hides and skins of swine, in the wet state "incl. wet-blue", tanned, without hair on, split (excl. further prepared and pre-tanned only) 01/01/2002 31/12/2010 -410632 01/01/2002 31/12/2500 LIBEN Hides and skins of swine, in the dry state (crust), without wool on, whether or not split (excl. further prepared and pre-tanned only) 01/01/2002 31/12/2500 -41063200 01/01/2011 31/12/2500 LIBEN Hides and skins of swine, in the dry state (crust), without wool on, whether or not split (excl. further prepared and pre-tanned only) 01/01/2011 31/12/2500 -41063210 01/01/2002 31/12/2010 LIBEN Hides and skins of swine, in the dry state "crust", without wool on, unsplit (excl. further prepared and pre-tanned only) 01/01/2002 31/12/2010 -41063290 01/01/2002 31/12/2010 LIBEN Hides and skins of swine, in the dry state "crust", without wool on, split (excl. further prepared and pre-tanned only) 01/01/2002 31/12/2010 -410640 01/01/2002 31/12/2500 LIBEN Tanned or crust hides and skins of reptiles, whether or not split (excl. further prepared) 01/01/2002 31/12/2500 -41064010 01/01/2002 31/12/2500 LIBEN Hides and skins of reptiles, vegetable pre-tanned only 01/01/2002 31/12/2500 -41064090 01/01/2002 31/12/2500 LIBEN Tanned or crust hides and skins of reptiles, whether or not split (excl. further prepared and vegetable pre-tanned only) 01/01/2002 31/12/2500 -410691 01/01/2002 31/12/2500 LIBEN Hides and skins of antelopes, deer, elks, elephants and other animals, incl. sea animals, without wool or hair on, and leather of hairless animals, in the wet state "incl. wet-blue", tanned, whether or not split (excl. further prepared and of bovine and equine animals, sheep and lambs, goats and kids, swine and reptiles, and pre-tanned only) 01/01/2002 31/12/2500 -41069100 01/01/2002 31/12/2500 LIBEN Hides and skins of antelopes, deer, elks, elephants and other animals, incl. sea animals, without wool or hair on, and leather of hairless animals, in the wet state "incl. wet-blue", tanned, whether or not split (excl. further prepared and of bovine and equine animals, sheep and lambs, goats and kids, swine and reptiles, and pre-tanned only) 01/01/2002 31/12/2500 -410692 01/01/2002 31/12/2500 LIBEN Hides and skins of antelopes, deer, elks, elephants and other animals, incl. sea animals, without wool or hair on, and leather of hairless animals, in the dry state "crust", whether or not split (excl. further prepared and of bovine and equine animals, sheep and lambs, goats and kids, swine and reptiles, and pre-tanned only) 01/01/2002 31/12/2500 -41069200 01/01/2002 31/12/2500 LIBEN Hides and skins of antelopes, deer, elks, elephants and other animals, incl. sea animals, without wool or hair on, and leather of hairless animals, in the dry state "crust", whether or not split (excl. further prepared and of bovine and equine animals, sheep and lambs, goats and kids, swine and reptiles, and pre-tanned only) 01/01/2002 31/12/2500 -4107 01/01/1988 31/12/2500 LIBEN Leather further prepared after tanning or crusting "incl. parchment-dressed leather", of bovine "incl. buffalo" or equine animals, without hair on, whether or not split (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/1988 31/12/2500 -410710 01/01/1988 31/12/2001 LIBEN Leather of swine, dehaired (excl. chamois leather, patent leather, patent laminated leather and metallized leather) 01/01/1988 31/12/2001 -41071010 01/01/1988 31/12/2001 LIBEN Leather of swine, dehaired, tanned only 01/01/1988 31/12/2001 -41071090 01/01/1988 31/12/2001 LIBEN Leather of swine, dehaired, prepared after tanning, incl. parchment-dressed (excl. chamois leather, patent leather, patent laminated leather and metallized leather) 01/01/1988 31/12/2001 -410711 01/01/2002 31/12/2500 LIBEN Full grains leather "incl. parchment-dressed leather", unsplit, of the whole hides and skins of bovine "incl. buffalo" or equine animals, further prepared after tanning or crusting, without hair on (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -41071111 01/01/2002 31/12/2500 LIBEN Boxcalf full grains leather, unsplit, of whole calfhides and calfskins, with a surface area of <= 2,6 m² "28 square feet" 01/01/2002 31/12/2500 -41071119 01/01/2002 31/12/2500 LIBEN Full grains leather "incl. parchment-dressed leather", unsplit, of the whole hides and skins of bovine "incl. buffalo" animals, with a surface area of <= 2,6 m² "28 square feet", without hair on (excl. boxcalf, chamois leather, patent leather, patent laminated leather and metallised leather) 01/01/2002 31/12/2500 -41071190 01/01/2002 31/12/2500 LIBEN Full grains leather "incl. parchment-dressed leather", unsplit, of the whole hides and skins of bovine "incl. buffalo" or equine animals, further prepared after tanning or crusting, without hair on (excl. of bovine "incl. buffalo" animals with a surface area of <= 2,6 m² "28 square feet", chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -410712 01/01/2002 31/12/2500 LIBEN Grain splits leather "incl. parchment-dressed leather", of the whole hides and skins of bovine "incl. buffalo" or equine animals, further prepared after tanning or crusting, without hair on (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -41071211 01/01/2002 31/12/2500 LIBEN Boxcalf grain splits leather, of whole calfhides and calfskins, with a surface area of <= 2,6 m² "28 square feet" 01/01/2002 31/12/2500 -41071219 01/01/2002 31/12/2500 LIBEN Grain splits leather "incl. parchment-dressed leather", of the whole hides and skins of bovine "incl. buffalo" animals, with a surface area of <= 2,6 m² "28 square feet", without hair on (excl. boxcalf, chamois leather, patent leather, patent laminated leather and metallised leather) 01/01/2002 31/12/2500 -41071291 01/01/2002 31/12/2500 LIBEN Grain splits leather "incl. parchment-dressed leather", of the whole hides and skins of bovine "incl. buffalo" animals, further prepared after tanning or crusting, without hair on (excl. of bovine "incl. buffalo" animals with a surface area of <= 2,6 m² "28 square feet", chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -41071299 01/01/2002 31/12/2500 LIBEN Grain splits leather "incl. parchment-dressed leather", of the whole hides and skins of equine animals, further prepared after tanning or crusting, without hair on (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -410719 01/01/2002 31/12/2500 LIBEN Leather "incl. parchment-dressed leather" of the whole hides and skins of bovine "incl. buffalo" or equine animals, further prepared after tanning or crusting, without hair on (excl. unsplit full grains leather, grain splits leather, chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -41071910 01/01/2002 31/12/2500 LIBEN Leather "incl. parchment-dressed leather" of the whole hides and skins of bovine "incl. buffalo" animals, with a surface area of <= 2,6 m² "28 square feet", without hair on (excl. unsplit full grains leather, grain splits leather, chamois leather, patent leather, patent laminated leather and metallised leather) 01/01/2002 31/12/2500 -41071990 01/01/2002 31/12/2500 LIBEN Leather "incl. parchment-dressed leather" of the whole hides and skins of bovine "incl. buffalo" or equine animals, further prepared after tanning or crusting, without hair on (excl. of bovine "incl. buffalo" animals with a surface area of <= 2,6 m² "28 square feet", unsplit full grains leather, grain splits leather, chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -410721 01/01/1988 31/12/2001 LIBEN Leather of reptiles, vegetable pre-tanned only 01/01/1988 31/12/2001 -41072100 01/01/1988 31/12/2001 LIBEN Leather of reptiles, vegetable pre-tanned only 01/01/1988 31/12/2001 -410729 01/01/1988 31/12/2001 LIBEN Leather of reptiles (excl. vegetable pre-tanned only, plus chamois leather, patent leather, patent laminated leather and metallized leather) 01/01/1988 31/12/2001 -41072910 01/01/1988 31/12/2001 LIBEN Leather of reptiles, tanned only (excl. vegetable pre-tanned only) 01/01/1988 31/12/2001 -41072990 01/01/1988 31/12/2001 LIBEN Leather of reptiles prepared after tanning (excl. patent leather, patent laminated leather and metallized leather) 01/01/1988 31/12/2001 -410790 01/01/1988 31/12/2001 LIBEN Leather of antelopes, deer, elks, elephants and other animals, incl. sea animals, dehaired, and leather of hairless animals (excl. bovine and equine animals, sheep and lambs, goats and kids, pigs and reptiles, chamois leather, patent leather and patent laminated leather and metallized leather) 01/01/1988 31/12/2001 -41079010 01/01/1988 31/12/2001 LIBEN Leather of antilopes, deer, elks, elephants and other animals, incl. sea animals, dehaired, and leather of hairless animals, tanned only (excl. leather of bovine and equine animals, sheep and lambs, goats and kids, swine and reptiles) 01/01/1988 31/12/2001 -41079090 01/01/1988 31/12/2001 LIBEN Leather of antilopes, deer, elks, elephants and other animals, incl. sea animals, dehaired, and leather of hairless animals, prepared after tanning or parchment-dressed (excl. leather of bovine and equine animals, sheep and lambs, goats and kids, swine and reptiles, plus chamois leather, patent leather, patent laminated leather and metallized leather) 01/01/1988 31/12/2001 -410791 01/01/2002 31/12/2500 LIBEN Full grains leather "incl. parchment-dressed leather", unsplit, of the portions, strips or sheets of hides and skins of bovine "incl. buffalo" or equine animals, further prepared after tanning or crusting, without hair on (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -41079110 01/01/2002 31/12/2500 LIBEN Full grains sole leather "incl. parchment-dressed leather", unsplit, of the portions, strips or sheets of hides and skins of bovine "incl. buffalo" or equine animals, further prepared after tanning or crusting, without hair on (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -41079190 01/01/2002 31/12/2500 LIBEN Full grains leather "incl. parchment-dressed leather", unsplit, of the portions, strips or sheets of hides and skins of bovine "incl. buffalo" or equine animals, further prepared after tanning or crusting, without hair on (excl. sole leather, chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -410792 01/01/2002 31/12/2500 LIBEN Grain splits leather "incl. parchment-dressed leather", of the portions, strips or sheets of hides and skins of bovine "incl. buffalo" or equine animals, further prepared after tanning or crusting, without hair on (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -41079210 01/01/2002 31/12/2500 LIBEN Grain splits leather "incl. parchment-dressed leather", of the portions, strips or sheets of hides and skins of bovine "incl. buffalo" animals, further prepared after tanning or crusting, without hair on (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -41079290 01/01/2002 31/12/2500 LIBEN Grain splits leather "incl. parchment-dressed leather", of the portions, strips or sheets of hides and skins of equine animals, further prepared after tanning or crusting, without hair on (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -410799 01/01/2002 31/12/2500 LIBEN Leather "incl. parchment-dressed leather" of the portions, strips or sheets of hides and skins of bovine "incl. buffalo" or equine animals, further prepared after tanning or crusting, without hair on (excl. unsplit full grains leather, grain splits leather, chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -41079910 01/01/2002 31/12/2500 LIBEN Leather "incl. parchment-dressed leather" of the portions, strips or sheets of hides and skins of bovine "incl. buffalo" animals, further prepared after tanning or crusting, without hair on (excl. unsplit full grains leather, grain splits leather, chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -41079990 01/01/2002 31/12/2500 LIBEN Leather "incl. parchment-dressed leather" of the portions, strips or sheets of hides and skins of equine animals, further prepared after tanning or crusting, without hair on (excl. unsplit full grains leather, grain splits leather, chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -4108 01/01/1988 31/12/2001 LIBEN Chamois leather, incl. combination chamois leather (excl. glacé-tanned leather subsequently treated with formaldehyde and leather stuffed with oil only after tanning) 01/01/1988 31/12/2001 -410800 01/01/1988 31/12/2001 LIBEN Chamois leather, incl. combination chamois leather (excl. glacé-tanned leather subsequently treated with formaldehyde and leather stuffed with oil only after tanning) 01/01/1988 31/12/2001 -41080010 01/01/1988 31/12/2001 LIBEN Chamois leather, incl. combination chamois leather, of sheep and lambs (excl. glacé-tanned leather subsequently treated with formaldehyde and leather stuffed with oil only after tanning) 01/01/1988 31/12/2001 -41080090 01/01/1988 31/12/2001 LIBEN Chamois leather, incl. combination chamois leather (excl. that of sheep and lamb, glacé-tanned leather subsequently treated with formaldehyde and leather stuffed with oil only after tanning) 01/01/1988 31/12/2001 -4109 01/01/1988 31/12/2001 LIBEN Patent leather and patent laminated leather; metallized leather (excl. lacquered or metallized reconstituted leather) 01/01/1988 31/12/2001 -410900 01/01/1988 31/12/2001 LIBEN Patent leather and patent laminated leather; metallized leather (excl. lacquered or metallized reconstituted leather) 01/01/1988 31/12/2001 -41090000 01/01/1988 31/12/2001 LIBEN Patent leather and patent laminated leather; metallized leather (excl. lacquered or metallized reconstituted leather) 01/01/1988 31/12/2001 -4110 01/01/1988 31/12/2001 LIBEN Parings and other waste of leather, parchment-dressed leather or composition leather, not suitable for the manufacture of leather articles; leather dust, powder and flour 01/01/1988 31/12/2001 -411000 01/01/1988 31/12/2001 LIBEN Parings and other waste of leather, parchment-dressed leather or composition leather, not suitable for the manufacture of leather articles; leather dust, powder and flour 01/01/1988 31/12/2001 -41100000 01/01/1988 31/12/2001 LIBEN Parings and other waste of leather, parchment-dressed leather or composition leather, not suitable for the manufacture of leather articles; leather dust, powder and flour 01/01/1988 31/12/2001 -4111 01/01/1988 31/12/2001 LIBEN Composition leather based on leather or leather fibre, in slabs, sheets or strip, whether or not in rolls 01/01/1988 31/12/2001 -411100 01/01/1988 31/12/2001 LIBEN Composition leather based on leather or leather fibre, in slabs, sheets or strip, whether or not in rolls 01/01/1988 31/12/2001 -41110000 01/01/1988 31/12/2001 LIBEN Composition leather based on leather or leather fibre, in slabs, sheets or strip, whether or not in rolls 01/01/1988 31/12/2001 -4112 01/01/2002 31/12/2500 LIBEN Leather further prepared after tanning or crusting "incl. parchment-dressed leather", of sheep or lambs, without wool on, whether or not split (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -411200 01/01/2002 31/12/2500 LIBEN Leather further prepared after tanning or crusting "incl. parchment-dressed leather", of sheep or lambs, without wool on, whether or not split (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -41120000 01/01/2002 31/12/2500 LIBEN Leather further prepared after tanning or crusting "incl. parchment-dressed leather", of sheep or lambs, without wool on, whether or not split (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -4113 01/01/2002 31/12/2500 LIBEN Leather further prepared after tanning or crusting "incl. parchment-dressed leather", of goats or kids, pigs, reptiles and other animals, without wool or hair on, and leather of hairless animals, whether or not split (excl. leather of bovine and equine animals, sheep and lambs, and chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -411310 01/01/2002 31/12/2500 LIBEN Leather further prepared after tanning or crusting "incl. parchment-dressed leather", of goats or kids, without wool or hair on, whether or not split (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -41131000 01/01/2002 31/12/2500 LIBEN Leather further prepared after tanning or crusting "incl. parchment-dressed leather", of goats or kids, without wool or hair on, whether or not split (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -411320 01/01/2002 31/12/2500 LIBEN Leather further prepared after tanning or crusting "incl. parchment-dressed leather", of pigs, without hair on, whether or not split (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -41132000 01/01/2002 31/12/2500 LIBEN Leather further prepared after tanning or crusting "incl. parchment-dressed leather", of pigs, without hair on, whether or not split (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -411330 01/01/2002 31/12/2500 LIBEN Leather further prepared after tanning or crusting "incl. parchment-dressed leather", of reptiles,, whether or not split (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -41133000 01/01/2002 31/12/2500 LIBEN Leather further prepared after tanning or crusting "incl. parchment-dressed leather", of reptiles,, whether or not split (excl. chamois leather, patent leather and patent laminated leather, and metallised leather) 01/01/2002 31/12/2500 -411390 01/01/2002 31/12/2500 LIBEN Leather further prepared after tanning or crusting "incl. parchment-dressed leather", of antelopes, deer, elks, elephants and other animals, incl. sea animals, without wool or hair on, and leather of hairless animals, whether or not split (excl. leather of bovine and equine animals, sheep and lambs, goats or kids, swine and reptiles, and chamois leather, patent leather, patent laminated leather and metallised leather) 01/01/2002 31/12/2500 -41139000 01/01/2002 31/12/2500 LIBEN Leather further prepared after tanning or crusting "incl. parchment-dressed leather", of antelopes, deer, elks, elephants and other animals, incl. sea animals, without wool or hair on, and leather of hairless animals, whether or not split (excl. leather of bovine and equine animals, sheep and lambs, goats or kids, swine and reptiles, and chamois leather, patent leather, patent laminated leather and metallised leather) 01/01/2002 31/12/2500 -4114 01/01/2002 31/12/2500 LIBEN Chamois leather, incl. combination chamois leather (excl. glacé-tanned leather subsequently treated with formaldehyde and leather stuffed with oil only after tanning); patent leather and patent laminated leather; metallised leather (excl. lacquered or metallised reconstituted leather) 01/01/2002 31/12/2500 -411410 01/01/2002 31/12/2500 LIBEN Chamois leather, incl. combination chamois leather (excl. glacé-tanned leather subsequently treated with formaldehyde and leather stuffed with oil only after tanning) 01/01/2002 31/12/2500 -41141010 01/01/2002 31/12/2500 LIBEN Chamois leather, incl. combination chamois leather, of sheep or lambs (excl. glacé-tanned leather subsequently treated with formaldehyde and leather stuffed with oil only after tanning) 01/01/2002 31/12/2500 -41141090 01/01/2002 31/12/2500 LIBEN Chamois leather, incl. combination chamois leather (excl. that of sheep or lambs, glacé-tanned leather subsequently treated with formaldehyde and leather stuffed with oil only after tanning) 01/01/2002 31/12/2500 -411420 01/01/2002 31/12/2500 LIBEN Patent leather and patent laminated leather; metallised leather (excl. lacquered or metallised reconstituted leather) 01/01/2002 31/12/2500 -41142000 01/01/2002 31/12/2500 LIBEN Patent leather and patent laminated leather; metallised leather (excl. lacquered or metallised reconstituted leather) 01/01/2002 31/12/2500 -4115 01/01/2002 31/12/2500 LIBEN Composition leather with a basis of leather or leather fibre, in slabs, sheets or strip, whether or not in rolls; parings and other waste of leather or of composition leather, not suitable for the manufacture of leather articles; leather dust, powder and flour 01/01/2002 31/12/2500 -411510 01/01/2002 31/12/2500 LIBEN Composition leather based on leather or leather fibre, in slabs, sheets or strip, whether or not in rolls 01/01/2002 31/12/2500 -41151000 01/01/2002 31/12/2500 LIBEN Composition leather based on leather or leather fibre, in slabs, sheets or strip, whether or not in rolls 01/01/2002 31/12/2500 -411520 01/01/2002 31/12/2500 LIBEN Parings and other waste of leather or of composition leather, not suitable for the manufacture of leather articles; leather dust, powder and flour 01/01/2002 31/12/2500 -41152000 01/01/2002 31/12/2500 LIBEN Parings and other waste of leather or of composition leather, not suitable for the manufacture of leather articles; leather dust, powder and flour 01/01/2002 31/12/2500 -41CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 41 01/01/2002 31/12/2500 -41CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 41 01/01/2002 31/12/2500 -41CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 41 01/01/2002 31/12/2500 -41MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -41MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -41MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -41SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 41 01/01/1988 31/12/2500 -41SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 41 and SITC section 0 01/01/1997 31/12/2001 -41SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 41 and SITC group 000 01/01/1997 31/12/2001 -41SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 41 and SITC section 2 01/01/1997 31/12/2500 -41SSS211 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 41 and SITC group 211 01/01/1997 31/12/2500 -41SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 41 and SITC section 6 01/01/1997 31/12/2500 -41SSS611 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 41 and SITC group 611 01/01/1997 31/12/2500 -41SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 41 and SITC section 9 01/01/1988 31/12/1996 -41SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 41 and SITC section 9 01/01/1997 31/12/2500 -41SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 41 and SITC group 999 01/01/1988 31/12/1996 -41SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 41 and SITC group 999 01/01/1997 31/12/2500 -42 01/01/1988 31/12/2500 LIBEN ARTICLES OF LEATHER; SADDLERY AND HARNESS; TRAVEL GOODS, HANDBAGS AND SIMILAR CONTAINERS; ARTICLES OF ANIMAL GUT (OTHER THAN SILKWORM GUT) 01/01/1988 31/12/2500 -4201 01/01/1988 31/12/2500 LIBEN Saddlery and harness for any animal, incl. traces, leads, knee pads, muzzles, saddle cloths, saddlebags, dog coats and the like, of any material (excl. harnesses for children and adults, riding whips and other goods of heading 6602) 01/01/1988 31/12/2500 -420100 01/01/1988 31/12/2500 LIBEN Saddlery and harness for any animal, incl. traces, leads, knee pads, muzzles, saddle cloths, saddlebags, dog coats and the like, of any material (excl. harnesses for children and adults, riding whips and other goods of heading 6602) 01/01/1988 31/12/2500 -42010000 01/01/1988 31/12/2500 LIBEN Saddlery and harness for any animal, incl. traces, leads, knee pads, muzzles, saddle cloths, saddlebags, dog coats and the like, of any material (excl. harnesses for children and adults, riding whips and other goods of heading 6602) 01/01/1988 31/12/2500 -4202 01/01/1988 31/12/2500 LIBEN Trunks, suitcases, vanity cases, executive-cases, briefcases, school satchels, spectacle cases, binocular cases, camera cases, musical instrument cases, gun cases, holsters and similar containers; travelling-bags, insulated food or beverage bags, toilet bags, rucksacks, handbags, shopping-bags, wallets, purses, map-cases, cigarette-cases, tobacco-pouches, tool bags, sports bags, bottle-cases, jewellery boxes, powder-boxes, cutlery cases and similar containers, of leather or of composition leather, of sheeting of plastics, of textile materials, of vulcanised fibre or of paperboard, or wholly or mainly covered with such materials or with paper 01/01/1988 31/12/2500 -420211 01/01/1988 31/12/2500 LIBEN Trunks, suitcases, vanity cases, executive-cases, briefcases, school satchels and similar containers, with outer surface of leather, composition leather or patent leather 01/01/1988 31/12/2500 -42021110 01/01/1988 31/12/2500 LIBEN Executive-cases, briefcases, portfolios, school satchels and similar containers with outer surface of leather, composition leather or patent leather 01/01/1988 31/12/2500 -42021190 01/01/1988 31/12/2500 LIBEN Trunks, suitcases, vanity cases and similar containers, with outer surface of leather, composition leather or patent leather (excl. executive-cases) 01/01/1988 31/12/2500 -420212 01/01/1988 31/12/2500 LIBEN Trunks, suitcases, vanity cases, executive-cases, briefcases, school satchels and similar containers, with outer surface of plastics or textile materials 01/01/1988 31/12/2500 -42021211 01/01/1988 31/12/2500 LIBEN Executive-cases, briefcases, school satchels and similar containers, with outer surface of plastic sheeting 01/01/1988 31/12/2500 -42021219 01/01/1988 31/12/2500 LIBEN Trunks, suitcases, vanity cases and similar containers of leather, with outer surface of plastic sheeting (excl. executive-cases) 01/01/1988 31/12/2500 -42021250 01/01/1988 31/12/2500 LIBEN Trunks, suitcases, vanity cases, executive-cases, briefcases, school satchels and similar containers, with outer surface of moulded plastic material 01/01/1988 31/12/2500 -42021291 01/01/1988 31/12/2500 LIBEN Executive-cases, briefcases, school satchels and similar containers, with outer surface of plastic, incl. vulcanised fibre, or of textile materials (excl. those with an outer surface of plastic sheeting or moulded plastic material) 01/01/1988 31/12/2500 -42021299 01/01/1988 31/12/2500 LIBEN Trunks, suitcases, vanity cases and similar cases, with outer surface of plastics or textile materials (excl. those with an outer surface of plastic sheeting or moulded plastic material, and executive-cases) 01/01/1988 31/12/2500 -420219 01/01/1988 31/12/2500 LIBEN Trunks, suitcases, vanity cases, executive-cases, briefcases, school satchels and similar containers (excl. with outer surface of leather, composition leather, patent leather, plastics or textile materials) 01/01/1988 31/12/2500 -42021910 01/01/1988 31/12/2500 LIBEN Trunks, suitcases, vanity cases, executive-cases, briefcases, school satchels and similar containers, with outer surface of aluminium 01/01/1988 31/12/2500 -42021990 01/01/1993 31/12/2500 LIBEN Trunks, suitcases, vanity cases, executive-cases, briefcases, school satchels and similar containers (excl. with outer surface of leather, composition leather, patent leather, plastics, textile materials or aluminium) 01/01/1993 31/12/2500 -42021991 01/01/1988 31/12/1992 LIBEN Attache cases, briefcases, portfolios, school satchels and similar containers (excl. those with an outer surface of leather, composition leather, patent leather, plastic, textile materials or aluminium) 01/01/1988 31/12/1992 -42021999 01/01/1988 31/12/1992 LIBEN Trunks, suitcases, vanity cases and similar cases (excl. those with an outer surface of leather, composition leather, patent leather, plastic, textile materials or aluminium, and attache cases) 01/01/1988 31/12/1992 -420221 01/01/1988 31/12/2500 LIBEN Handbags, whether or not with shoulder straps, incl. those without handles, with outer surface of leather, composition leather or patent leather 01/01/1988 31/12/2500 -42022100 01/01/1988 31/12/2500 LIBEN Handbags, whether or not with shoulder straps, incl. those without handles, with outer surface of leather, composition leather or patent leather 01/01/1988 31/12/2500 -420222 01/01/1988 31/12/2500 LIBEN Handbags, whether or not with shoulder straps, incl. those without handles, with outer surface of plastic sheeting or textile materials 01/01/1988 31/12/2500 -42022210 01/01/1988 31/12/2500 LIBEN Handbags, whether or not with shoulder straps, incl. those without handles, with outer surface of plastic sheeting 01/01/1988 31/12/2500 -42022290 01/01/1988 31/12/2500 LIBEN Handbags, whether or not with shoulder straps, incl. those without handles, with outer surface of textile materials 01/01/1988 31/12/2500 -420229 01/01/1988 31/12/2500 LIBEN Handbags, whether or not with shoulder strap, incl. those without handle, with outer surface of vulcanised fibre or paperboard, or wholly or mainly covered with such materials or with paper 01/01/1988 31/12/2500 -42022900 01/01/1988 31/12/2500 LIBEN Handbags, whether or not with shoulder strap, incl. those without handle, with outer surface of vulcanised fibre or paperboard, or wholly or mainly covered with such materials or with paper 01/01/1988 31/12/2500 -420231 01/01/1988 31/12/2500 LIBEN Wallets, purses, key-pouches, cigarette-cases, tobacco-pouches and similar articles carried in the pocket or handbag, with outer surface of leather, composition leather or patent leather 01/01/1988 31/12/2500 -42023100 01/01/1988 31/12/2500 LIBEN Wallets, purses, key-pouches, cigarette-cases, tobacco-pouches and similar articles carried in the pocket or handbag, with outer surface of leather, composition leather or patent leather 01/01/1988 31/12/2500 -420232 01/01/1988 31/12/2500 LIBEN Wallets, purses, key-pouches, cigarette-cases, tobacco-pouches and similar articles carried in the pocket or handbag, with outer surface of plastic sheeting or textile materials 01/01/1988 31/12/2500 -42023210 01/01/1988 31/12/2500 LIBEN Wallets, purses, key-pouches, cigarette-cases, tobacco-pouches and similar articles carried in the pocket or handbag, with outer surface of plastic sheeting 01/01/1988 31/12/2500 -42023290 01/01/1988 31/12/2500 LIBEN Wallets, purses, key-pouches, cigarette-cases, tobacco-pouches and similar articles carried in the pocket or handbag, with outer surface of textile materials 01/01/1988 31/12/2500 -420239 01/01/1988 31/12/2500 LIBEN Wallets, purses, key-cases, cigarette-cases, tobacco-pouches and similar articles of a kind normally carried in the pocket or handbag, with outer surface of vulcanised fibre or paperboard, or wholly or mainly covered with such materials or with paper, incl. spectacle cases of moulded plastic material 01/01/1988 31/12/2500 -42023900 01/01/1988 31/12/2500 LIBEN Wallets, purses, key-cases, cigarette-cases, tobacco-pouches and similar articles of a kind normally carried in the pocket or handbag, with outer surface of vulcanised fibre or paperboard, or wholly or mainly covered with such materials or with paper, incl. spectacle cases of moulded plastic material 01/01/1988 31/12/2500 -420291 01/01/1988 31/12/2500 LIBEN Travelling-bags, insulated food or beverage bags, toilet bags, rucksacks, shopping-bags, map-cases, tool bags, sports bags, jewellery boxes, cutlery cases, binocular cases, camera cases, musical instrument cases, gun cases, holsters and similar containers, with outer surface of leather, composition leather or patent leather (excl. trunks, briefcases, school satchels and similar containers, handbags and articles normally carried in the pocket or handbag) 01/01/1988 31/12/2500 -42029110 01/01/1988 31/12/2500 LIBEN Travelling-bags, toilet bags, rucksacks and sports bags with outer surface of leather, composition leather or patent leather 01/01/1988 31/12/2500 -42029150 01/01/1988 31/12/1992 LIBEN Musical instrument cases with an outer surface of leather, composition leather or patent leather 01/01/1988 31/12/1992 -42029180 01/01/1993 31/12/2500 LIBEN Insulated food or beverage bags, shopping bags, map-cases, tool bags, jewellery boxes, cutlery cases, binocular cases, camera cases, musical instrument cases, gun cases, holsters and similar containers, with outer surface of leather, composition leather or of patent leather (excl. trunks, briefcases, school satchels and similar; articles normally carried in the pocket or in the handbag; travelling, toilet or sports bags; rucksacks) 01/01/1993 31/12/2500 -42029190 01/01/1988 31/12/1992 LIBEN Shopping or tool bags, map-cases, jewellery boxes, cases for cutlery, binoculars, cameras or guns, holsters and similar, with outer surface of leather, composition leather or patent leather (excl. trunks, suit- vanity- executive- or brief-cases, school satchels and similar; handbags; leather articles normally carried in the pocket or handbag; travel, toilet or sports bags; rucksacks; containers for musical instruments) 01/01/1988 31/12/1992 -420292 01/01/1988 31/12/2500 LIBEN Travelling-bags, insulated food or beverage bags, toilet bags, rucksacks, shopping-bags, map-cases, tool bags, sports bags, jewellery boxes, cutlery cases, binocular cases, camera cases, musical instrument cases, gun cases, holsters and similar containers, with outer surface of plastic sheeting or textile materials (excl. trunks, briefcases, school satchels and similar containers, handbags and articles carried in the pocket or handbag) 01/01/1988 31/12/2500 -42029211 01/01/1988 31/12/2500 LIBEN Travelling-bags, toilet bags, rucksacks and sports bags, with outer surface of plastic sheeting 01/01/1988 31/12/2500 -42029215 01/01/1988 31/12/1992 LIBEN Musical instrument cases, with an outer surface of plastic sheeting 01/01/1988 31/12/1992 -42029215 01/01/1995 31/12/2500 LIBEN Musical instrument cases with outer surface of plastic sheeting 01/01/1995 31/12/2500 -42029218 01/01/1993 31/12/1994 LIBEN Shopping bags, map-cases, tool bags, jewellery boxes, cutlery cases, binocular cases, camera cases, musical instrument cases, gun cases, holsters and similar containers, with outer surface of plastic sheeting (excl. trunks, brief-cases, school satchels and similar containers, articles of a kind normally carried in the pocket or in the handbag, travelling-bags, toilet bags, sports bags and rucksacks) 01/01/1993 31/12/1994 -42029219 01/01/1988 31/12/1992 LIBEN Shopping bags, map cases, tool bags, make-up boxes, cutlery boxes, cases for binoculars, cameras, video cameras or arms and similar containers, with an outer surface of plastic sheeting (excl. trunks, briefcases, school satchels and similar containers, handbags, articles carried in the pocket or handbag, travel bags, toilet and sports bags, rucksacks and musical instrument cases) 01/01/1988 31/12/1992 -42029219 01/01/1995 31/12/2500 LIBEN Insulated food or beverage bags, shopping bags, map-cases, tool bags, jewellery boxes, cutlery cases, binocular cases, camera cases, gun cases, holsters and similar containers, with outer surface of plastic sheeting (excl. travelling-cases, briefcases, satchels and similar containers, bag or handbag articles, travelling-bags, toilet bags, sports bags, rucksacks and musical instrument cases) 01/01/1995 31/12/2500 -42029291 01/01/1988 31/12/2500 LIBEN Travelling-bags, toilet bags, rucksacks and sports bags, with outer surface of textile materials 01/01/1988 31/12/2500 -42029295 01/01/1988 31/12/1992 LIBEN Musical instrument cases, with an outer surface of textile materials 01/01/1988 31/12/1992 -42029298 01/01/1993 31/12/2500 LIBEN Insulated food or beverage bags, shopping bags, map-cases, tool bags, jewellery boxes, cutlery cases, binocular cases, camera cases, musical instrument cases, gun cases, holsters and similar containers, with outer surface of textile materials (excl. trunks, briefcases, school satchels and similar containers, articles of a kind normally carried in the pocket or in the handbag, travelling-bags, toilet bags, sports bags and rucksacks) 01/01/1993 31/12/2500 -42029299 01/01/1988 31/12/1992 LIBEN Shopping bags, map cases, tool bags, make-up boxes, cutlery boxes, cases for binoculars, cameras, video cameras or arms and similar containers, with an outer surface of fabric (excl. trunks, briefcases, school satchels and similar containers, handbags, articles carried in the pocket or handbag, travel bags, toilet and sports bags, rucksacks and musical instrument cases) 01/01/1988 31/12/1992 -420299 01/01/1988 31/12/2500 LIBEN Travelling-bags, shopping or tool bags, jewellery boxes, cutlery cases and similar, with outer surface of vulcanised fibre or paperboard; cases for binoculars, cameras, musical instruments, guns, holsters and similar containers with outer surface of materials (not leather, plastic sheeting or textile materials) (excl. trunks, briefcases, school satchels and similar; handbags; articles normally carried in pocket or handbag) 01/01/1988 31/12/2500 -42029900 01/01/1993 31/12/2500 LIBEN Travelling-bags, shopping or tool bags, jewellery boxes, cutlery cases and similar, with outer surface of vulcanised fibre or paperboard; cases for binoculars, cameras, musical instruments, guns, holsters and similar containers with outer surface of materials (not leather, plastic sheeting or textile materials) (excl. trunks, briefcases, school satchels and similar; handbags; articles normally carried in pocket or handbag) 01/01/1993 31/12/2500 -42029910 01/01/1988 31/12/1992 LIBEN Musical instrument cases (excl. those with an outer surface of leather, composition leather, patent leather, plastic sheeting or textile materials) 01/01/1988 31/12/1992 -42029990 01/01/1988 31/12/1992 LIBEN Travel, shopping & tool bags, jewellery & cutlery boxes and similar, with outer surface of vulcanized fibre or paperboard, or wholly or mainly covered with such materials or paper; cases for binoculars, cameras, guns or similar (excl. with outer surface of leather, plastic sheeting or textile material; excl. musical instrument cases, trunks, brief-cases, school satchels or similar, handbags & articles carried in pocket) 01/01/1988 31/12/1992 -4203 01/01/1988 31/12/2500 LIBEN Articles of apparel and clothing accessories, of leather or composition leather (excl. footware and headgear and parts thereof, and goods of chapter 95, e.g. shin guards, fencing masks) 01/01/1988 31/12/2500 -420310 01/01/1988 31/12/2500 LIBEN Articles of apparel, of leather or composition leather (excl. clothing accessories, footware and headgear and parts thereof, and goods of chapter 95, e.g. shin guards, fencing masks) 01/01/1988 31/12/2500 -42031000 01/01/1988 31/12/2500 LIBEN Articles of apparel, of leather or composition leather (excl. clothing accessories, footware and headgear and parts thereof, and goods of chapter 95, e.g. shin guards, fencing masks) 01/01/1988 31/12/2500 -420321 01/01/1988 31/12/2500 LIBEN Specially designed gloves for use in sport, of leather or composition leather 01/01/1988 31/12/2500 -42032100 01/01/1988 31/12/2500 LIBEN Specially designed gloves for use in sport, of leather or composition leather 01/01/1988 31/12/2500 -420329 01/01/1988 31/12/2500 LIBEN Gloves, mittens and mitts, of leather or composition leather (excl. special sports gloves) 01/01/1988 31/12/2500 -42032910 01/01/1988 31/12/2500 LIBEN Protective gloves of leather or composition leather, for all trades 01/01/1988 31/12/2500 -42032990 01/01/2011 31/12/2500 LIBEN Gloves, mittens and mitts, of leather or composition leather (excl. special sports gloves and protective gloves for all trades) 01/01/2011 31/12/2500 -42032991 01/01/1988 31/12/2010 LIBEN Men's and boys' gloves, mittens and mitts, of leather or composition leather (excl. special sports gloves and protective gloves for all trades) 01/01/1988 31/12/2010 -42032999 01/01/1988 31/12/2010 LIBEN Gloves, mittens and mitts, of leather or composition leather (excl. men's and boys', special sports gloves and protective gloves for all trades) 01/01/1988 31/12/2010 -420330 01/01/1988 31/12/2500 LIBEN Belts and bandoliers, of leather or composition leather 01/01/1988 31/12/2500 -42033000 01/01/1988 31/12/2500 LIBEN Belts and bandoliers, of leather or composition leather 01/01/1988 31/12/2500 -420340 01/01/1988 31/12/2500 LIBEN Clothing accessories of leather or composition leather (excl. gloves, mittens and mitts, belts, bandoliers, footware and headgear and parts thereof, and goods of chapter 95 [e.g. shin guards, fencing masks]) 01/01/1988 31/12/2500 -42034000 01/01/1988 31/12/2500 LIBEN Clothing accessories of leather or composition leather (excl. gloves, mittens and mitts, belts, bandoliers, footware and headgear and parts thereof, and goods of chapter 95 [e.g. shin guards, fencing masks]) 01/01/1988 31/12/2500 -4204 01/01/1988 31/12/2006 LIBEN Articles for technical use, of leather or composition leather 01/01/1988 31/12/2006 -420400 01/01/1988 31/12/2006 LIBEN Articles for technical use, of leather or composition leather 01/01/1988 31/12/2006 -42040010 01/01/1988 31/12/2006 LIBEN Conveyor or transmission belts or belting, of leather or composition leather 01/01/1988 31/12/2006 -42040090 01/01/1988 31/12/2006 LIBEN Articles for technical use, of leather or composition leather (excl. conveyor or transmission belts or belting) 01/01/1988 31/12/2006 -4205 01/01/1988 31/12/2500 LIBEN Articles of leather or composition leather (excl. saddlery and harness bags; cases and similar containers; apparel and clothing accessories; whips, riding-crops and similar of heading 6602; furniture; lighting appliances; toys; games; sports articles; buttons and parts thereof; cuff links, bracelets or other imitation jewellery; made-up articles of netting of heading 5608; and articles of plaiting materials) 01/01/1988 31/12/2500 -420500 01/01/1988 31/12/2500 LIBEN Articles of leather or composition leather (excl. saddlery and harness bags; cases and similar containers; apparel and clothing accessories; whips, riding-crops and similar of heading 6602; furniture; lighting appliances; toys; games; sports articles; buttons and parts thereof; cuff links, bracelets or other imitation jewellery; made-up articles of netting of heading 5608; and articles of plaiting materials) 01/01/1988 31/12/2500 -42050000 01/01/1988 31/12/2006 LIBEN Articles of leather or composition leather (excl. saddlery and harness bags; cases and similar containers; apparel and clothing accessories; articles for technical uses; whips, riding-crops and similar of heading 6602; furniture; lighting appliances; toys; games; sports articles; buttons and parts thereof; cuff links, bracelets or other imitation jewellery; made-up articles of netting of heading 5608; and articles of plaiting materials) 01/01/1988 31/12/2006 -42050011 01/01/2007 31/12/2500 LIBEN Conveyor or transmission belts or belting, of leather or composition leather 01/01/2007 31/12/2500 -42050019 01/01/2007 31/12/2500 LIBEN Articles for technical use, of leather or composition leather (excl. conveyor or transmission belts or belting) 01/01/2007 31/12/2500 -42050090 01/01/2007 31/12/2500 LIBEN Articles of leather or composition leather (excl. saddlery and harness bags; cases and similar containers; apparel and clothing accessories; articles for technical uses; whips, riding-crops and similar of heading 6602; furniture; lighting appliances; toys; games; sports articles; buttons and parts thereof; cuff links, bracelets or other imitation jewellery; made-up articles of netting of heading 5608; and articles of plaiting materials) 01/01/2007 31/12/2500 -4206 01/01/1988 31/12/2500 LIBEN Articles of gut, goldbeater's skin, bladders or tendons (excl. silkworm gut, sterile catgut, other sterile surgical suture material and strings for musical instruments) 01/01/1988 31/12/2500 -420600 01/01/2007 31/12/2500 LIBEN Articles of gut, goldbeater's skin, bladders or tendons (excl. silkworm gut, sterile catgut, other sterile surgical suture material and strings for musical instruments) 01/01/2007 31/12/2500 -42060000 01/01/2007 31/12/2500 LIBEN Articles of gut, goldbeater's skin, bladders or tendons (excl. silkworm gut, sterile catgut, other sterile surgical suture material and strings for musical instruments) 01/01/2007 31/12/2500 -420610 01/01/1988 31/12/2006 LIBEN Catgut (excl. sterile catgut, other sterile surgical suture material and strings for musical instruments) 01/01/1988 31/12/2006 -42061000 01/01/1988 31/12/2006 LIBEN Catgut (excl. sterile catgut, other sterile surgical suture material and strings for musical instruments) 01/01/1988 31/12/2006 -420690 01/01/1988 31/12/2006 LIBEN Articles of gut, goldbeater's skin, bladders or tendons (excl. silkworm gut, sterile catgut, other sterile surgical suture material and catgut, incl. strings for musical instruments) 01/01/1988 31/12/2006 -42069000 01/01/1988 31/12/2006 LIBEN Articles of gut, goldbeater's skin, bladders or tendons (excl. silkworm gut, sterile catgut, other sterile surgical suture material and catgut, incl. strings for musical instruments) 01/01/1988 31/12/2006 -42CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 42 01/01/2002 31/12/2500 -42CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 42 01/01/2002 31/12/2500 -42CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 42 01/01/2002 31/12/2500 -42MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -42MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -42MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -42PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 42 carried by post 01/01/1988 31/12/2500 -42PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 42 carried by post 01/01/1988 31/12/2500 -42PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 42 carried by post 01/01/1988 31/12/2500 -42SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 42 01/01/1988 31/12/2500 -42SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 42 and SITC section 0 01/01/1997 31/12/2001 -42SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 42 and SITC group 000 01/01/1997 31/12/2001 -42SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 42 and SITC section 6 01/01/1997 31/12/2500 -42SSS612 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 42 and SITC group 612 01/01/1997 31/12/2500 -42SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 42 and SITC section 8 01/01/1997 31/12/2500 -42SSS831 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 42 and SITC group 831 01/01/1997 31/12/2500 -42SSS848 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 42 and SITC group 848 01/01/1997 31/12/2500 -42SSS894 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 42 and SITC group 894 01/01/1997 31/12/2500 -42SSS899 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 42 and SITC group 899 01/01/1997 31/12/2500 -42SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 42 and SITC section 9 01/01/1988 31/12/1996 -42SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 42 and SITC section 9 01/01/1997 31/12/2500 -42SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 42 and SITC group 999 01/01/1988 31/12/1996 -42SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 42 and SITC group 999 01/01/1997 31/12/2500 -43 01/01/1988 31/12/2500 LIBEN FURSKINS AND ARTIFICIAL FUR; MANUFACTURES THEREOF 01/01/1988 31/12/2500 -4301 01/01/1988 31/12/2500 LIBEN Raw furskins, incl. heads, tails, paws and other pieces or cuttings suitable for use in furriery (excl. raw hides and skins of heading 4101, 4102 or 4103) 01/01/1988 31/12/2500 -430110 01/01/1988 31/12/2500 LIBEN Raw furskins of mink, whole, with or without heads, tails or paws 01/01/1988 31/12/2500 -43011000 01/01/1988 31/12/2500 LIBEN Raw furskins of mink, whole, with or without heads, tails or paws 01/01/1988 31/12/2500 -430120 01/01/1988 31/12/2001 LIBEN Raw furskins of rabbit or hare, with or without heads, tails or paws 01/01/1988 31/12/2001 -43012000 01/01/1988 31/12/2001 LIBEN Raw furskins of rabbit or hare, with or without heads, tails or paws 01/01/1988 31/12/2001 -430130 01/01/1988 31/12/2500 LIBEN Raw furskins of the following types of lamb: Astrakhan, Caracul, Persian, Broadtail and similar, and Indian, Chinese, Mongolian or Tibetan, whole, with or without heads, tails or paws 01/01/1988 31/12/2500 -43013000 01/01/1988 31/12/2500 LIBEN Raw furskins of the following types of lamb: Astrakhan, Caracul, Persian, Broadtail and similar, and Indian, Chinese, Mongolian or Tibetan, whole, with or without heads, tails or paws 01/01/1988 31/12/2500 -430140 01/01/1988 31/12/2001 LIBEN Raw furskins of beaver, with or without heads, tails or paws 01/01/1988 31/12/2001 -43014000 01/01/1988 31/12/2001 LIBEN Raw furskins of beaver, with or without heads, tails or paws 01/01/1988 31/12/2001 -430150 01/01/1988 31/12/2001 LIBEN Raw furskins of musk-rat, with or without heads, tails or paws 01/01/1988 31/12/2001 -43015000 01/01/1988 31/12/2001 LIBEN Raw furskins of musk-rat, with or without heads, tails or paws 01/01/1988 31/12/2001 -430160 01/01/1988 31/12/2500 LIBEN Raw furskins of fox, with or without heads, tails or paws 01/01/1988 31/12/2500 -43016000 01/01/1988 31/12/2500 LIBEN Raw furskins of fox, with or without heads, tails or paws 01/01/1988 31/12/2500 -430170 01/01/1988 31/12/2006 LIBEN Raw furskins of seal, whole, with or without heads, tails or paws 01/01/1988 31/12/2006 -43017010 01/01/1988 31/12/2006 LIBEN Raw furskins of whitecoat pups of harp seal or blueback pups of hooded seals, whole, with or without heads, tails or paws 01/01/1988 31/12/2006 -43017090 01/01/1988 31/12/2006 LIBEN Raw furskins of seal, whole, with or without heads, tails or paws (excl. those of whitecoat pups of harp seal or blueback pups of hooded seals) 01/01/1988 31/12/2006 -430180 01/01/1988 31/12/2500 LIBEN Raw furskins, whole, with or without heads, tails or paws (excl. those of mink, lamb - Astrachan, Caracul, Persian, Broadtail and similar, and Indian, Chinese, Mongolian or Tibetan - and fox) 01/01/1988 31/12/2500 -43018000 01/01/2012 31/12/2500 LIBEN Raw furskins, whole, with or without heads, tails or paws (excl. those of mink, lamb - Astrachan, Caracul, Persian, Broadtail and similar, and Indian, Chinese, Mongolian or Tibetan - and fox) 01/01/2012 31/12/2500 -43018010 01/01/1988 31/12/2003 LIBEN Raw furskins of sea-otters or nutria "coypu", whole, with or without heads, tails or paws 01/01/1988 31/12/2003 -43018030 01/01/1988 31/12/2011 LIBEN Raw furskins of marmots, whole, with or without heads, tails or paws 01/01/1988 31/12/2011 -43018050 01/01/1988 31/12/2011 LIBEN Raw furskins of wild felines, with or without heads, tails or paws 01/01/1988 31/12/2011 -43018070 01/01/2007 31/12/2011 LIBEN Raw furskins, whole, with or without heads, tails or paws (excl. those of mink, lamb - Astrachan, Caracul, Persian, Broadtail and similar, and Indian, Chinese, Mongolian or Tibetan -, fox, marmots and of wild felines) 01/01/2007 31/12/2011 -43018080 01/01/2004 31/12/2006 LIBEN Raw furskins, whole, with or without heads, tails or paws (excl. those of mink, lamb - Astrachan, Caracul, Persian, Broadtail and similar, and Indian, Chinese, Mongolian or Tibetan -, fox, seal, marmots and of wild felines) 01/01/2004 31/12/2006 -43018090 01/01/1988 31/12/2001 LIBEN Raw furskins, whole, with or without heads, tails or paws (excl. those of mink, rabbit, hare, lamb - Astrachan, Caracul, Persian, Broadtail and similar, and Indian, Chinese, Mongolian or Tibetan - beaver, musk-rat, fox, seal, sea-otters, nutria "coypu", marmots and of wild felines) 01/01/1988 31/12/2001 -43018095 01/01/2002 31/12/2003 LIBEN Raw furskins, whole, with or without heads, tails or paws (excl. those of mink, lamb - Astrachan, Caracul, Persian, Broadtail and similar, and Indian, Chinese, Mongolian or Tibetan -, fox, seal, sea-otters, nutria "coypu", marmots and of wild felines) 01/01/2002 31/12/2003 -430190 01/01/1988 31/12/2500 LIBEN Heads, tails, paws and other pieces or cuttings of furskins suitable for use in furriery 01/01/1988 31/12/2500 -43019000 01/01/1988 31/12/2006 LIBEN Heads, tails, paws and other pieces or cuttings of furskins suitable for use in furriery 01/01/1988 31/12/2006 -43019000 01/01/2007 31/12/2500 LIBEN Heads, tails, paws and other pieces or cuttings of furskins suitable for use in furriery 01/01/2007 31/12/2500 -4302 01/01/1988 31/12/2500 LIBEN Tanned or dressed furskins, incl. heads, tails, paws and other pieces, scraps and remnants, unassembled, or assembled, without the addition of other materials (excl. clothing, clothing accessories and other furskin articles) 01/01/1988 31/12/2500 -430211 01/01/1988 31/12/2500 LIBEN Tanned or dressed furskins of mink, whole, with or without heads, tails or paws, not assembled 01/01/1988 31/12/2500 -43021100 01/01/1988 31/12/2500 LIBEN Tanned or dressed furskins of mink, whole, with or without heads, tails or paws, not assembled 01/01/1988 31/12/2500 -430212 01/01/1988 31/12/2001 LIBEN Tanned or dressed furskins of rabbit or hare, whole, with or without heads, tails or paws, not assembled 01/01/1988 31/12/2001 -43021200 01/01/1988 31/12/2001 LIBEN Tanned or dressed furskins of rabbit or hare, whole, with or without heads, tails or paws, not assembled 01/01/1988 31/12/2001 -430213 01/01/1988 31/12/2006 LIBEN Tanned or dressed furskins of Astrakhan, Caracul, Persian, Broadtail or similar lamb, and Indian, Chinese, Mongolian or Tibetan lamb, whole, with or without heads, tails or paws, not assembled 01/01/1988 31/12/2006 -43021300 01/01/1988 31/12/2006 LIBEN Tanned or dressed furskins of Astrakhan, Caracul, Persian, Broadtail or similar lamb, and Indian, Chinese, Mongolian or Tibetan lamb, whole, with or without heads, tails or paws, not assembled 01/01/1988 31/12/2006 -430219 01/01/1988 31/12/2500 LIBEN Tanned or dressed furskins, whole, with or without heads, tails or paws, not assembled (excl. those of mink, Astrachan, Caracul, Persian, Broadtail or similar lamb, and Indian, Chinese, Mongolian or Tibetan lamb) 01/01/1988 31/12/2500 -43021910 01/01/1988 31/12/2011 LIBEN Tanned or dressed furskins of beaver, whole, with or without heads, tails or paws, not assembled 01/01/1988 31/12/2011 -43021915 01/01/2012 31/12/2500 LIBEN Tanned or dressed furskins of beaver, muskrat or fox, whole, with or without heads, tails or paws, not assembled 01/01/2012 31/12/2500 -43021920 01/01/1988 31/12/2011 LIBEN Tanned or dressed furskins of muskrat, whole, with or without heads, tails or paws, not assembled 01/01/1988 31/12/2011 -43021930 01/01/1988 31/12/2011 LIBEN Tanned or dressed furskins of fox, whole, with or without heads, tails or paws, not assembled 01/01/1988 31/12/2011 -43021935 01/01/2002 31/12/2500 LIBEN Tanned or dressed furskins of rabbit or hare, whole, with or without heads, tails or paws, not assembled 01/01/2002 31/12/2500 -43021941 01/01/1988 31/12/2500 LIBEN Tanned or dressed furskins of whitecoat pups of harp seal or blueback pups of hooded seal, whole, with or without heads, tails or paws, not assembled 01/01/1988 31/12/2500 -43021949 01/01/1988 31/12/2500 LIBEN Tanned or dressed furskins of seal, whole, with or without heads, tails or paws, not assembled (excl. whitecoat pups of harp seal or blueback pups of hooded seal) 01/01/1988 31/12/2500 -43021950 01/01/1988 31/12/2011 LIBEN Tanned or dressed furskins of sea otters or nutria "coypu", whole, with or without heads, tails or paws, not assembled 01/01/1988 31/12/2011 -43021960 01/01/1988 31/12/2011 LIBEN Tanned or dressed furskins of marmots, whole, with or without heads, tails or paws, not assembled 01/01/1988 31/12/2011 -43021970 01/01/1988 31/12/2011 LIBEN Tanned or dressed furskins of wild felines, whole, with or without heads, tails or paws, not assembled 01/01/1988 31/12/2011 -43021975 01/01/2007 31/12/2500 LIBEN Tanned or dressed furskins of Astrakhan, Caracul, Persian, Broadtail or similar lamb, and Indian, Chinese, Mongolian or Tibetan lamb, whole, with or without heads, tails or paws, not assembled 01/01/2007 31/12/2500 -43021980 01/01/1994 31/12/2500 LIBEN Tanned or dressed furskins of sheep or lambs, whole, with or without heads, tails or paws, not assembled (excl. of Astrakhan, Caracul, Persian, Broadtail or similar lamb, and Indian, Chinese, Mongolian or Tibetan lamb) 01/01/1994 31/12/2500 -43021990 01/01/1988 31/12/1993 LIBEN Tanned or dressed whole furskins, whole, whether or not without heads, tails or feet, not made up (excl. those of mink, rabbit, hare, astrachan, caracul, persian, broadtail or similar types of lamb, plus indian, chinese, mongolian or tibetan lamb, beaver, muskrat, fox, seal, sea otter, coypu, marmot and all kinds of wildcat) 01/01/1988 31/12/1993 -43021995 01/01/1994 31/12/2011 LIBEN Furskins, tanned or dressed, whole, with or without heads, tails or paws, not assembled (excl. furskins of mink, rabbit, hare, of beaver, muskrat, fox, seal, sea otters, nutria "coypu", marmots, wild felines, sheep and lambs) 01/01/1994 31/12/2011 -43021999 01/01/2012 31/12/2500 LIBEN Furskins, tanned or dressed, whole, with or without heads, tails or paws, not assembled (excl. furskins of mink, rabbit, hare, beaver, muskrat, fox, seal, sheep and lambs) 01/01/2012 31/12/2500 -430220 01/01/1988 31/12/2500 LIBEN Heads, tails, paws and other pieces or cuttings of tanned or dressed furskins, not assembled 01/01/1988 31/12/2500 -43022000 01/01/1988 31/12/2500 LIBEN Heads, tails, paws and other pieces or cuttings of tanned or dressed furskins, not assembled 01/01/1988 31/12/2500 -430230 01/01/1988 31/12/2500 LIBEN Tanned or dressed whole furskins and pieces or cuttings thereof, assembled, without the addition of other materials (excl. clothing, clothing accessories and other furskin articles) 01/01/1988 31/12/2500 -43023010 01/01/1988 31/12/2500 LIBEN Tanned and dressed 'dropped' furskins 01/01/1988 31/12/2500 -43023021 01/01/1988 31/12/2011 LIBEN Tanned or dressed whole furskins of mink, and pieces or cuttings thereof, assembled, without the addition of other materials (excl. 'dropped' furskins, clothing, clothing accessories and other furskin articles) 01/01/1988 31/12/2011 -43023025 01/01/1988 31/12/2500 LIBEN Tanned or dressed whole furskins of rabbit or hare, and pieces or cuttings thereof, assembled, without the addition of other materials (excl. 'dropped' furskins, clothing, clothing accessories and other furskin articles) 01/01/1988 31/12/2500 -43023031 01/01/1988 31/12/2011 LIBEN Tanned or dressed whole furskins of Astrakhan, Caracul, Persian, Broadtail or similar lamb, and Indian, Chinese, Mongolian or Tibetan lamb, and pieces or cuttings thereof, assembled, without the addition of other materials (excl. 'dropped' furskins, clothing, clothing accessories and other furskin articles) 01/01/1988 31/12/2011 -43023035 01/01/1988 31/12/2003 LIBEN Tanned or dressed whole furskins of beaver, and pieces or cuttings thereof, assembled, without the addition of other materials (excl. 'dropped' furskins, clothing, clothing accessories and other furskin articles) 01/01/1988 31/12/2003 -43023041 01/01/1988 31/12/2011 LIBEN Tanned or dressed whole furskins of muskrat, and pieces or cuttings thereof, assembled, without the addition of other materials (excl. 'dropped' furskins, clothing, clothing accessories and other furskin articles) 01/01/1988 31/12/2011 -43023045 01/01/1988 31/12/2011 LIBEN Tanned or dressed whole furskins of fox, and pieces or cuttings thereof, assembled, without the addition of other materials (excl. 'dropped' furskins, clothing, clothing accessories and other furskin articles) 01/01/1988 31/12/2011 -43023051 01/01/1988 31/12/2500 LIBEN Tanned or dressed whole furskins of whitecoat pups of harp seal or blueback pups of hooded seal, and pieces or cuttings thereof, assembled, without the addition of other materials (excl. 'dropped' furskins, clothing, clothing accessories and other furskin articles) 01/01/1988 31/12/2500 -43023055 01/01/1988 31/12/2500 LIBEN Tanned or dressed whole furskins of seal, and pieces or cuttings thereof, assembled, without the addition of other materials (excl. of whitecoat pups of harp seal or blueback pups of hooded seal, and 'dropped' furskins, clothing, clothing accessories and other furskin articles) 01/01/1988 31/12/2500 -43023061 01/01/1988 31/12/2011 LIBEN Tanned or dressed whole furskins of sea otters or nutria "coypu", and pieces or cuttings thereof, assembled, without the addition of other materials (excl. 'dropped' furskins, clothing, clothing accessories and other furskin articles) 01/01/1988 31/12/2011 -43023065 01/01/1988 31/12/2003 LIBEN Tanned or dressed whole furskins of marmots, and pieces or cuttings thereof, assembled, without the addition of other materials (excl. 'dropped' furskins, clothing, clothing accessories and other furskin articles) 01/01/1988 31/12/2003 -43023071 01/01/1988 31/12/2011 LIBEN Tanned or dressed whole furskins of wild felines, and pieces or cuttings thereof, assembled, without the addition of other materials (excl. 'dropped' furskins, clothing, clothing accessories and other furskin articles) 01/01/1988 31/12/2011 -43023075 01/01/1988 31/12/2003 LIBEN Tanned or dressed furskins, whole, in pieces or cuttings, assembled, without the addition of other materials (excl. furskins of mink, rabbit, hare, Astrakhan, Carakul, Persian, Broadtail and similar lamb, Indian, Chinese, Mongolian or Tibetan lamb, beaver, musk-rat, fox, seal, sea-otters, nutria, marmots, wild felines; 'dropped' furskins; articles of apparel and other articles of furskin) 01/01/1988 31/12/2003 -43023095 01/01/2004 31/12/2011 LIBEN Tanned or dressed furskins, whole, in pieces or cuttings, assembled, without the addition of other materials (excl. furskins of mink, rabbit, hare, Astrakhan, Carakul, Persian, Broadtail and similar lamb, Indian, Chinese, Mongolian or Tibetan lamb, muskrat, fox, seal, sea otters, nutria, marmots, wild felines; 'dropped' furskins; articles of apparel and other articles of furskin) 01/01/2004 31/12/2011 -43023099 01/01/2012 31/12/2500 LIBEN Tanned or dressed furskins, whole or in pieces or cuttings, assembled, without the addition of other materials (excl. furskins of rabbit, hare and seal; 'dropped' furskins; articles of apparel and other articles of furskin) 01/01/2012 31/12/2500 -4303 01/01/1988 31/12/2500 LIBEN Articles of apparel, clothing accessories and other furskin articles (excl. gloves made of leather and furskin, footware and headgear and parts thereof, and goods of chapter 95, e.g., toys, games and sports equipment) 01/01/1988 31/12/2500 -430310 01/01/1988 31/12/2500 LIBEN Articles of apparel and clothing accessories of furskin (excl. gloves made of leather and furskin, footware and headgear and parts thereof) 01/01/1988 31/12/2500 -43031010 01/01/1988 31/12/2500 LIBEN Articles of apparel and clothing accessories made of the furskin of whitecoat pups of harp seal or blueback pups of hooded seal (excl. gloves made of leather and furskin, footware and headgear and parts thereof) 01/01/1988 31/12/2500 -43031090 01/01/1988 31/12/2500 LIBEN Articles of apparel and clothing accessories made of furskin (excl. those of whitecoat pups of harp seal or blueback pups of hooded seal, gloves made of leather and furskin, footware and headgear and parts thereof) 01/01/1988 31/12/2500 -430390 01/01/1988 31/12/2500 LIBEN Articles of furskin (excl. articles of apparel, clothing accessories and goods of chapter 95, e.g. toys, games and sports equipment) 01/01/1988 31/12/2500 -43039000 01/01/1988 31/12/2500 LIBEN Articles of furskin (excl. articles of apparel, clothing accessories and goods of chapter 95, e.g. toys, games and sports equipment) 01/01/1988 31/12/2500 -4304 01/01/1988 31/12/2500 LIBEN Artificial fur and articles thereof (excl. gloves made of leather and artificial fur, footware and headgear and parts thereof, and goods of chapter 95, e.g. toys, games and sports equipment) 01/01/1988 31/12/2500 -430400 01/01/1988 31/12/2500 LIBEN Artificial fur and articles thereof (excl. gloves made of leather and artificial fur, footware and headgear and parts thereof, and goods of chapter 95, e.g. toys, games and sports equipment) 01/01/1988 31/12/2500 -43040000 01/01/1988 31/12/2500 LIBEN Artificial fur and articles thereof (excl. gloves made of leather and artificial fur, footware and headgear and parts thereof, and goods of chapter 95, e.g. toys, games and sports equipment) 01/01/1988 31/12/2500 -43CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 43 01/01/2002 31/12/2500 -43CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 43 01/01/2002 31/12/2500 -43CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 43 01/01/2002 31/12/2500 -43MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -43MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -43MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -43SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 43 01/01/1988 31/12/2500 -43SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 43 and SITC section 0 01/01/1997 31/12/2001 -43SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 43 and SITC group 000 01/01/1997 31/12/2001 -43SSS2 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 43 and SITC section 2 01/01/1993 31/12/2500 -43SSS212 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 43 and SITC group 212 01/01/1993 31/12/2500 -43SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 43 and SITC section 6 01/01/1997 31/12/2500 -43SSS613 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 43 and SITC group 613 01/01/1997 31/12/2500 -43SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 43 and SITC section 8 01/01/1997 31/12/2500 -43SSS848 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 43 and SITC group 848 01/01/1997 31/12/2500 -43SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 43 and SITC section 9 01/01/1988 31/12/1996 -43SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 43 and SITC section 9 01/01/1997 31/12/2500 -43SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 43 and SITC group 999 01/01/1988 31/12/1996 -43SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 43 and SITC group 999 01/01/1997 31/12/2500 -44 01/01/1988 31/12/2500 LIBEN WOOD AND ARTICLES OF WOOD; WOOD CHARCOAL 01/01/1988 31/12/2500 -4401 01/01/1988 31/12/2500 LIBEN Fuel wood, in logs, billets, twigs, faggots or similar forms; wood in chips or particles; sawdust and wood waste and scrap, whether or not agglomerated in logs, briquettes, pellets or similar forms 01/01/1988 31/12/2500 -440110 01/01/1988 31/12/2016 LIBEN Fuel wood, in logs, billets, twigs, faggots or similar forms 01/01/1988 31/12/2016 -44011000 01/01/1988 31/12/2016 LIBEN Fuel wood, in logs, billets, twigs, faggots or similar forms 01/01/1988 31/12/2016 -440111 01/01/2017 31/12/2500 LIBEN Fuel wood, in logs, billets, twigs, faggots or similar forms, coniferous 01/01/2017 31/12/2500 -44011100 01/01/2017 31/12/2500 LIBEN Fuel wood, in logs, billets, twigs, faggots or similar forms, coniferous 01/01/2017 31/12/2500 -440112 01/01/2017 31/12/2500 LIBEN Fuel wood, in logs, billets, twigs, faggots or similar forms, non-coniferous 01/01/2017 31/12/2500 -44011200 01/01/2017 31/12/2500 LIBEN Fuel wood, in logs, billets, twigs, faggots or similar forms, non-coniferous 01/01/2017 31/12/2500 -440121 01/01/1988 31/12/2500 LIBEN Coniferous wood in chips or particles (excl. those of a kind used principally for dying or tanning purposes) 01/01/1988 31/12/2500 -44012100 01/01/1988 31/12/2500 LIBEN Coniferous wood in chips or particles (excl. those of a kind used principally for dying or tanning purposes) 01/01/1988 31/12/2500 -440122 01/01/1988 31/12/2500 LIBEN Wood in chips or particles (excl. those of a kind used principally for dyeing or tanning purposes, and coniferous wood) 01/01/1988 31/12/2500 -44012200 01/01/1988 31/12/2020 LIBEN Wood in chips or particles (excl. those of a kind used principally for dyeing or tanning purposes, and coniferous wood) 01/01/1988 31/12/2020 -44012210 01/01/2021 31/12/2500 LIBEN Wood in chips or particles, of eucalyptus 01/01/2021 31/12/2500 -44012290 01/01/2021 31/12/2500 LIBEN Wood in chips or particles (excl. those of a kind used principally for dyeing or tanning purposes, coniferous wood and eucalyptus) 01/01/2021 31/12/2500 -440130 01/01/1988 31/12/2011 LIBEN Sawdust and wood waste and scrap, whether or not agglomerated in logs, briquettes, pellets or similar forms 01/01/1988 31/12/2011 -44013010 01/01/1988 31/12/2008 LIBEN Sawdust of wood, whether or not agglomerated in logs, briquettes, pellets or similar forms 01/01/1988 31/12/2008 -44013020 01/01/2009 31/12/2011 LIBEN Sawdust and wood waste and scrap, agglomerated in pellets 01/01/2009 31/12/2011 -44013040 01/01/2009 31/12/2011 LIBEN Sawdust of wood, whether or not agglomerated in logs, briquettes or similar forms (excl. pellets) 01/01/2009 31/12/2011 -44013080 01/01/2009 31/12/2011 LIBEN Wood waste and scrap, whether or not agglomerated in logs, briquettes or similar forms (excl. sawdust and pellets) 01/01/2009 31/12/2011 -44013090 01/01/1988 31/12/2008 LIBEN Wood waste and scrap, whether or not agglomerated in logs, briquettes, pellets or similar forms (excl. sawdust) 01/01/1988 31/12/2008 -440131 01/01/2012 31/12/2500 LIBEN Wood pellets 01/01/2012 31/12/2500 -44013100 01/01/2012 31/12/2500 LIBEN Wood pellets 01/01/2012 31/12/2500 -440139 01/01/2012 31/12/2500 LIBEN Sawdust and wood waste and scrap, agglomerated in logs, briquettes or similar forms (excl. pellets) 01/01/2012 31/12/2500 -44013900 01/01/2017 31/12/2500 LIBEN Sawdust and wood waste and scrap, agglomerated in logs, briquettes or similar forms (excl. pellets) 01/01/2017 31/12/2500 -44013910 01/01/2012 31/12/2012 LIBEN Sawdust of wood, whether or not agglomerated in logs, briquettes or similar forms (excl. pellets) 01/01/2012 31/12/2012 -44013920 01/01/2013 31/12/2016 LIBEN Sawdust and wood waste and scrap, agglomerated in logs, briquettes or similar forms (excl. pellets) 01/01/2013 31/12/2016 -44013930 01/01/2013 31/12/2016 LIBEN Sawdust of wood, not agglomerated 01/01/2013 31/12/2016 -44013980 01/01/2013 31/12/2016 LIBEN Wood waste and scrap, not agglomerated (excl. sawdust) 01/01/2013 31/12/2016 -44013990 01/01/2012 31/12/2012 LIBEN Wood waste and scrap, whether or not agglomerated in logs, briquettes or similar forms (excl. sawdust and pellets) 01/01/2012 31/12/2012 -440140 01/01/2017 31/12/2500 LIBEN Sawdust and wood waste and scrap, not agglomerated 01/01/2017 31/12/2500 -44014010 01/01/2017 31/12/2500 LIBEN Sawdust, not agglomerated 01/01/2017 31/12/2500 -44014090 01/01/2017 31/12/2500 LIBEN Wood waste and scrap, not agglomerated (excl. sawdust) 01/01/2017 31/12/2500 -4402 01/01/1988 31/12/2500 LIBEN Wood charcoal, incl. shell or nut charcoal, whether or not agglomerated (excl. wood charcoal used as a medicament, charcoal mixed with incense, activated charcoal and charcoal in the form of crayons) 01/01/1988 31/12/2500 -440200 01/01/1988 31/12/2006 LIBEN Wood charcoal, incl. shell or nut charcoal, whether or not agglomerated (excl. wood charcoal used as a medicament, charcoal mixed with incense, activated charcoal and charcoal in the form of crayons) 01/01/1988 31/12/2006 -44020000 01/01/1988 31/12/2006 LIBEN Wood charcoal, incl. shell or nut charcoal, whether or not agglomerated (excl. wood charcoal used as a medicament, charcoal mixed with incense, activated charcoal and charcoal in the form of crayons) 01/01/1988 31/12/2006 -440210 01/01/2007 31/12/2500 LIBEN Bamboo charcoal, incl. shell or nut charcoal, whether or not agglomerated (excl. used as a medicament, mixed with incense, activated bamboo charcoal and in the form of crayons) 01/01/2007 31/12/2500 -44021000 01/01/2007 31/12/2500 LIBEN Bamboo charcoal, incl. shell or nut charcoal, whether or not agglomerated (excl. used as a medicament, mixed with incense, activated bamboo charcoal and in the form of crayons) 01/01/2007 31/12/2500 -440290 01/01/2007 31/12/2500 LIBEN Wood charcoal, incl. shell or nut charcoal, whether or not agglomerated (excl. bamboo charcoal, wood charcoal used as a medicament, charcoal mixed with incense, activated charcoal and charcoal in the form of crayons) 01/01/2007 31/12/2500 -44029000 01/01/2007 31/12/2500 LIBEN Wood charcoal, incl. shell or nut charcoal, whether or not agglomerated (excl. bamboo charcoal, wood charcoal used as a medicament, charcoal mixed with incense, activated charcoal and charcoal in the form of crayons) 01/01/2007 31/12/2500 -4403 01/01/1988 31/12/2500 LIBEN Wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.) 01/01/1988 31/12/2500 -440310 01/01/1988 31/12/2016 LIBEN Wood in the rough, treated with paint, stains, creosote or other preservatives (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.) 01/01/1988 31/12/2016 -44031000 01/01/1999 31/12/2016 LIBEN Wood in the rough, treated with paint, stains, creosote or other preservatives (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.) 01/01/1999 31/12/2016 -44031010 01/01/1988 31/12/1998 LIBEN Poles of coniferous wood, with a length of 6 m to 18 m and a circumference at the butt end of > 45 cm to <= 90 cm, impregnated to any degree 01/01/1988 31/12/1998 -44031090 01/01/1996 31/12/1998 LIBEN Wood in the rough, treated with paint, stains, creosote or other preservatives (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams etc.; poles with a length of 6 m to 18 m and a circumference at the butt end of > 45 cm to <= 90 cm) 01/01/1996 31/12/1998 -44031091 01/01/1988 31/12/1995 LIBEN Coniferous wood in the rough, treated with paint, stains, creosote or other preservatives (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams etc.; poles with a length of 6 m to 18 m and a circumference at the butt end of > 45 cm to <= 90 cm) 01/01/1988 31/12/1995 -44031099 01/01/1988 31/12/1995 LIBEN Wood in the rough, treated with paint, stains, creosote or other preservatives (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; coniferous wood in general) 01/01/1988 31/12/1995 -440311 01/01/2017 31/12/2500 LIBEN Wood in the rough, treated with paint, stains, creosote or other preservatives, coniferous (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.) 01/01/2017 31/12/2500 -44031100 01/01/2017 31/12/2500 LIBEN Wood in the rough, treated with paint, stains, creosote or other preservatives, coniferous (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.) 01/01/2017 31/12/2500 -440312 01/01/2017 31/12/2500 LIBEN Wood in the rough, treated with paint, stains, creosote or other preservatives, non-coniferous (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.) 01/01/2017 31/12/2500 -44031200 01/01/2017 31/12/2500 LIBEN Wood in the rough, treated with paint, stains, creosote or other preservatives, non-coniferous (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.) 01/01/2017 31/12/2500 -440320 01/01/1988 31/12/2016 LIBEN Coniferous wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/2016 -44032000 01/01/1988 31/12/1995 LIBEN Coniferous wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/1995 -44032010 01/01/1996 31/12/2001 LIBEN Spruce of the kind "Picea abies Karst." or silver fir "Abies alba Mill.", in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1996 31/12/2001 -44032011 01/01/2002 31/12/2016 LIBEN Sawlogs of spruce of the species "Picea abies Karst." or silver fir "Abies alba Mill.", whether or not stripped of bark or sapwood, or roughly squared 01/01/2002 31/12/2016 -44032019 01/01/2002 31/12/2016 LIBEN Spruce of the species "Picea abies Karst." or silver fir "Abies alba Mill.", in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. sawlogs; rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2002 31/12/2016 -44032030 01/01/1996 31/12/2001 LIBEN Pine of the kind "Pinus sylvestris L." in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1996 31/12/2001 -44032031 01/01/2002 31/12/2016 LIBEN Sawlogs of pine of the species "Pinus sylvestris L.", whether or not stripped of bark or sapwood, or roughly squared 01/01/2002 31/12/2016 -44032039 01/01/2002 31/12/2016 LIBEN Pine of the species "Pinus sylvestris L." in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. sawlogs; rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2002 31/12/2016 -44032090 01/01/1996 31/12/2001 LIBEN Coniferous wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives; and spruce of the kind "Picea abies Karst.", silver fir "Abies alba Mill." and pine of the kind "Pinus sylvestris L.") 01/01/1996 31/12/2001 -44032091 01/01/2002 31/12/2016 LIBEN Sawlogs of coniferous wood, whether or not stripped of bark or sapwood, or roughly squared (excl. spruce of the species "Picea abies Karst.", silver fir "Abies alba Mill." and pine of the species "Pinus sylvestris L.") 01/01/2002 31/12/2016 -44032099 01/01/2002 31/12/2016 LIBEN Coniferous wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. sawlogs; rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives; and spruce of the species "Picea abies Karst.", silver fir "Abies alba Mill." and pine of the species "Pinus sylvestris L.") 01/01/2002 31/12/2016 -440321 01/01/2017 31/12/2500 LIBEN Pine "Pinus spp." in the rough, of which any cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. wood in the form of railway sleepers; wood cut into beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -44032110 01/01/2017 31/12/2500 LIBEN Sawlogs of pine "Pinus spp.", of which any cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared 01/01/2017 31/12/2500 -44032190 01/01/2017 31/12/2500 LIBEN Pine "Pinus spp." in the rough, of which any cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. sawlogs; wood in the form of railway sleepers; wood cut into beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -440322 01/01/2017 31/12/2500 LIBEN Pine "Pinus spp." in the rough, of which no cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -44032200 01/01/2017 31/12/2500 LIBEN Pine "Pinus spp." in the rough, of which no cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -440323 01/01/2017 31/12/2500 LIBEN Fir "Abies spp." and spruce "Picea spp." in the rough, of which any cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. wood in the form of railway sleepers; wood cut into beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -44032310 01/01/2017 31/12/2500 LIBEN Sawlogs of fir "Abies spp." and spruce "Picea spp.", of which any cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared 01/01/2017 31/12/2500 -44032390 01/01/2017 31/12/2500 LIBEN Fir "Abies spp." and spruce "Picea spp." in the rough, of which any cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. sawlogs; wood in the form of railway sleepers; wood cut into beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -440324 01/01/2017 31/12/2500 LIBEN Fir "Abies spp." and spruce "Picea spp." in the rough, of which no cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -44032400 01/01/2017 31/12/2500 LIBEN Fir "Abies spp." and spruce "Picea spp." in the rough, of which no cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -440325 01/01/2017 31/12/2500 LIBEN Coniferous wood in the rough, of which any cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. pine, fir and spruce; wood in the form of railway sleepers; wood cut into beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -44032510 01/01/2017 31/12/2500 LIBEN Sawlogs, coniferous, of which any cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. pine, fir and spruce; wood in the form of railway sleepers; wood cut into beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -44032590 01/01/2017 31/12/2500 LIBEN Coniferous wood in the rough, of which any cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. pine, fir and spruce; sawlogs; wood in the form of railway sleepers; wood cut into beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -440326 01/01/2017 31/12/2500 LIBEN Coniferous wood in the rough, of which no cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. pine, fir and spruce, and rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -44032600 01/01/2017 31/12/2500 LIBEN Coniferous wood in the rough, of which no cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. pine, fir and spruce, and rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -440331 01/01/1988 31/12/1995 LIBEN Dark red meranti, light red meranti and meranti bakau wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/1995 -44033100 01/01/1988 31/12/1995 LIBEN Dark red meranti, light red meranti and meranti bakau wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/1995 -440332 01/01/1988 31/12/1995 LIBEN White lauan, white meranti, white seraya, yellow meranti and alen in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/1995 -44033200 01/01/1988 31/12/1995 LIBEN White lauan, white meranti, white seraya, yellow meranti and alen in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/1995 -440333 01/01/1988 31/12/1995 LIBEN Keruing, ramin, kapur, teak, jongkong, merbau, jelutong and kempas in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/1995 -44033300 01/01/1988 31/12/1995 LIBEN Keruing, ramin, kapur, teak, jongkong, merbau, jelutong and kempas in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/1995 -440334 01/01/1988 31/12/1995 LIBEN Okoumé, obeche, sapele, utile, acajou d'Afrique, makoré and iroko in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/1995 -44033410 01/01/1988 31/12/1995 LIBEN Okoumé, in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/1995 -44033430 01/01/1988 31/12/1995 LIBEN Obeche in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/1995 -44033450 01/01/1988 31/12/1995 LIBEN Utile in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/1995 -44033470 01/01/1988 31/12/1995 LIBEN Makoré in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/1995 -44033490 01/01/1988 31/12/1995 LIBEN Sapele, acajou d'Afrique and iroke in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/1995 -440335 01/01/1988 31/12/1995 LIBEN Tiama, mansonia, ilomba, dibetou, limba and azobe in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/1995 -44033510 01/01/1988 31/12/1995 LIBEN Limba in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/1995 -44033590 01/01/1988 31/12/1995 LIBEN Tiama, mansonia, ilomba, dibetou, limba and azobe in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/1995 -440341 01/01/1996 31/12/2500 LIBEN Dark red meranti, light red meranti and meranti bakau wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1996 31/12/2500 -44034100 01/01/1996 31/12/2500 LIBEN Dark red meranti, light red meranti and meranti bakau wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1996 31/12/2500 -440349 01/01/1996 31/12/2500 LIBEN Tropical wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. dark red meranti, light red meranti, meranti bakau; rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1996 31/12/2500 -44034910 01/01/1996 31/12/2500 LIBEN Sapelli, acajou d'Afrique and iroko in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1996 31/12/2500 -44034920 01/01/1996 31/12/2008 LIBEN Okoumé, in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1996 31/12/2008 -44034930 01/01/1996 31/12/1999 LIBEN Obeche in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1996 31/12/1999 -44034935 01/01/2009 31/12/2500 LIBEN Okoumé and sipo in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2009 31/12/2500 -44034940 01/01/1996 31/12/2008 LIBEN Sipo in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1996 31/12/2008 -44034950 01/01/1996 31/12/1999 LIBEN Limba in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1996 31/12/1999 -44034960 01/01/1996 31/12/1999 LIBEN Tiama, mansonia, ilomba, dibétou, limba and azobé in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1996 31/12/1999 -44034970 01/01/1996 31/12/1999 LIBEN Virola, mahogany "Swietenia spp.", imbuia, balsa, palissandre de Rio, palissandre de Para and palissandre de rose, in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1996 31/12/1999 -44034980 01/01/2000 31/12/2001 LIBEN Abura, afrormosia, ako, alan, andiroba, aningré, avodiré, azobé, balau, balsa, bossé clair, bossé foncé, cativo, cedro, dabema, dibétou, doussié, framiré, freijo, fromager, fuma, geronggang, ilomba, imbua, ipé, jaboty, jelutong, jequitiba, jongkong, kapur, kempas, keruing, kosipo, kotibé, koto, limba, louro, maçaranduba, mahogany, makoré, mansonia, mengkulang, merawan, merbau, merpauh, mersawa, moabi, niangon, nyatoh, obéché, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, palissandre de Rio, palissandre de Para, palissandre de Rose, pau marfim, pulai, punah, ramin, saqui-saqui, sepetir, sucupira, suren, teak, tiama, tola, virola, white lauan, white meranti, white seraya and yellow meranti, in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2000 31/12/2001 -44034985 01/01/2017 31/12/2500 LIBEN Tropical wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. acajou d'Afrique, iroko, sapelli, okoumé and sipo; rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -44034990 01/01/1996 31/12/1999 LIBEN Abura, afrormosia, ako, alan, andiroba, aningré, avodiré, balau, bossé clair, bossé foncé, cativo, cedro, dabema, doussié, framiré, freijo, fromager, fuma, geronggang, ipé, jaboty, jelutong, jequitiba, jongkong, kapur, kempas, keruing, kosipo, kotibé, koto, louro, macaranduba, mahogany (excl. Swietenia spp.), makoré, mengkulang, merawan, merbau, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau marfim, pulai, punah, ramin, saquisaqui, sepetir, sucupira, suren, teak, tola, white lauan, white meranti, white seraya and yellow meranti, in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1996 31/12/1999 -44034995 01/01/2002 31/12/2016 LIBEN Abura, afrormosia, ako, alan, andiroba, aningré, avodiré, azobé, balau, balsa, bossé clair, bossé foncé, cativo, cedro, dabema, dibétou, doussié, framiré, freijo, fromager, fuma, geronggang, ilomba, imbuia, ipé, jaboty, jelutong, jequitiba, jongkong, kapur, kempas, keruing, kosipo, kotibé, koto, limba, louro, maçaranduba, mahogany, makoré, mandioqueira, mansonia, mengkulang, merawan, merbau, merpauh, mersawa, moabi, niangon, nyatoh, obeche, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, palissandre de Rio, palissandre de Para, palissandre de Rose, pau Amarelo, pau marfim, pulai, punah, quaruba, ramin, saqui-saqui, sepetir, sucupira, suren, tauari, teak, tiama, tola, virola, white lauan, white meranti, white seraya and yellow meranti, in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2002 31/12/2016 -440391 01/01/1988 31/12/2001 LIBEN Oak "Quercus spp." in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/2001 -440391 01/01/2002 31/12/2500 LIBEN Oak "Quercus spp." in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2002 31/12/2500 -44039100 01/01/1988 31/12/2001 LIBEN Oak "Quercus spp." in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/2001 -44039100 01/01/2017 31/12/2500 LIBEN Oak "Quercus spp." in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -44039110 01/01/2002 31/12/2016 LIBEN Sawlogs of oak "Quercus spp.", whether or not stripped of bark or sapwood, or roughly squared 01/01/2002 31/12/2016 -44039190 01/01/2002 31/12/2016 LIBEN Oak "Quercus spp." in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. sawlogs; rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2002 31/12/2016 -440392 01/01/1988 31/12/2001 LIBEN Beech "Fagus spp." in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/2001 -440392 01/01/2002 31/12/2016 LIBEN Beech "Fagus spp." in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2002 31/12/2016 -44039200 01/01/1988 31/12/2001 LIBEN Beech "Fagus spp." in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/2001 -44039210 01/01/2002 31/12/2016 LIBEN Sawlogs of beech "Fagus spp.", whether or not stripped of bark or sapwood, or roughly squared 01/01/2002 31/12/2016 -44039290 01/01/2002 31/12/2016 LIBEN Beech "Fagus spp." in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. sawlogs; rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2002 31/12/2016 -440393 01/01/2017 31/12/2500 LIBEN Beech "Fagus spp." in the rough, of which any cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. wood in the form of railway sleepers; wood cut into beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -44039300 01/01/2017 31/12/2500 LIBEN Beech "Fagus spp." in the rough, of which any cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. wood in the form of railway sleepers; wood cut into beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -440394 01/01/2017 31/12/2500 LIBEN Beech "Fagus spp." in the rough, of which no cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -44039400 01/01/2017 31/12/2500 LIBEN Beech "Fagus spp." in the rough, of which no cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -440395 01/01/2017 31/12/2500 LIBEN Birch "Betula spp." in the rough, of which any cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. wood in the form of railway sleepers; wood cut into beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -44039510 01/01/2017 31/12/2500 LIBEN Sawlogs of birch "Betula spp.", of which any cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared 01/01/2017 31/12/2500 -44039590 01/01/2017 31/12/2500 LIBEN Birch "Betula spp." in the rough, of which any cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. sawlogs; wood in the form of railway sleepers; wood cut into beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -440396 01/01/2017 31/12/2500 LIBEN Birch "Betula spp." in the rough, of which no cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -44039600 01/01/2017 31/12/2500 LIBEN Birch "Betula spp." in the rough, of which no cross-sectional dimension is =>15 cm, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -440397 01/01/2017 31/12/2500 LIBEN Poplar and aspen "Populus spp." in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -44039700 01/01/2017 31/12/2500 LIBEN Poplar and aspen "Populus spp." in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -440398 01/01/2017 31/12/2500 LIBEN Eucalyptus "Eucalyptus spp." in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -44039800 01/01/2017 31/12/2500 LIBEN Eucalyptus "Eucalyptus spp." in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood in the form of railway sleepers; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2017 31/12/2500 -440399 01/01/1988 31/12/2500 LIBEN Wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives, coniferous and tropical wood, oak, beech, birch, poplar, aspen and eucalyptus) 01/01/1988 31/12/2500 -44039900 01/01/2017 31/12/2500 LIBEN Wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives, coniferous and tropical wood, oak, beech, birch, poplar, aspen and eucalyptus) 01/01/2017 31/12/2500 -44039910 01/01/1988 31/12/2016 LIBEN Poplar in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1988 31/12/2016 -44039920 01/01/1994 31/12/1998 LIBEN Chestnut wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1994 31/12/1998 -44039930 01/01/1994 31/12/2016 LIBEN Eucalyptus wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1994 31/12/2016 -44039940 01/01/1994 31/12/1995 LIBEN Baboen, mahogany "Swietenia spp.", imbuia and balsa, pallisandre du Brésil and bois de rose femelle, in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1994 31/12/1995 -44039950 01/01/1996 31/12/2001 LIBEN Birch, in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/1996 31/12/2001 -44039951 01/01/2002 31/12/2016 LIBEN Sawlogs of birch, whether or not stripped of bark or sapwood, or roughly squared 01/01/2002 31/12/2016 -44039959 01/01/2002 31/12/2016 LIBEN Birch, in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. sawlogs; rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives) 01/01/2002 31/12/2016 -44039980 01/01/1994 31/12/1995 LIBEN Wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives, tropical wood of subheadings 4403,31 to 4403,35 and 4403.99.40 and coniferous wood, oak, beech, poplar, chestnut and eucalyptus wood) 01/01/1994 31/12/1995 -44039990 01/01/1988 31/12/1993 LIBEN Wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives, tropical wood of subheadings 4403.31 to 4403.35, coniferous wood in general, oak, beech and poplar) 01/01/1988 31/12/1993 -44039995 01/01/2002 31/12/2016 LIBEN Wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives, tropical wood of Subheading Note 1 to this chapter and coniferous wood, oak, beech, poplar, eucalyptus and birch wood) 01/01/2002 31/12/2016 -44039998 01/01/1999 31/12/2001 LIBEN Wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives, tropical wood of Subheading Note 1 to this chapter and coniferous wood, oak, beech, poplar, eucalyptus and birch wood) 01/01/1999 31/12/2001 -44039999 01/01/1996 31/12/1998 LIBEN Wood in the rough, whether or not stripped of bark or sapwood, or roughly squared (excl. rough-cut wood for walking sticks, umbrellas, tool shafts and the like; wood cut into boards or beams, etc.; wood treated with paint, stains, creosote or other preservatives, tropical wood of Subheading Note 1 to this chapter and coniferous wood, oak, beech, poplar, chestnut, eucalyptus and birch wood) 01/01/1996 31/12/1998 -4404 01/01/1988 31/12/2500 LIBEN Hoopwood; split poles; piles, pickets and stakes of wood, pointed but not sawn lengthwise; wooden sticks, roughly trimmed but not turned, bent or otherwise worked, for the manufacture of walking sticks, umbrellas, tool handles or the like; chipwood, wooden slats and strips and the like (excl. hoopwood cut to length and chamfered; brush surrounds and shoe trees) 01/01/1988 31/12/2500 -440410 01/01/1988 31/12/2500 LIBEN Hoopwood; split poles; piles, pickets and stakes of wood, pointed but not sawn lengthwise; wooden sticks, roughly trimmed but not turned, bent or otherwise worked, suitable for the manufacture of walking sticks, umbrellas, tool handles or the like; chipwood and the like, of coniferous wood (excl. hoopwood sawn lengthwise and carved or notched at the ends; brushmounts, lasts) 01/01/1988 31/12/2500 -44041000 01/01/1988 31/12/2500 LIBEN Hoopwood; split poles; piles, pickets and stakes of wood, pointed but not sawn lengthwise; wooden sticks, roughly trimmed but not turned, bent or otherwise worked, suitable for the manufacture of walking sticks, umbrellas, tool handles or the like; chipwood and the like, of coniferous wood (excl. hoopwood sawn lengthwise and carved or notched at the ends; brushmounts, lasts) 01/01/1988 31/12/2500 -440420 01/01/1988 31/12/2500 LIBEN Hoopwood; split poles; piles, pickets and stakes of wood, pointed but not sawn lengthwise; wooden sticks, roughly trimmed but not turned, bent or otherwise worked, suitable for the manufacture of walking sticks, umbrellas, tool handles and the like; chipwood and the like (excl. hoopwood sawn lengthwise and carved or notched at the ends; brushmounts, lasts; coniferous wood in general) 01/01/1988 31/12/2500 -44042000 01/01/1988 31/12/2500 LIBEN Hoopwood; split poles; piles, pickets and stakes of wood, pointed but not sawn lengthwise; wooden sticks, roughly trimmed but not turned, bent or otherwise worked, suitable for the manufacture of walking sticks, umbrellas, tool handles and the like; chipwood and the like (excl. hoopwood sawn lengthwise and carved or notched at the ends; brushmounts, lasts; coniferous wood in general) 01/01/1988 31/12/2500 -4405 01/01/1988 31/12/2500 LIBEN Wood wool; wood flour "wood powder able to pass through a fine", 0,63 mm mesh, sieve with a residue of <= 8% by weight 01/01/1988 31/12/2500 -440500 01/01/1988 31/12/2500 LIBEN Wood wool; wood flour "wood powder able to pass through a fine", 0,63 mm mesh, sieve with a residue of <= 8% by weight 01/01/1988 31/12/2500 -44050000 01/01/1988 31/12/2500 LIBEN Wood wool; wood flour "wood powder able to pass through a fine", 0,63 mm mesh, sieve with a residue of <= 8% by weight 01/01/1988 31/12/2500 -4406 01/01/1988 31/12/2500 LIBEN Railway or tramway sleepers "cross-ties" of wood 01/01/1988 31/12/2500 -440610 01/01/1988 31/12/2016 LIBEN Railway or tramway sleepers "cross-ties" of wood, not impregnated 01/01/1988 31/12/2016 -44061000 01/01/1988 31/12/2016 LIBEN Railway or tramway sleepers "cross-ties" of wood, not impregnated 01/01/1988 31/12/2016 -440611 01/01/2017 31/12/2500 LIBEN Railway or tramway sleepers "cross-ties" of wood, not impregnated, coniferous 01/01/2017 31/12/2500 -44061100 01/01/2017 31/12/2500 LIBEN Railway or tramway sleepers "cross-ties" of wood, not impregnated, coniferous 01/01/2017 31/12/2500 -440612 01/01/2017 31/12/2500 LIBEN Railway or tramway sleepers "cross-ties" of wood, not impregnated, non-coniferous 01/01/2017 31/12/2500 -44061200 01/01/2017 31/12/2500 LIBEN Railway or tramway sleepers "cross-ties" of wood, not impregnated, non-coniferous 01/01/2017 31/12/2500 -440690 01/01/1988 31/12/2016 LIBEN Railway or tramway sleepers "cross-ties" of wood, impregnated 01/01/1988 31/12/2016 -44069000 01/01/1988 31/12/2016 LIBEN Railway or tramway sleepers "cross-ties" of wood, impregnated 01/01/1988 31/12/2016 -440691 01/01/2017 31/12/2500 LIBEN Railway or tramway sleepers "cross-ties" of wood, impregnated, coniferous 01/01/2017 31/12/2500 -44069100 01/01/2017 31/12/2500 LIBEN Railway or tramway sleepers "cross-ties" of wood, impregnated, coniferous 01/01/2017 31/12/2500 -440692 01/01/2017 31/12/2500 LIBEN Railway or tramway sleepers "cross-ties" of wood, impregnated, non-coniferous 01/01/2017 31/12/2500 -44069200 01/01/2017 31/12/2500 LIBEN Railway or tramway sleepers "cross-ties" of wood, impregnated, non-coniferous 01/01/2017 31/12/2500 -4407 01/01/1988 31/12/2500 LIBEN Wood sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/1988 31/12/2500 -440710 01/01/1988 31/12/2016 LIBEN Coniferous wood sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/1988 31/12/2016 -44071010 01/01/1988 31/12/1999 LIBEN Coniferous wood sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, finger-jointed, whether or not planed or sanded 01/01/1988 31/12/1999 -44071015 01/01/2000 31/12/2016 LIBEN Coniferous wood sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded, or end-jointed, whether or not planed or sanded 01/01/2000 31/12/2016 -44071030 01/01/1988 31/12/1995 LIBEN Coniferous wood sawn or cut lengthwise, sliced or barked, with a thickness of > 6 mm, planed (excl. finger-jointed) 01/01/1988 31/12/1995 -44071031 01/01/1996 31/12/2016 LIBEN Spruce of the species "Picea abies Karst." or silver fir "Abies alba Mill.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. end-jointed) 01/01/1996 31/12/2016 -44071033 01/01/1998 31/12/2016 LIBEN Pine of the species "Pinus sylvestris L.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. end-jointed) 01/01/1998 31/12/2016 -44071038 01/01/1998 31/12/2016 LIBEN Coniferous wood sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. end-jointed, spruce of the species "Picea abies Karst.", silver fir "Abies alba Mill." and pine of the species "Pinus sylvestris L.") 01/01/1998 31/12/2016 -44071039 01/01/1996 31/12/1997 LIBEN Coniferous wood sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. finger-jointed, spruce of the kind "Picea abies Karst." and silver fir "Abies alba Mill.") 01/01/1996 31/12/1997 -44071050 01/01/1988 31/12/1999 LIBEN Coniferous wood sawn or chipped lengthwise, sliced or peelked, of a thickness of > 6 mm, sanded (excl. finger-jointed) 01/01/1988 31/12/1999 -44071071 01/01/1988 31/12/1998 LIBEN Small boards of coniferous wood for the manufacture of pencils, of a thickness of > 6 mm 01/01/1988 31/12/1998 -44071079 01/01/1988 31/12/1998 LIBEN Coniferous wood sawn or chipped lengthwise, sliced or peeled, of a length of <= 125 cm and a thickness of < 12,5 mm but > 6 mm (excl. planed, sanded or finger-jointed) 01/01/1988 31/12/1998 -44071091 01/01/1988 31/12/2016 LIBEN Spruce "Picea abies Karst." or silver fir "Abies alba Mill.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed; boards for the manufacture of pencils; wood with a length of <= 125 mm and a thickness of < 12,5 mm) 01/01/1988 31/12/2016 -44071093 01/01/1988 31/12/2016 LIBEN Pine of the species "Pinus silvestris L.", sawn or cut lengthwise, sliced or peeled, with a thickness of > 6 mm (excl. planed, sanded or end-jointed; boards for the manufacture of lead pencils, tracer pencils, colour pencils, slate pencils and other pencils with a wood casing; wood with a length of <= 125 mm and a thickness of < 12,5 mm) 01/01/1988 31/12/2016 -44071098 01/01/1999 31/12/2016 LIBEN Coniferous wood sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed or sanded, and spruce "Picea abies Karst.", silver fir "Abies alba Mill." and pine "Pinus sylvestris L.") 01/01/1999 31/12/2016 -44071099 01/01/1988 31/12/1998 LIBEN Coniferous wood sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or finger-jointed; boards for the manufacture of pencils; wood with a length of <= 125 mm and a thickness of < 12,5 mm; spruce "Picea abies Karst.", silver fir "Abies alba Mill." and pine "Pinus sylvestris L.") 01/01/1988 31/12/1998 -440711 01/01/2017 31/12/2500 LIBEN Pine "Pinus spp." sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/2017 31/12/2500 -44071110 01/01/2017 31/12/2500 LIBEN Pine "Pinus spp." sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, end-jointed, whether or not planed or sanded 01/01/2017 31/12/2500 -44071120 01/01/2017 31/12/2500 LIBEN Pine "Pinus spp." sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. end-jointed) 01/01/2017 31/12/2500 -44071190 01/01/2017 31/12/2500 LIBEN Pine "Pinus spp." sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. end-jointed and planed) 01/01/2017 31/12/2500 -440712 01/01/2017 31/12/2500 LIBEN Fir "Abies spp." and spruce "Picea spp." sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/2017 31/12/2500 -44071210 01/01/2017 31/12/2500 LIBEN Fir "Abies spp." and spruce "Picea spp." sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, end-jointed, whether or not planed or sanded 01/01/2017 31/12/2500 -44071220 01/01/2017 31/12/2500 LIBEN Fir "Abies spp." and spruce "Picea spp." sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. end-jointed) 01/01/2017 31/12/2500 -44071290 01/01/2017 31/12/2500 LIBEN Fir "Abies spp." and spruce "Picea spp." sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. end-jointed and planed) 01/01/2017 31/12/2500 -440719 01/01/2017 31/12/2500 LIBEN Coniferous wood sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm (excl. pine "Pinus spp.", fir "Abies spp." and spruce "Picea spp.") 01/01/2017 31/12/2500 -44071910 01/01/2017 31/12/2500 LIBEN Coniferous wood sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, end-jointed, whether or not planed or sanded (excl. pine "Pinus spp.", fir "Abies spp." and spruce "Picea spp.") 01/01/2017 31/12/2500 -44071920 01/01/2017 31/12/2500 LIBEN Coniferous wood sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. pine "Pinus spp.", fir "Abies spp.", spruce "Picea spp." and end-jointed) 01/01/2017 31/12/2500 -44071990 01/01/2017 31/12/2500 LIBEN Coniferous wood sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. pine "Pinus spp.", fir "Abies spp.", spruce "Picea spp.", end-jointed and planed) 01/01/2017 31/12/2500 -440721 01/01/1988 31/12/1995 LIBEN Dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alen, keruing, ramin, kapur, teak, jongkong, merbau, jelutong and kempas, sawn or cut lengthwise, sliced or barked, whether or not planed, sanded or finger-jointed, with a thickness of > 6 mm 01/01/1988 31/12/1995 -440721 01/01/2007 31/12/2500 LIBEN Mahogany "Swietenia spp.", sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/2007 31/12/2500 -44072110 01/01/1988 31/12/1995 LIBEN Dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alen, keruing, ramin, kapur, teak, jongkong, merbau, jelutong and kempas, sawn or cut lengthwise, sliced or barked, with a thickness of > 6 mm, finger-jointed, whether or not planed or sanded 01/01/1988 31/12/1995 -44072110 01/01/2007 31/12/2500 LIBEN Mahogany "Swietenia spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded, or end-jointed, whether or not planed or sanded 01/01/2007 31/12/2500 -44072131 01/01/1988 31/12/1995 LIBEN Blocks, strips and friezes for parquet flooring, not assembled, of planed dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alen, keruing, ramin, kapur, teak, jongkong, merbau, jelutong and kempas, with a thickness of > 6 mm, planed (excl. veneered or of plywood) 01/01/1988 31/12/1995 -44072139 01/01/1988 31/12/1995 LIBEN Dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alen, keruing, ramin, kapur, teak, jongkong, merbau, jelutong and kempas, sawn or cut lengthwise, sliced or barked, with a thickness of > 6 mm, planed (excl. finger-jointed, plus blocks, strips and friezes for parquet flooring) 01/01/1988 31/12/1995 -44072150 01/01/1988 31/12/1995 LIBEN Dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alen, keruing, ramin, kapur, teak, jongkong, merbau, jelutong and kempas, sawn or cut lengthwise, sliced or barked, with a thickness of > 6 mm, sanded (excl. finger-jointed) 01/01/1988 31/12/1995 -44072160 01/01/1994 31/12/1995 LIBEN Dark red meranti and light red meranti, sawn or cut lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. such products planed, sanded or finger-jointed) 01/01/1994 31/12/1995 -44072170 01/01/1994 31/12/1995 LIBEN White lauan and white meranti, sawn or cut lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. such products planed, sanded or finger-jointed) 01/01/1994 31/12/1995 -44072180 01/01/1994 31/12/1995 LIBEN Meranti bakau, white seraya, yellow meranti, alen, keruing, ramin, kapur, teak, jongkong, merbau, jelutong and kempas, sawn or cut lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. such products planed, sanded or finger-jointed) 01/01/1994 31/12/1995 -44072190 01/01/1988 31/12/1993 LIBEN Dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alen, keruing, ramin, kapur, teak, jongkong, merbau, jelutong and kempas, sawn or cut lengthwise, sliced or barked, with a thickness of > 6 mm (excl. planed, sanded or finger-jointed) 01/01/1988 31/12/1993 -44072191 01/01/2007 31/12/2500 LIBEN Mahogany "Swietenia spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. end-jointed) 01/01/2007 31/12/2500 -44072199 01/01/2007 31/12/2500 LIBEN Mahogany "Swietenia spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed) 01/01/2007 31/12/2500 -440722 01/01/1988 31/12/1995 LIBEN Okoumé, obeche, sapele, utile, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibetou, limba and azobe, sawn or cut lengthwise, sliced or barked, whether or not planed, sanded or finger-jointed, with a thickness of > 6 mm 01/01/1988 31/12/1995 -440722 01/01/2007 31/12/2500 LIBEN Virola, imbuia and balsa, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded, or end-jointed, whether or not planed 01/01/2007 31/12/2500 -44072210 01/01/1988 31/12/1995 LIBEN Okoumé, obeche, sapele, utile, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibetou, limba and azobe, sawn or cut lengthwise, sliced or barked, with a thickness of > 6 mm, finger-jointed, whether or not planed or sanded 01/01/1988 31/12/1995 -44072210 01/01/2007 31/12/2500 LIBEN Virola, imbuia and balsa, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded, or end-jointed, whether or not planed or sanded 01/01/2007 31/12/2500 -44072231 01/01/1988 31/12/1995 LIBEN Blocks, strips and friezes for parquet flooring, not assembled, of okoumé, obeche, sapele, utile, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibetou, limba and azobe, with a thickness of > 6 mm (excl. veneered and plywood) 01/01/1988 31/12/1995 -44072239 01/01/1988 31/12/1995 LIBEN Okoumé, obeche, sapele, utile, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibetou, limba and azobe, sawn or cut lengthwise, sliced or barked, with a thickness of > 6mm, planed (excl. finger-jointed and blocks, strips and friezes for parquet flooring) 01/01/1988 31/12/1995 -44072250 01/01/1988 31/12/1995 LIBEN Okoumé, obeche, sapele, utile, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibetou, limba and azobe, sawn or cut lengthwise, sliced or barked, with a thickness of > 6mm, sanded (excl. finger-jointed) 01/01/1988 31/12/1995 -44072260 01/01/1994 31/12/1995 LIBEN Azobé, sawn or cut lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. such products planed, sanded or finger-jointed) 01/01/1994 31/12/1995 -44072280 01/01/1994 31/12/1995 LIBEN Okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou and limba woods, sawn or cut lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. such products planed, sanded or finger-jointed) 01/01/1994 31/12/1995 -44072290 01/01/1988 31/12/1993 LIBEN Okoume, obeche, sapele, utile, african mahogany, makore, iroko, tiama, mansonia, ilomba, dibetou, limba and azobe, sawn or cut lengthwise, sliced or barked, with a thickness of > 6mm (excl. planed, sanded or finger-jointed) 01/01/1988 31/12/1993 -44072291 01/01/2007 31/12/2500 LIBEN Virola, imbuia and balsa, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. end-jointed) 01/01/2007 31/12/2500 -44072299 01/01/2007 31/12/2500 LIBEN Virola, imbuia and balsa, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed) 01/01/2007 31/12/2500 -440723 01/01/1988 31/12/1995 LIBEN Baboen, mahogany "Swietenia spp.", imbuia and balsa, sawn or cut lengthwise, sliced or barked, whether or not planed, sanded or finger-jointed, with a thickness of > 6 mm 01/01/1988 31/12/1995 -44072310 01/01/1988 31/12/1995 LIBEN Baboen, mahogany "Swietenia spp.", imbuia and balsa, sawn or cut lengthwise, sliced or barked, with a thickness of > 6 mm, finger-jointed, whether or not planed or sanded 01/01/1988 31/12/1995 -44072330 01/01/1988 31/12/1995 LIBEN Baboen, mahogany "Swietenia spp.", imbuia and balsa, sawn or cut lengthwise, sliced or barked, with a thickness of > 6mm, planed (excl. finger-jointed) 01/01/1988 31/12/1995 -44072350 01/01/1988 31/12/1995 LIBEN Baboen, mahogany "Swietenia spp.", imbuia and balsa, sawn or cut lengthwise, sliced or barked, with a thickness of > 6 mm, sanded (excl. finger-jointed) 01/01/1988 31/12/1995 -44072390 01/01/1988 31/12/1995 LIBEN Baboen, mahogany "Swietenia spp.", imbuia and balsa, sawn or cut lengthwise, sliced or barked, with a thickness of > 6 mm (excl. planed, sanded or finger-jointed) 01/01/1988 31/12/1995 -440724 01/01/1996 31/12/2006 LIBEN Virola, mahogany "Swietenia spp.", imbuia and balsa, sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/1996 31/12/2006 -44072410 01/01/1996 31/12/1999 LIBEN Virola, mahogany "Swietenia spp.", imbuia and balsa, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, finger-jointed, whether or not planed or sanded 01/01/1996 31/12/1999 -44072415 01/01/2000 31/12/2006 LIBEN Virola, mahogany "Swietenia spp.", imbuia and balsa, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded, or end-jointed, whether or not planed 01/01/2000 31/12/2006 -44072430 01/01/1996 31/12/2006 LIBEN Virola, mahogany "Swietenia spp.", imbuia and balsa, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. end-jointed) 01/01/1996 31/12/2006 -44072450 01/01/1996 31/12/1999 LIBEN Virola, mahogany "Swietenia spp.", imbuia and balsa, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded (excl. finger-jointed) 01/01/1996 31/12/1999 -44072490 01/01/1996 31/12/2006 LIBEN Virola, mahogany "Swietenia spp.", imbuia and balsa, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed) 01/01/1996 31/12/2006 -440725 01/01/1996 31/12/2500 LIBEN Dark red meranti, light red meranti and meranti bakau, sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/1996 31/12/2500 -44072510 01/01/1996 31/12/2500 LIBEN Dark red meranti, light red meranti and meranti bakau, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, end-jointed, whether or not planed or sanded 01/01/1996 31/12/2500 -44072530 01/01/2000 31/12/2500 LIBEN Dark red meranti, light red meranti and meranti bakau, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. end-jointed) 01/01/2000 31/12/2500 -44072531 01/01/1996 31/12/1999 LIBEN Blocks, strips and friezes for parquet or wood block flooring, not assembled, of planed dark red meranti, light red meranti or meranti bakau, of a thickness of > 6 mm (excl. veneered or of plywood) 01/01/1996 31/12/1999 -44072539 01/01/1996 31/12/1999 LIBEN Dark red meranti, light red meranti and meranti bakau, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. finger-jointed, and blocks, strips and friezes for parquet or wood block flooring) 01/01/1996 31/12/1999 -44072550 01/01/1996 31/12/2500 LIBEN Dark red meranti, light red meranti and meranti bakau, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded (excl. end-jointed) 01/01/1996 31/12/2500 -44072560 01/01/1996 31/12/2003 LIBEN Dark red meranti and light red meranti, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. such products planed, sanded or end-jointed) 01/01/1996 31/12/2003 -44072580 01/01/1996 31/12/2003 LIBEN Meranti bakau, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. such products planed, sanded or end-jointed) 01/01/1996 31/12/2003 -44072590 01/01/2004 31/12/2500 LIBEN Dark red meranti, light red meranti and meranti bakau, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. such products planed, sanded or end-jointed) 01/01/2004 31/12/2500 -440726 01/01/1996 31/12/2500 LIBEN White lauan, white meranti, white seraya, yellow meranti and alan, sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/1996 31/12/2500 -44072610 01/01/1996 31/12/2500 LIBEN White lauan, white meranti, white seraya, yellow meranti and alan, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, end-jointed, whether or not planed or sanded 01/01/1996 31/12/2500 -44072630 01/01/2000 31/12/2500 LIBEN White lauan, white meranti, white seraya, yellow meranti and alan, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. end-jointed) 01/01/2000 31/12/2500 -44072631 01/01/1996 31/12/1999 LIBEN Blocks, strips and friezes for parquet or wood block flooring, not assembled, of planed white lauan, white meranti, white seraya, yellow meranti and alan, of a thickness of > 6 mm, planed (excl. veneered or of plywood) 01/01/1996 31/12/1999 -44072639 01/01/1996 31/12/1999 LIBEN White lauan, white meranti, white seraya, yellow meranti and alan, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. finger-jointed, plus blocks, strips and friezes for parquet or wood block flooring) 01/01/1996 31/12/1999 -44072650 01/01/1996 31/12/2500 LIBEN White lauan, white meranti, white seraya, yellow meranti and alan, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded (excl. end-jointed) 01/01/1996 31/12/2500 -44072670 01/01/1996 31/12/1999 LIBEN White lauan and white meranti, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. such products planed, sanded or finger-jointed) 01/01/1996 31/12/1999 -44072680 01/01/1996 31/12/1999 LIBEN White seraya, yellow meranti and alan, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. such products planed, sanded or finger-jointed) 01/01/1996 31/12/1999 -44072690 01/01/2000 31/12/2500 LIBEN White lauan, white meranti, white seraya, yellow meranti and alan, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed) 01/01/2000 31/12/2500 -440727 01/01/2007 31/12/2500 LIBEN Sapelli, sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/2007 31/12/2500 -44072710 01/01/2007 31/12/2500 LIBEN Sapelli, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded, or end-jointed, whether or not planed or sanded 01/01/2007 31/12/2500 -44072791 01/01/2007 31/12/2500 LIBEN Sapelli, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. end-jointed) 01/01/2007 31/12/2500 -44072799 01/01/2007 31/12/2500 LIBEN Sapelli, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed) 01/01/2007 31/12/2500 -440728 01/01/2007 31/12/2500 LIBEN Iroko, sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/2007 31/12/2500 -44072810 01/01/2007 31/12/2500 LIBEN Iroko, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded, or end-jointed, whether or not planed or sanded 01/01/2007 31/12/2500 -44072891 01/01/2007 31/12/2500 LIBEN Iroko, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. end-jointed) 01/01/2007 31/12/2500 -44072899 01/01/2007 31/12/2500 LIBEN Iroko, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed) 01/01/2007 31/12/2500 -440729 01/01/1996 31/12/2500 LIBEN Tropical wood, sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm (excl. virola, mahogany "Swietenia spp.", imbuia, balsa, dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alan, sapelli and iroko) 01/01/1996 31/12/2500 -44072905 01/01/2000 31/12/2001 LIBEN Keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, okoumé, obéché, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, palissandre de Rio, palissandre de Para, palissandre de rose, abura, afrormosia, ako, andiroba, aningré, avodiré, balau, bossé clair, bossé foncé, cativo, cedro, dabema, doussié, framiré, freijo, fromager, fuma, geronggang, ipé, jaboty, jequitiba, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), mengkulang, merawan, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau marfim, pulai, punah, saqui-saqui, sepetir, sucupira, suren and tola, sawn or chipped lengthwise, sliced or peeled, of a thickness > 6 mm, finger-jointed, whether or not planed or sanded 01/01/2000 31/12/2001 -44072905 01/01/2002 31/12/2006 LIBEN Keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, palissandre de Rio, palissandre de Para, palissandre de rose, abura, afrormosia, ako, andiroba, aningré, avodiré, balau, bossé clair, bossé foncé, cativo, cedro, dabema, doussié, framiré, freijo, fromager, fuma, geronggang, ipé, jaboty, jequitiba, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), mandioqueira, mengkulang, merawan, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau Amarelo, pau marfim, pulai, punah, quaruba, saqui-saqui, sepetir, sucupira, suren, tauari and tola, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, end-jointed, whether or not planed or sanded 01/01/2002 31/12/2006 -44072910 01/01/1996 31/12/1999 LIBEN Keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, okoumé, obéché, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, palissandre de Rio, palissandre de Para and palissandre de rose, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, finger-jointed, whether or not planed or sanded 01/01/1996 31/12/1999 -44072915 01/01/2007 31/12/2500 LIBEN Keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, okoumé, obeche, sipo, acajou d'Afrique, makoré, tiama, mansonia, ilomba, dibétou, limba, azobé, palissandre de Rio, palissandre de Para, palissandre de rose, abura, afrormosia, ako, andiroba, aningré, avodiré, balau, bossé clair, bossé foncé, cativo, cedro, dabema, doussié, framiré, freijo, fromager, fuma, geronggang, ipé, jaboty, jequitiba, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), mandioqueira, mengkulang, merawan, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau Amarelo, pau marfim, pulai, punah, quaruba, saqui-saqui, sepetir, sucupira, suren, tauari and tola, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, end-jointed, whether or not planed or sanded 01/01/2007 31/12/2500 -44072920 01/01/1996 31/12/2500 LIBEN Palissandre de Rio, palissandre de Para and palissandre de Rose, sawn or chipped lengthwise, sliced or peeled, planed, of a thickness of > 6 mm (excl. end-jointed) 01/01/1996 31/12/2500 -44072925 01/01/2007 31/12/2016 LIBEN Keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, okoumé, obeche, sipo, acajou d'Afrique, makoré, tiama, mansonia, ilomba, dibétou, limba and azobé, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. end-jointed) 01/01/2007 31/12/2016 -44072930 01/01/2001 31/12/2006 LIBEN Keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba and azobé, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. end-jointed) 01/01/2001 31/12/2006 -44072931 01/01/1996 31/12/2000 LIBEN Blocks, strips and friezes for parquet or wood block flooring, planed, not assembled, of keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, okoumé, obéché, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba and azobé, of a thickness of > 6 mm (excl. veneered and plywood) 01/01/1996 31/12/2000 -44072939 01/01/1996 31/12/2000 LIBEN Keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, okoumé, obéché, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba and azobé, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. finger-jointed and blocks, strips and friezes for parquet or wood block flooring) 01/01/1996 31/12/2000 -44072945 01/01/2007 31/12/2016 LIBEN Keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, okoumé, obeche, sipo, acajou d'Afrique, makoré, tiama, mansonia, ilomba, dibétou, limba, azobé, palissandre de Rio, palissandre de Para and palissandre de rose, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded (excl. end-jointed) 01/01/2007 31/12/2016 -44072950 01/01/1996 31/12/2006 LIBEN Keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, palissandre de Rio, palissandre de Para and palissandre de rose, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded (excl. end-jointed) 01/01/1996 31/12/2006 -44072960 01/01/2012 31/12/2016 LIBEN Keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, okoumé, obeche, sipo, acajou d'Afrique, makoré, tiama, mansonia, ilomba, dibétou, limba, azobé, palissandre de Rio, palissandre de Para and palissandre de rose, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. such products planed, sanded or end-jointed) 01/01/2012 31/12/2016 -44072961 01/01/1996 31/12/2011 LIBEN Azobé, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. such products planed, sanded or end-jointed) 01/01/1996 31/12/2011 -44072968 01/01/2007 31/12/2011 LIBEN Keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, okoumé, obeche, sipo, acajou d'Afrique, makoré, tiama, mansonia, ilomba, dibétou, limba, palissandre de Rio, palissandre de Para and palissandre de rose, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. such products planed, sanded or end-jointed) 01/01/2007 31/12/2011 -44072969 01/01/1996 31/12/2006 LIBEN Keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, palissandre de Rio, palissandre de Para and palissandre de rose, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. such products planed, sanded or end-jointed) 01/01/1996 31/12/2006 -44072970 01/01/1996 31/12/1999 LIBEN Abura, afrormosia, ako, andiroba, aningré, avodiré, balau, bossé clair, bossé foncé, cativo, cedro, dabema, doussié, framiré, freijo, fromager, fuma, geronggang, ipé, jaboty, jequitiba, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), mengkulang, merawan, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau marfim, pulai, punah, saqui-saqui, sepetir, sucupira, suren and tola, sawn or chipped lengthwise, sliced or peeled, of a thickness > 6 mm, finger-jointed, whether or not planed or sanded 01/01/1996 31/12/1999 -44072983 01/01/1996 31/12/2001 LIBEN Abura, afrormosia, ako, andiroba, aningré, avodiré, balau, bossé clair, bossé foncé, cativo, cedro, dabema, doussié, framiré, freijo, fromager, fuma, geronggang, ipé, jaboty, jequitiba, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), mengkulang, merawan, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau marfim, pulai, punah, saqui-saqui, sepetir, sucupira, suren and tola, sawn or chipped lengthwise, sliced or peeled, of a thickness > 6 mm, planed (excl. finger-jointed) 01/01/1996 31/12/2001 -44072983 01/01/2002 31/12/2016 LIBEN Abura, afrormosia, ako, andiroba, aningré, avodiré, balau, bossé clair, bossé foncé, cativo, cedro, dabema, doussié, framiré, freijo, fromager, fuma, geronggang, ipé, jaboty, jequitiba, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), mandioqueira, mengkulang, merawan, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau Amarelo, pau marfim, pulai, punah, quaruba, saqui-saqui, sepetir, sucupira, suren, tauari and tola, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. end-jointed) 01/01/2002 31/12/2016 -44072983 01/01/2017 31/12/2500 LIBEN Abura, afrormosia, ako, andiroba, aningré, avodiré, balau, bossé clair, bossé foncé, cativo, cedro, dabema, doussié, framiré, freijo, fromager, fuma, geronggang, ipé, jaboty, jequitiba, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), mandioqueira, mengkulang, merawan, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau Amarelo, pau marfim, pulai, punah, quaruba, saqui-saqui, sepetir, sucupira, suren, tauari, tola, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, okoumé, obeche, sipo, acajou d'Afrique, makoré, tiama, mansonia, ilomba, dibétou, limba and azobé, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. end-jointed) 01/01/2017 31/12/2500 -44072985 01/01/1996 31/12/2001 LIBEN Abura, afrormosia, ako, andiroba, aningré, avodiré, balau, bossé clair, bossé foncé, cativo, cedro, dabema, doussié, framiré, freijo, fromager, fuma, geronggang, ipé, jaboty, jequitiba, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), mengkulang, merawan, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau marfim, pulai, punah, saqui-saqui, sepetir, sucupira, suren and tola, sawn or chipped lengthwise, sliced or peeled, of a thickness > 6 mm, sanded (excl. finger-jointed) 01/01/1996 31/12/2001 -44072985 01/01/2002 31/12/2016 LIBEN Abura, afrormosia, ako, andiroba, aningré, avodiré, balau, bossé clair, bossé foncé, cativo, cedro, dabema, doussié, framiré, freijo, fromager, fuma, geronggang, ipé, jaboty, jequitiba, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), mandioqueira, mengkulang, merawan, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau Amarelo, pau marfim, pulai, punah, quaruba, saqui-saqui, sepetir, sucupira, suren, tauari and tola, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded (excl. end-jointed) 01/01/2002 31/12/2016 -44072985 01/01/2017 31/12/2500 LIBEN Abura, afrormosia, ako, andiroba, aningré, avodiré, balau, bossé clair, bossé foncé, cativo, cedro, dabema, doussié, framiré, freijo, fromager, fuma, geronggang, ipé, jaboty, jequitiba, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), mandioqueira, mengkulang, merawan, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau Amarelo, pau marfim, pulai, punah, quaruba, saqui-saqui, sepetir, sucupira, suren, tauari, tola, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, okoumé, obeche, sipo, acajou d'Afrique, makoré, tiama, mansonia, ilomba, dibétou, limba, azobé, palissandre de Rio, palissandre de Para and palissandre de Rose, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded (excl. end-jointed and planed) 01/01/2017 31/12/2500 -44072995 01/01/2002 31/12/2016 LIBEN Abura, afrormosia, ako, andiroba, aningré, avodiré, balau, bossé clair, bossé foncé, cativo, cedro, dabema, doussié, framiré, freijo, fromager, fuma, geronggang, ipé, jaboty, jequitiba, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), mandioqueira, mengkulang, merawan, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau Amarelo, pau marfim, pulai, punah, quaruba, saqui-saqui, sepetir, sucupira, suren, tauari and tola, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. end-jointed, planed or sanded) 01/01/2002 31/12/2016 -44072995 01/01/2017 31/12/2500 LIBEN Abura, afrormosia, ako, andiroba, aningré, avodiré, balau, bossé clair, bossé foncé, cativo, cedro, dabema, doussié, framiré, freijo, fromager, fuma, geronggang, ipé, jaboty, jequitiba, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), mandioqueira, mengkulang, merawan, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau Amarelo, pau marfim, pulai, punah, quaruba, saqui-saqui, sepetir, sucupira, suren, tauari, tola, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, okoumé, obeche, sipo, acajou d'Afrique, makoré, tiama, mansonia, ilomba, dibétou, limba, azobé, palissandre de Rio, palissandre de Para and palissandre de Rose, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. end-jointed, planed and sanded) 01/01/2017 31/12/2500 -44072996 01/01/2017 31/12/2500 LIBEN Tropical wood sawn or cut lengthwise, sliced or peeled, of a thickness of > 6 mm, planed, or end-jointed, whether or not planed or sanded (excl. abura, acajou d'Afrique, afrormosia, ako, alan, andiroba, aningré, avodiré, azobé, balau, balsa, bossé clair, bossé foncé, cativo, cedro, dabema, dark red meranti, dibétou, doussié, framiré, freijo, fromager, fuma, geronggang, ilomba, imbuia, ipé, iroko, jaboty, jelutong, jequitiba, jongkong, kapur, kempas, keruing, kosipo, kotibé, koto, light red meranti, limba, louro, maçaranduba, mahogany, makoré, mandioqueira, mansonia, mengkulang, meranti bakau, merawan, merbau, merpauh, mersawa, moabi, niangon, nyatoh, obeche, okoumé, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, palissandre de Para, palissandre de Rio, palissandre de Rose, pau Amarelo, pau marfim, pulai, punah, quaruba, ramin, sapelli, saqui-saqui, sepetir, sipo, sucupira, suren, tauari, teak, tiama, tola, virola, white lauan, white meranti, white seraya and yellow meranti) 01/01/2017 31/12/2500 -44072997 01/01/2017 31/12/2500 LIBEN Tropical wood, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded (excl. planed, end-jointed, and abura, acajou d'Afrique, afrormosia, ako, alan, andiroba, aningré, avodiré, azobé, balau, balsa, bossé clair, bossé foncé, cativo, cedro, dabema, dark red meranti, dibétou, doussié, framiré, freijo, fromager, fuma, geronggang, ilomba, imbuia, ipé, iroko, jaboty, jelutong, jequitiba, jongkong, kapur, kempas, keruing, kosipo, kotibé, koto, light red meranti, limba, louro, maçaranduba, mahogany, makoré, mandioqueira, mansonia, mengkulang, meranti bakau, merawan, merbau, merpauh, mersawa, moabi, niangon, nyatoh, obeche, okoumé, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, palissandre de Para, palissandre de Rio, palissandre de Rose, pau Amarelo, pau marfim, pulai, punah, quaruba, ramin, sapelli, saqui-saqui, sepetir, sipo, sucupira, suren, tauari, teak, tiama, tola, virola, white lauan, white meranti, white seraya and yellow meranti) 01/01/2017 31/12/2500 -44072998 01/01/2017 31/12/2500 LIBEN Tropical wood, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded, end-jointed, and abura, acajou d'Afrique, afrormosia, ako, alan, andiroba, aningré, avodiré, azobé, balau, balsa, bossé clair, bossé foncé, cativo, cedro, dabema, dark red meranti, dibétou, doussié, framiré, freijo, fromager, fuma, geronggang, ilomba, imbuia, ipé, iroko, jaboty, jelutong, jequitiba, jongkong, kapur, kempas, keruing, kosipo, kotibé, koto, light red meranti, limba, louro, maçaranduba, mahogany, makoré, mandioqueira, mansonia, mengkulang, meranti bakau, merawan, merbau, merpauh, mersawa, moabi, niangon, nyatoh, obeche, okoumé, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, palissandre de Para, palissandre de Rio, palissandre de Rose, pau Amarelo, pau marfim, pulai, punah, quaruba, ramin, sapelli, saqui-saqui, sepetir, sipo, sucupira, suren, tauari, teak, tiama, tola, virola, white lauan, white meranti, white seraya and yellow meranti) 01/01/2017 31/12/2500 -44072999 01/01/1996 31/12/2001 LIBEN Abura, afrormosia, ako, andiroba, aningré, avodiré, balau, bossé clair, bossé foncé, cativo, cedro, dabema, doussié, framiré, freijo, fromager, fuma, geronggang, ipé, jaboty, jequitiba, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), mengkulang, merawan, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau marfim, pulai, punah, saqui-saqui, sepetir, sucupira, suren and tola, sawn or chipped lengthwise, sliced or peeled, of a thickness > 6 mm (excl. finger-jointed, planed or sanded) 01/01/1996 31/12/2001 -440791 01/01/1988 31/12/2500 LIBEN Oak "Quercus spp.", sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/1988 31/12/2500 -44079110 01/01/1988 31/12/1999 LIBEN Oak "Quercus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, finger-jointed, whether or not planed or sanded 01/01/1988 31/12/1999 -44079115 01/01/2000 31/12/2500 LIBEN Oak "Quercus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded, or end-jointed, whether or not planed or sanded 01/01/2000 31/12/2500 -44079131 01/01/1988 31/12/2500 LIBEN Blocks, strips and friezes of oak "Quercus spp." for parquet or wood block flooring, not assembled, of a thickness of > 6 mm, planed (excl. veneered or of plywood) 01/01/1988 31/12/2500 -44079139 01/01/1988 31/12/2500 LIBEN Oak "Quercus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. end-jointed and blocks, strips and friezes for parquet or wood block flooring) 01/01/1988 31/12/2500 -44079150 01/01/1988 31/12/1999 LIBEN Oak "Quercus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded (excl. finger-jointed) 01/01/1988 31/12/1999 -44079190 01/01/1988 31/12/2500 LIBEN Oak "Quercus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed) 01/01/1988 31/12/2500 -440792 01/01/1988 31/12/2500 LIBEN Beech "Fagus spp.", sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/1988 31/12/2500 -44079200 01/01/2000 31/12/2500 LIBEN Beech "Fagus spp.", sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/2000 31/12/2500 -44079210 01/01/1988 31/12/1999 LIBEN Beech "Fagus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, finger-jointed, whether or not planed or sanded 01/01/1988 31/12/1999 -44079230 01/01/1988 31/12/1999 LIBEN Beech "Fagus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed (excl. finger-jointed) 01/01/1988 31/12/1999 -44079250 01/01/1988 31/12/1999 LIBEN Beech "Fagus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded (excl. finger-jointed) 01/01/1988 31/12/1999 -44079290 01/01/1988 31/12/1999 LIBEN Beech "Fagus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or finger-jointed) 01/01/1988 31/12/1999 -440793 01/01/2007 31/12/2500 LIBEN Maple "Acer spp.", sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/2007 31/12/2500 -44079310 01/01/2007 31/12/2500 LIBEN Maple "Acer spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed, or end-jointed, whether or not planed or sanded 01/01/2007 31/12/2500 -44079391 01/01/2007 31/12/2500 LIBEN Maple "Acer spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded (excl. end-jointed) 01/01/2007 31/12/2500 -44079399 01/01/2007 31/12/2500 LIBEN Maple "Acer spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed) 01/01/2007 31/12/2500 -440794 01/01/2007 31/12/2500 LIBEN Cherry "Prunus spp.", sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/2007 31/12/2500 -44079410 01/01/2007 31/12/2500 LIBEN Cherry "Prunus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed, or end-jointed, whether or not planed or sanded 01/01/2007 31/12/2500 -44079491 01/01/2007 31/12/2500 LIBEN Cherry "Prunus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded (excl. end-jointed) 01/01/2007 31/12/2500 -44079499 01/01/2007 31/12/2500 LIBEN Cherry "Prunus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed) 01/01/2007 31/12/2500 -440795 01/01/2007 31/12/2500 LIBEN Ash "Fraxinus spp.", sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/2007 31/12/2500 -44079510 01/01/2007 31/12/2500 LIBEN Ash "Fraxinus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed, or end-jointed, whether or not planed or sanded 01/01/2007 31/12/2500 -44079591 01/01/2007 31/12/2500 LIBEN Ash "Fraxinus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded (excl. end-jointed) 01/01/2007 31/12/2500 -44079599 01/01/2007 31/12/2500 LIBEN Ash "Fraxinus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed) 01/01/2007 31/12/2500 -440796 01/01/2017 31/12/2500 LIBEN Birch "Betula spp.", sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/2017 31/12/2500 -44079610 01/01/2017 31/12/2500 LIBEN Birch "Betula spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed, or end-jointed, whether or not planed or sanded 01/01/2017 31/12/2500 -44079691 01/01/2017 31/12/2500 LIBEN Birch "Betula spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded (excl. end-jointed) 01/01/2017 31/12/2500 -44079699 01/01/2017 31/12/2500 LIBEN Birch "Betula spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed) 01/01/2017 31/12/2500 -440797 01/01/2017 31/12/2500 LIBEN Poplar and aspen "Populus spp.", sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm 01/01/2017 31/12/2500 -44079710 01/01/2017 31/12/2500 LIBEN Poplar and aspen "Populus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, planed, or end-jointed, whether or not planed or sanded 01/01/2017 31/12/2500 -44079791 01/01/2017 31/12/2500 LIBEN Poplar and aspen "Populus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm, sanded (excl. end-jointed) 01/01/2017 31/12/2500 -44079799 01/01/2017 31/12/2500 LIBEN Poplar and aspen "Populus spp.", sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed) 01/01/2017 31/12/2500 -440799 01/01/1988 31/12/2500 LIBEN Wood, sawn or chipped lengthwise, sliced or peeled, whether or not planed, sanded or end-jointed, of a thickness of > 6 mm (excl. tropical wood, coniferous wood, oak "Quercus spp.", beech "Fagus spp.", maple "Acer spp.", cherry "Prunus spp.", ash "Fraxinus spp.", birch "Betula spp.", poplar and aspen "Populus spp.") 01/01/1988 31/12/2500 -44079910 01/01/1988 31/12/1989 LIBEN Wood, sawn or cut lengthwise, sliced or barked, with a thickness of > 6 mm, finger-jointed, whether or not planned or sanded (excl. tropical wood of subheadings 4407.21 to 4407.23, coniferous wood, oak 'quercus spp.' and beech 'fagus spp.') 01/01/1988 31/12/1989 -44079910 01/01/1996 31/12/2001 LIBEN Wood sawn or cut lengthwise, sliced or peeled, finger-jointed, of a thickness > 6 mm, finger-jointed, whether or not planed or sanded (excl. tropical wood specified in Subheading Note 1 to this chapter, coniferous wood, oak "Quercus spp." and beech "Fagus spp.") 01/01/1996 31/12/2001 -44079910 01/01/2002 31/12/2006 LIBEN Wood sawn or cut lengthwise, sliced or peeled, end-jointed, of a thickness of > 6 mm, end-jointed, whether or not planed or sanded (excl. tropical wood specified in Subheading Note 1 to this chapter, coniferous wood, oak "Quercus spp." and beech "Fagus spp.") 01/01/2002 31/12/2006 -44079911 01/01/1990 31/12/1995 LIBEN Palissandre du bresil or bois de rose femelle, sawn or chipped lengthwise, sliced or peeled, finger-jointed, of a thickness > 6 mm 01/01/1990 31/12/1995 -44079919 01/01/1990 31/12/1995 LIBEN Wood sawn or chipped lengthwise, sliced or peeled, finger-jointed, of a thickness > 6 mm (excl. 4407.10.10 to 4407.99.11) 01/01/1990 31/12/1995 -44079920 01/01/2007 31/12/2011 LIBEN Wood sawn or cut lengthwise, sliced or peeled, end-jointed, of a thickness of > 6 mm, end-jointed, whether or not planed or sanded (excl. tropical wood specified in Subheading Note 1 to this chapter, coniferous wood, oak "Quercus spp.", beech "Fagus spp.", maple "Acer spp.", cherry "Prunus spp." and ash "Fraxinus spp.") 01/01/2007 31/12/2011 -44079925 01/01/2007 31/12/2011 LIBEN Wood sawn or cut lengthwise, sliced or peeled, planed, of a thickness of > 6 mm (excl. end-jointed; tropical wood specified in Subheading Note 1 to this chapter, coniferous wood, oak "Quercus spp.", beech "Fagus spp.", maple "Acer spp.", cherry "Prunus spp." and ash "Fraxinus spp.") 01/01/2007 31/12/2011 -44079927 01/01/2012 31/12/2016 LIBEN Wood sawn or cut lengthwise, sliced or peeled, of a thickness of > 6 mm, planed, or end-jointed, whether or not planed or sanded (excl. tropical wood specified in Subheading Note 2 to this chapter, coniferous wood, oak "Quercus spp.", beech "Fagus spp.", maple "Acer spp.", cherry "Prunus spp." and ash "Fraxinus spp.") 01/01/2012 31/12/2016 -44079927 01/01/2017 31/12/2500 LIBEN Wood sawn or cut lengthwise, sliced or peeled, of a thickness of > 6 mm, planed, or end-jointed, whether or not planed or sanded (excl. tropical wood, coniferous wood, oak "Quercus spp.", beech "Fagus spp.", maple "Acer spp.", cherry "Prunus spp.", ash "Fraxinus spp.", birch "Betula spp.", poplar and aspen "Populus spp.") 01/01/2017 31/12/2500 -44079930 01/01/1988 31/12/1989 LIBEN Wood, sawn or cut lengthwise, sliced or barked, with a thickness of > 6 mm, planed (excl. finger-jointed; tropical wood of subheadings 4407.21 to 4407.23, coniferous wood, oak 'quercus spp.' and beech 'fagus spp.') 01/01/1988 31/12/1989 -44079930 01/01/1996 31/12/2001 LIBEN Wood sawn or cut lengthwise, sliced or peeled, planed, of a thickness > 6 mm (excl. finger-jointed; tropical wood specified in Subheading Note 1 to this chapter, coniferous wood, oak "Quercus spp." and beech "Fagus spp.") 01/01/1996 31/12/2001 -44079930 01/01/2002 31/12/2006 LIBEN Wood sawn or cut lengthwise, sliced or peeled, planed, of a thickness of > 6 mm (excl. end-jointed; tropical wood specified in Subheading Note 1 to this chapter, coniferous wood, oak "Quercus spp." and beech "Fagus spp.") 01/01/2002 31/12/2006 -44079931 01/01/1990 31/12/1995 LIBEN Palissandre du bresil or bois de rose femelle, sawn or chipped lengthwise, sliced or peeled, planed, of a thickness > 6 mm 01/01/1990 31/12/1995 -44079939 01/01/1990 31/12/1995 LIBEN Wood sawn or chipped lengthwise, sliced or peeled, planed, of a thickness > 6 mm (excl. 4407.10.10 to 4407.99.31) 01/01/1990 31/12/1995 -44079940 01/01/2007 31/12/2016 LIBEN Wood sawn or cut lengthwise, sliced or peeled, sanded, of a thickness of > 6 mm (excl. end-jointed; tropical wood specified in Subheading Note 2 to this chapter, coniferous wood, oak "Quercus spp.", beech "Fagus spp.", maple "Acer spp.", cherry "Prunus spp." and ash "Fraxinus spp.") 01/01/2007 31/12/2016 -44079940 01/01/2017 31/12/2500 LIBEN Wood sawn or cut lengthwise, sliced or peeled, sanded, of a thickness of > 6 mm (excl. end-jointed; tropical wood, coniferous wood, oak "Quercus spp.", beech "Fagus spp.", maple "Acer spp.", cherry "Prunus spp.", ash "Fraxinus spp.", birch "Betula spp.", poplar and aspen "Populus spp.") 01/01/2017 31/12/2500 -44079950 01/01/1988 31/12/1989 LIBEN Wood, sawn or cut lengthwise, sliced or barked, with a thickness of > 6 mm, sanded (excl. finger-jointed; tropical wood of subheadings 4407.21 to 4407.23, coniferous wood, oak 'quercus spp.' and beech 'fagus spp.') 01/01/1988 31/12/1989 -44079950 01/01/1996 31/12/2001 LIBEN Wood sawn or cut lengthwise, sliced or peeled, sanded, of a thickness > 6 mm (excl. finger-jointed; tropical wood specified in Subheading Note 1 to this chapter, coniferous wood, oak "Quercus spp." and beech "Fagus spp.") 01/01/1996 31/12/2001 -44079950 01/01/2002 31/12/2006 LIBEN Wood sawn or cut lengthwise, sliced or peeled, sanded, of a thickness of > 6 mm (excl. end-jointed; tropical wood specified in Subheading Note 1 to this chapter, coniferous wood, oak "Quercus spp." and beech "Fagus spp.") 01/01/2002 31/12/2006 -44079951 01/01/1990 31/12/1995 LIBEN Palissandre du bresil or bois de rose femelle, sawn or chipped lengthwise, sliced or peeled, sanded, of a thickness > 6 mm 01/01/1990 31/12/1995 -44079959 01/01/1990 31/12/1995 LIBEN Wood sawn or chipped lengthwise, sliced or peeled, sanded, of a thickness > 6 mm (excl. 4407.10.10 to 4407.99.51) 01/01/1990 31/12/1995 -44079990 01/01/2017 31/12/2500 LIBEN Wood, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed; tropical wood, coniferous wood, oak "Quercus spp.", beech "Fagus spp.", maple "Acer spp.", cherry "Prunus spp.", ash "Fraxinus spp.", birch "Betula spp.", poplar and aspen "Populus spp.") 01/01/2017 31/12/2500 -44079991 01/01/1988 31/12/2016 LIBEN Poplar, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed) 01/01/1988 31/12/2016 -44079993 01/01/1988 31/12/1999 LIBEN Walnut, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or finger-jointed) 01/01/1988 31/12/1999 -44079994 01/01/2000 31/12/2001 LIBEN Tropical wood, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or finger-jointed, and tropical wood specified in Subheading Note 1 to this chapter) 01/01/2000 31/12/2001 -44079996 01/01/2002 31/12/2016 LIBEN Tropical wood, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed, and tropical wood specified in Subheading Note 2 to this chapter) 01/01/2002 31/12/2016 -44079997 01/01/2000 31/12/2006 LIBEN Wood, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed, and tropical wood, coniferous wood, oak "Quercus spp.", beech "Fagus spp." and poplar) 01/01/2000 31/12/2006 -44079998 01/01/1996 31/12/1999 LIBEN Wood, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or finger-jointed; tropical wood specified in Subheading Note 1 to this chapter, coniferous wood, oak "Quercus spp.", beech "Fagus spp.", poplar and walnut) 01/01/1996 31/12/1999 -44079998 01/01/2007 31/12/2016 LIBEN Wood, sawn or chipped lengthwise, sliced or peeled, of a thickness of > 6 mm (excl. planed, sanded or end-jointed, and tropical wood, coniferous wood, oak "Quercus spp.", beech "Fagus spp.", maple "Acer spp.", cherry "Prunus spp.", ash "Fraxinus spp." and poplar) 01/01/2007 31/12/2016 -44079999 01/01/1988 31/12/1995 LIBEN Wood, sawn or cut lengthwise, sliced or barked, with a thickness of > 6 mm (excl. planed, sanded or finger-jointed; tropical wood of subheadings 4407.21 to 4407,23, coniferous wood, oak "Quercus spp." and beech "Fagus spp.", poplar and walnut) 01/01/1988 31/12/1995 -4408 01/01/1988 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, whether or not planed, sanded, spliced or end-jointed, of a thickness of <= 6 mm 01/01/1988 31/12/2500 -440810 01/01/1988 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for coniferous plywood or for other similar laminated coniferous wood and other coniferous wood, sawn lengthwise, sliced or peeled, whether or not planed, sanded, spliced or end-jointed, of a thickness of <= 6 mm 01/01/1988 31/12/2500 -44081010 01/01/1988 31/12/1999 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, of coniferous wood and other coniferous wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, finger-jointed, whether or not planed or sanded 01/01/1988 31/12/1999 -44081015 01/01/2000 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for coniferous plywood or for other similar laminated coniferous wood and other coniferous wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, planed, sanded or end-jointed 01/01/2000 31/12/2500 -44081030 01/01/1988 31/12/1999 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, of coniferous wood and other coniferous wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, planed (excl. finger-jointed) 01/01/1988 31/12/1999 -44081050 01/01/1988 31/12/1999 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, of coniferous wood and other coniferous wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, sanded (excl. finger-jointed) 01/01/1988 31/12/1999 -44081091 01/01/1988 31/12/2500 LIBEN Small boards for the manufacture of pencils, of coniferous wood, of a thickness of <= 6 mm 01/01/1988 31/12/2500 -44081093 01/01/1988 31/12/2001 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, of coniferous wood and other coniferous wood, sawn lengthwise, sliced or peeled, of a thickness of <= 1 mm (excl. sanded) 01/01/1988 31/12/2001 -44081093 01/01/2002 31/12/2011 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for coniferous plywood or for other similar laminated coniferous wood and other coniferous wood, sawn lengthwise, sliced or peeled, of a thickness of <= 1 mm (excl. sanded) 01/01/2002 31/12/2011 -44081098 01/01/2012 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for coniferous plywood or for other similar laminated coniferous wood and other coniferous wood, sawn lengthwise, sliced or peeled, whether or not spliced, of a thickness of <= 6 mm (excl. planed, sanded or end-jointed, and small boards for the manufacture of pencils) 01/01/2012 31/12/2500 -44081099 01/01/1988 31/12/2001 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, of coniferous wood and other coniferous wood, sawn lengthwise, sliced or peeled, of a thickness of <= 1 mm to 6 mm (excl. planed, sanded or finger-jointed, and small boards for the manufacture of pencils) 01/01/1988 31/12/2001 -44081099 01/01/2002 31/12/2011 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for coniferous plywood or for other similar laminated coniferous wood and other coniferous wood, sawn lengthwise, sliced or peeled, whether or not spliced, of a thickness of > 1 mm to 6 mm (excl. planed, sanded or end-jointed, and small boards for the manufacture of pencils) 01/01/2002 31/12/2011 -440820 01/01/1988 31/12/1995 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or barked, whether or not planed, sanded or finger-jointed, with a thickness of <= 6 mm, of dark red meranti, light red meranti, white lauan, utile, limba, okoumé, obeche, acajou d'Afrique, sapele, baboen, mahogany "Swietenia spp.", Rio rosewood "Brazilian rosewood", female rosewood 01/01/1988 31/12/1995 -44082010 01/01/1988 31/12/1995 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or barked, finger-jointed, whether or not planed or sanded, with a thickness of <= 6 mm, of dark red meranti, light red meranti, white lauan, utile, limba, okoumé, obeche, acajou d'Afrique, sapele, baboen, mahogany "Swietenia spp.", Rio rosewood "Brazilian rosewood", female rosewood 01/01/1988 31/12/1995 -44082030 01/01/1988 31/12/1995 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or barked, planed, with a thickness of <= 6 mm, of dark red meranti, light red meranti, white lauan, utile, limba, okoumé, obeche, acajou d'Afrique, sapele, baboen, mahogany "Swietenia spp.", Rio rosewood "Brazilian rosewood", female rosewood 01/01/1988 31/12/1995 -44082050 01/01/1988 31/12/1995 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or barked, sanded, with a thickness of <= 6 mm, of dark red meranti, light red meranti, white lauan, utile, limba, okoumé, obeche, acajou d'Afrique, sapele, baboen, mahogany "Swietenia spp.", Rio rosewood "Brazilian rosewood", female rosewood 01/01/1988 31/12/1995 -44082091 01/01/1988 31/12/1995 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or barked, with a thicknes of <= 1 mm, of dark red meranti, light red meranti, white lauan, utile, limba, okoumé, obeche, acajou d'Afrique, sapele, baboen, mahogany "Swietenia spp.", Rio rosewood "Brazilian rosewood", female rosewood (excl. sanded) 01/01/1988 31/12/1995 -44082099 01/01/1988 31/12/1995 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or barked, with a thickness of > 1 mm to 6 mm, of dark red meranti, light red meranti, white lauan, utile, limba, okoumé, obeche, acajou d'Afrique, sapele, baboen, mahogany "Swietenia spp.", Rio rosewood "Brazilian rosewood", female rosewood (excl. planed, sanded or finger-jointed) 01/01/1988 31/12/1995 -440831 01/01/1996 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, whether or not planed, sanded, spliced or end-jointed, of a thickness of <= 6 mm, of dark red meranti, light red meranti and meranti bakau 01/01/1996 31/12/2500 -44083111 01/01/1996 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, end-jointed, whether or not planed or sanded, of dark red meranti, light red meranti and meranti bakau 01/01/1996 31/12/2500 -44083121 01/01/1996 31/12/2001 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, planed, of dark red meranti, light red meranti and meranti bakau (excl. finger-jointed) 01/01/1996 31/12/2001 -44083121 01/01/2002 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, planed, of dark red meranti, light red meranti and meranti bakau (excl. end-jointed) 01/01/2002 31/12/2500 -44083125 01/01/1996 31/12/2001 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, sanded, of dark red meranti, light red meranti and meranti bakau (excl. finger-jointed) 01/01/1996 31/12/2001 -44083125 01/01/2002 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, sanded, of dark red meranti, light red meranti and meranti bakau (excl. end-jointed) 01/01/2002 31/12/2500 -44083130 01/01/1996 31/12/2001 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, of dark red meranti, light red meranti and meranti bakau (excl. planed, sanded or finger-jointed) 01/01/1996 31/12/2001 -44083130 01/01/2002 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, whether or not spliced, of dark red meranti, light red meranti and meranti bakau (excl. planed, sanded or end-jointed) 01/01/2002 31/12/2500 -440839 01/01/1996 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, whether or not planed, sanded, spliced or end-jointed, of a thickness of <= 6 mm, of tropical wood (excl. dark red meranti, light red meranti and meranti bakau) 01/01/1996 31/12/2500 -44083911 01/01/1996 31/12/1999 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, finger-jointed, whether or not planed or sanded, of a thickness of <= 6 mm, of white lauan, sipo, limba, okoumé, obéché, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para and palissandre de rose 01/01/1996 31/12/1999 -44083915 01/01/2000 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, sanded, or end-jointed, whether or not planed, of white lauan, sipo, limba, okoumé, obeche, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para and palissandre de Rose 01/01/2000 31/12/2500 -44083921 01/01/1996 31/12/2001 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, planed, of a thickness of <= 6 mm, of white lauan, sipo, limba, okoumé, obéché, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para and palissandre de Rose (excl. finger-jointed) 01/01/1996 31/12/2001 -44083921 01/01/2002 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, planed, of white lauan, sipo, limba, okoumé, obeche, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para and palissandre de Rose (excl. end-jointed) 01/01/2002 31/12/2500 -44083925 01/01/1996 31/12/1999 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, sanded, of a thickness of <= 6 mm, of white lauan, sipo, limba, okoumé, obéché, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para and palissandre de Rose (excl. finger-jointed) 01/01/1996 31/12/1999 -44083930 01/01/2012 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, whether or not spliced, of a thickness of <= 6 mm, of white lauan, sipo, limba, okoumé, obeche, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para and palissandre de Rose (excl. planed, sanded or end-jointed) 01/01/2012 31/12/2500 -44083931 01/01/1996 31/12/2001 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 1 mm, of white lauan, sipo, limba, okoumé, obéché, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para and palissandre de Rose (excl. planed, sanded or finger-jointed) 01/01/1996 31/12/2001 -44083931 01/01/2002 31/12/2011 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, whether or not spliced, of a thickness of <= 1 mm, of white lauan, sipo, limba, okoumé, obeche, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para and palissandre de Rose (excl. planed, sanded or end-jointed) 01/01/2002 31/12/2011 -44083935 01/01/1996 31/12/2001 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of > 1 mm but <= 6 mm, of white lauan, sipo, limba, okoumé, obéché, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para and palissandre de Rose (excl. planed, sanded or finger-jointed) 01/01/1996 31/12/2001 -44083935 01/01/2002 31/12/2011 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, whether or not spliced, of a thickness of > 1 mm but <= 6 mm, of white lauan, sipo, limba, okoumé, obeche, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para and palissandre de Rose (excl. planed, sanded or end-jointed) 01/01/2002 31/12/2011 -44083951 01/01/1996 31/12/1999 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, finger-jointed, whether or not planed or sanded, of abura, afrormosia, ako, alan, andiroba, aningré, avodiré, azobé, balau, balsa, bossé clair, bossé foncé, cativo, cedro, dabema, dibétou, doussié, framiré, freijo, fromager, fuma, geronggang, ilomba, imbuia, ipé, iroko, jaboty, jelutong, jequitiba, jongkong, kapur, kempas, keruing, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), makoré, mansonia, marawan, mengkulang, merbau, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau marfim, pulai, punah, ramin, saqui-saqui, sepetir, sucupira, suren, teak, tiama, tola, white meranti, white seraya and yellow meranti 01/01/1996 31/12/1999 -44083955 01/01/2000 31/12/2001 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, planed, sanded or finger-jointed, of abura, afrormosia, ako, alan, andiroba, aningré, avodiré, azobé, balau, balsa, bossé clair, bossé foncé, cativo, cedro, dabema, dibétou, doussié, framiré, freijo, fromager, fuma, geronggang, ilomba, imbuia, ipé, iroko, jaboty, jelutong, jequitiba, jongkong, kapur, kempas, keruing, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), makoré, mansonia, merawan, mengkulang, merbau, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau marfim, pulai, punah, ramin, saqui-saqui, sepetir, sucupira, suren, teak, tiama, tola, white meranti, white seraya and yellow meranti 01/01/2000 31/12/2001 -44083955 01/01/2002 31/12/2016 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, planed, sanded or end-jointed, of abura, afrormosia, ako, alan, andiroba, aningré, avodiré, azobé, balau, balsa, bossé clair, bossé foncé, cativo, cedro, dabema, dibétou, doussié, framiré, freijo, fromager, fuma, geronggang, ilomba, imbuia, ipé, iroko, jaboty, jelutong, jequitiba, jongkong, kapur, kempas, keruing, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), makoré, mandioqueira, mansonia, merawan, mengkulang, merbau, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau Amarelo, pau marfim, pulai, punah, quaruba, ramin, saqui-saqui, sepetir, sucupira, suren, tauari, teak, tiama, tola, white meranti, white seraya and yellow meranti 01/01/2002 31/12/2016 -44083955 01/01/2017 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, planed, sanded or end-jointed, of tropical wood (excl. white lauan, sipo, limba, okoumé, obeche, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para and palissandre de Rose) 01/01/2017 31/12/2500 -44083961 01/01/1996 31/12/1999 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, planed, of abura, afrormosia, ako, alan, andiroba, aningré, avodiré, azobé, balau, balsa, bossé clair, bossé foncé, cativo, cedro, dabema, dibétou, doussié, framiré, freijo, fromager, fuma, geronggang, ilomba, imbuia, ipé, iroko, jaboty, jelutong, jequitiba, jongkong, kapur, kempas, keruing, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), makoré, mansonia, marawan, mengkulang, merbau, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau marfim, pulai, punah, ramin, saqui-saqui, sepetir, sucupira, suren, teak, tiama, tola, white meranti, white seraya and yellow meranti (excl. finger-jointed) 01/01/1996 31/12/1999 -44083965 01/01/1996 31/12/1999 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, sanded, of abura, afrormosia, ako, alan, andiroba, aningré, avodiré, azobé, balau, balsa, bossé clair, bossé foncé, cativo, cedro, dabema, dibétou, doussié, framiré, freijo, fromager, fuma, geronggang, ilomba, imbuia, ipé, iroko, jaboty, jelutong, jequitiba, jongkong, kapur, kempas, keruing, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), makoré, mansonia, marawan, mengkulang, merbau, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau marfim, pulai, punah, ramin, saqui-saqui, sepetir, sucupira, suren, teak, tiama, tola, white meranti, white seraya and yellow meranti (excl. finger-jointed) 01/01/1996 31/12/1999 -44083970 01/01/1996 31/12/2001 LIBEN Small boards for the manufacture of pencils, of wood, of a thickness of <= 6 mm, of abura, afrormosia, ako, alan, andiroba, aningré, avodiré, azobé, balau, balsa, bossé clair, bossé foncé, cativo, cedro, dabema, dibétou, doussié, framiré, freijo, fromager, fuma, geronggang, ilomba, imbuia, ipé, iroko, jaboty, jelutong, jequitiba, jongkong, kapur, kempas, keruing, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), makoré, mansonia, mengkulang, merawan, merbau, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau marfim, pulai, punah, ramin, saqui-saqui, sepetir, sucupira, suren, teak, tiama, tola, white meranti, white seraya and yellow meranti 01/01/1996 31/12/2001 -44083970 01/01/2002 31/12/2016 LIBEN Small boards for the manufacture of pencils, of a thickness of <= 6 mm, of abura, afrormosia, ako, alan, andiroba, aningré, avodiré, azobé, balau, balsa, bossé clair, bossé foncé, cativo, cedro, dabema, dibétou, doussié, framiré, freijo, fromager, fuma, geronggang, ilomba, imbuia, ipé, iroko, jaboty, jelutong, jequitiba, jongkong, kapur, kempas, keruing, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), makoré, mandioqueira, mansonia, merawan, mengkulang, merbau, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau Amarelo, pau marfim, pulai, punah, quaruba, ramin, saqui-saqui, sepetir, sucupira, suren, tauari, teak, tiama, tola, white meranti, white seraya and yellow meranti 01/01/2002 31/12/2016 -44083970 01/01/2017 31/12/2500 LIBEN Small boards for the manufacture of pencils, of a thickness of <= 6 mm, of tropical wood (excl. white lauan, sipo, limba, okoumé, obeche, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para and palissandre de Rose) 01/01/2017 31/12/2500 -44083980 01/01/2000 31/12/2001 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 1 mm, of abura, afrormosia, ako, alan, andiroba, aningré, avodiré, azobé, balau, balsa, bossé clair, bossé foncé, cativo, cedro, dabema, dibétou, doussié, framiré, freijo, fromager, fuma, geronggang, ilomba, imbuia, ipé, iroko, jaboty, jelutong, jequitiba, jongkong, kapur, kempas, keruing, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), makoré, mansonia, merawan, mengkulang, merbau, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau marfim, pulai, punah, ramin, saqui-saqui, sepetir, sucupira, suren, teak, tiama, tola, white meranti, white seraya and yellow meranti (excl. planed, sanded or finger-jointed) 01/01/2000 31/12/2001 -44083981 01/01/1996 31/12/1999 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 1 mm, of makoré, iroko, tiama, mansonia, ilomba, dibétou, azobé, white meranti, white seraya, yellow meranti, alan, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, imbuia and balsa (excl. sanded) 01/01/1996 31/12/1999 -44083985 01/01/2002 31/12/2016 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, whether or not spliced, of a thickness of <= 1 mm, of abura, afrormosia, ako, alan, andiroba, aningré, avodiré, azobé, balau, balsa, bossé clair, bossé foncé, cativo, cedro, dabema, dibétou, doussié, framiré, freijo, fromager, fuma, geronggang, ilomba, imbuia, ipé, iroko, jaboty, jelutong, jequitiba, jongkong, kapur, kempas, keruing, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), makoré, mandioqueira, mansonia, merawan, mengkulang, merbau, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau Amarelo, pau marfim, pulai, punah, quaruba, ramin, saqui-saqui, sepetir, sucupira, suren, tauari, teak, tiama, tola, white meranti, white seraya and yellow meranti (excl. planed, sanded or end-jointed) 01/01/2002 31/12/2016 -44083985 01/01/2017 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, whether or not spliced, of a thickness of <= 1 mm, of tropical wood (excl. white lauan, sipo, limba, okoumé, obeche, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para, palissandre de Rose, and planed, sanded or end-jointed) 01/01/2017 31/12/2500 -44083989 01/01/1996 31/12/1999 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 1 mm, of abura, afrormosia, ako, andiroba, aningré, avodiré, balau, bossé clair, bossé foncé, cativo, cedro, dabema, doussié, framiré, freijo, fromager, fuma, geronggang, ipé, jaboty, jequitiba, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), mengkulang, merawan, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau marfim, pulai, punah, saqui-saqui, sepetir, sucupira, suren, tola (excl. sanded) 01/01/1996 31/12/1999 -44083990 01/01/2000 31/12/2001 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of > 1 mm but <= 6 mm, of abura, afrormosia, ako, alan, andiroba, aningré, avodiré, azobé, balau, balsa, bossé clair, bossé foncé, cativo, cedro, dabema, dibétou, doussié, framiré, freijo, fromager, fuma, geronggang, ilomba, imbuia, ipé, iroko, jaboty, jelutong, jequitiba, jongkong, kapur, kempas, keruing, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), makoré, mansonia, mengkulang, merawan, merbau, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau marfim, pulai, punah, ramin, saqui-saqui, sepetir, sucupira, suren, teak, tiama, tola, white meranti, white seraya and yellow meranti (excl. planed, sanded or finger-jointed, and small boards for the manufacture of pencils with a wood casing) 01/01/2000 31/12/2001 -44083991 01/01/1996 31/12/1999 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness > 1 mm but <= 6 mm, of makoré, iroko, tiama, mansonia, ilomba, dibétou, azobé, white meranti, white seraya, yellow meranti, alan, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, imbuia and balsa (excl. planed, sanded or finger-jointed, and small boards for the manufacture of pencils with a wood casing) 01/01/1996 31/12/1999 -44083995 01/01/2002 31/12/2016 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, whether or not spliced, of a thickness of > 1 mm but <= 6 m, of abura, afrormosia, ako, alan, andiroba, aningré, avodiré, azobé, balau, balsa, bossé clair, bossé foncé, cativo, cedro, dabema, dibétou, doussié, framiré, freijo, fromager, fuma, geronggang, ilomba, imbuia, ipé, iroko, jaboty, jelutong, jequitiba, jongkong, kapur, kempas, keruing, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), makoré, mandioqueira, mansonia, merawan, mengkulang, merbau, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau Amarelo, pau marfim, pulai, punah, quaruba, ramin, saqui-saqui, sepetir, sucupira, suren, tauari, teak, tiama, tola, white meranti, white seraya and yellow meranti (excl. planed, sanded or end-jointed) 01/01/2002 31/12/2016 -44083995 01/01/2017 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, whether or not spliced, of a thickness of > 1 mm but <= 6 mm, of tropical wood (excl. white lauan, sipo, limba, okoumé, obeche, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para, palissandre de Rose, and planed, sanded or end-jointed) 01/01/2017 31/12/2500 -44083999 01/01/1996 31/12/1999 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of > 1 mm but <= 6 mm, of abura, afrormosia, ako, andiroba, aningré, avodiré, balau, bossé clair, bossé foncé, cativo, cedro, dabema, doussié, framiré, freijo, fromager, fuma, geronggang, ipé, jaboty, jequitiba, kosipo, kotibé, koto, louro, maçaranduba, mahogany (excl. "Swietenia spp."), mengkulang, merawan, merpauh, mersawa, moabi, niangon, nyatoh, onzabili, orey, ovengkol, ozigo, padauk, paldao, palissandre de Guatemala, pau marfim, pulai, punah, saqui-saqui, sepetir, sucupira, suren, tola (excl. planed, sanded or finger-jointed, and small boards for the manufacture of pencils with a wood casing) 01/01/1996 31/12/1999 -440890 01/01/1988 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, whether or not planed, sanded, spliced or end-jointed, of a thickness of <= 6 mm (excl. tropical and coniferous wood) 01/01/1988 31/12/2500 -44089010 01/01/1988 31/12/1995 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or barked, with a thickness of <= 6 mm, finger-jointed, whether or not planed or sanded (excl. tropical wood of subheading 4408.20.10 and coniferous wood) 01/01/1988 31/12/1995 -44089011 01/01/1996 31/12/1999 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, finger-jointed, whether or not planed or sanded (excl. tropical wood of Subheading Note 1 to this chapter and coniferous wood) 01/01/1996 31/12/1999 -44089015 01/01/2000 31/12/2001 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, planed, sanded or finger-jointed (excl. tropical wood of Subheading Note 1 to this chapter and coniferous wood) 01/01/2000 31/12/2001 -44089015 01/01/2002 31/12/2016 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, planed, sanded or end-jointed (excl. tropical wood of Subheading Note 2 to this chapter and coniferous wood) 01/01/2002 31/12/2016 -44089015 01/01/2017 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, planed, sanded or end-jointed (excl. tropical and coniferous wood) 01/01/2017 31/12/2500 -44089021 01/01/1996 31/12/1999 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, planed (excl. finger-jointed, tropical wood of Subheading Note 1 to this chapter and coniferous wood) 01/01/1996 31/12/1999 -44089025 01/01/1996 31/12/1999 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 6 mm, sanded (excl. finger-jointed, tropical wood of Subheading Note 1 to this chapter and coniferous wood) 01/01/1996 31/12/1999 -44089030 01/01/1988 31/12/1995 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or barked, with a thickness of <= 6 mm, planed (excl. finger-jointed, tropical wood of subheading 4408.20.30 and coniferous wood) 01/01/1988 31/12/1995 -44089035 01/01/1996 31/12/2001 LIBEN Small boards for the manufacture of pencils, of wood, of a thickness of <= 6 mm (excl. tropical wood of Subheading Note 1 to this chapter and coniferous wood) 01/01/1996 31/12/2001 -44089035 01/01/2002 31/12/2016 LIBEN Small boards for the manufacture of pencils, of wood, of a thickness of <= 6 mm (excl. tropical wood of Subheading Note 2 to this chapter and coniferous wood) 01/01/2002 31/12/2016 -44089035 01/01/2017 31/12/2500 LIBEN Small boards for the manufacture of pencils, of wood, of a thickness of <= 6 mm (excl. tropical and coniferous wood) 01/01/2017 31/12/2500 -44089050 01/01/1988 31/12/1995 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or barked, with a thickness of <= 6 mm, sanded (excl. finger-jointed, tropical wood of subheading 4408.20.50 and coniferous wood) 01/01/1988 31/12/1995 -44089081 01/01/1996 31/12/2001 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 1 mm (excl. sanded, and tropical wood of Subheading Note 1 to this chapter and coniferous wood) 01/01/1996 31/12/2001 -44089085 01/01/2002 31/12/2016 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, whether or not spliced, of a thickness of <= 1 mm (excl. planed, sanded or end-jointed, and tropical wood of Subheading Note 2 to this chapter and coniferous wood) 01/01/2002 31/12/2016 -44089085 01/01/2017 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, whether or not spliced, of a thickness of <= 1 mm (excl. planed, sanded or end-jointed, and tropical and coniferous wood) 01/01/2017 31/12/2500 -44089089 01/01/1996 31/12/2001 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or peeled, of a thickness of > 1 mm but <= 6 mm (excl. planed, sanded or finger-jointed, small boards for the manufacture of pencils, of tropical wood of Subheading Note 1 to this chapter and coniferous wood) 01/01/1996 31/12/2001 -44089091 01/01/1988 31/12/1995 LIBEN Small boards for the manufacture of lead pencils, tracer pencils, colour pencils, slate pencils and other pencils with a wood casing, of wood, with a thickness of <= 6mm (excl. coniferous wood) 01/01/1988 31/12/1995 -44089092 01/01/1994 31/12/1995 LIBEN Veneer sheets and sheets for plywood (whether or not spliced) and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 1 mm, of makoré, iroko, tiama, mansonia, ilomba, dibétou, azobé, meranti bakau, white meranti, white seraya, yellow meranti, alen, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, imbuia and balsa (excl. such products sanded) 01/01/1994 31/12/1995 -44089093 01/01/1988 31/12/1993 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or barked, with a thickness of =< 1 mm (excl. sanded, tropical wood of subheading 4408.20-91 and coniferous wood) 01/01/1988 31/12/1993 -44089094 01/01/1994 31/12/1995 LIBEN Veneer sheets and sheets for plywood (whether or not spliced) and other wood, sawn lengthwise, sliced or peeled, of a thickness of <= 1 mm (excl. sanded wood, tropical wood of subheadings 4408.20.91 and 4408.90.92, and coniferous wood) 01/01/1994 31/12/1995 -44089095 01/01/2002 31/12/2016 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, whether or not spliced, of a thickness of > 1 mm (excl. planed, sanded or end-jointed, and tropical wood of Subheading Note 2 to this chapter and coniferous wood) 01/01/2002 31/12/2016 -44089095 01/01/2017 31/12/2500 LIBEN Sheets for veneering, incl. those obtained by slicing laminated wood, for plywood or for other similar laminated wood and other wood, sawn lengthwise, sliced or peeled, whether or not spliced, of a thickness of > 1 mm (excl. planed, sanded or end-jointed, and tropical and coniferous wood) 01/01/2017 31/12/2500 -44089096 01/01/1994 31/12/1995 LIBEN Veneer sheets and sheets for plywood (spliced or not) and other wood, sawn lengthwise, sliced or peeled, of a thickness > 1 mm to 6 mm, of makoré, iroko, tiama, mansonia, ilomba, dibétou, azobé, meranti bakau, white meranti, white seraya, yellow meranti, alen, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, imbuia, balsa (excl. such products planed, sanded or finger-jointed, small boards for pencils with a wood casing) 01/01/1994 31/12/1995 -44089098 01/01/1994 31/12/1995 LIBEN Veneer sheets and sheets for plywood (whether or not spliced) and other wood, sawn lengthwise, sliced or peeled, of a thickness of > 1 mm to 6 mm (excl. such products planed, sanded or finger-jointed, small boards for the manufacture of lead pencils, tracer pencils, colour pencils, slate pencils and other pencils with a wood casing, of coniferous wood, tropical wood of subheadings 4408.20.99 and 4408.90.96, and coniferous wood) 01/01/1994 31/12/1995 -44089099 01/01/1988 31/12/1993 LIBEN Veneer sheets and sheets for plywood, whether or not spliced, and other wood, sawn lengthwise, sliced or barked, with a thickness of > 1mm to 6 mm (excl., planed, sanded or finger-jointed; small boards for the manufacture of lead pencils, tracer pencils, colour pencils, slate pencils and other pencils; tropical wood of subheading 4408.20-99 and coniferous wood) 01/01/1988 31/12/1993 -4409 01/01/1988 31/12/2500 LIBEN Wood, incl. strips and friezes for parquet flooring, not assembled, continuously shaped "tongued, grooved, rebated, chamfered, V-jointed beaded, moulded, rounded or the like" along any of its edges, ends or faces, whether or not planed, sanded or end-jointed 01/01/1988 31/12/2500 -440910 01/01/1988 31/12/2500 LIBEN Coniferous wood, incl. strips and friezes for parquet flooring, not assembled, continuously shaped "tongued, grooved, rebated, chamfered, V-jointed beaded, moulded, rounded or the like" along any of its edges, ends or faces, whether or not planed, sanded or end-jointed 01/01/1988 31/12/2500 -44091010 01/01/1988 31/12/1991 LIBEN Battens and friezes of coniferous wood for furniture, frames, interior fittings, wiring and the like 01/01/1988 31/12/1991 -44091011 01/01/1992 31/12/2500 LIBEN Mouldings for frames for paintings, photographs, mirrors or similar objects, of coniferous wood 01/01/1992 31/12/2500 -44091018 01/01/2000 31/12/2500 LIBEN Coniferous wood, incl. strips and friezes for parquet flooring, not assembled, continuously shaped "tongued, grooved, rebated, chamfered, V-jointed beaded, moulded, rounded or the like" along any of its edges, ends or faces, whether or not planed, sanded or end-jointed (excl. mouldings for frames for paintings, photographs, mirrors or similar objects) 01/01/2000 31/12/2500 -44091019 01/01/1992 31/12/1999 LIBEN Beadings and mouldings, incl. moulded skirting and other moulded boards, of coniferous wood (excl. mouldings for frames for paintings, photographs, mirrors or similar objects) 01/01/1992 31/12/1999 -44091090 01/01/1988 31/12/1999 LIBEN Coniferous wood, incl. strips and friezes for parquet flooring, not assembled, continuously shaped "tongued, grooved, rebated, chamfered, V-jointed beaded, moulded, rounded or the like" along any of its edges or faces, whether or not planed, sanded or finger-jointed (excl. beadings and mouldings incl. moulded skirting and other moulded boards) 01/01/1988 31/12/1999 -440920 01/01/1988 31/12/2006 LIBEN Wood, incl. strips and friezes for parquet flooring, not assembled, continuously shaped "tongued, grooved, rebated, chamfered, V-jointed beaded, moulded, rounded or the like" along any of its edges, ends or faces, whether or not planed, sanded or end-jointed (excl. coniferous wood) 01/01/1988 31/12/2006 -44092010 01/01/1988 31/12/1991 LIBEN Battens and friezes of wood for furniture, frames, interior fittings, wiring and the like (excl. those of coniferous wood) 01/01/1988 31/12/1991 -44092011 01/01/1992 31/12/2006 LIBEN Mouldings for frames for paintings, photographs, mirrors or similar objects, of non-coniferous wood 01/01/1992 31/12/2006 -44092019 01/01/1992 31/12/1999 LIBEN Beadings and mouldings, incl. moulded skirting and other moulded boards, of non-coniferous wood (excl. mouldings for frames for paintings, photographs, mirrors or similar objects) 01/01/1992 31/12/1999 -44092091 01/01/1988 31/12/2006 LIBEN Blocks, strips and friezes for parquet flooring, not assembled, continuously shaped "tongued, grooved, rebated, chamfered, V-jointed, beaded, moulded, rounded or the like" along any of its edges, ends or faces, whether or not planed, sanded or end-jointed, of non-coniferous wood 01/01/1988 31/12/2006 -44092098 01/01/2000 31/12/2006 LIBEN Non-coniferous wood, continuously shaped "tongued, grooved, rebated, chamfered, V-jointed beaded, moulded, rounded or the like" along any of its edges, ends or faces, whether or not planed, sanded or end-jointed (excl. mouldings for frames for paintings, photographs, mirrors or similar objects, and blocks, strips and friezes for parquet flooring) 01/01/2000 31/12/2006 -44092099 01/01/1988 31/12/1999 LIBEN Non-coniferous wood, continuously shaped "tongued, grooved, rebated, chamfered, V-jointed beaded, moulded, rounded or the like" along any of its edges or faces, whether or not planed, sanded or finger-jointed (excl. beadings and mouldings incl. moulded skirting and other moulded boards, and blocks, strips and friezes for parquet flooring) 01/01/1988 31/12/1999 -440921 01/01/2007 31/12/2500 LIBEN Bamboo, incl. strips and friezes for parquet flooring, not assembled, continuously shaped "tongued, grooved, rebated, chamfered, V-jointed beaded, moulded, rounded or the like" along any of its edges, ends or faces, whether or not planed, sanded or end-jointed 01/01/2007 31/12/2500 -44092100 01/01/2007 31/12/2500 LIBEN Bamboo, incl. strips and friezes for parquet flooring, not assembled, continuously shaped "tongued, grooved, rebated, chamfered, V-jointed beaded, moulded, rounded or the like" along any of its edges, ends or faces, whether or not planed, sanded or end-jointed 01/01/2007 31/12/2500 -440922 01/01/2017 31/12/2500 LIBEN Tropical wood, incl. strips and friezes for parquet flooring, not assembled, continuously shaped "tongued, grooved, rebated, chamfered, V-jointed beaded, moulded, rounded or the like" along any of its edges, ends or faces, whether or not planed, sanded or end-jointed 01/01/2017 31/12/2500 -44092200 01/01/2017 31/12/2500 LIBEN Tropical wood, incl. strips and friezes for parquet flooring, not assembled, continuously shaped "tongued, grooved, rebated, chamfered, V-jointed beaded, moulded, rounded or the like" along any of its edges, ends or faces, whether or not planed, sanded or end-jointed 01/01/2017 31/12/2500 -440929 01/01/2007 31/12/2500 LIBEN Wood, incl. strips and friezes for parquet flooring, not assembled, continuously shaped "tongued, grooved, rebated, chamfered, V-jointed beaded, moulded, rounded or the like" along any of its edges, ends or faces, whether or not planed, sanded or end-jointed (excl. coniferous and tropical wood and bamboo) 01/01/2007 31/12/2500 -44092910 01/01/2007 31/12/2016 LIBEN Mouldings for frames for paintings, photographs, mirrors or similar objects, of wood (excl. coniferous wood and bamboo) 01/01/2007 31/12/2016 -44092910 01/01/2017 31/12/2500 LIBEN Mouldings for frames for paintings, photographs, mirrors or similar objects, of wood (excl. coniferous and tropical wood and bamboo) 01/01/2017 31/12/2500 -44092991 01/01/2007 31/12/2016 LIBEN Blocks, strips and friezes for parquet flooring, not assembled, continuously shaped "tongued, grooved, rebated, chamfered, V-jointed, beaded, moulded, rounded or the like" along any of its edges, ends or faces, whether or not planed, sanded or end-jointed, of wood (excl. coniferous wood and bamboo) 01/01/2007 31/12/2016 -44092991 01/01/2017 31/12/2500 LIBEN Blocks, strips and friezes for parquet or wood block flooring, not assembled, continuously shaped "tongued, grooved, rebated, chamfered, V-jointed, beaded, moulded, rounded or the like" along any of its edges, ends or faces, whether or not planed, sanded or end-jointed, of wood (excl. coniferous and tropical wood and bamboo) 01/01/2017 31/12/2500 -44092999 01/01/2007 31/12/2016 LIBEN Wood, continuously shaped "tongued, grooved, rebated, chamfered, V-jointed beaded, moulded, rounded or the like" along any of its edges, ends or faces, whether or not planed, sanded or end-jointed (excl. coniferous wood and bamboo, and mouldings for frames for paintings, photographs, mirrors or similar objects, blocks, strips and friezes for parquet flooring) 01/01/2007 31/12/2016 -44092999 01/01/2017 31/12/2500 LIBEN Wood, continuously shaped "tongued, grooved, rebated, chamfered, V-jointed beaded, moulded, rounded or the like" along any of its edges, ends or faces, whether or not planed, sanded or end-jointed (excl. coniferous and tropical wood and bamboo, and mouldings for frames for paintings, photographs, mirrors or similar objects, blocks, strips and friezes for parquet or wood block flooring) 01/01/2017 31/12/2500 -4410 01/01/1988 31/12/2500 LIBEN Particle board, oriented strand board "OSB" and similar board "e.g. waferboard" of wood or other ligneous materials, whether or not agglomerated with resins or other organic binding substances (excl. fibreboard, veneered particle board, cellular wood panels and board of ligneous materials agglomerated with cement, plaster or other mineral bonding agents) 01/01/1988 31/12/2500 -441010 01/01/1988 31/12/1995 LIBEN Particle board and similar board of wood, whether or not agglomerated with resins or other organic bonding agents (excl. fibreboard, veneered particle board and hollow-core composite panels) 01/01/1988 31/12/1995 -44101010 01/01/1988 31/12/1995 LIBEN Particle board and similar board of wood, whether or not agglomerated with resins or other organic bonding agents, unworked or not further worked than sanded (excl. fibreboard and hollow-core composite panels) 01/01/1988 31/12/1995 -44101030 01/01/1988 31/12/1995 LIBEN Particle board and similar board of wood, whether or not agglomerated with resins or other organic bonding agents, surfaced with high-pressure decorative laminates (excl. fibreboard and hollow-core composite panels) 01/01/1988 31/12/1995 -44101050 01/01/1988 31/12/1995 LIBEN Particle board and similar board of wood, whether or not agglomerated with resins or other organic bonding agents, surfaced with melamine-resin impregnated paper (excl. fibreboard and hollow-core composite panels) 01/01/1988 31/12/1995 -44101090 01/01/1988 31/12/1995 LIBEN Particle board and similar board of wood, whether or not agglomerated with resins or other organic bonding agents (excl. fibreboard and hollow-core composite panels, board surfaced with high-pressure decorative laminates or melamine-resin impregnated paper) 01/01/1988 31/12/1995 -441011 01/01/1996 31/12/2001 LIBEN Waferboard, incl. oriented strand board 01/01/1996 31/12/2001 -441011 01/01/2007 31/12/2500 LIBEN Particle board of wood, whether or not agglomerated with resins or other organic binding substances (excl. oriented strand board and waferboard, fibreboard and cellular wood panels) 01/01/2007 31/12/2500 -44101100 01/01/1996 31/12/1996 LIBEN Waferboard, incl. oriented strand board 01/01/1996 31/12/1996 -44101110 01/01/1997 31/12/2001 LIBEN Waferboard, incl. oriented strand board, unworked or not further worked than sanded 01/01/1997 31/12/2001 -44101110 01/01/2007 31/12/2500 LIBEN Particle board of wood, whether or not agglomerated with resins or other organic binding substances, unworked or not further worked than sanded (excl. oriented strand board and waferboard, fibreboard and cellular wood panels) 01/01/2007 31/12/2500 -44101130 01/01/2007 31/12/2500 LIBEN Particle board of wood, whether or not agglomerated with resins or other organic binding substances, surface-covered with melamine-impregnated paper (excl. oriented strand board and waferboard, fibreboard and cellular wood panels) 01/01/2007 31/12/2500 -44101150 01/01/2007 31/12/2500 LIBEN Particle board of wood, whether or not agglomerated with resins or other organic binding substances, surface-covered with decorative laminates of plastics (excl. oriented strand board and waferboard, fibreboard and cellular wood panels) 01/01/2007 31/12/2500 -44101190 01/01/1997 31/12/2001 LIBEN Waferboard, incl. oriented strand board (excl. unworked or not further worked than sanded) 01/01/1997 31/12/2001 -44101190 01/01/2007 31/12/2500 LIBEN Particle board of wood, whether or not agglomerated with resins or other organic binding substances (excl. unworked or not further worked than sanded, surface-covered with melamine-impregnated paper or with decorative laminates of plastics, oriented strand board and waferboard, fibreboard and cellular wood panels) 01/01/2007 31/12/2500 -441012 01/01/2007 31/12/2500 LIBEN Oriented strand board "OSB", of wood 01/01/2007 31/12/2500 -44101210 01/01/2007 31/12/2500 LIBEN Oriented strand "OSB", of wood, unworked or not further worked than sanded 01/01/2007 31/12/2500 -44101290 01/01/2007 31/12/2500 LIBEN Oriented strand board "OSB" of wood (excl. unworked or not further worked than sanded) 01/01/2007 31/12/2500 -441019 01/01/1996 31/12/2001 LIBEN Particle board and similar board, of wood, whether or not agglomerated with resins or other organic bonding agents (excl. waferboard and oriented strand board, fibreboard, veneered particle board and hollow-core composite panels) 01/01/1996 31/12/2001 -441019 01/01/2007 31/12/2500 LIBEN Waferboard and similar board, of wood, whether or not agglomerated with resins or other organic binding substances (excl. particle board, oriented strand board, fibreboard and cellular wood panels) 01/01/2007 31/12/2500 -44101900 01/01/2007 31/12/2500 LIBEN Waferboard and similar board, of wood, whether or not agglomerated with resins or other organic binding substances (excl. particle board, oriented strand board, fibreboard and cellular wood panels) 01/01/2007 31/12/2500 -44101910 01/01/1996 31/12/2001 LIBEN Particle board and similar board, of wood, whether or not agglomerated with resins or other organic bonding agents, unworked or not further worked than sanded (excl. waferboard and oriented strand board, fibreboard and hollow-core composite panels) 01/01/1996 31/12/2001 -44101930 01/01/1996 31/12/2001 LIBEN Particle board and similar board, of wood, whether or not agglomerated with resins or other organic bonding agents, surfaced with high-pressure decorative laminates (excl. waferboard, oriented strand board, fibreboard and hollow-core composite panels) 01/01/1996 31/12/2001 -44101950 01/01/1996 31/12/2001 LIBEN Particle board and similar board, of wood, whether or not agglomerated with resins or other organic bonding agents, surfaced with melamine-resin impregnated paper (excl. waferboard and oriented strand board, fibreboard and hollow-core composite panels) 01/01/1996 31/12/2001 -44101990 01/01/1996 31/12/2001 LIBEN Particle board and similar board, of wood, whether or not agglomerated with resins or other organic bonding agents (excl. waferboard and oriented strand board, fibreboard and hollow-core composite panels, unworked or not further worked than sanded, board surfaced with high-pressure decorative laminates or melamine-resin impregnated paper) 01/01/1996 31/12/2001 -441021 01/01/2002 31/12/2006 LIBEN Oriented strand board and waferboard, of wood, unworked or not further worked than sanded 01/01/2002 31/12/2006 -44102100 01/01/2002 31/12/2006 LIBEN Oriented strand board and waferboard, of wood, unworked or not further worked than sanded 01/01/2002 31/12/2006 -441029 01/01/2002 31/12/2006 LIBEN Oriented strand board and waferboard, of wood (excl. unworked or not further worked than sanded) 01/01/2002 31/12/2006 -44102900 01/01/2002 31/12/2006 LIBEN Oriented strand board and waferboard, of wood (excl. unworked or not further worked than sanded) 01/01/2002 31/12/2006 -441031 01/01/2002 31/12/2006 LIBEN Particle board and similar board, of wood, whether or not agglomerated with resins or other organic binding substances, unworked or not further worked than sanded (excl. oriented strand board and waferboard, fibreboard and hollow-core composite panels) 01/01/2002 31/12/2006 -44103100 01/01/2002 31/12/2006 LIBEN Particle board and similar board, of wood, whether or not agglomerated with resins or other organic binding substances, unworked or not further worked than sanded (excl. oriented strand board and waferboard, fibreboard and hollow-core composite panels) 01/01/2002 31/12/2006 -441032 01/01/2002 31/12/2006 LIBEN Particle board and similar board, of wood, whether or not agglomerated with resins or other organic binding substances, surface-covered with melamine-impregnated paper (excl. oriented strand board and waferboard, fibreboard and hollow-core composite panels) 01/01/2002 31/12/2006 -44103200 01/01/2002 31/12/2006 LIBEN Particle board and similar board, of wood, whether or not agglomerated with resins or other organic binding substances, surface-covered with melamine-impregnated paper (excl. oriented strand board and waferboard, fibreboard and hollow-core composite panels) 01/01/2002 31/12/2006 -441033 01/01/2002 31/12/2006 LIBEN Particle board and similar board, of wood, whether or not agglomerated with resins or other organic binding substances, surface-covered with decorative laminates of plastics (excl. oriented strand board and waferboard, fibreboard and hollow-core composite panels) 01/01/2002 31/12/2006 -44103300 01/01/2002 31/12/2006 LIBEN Particle board and similar board, of wood, whether or not agglomerated with resins or other organic binding substances, surface-covered with decorative laminates of plastics (excl. oriented strand board and waferboard, fibreboard and hollow-core composite panels) 01/01/2002 31/12/2006 -441039 01/01/2002 31/12/2006 LIBEN Particle board and similar board, of wood, whether or not agglomerated with resins or other organic binding substances (excl. unworked or not further worked than sanded, surface-covered with melamine-impregnated paper or with decorative laminates of plastics, oriented strand board and waferboard, fibreboard and hollow-core composite panels) 01/01/2002 31/12/2006 -44103900 01/01/2002 31/12/2006 LIBEN Particle board and similar board, of wood, whether or not agglomerated with resins or other organic binding substances (excl. unworked or not further worked than sanded, surface-covered with melamine-impregnated paper or with decorative laminates of plastics, oriented strand board and waferboard, fibreboard and hollow-core composite panels) 01/01/2002 31/12/2006 -441090 01/01/1988 31/12/2500 LIBEN Board of bagasse, bamboo or cereal straw particles or other ligneous materials, whether or not agglomerated with resins or other organic binding substances (excl. of wood, and fibreboard, cellular wood panels, veneered panels, panels of ligneous materials agglomerated with cement, plaster or other mineral binders) 01/01/1988 31/12/2500 -44109000 01/01/1993 31/12/2500 LIBEN Board of bagasse, bamboo or cereal straw particles or other ligneous materials, whether or not agglomerated with resins or other organic binding substances (excl. of wood, and fibreboard, cellular wood panels, veneered panels, panels of ligneous materials agglomerated with cement, plaster or other mineral binders) 01/01/1993 31/12/2500 -44109010 01/01/1988 31/12/1992 LIBEN Flaxboard, whether or not agglomerated with resins or other organic bonding agents 01/01/1988 31/12/1992 -44109090 01/01/1988 31/12/1992 LIBEN Particle board and similar board, of particles of bagasse, bamboo or cereal straw, or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents (excl. fibreboard, hollow-core composite panels, veneered particle board, board of other ligneous materials, agglomerated with cement, plaster or other mineral bonding agents, plus particle board of wood and flaxboard) 01/01/1988 31/12/1992 -4411 01/01/1988 31/12/2500 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents (excl. particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; furniture components identifiable as such) 01/01/1988 31/12/2500 -441111 01/01/1988 31/12/2006 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, with a density of > 0,8 g/cm³, not mechanically worked or surface-coated (excl. particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; furniture components identifiable as such) 01/01/1988 31/12/2006 -44111100 01/01/1988 31/12/1999 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, with a density of > 0,8 g/cm³, not mechanically worked or surface-coated (excl. particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; furniture components identifiable as such) 01/01/1988 31/12/1999 -44111110 01/01/2000 31/12/2006 LIBEN Medium density fibreboard "MDF" of wood, with a density of > 0,8 g/cm³, not mechanically worked or surface-coated 01/01/2000 31/12/2006 -44111190 01/01/2000 31/12/2006 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, with a density of > 0,8 g/cm³, not mechanically worked or surface-coated (excl. medium density fibreboard "MDF; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; furniture components identifiable as such) 01/01/2000 31/12/2006 -441112 01/01/2007 31/12/2500 LIBEN Medium density fibreboard "MDF" of wood, of a thickness <= 5 mm 01/01/2007 31/12/2500 -44111210 01/01/2007 31/12/2500 LIBEN Medium density fibreboard "MDF" of wood, of a thickness <= 5 mm, not mechanically worked or surface-covered 01/01/2007 31/12/2500 -44111290 01/01/2007 31/12/2500 LIBEN Medium density fibreboard "MDF" of wood, of a thickness <= 5 mm, mechanically worked or surface-covered 01/01/2007 31/12/2500 -441113 01/01/2007 31/12/2500 LIBEN Medium density fibreboard "MDF" of wood, of a thickness > 5 mm but <= 9 mm 01/01/2007 31/12/2500 -44111310 01/01/2007 31/12/2500 LIBEN Medium density fibreboard "MDF" of wood, of a thickness > 5 mm but <= 9 mm, not mechanically worked or surface-covered 01/01/2007 31/12/2500 -44111390 01/01/2007 31/12/2500 LIBEN Medium density fibreboard "MDF" of wood, of a thickness > 5 mm but <= 9 mm, mechanically worked or surface-covered 01/01/2007 31/12/2500 -441114 01/01/2007 31/12/2500 LIBEN Medium density fibreboard "MDF" of wood, of a thickness > 9 mm 01/01/2007 31/12/2500 -44111410 01/01/2007 31/12/2500 LIBEN Medium density fibreboard "MDF" of wood, of a thickness > 9 mm, not mechanically worked or surface-covered 01/01/2007 31/12/2500 -44111490 01/01/2007 31/12/2500 LIBEN Medium density fibreboard "MDF" of wood, of a thickness > 9 mm, mechanically worked or surface-covered 01/01/2007 31/12/2500 -441119 01/01/1988 31/12/2006 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, with a density of > 0,8 g/cm³, mechanically worked or surface-coated (excl. sanded only; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/1988 31/12/2006 -44111900 01/01/1988 31/12/1999 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, with a density of > 0,8 g/cm³, mechanically worked or surface-coated (excl. sanded only; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/1988 31/12/1999 -44111910 01/01/2000 31/12/2006 LIBEN Medium density fibreboard "MDF" of wood, with a density of > 0,8 g/cm³, mechanically worked or surface-coated 01/01/2000 31/12/2006 -44111990 01/01/2000 31/12/2006 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, with a density of > 0,8 g/cm³, mechanically worked or surface-coated (excl. sanded only; medium density fibreboard "MDF; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/2000 31/12/2006 -441121 01/01/1988 31/12/2006 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, with a density of > 0,5 g to 0,8 g/cm³ (excl. mechanically worked or surface-coated; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/1988 31/12/2006 -44112100 01/01/1988 31/12/1999 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, with a density of > 0,5 g to 0,8 g/cm³ (excl. mechanically worked or surface-coated; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/1988 31/12/1999 -44112110 01/01/2000 31/12/2006 LIBEN Medium density fibreboard "MDF" of wood, with a density of > 0,5 g to 0,8 g/cm³, not mechanically worked or surface-coated 01/01/2000 31/12/2006 -44112190 01/01/2000 31/12/2006 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, with a density of > 0,5 g to 0,8 g/cm³, not mechanically worked or surface-coated (excl. medium density fibreboard "MDF; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/2000 31/12/2006 -441129 01/01/1988 31/12/2006 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or organic bonding agents, with a density of > 0,5 g to 0,8 g/cm³, mechanically worked or surface-covered (excl. sanded only; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/1988 31/12/2006 -44112900 01/01/1988 31/12/1999 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or organic bonding agents, with a density of > 0,5 g to 0,8 g/cm³, mechanically worked or surface-covered (excl. sanded only; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/1988 31/12/1999 -44112910 01/01/2000 31/12/2006 LIBEN Medium density fibreboard "MDF" of wood, with a density of > 0,5 g to 0,8 g/cm³, mechanically worked or surface-covered 01/01/2000 31/12/2006 -44112990 01/01/2000 31/12/2006 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or organic bonding agents, with a density of > 0,5 g to 0,8 g/cm³, mechanically worked or surface-covered (excl. sanded only; medium density fibreboard "MDF; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/2000 31/12/2006 -441131 01/01/1988 31/12/2006 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, with a density of > 0,35 g to 0,5 g/cm³ (excl. mechanically worked or surface-covered; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/1988 31/12/2006 -44113100 01/01/1988 31/12/1999 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, with a density of > 0,35 g to 0,5 g/cm³ (excl. mechanically worked or surface-covered; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/1988 31/12/1999 -44113110 01/01/2000 31/12/2006 LIBEN Medium density fibreboard "MDF" of wood, with a density of > 0,35 g to 0,5 g/cm³, not mechanically worked or surface-coated 01/01/2000 31/12/2006 -44113190 01/01/2000 31/12/2006 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, with a density of > 0,35 g to 0,5 g/cm³, not mechanically worked or surface-coated (excl. medium density fibreboard "MDF; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/2000 31/12/2006 -441139 01/01/1988 31/12/2006 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or organic bonding agents, with a density of > 0,35 g to 0,5 g/cm³, mechanically worked or surface-coated (excl. sanded only; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/1988 31/12/2006 -44113900 01/01/1988 31/12/1999 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or organic bonding agents, with a density of > 0,35 g to 0,5 g/cm³, mechanically worked or surface-coated (excl. sanded only; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/1988 31/12/1999 -44113910 01/01/2000 31/12/2006 LIBEN Medium density fibreboard "MDF" of wood, with a density of > 0,35 g to 0,5 g/cm³, mechanically worked or surface-coated 01/01/2000 31/12/2006 -44113990 01/01/2000 31/12/2006 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or organic bonding agents, with a density of > 0,35 g to 0,5 g/cm³, mechanically worked or surface-coated (excl. sanded only; medium density fibreboard "MDF; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/2000 31/12/2006 -441191 01/01/1988 31/12/2006 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, with a density of <= 0,35 g/cm³ (excl. mechanically worked or surface-coated; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/1988 31/12/2006 -44119100 01/01/1988 31/12/2006 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, with a density of <= 0,35 g/cm³ (excl. mechanically worked or surface-coated; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/1988 31/12/2006 -441192 01/01/2007 31/12/2500 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, of a density of > 0,8 g/cm³ (excl. medium density fibreboard "MDF"; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; cellular wood panels of which both sides are fibreboard; paperboard; identifiable furniture components) 01/01/2007 31/12/2500 -44119210 01/01/2007 31/12/2500 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, of a density of > 0,8 g/cm³, not mechanically worked or surface-covered (excl. medium density fibreboard "MDF"; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; cellular wood panels of which both sides are fibreboard; paperboard; furniture components identifiable as such) 01/01/2007 31/12/2500 -44119290 01/01/2007 31/12/2500 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, of a density of > 0,8 g/cm³, mechanically worked or surface-covered (excl. medium density fibreboard "MDF"; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; cellular wood panels of which both sides are fibreboard; paperboard; identifiable furniture components) 01/01/2007 31/12/2500 -441193 01/01/2007 31/12/2500 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, of a density of > 0,5 g to 0,8 g/cm³ (excl. medium density fibreboard "MDF"; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; cellular wood panels of which both sides are fibreboard; paperboard; identifiable furniture components) 01/01/2007 31/12/2500 -44119310 01/01/2007 31/12/2500 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, of a density of > 0,5 g to 0,8 g/cm³, not mechanically worked or surface-covered (excl. medium density fibreboard "MDF"; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; cellular wood panels of which both sides are fibreboard; paperboard; identifiable furniture components) 01/01/2007 31/12/2500 -44119390 01/01/2007 31/12/2500 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or organic bonding agents, of a density of > 0,5 g to 0,8 g/cm³, mechanically worked or surface-covered (excl. medium density fibreboard "MDF"; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; cellular wood panels of which both sides are fibreboard; paperboard; identifiable furniture components) 01/01/2007 31/12/2500 -441194 01/01/2007 31/12/2500 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, of a density of <= 0,5 g/cm³ (excl. medium density fibreboard "MDF"; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; cellular wood panels of which both sides are fibreboard; paperboard; identifiable furniture components) 01/01/2007 31/12/2500 -44119410 01/01/2007 31/12/2500 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, of a density of <= 0,5 g/cm³ (excl. mechanically worked or surface-covered; medium density fibreboard "MDF"; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; cellular wood panels of which both sides are fibreboard; paperboard; identifiable furniture components) 01/01/2007 31/12/2500 -44119490 01/01/2007 31/12/2500 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, with a density of <= 0,5 g/cm³, mechanically worked or surface-covered (excl. medium density fibreboard "MDF"; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; cellular wood panels of which both sides are fibreboard; paperboard; identifiable furniture components) 01/01/2007 31/12/2500 -441199 01/01/1988 31/12/2006 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, with a density of <= 0,35 g/cm³, mechanically worked or surface-coated (excl. sanded only; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/1988 31/12/2006 -44119900 01/01/1988 31/12/2006 LIBEN Fibreboard of wood or other ligneous materials, whether or not agglomerated with resins or other organic bonding agents, with a density of <= 0,35 g/cm³, mechanically worked or surface-coated (excl. sanded only; particle board, whether or not bonded with one or more sheets of fibreboard; laminated wood with a layer of plywood; composite panels with outer layers of fibreboard; paperboard; identifiable furniture components) 01/01/1988 31/12/2006 -4412 01/01/1988 31/12/2500 LIBEN Plywood, veneered panel and similar laminated wood (excl. sheets of compressed wood, cellular wood panels, parquet panels or sheets, inlaid wood and sheets identifiable as furniture components) 01/01/1988 31/12/2500 -441210 01/01/2007 31/12/2500 LIBEN Plywood, veneered panel and similar laminated wood, of bamboo, not containing particle board and without blockboard, laminboard or battenboard (excl. sheets of compressed wood, cellular wood panels, parquet panels or sheets, inlaid wood and sheets identifiable as furniture components) 01/01/2007 31/12/2500 -44121000 01/01/2007 31/12/2500 LIBEN Plywood, veneered panel and similar laminated wood, of bamboo, not containing particle board and without blockboard, laminboard or battenboard (excl. sheets of compressed wood, cellular wood panels, parquet panels or sheets, inlaid wood and sheets identifiable as furniture components) 01/01/2007 31/12/2500 -441211 01/01/1988 31/12/1995 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of the following tropical woods: dark red meranti, light red meranti, white lauan, utile, limba, okoumé, obeche, acajou d'afrique, sapele, baboen, mahogany "Swietenia spp.", Rio rosewood "Brazilian rosewood" or female rosewood, n.e.s. 01/01/1988 31/12/1995 -44121100 01/01/1988 31/12/1993 LIBEN Plywood consisting solely of sheets of wood =< 6 mm thick, with at least one outer ply of the following tropical woods: dark red meranti, light red meranti, white lauan, utile, limba, okoume, obeche, african mahogany, sapele, baboen, mahogany 'swietenia spp.', rio rosewood 'brazilian rosewood' or female rosewood, n.e.s. 01/01/1988 31/12/1993 -44121110 01/01/1994 31/12/1995 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of okoumé, n.e.s. 01/01/1994 31/12/1995 -44121190 01/01/1994 31/12/1995 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of the following tropical woods: dark red meranti, light red meranti, white lauan, sipo, limba, obeche, acajou d'Afrique, sapelle, baboen, mahogany "Swietenia spp.", pallisandre du Brésil and bois de rose femelle, n.e.s. 01/01/1994 31/12/1995 -441212 01/01/1988 31/12/1995 LIBEN Plywood consisting solely of sheets of wood <= 6mm thick, with at least one outer ply of non-coniferous wood (excl. sheets of compressed wood, hollow-core composite panels, parquet panels or sheets, inlaid wood and sheets identifiable as furniture components) 01/01/1988 31/12/1995 -44121200 01/01/1988 31/12/1995 LIBEN Plywood consisting solely of sheets of wood <= 6mm thick, with at least one outer ply of non-coniferous wood (excl. sheets of compressed wood, hollow-core composite panels, parquet panels or sheets, inlaid wood and sheets identifiable as furniture components) 01/01/1988 31/12/1995 -441213 01/01/1996 31/12/2006 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of tropical wood specified in Subheading Note 1 to this chapter (excl. sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/1996 31/12/2006 -44121310 01/01/2000 31/12/2001 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of one the following: dark red meranti, light red meranti, white lauan, sipo, limba, obéché, okoumé, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para or palissandre de rose (excl. sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/2000 31/12/2001 -44121310 01/01/2002 31/12/2006 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of one the following: dark red meranti, light red meranti, white lauan, sipo, limba, obeche, okoumé, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para or palissandre de rose (excl. sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/2002 31/12/2006 -44121311 01/01/1996 31/12/1999 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of okoumé (excl. sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/1996 31/12/1999 -44121319 01/01/1996 31/12/1999 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of one the following: dark red meranti, light red meranti, white lauan, sipo, limba, obéché, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para or palissandre de rose (excl. sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/1996 31/12/1999 -44121390 01/01/1996 31/12/2001 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of a tropical wood specified in Subheading Note 1 to this chapter (excl. okoumé, dark red meranti, light red meranti, white lauan, sipo, limba, obéché, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para or palissandre de rose, sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/1996 31/12/2001 -44121390 01/01/2002 31/12/2006 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of a tropical wood specified in Subheading Note 1 to this chapter (excl. okoumé, dark red meranti, light red meranti, white lauan, sipo, limba, obeche, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para or palissandre de rose, sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/2002 31/12/2006 -441214 01/01/1996 31/12/2006 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of non-coniferous wood or other tropical wood than specified in Subheading Note 1 to this chapter (excl. sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/1996 31/12/2006 -44121400 01/01/1996 31/12/2001 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of non-coniferous wood or other tropical wood than specified in Subheading Note 1 to this chapter (excl. sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/1996 31/12/2001 -44121400 01/01/2002 31/12/2006 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of non-coniferous wood or other tropical wood than specified in Subheading Note 1 to this chapter (excl. sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/2002 31/12/2006 -441219 01/01/1988 31/12/2006 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick (excl. plywood of subheadings 4412.13 and 4412.14; sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/1988 31/12/2006 -44121900 01/01/1988 31/12/2001 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick (excl. plywood of subheading Nos 4412.13 and 4412.14; sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/1988 31/12/2001 -44121900 01/01/2002 31/12/2006 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick (excl. plywood of subheadings 4412.13 and 4412.14; sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/2002 31/12/2006 -441221 01/01/1988 31/12/1995 LIBEN Veneered wood and similar laminated wood with at least one outer ply of non-coniferous wood and containing at least one layer of particle board (excl. hollow-core composite panels and sheets identifiable as furniture components) 01/01/1988 31/12/1995 -44122100 01/01/1988 31/12/1995 LIBEN Veneered wood and similar laminated wood with at least one outer ply of non-coniferous wood and containing at least one layer of particle board (excl. hollow-core composite panels and sheets identifiable as furniture components) 01/01/1988 31/12/1995 -441222 01/01/1996 31/12/2006 LIBEN Veneered panels and similar laminated wood with at least one outer ply of tropical wood specified in Subheading Note 1 to this chapter (excl. sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/1996 31/12/2006 -44122210 01/01/1996 31/12/2001 LIBEN Veneered panels and similar laminated wood with at least one outer ply of of a tropical wood specified in Subheading Note 1 to this chapter and containing at least one layer of particle board (excl. hollow-core composite panels and sheets identifiable as furniture components) 01/01/1996 31/12/2001 -44122210 01/01/2002 31/12/2006 LIBEN Veneered panels and similar laminated wood with at least one outer ply of a tropical wood specified in Subheading Note 1 to this chapter and containing at least one layer of particle board (excl. hollow-core composite panels and sheets identifiable as furniture components) 01/01/2002 31/12/2006 -44122291 01/01/1996 31/12/2001 LIBEN Veneered panels and similar laminated wood with at least one outer ply of a wood specified in Subheading Note 1 to this chapter and a blockboard, laminboard or battenboard (excl. sheets of compressed wood, inlaid wood and sheets identifiable as furniture components) 01/01/1996 31/12/2001 -44122291 01/01/2002 31/12/2006 LIBEN Veneered panels and similar laminated wood with at least one outer ply of a tropical wood specified in Subheading Note 1 to this chapter and a blockboard, laminboard or battenboard (excl. sheets of compressed wood, inlaid wood and sheets identifiable as furniture components) 01/01/2002 31/12/2006 -44122299 01/01/1996 31/12/2001 LIBEN Veneered panels and similar laminated wood with at least one outer ply of a wood specified in Subheading Note 1 to this chapter, not containing particle board and without blockboard, laminboard or battenboard (excl. plywood, sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/1996 31/12/2001 -44122299 01/01/2002 31/12/2006 LIBEN Veneered panels and similar laminated wood with at least one outer ply of a tropical wood specified in Subheading Note 1 to this chapter, not containing particle board and without blockboard, laminboard or battenboard (excl. plywood, sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/2002 31/12/2006 -441223 01/01/1996 31/12/2006 LIBEN Veneered panels and similar laminated wood with at least one outer ply of non-coniferous wood or other tropical wood than specified in Subheading Note 1 to this chapter and containing at least one layer of particle board (excl. hollow-core composite panels and sheets identifiable as furniture components) 01/01/1996 31/12/2006 -44122300 01/01/1996 31/12/2001 LIBEN Veneered panels and similar laminated wood with at least one outer ply of non-coniferous wood or other tropical wood than specified in Subheading Note 1 to this chapter and containing at least one layer of particle board (excl. hollow-core composite panels and sheets identifiable as furniture components) 01/01/1996 31/12/2001 -44122300 01/01/2002 31/12/2006 LIBEN Veneered panels and similar laminated wood with at least one outer ply of non-coniferous wood or other tropical wood than specified in Subheading Note 1 to this chapter and containing at least one layer of particle board (excl. hollow-core composite panels and sheets identifiable as furniture components) 01/01/2002 31/12/2006 -441229 01/01/1988 31/12/2006 LIBEN Veneered panels and similar laminated wood with at least one outer ply of non-coniferous wood or other tropical wood than specified in Subheading Note 1 to this chapter but not containing particle board (excl. plywood, sheets of compressed wood, hollow-core composite panels, parquet panels or sheets, inlaid wood and sheets identifiable as furniture components) 01/01/1988 31/12/2006 -44122910 01/01/1988 31/12/1995 LIBEN Veneered wood and similar laminated wood with at least one outer ply of non-coniferous wood and a block, lamina or batten core (excl. sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/1988 31/12/1995 -44122920 01/01/1996 31/12/2001 LIBEN Veneered panels and similar laminated wood with at least one outer ply of non-coniferous wood or a tropical wood specified in Subheading Note 1 to this chapter, and containing blockboard, laminboard or battenboard (excl. sheets of compressed wood, inlaid wood and sheets identifiable as furniture components) 01/01/1996 31/12/2001 -44122920 01/01/2002 31/12/2006 LIBEN Veneered panels and similar laminated wood with at least one outer ply of non-coniferous wood or a tropical wood specified in Subheading Note 1 to this chapter, and containing blockboard, laminboard or battenboard (excl. sheets of compressed wood, inlaid wood and sheets identifiable as furniture components) 01/01/2002 31/12/2006 -44122980 01/01/1996 31/12/2001 LIBEN Veneered panels and similar laminated wood with at least one outer ply of non-coniferous wood or of a tropical wood specified in Subheading Note 1 to this chapter, not containing particle board and without blockboard, laminboard or battenboarde (excl. plywood, sheets of compressed wood, hollow-core composite panels, parquet panels or sheets, inlaid wood and sheets identifiable as furniture components) 01/01/1996 31/12/2001 -44122980 01/01/2002 31/12/2006 LIBEN Veneered panels and similar laminated wood with at least one outer ply of non-coniferous wood or of a tropical wood specified in Subheading Note 1 to this chapter, not containing particle board and without blockboard, laminboard or battenboard (excl. plywood, sheets of compressed wood, hollow-core composite panels, parquet panels or sheets, inlaid wood and sheets identifiable as furniture components) 01/01/2002 31/12/2006 -44122990 01/01/1988 31/12/1995 LIBEN Veneered wood and similar laminated wood with at least one outer ply of non-coniferous wood but not containing particle board or a block, lamina or batten core (excl. plywood, sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/1988 31/12/1995 -441231 01/01/2007 31/12/2500 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of tropical wood (excl. sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2007 31/12/2500 -44123110 01/01/2007 31/12/2500 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of one the following: dark red meranti, light red meranti, white lauan, sipo, limba, obeche, okoumé, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para or palissandre de rose (excl. sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2007 31/12/2500 -44123190 01/01/2007 31/12/2016 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of a tropical wood specified in Subheading Note 1 to this chapter (excl. okoumé, dark red meranti, light red meranti, white lauan, sipo, limba, obeche, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para or palissandre de rose, sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2007 31/12/2016 -44123190 01/01/2017 31/12/2500 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of tropical wood (excl. with an outer ply of okoumé, dark red meranti, light red meranti, white lauan, sipo, limba, obeche, acajou d'Afrique, sapelli, virola, mahogany "Swietenia spp.", palissandre de Rio, palissandre de Para or palissandre de Rose, sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2017 31/12/2500 -441232 01/01/2007 31/12/2016 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of non-coniferous wood or other tropical wood than specified in Subheading Note 1 to this chapter (excl. of bamboo, and sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2007 31/12/2016 -44123200 01/01/2007 31/12/2009 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of non-coniferous wood or other tropical wood than specified in Subheading Note 1 to this chapter (excl. of bamboo, and sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2007 31/12/2009 -44123210 01/01/2010 31/12/2016 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of alder, ash, beech, birch, cherry, chestnut, elm, hickory, hornbeam, horse chestnut, lime, maple, oak, plane tree, poplar, robinia, walnut or yellow poplar (excl. sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2010 31/12/2016 -44123290 01/01/2010 31/12/2016 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of non-coniferous wood or other tropical wood than specified in Subheading Note 1 to this chapter (excl. of alder, ash, beech, birch, cherry, chestnut, elm, hickory, hornbeam, horse chestnut, lime, maple, oak, plane tree, poplar, robinia, walnut, yellow poplar, bamboo, and sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2010 31/12/2016 -441233 01/01/2017 31/12/2500 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of non-coniferous wood of the species alder, ash, beech, birch, cherry, chestnut, elm, eucalyptus, hickory, horse chestnut, lime, maple, oak, plane tree, poplar, aspen, robinia, tulipwood or walnut (excl. of bamboo, with an outer ply of tropical wood, and sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2017 31/12/2500 -44123300 01/01/2017 31/12/2500 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of non-coniferous wood of the species alder, ash, beech, birch, cherry, chestnut, elm, eucalyptus, hickory, horse chestnut, lime, maple, oak, plane tree, poplar, aspen, robinia, tulipwood or walnut (excl. of bamboo, with an outer ply of tropical wood, and sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2017 31/12/2500 -441234 01/01/2017 31/12/2500 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of non-coniferous wood (excl. of bamboo, with an outer ply of tropical wood or of alder, ash, beech, birch, cherry, chestnut, elm, eucalyptus, hickory, horse chestnut, lime, maple, oak, plane tree, poplar, aspen, robinia, tulipwood or walnut, and sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2017 31/12/2500 -44123400 01/01/2017 31/12/2500 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with at least one outer ply of non-coniferous wood (excl. of bamboo, with an outer ply of tropical wood or of alder, ash, beech, birch, cherry, chestnut, elm, eucalyptus, hickory, horse chestnut, lime, maple, oak, plane tree, poplar, aspen, robinia, tulipwood or walnut, and sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2017 31/12/2500 -441239 01/01/2007 31/12/2500 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with both outer plies of coniferous wood (excl. of bamboo, sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2007 31/12/2500 -44123900 01/01/2007 31/12/2500 LIBEN Plywood consisting solely of sheets of wood <= 6 mm thick, with both outer plies of coniferous wood (excl. of bamboo, sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2007 31/12/2500 -441291 01/01/1988 31/12/1995 LIBEN Veneered wood and similar laminated wood with at least one particle board (excl. wood of subheadings 4412.21; hollow-core composite panels and sheets identifiable as furniture components) 01/01/1988 31/12/1995 -44129100 01/01/1988 31/12/1995 LIBEN Veneered wood and similar laminated wood with at least one particle board (excl. wood of subheadings 4412.21; hollow-core composite panels and sheets identifiable as furniture components) 01/01/1988 31/12/1995 -441292 01/01/1996 31/12/2006 LIBEN Veneered panels and similar laminated wood with at least one ply of a tropical wood specified in Subheading Note 1 to this chapter (excl. wood of subheading 4412.22, sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/1996 31/12/2006 -44129210 01/01/1996 31/12/2001 LIBEN Veneered panels and similar laminated wood with at least one ply of a tropical wood specified in Subheading Note 1 to this chapter and containing at least one layer of particle board (excl. wood of subheading 4412,22, hollow-core composite panels and sheets identifiable as furniture components) 01/01/1996 31/12/2001 -44129210 01/01/2002 31/12/2006 LIBEN Veneered panels and similar laminated wood with at least one ply of a tropical wood specified in Subheading Note 1 to this chapter and containing at least one layer of particle board (excl. wood of subheading 4412.22, hollow-core composite panels and sheets identifiable as furniture components) 01/01/2002 31/12/2006 -44129291 01/01/1996 31/12/2001 LIBEN Veneered panels and similar laminated wood with at least one ply of a tropical wood specified in Subheading Note 1 to this chapter, and containing blockboard, laminboard or battenboard (excl. wood of heading 4412.22.91, sheets of compressed wood, inlaid wood and sheets identifiable as furniture components) 01/01/1996 31/12/2001 -44129291 01/01/2002 31/12/2006 LIBEN Veneered panels and similar laminated wood with at least one ply of a tropical wood specified in Subheading Note 1 to this chapter, and containing blockboard, laminboard or battenboard (excl. wood of heading 4412.22.91, sheets of compressed wood, inlaid wood and sheets identifiable as furniture components) 01/01/2002 31/12/2006 -44129299 01/01/1996 31/12/2001 LIBEN Veneered panels and similar laminated wood with at least one ply of a tropical wood specified in Subheading Note 1 to this chapter, not containing particle board and without blockboard, laminboard or battenboard (excl. wood of subheading 4412.22.99, sheets of compressed wood, hollow-core composite panels, parquet panels or sheets, inlaid wood and sheets identifiable as furniture components) 01/01/1996 31/12/2001 -44129299 01/01/2002 31/12/2006 LIBEN Veneered panels and similar laminated wood with at least one ply of a tropical wood specified in Subheading Note 1 to this chapter, not containing particle board and without blockboard, laminboard or battenboard (excl. wood of subheading 4412.22.99, sheets of compressed wood, hollow-core composite panels, parquet panels or sheets, inlaid wood and sheets identifiable as furniture components) 01/01/2002 31/12/2006 -441293 01/01/1996 31/12/2006 LIBEN Veneered panels and similar laminated wood with at least one layer of particle board (excl. wood of subheading 4412.23, hollow-core composite panels and sheets identifiable as furniture components) 01/01/1996 31/12/2006 -44129300 01/01/1996 31/12/2001 LIBEN Veneered panels and similar laminated wood with at least one layer of particle board (excl. wood of subheading 4412,23, hollow-core composite panels and sheets identifiable as furniture components) 01/01/1996 31/12/2001 -44129300 01/01/2002 31/12/2006 LIBEN Veneered panels and similar laminated wood with at least one layer of particle board (excl. wood of subheading 4412.23, hollow-core composite panels and sheets identifiable as furniture components) 01/01/2002 31/12/2006 -441294 01/01/2007 31/12/2500 LIBEN Laminated wood as blockboard, laminboard or battenboard (excl. of bamboo, plywood consisting solely of sheets of wood <= 6 mm thick, sheets of compressed wood, inlaid wood and sheets identifiable as furniture components) 01/01/2007 31/12/2500 -44129410 01/01/2007 31/12/2500 LIBEN Laminated wood with at least one outer ply of non-coniferous wood, and containing blockboard, laminboard or battenboard (excl. of bamboo, plywood consisting solely of sheets of wood <= 6 mm thick, sheets of compressed wood, inlaid wood and sheets identifiable as furniture components) 01/01/2007 31/12/2500 -44129490 01/01/2007 31/12/2500 LIBEN Laminated wood as blockboard, laminboard or battenboard (excl. of bamboo, such with at least one outer ply of non-coniferous wood, plywood consisting solely of sheets of wood <= 6 mm thick, sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2007 31/12/2500 -441299 01/01/1988 31/12/2500 LIBEN Laminated wood without blockboard, laminboard or battenboard (excl. of bamboo, plywood consisting solely of sheets of wood <= 6 mm thick, sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/1988 31/12/2500 -44129910 01/01/1988 31/12/1995 LIBEN Veneered wood and similar laminated wood with a block, lamina or batten core (excl. wood of headings 4412.29.10; sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/1988 31/12/1995 -44129920 01/01/1996 31/12/2001 LIBEN Veneered panels and similar laminated wood with blockboard, laminboard or battenboard (excl. wood of subheading Nos 4412.29.20 and 4412.92.91, sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/1996 31/12/2001 -44129920 01/01/2002 31/12/2006 LIBEN Veneered panels and similar laminated wood with blockboard, laminboard or battenboard (excl. wood of subheadings 4412.29.20 and 4412.92.91, sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/2002 31/12/2006 -44129930 01/01/2007 31/12/2500 LIBEN Veneered panels and similar laminated wood with at least one layer of particle board, without blockboard, laminboard or battenboard (excl. of bamboo, plywood consisting solely of sheets of wood <= 6 mm thick, sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2007 31/12/2500 -44129940 01/01/2010 31/12/2500 LIBEN Veneered panels and similar laminated wood with at least one outer ply of alder, ash, beech, birch, cherry, chestnut, elm, hickory, hornbeam, horse chestnut, lime, maple, oak, plane tree, poplar, robinia, walnut or yellow poplar, not containing layers of particle board and without blockboard, laminboard or battenboard (excl. plywood consisting solely of sheets of wood <= 6 mm thick, sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2010 31/12/2500 -44129950 01/01/2010 31/12/2500 LIBEN Veneered panels and similar laminated wood with at least one outer ply of non-coniferous wood, not containing layers of particle board and without blockboard, laminboard or battenboard (excl. of alder, ash, beech, birch, cherry, chestnut, elm, hickory, hornbeam, horse chestnut, lime, maple, oak, plane tree, poplar, robinia, walnut or yellow poplar, plywood consisting solely of sheets of wood <= 6 mm thick, sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2010 31/12/2500 -44129970 01/01/2007 31/12/2009 LIBEN Veneered panels and similar laminated wood not containing layers of particle board and without blockboard, laminboard or battenboard (excl. of bamboo, plywood consisting solely of sheets of wood <= 6 mm thick, sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2007 31/12/2009 -44129980 01/01/1996 31/12/2001 LIBEN Veneered panels and similar laminated wood not containing particle board and without blockboard, laminboard or battenboard (excl. wood of subheading Nos 4412.29.80 and 4412.92.99, plywood, sheets of compressed wood, hollow-core composite panels, parquet panels or sheets, inlaid wood and sheets identifiable as furniture components) 01/01/1996 31/12/2001 -44129980 01/01/2002 31/12/2006 LIBEN Veneered panels and similar laminated wood not containing particle board and without blockboard, laminboard or battenboard (excl. wood of subheadings 4412.29.80 and 4412.92.99, plywood, sheets of compressed wood, hollow-core composite panels, parquet panels or sheets, inlaid wood and sheets identifiable as furniture components) 01/01/2002 31/12/2006 -44129985 01/01/2010 31/12/2500 LIBEN Veneered panels and similar laminated wood not containing layers of particle board and without blockboard, laminboard or battenboard (excl. those containing at least one outer ply of non-coniferous wood, of bamboo, plywood consisting solely of sheets of wood <= 6 mm thick, sheets of compressed wood, cellular wood panels, inlaid wood and sheets identifiable as furniture components) 01/01/2010 31/12/2500 -44129990 01/01/1988 31/12/1995 LIBEN Veneered wood and similar laminated wood not containing particle board and without a block, lamina or batten core (excl. wood of subheadings 4412.29.10; sheets of compressed wood, hollow-core composite panels, inlaid wood and sheets identifiable as furniture components) 01/01/1988 31/12/1995 -4413 01/01/1988 31/12/2500 LIBEN Metallised wood and other densified wood in blocks, plates, strips or profile shapes 01/01/1988 31/12/2500 -441300 01/01/1988 31/12/2500 LIBEN Metallised wood and other densified wood in blocks, plates, strips or profile shapes 01/01/1988 31/12/2500 -44130000 01/01/1988 31/12/2500 LIBEN Metallised wood and other densified wood in blocks, plates, strips or profile shapes 01/01/1988 31/12/2500 -4414 01/01/1988 31/12/2500 LIBEN Wooden frames for paintings, photographs, mirrors or similar objects 01/01/1988 31/12/2500 -441400 01/01/1988 31/12/2500 LIBEN Wooden frames for paintings, photographs, mirrors or similar objects 01/01/1988 31/12/2500 -44140000 01/01/1988 31/12/1989 LIBEN Wooden frames for pictures, photographs, mirrors and the like 01/01/1988 31/12/1989 -44140010 01/01/1990 31/12/2500 LIBEN Wooden frames for paintings, photographs, mirrors or similar objects, of tropical wood "okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alan, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, virola, mahogany "Swietenia spp.", imbuia, balsa, palissandre de Rio, palissandre du Brésil and palissandre de Rose" 01/01/1990 31/12/2500 -44140090 01/01/1990 31/12/2500 LIBEN Wooden frames for paintings, photographs, mirrors or similar objects (excl. of tropical wood "okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alan, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, virola, mahogany [Swietenia spp.], imbuia, balsa, palissandre de Rio, palissandre du Brésil and palissandre de Rose") 01/01/1990 31/12/2500 -4415 01/01/1988 31/12/2500 LIBEN Packing cases, boxes, crates, drums and similar packings, of wood; cable-drums of wood; pallets, box pallets and other load boards, of wood; pallet collars of wood (excl. containers specially designed and equipped for one or more modes of transport) 01/01/1988 31/12/2500 -441510 01/01/1988 31/12/2500 LIBEN Cases, boxes, crates, drums and similar packings, of wood; cable-drums of wood 01/01/1988 31/12/2500 -44151010 01/01/1988 31/12/2500 LIBEN Cases, boxes, crates, drums and similar packings, of wood 01/01/1988 31/12/2500 -44151090 01/01/1988 31/12/2500 LIBEN Cable drums of wood 01/01/1988 31/12/2500 -441520 01/01/1988 31/12/2500 LIBEN Pallets, box pallets and other load boards, of wood; pallet collars of wood (excl. containers specially designed and equipped for one or more modes of transport) 01/01/1988 31/12/2500 -44152010 01/01/1988 31/12/1995 LIBEN Flat pallets, of wood 01/01/1988 31/12/1995 -44152020 01/01/1996 31/12/2500 LIBEN Pallets and pallet collars, of wood 01/01/1996 31/12/2500 -44152090 01/01/1988 31/12/2500 LIBEN Box pallets and other load boards, of wood (excl. containers specially designed and equipped for one or more modes of transport; flat pallets and pallet collars) 01/01/1988 31/12/2500 -4416 01/01/1988 31/12/2500 LIBEN Casks, barrels, vats, tubs and other coopers' products parts thereof, of wood, incl. staves 01/01/1988 31/12/2500 -441600 01/01/1988 31/12/2500 LIBEN Casks, barrels, vats, tubs and other coopers' products parts thereof, of wood, incl. staves 01/01/1988 31/12/2500 -44160000 01/01/1999 31/12/2500 LIBEN Casks, barrels, vats, tubs and other coopers' products parts thereof, of wood, incl. staves 01/01/1999 31/12/2500 -44160010 01/01/1988 31/12/1998 LIBEN Riven staves of wood, not further prepared than sawn on one principal surface; sawn staves of wood, of which at least one principal surface has been cylindrically sawn, not further prepared than sawn 01/01/1988 31/12/1998 -44160090 01/01/1988 31/12/1998 LIBEN Casks, barrels, vats, tubs and other coopers' products and parts thereof, of wood (excl. riven staves of wood, not further prepared than sawn on one principal surface; sawn staves of wood, of which at least one principal surface has been cylindrically sawn, not further prepared than sawn) 01/01/1988 31/12/1998 -4417 01/01/1988 31/12/2500 LIBEN Tools, tool bodies, tool handles, broom or brush bodies and handles, of wood; boot or shoe lasts and shoetrees, of wood (excl. forms used in the manufacture of hats, forms of heading 8480, other machines and machine components, of wood) 01/01/1988 31/12/2500 -441700 01/01/1988 31/12/2500 LIBEN Tools, tool bodies, tool handles, broom or brush bodies and handles, of wood; boot or shoe lasts and shoetrees, of wood (excl. forms used in the manufacture of hats, forms of heading 8480, other machines and machine components, of wood) 01/01/1988 31/12/2500 -44170000 01/01/1999 31/12/2500 LIBEN Tools, tool bodies, tool handles, broom or brush bodies and handles, of wood; boot or shoe lasts and shoetrees, of wood (excl. forms used in the manufacture of hats, forms of heading 8480, other machines and machine components, of wood) 01/01/1999 31/12/2500 -44170010 01/01/1988 31/12/1995 LIBEN Handles for cutlery, forks and spoons, of wood; broom and brush bodies, of wood 01/01/1988 31/12/1995 -44170020 01/01/1996 31/12/1998 LIBEN Handles for articles of cutlery (excl. for table-knives, forks or spoons), of wood; brush bodies of wood 01/01/1996 31/12/1998 -44170090 01/01/1988 31/12/1998 LIBEN Tools, tool bodies, tool handles, broom or brush bodies and handles, of wood; boot or shoe lasts and shoetrees, of wood (excl. forms used in the manufacture of hats, forms of heading 8480, other machines and machine components, of wood; handles for articles of cutlery, forks or spoons; brush bodies) 01/01/1988 31/12/1998 -4418 01/01/1988 31/12/2500 LIBEN Builders' joinery and carpentry, of wood, incl. cellular wood panels, assembled flooring panels, shingles and shakes, of wood (excl. plywood panelling, blocks, strips and friezes for parquet flooring, not assembled, and pre-fabricated buildings) 01/01/1988 31/12/2500 -441810 01/01/1988 31/12/2500 LIBEN Windows, French windows and their frames, of wood 01/01/1988 31/12/2500 -44181000 01/01/1988 31/12/1995 LIBEN Windows, French windows and their frames and coverings, of wood 01/01/1988 31/12/1995 -44181010 01/01/1996 31/12/2500 LIBEN Windows and French windows and their frames, of okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alan, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, virola, mahogany "Swietenia spp.", imbuia, balsa, palissandre de Rio, palissandre de Para and palissandre de rose 01/01/1996 31/12/2500 -44181050 01/01/1996 31/12/2500 LIBEN Windows and French windows and their frames, of coniferous wood 01/01/1996 31/12/2500 -44181090 01/01/1996 31/12/2500 LIBEN Windows and French windows and their frames, of wood (excl. okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alan, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, virola, mahogany "Swietenia spp.", imbuia, balsa, palissandre de Rio, palissandre de Para and palissandre de rose, and coniferous wood) 01/01/1996 31/12/2500 -441820 01/01/1988 31/12/2500 LIBEN Doors and their frames and thresholds, of wood 01/01/1988 31/12/2500 -44182000 01/01/1988 31/12/1989 LIBEN Doors and their frames, coverings and sills, of wood 01/01/1988 31/12/1989 -44182010 01/01/1990 31/12/2500 LIBEN Doors and their frames and thresholds, of okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alan, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, virola, mahogany "Swietenia spp.", imbuia, balsa, palissandre de Rio, palissandre de Para and palissandre de rose 01/01/1990 31/12/2500 -44182050 01/01/1996 31/12/2500 LIBEN Doors and their frames and thresholds, of coniferous wood 01/01/1996 31/12/2500 -44182080 01/01/1996 31/12/2500 LIBEN Doors and their frames and thresholds, of wood (excl. okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alan, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, virola, mahogany "Swietenia spp.", imbuia, balsa, palissandre de Rio, palissandre de Para and palissandre de rose, and coniferous wood) 01/01/1996 31/12/2500 -44182090 01/01/1990 31/12/1995 LIBEN Doors and their frames and thresholds, of wood (excl. okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, dark red, light red, white and yellow meranti, meranti bakau, white lauan, white seraya, alan, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, baboen, mahogany, imbuia, balsa, pallissandre du Brésil, bois de rose femelle) 01/01/1990 31/12/1995 -441830 01/01/1988 31/12/2006 LIBEN Parquet panels of wood (excl. blocks, strips and friezes for parquet flooring, not assembled) 01/01/1988 31/12/2006 -44183010 01/01/1988 31/12/2006 LIBEN Parquet panels for mosaic floors, of wood (excl. blocks, strips and friezes for parquet flooring, not assembled) 01/01/1988 31/12/2006 -44183090 01/01/1988 31/12/1993 LIBEN Parquet panels of wood (excl. mosaic flooring, blocks, strips and friezes for parquet flooring, not assembled) 01/01/1988 31/12/1993 -44183091 01/01/1994 31/12/2006 LIBEN Parquet panels composed of two or more layers of wood (excl. parquet panels for mosaic floors, and blocks, strips and friezes for parquet flooring, not assembled) 01/01/1994 31/12/2006 -44183099 01/01/1994 31/12/2006 LIBEN Parquet panels of wood (excl. panels composed of two or more layers of wood, parquet panels for mosaic floors, and blocks, strips and friezes for parquet flooring, not assembled) 01/01/1994 31/12/2006 -441840 01/01/1988 31/12/2500 LIBEN Wooden shuttering for concrete constructional work (excl. plywood boarding) 01/01/1988 31/12/2500 -44184000 01/01/1988 31/12/2500 LIBEN Wooden shuttering for concrete constructional work (excl. plywood boarding) 01/01/1988 31/12/2500 -441850 01/01/1988 31/12/2500 LIBEN Shingles and shakes, of wood 01/01/1988 31/12/2500 -44185000 01/01/1988 31/12/2500 LIBEN Shingles and shakes, of wood 01/01/1988 31/12/2500 -441860 01/01/2007 31/12/2500 LIBEN Posts and beams, of wood 01/01/2007 31/12/2500 -44186000 01/01/2007 31/12/2500 LIBEN Posts and beams, of wood 01/01/2007 31/12/2500 -441871 01/01/2007 31/12/2016 LIBEN Flooring panels for mosaic floors, assembled, of wood 01/01/2007 31/12/2016 -44187100 01/01/2007 31/12/2016 LIBEN Flooring panels for mosaic floors, assembled, of wood 01/01/2007 31/12/2016 -441872 01/01/2007 31/12/2016 LIBEN Flooring panels, multilayer, assembled, of wood (excl. for mosaic floors) 01/01/2007 31/12/2016 -44187200 01/01/2007 31/12/2016 LIBEN Flooring panels, multilayer, assembled, of wood (excl. for mosaic floors) 01/01/2007 31/12/2016 -441873 01/01/2017 31/12/2500 LIBEN Flooring panels, assembled, of bamboo or with at least the top wear layer of bamboo 01/01/2017 31/12/2500 -44187310 01/01/2017 31/12/2500 LIBEN Flooring panels for mosaic floors, assembled, of bamboo or with at least the top wear layer of bamboo 01/01/2017 31/12/2500 -44187390 01/01/2017 31/12/2500 LIBEN Flooring panels, assembled, of bamboo or with at least the top wear layer of bamboo (excl. for mosaic floors) 01/01/2017 31/12/2500 -441874 01/01/2017 31/12/2500 LIBEN Flooring panels for mosaic floors, assembled, of wood other than bamboo 01/01/2017 31/12/2500 -44187400 01/01/2017 31/12/2500 LIBEN Flooring panels for mosaic floors, assembled, of wood other than bamboo 01/01/2017 31/12/2500 -441875 01/01/2017 31/12/2500 LIBEN Flooring panels, multilayer, assembled, of wood other than bamboo (excl. for mosaic floors) 01/01/2017 31/12/2500 -44187500 01/01/2017 31/12/2500 LIBEN Flooring panels, multilayer, assembled, of wood other than bamboo (excl. for mosaic floors) 01/01/2017 31/12/2500 -441879 01/01/2007 31/12/2500 LIBEN Flooring panels, assembled, of wood other than bamboo (excl. multilayer panels and panels for mosaic floors) 01/01/2007 31/12/2500 -44187900 01/01/2007 31/12/2016 LIBEN Flooring panels, assembled, of wood (excl. multilayer panels and flooring panels for mosaic floors) 01/01/2007 31/12/2016 -44187900 01/01/2017 31/12/2500 LIBEN Flooring panels, assembled, of wood other than bamboo (excl. multilayer panels and panels for mosaic floors) 01/01/2017 31/12/2500 -441890 01/01/1988 31/12/2016 LIBEN Builders' joinery and carpentry, of wood, incl. cellular wood panels (excl. windows, French windows and their frames, doors and their frames and thresholds, posts and beams, assembled flooring panels, wooden shuttering for concrete constructional work, shingles, shakes and prefabricated buildings) 01/01/1988 31/12/2016 -44189000 01/01/1988 31/12/1995 LIBEN Builders' joinery and carpentry, of wood, incl. cellular wood panels (excl. windows, frenchwindows and their frames, doors and their frames and thresholds, parquet panels, blocks, strips and friezes, wooden shuttering for concrete constructional work, shingles, shakes and prefabricated buildings) 01/01/1988 31/12/1995 -44189010 01/01/1996 31/12/2016 LIBEN Builders' joinery and carpentry, of glue-laminated timber (excl. windows and French windows and their frames, doors and their frames and thresholds, wooden shuttering for concrete constructional work, shingles, shakes and prefabricated buildings) 01/01/1996 31/12/2016 -44189080 01/01/2007 31/12/2016 LIBEN Builders' joinery and carpentry, of wood, incl. cellular wood panels (excl. of glue-laminated timber, and windows, French windows and their frames, doors and their frames and thresholds, posts and beams, assembled flooring panels, wooden shuttering for concrete constructional work, shingles, shakes and prefabricated buildings) 01/01/2007 31/12/2016 -44189090 01/01/1996 31/12/2006 LIBEN Builders' joinery and carpentry, of wood, incl. cellular wood panels, of wood (excl. of glue-laminated timber, and windows and French windows and their frames, doors and their frames and thresholds, parquet panels, blocks, strips and friezes, wooden shuttering for concrete constructional work, shingles, shakes and prefabricated buildings) 01/01/1996 31/12/2006 -441891 01/01/2017 31/12/2500 LIBEN Builders' joinery and carpentry, of bamboo (excl. windows, French windows and their frames, doors and their frames and thresholds, posts and beams, assembled flooring panels, wooden shuttering for concrete constructional work, shingles, shakes and prefabricated buildings) 01/01/2017 31/12/2500 -44189100 01/01/2017 31/12/2500 LIBEN Builders' joinery and carpentry, of bamboo (excl. windows, French windows and their frames, doors and their frames and thresholds, posts and beams, assembled flooring panels, wooden shuttering for concrete constructional work, shingles, shakes and prefabricated buildings) 01/01/2017 31/12/2500 -441899 01/01/2017 31/12/2500 LIBEN Builders' joinery and carpentry, of wood, incl. cellular wood panels (excl. of bamboo, windows, French windows and their frames, doors and their frames and thresholds, posts and beams, assembled flooring panels, wooden shuttering for concrete constructional work, shingles, shakes and prefabricated buildings) 01/01/2017 31/12/2500 -44189910 01/01/2017 31/12/2500 LIBEN Builders' joinery and carpentry, of glue-laminated timber (excl. posts and beams) 01/01/2017 31/12/2500 -44189990 01/01/2017 31/12/2500 LIBEN Builders' joinery and carpentry, of wood, incl. cellular wood panels (excl. of bamboo or of glue-laminated timber, windows, French windows and their frames, doors and their frames and thresholds, posts and beams, assembled flooring panels, wooden shuttering for concrete constructional work, shingles, shakes and prefabricated buildings) 01/01/2017 31/12/2500 -4419 01/01/1988 31/12/2500 LIBEN Tableware and kitchenware, of wood (excl. interior fittings, ornaments, coopers' products, tableware and kitchenware components of wood, brushes, brooms and hand sieves) 01/01/1988 31/12/2500 -441900 01/01/1988 31/12/2016 LIBEN Tableware and kitchenware, of wood (excl. interior fittings, ornaments, cooperage products, tableware and kitchenware components of wood, brushes, brooms and hand sieves) 01/01/1988 31/12/2016 -44190000 01/01/1988 31/12/1989 LIBEN Tableware and kitchenware, of wood (excl. interior fittings, ornaments, cooperage products, tableware and kitchenware components of wood, brushes, brooms and hand sieves) 01/01/1988 31/12/1989 -44190010 01/01/1990 31/12/2016 LIBEN Tableware and kitchenware, of okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alan, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, virola, mahogany "Swietenia spp.", imbuia, balsa, palissandre de Rio, palissandre de Para and palissandre de rose 01/01/1990 31/12/2016 -44190090 01/01/1990 31/12/2016 LIBEN Tableware and kitchenware, of wood (excl. okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alan, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, virola, mahogany [Swietenia spp.], imbuia, balsa, palissandre de Rio, palissandre du Brésil and palissandre de Rose; objects for furniture, ornamental objects, cooper's products, parts for wooden tableware and kitchenware, brushes, paintbrushes, brooms and hand sieves) 01/01/1990 31/12/2016 -441911 01/01/2017 31/12/2500 LIBEN Bread boards, chopping boards and similar boards, of bamboo 01/01/2017 31/12/2500 -44191100 01/01/2017 31/12/2500 LIBEN Bread boards, chopping boards and similar boards, of bamboo 01/01/2017 31/12/2500 -441912 01/01/2017 31/12/2500 LIBEN Chopsticks of bamboo 01/01/2017 31/12/2500 -44191200 01/01/2017 31/12/2500 LIBEN Chopsticks of bamboo 01/01/2017 31/12/2500 -441919 01/01/2017 31/12/2500 LIBEN Tableware and kitchenware, of bamboo (excl. chopsticks, bread boards, chopping boards and similar boards) 01/01/2017 31/12/2500 -44191900 01/01/2017 31/12/2500 LIBEN Tableware and kitchenware, of bamboo (excl. chopsticks, bread boards, chopping boards and similar boards) 01/01/2017 31/12/2500 -441990 01/01/2017 31/12/2500 LIBEN Tableware and kitchenware, of wood other than bamboo (excl. interior fittings, ornaments, coopers' products, tableware and kitchenware components of wood, brushes, brooms and hand sieves) 01/01/2017 31/12/2500 -44199010 01/01/2017 31/12/2500 LIBEN Tableware and kitchenware, of tropical wood specified in additional note 2 to Ch 44 01/01/2017 31/12/2500 -44199090 01/01/2017 31/12/2500 LIBEN Tableware and kitchenware, of wood (excl. of bamboo or of tropical wood, interior fittings, ornaments, coopers' products, tableware and kitchenware components of wood, brushes, brooms and hand sieves) 01/01/2017 31/12/2500 -4420 01/01/1988 31/12/2500 LIBEN Wood marquetry and inlaid wood; caskets and cases for jewellery or cutlery, and similar articles, of wood; statuettes and other ornaments, of wood; wooden articles of furniture (excl. furniture, lighting fixtures and parts thereof) 01/01/1988 31/12/2500 -442010 01/01/1988 31/12/2500 LIBEN Statuettes and other ornaments, of wood (excl. wood marquetry and inlaid wood) 01/01/1988 31/12/2500 -44201000 01/01/1988 31/12/1989 LIBEN Statuettes and other ornaments, of wood (excl. wood marquetry and inlaid wood) 01/01/1988 31/12/1989 -44201011 01/01/1990 31/12/2500 LIBEN Statuettes and other ornaments, of okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alan, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, virola, mahogany "Swietenia spp.", imbuia, balsa, palissandre de Rio, palissandre de Para and palissandre de rose (excl. wood marquetry and inlaid wood) 01/01/1990 31/12/2500 -44201019 01/01/1990 31/12/2500 LIBEN Statuettes and other ornaments, of wood (excl. okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alan, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, virola, mahogany [Swietenia spp.], imbuia, balsa, palissandre de Rio, palissandre du Brésil and palissandre de Rose; wood marquetry and inlaid wood) 01/01/1990 31/12/2500 -442090 01/01/1988 31/12/2500 LIBEN Wood marquetry and inlaid wood; caskets and cases for jewellery or cutlery, and similar articles, of wood; wooden articles of furniture (excl. statuettes and other ornaments; furniture, lighting fixtures and parts thereof) 01/01/1988 31/12/2500 -44209010 01/01/1988 31/12/1989 LIBEN Wood marquetry and inlaid wood 01/01/1988 31/12/1989 -44209010 01/01/2000 31/12/2500 LIBEN Wood marquetry and inlaid wood (excl. statuettes and other ornaments, articles of furniture, lamps and lighting fittings and parts thereof) 01/01/2000 31/12/2500 -44209011 01/01/1990 31/12/1999 LIBEN Wood marquetry and inlaid wood, of okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alan, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, virola, mahogany "Swietenia spp.", imbuia, balsa, palissandre de Rio, palissandre de Para and palissandre de Rose (excl. statuettes and other ornaments, articles of furniture, lamps and lighting fittings and parts thereof) 01/01/1990 31/12/1999 -44209019 01/01/1990 31/12/1999 LIBEN Wood marquetry and inlaid wood (excl. of okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alan, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, virola, mahogany "Swietenia spp.", imbuia, balsa, palissandre de Rio, palissandre de Para and palissandre de Rose; statuettes and other ornaments, articles of furniture, lamps and lighting fittings and parts thereof) 01/01/1990 31/12/1999 -44209090 01/01/1988 31/12/1989 LIBEN Caskets, cases and boxes for jewellery, cutlery, forks, spoons and the like, of wood; interior fittings of wood (excl. statuettes and other ornaments, wood marquetry and inlaid wood, furniture, lighting fixtures and parts thereof) 01/01/1988 31/12/1989 -44209091 01/01/1990 31/12/2500 LIBEN Caskets and cases for jewellery or cutlery, and similar articles and articles of furniture of okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alan, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, virola, mahogany (Swietenia spp.), imbuia, balsa, palissandre de Rio, palissandre de Para and palissandre de Rose 01/01/1990 31/12/2500 -44209099 01/01/1990 31/12/2500 LIBEN Caskets and cases for jewellery or cutlery, and similar articles and articles of furniture (excl. okoumé, obeche, sapelli, sipo, acajou d'Afrique, makoré, iroko, tiama, mansonia, ilomba, dibétou, limba, azobé, dark red meranti, light red meranti, meranti bakau, white lauan, white meranti, white seraya, yellow meranti, alan, keruing, ramin, kapur, teak, jongkong, merbau, jelutong, kempas, virola, mahogany "Swietenia spp.", imbuia, balsa, palissandre de Rio, palissandre de Para and palissandre de Rose; statuettes and other ornaments, wood marquetry and inlaid wood, articles of furniture, lamps and lighting fittings and parts thereof) 01/01/1990 31/12/2500 -4421 01/01/1988 31/12/2500 LIBEN Other articles of wood, n.e.s. 01/01/1988 31/12/2500 -442110 01/01/1988 31/12/2500 LIBEN Clothes hangers of wood 01/01/1988 31/12/2500 -44211000 01/01/1988 31/12/2500 LIBEN Clothes hangers of wood 01/01/1988 31/12/2500 -442190 01/01/1988 31/12/2016 LIBEN Other articles of wood, n.e.s. 01/01/1988 31/12/2016 -44219010 01/01/1988 31/12/1999 LIBEN Spools, cops, bobbins, sewing thread reels and the like, of turned wood 01/01/1988 31/12/1999 -44219030 01/01/1988 31/12/1999 LIBEN Blind rollers of wood, whether or not fitted with springs 01/01/1988 31/12/1999 -44219050 01/01/1988 31/12/1999 LIBEN Match splints; wooden pegs or pins for footwear 01/01/1988 31/12/1999 -44219070 01/01/1996 31/12/1999 LIBEN Handles for table-knives, forks or spoons, of wood 01/01/1996 31/12/1999 -44219091 01/01/1988 31/12/2016 LIBEN Articles of fibreboard, n.e.s. 01/01/1988 31/12/2016 -44219095 01/01/2014 31/12/2016 LIBEN Coffins of wood 01/01/2014 31/12/2016 -44219097 01/01/2014 31/12/2016 LIBEN Articles of wood, n.e.s. 01/01/2014 31/12/2016 -44219098 01/01/2000 31/12/2013 LIBEN Articles of wood, n.e.s. 01/01/2000 31/12/2013 -44219099 01/01/1988 31/12/1995 LIBEN Articles of wood n.e.s. 01/01/1988 31/12/1995 -44219099 01/01/1996 31/12/1999 LIBEN Articles of wood n.e.s. 01/01/1996 31/12/1999 -442191 01/01/2017 31/12/2500 LIBEN Articles of bamboo, n.e.s. 01/01/2017 31/12/2500 -44219100 01/01/2017 31/12/2500 LIBEN Articles of bamboo, n.e.s. 01/01/2017 31/12/2500 -442199 01/01/2017 31/12/2500 LIBEN Articles of wood, n.e.s. 01/01/2017 31/12/2500 -44219910 01/01/2017 31/12/2500 LIBEN Articles of fibreboard, n.e.s. 01/01/2017 31/12/2500 -44219991 01/01/2017 31/12/2500 LIBEN Coffins of wood (excl. of fibreboard) 01/01/2017 31/12/2500 -44219999 01/01/2017 31/12/2500 LIBEN Articles of wood, n.e.s. 01/01/2017 31/12/2500 -44CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 44 01/01/2002 31/12/2500 -44CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 44 01/01/2002 31/12/2500 -44CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 44 01/01/2002 31/12/2500 -44MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -44MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -44MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -44SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 44 01/01/1988 31/12/2500 -44SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 44 and SITC section 0 01/01/1997 31/12/2001 -44SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 44 and SITC group 000 01/01/1997 31/12/2001 -44SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 44 and SITC section 2 01/01/1997 31/12/2500 -44SSS245 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 44 and SITC group 245 01/01/1997 31/12/2500 -44SSS246 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 44 and SITC group 246 01/01/1997 31/12/2500 -44SSS247 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 44 and SITC group 247 01/01/1997 31/12/2500 -44SSS248 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 44 and SITC group 248 01/01/1997 31/12/2500 -44SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 44 and SITC section 6 01/01/1997 31/12/2500 -44SSS634 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 44 and SITC group 634 01/01/1997 31/12/2500 -44SSS635 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 44 and SITC group 635 01/01/1997 31/12/2500 -44SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 44 and SITC section 9 01/01/1988 31/12/1996 -44SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 44 and SITC section 9 01/01/1997 31/12/2500 -44SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 44 and SITC group 999 01/01/1988 31/12/1996 -44SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 44 and SITC group 999 01/01/1997 31/12/2500 -45 01/01/1988 31/12/2500 LIBEN CORK AND ARTICLES OF CORK 01/01/1988 31/12/2500 -4501 01/01/1988 31/12/2500 LIBEN Natural cork, raw or merely surface-worked or otherwise cleaned; cork waste; crushed, powdered or ground cork 01/01/1988 31/12/2500 -450110 01/01/1988 31/12/2500 LIBEN Natural cork, raw or simply prepared "merely surface-worked or otherwise cleaned" 01/01/1988 31/12/2500 -45011000 01/01/1988 31/12/2500 LIBEN Natural cork, raw or simply prepared "merely surface-worked or otherwise cleaned" 01/01/1988 31/12/2500 -450190 01/01/1988 31/12/2500 LIBEN Cork waste; crushed, powdered or ground cork 01/01/1988 31/12/2500 -45019000 01/01/1988 31/12/2500 LIBEN Cork waste; crushed, powdered or ground cork 01/01/1988 31/12/2500 -4502 01/01/1988 31/12/2500 LIBEN Natural cork, debacked or roughly squared, or in square or rectangular blocks, plates, sheets or strip, incl. sharp-edged blanks for corks or stoppers 01/01/1988 31/12/2500 -450200 01/01/1988 31/12/2500 LIBEN Natural cork, debacked or roughly squared, or in square or rectangular blocks, plates, sheets or strip, incl. sharp-edged blanks for corks or stoppers 01/01/1988 31/12/2500 -45020000 01/01/1988 31/12/2500 LIBEN Natural cork, debacked or roughly squared, or in square or rectangular blocks, plates, sheets or strip, incl. sharp-edged blanks for corks or stoppers 01/01/1988 31/12/2500 -4503 01/01/1988 31/12/2500 LIBEN Articles of natural cork (excl. cork in square or rectangular blocks, plates, sheets or strips; sharp-edged blanks for corks or stoppers; footware and parts thereof; insoles, whether or not removable; headgear and parts thereof; plugs and dividers for shotgun cartridges; toys, games and sports equipment and parts thereof) 01/01/1988 31/12/2500 -450310 01/01/1988 31/12/2500 LIBEN Corks and stoppers of all types, of natural cork, incl. round-edged blanks 01/01/1988 31/12/2500 -45031000 01/01/1988 31/12/1993 LIBEN Corks and stoppers of all types, of natural cork, incl. round-edged blanks 01/01/1988 31/12/1993 -45031010 01/01/1994 31/12/2500 LIBEN Corks and stoppers, cylindrical, of natural cork 01/01/1994 31/12/2500 -45031090 01/01/1994 31/12/2500 LIBEN Corks and stoppers of all types, incl. round-edged blanks (excl. cylindrical) 01/01/1994 31/12/2500 -450390 01/01/1988 31/12/2500 LIBEN Articles of natural cork (excl. cork in square or rectangular blocks, plates, sheets or strips; corks, stoppers and cork blanks; footware and parts thereof; insoles, whether or not removable; headgear and parts thereof; plugs and dividers for shotgun cartridges; toys, games and sports equipment and parts thereof) 01/01/1988 31/12/2500 -45039000 01/01/1988 31/12/2500 LIBEN Articles of natural cork (excl. cork in square or rectangular blocks, plates, sheets or strips; corks, stoppers and cork blanks; footware and parts thereof; insoles, whether or not removable; headgear and parts thereof; plugs and dividers for shotgun cartridges; toys, games and sports equipment and parts thereof) 01/01/1988 31/12/2500 -4504 01/01/1988 31/12/2500 LIBEN Agglomerated cork, with or without a binding substance, and articles of agglomerated cork (excl. footware and parts thereof, insoles, whether or not removable; headgear and parts thereof; plugs and dividers for shotgun cartridges; toys, games and sports equipment and parts thereof) 01/01/1988 31/12/2500 -450410 01/01/1988 31/12/2500 LIBEN Tiles of any shape, blocks, plates, sheets and strip, solid cylinders, incl. discs, of agglomerated cork 01/01/1988 31/12/2500 -45041000 01/01/1988 31/12/1993 LIBEN Tiles of any shape, blocks, plates, sheets and strip; solid cylinders, incl. discs, of agglomerated cork 01/01/1988 31/12/1993 -45041011 01/01/1994 31/12/2500 LIBEN Corks and stoppers, cylindrical, for sparkling wine, of agglomerated cork, incl. those with discs of natural cork 01/01/1994 31/12/2500 -45041019 01/01/1994 31/12/2500 LIBEN Corks and stoppers, cylindrical, of agglomerated cork (excl. such products for sparkling wine) 01/01/1994 31/12/2500 -45041091 01/01/1994 31/12/2500 LIBEN Tiles of any shape, blocks, plates, sheets and strip, solid cylinders, incl. discs, of agglomerated cork, with a binding substance (excl. corks and stoppers) 01/01/1994 31/12/2500 -45041099 01/01/1994 31/12/2500 LIBEN Tiles of any shape, blocks, plates, sheets and strip, solid cylinders, incl. discs, of agglomerated cork, without binding substance (excl. corks and stoppers) 01/01/1994 31/12/2500 -450490 01/01/1988 31/12/2500 LIBEN Agglomerated cork, with or without a binding substance, and articles of agglomerated cork (excl. footware and parts thereof; insoles, whether or not removable; headgear and parts thereof; plugs and dividers for shotgun cartridges; toys, games and sports equipment and parts thereof; blocks, plates, sheets or strips; tiles of any shape; solid cylinders, incl. discs) 01/01/1988 31/12/2500 -45049010 01/01/1988 31/12/2005 LIBEN Gaskets, washers and other seals of agglomerated cork, for civil aircraft 01/01/1988 31/12/2005 -45049020 01/01/2006 31/12/2500 LIBEN Corks and stoppers, of agglomerated cork (excl. cylindrical) 01/01/2006 31/12/2500 -45049080 01/01/2006 31/12/2500 LIBEN Agglomerated cork, with or without a binding substance, and articles of agglomerated cork (excl. footwear and parts thereof, insoles, whether or not removable; headgear and parts thereof; plugs and dividers for shotgun cartridges; toys, games and sports equipment and parts thereof; blocks, plates, sheets or strips; tiles of any shape; solid cylinders, incl. discs; corks and stoppers) 01/01/2006 31/12/2500 -45049090 01/01/1988 31/12/1993 LIBEN Agglomerated cork, whether or not with bonding agent, and articles of agglomerated cork (excl. footware and parts thereof; insoles, whether or not removable; headgear and parts thereof; plugs and dividers for shotgun cartridges; toys, games and sports equipment and parts thereof; blocks, plates, sheets or strips; tiles of any shape; solid cylinders, incl. discs; gaskets, washers and other seals for civil aircraft) 01/01/1988 31/12/1993 -45049091 01/01/1994 31/12/2005 LIBEN Corks and stoppers, of agglomerated cork (excl. cylindrical) 01/01/1994 31/12/2005 -45049099 01/01/1994 31/12/2005 LIBEN Agglomerated cork, with or without a binding substance, and articles of agglomerated cork (excl. footwear and parts thereof, insoles, whether or not removable; headgear and parts thereof; plugs and dividers for shotgun cartridges; toys, games and sports equipment and parts thereof; blocks, plates, sheets or strips; tiles of any shape; solid cylinders, incl. discs; corks and stoppers; gaskets, washers and other seals for civil aircraft of subheading 4504.90.10) 01/01/1994 31/12/2005 -45CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 45 01/01/2002 31/12/2500 -45CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 45 01/01/2002 31/12/2500 -45CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 45 01/01/2002 31/12/2500 -45MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -45MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -45MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -45SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 45 01/01/1988 31/12/2500 -45SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 45 and SITC section 0 01/01/1997 31/12/2001 -45SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 45 and SITC group 000 01/01/1997 31/12/2001 -45SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 45 and SITC section 2 01/01/1997 31/12/2500 -45SSS244 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 45 and SITC group 244 01/01/1997 31/12/2500 -45SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 45 and SITC section 6 01/01/1997 31/12/2500 -45SSS633 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 45 and SITC group 633 01/01/1997 31/12/2500 -45SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 45 and SITC section 9 01/01/1988 31/12/1996 -45SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 45 and SITC section 9 01/01/1997 31/12/2500 -45SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 45 and SITC group 999 01/01/1988 31/12/1996 -45SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 45 and SITC group 999 01/01/1997 31/12/2500 -46 01/01/1988 31/12/2500 LIBEN MANUFACTURES OF STRAW, OF ESPARTO OR OF OTHER PLAITING MATERIALS; BASKETWARE AND WICKERWORK 01/01/1988 31/12/2500 -4601 01/01/1988 31/12/2500 LIBEN Plaits and similar products of plaiting materials, whether or not assembled into strips; plaiting materials, plaits and similar products of plaiting materials, flat-woven or bound together in parallel, whether or not having the appearance of finished articles, e.g. mats, matting, screens (excl. wallcoverings of heading 4814; twine, cord and rope; parts of footware or headgear) 01/01/1988 31/12/2500 -460110 01/01/1988 31/12/2001 LIBEN Plaits and similar products of plaiting materials worked lengthwise, whether or not assembled into strips (excl. twine, cord and rope; parts of footware or headgear) 01/01/1988 31/12/2001 -46011010 01/01/1988 31/12/2001 LIBEN Plaits and similar products of plaiting materials worked lengthwise, whether or not assembled into strips, of unspun vegetable materials (excl. parts of footware or headgear) 01/01/1988 31/12/2001 -46011090 01/01/1988 31/12/2001 LIBEN Plaits and similar products of plaiting materials worked lengthwise, whether or not assembled into strips (excl. those of unspun vegetable materials; twine, cord and rope; parts of footware or headgear) 01/01/1988 31/12/2001 -460120 01/01/1988 31/12/2006 LIBEN Mats, matting and screens of vegetable plaiting materials, flat-woven or bound together in parallel 01/01/1988 31/12/2006 -46012010 01/01/1988 31/12/2006 LIBEN Mats, matting and screens of vegetable plaiting materials, flat-woven or bound together in parallel, of plaits or similar products of plaiting materials worked lengthwise 01/01/1988 31/12/2006 -46012090 01/01/1988 31/12/2006 LIBEN Mats, matting and screens of vegetable plaiting materials, flat-woven or bound together in parallel (excl. those of plaits or similar products of plaiting materials worked lengthwise) 01/01/1988 31/12/2006 -460121 01/01/2007 31/12/2500 LIBEN Mats, matting and screens of bamboo plaiting materials, flat-woven or bound together in parallel 01/01/2007 31/12/2500 -46012110 01/01/2007 31/12/2500 LIBEN Mats, matting and screens, flat-woven or bound together in parallel, of plaits or similar products of plaiting materials of bamboo, worked lengthwise 01/01/2007 31/12/2500 -46012190 01/01/2007 31/12/2500 LIBEN Mats, matting and screens, of bamboo plaiting materials, flat-woven or bound together in parallel (excl. those of plaits or similar products of plaiting materials worked lengthwise) 01/01/2007 31/12/2500 -460122 01/01/2007 31/12/2500 LIBEN Mats, matting and screens, of rattan plaiting materials, flat-woven or bound together in parallel 01/01/2007 31/12/2500 -46012210 01/01/2007 31/12/2500 LIBEN Mats, matting and screens, flat-woven or bound together in parallel, of plaits or similar products of plaiting materials of rattan, worked lengthwise 01/01/2007 31/12/2500 -46012290 01/01/2007 31/12/2500 LIBEN Mats, matting and screens, of rattan plaiting materials, flat-woven or bound together in parallel (excl. those of plaits or similar products of plaiting materials worked lengthwise) 01/01/2007 31/12/2500 -460129 01/01/2007 31/12/2500 LIBEN Mats, matting and screens, of vegetable plaiting materials, flat-woven or bound together in parallel (excl. of bamboo and rattan) 01/01/2007 31/12/2500 -46012910 01/01/2007 31/12/2500 LIBEN Mats, matting and screens, of vegetable plaiting materials, flat-woven or bound together in parallel, of plaits or similar products of plaiting materials worked lengthwise (excl. of bamboo and rattan) 01/01/2007 31/12/2500 -46012990 01/01/2007 31/12/2500 LIBEN Mats, matting and screens, of vegetable plaiting materials, flat-woven or bound together in parallel (excl. of bamboo and rattan and those of plaits or similar products of plaiting materials worked lengthwise) 01/01/2007 31/12/2500 -460191 01/01/1988 31/12/2006 LIBEN Plaits and similar products of plaiting materials, whether or not assembled into strips; plaiting materials, plaits and similar products of vegetable plaiting materials, flat-woven or bound together in parallel (excl. mats, matting and screens; wallcoverings of heading 4814; parts of footware or headgear) 01/01/1988 31/12/2006 -46019105 01/01/2002 31/12/2006 LIBEN Plaits and similar products of vegetable plaiting materials worked lengthwise, whether or not assembled into strips (excl. twine, cord and rope; parts of footware or headgear) 01/01/2002 31/12/2006 -46019110 01/01/1988 31/12/2006 LIBEN Plaiting materials, plaits and similar products of vegetable materials, flat-woven or bound together in parallel, made of plaits or similar plaiting materials worked lengthwise (excl. mats, matting and screens; wallcoverings of heading 4814; parts of footware or headgear) 01/01/1988 31/12/2006 -46019190 01/01/1988 31/12/2006 LIBEN Plaiting materials, plaits and similar products of vegetable plaiting materials, flat-woven or bound together in parallel (excl. those of plaits or similar products of plaiting materials worked lengthwise; mats, matting and screens; wallcoverings of heading 4814; parts of footware or headgear) 01/01/1988 31/12/2006 -460192 01/01/2007 31/12/2500 LIBEN Plaits and similar products, of bamboo plaiting materials, whether or not assembled into strips; plaiting materials, plaits and similar products of bamboo, flat-woven or bound together in parallel (excl. mats, matting and screens; wallcoverings of heading 4814; parts of footware or headgear) 01/01/2007 31/12/2500 -46019205 01/01/2007 31/12/2500 LIBEN Plaits and similar products of bamboo plaiting materials worked lengthwise, whether or not assembled into strips (excl. mats, matting and screens; twine, cord and rope; parts of footware or headgear) 01/01/2007 31/12/2500 -46019210 01/01/2007 31/12/2500 LIBEN Plaiting materials, plaits and similar products of bamboo plaiting materials, flat-woven or bound together in parallel, made of plaits or similar plaiting materials worked lengthwise (excl. mats, matting and screens; wallcoverings of heading 4814; parts of footware or headgear) 01/01/2007 31/12/2500 -46019290 01/01/2007 31/12/2500 LIBEN Plaiting materials, plaits and similar products of bamboo plaiting materials, flat-woven or bound together in parallel (excl. those of plaits or similar products of plaiting materials worked lengthwise; mats, matting and screens; wallcoverings of heading 4814; parts of footware or headgear) 01/01/2007 31/12/2500 -460193 01/01/2007 31/12/2500 LIBEN Plaits and similar products, of rattan plaiting materials, whether or not assembled into strips; plaiting materials, plaits and similar products of rattan, flat-woven or bound together in parallel (excl. mats, matting and screens; wallcoverings of heading 4814; parts of footware or headgear) 01/01/2007 31/12/2500 -46019305 01/01/2007 31/12/2500 LIBEN Plaits and similar products of rattan plaiting materials worked lengthwise, whether or not assembled into strips (excl. twine, cord and rope; parts of footware or headgear) 01/01/2007 31/12/2500 -46019310 01/01/2007 31/12/2500 LIBEN Plaiting materials, plaits and similar products of rattan materials, flat-woven or bound together in parallel, made of plaits or similar plaiting materials worked lengthwise (excl. mats, matting and screens; wallcoverings of heading 4814; parts of footware or headgear) 01/01/2007 31/12/2500 -46019390 01/01/2007 31/12/2500 LIBEN Plaiting materials, plaits and similar products of rattan plaiting materials, flat-woven or bound together in parallel (excl. those of plaits or similar products of plaiting materials worked lengthwise; mats, matting and screens; wallcoverings of heading 4814; parts of footware or headgear) 01/01/2007 31/12/2500 -460194 01/01/2007 31/12/2500 LIBEN Plaits and similar products of vegetable plaiting materials, whether or not assembled into strips; plaiting materials, plaits and similar products of vegetable plaiting materials, flat-woven or bound together in parallel (excl. of bamboo and rattan; mats, matting and screens; wallcoverings of heading 4814; parts of footware or headgear) 01/01/2007 31/12/2500 -46019405 01/01/2007 31/12/2500 LIBEN Plaits and similar products of vegetable plaiting materials worked lengthwise, whether or not assembled into strips (excl. of bamboo and rattan, and twine, cord and rope; parts of footware or headgear) 01/01/2007 31/12/2500 -46019410 01/01/2007 31/12/2500 LIBEN Plaiting materials, plaits and similar products of vegetable materials, flat-woven or bound together in parallel, made of plaits or similar plaiting materials worked lengthwise (excl. of bamboo and rattan; mats, matting and screens; wallcoverings of heading 4814; parts of footware or headgear) 01/01/2007 31/12/2500 -46019490 01/01/2007 31/12/2500 LIBEN Plaiting materials, plaits and similar products of vegetable plaiting materials, flat-woven or bound together in parallel (excl. of bamboo and rattan; those of plaits or similar products of plaiting materials worked lengthwise; mats, matting and screens; wallcoverings of heading 4814; parts of footware or headgear) 01/01/2007 31/12/2500 -460199 01/01/1988 31/12/2500 LIBEN Plaiting materials, plaits and similar products of non-vegetable plaiting materials, flat-woven or bound together in parallel (excl. wallcoverings of heading 4814; parts of footware or headgear) 01/01/1988 31/12/2500 -46019905 01/01/2002 31/12/2500 LIBEN Plaits and similar products of non-vegetable plaiting materials worked lengthwise, whether or not assembled into strips (excl. twine, cord and rope; parts of footware or headgear) 01/01/2002 31/12/2500 -46019910 01/01/1988 31/12/2500 LIBEN Plaiting materials, plaits and similar products of non-vegetable plaiting materials, flat-woven or bound together in parallel, made of plaits or similar plaiting materials worked lengthwise (excl. wallcoverings of heading 4814; parts of footware or headgear) 01/01/1988 31/12/2500 -46019990 01/01/1988 31/12/2500 LIBEN Plaiting materials, plaits and similar products of non-vegetable materials, flat-woven or bound together in parallel (excl. those made of plaits or similar products of plaiting materials worked lengthwise; wallcoverings of heading 4814; parts of footware or headgear) 01/01/1988 31/12/2500 -4602 01/01/1988 31/12/2500 LIBEN Basketwork, wickerwork and other articles, made directly to shape from plaiting materials or made up from goods of heading 4601, and articles of loofah (excl. wallcoverings of heading 4814; twine, cord and rope; footware and headgear and parts thereof; vehicles and vehicle superstructures; goods of chapter 94, e.g. furniture, lighting fixtures) 01/01/1988 31/12/2500 -460210 01/01/1988 31/12/2006 LIBEN Basketwork, wickerwork and other articles, made directly to shape from plaiting materials or made up from goods of heading 4601, and articles of loofah (excl. wallcoverings of heading 4814; twine, cord and rope; footware and headgear and parts thereof; vehicles and vehicle superstructures; goods of chapter 94, e.g. furniture, lighting fixtures) 01/01/1988 31/12/2006 -46021010 01/01/1988 31/12/2006 LIBEN Bottle envelopes made directly from straw or from vegetable plaiting materials of heading 4601 01/01/1988 31/12/2006 -46021091 01/01/1988 31/12/2006 LIBEN Basketwork, wickerwork and other articles, made directly to shape from vegetable plaiting materials (excl. plaited-only bands or flat-woven articles; bottle envelopes of straw, wallcoverings of heading 4814; twine, cord and rope; footware and headgear and parts thereof; vehicles and vehicle superstructures; goods of chapter 94, e.g. furniture, lighting fixtures) 01/01/1988 31/12/2006 -46021099 01/01/1988 31/12/2006 LIBEN Basketwork, wickerwork and other articles, made up from goods of vegetable materials of heading 4601, and articles of loofah (excl. plaited-only bands or flat-woven articles; bottle envelopes of straw, wallcoverings of heading 4814; twine, cord and rope; footware and headgear and parts thereof; vehicles and vehicle superstructures; goods of chapter 94, e.g. furniture, lighting fixtures) 01/01/1988 31/12/2006 -460211 01/01/2007 31/12/2500 LIBEN Basketwork, wickerwork and other articles, made directly to shape from bamboo plaiting materials or made up from goods of bamboo plaiting materials of heading 4601, and articles of loofah (excl. wallcoverings of heading 4814; twine, cord and rope; footware and headgear and parts thereof; vehicles and vehicle superstructures; goods of chapter 94, e.g. furniture, lighting fixtures) 01/01/2007 31/12/2500 -46021100 01/01/2007 31/12/2500 LIBEN Basketwork, wickerwork and other articles, made directly to shape from bamboo plaiting materials or made up from goods of bamboo plaiting materials of heading 4601, and articles of loofah (excl. wallcoverings of heading 4814; twine, cord and rope; footware and headgear and parts thereof; vehicles and vehicle superstructures; goods of chapter 94, e.g. furniture, lighting fixtures) 01/01/2007 31/12/2500 -460212 01/01/2007 31/12/2500 LIBEN Basketwork, wickerwork and other articles, made directly to shape from rattan plaiting materials or made up from goods of rattan plaiting materials of heading 4601, and articles of loofah (excl. wallcoverings of heading 4814; twine, cord and rope; footware and headgear and parts thereof; vehicles and vehicle superstructures; goods of chapter 94, e.g. furniture, lighting fixtures) 01/01/2007 31/12/2500 -46021200 01/01/2007 31/12/2500 LIBEN Basketwork, wickerwork and other articles, made directly to shape from rattan plaiting materials or made up from goods of rattan plaiting materials of heading 4601, and articles of loofah (excl. wallcoverings of heading 4814; twine, cord and rope; footware and headgear and parts thereof; vehicles and vehicle superstructures; goods of chapter 94, e.g. furniture, lighting fixtures) 01/01/2007 31/12/2500 -460219 01/01/2007 31/12/2500 LIBEN Basketwork, wickerwork and other articles, made directly to shape from vegetable plaiting materials or made up from goods of vegetable plaiting materials of heading 4601, and articles of loofah (excl. of bamboo and rattan; wallcoverings of heading 4814; twine, cord and rope; footware and headgear and parts thereof; vehicles and vehicle superstructures; goods of chapter 94, e.g. furniture, lighting fixtures) 01/01/2007 31/12/2500 -46021910 01/01/2007 31/12/2500 LIBEN Bottle envelopes made directly from straw or from vegetable plaiting materials of heading 4601 (excl. of bamboo and rattan) 01/01/2007 31/12/2500 -46021990 01/01/2011 31/12/2500 LIBEN Basketwork, wickerwork and other articles, made directly to shape from vegetable plaiting materials or from goods of vegetable materials of heading 4601, and articles of loofah (excl. of bamboo and rattan; bottle envelopes of straw, wallcoverings of heading 4814; twine, cord and rope; footware and headgear and parts thereof; vehicles and vehicle superstructures; goods of chapter 94, e.g. furniture, lighting fixtures) 01/01/2011 31/12/2500 -46021991 01/01/2007 31/12/2010 LIBEN Basketwork, wickerwork and other articles, made directly to shape from vegetable plaiting materials (excl. of bamboo and rattan; plaited-only bands or flat-woven articles; bottle envelopes of straw, wallcoverings of heading 4814; twine, cord and rope; footware and headgear and parts thereof; vehicles and vehicle superstructures; goods of chapter 94, e.g. furniture, lighting fixtures) 01/01/2007 31/12/2010 -46021999 01/01/2007 31/12/2010 LIBEN Basketwork, wickerwork and other articles, made up from goods of vegetable materials of heading 4601, and articles of loofah (excl. of bamboo and rattan; plaited-only bands or flat-woven articles; bottle envelopes of straw, wallcoverings of heading 4814; twine, cord and rope; footware and headgear and parts thereof; vehicles and vehicle superstructures; goods of chapter 94, e.g. furniture, lighting fixtures) 01/01/2007 31/12/2010 -460290 01/01/1988 31/12/2500 LIBEN Basketwork, wickerwork and other articles, made directly to shape from non-vegetable plaiting materials or made up from goods of non-vegetable plaiting materials of heading 4601 (excl. wallcoverings of heading 4814; twine, cord and rope; footware and headgear and parts thereof; vehicles and vehicle superstructures; goods of chapter 94, e.g. furniture, lighting fixtures) 01/01/1988 31/12/2500 -46029000 01/01/1997 31/12/2500 LIBEN Basketwork, wickerwork and other articles, made directly to shape from non-vegetable plaiting materials or made up from goods of non-vegetable plaiting materials of heading 4601 (excl. wallcoverings of heading 4814; twine, cord and rope; footware and headgear and parts thereof; vehicles and vehicle superstructures; goods of chapter 94, e.g. furniture, lighting fixtures) 01/01/1997 31/12/2500 -46029010 01/01/1988 31/12/1996 LIBEN Basketwork and other articles made directly from non-vegetable plaiting materials (excl. plaited-only bands or flat-woven articles; wall coverings of heading 4814; twine, cord and rope; footware and headgear and parts thereof; vehicles and vehicle superstructures; goods of chapter 94, e.g. furniture, lighting fixtures) 01/01/1988 31/12/1996 -46029090 01/01/1988 31/12/1996 LIBEN Basketwork and other articles made from non-vegetable plaiting materials of heading 4601 (excl. plaited-only bands or flat-woven articles; wall coverings of heading 4814; twine, cord and rope; footware and headgear and parts thereof; vehicles and vehicle superstructures; goods of chapter 94, e.g. furniture, lighting fixtures) 01/01/1988 31/12/1996 -46CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 46 01/01/2002 31/12/2500 -46CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 46 01/01/2002 31/12/2500 -46CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 46 01/01/2002 31/12/2500 -46MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -46MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -46MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -46SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 46 01/01/1988 31/12/2500 -46SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 46 and SITC section 8 01/01/1997 31/12/2500 -46SSS899 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 46 and SITC group 899 01/01/1997 31/12/2500 -46SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 46 and SITC section 9 01/01/1988 31/12/1996 -46SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 46 and SITC section 9 01/01/1997 31/12/2500 -46SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 46 and SITC group 999 01/01/1988 31/12/1996 -46SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 46 and SITC group 999 01/01/1997 31/12/2500 -47 01/01/1988 31/12/2500 LIBEN PULP OF WOOD OR OF OTHER FIBROUS CELLULOSIC MATERIAL; RECOVERED (WASTE AND SCRAP) PAPER OR PAPERBOARD 01/01/1988 31/12/2500 -4701 01/01/1988 31/12/2500 LIBEN Mechanical wood pulp, not chemically treated 01/01/1988 31/12/2500 -470100 01/01/1988 31/12/2500 LIBEN Mechanical wood pulp, not chemically treated 01/01/1988 31/12/2500 -47010010 01/01/1988 31/12/2500 LIBEN Thermo-mechanical wood pulp, not chemically treated 01/01/1988 31/12/2500 -47010090 01/01/1988 31/12/2500 LIBEN Mechanical wood pulp, not chemically treated (excl. thermo-mechanical wood pulp) 01/01/1988 31/12/2500 -4702 01/01/1988 31/12/2500 LIBEN Chemical wood pulp, dissolving grades 01/01/1988 31/12/2500 -470200 01/01/1988 31/12/2500 LIBEN Chemical wood pulp, dissolving grades 01/01/1988 31/12/2500 -47020000 01/01/1988 31/12/2500 LIBEN Chemical wood pulp, dissolving grades 01/01/1988 31/12/2500 -4702S2 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 4702 and SITC section 2 01/01/1997 31/12/2500 -4702S251 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 4702 and SITC group 251 01/01/1997 31/12/2500 -4703 01/01/1988 31/12/2500 LIBEN Chemical wood pulp, soda or sulphate (excl. dissolving grades) 01/01/1988 31/12/2500 -470311 01/01/1988 31/12/2500 LIBEN Unbleached coniferous chemical wood pulp, soda or sulphate (excl. dissolving grades) 01/01/1988 31/12/2500 -47031100 01/01/1988 31/12/2500 LIBEN Unbleached coniferous chemical wood pulp, soda or sulphate (excl. dissolving grades) 01/01/1988 31/12/2500 -470319 01/01/1988 31/12/2500 LIBEN Unbleached non-coniferous chemical wood pulp, soda or sulphate (excl. dissolving grades) 01/01/1988 31/12/2500 -47031900 01/01/1988 31/12/2500 LIBEN Unbleached non-coniferous chemical wood pulp, soda or sulphate (excl. dissolving grades) 01/01/1988 31/12/2500 -470321 01/01/1988 31/12/2500 LIBEN Semi-bleached or bleached coniferous chemical wood pulp, soda or sulphate (excl. dissolving grades) 01/01/1988 31/12/2500 -47032100 01/01/1988 31/12/2500 LIBEN Semi-bleached or bleached coniferous chemical wood pulp, soda or sulphate (excl. dissolving grades) 01/01/1988 31/12/2500 -470329 01/01/1988 31/12/2500 LIBEN Semi-bleached or bleached non-coniferous chemical wood pulp, soda or sulphate (excl. dissolving grades) 01/01/1988 31/12/2500 -47032900 01/01/1988 31/12/2500 LIBEN Semi-bleached or bleached non-coniferous chemical wood pulp, soda or sulphate (excl. dissolving grades) 01/01/1988 31/12/2500 -4703S2 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 4703 and SITC section 2 01/01/2006 31/12/2500 -4703S251 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 4703 and SITC group 251 01/01/2006 31/12/2500 -4704 01/01/1988 31/12/2500 LIBEN Chemical wood pulp, sulphite (excl. dissolving grades) 01/01/1988 31/12/2500 -470411 01/01/1988 31/12/2500 LIBEN Unbleached coniferous chemical wood pulp, sulphite (excl. dissolving grades) 01/01/1988 31/12/2500 -47041100 01/01/1988 31/12/2500 LIBEN Unbleached coniferous chemical wood pulp, sulphite (excl. dissolving grades) 01/01/1988 31/12/2500 -470419 01/01/1988 31/12/2500 LIBEN Unbleached non-coniferous chemical wood pulp, sulphite (excl. dissolving grades) 01/01/1988 31/12/2500 -47041900 01/01/1988 31/12/2500 LIBEN Unbleached non-coniferous chemical wood pulp, sulphite (excl. dissolving grades) 01/01/1988 31/12/2500 -470421 01/01/1988 31/12/2500 LIBEN Semi-bleached or bleached coniferous chemical wood pulp, sulphite (excl. dissolving grades) 01/01/1988 31/12/2500 -47042100 01/01/1988 31/12/2500 LIBEN Semi-bleached or bleached coniferous chemical wood pulp, sulphite (excl. dissolving grades) 01/01/1988 31/12/2500 -470429 01/01/1988 31/12/2500 LIBEN Semi-bleached or bleached non-coniferous chemical wood pulp, sulphite (excl. dissolving grades) 01/01/1988 31/12/2500 -47042900 01/01/1988 31/12/2500 LIBEN Semi-bleached or bleached non-coniferous chemical wood pulp, sulphite (excl. dissolving grades) 01/01/1988 31/12/2500 -4705 01/01/1988 31/12/2500 LIBEN Wood pulp obtained by a combination of mechanical and chemical pulping processes 01/01/1988 31/12/2500 -470500 01/01/1988 31/12/2500 LIBEN Wood pulp obtained by a combination of mechanical and chemical pulping processes 01/01/1988 31/12/2500 -47050000 01/01/1988 31/12/2500 LIBEN Wood pulp obtained by a combination of mechanical and chemical pulping processes 01/01/1988 31/12/2500 -4706 01/01/1988 31/12/2500 LIBEN Pulps of fibres derived from recovered "waste and scrap" paper or paperboard or of other fibrous cellulosic material (excl. wood) 01/01/1988 31/12/2500 -470610 01/01/1988 31/12/2500 LIBEN Pulp of cotton linters 01/01/1988 31/12/2500 -47061000 01/01/1988 31/12/2500 LIBEN Pulp of cotton linters 01/01/1988 31/12/2500 -470620 01/01/1996 31/12/2500 LIBEN Pulps of fibres derived from recovered "waste and scrap" paper or paperboard 01/01/1996 31/12/2500 -47062000 01/01/1996 31/12/2500 LIBEN Pulps of fibres derived from recovered "waste and scrap" paper or paperboard 01/01/1996 31/12/2500 -470630 01/01/2007 31/12/2500 LIBEN Pulps of fibrous cellulosic bamboo material 01/01/2007 31/12/2500 -47063000 01/01/2007 31/12/2500 LIBEN Pulps of fibrous cellulosic bamboo material 01/01/2007 31/12/2500 -470691 01/01/1988 31/12/2500 LIBEN Mechanical pulp of fibrous cellulosic material (excl. that of bamboo, wood, cotton linters and fibres derived from recovered [waste and scrap] paper or paperboard) 01/01/1988 31/12/2500 -47069100 01/01/1988 31/12/1995 LIBEN Mechanical pulp of fibrous cellulosic material (excl. that of wood and cotton linters) 01/01/1988 31/12/1995 -47069100 01/01/1996 31/12/2006 LIBEN Mechanical pulp of fibrous cellulosic material (excl. that of wood, cotton linters and fibres derived from recovered [waste and scrap] paper or paperboard) 01/01/1996 31/12/2006 -47069100 01/01/2007 31/12/2500 LIBEN Mechanical pulp of fibrous cellulosic material (excl. that of bamboo, wood, cotton linters and fibres derived from recovered [waste and scrap] paper or paperboard) 01/01/2007 31/12/2500 -470692 01/01/1988 31/12/2500 LIBEN Chemical pulp of fibrous cellulosic material (excl. that of bamboo, wood, cotton linters and fibres derived from recovered [waste and scrap] paper or paperboard) 01/01/1988 31/12/2500 -47069200 01/01/1993 31/12/1995 LIBEN Pulps of fibrous cellulosic material, chemical (excl. wood and cotton linters pulp) 01/01/1993 31/12/1995 -47069200 01/01/1996 31/12/2006 LIBEN Chemical pulp of fibrous cellulosic material (excl. that of wood, cotton linters and fibres derived from recovered [waste and scrap] paper or paperboard) 01/01/1996 31/12/2006 -47069200 01/01/2007 31/12/2500 LIBEN Chemical pulp of fibrous cellulosic material (excl. that of bamboo, wood, cotton linters and fibres derived from recovered [waste and scrap] paper or paperboard) 01/01/2007 31/12/2500 -47069210 01/01/1988 31/12/1992 LIBEN Unbleached chemical pulp of fibrous cellulosic material (excl. that of wood and cotton linters) 01/01/1988 31/12/1992 -47069290 01/01/1988 31/12/1992 LIBEN Semi-bleached or bleached chemical pulp of fibrous cellulosic material (excl. that of wood and cotton linters) 01/01/1988 31/12/1992 -470693 01/01/1988 31/12/2500 LIBEN Semi-chemical pulp of fibrous cellulosic material (excl. that of bamboo, wood, cotton linters and fibres derived from recovered [waste and scrap] paper or paperboard) 01/01/1988 31/12/2500 -47069300 01/01/1988 31/12/1995 LIBEN Semi-chemical pulp of fibrous cellulosic material (excl. that of wood and cotton linters) 01/01/1988 31/12/1995 -47069300 01/01/1996 31/12/2006 LIBEN Semi-chemical pulp of fibrous cellulosic material (excl. that of wood, cotton linters and fibres derived from recovered [waste and scrap] paper or paperboard) 01/01/1996 31/12/2006 -47069300 01/01/2007 31/12/2500 LIBEN Semi-chemical pulp of fibrous cellulosic material (excl. that of bamboo, wood, cotton linters and fibres derived from recovered [waste and scrap] paper or paperboard) 01/01/2007 31/12/2500 -4707 01/01/1988 31/12/2500 LIBEN Recovered "waste and scrap" paper or paperboard (excl. paper wool) 01/01/1988 31/12/2500 -470710 01/01/1988 31/12/2500 LIBEN Recovered "waste and scrap" paper or paperboard of unbleached kraft paper, corrugated paper or corrugated paperboard 01/01/1988 31/12/2500 -47071000 01/01/1988 31/12/2500 LIBEN Recovered "waste and scrap" paper or paperboard of unbleached kraft paper, corrugated paper or corrugated paperboard 01/01/1988 31/12/2500 -470720 01/01/1988 31/12/2500 LIBEN Recovered "waste and scrap" paper or paperboard made mainly of bleached chemical pulp, not coloured in the mass 01/01/1988 31/12/2500 -47072000 01/01/1988 31/12/2500 LIBEN Recovered "waste and scrap" paper or paperboard made mainly of bleached chemical pulp, not coloured in the mass 01/01/1988 31/12/2500 -470730 01/01/1988 31/12/2500 LIBEN Recovered "waste and scrap" paper or paperboard made mainly of mechanical pulp, e.g. newspapers, journals and similar printed matter 01/01/1988 31/12/2500 -47073010 01/01/1988 31/12/2500 LIBEN Old and unsold newspapers and magazines, telephone directories, brochures and printed advertising material 01/01/1988 31/12/2500 -47073090 01/01/1988 31/12/2500 LIBEN "Waste and scrap" of paper or paperboard made mainly of mechanical pulp (excl. old and unsold newspapers and magazines, telephone directories, brochures and printed advertising material) 01/01/1988 31/12/2500 -470790 01/01/1988 31/12/2500 LIBEN Recovered "waste and scrap" paper or paperboard, incl. unsorted waste and scrap (excl. waste and scrap of unbleached kraft paper or kraft paperboard, or of corrugated paper or corrugated paperboard, that of paper or paperboard made mainly of bleached chemical pulp not colured in the mass, that of paper or paperboard made mainly of mechanical pulp, and paper wool) 01/01/1988 31/12/2500 -47079010 01/01/1988 31/12/2500 LIBEN Unsorted, recovered "waste and scrap" paper or paperboard (excl. paper wool) 01/01/1988 31/12/2500 -47079090 01/01/1988 31/12/2500 LIBEN Sorted, recovered "waste and scrap" paper or paperboard (excl. waste and scrap of unbleached kraft paper or kraft paperboard, or of corrugated paper or corrugated paperboard, that of paper or paperboard made mainly of bleached chemical pulp not colured in the mass, that of paper or paperboard made mainly of mechanical pulp, and paper wool) 01/01/1988 31/12/2500 -47CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 47 01/01/2002 31/12/2500 -47CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 47 01/01/2002 31/12/2500 -47CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 47 01/01/2002 31/12/2500 -47MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -47MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -47MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -47SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 47 01/01/1988 31/12/2500 -47SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 47 and SITC section 2 01/01/1997 31/12/2500 -47SSS251 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 47 and SITC group 251 01/01/1997 31/12/2500 -47SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 47 and SITC section 9 01/01/1988 31/12/1996 -47SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 47 and SITC section 9 01/01/1997 31/12/2500 -47SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 47 and SITC group 999 01/01/1988 31/12/1996 -47SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 47 and SITC group 999 01/01/1997 31/12/2500 -48 01/01/1988 31/12/2500 LIBEN PAPER AND PAPERBOARD; ARTICLES OF PAPER PULP, OF PAPER OR OF PAPERBOARD 01/01/1988 31/12/2500 -4801 01/01/1988 31/12/2500 LIBEN Newsprint as specified in Note 4 to chapter 48, in rolls of a width > 28 cm or in square or rectangular sheets with one side > 28 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2500 -480100 01/01/1988 31/12/2001 LIBEN Newsprint, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2001 -480100 01/01/2002 31/12/2500 LIBEN Newsprint as specified in Note 4 to chapter 48, in rolls of a width > 28 cm or in square or rectangular sheets with one side > 28 cm and the other side > 15 cm in the unfolded state 01/01/2002 31/12/2500 -48010000 01/01/2002 31/12/2006 LIBEN Newsprint, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2002 31/12/2006 -48010000 01/01/2007 31/12/2016 LIBEN Newsprint as specified in Note 4 to chapter 48, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2007 31/12/2016 -48010000 01/01/2017 31/12/2500 LIBEN Newsprint as specified in Note 4 to chapter 48, in rolls of a width > 28 cm or in square or rectangular sheets with one side > 28 cm and the other side > 15 cm in the unfolded state 01/01/2017 31/12/2500 -48010010 01/01/1988 31/12/2001 LIBEN Newsprint as specified in Additional Note 1 to chapter 48 01/01/1988 31/12/2001 -48010090 01/01/1988 31/12/1995 LIBEN Newsprint, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. paper specified in Additional Note 1 to chapter 48) 01/01/1988 31/12/1995 -48010090 01/01/1996 31/12/2001 LIBEN Newsprint, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. paper specified in Additional Note 1 to chapter 48) 01/01/1996 31/12/2001 -4802 01/01/1988 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls or in square or rectangular sheets, of any size, and handmade paper and paperboard (excl. newsprint of heading 4801 and paper of heading 4803) 01/01/1988 31/12/2500 -480210 01/01/1988 31/12/2500 LIBEN Handmade paper and paperboard of any size or shape 01/01/1988 31/12/2500 -48021000 01/01/1988 31/12/2500 LIBEN Handmade paper and paperboard of any size or shape 01/01/1988 31/12/2500 -480220 01/01/1988 31/12/2500 LIBEN Paper and paperboard of a kind used as a base for photosensitive, heat-sensitive or electrosensitive paper and paperboard, uncoated, in rolls or in square or rectangular sheets, of any size 01/01/1988 31/12/2500 -48022000 01/01/1989 31/12/2001 LIBEN Paper and paperboard of a kind used as a base for photo-sensitive, heat-sensitive or electro-sensitive paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1989 31/12/2001 -48022000 01/01/2002 31/12/2500 LIBEN Paper and paperboard of a kind used as a base for photosensitive, heat-sensitive or electrosensitive paper and paperboard, uncoated, in rolls or in square or rectangular sheets, of any size 01/01/2002 31/12/2500 -48022010 01/01/1988 31/12/1988 LIBEN Paper and paperboard of a kind used as a base for photo-sensitive paper and paperboard, uncoated, in rolls or sheets as specified in note 7a or 7b to chapter 48 01/01/1988 31/12/1988 -48022090 01/01/1988 31/12/1988 LIBEN Paper and paperboard of a kind used as a base for heat-sensitive or electro-sensitive paper and paperboard, uncoated, in rolls or sheets as specified in note 7a or 7b to chapter 48 01/01/1988 31/12/1988 -480230 01/01/1988 31/12/2006 LIBEN Carbonising base paper, uncoated, in rolls or in square or rectangular sheets, of any size 01/01/1988 31/12/2006 -48023000 01/01/1988 31/12/2001 LIBEN Carbonizing base paper, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2001 -48023000 01/01/2002 31/12/2006 LIBEN Carbonising base paper, uncoated, in rolls or in square or rectangular sheets, of any size 01/01/2002 31/12/2006 -480240 01/01/1988 31/12/2500 LIBEN Wallpaper base, uncoated 01/01/1988 31/12/2500 -48024010 01/01/1988 31/12/2001 LIBEN Wallpaper base, uncoated, not containing fibres obtained by a mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres 01/01/1988 31/12/2001 -48024010 01/01/2002 31/12/2500 LIBEN Wallpaper base, uncoated, not containing fibres obtained by a mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres 01/01/2002 31/12/2500 -48024090 01/01/1988 31/12/2001 LIBEN Wallpaper base, uncoated, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical process 01/01/1988 31/12/2001 -48024090 01/01/2002 31/12/2500 LIBEN Wallpaper base, uncoated, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical process 01/01/2002 31/12/2500 -480251 01/01/1988 31/12/2001 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and punch card stock and punch tape paper, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, not containing fibres obtained by a mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, weighing < 40 g/m², n.e.s. 01/01/1988 31/12/2001 -48025110 01/01/1988 31/12/2001 LIBEN Paper, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, not containing fibres obtained by a mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing <= 15 g/m², for use in stencil making 01/01/1988 31/12/2001 -48025190 01/01/1988 31/12/2001 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, uncoated, and punch tape paper, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, not containing fibres obtained by a mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing < 40 g/m², n.e.s. 01/01/1988 31/12/2001 -480252 01/01/1988 31/12/2001 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and punch card stock and punch tape paper, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, not containing fibres obtained by a mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, weighing 40 g to 150 g/m², n.e.s. 01/01/1988 31/12/2001 -48025200 01/01/1988 31/12/1993 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and punch card stock and punch tape paper, in rolls or sheets as described in note 7a) or 7b) to chapter 48, not containing fibres obtained by a mechanical process or of which =< 10% by weight of the total fibre content consists of such fibres, weighing 40 g to 150 g/m², n.e.s. 01/01/1988 31/12/1993 -48025220 01/01/1994 31/12/1995 LIBEN Paper and paperboard of a kind used for writing, printing or other graphic purposes, uncoated, and paper and paperboard of a kind used for punch card or punch paper, in rolls of a width of > 15 cm, not containing fibres obtained by a mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing 40 g to 150 g/m², n.e.s. 01/01/1994 31/12/1995 -48025220 01/01/1996 31/12/2001 LIBEN Paper and paperboard of a kind used for writing, printing or other graphic purposes, uncoated, and paper and paperboard of a kind used for punch card or punch paper, in rolls of a width of > 15 cm, not containing fibres obtained by a mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing 40 g to 150 g/m², n.e.s. 01/01/1996 31/12/2001 -48025280 01/01/1994 31/12/1995 LIBEN Paper and paperboard of a kind used for writing, printing or other graphic purposes, uncoated, and paper and paperboard used for punch card or punch paper, in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, not containing fibres obtained by a mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing 40 g to 150 g/m², n.e.s. 01/01/1994 31/12/1995 -48025280 01/01/1996 31/12/2001 LIBEN Paper and paperboard of a kind used for writing, printing or other graphic purposes, uncoated, and paper and paperboard used for punch card or punch paper, in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, not containing fibres obtained by a mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing 40 g to 150 g/m², n.e.s. 01/01/1996 31/12/2001 -480253 01/01/1988 31/12/2001 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and punch card stock and punch tape paper, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, not containing fibres obtained by a mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, weighing > 150 g/m², n.e.s. 01/01/1988 31/12/2001 -48025300 01/01/1993 31/12/1993 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and punch card stock and punch tape paper, in rolls or sheets as described in note 7a) or 7b) to chapter 48, not containing fibres obtained by a mechanical process or of which =< 10% by weight of the total fibre content consists of such fibres, weighing > 150 g/m², n.e.s. 01/01/1993 31/12/1993 -48025311 01/01/1988 31/12/1992 LIBEN Kraft paper and paperboard, for punch card stock, uncoated, in rolls or sheets as specified in note 7a or 7b to chapter 48, not containing mechanically processed fibres, or containing =< 10 % mechanically processed fibres by weight in relation to the total fibre content, and weighing > 150 g per m² 01/01/1988 31/12/1992 -48025319 01/01/1988 31/12/1992 LIBEN Paper and paperboard, for punch card stock, uncoated, in rolls or sheets as specified in note 7a or 7b to chapter 48, not containing mechanically processed fibres, or containing =< 10 % mechanically processed fibres by weight in relation to the total fibre content, and weighing > 150 g per m² (excl. kraft paper and paperboard) 01/01/1988 31/12/1992 -48025320 01/01/1994 31/12/2001 LIBEN Paper and paperboard of a kind used for writing, printing or other graphic purposes, uncoated, and paper and paperboard of a kind used for punch card or punch paper, in rolls of a width > 15 cm, not containing fibres obtained by a mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing > 150 g/m², n.e.s. 01/01/1994 31/12/2001 -48025380 01/01/1994 31/12/2001 LIBEN Paper and paperboard of a kind used for writing, printing or other graphic purposes, uncoated, and paper and paperboard of a kind used for punch card or punch paper, in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, not containing fibres obtained by a mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing > 150 g/m², n.e.s. 01/01/1994 31/12/2001 -48025390 01/01/1988 31/12/1992 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, uncoated, and punch paper stock, in rolls or sheets as specified in note 7a or 7b to chapter 48, not containing mechanically processed fibres, or containing =< 10 % mechanically processed fibres by weight in relation to the total fibre content and weighing > 150 g per m², n.e.s 01/01/1988 31/12/1992 -480254 01/01/2002 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls or in square or rectangular sheets, of any size, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, weighing < 40 g/m², n.e.s. 01/01/2002 31/12/2500 -48025400 01/01/2004 31/12/2006 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls or in square or rectangular sheets, of any size, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, weighing < 40 g/m², n.e.s. 01/01/2004 31/12/2006 -48025400 01/01/2007 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls or in square or rectangular sheets, of any size, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, weighing < 40 g/m², n.e.s. 01/01/2007 31/12/2500 -48025410 01/01/2002 31/12/2003 LIBEN Uncoated paper, in rolls or in square or rectangular sheets, of any size, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing <= 15 g/m², for use in stencil making 01/01/2002 31/12/2003 -48025490 01/01/2002 31/12/2003 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punch-cards and punch tape paper, in rolls or in square or rectangular sheets, of any size, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, weighing < 40 g/m², n.e.s. (excl. weighing <= 15 g/m² for use in stencil making) 01/01/2002 31/12/2003 -480255 01/01/2002 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls of any size, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing 40 g to 150 g/m², n.e.s. 01/01/2002 31/12/2500 -48025500 01/01/2002 31/12/2003 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punch-cards and punch tape paper, in rolls of any size, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing 40 g to 150 g/m², n.e.s. 01/01/2002 31/12/2003 -48025510 01/01/2004 31/12/2006 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls of any size, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing >= 40 g but < 60 g/m², n.e.s. 01/01/2004 31/12/2006 -48025515 01/01/2007 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls of any size, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing >= 40 g but < 60 g/m², n.e.s. 01/01/2007 31/12/2500 -48025520 01/01/2004 31/12/2006 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls of any size, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing >= 60 g but < 75 g/m², n.e.s. 01/01/2004 31/12/2006 -48025525 01/01/2007 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls of any size, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing >= 60 g but < 75 g/m², n.e.s. 01/01/2007 31/12/2500 -48025530 01/01/2004 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls of any size, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing >= 75 g but < 80 g/m², n.e.s. 01/01/2004 31/12/2500 -48025590 01/01/2004 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls of any size, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing >= 80 g but <= 150 g/m², n.e.s. 01/01/2004 31/12/2500 -480256 01/01/2002 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in square or rectangular sheets with one side <= 435 mm and the other side <= 297 mm in the unfolded state, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing 40 g to 150 g/m², n.e.s. 01/01/2002 31/12/2500 -48025610 01/01/2002 31/12/2006 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rectangular sheets with one side measuring 297 mm and the other side 210 mm "A4-format", not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing 40 g to 150 g/m², n.e.s. 01/01/2002 31/12/2006 -48025620 01/01/2007 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rectangular sheets with one side measuring 297 mm and the other side 210 mm "A4-format", not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing 40 g to 150 g/m², n.e.s. 01/01/2007 31/12/2500 -48025680 01/01/2007 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in square or rectangular sheets with one side <= 435 mm and the other side <= 297 mm in the unfolded state, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing 40 g to 150 g/m², n.e.s. (excl. with one side measuring 297 mm and the other side 210 mm in the unfolded state "A4-format") 01/01/2007 31/12/2500 -48025690 01/01/2002 31/12/2006 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in square or rectangular sheets with one side <= 435 mm and the other side <= 297 mm in the unfolded state, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing 40 g to 150 g/m², n.e.s. (excl. with one side measuring 297 mm and the other side 210 mm in the unfolded state "A4-format") 01/01/2002 31/12/2006 -480257 01/01/2002 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in square or rectangular sheets with one side > 435 mm or with one side <= 435 mm and the other side > 297 mm in the unfolded state, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing 40 g to 150 g/m², n.e.s. 01/01/2002 31/12/2500 -48025700 01/01/2002 31/12/2006 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in square or rectangular sheets with one side > 435 mm or with one side <= 435 mm and the other side > 297 mm in the unfolded state, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing 40 g to 150 g/m², n.e.s. 01/01/2002 31/12/2006 -48025700 01/01/2007 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in square or rectangular sheets with one side > 435 mm or with one side <= 435 mm and the other side > 297 mm in the unfolded state, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, and weighing 40 g to 150 g/m², n.e.s. 01/01/2007 31/12/2500 -480258 01/01/2002 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls or in square or rectangular sheets, of any size, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, weighing > 150 g/m², n.e.s. 01/01/2002 31/12/2500 -48025810 01/01/2002 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls of any size, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, weighing > 150 g/m², n.e.s. 01/01/2002 31/12/2500 -48025890 01/01/2002 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in square or rectangular sheets of any size, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, weighing > 150 g/m², n.e.s. 01/01/2002 31/12/2500 -480260 01/01/1988 31/12/2001 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and punch card stock and punch tape paper, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical process, n.e.s. 01/01/1988 31/12/2001 -48026010 01/01/1988 31/12/1993 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, uncoated, and punch paper stock, in rolls or sheets as specified in note 7a and 7b to chapter 48, containing > 50 % mechanically processed fibres by weight in relation to the total fibre content, and weighing < 72 g per m², n.e.s. 01/01/1988 31/12/1993 -48026011 01/01/1994 31/12/1995 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and punch card stock and punch tape paper, in rolls of a width > 15 cm, weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by amechanical process, n.e.s. 01/01/1994 31/12/1995 -48026011 01/01/1996 31/12/2001 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and punch card stock and punch tape paper, in rolls of a width > 15 cm, weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by a mechanical process, n.e.s. 01/01/1996 31/12/2001 -48026019 01/01/1994 31/12/1995 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and punch card stock and punch tape paper, in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by amechanical process, n.e.s. 01/01/1994 31/12/1995 -48026019 01/01/1996 31/12/2001 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and punch card stock and punch tape paper, in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by a mechanical process, n.e.s. 01/01/1996 31/12/2001 -48026090 01/01/1988 31/12/1993 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, uncoated, and punch paper stock, in rolls or sheets as specified in note 7a and 7b to chapter 48, containing > 10 % mechanically processed fibres by weight in relation to the total fibre content, n.e.s. (excl. such products weighing < 72 g per m² and with a fibre content of > 50 % by weight) 01/01/1988 31/12/1993 -48026091 01/01/1994 31/12/1995 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and punch card stock and punch tape paper, in rolls of a width > 15 cm, of which > 10% by weight of the total fibre content consists of fibres obtained by amechanical process, n.e.s. (excl. such products weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by amechanical process) 01/01/1994 31/12/1995 -48026091 01/01/1996 31/12/2001 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and punch card stock and punch tape paper, in rolls of a width > 15 cm, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical process, n.e.s. (excl. such products weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by a mechanical process) 01/01/1996 31/12/2001 -48026099 01/01/1994 31/12/1995 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and punch card stock and punch tape paper, in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, of which > 10% by weight of the total fibre content consists of fibres obtained by amechanical process, n.e.s. (excl. such products weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by amechanical process) 01/01/1994 31/12/1995 -48026099 01/01/1996 31/12/2001 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and punch card stock and punch tape paper, in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical process, n.e.s. (excl. such products weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by a mechanical process) 01/01/1996 31/12/2001 -480261 01/01/2002 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls of any size, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, n.e.s. 01/01/2002 31/12/2500 -48026110 01/01/2002 31/12/2003 LIBEN Newsprint, in rolls of a width <= 36 cm 01/01/2002 31/12/2003 -48026115 01/01/2007 31/12/2016 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls of any size, weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by a mechanical process, n.e.s. 01/01/2007 31/12/2016 -48026115 01/01/2017 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls of any size, weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by a mechanical process, n.e.s. 01/01/2017 31/12/2500 -48026120 01/01/2004 31/12/2006 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls of any size, weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by a mechanical process, n.e.s. 01/01/2004 31/12/2006 -48026150 01/01/2002 31/12/2003 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punch-cards and punch tape paper, in rolls of any size, weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by a mechanical process, n.e.s. (excl. newsprint) 01/01/2002 31/12/2003 -48026180 01/01/2004 31/12/2016 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls of any size, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, n.e.s. (excl. products weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by a mechanical process) 01/01/2004 31/12/2016 -48026180 01/01/2017 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in rolls of any size, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, n.e.s. (excl. products weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by a mechanical process) 01/01/2017 31/12/2500 -48026190 01/01/2002 31/12/2003 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punch-cards and punch tape paper, in rolls of any size, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, n.e.s. (excl. newsprint, such products weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by a mechanical process) 01/01/2002 31/12/2003 -480262 01/01/2002 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in square or rectangular sheets with one side <= 435 mm and the other side <= 297 mm in the unfolded state, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, n.e.s. 01/01/2002 31/12/2500 -48026200 01/01/2004 31/12/2006 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in square or rectangular sheets with one side <= 435 mm and the other side <= 297 mm in the unfolded state, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, n.e.s. 01/01/2004 31/12/2006 -48026200 01/01/2007 31/12/2016 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in square or rectangular sheets with one side <= 435 mm and the other side <= 297 mm in the unfolded state, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, n.e.s. 01/01/2007 31/12/2016 -48026200 01/01/2017 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in square or rectangular sheets with one side <= 435 mm and the other side <= 297 mm in the unfolded state, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, n.e.s. 01/01/2017 31/12/2500 -48026210 01/01/2002 31/12/2003 LIBEN Newsprint, in square or rectangular sheets with one side <= 435 mm and the other side <= 297 mm in the unfolded state 01/01/2002 31/12/2003 -48026250 01/01/2002 31/12/2003 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punch-cards and punch tape paper, in square or rectangular sheets with one side <= 435 mm and the other side <= 297 mm in the unfolded state, weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by a mechanical process, n.e.s. (excl. newsprint) 01/01/2002 31/12/2003 -48026290 01/01/2002 31/12/2003 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punch-cards and punch tape paper, in square or rectangular sheets with one side <= 435 mm and the other side <= 297 mm in the unfolded state, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, n.e.s. (excl. newsprint and such products weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by a mechanical process) 01/01/2002 31/12/2003 -480269 01/01/2002 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in square or rectangular sheets with one side > 435 mm or with one side <= 435 mm and the other side > 297 mm in the unfolded state, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, n.e.s. 01/01/2002 31/12/2500 -48026900 01/01/2004 31/12/2006 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in square or rectangular sheets with one side > 435 mm or with one side <= 435 mm and the other side > 297 mm in the unfolded state, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, n.e.s. 01/01/2004 31/12/2006 -48026900 01/01/2007 31/12/2500 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punchcards and punch-tape paper, in square or rectangular sheets with one side > 435 mm or with one side <= 435 mm and the other side > 297 mm in the unfolded state, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, n.e.s. 01/01/2007 31/12/2500 -48026910 01/01/2002 31/12/2003 LIBEN Newsprint, in square or rectangular sheets with one side > 435 mm or with one side <= 435 mm and the other side > 297 mm in the unfolded state 01/01/2002 31/12/2003 -48026950 01/01/2002 31/12/2003 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punch-cards and punch tape paper, in square or rectangular sheets with one side > 435 mm or with one side <= 435 mm and the other side > 297 mm in the unfolded state, weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by a mechanical process, n.e.s. (excl. newsprint) 01/01/2002 31/12/2003 -48026990 01/01/2002 31/12/2003 LIBEN Uncoated paper and paperboard, of a kind used for writing, printing or other graphic purposes, and non-perforated punch-cards and punch tape paper, in square or rectangular sheets with one side > 435 mm or with one side <= 435 mm and the other side > 297 mm in the unfolded state, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, n.e.s. (excl. newsprint and such products weighing < 72 g/m² and of which > 50% by weight of the total fibre content consists of fibres obtained by a mechanical process) 01/01/2002 31/12/2003 -4803 01/01/1988 31/12/2500 LIBEN Toilet or facial tissue stock, towel or napkin stock and similar paper for household or sanitary purposes, cellulose wadding and webs of cellulose fibres, whether or not creped, crinkled, embossed, perforated, surface-coloured, surface-decorated or printed, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2500 -480300 01/01/1988 31/12/2500 LIBEN Toilet or facial tissue stock, towel or napkin stock and similar paper for household or sanitary purposes, cellulose wadding and webs of cellulose fibres, whether or not creped, crinkled, embossed, perforated, surface-coloured, surface-decorated or printed, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2500 -48030010 01/01/1988 31/12/2500 LIBEN Cellulose wadding in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2500 -48030031 01/01/1988 31/12/2500 LIBEN Creped paper for household or sanitary purposes and webs of cellulose fibres "tissues", in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 25 g/m² per ply 01/01/1988 31/12/2500 -48030039 01/01/1988 31/12/2500 LIBEN Creped paper for household or sanitary purposes and webs of cellulose fibres "tissues", in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 25 g/m² per ply 01/01/1988 31/12/2500 -48030090 01/01/1988 31/12/2500 LIBEN Toilet or facial tissue stock, towel or napkin stock and similar paper for household or sanitary purposes, whether or not creped, crinkled, embossed, perforated, surface-coloured, surface-decorated or printed, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. cellulose wadding, creped paper and webs of cellulose fibres "tissues") 01/01/1988 31/12/2500 -4804 01/01/1988 31/12/2500 LIBEN Uncoated kraft paper and paperboard, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. goods of heading 4802 or 4803) 01/01/1988 31/12/2500 -480411 01/01/1988 31/12/2500 LIBEN Unbleached kraftliner, uncoated, in rolls of a width > 36 cm 01/01/1988 31/12/2500 -48041111 01/01/1988 31/12/2001 LIBEN Unbleached kraftliner, uncoated, in rolls of a width > 15 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content and weighing < 150 g/m² (excl. goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48041111 01/01/2002 31/12/2500 LIBEN Unbleached kraftliner, uncoated, in rolls of a width > 36 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content and weighing < 150 g/m² (excl. goods of heading 4802 and 4803) 01/01/2002 31/12/2500 -48041115 01/01/1988 31/12/2001 LIBEN Unbleached kraftliner, uncoated, in rolls of a width > 15 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content and weighing >= 150 g to < 175 g/m² (excl. goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48041115 01/01/2002 31/12/2500 LIBEN Unbleached kraftliner, uncoated, in rolls of a width > 36 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content and weighing >= 150 g to < 175 g/m² (excl. goods of heading 4802 and 4803) 01/01/2002 31/12/2500 -48041119 01/01/1988 31/12/2001 LIBEN Unbleached kraftliner, uncoated, in rolls of a width > 15 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content and weighing >= 175 g/m² (excl. goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48041119 01/01/2002 31/12/2500 LIBEN Unbleached kraftliner, uncoated, in rolls of a width > 36 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content and weighing >= 175 g/m² (excl. goods of heading 4802 and 4803) 01/01/2002 31/12/2500 -48041190 01/01/1988 31/12/2001 LIBEN Unbleached kraftliner, uncoated, in rolls of a width > 15 cm (excl. that containing > 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content and goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48041190 01/01/2002 31/12/2500 LIBEN Unbleached kraftliner, uncoated, in rolls of a width > 36 cm (excl. that containing > 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content and goods of heading 4802 and 4803) 01/01/2002 31/12/2500 -480419 01/01/1988 31/12/2500 LIBEN Kraftliner, uncoated, in rolls of a width > 36 cm (excl. unbleached and goods of heading 4802 and 4803) 01/01/1988 31/12/2500 -48041911 01/01/1988 31/12/2001 LIBEN Kraftliner, uncoated, in rolls of a width > 15 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, comprising one or more unbleached plies and a bleached, semi-bleached or coloured outer ply, weighing < 150 g/m² (excl. goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48041911 01/01/2002 31/12/2009 LIBEN Kraftliner, uncoated, in rolls of a width > 36 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, comprising one or more unbleached plies and a bleached, semi-bleached or coloured outer ply, weighing < 150 g/m² (excl. goods of heading 4802 and 4803) 01/01/2002 31/12/2009 -48041912 01/01/2010 31/12/2500 LIBEN Kraftliner, uncoated, in rolls of a width > 36 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, comprising one or more unbleached plies and a bleached, semi-bleached or coloured outer ply, weighing < 175 g/m² (excl. goods of heading 4802 and 4803) 01/01/2010 31/12/2500 -48041915 01/01/1988 31/12/2001 LIBEN Kraftliner, uncoated, in rolls of a width > 15 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, comprising one or more unbleached plies and a bleached, semi-bleached or coloured outer ply, weighing >= 150 g to < 175 g/m² (excl. goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48041915 01/01/2002 31/12/2009 LIBEN Kraftliner, uncoated, in rolls of a width > 36 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, comprising one or more unbleached plies and a bleached, semi-bleached or coloured outer ply, weighing >= 150 g to < 175 g/m² (excl. goods of heading 4802 and 4803) 01/01/2002 31/12/2009 -48041919 01/01/1988 31/12/2001 LIBEN Kraftliner, uncoated, in rolls of a width > 15 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, comprising one or more unbleached plies and a bleached, semi-bleached or coloured outer ply, weighing >= 175 g/m² (excl. goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48041919 01/01/2002 31/12/2500 LIBEN Kraftliner, uncoated, in rolls of a width > 36 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, comprising one or more unbleached plies and a bleached, semi-bleached or coloured outer ply, weighing >= 175 g/m² (excl. goods of heading 4802 and 4803) 01/01/2002 31/12/2500 -48041930 01/01/2010 31/12/2500 LIBEN Kraftliner, uncoated, in rolls of a width > 36 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content (excl. unbleached or kraftliner comprising one or more unbleached plies and a bleached, semi-bleached or coloured outer ply, and goods of heading 4802 and 4803) 01/01/2010 31/12/2500 -48041931 01/01/1988 31/12/2001 LIBEN Kraftliner, uncoated, in rolls of a width > 15 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, weighing < 150 g/m² (excl. that comprising one or more unbleached plies and a bleached, semi-bleached or coloured outer ply, and goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48041931 01/01/2002 31/12/2009 LIBEN Kraftliner, uncoated, in rolls of a width > 36 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, weighing < 150 g/m² (excl. unbleached or that comprising one or more unbleached plies and a bleached, semi-bleached or coloured outer ply, and goods of heading 4802 and 4803) 01/01/2002 31/12/2009 -48041935 01/01/1988 31/12/2000 LIBEN Kraftliner, uncoated, in rolls of a width > 15 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, weighing >= 150 g to < 175 g/m² (excl. that comprising one or more unbleached plies and a bleached, semi-bleached or coloured outer ply, and goods of heading 4802 and 4803) 01/01/1988 31/12/2000 -48041938 01/01/2001 31/12/2001 LIBEN Kraftliner, uncoated, in rolls of a width > 15 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, weighing >= 150 g/m² (excl. kraftliner comprising one or more unbleached plies and a bleached, semi-bleached or coloured outer ply, and goods of heading 4802 and 4803) 01/01/2001 31/12/2001 -48041938 01/01/2002 31/12/2009 LIBEN Kraftliner, uncoated, in rolls of a width > 36 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, weighing >= 150 g/m² (excl. unbleached or kraftliner comprising one or more unbleached plies and a bleached, semi-bleached or coloured outer ply, and goods of heading 4802 and 4803) 01/01/2002 31/12/2009 -48041939 01/01/1988 31/12/2000 LIBEN Kraftliner, uncoated, in rolls of a width > 15 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, weighing >= 175 g/m² (excl. kraft liner comprising one or more unbleached plies and a bleached, semi-bleached or coloured outer ply, and goods of heading 4802 and 4803) 01/01/1988 31/12/2000 -48041990 01/01/1988 31/12/2001 LIBEN Kraftliner, uncoated, in rolls of a width > 15 cm (excl. unbleached, kraftliner containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, and goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48041990 01/01/2002 31/12/2500 LIBEN Kraftliner, uncoated, in rolls of a width > 36 cm (excl. unbleached, kraftliner containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, and goods of heading 4802 and 4803) 01/01/2002 31/12/2500 -480421 01/01/1988 31/12/2500 LIBEN Unbleached sack kraft paper, uncoated, in rolls of a width > 36 cm (excl. goods of heading 4802, 4803 or 4808) 01/01/1988 31/12/2500 -48042110 01/01/1988 31/12/2001 LIBEN Unbleached sack kraft paper, uncoated, in rolls of a width > 15 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content (excl. goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48042110 01/01/2002 31/12/2500 LIBEN Unbleached sack kraft paper, uncoated, in rolls of a width > 36 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content (excl. goods of heading 4802, 4803 or 4808) 01/01/2002 31/12/2500 -48042190 01/01/1988 31/12/2001 LIBEN Unbleached sack kraft paper, uncoated, in rolls of a width > 15 cm (excl. kraft paper containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, and goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48042190 01/01/2002 31/12/2500 LIBEN Unbleached sack kraft paper, uncoated, in rolls of a width > 36 cm (excl. kraft paper containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, and goods of heading 4802, 4803 or 4808) 01/01/2002 31/12/2500 -480429 01/01/1988 31/12/2500 LIBEN Sack kraft paper, uncoated, in rolls of a width > 36 cm (excl. unbleached, and goods of heading 4802, 4803 or 4808) 01/01/1988 31/12/2500 -48042910 01/01/1988 31/12/2001 LIBEN Sack kraft paper, uncoated, in rolls of a width > 15 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content (excl. unbleached, and goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48042910 01/01/2002 31/12/2500 LIBEN Sack kraft paper, uncoated, in rolls of a width > 36 cm, containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content (excl. unbleached, and goods of heading 4802, 4803 or 4808) 01/01/2002 31/12/2500 -48042990 01/01/1988 31/12/2001 LIBEN Sack kraft paper, uncoated, in rolls of a width > 15 cm (excl. unbleached, kraft paper containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, plus goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48042990 01/01/2002 31/12/2500 LIBEN Sack kraft paper, uncoated, in rolls of a width > 36 cm (excl. unbleached, kraft paper containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, and goods of heading 4802, 4803 or 4808) 01/01/2002 31/12/2500 -480431 01/01/1988 31/12/2500 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m² (excl. kraftliner, sack kraft paper and goods of heading 4802, 4803 or 4808) 01/01/1988 31/12/2500 -48043110 01/01/1988 31/12/2001 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², for the manufacture of paper yarn of heading 5308, or of metal-reinforced paper yarn of heading 5607 (excl. kraftliner and sack kraft paper) 01/01/1988 31/12/2001 -48043110 01/01/2002 31/12/2003 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², for the manufacture of paper yarn of heading 5308, or of metal-reinforced paper yarn of heading 5607 (excl. kraftliner and sack kraft paper) 01/01/2002 31/12/2003 -48043151 01/01/1988 31/12/2001 LIBEN Unbleached kraft insulating paper for electro-technical purposes, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content (excl. kraftliner and sack kraft paper) 01/01/1988 31/12/2001 -48043151 01/01/2002 31/12/2500 LIBEN Unbleached kraft insulating paper for electro-technical purposes, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content (excl. kraftliner and sack kraft paper) 01/01/2002 31/12/2500 -48043158 01/01/2004 31/12/2500 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², containing >= 80% coniferous wood sulphate or soda pulp by weight of total fibre content (excl. kraft insulating paper for electro-technical purposes; goods of heading 4802, 4803 or 4808) 01/01/2004 31/12/2500 -48043159 01/01/1988 31/12/2001 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², containing >= 80% coniferous wood sulphate or soda pulp by weight of total fibre content (excl. as used in manufacture of paper yarn of heading 5308 or of metal-reinforced paper yarn of heading 5607; kraft insulating paper for electro-technical purposes; goods of heading 4802, 4803) 01/01/1988 31/12/2001 -48043159 01/01/2002 31/12/2003 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², containing >= 80% coniferous wood sulphate or soda pulp by weight of total fibre content (excl. as used in manufacture of paper yarn of heading 5308 or of metal-reinforced paper yarn of heading 5607; kraft insulating paper for electro-technical purposes; goods of heading 4802, 4803 or 4808) 01/01/2002 31/12/2003 -48043180 01/01/2004 31/12/2500 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m² (excl. kraft paper containing >= 80% coniferous wood sulphate or soda pulp by weight of total fibre content; kraftliner and sack kraft paper; goods of heading 4802, 4803 or 4808) 01/01/2004 31/12/2500 -48043190 01/01/1988 31/12/2001 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m² (excl. for manufacture of paper yarn of heading 5308 or of metal-reinforced paper yarn of heading 5607; kraft paper containing >= 80% coniferous wood sulphate or soda pulp by weight of total fibre content; kraftliner and sack kraft paper; goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48043190 01/01/2002 31/12/2003 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m² (excl. for manufacture of paper yarn of heading 5308 or of metal-reinforced paper yarn of heading 5607; kraft paper containing >= 80% coniferous wood sulphate or soda pulp by weight of total fibre content; kraftliner and sack kraft paper; goods of heading 4802, 4803 or 4808) 01/01/2002 31/12/2003 -480439 01/01/1988 31/12/2500 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m² (excl. unbleached, kraftliner, sack kraft paper and goods of heading 4802, 4803 or 4808) 01/01/1988 31/12/2500 -48043910 01/01/1988 31/12/2001 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², for the manufacture of paper yarn of heading 5308 or of metal-reinforced paper yarn of heading 5607 (excl. unbleached, kraftliner and sack kraft paper) 01/01/1988 31/12/2001 -48043910 01/01/2002 31/12/2003 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², for the manufacture of paper yarn of heading 5308 or of metal-reinforced paper yarn of heading 5607 (excl. unbleached, kraftliner and sack kraft paper) 01/01/2002 31/12/2003 -48043951 01/01/1988 31/12/2001 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², uniformly bleached in the mass, containing >= 80% coniferous wood sulphate or soda pulp by weight of total fibre content (excl. as used in the manufacture of paper yarn of heading 5308 and 5607; kraft insulating paper for electro-technical purposes; goods of heading 4802, 4803) 01/01/1988 31/12/2001 -48043951 01/01/2002 31/12/2500 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², uniformly bleached in the mass, containing >= 80% coniferous wood sulphate or soda pulp by weight of total fibre content (excl. as used in the manufacture of paper yarn of heading 5308 and 5607; kraft insulating paper for electro-technical purposes; goods of heading 4802, 4803 or 4808) 01/01/2002 31/12/2500 -48043958 01/01/2004 31/12/2500 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content (excl. unbleached or uniformly bleached in the mass; kraftliner, sack kraft paper and goods of heading 4802, 4803 or 4808) 01/01/2004 31/12/2500 -48043959 01/01/1988 31/12/2001 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content (excl. unbleached, that used in the manufacture of paper yarn of heading 5308 and 5607; kraftliner, sack kraft paper and goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48043959 01/01/2002 31/12/2003 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content (excl. unbleached or uniformly bleached in the mass, that used in the manufacture of paper yarn of heading 5308 and 5607; kraftliner, sack kraft paper and goods of heading 4802, 4803 or 4808) 01/01/2002 31/12/2003 -48043980 01/01/2004 31/12/2500 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m² (excl. unbleached and that containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, kraftliner, sack kraft paper; goods of heading 4802, 4803 or 4808) 01/01/2004 31/12/2500 -48043990 01/01/1988 31/12/2001 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m² (excl. that uniformly bleached in the mass or used in the manufacture of paper yarn of heading 5308 and 5607; that containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, kraftliner, sack kraft paper; goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48043990 01/01/2002 31/12/2003 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m² (excl. unbleached or that used in the manufacture of paper yarn of heading 5308 and 5607; that containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, kraftliner, sack kraft paper; goods of heading 4802, 4803 or 4808) 01/01/2002 31/12/2003 -480441 01/01/1988 31/12/2500 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m² (excl. kraftliner, sack kraft paper, and goods of heading 4802, 4803 or 4808) 01/01/1988 31/12/2500 -48044110 01/01/1988 31/12/2001 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m², containing >= 80% coniferous wood sulphate or soda pulp in relation to the total fibre content (excl. kraftliner, sack kraft paper, and goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48044110 01/01/2002 31/12/2009 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m², containing >= 80% coniferous wood sulphate or soda pulp in relation to the total fibre content (excl. kraftliner, sack kraft paper, and goods of heading 4802, 4803 or 4808) 01/01/2002 31/12/2009 -48044191 01/01/1988 31/12/2001 LIBEN Unbleached saturating kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m² 01/01/1988 31/12/2001 -48044191 01/01/2002 31/12/2500 LIBEN Unbleached saturating kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m² 01/01/2002 31/12/2500 -48044198 01/01/2010 31/12/2500 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m² (excl. saturating kraft paper, kraftliner, sack kraft paper and goods of heading 4802, 4803 or 4808) 01/01/2010 31/12/2500 -48044199 01/01/1988 31/12/2001 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m² (excl. that containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, saturating kraft paper, kraftliner, sack kraft paper and goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48044199 01/01/2002 31/12/2009 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m² (excl. that containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, saturating kraft paper, kraftliner, sack kraft paper and goods of heading 4802, 4803 or 4808) 01/01/2002 31/12/2009 -480442 01/01/1988 31/12/2500 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m², bleached uniformly in the mass, containing > 95% chemically processed wood fibre by weight in relation to the total fibre content (excl. kraftliner, sack kraft paper and goods of heading 4802, 4803 or 4808) 01/01/1988 31/12/2500 -48044200 01/01/2010 31/12/2500 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m², bleached uniformly in the mass, containing > 95% chemically processed wood fibre by weight in relation to the total fibre content (excl. kraftliner, sack kraft paper and goods of heading 4802, 4803 or 4808) 01/01/2010 31/12/2500 -48044210 01/01/1988 31/12/2001 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m², bleached uniformly in the mass, containing > 95% chemically prepared wood fibre and >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content 01/01/1988 31/12/2001 -48044210 01/01/2002 31/12/2009 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m², bleached uniformly in the mass, containing > 95% chemically prepared wood fibre and >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content 01/01/2002 31/12/2009 -48044290 01/01/1988 31/12/2001 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m², bleached uniformly in the mass, containing > 95% chemically processed wood fibre by weight in relation to the total fibre content (excl. that containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content) 01/01/1988 31/12/2001 -48044290 01/01/2002 31/12/2009 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m², bleached uniformly in the mass, containing > 95% chemically processed wood fibre by weight in relation to the total fibre content (excl. that containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content) 01/01/2002 31/12/2009 -480449 01/01/1988 31/12/2500 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m² (excl. unbleached, bleached uniformly in the mass and containing > 95% chemically processed wood fibre by weight in relation to the total fibre content, kraftliner, sack kraft paper and goods of heading 4802, 4803 or 4808) 01/01/1988 31/12/2500 -48044900 01/01/2010 31/12/2500 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m² (excl. unbleached, bleached uniformly in the mass and containing > 95% chemically processed wood fibre by weight in relation to the total fibre content, kraftliner, sack kraft paper and goods of heading 4802, 4803 or 4808) 01/01/2010 31/12/2500 -48044910 01/01/1988 31/12/2001 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m², containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content (excl. unbleached, bleached uniformly in the mass and containing > 95% chemically prepared wood fibre by weight in relation to the total fibre content) 01/01/1988 31/12/2001 -48044910 01/01/2002 31/12/2009 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m², containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content (excl. unbleached, bleached uniformly in the mass and containing > 95% chemically prepared wood fibre by weight in relation to the total fibre content) 01/01/2002 31/12/2009 -48044990 01/01/1988 31/12/2001 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m² (excl. unbleached, bleached uniformly in the mass containing > 95% chemically prepared wood fibre or >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content) 01/01/1988 31/12/2001 -48044990 01/01/2002 31/12/2009 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m² (excl. unbleached, bleached uniformly in the mass containing > 95% chemically prepared wood fibre or >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content) 01/01/2002 31/12/2009 -480451 01/01/1988 31/12/2500 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m² (excl. kraftliner, sack kraft paper and goods of heading 4802, 4803 or 4808) 01/01/1988 31/12/2500 -48045100 01/01/2010 31/12/2500 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m² (excl. kraftliner, sack kraft paper and goods of heading 4802, 4803 or 4808) 01/01/2010 31/12/2500 -48045110 01/01/1988 31/12/2001 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content (excl. kraftliner, sack kraft paper and goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48045110 01/01/2002 31/12/2009 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content (excl. kraftliner, sack kraft paper and goods of heading 4802, 4803 or 4808) 01/01/2002 31/12/2009 -48045190 01/01/1988 31/12/2001 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m² (excl. that containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, kraftliner, sack kraft paper and goods of heading 4802 and 4803) 01/01/1988 31/12/2001 -48045190 01/01/2002 31/12/2009 LIBEN Unbleached kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m² (excl. that containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content, kraftliner, sack kraft paper and goods of heading 4802, 4803 or 4808) 01/01/2002 31/12/2009 -480452 01/01/1988 31/12/2500 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², bleached uniformly in the mass, containing > 95% chemically processed wood fibre by weight in relation to the total fibre content (excl. kraftliner, sack kraft paper and goods of heading 4802, 4803 or 4808) 01/01/1988 31/12/2500 -48045200 01/01/2010 31/12/2500 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², bleached uniformly in the mass, containing > 95% chemically processed wood fibre by weight in relation to the total fibre content (excl. kraftliner, sack kraft paper and goods of heading 4802, 4803 or 4808) 01/01/2010 31/12/2500 -48045210 01/01/1988 31/12/2001 LIBEN Kraft paper and paperboard, uncoated, in strips or rolls of a width > 15 cm or in rectangular "incl. square" sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², bleached uniformly in the mass, containing > 95% chemically prepared wood fibre and >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content 01/01/1988 31/12/2001 -48045210 01/01/2002 31/12/2009 LIBEN Kraft paper and paperboard, uncoated, in strips or rolls of a width > 36 cm or in rectangular "incl. square" sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², bleached uniformly in the mass, containing > 95% chemically prepared wood fibre and >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content 01/01/2002 31/12/2009 -48045290 01/01/1988 31/12/2001 LIBEN Kraft paper and paperboard, uncoated, in strips or rolls of a width > 15 cm or in rectangular "incl. square" sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², bleached uniformly in the mass, containing > 95% chemically prepared wood fibre by weight in relation to the total fibre content (excl. that containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content) 01/01/1988 31/12/2001 -48045290 01/01/2002 31/12/2009 LIBEN Kraft paper and paperboard, uncoated, in strips or rolls of a width > 36 cm or in rectangular "incl. square" sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², bleached uniformly in the mass, containing > 95% chemically prepared wood fibre by weight in relation to the total fibre content (excl. that containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content) 01/01/2002 31/12/2009 -480459 01/01/1988 31/12/2500 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m² (excl. unbleached or bleached uniformly in the mass and containing > 95% chemically prepared wood fibre by weight in relation to the total fibre content, and kraftliner, sack kraft paper and goods of heading 4802, 4803 or 4808) 01/01/1988 31/12/2500 -48045910 01/01/1988 31/12/2001 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content (excl. unbleached or bleached uniformly in the mass and containing > 95% chemically prepared wood fibre by weight in relation to the total fibre content) 01/01/1988 31/12/2001 -48045910 01/01/2002 31/12/2500 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², containing >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content (excl. unbleached or bleached uniformly in the mass and containing > 95% chemically prepared wood fibre by weight in relation to the total fibre content) 01/01/2002 31/12/2500 -48045990 01/01/1988 31/12/2001 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m² (excl. unbleached or bleached uniformly in the mass and containing > 95% chemically prepared wood fibre or >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content) 01/01/1988 31/12/2001 -48045990 01/01/2002 31/12/2500 LIBEN Kraft paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m² (excl. unbleached or bleached uniformly in the mass and containing > 95% chemically prepared wood fibre or >= 80% coniferous wood sulphate or soda pulp by weight in relation to the total fibre content) 01/01/2002 31/12/2500 -4804S6 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 4804 and SITC section 6 01/01/1998 31/12/2500 -4804S641 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 4804 and SITC group 641 01/01/1998 31/12/2500 -4805 01/01/1988 31/12/2500 LIBEN Other paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, not worked other than as specified in Note 3 to this chapter, n.e.s. 01/01/1988 31/12/2500 -480510 01/01/1988 31/12/2001 LIBEN Semi-chemical fluting paper "corrugated medium", uncoated, in rolls of a width > 15 cm 01/01/1988 31/12/2001 -48051000 01/01/1988 31/12/2001 LIBEN Semi-chemical fluting paper "corrugated medium", uncoated, in rolls of a width > 15 cm 01/01/1988 31/12/2001 -480511 01/01/2002 31/12/2500 LIBEN Semi-chemical fluting paper, uncoated, in rolls of a width > 36 cm 01/01/2002 31/12/2500 -48051100 01/01/2002 31/12/2500 LIBEN Semi-chemical fluting paper, uncoated, in rolls of a width > 36 cm 01/01/2002 31/12/2500 -480512 01/01/2002 31/12/2500 LIBEN Straw fluting paper, in rolls of a width > 36 cm, weighing >= 130 g/m² 01/01/2002 31/12/2500 -48051200 01/01/2002 31/12/2500 LIBEN Straw fluting paper, in rolls of a width > 36 cm, weighing >= 130 g/m² 01/01/2002 31/12/2500 -480519 01/01/2002 31/12/2500 LIBEN Fluting paper, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. semi-chemical fluting paper and straw fluting paper) 01/01/2002 31/12/2500 -48051910 01/01/2002 31/12/2500 LIBEN Wellenstoff, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2002 31/12/2500 -48051990 01/01/2002 31/12/2500 LIBEN Fluting paper, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. semi-chemical fluting paper, straw fluting paper and Wellenstoff) 01/01/2002 31/12/2500 -480521 01/01/1988 31/12/2001 LIBEN Multi-ply paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, each ply bleached, n.e.s. 01/01/1988 31/12/2001 -48052100 01/01/1988 31/12/2001 LIBEN Multi-ply paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, each ply bleached, n.e.s. 01/01/1988 31/12/2001 -480522 01/01/1988 31/12/2001 LIBEN Multi-ply paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, with only one bleached outer ply, n.e.s. 01/01/1988 31/12/2001 -48052210 01/01/1988 31/12/2001 LIBEN Multi-ply testliner, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, with only one bleached outer ply 01/01/1988 31/12/2001 -48052290 01/01/1988 31/12/2001 LIBEN Multi-ply paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, with only one bleached outer ply, n.e.s. (excl. testliner) 01/01/1988 31/12/2001 -480523 01/01/1988 31/12/2001 LIBEN Multi-ply paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, with three or more layers, of which only the two outer layers are bleached, n.e.s. 01/01/1988 31/12/2001 -48052300 01/01/1988 31/12/2001 LIBEN Multi-ply paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, with three or more layers, of which only the two outer layers are bleached, n.e.s. 01/01/1988 31/12/2001 -480524 01/01/2002 31/12/2500 LIBEN Testliner "recycled liner board", uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m² 01/01/2002 31/12/2500 -48052400 01/01/2002 31/12/2500 LIBEN Testliner "recycled liner board", uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m² 01/01/2002 31/12/2500 -480525 01/01/2002 31/12/2500 LIBEN Testliner "recycled liner board", uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g/m² 01/01/2002 31/12/2500 -48052500 01/01/2002 31/12/2500 LIBEN Testliner "recycled liner board", uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g/m² 01/01/2002 31/12/2500 -480529 01/01/1988 31/12/2001 LIBEN Multi-ply paper or paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, n.e.s. 01/01/1988 31/12/2001 -48052910 01/01/1988 31/12/2001 LIBEN Multi-ply testliner, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2001 -48052990 01/01/1988 31/12/2001 LIBEN Multi-ply paper and paperboard, uncoated, in strips or rolls of a width > 15 cm or in rectangular "incl. square" sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, n.e.s. (excl. test liner) 01/01/1988 31/12/2001 -480530 01/01/1988 31/12/2500 LIBEN Sulphite wrapping paper, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2500 -48053000 01/01/2012 31/12/2500 LIBEN Sulphite wrapping paper, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2012 31/12/2500 -48053010 01/01/1988 31/12/2001 LIBEN Sulphite wrapping paper, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing < 30 g/m² 01/01/1988 31/12/2001 -48053010 01/01/2002 31/12/2011 LIBEN Sulphite wrapping paper, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing < 30 g/m² 01/01/2002 31/12/2011 -48053090 01/01/1988 31/12/2001 LIBEN Sulphite wrapping paper, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 30 g/m² 01/01/1988 31/12/2001 -48053090 01/01/2002 31/12/2011 LIBEN Sulphite wrapping paper, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 30 g/m² 01/01/2002 31/12/2011 -480540 01/01/1988 31/12/2500 LIBEN Filter paper and paperboard, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2500 -48054000 01/01/1988 31/12/2001 LIBEN Filter paper and paperboard, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2001 -48054000 01/01/2002 31/12/2500 LIBEN Filter paper and paperboard, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2002 31/12/2500 -480550 01/01/1988 31/12/2500 LIBEN Felt paper and paperboard, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2500 -48055000 01/01/1988 31/12/2001 LIBEN Felt paper and paperboard, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2001 -48055000 01/01/2002 31/12/2500 LIBEN Felt paper and paperboard, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2002 31/12/2500 -480560 01/01/1988 31/12/2001 LIBEN Paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², n.e.s. 01/01/1988 31/12/2001 -48056010 01/01/1988 31/12/1993 LIBEN Straw paper and paperboard, uncoated, in rolls or sheets as specified in note 7a or 7b to chapter 48, weighing =< 150 g per m² 01/01/1988 31/12/1993 -48056010 01/01/1995 31/12/2001 LIBEN Strawpaper and strawboard, not surface-coated, in rolls of a width of 50 cm to 270 cm, weighing 150 g/m² or less 01/01/1995 31/12/2001 -48056020 01/01/1994 31/12/2001 LIBEN Wellenstoff for corrugated paper and paperboard, uncoated, in rolls of a width of 50 cm to 270 cm, weighing <= 150 g/m² 01/01/1994 31/12/2001 -48056030 01/01/1988 31/12/1993 LIBEN Paper and paperboard for corrugated paper and board, uncoated, in rolls or sheets as specified in note 7a or 7b to chapter 48, weighing =< 150 g per m² 01/01/1988 31/12/1993 -48056040 01/01/1994 31/12/2001 LIBEN Testliner for corrugated paper and paperboard, uncoated, in rolls of a width of 50 cm to 270 cm, weighing <= 150 g/m² 01/01/1994 31/12/2001 -48056060 01/01/1994 31/12/2001 LIBEN Paper and paperboard for corrugated paper and paperboard, uncoated, in rolls of a width of 50 cm to 270 cm, weighing <= 150 g/m² (excl. wellenstoff and testliner) 01/01/1994 31/12/2001 -48056080 01/01/1994 31/12/1994 LIBEN Paper and paperboard, uncoated, in rolls or sheets as specified in note 7a or 7b to chapter 48, weighing =< 150 g per m², n.e.s. (excl. paper and board for corrugated paper and board) 01/01/1994 31/12/1994 -48056090 01/01/1988 31/12/1993 LIBEN Paper and paperboard, uncoated, in rolls or sheets as specified in note 7a or 7b to chapter 48, weighing =< 150 g per m², n.e.s. (excl. straw paper and paperboard, paper and paperboard for corrugated paper and board) 01/01/1988 31/12/1993 -48056090 01/01/1995 31/12/2001 LIBEN Paper and board, not surface-coated, in strips or rolls of a width > 15 cm or in rectangular "incl. square" sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, of a weight of 150g/m² or less, n.e.s. (excl. strawpaper and strawboard and paper and paperboard for corrugated paper and paperboard) 01/01/1995 31/12/2001 -480570 01/01/1988 31/12/2001 LIBEN Paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m², n.e.s. 01/01/1988 31/12/2001 -48057011 01/01/1988 31/12/2001 LIBEN Testliner for corrugated paper and paperboard, uncoated, in rolls of a width of 50 cm to 270 cm, weighing > 150 g but < 225 g/m² 01/01/1988 31/12/2001 -48057019 01/01/1988 31/12/2001 LIBEN Paper and paperboard for corrugated paper and paperboard, uncoated, in rolls of a width of 50 cm to 270 cm, weighing > 150 g but < 225 g/m² (excl. testliner) 01/01/1988 31/12/2001 -48057090 01/01/1988 31/12/2001 LIBEN Paper and paperboard, uncoated, in strips or rolls of a width > 15 cm or in rectangular "incl. square" sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m², n.e.s. (excl. that for corrugated paper and paperboard) 01/01/1988 31/12/2001 -480580 01/01/1988 31/12/2001 LIBEN Paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², n.e.s. 01/01/1988 31/12/2001 -48058011 01/01/1988 31/12/2001 LIBEN Testliner made from wastepaper, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m² 01/01/1988 31/12/2001 -48058019 01/01/1988 31/12/2001 LIBEN Paper and paperboard made from wastepaper, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², n.e.s. (excl. test liner) 01/01/1988 31/12/2001 -48058090 01/01/1988 31/12/2001 LIBEN Paper and paperboard, uncoated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², n.e.s. (excl. that of wastepaper) 01/01/1988 31/12/2001 -480591 01/01/2002 31/12/2500 LIBEN Paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², n.e.s. 01/01/2002 31/12/2500 -48059100 01/01/2004 31/12/2006 LIBEN Paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², n.e.s. 01/01/2004 31/12/2006 -48059100 01/01/2007 31/12/2500 LIBEN Paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m², n.e.s. 01/01/2007 31/12/2500 -48059110 01/01/2002 31/12/2003 LIBEN Multi-ply paper and paperboard, uncoated, in strips or rolls of a width > 36 cm or in rectangular "incl. square" sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, n.e.s. (excl. fluting paper and testliner) 01/01/2002 31/12/2003 -48059191 01/01/2002 31/12/2003 LIBEN Paper and paperboard for corrugated paper and paperboard, uncoated, in rolls of a width of 50 cm to 270 cm, weighing <= 150 g/m² (excl. kraftliner of subheading 4804.11, fluting paper, testliner and multi-ply paper and paperboard) 01/01/2002 31/12/2003 -48059199 01/01/2002 31/12/2003 LIBEN Paper and board, not surface-coated, in strips or rolls of a width > 36 cm or in rectangular "incl. square" sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, of a weight of 150 g/m² or less, n.e.s. 01/01/2002 31/12/2003 -480592 01/01/2002 31/12/2500 LIBEN Paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m², n.e.s. 01/01/2002 31/12/2500 -48059200 01/01/2004 31/12/2500 LIBEN Paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m², n.e.s. 01/01/2004 31/12/2500 -48059210 01/01/2002 31/12/2003 LIBEN Multi-ply paper and paperboard, uncoated, in strips or rolls of a width > 36 cm or in rectangular "incl. square" sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g but < 225 g/m² (excl. fluting paper and testliner) 01/01/2002 31/12/2003 -48059291 01/01/2002 31/12/2003 LIBEN Paper and paperboard for corrugated paper and paperboard, uncoated, in rolls of a width of 50 cm to 270 cm, weighing > 150 g but < 225 g/m² (excl. kraftliner of subheading 4804.11, fluting paper, testliner and multi-ply paper and paperboard) 01/01/2002 31/12/2003 -48059299 01/01/2002 31/12/2003 LIBEN Paper and paperboard, uncoated, in strips or rolls of a width > 36 cm or in rectangular "incl. square" sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing > 150 g to < 225 g/m², n.e.s. 01/01/2002 31/12/2003 -480593 01/01/2002 31/12/2500 LIBEN Paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², n.e.s. 01/01/2002 31/12/2500 -48059310 01/01/2002 31/12/2003 LIBEN Multi-ply paper and paperboard, uncoated, in strips or rolls of a width > 36 cm or in rectangular "incl. square" sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m² (excl. fluting paper and testliner) 01/01/2002 31/12/2003 -48059320 01/01/2004 31/12/2500 LIBEN Paper and paperboard made from recovered paper, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², n.e.s. 01/01/2004 31/12/2500 -48059380 01/01/2004 31/12/2500 LIBEN Paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², n.e.s. 01/01/2004 31/12/2500 -48059391 01/01/2002 31/12/2003 LIBEN Paper and paperboard made from wastepaper, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², n.e.s. 01/01/2002 31/12/2003 -48059399 01/01/2002 31/12/2003 LIBEN Paper and paperboard, uncoated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing >= 225 g/m², n.e.s. 01/01/2002 31/12/2003 -4806 01/01/1988 31/12/2500 LIBEN Vegetable parchment, greaseproof papers, tracing papers and glassine and other glazed transparent or translucent papers, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2500 -480610 01/01/1988 31/12/2500 LIBEN Vegetable parchment, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2500 -48061000 01/01/1988 31/12/2001 LIBEN Vegetable parchment, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2001 -48061000 01/01/2002 31/12/2500 LIBEN Vegetable parchment, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2002 31/12/2500 -480620 01/01/1988 31/12/2500 LIBEN Greaseproof papers, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2500 -48062000 01/01/1988 31/12/2001 LIBEN Greaseproof papers, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2001 -48062000 01/01/2002 31/12/2500 LIBEN Greaseproof papers, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2002 31/12/2500 -480630 01/01/1988 31/12/2500 LIBEN Tracing papers, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2500 -48063000 01/01/1988 31/12/2001 LIBEN Tracing papers, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2001 -48063000 01/01/2002 31/12/2500 LIBEN Tracing papers, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2002 31/12/2500 -480640 01/01/1988 31/12/2500 LIBEN Glassine and other glazed transparent or translucent papers, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. vegetable parchment, greaseproof papers and tracing papers) 01/01/1988 31/12/2500 -48064010 01/01/1988 31/12/2001 LIBEN Glassine papers in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2001 -48064010 01/01/2002 31/12/2500 LIBEN Glassine papers in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2002 31/12/2500 -48064090 01/01/1988 31/12/2001 LIBEN Transparent or translucent papers, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. vegetable parchment, greaseproof papers, tracing papers and glassine papers) 01/01/1988 31/12/2001 -48064090 01/01/2002 31/12/2500 LIBEN Transparent or translucent papers, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. vegetable parchment, greaseproof papers, tracing papers and glassine papers) 01/01/2002 31/12/2500 -4807 01/01/1988 31/12/2500 LIBEN Composite paper and paperboard "made by sticking flat layers of paper or paperboard together with an adhesive", not surface-coated or impregnated, whether or not internally reinforced, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2500 -480700 01/01/2002 31/12/2500 LIBEN Composite paper and paperboard "made by sticking flat layers of paper or paperboard together with an adhesive", not surface-coated or impregnated, whether or not internally reinforced, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2002 31/12/2500 -48070010 01/01/2002 31/12/2003 LIBEN Paper and paperboard, laminated internally with bitumen, tar or asphalt, not surface-coated or impregnated, whether or not internally reinforced, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2002 31/12/2003 -48070020 01/01/2002 31/12/2003 LIBEN Composite straw paper and paperboard, whether or not covered with non-straw paper, not surface-coated or impregnated, whether or not internally reinforced, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2002 31/12/2003 -48070030 01/01/2004 31/12/2500 LIBEN Composite paper and paperboard made from recovered paper, whether or not covered with paper, not surface-coated or impregnated, whether or not internally reinforced, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. that laminated internally with bitumen, tar or asphalt) 01/01/2004 31/12/2500 -48070050 01/01/2002 31/12/2003 LIBEN Composite paper and paperboard made from wastepaper, whether or not covered with paper, not surface-coated or impregnated, whether or not internally reinforced, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. that laminated internally with bitumen, tar or asphalt) 01/01/2002 31/12/2003 -48070080 01/01/2004 31/12/2500 LIBEN Composite paper and paperboard, not surface-coated or impregnated, whether or not internally reinforced, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. that laminated internally with bitumen, tar or asphalt; straw paper and paperboard, whether or not covered with non-straw paper; paper and paperboard made from recovered paper, whether or not coated with paper) 01/01/2004 31/12/2500 -48070090 01/01/2002 31/12/2003 LIBEN Composite paper and paperboard, not surface-coated or impregnated, whether or not internally reinforced, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. that laminated internally with bitumen, tar or asphalt; straw paper and paperboard, whether or not covered with non-straw paper; paper and paperboard of wastepaper, whether or not coated with paper) 01/01/2002 31/12/2003 -480710 01/01/1988 31/12/2001 LIBEN Paper and paperboard, laminated internally with bitumen, tar or asphalt, not surface-coated or impregnated, whether or not internally reinforced, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2001 -48071000 01/01/1988 31/12/2001 LIBEN Paper and paperboard, laminated internally with bitumen, tar or asphalt, not surface-coated or impregnated, whether or not internally reinforced, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2001 -480790 01/01/1996 31/12/2001 LIBEN Composite paper and paperboard, neither surface-coated nor impregnated, whether or not internally reinforced, in strips or rolls of a width > 15 cm or in rectangular "incl. square" sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. that laminated internally with bitumen, tar or asphalt) 01/01/1996 31/12/2001 -48079010 01/01/1996 31/12/2001 LIBEN Composite straw paper and paperboard, whether or not covered with non-straw paper, not surface-coated or impregnated, whether or not internally reinforced, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1996 31/12/2001 -48079050 01/01/1996 31/12/2001 LIBEN Composite paper and paperboard made from wastepaper, whether or not covered with paper, not surface-coated or impregnated, whether or not internally reinforced, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. that laminated internally with bitumen, tar or asphalt) 01/01/1996 31/12/2001 -48079090 01/01/1996 31/12/2001 LIBEN Composite paper and paperboard, not surface-coated or impregnated, whether or not internally reinforced, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. that laminated internally with bitumen, tar or asphalt; straw paper and paperboard, whether or not covered with non-straw paper; paper and paperboard of wastepaper, whether or not coated with paper) 01/01/1996 31/12/2001 -480791 01/01/1988 31/12/1995 LIBEN Composite straw paper and paperboard, whether or not combined with non-straw paper (neither surface-coated or impregnated), whether or not internally reinforced, in rolls or sheets as specified in Note 7A or 7B to chapter 48. 01/01/1988 31/12/1995 -48079100 01/01/1988 31/12/1995 LIBEN Composite straw paper and paperboard, whether or not combined with non-straw paper (neither surface-coated or impregnated), whether or not internally reinforced, in rolls or sheets as specified in Note 7A or 7B to chapter 48. 01/01/1988 31/12/1995 -480799 01/01/1988 31/12/1995 LIBEN Composite paper and paperboard (neither surface-coated nor impregnated), whether or not internally reinforced, in rolls or sheets as specified in Note 7A or 7B to chapter 48 (excl. that laminated internally with bitumen, tar or asphalt; straw paper and paperboard, whether or not combined with non-straw paper) 01/01/1988 31/12/1995 -48079911 01/01/1988 31/12/1995 LIBEN Composite paper and paperboard of wastepaper, consisting of one or more plies of different types, whether or not combined with paper (neither surface-coated nor impregnated), whether or not internally reinforced, in rolls or sheets as specified in Note 7A or 7B to chapter 48 (excl. that laminated internally with bitumen, tar or asphalt) 01/01/1988 31/12/1995 -48079919 01/01/1988 31/12/1995 LIBEN Composite paper and paperboard of wastepaper, consisting of one or more plies of the same type, whether or not combined with paper (neither surface-coated nor impregnated), whether or not internally reinforced, in rolls or sheets as specified in Note 7A or 7B to chapter 48 (excl. that laminated intenally with bitumen, tar or asphalt) 01/01/1988 31/12/1995 -48079990 01/01/1988 31/12/1995 LIBEN Composite paper and paperboard (neither surface-coated nor impregnated), whether or not internally reinforced, in rolls or sheets as specified in Note 7A or 7B to chapter 48 (excl. that laminated internally with bitumen, tar or asphalt; straw paper and paperboard, whether or not combined with non-straw paper; paper and paperboard of wastepaper, whether or not coated with paper) 01/01/1988 31/12/1995 -4808 01/01/1988 31/12/2500 LIBEN Corrugated paper and paperboard "with or without glued flat surface sheets", creped, crinkled, embossed or perforated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. goods of heading 4803) 01/01/1988 31/12/2500 -480810 01/01/1988 31/12/2500 LIBEN Corrugated paper and paperboard "with or without glued flat surface sheets", whether or not perforated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2500 -48081000 01/01/1993 31/12/2001 LIBEN Corrugated paper and paperboard "with or without glued flat surface sheets", whether or not perforated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1993 31/12/2001 -48081000 01/01/2002 31/12/2500 LIBEN Corrugated paper and paperboard "with or without glued flat surface sheets", whether or not perforated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2002 31/12/2500 -48081010 01/01/1988 31/12/1992 LIBEN Corrugated paper and paperboard, whether or not perforated, with paper or paperboard glued to one side only, in rolls or sheets as specified in note 7a or 7b to chapter 48 01/01/1988 31/12/1992 -48081090 01/01/1988 31/12/1992 LIBEN Corrugated paper and paperboard, whether or not perforated, with paper or paperboard glued to both sides, in rolls or sheets as specified in note 7a or 7b to chapter 48 01/01/1988 31/12/1992 -480820 01/01/1988 31/12/2011 LIBEN Sack kraft paper, creped or crinkled, whether or not embossed or perforated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2011 -48082000 01/01/1988 31/12/2001 LIBEN Sack kraft paper, creped or crinkled, whether or not embossed or perforated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2001 -48082000 01/01/2002 31/12/2011 LIBEN Sack kraft paper, creped or crinkled, whether or not embossed or perforated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2002 31/12/2011 -480830 01/01/1988 31/12/2011 LIBEN Kraft paper, creped or crinkled, whether or not embossed or perforated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. sack kraft paper) 01/01/1988 31/12/2011 -48083000 01/01/1988 31/12/2001 LIBEN Kraft paper, creped or crinkled, whether or not embossed or perforated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. sack kraft paper) 01/01/1988 31/12/2001 -48083000 01/01/2002 31/12/2011 LIBEN Kraft paper, creped or crinkled, whether or not embossed or perforated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. sack kraft paper) 01/01/2002 31/12/2011 -480840 01/01/2012 31/12/2500 LIBEN Kraft paper, creped or crinkled, whether or not embossed or perforated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2012 31/12/2500 -48084000 01/01/2012 31/12/2500 LIBEN Kraft paper, creped or crinkled, whether or not embossed or perforated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2012 31/12/2500 -480890 01/01/1988 31/12/2500 LIBEN Paper and paperboard, creped, crinkled, embossed or perforated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. sack kraft and other kraft paper, and goods of heading 4803) 01/01/1988 31/12/2500 -48089000 01/01/1988 31/12/2001 LIBEN Paper and paperboard "with or without glued flat surface sheets", creped, crinkled, embossed or perforated, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. sack kraft and other kraft paper, and goods of heading 4803) 01/01/1988 31/12/2001 -48089000 01/01/2002 31/12/2500 LIBEN Paper and paperboard, creped, crinkled, embossed or perforated, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. sack kraft and other kraft paper, and goods of heading 4803) 01/01/2002 31/12/2500 -4809 01/01/1988 31/12/2500 LIBEN Carbon paper, self-copy paper and other copying or transfer papers, incl. coated or impregnated paper for duplicator stencils or offset plates, whether or not printed, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2500 -480910 01/01/1988 31/12/2006 LIBEN Carbon and similar copying papers, whether or not printed, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2006 -48091000 01/01/1988 31/12/2006 LIBEN Carbon and similar copying papers, whether or not printed, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2006 -480920 01/01/1988 31/12/2500 LIBEN Self-copy paper, whether or not printed, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. carbon and similar copying papers) 01/01/1988 31/12/2500 -48092000 01/01/1988 31/12/1993 LIBEN Self-copy paper, whether or not printed, in rolls with a width of > 36 cm, or in rectangular or square sheets with at least one side measuring > 36 cm in the unfolded state (excl. carbon and similar copying papers) 01/01/1988 31/12/1993 -48092000 01/01/2011 31/12/2500 LIBEN Self-copy paper, whether or not printed, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. carbon and similar copying papers) 01/01/2011 31/12/2500 -48092010 01/01/1994 31/12/2010 LIBEN Self-copy paper, whether or not printed, in rolls of a width > 36 cm (excl. carbon and similar copying papers) 01/01/1994 31/12/2010 -48092090 01/01/1994 31/12/2010 LIBEN Self-copy paper, whether or not printed, in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. carbon and similar copying papers) 01/01/1994 31/12/2010 -480990 01/01/1988 31/12/2500 LIBEN Transfer papers, incl. coated or impregnated paper for duplicator stencils or offset plates, whether or not printed, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. self-copy paper) 01/01/1988 31/12/2500 -48099000 01/01/1988 31/12/2006 LIBEN Transfer papers, incl. coated or impregnated paper for duplicator stencils or offset plates, whether or not printed, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. carbon and similar copying papers, and self-copy paper) 01/01/1988 31/12/2006 -48099000 01/01/2012 31/12/2500 LIBEN Transfer papers, incl. coated or impregnated paper for duplicator stencils or offset plates, whether or not printed, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. self-copy paper) 01/01/2012 31/12/2500 -48099010 01/01/2007 31/12/2011 LIBEN Carbon and similar copying papers, whether or not printed, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2007 31/12/2011 -48099090 01/01/2007 31/12/2011 LIBEN Transfer papers, incl. coated or impregnated paper for duplicator stencils or offset plates, whether or not printed, in rolls of a width > 36 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. carbon and similar copying papers, and self-copy paper) 01/01/2007 31/12/2011 -4810 01/01/1988 31/12/2500 LIBEN Paper and paperboard, coated on one or both sides with kaolin "China clay" or other inorganic substances, with or without a binder, and with no other coating, whether or not surface-coloured, surface-decorated or printed, in rolls or in square or rectangular sheets, of any size (excl. all other coated papers and paperboards) 01/01/1988 31/12/2500 -481011 01/01/1988 31/12/2001 LIBEN Paper and paperboard for writing, printing or other graphic purposes, not containing mechanically processed fibres or containing <= 10% mechanically processed fibres by weight in relation to the total fibre content, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state and weighing <= 150 g/m² 01/01/1988 31/12/2001 -48101110 01/01/1988 31/12/2001 LIBEN Paper and paperboard used as a base for photo-sensitive, heat-sensitive or electro-sensitive paper or paperboard (excl. containing mechanically processed fibres or <= 10% mechanically processed fibres by weight in relation to the total fibre content), coated on one or both sides with kaolin or other inorganic substances, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state and weighing <= 150 g/m² 01/01/1988 31/12/2001 -48101190 01/01/1988 31/12/1993 LIBEN Paper and paperboard for writing, printing or other graphic purposes (excl. containing mechanically processed fibres or =< 10 % mechanically processed fibres by weight in relation to the total fibre content) coated on one or both sides with kaolin or other inorganic substances, in rolls or sheets as specified in note 7a or 7b to chapter 48 and weighing =< 150 g/m² (excl. paper and paperboard of subheading 4810.11-10) 01/01/1988 31/12/1993 -48101191 01/01/1994 31/12/2001 LIBEN Paper and paperboard for writing, printing or other graphic purposes, not containing mechanically processed fibres or containing <= 10% mechanically processed fibres by weight in relation to the total fibre content, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width of > 15 cm, weighing <= 150 g/m² (excl. paper and paperboard of subheading 4810.11.10) 01/01/1994 31/12/2001 -48101199 01/01/1994 31/12/2001 LIBEN Paper and paperboard for writing, printing or other graphic purposes, not containing mechanically processed fibres or containing <= 10% mechanically processed fibres by weight in relation to the total fibre content, coated on one or both sides with kaolin or other inorganic substances, in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, weighing <= 150 g/m² (excl. paper and paperboard of subheading 4810.11.10) 01/01/1994 31/12/2001 -481012 01/01/1988 31/12/2001 LIBEN Paper and paperboard for writing, printing or other graphic purposes, not containing mechanically processed fibres or containing <= 10% mechanically processed fibres by weight in relation to the total fibre content, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state and weighing > 150 g/m² 01/01/1988 31/12/2001 -48101200 01/01/1988 31/12/2001 LIBEN Paper and paperboard for writing, printing or other graphic purposes, not containing mechanically processed fibres or containing <= 10% mechanically processed fibres by weight in relation to the total fibre content, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state and weighing > 150 g/m² 01/01/1988 31/12/2001 -481013 01/01/2002 31/12/2500 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in rolls of any size 01/01/2002 31/12/2500 -48101300 01/01/2012 31/12/2500 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in rolls of any size 01/01/2012 31/12/2500 -48101311 01/01/2002 31/12/2003 LIBEN Paper and paperboard used as a base for photo-sensitive, heat-sensitive or electro-sensitive paper or paperboard, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width > 15 cm and weighing <= 150 g/m² 01/01/2002 31/12/2003 -48101319 01/01/2002 31/12/2003 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width > 15 cm (excl. those used as a base for photo-sensitive, heat-sensitive or electro-sensitive paper or paperboard weighing <= 150 g/m²) 01/01/2002 31/12/2003 -48101320 01/01/2004 31/12/2011 LIBEN Paper and paperboard used as a base for photosensitive, heat-sensitive or electrosensitive paper or paperboard, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in rolls, weighing <= 150 g/m² 01/01/2004 31/12/2011 -48101380 01/01/2004 31/12/2011 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in rolls (excl. those used as a base for photosensitive, heat-sensitive or electrosensitive paper or paperboard weighing <= 150 g/m²; paper and paperboard for office machines and the like) 01/01/2004 31/12/2011 -48101391 01/01/2002 31/12/2003 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, printed, embossed or perforated, in rolls of a width <= 15 cm 01/01/2002 31/12/2003 -48101399 01/01/2002 31/12/2003 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width <= 15 cm (excl. printed, embossed or perforated paper and paperboard; paper and paperboard for office machines and the like) 01/01/2002 31/12/2003 -481014 01/01/2002 31/12/2500 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in square or rectangular sheets with one side <= 435 mm and the other side <= 297 mm in the unfolded state 01/01/2002 31/12/2500 -48101400 01/01/2012 31/12/2500 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in square or rectangular sheets with one side <= 435 mm and the other side <= 297 mm in the unfolded state 01/01/2012 31/12/2500 -48101411 01/01/2002 31/12/2003 LIBEN Paper and paperboard used as a base for photo-sensitive, heat-sensitive or electro-sensitive paper or paperboard, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in square or rectangular sheets with one side > 360 mm but <= 435 mm and the other side > 150 mm but <= 297 mm in the unfolded state and weighing <= 150 g/m² 01/01/2002 31/12/2003 -48101419 01/01/2002 31/12/2003 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in square or rectangular sheets with one side > 360 mm but <= 435 mm and the other side > 150 mm but <= 297 mm in the unfolded state (excl. those used as a base for photo-sensitive, heat-sensitive or electro-sensitive paper or paperboard weighing <= 150 g/m²) 01/01/2002 31/12/2003 -48101420 01/01/2004 31/12/2011 LIBEN Paper and paperboard used as a base for photosensitive, heat-sensitive or electrosensitive paper or paperboard, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in square or rectangular sheets with one side <= 435 mm and the other side <= 297 mm in the unfolded state and weighing <= 150 g/m² 01/01/2004 31/12/2011 -48101480 01/01/2004 31/12/2011 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in square or rectangular sheets with one side <= 435 mm and the other side <= 297 mm in the unfolded state (excl. those used as a base for photosensitive, heat-sensitive or electrosensitive paper or paperboard weighing <= 150 g/m²) 01/01/2004 31/12/2011 -48101491 01/01/2002 31/12/2003 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, printed, embossed or perforated, in square or rectangular sheets with one side <= 360 mm or with one side > 360 mm but <= 435 mm and the other side <= 15 cm in the unfolded state and weighing <= 150 g/m² 01/01/2002 31/12/2003 -48101499 01/01/2002 31/12/2003 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in square or rectangular sheets with one side <= 360 mm or with one side > 360 mm but <= 435 mm and the other side <= 150 mm in the unfolded state (excl. printed, embossed or perforate weighing <= 150 g/m²) 01/01/2002 31/12/2003 -481019 01/01/2002 31/12/2500 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in square or rectangular sheets with one side > 435 mm or with one side <= 435 mm and the other side > 297 mm in the unfolded state 01/01/2002 31/12/2500 -48101900 01/01/2012 31/12/2500 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in square or rectangular sheets with one side > 435 mm or with one side <= 435 mm and the other side > 297 mm in the unfolded state 01/01/2012 31/12/2500 -48101910 01/01/2002 31/12/2011 LIBEN Paper and paperboard used as a base for photosensitive, heat-sensitive or electrosensitive paper or paperboard, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in square or rectangular sheets with one side > 435 mm or with one side <= 435 mm and the other side > 297 mm in the unfolded state and weighing <= 150 g/m² 01/01/2002 31/12/2011 -48101990 01/01/2002 31/12/2011 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, not containing fibres obtained by a mechanical or chemi-mechanical process or of which <= 10% by weight of the total fibre content consists of such fibres, coated on one or both sides with kaolin or other inorganic substances, in square or rectangular sheets with one side > 435 mm or with one side <= 435 mm and the other side > 297 mm in the unfolded state (excl. those used as a base for photosensitive, heat-sensitive or electrosensitive paper or paperboard weighing <= 150 g/m²) 01/01/2002 31/12/2011 -481021 01/01/1988 31/12/2001 LIBEN Light-weight coated paper for writing or other graphic purposes, containing > 10% mechanically processed fibres by weight in relation to the total fibre content, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2001 -48102100 01/01/1988 31/12/2001 LIBEN Light-weight coated paper for writing or other graphic purposes, containing > 10% mechanically processed fibres by weight in relation to the total fibre content, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2001 -481022 01/01/2002 31/12/2500 LIBEN Lightweight coated paper used for writing, printing or other graphic purposes, total weight <= 72 g/m², coating weight <= 15 g/m² per side, on a base of which >= 50% by weight of the total fibre content consists of fibres obtained by a mechanical process, coated on both sides with kaolin or other inorganic substances, in rolls or in square or rectangular sheets, of any size 01/01/2002 31/12/2500 -48102200 01/01/2012 31/12/2500 LIBEN Lightweight coated paper used for writing, printing or other graphic purposes, total weight <= 72 g/m², coating weight <= 15 g/m² per side, on a base of which >= 50% by weight of the total fibre content consists of fibres obtained by a mechanical process, coated on both sides with kaolin or other inorganic substances, in rolls or in square or rectangular sheets, of any size 01/01/2012 31/12/2500 -48102210 01/01/2002 31/12/2011 LIBEN Lightweight coated paper used for writing, printing or other graphic purposes, total weight <= 72 g/m², coating weight <= 15 g/m² per side, on a base of which >= 50% by weight of the total fibre content consists of fibres obtained by a mechanical process, coated on both sides with kaolin or other inorganic substances, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/2002 31/12/2011 -48102290 01/01/2004 31/12/2011 LIBEN Lightweight coated paper used for writing, printing or other graphic purposes, total weight <= 72 g/m², coating weight <= 15 g/m² per side, on a base of which >= 50% by weight of the total fibre content consists of fibres obtained by a mechanical process, coated on both sides with kaolin or other inorganic substances, in rolls of a width <= 15 cm or in square or rectangular sheets with one side <= 36 cm or with one side > 36 cm and the other side <= 15 cm in the unfolded state (excl. for office machines and the like) 01/01/2004 31/12/2011 -48102291 01/01/2002 31/12/2003 LIBEN Light-weight coated paper used for writing, printing or other graphic purposes, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width <= 15 cm or in square or rectangular sheets with one side <= 36 cm or with one side > 36 cm and the other side <= 15 cm in the unfolded state, printed, embossed or perforated 01/01/2002 31/12/2003 -48102299 01/01/2002 31/12/2003 LIBEN Light-weight coated paper used for writing, printing or other graphic purposes, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width <= 15 cm or in square or rectangular sheets with one side <= 36 cm or with one side > 36 cm and the other side <= 15 cm in the unfolded state (excl. printed, embossed or perforated paper and paperboard; paper and paperboard for office machines and the like) 01/01/2002 31/12/2003 -481029 01/01/1988 31/12/2500 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, coated on one or both sides with kaolin or other inorganic substances, in rolls or in square or rectangular sheets, of any size (excl. lightweight paper) 01/01/1988 31/12/2500 -48102910 01/01/1988 31/12/1993 LIBEN Paper and paperboard for writing, printing or other graphic purposes, containing > 10 % of mechanically processed fibres by weight in relation to the total fibre content, coated on one or both sides with kaolin or other inorganic substances, in rolls as specified in note 7a to chapter 48 (excl. lightweight paper) 01/01/1988 31/12/1993 -48102911 01/01/1994 31/12/2003 LIBEN Wallpaper base, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width of > 15 cm (excl. light-weight coated paper) 01/01/1994 31/12/2003 -48102919 01/01/1994 31/12/2001 LIBEN Paper and paperboard for writing, printing or other graphic purposes, not containing mechanically processed fibres or containing > 10% mechanically processed fibres by weight in relation to the total fibre content, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width of > 15 cm, weighing <= 150 g/m² (excl. light-weight coated paper and wallpaper base) 01/01/1994 31/12/2001 -48102919 01/01/2002 31/12/2003 LIBEN Paper and paperboard for writing, printing or other graphic purposes, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process,, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width > 15 cm (excl. light-weight coated paper and wallpaper base) 01/01/2002 31/12/2003 -48102920 01/01/2002 31/12/2003 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, coated on one or both sides with kaolin or other inorganic substances, in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. light-weight paper) 01/01/2002 31/12/2003 -48102930 01/01/2004 31/12/2500 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, coated on one or both sides with kaolin or other inorganic substances, in rolls of any size (excl. lightweight paper; paper and paperboard for office machines and the like) 01/01/2004 31/12/2500 -48102980 01/01/2004 31/12/2500 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, coated on one or both sides with kaolin or other inorganic substances, in square or rectangular sheets of any size (excl. lightweight paper; paper and paperboard for office machines and the like) 01/01/2004 31/12/2500 -48102990 01/01/1988 31/12/2001 LIBEN Paper and paperboard for writing, printing or other graphic purposes, containing > 10% mechanically processed fibres by weight in relation to the total fibre content, coated on one or both sides with kaolin or other inorganic substances, in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. light-weight paper) 01/01/1988 31/12/2001 -48102991 01/01/2002 31/12/2003 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width <= 15 cm or in square or rectangular sheets with one side <= 36 cm or with one side > 36 cm and the other side <= 15 cm in the unfolded state, printed, embossed or perforated (excl. light-weight paper) 01/01/2002 31/12/2003 -48102999 01/01/2002 31/12/2003 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, of which > 10% by weight of the total fibre content consists of fibres obtained by a mechanical or chemi-mechanical process, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width <= 15 cm or in square or rectangular sheets with one side <= 36 cm or with one side > 36 cm and the other side <= 15 cm in the unfolded state (excl. printed, embossed or perforated paper and paperboard; light-weight paper; paper and paperboard for office machines and the like) 01/01/2002 31/12/2003 -481031 01/01/1988 31/12/2500 LIBEN Kraft paper and paperboard, bleached uniformly throughout the mass and containing > 95% chemically processed wood fibres by weight in relation to the total fibre content, coated on one or both sides with kaolin or other inorganic substances, in rolls or in square or rectangular sheets, of any size, weighing <= 150 g/m² (excl. that for writing, printing or other graphic purposes) 01/01/1988 31/12/2500 -48103100 01/01/1988 31/12/2001 LIBEN Kraft paper and paperboard, bleached uniformly throughout the mass and containing > 95% chemically processed wood fibres by weight in relation to the total fibre content, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state and weighing <= 150 g/m² (excl. that for writing, printing or other graphic purposes) 01/01/1988 31/12/2001 -48103100 01/01/2002 31/12/2500 LIBEN Kraft paper and paperboard, bleached uniformly throughout the mass and containing > 95% chemically processed wood fibres by weight in relation to the total fibre content, coated on one or both sides with kaolin or other inorganic substances, in rolls or in square or rectangular sheets, of any size, weighing <= 150 g/m² (excl. that for writing, printing or other graphic purposes) 01/01/2002 31/12/2500 -481032 01/01/1988 31/12/2500 LIBEN Kraft paper and paperboard, bleached uniformly throughout the mass and containing > 95% chemically processed wood fibres by weight in relation to the total fibre content, coated on one or both sides with kaolin or other inorganic substances, in rolls or in square or rectangular sheets, of any size, weighing > 150 g/m² (excl. that for writing, printing or other graphic purposes) 01/01/1988 31/12/2500 -48103210 01/01/1988 31/12/2001 LIBEN Kraft paper and paperboard, bleached uniformly throughout the mass and containing > 95% chemically processed wood fibres by weight in relation to the total fibre content, coated on one or both sides with kaolin, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state and weighing > 150 g/m² (excl. that for writing, printing or other graphic purposes) 01/01/1988 31/12/2001 -48103210 01/01/2002 31/12/2500 LIBEN Kraft paper and paperboard, bleached uniformly throughout the mass and containing > 95% chemically processed wood fibres by weight in relation to the total fibre content, coated on one or both sides with kaolin, in rolls or in square or rectangular sheets, of any size, weighing > 150 g/m² (excl. that for writing, printing or other graphic purposes) 01/01/2002 31/12/2500 -48103290 01/01/1988 31/12/2001 LIBEN Kraft paper and paperboard, bleached uniformly throughout the mass and containing > 95% chemically processed wood fibres by weight in relation to the total fibre content, coated on one or both sides with inorganic substances, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state and weighing > 150 g/m² (excl. kraft paper coated with kaolin; paper and paperboard for graphic purposes) 01/01/1988 31/12/2001 -48103290 01/01/2002 31/12/2500 LIBEN Kraft paper and paperboard, bleached uniformly throughout the mass and containing > 95% chemically processed wood fibres by weight in relation to the total fibre content, coated on one or both sides with inorganic substances, in rolls or in square or rectangular sheets, of any size, weighing > 150 g/m² (excl. kraft paper coated with kaolin; paper and paperboard for graphic purposes) 01/01/2002 31/12/2500 -481039 01/01/1988 31/12/2500 LIBEN Kraft paper and paperboard, coated on one or both sides with kaolin or other inorganic substances, in rolls or in square or rectangular sheets, of any size (excl. that for writing, printing or other graphic purposes; paper and paperboard bleached uniformly in the mass and containing > 95% chemically processed wood fibres by weight in relation to the total fibre content) 01/01/1988 31/12/2500 -48103900 01/01/1988 31/12/2001 LIBEN Kraft paper and paperboard, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. that for writing, printing or other graphic purposes; paper and paperboard bleached uniformly in the mass and containing > 95% chemically processed wood fibres by weight in relation to the total fibre content) 01/01/1988 31/12/2001 -48103900 01/01/2002 31/12/2500 LIBEN Kraft paper and paperboard, coated on one or both sides with kaolin or other inorganic substances, in rolls or in square or rectangular sheets, of any size (excl. that for writing, printing or other graphic purposes; paper and paperboard bleached uniformly in the mass and containing > 95% chemically processed wood fibres by weight in relation to the total fibre content) 01/01/2002 31/12/2500 -481091 01/01/1988 31/12/2001 LIBEN Multi-ply paper and paperboard, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. that for writing, printing or other graphic purposes, kraft paper and paperboard) 01/01/1988 31/12/2001 -48109110 01/01/1988 31/12/2001 LIBEN Multi-ply paper and paperboard, coated on one or both sides with kaolin or other inorganic substances, each layer bleached, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. that for writing, printing or other graphic purposes, kraft paper and paperboard) 01/01/1988 31/12/2001 -48109130 01/01/1988 31/12/2001 LIBEN Multi-ply paper and paperboard, coated on one or both sides with kaolin or other inorganic substances, with one bleached outer layer only, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. that for writing, printing or other graphic purposes, kraft paper and paperboard) 01/01/1988 31/12/2001 -48109190 01/01/1988 31/12/2001 LIBEN Multi-ply paper and paperboard, coated on one or both sides with kaolin or other inorganic substances, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. multi-ply paper and paperboard with each layer bleached, with one bleached outer layer only, paper and paperboard for writing, printing or other graphic purposes, kraft paper and paperboard) 01/01/1988 31/12/2001 -481092 01/01/2002 31/12/2500 LIBEN Multi-ply paper and paperboard, coated on one or both sides with kaolin or other inorganic substances, in rolls or in square or rectangular sheets, of any size (excl. that for writing, printing or other graphic purposes, kraft paper and paperboard) 01/01/2002 31/12/2500 -48109210 01/01/2002 31/12/2500 LIBEN Multi-ply paper and paperboard, each layer bleached, coated on one or both sides with kaolin or other inorganic substances, in rolls or in square or rectangular sheets, of any size (excl. that for writing, printing or other graphic purposes, kraft paper and paperboard) 01/01/2002 31/12/2500 -48109230 01/01/2002 31/12/2500 LIBEN Multi-ply paper and paperboard, with only one outer layer bleached, coated on one or both sides with kaolin or other inorganic substances, in rolls or in square or rectangular sheets, of any size (excl. that for writing, printing or other graphic purposes, kraft paper and paperboard) 01/01/2002 31/12/2500 -48109290 01/01/2002 31/12/2500 LIBEN Multi-ply paper and paperboard, coated on one or both sides with kaolin or other inorganic substances, in rolls or in square or rectangular sheets, of any size (excl. multi-ply paper and paperboard with each layer bleached, with one bleached outer layer only, paper and paperboard for writing, printing or other graphic purposes, kraft paper and paperboard) 01/01/2002 31/12/2500 -481099 01/01/1988 31/12/2500 LIBEN Paper and paperboard, coated on one or both sides with kaolin "China clay" or other inorganic substances, with or without a binder, and with no other coating, whether or not surface-coloured, surface-decorated or printed, in rolls or in square or rectangular sheets, of any size (excl. that for writing, printing or other graphic purposes, kraft paper and paperboard, multi-ply paper and paperboard, and with no other coating) 01/01/1988 31/12/2500 -48109910 01/01/1988 31/12/2001 LIBEN Bleached paper and paperboard, coated on one or both sides with kaolin, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. that for writing, printing or other graphic purposes, kraft paper and paperboard, and multi-ply paper and paperboard) 01/01/1988 31/12/2001 -48109910 01/01/2002 31/12/2500 LIBEN Bleached paper and paperboard, coated on one or both sides with kaolin, in rolls or in square or rectangular sheets, of any size (excl. that for writing, printing or other graphic purposes, kraft paper and paperboard, multi-ply paper and paperboard, and with no other coating) 01/01/2002 31/12/2500 -48109930 01/01/1988 31/12/2001 LIBEN Paper and paperboard, coated on one or both sides with mica powder, in strips or rolls of a width > 15 cm or in rectangular "incl. square" sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. that for writing, printing or other graphic purposes, kraft paper and paperboard, and multi-ply paper and paperboard) 01/01/1988 31/12/2001 -48109930 01/01/2002 31/12/2011 LIBEN Paper and paperboard, coated on one or both sides with mica powder, in rolls or in square or rectangular sheets, of any size (excl. that for writing, printing or other graphic purposes, kraft paper and paperboard, multi-ply paper and paperboard, and with no other coating) 01/01/2002 31/12/2011 -48109980 01/01/2012 31/12/2500 LIBEN Paper and paperboard, coated on one or both sides with inorganic substances, in rolls or in square or rectangular sheets, of any size (excl. bleached paper and paperboard coated with kaolin, paper or paperboard for writing, printing or other graphic purposes, kraft paper and paperboard, multi-ply paper and paperboard, and with no other coating) 01/01/2012 31/12/2500 -48109990 01/01/1988 31/12/2001 LIBEN Paper and paperboard, coated on one or both sides with inorganic substances, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. that coated with kaolin or mica powder, paper or paperboard for writing, printing or other graphic purposes, kraft paper and paperboard, and multi-ply paper and paperboard) 01/01/1988 31/12/2001 -48109990 01/01/2002 31/12/2011 LIBEN Paper and paperboard, coated on one or both sides with inorganic substances, in rolls or in square or rectangular sheets, of any size (excl. bleached paper and paperboard coated with kaolin, paper and paperboard coated with mica powder, paper or paperboard for writing, printing or other graphic purposes, kraft paper and paperboard, multi-ply paper and paperboard, and with no other coating) 01/01/2002 31/12/2011 -4811 01/01/1988 31/12/2500 LIBEN Paper, paperboard, cellulose wadding and webs of cellulose fibres, coated, impregnated, covered, surface-coloured, surface-decorated or printed, in rolls or in square or rectangular sheets, of any size (excl. goods of heading 4803, 4809 and 4810) 01/01/1988 31/12/2500 -481110 01/01/1988 31/12/2500 LIBEN Tarred, bituminised or asphalted paper and paperboard, in rolls or in square or rectangular sheets, of any size 01/01/1988 31/12/2500 -48111000 01/01/1988 31/12/2001 LIBEN Tarred, bituminized or asphalted paper and paperboard, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state 01/01/1988 31/12/2001 -48111000 01/01/2002 31/12/2006 LIBEN Tarred, bituminised or asphalted paper and paperboard, in rolls or in square or rectangular sheets, of any size 01/01/2002 31/12/2006 -48111000 01/01/2007 31/12/2500 LIBEN Tarred, bituminised or asphalted paper and paperboard, in rolls or in square or rectangular sheets, of any size 01/01/2007 31/12/2500 -481121 01/01/1988 31/12/2001 LIBEN Self-adhesive paper and paperboard, gummed or with an adhesive layer, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. goods of heading 4810) 01/01/1988 31/12/2001 -48112100 01/01/1988 31/12/2001 LIBEN Self-adhesive paper and paperboard, gummed or with an adhesive layer, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. goods of heading 4810) 01/01/1988 31/12/2001 -481129 01/01/1988 31/12/2001 LIBEN Gummed or adhesive paper and paperboard, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. self-adhesive and goods of heading 4810) 01/01/1988 31/12/2001 -48112900 01/01/1988 31/12/2001 LIBEN Gummed or adhesive paper and paperboard, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. self-adhesive and goods of heading 4810) 01/01/1988 31/12/2001 -481131 01/01/1988 31/12/2001 LIBEN Paper and paperboard, coated, impregnated or covered with artificial resins or plastics, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, bleached and weighing > 150 g/m² (excl. adhesives) 01/01/1988 31/12/2001 -48113100 01/01/1988 31/12/2001 LIBEN Paper and paperboard, coated, impregnated or covered with artificial resins or plastics, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state, bleached and weighing > 150 g/m² (excl. adhesives) 01/01/1988 31/12/2001 -481139 01/01/1988 31/12/2001 LIBEN Paper and paperboard, coated, impregnated or covered with artificial resins or plastics, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. bleached and weighing > 150 g/m², and adhesives) 01/01/1988 31/12/2001 -48113900 01/01/1988 31/12/2001 LIBEN Paper and paperboard, coated, impregnated or covered with artificial resins or plastics, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. bleached and weighing > 150 g/m², and adhesives) 01/01/1988 31/12/2001 -481140 01/01/1988 31/12/2001 LIBEN Paper and paperboard, coated, impregnated or covered with wax, paraffin wax, stearin, oil or glycerol, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. goods of heading 4803, 4809 and 4818) 01/01/1988 31/12/2001 -48114000 01/01/1988 31/12/2001 LIBEN Paper and paperboard, coated, impregnated or covered with wax, paraffin wax, stearin, oil or glycerol, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. goods of heading 4803, 4809 and 4818) 01/01/1988 31/12/2001 -481141 01/01/2002 31/12/2500 LIBEN Self-adhesive paper and paperboard, surface-coloured, surface-decorated or printed, in rolls or in square or rectangular sheets, of any size (excl. goods of heading 4810) 01/01/2002 31/12/2500 -48114110 01/01/2002 31/12/2003 LIBEN Self-adhesive paper and paperboard, surface-coloured, surface-decorated or printed, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. goods of heading 4810) 01/01/2002 31/12/2003 -48114120 01/01/2004 31/12/2006 LIBEN Self-adhesive paper and paperboard, surface-coloured, surface-decorated or printed, in strips, rolls or sheets of a width of <= 10 cm, coated with unvulcanised natural or synthetic rubber 01/01/2004 31/12/2006 -48114120 01/01/2007 31/12/2500 LIBEN Self-adhesive paper and paperboard, surface-coloured, surface-decorated or printed, in strips, rolls or sheets of a width of <= 10 cm, coated with unvulcanised natural or synthetic rubber 01/01/2007 31/12/2500 -48114190 01/01/2004 31/12/2006 LIBEN Self-adhesive paper and paperboard, surface-coloured, surface-decorated or printed, in rolls or in square or rectangular sheets, of any size (excl. of a width of <= 10 cm coated with unvulcanised natural or synthetic rubber and goods of heading 4810) 01/01/2004 31/12/2006 -48114190 01/01/2007 31/12/2500 LIBEN Self-adhesive paper and paperboard, surface-coloured, surface-decorated or printed, in rolls or in square or rectangular sheets, of any size (excl. of a width of <= 10 cm coated with unvulcanised natural or synthetic rubber and goods of heading 4810) 01/01/2007 31/12/2500 -48114191 01/01/2002 31/12/2003 LIBEN Self-adhesive paper and paperboard, surface-coloured, surface-decorated or printed, in strips, rolls or sheets of a width of <= 10 cm, coated with unvulcanised natural or synthetic rubber 01/01/2002 31/12/2003 -48114199 01/01/2002 31/12/2003 LIBEN Self-adhesive paper and paperboard, surface-coloured, surface-decorated or printed, in rolls of a width <= 15 cm or in square or rectangular sheets with one side <= 36 cm or with one side > 36 cm and the other side <= 15 cm in the unfolded state (excl. of a width of <= 10 cm coated with unvulcanised natural or synthetic rubber and goods of heading 4810) 01/01/2002 31/12/2003 -481149 01/01/2002 31/12/2500 LIBEN Gummed or adhesive paper and paperboard, surface-coloured, surface-decorated or printed, in rolls or in square or rectangular sheets, of any size (excl. self-adhesive and goods of heading 4810) 01/01/2002 31/12/2500 -48114900 01/01/2004 31/12/2006 LIBEN Gummed or adhesive paper and paperboard, surface-coloured, surface-decorated or printed, in rolls or in square or rectangular sheets, of any size (excl. self-adhesive and goods of heading 4810) 01/01/2004 31/12/2006 -48114900 01/01/2007 31/12/2500 LIBEN Gummed or adhesive paper and paperboard, surface-coloured, surface-decorated or printed, in rolls or in square or rectangular sheets, of any size (excl. self-adhesive and goods of heading 4810) 01/01/2007 31/12/2500 -48114910 01/01/2002 31/12/2003 LIBEN Gummed or adhesive paper and paperboard, surface-coloured, surface-decorated or printed, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. self-adhesive and goods of heading 4810) 01/01/2002 31/12/2003 -48114990 01/01/2002 31/12/2003 LIBEN Gummed or adhesive paper and paperboard, surface-coloured, surface-decorated or printed, in rolls of a width <= 15 cm or in square or rectangular sheets with one side <= 36 cm or with one side > 36 cm and the other side <= 15 cm in the unfolded state (excl. self-adhesive and goods of heading 4810) 01/01/2002 31/12/2003 -481151 01/01/2002 31/12/2500 LIBEN Paper and paperboard, surface-coloured, surface-decorated or printed, coated, impregnated or covered with artificial resins or plastics, in rolls or in square or rectangular sheets, of any size, bleached and weighing > 150 g/m² (excl. adhesives) 01/01/2002 31/12/2500 -48115100 01/01/2002 31/12/2006 LIBEN Paper and paperboard, surface-coloured, surface-decorated or printed, coated, impregnated or covered with artificial resins or plastics, in rolls or in square or rectangular sheets, of any size, bleached and weighing > 150 g/m² (excl. adhesives) 01/01/2002 31/12/2006 -48115100 01/01/2007 31/12/2500 LIBEN Paper and paperboard, surface-coloured, surface-decorated or printed, coated, impregnated or covered with artificial resins or plastics, in rolls or in square or rectangular sheets, of any size, bleached and weighing > 150 g/m² (excl. adhesives) 01/01/2007 31/12/2500 -481159 01/01/2002 31/12/2500 LIBEN Paper and paperboard, surface-coloured, surface-decorated or printed, coated, impregnated or covered with artificial resins or plastics, in rolls or in square or rectangular sheets, of any size (excl. bleached and weighing > 150 g/m², and adhesives) 01/01/2002 31/12/2500 -48115900 01/01/2002 31/12/2006 LIBEN Paper and paperboard, surface-coloured, surface-decorated or printed, coated, impregnated or covered with artificial resins or plastics, in rolls or in square or rectangular sheets, of any size (excl. bleached and weighing > 150 g/m², and adhesives) 01/01/2002 31/12/2006 -48115900 01/01/2007 31/12/2500 LIBEN Paper and paperboard, surface-coloured, surface-decorated or printed, coated, impregnated or covered with artificial resins or plastics, in rolls or in square or rectangular sheets, of any size (excl. bleached and weighing > 150 g/m², and adhesives) 01/01/2007 31/12/2500 -481160 01/01/2002 31/12/2500 LIBEN Paper and paperboard, coated, impregnated or covered with wax, paraffin wax, stearin, oil or glycerol, in rolls or in square or rectangular sheets, of any size (excl. goods of heading 4803, 4809 and 4818) 01/01/2002 31/12/2500 -48116000 01/01/2002 31/12/2006 LIBEN Paper and paperboard, coated, impregnated or covered with wax, paraffin wax, stearin, oil or glycerol, in rolls or in square or rectangular sheets, of any size (excl. goods of heading 4803, 4809 and 4818) 01/01/2002 31/12/2006 -48116000 01/01/2007 31/12/2500 LIBEN Paper and paperboard, coated, impregnated or covered with wax, paraffin wax, stearin, oil or glycerol, in rolls or in square or rectangular sheets, of any size (excl. goods of heading 4803, 4809 and 4818) 01/01/2007 31/12/2500 -481190 01/01/1988 31/12/2500 LIBEN Paper, paperboard, cellulose wadding and webs of soft cellulose, coated, impregnated, covered, surface-coloured, surface-decorated or printed, in rolls or in square or rectangular sheets, of any size (excl. goods of heading 4803, 4809, 4810 and 4818, and of subheading 4811.10 to 4811.60) 01/01/1988 31/12/2500 -48119000 01/01/2004 31/12/2006 LIBEN Paper, paperboard, cellulose wadding and webs of soft cellulose, coated, impregnated, covered, surface-coloured, surface-decorated or printed, in rolls or in square or rectangular sheets, of any size (excl. goods of heading 4803, 4809, 4810 and 4818, and of subheading 4811.10 to 4811.60) 01/01/2004 31/12/2006 -48119000 01/01/2007 31/12/2500 LIBEN Paper, paperboard, cellulose wadding and webs of soft cellulose, coated, impregnated, covered, surface-coloured, surface-decorated or printed, in rolls or in square or rectangular sheets, of any size (excl. goods of heading 4803, 4809, 4810 and 4818, and of subheading 4811.10 to 4811.60) 01/01/2007 31/12/2500 -48119010 01/01/1988 31/12/2003 LIBEN Continuous forms, surface-coloured, surface-decorated or printed, in rolls of a width exceeding 15 cm or in sheets with one side exceeding 36 cm and the other side exceeding 15 cm in the unfolded state (excl. continuous form sets) 01/01/1988 31/12/2003 -48119090 01/01/1988 31/12/1995 LIBEN Paper, paperboard, cellulose wadding and webs of soft cellulose fibres, coated, impregnated, covered, surface-coloured, surface-decorated or printed, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. goods of headings 4803, 4809, 4810 and 4818, and of subheadings 4811.10 to 4811,40) 01/01/1988 31/12/1995 -48119090 01/01/1996 31/12/2001 LIBEN Paper, paperboard, cellulose wadding and webs of soft cellulose fibres, coated, impregnated, covered, surface-coloured, surface-decorated or printed, in rolls of a width > 15 cm or in square or rectangular sheets with one side > 36 cm and the other side > 15 cm in the unfolded state (excl. goods of heading 4803, 4809, 4810 and 4818, and of subheading 4811.10 to 4811,40) 01/01/1996 31/12/2001 -48119090 01/01/2002 31/12/2003 LIBEN Paper, paperboard, cellulose wadding and webs of soft cellulose fibres, coated, impregnated, covered, surface-coloured, surface-decorated or printed, in rolls or in square or rectangular sheets, of any size (excl. goods of heading 4803, 4809, 4810 and 4818, and of subheading 4811.10 to 4811.60) 01/01/2002 31/12/2003 -4812 01/01/1988 31/12/2500 LIBEN Filter blocks, slabs and plates, of paper pulp 01/01/1988 31/12/2500 -481200 01/01/1988 31/12/2500 LIBEN Filter blocks, slabs and plates, of paper pulp 01/01/1988 31/12/2500 -48120000 01/01/1988 31/12/2500 LIBEN Filter blocks, slabs and plates, of paper pulp 01/01/1988 31/12/2500 -4813 01/01/1988 31/12/2500 LIBEN Cigarette paper, whether or not cut to size or in the form of booklets or tubes 01/01/1988 31/12/2500 -481310 01/01/1988 31/12/2500 LIBEN Cigarette paper in the form of booklets or tubes 01/01/1988 31/12/2500 -48131000 01/01/1988 31/12/2500 LIBEN Cigarette paper in the form of booklets or tubes 01/01/1988 31/12/2500 -481320 01/01/1988 31/12/2500 LIBEN Cigarette paper in rolls of a width of <= 5 cm 01/01/1988 31/12/2500 -48132000 01/01/1988 31/12/2500 LIBEN Cigarette paper in rolls of a width of <= 5 cm 01/01/1988 31/12/2500 -481390 01/01/1988 31/12/2500 LIBEN Cigarette paper, whether or not cut to size (excl. in the form of booklets or tubes, and rolls of a width of <= 5 cm) 01/01/1988 31/12/2500 -48139000 01/01/1999 31/12/2006 LIBEN Cigarette paper, whether or not cut to size (excl. in the form of booklets or tubes, and rolls of a width of <= 5 cm) 01/01/1999 31/12/2006 -48139010 01/01/1988 31/12/1998 LIBEN Cigarette paper, not impregnated, in rolls of a width of > 15 cm, or in rectangular or square sheets with one side > 36 cm 01/01/1988 31/12/1998 -48139010 01/01/2007 31/12/2500 LIBEN Cigarette paper in rolls of a width > 5 cm but <= 15 cm 01/01/2007 31/12/2500 -48139090 01/01/1988 31/12/1998 LIBEN Cigarette paper, whether or not cut to size (excl. in the form of booklets or tubes, in rolls of a width of > 15 cm, or in rectangular or square sheets with one side measuring > 36 cm) 01/01/1988 31/12/1998 -48139090 01/01/2007 31/12/2500 LIBEN Cigarette paper, whether or not cut to size (excl. in the form of booklets or tubes, and in rolls of a width <= 15 cm) 01/01/2007 31/12/2500 -4814 01/01/1988 31/12/2500 LIBEN Wallpaper and similar wallcoverings of paper; window transparencies of paper 01/01/1988 31/12/2500 -481410 01/01/1988 31/12/2011 LIBEN Ingrain' paper 01/01/1988 31/12/2011 -48141000 01/01/1988 31/12/2011 LIBEN Ingrain' paper 01/01/1988 31/12/2011 -481420 01/01/1988 31/12/2500 LIBEN Wallpaper and similar wallcoverings of paper, consisting of paper coated or covered, on the face side, with a grained, embossed, coloured or design-printed or otherwise decorated layer of plastics 01/01/1988 31/12/2500 -48142000 01/01/1988 31/12/2500 LIBEN Wallpaper and similar wallcoverings of paper, consisting of paper coated or covered, on the face side, with a grained, embossed, coloured or design-printed or otherwise decorated layer of plastics 01/01/1988 31/12/2500 -481430 01/01/1988 31/12/2006 LIBEN Wallpaper and similar wallcoverings of paper, consisting of paper covered, on the face side, with plaiting material, whether or not bound together in parallel strands or woven 01/01/1988 31/12/2006 -48143000 01/01/1988 31/12/2006 LIBEN Wallpaper and similar wallcoverings of paper, consisting of paper covered, on the face side, with plaiting material, whether or not bound together in parallel strands or woven 01/01/1988 31/12/2006 -481490 01/01/1988 31/12/2500 LIBEN Wallpaper and similar wallcoverings of paper, and window transparencies of paper (excl. wallcoverings of paper, consisting of paper coated or covered, on the face side, with a grained, embossed, coloured or design-printed or otherwise decorated layer of plastics) 01/01/1988 31/12/2500 -48149010 01/01/1988 31/12/2500 LIBEN Wallpaper and similar wallcoverings of paper, consisting of grained, embossed, surface-coloured, design-printed or otherwise surface-decorated or covered with transparent protective plastics 01/01/1988 31/12/2500 -48149070 01/01/2012 31/12/2500 LIBEN Wallpaper and similar wallcoverings of paper, and window transparencies of paper (excl. goods of subheadings 4814.20 and 4814.90.10) 01/01/2012 31/12/2500 -48149080 01/01/2007 31/12/2011 LIBEN Wallpaper and similar wallcoverings of paper, and window transparencies of paper (excl. 'ingrain' paper and goods of subheadings 4814.20 and 4814.90.10) 01/01/2007 31/12/2011 -48149090 01/01/1988 31/12/2006 LIBEN Wallpaper and similar wallcoverings of paper, window transparencies of paper (excl. 'ingrain' paper and goods of subheading 4814,30 and 4814.90.10) 01/01/1988 31/12/2006 -4815 01/01/1988 31/12/2006 LIBEN Floor coverings on a base of paper or paperboard, whether or not cut to size (excl. similar floor coverings with textile backings, and floor coverings without backings) 01/01/1988 31/12/2006 -481500 01/01/1988 31/12/2006 LIBEN Floor coverings on a base of paper or paperboard, whether or not cut to size (excl. similar floor coverings with textile backings, and floor coverings without backings) 01/01/1988 31/12/2006 -48150000 01/01/1988 31/12/2006 LIBEN Floor coverings on a base of paper or paperboard, whether or not cut to size (excl. similar floor coverings with textile backings, and floor coverings without backings) 01/01/1988 31/12/2006 -4816 01/01/1988 31/12/2500 LIBEN Carbon paper, self-copy paper and other copying or transfer papers, in rolls of a width of <= 36 cm or in rectangular or square sheets with no side measuring > 36 cm in the unfolded state, or cut into shapes other than rectangles or squares, together with full duplicator stencils and offset plates of paper, whether or not in boxes 01/01/1988 31/12/2500 -481610 01/01/1988 31/12/2006 LIBEN Carbon or similar copying papers, in rolls of a width of <= 36 cm or in rectangular or square sheets with no side measuring > 36 cm in the unfolded state, or cut into shapes other than rectangles or squares, whether or not in boxes 01/01/1988 31/12/2006 -48161000 01/01/1988 31/12/2006 LIBEN Carbon or similar copying papers, in rolls of a width of <= 36 cm or in rectangular or square sheets with no side measuring > 36 cm in the unfolded state, or cut into shapes other than rectangles or squares, whether or not in boxes 01/01/1988 31/12/2006 -481620 01/01/1988 31/12/2500 LIBEN Self-copy paper, in rolls of a width of <= 36 cm or in rectangular or square sheets with no side measuring > 36 cm in the unfolded state, or cut into shapes other than rectangles or squares, whether or not in boxes (excl. carbon or similar copying papers) 01/01/1988 31/12/2500 -48162000 01/01/1988 31/12/2500 LIBEN Self-copy paper, in rolls of a width of <= 36 cm or in rectangular or square sheets with no side measuring > 36 cm in the unfolded state, or cut into shapes other than rectangles or squares, whether or not in boxes (excl. carbon or similar copying papers) 01/01/1988 31/12/2500 -481630 01/01/1988 31/12/2006 LIBEN Duplicator stencils of paper, whether or not in boxes 01/01/1988 31/12/2006 -48163000 01/01/1988 31/12/2006 LIBEN Duplicator stencils of paper, whether or not in boxes 01/01/1988 31/12/2006 -481690 01/01/1988 31/12/2500 LIBEN Copying or transfer papers, in rolls of a width of <= 36 cm or in rectangular or square sheets with no side measuring > 36 cm in the unfolded state, or cut into shapes other than rectangles or squares, whether or not in boxes, together with offset plates of paper (excl. self-copy paper) 01/01/1988 31/12/2500 -48169000 01/01/1988 31/12/2006 LIBEN Copying or transfer papers, in rolls of a width of <= 36 cm or in rectangular or square sheets with no side measuring > 36 cm in the unfolded state, or cut into shapes other than rectangles or squares, whether or not in boxes, together with offset plates of paper (excl. carbon or similar copying papers, self-copy paper and dulplicator stencils) 01/01/1988 31/12/2006 -48169000 01/01/2007 31/12/2500 LIBEN Copying or transfer papers, in rolls of a width of <= 36 cm or in rectangular or square sheets with no side measuring > 36 cm in the unfolded state, or cut into shapes other than rectangles or squares, whether or not in boxes, together with offset plates of paper (excl. self-copy paper) 01/01/2007 31/12/2500 -4817 01/01/1988 31/12/2500 LIBEN Envelopes, letter cards, plain postcards and correspondence cards, of paper or paperboard; boxes, pouches, wallets and writing compendiums, of paper or paperboard, containing an assortment of paper stationery (excl. letter cards, postcards and correspondence cards with imprinted postage stamps) 01/01/1988 31/12/2500 -481710 01/01/1988 31/12/2500 LIBEN Envelopes of paper or paperboard (excl. letter cards) 01/01/1988 31/12/2500 -48171000 01/01/1988 31/12/2500 LIBEN Envelopes of paper or paperboard (excl. letter cards) 01/01/1988 31/12/2500 -481720 01/01/1988 31/12/2500 LIBEN Letter cards, plain postcards and correspondence cards, of paper or paperboard (excl. those with imprinted postage stamps) 01/01/1988 31/12/2500 -48172000 01/01/1988 31/12/2500 LIBEN Letter cards, plain postcards and correspondence cards, of paper or paperboard (excl. those with imprinted postage stamps) 01/01/1988 31/12/2500 -481730 01/01/1988 31/12/2500 LIBEN Boxes, pouches, wallets and writing compendiums, of paper or paperboard, containing an assortment of paper stationery 01/01/1988 31/12/2500 -48173000 01/01/1988 31/12/2500 LIBEN Boxes, pouches, wallets and writing compendiums, of paper or paperboard, containing an assortment of paper stationery 01/01/1988 31/12/2500 -4818 01/01/1988 31/12/2500 LIBEN Toilet paper and similar paper, cellulose wadding or webs of cellulose fibres, of a kind used for household or sanitary purposes, in rolls of a width <= 36 cm, or cut to size or shape; handkerchiefs, cleansing tissues, towels, tablecloths, serviettes, bedsheets and similar household, sanitary or hospital articles, articles of apparel and clothing accessories, of paper pulp, paper, cellulose wadding or webs of cellulose fibres 01/01/1988 31/12/2500 -481810 01/01/1988 31/12/2500 LIBEN Toilet paper in rolls of a width of <= 36 cm 01/01/1988 31/12/2500 -48181010 01/01/1988 31/12/2500 LIBEN Toilet paper in rolls of a width of <= 36 cm, weighing per ply <= 25 g/m² 01/01/1988 31/12/2500 -48181090 01/01/1988 31/12/2500 LIBEN Toilet paper in rolls of a width of <= 36 cm, weighing per ply > 25 g/m² 01/01/1988 31/12/2500 -481820 01/01/1988 31/12/2500 LIBEN Handkerchiefs, cleansing or facial tissues and towels, of paper pulp, paper, cellulose wadding or webs of cellulose fibres 01/01/1988 31/12/2500 -48182010 01/01/1988 31/12/2500 LIBEN Handkerchiefs, cleansing or facial tissues and towels, of paper pulp, paper, cellulose wadding or webs of cellulose fibres 01/01/1988 31/12/2500 -48182091 01/01/1988 31/12/2500 LIBEN Hand towels of paper pulp, paper, cellulose wadding or webs of cellulose fibres, in rolls of a width <= 36 cm 01/01/1988 31/12/2500 -48182099 01/01/1988 31/12/2500 LIBEN Hand towels of paper pulp, paper, cellulose wadding or webs of cellulose fibres (excl. those in rolls of a width <= 36 cm) 01/01/1988 31/12/2500 -481830 01/01/1988 31/12/2500 LIBEN Tablecloths and serviettes of paper pulp, paper, cellulose wadding or webs of cellulose fibres 01/01/1988 31/12/2500 -48183000 01/01/1988 31/12/2500 LIBEN Tablecloths and serviettes of paper pulp, paper, cellulose wadding or webs of cellulose fibres 01/01/1988 31/12/2500 -481840 01/01/1988 31/12/2011 LIBEN Sanitary towels and tampons, napkins and napkin for babies and similar sanitary articles, of paper pulp, paper, cellulose wadding or webs of cellulose fibres 01/01/1988 31/12/2011 -48184011 01/01/1988 31/12/2011 LIBEN Sanitary towels of paper pulp, paper, cellulose wadding or webs of cellulose fibres 01/01/1988 31/12/2011 -48184013 01/01/1988 31/12/2011 LIBEN Tampons of paper pulp, paper, cellulose wadding or webs of cellulose fibres 01/01/1988 31/12/2011 -48184019 01/01/1988 31/12/2011 LIBEN Feminine hygiene products of paper pulp, paper, cellulose wadding or webs of cellulose fibres (excl. sanitary towels and tampons) 01/01/1988 31/12/2011 -48184090 01/01/2004 31/12/2009 LIBEN Napkins and napkin liners for babies and similar sanitary articles, of paper pulp, paper, cellulose wadding or webs of cellulose fibres 01/01/2004 31/12/2009 -48184091 01/01/1988 31/12/2003 LIBEN Napkins and napkin liners for babies and similar sanitary articles, of paper pulp, paper, cellulose wadding or webs of cellulose fibres (excl. those put up for retail sale) 01/01/1988 31/12/2003 -48184091 01/01/2010 31/12/2011 LIBEN Napkins and napkin liners for babies, of paper pulp, paper, cellulose wadding or webs of cellulose fibres 01/01/2010 31/12/2011 -48184099 01/01/1988 31/12/2003 LIBEN Napkins and napkin liners for babies and similar sanitary articles, of paper pulp, paper, cellulose wadding or webs of cellulose fibres, put up for retail sale 01/01/1988 31/12/2003 -48184099 01/01/2010 31/12/2011 LIBEN Sanitary articles, of paper pulp, paper, cellulose wadding or webs of cellulose fibres, for example, incontinence care articles (excl. sanitary towels, tampons, napkins and napkin liners for babies) 01/01/2010 31/12/2011 -481850 01/01/1988 31/12/2500 LIBEN Articles of apparel and clothing accessories, of paper pulp, paper, cellulose wadding or webs of cellulose fibres (excl. footware and parts thereof, incl. insoles, heel pieces and similar removable products, gaiters and similar products, headgear and parts thereof) 01/01/1988 31/12/2500 -48185000 01/01/1988 31/12/2500 LIBEN Articles of apparel and clothing accessories, of paper pulp, paper, cellulose wadding or webs of cellulose fibres (excl. footware and parts thereof, incl. insoles, heel pieces and similar removable products, gaiters and similar products, headgear and parts thereof) 01/01/1988 31/12/2500 -481890 01/01/1988 31/12/2500 LIBEN Paper, cellulose wadding or webs of cellulose fibres, of a kind used for household or sanitary purposes, in rolls of a width <= 36 cm, or cut to size or shape; articles of paper pulp, paper, cellulose wadding or webs of cellulose fibres for household, sanitary or hospital use (excl. toilet paper, handkerchiefs, cleansing or facial tissues and towels, tablecloths, serviettes, sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles) 01/01/1988 31/12/2500 -48189010 01/01/1988 31/12/2500 LIBEN Articles of paper pulp, paper, cellulose wadding or webs of cellulose fibre of a kind used for surgical, medical or hygienic purposes (excl. toilet paper, handkerchiefs, cleansing or facial tissues and towels, tablecloths, serviettes, sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles, and goods put up for retail sale) 01/01/1988 31/12/2500 -48189090 01/01/1988 31/12/2500 LIBEN Paper, cellulose wadding or webs of cellulose fibres, of a kind used for household or sanitary purposes, in rolls of a width <= 36 cm, or cut to size or shape; articles of paper pulp, paper, cellulose wadding or webs of cellulose fibres for household, sanitary or hospital use (excl. toilet paper, handkerchiefs, cleansing or facial tissues and towels, tablecloths, serviettes, sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles, and articles of a kind used for surgical, medical or hygienic purposes not put up for retail sale) 01/01/1988 31/12/2500 -4819 01/01/1988 31/12/2500 LIBEN Cartons, boxes, cases, bags and other packing containers, of paper, paperboard, cellulose wadding or webs of cellulose fibres, n.e.s.; box files, letter trays, and similar articles, of paperboard of a kind used in offices, shops or the like 01/01/1988 31/12/2500 -481910 01/01/1988 31/12/2500 LIBEN Cartons, boxes and cases, of corrugated paper or paperboard 01/01/1988 31/12/2500 -48191000 01/01/1988 31/12/2500 LIBEN Cartons, boxes and cases, of corrugated paper or paperboard 01/01/1988 31/12/2500 -481920 01/01/1988 31/12/2500 LIBEN Folding cartons, boxes and cases, of non-corrugated paper or paperboard 01/01/1988 31/12/2500 -48192000 01/01/2004 31/12/2500 LIBEN Folding cartons, boxes and cases, of non-corrugated paper or paperboard 01/01/2004 31/12/2500 -48192010 01/01/1988 31/12/2003 LIBEN Folding cartons, boxes and cases, of non-corrugated paper or paperboard, with a paper or paperboard weight of < 600 g/m² 01/01/1988 31/12/2003 -48192090 01/01/1988 31/12/2003 LIBEN Folding cartons, boxes and cases, of non-corrugated paper or paperboard, with a paper or paperboard weight of >= 600 g/m² 01/01/1988 31/12/2003 -481930 01/01/1988 31/12/2500 LIBEN Sacks and bags, of paper, paperboard, cellulose wadding or webs of cellulose fibres, having a base of a width of >= 40 cm 01/01/1988 31/12/2500 -48193000 01/01/1988 31/12/2500 LIBEN Sacks and bags, of paper, paperboard, cellulose wadding or webs of cellulose fibres, having a base of a width of >= 40 cm 01/01/1988 31/12/2500 -481940 01/01/1988 31/12/2500 LIBEN Sacks and bags, incl. cones, of paper, paperboard, cellulose wadding or webs of cellulose fibres (excl. those having a base of a width of >= 40 cm, and record sleeves) 01/01/1988 31/12/2500 -48194000 01/01/1988 31/12/2500 LIBEN Sacks and bags, incl. cones, of paper, paperboard, cellulose wadding or webs of cellulose fibres (excl. those having a base of a width of >= 40 cm, and record sleeves) 01/01/1988 31/12/2500 -481950 01/01/1988 31/12/2500 LIBEN Packing containers, incl. record sleeves, of paper, paperboard, cellulose wadding or webs of cellulose fibres (excl. cartons, boxes and cases, of corrugated paper or paperboard, folding cartons, boxes and cases, of uncorrugated paper or paperboard, sacks and bags) 01/01/1988 31/12/2500 -48195000 01/01/1988 31/12/2500 LIBEN Packing containers, incl. record sleeves, of paper, paperboard, cellulose wadding or webs of cellulose fibres (excl. cartons, boxes and cases, of corrugated paper or paperboard, folding cartons, boxes and cases, of uncorrugated paper or paperboard, sacks and bags) 01/01/1988 31/12/2500 -481960 01/01/1988 31/12/2500 LIBEN Box files, letter trays, storage boxes and similar articles, of paperboard, of a kind used in offices, shops or the like (excl. packing containers) 01/01/1988 31/12/2500 -48196000 01/01/1988 31/12/2500 LIBEN Box files, letter trays, storage boxes and similar articles, of paperboard, of a kind used in offices, shops or the like (excl. packing containers) 01/01/1988 31/12/2500 -4820 01/01/1988 31/12/2500 LIBEN Registers, account books, notebooks, order books, receipt books, letter pads, memorandum pads, diaries and similar articles, exercise books, blotting pads, binders, folders, file covers, manifold business forms, interleaved carbon sets and other articles of stationery, of paper or paperboard; albums for samples or for collections and book covers, of paper and paperboard 01/01/1988 31/12/2500 -482010 01/01/1988 31/12/2500 LIBEN Registers, account books, notebooks, order books, receipt books, letter pads, memorandum pads, diaries and similar articles, of paper or paperboard 01/01/1988 31/12/2500 -48201010 01/01/1988 31/12/2500 LIBEN Registers, account books, order books and receipt books, of paper or paperboard 01/01/1988 31/12/2500 -48201030 01/01/1988 31/12/2500 LIBEN Notebooks, letter pads and memorandum pads, without calendars, of paper or paperboard 01/01/1988 31/12/2500 -48201050 01/01/1988 31/12/2500 LIBEN Diaries with calendars, of paper or paperboard 01/01/1988 31/12/2500 -48201090 01/01/1988 31/12/2500 LIBEN Writing pads and the like, of paper or paperboard 01/01/1988 31/12/2500 -482020 01/01/1988 31/12/2500 LIBEN Exercise books of paper or paperboard 01/01/1988 31/12/2500 -48202000 01/01/1988 31/12/2500 LIBEN Exercise books of paper or paperboard 01/01/1988 31/12/2500 -482030 01/01/1988 31/12/2500 LIBEN Binders (other than book covers), folders and file covers, of paper or paperboard 01/01/1988 31/12/2500 -48203000 01/01/1988 31/12/2500 LIBEN Binders (other than book covers), folders and file covers, of paper or paperboard 01/01/1988 31/12/2500 -482040 01/01/1988 31/12/2500 LIBEN Manifold business forms and interleaved carbon sets, of paper or paperboard 01/01/1988 31/12/2500 -48204000 01/01/2010 31/12/2500 LIBEN Manifold business forms and interleaved carbon sets, of paper or paperboard 01/01/2010 31/12/2500 -48204010 01/01/1988 31/12/2009 LIBEN Continuous form sets, whether or not with interleaved carbon sheets, of paper or paperboard 01/01/1988 31/12/2009 -48204090 01/01/1988 31/12/2009 LIBEN Manifold business forms and interleaved carbon sets, of paper or paperboard (excl. continuous forms) 01/01/1988 31/12/2009 -482050 01/01/1988 31/12/2500 LIBEN Albums for samples or collections, of paper or paperboard 01/01/1988 31/12/2500 -48205000 01/01/1988 31/12/2500 LIBEN Albums for samples or collections, of paper or paperboard 01/01/1988 31/12/2500 -482090 01/01/1988 31/12/2500 LIBEN Blotting pads and similar articles of stationery, of paper and paperboard, and book covers of paper or paperboard (excl. registers, account books, notebooks, order books, receipt books, letter pads, memorandum pads, diaries, exercise books, binders, folders, file covers, manifold business forms and interleaved carbon sets, and albums for samples or for collections) 01/01/1988 31/12/2500 -48209000 01/01/1988 31/12/2500 LIBEN Blotting pads and similar articles of stationery, of paper and paperboard, and book covers of paper or paperboard (excl. registers, account books, notebooks, order books, receipt books, letter pads, memorandum pads, diaries, exercise books, binders, folders, file covers, manifold business forms and interleaved carbon sets, and albums for samples or for collections) 01/01/1988 31/12/2500 -4821 01/01/1988 31/12/2500 LIBEN Paper or paperboard labels of all kinds, whether or not printed 01/01/1988 31/12/2500 -482110 01/01/1988 31/12/2500 LIBEN Paper or paperboard labels of all kinds, printed 01/01/1988 31/12/2500 -48211010 01/01/1988 31/12/2500 LIBEN Self-adhesive paper or paperboard labels of all kinds, printed 01/01/1988 31/12/2500 -48211090 01/01/1988 31/12/2500 LIBEN Paper or paperboard labels of all kinds, printed (excl. self-adhesive) 01/01/1988 31/12/2500 -482190 01/01/1988 31/12/2500 LIBEN Paper or paperboard labels of all kinds, non-printed 01/01/1988 31/12/2500 -48219010 01/01/1988 31/12/2500 LIBEN Self-adhesive paper or paperboard labels of all kinds, non-printed 01/01/1988 31/12/2500 -48219090 01/01/1988 31/12/2500 LIBEN Paper or paperboard labels of all kinds, non-printed (excl. self-adhesive) 01/01/1988 31/12/2500 -4822 01/01/1988 31/12/2500 LIBEN Bobbins, spools, cops and similar supports of paper pulp, paper or paperboard, whether or not perforated or hardened 01/01/1988 31/12/2500 -482210 01/01/1988 31/12/2500 LIBEN Bobbins, spools, cops and similar supports of paper pulp, paper or paperboard, whether or not perforated or hardened, for winding textile yarn 01/01/1988 31/12/2500 -48221000 01/01/1988 31/12/2500 LIBEN Bobbins, spools, cops and similar supports of paper pulp, paper or paperboard, whether or not perforated or hardened, for winding textile yarn 01/01/1988 31/12/2500 -482290 01/01/1988 31/12/2500 LIBEN Bobbins, spools, cops and similar supports of paper pulp, paper or paperboard, whether or not perforated or hardened (excl. those for winding textile yarn) 01/01/1988 31/12/2500 -48229000 01/01/1988 31/12/2500 LIBEN Bobbins, spools, cops and similar supports of paper pulp, paper or paperboard, whether or not perforated or hardened (excl. those for winding textile yarn) 01/01/1988 31/12/2500 -4823 01/01/1988 31/12/2500 LIBEN Paper, paperboard, cellulose wadding and webs of cellulose fibres, in strips or rolls of a width <= 36 cm, in rectangular or square sheets of which no side > 36 cm in the unfolded state, or cut to shape other than rectangular or square, and articles of paper pulp, paper, paperboard, cellulose wadding or webs or cellulose fibres, n.e.s. 01/01/1988 31/12/2500 -482311 01/01/1988 31/12/2001 LIBEN Gummed or adhesive paper, in strips or rolls with a width of <= 15 cm, self-adhesive 01/01/1988 31/12/2001 -48231110 01/01/1988 31/12/1993 LIBEN Paper in strips or rolls of a width of <= 10 cm, coated with unvulcanized natural or synthetic rubber 01/01/1988 31/12/1993 -48231111 01/01/1994 31/12/2001 LIBEN Gummed or adhesive paper, in strips or rolls of a width of <= 10 cm, coated with unvulcanised natural or synthetic rubber, self-adhesive on one side 01/01/1994 31/12/2001 -48231119 01/01/1994 31/12/2001 LIBEN Gummed or adhesive paper, in strips or rolls of a width of <= 10 cm, coated with unvulcanised natural or synthetic rubber, self-adhesive on both sides 01/01/1994 31/12/2001 -48231190 01/01/1988 31/12/2001 LIBEN Gummed or adhesive paper, in strips or rolls of a width <= 15 cm, self-adhesive (excl. that of a width <= 10 cm, coated with unvulcanised natural or synthetic rubber) 01/01/1988 31/12/2001 -482312 01/01/2002 31/12/2006 LIBEN Self-adhesive paper in strips or rolls with a width of <= 36 cm (excl. surface-coloured, surface-decorated or printed) 01/01/2002 31/12/2006 -48231200 01/01/2004 31/12/2006 LIBEN Self-adhesive paper in strips or rolls with a width of <= 36 cm (excl. surface-coloured, surface-decorated or printed) 01/01/2004 31/12/2006 -48231210 01/01/2002 31/12/2003 LIBEN Self-adhesive paper in strips or rolls of a width of <= 10 cm, coated with unvulcanised natural or synthetic rubber (excl. surface-coloured, surface-decorated or printed) 01/01/2002 31/12/2003 -48231290 01/01/2002 31/12/2003 LIBEN Self-adhesive paper in strips or rolls of a width <= 36 cm (excl. surface-coloured, surface-decorated or printed, and of a width <= 10 cm coated with unvulcanised natural or synthetic rubber) 01/01/2002 31/12/2003 -482319 01/01/1988 31/12/2006 LIBEN Gummed or adhesive paper in strips or rolls of a width <= 36 cm (excl. self-adhesive) 01/01/1988 31/12/2006 -48231900 01/01/1988 31/12/2001 LIBEN Gummed or adhesive paper, in strips or rolls of a width <= 15 cm (excl. self-adhesive) 01/01/1988 31/12/2001 -48231900 01/01/2002 31/12/2006 LIBEN Gummed or adhesive paper in strips or rolls of a width <= 36 cm (excl. self-adhesive) 01/01/2002 31/12/2006 -482320 01/01/1988 31/12/2500 LIBEN Filter paper and paperboard, in strips or rolls of a width <= 36 cm, in rectangular or square sheets, of which no side > 36 cm in the unfolded state, or cut to shape other than rectangular or square 01/01/1988 31/12/2500 -48232000 01/01/1988 31/12/2001 LIBEN Filter paper and paperboard, in strips or rolls of a width <= 15 cm, in rectangular or square sheets, of which no side > 36 cm in the unfolded state, or cut to shape other than rectangular or square 01/01/1988 31/12/2001 -48232000 01/01/2002 31/12/2500 LIBEN Filter paper and paperboard, in strips or rolls of a width <= 36 cm, in rectangular or square sheets, of which no side > 36 cm in the unfolded state, or cut to shape other than rectangular or square 01/01/2002 31/12/2500 -482330 01/01/1988 31/12/1995 LIBEN Paper or paperboard cards, not punched, for punch card machines, whether or not in strips 01/01/1988 31/12/1995 -48233000 01/01/1988 31/12/1995 LIBEN Paper or paperboard cards, not punched, for punch card machines, whether or not in strips 01/01/1988 31/12/1995 -482340 01/01/1988 31/12/2500 LIBEN Rolls, sheets and dials, printed for self-recording apparatus, in rolls of a width <= 36 cm, in rectangular or square sheets of which no side > 36 cm in the unfolded state, or cut into dials 01/01/1988 31/12/2500 -48234000 01/01/1988 31/12/2001 LIBEN Rolls, sheets and dials, printed for self-recording apparatus, in rolls of a width <= 15 cm, in rectangular or square sheets, of which no side > 36 cm in the unfolded state, or cut into disks 01/01/1988 31/12/2001 -48234000 01/01/2002 31/12/2500 LIBEN Rolls, sheets and dials, printed for self-recording apparatus, in rolls of a width <= 36 cm, in rectangular or square sheets of which no side > 36 cm in the unfolded state, or cut into dials 01/01/2002 31/12/2500 -482351 01/01/1988 31/12/2001 LIBEN Paper and paperboard for writing, printing or other graphic purposes, in strips or rolls of a width <= 15 cm, in rectangular or square sheets, of which no side > 36 cm in the unfolded state, or cut to shape other than rectangular or square, printed and embossed or perforated, n.e.s. 01/01/1988 31/12/2001 -48235110 01/01/1988 31/12/2001 LIBEN Continuous forms, printed, embossed or perforated, in strips or rolls of a width <= 15 cm (excl. continous form sets) 01/01/1988 31/12/2001 -48235190 01/01/1988 31/12/2001 LIBEN Paper and paperboard for writing, printing or other graphic purposes, in strips or rolls of a width <= 15 cm, in rectangular or square sheets, of which no side > 36 cm in the unfolded state, or cut to shape other than rectangular or square, printed, embossed or perforated, n.e.s. (excl. continous forms) 01/01/1988 31/12/2001 -482359 01/01/1988 31/12/2001 LIBEN Paper and paperboard for writing, printing or other graphic purposes, in strips or rolls of a width <= 15 cm, in rectangular or square sheets, of which no side > 36 cm in the unfolded state, or cut to shape other than rectangular or square (excl. printed, embossed or perforated paper and paperboard, n.e.s.) 01/01/1988 31/12/2001 -48235910 01/01/1988 31/12/2001 LIBEN Paper and paperboard for writing, printing or other graphic purposes, in strips or rolls of a width <= 15 cm, for office machines and the like 01/01/1988 31/12/2001 -48235990 01/01/1988 31/12/2001 LIBEN Paper and paperboard for writing, printing or other graphic purposes, in strips or rolls of a width <= 15 cm, in rectangular or square sheets, of which no side > 36 cm in the unfolded state, or cut to shape other than rectangular or square (excl. printed, embossed or perforated paper and paperboard; paper and paperboard for office machines and the like; paper and paperboard strips or rolls) 01/01/1988 31/12/2001 -482360 01/01/1988 31/12/2006 LIBEN Trays, dishes, plates, cups and the like, of paper or paperboard 01/01/1988 31/12/2006 -48236010 01/01/1988 31/12/2006 LIBEN Trays, dishes and plates, of paper or paperboard 01/01/1988 31/12/2006 -48236090 01/01/1988 31/12/2006 LIBEN Cups and the like, of paper or paperboard (excl. trays, dishes and plates) 01/01/1988 31/12/2006 -482361 01/01/2007 31/12/2500 LIBEN Trays, dishes, plates, cups and the like, of bamboo paper or bamboo paperboard 01/01/2007 31/12/2500 -48236100 01/01/2007 31/12/2500 LIBEN Trays, dishes, plates, cups and the like, of bamboo paper or bamboo paperboard 01/01/2007 31/12/2500 -482369 01/01/2007 31/12/2500 LIBEN Trays, dishes, plates, cups and the like, of paper or paperboard (excl. of bamboo paper or bamboo paperboard) 01/01/2007 31/12/2500 -48236910 01/01/2007 31/12/2500 LIBEN Trays, dishes and plates, of paper or paperboard (excl. of bamboo paper or bamboo paperboard) 01/01/2007 31/12/2500 -48236990 01/01/2007 31/12/2500 LIBEN Cups and the like, of paper or paperboard (excl. of bamboo paper or bamboo paperboard, and trays, dishes and plates) 01/01/2007 31/12/2500 -482370 01/01/1988 31/12/2500 LIBEN Moulded or pressed articles of paper pulp, n.e.s. 01/01/1988 31/12/2500 -48237010 01/01/1988 31/12/2500 LIBEN Trays and boxes for packing eggs, of moulded paper pulp 01/01/1988 31/12/2500 -48237090 01/01/1988 31/12/2500 LIBEN Moulded or pressed articles of paper pulp, n.e.s. 01/01/1988 31/12/2500 -482390 01/01/1988 31/12/2500 LIBEN Paper, paperboard, cellulose wadding and webs of cellulose fibres, in strips or rolls of a width <= 36 cm, in rectangular or square sheets, of which no side > 36 cm in the unfolded state, or cut to shape other than rectangular or square, and articles of paper pulp, paper, cellulose wadding or webs of cellulose fibres, n.e.s. 01/01/1988 31/12/2500 -48239010 01/01/1988 31/12/2005 LIBEN Gaskets, washers and other seals, of paper or paperboard, for civil aircraft 01/01/1988 31/12/2005 -48239012 01/01/2002 31/12/2003 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, in strips or rolls of a width <= 36 cm, in rectangular or square sheets, of which no side > 36 cm in the unfolded state, or cut to shape other than rectangular or square, printed, embossed or perforated, n.e.s. 01/01/2002 31/12/2003 -48239014 01/01/2002 31/12/2003 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, in strips or rolls of a width <= 36 cm, in rectangular or square sheets, of which no side > 36 cm in the unfolded state, or cut to shape other than rectangular or square, n.e.s. (excl. printed, embossed or perforated paper and paperboard; paper and paperboard for office machines and the like; paper and paperboard strips or rolls) 01/01/2002 31/12/2003 -48239015 01/01/1996 31/12/2003 LIBEN Paper or paperboard cards, not punched, for punch card machines, whether or not in strips 01/01/1996 31/12/2003 -48239020 01/01/1988 31/12/2003 LIBEN Perforated paper and paperboard, cut to size, for Jacquard and similar machines 01/01/1988 31/12/2003 -48239030 01/01/1988 31/12/2003 LIBEN Fans and hand screens, frames therefor and parts of such frames, of paper, paperboard or webs of cellulose fibres (excl. fans with bodies of precious metals) 01/01/1988 31/12/2003 -48239040 01/01/2004 31/12/2500 LIBEN Paper and paperboard used for writing, printing or other graphic purposes, n.e.s. 01/01/2004 31/12/2500 -48239050 01/01/1996 31/12/2001 LIBEN Paper, paperboard, cellulose wadding and webs of cellulose fibres, cut to size or shape, n.e.s. 01/01/1996 31/12/2001 -48239050 01/01/2002 31/12/2003 LIBEN Paper, paperboard, cellulose wadding and webs of cellulose fibres, cut to size or shape, n.e.s. 01/01/2002 31/12/2003 -48239051 01/01/1988 31/12/1995 LIBEN Condenser paper, cut to size 01/01/1988 31/12/1995 -48239071 01/01/1988 31/12/1995 LIBEN Paper, paperboard, cellulose wadding and webs of cellulose fibres, cut to size for a specific purpose, gummed or with an adhesive layer, n.e.s. 01/01/1988 31/12/1995 -48239079 01/01/1988 31/12/1995 LIBEN Paper, paperboard, cellulose wadding and webs of cellulose fibres, cut to size for a specific purpose n.e.s. 01/01/1988 31/12/1995 -48239080 01/01/2004 31/12/2005 LIBEN Paper, paperboard, cellulose wadding and webs of cellulose fibres, in strips or rolls of a width <= 36 cm, in rectangular or square sheets, of which no side > 36 cm in the unfolded state, or cut to shape other than rectangular or square, and articles of paper pulp, paper, cellulose wadding or webs of cellulose fibres, n.e.s. 01/01/2004 31/12/2005 -48239085 01/01/2007 31/12/2500 LIBEN Paper, paperboard, cellulose wadding and webs of cellulose fibres, in strips or rolls of a width <= 36 cm, in rectangular or square sheets, of which no side > 36 cm in the unfolded state, or cut to shape other than rectangular or square, and articles of paper pulp, paper, cellulose wadding or webs of cellulose fibres, n.e.s. 01/01/2007 31/12/2500 -48239090 01/01/1988 31/12/1995 LIBEN Paper, paperboard, cellulose wadding and webs of cellulose fibres, in strips or rolls of a width <= 15 cm, in rectangular or square sheets, of which no side > 36 cm in the unfolded state, and articles of paper pulp, paper, cellulose wadding or webs of cellulose fibres, n.e.s. 01/01/1988 31/12/1995 -48239090 01/01/1996 31/12/2001 LIBEN Paper, paperboard, cellulose wadding and webs of cellulose fibres, in strips or rolls of a width <= 15 cm, in rectangular or square sheets, of which no side > 36 cm in the unfolded state, and articles of paper pulp, paper, cellulose wadding or webs of cellulose fibres, n.e.s. 01/01/1996 31/12/2001 -48239090 01/01/2002 31/12/2003 LIBEN Paper, paperboard, cellulose wadding and webs of cellulose fibres, in strips or rolls of a width <= 36 cm, in rectangular or square sheets, of which no side > 36 cm in the unfolded state, or cut to shape other than rectangular or square, and articles of paper pulp, paper, cellulose wadding or webs of cellulose fibres, n.e.s. 01/01/2002 31/12/2003 -48239095 01/01/2006 31/12/2006 LIBEN Paper, paperboard, cellulose wadding and webs of cellulose fibres, in strips or rolls of a width <= 36 cm, in rectangular or square sheets, of which no side > 36 cm in the unfolded state, or cut to shape other than rectangular or square, and articles of paper pulp, paper, cellulose wadding or webs of cellulose fibres, n.e.s. 01/01/2006 31/12/2006 -48CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 48 01/01/2002 31/12/2500 -48CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 48 01/01/2002 31/12/2500 -48CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 48 01/01/2002 31/12/2500 -48MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -48MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -48MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -48SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 48 01/01/1988 31/12/2500 -48SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 48 and SITC section 0 01/01/1997 31/12/2001 -48SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 48 and SITC group 000 01/01/1997 31/12/2001 -48SSS6 01/01/1991 31/12/2500 LIBEN Confidential trade of chapter 48 and SITC section 6 01/01/1991 31/12/2500 -48SSS641 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 48 and SITC group 641 01/01/1992 31/12/2500 -48SSS642 01/01/1991 31/12/2500 LIBEN Confidential trade of chapter 48 and SITC group 642 01/01/1991 31/12/2500 -48SSS659 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 48 and SITC group 659 01/01/1992 31/12/2500 -48SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 48 and SITC section 8 01/01/1997 31/12/2500 -48SSS892 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 48 and SITC group 892 01/01/1997 31/12/2500 -48SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 48 and SITC section 9 01/01/1988 31/12/1996 -48SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 48 and SITC section 9 01/01/1997 31/12/2500 -48SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 48 and SITC group 999 01/01/1988 31/12/1996 -48SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 48 and SITC group 999 01/01/1997 31/12/2500 -48VV 01/01/2000 31/12/2500 LIBEN Imported goods of chapter 48 for the assembly of motor vehicles 01/01/2000 31/12/2500 -48VVV0 01/01/2000 31/12/2500 LIBEN Imported goods of chapter 48 for the assembly of motor vehicles 01/01/2000 31/12/2500 -48VVV000 01/01/2000 31/12/2500 LIBEN Imported goods of chapter 48 for the assembly of motor vehicles 01/01/2000 31/12/2500 -49 01/01/1988 31/12/2500 LIBEN PRINTED BOOKS, NEWSPAPERS, PICTURES AND OTHER PRODUCTS OF THE PRINTING INDUSTRY; MANUSCRIPTS, TYPESCRIPTS AND PLANS 01/01/1988 31/12/2500 -4901 01/01/1988 31/12/2500 LIBEN Printed books, brochures and similar printed matter, whether or not in single sheets (excl. periodicals and publications which are essentially devoted to advertising) 01/01/1988 31/12/2500 -490110 01/01/1988 31/12/2500 LIBEN Printed books, brochures and similar printed matter, in single sheets, whether or not folded (excl. periodicals and publications which are essentially devoted to advertising) 01/01/1988 31/12/2500 -49011000 01/01/1988 31/12/2500 LIBEN Printed books, brochures and similar printed matter, in single sheets, whether or not folded (excl. periodicals and publications which are essentially devoted to advertising) 01/01/1988 31/12/2500 -490191 01/01/1988 31/12/2500 LIBEN Dictionaries and encyclopaedias, and serial instalments thereof 01/01/1988 31/12/2500 -49019100 01/01/1988 31/12/2500 LIBEN Dictionaries and encyclopaedias, and serial instalments thereof 01/01/1988 31/12/2500 -490199 01/01/1988 31/12/2500 LIBEN Printed books, brochures and similar printed matter (excl. those in single sheets; dictionaries, encyclopaedias, periodicals and publications which are essentially devoted to advertising) 01/01/1988 31/12/2500 -49019900 01/01/1988 31/12/2500 LIBEN Printed books, brochures and similar printed matter (excl. those in single sheets; dictionaries, encyclopaedias, periodicals and publications which are essentially devoted to advertising) 01/01/1988 31/12/2500 -4902 01/01/1988 31/12/2500 LIBEN Newspapers, journals and periodicals, whether or not illustrated or containing advertising material 01/01/1988 31/12/2500 -490210 01/01/1988 31/12/2500 LIBEN Newspapers, journals and periodicals, whether or not illustrated or containing advertising material, appearing at least four times a week 01/01/1988 31/12/2500 -49021000 01/01/1988 31/12/2500 LIBEN Newspapers, journals and periodicals, whether or not illustrated or containing advertising material, appearing at least four times a week 01/01/1988 31/12/2500 -490290 01/01/1988 31/12/2500 LIBEN Newspapers, journals and periodicals, whether or not illustrated or containing advertising material (excl. those appearing at least four times a week) 01/01/1988 31/12/2500 -49029000 01/01/1988 31/12/1993 LIBEN Newspapers and other periodicals, whether or not illustrated or containing advertising material (excl. those appearing at least four times a week) 01/01/1988 31/12/1993 -49029000 01/01/2009 31/12/2500 LIBEN Newspapers, journals and periodicals, whether or not illustrated or containing advertising material (excl. those appearing at least four times a week) 01/01/2009 31/12/2500 -49029010 01/01/1994 31/12/2008 LIBEN Newspapers, journals and periodicals, whether or not illustrated or containing advertising material, appearing once a week 01/01/1994 31/12/2008 -49029030 01/01/1994 31/12/2008 LIBEN Newspapers, journals and periodicals, whether or not illustrated or containing advertising material, appearing once a month 01/01/1994 31/12/2008 -49029090 01/01/1994 31/12/2008 LIBEN Newspapers, journals and periodicals, whether or not illustrated or containing advertising material (excl. those appearing at least four times a week, those appearing once a week and those appearing once a month) 01/01/1994 31/12/2008 -4903 01/01/1988 31/12/2500 LIBEN Children's picture, drawing or colouring books 01/01/1988 31/12/2500 -490300 01/01/1988 31/12/2500 LIBEN Children's picture, drawing or colouring books 01/01/1988 31/12/2500 -49030000 01/01/1988 31/12/2500 LIBEN Children's picture, drawing or colouring books 01/01/1988 31/12/2500 -4904 01/01/1988 31/12/2500 LIBEN Music, printed or in manuscript, whether or not bound or illustrated 01/01/1988 31/12/2500 -490400 01/01/1988 31/12/2500 LIBEN Music, printed or in manuscript, whether or not bound or illustrated 01/01/1988 31/12/2500 -49040000 01/01/1988 31/12/2500 LIBEN Music, printed or in manuscript, whether or not bound or illustrated 01/01/1988 31/12/2500 -4905 01/01/1988 31/12/2500 LIBEN Maps and hydrographic or similar charts of all kinds, incl. atlases, wall maps, topographical plans and globes, printed (excl. maps, plans and globes, in relief) 01/01/1988 31/12/2500 -490510 01/01/1988 31/12/2500 LIBEN Globes, printed (excl. relief globes) 01/01/1988 31/12/2500 -49051000 01/01/1988 31/12/2500 LIBEN Globes, printed (excl. relief globes) 01/01/1988 31/12/2500 -490591 01/01/1988 31/12/2500 LIBEN Maps and hydrographic or similar charts of all kinds, incl. atlases and topographical plans, printed and in book form (excl. globes, and maps and plans, in relief) 01/01/1988 31/12/2500 -49059100 01/01/1988 31/12/2500 LIBEN Maps and hydrographic or similar charts of all kinds, incl. atlases and topographical plans, printed and in book form (excl. globes, and maps and plans, in relief) 01/01/1988 31/12/2500 -490599 01/01/1988 31/12/2500 LIBEN Maps and hydrographic or similar charts of all kinds, incl. atlases, wall maps and topographical plans, printed (excl. those in book form, and maps, plans and globes, in relief) 01/01/1988 31/12/2500 -49059900 01/01/1988 31/12/2500 LIBEN Maps and hydrographic or similar charts of all kinds, incl. atlases, wall maps and topographical plans, printed (excl. those in book form, and maps, plans and globes, in relief) 01/01/1988 31/12/2500 -4906 01/01/1988 31/12/2500 LIBEN Plans and drawings for architectural, engineering, industrial, commercial, topographical or similar purposes, being originals drawn by hand; handwritten texts; photographic reproductions on sensitised paper and carbon copies of the foregoing 01/01/1988 31/12/2500 -490600 01/01/1988 31/12/2500 LIBEN Plans and drawings for architectural, engineering, industrial, commercial, topographical or similar purposes, being originals drawn by hand; handwritten texts; photographic reproductions on sensitised paper and carbon copies of the foregoing 01/01/1988 31/12/2500 -49060000 01/01/1988 31/12/2500 LIBEN Plans and drawings for architectural, engineering, industrial, commercial, topographical or similar purposes, being originals drawn by hand; handwritten texts; photographic reproductions on sensitised paper and carbon copies of the foregoing 01/01/1988 31/12/2500 -4907 01/01/1988 31/12/2500 LIBEN Unused postage, revenue or similar stamps of current or new issue in the country in which they have, or will have, a recognised face value; stamp-impressed paper; banknotes; cheque forms; stock, share or bond certificates and similar documents of title 01/01/1988 31/12/2500 -490700 01/01/1988 31/12/2500 LIBEN Unused postage, revenue or similar stamps of current or new issue in the country in which they have, or will have, a recognised face value; stamp-impressed paper; banknotes; cheque forms; stock, share or bond certificates and similar documents of title 01/01/1988 31/12/2500 -49070010 01/01/1988 31/12/2500 LIBEN Unused postage, revenue or similar stamps of current or new issue in the country in which they have, or will have, a recognised face value 01/01/1988 31/12/2500 -49070030 01/01/1988 31/12/2500 LIBEN Banknotes 01/01/1988 31/12/2500 -49070090 01/01/1999 31/12/2500 LIBEN Stamp-impressed paper; cheque forms; stock, share or bond certificates and similar documents 01/01/1999 31/12/2500 -49070091 01/01/1988 31/12/1998 LIBEN Stock, share or bond certificates and similar documents of title, signed and numbered (excl. those still requiring one or several signatures) 01/01/1988 31/12/1998 -49070099 01/01/1988 31/12/1998 LIBEN Stamp-impressed paper; cheque forms; stock, share or bond certificates and similar documents of title still requiring one or several signatures 01/01/1988 31/12/1998 -4908 01/01/1988 31/12/2500 LIBEN Transfers "decalcomanias" 01/01/1988 31/12/2500 -490810 01/01/1988 31/12/2500 LIBEN Transfers "decalcomanias", vitrifiable 01/01/1988 31/12/2500 -49081000 01/01/1988 31/12/2500 LIBEN Transfers "decalcomanias", vitrifiable 01/01/1988 31/12/2500 -490890 01/01/1988 31/12/2500 LIBEN Transfers "decalcomanias" (excl. vitrifiable) 01/01/1988 31/12/2500 -49089000 01/01/1988 31/12/2500 LIBEN Transfers "decalcomanias" (excl. vitrifiable) 01/01/1988 31/12/2500 -4909 01/01/1988 31/12/2500 LIBEN Printed or illustrated postcards; printed cards bearing personal greetings, messages or announcements, whether or not illustrated, with or without envelopes or trimmings 01/01/1988 31/12/2500 -490900 01/01/1988 31/12/2500 LIBEN Printed or illustrated postcards; printed cards bearing personal greetings, messages or announcements, whether or not illustrated, with or without envelopes or trimmings 01/01/1988 31/12/2500 -49090000 01/01/1988 31/12/1990 LIBEN Printed or illustrated postcards; greetings cards and printed cards bearing personal messages or announcements, whether or not illustrated, with or without envelopes or decorations of any kind 01/01/1988 31/12/1990 -49090000 01/01/2009 31/12/2500 LIBEN Printed or illustrated postcards; printed cards bearing personal greetings, messages or announcements, whether or not illustrated, with or without envelopes or trimmings 01/01/2009 31/12/2500 -49090010 01/01/1991 31/12/2008 LIBEN Printed or illustrated postcards 01/01/1991 31/12/2008 -49090090 01/01/1991 31/12/2008 LIBEN Printed cards bearing personal greetings, messages or announcements, whether or not illustrated, with or without envelopes or trimmings 01/01/1991 31/12/2008 -4910 01/01/1988 31/12/2500 LIBEN Calendars of any kinds, printed, incl. calendars blocks 01/01/1988 31/12/2500 -491000 01/01/1988 31/12/2500 LIBEN Calendars of any kinds, printed, incl. calendars blocks 01/01/1988 31/12/2500 -49100000 01/01/1988 31/12/2500 LIBEN Calendars of any kinds, printed, incl. calendars blocks 01/01/1988 31/12/2500 -4910S8 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 4910 and SITC section 8 01/01/1997 31/12/2500 -4910S892 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 4910 and SITC group 892 01/01/1997 31/12/2500 -4911 01/01/1988 31/12/2500 LIBEN Printed matter, incl. printed pictures and photographs, n.e.s. 01/01/1988 31/12/2500 -491110 01/01/1988 31/12/2500 LIBEN Trade advertising material, commercial catalogues and the like 01/01/1988 31/12/2500 -49111000 01/01/1990 31/12/1994 LIBEN Trade advertising material, commercial catalogues and the like 01/01/1990 31/12/1994 -49111010 01/01/1988 31/12/1989 LIBEN Paper and paperboard of heading 3704, for graphic reproductions of promotional and advertising material, trade catalogues and the like 01/01/1988 31/12/1989 -49111010 01/01/1995 31/12/2500 LIBEN Commercial catalogues 01/01/1995 31/12/2500 -49111090 01/01/1988 31/12/1989 LIBEN Promotional and advertising material, trade catalogues and the like (excl. paper and paperboard of heading 3704 for graphic reproductions) 01/01/1988 31/12/1989 -49111090 01/01/1995 31/12/2500 LIBEN Trade advertising material and the like (other than commercial catalogues) 01/01/1995 31/12/2500 -491191 01/01/1988 31/12/2500 LIBEN Pictures, prints and photographs, n.e.s. 01/01/1988 31/12/2500 -49119100 01/01/2004 31/12/2500 LIBEN Pictures, prints and photographs, n.e.s. 01/01/2004 31/12/2500 -49119110 01/01/1988 31/12/2003 LIBEN Printed sheets not being trade advertising material, unfolded, merely with illustations or pictures not bearing a text or caption, for editions of books or periodicals which are published in different countries in one or more languages 01/01/1988 31/12/2003 -49119150 01/01/1988 31/12/1989 LIBEN Paper and paperboard of heading 3704, for graphic reproductions of pictures, prints or photographs (excl. those for community publications) 01/01/1988 31/12/1989 -49119180 01/01/1990 31/12/2003 LIBEN Pictures, designs and photographs (excl. printed sheets not being trade advertising material, unfolded, merely with illustations or pictures not bearing a text or caption, for editions of books or periodicals which are published in different countries in one or more languages) 01/01/1990 31/12/2003 -49119190 01/01/1989 31/12/1989 LIBEN Pictures, designs and photographs (excl. 4911.10-10 to 4911.91-50) 01/01/1989 31/12/1989 -49119191 01/01/1988 31/12/1988 LIBEN Pictures and prints, n.e.s. 01/01/1988 31/12/1988 -49119199 01/01/1988 31/12/1988 LIBEN Photographs (excl. those for graphic reproductions) 01/01/1988 31/12/1988 -491199 01/01/1988 31/12/2500 LIBEN Printed matter, n.e.s. 01/01/1988 31/12/2500 -49119900 01/01/1990 31/12/2500 LIBEN Printed matter, n.e.s. 01/01/1990 31/12/2500 -49119910 01/01/1988 31/12/1989 LIBEN Paper and paperboard articles in heading 3704, developed for the graphic reproduction of printed matter (excl. trade advertising material, commercial catalogues and the like, pictures, designs and photographs) [01/01/1988-31/12/1988: paper and paperboard of heading n 37.04 developed for graphic reproduction (excl. 4911.10-10 to 4911.91-99)] 01/01/1988 31/12/1989 -49119990 01/01/1988 31/12/1989 LIBEN Printed material n.e.s. 01/01/1988 31/12/1989 -49CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 49 01/01/2002 31/12/2500 -49CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 49 01/01/2002 31/12/2500 -49CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 49 01/01/2002 31/12/2500 -49MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -49MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -49MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -49PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 49 carried by post 01/01/1988 31/12/2500 -49PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 49 carried by post 01/01/1988 31/12/2500 -49PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 49 carried by post 01/01/1988 31/12/2500 -49PPP2 01/01/1993 31/12/2500 LIBEN Goods of chapter 49 carried by post 01/01/1993 31/12/2500 -49PPP200 01/01/1993 31/12/2500 LIBEN Goods of chapter 49 carried by post 01/01/1993 31/12/2500 -49PPP4 01/01/1993 31/12/2500 LIBEN Goods of chapter 49 carried by post 01/01/1993 31/12/2500 -49PPP400 01/01/1993 31/12/2500 LIBEN Goods of chapter 49 carried by post 01/01/1993 31/12/2500 -49SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 49 01/01/1988 31/12/2500 -49SSS8 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 49 and SITC section 8 01/01/1990 31/12/2500 -49SSS892 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 49 and SITC group 892 01/01/1990 31/12/2500 -49SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 49 and SITC section 9 01/01/1988 31/12/1996 -49SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 49 and SITC section 9 01/01/1997 31/12/2500 -49SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 49 and SITC group 999 01/01/1988 31/12/1996 -49SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 49 and SITC group 999 01/01/1997 31/12/2500 -50 01/01/1988 31/12/2500 LIBEN SILK 01/01/1988 31/12/2500 -5001 01/01/1988 31/12/2500 LIBEN Silkworm cocoons suitable for reeling 01/01/1988 31/12/2500 -500100 01/01/1988 31/12/2500 LIBEN Silkworm cocoons suitable for reeling 01/01/1988 31/12/2500 -50010000 01/01/1988 31/12/2500 LIBEN Silkworm cocoons suitable for reeling 01/01/1988 31/12/2500 -5002 01/01/1988 31/12/2500 LIBEN Raw silk "non-thrown" 01/01/1988 31/12/2500 -500200 01/01/1988 31/12/2500 LIBEN Raw silk "non-thrown" 01/01/1988 31/12/2500 -50020000 01/01/1988 31/12/2500 LIBEN Raw silk "non-thrown" 01/01/1988 31/12/2500 -5003 01/01/1988 31/12/2500 LIBEN Silk waste, incl. cocoons unsuitable for reeling, yarn waste and garnetted stock 01/01/1988 31/12/2500 -500300 01/01/2007 31/12/2500 LIBEN Silk waste, incl. cocoons unsuitable for reeling, yarn waste and garnetted stock 01/01/2007 31/12/2500 -50030000 01/01/2007 31/12/2500 LIBEN Silk waste, incl. cocoons unsuitable for reeling, yarn waste and garnetted stock 01/01/2007 31/12/2500 -500310 01/01/1988 31/12/2006 LIBEN Silk waste, incl. cocoons unsuitable for reeling, yarn waste and garnetted stock, neither carded nor combed 01/01/1988 31/12/2006 -50031000 01/01/1988 31/12/2006 LIBEN Silk waste, incl. cocoons unsuitable for reeling, yarn waste and garnetted stock, neither carded nor combed 01/01/1988 31/12/2006 -500390 01/01/1988 31/12/2006 LIBEN Silk waste, incl. cocoons unsuitable for reeling, yarn waste and garnetted stock, carded or combed 01/01/1988 31/12/2006 -50039000 01/01/1988 31/12/2006 LIBEN Silk waste, incl. cocoons unsuitable for reeling, yarn waste and garnetted stock, carded or combed 01/01/1988 31/12/2006 -5004 01/01/1988 31/12/2500 LIBEN Silk yarn (excl. that spun from silk waste and that put up for retail sale) 01/01/1988 31/12/2500 -500400 01/01/1988 31/12/2500 LIBEN Silk yarn (excl. that spun from silk waste and that put up for retail sale) 01/01/1988 31/12/2500 -50040010 01/01/1988 31/12/2500 LIBEN Silk yarn, unbleached, scoured or bleached (excl. that spun from silk waste and that put up for retail sale) 01/01/1988 31/12/2500 -50040090 01/01/1988 31/12/2500 LIBEN Silk yarn (excl. unbleached, scoured or bleached, that spun from silk waste and that put up for retail sale) 01/01/1988 31/12/2500 -5005 01/01/1988 31/12/2500 LIBEN Yarn spun from silk waste (excl. that put up for retail sale) 01/01/1988 31/12/2500 -500500 01/01/1988 31/12/2500 LIBEN Yarn spun from silk waste (excl. that put up for retail sale) 01/01/1988 31/12/2500 -50050010 01/01/1988 31/12/2500 LIBEN Yarn spun from silk waste, unbleached, scoured or bleached (excl. that put up for retail sale) 01/01/1988 31/12/2500 -50050090 01/01/1988 31/12/2500 LIBEN Yarn spun from silk waste (excl. unbleached, scoured or bleached, or put up for retail sale) 01/01/1988 31/12/2500 -5006 01/01/1988 31/12/2500 LIBEN Silk yarn and yarn spun from silk waste, put up for retail sale; silkworm gut 01/01/1988 31/12/2500 -500600 01/01/1988 31/12/2500 LIBEN Silk yarn and yarn spun from silk waste, put up for retail sale; silkworm gut 01/01/1988 31/12/2500 -50060010 01/01/1988 31/12/2500 LIBEN Silk yarn, put up for retail sale (excl. yarn spun from silk waste) 01/01/1988 31/12/2500 -50060090 01/01/1988 31/12/2500 LIBEN Yarn spun from noil or other silk waste, put up for retail sale; silkworm gut 01/01/1988 31/12/2500 -5007 01/01/1988 31/12/2500 LIBEN Woven fabrics of silk or of silk waste 01/01/1988 31/12/2500 -500710 01/01/1988 31/12/2500 LIBEN Woven fabrics of noil silk 01/01/1988 31/12/2500 -50071000 01/01/1988 31/12/2500 LIBEN Woven fabrics of noil silk 01/01/1988 31/12/2500 -500720 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% silk or schappe by weight 01/01/1988 31/12/2500 -50072010 01/01/1988 31/12/1993 LIBEN Crepe fabrics containing >= 85 % silk or schappe by weight 01/01/1988 31/12/1993 -50072011 01/01/1994 31/12/2500 LIBEN Crêpes, containing >= 85% silk or silk waste by weight, unbleached, scoured or bleached 01/01/1994 31/12/2500 -50072019 01/01/1994 31/12/2500 LIBEN Crêpes, containing >= 85% silk or silk waste by weight (excl. unbleached, scoured or bleached) 01/01/1994 31/12/2500 -50072021 01/01/1988 31/12/2500 LIBEN Pongee, habutai, honan, shantung, corah and similar far eastern fabrics, wholly of silk, plain-woven, unbleached or not further processed than scoured (excl. those mixed with noil or other silk waste or with other textile materials) 01/01/1988 31/12/2500 -50072031 01/01/1988 31/12/2500 LIBEN Pongee, habutai, honan, shantung, corah and similar far eastern fabrics, wholly of silk, plain-woven (excl. unbleached or not further processed than scoured, and those mixed with noil or other silk waste or with other textile materials) 01/01/1988 31/12/2500 -50072039 01/01/1988 31/12/2500 LIBEN Pongee, habutai, honan, shantung, corah and similar far eastern fabrics, wholly of silk (excl. plain-woven and those mixed with noil or other silk waste or with other textile materials) 01/01/1988 31/12/2500 -50072041 01/01/1988 31/12/2500 LIBEN Diaphanous fabrics "open weave" containing >= 85% silk or silk waste by weight 01/01/1988 31/12/2500 -50072051 01/01/1988 31/12/2500 LIBEN Densely-woven fabrics containing >= 85% silk or silk waste by weight, unbleached, scoured or bleached (excl. crêpes, and pongee, habutai, honan, shantung, corah and similar far eastern fabrics wholly of silk) 01/01/1988 31/12/2500 -50072059 01/01/1988 31/12/2500 LIBEN Densely-woven fabrics containing >= 85% silk or silk waste by weight, dyed (excl. crêpes, and pongee, habutai, honan, shantung, corah and similar far eastern fabrics wholly of silk) 01/01/1988 31/12/2500 -50072061 01/01/1988 31/12/2500 LIBEN Densely-woven fabrics made from yarn of different colours, containing >= 85% silk or silk waste by weight, of a width > 57 cm to 75 cm (excl. crêpes, and pongee, habutai, honan, shantung, corah and similar far eastern fabrics wholly of silk) 01/01/1988 31/12/2500 -50072069 01/01/1988 31/12/2500 LIBEN Densely-woven fabrics made from yarn of different colours, containing >= 85% silk or silk waste by weight (excl. those of a width > 57 cm to 75 cm, crêpes, and pongee, habutai, honan, shantung, corah and similar far eastern fabrics wholly of silk) 01/01/1988 31/12/2500 -50072071 01/01/1988 31/12/2500 LIBEN Densely-woven fabrics, containing >= 85% silk or silk waste by weight, printed (excl. crêpes, and pongee, habutai, honan, shantung, corah and similar far eastern fabrics wholly of silk) 01/01/1988 31/12/2500 -500790 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% silk or silk waste by weight 01/01/1988 31/12/2500 -50079010 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% silk or silk waste by weight, unbleached, scoured or bleached 01/01/1988 31/12/2500 -50079030 01/01/1988 31/12/2500 LIBEN Dyed woven fabrics containing predominantly, but < 85% silk or silk waste by weight 01/01/1988 31/12/2500 -50079050 01/01/1988 31/12/2500 LIBEN Fabrics woven from yarns of different colours, containing predominantly, but < 85% silk or silk waste by weight 01/01/1988 31/12/2500 -50079090 01/01/1988 31/12/2500 LIBEN Printed woven fabrics containing predominantly, but < 85% silk or silk waste by weight 01/01/1988 31/12/2500 -50CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 50 01/01/2002 31/12/2500 -50CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 50 01/01/2002 31/12/2500 -50CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 50 01/01/2002 31/12/2500 -50MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -50MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -50MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -50SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 50 01/01/1988 31/12/2500 -50SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 50 and SITC section 0 01/01/1997 31/12/2001 -50SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 50 and SITC group 000 01/01/1997 31/12/2001 -50SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 50 and SITC section 2 01/01/1997 31/12/2500 -50SSS261 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 50 and SITC group 261 01/01/1997 31/12/2500 -50SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 50 and SITC section 6 01/01/1997 31/12/2500 -50SSS651 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 50 and SITC group 651 01/01/1997 31/12/2500 -50SSS654 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 50 and SITC group 654 01/01/1997 31/12/2500 -50SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 50 and SITC section 9 01/01/1988 31/12/1996 -50SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 50 and SITC section 9 01/01/1997 31/12/2500 -50SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 50 and SITC group 999 01/01/1988 31/12/1996 -50SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 50 and SITC group 999 01/01/1997 31/12/2500 -51 01/01/1988 31/12/2500 LIBEN WOOL, FINE OR COARSE ANIMAL HAIR; HORSEHAIR YARN AND WOVEN FABRIC 01/01/1988 31/12/2500 -5101 01/01/1988 31/12/2500 LIBEN Wool, neither carded nor combed 01/01/1988 31/12/2500 -510111 01/01/1988 31/12/2500 LIBEN Greasy shorn wool, incl. fleece-washed wool, neither carded nor combed 01/01/1988 31/12/2500 -51011100 01/01/1988 31/12/2500 LIBEN Greasy shorn wool, incl. fleece-washed wool, neither carded nor combed 01/01/1988 31/12/2500 -510119 01/01/1988 31/12/2500 LIBEN Greasy wool, incl. fleece-washed wool, neither carded nor combed (excl. shorn wool) 01/01/1988 31/12/2500 -51011900 01/01/1988 31/12/2500 LIBEN Greasy wool, incl. fleece-washed wool, neither carded nor combed (excl. shorn wool) 01/01/1988 31/12/2500 -510121 01/01/1988 31/12/2500 LIBEN Shorn wool, degreased, non-carbonised, neither carded nor combed 01/01/1988 31/12/2500 -51012100 01/01/1988 31/12/2500 LIBEN Shorn wool, degreased, non-carbonised, neither carded nor combed 01/01/1988 31/12/2500 -510129 01/01/1988 31/12/2500 LIBEN Degreased wool, non-carbonised, neither carded nor combed (excl. shorn wool) 01/01/1988 31/12/2500 -51012900 01/01/1988 31/12/2500 LIBEN Degreased wool, non-carbonised, neither carded nor combed (excl. shorn wool) 01/01/1988 31/12/2500 -510130 01/01/1988 31/12/2500 LIBEN Carbonised wool, neither carded nor combed 01/01/1988 31/12/2500 -51013000 01/01/1988 31/12/2500 LIBEN Carbonised wool, neither carded nor combed 01/01/1988 31/12/2500 -5102 01/01/1988 31/12/2500 LIBEN Fine or coarse animal hair, neither carded nor combed (excl. wool, hair and bristles used in the manufacture of brooms and brushes, and horsehair from the mane or tail) 01/01/1988 31/12/2500 -510210 01/01/1988 31/12/2001 LIBEN Fine animal hair, neither carded nor combed (excl. wool) 01/01/1988 31/12/2001 -51021010 01/01/1988 31/12/2001 LIBEN Hair of Angora rabbit, neither carded nor combed 01/01/1988 31/12/2001 -51021030 01/01/1988 31/12/2001 LIBEN Hair of alpaca, llama or vicuna, neither carded nor combed 01/01/1988 31/12/2001 -51021050 01/01/1988 31/12/2001 LIBEN Hair of camel or yak, or of Angora, Tibetan, Kashmir or similar goats, neither carded nor combed 01/01/1988 31/12/2001 -51021090 01/01/1988 31/12/2001 LIBEN Hair of rabbit, hare, beaver, nutria "coypu" or musk-rat, neither carded nor combed (excl. of Angora rabbit) 01/01/1988 31/12/2001 -510211 01/01/2002 31/12/2500 LIBEN Hair of Kashmir "cashmere" goats, neither carded nor combed 01/01/2002 31/12/2500 -51021100 01/01/2002 31/12/2500 LIBEN Hair of Kashmir "cashmere" goats, neither carded nor combed 01/01/2002 31/12/2500 -510219 01/01/2002 31/12/2500 LIBEN Fine animal hair, neither carded nor combed (excl. wool and hair of Kashmir "cashmere" goats) 01/01/2002 31/12/2500 -51021910 01/01/2002 31/12/2500 LIBEN Hair of angora rabbit, neither carded nor combed 01/01/2002 31/12/2500 -51021930 01/01/2002 31/12/2500 LIBEN Hair of alpaca, llama or vicuna, neither carded nor combed 01/01/2002 31/12/2500 -51021940 01/01/2002 31/12/2500 LIBEN Hair of camel or yak, or of angora goats, Tibetan goats or similar goats, neither carded nor combed 01/01/2002 31/12/2500 -51021990 01/01/2002 31/12/2500 LIBEN Hair of rabbit, hare, beaver, nutria "coypu" or muskrat, neither carded nor combed (excl. of angora rabbit) 01/01/2002 31/12/2500 -510220 01/01/1988 31/12/2500 LIBEN Coarse animal hair, neither carded nor combed (excl. wool, hair and bristles used in the manufacture of brooms and brushes, and horsehair from the mane or tail) 01/01/1988 31/12/2500 -51022000 01/01/1988 31/12/2500 LIBEN Coarse animal hair, neither carded nor combed (excl. wool, hair and bristles used in the manufacture of brooms and brushes, and horsehair from the mane or tail) 01/01/1988 31/12/2500 -5103 01/01/1988 31/12/2500 LIBEN Waste of wool or of fine or coarse animal hair, incl. yarn waste (excl. garnetted stock, waste of hair and bristles used in the manufacture of brooms and brushes, and of horsehair from the mane or tail) 01/01/1988 31/12/2500 -510310 01/01/1988 31/12/2500 LIBEN Noils of wool or of fine animal hair (excl. garnetted stock) 01/01/1988 31/12/2500 -51031010 01/01/1988 31/12/2500 LIBEN Noils of wool or of fine animal hair, non-carbonised (excl. garnetted stock) 01/01/1988 31/12/2500 -51031090 01/01/1988 31/12/2500 LIBEN Noils of wool or of fine animal hair, carbonised (excl. garnetted stock) 01/01/1988 31/12/2500 -510320 01/01/1988 31/12/2500 LIBEN Waste of wool or of fine animal hair, incl. yarn waste (excl. noils and garnetted stock) 01/01/1988 31/12/2500 -51032000 01/01/2009 31/12/2500 LIBEN Waste of wool or of fine animal hair, incl. yarn waste (excl. noils and garnetted stock) 01/01/2009 31/12/2500 -51032010 01/01/1988 31/12/2008 LIBEN Yarn waste of wool or of fine animal hair 01/01/1988 31/12/2008 -51032091 01/01/1988 31/12/2008 LIBEN Waste of wool or of fine animal hair, non-carbonised (excl. yarn waste, noils and garnetted stock) 01/01/1988 31/12/2008 -51032099 01/01/1988 31/12/2008 LIBEN Waste of wool or of fine animal hair, carbonised (excl. yarn waste, noils and garnetted stock) 01/01/1988 31/12/2008 -510330 01/01/1988 31/12/2500 LIBEN Waste of coarse animal hair, incl. yarn waste (excl. garnetted stock, waste of hair or bristles used in the manufacture of brooms and brushes, and of horsehair from the mane or tail) 01/01/1988 31/12/2500 -51033000 01/01/1988 31/12/2500 LIBEN Waste of coarse animal hair, incl. yarn waste (excl. garnetted stock, waste of hair or bristles used in the manufacture of brooms and brushes, and of horsehair from the mane or tail) 01/01/1988 31/12/2500 -5104 01/01/1988 31/12/2500 LIBEN Garnetted stock of wool or of fine or coarse animal hair, neither carded nor combed 01/01/1988 31/12/2500 -510400 01/01/1988 31/12/2500 LIBEN Garnetted stock of wool or of fine or coarse animal hair, neither carded nor combed 01/01/1988 31/12/2500 -51040000 01/01/1988 31/12/2500 LIBEN Garnetted stock of wool or of fine or coarse animal hair, neither carded nor combed 01/01/1988 31/12/2500 -5105 01/01/1988 31/12/2500 LIBEN Wool and fine or coarse animal hair, carded or combed, incl. combed wool in fragments 01/01/1988 31/12/2500 -510510 01/01/1988 31/12/2500 LIBEN Wool, carded 01/01/1988 31/12/2500 -51051000 01/01/1988 31/12/2500 LIBEN Wool, carded 01/01/1988 31/12/2500 -510521 01/01/1988 31/12/2500 LIBEN Wool, combed, in fragments "open tops" 01/01/1988 31/12/2500 -51052100 01/01/1988 31/12/2500 LIBEN Wool, combed, in fragments "open tops" 01/01/1988 31/12/2500 -510529 01/01/1988 31/12/2500 LIBEN Wool, combed (excl. that in fragments "open tops") 01/01/1988 31/12/2500 -51052900 01/01/1988 31/12/2500 LIBEN Wool, combed (excl. that in fragments "open tops") 01/01/1988 31/12/2500 -510530 01/01/1988 31/12/2001 LIBEN Fine animal hair, carded or combed (excl. wool) 01/01/1988 31/12/2001 -51053010 01/01/1988 31/12/2001 LIBEN Fine animal hair, carded (excl. wool) 01/01/1988 31/12/2001 -51053090 01/01/1988 31/12/2001 LIBEN Fine animal hair, combed (excl. wool) 01/01/1988 31/12/2001 -510531 01/01/2002 31/12/2500 LIBEN Hair of Kashmir "cashmere" goats, carded or combed 01/01/2002 31/12/2500 -51053100 01/01/2002 31/12/2500 LIBEN Hair of Kashmir "cashmere" goats, carded or combed 01/01/2002 31/12/2500 -510539 01/01/2002 31/12/2500 LIBEN Fine animal hair, carded or combed (excl. wool and hair of Kashmir "cashmere" goats) 01/01/2002 31/12/2500 -51053900 01/01/2009 31/12/2500 LIBEN Fine animal hair, carded or combed (excl. wool and hair of Kashmir "cashmere" goats) 01/01/2009 31/12/2500 -51053910 01/01/2002 31/12/2008 LIBEN Fine animal hair, carded (excl. wool and hair of Kashmir "cashmere" goats) 01/01/2002 31/12/2008 -51053990 01/01/2002 31/12/2008 LIBEN Fine animal hair, combed (excl. wool and hair of Kashmir "cashmere" goats) 01/01/2002 31/12/2008 -510540 01/01/1988 31/12/2500 LIBEN Coarse animal hair, carded or combed 01/01/1988 31/12/2500 -51054000 01/01/1988 31/12/2500 LIBEN Coarse animal hair, carded or combed 01/01/1988 31/12/2500 -5106 01/01/1988 31/12/2500 LIBEN Carded wool yarn (excl. that put up for retail sale) 01/01/1988 31/12/2500 -510610 01/01/1988 31/12/2500 LIBEN Carded wool yarn containing >= 85% wool by weight (excl. that put up for retail sale) 01/01/1988 31/12/2500 -51061010 01/01/1988 31/12/2500 LIBEN Carded wool yarn containing >= 85% wool by weight, unbleached (excl. that put up for retail sale) 01/01/1988 31/12/2500 -51061090 01/01/1988 31/12/2500 LIBEN Carded wool yarn containing >= 85% wool by weight (excl. unbleached and that put up for retail sale) 01/01/1988 31/12/2500 -510620 01/01/1988 31/12/2500 LIBEN Carded wool yarn containing predominantly, but < 85% wool by weight (excl. that put up for retail sale) 01/01/1988 31/12/2500 -51062010 01/01/1999 31/12/2500 LIBEN Carded wool yarn containing predominantly, but < 85% wool by weight, with a wool and fine animal hair content of >= 85% (excl. put up for retail sale) 01/01/1999 31/12/2500 -51062011 01/01/1988 31/12/1998 LIBEN Carded wool yarn containing predominantly, but < 85% wool by weight, with a wool and fine animal hair content of >= 85%, unbleached (excl. that put up for retail sale) 01/01/1988 31/12/1998 -51062019 01/01/1988 31/12/1998 LIBEN Carded wool yarn containing predominantly, but < 85% wool by weight, with a wool and fine animal hair content of >= 85% (excl. unbleached and that put up for retail sale) 01/01/1988 31/12/1998 -51062091 01/01/1988 31/12/2500 LIBEN Carded wool yarn containing predominantly, but < 85% wool by weight, unbleached (excl. that with a wool and fine animal hair content of >= 85% and that put up for retail sale) 01/01/1988 31/12/2500 -51062099 01/01/1988 31/12/2500 LIBEN Carded wool yarn containing predominantly, but < 85% wool by weight (excl. unbleached yarn, yarn with a wool and fine animal hair content of >= 85% and yarn put up for retail sale) 01/01/1988 31/12/2500 -5107 01/01/1988 31/12/2500 LIBEN Yarn of combed wool (excl. that put up for retail sale) 01/01/1988 31/12/2500 -510710 01/01/1988 31/12/2500 LIBEN Yarn of combed wool containing >= 85% wool by weight (excl. that put up for retail sale) 01/01/1988 31/12/2500 -51071010 01/01/1988 31/12/2500 LIBEN Yarn of combed wool containing >= 85% wool by weight, unbleached (excl. that put up for retail sale) 01/01/1988 31/12/2500 -51071090 01/01/1988 31/12/2500 LIBEN Yarn of combed wool containing >= 85% wool by weight (excl. unbleached and that put up for retail sale) 01/01/1988 31/12/2500 -510720 01/01/1988 31/12/2500 LIBEN Yarn of combed wool containing predominantly, but < 85% wool by weight (excl. that put up for retail sale) 01/01/1988 31/12/2500 -51072010 01/01/1988 31/12/2500 LIBEN Yarn of combed wool containing predominantly, but < 85% wool by weight, with a wool and fine animal hair content of >= 85%, unbleached (excl. that put up for retail sale) 01/01/1988 31/12/2500 -51072030 01/01/1988 31/12/2500 LIBEN Yarn of combed wool containing predominantly, but < 85% wool by weight, with a wool and fine animal hair content of >= 85% (excl. unbleached and that put up for retail sale) 01/01/1988 31/12/2500 -51072051 01/01/1988 31/12/2500 LIBEN Yarn of combed wool containing predominantly, but < 85% wool by weight, mixed principally or solely with synthetic staple fibres, unbleached (excl. that put up for retail sale) 01/01/1988 31/12/2500 -51072059 01/01/1988 31/12/2500 LIBEN Yarn of combed wool containing predominantly, but < 85% wool by weight, mixed principally or solely with synthetic staple fibres (excl. unbleached and that put up for retail sale) 01/01/1988 31/12/2500 -51072091 01/01/1988 31/12/2500 LIBEN Yarn of combed wool containing predominantly, but < 85% wool by weight, unbleached (excl. yarn mixed principally or solely with synthetic staple fibres, yarn with a wool and fine animal hair content of >= 85%, and yarn put up for retail sale) 01/01/1988 31/12/2500 -51072099 01/01/1988 31/12/2500 LIBEN Yarn of combed wool containing predominantly, but < 85% wool by weight (excl. unbleached yarn, yarn mixed principally or solely with synthetic staple fibres, yarn with a wool and fine animal hair content of >= 85%, and yarn put up for retail sale) 01/01/1988 31/12/2500 -5108 01/01/1988 31/12/2500 LIBEN Carded or combed yarn of fine animal hair (excl. that of wool or that put up for retail sale) 01/01/1988 31/12/2500 -510810 01/01/1988 31/12/2500 LIBEN Carded yarn of fine animal hair (excl. that of wool or that put up for retail sale) 01/01/1988 31/12/2500 -51081010 01/01/1988 31/12/2500 LIBEN Carded yarn of fine animal hair, unbleached (excl. that of wool or that put up for retail sale) 01/01/1988 31/12/2500 -51081090 01/01/1988 31/12/2500 LIBEN Carded yarn of fine animal hair (excl. unbleached yarn, yarn of wool and yarn put up for retail sale) 01/01/1988 31/12/2500 -510820 01/01/1988 31/12/2500 LIBEN Combed yarn of fine animal hair (excl. that of wool and that put up for retail sale) 01/01/1988 31/12/2500 -51082010 01/01/1988 31/12/2500 LIBEN Combed yarn of fine animal hair, unbleached (excl. that of wool and that put up for retail sale) 01/01/1988 31/12/2500 -51082090 01/01/1988 31/12/2500 LIBEN Combed yarn of fine animal hair (excl. unbleached yarn, yarn of wool and yarn put up for retail sale) 01/01/1988 31/12/2500 -5109 01/01/1988 31/12/2500 LIBEN Yarn of wool or fine animal hair, put up for retail sale 01/01/1988 31/12/2500 -510910 01/01/1988 31/12/2500 LIBEN Yarn containing >= 85% wool or fine animal hair by weight, put up for retail sale 01/01/1988 31/12/2500 -51091010 01/01/1988 31/12/2500 LIBEN Yarn containing >= 85% wool or fine animal hair by weight, put up for retail sale in balls, hanks or skeins, weighing > 125 g but <= 500 g 01/01/1988 31/12/2500 -51091090 01/01/1988 31/12/2500 LIBEN Yarn containing >= 85% wool or fine animal hair by weight, put up for retail sale (excl. that in balls, hanks or skeins and weighing > 125 g but <= 500 g) 01/01/1988 31/12/2500 -510990 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% wool or fine animal hair by weight, put up for retail sale 01/01/1988 31/12/2500 -51099000 01/01/2009 31/12/2500 LIBEN Yarn containing predominantly, but < 85% wool or fine animal hair by weight, put up for retail sale 01/01/2009 31/12/2500 -51099010 01/01/1988 31/12/2008 LIBEN Yarn containing predominantly, but < 85% wool or fine animal hair by weight, put up for retail sale in balls, hanks or skeins, with a weight of > 125 g but <= 500 g 01/01/1988 31/12/2008 -51099090 01/01/1988 31/12/2008 LIBEN Yarn containing predominantly, but < 85% wool or fine animal hair by weight, put up for retail sale (excl. that in balls, hanks or skeins, with a weight of > 125 g but <= 500 g) 01/01/1988 31/12/2008 -5110 01/01/1988 31/12/2500 LIBEN Yarn of coarse animal hair or of horsehair, incl. gimped horsehair yarn, whether or not put up for retail sale (excl. horsehair and yarn not joined together) 01/01/1988 31/12/2500 -511000 01/01/1988 31/12/2500 LIBEN Yarn of coarse animal hair or of horsehair, incl. gimped horsehair yarn, whether or not put up for retail sale (excl. horsehair and yarn not joined together) 01/01/1988 31/12/2500 -51100000 01/01/1988 31/12/2500 LIBEN Yarn of coarse animal hair or of horsehair, incl. gimped horsehair yarn, whether or not put up for retail sale (excl. horsehair and yarn not joined together) 01/01/1988 31/12/2500 -5111 01/01/1988 31/12/2500 LIBEN Woven fabrics of carded wool or of carded fine animal hair (excl. fabrics for technical use of heading 5911) 01/01/1988 31/12/2500 -511111 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% carded wool or carded fine animal hair by weight and weighing <= 300 g/m² 01/01/1988 31/12/2500 -51111100 01/01/1988 31/12/1994 LIBEN Woven fabrics containing >= 85 % carded wool or carded fine animal hair by weight and weighing =< 300 g per m² 01/01/1988 31/12/1994 -51111100 01/01/2004 31/12/2500 LIBEN Woven fabrics containing >= 85% carded wool or carded fine animal hair by weight and weighing <= 300 g/m² 01/01/2004 31/12/2500 -51111111 01/01/1995 31/12/2003 LIBEN Loden fabrics of a type specified in Additional Note 1 to chapter 51, of a value of >= 2.50 € per m², containing >= 85% by weight of carded wool or of carded fine animal hair, of a weight >= 250 g/m² but <= 300 g/m² 01/01/1995 31/12/2003 -51111119 01/01/1995 31/12/2003 LIBEN Loden fabrics of a type specified in Additional Note 1 to chapter 51, of a value of < 2.50 € per m², containing >= 85% by weight of carded wool or of carded fine animal hair, of a weight >= 250 g/m² but <= 300 g/m² 01/01/1995 31/12/2003 -51111191 01/01/1995 31/12/2003 LIBEN Woven fabrics of woollen yarn of a value of >= 2,50 € per m², containing >= 85% by weight of carded wool, of a weight of <= 300 g/m² (excl. loden fabrics and fabrics for technical uses specificed in heading 5911) 01/01/1995 31/12/2003 -51111199 01/01/1995 31/12/2003 LIBEN Woven fabrics containing >= 85% by weight of carded wool or of carded fine animal hair, of a weight of <= 300 g/m² (excl. loden fabrics, fabrics of woollen yarn of a value of >= 2,50 € per m², and fabrics for technical uses specified in heading 5911) 01/01/1995 31/12/2003 -511119 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% carded wool or carded fine animal hair by weight and weighing > 300 g/m² (excl. fabrics for technical uses specificed in heading 5911) 01/01/1988 31/12/2500 -51111900 01/01/2013 31/12/2500 LIBEN Woven fabrics containing >= 85% carded wool or carded fine animal hair by weight and weighing > 300 g/m² (excl. fabrics for technical uses specificed in heading 5911) 01/01/2013 31/12/2500 -51111910 01/01/1988 31/12/1994 LIBEN Woven fabrics containing >= 85 % carded wool or carded fine animal hair by weight and weighing > 300 g to 450 g per m² 01/01/1988 31/12/1994 -51111910 01/01/2004 31/12/2012 LIBEN Woven fabrics, containing >= 85% by weight of carded wool or of carded fine animal hair, of a weight > 300 g/m² but <= 450 g/m² (excl. fabrics for technical uses specified in heading 5911) 01/01/2004 31/12/2012 -51111911 01/01/1995 31/12/2003 LIBEN Loden fabrics of a type specified in Additional Note 1 to chapter 51, of a value of >= 2,50 € per m², containing >= 85% by weight of carded wool or of carded fine animal hair, of a weight >300 g/m² but <= 450 g/m² 01/01/1995 31/12/2003 -51111919 01/01/1995 31/12/2003 LIBEN Loden fabrics of a type specified in Additional Note 1 to chapter 51, of a value of < 2.50 Ecu per m², containing >= 85% by weight of carded wool or of carded fine animal hair, of a weight > 300 g/m² but <= 450 g/m² 01/01/1995 31/12/2003 -51111931 01/01/1995 31/12/2003 LIBEN Woven fabrics of woollen yarn of a value of >= 2.50 € per m², containing >= 85% by weight of carded wool, of a weight > 300 g/m² but <= 450 g/m² (excl. loden fabrics and fabrics for technical uses specified in heading 5911) 01/01/1995 31/12/2003 -51111939 01/01/1995 31/12/2003 LIBEN Woven fabrics containing >= 85% by weight of carded wool or of carded fine animal hair, of a weight > 300 g/m² but <= 450 g/m² (excl. loden fabrics, fabrics of woollen yarn of a value of >= 2.50 € per m² and fabrics for technical uses specified in heading 5911) 01/01/1995 31/12/2003 -51111990 01/01/1988 31/12/1994 LIBEN Woven fabrics containing >= 85 % carded wool or carded fine animal hair by weight and weighing > 450 g per m² 01/01/1988 31/12/1994 -51111990 01/01/2004 31/12/2012 LIBEN Woven fabrics, containing >= 85% by weight of carded wool or of carded fine animal hair, of a weight > 450 g/m² (excl. fabrics for technical uses specified in heading 5911) 01/01/2004 31/12/2012 -51111991 01/01/1995 31/12/2003 LIBEN Woven fabrics of woollen yarn of a value of >= 2,50 € per m², containing >= 85% by weight of carded wool, of a weight > 450 g/m² (excl. loden fabrics and fabrics for technical uses specified in heading 5911) 01/01/1995 31/12/2003 -51111999 01/01/1995 31/12/2003 LIBEN Woven fabrics containing >= 85% by weight of carded wool or of carded fine animal hair, of a weight > 450 g/m² (excl. loden fabrics, fabrics of woollen yarn of a value of >= 2,50 € per m² and fabrics for technical uses specified in heading 5911) 01/01/1995 31/12/2003 -511120 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% carded wool or carded fine animal hair by weight, mixed principally or solely with synthetic or artificial filaments 01/01/1988 31/12/2500 -51112000 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% carded wool or carded fine animal hair by weight, mixed principally or solely with synthetic or artificial filaments 01/01/1988 31/12/2500 -511130 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% carded wool or carded fine animal hair by weight, mixed principally or solely with synthetic or artificial staple fibres 01/01/1988 31/12/2500 -51113010 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% carded wool or carded fine animal hair by weight, mixed principally or solely with synthetic or artificial staple fibres and weighing <= 300 g/m² 01/01/1988 31/12/2500 -51113030 01/01/1988 31/12/2012 LIBEN Woven fabrics containing predominantly, but < 85% carded wool or carded fine animal hair by weight, mixed principally or solely with synthetic or artificial staple fibres and weighing > 300 g but <= 450 g/m² 01/01/1988 31/12/2012 -51113080 01/01/2013 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% carded wool or carded fine animal hair by weight, mixed principally or solely with synthetic or artificial staple fibres and weighing > 300 g/m² 01/01/2013 31/12/2500 -51113090 01/01/1988 31/12/2012 LIBEN Woven fabrics containing predominantly, but < 85% carded wool or carded fine animal hair by weight, mixed principally or solely with synthetic or artificial staple fibres and weighing > 450 g/m² 01/01/1988 31/12/2012 -511190 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% carded wool or carded fine animal hair by weight (excl. those mixed principally or solely with synthetic or artificial filaments or staple fibres) 01/01/1988 31/12/2500 -51119010 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% carded wool or carded fine animal hair and > 10% silk, silk waste by weight (excl. those mixed principally or solely with synthetic or artificial filaments or staple fibres) 01/01/1988 31/12/2500 -51119091 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% carded wool or carded fine animal hair by weight and weighing <= 300 g/m² (excl. those mixed principally or solely with synthetic or artificial filaments or staple fibres and those containing > 10% silk, silk waste by weight) 01/01/1988 31/12/2500 -51119093 01/01/1988 31/12/2012 LIBEN Woven fabrics containing predominantly, but < 85% carded wool or carded fine animal hair by weight and weighing > 300 g but <= 450 g/m² (excl. those mixed principally or solely with synthetic or artificial filaments or staple fibres and fabrics containing > 10% silk, silk waste by weight) 01/01/1988 31/12/2012 -51119098 01/01/2013 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% carded wool or carded fine animal hair by weight and weighing > 300 g/m² (excl. those mixed principally or solely with synthetic or artificial filaments or staple fibres and fabrics containing > 10% silk, silk waste by weight) 01/01/2013 31/12/2500 -51119099 01/01/1988 31/12/2012 LIBEN Woven fabrics containing predominantly, but < 85% carded wool or carded fine animal hair by weight and weighing > 450 g/m² (excl. those mixed principally or solely with synthetic or artificial filaments or staple fibres and those containing > 10% silk, silk waste by weight) 01/01/1988 31/12/2012 -5112 01/01/1988 31/12/2500 LIBEN Woven fabrics of combed wool or of combed fine animal hair (excl. fabrics for technical purposes of heading 5911) 01/01/1988 31/12/2500 -511211 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% combed wool or combed fine animal hair by weight and weighing <= 200 g/m² (excl. fabrics for technical uses of heading 5911) 01/01/1988 31/12/2500 -51121100 01/01/1988 31/12/1994 LIBEN Woven fabrics containing >= 85 % combed wool or combed fine animal hair by weight and weighing =< 200 g per m² 01/01/1988 31/12/1994 -51121100 01/01/2004 31/12/2500 LIBEN Woven fabrics containing >= 85% combed wool or combed fine animal hair by weight and weighing <= 200 g/m² (excl. fabrics for technical uses of heading 5911) 01/01/2004 31/12/2500 -51121110 01/01/1995 31/12/2003 LIBEN Woven fabrics of a value of >= € 3 per m², containing 85% or more by weight of carded wool or of carded fine animal hair, of a weight of >= 200g/m² (excl. fabrics for technical uses specified in heading 5911) 01/01/1995 31/12/2003 -51121190 01/01/1995 31/12/2003 LIBEN Woven fabrics of a value of < € 3 per m², containing >= 85% by weight of carded wool or of carded fine animal hair and of a weight <= 200 g/m² (excl. fabrics for technical uses specified in heading 5911) 01/01/1995 31/12/2003 -511219 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% combed wool or combed fine animal hair by weight and weighing > 200 g/m² 01/01/1988 31/12/2500 -51121900 01/01/2013 31/12/2500 LIBEN Woven fabrics containing >= 85% combed wool or combed fine animal hair by weight and weighing > 200 g/m² 01/01/2013 31/12/2500 -51121910 01/01/1988 31/12/1994 LIBEN Woven fabrics containing >= 85 % combed wool or combed fine animal hair by weight and weighing > 200 g to 375 g per m² 01/01/1988 31/12/1994 -51121910 01/01/2004 31/12/2012 LIBEN Woven fabrics containing >= 85% by weight of carded wool or of carded fine animal hair and of a weight > 200 g/m² but <= 375 g/m² (excl. fabrics for technical uses specified in heading 5911) 01/01/2004 31/12/2012 -51121911 01/01/1995 31/12/2003 LIBEN Woven fabrics of a value of >= € 3 per m², containing 85% or more by weight of carded wool or of carded fine animal hair, of a weight > 200 g/m² but <= 375 g/m² (excl. fabrics for technical uses specified in heading 5911) 01/01/1995 31/12/2003 -51121919 01/01/1995 31/12/2003 LIBEN Woven fabrics of a value of < € 3 per m², containing >= 85% by weight of carded wool or of carded fine animal hair and of a weight > 200 g/m² but <= 375 g/m² (excl. fabrics for technical uses specified in heading 5911) 01/01/1995 31/12/2003 -51121990 01/01/1988 31/12/1994 LIBEN Woven fabrics containing >= 85 % combed wool or combed fine animal hair by weight and weighing > 375 g per m² 01/01/1988 31/12/1994 -51121990 01/01/2004 31/12/2012 LIBEN Woven fabrics containing >= 85% by weight of carded wool or of carded fine animal hair, of a weight > 375 g/m² (excl. fabrics for technical uses specified in heading 5911) 01/01/2004 31/12/2012 -51121991 01/01/1995 31/12/2003 LIBEN Woven fabrics of a value of >= € 3 per m², containing >= 85% by weight of carded wool or of carded fine animal hair, of a weight > 375 g/m² (excl. fabrics for technical uses specified in heading 5911) 01/01/1995 31/12/2003 -51121999 01/01/1995 31/12/2003 LIBEN Woven fabrics of a value of < € 3 per m², containing >= 85% by weight of carded wool or of carded fine animal hair, of a weight > 375 g/m² (excl. fabrics for technical uses specified in heading 5911) 01/01/1995 31/12/2003 -511220 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% combed wool or combed fine animal hair by weight, mixed principally or solely with synthetic or artificial filaments (excl. fabrics for technical uses of heading 5911) 01/01/1988 31/12/2500 -51122000 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% combed wool or combed fine animal hair by weight, mixed principally or solely with synthetic or artificial filaments (excl. fabrics for technical uses of heading 5911) 01/01/1988 31/12/2500 -511230 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% combed wool or combed fine animal hair by weight, mixed principally or solely with synthetic or artificial staple fibres (excl. fabrics for technical uses of heading 5911) 01/01/1988 31/12/2500 -51123010 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% combed wool or combed fine animal hair by weight, mixed principally or solely with synthetic or artificial staple fibres and weighing <= 200 g/m² (excl. fabrics for technical uses of heading 5911) 01/01/1988 31/12/2500 -51123030 01/01/1988 31/12/2012 LIBEN Woven fabrics containing predominantly, but < 85% combed wool or combed fine animal hair by weight, mixed principally or solely with synthetic or artificial staple fibres and weighing > 200 g to 375 g/m² (excl. fabrics for technical uses of heading 5911) 01/01/1988 31/12/2012 -51123080 01/01/2013 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% combed wool or combed fine animal hair by weight, mixed principally or solely with synthetic or artificial staple fibres and weighing > 200 g/m² (excl. fabrics for technical uses of heading 5911) 01/01/2013 31/12/2500 -51123090 01/01/1988 31/12/2012 LIBEN Woven fabrics containing predominantly, but < 85% combed wool or combed fine animal hair by weight, mixed principally or solely with synthetic or artificial staple fibres and weighing > 375 g/m² (excl. fabrics for technical uses of heading 5911) 01/01/1988 31/12/2012 -511290 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% combed wool or combed fine animal hair by weight (excl. those mixed principally or solely with synthetic or artificial filaments or staple fibres and fabrics for technical uses of heading 5911) 01/01/1988 31/12/2500 -51129010 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% combed wool or combed fine animal hair by weight and > 10% silk, silk waste by weight (excl. those mixed principally or solely with synthetic or artificial filaments or staple fibres and fabrics for technical uses of heading 5911) 01/01/1988 31/12/2500 -51129091 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% combed wool or combed fine animal hair by weight and weighing <= 200 g/m² (excl. those mixed principally or solely with synthetic or artificial filaments or staple fibres, those containing > 10% silk, silk waste by weight and fabrics for technical uses of heading 5911) 01/01/1988 31/12/2500 -51129093 01/01/1988 31/12/2012 LIBEN Woven fabrics containing predominantly, but < 85% combed wool or combed fine animal hair by weight and weighing > 200 g but <= 375 g/m² (excl. those mixed principally or solely with synthetic or artificial filaments or staple fibres, those containing > 10% silk, silk waste by weight and fabrics for technical uses of heading 5911) 01/01/1988 31/12/2012 -51129098 01/01/2013 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% combed wool or combed fine animal hair by weight and weighing > 200 g/m² (excl. those mixed principally or solely with synthetic or artificial filaments or staple fibres, those containing > 10% silk, silk waste by weight and fabrics for technical uses of heading 5911) 01/01/2013 31/12/2500 -51129099 01/01/1988 31/12/2012 LIBEN Woven fabrics containing predominantly, but < 85% combed wool or combed fine animal hair by weight and weighing > 375 g/m² (excl. those mixed principally or solely with synthetic or artificial filaments or staple fibres, those containing > 10% silk, silk waste by weight and fabrics for technical uses of heading 5911) 01/01/1988 31/12/2012 -5113 01/01/1988 31/12/2500 LIBEN Woven fabrics of coarse animal hair or of horsehair (excl. fabrics for technical uses of heading 5911) 01/01/1988 31/12/2500 -511300 01/01/1988 31/12/2500 LIBEN Woven fabrics of coarse animal hair or of horsehair (excl. fabrics for technical uses of heading 5911) 01/01/1988 31/12/2500 -51130000 01/01/1988 31/12/2500 LIBEN Woven fabrics of coarse animal hair or of horsehair (excl. fabrics for technical uses of heading 5911) 01/01/1988 31/12/2500 -51CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 51 01/01/2002 31/12/2500 -51CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 51 01/01/2002 31/12/2500 -51CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 51 01/01/2002 31/12/2500 -51MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -51MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -51MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -51SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 51 01/01/1988 31/12/2500 -51SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 51 and SITC section 0 01/01/1997 31/12/2001 -51SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 51 and SITC group 000 01/01/1997 31/12/2001 -51SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 51 and SITC section 2 01/01/1997 31/12/2500 -51SSS268 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 51 and SITC group 268 01/01/1997 31/12/2500 -51SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 51 and SITC section 6 01/01/1997 31/12/2500 -51SSS651 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 51 and SITC group 651 01/01/1997 31/12/2500 -51SSS654 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 51 and SITC group 654 01/01/1997 31/12/2500 -51SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 51 and SITC section 9 01/01/1988 31/12/1996 -51SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 51 and SITC section 9 01/01/1997 31/12/2500 -51SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 51 and SITC group 999 01/01/1988 31/12/1996 -51SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 51 and SITC group 999 01/01/1997 31/12/2500 -52 01/01/1988 31/12/2500 LIBEN COTTON 01/01/1988 31/12/2500 -5201 01/01/1988 31/12/2500 LIBEN Cotton, neither carded nor combed 01/01/1988 31/12/2500 -520100 01/01/1988 31/12/2500 LIBEN Cotton, neither carded nor combed 01/01/1988 31/12/2500 -52010010 01/01/1988 31/12/2500 LIBEN Cotton, neither carded nor combed, rendered absorbent or bleached 01/01/1988 31/12/2500 -52010090 01/01/1988 31/12/2500 LIBEN Cotton, neither carded nor combed (excl. rendered absorbent or bleached) 01/01/1988 31/12/2500 -5202 01/01/1988 31/12/2500 LIBEN Cotton waste, incl. yarn waste and garnetted stock 01/01/1988 31/12/2500 -520210 01/01/1988 31/12/2500 LIBEN Cotton yarn waste, incl. thread waste 01/01/1988 31/12/2500 -52021000 01/01/1988 31/12/2500 LIBEN Cotton yarn waste, incl. thread waste 01/01/1988 31/12/2500 -520291 01/01/1988 31/12/2500 LIBEN Garnetted stock of cotton 01/01/1988 31/12/2500 -52029100 01/01/1988 31/12/2500 LIBEN Garnetted stock of cotton 01/01/1988 31/12/2500 -520299 01/01/1988 31/12/2500 LIBEN Cotton waste (excl. yarn waste, thread waste and garnetted stock) 01/01/1988 31/12/2500 -52029900 01/01/1988 31/12/2500 LIBEN Cotton waste (excl. yarn waste, thread waste and garnetted stock) 01/01/1988 31/12/2500 -5203 01/01/1988 31/12/2500 LIBEN Cotton, carded or combed 01/01/1988 31/12/2500 -520300 01/01/1988 31/12/2500 LIBEN Cotton, carded or combed 01/01/1988 31/12/2500 -52030000 01/01/1988 31/12/2500 LIBEN Cotton, carded or combed 01/01/1988 31/12/2500 -5204 01/01/1988 31/12/2500 LIBEN Cotton sewing thread, whether or not put up for retail sale 01/01/1988 31/12/2500 -520411 01/01/1988 31/12/2500 LIBEN Sewing thread, containing >= 85% cotton by weight (excl. that put up for retail sale) 01/01/1988 31/12/2500 -52041100 01/01/1988 31/12/2500 LIBEN Sewing thread, containing >= 85% cotton by weight (excl. that put up for retail sale) 01/01/1988 31/12/2500 -520419 01/01/1988 31/12/2500 LIBEN Sewing thread, containing predominantly, but < 85% cotton by weight (excl. that put up for retail sale) 01/01/1988 31/12/2500 -52041900 01/01/1988 31/12/2500 LIBEN Sewing thread, containing predominantly, but < 85% cotton by weight (excl. that put up for retail sale) 01/01/1988 31/12/2500 -520420 01/01/1988 31/12/2500 LIBEN Cotton sewing thread, put up for retail sale 01/01/1988 31/12/2500 -52042000 01/01/1988 31/12/2500 LIBEN Cotton sewing thread, put up for retail sale 01/01/1988 31/12/2500 -5205 01/01/1988 31/12/2500 LIBEN Cotton yarn other than sewing thread, containing >= 85% cotton by weight (excl. that put up for retail sale) 01/01/1988 31/12/2500 -520511 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of >= 714,29 decitex "<= MN 14" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52051100 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of >= 714,29 decitex "<= MN 14" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520512 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of 232,56 decitex to < 714,29 decitex "> MN 14 to MN 43" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52051200 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of 232,56 decitex to < 714,29 decitex "> MN 14 to MN 43" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520513 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of 192,31 decitex to < 232,56 decitex "> MN 43 to MN 52" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52051300 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of 192,31 decitex to < 232,56 decitex "> MN 43 to MN 52" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520514 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of 125 decitex to < 192,31 decitex "> MN 52 to MN 80" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52051400 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of 125 decitex to < 192,31 decitex "> MN 52 to MN 80" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520515 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of < 125 decitex "> MN 80" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52051510 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of 83,33 decitex to < 125 decitex "> MN 80 to MN 120" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52051590 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of < 83,33 decitex "> MN 120" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520521 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of >= 714,29 decitex "<= MN 14" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52052100 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of >= 714,29 decitex "<= MN 14" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520522 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 232,56 decitex to < 714,29 decitex "> MN 14 to MN 43" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52052200 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 232,56 decitex to < 714,29 decitex "> MN 14 to MN 43" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520523 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 192,31 decitex to < 232,56 decitex "> MN 43 to MN 52" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52052300 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 192,31 decitex to < 232,56 decitex "> MN 43 to MN 52" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520524 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 125 decitex to < 192,31 decitex "> MN 52 to MN 80" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52052400 01/01/1988 31/12/2500 LIBEN Single cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 125 decitex to < 192,31 decitex "> MN 52 to MN 80" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520525 01/01/1988 31/12/1995 LIBEN Single cotton yarn other than sewing thread, of combed fibres, containing >= 85% cotton by weight and with a linear density of < 125 decitex "> MC 80" (excl. that put up for retail sale) 01/01/1988 31/12/1995 -52052510 01/01/1988 31/12/1995 LIBEN Single cotton yarn other than sewing thread, of combed fibres, containing >= 85% cotton by weight and with a linear density of 106,38 decitex to < 125 decitex "> MC 80 to MC 94" (excl. that put up for retail sale) 01/01/1988 31/12/1995 -52052530 01/01/1988 31/12/1995 LIBEN Single cotton yarn other than sewing thread, of combed fibres, containing >= 85% cotton by weight and with a linear density of 83,33 decitex to < 106,38 decitex "> MC 94 to MC 120" (excl. that put up for retail sale) 01/01/1988 31/12/1995 -52052590 01/01/1988 31/12/1995 LIBEN Single cotton yarn other than sewing thread, of combed fibres, containing >= 85% cotton by weight and with a linear density of < 83,33 decitex "> MC 120" (excl. that put up for retail sale) 01/01/1988 31/12/1995 -520526 01/01/1996 31/12/2500 LIBEN Single cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 106,38 decitex to < 125 decitex "> MN 80 to MN 94" (excl. sewing thread and yarn put up for retail sale) 01/01/1996 31/12/2500 -52052600 01/01/1996 31/12/2500 LIBEN Single cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 106,38 decitex to < 125 decitex "> MN 80 to MN 94" (excl. sewing thread and yarn put up for retail sale) 01/01/1996 31/12/2500 -520527 01/01/1996 31/12/2500 LIBEN Single cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 83,33 decitex to < 106,38 decitex "> MN 94 to MN 120" (excl. sewing thread and yarn put up for retail sale) 01/01/1996 31/12/2500 -52052700 01/01/1996 31/12/2500 LIBEN Single cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 83,33 decitex to < 106,38 decitex "> MN 94 to MN 120" (excl. sewing thread and yarn put up for retail sale) 01/01/1996 31/12/2500 -520528 01/01/1996 31/12/2500 LIBEN Single cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of < 83,33 decitex "> MN 120" (excl. sewing thread and yarn put up for retail sale) 01/01/1996 31/12/2500 -52052800 01/01/1996 31/12/2500 LIBEN Single cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of < 83,33 decitex "> MN 120" (excl. sewing thread and yarn put up for retail sale) 01/01/1996 31/12/2500 -520531 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of >= 714,29 decitex "<= MN 14" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52053100 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of >= 714,29 decitex "<= MN 14" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520532 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of 232,56 decitex to < 714,29 decitex "> MN 14 to MN 43" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52053200 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of 232,56 decitex to < 714,29 decitex "> MN 14 to MN 43" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520533 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of 192,31 decitex to < 232,56 decitex "> MN 43 to MN 52" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52053300 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of 192,31 decitex to < 232,56 decitex "> MN 43 to MN 52" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520534 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of 125 decitex to < 192,31 decitex "> MN 52 to MN 80" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52053400 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of 125 decitex to < 192,31 decitex "> MN 52 to MN 80" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520535 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of < 125 decitex "> MN 80" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52053500 01/01/1999 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of < 125 decitex "> MN 80" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1999 31/12/2500 -52053510 01/01/1988 31/12/1998 LIBEN Multiple "folded" or cabled cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of 83,33 decitex to < 125 decitex "> MC 80 to MC 120" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/1998 -52053590 01/01/1988 31/12/1998 LIBEN Multiple "folded" or cabled cotton yarn, of uncombed fibres, containing >= 85% cotton by weight and with a linear density of < 83,33 decitex "> MC 120" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/1998 -520541 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of >= 714,29 decitex "<= MN 14" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52054100 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of >= 714,29 decitex "<= MN 14" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520542 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 232,56 decitex to < 714,29 decitex "> MN 14 to MN 43" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52054200 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 232,56 decitex to < 714,29 decitex "> MN 14 to MN 43" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520543 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 192,31 decitex to < 232,56 decitex "> MN 43 to MN 52" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52054300 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 192,31 decitex to < 232,56 decitex "> MN 43 to MN 52" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520544 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 125 decitex to < 192,31 decitex "> MN 52 to MN 80" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52054400 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 125 decitex to < 192,31 decitex "> MN 52 to MN 80" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520545 01/01/1988 31/12/1995 LIBEN Multiple "folded" or cabled cotton yarn other than sewing thread, of combed fibres, containing >= 85% cotton by weight and with a linear density of < 125 decitex "> MC 80" per single yarn (excl. that put up for retail sale) 01/01/1988 31/12/1995 -52054510 01/01/1988 31/12/1995 LIBEN Multiple "folded" or cabled cotton yarn other than sewing thread, of combed fibres, containing >= 85% cotton by weight and with a linear density of 106,38 decitex to < 125 decitex "> MC 80 to MC 94" per single yarn (excl. that put up for retail sale) 01/01/1988 31/12/1995 -52054530 01/01/1988 31/12/1995 LIBEN Multiple "folded" or cabled cotton yarn other than sewing thread, of combed fibres, containing >= 85% cotton by weight and with a linear density of 83,33 decitex to < 106,38 decitex "> MC 94 to MC 120" per single yarn (excl. that put up for retail sale) 01/01/1988 31/12/1995 -52054590 01/01/1988 31/12/1995 LIBEN Multiple "folded" or cabled cotton yarn other than sewing thread, of combed fibres, containing >= 85% cotton by weight and with a linear density of < 83,33 decitex "> MC 120" per single yarn (excl. that put up for retail sale) 01/01/1988 31/12/1995 -520546 01/01/1996 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 106,38 decitex to < 125 decitex "> MN 80 to MN 94" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1996 31/12/2500 -52054600 01/01/1996 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 106,38 decitex to < 125 decitex "> MN 80 to MN 94" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1996 31/12/2500 -520547 01/01/1996 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 83,33 decitex to < 106,38 decitex "> MN 94 to MN 120" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1996 31/12/2500 -52054700 01/01/1996 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of 83,33 decitex to < 106,38 decitex "> MN 94 to MN 120" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1996 31/12/2500 -520548 01/01/1996 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of < 83,33 decitex "> MN 120" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1996 31/12/2500 -52054800 01/01/1996 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn, of combed fibres, containing >= 85% cotton by weight and with a linear density of < 83,33 decitex "> MN 120" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1996 31/12/2500 -5206 01/01/1988 31/12/2500 LIBEN Cotton yarn containing predominantly, but < 85% cotton by weight (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520611 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of >= 714,29 decitex "<= MN 14" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52061100 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of >= 714,29 decitex "<= MN 14" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520612 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of 232,56 decitex to < 714,29 decitex "> MN 14 to MN 43" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52061200 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of 232,56 decitex to < 714,29 decitex "> MN 14 to MN 43" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520613 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of 192,31 decitex to < 232,56 decitex "> MN 43 to MN 52" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52061300 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of 192,31 decitex to < 232,56 decitex "> MN 43 to MN 52" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520614 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of 125 decitex to < 192,31 decitex "> MN 52 to MN 80" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52061400 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of 125 decitex to < 192,31 decitex "> MN 52 to MN 80" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520615 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of < 125 decitex "> MN 80" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52061500 01/01/2005 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of < 125 decitex "> MN 80" (excl. sewing thread and yarn put up for retail sale) 01/01/2005 31/12/2500 -52061510 01/01/1988 31/12/2004 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of 83,33 decitex to < 125 decitex "> MC 80 to MC 120" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2004 -52061590 01/01/1988 31/12/2004 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of < 83,33 decitex "> MC 120" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2004 -520621 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of >= 714,29 decitex "<= MN 14" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52062100 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of >= 714,29 decitex "<= MN 14" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520622 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of 232,56 decitex to < 714,29 decitex "> MN 14 to MN 43" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52062200 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of 232,56 decitex to < 714,29 decitex "> MN 14 to MN 43" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520623 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of 192,31 decitex to < 232,56 decitex "> MN 43 to MN 52" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52062300 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of 192,31 decitex to < 232,56 decitex "> MN 43 to MN 52" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520624 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of 125 decitex to < 192,31 decitex "> MN 52 to MN 80" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52062400 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of 125 decitex to < 192,31 decitex "> MN 52 to MN 80" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520625 01/01/1988 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of < 125 decitex "> MN 80" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52062500 01/01/2005 31/12/2500 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of < 125 decitex "> MN 80" (excl. sewing thread and yarn put up for retail sale) 01/01/2005 31/12/2500 -52062510 01/01/1988 31/12/2004 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of 83,33 decitex to < 125 decitex "> MC 80 to MC 120" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2004 -52062590 01/01/1988 31/12/2004 LIBEN Single cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of < 83,33 "> MC 120" (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2004 -520631 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of >= 714,29 decitex "<= MN 14" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52063100 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of >= 714,29 decitex "<= MN 14" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520632 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of 232,56 decitex to < 714,29 decitex "> MN 14 to MN 43" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52063200 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of 232,56 decitex to < 714,29 decitex "> MN 14 to MN 43" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520633 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of 192,31 decitex to < 232,56 decitex "> MN 43 to MN 52" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52063300 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of 192,31 decitex to < 232,56 decitex "> MN 43 to MN 52" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520634 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of 125 decitex to < 192,31 decitex "> MN 52 to MN 80" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52063400 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of 125 decitex to < 192,31 decitex "> MN 52 to MN 80" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520635 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of < 125 decitex "> MN 80" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52063500 01/01/1999 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of < 125 decitex "> MN 80" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1999 31/12/2500 -52063510 01/01/1988 31/12/1998 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of 83,33 decitex to < 125 decitex "> MC 80 to MC 120" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/1998 -52063590 01/01/1988 31/12/1998 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of uncombed fibres and with a linear density of < 83,33 decitex "> MC 120" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/1998 -520641 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of >= 714,29 decitex "< MN 14" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52064100 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of >= 714,29 decitex "< MN 14" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520642 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of 232,56 decitex to < 714,29 decitex "> MN 14 to MN 43" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52064200 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of 232,56 decitex to < 714,29 decitex "> MN 14 to MN 43" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520643 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of 192,31 decitex to < 232,56 decitex "> MN 43 to MN 52" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52064300 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of 192,31 decitex to < 232,56 decitex "> MN 43 to MN 52" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520644 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of 125 decitex to < 192,31 decitex "> MN 52 to MN 80" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52064400 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of 125 decitex to < 192,31 decitex "> MN 52 to MN 80" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -520645 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of < 125 decitex "> MN 80" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -52064500 01/01/1999 31/12/2500 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of < 125 decitex "> MN 80" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1999 31/12/2500 -52064510 01/01/1988 31/12/1998 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of 83,33 decitex to < 125 decitex "> MC 80 to MC 120" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/1998 -52064590 01/01/1988 31/12/1998 LIBEN Multiple "folded" or cabled cotton yarn containing predominantly, but < 85% cotton by weight, of combed fibres and with a linear density of < 83,33 decitex "> MC 120" per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/1998 -5207 01/01/1988 31/12/2500 LIBEN Cotton yarn put up for retail sale (excl. sewing thread) 01/01/1988 31/12/2500 -520710 01/01/1988 31/12/2500 LIBEN Cotton yarn containing >= 85% cotton by weight, put up for retail sale (excl. sewing thread) 01/01/1988 31/12/2500 -52071000 01/01/1988 31/12/2500 LIBEN Cotton yarn containing >= 85% cotton by weight, put up for retail sale (excl. sewing thread) 01/01/1988 31/12/2500 -520790 01/01/1988 31/12/2500 LIBEN Cotton yarn containing predominantly, but < 85% cotton by weight, put up for retail sale (excl. sewing thread) 01/01/1988 31/12/2500 -52079000 01/01/1988 31/12/2500 LIBEN Cotton yarn containing predominantly, but < 85% cotton by weight, put up for retail sale (excl. sewing thread) 01/01/1988 31/12/2500 -5208 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m² 01/01/1988 31/12/2500 -520811 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 100 g/m², unbleached 01/01/1988 31/12/2500 -52081110 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton for the manufacture of bandages, dressings and medical gauzes, containing >= 85% cotton by weight and weighing <= 100 g/m², unbleached 01/01/1988 31/12/2500 -52081190 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 100 g/m², unbleached (excl. fabrics for the manufacture of bandages, dressings and medical gauzes) 01/01/1988 31/12/2500 -520812 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 200 g/m², unbleached 01/01/1988 31/12/2500 -52081211 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 130 g/m², unbleached, with a width of <= 115 cm 01/01/1988 31/12/1998 -52081213 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 130 g/m², unbleached, with a width of > 115 cm to 145 cm 01/01/1988 31/12/1998 -52081215 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 130 g/m², unbleached, with a width of > 145 cm to 165 cm 01/01/1988 31/12/1998 -52081216 01/01/1999 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 130 g/m², unbleached, with a width of <= 165 cm 01/01/1999 31/12/2500 -52081219 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 130 g/m², unbleached, with a width of > 165 cm 01/01/1988 31/12/2500 -52081291 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 130 g to 200 g/m², unbleached, with a width of <= 115 cm 01/01/1988 31/12/1998 -52081293 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 130 g to 200 g/m², unbleached, with a width of > 115 cm to 145 cm 01/01/1988 31/12/1998 -52081295 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 130 g to 200 g/m², unbleached, with a width of > 145 cm to 165 cm 01/01/1988 31/12/1998 -52081296 01/01/1999 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 130 g to 200 g/m², unbleached, with a width of <= 165 cm 01/01/1999 31/12/2500 -52081299 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 130 g to 200 g/m², unbleached, with a width of > 165 cm 01/01/1988 31/12/2500 -520813 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, unbleached 01/01/1988 31/12/2500 -52081300 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, unbleached 01/01/1988 31/12/2500 -520819 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², unbleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -52081900 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², unbleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -520821 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², unbleached 01/01/1988 31/12/2500 -52082110 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton for the manufacture of bandages, dressings and medical gauzes, containing >= 85% cotton by weight and weighing <= 100 g/m², bleached 01/01/1988 31/12/2500 -52082190 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 100 g/m², bleached (excl. fabrics for the manufacture of bandages, dressings and medical gauzes) 01/01/1988 31/12/2500 -520822 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 200 g/m², bleached 01/01/1988 31/12/2500 -52082211 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 130 g/m², bleached, with a width of <= 115 cm 01/01/1988 31/12/1998 -52082213 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 130 g/m², bleached, with a width of > 115 cm to 145 cm 01/01/1988 31/12/1998 -52082215 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 130 g/m², bleached, with a width of > 145 cm to 165 cm 01/01/1988 31/12/1998 -52082216 01/01/1999 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 130 g/m², bleached, with a width of <= 165 cm 01/01/1999 31/12/2500 -52082219 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 130 g/m², bleached, with a width of > 165 cm 01/01/1988 31/12/2500 -52082291 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 130 g to 200 g/m², bleached, with a width of <= 115 cm 01/01/1988 31/12/1998 -52082293 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 130 g to 200 g/m², bleached, with a width of > 115 cm to 145 cm 01/01/1988 31/12/1998 -52082295 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 130 g to 200 g/m², bleached, with a width of > 145 cm to 165 cm 01/01/1988 31/12/1998 -52082296 01/01/1999 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 130 g to 200 g/m², bleached, with a width of <= 165 cm 01/01/1999 31/12/2500 -52082299 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 130 g to 200 g/m², bleached, with a width of > 165 cm 01/01/1988 31/12/2500 -520823 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, bleached 01/01/1988 31/12/2500 -52082300 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, bleached 01/01/1988 31/12/2500 -520829 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², bleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -52082900 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², bleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -520831 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 100 g/m², dyed 01/01/1988 31/12/2500 -52083100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 100 g/m², dyed 01/01/1988 31/12/2500 -520832 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 200 g/m², dyed 01/01/1988 31/12/2500 -52083211 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 130 g/m², dyed, with a width of <= 115 cm 01/01/1988 31/12/1998 -52083213 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 130 g/m², dyed, with a width of > 115 cm to 145 cm 01/01/1988 31/12/1998 -52083215 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 130 g/m², dyed, with a width of > 145 cm to 165 cm 01/01/1988 31/12/1998 -52083216 01/01/1999 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 130 g/m², dyed, with a width of <= 165 cm 01/01/1999 31/12/2500 -52083219 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 130 g/m², dyed, with a width of > 165 cm 01/01/1988 31/12/2500 -52083291 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 130 g to 200 g/m², dyed, with a width of <= 115 cm 01/01/1988 31/12/1998 -52083293 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 130 g to 200 g/m², dyed, with a width of > 115 cm to 145 cm 01/01/1988 31/12/1998 -52083295 01/01/1988 31/12/1998 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 130 g to 200 g/m², dyed, with a width of > 145 cm to 165 cm 01/01/1988 31/12/1998 -52083296 01/01/1999 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 130 g to 200 g/m², dyed, with a width of <= 165 cm 01/01/1999 31/12/2500 -52083299 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 130 g to 200 g/m², dyed, with a width of > 165 cm 01/01/1988 31/12/2500 -520833 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, dyed 01/01/1988 31/12/2500 -52083300 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, dyed 01/01/1988 31/12/2500 -520839 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², dyed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -52083900 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², dyed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -520841 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 100 g/m², made from yarn of different colours 01/01/1988 31/12/2500 -52084100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 100 g/m², made from yarn of different colours 01/01/1988 31/12/2500 -520842 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 200 g/m², made from yarn of different colours 01/01/1988 31/12/2500 -52084200 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 200 g/m², made from yarn of different colours 01/01/1988 31/12/2500 -520843 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, made from yarn of different colours 01/01/1988 31/12/2500 -52084300 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, made from yarn of different colours 01/01/1988 31/12/2500 -520849 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², made from yarn of different colours (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -52084900 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², made from yarn of different colours (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -520851 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 100 g/m², printed 01/01/1988 31/12/2500 -52085100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 100 g/m², printed 01/01/1988 31/12/2500 -520852 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 200 g/m², printed 01/01/1988 31/12/2500 -52085200 01/01/2006 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 200 g/m², printed 01/01/2006 31/12/2500 -52085210 01/01/1988 31/12/2005 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 100 g to 130 g/m², printed 01/01/1988 31/12/2005 -52085290 01/01/1988 31/12/2005 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 130 g to 200 g/m², printed 01/01/1988 31/12/2005 -520853 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, printed 01/01/1988 31/12/2006 -52085300 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, printed 01/01/1988 31/12/2006 -520859 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², printed (excl. plain woven fabrics) 01/01/1988 31/12/2500 -52085900 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², printed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2006 -52085910 01/01/2007 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, printed 01/01/2007 31/12/2500 -52085990 01/01/2007 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing <= 200 g/m², printed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/2007 31/12/2500 -5209 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m² 01/01/1988 31/12/2500 -520911 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², unbleached 01/01/1988 31/12/2500 -52091100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², unbleached 01/01/1988 31/12/2500 -520912 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, unbleached 01/01/1988 31/12/2500 -52091200 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, unbleached 01/01/1988 31/12/2500 -520919 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², unbleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -52091900 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², unbleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -520921 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², bleached 01/01/1988 31/12/2500 -52092100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², bleached 01/01/1988 31/12/2500 -520922 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, bleached 01/01/1988 31/12/2500 -52092200 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, bleached 01/01/1988 31/12/2500 -520929 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², bleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -52092900 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², bleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -520931 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², dyed 01/01/1988 31/12/2500 -52093100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², dyed 01/01/1988 31/12/2500 -520932 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, dyed 01/01/1988 31/12/2500 -52093200 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, dyed 01/01/1988 31/12/2500 -520939 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², dyed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -52093900 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², dyed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -520941 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², made of yarn of different colours 01/01/1988 31/12/2500 -52094100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², made of yarn of different colours 01/01/1988 31/12/2500 -520942 01/01/1988 31/12/2500 LIBEN Denim, containing >= 85% cotton by weight and weighing > 200 g/m², made of yarn of different colours 01/01/1988 31/12/2500 -52094200 01/01/1988 31/12/1995 LIBEN Denim, containing >= 85% cotton by weight and weighing > 200 g/m², made of yarn of different colours 01/01/1988 31/12/1995 -52094200 01/01/1996 31/12/2500 LIBEN Denim, containing >= 85% cotton by weight and weighing > 200 g/m², made of yarn of different colours 01/01/1996 31/12/2500 -520943 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, made of yarn of different colours 01/01/1988 31/12/2500 -52094300 01/01/1988 31/12/1995 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, made of yarn of different colours 01/01/1988 31/12/1995 -52094300 01/01/1996 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, made of yarn of different colours 01/01/1996 31/12/2500 -520949 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², made of yarn of different colours (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -52094900 01/01/2005 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², made of yarn of different colours (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/2005 31/12/2500 -52094910 01/01/1988 31/12/2004 LIBEN Woven jacquard fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², made of yarn of different colours, with a width of > 115 cm but < 140 cm 01/01/1988 31/12/2004 -52094990 01/01/1988 31/12/2004 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², made of yarn of different colours (excl. those in three-thread or four-thread twill, incl. cross twill, plain woven fabrics and jacquard fabrics with a width of > 115 cm but < 140 cm) 01/01/1988 31/12/2004 -520951 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², printed 01/01/1988 31/12/2500 -52095100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², printed 01/01/1988 31/12/2500 -520952 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, printed 01/01/1988 31/12/2500 -52095200 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, printed 01/01/1988 31/12/2500 -520959 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², printed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -52095900 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing >= 85% cotton by weight and weighing > 200 g/m², printed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -5210 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m² 01/01/1988 31/12/2500 -521011 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², unbleached 01/01/1988 31/12/2500 -52101100 01/01/2005 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², unbleached 01/01/2005 31/12/2500 -52101110 01/01/1988 31/12/2004 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², unbleached, with a width of <= 165 cm 01/01/1988 31/12/2004 -52101190 01/01/1988 31/12/2004 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², unbleached, with a width of > 165 cm 01/01/1988 31/12/2004 -521012 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, unbleached 01/01/1988 31/12/2006 -52101200 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, unbleached 01/01/1988 31/12/2006 -521019 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², unbleached (excl. plain woven fabrics) 01/01/1988 31/12/2500 -52101900 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², unbleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2006 -52101900 01/01/2007 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², unbleached (excl. plain woven fabrics) 01/01/2007 31/12/2500 -521021 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², bleached 01/01/1988 31/12/2500 -52102100 01/01/2005 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², bleached 01/01/2005 31/12/2500 -52102110 01/01/1988 31/12/2004 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², bleached, with a width of <= 165 cm 01/01/1988 31/12/2004 -52102190 01/01/1988 31/12/2004 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², bleached, with a width of > 165 cm 01/01/1988 31/12/2004 -521022 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, bleached 01/01/1988 31/12/2006 -52102200 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, bleached 01/01/1988 31/12/2006 -521029 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², bleached (excl. plain woven fabrics) 01/01/1988 31/12/2500 -52102900 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², bleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2006 -52102900 01/01/2007 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², bleached (excl. plain woven fabrics) 01/01/2007 31/12/2500 -521031 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², dyed 01/01/1988 31/12/2500 -52103100 01/01/2005 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², dyed 01/01/2005 31/12/2500 -52103110 01/01/1988 31/12/2004 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², dyed, with a width of <= 165 cm 01/01/1988 31/12/2004 -52103190 01/01/1988 31/12/2004 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², dyed, with a width of > 165 cm 01/01/1988 31/12/2004 -521032 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, dyed 01/01/1988 31/12/2500 -52103200 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, dyed 01/01/1988 31/12/2500 -521039 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², dyed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -52103900 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², dyed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -521041 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², made of yarn of different colours 01/01/1988 31/12/2500 -52104100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², made of yarn of different colours 01/01/1988 31/12/2500 -521042 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, made from yarn of different colours 01/01/1988 31/12/2006 -52104200 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, made from yarn of different colours 01/01/1988 31/12/2006 -521049 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², made from yarn of different colours (excl. plain woven fabrics) 01/01/1988 31/12/2500 -52104900 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², made from yarn of different colours (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2006 -52104900 01/01/2007 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², made from yarn of different colours (excl. plain woven fabrics) 01/01/2007 31/12/2500 -521051 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², printed 01/01/1988 31/12/2500 -52105100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², printed 01/01/1988 31/12/2500 -521052 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, printed 01/01/1988 31/12/2006 -52105200 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², in three-thread or four-thread twill, incl. cross twill, printed 01/01/1988 31/12/2006 -521059 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², printed (excl. plain woven fabrics) 01/01/1988 31/12/2500 -52105900 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², printed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2006 -52105900 01/01/2007 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing <= 200 g/m², printed (excl. plain woven fabrics) 01/01/2007 31/12/2500 -5211 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m² 01/01/1988 31/12/2500 -521111 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², unbleached 01/01/1988 31/12/2500 -52111100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², unbleached 01/01/1988 31/12/2500 -521112 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, unbleached 01/01/1988 31/12/2500 -52111200 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, unbleached 01/01/1988 31/12/2500 -521119 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², unbleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -52111900 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², unbleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -521120 01/01/2007 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², bleached 01/01/2007 31/12/2500 -52112000 01/01/2007 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², bleached 01/01/2007 31/12/2500 -521121 01/01/1988 31/12/2006 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², bleached 01/01/1988 31/12/2006 -52112100 01/01/1988 31/12/2006 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², bleached 01/01/1988 31/12/2006 -521122 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, bleached 01/01/1988 31/12/2006 -52112200 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, bleached 01/01/1988 31/12/2006 -521129 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², bleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2006 -52112900 01/01/1988 31/12/2006 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², bleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2006 -521131 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², dyed 01/01/1988 31/12/2500 -52113100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², dyed 01/01/1988 31/12/2500 -521132 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, dyed 01/01/1988 31/12/2500 -52113200 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, dyed 01/01/1988 31/12/2500 -521139 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², dyed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -52113900 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², dyed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -521141 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², made of yarn of different colours 01/01/1988 31/12/2500 -52114100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², made of yarn of different colours 01/01/1988 31/12/2500 -521142 01/01/1988 31/12/2500 LIBEN Denim, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², made of yarn of different colours 01/01/1988 31/12/2500 -52114200 01/01/1988 31/12/1995 LIBEN Denim, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², made of yarn of different colours 01/01/1988 31/12/1995 -52114200 01/01/1996 31/12/2500 LIBEN Denim, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², made of yarn of different colours 01/01/1996 31/12/2500 -521143 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, made of yarn of different colours 01/01/1988 31/12/2500 -52114300 01/01/1988 31/12/1995 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, made of yarn of different colours 01/01/1988 31/12/1995 -52114300 01/01/1996 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, made of yarn of different colours 01/01/1996 31/12/2500 -521149 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², made of yarn of different colours (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -52114910 01/01/1996 31/12/2500 LIBEN Woven jacquard fabrics containing predominantly, but < 85% cotton by weight, mixed mainly or solely with man-made fibres and weighing > 200 g/m², made of yarn of different colours 01/01/1996 31/12/2500 -52114911 01/01/1988 31/12/1995 LIBEN Jacquard mattress tickings, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², made of yarn of different colours 01/01/1988 31/12/1995 -52114919 01/01/1988 31/12/1995 LIBEN Jacquard fabrics, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², made of yarn of different colours (excl. mattress tickings) 01/01/1988 31/12/1995 -52114990 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², made of yarn of different colours (excl. those in three-thread or four-thread twill, incl. cross twill, denim, jacquard fabrics and plain woven fabrics) 01/01/1988 31/12/2500 -521151 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², printed 01/01/1988 31/12/2500 -52115100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², printed 01/01/1988 31/12/2500 -521152 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, printed 01/01/1988 31/12/2500 -52115200 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², in three-thread or four-thread twill, incl. cross twill, printed 01/01/1988 31/12/2500 -521159 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², printed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -52115900 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with man-made fibres and weighing > 200 g/m², printed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -5212 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres 01/01/1988 31/12/2500 -521211 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres, weighing <= 200 g/m², unbleached 01/01/1988 31/12/2500 -52121110 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with flax, weighing <= 200 g/m², unbleached 01/01/1988 31/12/2500 -52121190 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres or principally or solely with flax, weighing <= 200 g/m², unbleached 01/01/1988 31/12/2500 -521212 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres, weighing <= 200 g/m², bleached 01/01/1988 31/12/2500 -52121210 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with flax, weighing <= 200 g/m², bleached 01/01/1988 31/12/2500 -52121290 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres or principally or solely with flax, weighing <= 200 g/m², bleached 01/01/1988 31/12/2500 -521213 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres, weighing <= 200 g/m², dyed 01/01/1988 31/12/2500 -52121310 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with flax, weighing <= 200 g/m², dyed 01/01/1988 31/12/2500 -52121390 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres or principally or solely with flax, weighing <= 200 g/m², dyed 01/01/1988 31/12/2500 -521214 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres, weighing <= 200 g/m², made of yarn of different colours 01/01/1988 31/12/2500 -52121410 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with flax, weighing <= 200 g/m², made of yarn of different colours 01/01/1988 31/12/2500 -52121490 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres or principally or solely with flax, weighing <= 200 g/m², made of yarn of different colours 01/01/1988 31/12/2500 -521215 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres, weighing <= 200 g/m², printed 01/01/1988 31/12/2500 -52121510 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with flax, weighing <= 200 g/m², printed 01/01/1988 31/12/2500 -52121590 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres or principally or solely with flax, weighing <= 200 g/m², printed 01/01/1988 31/12/2500 -521221 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres, weighing > 200 g/m², unbleached 01/01/1988 31/12/2500 -52122110 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with flax, weighing > 200 g/m², unbleached 01/01/1988 31/12/2500 -52122190 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres or principally or solely with flax, weighing > 200 g/m², unbleached 01/01/1988 31/12/2500 -521222 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres, weighing > 200 g/m², bleached 01/01/1988 31/12/2500 -52122210 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with flax, weighing > 200 g/m², bleached 01/01/1988 31/12/2500 -52122290 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres or principally or solely with flax, weighing > 200 g/m², bleached 01/01/1988 31/12/2500 -521223 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres, weighing > 200 g/m², dyed 01/01/1988 31/12/2500 -52122310 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with flax, weighing > 200 g/m², dyed 01/01/1988 31/12/2500 -52122390 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres or principally or solely with flax, weighing > 200 g/m², dyed 01/01/1988 31/12/2500 -521224 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres, weighing > 200 g/m², made of yarn of different colours 01/01/1988 31/12/2500 -52122410 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with flax, weighing > 200 g/m², made of yarn of different colours 01/01/1988 31/12/2500 -52122490 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres or principally or solely with flax, weighing > 200 g/m², made of yarn of different colours 01/01/1988 31/12/2500 -521225 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres, weighing > 200 g/m², printed 01/01/1988 31/12/2500 -52122510 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, mixed principally or solely with flax, weighing > 200 g/m², printed 01/01/1988 31/12/2500 -52122590 01/01/1988 31/12/2500 LIBEN Woven fabrics of cotton, containing predominantly, but < 85% cotton by weight, other than those mixed principally or solely with man-made fibres or principally or solely with flax, weighing > 200 g/m², printed 01/01/1988 31/12/2500 -52CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 52 01/01/2002 31/12/2500 -52CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 52 01/01/2002 31/12/2500 -52CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 52 01/01/2002 31/12/2500 -52MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -52MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -52MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -52PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 52 carried by post 01/01/1988 31/12/2500 -52PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 52 carried by post 01/01/1988 31/12/2500 -52PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 52 carried by post 01/01/1988 31/12/2500 -52SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 52 01/01/1988 31/12/2500 -52SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 52 and SITC section 0 01/01/1997 31/12/2001 -52SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 52 and SITC group 000 01/01/1997 31/12/2001 -52SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 52 and SITC section 2 01/01/1997 31/12/2500 -52SSS263 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 52 and SITC group 263 01/01/1997 31/12/2500 -52SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 52 and SITC section 6 01/01/1997 31/12/2500 -52SSS651 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 52 and SITC group 651 01/01/1997 31/12/2500 -52SSS652 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 52 and SITC group 652 01/01/1997 31/12/2500 -52SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 52 and SITC section 9 01/01/1988 31/12/1996 -52SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 52 and SITC section 9 01/01/1997 31/12/2500 -52SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 52 and SITC group 999 01/01/1988 31/12/1996 -52SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 52 and SITC group 999 01/01/1997 31/12/2500 -53 01/01/1988 31/12/2500 LIBEN OTHER VEGETABLE TEXTILE FIBRES; PAPER YARN AND WOVEN FABRICS OF PAPER YARN 01/01/1988 31/12/2500 -5301 01/01/1988 31/12/2500 LIBEN Flax, raw or processed, but not spun; flax tow and waste, incl. yarn waste and garnetted stock 01/01/1988 31/12/2500 -530110 01/01/1988 31/12/2500 LIBEN Flax, raw or retted 01/01/1988 31/12/2500 -53011000 01/01/1988 31/12/2500 LIBEN Flax, raw or retted 01/01/1988 31/12/2500 -530121 01/01/1988 31/12/2500 LIBEN Flax, broken or scutched 01/01/1988 31/12/2500 -53012100 01/01/1988 31/12/2500 LIBEN Flax, broken or scutched 01/01/1988 31/12/2500 -530129 01/01/1988 31/12/2500 LIBEN Flax, hackled or otherwise processed, but not spun (excl. broken, scutched and retted flax) 01/01/1988 31/12/2500 -53012900 01/01/1988 31/12/2500 LIBEN Flax, hackled or otherwise processed, but not spun (excl. broken, scutched and retted flax) 01/01/1988 31/12/2500 -530130 01/01/1988 31/12/2500 LIBEN Flax tow and waste, incl. yarn waste and garnetted stock 01/01/1988 31/12/2500 -53013000 01/01/2009 31/12/2500 LIBEN Flax tow and waste, incl. yarn waste and garnetted stock 01/01/2009 31/12/2500 -53013010 01/01/1988 31/12/2008 LIBEN Flax tow 01/01/1988 31/12/2008 -53013090 01/01/1988 31/12/2008 LIBEN Flax waste, incl. yarn waste and garnetted stock 01/01/1988 31/12/2008 -5302 01/01/1988 31/12/2500 LIBEN True hemp "Cannabis sativa L.", raw or processed, but not spun; tow and waste of true hemp, incl. yarn waste and garnetted stock 01/01/1988 31/12/2500 -530210 01/01/1988 31/12/2500 LIBEN True hemp "Cannabis sativa L.", raw or retted 01/01/1988 31/12/2500 -53021000 01/01/1988 31/12/2500 LIBEN True hemp "Cannabis sativa L.", raw or retted 01/01/1988 31/12/2500 -530290 01/01/1988 31/12/2500 LIBEN True hemp "Cannabis sativa L.", processed but not spun; tow and waste of hemp, incl. yarn waste and garnetted stock (excl. retted hemp) 01/01/1988 31/12/2500 -53029000 01/01/1988 31/12/2500 LIBEN True hemp "Cannabis sativa L.", processed but not spun; tow and waste of hemp, incl. yarn waste and garnetted stock (excl. retted hemp) 01/01/1988 31/12/2500 -5303 01/01/1988 31/12/2500 LIBEN Jute and other textile bast fibres, raw or processed, but not spun; tow and waste of such fibres, incl. yarn waste and garnetted stock (excl. flax, true hemp and ramie) 01/01/1988 31/12/2500 -530310 01/01/1988 31/12/2500 LIBEN Jute and other textile bast fibres, raw or retted (excl. flax, true hemp and ramie) 01/01/1988 31/12/2500 -53031000 01/01/1988 31/12/2500 LIBEN Jute and other textile bast fibres, raw or retted (excl. flax, true hemp and ramie) 01/01/1988 31/12/2500 -530390 01/01/1988 31/12/2500 LIBEN Jute and other textile bast fibres, processed but not spun; tow and waste of such fibres, incl. yarn waste and garnetted stock (excl. retted fibres of this kind, flax, true hemp and ramie) 01/01/1988 31/12/2500 -53039000 01/01/1988 31/12/2500 LIBEN Jute and other textile bast fibres, processed but not spun; tow and waste of such fibres, incl. yarn waste and garnetted stock (excl. retted fibres of this kind, flax, true hemp and ramie) 01/01/1988 31/12/2500 -5304 01/01/1988 31/12/2006 LIBEN Sisal and other textile fibres of the genus Agave, raw or processed, but not spun; tow and waste of such fibres, incl. yarn waste and garnetted stock 01/01/1988 31/12/2006 -530410 01/01/1988 31/12/2006 LIBEN Sisal and other textile fibres of the genus Agave, raw 01/01/1988 31/12/2006 -53041000 01/01/1988 31/12/2006 LIBEN Sisal and other textile fibres of the genus Agave, raw 01/01/1988 31/12/2006 -530490 01/01/1988 31/12/2006 LIBEN Sisal and other textile fibres of the genus Agave, processed but not spun; tow and waste of such fibres, incl. yarn waste and garnetted stock 01/01/1988 31/12/2006 -53049000 01/01/1988 31/12/2006 LIBEN Sisal and other textile fibres of the genus Agave, processed but not spun; tow and waste of such fibres, incl. yarn waste and garnetted stock 01/01/1988 31/12/2006 -5305 01/01/1988 31/12/2500 LIBEN Coconut, abaca "Manila hemp or Musa textilis Nee", ramie, agave and other vegetable textile fibres, n.e.s., raw or processed, but not spun; tow, noils and waste of such fibres, incl. yarn waste and garnetted stock 01/01/1988 31/12/2500 -530500 01/01/2007 31/12/2500 LIBEN Coconut, abaca "Manila hemp or Musa textilis Nee", ramie, agave and other vegetable textile fibres, n.e.s., raw or processed, but not spun; tow, noils and waste of such fibres, incl. yarn waste and garnetted stock 01/01/2007 31/12/2500 -53050000 01/01/2007 31/12/2500 LIBEN Coconut, abaca "Manila hemp or Musa textilis Nee", ramie, agave and other vegetable textile fibres, n.e.s., raw or processed, but not spun; tow, noils and waste of such fibres, incl. yarn waste and garnetted stock 01/01/2007 31/12/2500 -530511 01/01/1988 31/12/2006 LIBEN Coconut "coir" fibres, raw 01/01/1988 31/12/2006 -53051100 01/01/1988 31/12/2006 LIBEN Coconut "coir" fibres, raw 01/01/1988 31/12/2006 -530519 01/01/1988 31/12/2006 LIBEN Coconut "coir" fibres, processed but not spun; tow, noils and waste of such fibres, incl. yarn waste and garnetted stock 01/01/1988 31/12/2006 -53051900 01/01/1988 31/12/2006 LIBEN Coconut "coir" fibres, processed but not spun; tow, noils and waste of such fibres, incl. yarn waste and garnetted stock 01/01/1988 31/12/2006 -530521 01/01/1988 31/12/2006 LIBEN Abaca "Manila hemp or Musa textilis Nee", raw 01/01/1988 31/12/2006 -53052100 01/01/1988 31/12/2006 LIBEN Abaca "Manila hemp or Musa textilis Nee", raw 01/01/1988 31/12/2006 -530529 01/01/1988 31/12/2006 LIBEN Abaca "Manila hemp or Musa textilis Nee", processed but not spun; tow, noils and waste of these fibres, incl. yarn waste and garnetted stock 01/01/1988 31/12/2006 -53052900 01/01/1988 31/12/2006 LIBEN Abaca "Manila hemp or Musa textilis Nee", processed but not spun; tow, noils and waste of these fibres, incl. yarn waste and garnetted stock 01/01/1988 31/12/2006 -530590 01/01/2002 31/12/2006 LIBEN Ramie and other vegetable textile fibres, n.e.s., raw or processed, but not spun; tow, noils and waste of such fibres, incl. yarn waste and garnetted stock 01/01/2002 31/12/2006 -53059000 01/01/2002 31/12/2006 LIBEN Ramie and other vegetable textile fibres, n.e.s., raw or processed, but not spun; tow, noils and waste of such fibres, incl. yarn waste and garnetted stock 01/01/2002 31/12/2006 -530591 01/01/1988 31/12/2001 LIBEN Ramie and other vegetable textile fibres, n.e.s., raw 01/01/1988 31/12/2001 -53059100 01/01/1988 31/12/2001 LIBEN Ramie and other vegetable textile fibres, n.e.s., raw 01/01/1988 31/12/2001 -530599 01/01/1988 31/12/2001 LIBEN Ramie and other vegetable textile fibres, n.e.s., processed but not spun; tow, noils and waste of these fibres, incl. yarn waste and garnetted stock 01/01/1988 31/12/2001 -53059900 01/01/1988 31/12/2001 LIBEN Ramie and other vegetable textile fibres, n.e.s., processed but not spun; tow, noils and waste of these fibres, incl. yarn waste and garnetted stock 01/01/1988 31/12/2001 -5306 01/01/1988 31/12/2500 LIBEN Flax yarn 01/01/1988 31/12/2500 -530610 01/01/1988 31/12/2500 LIBEN Single flax yarn 01/01/1988 31/12/2500 -53061010 01/01/1999 31/12/2500 LIBEN Single flax yarn, with a linear density of >= 833,3 decitex "<= metric number 12" (excl. put up for retail sale) 01/01/1999 31/12/2500 -53061011 01/01/1988 31/12/1998 LIBEN Single flax yarn, with a linear density of >= 833,3 decitex "<= MC 12", unbleached (excl. that put up for retail sale) 01/01/1988 31/12/1998 -53061019 01/01/1988 31/12/1998 LIBEN Single flax yarn, with a linear density of >= 833,3 decitex "<= MC 12" (excl. unbleached and that put up for retail sale) 01/01/1988 31/12/1998 -53061030 01/01/1999 31/12/2500 LIBEN Single flax yarn, with a linear density of 277,8 decitex to < 833,3 decitex "> MN 12 to MN 36" (excl. put up for retail sale) 01/01/1999 31/12/2500 -53061031 01/01/1988 31/12/1998 LIBEN Single flax yarn, with a linear density of 277,8 decitex to < 833,3 decitex "> MC 12 to MC 36", unbleached (excl. that put up for retail sale) 01/01/1988 31/12/1998 -53061039 01/01/1988 31/12/1998 LIBEN Single flax yarn, with a linear density of 277,8 decitex to < 833,3 decitex "> MC 12 to MC 36" (excl. unbleached and that put up for retail sale) 01/01/1988 31/12/1998 -53061050 01/01/1988 31/12/2500 LIBEN Single flax yarn, with a linear density of < 277,8 decitex "> MN 36" (excl. that put up for retail sale) 01/01/1988 31/12/2500 -53061090 01/01/1988 31/12/2500 LIBEN Single flax yarn, put up for retail sale 01/01/1988 31/12/2500 -530620 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled flax yarn 01/01/1988 31/12/2500 -53062010 01/01/1999 31/12/2500 LIBEN Multiple "folded" or cabled flax yarn (excl. for retail sale) 01/01/1999 31/12/2500 -53062011 01/01/1988 31/12/1998 LIBEN Multiple "folded" or cabled flax yarn, unbleached (excl. that put up for retail sale) 01/01/1988 31/12/1998 -53062019 01/01/1988 31/12/1998 LIBEN Multiple "folded" or cabled flax yarn (excl. unbleached and that for retail sale) 01/01/1988 31/12/1998 -53062090 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled flax yarn, put up for retail sale 01/01/1988 31/12/2500 -5307 01/01/1988 31/12/2500 LIBEN Yarn of jute or of other textile bast fibres of heading 5303 01/01/1988 31/12/2500 -530710 01/01/1988 31/12/2500 LIBEN Single yarn of jute or of other textile bast fibres of heading 5303 01/01/1988 31/12/2500 -53071000 01/01/2009 31/12/2500 LIBEN Single yarn of jute or of other textile bast fibres of heading 5303 01/01/2009 31/12/2500 -53071010 01/01/1988 31/12/2008 LIBEN Single yarn of jute or of other textile bast fibres of heading 5303, with a linear density of <= 1000 decitex ">= MN 10" 01/01/1988 31/12/2008 -53071090 01/01/1988 31/12/2008 LIBEN Single yarn of jute or of other textile bast fibres of heading 5303, with a linear density of > 1000 decitex "< MN 10" 01/01/1988 31/12/2008 -530720 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled yarn of jute or of other textile bast fibres of heading 5303 01/01/1988 31/12/2500 -53072000 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled yarn of jute or of other textile bast fibres of heading 5303 01/01/1988 31/12/2500 -5308 01/01/1988 31/12/2500 LIBEN Yarn of vegetable textile fibres; paper yarn (excl. flax yarn, yarn of jute or of other textile bast fibres of heading 5303 and cotton yarn) 01/01/1988 31/12/2500 -530810 01/01/1988 31/12/2500 LIBEN Coconut "coir" yarn 01/01/1988 31/12/2500 -53081000 01/01/1988 31/12/2500 LIBEN Coconut "coir" yarn 01/01/1988 31/12/2500 -530820 01/01/1988 31/12/2500 LIBEN Hemp yarn 01/01/1988 31/12/2500 -53082010 01/01/1988 31/12/2500 LIBEN Hemp yarn (excl. that put up for retail sale) 01/01/1988 31/12/2500 -53082090 01/01/1988 31/12/2500 LIBEN Hemp yarn put up for retail sale 01/01/1988 31/12/2500 -530830 01/01/1988 31/12/2001 LIBEN Paper yarn 01/01/1988 31/12/2001 -53083000 01/01/1988 31/12/2001 LIBEN Paper yarn 01/01/1988 31/12/2001 -530890 01/01/1988 31/12/2500 LIBEN Yarn of vegetable textile fibres (excl. flax yarn, yarn of jute or of other textile bast fibres of heading 5303, coconut "coir" yarn, hemp yarn and cotton yarn) 01/01/1988 31/12/2500 -53089011 01/01/1988 31/12/1998 LIBEN Ramie yarn, with a linear density of >= 833,3 decitex "<= MC 12" 01/01/1988 31/12/1998 -53089012 01/01/1999 31/12/2500 LIBEN Ramie yarn, with a linear density of >= 277,8 decitex "<= MN 36" 01/01/1999 31/12/2500 -53089013 01/01/1988 31/12/1998 LIBEN Ramie yarn, with a linear density of 277,8 decitex to < 833,3 decitex "> MC 12 to MC 36" 01/01/1988 31/12/1998 -53089019 01/01/1988 31/12/2500 LIBEN Ramie yarn, with a linear density of < 277,8 decitex "> MN 36" 01/01/1988 31/12/2500 -53089050 01/01/2002 31/12/2500 LIBEN Paper yarn 01/01/2002 31/12/2500 -53089090 01/01/1988 31/12/2500 LIBEN Yarn of vegetable textile fibres (excl. flax yarn, yarn of jute or of other textile bast fibres of heading 5303, coconut "coir" yarn, hemp yarn, paper yarn, ramie yarn and cotton yarn) 01/01/1988 31/12/2500 -5309 01/01/1988 31/12/2500 LIBEN Woven fabrics of flax 01/01/1988 31/12/2500 -530911 01/01/1988 31/12/2500 LIBEN Woven fabrics of flax, containing >= 85% flax by weight, unbleached or bleached 01/01/1988 31/12/2500 -53091110 01/01/1999 31/12/2500 LIBEN Woven fabrics of flax, containing >= 85% flax by weight, unbleached 01/01/1999 31/12/2500 -53091111 01/01/1988 31/12/1998 LIBEN Woven fabrics of flax, containing >= 85% flax by weight, unbleached, weighing <= 400 g/m² 01/01/1988 31/12/1998 -53091119 01/01/1988 31/12/1998 LIBEN Woven fabrics of flax, containing >= 85% flax by weight, unbleached, weighing > 400 g/m² 01/01/1988 31/12/1998 -53091190 01/01/1988 31/12/2500 LIBEN Woven fabrics of flax, containing >= 85% flax by weight, bleached 01/01/1988 31/12/2500 -530919 01/01/1988 31/12/2500 LIBEN Woven fabrics of flax, containing >= 85% flax by weight, dyed, made of yarn of different colours, or printed 01/01/1988 31/12/2500 -53091900 01/01/1999 31/12/2500 LIBEN Woven fabrics of flax, containing >= 85% flax by weight, dyed, made of yarn of different colours, or printed 01/01/1999 31/12/2500 -53091910 01/01/1988 31/12/1998 LIBEN Woven fabrics of flax, containing >= 85% flax by weight, dyed or made of yarn of different colours 01/01/1988 31/12/1998 -53091990 01/01/1988 31/12/1998 LIBEN Woven fabrics of flax, containing >= 85% flax by weight, printed 01/01/1988 31/12/1998 -530921 01/01/1988 31/12/2500 LIBEN Woven fabrics of flax, containing predominantly, but < 85% flax by weight, unbleached or bleached 01/01/1988 31/12/2500 -53092100 01/01/2009 31/12/2500 LIBEN Woven fabrics of flax, containing predominantly, but < 85% flax by weight, unbleached or bleached 01/01/2009 31/12/2500 -53092110 01/01/1988 31/12/2008 LIBEN Woven fabrics of flax, containing predominantly, but < 85% flax by weight, unbleached 01/01/1988 31/12/2008 -53092190 01/01/1988 31/12/2008 LIBEN Woven fabrics of flax, containing predominantly, but < 85% flax by weight, bleached 01/01/1988 31/12/2008 -530929 01/01/1988 31/12/2500 LIBEN Woven fabrics of flax, containing predominantly, but < 85% flax by weight, dyed, made of yarn of different colours, or printed 01/01/1988 31/12/2500 -53092900 01/01/1999 31/12/2500 LIBEN Woven fabrics of flax, containing predominantly, but < 85% flax by weight, dyed, made of yarn of different colours, or printed 01/01/1999 31/12/2500 -53092910 01/01/1988 31/12/1998 LIBEN Woven fabrics of flax, containing predominantly, but < 85% flax by weight, dyed or made of yarn of different colours 01/01/1988 31/12/1998 -53092990 01/01/1988 31/12/1998 LIBEN Woven fabrics of flax, containing predominantly, but < 85% flax by weight, printed 01/01/1988 31/12/1998 -5310 01/01/1988 31/12/2500 LIBEN Woven fabrics of jute or of other textile bast fibres of heading 5303 01/01/1988 31/12/2500 -531010 01/01/1988 31/12/2500 LIBEN Woven fabrics of jute or of other textile bast fibres of heading 5303, unbleached 01/01/1988 31/12/2500 -53101010 01/01/1988 31/12/2500 LIBEN Woven fabrics of jute or of other textile bast fibres of heading 5303, unbleached, of a width of <= 150 cm 01/01/1988 31/12/2500 -53101090 01/01/1988 31/12/2500 LIBEN Woven fabrics of jute or of other textile bast fibres of heading 5303, unbleached, of a width of > 150 cm 01/01/1988 31/12/2500 -531090 01/01/1988 31/12/2500 LIBEN Woven fabrics of jute or of other textile bast fibres of heading 5303, bleached, dyed, made of yarn of different colours, or printed 01/01/1988 31/12/2500 -53109000 01/01/1988 31/12/2500 LIBEN Woven fabrics of jute or of other textile bast fibres of heading 5303, bleached, dyed, made of yarn of different colours, or printed 01/01/1988 31/12/2500 -5311 01/01/1988 31/12/2500 LIBEN Woven fabrics of other vegetable textile fibres; woven fabrics of paper yarn (excl. those of flax, jute, other textile bast fibres of heading 5303 and cotton yarn) 01/01/1988 31/12/2500 -531100 01/01/1988 31/12/2500 LIBEN Woven fabrics of other vegetable textile fibres; woven fabrics of paper yarn (excl. those of flax, jute, other textile bast fibres of heading 5303 and cotton yarn) 01/01/1988 31/12/2500 -53110010 01/01/1988 31/12/2500 LIBEN Woven fabrics of ramie 01/01/1988 31/12/2500 -53110090 01/01/1988 31/12/2500 LIBEN Woven fabrics of other vegetable textile fibres; woven fabrics of paper yarn (excl. those of flax, jute, other textile bast fibres of heading 5303, ramie and cotton yarn) 01/01/1988 31/12/2500 -53CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 53 01/01/2002 31/12/2500 -53CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 53 01/01/2002 31/12/2500 -53CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 53 01/01/2002 31/12/2500 -53MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -53MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -53MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -53SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 53 01/01/1988 31/12/2500 -53SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 53 and SITC section 0 01/01/1997 31/12/2001 -53SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 53 and SITC group 000 01/01/1997 31/12/2001 -53SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 53 and SITC section 2 01/01/1997 31/12/2500 -53SSS264 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 53 and SITC group 264 01/01/1997 31/12/2500 -53SSS265 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 53 and SITC group 265 01/01/1997 31/12/2500 -53SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 53 and SITC section 6 01/01/1997 31/12/2500 -53SSS651 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 53 and SITC group 651 01/01/1997 31/12/2500 -53SSS654 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 53 and SITC group 654 01/01/1997 31/12/2500 -53SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 53 and SITC section 9 01/01/1988 31/12/1996 -53SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 53 and SITC section 9 01/01/1997 31/12/2500 -53SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 53 and SITC group 999 01/01/1988 31/12/1996 -53SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 53 and SITC group 999 01/01/1997 31/12/2500 -54 01/01/1988 31/12/2500 LIBEN MAN-MADE FILAMENTS; STRIP AND THE LIKE OF MAN-MADE TEXTILE MATERIALS 01/01/1988 31/12/2500 -5401 01/01/1988 31/12/2500 LIBEN Sewing thread of man-made filaments, whether or not put up for retail sale 01/01/1988 31/12/2500 -540110 01/01/1988 31/12/2500 LIBEN Sewing thread of synthetic filaments, whether or not put up for retail sale 01/01/1988 31/12/2500 -54011011 01/01/1988 31/12/2004 LIBEN Core yarn of synthetic filaments (excl. that put up for retail sale) 01/01/1988 31/12/2004 -54011012 01/01/2005 31/12/2500 LIBEN Sewing thread 'core yarn' of polyester filament surrounded by cotton fibres (excl. that put up for retail sale) 01/01/2005 31/12/2500 -54011014 01/01/2005 31/12/2500 LIBEN Core yarn of synthetic filaments (excl. that put up for retail sale and polyester filament surrounded by cotton fibres) 01/01/2005 31/12/2500 -54011016 01/01/2005 31/12/2500 LIBEN Textured sewing yarn of synthetic filaments (excl. core yarn and yarn put up for retail sale) 01/01/2005 31/12/2500 -54011018 01/01/2005 31/12/2500 LIBEN Sewing thread of synthetic filaments (excl. core yarn, textured yarn and yarn put up for retail sale) 01/01/2005 31/12/2500 -54011019 01/01/1988 31/12/2004 LIBEN Sewing thread of synthetic filaments (excl. core yarn and yarn put up for retail sale) 01/01/1988 31/12/2004 -54011090 01/01/1988 31/12/2500 LIBEN Sewing thread of synthetic filaments, put up for retail sale 01/01/1988 31/12/2500 -540120 01/01/1988 31/12/2500 LIBEN Sewing thread of artificial filaments, whether or not put up for retail sale 01/01/1988 31/12/2500 -54012010 01/01/1988 31/12/2500 LIBEN Sewing thread of artificial filaments (excl. that put up for retail sale) 01/01/1988 31/12/2500 -54012090 01/01/1988 31/12/2500 LIBEN Sewing thread of artificial filaments, put up for retail sale 01/01/1988 31/12/2500 -5402 01/01/1988 31/12/2500 LIBEN Synthetic filament yarn, incl. synthetic monofilaments of < 67 decitex (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -540210 01/01/1988 31/12/2006 LIBEN High-tenacity filament yarn of nylon or other polyamides (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2006 -54021010 01/01/1988 31/12/1995 LIBEN High tenacity filament yarn of aramides (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/1995 -54021010 01/01/1996 31/12/2006 LIBEN High-tenacity filament yarn of aramids (excl. sewing thread and yarn put up for retail sale) 01/01/1996 31/12/2006 -54021090 01/01/1988 31/12/1995 LIBEN High tenacity filament yarn of nylon or other polyamides (excl. sewing thread, yarn put up for retail sale and high tenacity filament yarn of aramides) 01/01/1988 31/12/1995 -54021090 01/01/1996 31/12/2006 LIBEN High-tenacity filament yarn of nylon or other polyamides (excl. sewing thread, yarn put up for retail sale and high-tenacity filament yarn of aramids) 01/01/1996 31/12/2006 -540211 01/01/2007 31/12/2500 LIBEN High-tenacity filament yarn of aramids (excl. sewing thread and yarn put up for retail sale) 01/01/2007 31/12/2500 -54021100 01/01/2007 31/12/2500 LIBEN High-tenacity filament yarn of aramids (excl. sewing thread and yarn put up for retail sale) 01/01/2007 31/12/2500 -540219 01/01/2007 31/12/2500 LIBEN High-tenacity filament yarn of nylon or other polyamides (excl. sewing thread, yarn put up for retail sale and high-tenacity filament yarn of aramids) 01/01/2007 31/12/2500 -54021900 01/01/2007 31/12/2500 LIBEN High-tenacity filament yarn of nylon or other polyamides (excl. sewing thread, yarn put up for retail sale and high-tenacity filament yarn of aramids) 01/01/2007 31/12/2500 -540220 01/01/1988 31/12/2500 LIBEN High-tenacity filament yarn of polyesters (excl. that put up for retail sale) 01/01/1988 31/12/2500 -54022000 01/01/1988 31/12/2500 LIBEN High-tenacity filament yarn of polyesters (excl. that put up for retail sale) 01/01/1988 31/12/2500 -540231 01/01/1988 31/12/2500 LIBEN Textured filament yarn of nylon or other polyamides, with a linear density of <= 50 tex per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -54023100 01/01/1998 31/12/2500 LIBEN Textured filament yarn of nylon or other polyamides, with a linear density of <= 50 tex per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1998 31/12/2500 -54023110 01/01/1988 31/12/1997 LIBEN Textured filament yarn of nylon or other polyamides, with a linear density of <= 5 tex per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/1997 -54023130 01/01/1988 31/12/1997 LIBEN Textured filament yarn of nylon or other polyamides, with a linear density of > 5 tex to 33 tex per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/1997 -54023190 01/01/1988 31/12/1997 LIBEN Textured filament yarn of nylon or other polyamides, with a linear density of > 33 tex to 50 tex per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/1997 -540232 01/01/1988 31/12/2500 LIBEN Textured filament yarn of nylon or other polyamides, with a linear density of > 50 tex per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -54023200 01/01/1988 31/12/1995 LIBEN Textured filament yarn of nylon or other polyamides, with a linear density of > 50 tex per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/1995 -54023200 01/01/1996 31/12/2500 LIBEN Textured filament yarn of nylon or other polyamides, with a linear density of > 50 tex per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1996 31/12/2500 -540233 01/01/1988 31/12/2500 LIBEN Textured filament yarn of polyester (excl. that put up for retail sale) 01/01/1988 31/12/2500 -54023300 01/01/1998 31/12/2500 LIBEN Textured filament yarn of polyester (excl. that put up for retail sale) 01/01/1998 31/12/2500 -54023310 01/01/1988 31/12/1997 LIBEN Textured synthetic filament yarn of polyester, with a linear density of <= 14 tex per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/1997 -54023390 01/01/1988 31/12/1997 LIBEN Textured synthetic filament yarn of polyester, with a linear density of > 14 tex per single yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/1997 -540234 01/01/2007 31/12/2500 LIBEN Textured synthetic filament yarn of polypropylene (excl. sewing thread and yarn put up for retail sale) 01/01/2007 31/12/2500 -54023400 01/01/2007 31/12/2500 LIBEN Textured synthetic filament yarn of polypropylene (excl. sewing thread and yarn put up for retail sale) 01/01/2007 31/12/2500 -540239 01/01/1988 31/12/2500 LIBEN Textured synthetic filament yarn (excl. sewing thread, yarn put up for retail sale and textured filament yarn of polypropylene, polyester, nylon or other polyamides) 01/01/1988 31/12/2500 -54023900 01/01/2007 31/12/2500 LIBEN Textured synthetic filament yarn (excl. sewing thread, yarn put up for retail sale and textured filament yarn of polypropylene, polyester, nylon or other polyamides) 01/01/2007 31/12/2500 -54023910 01/01/1988 31/12/2006 LIBEN Textured synthetic filament yarn of polypropylene (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2006 -54023990 01/01/1988 31/12/2006 LIBEN Textured synthetic filament yarn (excl. sewing thread, yarn put up for retail sale and textured filament yarn of polypropylene, polyester, nylon or other polyamides) 01/01/1988 31/12/2006 -540241 01/01/1988 31/12/2006 LIBEN Filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre (excl. sewing thread, yarn put up for retail sale, high-tenacity yarn and textured yarn) 01/01/1988 31/12/2006 -54024100 01/01/1998 31/12/2006 LIBEN Filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre (excl. sewing thread, yarn put up for retail sale, high-tenacity yarn and textured yarn) 01/01/1998 31/12/2006 -54024110 01/01/1988 31/12/1995 LIBEN Filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre, with a linear density of <= 7 tex per single yarn (excl. sewing thread, yarn put up for retail sale, high tenacity yarn and textured yarn) 01/01/1988 31/12/1995 -54024110 01/01/1996 31/12/1997 LIBEN Filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre, with a linear density of <= 7 tex per single yarn (excl. sewing thread, yarn put up for retail sale, high tenacity yarn and textured yarn) 01/01/1996 31/12/1997 -54024130 01/01/1988 31/12/1995 LIBEN Filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre, with a linear density of > 7 tex to 33 tex per single yarn (excl. sewing thread, yarn put up for retail sale, high tenacity yarn and textured yarn) 01/01/1988 31/12/1995 -54024130 01/01/1996 31/12/1997 LIBEN Filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre, with a linear density of > 7 tex to 33 tex per single yarn (excl. sewing thread, yarn put up for retail sale, high tenacity yarn and textured yarn) 01/01/1996 31/12/1997 -54024190 01/01/1988 31/12/1995 LIBEN Filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre, with a linear density of > 33 tex per single yarn (excl. sewing thread, yarn put up for retail sale, high tenacity yarn and textured yarn) 01/01/1988 31/12/1995 -54024190 01/01/1996 31/12/1997 LIBEN Filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre, with a linear density of > 33 tex per single yarn (excl. sewing thread, yarn put up for retail sale, high tenacity yarn and textured yarn) 01/01/1996 31/12/1997 -540242 01/01/1988 31/12/2006 LIBEN Filament yarn of polyester, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre, partially oriented (excl. sewing thread, yarn put up for retail sale and textured yarn) 01/01/1988 31/12/2006 -54024200 01/01/1988 31/12/2006 LIBEN Filament yarn of polyester, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre, partially oriented (excl. sewing thread, yarn put up for retail sale and textured yarn) 01/01/1988 31/12/2006 -540243 01/01/1988 31/12/2006 LIBEN Filament yarn of polyester, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre (excl. sewing thread, yarn put up for retail sale, textured yarn and yarn of partially oriented polyester filament) 01/01/1988 31/12/2006 -54024300 01/01/1998 31/12/2006 LIBEN Filament yarn of polyester, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre (excl. sewing thread, yarn put up for retail sale, textured yarn and yarn of partially oriented polyester filament) 01/01/1998 31/12/2006 -54024310 01/01/1988 31/12/1997 LIBEN Filament yarn of polyester, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre, with a linear density of <= 14 tex per single yarn (excl. sewing thread, yarn put up for retail sale, textured yarn and yarn of partially oriented polyester filament) 01/01/1988 31/12/1997 -54024390 01/01/1988 31/12/1997 LIBEN Filament yarn of polyester, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre, with a linear density of > 14 tex per single yarn (excl. sewing thread, yarn put up for retail sale, textured yarn and yarn of partially oriented polyester filament) 01/01/1988 31/12/1997 -540244 01/01/2007 31/12/2500 LIBEN Synthetic filament elastomeric yarn, single, untwisted or with a twist of <= 50 turns per metre (excl. sewing thread, yarn put up for retail sale, textured yarn and filament yarn of polyester, nylon or other polyamides) 01/01/2007 31/12/2500 -54024400 01/01/2007 31/12/2500 LIBEN Synthetic filament elastomeric yarn, single, untwisted or with a twist of <= 50 turns per metre (excl. sewing thread, yarn put up for retail sale, textured yarn and filament yarn of polyester, nylon or other polyamides) 01/01/2007 31/12/2500 -540245 01/01/2007 31/12/2500 LIBEN Filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre (excl. sewing thread, yarn put up for retail sale, elastomeric yarn, high-tenacity yarn and textured yarn) 01/01/2007 31/12/2500 -54024500 01/01/2007 31/12/2500 LIBEN Filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre (excl. sewing thread, yarn put up for retail sale, elastomeric yarn, high-tenacity yarn and textured yarn) 01/01/2007 31/12/2500 -540246 01/01/2007 31/12/2500 LIBEN Filament yarn of polyester, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre, partially oriented (excl. elastomeric yarn, sewing thread, yarn put up for retail sale and textured yarn) 01/01/2007 31/12/2500 -54024600 01/01/2007 31/12/2500 LIBEN Filament yarn of polyester, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre, partially oriented (excl. elastomeric yarn, sewing thread, yarn put up for retail sale and textured yarn) 01/01/2007 31/12/2500 -540247 01/01/2007 31/12/2500 LIBEN Filament yarn of polyester, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre (excl. elastomeric yarn, sewing thread, yarn put up for retail sale, textured yarn and yarn of partially oriented polyester filament) 01/01/2007 31/12/2500 -54024700 01/01/2007 31/12/2500 LIBEN Filament yarn of polyester, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre (excl. elastomeric yarn, sewing thread, yarn put up for retail sale, textured yarn and yarn of partially oriented polyester filament) 01/01/2007 31/12/2500 -540248 01/01/2007 31/12/2500 LIBEN Filament yarn of polypropylene, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre (excl. elastomeric yarn, sewing thread, yarn put up for retail sale and textured yarn) 01/01/2007 31/12/2500 -54024800 01/01/2007 31/12/2500 LIBEN Filament yarn of polypropylene, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre (excl. elastomeric yarn, sewing thread, yarn put up for retail sale and textured yarn) 01/01/2007 31/12/2500 -540249 01/01/1988 31/12/2500 LIBEN Synthetic filament yarn, incl. synthetic monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre (excl. sewing thread, yarn put up for retail sale, textured yarn, elastomeric yarn and filament yarn of polyester, nylon or other polyamides) 01/01/1988 31/12/2500 -54024900 01/01/2007 31/12/2500 LIBEN Synthetic filament yarn, incl. synthetic monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre (excl. sewing thread, yarn put up for retail sale, textured yarn, elastomeric yarn and filament yarn of polyester, nylon or other polyamides) 01/01/2007 31/12/2500 -54024910 01/01/1988 31/12/2006 LIBEN Synthetic filament elastomeric yarn, single, untwisted or with a twist of <= 50 turns per metre (excl. sewing thread, yarn put up for retail sale, textured yarn and filament yarn of polyester, nylon or other polyamides) 01/01/1988 31/12/2006 -54024991 01/01/1988 31/12/2006 LIBEN Filament yarn of polypropylene, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre (excl. sewing thread, yarn put up for retail sale and textured yarn) 01/01/1988 31/12/2006 -54024999 01/01/1988 31/12/2006 LIBEN Synthetic filament yarn, incl. synthetic monofilament of < 67 decitex, single, untwisted or with a twist of <= 50 turns per metre (excl. sewing thread, yarn put up for retail sale, textured yarn, elastomeric yarn and filament yarn of polyester, nylon or other polyamides) 01/01/1988 31/12/2006 -540251 01/01/1988 31/12/2500 LIBEN Filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, single, with a twist of > 50 turns per metre (excl. sewing thread, yarn put up for retail sale, high-tenacity yarn or textured yarn) 01/01/1988 31/12/2500 -54025100 01/01/1998 31/12/2500 LIBEN Filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, single, with a twist of > 50 turns per metre (excl. sewing thread, yarn put up for retail sale, high-tenacity yarn or textured yarn) 01/01/1998 31/12/2500 -54025110 01/01/1988 31/12/1997 LIBEN Filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, single, with a twist of > 50 turns per metre and a linear density of <= 7 tex per single yarn (excl. sewing thread, yarn put up for retail sale, high tenacity yarn or textured yarn) 01/01/1988 31/12/1997 -54025130 01/01/1988 31/12/1997 LIBEN Filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, single, with a twist of > 50 turns per metre and a linear density of > 7 tex to 33 tex per single yarn (excl. sewing thread, yarn put up for retail sale, high tenacity yarn or textured yarn) 01/01/1988 31/12/1997 -54025190 01/01/1988 31/12/1997 LIBEN Filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, single, with a twist of > 50 turns per metre and a linear density of > 33 tex per single yarn (excl. sewing thread, yarn put up for retail sale, high tenacity yarn or textured yarn) 01/01/1988 31/12/1997 -540252 01/01/1988 31/12/2500 LIBEN Filament yarn of polyester, incl. monofilament of < 67 decitex, single, with a twist of > 50 turns per metre (excl. sewing thread, yarn put up for retail sale and textured yarn) 01/01/1988 31/12/2500 -54025200 01/01/1998 31/12/2500 LIBEN Filament yarn of polyester, incl. monofilament of < 67 decitex, single, with a twist of > 50 turns per metre (excl. sewing thread, yarn put up for retail sale and textured yarn) 01/01/1998 31/12/2500 -54025210 01/01/1988 31/12/1997 LIBEN Filament yarn of polyester, incl. monofilament of < 67 decitex, single, with a twist of > 50 turns per metre and a linear density of <= 14 tex (excl. sewing thread, yarn put up for retail sale and textured yarn) 01/01/1988 31/12/1997 -54025290 01/01/1988 31/12/1997 LIBEN Filament yarn of polyester, incl. monofilament of < 67 decitex, single, with a twist of > 50 turns per metre and a linear density of > 14 tex (excl. sewing thread, yarn put up for retail sale and textured yarn) 01/01/1988 31/12/1997 -540253 01/01/2017 31/12/2500 LIBEN Filament yarn of polypropylene, incl. monofilament of < 67 decitex, single, with a twist of > 50 turns per metre (excl. sewing thread, yarn put up for retail sale and textured yarn) 01/01/2017 31/12/2500 -54025300 01/01/2017 31/12/2500 LIBEN Filament yarn of polypropylene, incl. monofilament of < 67 decitex, single, with a twist of > 50 turns per metre (excl. sewing thread, yarn put up for retail sale and textured yarn) 01/01/2017 31/12/2500 -540259 01/01/1988 31/12/2500 LIBEN Synthetic filament yarn, incl. synthetic monofilament of < 67 decitex, single, with a twist of > 50 turns per metre (excl. sewing thread, yarn put up for retail sale, textured yarn and filament yarn of polyester, polypropylene, nylon or other polyamides) 01/01/1988 31/12/2500 -54025900 01/01/2017 31/12/2500 LIBEN Synthetic filament yarn, incl. synthetic monofilament of < 67 decitex, single, with a twist of > 50 turns per metre (excl. sewing thread, yarn put up for retail sale, textured yarn and filament yarn of polyester, polypropylene, nylon or other polyamides) 01/01/2017 31/12/2500 -54025910 01/01/1988 31/12/2016 LIBEN Filament yarn of polypropylene, incl. monofilament of < 67 decitex, single, with a twist of > 50 turns per metre (excl. sewing thread, yarn put up for retail sale and textured yarn) 01/01/1988 31/12/2016 -54025990 01/01/1988 31/12/2016 LIBEN Synthetic filament yarn, incl. synthetic monofilament of < 67 decitex, single, with a twist of > 50 turns per metre (excl. sewing thread, yarn put up for retail sale, textured yarn and filament yarn of polypropylene, polyester, nylon or other polyamides) 01/01/1988 31/12/2016 -540261 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex (excl. sewing thread, yarn put up for retail sale and high-tenacity yarn or textured yarn) 01/01/1988 31/12/2500 -54026100 01/01/1998 31/12/2500 LIBEN Multiple "folded" or cabled filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex (excl. sewing thread, yarn put up for retail sale and high-tenacity yarn or textured yarn) 01/01/1998 31/12/2500 -54026110 01/01/1988 31/12/1997 LIBEN Multiple "folded" or cabled filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, with a linear density of <= 7 tex per single yarn (excl. sewing thread, yarn put up for retail sale and high tenacity yarn or textured yarn) 01/01/1988 31/12/1997 -54026130 01/01/1988 31/12/1997 LIBEN Multiple "folded" or cabled filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, with a linear density of > 7 tex to 33 tex per single yarn (excl. sewing thread, yarn put up for retail sale and high tenacity yarn or textured yarn) 01/01/1988 31/12/1997 -54026190 01/01/1988 31/12/1997 LIBEN Multiple "folded" or cabled filament yarn of nylon or other polyamides, incl. monofilament of < 67 decitex, with a linear density of > 33 tex per single yarn (excl. sewing thread, yarn put up for retail sale and high tenacity yarn or textured yarn) 01/01/1988 31/12/1997 -540262 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled filament yarn of polyester, incl. monofilament of < 67 decitex (excl. sewing thread, yarn put up for retail sale and textured yarn) 01/01/1988 31/12/2500 -54026200 01/01/1998 31/12/2500 LIBEN Multiple "folded" or cabled filament yarn of polyester, incl. monofilament of < 67 decitex (excl. sewing thread, yarn put up for retail sale and textured yarn) 01/01/1998 31/12/2500 -54026210 01/01/1988 31/12/1997 LIBEN Multiple "folded" or cabled filament yarn of polyester, incl. monofilament of < 67 decitex, with a linear density of <= 14 tex per single yarn (excl. sewing thread, yarn put up for retail sale and textured yarn) 01/01/1988 31/12/1997 -54026290 01/01/1988 31/12/1997 LIBEN Multiple "folded" or cabled filament yarn of polyester, incl. monofilament of < 67 decitex, with a linear density of > 14 tex per single yarn (excl. sewing thread, yarn put up for retail sale and textured yarn) 01/01/1988 31/12/1997 -540263 01/01/2017 31/12/2500 LIBEN Multiple "folded" or cabled filament yarn of polypropylene, incl. monofilament of < 67 decitex (excl. sewing thread, yarn put up for retail sale and textured yarn) 01/01/2017 31/12/2500 -54026300 01/01/2017 31/12/2500 LIBEN Multiple "folded" or cabled filament yarn of polypropylene, incl. monofilament of < 67 decitex (excl. sewing thread, yarn put up for retail sale and textured yarn) 01/01/2017 31/12/2500 -540269 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled synthetic filament yarn, incl. synthetic monofilament of < 67 decitex (excl. sewing thread, yarn put up for retail sale, textured yarn and filament yarn of polyester, polypropylene, nylon or other polyamides) 01/01/1988 31/12/2500 -54026900 01/01/2017 31/12/2500 LIBEN Multiple "folded" or cabled synthetic filament yarn, incl. synthetic monofilament of < 67 decitex (excl. sewing thread, yarn put up for retail sale, textured yarn and filament yarn of polyester, polypropylene, nylon or other polyamides) 01/01/2017 31/12/2500 -54026910 01/01/1988 31/12/2016 LIBEN Multiple "folded" or cabled synthetic filament yarn of polypropylene, incl. monofilament of < 67 decitex (excl. sewing thread, yarn put up for retail sale and textured yarn) 01/01/1988 31/12/2016 -54026990 01/01/1988 31/12/2016 LIBEN Multiple "folded" or cabled synthetic filament yarn, incl. synthetic monofilament of < 67 decitex (excl. sewing thread, yarn put up for retail sale, textured yarn and filament yarn of polypropylene, polyester, nylon or other polyamides) 01/01/1988 31/12/2016 -5402S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 5402 and SITC section 6 01/01/1997 31/12/2500 -5402S651 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 5402 and SITC group 651 01/01/1997 31/12/2500 -5402S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5402 and SITC section 9 01/01/2002 31/12/2500 -5402S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5402 and SITC group 999 01/01/2002 31/12/2500 -5403 01/01/1988 31/12/2500 LIBEN Artificial filament yarn, incl. artificial monofilament of < 67 decitex (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -540310 01/01/1988 31/12/2500 LIBEN High-tenacity yarn of viscose rayon filament (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -54031000 01/01/1988 31/12/2500 LIBEN High-tenacity yarn of viscose rayon filament (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -540320 01/01/1988 31/12/2006 LIBEN Textured artificial filament yarn (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2006 -54032000 01/01/2003 31/12/2006 LIBEN Textured artificial filament yarn (excl. sewing thread and yarn put up for retail sale) 01/01/2003 31/12/2006 -54032010 01/01/1988 31/12/2002 LIBEN Garne, texturiert, aus Celluloseacetat-Filamenten (ausg. Nähgarne sowie Garne in Aufmachungen für den Einzelverkauf) 01/01/1988 31/12/2002 -54032090 01/01/1988 31/12/2002 LIBEN Garne, texturiert, aus künstlichen Filamenten (ausg. Nähgarne, Garne in Aufmachungen für den Einzelverkauf sowie Garne aus Celluloseacetat-Filamenten) 01/01/1988 31/12/2002 -540331 01/01/1988 31/12/2500 LIBEN Yarn of viscose rayon filament, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 120 turns per metre (excl. sewing thread, high-tenacity yarn and yarn put up for retail sale) 01/01/1988 31/12/2500 -54033100 01/01/1988 31/12/2006 LIBEN Yarn of viscose rayon filament, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 120 turns per metre (excl. sewing thread, yarn put up for retail sale, high-tenacity yarn and textured yarn) 01/01/1988 31/12/2006 -54033100 01/01/2007 31/12/2500 LIBEN Yarn of viscose rayon filament, incl. monofilament of < 67 decitex, single, untwisted or with a twist of <= 120 turns per metre (excl. sewing thread, high-tenacity yarn and yarn put up for retail sale) 01/01/2007 31/12/2500 -540332 01/01/1988 31/12/2500 LIBEN Yarn of viscose rayon filament, incl. monofilament of < 67 decitex, single, with a twist of > 120 turns per metre (excl. sewing thread, high-tenacity yarn and yarn put up for retail sale) 01/01/1988 31/12/2500 -54033200 01/01/1988 31/12/2006 LIBEN Yarn of viscose rayon filament, incl. monofilament of < 67 decitex, single, with a twist of > 120 turns per metre (excl. sewing thread, yarn put up for retail sale, high-tenacity yarn and textured yarn) 01/01/1988 31/12/2006 -54033200 01/01/2007 31/12/2500 LIBEN Yarn of viscose rayon filament, incl. monofilament of < 67 decitex, single, with a twist of > 120 turns per metre (excl. sewing thread, high-tenacity yarn and yarn put up for retail sale) 01/01/2007 31/12/2500 -540333 01/01/1988 31/12/2500 LIBEN Filament yarn of cellulose acetate, incl. monofilament of < 67 decitex, single (excl. sewing thread, high-tenacity yarn and yarn put up for retail sale) 01/01/1988 31/12/2500 -54033300 01/01/2003 31/12/2006 LIBEN Filament yarn of cellulose acetate, incl. monofilament of < 67 decitex, single (excl. sewing thread, yarn put up for retail sale, high-tenacity yarn and textured yarn) 01/01/2003 31/12/2006 -54033300 01/01/2007 31/12/2500 LIBEN Filament yarn of cellulose acetate, incl. monofilament of < 67 decitex, single (excl. sewing thread, high-tenacity yarn and yarn put up for retail sale) 01/01/2007 31/12/2500 -54033310 01/01/1988 31/12/2002 LIBEN Garne aus Celluloseacetat-Filamenten, einschl. Monofile von < 67 dtex, ungezwirnt, ungedreht oder mit <= 250 Drehungen je Meter (ausg. Nähgarne, Garne in Aufmachungen für den Einzelverkauf sowie texturierte Garne) 01/01/1988 31/12/2002 -54033390 01/01/1988 31/12/2002 LIBEN Garne aus Celluloseacetat-Filamenten, einschl. Monofile von < 67 dtex, ungezwirnt, mit > 250 Drehungen je Meter (ausg. Nähgarne, Garne in Aufmachungen für den Einzelverkauf sowie texturierte Garne) 01/01/1988 31/12/2002 -540339 01/01/1988 31/12/2500 LIBEN Artificial filament yarn, incl. artificial monofilament of < 67 decitex, single (excl. sewing thread, filament yarn of viscose or cellulose acetate and yarn put up for retail sale) 01/01/1988 31/12/2500 -54033900 01/01/1988 31/12/2006 LIBEN Artificial filament yarn, incl. artificial monofilament of < 67 decitex, single (excl. sewing thread, yarn put up for retail sale, textured yarn and filament yarn of viscose or cellulose acetate) 01/01/1988 31/12/2006 -54033900 01/01/2007 31/12/2500 LIBEN Artificial filament yarn, incl. artificial monofilament of < 67 decitex, single (excl. sewing thread, filament yarn of viscose or cellulose acetate and yarn put up for retail sale) 01/01/2007 31/12/2500 -540341 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled filament yarn of viscose rayon, incl. monofilament of < 67 decitex (excl. sewing thread, high-tenacity yarn and yarn put up for retail sale) 01/01/1988 31/12/2500 -54034100 01/01/1988 31/12/2006 LIBEN Multiple "folded" or cabled filament rayon yarn of viscose, incl. monofilament of < 67 decitex (excl. sewing threads, yarn put up for retail sale, high-tenacity yarn and textured yarn) 01/01/1988 31/12/2006 -54034100 01/01/2007 31/12/2500 LIBEN Multiple "folded" or cabled filament yarn of viscose rayon, incl. monofilament of < 67 decitex (excl. sewing thread, high-tenacity yarn and yarn put up for retail sale) 01/01/2007 31/12/2500 -540342 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled filament yarn of cellulose acetate, incl. monofilament of < 67 decitex (excl. sewing thread, high-tenacity yarn and yarn put up for retail sale) 01/01/1988 31/12/2500 -54034200 01/01/1988 31/12/2006 LIBEN Multiple "folded" or cabled filament yarn of cellulose acetate, incl. monofilament of < 67 decitex (excl. sewing thread, yarn put up for retail sale, high-tenacity yarn and textured yarn) 01/01/1988 31/12/2006 -54034200 01/01/2007 31/12/2500 LIBEN Multiple "folded" or cabled filament yarn of cellulose acetate, incl. monofilament of < 67 decitex (excl. sewing thread, high-tenacity yarn and yarn put up for retail sale) 01/01/2007 31/12/2500 -540349 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled artificial filament yarn, incl. artificial monofilament of < 67 decitex (excl. sewing thread, filament yarn of viscose or cellulose acetate and yarn put up for retail sale) 01/01/1988 31/12/2500 -54034900 01/01/1988 31/12/2006 LIBEN Multiple "folded" or cabled artificial filament yarn, incl. artificial monofilament of < 67 decitex (excl. sewing thread, yarn put up for retail sale, textured yarn and filament yarn of viscose or cellulose acetate) 01/01/1988 31/12/2006 -54034900 01/01/2007 31/12/2500 LIBEN Multiple "folded" or cabled artificial filament yarn, incl. artificial monofilament of < 67 decitex (excl. sewing thread, filament yarn of viscose or cellulose acetate and yarn put up for retail sale) 01/01/2007 31/12/2500 -5403S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5403 and SITC section 9 01/01/2002 31/12/2500 -5403S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5403 and SITC group 999 01/01/2002 31/12/2500 -5404 01/01/1988 31/12/2500 LIBEN Synthetic monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm; strip and the like, e.g. artificial straw, of synthetic textile material, with an apparent width of <= 5 mm 01/01/1988 31/12/2500 -540410 01/01/1988 31/12/2006 LIBEN Synthetic monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm 01/01/1988 31/12/2006 -54041010 01/01/1988 31/12/2006 LIBEN Elastomeric monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm 01/01/1988 31/12/2006 -54041090 01/01/1988 31/12/2006 LIBEN Synthetic monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm (excl. elastomers) 01/01/1988 31/12/2006 -540411 01/01/2007 31/12/2500 LIBEN Elastomeric monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm 01/01/2007 31/12/2500 -54041100 01/01/2007 31/12/2500 LIBEN Elastomeric monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm 01/01/2007 31/12/2500 -540412 01/01/2007 31/12/2500 LIBEN Polypropylene monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm (excl. elastomers) 01/01/2007 31/12/2500 -54041200 01/01/2007 31/12/2500 LIBEN Polypropylene monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm (excl. elastomers) 01/01/2007 31/12/2500 -540419 01/01/2007 31/12/2500 LIBEN Synthetic monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm (excl. of elastomers and polypropylene) 01/01/2007 31/12/2500 -54041900 01/01/2007 31/12/2500 LIBEN Synthetic monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm (excl. of elastomers and polypropylene) 01/01/2007 31/12/2500 -540490 01/01/1988 31/12/2500 LIBEN Strip and the like, e.g. artificial straw, of synthetic textile material, with an apparent width of <= 5 mm 01/01/1988 31/12/2500 -54049010 01/01/2009 31/12/2500 LIBEN Strip and the like, e.g. artificial straw, of polypropylene, with an apparent width of <= 5 mm 01/01/2009 31/12/2500 -54049011 01/01/1988 31/12/2008 LIBEN Decorative strip of the type used for packaging, of polypropylene, with an apparent width of <= 5 mm 01/01/1988 31/12/2008 -54049019 01/01/1988 31/12/2008 LIBEN Strip and the like, e.g. artificial straw, of polypropylene, with an apparent width of <= 5 mm (excl. decorative strip of the type used for packaging) 01/01/1988 31/12/2008 -54049090 01/01/1988 31/12/2500 LIBEN Synthetic strip and the like, e.g. artificial straw, of synthetic textile material, with an apparent width of <= 5 mm (excl. that of polypropylene) 01/01/1988 31/12/2500 -5405 01/01/1988 31/12/2500 LIBEN Artificial monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm; strip and the like, e.g. artificial straw, of synthetic textile material, with an apparent width of <= 5 mm 01/01/1988 31/12/2500 -540500 01/01/1988 31/12/2500 LIBEN Artificial monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm; strip and the like, e.g. artificial straw, of synthetic textile material, with an apparent width of <= 5 mm 01/01/1988 31/12/2500 -54050000 01/01/1988 31/12/2500 LIBEN Artificial monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm; strip and the like, e.g. artificial straw, of synthetic textile material, with an apparent width of <= 5 mm 01/01/1988 31/12/2500 -5406 01/01/1988 31/12/2500 LIBEN Man-made filament yarn, put up for retail sale (excl. sewing thread) 01/01/1988 31/12/2500 -540600 01/01/2007 31/12/2500 LIBEN Man-made filament yarn, put up for retail sale (excl. sewing thread) 01/01/2007 31/12/2500 -54060000 01/01/2007 31/12/2500 LIBEN Man-made filament yarn, put up for retail sale (excl. sewing thread) 01/01/2007 31/12/2500 -540610 01/01/1988 31/12/2006 LIBEN Synthetic filament yarn, put up for retail sale (excl. sewing thread) 01/01/1988 31/12/2006 -54061000 01/01/1988 31/12/2006 LIBEN Synthetic filament yarn, put up for retail sale (excl. sewing thread) 01/01/1988 31/12/2006 -540620 01/01/1988 31/12/2006 LIBEN Artificial filament yarn, put up for retail sale (excl. sewing thread) 01/01/1988 31/12/2006 -54062000 01/01/1988 31/12/2006 LIBEN Artificial filament yarn, put up for retail sale (excl. sewing thread) 01/01/1988 31/12/2006 -5407 01/01/1988 31/12/2500 LIBEN Woven fabrics of synthetic filament yarn, incl. monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm 01/01/1988 31/12/2500 -540710 01/01/1988 31/12/2500 LIBEN Woven fabrics of high-tenacity yarn, nylon, other polyamides or polyesters, incl. monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm 01/01/1988 31/12/2500 -54071000 01/01/1988 31/12/2500 LIBEN Woven fabrics of high-tenacity yarn, nylon, other polyamides or polyesters, incl. monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm 01/01/1988 31/12/2500 -540720 01/01/1988 31/12/2500 LIBEN Woven fabrics of strip or the like, of synthetic filament, incl. monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm 01/01/1988 31/12/2500 -54072011 01/01/1988 31/12/2500 LIBEN Woven fabrics of strip or the like, of polyethylene or polypropylene, incl. monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm, with a width of < 3 m 01/01/1988 31/12/2500 -54072019 01/01/1988 31/12/2500 LIBEN Woven fabrics of strip or the like, of polyethylene or polypropylene, incl. monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm, with a width of >= 3 m 01/01/1988 31/12/2500 -54072090 01/01/1988 31/12/2500 LIBEN Woven fabrics of strip or the like, of synthetic filament, incl. monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm (excl. those of polyethylene or polypropylene) 01/01/1988 31/12/2500 -540730 01/01/1988 31/12/2500 LIBEN Woven fabrics of synthetic filament yarn, incl. monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm, consisting of layers of parallel textile yarns superimposed on each other at acute or right angles, the layers being bonded at the intersections of the yarns by an adhesive or by thermal bonding 01/01/1988 31/12/2500 -54073000 01/01/1988 31/12/2500 LIBEN Woven fabrics of synthetic filament yarn, incl. monofilament of >= 67 decitex and with a cross sectional dimension of <= 1 mm, consisting of layers of parallel textile yarns superimposed on each other at acute or right angles, the layers being bonded at the intersections of the yarns by an adhesive or by thermal bonding 01/01/1988 31/12/2500 -540741 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of filaments of nylon or other polyamides, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, unbleached or bleached 01/01/1988 31/12/2500 -54074100 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of filaments of nylon or other polyamides, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, unbleached or bleached 01/01/1988 31/12/2500 -540742 01/01/1988 31/12/2500 LIBEN Woven fabrics of filament yarn containing >= 85% nylon or other polyamides by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed 01/01/1988 31/12/2500 -54074200 01/01/1996 31/12/2500 LIBEN Woven fabrics of filament yarn containing >= 85% nylon or other polyamides by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed 01/01/1996 31/12/2500 -54074210 01/01/1988 31/12/1995 LIBEN Woven fabrics of filament yarn containing >= 85% nylon or other polyamides by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed, with a width of <= 57 cm 01/01/1988 31/12/1995 -54074290 01/01/1988 31/12/1995 LIBEN Woven fabrics of filament yarn containing >= 85% nylon or other polyamides by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed, with a width of > 57 cm 01/01/1988 31/12/1995 -540743 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of filaments of nylon or other polyamides by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours 01/01/1988 31/12/2500 -54074300 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of filaments of nylon or other polyamides by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours 01/01/1988 31/12/2500 -540744 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of filaments of nylon or other polyamides by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, printed 01/01/1988 31/12/2500 -54074400 01/01/1996 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of filaments of nylon or other polyamides by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, printed 01/01/1996 31/12/2500 -54074410 01/01/1988 31/12/1995 LIBEN Woven fabrics of filament yarn containing >= 85% nylon or other polyamides by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, printed, with a width of <= 57 cm 01/01/1988 31/12/1995 -54074490 01/01/1988 31/12/1995 LIBEN Woven fabrics of filament yarn containing >= 85% nylon or other polyamides by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, printed, with a width of > 57 cm 01/01/1988 31/12/1995 -540751 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of textured polyester filaments, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, unbleached or bleached 01/01/1988 31/12/2500 -54075100 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of textured polyester filaments, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, unbleached or bleached 01/01/1988 31/12/2500 -540752 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of textured polyester filaments, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed 01/01/1988 31/12/2500 -54075200 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of textured polyester filaments, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed 01/01/1988 31/12/2500 -540753 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of textured polyester filaments, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours 01/01/1988 31/12/2500 -54075300 01/01/1996 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of textured polyester filaments, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours 01/01/1996 31/12/2500 -54075310 01/01/1988 31/12/1995 LIBEN Woven fabrics of filament yarn containing >= 85% textured polyester by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours, with a width of > 57 cm to 75 cm 01/01/1988 31/12/1995 -54075390 01/01/1988 31/12/1995 LIBEN Woven fabrics of filament yarn containing >= 85% textured polyester by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours, with a width of > 75 cm to <= 57 cm 01/01/1988 31/12/1995 -540754 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of textured polyester filaments, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, printed 01/01/1988 31/12/2500 -54075400 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of textured polyester filaments, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, printed 01/01/1988 31/12/2500 -540760 01/01/1988 31/12/1995 LIBEN Woven fabrics of filament yarn containing >= 85% non-textured polyester by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm 01/01/1988 31/12/1995 -54076010 01/01/1988 31/12/1995 LIBEN Woven fabrics of filament yarn containing >= 85% non-textured polyester by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, unbleached or bleached 01/01/1988 31/12/1995 -54076030 01/01/1988 31/12/1995 LIBEN Woven fabrics of filament yarn containing >= 85% non-textured polyester by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed 01/01/1988 31/12/1995 -54076051 01/01/1988 31/12/1995 LIBEN Woven fabrics of filament yarn containing >= 85% non-textured polyester by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours, with a width of > 57 cm to 75 cm 01/01/1988 31/12/1995 -54076059 01/01/1988 31/12/1995 LIBEN Woven fabrics of filament yarn containing >= 85% non-textured polyester by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours, with a width of > 75 cm to <= 57 cm 01/01/1988 31/12/1995 -54076090 01/01/1988 31/12/1995 LIBEN Woven fabrics of filament yarn containing >= 85% non-textured polyester by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, printed 01/01/1988 31/12/1995 -540761 01/01/1996 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of non-textured polyester filaments, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm 01/01/1996 31/12/2500 -54076110 01/01/1996 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of non-textured polyester filaments, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, unbleached or bleached 01/01/1996 31/12/2500 -54076130 01/01/1996 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of non-textured polyester filaments, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed 01/01/1996 31/12/2500 -54076150 01/01/1996 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of non-textured polyester filaments, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours 01/01/1996 31/12/2500 -54076190 01/01/1996 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of non-textured polyester filaments, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, printed 01/01/1996 31/12/2500 -540769 01/01/1996 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of mixtures of textured and non-textured polyester filaments, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm 01/01/1996 31/12/2500 -54076910 01/01/1996 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of mixtures of textured and non-textured polyester filaments, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, untreated or not further treated than bleached 01/01/1996 31/12/2500 -54076990 01/01/1996 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% by weight of mixtures of textured and non-textured polyester filaments, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed, made of yarn of different colours or printed 01/01/1996 31/12/2500 -540771 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, untreated or not further treated than bleached (excl. those of polyester, nylon or other polyamide filaments or monofilaments, and of mixtures of textured and non-textured polyester filaments) 01/01/1988 31/12/2500 -54077100 01/01/1988 31/12/1995 LIBEN Woven fabrics of yarn containing >= 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, unbleached or bleached (excl. those of polyester, nylon or other polyamide filaments, and of monofilament) 01/01/1988 31/12/1995 -54077100 01/01/1996 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, untreated or not further treated than bleached (excl. those of polyester, nylon or other polyamide filaments or monofilaments, and of mixtures of textured and non-textured polyester filaments) 01/01/1996 31/12/2500 -540772 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed (excl. those of polyester, nylon or other polyamide filaments or monofilaments, and of mixtures of textured and non-textured polyester filaments) 01/01/1988 31/12/2500 -54077200 01/01/1988 31/12/1995 LIBEN Woven fabrics of yarn containing >= 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed (excl. those of polyester, nylon or other polyamide filaments, and of monofilament) 01/01/1988 31/12/1995 -54077200 01/01/1996 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed (excl. those of polyester, nylon or other polyamide filaments or monofilaments, and of mixtures of textured and non-textured polyester filaments) 01/01/1996 31/12/2500 -540773 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours (excl. those of polyester, nylon or other polyamide filaments or monofilaments, and of mixtures of textured and non-textured polyester filaments) 01/01/1988 31/12/2500 -54077300 01/01/1996 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours (excl. those of polyester, nylon or other polyamide filaments or monofilaments, and of mixtures of textured and non-textured polyester filaments) 01/01/1996 31/12/2500 -54077310 01/01/1988 31/12/1995 LIBEN Jacquard fabrics of yarn containing >= 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours, with a width of > 115 cm but < 140 cm and weighing > 250 g/m² (excl. those of polyester, nylon or other polyamide filaments, and of monofilament) 01/01/1988 31/12/1995 -54077391 01/01/1988 31/12/1995 LIBEN Woven fabrics of yarn containing >= 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours, with a width of > 57 cm to 75 cm (excl. those of polyester, nylon or other polyamide filaments, and of monofilament) 01/01/1988 31/12/1995 -54077399 01/01/1988 31/12/1995 LIBEN Woven fabrics of yarn containing >= 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours, with a width of > 75 cm to <= 57 cm (excl. those of polyester, nylon or other polyamide filaments, monofilament, and jacquard fabrics with a width of > 115 cm but < 140 cm and weighing > 250 g/m²) 01/01/1988 31/12/1995 -540774 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, printed (excl. those of polyester, nylon or other polyamide filaments or monofilaments, and of mixtures of textured and non-textured polyester filaments) 01/01/1988 31/12/2500 -54077400 01/01/1988 31/12/1995 LIBEN Woven fabrics of yarn containing >= 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, printed (excl. those of polyester, nylon or other polyamide filaments, and monofilament) 01/01/1988 31/12/1995 -54077400 01/01/1996 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, printed (excl. those of polyester, nylon or other polyamide filaments or monofilaments, and of mixtures of textured and non-textured polyester filaments) 01/01/1996 31/12/2500 -540781 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, mixed principally or solely with cotton, unbleached or bleached 01/01/1988 31/12/2500 -54078100 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, mixed principally or solely with cotton, unbleached or bleached 01/01/1988 31/12/2500 -540782 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, mixed principally or solely with cotton, dyed 01/01/1988 31/12/2500 -54078200 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, mixed principally or solely with cotton, dyed 01/01/1988 31/12/2500 -540783 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, mixed principally or solely with cotton, made of yarn of different colours 01/01/1988 31/12/2500 -54078300 01/01/1996 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, mixed principally or solely with cotton, made of yarn of different colours 01/01/1996 31/12/2500 -54078310 01/01/1988 31/12/1995 LIBEN Jacquard fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, mixed principally or solely with wool, made of yarn of different colours, with a width of > 115 cm but < 140 cm and weighing > 250 g/m² 01/01/1988 31/12/1995 -54078390 01/01/1988 31/12/1995 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, mixed principally or solely with wool, made of yarn of different colours (excl. jacquard fabrics with a width of > 115 cm but < 140 cm and weighing > 250 g/m²) 01/01/1988 31/12/1995 -540784 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, mixed principally or solely with cotton, printed 01/01/1988 31/12/2500 -54078400 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, mixed principally or solely with cotton, printed 01/01/1988 31/12/2500 -540791 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, unbleached or bleached, other than those mixed principally or solely with cotton 01/01/1988 31/12/2500 -54079100 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, unbleached or bleached, other than those mixed principally or solely with cotton 01/01/1988 31/12/2500 -540792 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed, other than those mixed principally or solely with cotton 01/01/1988 31/12/2500 -54079200 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed, other than those mixed principally or solely with cotton 01/01/1988 31/12/2500 -540793 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours, other than those mixed principally or solely with cotton 01/01/1988 31/12/2500 -54079300 01/01/1996 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours, other than those mixed principally or solely with cotton 01/01/1996 31/12/2500 -54079310 01/01/1988 31/12/1995 LIBEN Jacquard fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, other than those mixed principally or solely with wool, made of yarn of different colours, with a width of > 115 cm but < 140 cm and weighing > 250 g/m² 01/01/1988 31/12/1995 -54079390 01/01/1988 31/12/1995 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, other than those mixed principally or solely with wool, made of yarn of different colours (excl. jacquard fabrics with a width of > 115 cm but < 140 cm and weighing > 250 g/m²) 01/01/1988 31/12/1995 -540794 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, printed, other than those mixed principally or solely with cotton 01/01/1988 31/12/2500 -54079400 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% synthetic filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, printed, other than those mixed principally or solely with cotton 01/01/1988 31/12/2500 -5408 01/01/1988 31/12/2500 LIBEN Woven fabrics of artificial filament yarn, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm 01/01/1988 31/12/2500 -540810 01/01/1988 31/12/2500 LIBEN Woven fabrics of high-tenacity viscose yarn, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm 01/01/1988 31/12/2500 -54081000 01/01/1988 31/12/2500 LIBEN Woven fabrics of high-tenacity viscose yarn, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm 01/01/1988 31/12/2500 -540821 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, unbleached or bleached (excl. those of high-tenacity viscose yarn) 01/01/1988 31/12/2500 -54082100 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, unbleached or bleached (excl. those of high-tenacity viscose yarn) 01/01/1988 31/12/2500 -540822 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed (excl. those of high-tenacity viscose yarn) 01/01/1988 31/12/2500 -54082210 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed, with a width of > 135 cm to 155 cm, in plain, twill, cross twill or satin weave (excl. those of high-tenacity viscose yarn) 01/01/1988 31/12/2500 -54082290 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed (excl. those with a width of > 135 cm to 155 cm, in plain, twill, cross twill or satin weave, and fabrics of high-tenacity viscose yarn) 01/01/1988 31/12/2500 -540823 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours (excl. those of high-tenacity viscose yarn) 01/01/1988 31/12/2500 -54082300 01/01/2009 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours (excl. those of high-tenacity viscose yarn) 01/01/2009 31/12/2500 -54082310 01/01/1988 31/12/2008 LIBEN Woven jacquard fabrics of yarn containing >= 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours, with a width of > 115 cm but < 140 cm, and weighing > 250 g/m² (excl. those of high-tenacity viscose yarn) 01/01/1988 31/12/2008 -54082390 01/01/1988 31/12/2008 LIBEN Woven fabrics of yarn containing >= 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours (excl. jacquard fabrics with a width of > 115 cm but < 140 cm, and weighing > 250 g/m², and fabrics of high-tenacity viscose yarn) 01/01/1988 31/12/2008 -540824 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, printed (excl. those of high-tenacity viscose yarn) 01/01/1988 31/12/2500 -54082400 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing >= 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, printed (excl. those of high-tenacity viscose yarn) 01/01/1988 31/12/2500 -540831 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, unbleached or bleached (excl. those of high-tenacity viscose yarn) 01/01/1988 31/12/2500 -54083100 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, unbleached or bleached (excl. those of high-tenacity viscose yarn) 01/01/1988 31/12/2500 -540832 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed (excl. those of high-tenacity viscose yarn) 01/01/1988 31/12/2500 -54083200 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, dyed (excl. those of high-tenacity viscose yarn) 01/01/1988 31/12/2500 -540833 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours (excl. those of high-tenacity viscose yarn) 01/01/1988 31/12/2500 -54083300 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, made of yarn of different colours (excl. those of high-tenacity viscose yarn) 01/01/1988 31/12/2500 -540834 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, printed (excl. those of high-tenacity viscose yarn) 01/01/1988 31/12/2500 -54083400 01/01/1988 31/12/2500 LIBEN Woven fabrics of yarn containing predominantly, but < 85% artificial filament by weight, incl. monofilament of >= 67 decitex and a maximum diameter of <= 1 mm, printed (excl. those of high-tenacity viscose yarn) 01/01/1988 31/12/2500 -54CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 54 01/01/2002 31/12/2500 -54CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 54 01/01/2002 31/12/2500 -54CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 54 01/01/2002 31/12/2500 -54MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -54MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -54MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -54SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 54 01/01/1988 31/12/2500 -54SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 54 and SITC section 0 01/01/1997 31/12/2001 -54SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 54 and SITC group 000 01/01/1997 31/12/2001 -54SSS6 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 54 and SITC section 6 01/01/1990 31/12/2500 -54SSS651 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 54 and SITC group 651 01/01/1990 31/12/2500 -54SSS653 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 54 and SITC group 653 01/01/1997 31/12/2500 -54SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 54 and SITC section 9 01/01/1988 31/12/1996 -54SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 54 and SITC section 9 01/01/1997 31/12/2500 -54SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 54 and SITC group 999 01/01/1988 31/12/1996 -54SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 54 and SITC group 999 01/01/1997 31/12/2500 -55 01/01/1988 31/12/2500 LIBEN MAN-MADE STAPLE FIBRES 01/01/1988 31/12/2500 -5501 01/01/1988 31/12/2500 LIBEN Synthetic filament tow as specified in Note 1 to chapter 55 01/01/1988 31/12/2500 -550110 01/01/1988 31/12/2500 LIBEN Filament tow as specified in Note 1 to chapter 55, of nylon or other polyamides 01/01/1988 31/12/2500 -55011000 01/01/1988 31/12/2500 LIBEN Filament tow as specified in Note 1 to chapter 55, of nylon or other polyamides 01/01/1988 31/12/2500 -550120 01/01/1988 31/12/2500 LIBEN Filament tow as specified in Note 1 to chapter 55, of polyesters 01/01/1988 31/12/2500 -55012000 01/01/1988 31/12/2500 LIBEN Filament tow as specified in Note 1 to chapter 55, of polyesters 01/01/1988 31/12/2500 -550130 01/01/1988 31/12/2500 LIBEN Filament tow as specified in Note 1 to chapter 55, acrylic or modacrylic 01/01/1988 31/12/2500 -55013000 01/01/1988 31/12/2500 LIBEN Filament tow as specified in Note 1 to chapter 55, acrylic or modacrylic 01/01/1988 31/12/2500 -550140 01/01/2007 31/12/2500 LIBEN Synthetic filament tow as specified in Note 1 to chapter 55, of polypropylene 01/01/2007 31/12/2500 -55014000 01/01/2007 31/12/2500 LIBEN Synthetic filament tow as specified in Note 1 to chapter 55, of polypropylene 01/01/2007 31/12/2500 -550190 01/01/1988 31/12/2500 LIBEN Synthetic filament tow as specified in Note 1 to chapter 55 (excl. that of acrylic, modacrylic, polyesters, polypropylene, nylon or other polyamide filament) 01/01/1988 31/12/2500 -55019000 01/01/1988 31/12/1997 LIBEN Synthetic filament tow as specified in Note 1 to chapter 55 (excl. that of acrylic, modacrylic, polyesters, nylon or other polyamide filament) 01/01/1988 31/12/1997 -55019000 01/01/2007 31/12/2500 LIBEN Synthetic filament tow as specified in Note 1 to chapter 55 (excl. that of acrylic, modacrylic, polyesters, polypropylene, nylon or other polyamide filament) 01/01/2007 31/12/2500 -55019010 01/01/1998 31/12/2006 LIBEN Synthetic filament tow as specified in Note 1 to chapter 55, of polypropylene 01/01/1998 31/12/2006 -55019090 01/01/1998 31/12/2006 LIBEN Synthetic filament tow as specified in Note 1 to chapter 55 (excl. that of acrylic, modacrylic, polyesters, polypropylene, nylon or other polyamide filament) 01/01/1998 31/12/2006 -5501S2 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 5501 and SITC section 2 01/01/2001 31/12/2500 -5501S266 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 5501 and SITC group 266 01/01/2001 31/12/2500 -5501S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5501 and SITC section 9 01/01/2002 31/12/2500 -5501S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5501 and SITC group 999 01/01/2002 31/12/2500 -5502 01/01/1988 31/12/2500 LIBEN Artificial filament tow as specified in Note 1 to chapter 55 01/01/1988 31/12/2500 -550200 01/01/1988 31/12/2016 LIBEN Artificial filament tow as specified in Note 1 to chapter 55 01/01/1988 31/12/2016 -55020010 01/01/1988 31/12/2016 LIBEN Artificial filament tow as specified in Note 1 to chapter 55, of viscose rayon 01/01/1988 31/12/2016 -55020040 01/01/1998 31/12/2016 LIBEN Artificial filament tow as specified in Note 1 to chapter 55, of acetate 01/01/1998 31/12/2016 -55020080 01/01/1998 31/12/2016 LIBEN Artificial filament tow, as specified in Note 1 to chapter 55 (excl. of viscose rayon or acetate) 01/01/1998 31/12/2016 -55020090 01/01/1988 31/12/1997 LIBEN Artificial filament tow, as specified in Note 1 to chapter 55 (excl. viscose rayon) 01/01/1988 31/12/1997 -550210 01/01/2017 31/12/2500 LIBEN Artificial filament tow as specified in Note 1 to chapter 55, of acetate 01/01/2017 31/12/2500 -55021000 01/01/2017 31/12/2500 LIBEN Artificial filament tow as specified in Note 1 to chapter 55, of acetate 01/01/2017 31/12/2500 -550290 01/01/2017 31/12/2500 LIBEN Artificial filament tow, as specified in Note 1 to chapter 55 (excl. of acetate) 01/01/2017 31/12/2500 -55029000 01/01/2017 31/12/2500 LIBEN Artificial filament tow, as specified in Note 1 to chapter 55 (excl. of acetate) 01/01/2017 31/12/2500 -5502S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5502 and SITC section 9 01/01/2002 31/12/2500 -5502S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5502 and SITC group 999 01/01/2002 31/12/2500 -5503 01/01/1988 31/12/2500 LIBEN Synthetic staple fibres, not carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -550310 01/01/1988 31/12/2006 LIBEN Staple fibres of nylon or other polyamides, not carded, combed or otherwise processed for spinning 01/01/1988 31/12/2006 -55031010 01/01/2003 31/12/2006 LIBEN Staple fibres of aramids, not carded, combed or otherwise processed for spinning 01/01/2003 31/12/2006 -55031011 01/01/1988 31/12/2002 LIBEN Spinnfasern aus Aramid, hochfest, weder gekrempelt noch gekämmt noch anders für die Spinnerei bearbeitet 01/01/1988 31/12/2002 -55031019 01/01/1988 31/12/2002 LIBEN Spinnfasern aus Aramid, weder gekrempelt noch gekämmt noch anders für die Spinnerei bearbeitet (ausg. hochfest) 01/01/1988 31/12/2002 -55031090 01/01/1988 31/12/2006 LIBEN Staple fibres of nylon or other polyamides, not carded, combed or otherwise processed for spinning (excl. those of aramids) 01/01/1988 31/12/2006 -550311 01/01/2007 31/12/2500 LIBEN Staple fibres of aramids, not carded, combed or otherwise processed for spinning 01/01/2007 31/12/2500 -55031100 01/01/2007 31/12/2500 LIBEN Staple fibres of aramids, not carded, combed or otherwise processed for spinning 01/01/2007 31/12/2500 -550319 01/01/2007 31/12/2500 LIBEN Staple fibres of nylon or other polyamides, not carded, combed or otherwise processed for spinning (excl. those of aramids) 01/01/2007 31/12/2500 -55031900 01/01/2007 31/12/2500 LIBEN Staple fibres of nylon or other polyamides, not carded, combed or otherwise processed for spinning (excl. those of aramids) 01/01/2007 31/12/2500 -550320 01/01/1988 31/12/2500 LIBEN Staple fibres of polyesters, not carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -55032000 01/01/1988 31/12/2500 LIBEN Staple fibres of polyesters, not carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -550330 01/01/1988 31/12/2500 LIBEN Acrylic or modacrylic staple fibres, not carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -55033000 01/01/1988 31/12/2500 LIBEN Acrylic or modacrylic staple fibres, not carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -550340 01/01/1988 31/12/2500 LIBEN Staple fibres of polypropylene, not carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -55034000 01/01/1988 31/12/2500 LIBEN Staple fibres of polypropylene, not carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -550390 01/01/1988 31/12/2500 LIBEN Synthetic staple fibres, not carded, combed or otherwise processed for spinning (excl. those of polypropylene, acrylic, modacrylic, polyesters, nylon or other polyamides) 01/01/1988 31/12/2500 -55039000 01/01/2009 31/12/2500 LIBEN Synthetic staple fibres, not carded, combed or otherwise processed for spinning (excl. those of polypropylene, acrylic, modacrylic, polyesters, nylon or other polyamides) 01/01/2009 31/12/2500 -55039010 01/01/1988 31/12/2008 LIBEN Staple chlorofibres, not carded, combed or otherwise processed for spinning 01/01/1988 31/12/2008 -55039090 01/01/1988 31/12/2008 LIBEN Synthetic staple fibres, not carded, combed or otherwise processed for spinning (excl. polypropylene, acrylic, modacrylic, polyester, nylon or other polyamides, and staple chlorofibres) 01/01/1988 31/12/2008 -5503S2 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 5503 and SITC section 2 01/01/2001 31/12/2500 -5503S266 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 5503 and SITC group 266 01/01/2001 31/12/2500 -5503S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5503 and SITC section 9 01/01/2002 31/12/2500 -5503S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5503 and SITC group 999 01/01/2002 31/12/2500 -5504 01/01/1988 31/12/2500 LIBEN Artificial staple fibres, not carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -550410 01/01/1988 31/12/2500 LIBEN Staple fibres of viscose rayon, not carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -55041000 01/01/1988 31/12/2500 LIBEN Staple fibres of viscose rayon, not carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -550490 01/01/1988 31/12/2500 LIBEN Artificial staple fibres, not carded, combed or otherwise processed for spinning (excl. those of viscose rayon) 01/01/1988 31/12/2500 -55049000 01/01/1988 31/12/2500 LIBEN Artificial staple fibres, not carded, combed or otherwise processed for spinning (excl. those of viscose rayon) 01/01/1988 31/12/2500 -5504S2 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 5504 and SITC section 2 01/01/1997 31/12/2500 -5504S267 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 5504 and SITC group 267 01/01/1997 31/12/2500 -5504S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5504 and SITC section 9 01/01/2002 31/12/2500 -5504S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5504 and SITC group 999 01/01/2002 31/12/2500 -5505 01/01/1988 31/12/2500 LIBEN Waste of man-made staple fibres, incl. noils, yarn waste and garnetted stock 01/01/1988 31/12/2500 -550510 01/01/1988 31/12/2500 LIBEN Waste of synthetic staple fibres, incl. noils, yarn waste and garnetted stock 01/01/1988 31/12/2500 -55051010 01/01/1988 31/12/2500 LIBEN Waste of staple fibres of nylon or other polyamides, incl. noils, yarn waste and garnetted stock 01/01/1988 31/12/2500 -55051030 01/01/1988 31/12/2500 LIBEN Waste of staple fibres of polyesters, incl. noils, yarn waste and garnetted stock 01/01/1988 31/12/2500 -55051050 01/01/1988 31/12/2500 LIBEN Waste of acrylic or modacrylic staple fibres, incl. noils, yarn waste and garnetted stock 01/01/1988 31/12/2500 -55051070 01/01/1988 31/12/2500 LIBEN Waste of polypropylene staple fibres, incl. noils, yarn waste and garnetted stock 01/01/1988 31/12/2500 -55051090 01/01/1988 31/12/2500 LIBEN Waste of synthetic staple fibres, incl. noils, yarn waste and garnetted stock (excl. that of polypropylene, acrylic, modacrlyic, polyester, nylon and other polyamide staple fibres) 01/01/1988 31/12/2500 -550520 01/01/1988 31/12/2500 LIBEN Waste of artificial staple fibres, incl. noils, yarn waste and garnetted stock 01/01/1988 31/12/2500 -55052000 01/01/1988 31/12/2500 LIBEN Waste of artificial staple fibres, incl. noils, yarn waste and garnetted stock 01/01/1988 31/12/2500 -5505S2 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 5505 and SITC section 2 01/01/1997 31/12/2500 -5505S267 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 5505 and SITC group 267 01/01/1997 31/12/2500 -5506 01/01/1988 31/12/2500 LIBEN Synthetic staple fibres, carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -550610 01/01/1988 31/12/2500 LIBEN Staple fibres of nylon or other polyamides, carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -55061000 01/01/1988 31/12/2500 LIBEN Staple fibres of nylon or other polyamides, carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -550620 01/01/1988 31/12/2500 LIBEN Staple fibres of polyesters, carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -55062000 01/01/1988 31/12/2500 LIBEN Staple fibres of polyesters, carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -550630 01/01/1988 31/12/2500 LIBEN Acrylic or modacrylic staple fibres, carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -55063000 01/01/1988 31/12/2500 LIBEN Acrylic or modacrylic staple fibres, carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -550640 01/01/2017 31/12/2500 LIBEN Staple fibres of polypropylene, carded, combed or otherwise processed for spinning 01/01/2017 31/12/2500 -55064000 01/01/2017 31/12/2500 LIBEN Staple fibres of polypropylene, carded, combed or otherwise processed for spinning 01/01/2017 31/12/2500 -550690 01/01/1988 31/12/2500 LIBEN Synthetic staple fibres carded, combed or otherwise processed for spinning (excl. acrylic, modacrylic, polyester, polypropylene, nylon or other polyamides) 01/01/1988 31/12/2500 -55069000 01/01/2009 31/12/2016 LIBEN Synthetic staple fibres carded, combed or otherwise processed for spinning (excl. acrylic, modacrylic, polyester, nylon or other polyamides) 01/01/2009 31/12/2016 -55069000 01/01/2017 31/12/2500 LIBEN Synthetic staple fibres carded, combed or otherwise processed for spinning (excl. acrylic, modacrylic, polyester, polypropylene, nylon or other polyamides) 01/01/2017 31/12/2500 -55069010 01/01/1988 31/12/2008 LIBEN Staple chlorofibres, carded, combed or otherwise processed for spinning 01/01/1988 31/12/2008 -55069090 01/01/1999 31/12/2008 LIBEN Synthetic staple fibres, carded, combed or otherwise processed for spinning (excl. acrylic, modacrylic, polyesters, nylon or other polyamides, and staple chlorofibres) 01/01/1999 31/12/2008 -55069091 01/01/1988 31/12/1998 LIBEN Staple fibres of polypropylene, carded, combed or otherwise processed for spinning 01/01/1988 31/12/1998 -55069099 01/01/1988 31/12/1998 LIBEN Synthetic staple fibres, carded, combed or otherwise processed for spinning (excl. acrylic, modacrylic, polypropylene, polyester, nylon or other polyamides) 01/01/1988 31/12/1998 -5506S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5506 and SITC section 9 01/01/2002 31/12/2500 -5506S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5506 and SITC group 999 01/01/2002 31/12/2500 -5507 01/01/1988 31/12/2500 LIBEN Artificial staple fibres, carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -550700 01/01/1988 31/12/2500 LIBEN Artificial staple fibres, carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -55070000 01/01/1988 31/12/2500 LIBEN Artificial staple fibres, carded, combed or otherwise processed for spinning 01/01/1988 31/12/2500 -5507S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5507 and SITC section 9 01/01/2002 31/12/2500 -5507S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5507 and SITC group 999 01/01/2002 31/12/2500 -5508 01/01/1988 31/12/2500 LIBEN Sewing thread of man-made staple fibres, whether or not put up for retail sale 01/01/1988 31/12/2500 -550810 01/01/1988 31/12/2500 LIBEN Sewing thread of synthetic staple fibres, whether or not put up for retail sale 01/01/1988 31/12/2500 -55081010 01/01/2005 31/12/2500 LIBEN Sewing thread of synthetic staple fibres (excl. that put up for retail sale) 01/01/2005 31/12/2500 -55081011 01/01/1988 31/12/2004 LIBEN Sewing thread of polyester staple fibres (excl. that put up for retail sale) 01/01/1988 31/12/2004 -55081019 01/01/1988 31/12/2004 LIBEN Sewing thread of synthetic staple fibres (excl. that put up for retail sale and that of polyester staple fibres) 01/01/1988 31/12/2004 -55081090 01/01/1988 31/12/2500 LIBEN Sewing thread of synthetic staple fibres, put up for retail sale 01/01/1988 31/12/2500 -550820 01/01/1988 31/12/2500 LIBEN Sewing thread of artificial staple fibres, whether or not put up for retail sale 01/01/1988 31/12/2500 -55082010 01/01/1988 31/12/2500 LIBEN Sewing thread of artificial staple fibres (excl. that put up for retail sale) 01/01/1988 31/12/2500 -55082090 01/01/1988 31/12/2500 LIBEN Sewing thread of artificial staple fibres, put up for retail sale 01/01/1988 31/12/2500 -5509 01/01/1988 31/12/2500 LIBEN Yarn of synthetic staple fibres (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -550911 01/01/1988 31/12/2500 LIBEN Single yarn containing >= 85% nylon or other polyamide staple fibres by weight (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55091100 01/01/1988 31/12/2500 LIBEN Single yarn containing >= 85% nylon or other polyamide staple fibres by weight (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -550912 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled yarn containing >= 85% nylon or other polyamide staple fibres by weight (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55091200 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled yarn containing >= 85% nylon or other polyamide staple fibres by weight (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -550921 01/01/1988 31/12/2500 LIBEN Single yarn containing >= 85% polyester staple fibres by weight (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55092100 01/01/2005 31/12/2500 LIBEN Single yarn containing >= 85% polyester staple fibres by weight (excl. sewing thread and yarn put up for retail sale) 01/01/2005 31/12/2500 -55092110 01/01/1988 31/12/2004 LIBEN Single yarn containing >= 85% polyester staple fibres by weight, unbleached or bleached only (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2004 -55092190 01/01/1988 31/12/2004 LIBEN Single yarn containing >= 85% polyester staple fibres by weight (excl. unbleached or bleached only, sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2004 -550922 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled yarn containing >= 85% polyester staple fibres by weight (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55092200 01/01/2005 31/12/2500 LIBEN Multiple "folded" or cabled yarn containing >= 85% polyester staple fibres by weight (excl. sewing thread and yarn put up for retail sale) 01/01/2005 31/12/2500 -55092210 01/01/1988 31/12/2004 LIBEN Multiple "folded" or cabled yarn containing >= 85% polyester staple fibres by weight, unbleached or bleached (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2004 -55092290 01/01/1988 31/12/2004 LIBEN Multiple "folded" or cabled yarn containing >= 85% polyester staple fibres by weight (excl. unbleached or bleached, sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2004 -550931 01/01/1988 31/12/2500 LIBEN Single yarn containing >= 85% acrylic or modacrylic staple fibres by weight (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55093100 01/01/2005 31/12/2500 LIBEN Single yarn containing >= 85% acrylic or modacrylic staple fibres by weight (excl. sewing thread and yarn put up for retail sale) 01/01/2005 31/12/2500 -55093110 01/01/1988 31/12/2004 LIBEN Single yarn containing >= 85% acrylic or modacrylic staple fibres by weight, unbleached or bleached (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2004 -55093190 01/01/1988 31/12/2004 LIBEN Single yarn containing >= 85% acrylic or modacrylic staple fibres by weight (excl. unbleached or bleached, sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2004 -550932 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled yarn containing >= 85% acrylic or modacrylic staple fibres by weight (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55093200 01/01/2005 31/12/2500 LIBEN Multiple "folded" or cabled yarn containing >= 85% acrylic or modacrylic staple fibres by weight (excl. sewing thread and yarn put up for retail sale) 01/01/2005 31/12/2500 -55093210 01/01/1988 31/12/2004 LIBEN Multiple "folded" or cabled yarn containing >= 85% acrylic or modacrylic staple fibres by weight, unbleached or bleached (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2004 -55093290 01/01/1988 31/12/2004 LIBEN Multiple "folded" or cabled yarn containing >= 85% acrylic or modacrylic staple fibres by weight (excl. unbleached or bleached, sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2004 -550941 01/01/1988 31/12/2500 LIBEN Single yarn containing >= 85% synthetic staple fibres by weight (excl. sewing thread, yarn put up for retail sale and yarn of acrylic, modacrylic, polyester, nylon or other polyamide staple fibres) 01/01/1988 31/12/2500 -55094100 01/01/2005 31/12/2500 LIBEN Single yarn containing >= 85% synthetic staple fibres by weight (excl. sewing thread, yarn put up for retail sale and yarn of acrylic, modacrylic, polyester, nylon or other polyamide staple fibres) 01/01/2005 31/12/2500 -55094110 01/01/1988 31/12/2004 LIBEN Single yarn containing >= 85% synthetic staple fibres by weight, unbleached or bleached (excl. sewing thread, yarn put up for retail sale and yarn of acrylic, modacrylic, polyester, nylon or other polyamide staple fibres) 01/01/1988 31/12/2004 -55094190 01/01/1988 31/12/2004 LIBEN Single yarn containing >= 85% synthetic staple fibres by weight (excl. unbleached or bleached, yarn put up for retail sale and yarn of acrylic, modacrylic, polyester, nylon or other polyamide staple fibres) 01/01/1988 31/12/2004 -550942 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled yarn containing >= 85% synthetic staple fibres by weight (excl. sewing thread, yarn put up for retail sale and yarn of acrylic, modacrylic, polyester, nylon or other polyamide staple fibres) 01/01/1988 31/12/2500 -55094200 01/01/2005 31/12/2500 LIBEN Multiple "folded" or cabled yarn containing >= 85% synthetic staple fibres by weight (excl. sewing thread, yarn put up for retail sale and yarn of acrylic, modacrylic, polyester, nylon or other polyamide staple fibres) 01/01/2005 31/12/2500 -55094210 01/01/1988 31/12/2004 LIBEN Multiple "folded" or cabled yarn containing >= 85% synthetic staple fibres by weight, unbleached or bleached (excl. sewing thread, yarn put up for retail sale and yarn of acrylic, modacrylic, polyester, nylon or other polyamide staple fibres) 01/01/1988 31/12/2004 -55094290 01/01/1988 31/12/2004 LIBEN Multiple "folded" or cabled yarn containing >= 85% synthetic staple fibres by weight (excl. unbleached or bleached, sewing thread, yarn put up for retail sale and yarn of acrylic, modacrylic, polyester, nylon or other polyamide staple fibres) 01/01/1988 31/12/2004 -550951 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with artificial staple fibres (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55095100 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with artificial staple fibres (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -550952 01/01/1988 31/12/2500 LIBEN Yarn containing > 50% to < 85% polyester staple fibres by weight, mixed principally or solely with wool or fine animal hair (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55095200 01/01/2005 31/12/2500 LIBEN Yarn containing > 50% to < 85% polyester staple fibres by weight, mixed principally or solely with wool or fine animal hair (excl. sewing thread and yarn put up for retail sale) 01/01/2005 31/12/2500 -55095210 01/01/1988 31/12/2004 LIBEN Yarn containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with wool or fine animal hair, unbleached or bleached (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2004 -55095290 01/01/1988 31/12/2004 LIBEN Yarn containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with wool or fine animal hair (excl. unbleached or bleached, sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2004 -550953 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55095300 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -550959 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% polyester staple fibres by weight, other than that mixed principally or solely with cotton, wool, fine animal hair or artificial staple fibres (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55095900 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% polyester staple fibres by weight, other than that mixed principally or solely with cotton, wool, fine animal hair or artificial staple fibres (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -550961 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, mixed principally or solely with wool or fine animal hair (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55096100 01/01/2005 31/12/2500 LIBEN Yarn containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, mixed principally or solely with wool or fine animal hair (excl. sewing thread and yarn put up for retail sale) 01/01/2005 31/12/2500 -55096110 01/01/1988 31/12/2004 LIBEN Yarn containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, mixed principally or solely with wool or fine animal hair, unbleached or bleached (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2004 -55096190 01/01/1988 31/12/2004 LIBEN Yarn containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, mixed principally or solely with wool or fine animal hair (excl. unbleached or bleached, sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2004 -550962 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, mixed principally or solely with cotton (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55096200 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, mixed principally or solely with cotton (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -550969 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, other than that mixed principally or solely with cotton, wool or fine animal hair (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55096900 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, other than that mixed principally or solely with cotton, wool or fine animal hair (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -550991 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with wool or fine animal hair (excl. sewing thread, yarn put up for retail sale and yarn of polyester, acrylic or modacrylic staple fibres) 01/01/1988 31/12/2500 -55099100 01/01/2005 31/12/2500 LIBEN Yarn containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with wool or fine animal hair (excl. sewing thread, yarn put up for retail sale and yarn of polyester, acrylic or modacrylic staple fibres) 01/01/2005 31/12/2500 -55099110 01/01/1988 31/12/2004 LIBEN Yarn containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with wool or fine animal hair, unbleached or bleached (excl. sewing thread, yarn put up for retail sale and yarn of polyester, acrylic or modacrylic staple fibres) 01/01/1988 31/12/2004 -55099190 01/01/1988 31/12/2004 LIBEN Yarn containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with wool or fine animal hair (excl. unbleached or bleached, sewing thread, yarn put up for retail sale and yarn of polyester, acrylic or modacrylic staple fibres) 01/01/1988 31/12/2004 -550992 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton (excl. sewing thread, yarn put up for retail sale and yarn of polyester, acrylic or modacrylic staple fibres) 01/01/1988 31/12/2500 -55099200 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton (excl. sewing thread, yarn put up for retail sale and yarn of polyester, acrylic or modacrylic staple fibres) 01/01/1988 31/12/2500 -550999 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% synthetic staple fibres by weight, other than that mixed principally or solely with cotton, wool or fine animal hair (excl. sewing thread, yarn put up for retail sale and yarn of polyester, acrylic or modacrylic staple fibres) 01/01/1988 31/12/2500 -55099900 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% synthetic staple fibres by weight, other than that mixed principally or solely with cotton, wool or fine animal hair (excl. sewing thread, yarn put up for retail sale and yarn of polyester, acrylic or modacrylic staple fibres) 01/01/1988 31/12/2500 -5510 01/01/1988 31/12/2500 LIBEN Yarn of artificial staple fibres (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -551011 01/01/1988 31/12/2500 LIBEN Single yarn, containing >= 85% artificial staple fibres by weight (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55101100 01/01/1988 31/12/2500 LIBEN Single yarn, containing >= 85% artificial staple fibres by weight (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -551012 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled yarn containing >= 85% artificial staple fibres by weight (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55101200 01/01/1988 31/12/2500 LIBEN Multiple "folded" or cabled yarn containing >= 85% artificial staple fibres by weight (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -551020 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with wool or fine animal hair (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55102000 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with wool or fine animal hair (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -551030 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with cotton (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55103000 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with cotton (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -551090 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% artificial staple fibres by weight, other than that mixed principally or solely with cotton, wool or fine animal hair (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -55109000 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% artificial staple fibres by weight, other than that mixed principally or solely with cotton, wool or fine animal hair (excl. sewing thread and yarn put up for retail sale) 01/01/1988 31/12/2500 -5511 01/01/1988 31/12/2500 LIBEN Yarn of man-made staple fibres, put up for retail sale (excl. sewing thread) 01/01/1988 31/12/2500 -551110 01/01/1988 31/12/2500 LIBEN Yarn containing >= 85% synthetic staple fibres by weight, put up for retail sale (excl. sewing thread) 01/01/1988 31/12/2500 -55111000 01/01/1988 31/12/2500 LIBEN Yarn containing >= 85% synthetic staple fibres by weight, put up for retail sale (excl. sewing thread) 01/01/1988 31/12/2500 -551120 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% synthetic staple fibres by weight, put up for retail sale (excl. sewing thread) 01/01/1988 31/12/2500 -55112000 01/01/1988 31/12/2500 LIBEN Yarn containing predominantly, but < 85% synthetic staple fibres by weight, put up for retail sale (excl. sewing thread) 01/01/1988 31/12/2500 -551130 01/01/1988 31/12/2500 LIBEN Yarn of artificial staple fibres, put up for retail sale (excl. sewing thread) 01/01/1988 31/12/2500 -55113000 01/01/1988 31/12/2500 LIBEN Yarn of artificial staple fibres, put up for retail sale (excl. sewing thread) 01/01/1988 31/12/2500 -5512 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% synthetic staple fibres by weight 01/01/1988 31/12/2500 -551211 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% polyester staple fibres by weight, unbleached or bleached 01/01/1988 31/12/2500 -55121100 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% polyester staple fibres by weight, unbleached or bleached 01/01/1988 31/12/2500 -551219 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% polyester staple fibres by weight, dyed, made of yarn of different colours, or printed 01/01/1988 31/12/2500 -55121910 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% polyester staple fibres by weight, printed 01/01/1988 31/12/2500 -55121990 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% polyester staple fibres by weight, dyed or made of yarn of different colours 01/01/1988 31/12/2500 -551221 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% acrylic or modacrylic staple fibres by weight, unbleached or bleached 01/01/1988 31/12/2500 -55122100 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% acrylic or modacrylic staple fibres by weight, unbleached or bleached 01/01/1988 31/12/2500 -551229 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% acrylic or modacrylic staple fibres by weight, dyed, made of yarn of different colours or printed 01/01/1988 31/12/2500 -55122910 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% acrylic or modacrylic staple fibres by weight, printed 01/01/1988 31/12/2500 -55122990 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% acrylic or modacrylic staple fibres by weight, dyed or made of yarn of different colours 01/01/1988 31/12/2500 -551291 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% synthetic staple fibres by weight, unbleached or bleached (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2500 -55129100 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% synthetic staple fibres by weight, unbleached or bleached (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2500 -551299 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% synthetic staple fibres by weight, dyed, made of yarn of different colours or printed (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2500 -55129910 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% synthetic staple fibres by weight, printed (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2500 -55129990 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% synthetic staple fibres by weight, dyed or made of yarn of different colours (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2500 -5513 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m² 01/01/1988 31/12/2500 -551311 01/01/1988 31/12/2500 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², unbleached or bleached 01/01/1988 31/12/2500 -55131110 01/01/1988 31/12/1998 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², unbleached or bleached, with a width of <= 135 cm 01/01/1988 31/12/1998 -55131120 01/01/1999 31/12/2500 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², unbleached or bleached, with a width of <= 165 cm 01/01/1999 31/12/2500 -55131130 01/01/1988 31/12/1998 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², unbleached or bleached, with a width of > 135 cm to 165 cm 01/01/1988 31/12/1998 -55131190 01/01/1988 31/12/2500 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², unbleached or bleached, with a width of > 165 cm 01/01/1988 31/12/2500 -551312 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², in three-thread or four-thread twill, incl. cross twill, unbleached or bleached 01/01/1988 31/12/2500 -55131200 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², in three-thread or four-thread twill, incl. cross twill, unbleached or bleached 01/01/1988 31/12/2500 -551313 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², unbleached or bleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -55131300 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², unbleached or bleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -551319 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², unbleached or bleached (excl. those of polyester staple fibres) 01/01/1988 31/12/2500 -55131900 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², unbleached or bleached (excl. those of polyester staple fibres) 01/01/1988 31/12/2500 -551321 01/01/1988 31/12/2500 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², dyed 01/01/1988 31/12/2500 -55132100 01/01/2009 31/12/2500 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², dyed 01/01/2009 31/12/2500 -55132110 01/01/1988 31/12/2008 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², dyed and with a width of <= 135 cm 01/01/1988 31/12/2008 -55132130 01/01/1988 31/12/2008 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², dyed and with a width of > 135 cm to 165 cm 01/01/1988 31/12/2008 -55132190 01/01/1988 31/12/2008 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², dyed and with a width of > 165 cm 01/01/1988 31/12/2008 -551322 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², in three-thread or four-thread twill, incl. cross twill, dyed 01/01/1988 31/12/2006 -55132200 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², in three-thread or four-thread twill, incl. cross twill, dyed 01/01/1988 31/12/2006 -551323 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², dyed (excl. plain woven fabrics) 01/01/1988 31/12/2500 -55132300 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², dyed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2006 -55132310 01/01/2007 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², in three-thread or four-thread twill, incl. cross twill, dyed 01/01/2007 31/12/2500 -55132390 01/01/2007 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², dyed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/2007 31/12/2500 -551329 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², dyed (excl. those of polyester staple fibres) 01/01/1988 31/12/2500 -55132900 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², dyed (excl. those of polyester staple fibres) 01/01/1988 31/12/2500 -551331 01/01/1988 31/12/2500 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², made of yarn of different colours 01/01/1988 31/12/2500 -55133100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², made of yarn of different colours 01/01/1988 31/12/2500 -551332 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², in three-thread or four-thread twill, incl. cross twill, made of yarn of different colours 01/01/1988 31/12/2006 -55133200 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², in three-thread or four-thread twill, incl. cross twill, made of yarn of different colours 01/01/1988 31/12/2006 -551333 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², made of yarn of different colours (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2006 -55133300 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², made of yarn of different colours (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2006 -551339 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², made of yarn of different colours (excl. plain woven fabrics of polyester staple fibres) 01/01/1988 31/12/2500 -55133900 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², made of yarn of different colours (excl. those of polyester staple fibres) 01/01/1988 31/12/2006 -55133900 01/01/2007 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², made of yarn of different colours (excl. plain woven fabrics of polyester staple fibres) 01/01/2007 31/12/2500 -551341 01/01/1988 31/12/2500 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², printed 01/01/1988 31/12/2500 -55134100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², printed 01/01/1988 31/12/2500 -551342 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², in three-thread or four-thread twill, incl. cross twill, printed 01/01/1988 31/12/2006 -55134200 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², in three-thread or four-thread twill, incl. cross twill, printed 01/01/1988 31/12/2006 -551343 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², printed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2006 -55134300 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², printed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2006 -551349 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², printed (excl. plain woven fabrics of polyester staple fibres) 01/01/1988 31/12/2500 -55134900 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², printed (excl. those of polyester staple fibres) 01/01/1988 31/12/2006 -55134900 01/01/2007 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing <= 170 g/m², printed (excl. plain woven fabrics of polyester staple fibres) 01/01/2007 31/12/2500 -5514 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m² 01/01/1988 31/12/2500 -551411 01/01/1988 31/12/2500 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², unbleached or bleached 01/01/1988 31/12/2500 -55141100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², unbleached or bleached 01/01/1988 31/12/2500 -551412 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², in three-thread or four-thread twill, incl. cross twill, unbleached or bleached 01/01/1988 31/12/2500 -55141200 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², in three-thread or four-thread twill, incl. cross twill, unbleached or bleached 01/01/1988 31/12/2500 -551413 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², unbleached or bleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2006 -55141300 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², unbleached or bleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2006 -551419 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², unbleached or bleached (excl. those of plain woven polyester staple fibres and polyester staple fibres in three-thread or four-thread twill, incl. cross twill) 01/01/1988 31/12/2500 -55141900 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², unbleached or bleached (excl. those of polyester staple fibres) 01/01/1988 31/12/2006 -55141910 01/01/2007 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², unbleached or bleached (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/2007 31/12/2500 -55141990 01/01/2007 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², unbleached or bleached (excl. those of polyester staple fibres) 01/01/2007 31/12/2500 -551421 01/01/1988 31/12/2500 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², dyed 01/01/1988 31/12/2500 -55142100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², dyed 01/01/1988 31/12/2500 -551422 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², in three-thread or four-thread twill, incl. cross twill, dyed 01/01/1988 31/12/2500 -55142200 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², in three-thread or four-thread twill, incl. cross twill, dyed 01/01/1988 31/12/2500 -551423 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², dyed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -55142300 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², dyed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -551429 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², dyed (excl. those of polyester staple fibres) 01/01/1988 31/12/2500 -55142900 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², dyed (excl. those of polyester staple fibres) 01/01/1988 31/12/2500 -551430 01/01/2007 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², made of yarn of different colours 01/01/2007 31/12/2500 -55143010 01/01/2007 31/12/2500 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², made of yarn of different colours 01/01/2007 31/12/2500 -55143030 01/01/2007 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², in three-thread or four-thread twill, incl. cross twill, made of yarn of different colours 01/01/2007 31/12/2500 -55143050 01/01/2007 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², made of yarn of different colours (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/2007 31/12/2500 -55143090 01/01/2007 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², made of yarn of different colours (excl. those of polyester staple fibres) 01/01/2007 31/12/2500 -551431 01/01/1988 31/12/2006 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², made of yarn of different colours 01/01/1988 31/12/2006 -55143100 01/01/1988 31/12/2006 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², made of yarn of different colours 01/01/1988 31/12/2006 -551432 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², in three-thread or four-thread twill, incl. cross twill, made of yarn of different colours 01/01/1988 31/12/2006 -55143200 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², in three-thread or four-thread twill, incl. cross twill, made of yarn of different colours 01/01/1988 31/12/2006 -551433 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², made of yarn of different colours (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2006 -55143300 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², made of yarn of different colours (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2006 -551439 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², made of yarn of different colours (excl. those of polyester staple fibres) 01/01/1988 31/12/2006 -55143900 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², made of yarn of different colours (excl. those of polyester staple fibres) 01/01/1988 31/12/2006 -551441 01/01/1988 31/12/2500 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², printed 01/01/1988 31/12/2500 -55144100 01/01/1988 31/12/2500 LIBEN Plain woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², printed 01/01/1988 31/12/2500 -551442 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², in three-thread or four-thread twill, incl. cross twill, printed 01/01/1988 31/12/2500 -55144200 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², in three-thread or four-thread twill, incl. cross twill, printed 01/01/1988 31/12/2500 -551443 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², printed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -55144300 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², printed (excl. those in three-thread or four-thread twill, incl. cross twill, and plain woven fabrics) 01/01/1988 31/12/2500 -551449 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², printed (excl. those of polyester staple fibres) 01/01/1988 31/12/2500 -55144900 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, mixed principally or solely with cotton and weighing > 170 g/m², printed (excl. those of polyester staple fibres) 01/01/1988 31/12/2500 -5515 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres by weight, other than those mixed principally or solely with cotton 01/01/1988 31/12/2500 -551511 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with viscose staple fibres 01/01/1988 31/12/2500 -55151110 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with viscose staple fibres, unbleached or bleached 01/01/1988 31/12/2500 -55151130 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with viscose staple fibres, printed 01/01/1988 31/12/2500 -55151190 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with viscose staple fibres, dyed, or made of yarn of different colours 01/01/1988 31/12/2500 -551512 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with man-made filament 01/01/1988 31/12/2500 -55151210 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with man-made filament, unbleached or bleached 01/01/1988 31/12/2500 -55151230 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with man-made filament, printed 01/01/1988 31/12/2500 -55151290 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with man-made filament, dyed or made of yarn of different colours 01/01/1988 31/12/2500 -551513 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with cotton or fine animal hair 01/01/1988 31/12/2500 -55151311 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with carded wool or carded fine animal hair, unbleached or bleached 01/01/1988 31/12/2500 -55151319 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with carded wool or carded fine animal hair, dyed, made of yarn of different colours, or printed 01/01/1988 31/12/2500 -55151391 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with combed wool or combed fine animal hair, unbleached or bleached 01/01/1988 31/12/2500 -55151399 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, mixed principally or solely with combed wool or combed fine animal hair, dyed, made of yarn of different colours, or printed 01/01/1988 31/12/2500 -551519 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, other than those mixed principally or solely with wool or fine animal hair, man-made filament, viscose staple fibres or cotton 01/01/1988 31/12/2500 -55151910 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, other than those mixed principally or solely with wool or fine animal hair, man-made filament, viscose staple fibres or cotton, unbleached or bleached 01/01/1988 31/12/2500 -55151930 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, other than those mixed principally or solely with wool or fine animal hair, man-made filament, viscose staple fibres or cotton, printed 01/01/1988 31/12/2500 -55151990 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% polyester staple fibres by weight, other than those mixed principally or solely with wool or fine animal hair, man-made filament, viscose staple fibres or cotton, dyed or made of yarn of different colours 01/01/1988 31/12/2500 -551521 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, mixed principally or solely with man-made filament 01/01/1988 31/12/2500 -55152110 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, mixed principally or solely with man-made filament, unbleached or bleached 01/01/1988 31/12/2500 -55152130 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, mixed principally or solely with man-made filament, printed 01/01/1988 31/12/2500 -55152190 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, mixed principally or solely with man-made filament, dyed or made of yarn of different colours 01/01/1988 31/12/2500 -551522 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, mixed principally or solely with carded wool or carded fine animal hair 01/01/1988 31/12/2500 -55152211 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, mixed principally or solely with carded wool or carded fine animal hair, unbleached or bleached 01/01/1988 31/12/2500 -55152219 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, mixed principally or solely with carded wool or carded fine animal hair, dyed, made of yarn of different colours, or printed 01/01/1988 31/12/2500 -55152291 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, mixed principally or solely with combed wool or combed fine animal hair, unbleached or bleached 01/01/1988 31/12/2500 -55152299 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, mixed principally or solely with combed wool or combed fine animal hair, dyed, made of yarn of different colours, or printed 01/01/1988 31/12/2500 -551529 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, other than those mixed principally or solely with wool, fine animal hair, man-made filaments or cotton 01/01/1988 31/12/2500 -55152900 01/01/2005 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, other than those mixed principally or solely with wool, fine animal hair, man-made filaments or cotton 01/01/2005 31/12/2500 -55152910 01/01/1988 31/12/2004 LIBEN Woven fabrics containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, other than those mixed principally or solely with wool, fine animal hair, man-made filaments or cotton, unbleached or bleached 01/01/1988 31/12/2004 -55152930 01/01/1988 31/12/2004 LIBEN Woven fabrics containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, other than those mixed principally or solely with wool, fine animal hair, man-made filaments or cotton, printed 01/01/1988 31/12/2004 -55152990 01/01/1988 31/12/2004 LIBEN Woven fabrics containing predominantly, but < 85% acrylic or modacrylic staple fibres by weight, other than those mixed principally or solely with wool, fine animal hair, man-made filaments or cotton, dyed or made of yarn of different colours 01/01/1988 31/12/2004 -551591 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, mixed principally or solely with man-made filament (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2500 -55159110 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, mixed principally or solely with man-made filament, unbleached or bleached (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2500 -55159130 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, mixed principally or solely with man-made filament, printed (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2500 -55159190 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, mixed principally or solely with man-made filament, dyed or made of yarn of different colours (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2500 -551592 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, mixed principally or solely with wool or fine animal hair (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2006 -55159210 01/01/2005 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, mixed principally or solely with carded wool or carded fine animal hair (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/2005 31/12/2006 -55159211 01/01/1988 31/12/2004 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, mixed principally or solely with carded wool or carded fine animal hair, unbleached or bleached (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2004 -55159219 01/01/1988 31/12/2004 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, mixed principally or solely with carded wool or carded fine animal hair, dyed, made of yarn of different colours, or printed (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2004 -55159290 01/01/2005 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, mixed principally or solely with combed wool or combed fine animal hair (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/2005 31/12/2006 -55159291 01/01/1988 31/12/2004 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, mixed principally or solely with combed wool or combed fine animal hair, unbleached or bleached (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2004 -55159299 01/01/1988 31/12/2004 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, mixed principally or solely with combed wool or combed fine animal hair, dyed, made of yarn of different colours, or printed (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2004 -551599 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, other than those mixed principally or solely with man-made filament or cotton (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2500 -55159910 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, other than those mixed principally or solely with wool, fine animal hair, man-made filament or cotton, unbleached or bleached (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2006 -55159920 01/01/2007 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, other than those mixed principally or solely with man-made filament or cotton, unbleached or bleached (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/2007 31/12/2500 -55159930 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, other than those mixed principally or solely with wool, fine animal hair, man-made filament or cotton, printed (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2006 -55159940 01/01/2007 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, other than those mixed principally or solely with man-made filament or cotton, printed (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/2007 31/12/2500 -55159980 01/01/2007 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, other than those mixed principally or solely with man-made filament or cotton, dyed or made of yarn of different colours (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/2007 31/12/2500 -55159990 01/01/1988 31/12/2006 LIBEN Woven fabrics containing predominantly, but < 85% synthetic staple fibres, other than those mixed principally or solely with wool, fine animal hair, man-made filament or cotton, dyed or made of yarn of different colours (excl. those of acrylic, modacrylic or polyester staple fibres) 01/01/1988 31/12/2006 -5516 01/01/1988 31/12/2500 LIBEN Woven fabrics of artificial staple fibres 01/01/1988 31/12/2500 -551611 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% artificial staple fibres by weight, unbleached or bleached 01/01/1988 31/12/2500 -55161100 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% artificial staple fibres by weight, unbleached or bleached 01/01/1988 31/12/2500 -551612 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% artificial staple fibres by weight, dyed 01/01/1988 31/12/2500 -55161200 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% artificial staple fibres by weight, dyed 01/01/1988 31/12/2500 -551613 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% artificial staple fibres by weight, made of yarn of different colours 01/01/1988 31/12/2500 -55161300 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% artificial staple fibres by weight, made of yarn of different colours 01/01/1988 31/12/2500 -551614 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% artificial staple fibres by weight, printed 01/01/1988 31/12/2500 -55161400 01/01/1988 31/12/2500 LIBEN Woven fabrics containing >= 85% artificial staple fibres by weight, printed 01/01/1988 31/12/2500 -551621 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres, mixed principally or solely with man-made filament, unbleached or bleached 01/01/1988 31/12/2500 -55162100 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres, mixed principally or solely with man-made filament, unbleached or bleached 01/01/1988 31/12/2500 -551622 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres, mixed principally or solely with man-made filament, dyed 01/01/1988 31/12/2500 -55162200 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres, mixed principally or solely with man-made filament, dyed 01/01/1988 31/12/2500 -551623 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres, mixed principally or solely with man-made filament, made of yarn of different colours 01/01/1988 31/12/2500 -55162310 01/01/1988 31/12/2500 LIBEN Woven jacquard fabrics containing predominantly, but < 85% artificial staple fibres, mixed principally or solely with man-made filament, made of yarn of different colours, with a width of >= 140 cm 'mattress tickings' 01/01/1988 31/12/2500 -55162390 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with man-made filament, made of yarns of different colours (excl. jacquard fabrics with a width of >= 140 cm; mattress tickings) 01/01/1988 31/12/2500 -551624 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with man-made filament, printed 01/01/1988 31/12/2500 -55162400 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with man-made filament, printed 01/01/1988 31/12/2500 -551631 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with wool or fine animal hair, unbleached or bleached 01/01/1988 31/12/2500 -55163100 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with wool or fine animal hair, unbleached or bleached 01/01/1988 31/12/2500 -551632 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with wool or fine animal hair, dyed 01/01/1988 31/12/2500 -55163200 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with wool or fine animal hair, dyed 01/01/1988 31/12/2500 -551633 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with wool or fine animal hair, made of yarn of different colours 01/01/1988 31/12/2500 -55163300 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with wool or fine animal hair, made of yarn of different colours 01/01/1988 31/12/2500 -551634 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with wool or fine animal hair, printed 01/01/1988 31/12/2500 -55163400 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with wool or fine animal hair, printed 01/01/1988 31/12/2500 -551641 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with cotton, unbleached or bleached 01/01/1988 31/12/2500 -55164100 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with cotton, unbleached or bleached 01/01/1988 31/12/2500 -551642 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with cotton, dyed 01/01/1988 31/12/2500 -55164200 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with cotton, dyed 01/01/1988 31/12/2500 -551643 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with cotton, made of yarn of different colours 01/01/1988 31/12/2500 -55164300 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with cotton, made of yarn of different colours 01/01/1988 31/12/2500 -551644 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with cotton, printed 01/01/1988 31/12/2500 -55164400 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, mixed principally or solely with cotton, printed 01/01/1988 31/12/2500 -551691 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, other than those mixed principally or solely with cotton, wool, fine animal hair or man-made filament, unbleached or bleached 01/01/1988 31/12/2500 -55169100 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, other than those mixed principally or solely with cotton, wool, fine animal hair or man-made filament, unbleached or bleached 01/01/1988 31/12/2500 -551692 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, other than those mixed principally or solely with cotton, wool, fine animal hair or man-made filament, dyed 01/01/1988 31/12/2500 -55169200 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, other than those mixed principally or solely with cotton, wool, fine animal hair or man-made filament, dyed 01/01/1988 31/12/2500 -551693 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, other than those mixed principally or solely with cotton, wool, fine animal hair or man-made filament, made of yarn of different colours 01/01/1988 31/12/2500 -55169300 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, other than those mixed principally or solely with cotton, wool, fine animal hair or man-made filament, made of yarn of different colours 01/01/1988 31/12/2500 -551694 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, other than those mixed principally or solely with cotton, wool, fine animal hair or man-made filament, printed 01/01/1988 31/12/2500 -55169400 01/01/1988 31/12/2500 LIBEN Woven fabrics containing predominantly, but < 85% artificial staple fibres by weight, other than those mixed principally or solely with cotton, wool, fine animal hair or man-made filament, printed 01/01/1988 31/12/2500 -55CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 55 01/01/2002 31/12/2500 -55CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 55 01/01/2002 31/12/2500 -55CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 55 01/01/2002 31/12/2500 -55MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -55MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -55MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -55PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 55 carried by post 01/01/1988 31/12/2500 -55PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 55 carried by post 01/01/1988 31/12/2500 -55PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 55 carried by post 01/01/1988 31/12/2500 -55SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 55 01/01/1988 31/12/2500 -55SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 55 and SITC section 0 01/01/1997 31/12/2001 -55SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 55 and SITC group 000 01/01/1997 31/12/2001 -55SSS2 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 55 and SITC section 2 01/01/1990 31/12/2500 -55SSS266 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 55 and SITC group 266 01/01/1990 31/12/2500 -55SSS267 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 55 and SITC group 267 01/01/1990 31/12/2500 -55SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 55 and SITC section 6 01/01/1997 31/12/2500 -55SSS651 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 55 and SITC group 651 01/01/1997 31/12/2500 -55SSS653 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 55 and SITC group 653 01/01/1997 31/12/2500 -55SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 55 and SITC section 9 01/01/1988 31/12/1996 -55SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 55 and SITC section 9 01/01/1997 31/12/2500 -55SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 55 and SITC group 999 01/01/1988 31/12/1996 -55SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 55 and SITC group 999 01/01/1997 31/12/2500 -56 01/01/1988 31/12/2500 LIBEN WADDING, FELT AND NONWOVENS; SPECIAL YARNS; TWINE, CORDAGE, ROPES AND CABLES AND ARTICLES THEREOF 01/01/1988 31/12/2500 -5601 01/01/1988 31/12/2500 LIBEN Wadding of textile materials and articles thereof; textile fibres with a length of <= 5 mm "flock", textile dust and mill neps (excl. wadding and articles thereof impregnated or coated with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes, and products impregnated, coated or covered with perfumes, cosmetics, soaps etc.) 01/01/1988 31/12/2500 -560110 01/01/1988 31/12/2011 LIBEN Sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles, of wadding 01/01/1988 31/12/2011 -56011010 01/01/1988 31/12/2011 LIBEN Sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles, of wadding of man-made fibres 01/01/1988 31/12/2011 -56011090 01/01/1988 31/12/2011 LIBEN Sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles, of wadding of vegetable textile materials 01/01/1988 31/12/2011 -560121 01/01/1988 31/12/2500 LIBEN Wadding of cotton and articles thereof (excl. sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles, wadding and articles thereof impregnated or coated with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes, and products impregnated, coated or covered with perfumes, cosmetics, soaps, detergents, etc.) 01/01/1988 31/12/2500 -56012110 01/01/1988 31/12/2500 LIBEN Absorbent cotton wadding and articles thereof (excl. sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles, wadding and articles thereof impregnated or coated with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes, and products impregnated, coated or covered with perfumes, cosmetics, soaps, detergents etc.) 01/01/1988 31/12/2500 -56012190 01/01/1988 31/12/2500 LIBEN Wadding of non-absorbent cotton and articles thereof (excl. sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles, wadding and articles thereof, impregnated or covered with medicated substances or put up for retail for medical, surgical, dental or veterinary purposes, or impregnated, coated or covered with perfumes, make-up, soaps, cleansing agents, etc.) 01/01/1988 31/12/2500 -560122 01/01/1988 31/12/2500 LIBEN Wadding of man-made fibres and articles thereof (excl. sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles, wadding and articles thereof impregnated or coated with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes, and products impregnated, coated or covered with perfumes, cosmetics, soaps, detergents etc.) 01/01/1988 31/12/2500 -56012210 01/01/1988 31/12/2500 LIBEN Rolls of wadding of man-made fibres, of a diameter of <= 8 mm (excl. those covered entirely with woven fabrics) 01/01/1988 31/12/2500 -56012290 01/01/2009 31/12/2500 LIBEN Wadding of man-made fibres and articles thereof (excl. rolls of wadding of a diameter of <= 8 mm, sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles, wadding and articles thereof impregnated or coated with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes, and products impregnated, coated or covered with perfumes, cosmetics, soaps etc.) 01/01/2009 31/12/2500 -56012291 01/01/1988 31/12/2008 LIBEN Wadding of synthetic fibres and articles thereof (excl. rolls of wadding of a diameter of <= 8 mm, sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles, wadding and articles thereof impregnated or coated with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes, and products impregnated, coated or covered with perfumes, cosmetics, soaps etc.) 01/01/1988 31/12/2008 -56012299 01/01/1988 31/12/2008 LIBEN Wadding of artificial fibres and articles thereof (excl. rolls of wadding of a diameter of <= 8 mm, sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles, wadding and articles thereof impregnated or coated with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes, and products impregnated, coated or covered with perfumes, cosmetics, soaps etc.) 01/01/1988 31/12/2008 -560129 01/01/1988 31/12/2500 LIBEN Wadding of textile materials and articles thereof (excl. of cotton or man-made fibres; sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles, wadding and articles thereof, impregnated or covered with medicated substances or put up for retail for medical, surgical, dental or veterinary purposes, or impregnated, coated or covered with perfumes, make-up, soaps, cleansing agents, etc.) 01/01/1988 31/12/2500 -56012900 01/01/1988 31/12/2500 LIBEN Wadding of textile materials and articles thereof (excl. of cotton or man-made fibres; sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles, wadding and articles thereof, impregnated or covered with medicated substances or put up for retail for medical, surgical, dental or veterinary purposes, or impregnated, coated or covered with perfumes, make-up, soaps, cleansing agents, etc.) 01/01/1988 31/12/2500 -560130 01/01/1988 31/12/2500 LIBEN Textile flock and dust and mill neps 01/01/1988 31/12/2500 -56013000 01/01/1988 31/12/2500 LIBEN Textile flock and dust and mill neps 01/01/1988 31/12/2500 -5602 01/01/1988 31/12/2500 LIBEN Felt, whether or not impregnated, coated, covered or laminated, n.e.s. 01/01/1988 31/12/2500 -560210 01/01/1988 31/12/2500 LIBEN Needleloom felt and stitch-bonded fibre fabrics, whether or not impregnated, coated, covered or laminated, n.e.s. 01/01/1988 31/12/2500 -56021011 01/01/1988 31/12/2500 LIBEN Needleloom felt of jute or of other textile bast fibres of heading 5303, not impregnated, coated, covered or laminated, n.e.s. 01/01/1988 31/12/2500 -56021019 01/01/1988 31/12/2500 LIBEN Needleloom felt, not impregnated, coated, covered or laminated, n.e.s.(excl. that of jute or of other textile bast fibres of heading 5303) 01/01/1988 31/12/2500 -56021031 01/01/1988 31/12/2500 LIBEN Felt in the form of stitch-bonded fibre fabrics, not impregnated, coated, covered or laminated, of wool or fine animal hair, n.e.s. 01/01/1988 31/12/2500 -56021035 01/01/1988 31/12/2008 LIBEN Felt in the form of stitch-bonded fibre fabrics, not impregnated, coated, covered or laminated, of coarse animal hair, n.e.s. 01/01/1988 31/12/2008 -56021038 01/01/2009 31/12/2500 LIBEN Felt in the form of stitch-bonded fibre fabrics, not impregnated, coated, covered or laminated, n.e.s. (excl. that of wool or of fine animal hair) 01/01/2009 31/12/2500 -56021039 01/01/1988 31/12/2008 LIBEN Felt in the form of stitch-bonded fibre fabrics, not impregnated, coated, covered or laminated, n.e.s. (excl. that of wool or of fine or coarse animal hair) 01/01/1988 31/12/2008 -56021090 01/01/1988 31/12/2500 LIBEN Needleloom felt and stitch-bonded fibre fabrics, impregnated, coated, covered or laminated, n.e.s. 01/01/1988 31/12/2500 -560221 01/01/1988 31/12/2500 LIBEN Felt, not impregnated, coated, covered or laminated, of wool or fine animal hair, n.e.s. (excl. needleloom felt and stitch-bonded fibre fabrics) 01/01/1988 31/12/2500 -56022100 01/01/1988 31/12/2500 LIBEN Felt, not impregnated, coated, covered or laminated, of wool or fine animal hair, n.e.s. (excl. needleloom felt and stitch-bonded fibre fabrics) 01/01/1988 31/12/2500 -560229 01/01/1988 31/12/2500 LIBEN Felt, not impregnated, coated, covered or laminated (excl. that of wool or fine animal hair; needleloom felt and stitch-bonded fibre fabrics) 01/01/1988 31/12/2500 -56022900 01/01/2005 31/12/2500 LIBEN Felt, not impregnated, coated, covered or laminated (excl. that of wool or fine animal hair; needleloom felt and stitch-bonded fibre fabrics) 01/01/2005 31/12/2500 -56022910 01/01/1988 31/12/2004 LIBEN Felt, not impregnated, coated, covered or laminated, of coarse animal hair, n.e.s. (excl. needleloom felt and stitch-bonded fibre fabrics) 01/01/1988 31/12/2004 -56022990 01/01/1988 31/12/2004 LIBEN Felt, not impregnated, coated, covered or laminated (excl. that of wool or fine animal hair; needleloom felt and stitch-bonded fibre fabrics) 01/01/1988 31/12/2004 -560290 01/01/1988 31/12/2500 LIBEN Felt, impregnated, coated, covered or laminated (excl. needleloom felt and stitch-bonded fibre fabrics) 01/01/1988 31/12/2500 -56029000 01/01/1988 31/12/2500 LIBEN Felt, impregnated, coated, covered or laminated (excl. needleloom felt and stitch-bonded fibre fabrics) 01/01/1988 31/12/2500 -5603 01/01/1988 31/12/2500 LIBEN Nonwovens, whether or not impregnated, coated, covered or laminated, n.e.s. 01/01/1988 31/12/2500 -560300 01/01/1988 31/12/1995 LIBEN Nonwovens, whether or not impregnated, coated, covered or laminated, n.e.s. 01/01/1988 31/12/1995 -56030010 01/01/1988 31/12/1995 LIBEN Nonwovens, coated or covered, n.e.s. 01/01/1988 31/12/1995 -56030091 01/01/1988 31/12/1995 LIBEN Nonwovens, whether or not impregnated or laminated, n.e.s., weighing <= 25 g/m² (excl. coated or covered) 01/01/1988 31/12/1995 -56030093 01/01/1988 31/12/1995 LIBEN Nonwovens, whether or not impregnated or laminated, n.e.s., weighing > 25 g to 70 g/m² (excl. coated or covered) 01/01/1988 31/12/1995 -56030095 01/01/1988 31/12/1995 LIBEN Nonwovens, whether or not impregnated or laminated, n.e.s., weighing > 70 g to 150 g/m² (excl. coated or covered) 01/01/1988 31/12/1995 -56030099 01/01/1988 31/12/1995 LIBEN Nonwovens, whether or not impregnated or laminated, n.e.s., weighing > 150 g/m² (excl. coated or covered) 01/01/1988 31/12/1995 -560311 01/01/1996 31/12/2500 LIBEN Nonwovens, whether or not impregnated, coated, covered or laminated, n.e.s., of synthetic or man-made filaments, weighing <= 25 g/m² 01/01/1996 31/12/2500 -56031110 01/01/1996 31/12/2500 LIBEN Nonwovens, coated or covered, n.e.s., of man-made filaments, weighing <= 25 g/m² 01/01/1996 31/12/2500 -56031190 01/01/1996 31/12/2500 LIBEN Nonwovens, whether or not impregnated or laminated, n.e.s., of man-made filaments, weighing <= 25 g/m² (excl. coated or covered) 01/01/1996 31/12/2500 -560312 01/01/1996 31/12/2500 LIBEN Nonwovens, whether or not impregnated, coated, covered or laminated, n.e.s., of man-made filaments, weighing > 25 g/m² but <= 70 g/m² 01/01/1996 31/12/2500 -56031210 01/01/1996 31/12/2500 LIBEN Nonwovens, coated or covered, n.e.s., of man-made filaments, weighing > 25 g/m² but <= 70 g/m² 01/01/1996 31/12/2500 -56031290 01/01/1996 31/12/2500 LIBEN Nonwovens, whether or not impregnated or laminated, n.e.s., of man-made filaments, weighing > 25 g/m² but <= 70 g/m² (excl. coated or covered) 01/01/1996 31/12/2500 -560313 01/01/1996 31/12/2500 LIBEN Nonwovens, whether or not impregnated, coated, covered or laminated, n.e.s., of man-made filaments, weighing > 70 g/m² but <= 150 g/m² 01/01/1996 31/12/2500 -56031310 01/01/1996 31/12/2500 LIBEN Nonwovens, coated or covered, n.e.s., of man-made filaments, weighing > 70 g/m² but <= 150 g/m² 01/01/1996 31/12/2500 -56031390 01/01/1996 31/12/2500 LIBEN Nonwovens, whether or not impregnated or laminated, n.e.s., of man-made filaments, weighing > 70 g/m² but <= 150 g/m² (excl. coated or covered) 01/01/1996 31/12/2500 -560314 01/01/1996 31/12/2500 LIBEN Nonwovens, whether or not impregnated, coated, covered or laminated, n.e.s., of man-made filaments, weighing > 150 g 01/01/1996 31/12/2500 -56031410 01/01/1996 31/12/2500 LIBEN Nonwovens, coated or covered, n.e.s., of man-made filaments, weighing > 150 g/m² 01/01/1996 31/12/2500 -56031490 01/01/1996 31/12/2500 LIBEN Nonwovens, whether or not impregnated or laminated, n.e.s., of man-made filaments, weighing > 150 g/m² (excl. coated or covered) 01/01/1996 31/12/2500 -560391 01/01/1996 31/12/2500 LIBEN Nonwovens, whether or not impregnated, coated, covered or laminated, n.e.s., weighing <= 25 g/m² (excl. of man-made filaments) 01/01/1996 31/12/2500 -56039110 01/01/1996 31/12/2500 LIBEN Nonwovens, coated or covered, n.e.s., weighing <= 25 g/m² (excl. of man-made filaments) 01/01/1996 31/12/2500 -56039190 01/01/1996 31/12/2500 LIBEN Nonwovens, whether or not impregnated or laminated, n.e.s., weighing <= 25 g/m² (excl. coated or covered or of man-made filaments) 01/01/1996 31/12/2500 -560392 01/01/1996 31/12/2500 LIBEN Nonwovens, whether or not impregnated, coated, covered or laminated, n.e.s., weighing > 25 g/m² but <= 70 g/m² (excl. of man-made filaments) 01/01/1996 31/12/2500 -56039210 01/01/1996 31/12/2500 LIBEN Nonwovens, coated or covered, n.e.s., weighing > 25 g/m² but <= 70 g/m² (excl. of man-made filaments) 01/01/1996 31/12/2500 -56039290 01/01/1996 31/12/2500 LIBEN Nonwovens, whether or not impregnated or laminated, n.e.s., weighing > 25 g/m² but <= 70 g/m² (excl. coated or covered or of man-made filaments) 01/01/1996 31/12/2500 -560393 01/01/1996 31/12/2500 LIBEN Nonwovens, whether or not impregnated, coated, covered or laminated, n.e.s., weighing > 70 g/m² but <= 150 g/m² (excl. of man-made filaments) 01/01/1996 31/12/2500 -56039310 01/01/1996 31/12/2500 LIBEN Nonwovens, coated or covered, n.e.s., weighing > 70 g/m² but <= 150 g/m² (excl. of man-made filaments) 01/01/1996 31/12/2500 -56039390 01/01/1996 31/12/2500 LIBEN Nonwovens, whether or not impregnated or laminated, n.e.s., weighing > 70 g/m² but <= 150 g/m² (excl. coated or covered or of man-made filaments) 01/01/1996 31/12/2500 -560394 01/01/1996 31/12/2500 LIBEN Nonwovens, whether or not impregnated, coated, covered or laminated, n.e.s., weighing > than 150 g/m² (excl. of man-made filaments) 01/01/1996 31/12/2500 -56039410 01/01/1996 31/12/2500 LIBEN Nonwovens, coated or covered, n.e.s., weighing > than 150 g/m² (excl. of man-made filaments) 01/01/1996 31/12/2500 -56039490 01/01/1996 31/12/2500 LIBEN Nonwovens, whether or not impregnated or laminated, n.e.s., weighing > than 150 g/m² (excl. coated or covered or of man-made filaments) 01/01/1996 31/12/2500 -5603S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 5603 and SITC section 6 01/01/1997 31/12/2500 -5603S657 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 5603 and SITC group 657 01/01/1997 31/12/2500 -5604 01/01/1988 31/12/2500 LIBEN Textile-covered rubber thread and cord; textile yarn, strip and the like of heading 5404 and 5405, impregnated, coated, covered or sheathed with rubber or plastics (excl. imitation catgut, thread and cord with fish-hook attachments or otherwise put up as fishing line) 01/01/1988 31/12/2500 -560410 01/01/1988 31/12/2500 LIBEN Textile-covered rubber thread and cord 01/01/1988 31/12/2500 -56041000 01/01/1988 31/12/2500 LIBEN Textile-covered rubber thread and cord 01/01/1988 31/12/2500 -560420 01/01/1988 31/12/2006 LIBEN High-tenacity yarn of polyesters, nylon, other polyamides or viscose, impregnated or coated with rubber or plastics 01/01/1988 31/12/2006 -56042000 01/01/1988 31/12/2006 LIBEN High-tenacity yarn of polyesters, nylon, other polyamides or viscose, impregnated or coated with rubber or plastics 01/01/1988 31/12/2006 -560490 01/01/1988 31/12/2500 LIBEN Textile yarn, strip and the like of heading 5404 and 5405, impregnated, coated, covered or sheathed with rubber or plastics (excl. imitation catgut, thread and cord with fish-hook attachments or otherwise put up as fishing line) 01/01/1988 31/12/2500 -56049000 01/01/1988 31/12/2006 LIBEN Textile yarn, strip and the like of heading 5404 and 5405, impregnated, coated, covered or sheathed with rubber or plastics (excl. high-tenacity yarn of polyesters, nylon, other polyamides or viscose, impregnated or coated with rubber or plastics; imitation catgut, thread and cord with fish-hook attachments or otherwise put up as fishing line) 01/01/1988 31/12/2006 -56049010 01/01/2007 31/12/2500 LIBEN High-tenacity yarn of polyesters, nylon, other polyamides or viscose rayon, impregnated or coated with rubber or plastics 01/01/2007 31/12/2500 -56049090 01/01/2007 31/12/2500 LIBEN Textile yarn, strip and the like of heading 5404 and 5405, impregnated, coated, covered or sheathed with rubber or plastics (excl. high-tenacity yarn of polyesters, nylon, other polyamides or viscose rayon, impregnated or coated with rubber or plastics; imitation catgut, thread and cord with fish-hook attachments or otherwise put up as fishing line) 01/01/2007 31/12/2500 -5604S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5604 and SITC section 9 01/01/2002 31/12/2500 -5604S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 5604 and SITC group 999 01/01/2002 31/12/2500 -5605 01/01/1988 31/12/2500 LIBEN Metallised yarn, whether or not gimped, being textile yarn, or strip or the like of heading 5404 or 5405, of textile fibres, combined with metal in the form of thread, strip or powder or covered with metal (excl. yarns manufactured from a mixture of textile fibres and metal fibres, with anti-static properties; yarns reinforced with metal wire; articles with the character of trimmings) 01/01/1988 31/12/2500 -560500 01/01/1988 31/12/2500 LIBEN Metallised yarn, whether or not gimped, being textile yarn, or strip or the like of heading 5404 or 5405, of textile fibres, combined with metal in the form of thread, strip or powder or covered with metal (excl. yarns manufactured from a mixture of textile fibres and metal fibres, with anti-static properties; yarns reinforced with metal wire; articles with the character of trimmings) 01/01/1988 31/12/2500 -56050000 01/01/1988 31/12/2500 LIBEN Metallised yarn, whether or not gimped, being textile yarn, or strip or the like of heading 5404 or 5405, of textile fibres, combined with metal in the form of thread, strip or powder or covered with metal (excl. yarns manufactured from a mixture of textile fibres and metal fibres, with anti-static properties; yarns reinforced with metal wire; articles with the character of trimmings) 01/01/1988 31/12/2500 -5606 01/01/1988 31/12/2500 LIBEN Gimped yarn, gimped strip and the like of heading 5404 or 5405; chenille yarn, incl. flock chenille yarn, and loop wale-yarn (excl. metal yarn and metallised yarn of heading 5605; gimped horsehair yarn; textile-covered rubber thread; twine, cord and other gimped textile products of heading 5808; gimped metal yarn) 01/01/1988 31/12/2500 -560600 01/01/1988 31/12/2500 LIBEN Gimped yarn, gimped strip and the like of heading 5404 or 5405; chenille yarn, incl. flock chenille yarn, and loop wale-yarn (excl. metal yarn and metallised yarn of heading 5605; gimped horsehair yarn; textile-covered rubber thread; twine, cord and other gimped textile products of heading 5808; gimped metal yarn) 01/01/1988 31/12/2500 -56060010 01/01/1988 31/12/2500 LIBEN Loop wale-yarn (excl. metal yarn and metallised yarn of heading 5605; gimped horsehair yarn; textile-covered rubber thread; twine, cord and other gimped textile products of heading 5808; gimped metal yarn) 01/01/1988 31/12/2500 -56060091 01/01/1988 31/12/2500 LIBEN Gimped yarn (excl. metal yarn and metallised yarn of heading 5605; gimped horsehair yarn; textile-covered rubber thread; twine, cord and other gimped textile products of heading 5808; gimped metal yarn) 01/01/1988 31/12/2500 -56060099 01/01/1988 31/12/2500 LIBEN Chenille yarn, incl. flock chenille yarn; gimped strip and the like of heading 5404 and 5405 (excl. metal yarn and metallised yarn of heading 5605; gimped horsehair yarn; textile-covered rubber thread; twine, cord and other gimped textile products of heading 5808; gimped metal yarn) 01/01/1988 31/12/2500 -5607 01/01/1988 31/12/2500 LIBEN Twine, cordage, ropes and cables, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics 01/01/1988 31/12/2500 -560710 01/01/1988 31/12/2006 LIBEN Twine, cordage, ropes and cables, of jute or other textile bast fibres of heading 5303, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics 01/01/1988 31/12/2006 -56071000 01/01/1988 31/12/2006 LIBEN Twine, cordage, ropes and cables, of jute or other textile bast fibres of heading 5303, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics 01/01/1988 31/12/2006 -560721 01/01/1988 31/12/2500 LIBEN Binder or baler twine, of sisal or other textile fibres of the genus Agave 01/01/1988 31/12/2500 -56072100 01/01/1988 31/12/2500 LIBEN Binder or baler twine, of sisal or other textile fibres of the genus Agave 01/01/1988 31/12/2500 -560729 01/01/1988 31/12/2500 LIBEN Twine, cordage, ropes and cables, of sisal or other textile fibres of the genus Agave, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics (excl. binder or baler twine) 01/01/1988 31/12/2500 -56072900 01/01/2009 31/12/2500 LIBEN Twine, cordage, ropes and cables, of sisal or other textile fibres of the genus Agave, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics (excl. binder or baler twine) 01/01/2009 31/12/2500 -56072910 01/01/1988 31/12/2008 LIBEN Twine, cordage, ropes and cables, of sisal or other textile fibres of the genus Agave, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics, with a linear density of > 100.000 decitex "10 g/m" (excl. binder or baler twine) 01/01/1988 31/12/2008 -56072990 01/01/1988 31/12/2008 LIBEN Twine, cordage, ropes and cables, of sisal or other textile fibres of the genus Agave, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics, with a linear density of <= 100.000 decitex "10 g/m" (excl. binder or baler twine) 01/01/1988 31/12/2008 -560730 01/01/1988 31/12/2001 LIBEN Twine, cordage, ropes and cables, of abaca "Manila hemp or Musa textilis Nee" or other hard "leaf" fibres, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics 01/01/1988 31/12/2001 -56073000 01/01/1988 31/12/2001 LIBEN Twine, cordage, ropes and cables, of abaca "Manila hemp or Musa textilis Nee" or other hard "leaf" fibres, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics 01/01/1988 31/12/2001 -560741 01/01/1988 31/12/2500 LIBEN Binder or baler twine, of polyethylene or polypropylene 01/01/1988 31/12/2500 -56074100 01/01/1988 31/12/2500 LIBEN Binder or baler twine, of polyethylene or polypropylene 01/01/1988 31/12/2500 -560749 01/01/1988 31/12/2500 LIBEN Twine, cordage, ropes and cables of polyethylene or polypropylene, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics (excl. binder or baler twine) 01/01/1988 31/12/2500 -56074911 01/01/1988 31/12/2500 LIBEN Twine, cordage, ropes and cables, of polyethylene or polypropylene, plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics, with a linear density of > 50.000 decitex "5 g/m" (excl. binder or baler twine) 01/01/1988 31/12/2500 -56074919 01/01/1988 31/12/2500 LIBEN Twine, cordage, ropes and cables, of polyethylene or polypropylene, not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics, with a linear density of > 50.000 decitex "5 g/m" (excl. binder or baler twine) 01/01/1988 31/12/2500 -56074990 01/01/1988 31/12/2500 LIBEN Twine, cordage, ropes and cables, of polyethylene or polypropylene, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics, with a linear density of <= 50.000 decitex "5 g/m" (excl. binder or baler twine) 01/01/1988 31/12/2500 -560750 01/01/1988 31/12/2500 LIBEN Twine, cordage, ropes and cables, of synthetic fibres, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics (excl. polyethylene and polypropylene) 01/01/1988 31/12/2500 -56075011 01/01/1988 31/12/2500 LIBEN Twine, cordage, ropes and cables of nylon, other polyamides or polyesters, plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics, with a linear density of > 50.000 decitex "5 g/m" 01/01/1988 31/12/2500 -56075019 01/01/1988 31/12/2500 LIBEN Twine, cordage, ropes and cables, of nylon, other polyamides or polyesters, not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics, with a linear density of > 50.000 decitex "5 g/m" 01/01/1988 31/12/2500 -56075030 01/01/1988 31/12/2500 LIBEN Twine, cordage, ropes and cables, of nylon, other polyamides or polyester, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics, with a linear density of > 50.000 decitex "5 g/m" 01/01/1988 31/12/2500 -56075090 01/01/1988 31/12/2500 LIBEN Twine, cordage, ropes and cables, of synthetic fibres, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics (excl. polyethylene, polypropylene, polyesters, nylon or other polyamides) 01/01/1988 31/12/2500 -560790 01/01/1988 31/12/2001 LIBEN Twine, cordage, ropes and cables, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics (excl. that of synthetic fibres, of jute or other textile bast fibres of heading 5303, of sisal or other textile fibres of the genus Agave, of abaca "Manila hemp or Musa textilis" or other hard leaf fibres) 01/01/1988 31/12/2001 -560790 01/01/2002 31/12/2500 LIBEN Twine, cordage, ropes and cables, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics (excl. that of synthetic fibres and of sisal or other textile fibres of the genus Agave) 01/01/2002 31/12/2500 -56079000 01/01/1988 31/12/2001 LIBEN Twine, cordage, ropes and cables, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics (excl. that of synthetic fibres, of jute or other textile bast fibres of heading 5303, of sisal or other textile fibres of the genus Agave, of abaca "Manila hemp or Musa textilis" or other hard leaf fibres) 01/01/1988 31/12/2001 -56079010 01/01/2002 31/12/2006 LIBEN Twine, cordage, ropes and cables, of abaca "Manila hemp or Musa textilis Nee" or other hard "leaf" fibres, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics 01/01/2002 31/12/2006 -56079020 01/01/2007 31/12/2500 LIBEN Twine, cordage, ropes and cables, of abaca "Manila hemp or Musa textilis Nee" or other hard "leaf" fibres and of jute or other textile bast fibres of heading 5303, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics 01/01/2007 31/12/2500 -56079090 01/01/2002 31/12/2500 LIBEN Twine, cordage, ropes and cables, whether or not plaited or braided and whether or not impregnated, coated, covered or sheathed with rubber or plastics (excl. that of synthetic fibres, of jute or other textile bast fibres of heading 5303, of sisal or other textile fibres of the genus Agave, of abaca "Manila hemp or Musa textilis" or other hard leaf fibres) 01/01/2002 31/12/2500 -5608 01/01/1988 31/12/2500 LIBEN Knotted netting of twine, cordage or rope, by the piece or metre; made-up fishing nets and other made-up nets, of textile materials (excl. hairnets, nets for sporting purposes, incl. landing nets, butterfly nets and the like) 01/01/1988 31/12/2500 -560811 01/01/1988 31/12/2500 LIBEN Made-up knotted fishing nets of man-made textile materials (excl. landing nets) 01/01/1988 31/12/2500 -56081111 01/01/1988 31/12/2008 LIBEN Made-up knotted fishing nets of twine, cordage, ropes or cables, of nylon or other polyamides (excl. landing nets) 01/01/1988 31/12/2008 -56081119 01/01/1988 31/12/2008 LIBEN Made-up knotted fishing nets of yarn, of nylon or other polyamides (excl. landing nets) 01/01/1988 31/12/2008 -56081120 01/01/2009 31/12/2500 LIBEN Made-up knotted fishing nets of twine, cordage, ropes or cables, of man-made textile materials (excl. landing nets) 01/01/2009 31/12/2500 -56081180 01/01/2009 31/12/2500 LIBEN Made-up knotted fishing nets of yarn, of man-made textile materials (excl. those of twine, cordage, rope or cables and landing nets) 01/01/2009 31/12/2500 -56081191 01/01/1988 31/12/2008 LIBEN Made-up knotted fishing nets of twine, cordage, ropes or cables, of man-made textile materials (excl. those of nylon or other polyamides, and landing nets) 01/01/1988 31/12/2008 -56081199 01/01/1988 31/12/2008 LIBEN Made-up knotted fishing nets of yarn, of man-made textile materials (excl. those of nylon or other polyamides, and landing nets) 01/01/1988 31/12/2008 -560819 01/01/1988 31/12/2500 LIBEN Knotted netting of twine, cordage, ropes or cables, by the piece or metre; made-up nets, of man-made textile materials (excl. made-up fishing nets, hairnets, nets for sporting purposes, incl. landing nets, butterfly nets and the like) 01/01/1988 31/12/2500 -56081911 01/01/1988 31/12/2500 LIBEN Made-up knotted nets of twine, cordage, ropes or cables, of nylon or other polyamides (excl. fishing nets, hairnets, nets for sporting purposes, incl. landing nets, butterfly nets and the like) 01/01/1988 31/12/2500 -56081919 01/01/1988 31/12/2500 LIBEN Made-up knotted nets of nylon or other polyamides (excl. those of twine, cordage, ropes or cables, fishing nets, hairnets, nets for sporting purposes, incl. landing nets, butterfly nets and the like) 01/01/1988 31/12/2500 -56081930 01/01/1999 31/12/2500 LIBEN Made-up knotted nets of man-made textile materials (excl. those of nylon or other polyamides, fishing nets, hairnets, nets for sporting purposes, incl. landing nets, butterfly nets and the like) 01/01/1999 31/12/2500 -56081931 01/01/1988 31/12/1998 LIBEN Made up knotted nets of twine, cordage, ropes or cables, of man-made textile materials (excl. those of nylon or other polyamides, fishing nets, hairnets, nets for sporting purposes, incl. landing nets, butterfly nets and the like) 01/01/1988 31/12/1998 -56081939 01/01/1988 31/12/1998 LIBEN Made up knotted nets of man-made textile materials (excl. those of nylon or other polyamides, of twine, cordage, ropes or cables, fishing nets, hairnets, nets for sporting purposes, incl. landing nets, butterfly nets and the like) 01/01/1988 31/12/1998 -56081990 01/01/1999 31/12/2500 LIBEN Knotted netting of twine, cordage, ropes or cables, by the piece or metre, of man-made textile materials (excl. made-up nets) 01/01/1999 31/12/2500 -56081991 01/01/1988 31/12/1998 LIBEN Knotted netting of twine, cordage, ropes or cables, by the piece or metre, of nylon or other polyamides (excl. made up nets) 01/01/1988 31/12/1998 -56081999 01/01/1988 31/12/1998 LIBEN Knotted netting of twine, cordage, ropes or cables, by the piece or metre (excl. that of nylon or other polyamides, and made up nets) 01/01/1988 31/12/1998 -560890 01/01/1988 31/12/2500 LIBEN Knotted netting of twine, cordage, ropes or cables, by the piece or metre; made-up fishing nets and other made-up nets, of vegetable textile materials (excl. hairnets, nets for sporting purposes, incl. landing nets, butterfly nets and the like) 01/01/1988 31/12/2500 -56089000 01/01/1988 31/12/2500 LIBEN Knotted netting of twine, cordage, ropes or cables, by the piece or metre; made-up fishing nets and other made-up nets, of vegetable textile materials (excl. hairnets, nets for sporting purposes, incl. landing nets, butterfly nets and the like) 01/01/1988 31/12/2500 -5609 01/01/1988 31/12/2500 LIBEN Articles of yarn, strip or the like of heading 5404 or 5405, or of twine, cordage, ropes or cables of heading 5607, n.e.s. 01/01/1988 31/12/2500 -560900 01/01/1988 31/12/2500 LIBEN Articles of yarn, strip or the like of heading 5404 or 5405, or of twine, cordage, ropes or cables of heading 5607, n.e.s. 01/01/1988 31/12/2500 -56090000 01/01/1988 31/12/2500 LIBEN Articles of yarn, strip or the like of heading 5404 or 5405, or of twine, cordage, ropes or cables of heading 5607, n.e.s. 01/01/1988 31/12/2500 -56CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 56 01/01/2002 31/12/2500 -56CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 56 01/01/2002 31/12/2500 -56CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 56 01/01/2002 31/12/2500 -56MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -56MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -56MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -56SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 56 01/01/1988 31/12/2500 -56SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 56 and SITC section 0 01/01/1997 31/12/2001 -56SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 56 and SITC group 000 01/01/1997 31/12/2001 -56SSS6 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 56 and SITC section 6 01/01/1992 31/12/2500 -56SSS651 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 56 and SITC group 651 01/01/1997 31/12/2500 -56SSS656 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 56 and SITC group 656 01/01/1997 31/12/2500 -56SSS657 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 56 and SITC group 657 01/01/1992 31/12/2500 -56SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 56 and SITC section 9 01/01/1988 31/12/1996 -56SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 56 and SITC section 9 01/01/1997 31/12/2500 -56SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 56 and SITC group 999 01/01/1988 31/12/1996 -56SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 56 and SITC group 999 01/01/1997 31/12/2500 -57 01/01/1988 31/12/2500 LIBEN CARPETS AND OTHER TEXTILE FLOOR COVERINGS 01/01/1988 31/12/2500 -5701 01/01/1988 31/12/2500 LIBEN Carpets and other textile floor coverings, of textile materials, knotted, whether or not made up 01/01/1988 31/12/2500 -570110 01/01/1988 31/12/2500 LIBEN Carpets and other textile floor coverings, of wool or fine animal hair, knotted, whether or not made up 01/01/1988 31/12/2500 -57011010 01/01/1988 31/12/2500 LIBEN Carpets and other textile floor coverings, of wool or fine animal hair, knotted, whether or not made up, containing > 10% silk or waste silk other than noil by weight 01/01/1988 31/12/2500 -57011090 01/01/2005 31/12/2500 LIBEN Carpets and other textile floor coverings, of wool or fine animal hair, knotted, whether or not made up (excl. those containing > 10% silk or waste silk other than noil by weight) 01/01/2005 31/12/2500 -57011091 01/01/1988 31/12/2004 LIBEN Carpets and other textile floor coverings, of wool or fine animal hair, knotted, whether or not made up, comprising <= 350 rows of knots per metre of warp (excl. those containing > 10% silk or waste silk other than noil by weight) 01/01/1988 31/12/2004 -57011093 01/01/1988 31/12/2004 LIBEN Carpets and other textile floor coverings, of wool or fine animal hair, knotted, whether or not made up, comprising > 350 to 500 rows of knots per metre of warp (excl. those containing > 10% silk or waste silk other than noil by weight) 01/01/1988 31/12/2004 -57011099 01/01/1988 31/12/2004 LIBEN Carpets and other textile floor coverings, of wool or fine animal hair, knotted, whether or not made up, comprising > 500 rows of knots per metre of warp (excl. those containing > 10% silk or waste silk other than noil by weight) 01/01/1988 31/12/2004 -570190 01/01/1988 31/12/2500 LIBEN Carpets and other textile floor coverings, of textile materials, knotted, whether or not made up (excl. those of wool or fine animal hair) 01/01/1988 31/12/2500 -57019010 01/01/1988 31/12/2500 LIBEN Carpets and other textile floor coverings, of silk, waste silk other than noil, synthetic fibres or metallised yarn of heading 5605, or of textile materials containing metal yarn, knotted, whether or not made up 01/01/1988 31/12/2500 -57019090 01/01/1988 31/12/2500 LIBEN Carpets and other textile floor coverings, of textile materials, knotted, whether or not made up (excl. those of wool or fine animal hair, of silk or waste silk other than noil, or of textile materials containing metal yarn) 01/01/1988 31/12/2500 -5702 01/01/1988 31/12/2500 LIBEN Carpets and other textile floor coverings, woven, not tufted or flocked, whether or not made up, incl. Kelem, Schumacks, Karamanie and similar hand-woven rugs 01/01/1988 31/12/2500 -570210 01/01/1988 31/12/2500 LIBEN Kelem, Schumacks, Karamanie and similar hand-woven rugs, whether or not made up 01/01/1988 31/12/2500 -57021000 01/01/1988 31/12/2500 LIBEN Kelem, Schumacks, Karamanie and similar hand-woven rugs, whether or not made up 01/01/1988 31/12/2500 -570220 01/01/1988 31/12/2500 LIBEN Floor coverings of coconut fibres "coir", woven, whether or not made up 01/01/1988 31/12/2500 -57022000 01/01/1988 31/12/2500 LIBEN Floor coverings of coconut fibres "coir", woven, whether or not made up 01/01/1988 31/12/2500 -570231 01/01/1988 31/12/2500 LIBEN Carpets and other floor coverings, of wool or fine animal hair, woven, not tufted or flocked, of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/1988 31/12/2500 -57023100 01/01/1999 31/12/2004 LIBEN Carpets and other floor coverings, of wool or fine animal hair, woven, not tufted or flocked, of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/1999 31/12/2004 -57023110 01/01/1988 31/12/1998 LIBEN Axminster carpets of wool or fine animal hair, of pile construction, not made up 01/01/1988 31/12/1998 -57023110 01/01/2005 31/12/2500 LIBEN Axminster carpets of wool or fine animal hair, woven, not tufted or flocked, of pile construction, not made up 01/01/2005 31/12/2500 -57023130 01/01/1988 31/12/1998 LIBEN Wilton carpets of wool or fine animal hair, of pile construction, not made up 01/01/1988 31/12/1998 -57023180 01/01/2005 31/12/2500 LIBEN Carpets and other floor coverings, of wool or fine animal hair, woven, not tufted or flocked, of pile construction, not made up (excl. Axminster, Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/2005 31/12/2500 -57023190 01/01/1988 31/12/1998 LIBEN Carpets and other floor coverings, of wool or fine animal hair, woven, not tufted or flocked, of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar handwoven rugs, plus Axminster and Wilton carpets) 01/01/1988 31/12/1998 -570232 01/01/1988 31/12/2500 LIBEN Carpets and other floor coverings, of man-made textile materials, woven, not tufted or flocked, of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/1988 31/12/2500 -57023200 01/01/1999 31/12/2004 LIBEN Carpets and other floor coverings, of man-made textile materials, woven, not tufted or flocked, of pile construction (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/1999 31/12/2004 -57023200 01/01/2017 31/12/2500 LIBEN Carpets and other floor coverings, of man-made textile materials, woven, not tufted or flocked, of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/2017 31/12/2500 -57023210 01/01/1988 31/12/1998 LIBEN Axminster carpets of man-made textile materials, of pile construction, not made up 01/01/1988 31/12/1998 -57023210 01/01/2005 31/12/2016 LIBEN Axminster carpets of man-made textile materials, woven, not tufted or flocked, of pile construction, not made up 01/01/2005 31/12/2016 -57023290 01/01/1988 31/12/1998 LIBEN Carpets and other floor coverings, of man-made textile materials, woven, not tufted or flocked, of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar handwoven rugs, and Axminster carpets) 01/01/1988 31/12/1998 -57023290 01/01/2005 31/12/2016 LIBEN Carpets and other floor coverings, of man-made textile materials, woven, not tufted or flocked, of pile construction, not made up (excl. Axminster, Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/2005 31/12/2016 -570239 01/01/1988 31/12/2500 LIBEN Carpets and other floor coverings, of vegetable textile materials or coarse animal hair, woven, not tufted or flocked, of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs, and floor coverings of coconut fibres "coir") 01/01/1988 31/12/2500 -57023900 01/01/2005 31/12/2500 LIBEN Carpets and other floor coverings, of vegetable textile materials or coarse animal hair, woven, not tufted or flocked, of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs, and floor coverings of coconut fibres "coir") 01/01/2005 31/12/2500 -57023910 01/01/1988 31/12/2004 LIBEN Carpets and other floor coverings, of cotton, woven, not tufted or flocked, of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/1988 31/12/2004 -57023990 01/01/1988 31/12/2004 LIBEN Carpets and other floor coverings, of vegetable textile materials or coarse animal hair, woven, not tufted or flocked, of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs, floor coverings of coconut fibres "coir" and carpets and other floor coverings of cotton) 01/01/1988 31/12/2004 -570241 01/01/1988 31/12/2500 LIBEN Carpets and other floor coverings, of wool or fine animal hair, woven, not tufted or flocked, of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/1988 31/12/2500 -57024100 01/01/1999 31/12/2006 LIBEN Carpets and other floor coverings, of wool or fine animal hair, woven, not tufted or flocked, of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs, and Axminster and Wilton carpets) 01/01/1999 31/12/2006 -57024110 01/01/1988 31/12/1998 LIBEN Axminster carpets of wool or fine animal hair, of pile construction, made up 01/01/1988 31/12/1998 -57024110 01/01/2007 31/12/2500 LIBEN Axminster carpets of wool or fine animal hair, woven, not tufted or flocked, of pile construction, made up 01/01/2007 31/12/2500 -57024190 01/01/1988 31/12/1998 LIBEN Carpets and other floor coverings, of wool or fine animal hair, woven, not tufted or flocked, of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar handwoven rugs, and Axminster carpets) 01/01/1988 31/12/1998 -57024190 01/01/2007 31/12/2500 LIBEN Carpets and other floor coverings, of wool or fine animal hair, woven, not tufted or flocked, of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs, and Axminster carpets) 01/01/2007 31/12/2500 -570242 01/01/1988 31/12/2500 LIBEN Carpets and other floor coverings, of man-made textile materials, woven, not tufted or flocked, of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/1988 31/12/2500 -57024200 01/01/1999 31/12/2006 LIBEN Carpets and other floor coverings, of man-made textile materials, woven, not tufted or flocked, of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/1999 31/12/2006 -57024200 01/01/2017 31/12/2500 LIBEN Carpets and other floor coverings, of man-made textile materials, woven, not tufted or flocked, of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/2017 31/12/2500 -57024210 01/01/1988 31/12/1998 LIBEN Axminster carpets of wool or fine animal hair, of pile construction, made up 01/01/1988 31/12/1998 -57024210 01/01/2007 31/12/2016 LIBEN Axminster carpets of man-made textile materials, woven, not tufted or flocked, of pile construction, made up 01/01/2007 31/12/2016 -57024290 01/01/1988 31/12/1998 LIBEN Carpets and other textile floor coverings, and other floor coverings, of man-made textile materials, woven, not tufted or flocked, of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar handwoven rugs, and Axminster carpets) 01/01/1988 31/12/1998 -57024290 01/01/2007 31/12/2016 LIBEN Carpets and other floor coverings, of man-made textile materials, woven, not tufted or flocked, of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs, and Axminster carpets) 01/01/2007 31/12/2016 -570249 01/01/1988 31/12/2500 LIBEN Carpets and other floor coverings, of vegetable textile materials or coarse animal hair, woven, not tufted or flocked, of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs, and floor coverings of coconut fibres "coir") 01/01/1988 31/12/2500 -57024900 01/01/2005 31/12/2500 LIBEN Carpets and other floor coverings, of vegetable textile materials or coarse animal hair, woven, not tufted or flocked, of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs, and floor coverings of coconut fibres "coir") 01/01/2005 31/12/2500 -57024910 01/01/1988 31/12/2004 LIBEN Carpets and other floor coverings, of cotton, woven, not tufted or flocked, of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/1988 31/12/2004 -57024990 01/01/1988 31/12/2004 LIBEN Carpets and other floor coverings, of vegetable textile materials or coarse animal hair, woven, not tufted or flocked, of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs, floor coverings of coconut fibres "coir", and carpets and other floor coverings of cotton) 01/01/1988 31/12/2004 -570250 01/01/2007 31/12/2500 LIBEN Carpets and other textile floor coverings, woven, not tufted or flocked, not of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs, and floor coverings of coconut fibres "coir") 01/01/2007 31/12/2500 -57025010 01/01/2007 31/12/2500 LIBEN Carpets and other floor coverings, of wool or fine animal hair, woven, not tufted or flocked, not of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/2007 31/12/2500 -57025031 01/01/2007 31/12/2500 LIBEN Carpets and other floor coverings, of polypropylene, woven, not tufted or flocked, not of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/2007 31/12/2500 -57025039 01/01/2007 31/12/2500 LIBEN Carpets and other floor coverings, of man-made textile materials, woven, not tufted or flocked, not of pile construction, not made up (excl. those of polypropylene and Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/2007 31/12/2500 -57025090 01/01/2007 31/12/2500 LIBEN Carpets and other floor coverings, of vegetable textile materials or coarse animal hair, woven, not tufted or flocked, not of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs, and floor coverings of coconut fibres "coir") 01/01/2007 31/12/2500 -570251 01/01/1988 31/12/2006 LIBEN Carpets and other floor coverings, of wool or fine animal hair, woven, not tufted or flocked, not of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/1988 31/12/2006 -57025100 01/01/1988 31/12/2006 LIBEN Carpets and other floor coverings, of wool or fine animal hair, woven, not tufted or flocked, not of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/1988 31/12/2006 -570252 01/01/1988 31/12/2006 LIBEN Carpets and other floor coverings, of man-made textile materials, woven, not tufted or flocked, not of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/1988 31/12/2006 -57025200 01/01/1988 31/12/2004 LIBEN Carpets and other floor coverings, of man-made textile materials, woven, not tufted or flocked, not of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/1988 31/12/2004 -57025210 01/01/2005 31/12/2006 LIBEN Carpets and other floor coverings, of polypropylene, woven, not tufted or flocked, not of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/2005 31/12/2006 -57025290 01/01/2005 31/12/2006 LIBEN Carpets and other floor coverings, of man-made textile materials, woven, not tufted or flocked, not of pile construction, not made up (excl. those of polypropylene and Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/2005 31/12/2006 -570259 01/01/1988 31/12/2006 LIBEN Carpets and other floor coverings, of vegetable textile materials or coarse animal hair, woven, not tufted or flocked, not of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs, and floor coverings of coconut fibres "coir") 01/01/1988 31/12/2006 -57025900 01/01/1988 31/12/2006 LIBEN Carpets and other floor coverings, of vegetable textile materials or coarse animal hair, woven, not tufted or flocked, not of pile construction, not made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs, and floor coverings of coconut fibres "coir") 01/01/1988 31/12/2006 -570291 01/01/1988 31/12/2500 LIBEN Carpets and other floor coverings, of wool or fine animal hair, woven, not tufted or flocked, not of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/1988 31/12/2500 -57029100 01/01/1988 31/12/2500 LIBEN Carpets and other floor coverings, of wool or fine animal hair, woven, not tufted or flocked, not of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/1988 31/12/2500 -570292 01/01/1988 31/12/2500 LIBEN Carpets and other floor coverings, of man-made textile materials, woven, not tufted or flocked, not of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/1988 31/12/2500 -57029200 01/01/1988 31/12/2004 LIBEN Carpets and other floor coverings, of man-made textile materials, woven, not tufted or flocked, not of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/1988 31/12/2004 -57029210 01/01/2005 31/12/2500 LIBEN Carpets and other floor coverings, of polypropylene, woven, not tufted or flocked, not of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/2005 31/12/2500 -57029290 01/01/2005 31/12/2500 LIBEN Carpets and other floor coverings, of man-made textile materials, woven, not tufted or flocked, not of pile construction, made up (excl. those of polypropylene and Kelem, Schumacks, Karamanie and similar hand-woven rugs) 01/01/2005 31/12/2500 -570299 01/01/1988 31/12/2500 LIBEN Carpets and other floor coverings, of vegetable textile materials or coarse animal hair, woven, not tufted or flocked, not of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs, and floor coverings of coconut fibres "coir") 01/01/1988 31/12/2500 -57029900 01/01/1988 31/12/2500 LIBEN Carpets and other floor coverings, of vegetable textile materials or coarse animal hair, woven, not tufted or flocked, not of pile construction, made up (excl. Kelem, Schumacks, Karamanie and similar hand-woven rugs, and floor coverings of coconut fibres "coir") 01/01/1988 31/12/2500 -5703 01/01/1988 31/12/2500 LIBEN Carpets and other textile floor coverings, tufted "needle punched", whether or not made up 01/01/1988 31/12/2500 -570310 01/01/1988 31/12/2500 LIBEN Carpets and other floor coverings, of wool or fine animal hair, tufted "needle punched", whether or not made up 01/01/1988 31/12/2500 -57031000 01/01/1999 31/12/2500 LIBEN Carpets and other floor coverings, of wool or fine animal hair, tufted "needle punched", whether or not made up 01/01/1999 31/12/2500 -57031010 01/01/1988 31/12/1998 LIBEN Carpets and other floor coverings, of wool or fine animal hair, tufted "needle punched", whether or not made up, printed 01/01/1988 31/12/1998 -57031090 01/01/1988 31/12/1998 LIBEN Carpets and other floor coverings, of wool or fine animal hair, tufted "needle punched", whether or not made up (excl. printed) 01/01/1988 31/12/1998 -570320 01/01/1988 31/12/2500 LIBEN Carpets and other floor coverings, of nylon or other polyamides, tufted "needle punched", whether or not made up 01/01/1988 31/12/2500 -57032011 01/01/1988 31/12/2007 LIBEN Carpet tiles of nylon or other polyamides, tufted "needle punched", with an area of <= 0,3 m², printed 01/01/1988 31/12/2007 -57032012 01/01/2008 31/12/2500 LIBEN Tiles, of nylon or other polyamides, tufted "needle punched", whether or not made up, printed (excl. carpet tiles with an area of > 1 m²) 01/01/2008 31/12/2500 -57032018 01/01/2008 31/12/2500 LIBEN Carpets and other floor coverings, of nylon or other polyamides, tufted "needle punched", whether or not made up, printed (excl. carpet tiles with an area of <= 1 m²) 01/01/2008 31/12/2500 -57032019 01/01/1988 31/12/2007 LIBEN Carpets and other floor coverings, of nylon or other polyamides, tufted "needle punched", whether or not made up, printed (excl. carpet tiles with an area of <= 0,3 m²) 01/01/1988 31/12/2007 -57032091 01/01/1988 31/12/2007 LIBEN Carpet tiles of nylon or other polyamides, tufted "needle punched", with an area of <= 0,3 m² (excl. printed) 01/01/1988 31/12/2007 -57032092 01/01/2008 31/12/2500 LIBEN Tiles, of nylon or other polyamides, tufted "needle punched", whether or not made up (excl. printed, and carpet tiles with an area of > 1 m²) 01/01/2008 31/12/2500 -57032098 01/01/2008 31/12/2500 LIBEN Carpets and other textile floor coverings, of nylon or other polyamides, tufted "needle punched", whether or not made up (excl. printed, and carpet tiles with an area of <= 1 m²) 01/01/2008 31/12/2500 -57032099 01/01/1988 31/12/2007 LIBEN Carpets and other floor coverings, of nylon or other polyamides, tufted "needle punched", whether or not made up (excl. printed, and carpet tiles with an area of <= 0,3 m²) 01/01/1988 31/12/2007 -570330 01/01/1988 31/12/2500 LIBEN Carpets and other floor coverings, of man-made textile materials, tufted "needle punched", whether or not made up (excl. those of nylon or other polyamides) 01/01/1988 31/12/2500 -57033011 01/01/1988 31/12/2007 LIBEN Carpet tiles of polypropylene, tufted "needle punched", with an area of <= 0,3 m² 01/01/1988 31/12/2007 -57033012 01/01/2008 31/12/2500 LIBEN Tiles, of polypropylene, tufted "needle punched", whether or not made up (excl. carpet tiles with an area of > 1 m²) 01/01/2008 31/12/2500 -57033018 01/01/2008 31/12/2500 LIBEN Carpets and other floor coverings, of polypropylene, tufted "needle punched", whether or not made up (excl. carpet tiles with an area of <= 1 m²) 01/01/2008 31/12/2500 -57033019 01/01/1988 31/12/2007 LIBEN Carpets and other floor coverings, of polypropylene, tufted "needle punched", whether or not made up (excl. carpet tiles with an area of <= 0,3 m²) 01/01/1988 31/12/2007 -57033051 01/01/1988 31/12/2004 LIBEN Carpet tiles of man-made textile materials, tufted "needle punched", with an area of <= 0,3 m², printed (excl. those of polypropylene, nylon or other polyamides) 01/01/1988 31/12/2004 -57033059 01/01/1988 31/12/2004 LIBEN Carpets and other floor coverings, of man-made textile materials, tufted "needle punched", whether or not made up, printed (excl. those of polypropylene, nylon or other polyamides, and carpet tiles with an area of <= 0,3 m²) 01/01/1988 31/12/2004 -57033081 01/01/2005 31/12/2007 LIBEN Carpet tiles of man-made textile materials, tufted "needle punched", with an area of <= 0,3 m² (excl. of polypropylene, nylon or other polyamides) 01/01/2005 31/12/2007 -57033082 01/01/2008 31/12/2500 LIBEN Tiles, of man-made textile materials, tufted "needle punched", whether or not made up (excl. of polypropylene, nylon or other polyamides, and carpet tiles with an area of > 1 m²) 01/01/2008 31/12/2500 -57033088 01/01/2008 31/12/2500 LIBEN Carpets and other floor coverings, of man-made textile materials, tufted "needle punched", whether or not made up (excl. of polypropylene, nylon or other polyamides, and carpet tiles with an area of <= 1 m²) 01/01/2008 31/12/2500 -57033089 01/01/2005 31/12/2007 LIBEN Carpets and other floor coverings, of man-made textile materials, tufted "needle punched", whether or not made up (excl. of polypropylene, nylon or other polyamides, and carpet tiles with an area of <= 0,3 m²) 01/01/2005 31/12/2007 -57033091 01/01/1988 31/12/2004 LIBEN Carpet tiles of man-made textile materials, tufted "needle punched", with an area of <= 0,3 m² (excl. printed, and those of polypropylene, nylon or other polyamides) 01/01/1988 31/12/2004 -57033099 01/01/1988 31/12/2004 LIBEN Carpets and other floor coverings, of man-made textile materials, tufted "needle punched", whether or not made up (excl. printed, those of polypropylene, nylon or other polyamides, and carpet tiles with an area of <= 0,3 m²) 01/01/1988 31/12/2004 -570390 01/01/1988 31/12/2500 LIBEN Carpet tiles of vegetable textile materials or coarse animal hair, tufted "needle punched", whether or not made up 01/01/1988 31/12/2500 -57039000 01/01/1999 31/12/2004 LIBEN Carpet tiles of vegetable textile materials or coarse animal hair, tufted "needle punched", whether or not made up 01/01/1999 31/12/2004 -57039010 01/01/1988 31/12/1998 LIBEN Carpet tiles of vegetable textile materials or coarse animal hair, tufted "needle punched", with an area of <= 0,3 m² 01/01/1988 31/12/1998 -57039010 01/01/2005 31/12/2007 LIBEN Carpet tiles of vegetable textile materials or coarse animal hair, tufted "needle punched", with an area of <= 0,3 m², whether or not made up 01/01/2005 31/12/2007 -57039020 01/01/2008 31/12/2500 LIBEN Tiles, of vegetable textile materials or coarse animal hair, tufted "needle punched", whether or not made up (excl. carpet tiles with an area of > 1 m²) 01/01/2008 31/12/2500 -57039080 01/01/2008 31/12/2500 LIBEN Carpet and other floor coverings, of vegetable textile materials or coarse animal hair, tufted "needle punched", whether or not made up (excl. carpet tiles with an area of <= 1 m²) 01/01/2008 31/12/2500 -57039090 01/01/1988 31/12/1998 LIBEN Carpets and other floor coverings, of vegetable textile materials or coarse animal hair, tufted "needle punched", whether or not made up (excl. carpet tiles with an area of <= 0,3 m²) 01/01/1988 31/12/1998 -57039090 01/01/2005 31/12/2007 LIBEN Carpet and other floor coverings, of vegetable textile materials or coarse animal hair, tufted "needle punched", whether or not made up (excl. carpet tiles with an area of <= 0,3 m²) 01/01/2005 31/12/2007 -5704 01/01/1988 31/12/2500 LIBEN Carpets and other floor coverings, of felt, not tufted or flocked, whether or not made up 01/01/1988 31/12/2500 -570410 01/01/1988 31/12/2500 LIBEN Floor tiles, of felt, not tufted or flocked, with an area of <= 0,3 m² 01/01/1988 31/12/2500 -57041000 01/01/1988 31/12/2500 LIBEN Floor tiles, of felt, not tufted or flocked, with an area of <= 0,3 m² 01/01/1988 31/12/2500 -570420 01/01/2017 31/12/2500 LIBEN Floor tiles, of felt, not tufted or flocked, with an area of > 0,3 m² but <= 1 m² 01/01/2017 31/12/2500 -57042000 01/01/2017 31/12/2500 LIBEN Floor tiles, of felt, not tufted or flocked, with an area of > 0,3 m² but <= 1 m² 01/01/2017 31/12/2500 -570490 01/01/1988 31/12/2500 LIBEN Carpets and other floor coverings, of felt, not tufted or flocked, whether or not made up (excl. floor tiles with an area of <= 1 m²) 01/01/1988 31/12/2500 -57049000 01/01/1988 31/12/2016 LIBEN Carpets and other floor coverings, of felt, not tufted or flocked, whether or not made up (excl. floor tiles with an area of <= 0,3 m²) 01/01/1988 31/12/2016 -57049000 01/01/2017 31/12/2500 LIBEN Carpets and other floor coverings, of felt, not tufted or flocked, whether or not made up (excl. floor tiles with an area of <= 1 m²) 01/01/2017 31/12/2500 -5705 01/01/1988 31/12/2500 LIBEN Carpets and other textile floor coverings, whether or not made up (excl. knotted, woven or tufted "needle punched", and of felt) 01/01/1988 31/12/2500 -570500 01/01/1988 31/12/2500 LIBEN Carpets and other textile floor coverings, whether or not made up (excl. knotted, woven or tufted "needle punched", and of felt) 01/01/1988 31/12/2500 -57050010 01/01/1988 31/12/2010 LIBEN Carpets and other floor coverings, of wool or fine animal hair, whether or not made up (excl. knotted, woven or tufted "needle punched", and of felt) 01/01/1988 31/12/2010 -57050030 01/01/1999 31/12/2500 LIBEN Carpets and other floor coverings, of man-made textile materials, whether or not made up (excl. knotted, woven or tufted "needle punched", and of felt) 01/01/1999 31/12/2500 -57050031 01/01/1988 31/12/1998 LIBEN Floor tiles, of man-made textile materials, with an area of <= 0,3 m² (excl. tufted "needle punched", and of felt) 01/01/1988 31/12/1998 -57050039 01/01/1988 31/12/1998 LIBEN Carpets and other floor coverings, of man-made textile materials, whether or not made up (excl. knotted, woven or tufted "needle punched", and of felt and floor tiles with an area of <= 0,3 m²) 01/01/1988 31/12/1998 -57050080 01/01/2011 31/12/2500 LIBEN Carpets and other textile floor coverings, of wool or animal hair or vegetable materials, whether or not made up (excl. knotted, tufted "needle punched", and woven or of felt but non-flocked) 01/01/2011 31/12/2500 -57050090 01/01/1988 31/12/2010 LIBEN Carpets and other floor coverings, of vegetable textile materials or coarse animal hair, whether or not made up (excl. knotted, woven or tufted "needle punched", and of felt) 01/01/1988 31/12/2010 -57CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 57 01/01/2002 31/12/2500 -57CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 57 01/01/2002 31/12/2500 -57CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 57 01/01/2002 31/12/2500 -57MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -57MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -57MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -57SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 57 01/01/1988 31/12/2500 -57SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 57 and SITC section 6 01/01/1997 31/12/2500 -57SSS659 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 57 and SITC group 659 01/01/1997 31/12/2500 -57SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 57 and SITC section 9 01/01/1988 31/12/1996 -57SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 57 and SITC section 9 01/01/1997 31/12/2500 -57SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 57 and SITC group 999 01/01/1988 31/12/1996 -57SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 57 and SITC group 999 01/01/1997 31/12/2500 -57VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 57 for the assembly of motor vehicles 01/01/1988 31/12/2500 -57VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 57 for the assembly of motor vehicles 01/01/1988 31/12/2500 -57VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 57 for the assembly of motor vehicles 01/01/1988 31/12/2500 -58 01/01/1988 31/12/2500 LIBEN SPECIAL WOVEN FABRICS; TUFTED TEXTILE FABRICS; LACE; TAPESTRIES; TRIMMINGS; EMBROIDERY 01/01/1988 31/12/2500 -5801 01/01/1988 31/12/2500 LIBEN Woven pile fabrics and chenille fabrics (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -580110 01/01/1988 31/12/2500 LIBEN Woven pile fabrics and chenille fabrics, of wool or fine animal hair (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -58011000 01/01/1988 31/12/2500 LIBEN Woven pile fabrics and chenille fabrics, of wool or fine animal hair (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -580121 01/01/1988 31/12/2500 LIBEN Uncut weft pile fabrics, of cotton (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -58012100 01/01/1988 31/12/2500 LIBEN Uncut weft pile fabrics, of cotton (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -580122 01/01/1988 31/12/2500 LIBEN Cut corduroy, of cotton (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -58012200 01/01/1988 31/12/2500 LIBEN Cut corduroy, of cotton (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -580123 01/01/1988 31/12/2500 LIBEN Cut weft pile fabrics, of cotton (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -58012300 01/01/1988 31/12/2500 LIBEN Cut weft pile fabrics, of cotton (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -580124 01/01/1988 31/12/2011 LIBEN Uncut warp pile fabrics "épinglé", of cotton (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2011 -58012400 01/01/1988 31/12/2011 LIBEN Uncut warp pile fabrics "épinglé", of cotton (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2011 -580125 01/01/1988 31/12/2011 LIBEN Cut warp pile fabrics, of cotton (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2011 -58012500 01/01/1988 31/12/2011 LIBEN Cut warp pile fabrics, of cotton (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2011 -580126 01/01/1988 31/12/2500 LIBEN Chenille fabrics, of cotton (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -58012600 01/01/1988 31/12/2500 LIBEN Chenille fabrics, of cotton (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -580127 01/01/2012 31/12/2500 LIBEN Warp pile fabrics, of cotton (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/2012 31/12/2500 -58012700 01/01/2012 31/12/2500 LIBEN Warp pile fabrics, of cotton (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/2012 31/12/2500 -580131 01/01/1988 31/12/2500 LIBEN Uncut weft pile fabrics, of man-made fibres (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -58013100 01/01/1988 31/12/2500 LIBEN Uncut weft pile fabrics, of man-made fibres (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -580132 01/01/1988 31/12/2500 LIBEN Cut corduroy, of man-made fibres (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -58013200 01/01/1988 31/12/2500 LIBEN Cut corduroy, of man-made fibres (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -580133 01/01/1988 31/12/2500 LIBEN Cut weft pile fabrics, of man-made fibres (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -58013300 01/01/1988 31/12/2500 LIBEN Cut weft pile fabrics, of man-made fibres (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -580134 01/01/1988 31/12/2011 LIBEN Uncut warp pile fabrics "épinglé", of man-made fibres (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2011 -58013400 01/01/1988 31/12/2011 LIBEN Uncut warp pile fabrics "épinglé", of man-made fibres (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2011 -580135 01/01/1988 31/12/2011 LIBEN Cut warp pile fabrics, of man-made fibres (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2011 -58013500 01/01/1988 31/12/2011 LIBEN Cut warp pile fabrics, of man-made fibres (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2011 -580136 01/01/1988 31/12/2500 LIBEN Chenille fabrics, of man-made fibres (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -58013600 01/01/1988 31/12/2500 LIBEN Chenille fabrics, of man-made fibres (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -580137 01/01/2012 31/12/2500 LIBEN Warp pile fabrics, of man-made fibres (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/2012 31/12/2500 -58013700 01/01/2012 31/12/2500 LIBEN Warp pile fabrics, of man-made fibres (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/2012 31/12/2500 -580190 01/01/1988 31/12/2500 LIBEN Woven pile fabrics and chenille fabrics (excl. those of man-made fibres, wool or fine animal hair, terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -58019010 01/01/1988 31/12/2500 LIBEN Woven pile fabrics and chenille fabrics, of flax (excl. terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -58019090 01/01/1988 31/12/2500 LIBEN Woven pile fabrics and chenille fabrics (excl. those of flax, man-made fibres, wool or fine animal hair, terry towelling and similar woven terry fabrics, tufted textile fabrics and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -5802 01/01/1988 31/12/2500 LIBEN Terry towelling and similar woven terry fabrics, tufted textile fabrics (excl. narrow woven fabrics of heading 5806, carpets and other floor coverings) 01/01/1988 31/12/2500 -580211 01/01/1988 31/12/2500 LIBEN Terry towelling and similar woven terry fabrics, of cotton, unbleached (excl. narrow woven fabrics of heading 5806, carpets and other floor coverings) 01/01/1988 31/12/2500 -58021100 01/01/1988 31/12/2500 LIBEN Terry towelling and similar woven terry fabrics, of cotton, unbleached (excl. narrow woven fabrics of heading 5806, carpets and other floor coverings) 01/01/1988 31/12/2500 -580219 01/01/1988 31/12/2500 LIBEN Terry towelling and similar woven terry fabrics, of cotton (excl. unbleached, narrow woven fabrics of heading 5806, carpets and other floor coverings) 01/01/1988 31/12/2500 -58021900 01/01/1988 31/12/2500 LIBEN Terry towelling and similar woven terry fabrics, of cotton (excl. unbleached, narrow woven fabrics of heading 5806, carpets and other floor coverings) 01/01/1988 31/12/2500 -580220 01/01/1988 31/12/2500 LIBEN Terry towelling and similar woven terry fabrics (excl. those of cotton, narrow woven fabrics of heading 5806, carpets and other floor coverings) 01/01/1988 31/12/2500 -58022000 01/01/1988 31/12/2500 LIBEN Terry towelling and similar woven terry fabrics (excl. those of cotton, narrow woven fabrics of heading 5806, carpets and other floor coverings) 01/01/1988 31/12/2500 -580230 01/01/1988 31/12/2500 LIBEN Tufted textile fabrics (excl. carpets and other floor coverings) 01/01/1988 31/12/2500 -58023000 01/01/1988 31/12/2500 LIBEN Tufted textile fabrics (excl. carpets and other floor coverings) 01/01/1988 31/12/2500 -5803 01/01/1988 31/12/2500 LIBEN Gauze (excl. narrow woven fabrics of heading 5806) 01/01/1988 31/12/2500 -580300 01/01/2007 31/12/2500 LIBEN Gauze (excl. narrow woven fabrics of heading 5806) 01/01/2007 31/12/2500 -58030010 01/01/2007 31/12/2500 LIBEN Cotton gauze (excl. narrow woven fabrics of heading 5806) 01/01/2007 31/12/2500 -58030030 01/01/2007 31/12/2500 LIBEN Gauze of silk or silk waste (excl. narrow woven fabrics of heading 5806) 01/01/2007 31/12/2500 -58030090 01/01/2007 31/12/2500 LIBEN Gauze (excl. that of silk, silk waste or cotton, and narrow woven fabrics of heading 5806) 01/01/2007 31/12/2500 -580310 01/01/1988 31/12/2006 LIBEN Cotton gauze (excl. narrow woven fabrics of heading 5806) 01/01/1988 31/12/2006 -58031000 01/01/1988 31/12/2006 LIBEN Cotton gauze (excl. narrow woven fabrics of heading 5806) 01/01/1988 31/12/2006 -580390 01/01/1988 31/12/2006 LIBEN Gauze (excl. that of cotton and narrow woven fabrics of heading 5806) 01/01/1988 31/12/2006 -58039010 01/01/1988 31/12/2006 LIBEN Gauze of silk or silk waste (excl. narrow woven fabrics of heading 5806) 01/01/1988 31/12/2006 -58039030 01/01/1988 31/12/2004 LIBEN Gauze of synthetic fibres (excl. narrow woven fabrics of heading 5806) 01/01/1988 31/12/2004 -58039040 01/01/2005 31/12/2006 LIBEN Gauze of man-made fibres (excl. narrow woven fabrics of heading 5806) 01/01/2005 31/12/2006 -58039050 01/01/1988 31/12/2004 LIBEN Gauze of artificial fibres (excl. narrow woven fabrics of heading 5806) 01/01/1988 31/12/2004 -58039090 01/01/1988 31/12/2006 LIBEN Gauze (excl. that of man-madel fibres, of silk, silk waste or cotton) 01/01/1988 31/12/2006 -5804 01/01/1988 31/12/2500 LIBEN Tulles and other net fabrics (excl. woven, knitted or crocheted fabrics); lace in the piece, in strips or in motifs (excl. fabrics of heading 6002 to 6006) 01/01/1988 31/12/2500 -580410 01/01/1988 31/12/2500 LIBEN Tulles and other net fabrics (excl. woven, knitted or crocheted fabrics) 01/01/1988 31/12/2500 -58041010 01/01/2009 31/12/2500 LIBEN Tulles and other net fabrics, plain (excl. knotted net fabrics, and woven, knitted or crocheted fabrics) 01/01/2009 31/12/2500 -58041011 01/01/1988 31/12/2008 LIBEN Knotted net fabrics, plain 01/01/1988 31/12/2008 -58041019 01/01/1988 31/12/2008 LIBEN Tulles and other net fabrics, plain (excl. knotted net fabrics, and woven, knitted or crocheted fabrics) 01/01/1988 31/12/2008 -58041090 01/01/1988 31/12/2500 LIBEN Tulles and other net fabrics, patterned (excl. woven, knitted or crocheted fabrics) 01/01/1988 31/12/2500 -580421 01/01/1988 31/12/2500 LIBEN Mechanically made lace of man-made fibres in the piece, in strips or in motifs (excl. fabrics of headings 6002 to 6006) 01/01/1988 31/12/2500 -58042100 01/01/2017 31/12/2500 LIBEN Mechanically made lace of man-made fibres in the piece, in strips or in motifs (excl. fabrics of headings 6002 to 6006) 01/01/2017 31/12/2500 -58042110 01/01/1988 31/12/2016 LIBEN Lace of man-made fibres in the piece, in strips or in motifs, made on mechanical bobbin machines (excl. fabrics of heading 6002 to 6006) 01/01/1988 31/12/2016 -58042190 01/01/1988 31/12/2016 LIBEN Mechanically made lace of man-made fibres in the piece, in strips or in motifs (excl. that made on mechanical bobbin machines and fabrics of heading 6002 to 6006) 01/01/1988 31/12/2016 -580429 01/01/1988 31/12/2500 LIBEN Mechanically made lace in the piece, in strips or in motifs (excl. that of man-made fibres, and fabrics of headings 6002 to 6006) 01/01/1988 31/12/2500 -58042900 01/01/2017 31/12/2500 LIBEN Mechanically made lace in the piece, in strips or in motifs (excl. that of man-made fibres, and fabrics of headings 6002 to 6006) 01/01/2017 31/12/2500 -58042910 01/01/1988 31/12/2016 LIBEN Lace in the piece, in strips or in motifs, made on mechanical bobbin machines (excl. that of man-made fibres and fabrics of heading 6002 to 6006) 01/01/1988 31/12/2016 -58042990 01/01/1988 31/12/2016 LIBEN Mechanically made lace in the piece, in strips or in motifs (excl. that of man-made fibres, lace made on mechanical bobbin machines and fabrics of heading 6002 to 6006) 01/01/1988 31/12/2016 -580430 01/01/1988 31/12/2500 LIBEN Handmade lace in the piece, in strips or in motifs (excl. fabrics of heading 6002 to 6006) 01/01/1988 31/12/2500 -58043000 01/01/1988 31/12/2500 LIBEN Handmade lace in the piece, in strips or in motifs (excl. fabrics of heading 6002 to 6006) 01/01/1988 31/12/2500 -5805 01/01/1988 31/12/2500 LIBEN Hand-woven tapestries of the type Gobelin, Flanders, Aubusson, Beauvais and the like, and needle-worked tapestries, e.g. petit point, cross-stitch, whether or not made up (excl. Kelem, Schumacks, Karamanie and the like, and tapestries > 100 years old) 01/01/1988 31/12/2500 -580500 01/01/1988 31/12/2500 LIBEN Hand-woven tapestries of the type Gobelin, Flanders, Aubusson, Beauvais and the like, and needle-worked tapestries, e.g. petit point, cross-stitch, whether or not made up (excl. Kelem, Schumacks, Karamanie and the like, and tapestries > 100 years old) 01/01/1988 31/12/2500 -58050000 01/01/1988 31/12/2500 LIBEN Hand-woven tapestries of the type Gobelin, Flanders, Aubusson, Beauvais and the like, and needle-worked tapestries, e.g. petit point, cross-stitch, whether or not made up (excl. Kelem, Schumacks, Karamanie and the like, and tapestries > 100 years old) 01/01/1988 31/12/2500 -5806 01/01/1988 31/12/2500 LIBEN Narrow woven fabrics of textile materials, with a width of <= 30 cm (excl. labels, badges and similar articles); narrow fabrics consisting of warp without weft assembled by means of an adhesive "bolducs" 01/01/1988 31/12/2500 -580610 01/01/1988 31/12/2500 LIBEN Narrow woven pile fabrics, incl. terry towelling and similar terry fabrics, and chenille fabrics, with a width of <= 30 cm (excl. labels, badges and similar articles) 01/01/1988 31/12/2500 -58061000 01/01/1988 31/12/2500 LIBEN Narrow woven pile fabrics, incl. terry towelling and similar terry fabrics, and chenille fabrics, with a width of <= 30 cm (excl. labels, badges and similar articles) 01/01/1988 31/12/2500 -580620 01/01/1988 31/12/2500 LIBEN Narrow woven fabrics of textile materials, containing >= 5% elastomeric yarn or rubber thread by weight, with a width of <= 30 cm (excl. woven pile fabrics, incl. terry towelling and similar terry fabrics, chenille fabrics, and labels, badges and similar articles) 01/01/1988 31/12/2500 -58062000 01/01/1988 31/12/2500 LIBEN Narrow woven fabrics of textile materials, containing >= 5% elastomeric yarn or rubber thread by weight, with a width of <= 30 cm (excl. woven pile fabrics, incl. terry towelling and similar terry fabrics, chenille fabrics, and labels, badges and similar articles) 01/01/1988 31/12/2500 -580631 01/01/1988 31/12/2500 LIBEN Narrow woven fabrics of cotton, with a width of <= 30 cm, n.e.s. 01/01/1988 31/12/2500 -58063100 01/01/1999 31/12/2500 LIBEN Narrow woven fabrics of cotton, with a width of <= 30 cm, n.e.s. 01/01/1999 31/12/2500 -58063110 01/01/1988 31/12/1998 LIBEN Narrow woven fabrics of cotton, with real selvedges, n.e.s. 01/01/1988 31/12/1998 -58063190 01/01/1988 31/12/1998 LIBEN Narrow woven fabrics of cotton, without real selvedges, n.e.s. 01/01/1988 31/12/1998 -580632 01/01/1988 31/12/2500 LIBEN Narrow woven fabrics of man-made fibres, with a width of <= 30 cm, n.e.s. 01/01/1988 31/12/2500 -58063210 01/01/1988 31/12/2500 LIBEN Narrow woven fabrics of man-made fibres, with real selvedges, with a width of <= 30 cm, n.e.s. 01/01/1988 31/12/2500 -58063290 01/01/1988 31/12/2500 LIBEN Narrow woven fabrics of man-made fibres, without real selvedges, with a width of <= 30 cm, n.e.s. 01/01/1988 31/12/2500 -580639 01/01/1988 31/12/2500 LIBEN Narrow woven fabrics of textile materials other than cotton or man-made fibres, with a width of <= 30 cm, n.e.s. 01/01/1988 31/12/2500 -58063900 01/01/1988 31/12/2500 LIBEN Narrow woven fabrics of textile materials other than cotton or man-made fibres, with a width of <= 30 cm, n.e.s. 01/01/1988 31/12/2500 -580640 01/01/1988 31/12/2500 LIBEN Narrow fabrics consisting of warp without weft assembled by means of an adhesive "bolducs", with a width of <= 30 cm 01/01/1988 31/12/2500 -58064000 01/01/1988 31/12/2500 LIBEN Narrow fabrics consisting of warp without weft assembled by means of an adhesive "bolducs", with a width of <= 30 cm 01/01/1988 31/12/2500 -5807 01/01/1988 31/12/2500 LIBEN Labels, badges and similar articles, of textile materials, in the piece, in strips or cut to shape or size, not embroidered 01/01/1988 31/12/2500 -580710 01/01/1988 31/12/2500 LIBEN Labels, badges and similar articles, of textile materials, in the piece, in strips or cut to shape or size, woven, not embroidered 01/01/1988 31/12/2500 -58071010 01/01/1988 31/12/2500 LIBEN Labels, badges and similar articles, of textile materials, in the piece, in strips or cut to shape or size, woven, with woven inscriptions or motifs 01/01/1988 31/12/2500 -58071090 01/01/1988 31/12/2500 LIBEN Labels, badges and similar articles, of textile materials, in the piece, in strips or cut to shape or size, woven, not embroidered (excl. those with woven inscriptions or motifs) 01/01/1988 31/12/2500 -580790 01/01/1988 31/12/2500 LIBEN Labels, badges and similar articles, of textile materials, in the piece, in strips or cut to shape or size, not embroidered (excl. woven) 01/01/1988 31/12/2500 -58079010 01/01/1988 31/12/2500 LIBEN Labels, badges and similar articles, of felt or nonwovens, in the piece, in strips or cut to shape or size, not embroidered 01/01/1988 31/12/2500 -58079090 01/01/1988 31/12/2500 LIBEN Labels, badges and similar articles, of textile materials, in the piece, in strips or cut to shape or size, not embroidered (excl. woven and those of felt or nonwovens) 01/01/1988 31/12/2500 -5808 01/01/1988 31/12/2500 LIBEN Braids of textile materials, in the piece; ornamental trimmings of textile materials, in the piece, not embroidered, other than knitted or crocheted; tassels, pompons and similar articles of textile materials 01/01/1988 31/12/2500 -580810 01/01/1988 31/12/2500 LIBEN Braids in the piece 01/01/1988 31/12/2500 -58081000 01/01/1988 31/12/2500 LIBEN Braids in the piece 01/01/1988 31/12/2500 -580890 01/01/1988 31/12/2500 LIBEN Ornamental trimmings of textile materials, in the piece, not embroidered, other than knitted or crocheted; tassels, pompons and similar articles of textile materials (excl. braids in the piece) 01/01/1988 31/12/2500 -58089000 01/01/1988 31/12/2500 LIBEN Ornamental trimmings of textile materials, in the piece, not embroidered, other than knitted or crocheted; tassels, pompons and similar articles of textile materials (excl. braids in the piece) 01/01/1988 31/12/2500 -5809 01/01/1988 31/12/2500 LIBEN Woven fabrics of metal thread and woven fabrics of metallised yarn of heading 5605, of a kind used in apparel, as furnishing fabrics or for similar purposes, n.e.s. 01/01/1988 31/12/2500 -580900 01/01/1988 31/12/2500 LIBEN Woven fabrics of metal thread and woven fabrics of metallised yarn of heading 5605, of a kind used in apparel, as furnishing fabrics or for similar purposes, n.e.s. 01/01/1988 31/12/2500 -58090000 01/01/1988 31/12/2500 LIBEN Woven fabrics of metal thread and woven fabrics of metallised yarn of heading 5605, of a kind used in apparel, as furnishing fabrics or for similar purposes, n.e.s. 01/01/1988 31/12/2500 -5810 01/01/1988 31/12/2500 LIBEN Embroidery on a textile fabric ground, in the piece, in strips or in motifs 01/01/1988 31/12/2500 -581010 01/01/1988 31/12/2500 LIBEN Embroidery on a textile fabric ground without visible ground, in the piece, in strips or in motifs 01/01/1988 31/12/2500 -58101010 01/01/1988 31/12/2500 LIBEN Embroidery on a textile fabric ground without visible ground, in the piece, in strips or in motifs, of a net value of > € 35 per kg 01/01/1988 31/12/2500 -58101090 01/01/1988 31/12/2500 LIBEN Embroidery on a textile fabric ground without visible ground, in the piece, in strips or in motifs, of a net value of <= € 35 per kg 01/01/1988 31/12/2500 -581091 01/01/1988 31/12/2500 LIBEN Embroidery of cotton on a textile fabric ground, in the piece, in strips or in motifs (excl. embroidery without visible ground) 01/01/1988 31/12/2500 -58109110 01/01/1988 31/12/2500 LIBEN Embroidery of cotton on a textile fabric ground, in the piece, in strips or in motifs, of a net value of > € 17,50 per kg (excl. embroidery without visible ground) 01/01/1988 31/12/2500 -58109190 01/01/1988 31/12/2500 LIBEN Embroidery of cotton on a textile fabric ground, in the piece, in strips or in motifs, of a net value of <= € 17,50 per kg (excl. embroidery without visible ground) 01/01/1988 31/12/2500 -581092 01/01/1988 31/12/2500 LIBEN Embroidery of man-made fibres on a textile fabric base, in the piece, in strips or in motifs (excl. embroidery without visible ground) 01/01/1988 31/12/2500 -58109210 01/01/1988 31/12/2500 LIBEN Embroidery of man-made fibres on a textile fabric base, in the piece, in strips or in motifs, of a net value of > € 17,50 per kg (excl. embroidery without visible ground) 01/01/1988 31/12/2500 -58109290 01/01/1988 31/12/2500 LIBEN Embroidery of man-made fibres on a textile fabric base, in the piece, in strips or in motifs, of a net value of <= € 17,50 per kg (excl. embroidery without visible ground) 01/01/1988 31/12/2500 -581099 01/01/1988 31/12/2500 LIBEN Embroidery of materials other than cotton or man-made fibres, on a textile fabric base, in the piece, in strips or in motifs (excl. embroidery without visible ground) 01/01/1988 31/12/2500 -58109910 01/01/1988 31/12/2500 LIBEN Embroidery of materials other than cotton or man-made fibres, on a textile fabric base, in the piece, in strips or in motifs, of a net value of > € 17,50 per kg (excl. embroidery without visible ground) 01/01/1988 31/12/2500 -58109990 01/01/1988 31/12/2500 LIBEN Embroidery of materials other than cotton or man-made fibres, on a textile fabric base, in the piece, in strips or in motifs, of a net value of <= € 17,50 per kg (excl. embroidery without visible ground) 01/01/1988 31/12/2500 -5811 01/01/1988 31/12/2500 LIBEN Quilted textile products in the piece, composed of one or more layers of textile materials assembled with padding by stitching or otherwise (excl. embroidery of heading 5810 and quilted fabrics for bedding and furnishings) 01/01/1988 31/12/2500 -581100 01/01/1988 31/12/2500 LIBEN Quilted textile products in the piece, composed of one or more layers of textile materials assembled with padding by stitching or otherwise (excl. embroidery of heading 5810 and quilted fabrics for bedding and furnishings) 01/01/1988 31/12/2500 -58110000 01/01/1988 31/12/2500 LIBEN Quilted textile products in the piece, composed of one or more layers of textile materials assembled with padding by stitching or otherwise (excl. embroidery of heading 5810 and quilted fabrics for bedding and furnishings) 01/01/1988 31/12/2500 -58CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 58 01/01/2002 31/12/2500 -58CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 58 01/01/2002 31/12/2500 -58CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 58 01/01/2002 31/12/2500 -58MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -58MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -58MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -58PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 58 carried by post 01/01/1988 31/12/2500 -58PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 58 carried by post 01/01/1988 31/12/2500 -58PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 58 carried by post 01/01/1988 31/12/2500 -58SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 58 01/01/1988 31/12/2500 -58SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 58 and SITC section 0 01/01/1997 31/12/2001 -58SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 58 and SITC group 000 01/01/1997 31/12/2001 -58SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 58 and SITC section 6 01/01/1997 31/12/2500 -58SSS652 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 58 and SITC group 652 01/01/1997 31/12/2500 -58SSS653 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 58 and SITC group 653 01/01/1997 31/12/2500 -58SSS654 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 58 and SITC group 654 01/01/1997 31/12/2500 -58SSS656 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 58 and SITC group 656 01/01/1997 31/12/2500 -58SSS657 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 58 and SITC group 657 01/01/1997 31/12/2500 -58SSS658 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 58 and SITC group 658 01/01/1997 31/12/2500 -58SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 58 and SITC section 9 01/01/1988 31/12/1996 -58SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 58 and SITC section 9 01/01/1997 31/12/2500 -58SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 58 and SITC group 999 01/01/1988 31/12/1996 -58SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 58 and SITC group 999 01/01/1997 31/12/2500 -58VV 01/01/1989 31/12/2500 LIBEN Imported goods of chapter 58 for the assembly of motor vehicles 01/01/1989 31/12/2500 -58VVV0 01/01/1989 31/12/2500 LIBEN Imported goods of chapter 58 for the assembly of motor vehicles 01/01/1989 31/12/2500 -58VVV000 01/01/1989 31/12/2500 LIBEN Imported goods of chapter 58 for the assembly of motor vehicles 01/01/1989 31/12/2500 -59 01/01/1988 31/12/2500 LIBEN IMPREGNATED, COATED, COVERED OR LAMINATED TEXTILE FABRICS; TEXTILE ARTICLES OF A KIND SUITABLE FOR INDUSTRIAL USE 01/01/1988 31/12/2500 -5901 01/01/1988 31/12/2500 LIBEN Textile fabrics coated with gum or amylaceous substances, of a kind used for the outer covers of books, the manufacture of boxes and articles of cardboard or the like; tracing cloth; prepared painting canvas; buckram and similar stiffened textile fabrics of a kind used for hat foundations (excl. plastic-coated textile fabrics) 01/01/1988 31/12/2500 -590110 01/01/1988 31/12/2500 LIBEN Textile fabrics coated with gum or amylaceous substances, of a kind used for the outer covers of books, the manufacture of boxes and articles of cardboard or the like 01/01/1988 31/12/2500 -59011000 01/01/1988 31/12/2500 LIBEN Textile fabrics coated with gum or amylaceous substances, of a kind used for the outer covers of books, the manufacture of boxes and articles of cardboard or the like 01/01/1988 31/12/2500 -590190 01/01/1988 31/12/2500 LIBEN Tracing cloth; prepared painting canvas; buckram and similar stiffened textile fabrics of a kind used for hat foundations (excl. plastic-coated textile fabrics) 01/01/1988 31/12/2500 -59019000 01/01/1988 31/12/2500 LIBEN Tracing cloth; prepared painting canvas; buckram and similar stiffened textile fabrics of a kind used for hat foundations (excl. plastic-coated textile fabrics) 01/01/1988 31/12/2500 -5902 01/01/1988 31/12/2500 LIBEN Tyre cord fabric of high-tenacity yarn of nylon or other polyamides, polyesters or viscose rayon, whether or not dipped or impregnated with rubber or plastic 01/01/1988 31/12/2500 -590210 01/01/1988 31/12/2500 LIBEN Tyre cord fabric of high-tenacity yarn of nylon or other polyamides, whether or not dipped or impregnated with rubber or plastic 01/01/1988 31/12/2500 -59021010 01/01/1988 31/12/2500 LIBEN Tyre cord fabric of high-tenacity yarn of nylon or other polyamides, impregnated with rubber 01/01/1988 31/12/2500 -59021090 01/01/1988 31/12/2500 LIBEN Tyre cord fabric of high-tenacity of nylon or other polyamides, whether or not dipped or impregnated with plastic (excl. that impregnated with rubber) 01/01/1988 31/12/2500 -590220 01/01/1988 31/12/2500 LIBEN Tyre cord fabric of high-tenacity polyester yarn, whether or not dipped or impregnated with rubber or plastic 01/01/1988 31/12/2500 -59022010 01/01/1988 31/12/2500 LIBEN Tyre cord fabric of high-tenacity polyester yarn, impregnated with rubber 01/01/1988 31/12/2500 -59022090 01/01/1988 31/12/2500 LIBEN Tyre cord fabric of high-tenacity polyester yarn, whether or not dipped or impregnated with plastic (excl. that impregnated with rubber) 01/01/1988 31/12/2500 -590290 01/01/1988 31/12/2500 LIBEN Tyre cord fabric of high-tenacity viscose rayon yarn, whether or not dipped in rubber or plastic 01/01/1988 31/12/2500 -59029010 01/01/1988 31/12/2500 LIBEN Tyre cord fabric of high-tenacity viscose rayon yarn, impregnated with rubber 01/01/1988 31/12/2500 -59029090 01/01/1988 31/12/2500 LIBEN Tyre cord fabric of high-tenacity viscose rayon yarn, whether or not dipped in plastic (excl. that impregnated with rubber) 01/01/1988 31/12/2500 -5902S6 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 5902 and SITC section 6 01/01/2001 31/12/2500 -5902S657 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 5902 and SITC group 657 01/01/2001 31/12/2500 -5903 01/01/1988 31/12/2500 LIBEN Textile fabrics impregnated, coated, covered or laminated with plastics (excl. tyre cord fabric of high-tenacity yarn of nylon or other polyamides, polyesters or viscose rayon; wallcoverings impregnated or covered with textile materials; floor coverings consisting of a textile backing and a top layer or covering of plastics) 01/01/1988 31/12/2500 -590310 01/01/1988 31/12/2500 LIBEN Textile fabrics impregnated, coated, covered or laminated with poly"vinyl chloride" (excl. wallcoverings of textile materials impregnated or covered with poly"vinyl chloride"; floor coverings consisting of a textile backing and a top layer or covering of poly"vinyl chloride") 01/01/1988 31/12/2500 -59031010 01/01/1988 31/12/2500 LIBEN Textile fabrics impregnated with poly"vinyl chloride" (excl. wallcoverings of textile materials impregnated with poly"vinyl chloride") 01/01/1988 31/12/2500 -59031090 01/01/1988 31/12/2500 LIBEN Textile fabrics coated, covered or laminated with poly"vinyl chloride" (excl. wallcoverings of textile materials covered with poly"vinyl chloride"; floor coverings consisting of a textile backing and a top layer or covering of poly"vinyl chloride") 01/01/1988 31/12/2500 -590320 01/01/1988 31/12/2500 LIBEN Textile fabrics impregnated, coated, covered or laminated with polyurethane (excl. wallcoverings of textile materials impregnated or covered with polyurethane; floor coverings consisting of a textile backing and a top layer or covering of polyurethane) 01/01/1988 31/12/2500 -59032010 01/01/1988 31/12/2500 LIBEN Textile fabrics impregnated with polyurethane (excl. wallcoverings of textile materials impregnated with polyurethane) 01/01/1988 31/12/2500 -59032090 01/01/1988 31/12/2500 LIBEN Textile fabrics coated, covered or laminated with polyurethane (excl. wallcoverings of textile materials covered with polyurethane; floor coverings consisting of a textile backing and a top layer or covering of polyurethane) 01/01/1988 31/12/2500 -590390 01/01/1988 31/12/2500 LIBEN Textile fabrics impregnated, coated, covered or laminated with plastics other than poly"vinyl chloride" or polyurethane (excl. tyre cord fabric of high-tenacity yarn of nylon or other polyamides, polyesters or viscose rayon; wallcoverings of textile materials impregnated or covered with plastic; floor coverings consisting of a textile backing and a top layer or covering of plastics) 01/01/1988 31/12/2500 -59039010 01/01/1988 31/12/2500 LIBEN Textile fabrics impregnated with plastics other than poly"vinyl chloride" or polyurethane (excl. wallcoverings of textile materials impregnated with plastics) 01/01/1988 31/12/2500 -59039091 01/01/1988 31/12/2500 LIBEN Textile fabrics coated, covered or laminated with cellulose derivatives or plastics other than poly"vinyl chloride" or polyurethane, with the fabric forming the right side (excl. wallcoverings of textile materials covered with plastics) 01/01/1988 31/12/2500 -59039099 01/01/1988 31/12/2500 LIBEN Textile fabrics coated, covered or laminated with plastics other than poly"vinyl chloride" or polyurethane (excl. those with textile materials forming the right side, tyre cord fabric of high-tenacity yarn of nylon or other polyamides, polyesters or viscose rayon; wallcoverings of textile materials impregnated or covered with plastics; floor coverings consisting of a textile backing and a top layer or covering of plastics) 01/01/1988 31/12/2500 -5904 01/01/1988 31/12/2500 LIBEN Linoleum, whether or not cut to shape; floor coverings consisting of a coating or covering applied on a textile backing, whether or not cut to shape 01/01/1988 31/12/2500 -590410 01/01/1988 31/12/2500 LIBEN Linoleum, whether or not cut to shape 01/01/1988 31/12/2500 -59041000 01/01/1988 31/12/2500 LIBEN Linoleum, whether or not cut to shape 01/01/1988 31/12/2500 -590490 01/01/2002 31/12/2500 LIBEN Floor coverings consisting of a coating or covering applied on a textile backing, whether or not cut to shape (excl. linoleum) 01/01/2002 31/12/2500 -59049000 01/01/2002 31/12/2500 LIBEN Floor coverings consisting of a coating or covering applied on a textile backing, whether or not cut to shape (excl. linoleum) 01/01/2002 31/12/2500 -590491 01/01/1988 31/12/2001 LIBEN Floor coverings with a base consisting of a coating or covering applied on needleloom felt or non-wovens backing, whether or not cut to size 01/01/1988 31/12/2001 -59049110 01/01/1988 31/12/2001 LIBEN Floor coverings with a base consisting of a coating or covering applied on needleloom felt backing, whether or not cut to size 01/01/1988 31/12/2001 -59049190 01/01/1988 31/12/2001 LIBEN Floor coverings with a base consisting of a coating or covering applied on non-wovens backing, whether or not cut to size 01/01/1988 31/12/2001 -590492 01/01/1988 31/12/2001 LIBEN Floor coverings with a base consisting of a coating or covering applied on a textile backing, whether or not cut to size (excl. those on a needleloom felt or non-wovens backing, and linoleum) 01/01/1988 31/12/2001 -59049200 01/01/1988 31/12/2001 LIBEN Floor coverings with a base consisting of a coating or covering applied on a textile backing, whether or not cut to size (excl. those on a needleloom felt or non-wovens backing, and linoleum) 01/01/1988 31/12/2001 -5904S6 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 5904 and SITC section 6 01/01/1998 31/12/2500 -5904S659 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 5904 and SITC group 659 01/01/1998 31/12/2500 -5905 01/01/1988 31/12/2500 LIBEN Textile wallcoverings 01/01/1988 31/12/2500 -590500 01/01/1988 31/12/2500 LIBEN Textile wallcoverings 01/01/1988 31/12/2500 -59050010 01/01/1988 31/12/2500 LIBEN Textile wallcoverings consisting of parallel yarns, fixed on a backing of any material 01/01/1988 31/12/2500 -59050030 01/01/1999 31/12/2500 LIBEN Wallcoverings of flax (excl. consisting of parallel yarns, fixed on a backing of any material) 01/01/1999 31/12/2500 -59050031 01/01/1988 31/12/1998 LIBEN Wall coverings of flax, unbleached (excl. those consisting of parallel yarns, fixed on a backing of any material) 01/01/1988 31/12/1998 -59050039 01/01/1988 31/12/1998 LIBEN Wall coverings of flax (excl. unbleached, and those consisting of parallel yarns, fixed on a backing of any material) 01/01/1988 31/12/1998 -59050050 01/01/1988 31/12/2500 LIBEN Wallcoverings of jute (excl. those consisting of parallel yarns, fixed on a backing of any material) 01/01/1988 31/12/2500 -59050070 01/01/1988 31/12/2500 LIBEN Wallcoverings of man-made fibres (excl. those consisting of parallel yarns, fixed on a backing of any material) 01/01/1988 31/12/2500 -59050090 01/01/1988 31/12/2500 LIBEN Textile wallcoverings (excl. those of flax, jute or man-made fibres, and those consisting of parallel yarns, fixed on a backing of any material) 01/01/1988 31/12/2500 -590500SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 5905 00 01/01/2006 31/12/2500 -5906 01/01/1988 31/12/2500 LIBEN Rubberised textile fabrics (excl. tyre cord fabric of high-tenacity yarn of nylon or other polyamides, polyesters or viscose rayon) 01/01/1988 31/12/2500 -590610 01/01/1988 31/12/2500 LIBEN Adhesive tape of rubberised textile fabrics, of a width of <= 20 cm (excl. that impregnated or coated with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes) 01/01/1988 31/12/2500 -59061000 01/01/1999 31/12/2500 LIBEN Adhesive tape of rubberised textile fabrics, of a width of <= 20 cm (excl. that impregnated or coated with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes) 01/01/1999 31/12/2500 -59061010 01/01/1988 31/12/1998 LIBEN Adhesive tape of rubberized textile fabrics, of a width of <= 10 cm (excl. that impregnated or coated with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes) 01/01/1988 31/12/1998 -59061090 01/01/1988 31/12/1998 LIBEN Adhesive tape of rubberized textile fabrics, of a width of > 10 cm to 20 cm (excl. that impregnated or coated with pharmaceutical substances or put up for retail sale for medical, surgical, dental or veterinary purposes) 01/01/1988 31/12/1998 -590691 01/01/1988 31/12/2500 LIBEN Knitted or crocheted textile fabrics, rubberised, n.e.s. 01/01/1988 31/12/2500 -59069100 01/01/1988 31/12/2500 LIBEN Knitted or crocheted textile fabrics, rubberised, n.e.s. 01/01/1988 31/12/2500 -590699 01/01/1988 31/12/2500 LIBEN Rubberised textile fabrics (excl. knitted or crocheted textile fabrics, adhesive tape of a width of <= 20 cm, and tyre cord fabric of high-tenacity yarn of nylon or other polyamides, polyesters or viscose rayon) 01/01/1988 31/12/2500 -59069910 01/01/1988 31/12/2500 LIBEN Textile fabrics composed of parallel textile yarns agglomerated with rubber 01/01/1988 31/12/2500 -59069990 01/01/1988 31/12/2500 LIBEN Rubberised textile fabrics (excl. knitted or crocheted textile fabrics, fabrics composed of parallel textile yarns agglomerated with rubber, adhesive tape of a width of <= 20 cm, and tyre cord fabric of high-tenacity yarn of nylon or other polyamides, polyesters or viscose rayon) 01/01/1988 31/12/2500 -5907 01/01/1988 31/12/2500 LIBEN Impregnated, coated or covered textile fabrics; painted canvas being theatrical scenery, studio backcloths or the like, n.e.s. 01/01/1988 31/12/2500 -590700 01/01/1988 31/12/2500 LIBEN Impregnated, coated or covered textile fabrics; painted canvas being theatrical scenery, studio backcloths or the like, n.e.s. 01/01/1988 31/12/2500 -59070000 01/01/1988 31/12/1994 LIBEN Impregnated, coated or covered textile fabrics; painted canvas for use as theatrical scenery, studio backcloths and the like, n.e.s. 01/01/1988 31/12/1994 -59070000 01/01/2009 31/12/2500 LIBEN Impregnated, coated or covered textile fabrics; painted canvas being theatrical scenery, studio backcloths or the like, n.e.s. 01/01/2009 31/12/2500 -59070010 01/01/1995 31/12/2008 LIBEN Oilcloth and other textile fabrics coated with preparations with a basis of drying oil 01/01/1995 31/12/2008 -59070090 01/01/1995 31/12/2008 LIBEN Impregnated, coated or covered textile fabrics; painted canvas being theatrical scenery, studio backcloths or the like, n.e.s. (excl. oilcloth and other textile fabrics coated with preparations with a basis of drying oil) 01/01/1995 31/12/2008 -5908 01/01/1988 31/12/2500 LIBEN Textile wicks, woven, plaited or knitted, for lamps, stoves, lighters, candles or the like; incandescent gas mantles and tubular knitted gas-mantle fabric for incandescent gas mantles, whether or not impregnated (excl. wax-covered wicks of the taper variety, fuses and detonating fuses, wicks in the form of textile yarn and glass-fibre wicks) 01/01/1988 31/12/2500 -590800 01/01/1988 31/12/2500 LIBEN Textile wicks, woven, plaited or knitted, for lamps, stoves, lighters, candles or the like; incandescent gas mantles and tubular knitted gas-mantle fabric for incandescent gas mantles, whether or not impregnated (excl. wax-covered wicks of the taper variety, fuses and detonating fuses, wicks in the form of textile yarn and glass-fibre wicks) 01/01/1988 31/12/2500 -59080000 01/01/1988 31/12/2500 LIBEN Textile wicks, woven, plaited or knitted, for lamps, stoves, lighters, candles or the like; incandescent gas mantles and tubular knitted gas-mantle fabric for incandescent gas mantles, whether or not impregnated (excl. wax-covered wicks of the taper variety, fuses and detonating fuses, wicks in the form of textile yarn and glass-fibre wicks) 01/01/1988 31/12/2500 -5909 01/01/1988 31/12/2500 LIBEN Textile hosepiping and similar textile tubing, whether or not impregnated or coated, with or without lining, armour or accessories of other materials 01/01/1988 31/12/2500 -590900 01/01/1988 31/12/2500 LIBEN Textile hosepiping and similar textile tubing, whether or not impregnated or coated, with or without lining, armour or accessories of other materials 01/01/1988 31/12/2500 -59090010 01/01/1988 31/12/2500 LIBEN Hosepiping and similar tubing of synthetic fibres, whether or not impregnated or coated, with or without lining, armour or accessories of other materials 01/01/1988 31/12/2500 -59090090 01/01/1988 31/12/2500 LIBEN Textile hosepiping and similar textile tubing, whether or not impregnated or coated, with or without lining, armour or accessories of other materials (excl. tubing of synthetic fibres) 01/01/1988 31/12/2500 -5910 01/01/1988 31/12/2500 LIBEN Transmission or conveyor belts or belting, of textile material, whether or not impregnated, coated, covered or laminated with plastics, or reinforced with metal or other material (excl. those of a thickness of < 3 mm and of indeterminate length or cut to length only, and those impregnated, coated, covered or laminated with rubber or made of yarn or cord impregnated or coated with rubber) 01/01/1988 31/12/2500 -591000 01/01/1988 31/12/2500 LIBEN Transmission or conveyor belts or belting, of textile material, whether or not impregnated, coated, covered or laminated with plastics, or reinforced with metal or other material (excl. those of a thickness of < 3 mm and of indeterminate length or cut to length only, and those impregnated, coated, covered or laminated with rubber or made of yarn or cord impregnated or coated with rubber) 01/01/1988 31/12/2500 -59100000 01/01/1988 31/12/2500 LIBEN Transmission or conveyor belts or belting, of textile material, whether or not impregnated, coated, covered or laminated with plastics, or reinforced with metal or other material (excl. those of a thickness of < 3 mm and of indeterminate length or cut to length only, and those impregnated, coated, covered or laminated with rubber or made of yarn or cord impregnated or coated with rubber) 01/01/1988 31/12/2500 -5911 01/01/1988 31/12/2500 LIBEN Textile products and articles, for technical use, specified in Note 7 to chapter 59 01/01/1988 31/12/2500 -591110 01/01/1988 31/12/2500 LIBEN Textile fabrics, felt and felt-lined woven fabrics, coated, covered or laminated with rubber, leather or other material, of a kind used for card clothing, and similar fabrics of a kind used for other technical purposes, incl. narrow fabrics made of velvet impregnated with rubber, for covering weaving spindles "weaving beams" 01/01/1988 31/12/2500 -59111000 01/01/1988 31/12/2500 LIBEN Textile fabrics, felt and felt-lined woven fabrics, coated, covered or laminated with rubber, leather or other material, of a kind used for card clothing, and similar fabrics of a kind used for other technical purposes, incl. narrow fabrics made of velvet impregnated with rubber, for covering weaving spindles "weaving beams" 01/01/1988 31/12/2500 -591120 01/01/1988 31/12/2500 LIBEN Bolting cloth, whether or not made up 01/01/1988 31/12/2500 -59112000 01/01/1988 31/12/2500 LIBEN Bolting cloth, whether or not made up 01/01/1988 31/12/2500 -591131 01/01/1988 31/12/2500 LIBEN Textile fabrics and felts, endless or fitted with linking devices, of a kind used in papermaking or similar machines, e.g. for paper pulp or asbestos-cement, weighing < 650 g/m² 01/01/1988 31/12/2500 -59113111 01/01/1988 31/12/2500 LIBEN Woven textile fabrics, whether or not felted, of silk or man-made fibres, endless or fitted with linking devices, of a kind used in papermaking machines, weighing < 650 g/m² (for example, forming fabrics) 01/01/1988 31/12/2500 -59113119 01/01/1988 31/12/2500 LIBEN Woven textile fabrics and felts, of silk or artificial fibres, endless or fitted with linking devices, of a kind used in papermaking machines, incl. woven fabrics and felts of silk or man-made fibres for use in similar machines, e.g. for paper pulp or asbestos-cement, weighing < 650 g/m² 01/01/1988 31/12/2500 -59113190 01/01/1988 31/12/2500 LIBEN Textile fabrics and felts, endless or fitted with linking devices, of a kind used in papermaking or similar machines, e.g. for paper pulp or asbestos-cement, weighing < 650 g/m² (excl. those of silk or man-made fibres) 01/01/1988 31/12/2500 -591132 01/01/1988 31/12/2500 LIBEN Textile fabrics and felts, endless or fitted with linking devices, of a kind used in papermaking or similar machines, e.g. for paper pulp or asbestos-cement, weighing >= 650 g/m² 01/01/1988 31/12/2500 -59113210 01/01/1988 31/12/2009 LIBEN Textile fabrics and felts, of silk or man-made fibres, endless or fitted with linking devices, of a kind used in papermaking or similar machines, e.g. for paper pulp or asbestos-cement, weighing >= 650 g/m² 01/01/1988 31/12/2009 -59113211 01/01/2010 31/12/2500 LIBEN Woven textile fabrics having a batt layer needled on them, of silk or man-made fibres, endless or fitted with linking devices, of a kind used in papermaking machines, weighing >= 650 g/m², (for example, press felts) 01/01/2010 31/12/2500 -59113219 01/01/2010 31/12/2500 LIBEN Textile fabrics and felts, of silk or man-made fibres, endless or fitted with linking devices, of a kind used in papermaking or similar machines, e.g. for paper pulp or asbestos-cement, weighing >= 650 g/m² (excl. woven fabrics having a batt layer needled on them, press felts) 01/01/2010 31/12/2500 -59113290 01/01/1988 31/12/2500 LIBEN Textile fabrics and felts, endless or fitted with linking devices, of a kind used in papermaking or similar machines, e.g. for paper pulp or asbestos-cement, weighing >= 650 g/m² (excl. those of silk or man-made fibres) 01/01/1988 31/12/2500 -591140 01/01/1988 31/12/2500 LIBEN Straining cloth of a kind used in oil-presses or for similar technical purposes, incl. that of human hair 01/01/1988 31/12/2500 -59114000 01/01/1988 31/12/2500 LIBEN Straining cloth of a kind used in oil-presses or for similar technical purposes, incl. that of human hair 01/01/1988 31/12/2500 -591190 01/01/1988 31/12/2500 LIBEN Textile products and articles, for technical purposes, specified in Note 7 to chapter 59, n.e.s. 01/01/1988 31/12/2500 -59119010 01/01/1988 31/12/2500 LIBEN Felt products and articles, for technical purposes, specified in Note 7 to chapter 59, n.e.s. 01/01/1988 31/12/2500 -59119090 01/01/1988 31/12/2016 LIBEN Textile products and articles, for technical purposes, specified in Note 7 to chapter 59, n.e.s. (excl. those of felt) 01/01/1988 31/12/2016 -59119091 01/01/2017 31/12/2500 LIBEN Self-adhesive circular polishing pads of a kind used for the manufacture of semiconductor wafers 01/01/2017 31/12/2500 -59119099 01/01/2017 31/12/2500 LIBEN Textile products and articles, for technical purposes, specified in Note 7 to chapter 59, n.e.s. 01/01/2017 31/12/2500 -59CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 59 01/01/2002 31/12/2500 -59CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 59 01/01/2002 31/12/2500 -59CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 59 01/01/2002 31/12/2500 -59MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -59MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -59MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -59SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 59 01/01/1988 31/12/2500 -59SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 59 and SITC section 0 01/01/1997 31/12/2001 -59SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 59 and SITC group 000 01/01/1997 31/12/2001 -59SSS6 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 59 and SITC section 6 01/01/1992 31/12/2500 -59SSS657 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 59 and SITC group 657 01/01/1992 31/12/2500 -59SSS659 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 59 and SITC group 659 01/01/1992 31/12/2500 -59SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 59 and SITC section 9 01/01/1988 31/12/1996 -59SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 59 and SITC section 9 01/01/1997 31/12/2500 -59SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 59 and SITC group 999 01/01/1988 31/12/1996 -59SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 59 and SITC group 999 01/01/1997 31/12/2500 -59VV 01/01/1989 31/12/2500 LIBEN Imported goods of chapter 59 for the assembly of motor vehicles 01/01/1989 31/12/2500 -59VVV0 01/01/1989 31/12/2500 LIBEN Imported goods of chapter 59 for the assembly of motor vehicles 01/01/1989 31/12/2500 -59VVV000 01/01/1989 31/12/2500 LIBEN Imported goods of chapter 59 for the assembly of motor vehicles 01/01/1989 31/12/2500 -60 01/01/1988 31/12/2500 LIBEN KNITTED OR CROCHETED FABRICS 01/01/1988 31/12/2500 -6001 01/01/1988 31/12/2500 LIBEN Pile fabrics, incl. "long pile" fabrics and terry fabrics, knitted or crocheted 01/01/1988 31/12/2500 -600110 01/01/1988 31/12/2500 LIBEN "Long pile" fabrics, knitted or crocheted 01/01/1988 31/12/2500 -60011000 01/01/1988 31/12/2500 LIBEN "Long pile" fabrics, knitted or crocheted 01/01/1988 31/12/2500 -600121 01/01/1988 31/12/2500 LIBEN Looped pile fabrics of cotton, knitted or crocheted 01/01/1988 31/12/2500 -60012100 01/01/1988 31/12/2500 LIBEN Looped pile fabrics of cotton, knitted or crocheted 01/01/1988 31/12/2500 -600122 01/01/1988 31/12/2500 LIBEN Looped pile fabrics of man-made fibres, knitted or crocheted 01/01/1988 31/12/2500 -60012200 01/01/1988 31/12/2500 LIBEN Looped pile fabrics of man-made fibres, knitted or crocheted 01/01/1988 31/12/2500 -600129 01/01/1988 31/12/2500 LIBEN Looped pile fabrics, knitted or crocheted (excl. of cotton or man-made fibres) 01/01/1988 31/12/2500 -60012900 01/01/2005 31/12/2500 LIBEN Looped pile fabrics, knitted or crocheted (excl. of cotton or man-made fibres) 01/01/2005 31/12/2500 -60012910 01/01/1988 31/12/2004 LIBEN Looped pile fabrics of wool or fine animal hair, knitted or crocheted 01/01/1988 31/12/2004 -60012990 01/01/1988 31/12/2004 LIBEN Looped pile fabrics, knitted or crocheted (excl. cotton, man-made, wool or fine animal hair) 01/01/1988 31/12/2004 -600191 01/01/1988 31/12/2500 LIBEN Pile fabrics of cotton, knitted or crocheted (excl. "long pile" fabrics) 01/01/1988 31/12/2500 -60019100 01/01/2005 31/12/2500 LIBEN Pile fabrics of cotton, knitted or crocheted (excl. "long pile" fabrics) 01/01/2005 31/12/2500 -60019110 01/01/1988 31/12/2004 LIBEN Unbleached or bleached pile fabrics of cotton, knitted or crocheted (excl. "long pile" fabrics) 01/01/1988 31/12/2004 -60019130 01/01/1988 31/12/2004 LIBEN Dyed pile fabrics of cotton, knitted or crocheted (excl. "long pile" fabrics) 01/01/1988 31/12/2004 -60019150 01/01/1988 31/12/2004 LIBEN Pile fabrics of yarns of different colours of cotton, knitted or crocheted (excl. "long pile" fabrics) 01/01/1988 31/12/2004 -60019190 01/01/1988 31/12/2004 LIBEN Printed pile fabrics of cotton, knitted or crocheted (excl. "long pile" fabrics) 01/01/1988 31/12/2004 -600192 01/01/1988 31/12/2500 LIBEN Pile fabrics of man-made fibres, knitted or crocheted (excl. "long pile" fabrics) 01/01/1988 31/12/2500 -60019200 01/01/2005 31/12/2500 LIBEN Pile fabrics of man-made fibres, knitted or crocheted (excl. "long pile" fabrics) 01/01/2005 31/12/2500 -60019210 01/01/1988 31/12/2004 LIBEN Unbleached or bleached pile fabrics of man-made fibres, knitted or crocheted (excl. "long pile" fabrics) 01/01/1988 31/12/2004 -60019230 01/01/1988 31/12/2004 LIBEN Dyed pile fabrics of man-made fibres, knitted or crocheted (excl. "long pile" fabrics) 01/01/1988 31/12/2004 -60019250 01/01/1988 31/12/2004 LIBEN Pile fabrics of yarns of different colours, of man-made fibres, knitted or crocheted (excl. "long pile" fabrics) 01/01/1988 31/12/2004 -60019290 01/01/1988 31/12/2004 LIBEN Printed pile fabrics of man-made fibres, knitted or crocheted (excl. "long pile" fabrics) 01/01/1988 31/12/2004 -600199 01/01/1988 31/12/2500 LIBEN Pile fabrics, knitted or crocheted (excl. cotton or man-made fibres and "long pile" fabrics) 01/01/1988 31/12/2500 -60019900 01/01/2005 31/12/2500 LIBEN Pile fabrics, knitted or crocheted (excl. cotton or man-made fibres and "long pile" fabrics) 01/01/2005 31/12/2500 -60019910 01/01/1988 31/12/2004 LIBEN Pile fabrics of wool or of fine animal hair, knitted or crocheted (excl. "long pile" fabrics) 01/01/1988 31/12/2004 -60019990 01/01/1988 31/12/2004 LIBEN Pile fabrics, knitted or crocheted (excl. cotton, man-made, wool or fine animal hair and "long pile" fabrics) 01/01/1988 31/12/2004 -6002 01/01/1988 31/12/2500 LIBEN Knitted or crocheted fabrics, of a width <= 30 cm, containing by weight >= 5% of elastomeric yarn or rubber thread (excl. pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/1988 31/12/2500 -600210 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, of a width of <= 30 cm, containing >= 5% by weight elastomeric yarn or rubber thread 01/01/1988 31/12/2001 -60021010 01/01/1988 31/12/2001 LIBEN Knitted or crocheted fabrics, of a width of <= 30 cm, containing >= 5% by weight elastomeric yarn (excl. containing rubber thread) 01/01/1988 31/12/2001 -60021090 01/01/1988 31/12/2001 LIBEN Knitted or crocheted fabrics, of a width of <= 30 cm, containing >= 5% by weight elastomeric yarn and rubber thread or rubber thread only 01/01/1988 31/12/2001 -600220 01/01/1988 31/12/2001 LIBEN Knitted or crocheted fabrics, of a width of <= 30 cm (excl. those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60022010 01/01/1988 31/12/2001 LIBEN Knitted or crocheted fabrics of wool or fine animal hair, of a width of <= 30 cm (excl. those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60022031 01/01/1988 31/12/2001 LIBEN Raschel lace of synthetic fibres, of a width of <= 30 cm 01/01/1988 31/12/2001 -60022039 01/01/1988 31/12/2001 LIBEN Knitted or crocheted fabrics of synthetic fibres, of a width of <= 30 cm (excl. Raschel lace and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60022050 01/01/1988 31/12/2001 LIBEN Knitted or crocheted fabrics of artificial fibres, of a width of <= 30 cm (excl. those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60022070 01/01/1988 31/12/2001 LIBEN Knitted or crocheted fabrics of cotton, of a width of <= 30 cm (excl. those containing >= 5% by weight elastomeric yarn) 01/01/1988 31/12/2001 -60022090 01/01/1988 31/12/2001 LIBEN Knitted or crocheted fabrics of a width of <= 30 cm (excl. of cotton, artificial fibres, wool or fine animal hair and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -600230 01/01/1988 31/12/2001 LIBEN Knitted or crocheted fabrics, of a width of > 30 cm, containing >= 5% by weight elastomeric yarn or rubber thread 01/01/1988 31/12/2001 -60023010 01/01/1988 31/12/2001 LIBEN Knitted or crocheted fabrics, of a width of > 30 cm, containing >= 5% by weight elastomeric yarn (excl. rubber thread) 01/01/1988 31/12/2001 -60023090 01/01/1988 31/12/2001 LIBEN Knitted or crocheted fabrics, of a width of > 30 cm, containing >= 5% by weight elastomeric yarn and rubber thread or rubber thread only 01/01/1988 31/12/2001 -600240 01/01/2002 31/12/2500 LIBEN Knitted or crocheted fabrics, of a width of <= 30 cm, containing >= 5% by weight elastomeric yarn (excl. containing rubber thread, pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60024000 01/01/2002 31/12/2500 LIBEN Knitted or crocheted fabrics, of a width of <= 30 cm, containing >= 5% by weight elastomeric yarn (excl. containing rubber thread, pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600241 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, warp knit, of wool or fine animal hair, of a width of > 30 cm (excl. those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60024100 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, warp knit, of wool or fine animal hair, of a width of > 30 cm (excl. those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -600242 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, warp knit, of cotton, of a width of > 30 cm (excl. those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60024210 01/01/1988 31/12/2001 LIBEN Unbleached or bleached cotton fabrics, knitted or crocheted, warp knit, of a width of > 30 cm (excl. those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60024230 01/01/1988 31/12/2001 LIBEN Dyed cotton fabrics, knitted or crocheted, warp knit, of a width of > 30 cm (excl. those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60024250 01/01/1988 31/12/2001 LIBEN Cotton fabrics of yarns of different colours, knitted or crocheted, warp knit, of a width of > 30 cm (excl. those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60024290 01/01/1988 31/12/2001 LIBEN Printed cotton fabrics, knitted or crocheted, warp knit, of a width of > 30 cm (excl. those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -600243 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, warp knit, of man-made fibres, of a width of > 30 cm (excl. those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60024311 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, warp knit, of synthetic fibres, for curtains, incl. net curtain fabric, of a width of > 30 cm 01/01/1988 31/12/2001 -60024319 01/01/1988 31/12/2001 LIBEN Raschel lace, warp knit, of synthetic fibres, of a width of > 30 cm (excl. for curtains or net curtain fabric) 01/01/1988 31/12/2001 -60024331 01/01/1988 31/12/2001 LIBEN Unbleached or bleached fabrics of synthetic fibres, knitted or crocheted, warp knit, of a width of > 30 cm (excl. for curtains, raschel lace, and fabrics, knitted or crocheted, containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60024333 01/01/1988 31/12/2001 LIBEN Dyed fabrics of synthetic fibres, knitted or crocheted, warp knit, of a width of > 30 cm (excl. for curtains, raschel lace, and fabrics, knitted or crocheted, containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60024335 01/01/1988 31/12/2001 LIBEN Fabrics of synthetic fibres, knitted or crocheted, warp knit, of yarns of different colours, of a width of > 30 cm (excl. for curtains, raschel lace, and fabrics, knitted or crocheted, containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60024339 01/01/1988 31/12/2001 LIBEN Printed fabrics of synthetic fibres, knitted or crocheted, warp knit, of a width of > 30 cm (excl. for curtains, raschel lace, and fabrics, knitted or crocheted, containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60024350 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, warp knit, of artificial fibres, for curtains, incl. net curtain fabric, of a width of > 30 cm 01/01/1988 31/12/2001 -60024391 01/01/1988 31/12/2001 LIBEN Unbleached or bleached fabrics of artificial fibres, knitted or crocheted, warp knit, of a width of > 30 cm (excl. for curtains, and fabrics, knitted or crocheted, containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60024393 01/01/1988 31/12/2001 LIBEN Dyed fabrics of artificial fibres, knitted or crocheted, warp knit, of a width of > 30 cm (excl. for curtains, and fabrics, knitted or crocheted, containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60024395 01/01/1988 31/12/2001 LIBEN Fabrics of artificial fibres, knitted or crocheted, warp knit, of yarns of different colours, of a width of > 30 cm (excl. for curtains, and fabrics, knitted or crocheted, containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60024399 01/01/1988 31/12/2001 LIBEN Printed fabrics of artificial fibres, knitted or crocheted, warp knit, of a width of > 30 cm (excl. for curtains, and fabrics, knitted or crocheted, containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -600249 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, warp knit, of a width of > 30 cm (excl. of cotton, artificial fibres, wool or fine animal hair and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60024900 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, warp knit, of a width of > 30 cm (excl. of cotton, artificial fibres, wool or fine animal hair and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -600290 01/01/2002 31/12/2500 LIBEN Knitted or crocheted fabrics, of a width of <= 30 cm, containing >= 5% by weight elastomeric yarn and rubber thread or rubber thread only (excl. pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, knitted or crocheted fabrics, impregnated, coated, covered or laminated, and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/2002 31/12/2500 -60029000 01/01/2002 31/12/2006 LIBEN Knitted or crocheted fabrics, of a width of <= 30 cm, containing >= 5% by weight elastomeric yarn and rubber thread or rubber thread only (excl. pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2006 -60029000 01/01/2007 31/12/2500 LIBEN Knitted or crocheted fabrics, of a width of <= 30 cm, containing >= 5% by weight elastomeric yarn and rubber thread or rubber thread only (excl. pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, knitted or crocheted fabrics, impregnated, coated, covered or laminated, and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/2007 31/12/2500 -600291 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, of a width of > 30 cm, of wool or fine animal hair (excl. warp knit, and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60029100 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, of a width of > 30 cm, of wool or fine animal hair (excl. warp knit, and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -600292 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, of a width of > 30 cm, of cotton (excl. warp knit, and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60029210 01/01/1988 31/12/2001 LIBEN Unbleached or bleached fabrics, knitted or crocheted, of a width of > 30 cm, of cotton (excl. warp knit, and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60029230 01/01/1988 31/12/2001 LIBEN Dyed fabrics, knitted or crocheted, of a width of > 30 cm, of cotton (excl. warp knit, and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60029250 01/01/1988 31/12/2001 LIBEN Fabrics of cotton, knitted or crocheted, of yarns of different colours, of a width of > 30 cm (excl. warp knit, and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60029290 01/01/1988 31/12/2001 LIBEN Printed fabrics, knitted or crocheted, of a width of > 30 cm, of cotton (excl. warp knit, and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -600293 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, of a width of > 30 cm, of man-made fibres (excl. warp knit, and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60029310 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, of a width of > 30 cm, of synthetic fibres, for curtains, incl. net curtain fabric (excl. warp knit) 01/01/1988 31/12/2001 -60029331 01/01/1988 31/12/2001 LIBEN Unbleached or bleached fabrics, knitted or crocheted, of a width of > 30 cm, of synthetic fibres (excl. for curtains, warp knit, and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60029333 01/01/1988 31/12/2001 LIBEN Dyed fabrics, knitted or crocheted, of a width of > 30 cm, of synthetic fibres (excl. for curtains, warp knit, and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60029335 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, of yarns of different colours, of a width of > 30 cm, of synthetic fibres (excl. for curtains, warp knit, and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60029339 01/01/1988 31/12/2001 LIBEN Printed fabrics, knitted or crocheted, of a width of > 30 cm, of synthetic fibres (excl. for curtains, warp knit, and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60029391 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, of a width of > 30 cm, of artificial fibres, for curtains, incl. net curtain fabric (excl. warp knit) 01/01/1988 31/12/2001 -60029399 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, of a width of > 30 cm, of artificial fibres (excl. for curtains, warp knit, and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -600299 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, of a width of > 30 cm (excl. of artificial fibres, cotton, wool or fine animal hair, warp knit, and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -60029900 01/01/1988 31/12/2001 LIBEN Fabrics, knitted or crocheted, of a width of > 30 cm (excl. of artificial fibres, cotton, wool or fine animal hair, warp knit, and those containing >= 5% by weight elastomeric yarn or rubber thread) 01/01/1988 31/12/2001 -6003 01/01/2002 31/12/2500 LIBEN Knitted or crocheted fabrics, of a width <= 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600310 01/01/2002 31/12/2500 LIBEN Knitted or crocheted fabrics of wool or fine animal hair, of a width of <= 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60031000 01/01/2002 31/12/2500 LIBEN Knitted or crocheted fabrics of wool or fine animal hair, of a width of <= 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600320 01/01/2002 31/12/2500 LIBEN Knitted or crocheted fabrics of cotton, of a width of <= 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60032000 01/01/2002 31/12/2500 LIBEN Knitted or crocheted fabrics of cotton, of a width of <= 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600330 01/01/2002 31/12/2500 LIBEN Knitted or crocheted fabrics of synthetic fibres, of a width of <= 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, knitted or crocheted fabrics, impregnated, coated, covered or laminated, and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/2002 31/12/2500 -60033010 01/01/2002 31/12/2500 LIBEN Raschel lace of synthetic fibres, of a width of <= 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread) 01/01/2002 31/12/2500 -60033090 01/01/2002 31/12/2006 LIBEN Knitted or crocheted fabrics of synthetic fibres, of a width of <= 30 cm (excl. Raschel lace, those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2006 -60033090 01/01/2007 31/12/2500 LIBEN Knitted or crocheted fabrics of synthetic fibres, of a width of <= 30 cm (excl. Raschel lace, those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, knitted or crocheted fabrics, impregnated, coated, covered or laminated, and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/2007 31/12/2500 -600340 01/01/2002 31/12/2500 LIBEN Knitted or crocheted fabrics of artificial fibres, of a width of <= 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, knitted or crocheted fabrics, impregnated, coated, covered or laminated, and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/2002 31/12/2500 -60034000 01/01/2002 31/12/2006 LIBEN Knitted or crocheted fabrics of artificial fibres, of a width of <= 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2006 -60034000 01/01/2007 31/12/2500 LIBEN Knitted or crocheted fabrics of artificial fibres, of a width of <= 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, knitted or crocheted fabrics, impregnated, coated, covered or laminated, and sterile surgical or dental adhesion barriers of subheading 3006.10.30) 01/01/2007 31/12/2500 -600390 01/01/2002 31/12/2500 LIBEN Knitted or crocheted fabrics of a width of <= 30 cm (excl. of cotton, man-made fibres, wool or fine animal hair, those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, knitted or crocheted fabrics, impregnated, coated, covered or laminated, and sterile surgical or dental adhesion barriers of subheading 3006.10.30)) 01/01/2002 31/12/2500 -60039000 01/01/2002 31/12/2500 LIBEN Knitted or crocheted fabrics of a width of <= 30 cm (excl. of cotton, man-made fibres, wool or fine animal hair, those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, knitted or crocheted fabrics, impregnated, coated, covered or laminated, and sterile surgical or dental adhesion barriers of subheading 3006.10.30)) 01/01/2002 31/12/2500 -6004 01/01/2002 31/12/2500 LIBEN Knitted or crocheted fabrics, of a width > 30 cm, containing by weight >= 5% of elastomeric yarn or rubber thread (excl. pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600410 01/01/2002 31/12/2500 LIBEN Knitted or crocheted fabrics, of a width of > 30 cm, containing >= 5% by weight elastomeric yarn (excl. containing rubber thread, pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60041000 01/01/2002 31/12/2500 LIBEN Knitted or crocheted fabrics, of a width of > 30 cm, containing >= 5% by weight elastomeric yarn (excl. containing rubber thread, pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600490 01/01/2002 31/12/2500 LIBEN Knitted or crocheted fabrics, of a width of > 30 cm, containing >= 5% by weight elastomeric yarn and rubber thread or rubber thread only (excl. pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60049000 01/01/2002 31/12/2500 LIBEN Knitted or crocheted fabrics, of a width of > 30 cm, containing >= 5% by weight elastomeric yarn and rubber thread or rubber thread only (excl. pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -6005 01/01/2002 31/12/2500 LIBEN Warp knit fabrics "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600510 01/01/2002 31/12/2006 LIBEN Warp knit fabrics "incl. those made on galloon knitting machines", of a width of > 30 cm, of wool or fine animal hair (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2006 -60051000 01/01/2002 31/12/2006 LIBEN Warp knit fabrics "incl. those made on galloon knitting machines", of a width of > 30 cm, of wool or fine animal hair (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2006 -600521 01/01/2002 31/12/2500 LIBEN Unbleached or bleached cotton warp knit fabrics "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60052100 01/01/2002 31/12/2500 LIBEN Unbleached or bleached cotton warp knit fabrics "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600522 01/01/2002 31/12/2500 LIBEN Dyed cotton warp knit fabrics "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60052200 01/01/2002 31/12/2500 LIBEN Dyed cotton warp knit fabrics "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600523 01/01/2002 31/12/2500 LIBEN Cotton warp knit fabrics of yarns of different colours "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60052300 01/01/2002 31/12/2500 LIBEN Cotton warp knit fabrics of yarns of different colours "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600524 01/01/2002 31/12/2500 LIBEN Printed cotton warp knit fabrics "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60052400 01/01/2002 31/12/2500 LIBEN Printed cotton warp knit fabrics "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600531 01/01/2002 31/12/2016 LIBEN Unbleached or bleached warp knit fabrics of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -60053110 01/01/2002 31/12/2016 LIBEN Unbleached or bleached warp knit fabrics of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm, for curtains, incl. net curtain fabric (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -60053150 01/01/2002 31/12/2016 LIBEN Unbleached or bleached Raschel lace, warp knit, of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. for curtains or net curtain fabric and those containing by weight >= 5% of elastomeric yarn or rubber thread) 01/01/2002 31/12/2016 -60053190 01/01/2002 31/12/2016 LIBEN Unbleached or bleached warp knit fabrics of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. for curtains, raschel lace, those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -600532 01/01/2002 31/12/2016 LIBEN Dyed warp knit fabrics of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -60053210 01/01/2002 31/12/2016 LIBEN Dyed warp knit fabrics of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm, for curtains, incl. net curtain fabric (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -60053250 01/01/2002 31/12/2016 LIBEN Dyed Raschel lace, warp knit, of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. for curtains or net curtain fabric and those containing by weight >= 5% of elastomeric yarn or rubber thread) 01/01/2002 31/12/2016 -60053290 01/01/2002 31/12/2016 LIBEN Dyed warp knit fabrics of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. for curtains, raschel lace, those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -600533 01/01/2002 31/12/2016 LIBEN Warp knit fabrics of synthetic fibres, of yarns of different colours "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -60053310 01/01/2002 31/12/2016 LIBEN Warp knit fabrics of synthetic fibres, of yarns of different colours "incl. those made on galloon knitting machines", of a width of > 30 cm, for curtains, incl. net curtain fabric (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -60053350 01/01/2002 31/12/2016 LIBEN Raschel lace, warp knit, of synthetic fibres, of yarns of different colours "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. for curtains or net curtain fabric and those containing by weight >= 5% of elastomeric yarn or rubber thread) 01/01/2002 31/12/2016 -60053390 01/01/2002 31/12/2016 LIBEN Warp knit fabrics of synthetic fibres, of yarns of different colours "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. for curtains, raschel lace, those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -600534 01/01/2002 31/12/2016 LIBEN Printed warp knit fabrics of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -60053410 01/01/2002 31/12/2016 LIBEN Printed warp knit fabrics of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm, for curtains, incl. net curtain fabric (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -60053450 01/01/2002 31/12/2016 LIBEN Printed Raschel lace, warp knit, of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. for curtains or net curtain fabric and those containing by weight >= 5% of elastomeric yarn or rubber thread) 01/01/2002 31/12/2016 -60053490 01/01/2002 31/12/2016 LIBEN Printed warp knit fabrics of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. for curtains, raschel lace, those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -600535 01/01/2017 31/12/2500 LIBEN Warp knit fabrics of synthetic fibres, antimalarial, of a width of > 30 cm 01/01/2017 31/12/2500 -60053500 01/01/2017 31/12/2500 LIBEN Warp knit fabrics of synthetic fibres, antimalarial, of a width of > 30 cm 01/01/2017 31/12/2500 -600536 01/01/2017 31/12/2500 LIBEN Unbleached or bleached warp knit fabrics of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2017 31/12/2500 -60053600 01/01/2017 31/12/2500 LIBEN Unbleached or bleached warp knit fabrics of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2017 31/12/2500 -600537 01/01/2017 31/12/2500 LIBEN Dyed warp knit fabrics of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2017 31/12/2500 -60053700 01/01/2017 31/12/2500 LIBEN Dyed warp knit fabrics of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2017 31/12/2500 -600538 01/01/2017 31/12/2500 LIBEN Warp knit fabrics of synthetic fibres, of yarns of different colours "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2017 31/12/2500 -60053800 01/01/2017 31/12/2500 LIBEN Warp knit fabrics of synthetic fibres, of yarns of different colours "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2017 31/12/2500 -600539 01/01/2017 31/12/2500 LIBEN Printed warp knit fabrics of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2017 31/12/2500 -60053900 01/01/2017 31/12/2500 LIBEN Printed warp knit fabrics of synthetic fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2017 31/12/2500 -600541 01/01/2002 31/12/2500 LIBEN Unbleached or bleached warp knit fabrics of artificial fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60054100 01/01/2002 31/12/2500 LIBEN Unbleached or bleached warp knit fabrics of artificial fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600542 01/01/2002 31/12/2500 LIBEN Dyed warp knit fabrics of artificial fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60054200 01/01/2002 31/12/2500 LIBEN Dyed warp knit fabrics of artificial fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600543 01/01/2002 31/12/2500 LIBEN Warp knit fabrics of artificial fibres, of yarns of different colours "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60054300 01/01/2002 31/12/2500 LIBEN Warp knit fabrics of artificial fibres, of yarns of different colours "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600544 01/01/2002 31/12/2500 LIBEN Printed warp knit fabrics of artificial fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60054400 01/01/2002 31/12/2500 LIBEN Printed warp knit fabrics of artificial fibres "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600590 01/01/2002 31/12/2500 LIBEN Warp knit fabrics "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. of cotton, man-made fibres, those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60059000 01/01/2002 31/12/2006 LIBEN Warp knit fabrics "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. of cotton, man-made fibres, wool or fine animal hair, those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2006 -60059010 01/01/2007 31/12/2500 LIBEN Warp knit fabrics "incl. those made on galloon knitting machines", of a width of > 30 cm, of wool or fine animal hair (excl. those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2007 31/12/2500 -60059090 01/01/2007 31/12/2500 LIBEN Warp knit fabrics "incl. those made on galloon knitting machines", of a width of > 30 cm (excl. of cotton, man-made fibres, wool or fine animal hair, those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2007 31/12/2500 -6006 01/01/2002 31/12/2500 LIBEN Fabrics, knitted or crocheted, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600610 01/01/2002 31/12/2500 LIBEN Fabrics, knitted or crocheted, of a width of > 30 cm, of wool or fine animal hair (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60061000 01/01/2002 31/12/2500 LIBEN Fabrics, knitted or crocheted, of a width of > 30 cm, of wool or fine animal hair (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600621 01/01/2002 31/12/2500 LIBEN Unbleached or bleached cotton fabrics, knitted or crocheted, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60062100 01/01/2002 31/12/2500 LIBEN Unbleached or bleached cotton fabrics, knitted or crocheted, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600622 01/01/2002 31/12/2500 LIBEN Dyed cotton fabrics, knitted or crocheted, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60062200 01/01/2002 31/12/2500 LIBEN Dyed cotton fabrics, knitted or crocheted, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600623 01/01/2002 31/12/2500 LIBEN Cotton fabrics, knitted or crocheted, of yarns of different colours, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60062300 01/01/2002 31/12/2500 LIBEN Cotton fabrics, knitted or crocheted, of yarns of different colours, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600624 01/01/2002 31/12/2500 LIBEN Printed cotton fabrics, knitted or crocheted, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60062400 01/01/2002 31/12/2500 LIBEN Printed cotton fabrics, knitted or crocheted, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600631 01/01/2002 31/12/2500 LIBEN Unbleached or bleached fabrics, knitted or crocheted, of synthetic fibres, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60063100 01/01/2017 31/12/2500 LIBEN Unbleached or bleached fabrics, knitted or crocheted, of synthetic fibres, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2017 31/12/2500 -60063110 01/01/2002 31/12/2016 LIBEN Unbleached or bleached fabrics, knitted or crocheted, of synthetic fibres, of a width of > 30 cm, for curtains, incl. net curtain (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -60063190 01/01/2002 31/12/2016 LIBEN Unbleached or bleached fabrics, knitted or crocheted, of synthetic fibres, of a width of > 30 cm (excl. for curtains, warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -600632 01/01/2002 31/12/2500 LIBEN Dyed fabrics, knitted or crocheted, of synthetic fibres, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60063200 01/01/2017 31/12/2500 LIBEN Dyed fabrics, knitted or crocheted, of synthetic fibres, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2017 31/12/2500 -60063210 01/01/2002 31/12/2016 LIBEN Dyed fabrics, knitted or crocheted, of synthetic fibres, of a width of > 30 cm, for curtains, incl. net curtain (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -60063290 01/01/2002 31/12/2016 LIBEN Dyed fabrics, knitted or crocheted, of synthetic fibres, of a width of > 30 cm (excl. for curtains, warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -600633 01/01/2002 31/12/2500 LIBEN Fabrics, knitted or crocheted, of synthetic fibres, of yarns of different colours, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60063300 01/01/2017 31/12/2500 LIBEN Fabrics, knitted or crocheted, of synthetic fibres, of yarns of different colours, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2017 31/12/2500 -60063310 01/01/2002 31/12/2016 LIBEN Fabrics, knitted or crocheted, of synthetic fibres, of yarns of different colours, of a width of > 30 cm, for curtains, incl. net curtain (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -60063390 01/01/2002 31/12/2016 LIBEN Fabrics, knitted or crocheted, of synthetic fibres, of yarns of different colours, of a width of > 30 cm (excl. for curtains, warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -600634 01/01/2002 31/12/2500 LIBEN Printed fabrics, knitted or crocheted, of synthetic fibres, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60063400 01/01/2017 31/12/2500 LIBEN Printed fabrics, knitted or crocheted, of synthetic fibres, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2017 31/12/2500 -60063410 01/01/2002 31/12/2016 LIBEN Printed fabrics, knitted or crocheted, of synthetic fibres, of a width of > 30 cm, for curtains, incl. net curtain (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -60063490 01/01/2002 31/12/2016 LIBEN Printed fabrics, knitted or crocheted, of synthetic fibres, of a width of > 30 cm (excl. for curtains, warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2016 -600641 01/01/2002 31/12/2500 LIBEN Unbleached or bleached fabrics, knitted or crocheted, of artificial fibres, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60064100 01/01/2002 31/12/2500 LIBEN Unbleached or bleached fabrics, knitted or crocheted, of artificial fibres, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600642 01/01/2002 31/12/2500 LIBEN Dyed fabrics, knitted or crocheted, of artificial fibres, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60064200 01/01/2002 31/12/2500 LIBEN Dyed fabrics, knitted or crocheted, of artificial fibres, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600643 01/01/2002 31/12/2500 LIBEN Fabrics, knitted or crocheted, of artificial fibres, of yarns of different colours, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60064300 01/01/2002 31/12/2500 LIBEN Fabrics, knitted or crocheted, of artificial fibres, of yarns of different colours, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600644 01/01/2002 31/12/2500 LIBEN Printed fabrics, knitted or crocheted, of artificial fibres, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60064400 01/01/2002 31/12/2500 LIBEN Printed fabrics, knitted or crocheted, of artificial fibres, of a width of > 30 cm (excl. warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -600690 01/01/2002 31/12/2500 LIBEN Fabrics, knitted or crocheted, of a width of > 30 cm (excl. of man-made fibres, cotton, wool or fine animal hair, warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60069000 01/01/2002 31/12/2500 LIBEN Fabrics, knitted or crocheted, of a width of > 30 cm (excl. of man-made fibres, cotton, wool or fine animal hair, warp knit fabrics "incl. those made on galloon knitting machines", those containing by weight >= 5% of elastomeric yarn or rubber thread, and pile fabrics, incl. "long pile", looped pile fabrics, labels, badges and similar articles, and knitted or crocheted fabrics, impregnated, coated, covered or laminated) 01/01/2002 31/12/2500 -60CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 60 01/01/2002 31/12/2500 -60CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 60 01/01/2002 31/12/2500 -60CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 60 01/01/2002 31/12/2500 -60MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -60MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -60MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -60PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 60 carried by post 01/01/1988 31/12/2500 -60PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 60 carried by post 01/01/1988 31/12/2500 -60PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 60 carried by post 01/01/1988 31/12/2500 -60SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 60 01/01/1988 31/12/2500 -60SSS6 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 60 and SITC section 6 01/01/1992 31/12/2500 -60SSS655 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 60 and SITC group 655 01/01/1992 31/12/2500 -60SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 60 and SITC section 9 01/01/1988 31/12/1996 -60SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 60 and SITC section 9 01/01/1997 31/12/2500 -60SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 60 and SITC group 999 01/01/1988 31/12/1996 -60SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 60 and SITC group 999 01/01/1997 31/12/2500 -61 01/01/1988 31/12/2500 LIBEN ARTICLES OF APPAREL AND CLOTHING ACCESSORIES, KNITTED OR CROCHETED 01/01/1988 31/12/2500 -6101 01/01/1988 31/12/2500 LIBEN Men's or boys' overcoats, car coats, capes, cloaks, anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles, knitted or crocheted (excl. suits, ensembles, jackets, blazers, bib and brace overalls and trousers) 01/01/1988 31/12/2500 -610110 01/01/1988 31/12/2006 LIBEN Overcoats, car coats, capes, cloaks, anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles of wool or fine animal hair, for men or boys, knitted or crocheted (excl. suits, ensembles, jackets, blazers, bib and brace overalls and trousers) 01/01/1988 31/12/2006 -61011010 01/01/1988 31/12/2006 LIBEN Men's or boys' overcoats, car coats, capes, cloaks and similar articles of wool or fine animal hair, knitted or crocheted 01/01/1988 31/12/2006 -61011090 01/01/1988 31/12/2006 LIBEN Men's or boys' anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles of wool or fine animal hair, knitted or crocheted (excl. suits, ensembles, jackets, blazers, bib and brace overalls and trousers) 01/01/1988 31/12/2006 -610120 01/01/1988 31/12/2500 LIBEN Overcoats, car coats, capes, cloaks, anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles of cotton, for men or boys, knitted or crocheted (excl. suits, ensembles, jackets, blazers, bib and brace overalls and trousers) 01/01/1988 31/12/2500 -61012010 01/01/1988 31/12/2500 LIBEN Men's or boys' overcoats, car coats, capes, cloaks and similar articles of cotton, knitted or crocheted 01/01/1988 31/12/2500 -61012090 01/01/1988 31/12/2500 LIBEN Men's or boys' anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles of cotton, knitted or crocheted (excl. suits, ensembles, jackets, blazers, bib and brace overalls and trousers) 01/01/1988 31/12/2500 -610130 01/01/1988 31/12/2500 LIBEN Overcoats, car coats, capes, cloaks, anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles of man-made fibres, for men or boys, knitted or crocheted (excl. suits, ensembles, jackets, blazers, bib and brace overalls and trousers) 01/01/1988 31/12/2500 -61013010 01/01/1988 31/12/2500 LIBEN Men's or boys' overcoats, car coats, capes, cloaks and similar articles of man-made fibres, knitted or crocheted 01/01/1988 31/12/2500 -61013090 01/01/1988 31/12/2500 LIBEN Men's or boys' anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles of man-made fibres, knitted or crocheted (excl. suits, ensembles, jackets, blazers, bib and brace overalls and trousers) 01/01/1988 31/12/2500 -610190 01/01/1988 31/12/2500 LIBEN Overcoats, car coats, capes, cloaks, anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles of textile materials, for men or boys, knitted or crocheted (excl. of cotton and man-made fibres, suits, ensembles, jackets, blazers, bib and brace overalls and trousers) 01/01/1988 31/12/2500 -61019010 01/01/1988 31/12/2006 LIBEN Men's or boys' overcoats, car coats, capes, cloaks and similar articles of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or man-made fibres) 01/01/1988 31/12/2006 -61019020 01/01/2007 31/12/2500 LIBEN Men's or boys' overcoats, car coats, capes, cloaks and similar articles of textile materials, knitted or crocheted (excl. of cotton or man-made fibres) 01/01/2007 31/12/2500 -61019080 01/01/2007 31/12/2500 LIBEN Men's or boys' anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles of textile materials, knitted or crocheted (excl. of cotton and man-made fibres, suits, ensembles, jackets, blazers, bib and brace overalls and trousers) 01/01/2007 31/12/2500 -61019090 01/01/1988 31/12/2006 LIBEN Men's or boys' anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton and man-made fibres, suits, ensembles, jackets, blazers, bib and brace overalls and trousers) 01/01/1988 31/12/2006 -6102 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, car coats, capes, cloaks, anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles, knitted or crocheted (excl. suits, ensembles, jackets, blazers, dresses, skirts, divided skirts, trousers, bib and brace overalls) 01/01/1988 31/12/2500 -610210 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, car coats, capes, cloaks, anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles, of wool or fine animal hair, knitted or crocheted (excl. suits, ensembles, jackets, blazers, dresses, skirts, divided skirts, trousers, bib and brace overalls) 01/01/1988 31/12/2500 -61021010 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, car coats, capes, cloaks and similar articles of wool or fine animal hair, knitted or crocheted 01/01/1988 31/12/2500 -61021090 01/01/1988 31/12/2500 LIBEN Women's or girls' anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles, of wool or fine animal hair, knitted or crocheted (excl. suits, ensembles, jackets, blazers, dresses, skirts, divided skirts, trousers, bib and brace overalls) 01/01/1988 31/12/2500 -610220 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, car coats, capes, cloaks, anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles of cotton, knitted or crocheted (excl. suits, ensembles, jackets, blazers, dresses, skirts, divided skirts, trousers, bib and brace overalls) 01/01/1988 31/12/2500 -61022010 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, car coats, capes, cloaks and similar articles of cotton, knitted or crocheted 01/01/1988 31/12/2500 -61022090 01/01/1988 31/12/2500 LIBEN Women's or girls' anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles, of cotton, knitted or crocheted (excl. suits, ensembles, jackets, blazers, dresses, skirts, divided skirts, trousers, bib and brace overalls) 01/01/1988 31/12/2500 -610230 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, car coats, capes, cloaks, anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles of man-made fibres, knitted or crocheted (excl. suits, ensembles, jackets, blazers, dresses, skirts, divided skirts, trousers, bib and brace overalls) 01/01/1988 31/12/2500 -61023010 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, car coats, capes, cloaks and similar articles of man-made fibres, knitted or crocheted 01/01/1988 31/12/2500 -61023090 01/01/1988 31/12/2500 LIBEN Women's or girls' anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles, of man-made fibres, knitted or crocheted (excl. suits, ensembles, jackets, blazers, dresses, skirts, divided skirts, trousers, bib and brace overalls) 01/01/1988 31/12/2500 -610290 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, car coats, capes, cloaks, anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles, of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton and man-made fibres, suits, ensembles, jackets, blazers, dresses, skirts, divided skirts, trousers, bib and brace overalls) 01/01/1988 31/12/2500 -61029010 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, car coats, capes, cloaks and similar articles, of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton and man-made fibres) 01/01/1988 31/12/2500 -61029090 01/01/1988 31/12/2500 LIBEN Women's or girls' anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles, of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton and man-made fibres, suits, ensembles, jackets, blazers, dresses, skirts, divided skirts, trousers, bib and brace overalls) 01/01/1988 31/12/2500 -6103 01/01/1988 31/12/2500 LIBEN Men's or boys' suits, ensembles, jackets, blazers, trousers, bib and brace overalls, breeches and shorts (excl. wind-jackets and similar articles, separate waistcoats, tracksuits, ski suits and swimwear) 01/01/1988 31/12/2500 -610310 01/01/2007 31/12/2500 LIBEN Men's or boys' suits of textile materials, knitted or crocheted (excl. tracksuits, ski suits and swimwear) 01/01/2007 31/12/2500 -61031000 01/01/2007 31/12/2007 LIBEN Men's or boys' suits of textile materials, knitted or crocheted (excl. tracksuits, ski suits and swimwear) 01/01/2007 31/12/2007 -61031010 01/01/2008 31/12/2500 LIBEN Men's or boys' suits of textile materials, knitted or crocheted, of wool or fine animal hair (excl. tracksuits, ski suits and swimwear) 01/01/2008 31/12/2500 -61031090 01/01/2008 31/12/2500 LIBEN Men's or boys' suits of textile materials, knitted or crocheted (excl. of wool or fine animal hair, tracksuits, ski suits and swimwear) 01/01/2008 31/12/2500 -610311 01/01/1988 31/12/2006 LIBEN Men's or boys' suits of wool or fine animal hair, knitted or crocheted (excl. tracksuits, ski suits and swimwear) 01/01/1988 31/12/2006 -61031100 01/01/1988 31/12/2006 LIBEN Men's or boys' suits of wool or fine animal hair, knitted or crocheted (excl. tracksuits, ski suits and swimwear) 01/01/1988 31/12/2006 -610312 01/01/1988 31/12/2006 LIBEN Men's or boys' suits of synthetic fibres, knitted or crocheted (excl. tracksuits, ski suits and swimwear) 01/01/1988 31/12/2006 -61031200 01/01/1988 31/12/2006 LIBEN Men's or boys' suits of synthetic fibres, knitted or crocheted (excl. tracksuits, ski suits and swimwear) 01/01/1988 31/12/2006 -610319 01/01/1988 31/12/2006 LIBEN Men's or boys' suits of textile materials, knitted or crocheted (excl. of wool or fine animal hair, synthetic fibres, tracksuits, ski suits and swimwear) 01/01/1988 31/12/2006 -61031900 01/01/1988 31/12/2006 LIBEN Men's or boys' suits of textile materials, knitted or crocheted (excl. of wool or fine animal hair, synthetic fibres, tracksuits, ski suits and swimwear) 01/01/1988 31/12/2006 -610321 01/01/1988 31/12/2006 LIBEN Men's or boys' ensembles of wool or fine animal hair, knitted or crocheted (excl. ski ensembles and swimwear) 01/01/1988 31/12/2006 -61032100 01/01/1988 31/12/2006 LIBEN Men's or boys' ensembles of wool or fine animal hair, knitted or crocheted (excl. ski ensembles and swimwear) 01/01/1988 31/12/2006 -610322 01/01/1988 31/12/2500 LIBEN Men's or boys' ensembles of cotton, knitted or crocheted (excl. ski ensembles and swimwear) 01/01/1988 31/12/2500 -61032200 01/01/1988 31/12/2500 LIBEN Men's or boys' ensembles of cotton, knitted or crocheted (excl. ski ensembles and swimwear) 01/01/1988 31/12/2500 -610323 01/01/1988 31/12/2500 LIBEN Men's or boys' ensembles of synthetic fibres, knitted or crocheted (excl. ski ensembles and swimwear) 01/01/1988 31/12/2500 -61032300 01/01/1988 31/12/2500 LIBEN Men's or boys' ensembles of synthetic fibres, knitted or crocheted (excl. ski ensembles and swimwear) 01/01/1988 31/12/2500 -610329 01/01/1988 31/12/2500 LIBEN Men's or boys' ensembles of textile materials (excl. wool, fine animal hair, cotton or synthetic fibres, ski ensembles and swimwear) 01/01/1988 31/12/2500 -61032900 01/01/1988 31/12/2006 LIBEN Men's or boys' ensembles of textile materials (excl. wool, fine animal hair, cotton or synthetic fibres, ski ensembles and swimwear) 01/01/1988 31/12/2006 -61032900 01/01/2007 31/12/2500 LIBEN Men's or boys' ensembles of textile materials (excl. wool, fine animal hair, cotton or synthetic fibres, ski ensembles and swimwear) 01/01/2007 31/12/2500 -610331 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of wool or fine animal hair, knitted or crocheted (excl. wind-jackets and similar articles) 01/01/1988 31/12/2500 -61033100 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of wool or fine animal hair, knitted or crocheted (excl. wind-jackets and similar articles) 01/01/1988 31/12/2500 -610332 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of cotton, knitted or crocheted (excl. wind-jackets and similar articles) 01/01/1988 31/12/2500 -61033200 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of cotton, knitted or crocheted (excl. wind-jackets and similar articles) 01/01/1988 31/12/2500 -610333 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of synthetic fibres, knitted or crocheted (excl. wind-jackets and similar articles) 01/01/1988 31/12/2500 -61033300 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of synthetic fibres, knitted or crocheted (excl. wind-jackets and similar articles) 01/01/1988 31/12/2500 -610339 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of textile materials (excl. of wool, fine animal hair, cotton or synthetic fibres, wind-jackets and similar articles) 01/01/1988 31/12/2500 -61033900 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of textile materials (excl. of wool, fine animal hair, cotton or synthetic fibres, wind-jackets and similar articles) 01/01/1988 31/12/2500 -610341 01/01/1988 31/12/2500 LIBEN Men's or boys' trousers, bib and brace overalls, breeches and shorts of wool or fine animal hair, knitted or crocheted (excl. swimwear and underpants) 01/01/1988 31/12/2500 -61034100 01/01/2005 31/12/2500 LIBEN Men's or boys' trousers, bib and brace overalls, breeches and shorts of wool or fine animal hair, knitted or crocheted (excl. swimwear and underpants) 01/01/2005 31/12/2500 -61034110 01/01/1988 31/12/2004 LIBEN Men's or boys' trousers and breeches, of wool or fine animal hair, knitted or crocheted (excl. bib and brace overalls and underpants) 01/01/1988 31/12/2004 -61034190 01/01/1988 31/12/2004 LIBEN Men's or boys' bib and brace overalls and shorts of wool or fine animal hair, knitted or crocheted (excl. swimwear and underpants) 01/01/1988 31/12/2004 -610342 01/01/1988 31/12/2500 LIBEN Men's or boys' trousers, bib and brace overalls, breeches and shorts of cotton, knitted or crocheted (excl. swimwear and underpants) 01/01/1988 31/12/2500 -61034200 01/01/2005 31/12/2500 LIBEN Men's or boys' trousers, bib and brace overalls, breeches and shorts of cotton, knitted or crocheted (excl. swimwear and underpants) 01/01/2005 31/12/2500 -61034210 01/01/1988 31/12/2004 LIBEN Men's or boys' trousers and breeches of cotton, knitted or crocheted (excl. bib and brace overalls and underpants) 01/01/1988 31/12/2004 -61034290 01/01/1988 31/12/2004 LIBEN Men's or boys' bib and brace overalls and shorts of cotton, knitted or crocheted (excl. swimwear and underpants) 01/01/1988 31/12/2004 -610343 01/01/1988 31/12/2500 LIBEN Men's or boys' trousers, bib and brace overalls, breeches and shorts of synthetic fibres, knitted or crocheted (excl. swimwear and underpants) 01/01/1988 31/12/2500 -61034300 01/01/2005 31/12/2500 LIBEN Men's or boys' trousers, bib and brace overalls, breeches and shorts of synthetic fibres, knitted or crocheted (excl. swimwear and underpants) 01/01/2005 31/12/2500 -61034310 01/01/1988 31/12/2004 LIBEN Men's or boys' trousers and breeches, of synthetic fibres, knitted or crocheted (excl. bib and brace overalls and underpants) 01/01/1988 31/12/2004 -61034390 01/01/1988 31/12/2004 LIBEN Men's or boys' bib and brace overalls and shorts of synthetic fibres, knitted or crocheted (excl. swimwear and underpants) 01/01/1988 31/12/2004 -610349 01/01/1988 31/12/2500 LIBEN Men's or boys' trousers, bib and brace overalls, breeches and shorts of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, swimwear and underpants) 01/01/1988 31/12/2500 -61034900 01/01/2005 31/12/2500 LIBEN Men's or boys' trousers, bib and brace overalls, breeches and shorts of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, swimwear and underpants) 01/01/2005 31/12/2500 -61034910 01/01/1988 31/12/2004 LIBEN Men's or boys' trousers and breeches of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, bib and brace overalls and underpants) 01/01/1988 31/12/2004 -61034991 01/01/1988 31/12/2004 LIBEN Men's or boys' bib and brace overalls and shorts of artificial fibres, knitted or crocheted (excl. underpants and swimwear) 01/01/1988 31/12/2004 -61034999 01/01/1988 31/12/2004 LIBEN Men's or boys' bib and brace overalls and shorts of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, underpants and swimwear) 01/01/1988 31/12/2004 -6104 01/01/1988 31/12/2500 LIBEN Women's or girls' suits, ensembles, jackets, blazers, dresses, skirts, divided skirts, trousers, bib and brace overalls, breeches and shorts, knitted or crocheted (excl. wind-jackets and similar articles, slips, petticoats and panties, tracksuits, ski suits and swimwear) 01/01/1988 31/12/2500 -610411 01/01/1988 31/12/2006 LIBEN Women's or girls' suits of wool or fine animal hair, knitted or crocheted (excl. ski overalls and swimwear) 01/01/1988 31/12/2006 -61041100 01/01/1988 31/12/2006 LIBEN Women's or girls' suits of wool or fine animal hair, knitted or crocheted (excl. ski overalls and swimwear) 01/01/1988 31/12/2006 -610412 01/01/1988 31/12/2006 LIBEN Women's or girls' suits of cotton, knitted or crocheted (excl. ski overalls and swimwear) 01/01/1988 31/12/2006 -61041200 01/01/1988 31/12/2006 LIBEN Women's or girls' suits of cotton, knitted or crocheted (excl. ski overalls and swimwear) 01/01/1988 31/12/2006 -610413 01/01/1988 31/12/2500 LIBEN Women's or girls' suits of synthetic fibres, knitted or crocheted (excl. ski overalls and swimwear) 01/01/1988 31/12/2500 -61041300 01/01/1988 31/12/2500 LIBEN Women's or girls' suits of synthetic fibres, knitted or crocheted (excl. ski overalls and swimwear) 01/01/1988 31/12/2500 -610419 01/01/1988 31/12/2500 LIBEN Women's or girls' suits of textile materials, knitted or crocheted (excl. of synthetic fibres, and ski overalls and swimwear) 01/01/1988 31/12/2500 -61041900 01/01/1988 31/12/2006 LIBEN Women's or girls' suits of textile materials, knitted or crocheted (excl. of wool or fine animal hair, cotton or synthetic fibres, ski overalls and swimwear) 01/01/1988 31/12/2006 -61041900 01/01/2007 31/12/2007 LIBEN Women's or girls' suits of textile materials, knitted or crocheted (excl. of synthetic fibres, and ski overalls and swimwear) 01/01/2007 31/12/2007 -61041920 01/01/2008 31/12/2500 LIBEN Women's or girls' suits of textile materials, knitted or crocheted, of cotton (excl. ski overalls and swimwear) 01/01/2008 31/12/2500 -61041990 01/01/2008 31/12/2500 LIBEN Women's or girls' suits of textile materials, knitted or crocheted (excl. of synthetic fibres or of cotton, and ski overalls and swimwear) 01/01/2008 31/12/2500 -610421 01/01/1988 31/12/2006 LIBEN Women's or girls' ensembles of wool or fine animal hair, knitted or crocheted (excl. ski ensembles and swimwear) 01/01/1988 31/12/2006 -61042100 01/01/1988 31/12/2006 LIBEN Women's or girls' ensembles of wool or fine animal hair, knitted or crocheted (excl. ski ensembles and swimwear) 01/01/1988 31/12/2006 -610422 01/01/1988 31/12/2500 LIBEN Women's or girls' ensembles of cotton, knitted or crocheted (excl. ski ensembles and swimwear) 01/01/1988 31/12/2500 -61042200 01/01/1988 31/12/2500 LIBEN Women's or girls' ensembles of cotton, knitted or crocheted (excl. ski ensembles and swimwear) 01/01/1988 31/12/2500 -610423 01/01/1988 31/12/2500 LIBEN Women's or girls' ensembles of synthetic fibres, knitted or crocheted (excl. ski ensembles and swimwear) 01/01/1988 31/12/2500 -61042300 01/01/1988 31/12/2500 LIBEN Women's or girls' ensembles of synthetic fibres, knitted or crocheted (excl. ski ensembles and swimwear) 01/01/1988 31/12/2500 -610429 01/01/1988 31/12/2500 LIBEN Women's or girls' ensembles of textile materials (excl. of cotton or synthetic fibres, ski ensembles and swimwear) 01/01/1988 31/12/2500 -61042900 01/01/1988 31/12/2006 LIBEN Women's or girls' ensembles of textile materials (excl. of wool or fine animal hair, cotton or synthetic fibres, ski ensembles and swimwear) 01/01/1988 31/12/2006 -61042900 01/01/2007 31/12/2007 LIBEN Women's or girls' ensembles of textile materials (excl. of cotton or synthetic fibres, ski ensembles and swimwear) 01/01/2007 31/12/2007 -61042910 01/01/2008 31/12/2500 LIBEN Women's or girls' ensembles of textile materials (excl. of cotton or synthetic fibres, ski ensembles and swimwear) Of wool or fine animal hair 01/01/2008 31/12/2500 -61042990 01/01/2008 31/12/2500 LIBEN Women's or girls' ensembles of textile materials (excl. of cotton or synthetic fibres, ski ensembles and swimwear) Other 01/01/2008 31/12/2500 -610431 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of wool or fine animal hair, knitted or crocheted (excl. wind-jackets and similar articles) 01/01/1988 31/12/2500 -61043100 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of wool or fine animal hair, knitted or crocheted (excl. wind-jackets and similar articles) 01/01/1988 31/12/2500 -610432 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of cotton, knitted or crocheted (excl. wind-jackets and similar articles) 01/01/1988 31/12/2500 -61043200 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of cotton, knitted or crocheted (excl. wind-jackets and similar articles) 01/01/1988 31/12/2500 -610433 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of synthetic fibres, knitted or crocheted (excl. wind-jackets and similar articles) 01/01/1988 31/12/2500 -61043300 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of synthetic fibres, knitted or crocheted (excl. wind-jackets and similar articles) 01/01/1988 31/12/2500 -610439 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, wind-jackets and similar articles) 01/01/1988 31/12/2500 -61043900 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, wind-jackets and similar articles) 01/01/1988 31/12/2500 -610441 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of wool or fine animal hair, knitted or crocheted (excl. petticoats) 01/01/1988 31/12/2500 -61044100 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of wool or fine animal hair, knitted or crocheted (excl. petticoats) 01/01/1988 31/12/2500 -610442 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of cotton, knitted or crocheted (excl. petticoats) 01/01/1988 31/12/2500 -61044200 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of cotton, knitted or crocheted (excl. petticoats) 01/01/1988 31/12/2500 -610443 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of synthetic fibres, knitted or crocheted (excl. petticoats) 01/01/1988 31/12/2500 -61044300 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of synthetic fibres, knitted or crocheted (excl. petticoats) 01/01/1988 31/12/2500 -610444 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of artificial fibres, knitted or crocheted (excl. petticoats) 01/01/1988 31/12/2500 -61044400 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of artificial fibres, knitted or crocheted (excl. petticoats) 01/01/1988 31/12/2500 -610449 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton, man-made fibres and petticoats) 01/01/1988 31/12/2500 -61044900 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton, man-made fibres and petticoats) 01/01/1988 31/12/2500 -610451 01/01/1988 31/12/2500 LIBEN Women's or girls' skirts and divided skirts of wool or fine animal hair, knitted or crocheted (excl. petticoats) 01/01/1988 31/12/2500 -61045100 01/01/1988 31/12/2500 LIBEN Women's or girls' skirts and divided skirts of wool or fine animal hair, knitted or crocheted (excl. petticoats) 01/01/1988 31/12/2500 -610452 01/01/1988 31/12/2500 LIBEN Women's or girls' skirts and divided skirts of cotton, knitted or crocheted (excl. petticoats) 01/01/1988 31/12/2500 -61045200 01/01/1988 31/12/2500 LIBEN Women's or girls' skirts and divided skirts of cotton, knitted or crocheted (excl. petticoats) 01/01/1988 31/12/2500 -610453 01/01/1988 31/12/2500 LIBEN Women's or girls' skirts and divided skirts of synthetic fibres, knitted or crocheted (excl. petticoats) 01/01/1988 31/12/2500 -61045300 01/01/1988 31/12/2500 LIBEN Women's or girls' skirts and divided skirts of synthetic fibres, knitted or crocheted (excl. petticoats) 01/01/1988 31/12/2500 -610459 01/01/1988 31/12/2500 LIBEN Women's or girls' skirts and divided skirts of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, and petticoats) 01/01/1988 31/12/2500 -61045900 01/01/1988 31/12/2500 LIBEN Women's or girls' skirts and divided skirts of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, and petticoats) 01/01/1988 31/12/2500 -610461 01/01/1988 31/12/2500 LIBEN Women's or girls' trousers, bib and brace overalls, breeches and shorts of wool or fine animal hair, knitted or crocheted (excl. panties and swimwear) 01/01/1988 31/12/2500 -61046100 01/01/2005 31/12/2500 LIBEN Women's or girls' trousers, bib and brace overalls, breeches and shorts of wool or fine animal hair, knitted or crocheted (excl. panties and swimwear) 01/01/2005 31/12/2500 -61046110 01/01/1988 31/12/2004 LIBEN Women's or girls' trousers and breeches of wool or fine animal hair, knitted or crocheted (excl. bib and brace overalls and panties) 01/01/1988 31/12/2004 -61046190 01/01/1988 31/12/2004 LIBEN Women's or girls' bib and brace overalls and shorts of wool or fine animal hair, knitted or crocheted (excl. panties and swimwear) 01/01/1988 31/12/2004 -610462 01/01/1988 31/12/2500 LIBEN Women's or girls' trousers, bib and brace overalls, breeches and shorts of cotton, knitted or crocheted (excl. panties and swimwear) 01/01/1988 31/12/2500 -61046200 01/01/2005 31/12/2500 LIBEN Women's or girls' trousers, bib and brace overalls, breeches and shorts of cotton, knitted or crocheted (excl. panties and swimwear) 01/01/2005 31/12/2500 -61046210 01/01/1988 31/12/2004 LIBEN Women's or girls' trousers and breeches of cotton, knitted or crocheted (excl. bib and brace overalls and panties) 01/01/1988 31/12/2004 -61046290 01/01/1988 31/12/2004 LIBEN Women's or girls' bib and brace overalls and shorts of cotton, knitted or crocheted (excl. panties and swimwear) 01/01/1988 31/12/2004 -610463 01/01/1988 31/12/2500 LIBEN Women's or girls' trousers, bib and brace overalls, breeches and shorts of synthetic fibres, knitted or crocheted (excl. panties and swimwear) 01/01/1988 31/12/2500 -61046300 01/01/2005 31/12/2500 LIBEN Women's or girls' trousers, bib and brace overalls, breeches and shorts of synthetic fibres, knitted or crocheted (excl. panties and swimwear) 01/01/2005 31/12/2500 -61046310 01/01/1988 31/12/2004 LIBEN Women's or girls' trousers and breeches of synthetic fibres, knitted or crocheted (excl. bib and brace overalls and panties) 01/01/1988 31/12/2004 -61046390 01/01/1988 31/12/2004 LIBEN Women's or girls' bib and brace overalls and shorts of synthetic fibres, knitted or crocheted (excl. panties and swimwear) 01/01/1988 31/12/2004 -610469 01/01/1988 31/12/2500 LIBEN Women's or girls' trousers, bib and brace overalls, breeches and shorts of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, panties and swimwear) 01/01/1988 31/12/2500 -61046900 01/01/2005 31/12/2500 LIBEN Women's or girls' trousers, bib and brace overalls, breeches and shorts of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, panties and swimwear) 01/01/2005 31/12/2500 -61046910 01/01/1988 31/12/2004 LIBEN Women's or girls' trousers and breeches of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, panties and swimwear) 01/01/1988 31/12/2004 -61046991 01/01/1988 31/12/2004 LIBEN Women's or girls' bib and brace overalls and shorts of artificial fibres, knitted or crocheted (excl. panties and swimwear) 01/01/1988 31/12/2004 -61046999 01/01/1988 31/12/2004 LIBEN Women's or girls' bib and brace overalls and shorts of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, panties and swimwear) 01/01/1988 31/12/2004 -6105 01/01/1988 31/12/2500 LIBEN Men's or boys' shirts, knitted or crocheted (excl. nightshirts, T-shirts, singlets and other vests) 01/01/1988 31/12/2500 -610510 01/01/1988 31/12/2500 LIBEN Men's or boys' shirts of cotton, knitted or crocheted (excl. nightshirts, T-shirts, singlets and other vests) 01/01/1988 31/12/2500 -61051000 01/01/1988 31/12/2500 LIBEN Men's or boys' shirts of cotton, knitted or crocheted (excl. nightshirts, T-shirts, singlets and other vests) 01/01/1988 31/12/2500 -610520 01/01/1988 31/12/2500 LIBEN Men's or boys' shirts of man-made fibres, knitted or crocheted (excl. nightshirts, T-shirts, singlets and other vests) 01/01/1988 31/12/2500 -61052010 01/01/1988 31/12/2500 LIBEN Men's or boys' shirts of synthetic fibres, knitted or crocheted (excl. nightshirts, T-shirts, singlets and other vests) 01/01/1988 31/12/2500 -61052090 01/01/1988 31/12/2500 LIBEN Men's or boys' shirts of artificial fibres, knitted or crocheted (excl. nightshirts, T-shirts, singlets and other vests) 01/01/1988 31/12/2500 -610590 01/01/1988 31/12/2500 LIBEN Men's or boys' shirts of textile materials, knitted or crocheted (excl. of cotton or man-made fibres, nightshirts, T-shirts, singlets and other vests) 01/01/1988 31/12/2500 -61059010 01/01/1988 31/12/2500 LIBEN Men's or boys' shirts of wool or fine animal hair, knitted or crocheted (excl. nightshirts, T-shirts, singlets and other vests) 01/01/1988 31/12/2500 -61059090 01/01/1988 31/12/2500 LIBEN Men's or boys' shirts of textile materials, knitted or crocheted (excl. of cotton, man-made fibres, wool or fine animal hair, nightshirts, T-shirts, singlets and other vests) 01/01/1988 31/12/2500 -6106 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses, knitted or crocheted (excl. T-shirts and vests) 01/01/1988 31/12/2500 -610610 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of cotton, knitted or crocheted (excl. T-shirts and vests) 01/01/1988 31/12/2500 -61061000 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of cotton, knitted or crocheted (excl. T-shirts and vests) 01/01/1988 31/12/2500 -610620 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of man-made fibres, knitted or crocheted (excl. T-shirts and vests) 01/01/1988 31/12/2500 -61062000 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of man-made fibres, knitted or crocheted (excl. T-shirts and vests) 01/01/1988 31/12/2500 -610690 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of textile materials, knitted or crocheted (excl. of cotton or man-made fibres, T-shirts and vests) 01/01/1988 31/12/2500 -61069010 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of wool or fine animal hair, knitted or crocheted (excl. T-shirts and vests) 01/01/1988 31/12/2500 -61069030 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of silk or silk waste, knitted or crocheted (excl. T-shirts and vests) 01/01/1988 31/12/2500 -61069050 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of flax or ramie, knitted or crocheted (excl. T-shirts and vests) 01/01/1988 31/12/2500 -61069090 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or man-made fibres, silk or silk waste, flax or ramie, T-shirts and vests) 01/01/1988 31/12/2500 -6107 01/01/1988 31/12/2500 LIBEN Men's or boys' underpants, briefs, nightshirts, pyjamas, bathrobes, dressing gowns and similar articles, knitted or crocheted (excl. vests and singlets) 01/01/1988 31/12/2500 -610711 01/01/1988 31/12/2500 LIBEN Men's or boys' underpants and briefs of cotton, knitted or crocheted 01/01/1988 31/12/2500 -61071100 01/01/1988 31/12/2500 LIBEN Men's or boys' underpants and briefs of cotton, knitted or crocheted 01/01/1988 31/12/2500 -610712 01/01/1988 31/12/2500 LIBEN Men's or boys' underpants and briefs of man-made fibres, knitted or crocheted 01/01/1988 31/12/2500 -61071200 01/01/1988 31/12/2500 LIBEN Men's or boys' underpants and briefs of man-made fibres, knitted or crocheted 01/01/1988 31/12/2500 -610719 01/01/1988 31/12/2500 LIBEN Men's or boys' underpants and briefs of other textile materials, knitted or crocheted (excl. of cotton or man-made fibres) 01/01/1988 31/12/2500 -61071900 01/01/1988 31/12/2500 LIBEN Men's or boys' underpants and briefs of other textile materials, knitted or crocheted (excl. of cotton or man-made fibres) 01/01/1988 31/12/2500 -610721 01/01/1988 31/12/2500 LIBEN Men's or boys' nightshirts and pyjamas of cotton, knitted or crocheted (excl. vests and singlets) 01/01/1988 31/12/2500 -61072100 01/01/1988 31/12/2500 LIBEN Men's or boys' nightshirts and pyjamas of cotton, knitted or crocheted (excl. vests and singlets) 01/01/1988 31/12/2500 -610722 01/01/1988 31/12/2500 LIBEN Men's or boys' nightshirts and pyjamas of man-made fibres, knitted or crocheted (excl. vests and singlets) 01/01/1988 31/12/2500 -61072200 01/01/1988 31/12/2500 LIBEN Men's or boys' nightshirts and pyjamas of man-made fibres, knitted or crocheted (excl. vests and singlets) 01/01/1988 31/12/2500 -610729 01/01/1988 31/12/2500 LIBEN Men's or boys' nightshirts and pyjamas of textile materials, knitted or crocheted (excl. of cotton or man-made fibres, and vests and singlets) 01/01/1988 31/12/2500 -61072900 01/01/1988 31/12/2500 LIBEN Men's or boys' nightshirts and pyjamas of textile materials, knitted or crocheted (excl. of cotton or man-made fibres, and vests and singlets) 01/01/1988 31/12/2500 -610791 01/01/1988 31/12/2500 LIBEN Men's or boys' bathrobes, dressing gowns and similar articles of cotton, knitted or crocheted 01/01/1988 31/12/2500 -61079100 01/01/1988 31/12/1993 LIBEN Men's or boys' bathrobes, dressing gowns and similar articles of cotton, knitted or crocheted 01/01/1988 31/12/1993 -61079100 01/01/2005 31/12/2500 LIBEN Men's or boys' bathrobes, dressing gowns and similar articles of cotton, knitted or crocheted 01/01/2005 31/12/2500 -61079110 01/01/1994 31/12/2004 LIBEN Bathrobes, dressing gowns and similar articles, of cotton terry fabrics, knitted or crocheted, for men or boys 01/01/1994 31/12/2004 -61079190 01/01/1994 31/12/2004 LIBEN Bathrobes, dressing gowns and similar articles, of cotton knitted or crocheted fabrics, for men or boys (excl. terry knitted or crocheted fabrics) 01/01/1994 31/12/2004 -610792 01/01/1988 31/12/2006 LIBEN Men's or boys' bathrobes, dressing gowns and similar articles of man-made fibres, knitted or crocheted 01/01/1988 31/12/2006 -61079200 01/01/1988 31/12/2006 LIBEN Men's or boys' bathrobes, dressing gowns and similar articles of man-made fibres, knitted or crocheted 01/01/1988 31/12/2006 -610799 01/01/1988 31/12/2500 LIBEN Men's or boys' bathrobes, dressing gowns and similar articles of textile materials, knitted or crocheted (excl. of cotton) 01/01/1988 31/12/2500 -61079900 01/01/1988 31/12/2006 LIBEN Men's or boys' bathrobes, dressing gowns and similar articles of textile materials, knitted or crocheted (excl. of cotton or man-made fibres) 01/01/1988 31/12/2006 -61079900 01/01/2007 31/12/2500 LIBEN Men's or boys' bathrobes, dressing gowns and similar articles of textile materials, knitted or crocheted (excl. of cotton) 01/01/2007 31/12/2500 -6108 01/01/1988 31/12/2500 LIBEN Women's or girls' slips, petticoats, briefs, panties, nightdresses, pyjamas, négligés, bathrobes, dressing gowns, housecoats and similar articles, knitted or crocheted (excl. T-shirts, vests, brassieres, girdles, corsets and similar articles) 01/01/1988 31/12/2500 -610811 01/01/1988 31/12/2500 LIBEN Women's or girls' slips and petticoats of man-made fibres, knitted or crocheted (excl. T-shirts and vests) 01/01/1988 31/12/2500 -61081100 01/01/1999 31/12/2500 LIBEN Women's or girls' slips and petticoats of man-made fibres, knitted or crocheted (excl. T-shirts and vests) 01/01/1999 31/12/2500 -61081110 01/01/1988 31/12/1998 LIBEN Women's or girls' slips and petticoats of synthetic fibres, knitted or crocheted (excl. T-shirts and vests) 01/01/1988 31/12/1998 -61081190 01/01/1988 31/12/1998 LIBEN Women's or girls' slips and petticoats of artificial fibres, knitted or crocheted (excl. T-shirts and vests) 01/01/1988 31/12/1998 -610819 01/01/1988 31/12/2500 LIBEN Women's or girls' slips and petticoats of textile materials, knitted or crocheted (excl. man-made fibres, T-shirts and vests) 01/01/1988 31/12/2500 -61081900 01/01/1999 31/12/2500 LIBEN Women's or girls' slips and petticoats of textile materials, knitted or crocheted (excl. man-made fibres, T-shirts and vests) 01/01/1999 31/12/2500 -61081910 01/01/1988 31/12/1998 LIBEN Women's or girls' slips and petticoats of cotton, knitted or crocheted (excl. T-shirts and vests) 01/01/1988 31/12/1998 -61081990 01/01/1988 31/12/1998 LIBEN Women's or girls' slips and petticoats of textile materials, knitted or crocheted (excl. man-made fibres or cotton, T-shirts and vests) 01/01/1988 31/12/1998 -610821 01/01/1988 31/12/2500 LIBEN Women's or girls' briefs and panties of cotton, knitted or crocheted 01/01/1988 31/12/2500 -61082100 01/01/1988 31/12/2011 LIBEN Women's or girls' briefs and panties of cotton, knitted or crocheted 01/01/1988 31/12/2011 -61082100 01/01/2012 31/12/2500 LIBEN Women's or girls' briefs and panties of cotton, knitted or crocheted 01/01/2012 31/12/2500 -610822 01/01/1988 31/12/2500 LIBEN Women's or girls' briefs and panties of man-made fibres, knitted or crocheted 01/01/1988 31/12/2500 -61082200 01/01/1988 31/12/2011 LIBEN Women's or girls' briefs and panties of man-made fibres, knitted or crocheted 01/01/1988 31/12/2011 -61082200 01/01/2012 31/12/2500 LIBEN Women's or girls' briefs and panties of man-made fibres, knitted or crocheted 01/01/2012 31/12/2500 -610829 01/01/1988 31/12/2500 LIBEN Women's or girls' briefs and panties of textile materials, knitted or crocheted (excl. cotton or man-made fibres) 01/01/1988 31/12/2500 -61082900 01/01/1988 31/12/2011 LIBEN Women's or girls' briefs and panties of textile materials, knitted or crocheted (excl. cotton or man-made fibres) 01/01/1988 31/12/2011 -61082900 01/01/2012 31/12/2500 LIBEN Women's or girls' briefs and panties of textile materials, knitted or crocheted (excl. cotton or man-made fibres) 01/01/2012 31/12/2500 -610831 01/01/1988 31/12/2500 LIBEN Women's or girls' nightdresses and pyjamas of cotton, knitted or crocheted (excl. T-shirts, vests and négligés) 01/01/1988 31/12/2500 -61083100 01/01/2005 31/12/2500 LIBEN Women's or girls' nightdresses and pyjamas of cotton, knitted or crocheted (excl. T-shirts, vests and négligés) 01/01/2005 31/12/2500 -61083110 01/01/1988 31/12/2004 LIBEN Women's or girls' nightdresses of cotton, knitted or crocheted (excl. T-shirts, vests and négligés) 01/01/1988 31/12/2004 -61083190 01/01/1988 31/12/2004 LIBEN Women's or girls' pyjamas of cotton, knitted or crocheted 01/01/1988 31/12/2004 -610832 01/01/1988 31/12/2500 LIBEN Women's or girls' nightdresses and pyjamas of man-made fibres, knitted or crocheted (excl. T-shirts, vests and négligés) 01/01/1988 31/12/2500 -61083200 01/01/2005 31/12/2500 LIBEN Women's or girls' nightdresses and pyjamas of man-made fibres, knitted or crocheted (excl. T-shirts, vests and négligés) 01/01/2005 31/12/2500 -61083211 01/01/1988 31/12/2004 LIBEN Women's or girls' nightdresses of man-made fibres, knitted or crocheted (excl. T-shirts, vests and négligés) 01/01/1988 31/12/2004 -61083219 01/01/1988 31/12/2004 LIBEN Women's or girls' pyjamas of man-made fibres, knitted or crocheted 01/01/1988 31/12/2004 -61083290 01/01/1988 31/12/2004 LIBEN Women's or girls' nightdresses and pyjamas of artificial fibres, knitted or crocheted (excl. T-shirts, vests and négligés) 01/01/1988 31/12/2004 -610839 01/01/1988 31/12/2500 LIBEN Women's or girls' nightdresses and pyjamas of textile materials, knitted or crocheted (excl. of cotton and man-made fibres, T-shirts, vests and négligés) 01/01/1988 31/12/2500 -61083900 01/01/1988 31/12/2500 LIBEN Women's or girls' nightdresses and pyjamas of textile materials, knitted or crocheted (excl. of cotton and man-made fibres, T-shirts, vests and négligés) 01/01/1988 31/12/2500 -610891 01/01/1988 31/12/2500 LIBEN Women's or girls' négligés, bathrobes, dressing gowns, housejackets and similar articles of cotton, knitted or crocheted (excl. vests, slips, petticoats, briefs and panties, nightdresses, pyjamas, brassiéres, girdles, corsets and similar articles) 01/01/1988 31/12/2500 -61089100 01/01/1988 31/12/1993 LIBEN Women's or girls' negliges, bathrobes, dressing gowns, housejackets and similar articles of cotton, knitted or crocheted (excl. vests, slips, petticoats, briefs and panties, nightdresses, pyjamas, brassieres, girdles, corsets and similar articles) 01/01/1988 31/12/1993 -61089100 01/01/2005 31/12/2500 LIBEN Women's or girls' négligés, bathrobes, dressing gowns, housejackets and similar articles of cotton, knitted or crocheted (excl. vests, slips, petticoats, briefs and panties, nightdresses, pyjamas, brassiéres, girdles, corsets and similar articles) 01/01/2005 31/12/2500 -61089110 01/01/1994 31/12/2004 LIBEN Bathrobes, dressing gowns and similar articles, of cotton knitted or crocheted fabrics, for women or girls (excl. vests, slips, petticoats, briefs and panties, nightdresses, pyjamas, brassières, girdles, corsets and similar articles) 01/01/1994 31/12/2004 -61089190 01/01/1994 31/12/2004 LIBEN Négligés, bathrobes, dressing gowns, housejackets and similar articles of cotton, knitted or crocheted, for women or girls (excl. vests, slips, petticoats, briefs and panties, nightdresses, pyjamas, brassières, girdles, corsets and similar articles, and such articles of terry fabrics, knitted or crocheted) 01/01/1994 31/12/2004 -610892 01/01/1988 31/12/2500 LIBEN Women's or girls' négligés, bathrobes, dressing gowns, housejackets and similar articles of man-made fibres, knitted or crocheted (excl. vests, slips, petticoats, briefs and panties, nightdresses, pyjamas, brassiéres, girdles, corsets and similar articles) 01/01/1988 31/12/2500 -61089200 01/01/1988 31/12/2500 LIBEN Women's or girls' négligés, bathrobes, dressing gowns, housejackets and similar articles of man-made fibres, knitted or crocheted (excl. vests, slips, petticoats, briefs and panties, nightdresses, pyjamas, brassiéres, girdles, corsets and similar articles) 01/01/1988 31/12/2500 -610899 01/01/1988 31/12/2500 LIBEN Women's or girls' négligés, bathrobes, dressing gowns, housejackets and similar articles of textile materials, knitted or crocheted (excl. of cotton or man-made fibres, vests, slips, petticoats, briefs and panties, nightdresses, pyjamas, brassiéres, girdles, corsets and similar articles) 01/01/1988 31/12/2500 -61089900 01/01/2005 31/12/2500 LIBEN Women's or girls' négligés, bathrobes, dressing gowns, housejackets and similar articles of textile materials, knitted or crocheted (excl. of cotton or man-made fibres, vests, slips, petticoats, briefs and panties, nightdresses, pyjamas, brassiéres, girdles, corsets and similar articles) 01/01/2005 31/12/2500 -61089910 01/01/1988 31/12/2004 LIBEN Women's or girls' négligés, bathrobes, dressing gowns, housejackets and similar articles of wool or fine animal hair, knitted or crocheted (excl. vests, slips, petticoats, briefs and panties, nightdresses, pyjamas, brassiéres, girdles, corsets and similar articles) 01/01/1988 31/12/2004 -61089990 01/01/1988 31/12/2004 LIBEN Women's or girls' négligés, bathrobes, dressing gowns, housejackets and similar articles of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or man-made fibres, vests, slips, petticoats, briefs and panties, nightdresses, pyjamas, brassiéres, girdles, corsets and similar articles) 01/01/1988 31/12/2004 -6109 01/01/1988 31/12/2500 LIBEN T-shirts, singlets and other vests, knitted or crocheted 01/01/1988 31/12/2500 -610910 01/01/1988 31/12/2500 LIBEN T-shirts, singlets and other vests of cotton, knitted or crocheted 01/01/1988 31/12/2500 -61091000 01/01/1988 31/12/2500 LIBEN T-shirts, singlets and other vests of cotton, knitted or crocheted 01/01/1988 31/12/2500 -610990 01/01/1988 31/12/2500 LIBEN T-shirts, singlets and other vests of textile materials, knitted or crocheted (excl. cotton) 01/01/1988 31/12/2500 -61099010 01/01/1988 31/12/2007 LIBEN T-shirts, singlets and other vests of wool or fine animal hair, knitted or crocheted 01/01/1988 31/12/2007 -61099020 01/01/2008 31/12/2500 LIBEN T-shirts, singlets and other vests of wool or fine animal hair or man-made fibres, knitted or crocheted 01/01/2008 31/12/2500 -61099030 01/01/1988 31/12/2007 LIBEN T-shirts, singlets and other vests of man-made fibres, knitted or crocheted 01/01/1988 31/12/2007 -61099090 01/01/1988 31/12/2500 LIBEN T-shirts, singlets and other vests of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or man-made fibres) 01/01/1988 31/12/2500 -6110 01/01/1988 31/12/2500 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles, knitted or crocheted (excl. wadded waistcoats) 01/01/1988 31/12/2500 -611010 01/01/1988 31/12/2001 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles, of wool or fine animal hair, knitted or crocheted (excl. wadded waistcoats) 01/01/1988 31/12/2001 -61101010 01/01/1988 31/12/2001 LIBEN Jerseys and pullovers containing >= 50% by weight of wool and weighing >= 600 g/article, knitted or crocheted 01/01/1988 31/12/2001 -61101031 01/01/1988 31/12/2001 LIBEN Men's or boys' jerseys, pullovers, cardigans, waistcoats and similar articles, of wool, knitted or crocheted (excl. jerseys and pullovers containing >= 50% by weight of wool and weighing >= 600 g/article, amd wadded waistcoats) 01/01/1988 31/12/2001 -61101035 01/01/1993 31/12/2001 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles knitted or crocheted from fine hair of Kashmir goats for men or boys (excl. jerseys and pullovers containing >= 50% by weight of wool and weighing >= 600 g per article, and quilted articles) 01/01/1993 31/12/2001 -61101038 01/01/1993 31/12/2001 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles knitted or crocheted from fine hair of fine animal hair other than of Kashmir goats for men or boys (excl. jerseys and pullovers containing >= 50% by weight of wool and weighing >= 600 g per article, and quilted articles) 01/01/1993 31/12/2001 -61101039 01/01/1988 31/12/1992 LIBEN Men's or boys' jerseys, pullovers, cardigans, waistcoats and similar articles, of fine animal hair, knitted or crocheted (excl. pullovers containing >= 50 % by weight of wool and weighing >= 600 g/article, amd wadded waistcoats) 01/01/1988 31/12/1992 -61101091 01/01/1988 31/12/2001 LIBEN Women's or girls' jerseys, pullovers, cardigans, waistcoats and similar articles, of wool, knitted or crocheted (excl. jerseys and pullovers containing >= 50% by weight of wool and weighing >= 600 g/article, and wadded waistcoats) 01/01/1988 31/12/2001 -61101095 01/01/1993 31/12/2001 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles knitted or crocheted from fine hair of Kashmir goats for women or girls (excl. jerseys and pullovers containing >= 50% by weight of wool and weighing >= 600 g per article, and quilted articles) 01/01/1993 31/12/2001 -61101098 01/01/1993 31/12/2001 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles knitted or crocheted from fine hair of fine animal hair other than of Kashmir goats for women or girls (excl. jerseys and pullovers containing >= 50% by weight of wool and weighing >= 600 g per article, and quilted articles) 01/01/1993 31/12/2001 -61101099 01/01/1988 31/12/1992 LIBEN Women's or girls' jerseys, pullovers, cardigans, waistcoats and similar articles, of fine animal hair, knitted or crocheted (excl. pullovers containing >= 50 % by weight of wool and weighing >= 600 g/article, and wadded waistcoats) 01/01/1988 31/12/1992 -611011 01/01/2002 31/12/2500 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles, of wool, knitted or crocheted (excl. wadded waistcoats) 01/01/2002 31/12/2500 -61101110 01/01/2002 31/12/2500 LIBEN Jerseys and pullovers containing >= 50% by weight of wool and weighing >= 600 g/article, knitted or crocheted 01/01/2002 31/12/2500 -61101130 01/01/2002 31/12/2500 LIBEN Men's or boys' jerseys, pullovers, cardigans, waistcoats and similar articles, of wool, knitted or crocheted (excl. jerseys and pullovers containing >= 50% by weight of wool and weighing >= 600 g/article, and wadded waistcoats) 01/01/2002 31/12/2500 -61101190 01/01/2002 31/12/2500 LIBEN Women's or girls' jerseys, pullovers, cardigans, waistcoats and similar articles, of wool, knitted or crocheted (excl. jerseys and pullovers containing >= 50% by weight of wool and weighing >= 600 g/article, and wadded waistcoats) 01/01/2002 31/12/2500 -611012 01/01/2002 31/12/2500 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles, of hair of Kashmir "cashmere" goats, knitted or crocheted (excl. quilted articles) 01/01/2002 31/12/2500 -61101210 01/01/2002 31/12/2500 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles, of hair of Kashmir "cashmere" goats, knitted or crocheted, for men or boys (excl. quilted articles) 01/01/2002 31/12/2500 -61101290 01/01/2002 31/12/2500 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles, of hair of Kashmir "cashmere" goats, knitted or crocheted, for women or girls (excl. quilted articles) 01/01/2002 31/12/2500 -611019 01/01/2002 31/12/2500 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles, of fine animal hair, knitted or crocheted (excl. from hair of Kashmir "cashmere" goats and quilted articles) 01/01/2002 31/12/2500 -61101910 01/01/2002 31/12/2500 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles, of fine animal hair, knitted or crocheted, for men or boys (excl. from hair of Kashmir "cashmere" goats and quilted articles) 01/01/2002 31/12/2500 -61101990 01/01/2002 31/12/2500 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles, of fine animal hair, knitted or crocheted, for women or girls (excl. from hair of Kashmir "cashmere" goats and quilted articles) 01/01/2002 31/12/2500 -611020 01/01/1988 31/12/2500 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles, of cotton, knitted or crocheted (excl. wadded waistcoats) 01/01/1988 31/12/2500 -61102010 01/01/1988 31/12/2500 LIBEN Lightweight fine knit roll, polo or turtleneck jumpers and pullovers of cotton, knitted or crocheted 01/01/1988 31/12/2500 -61102091 01/01/1988 31/12/2500 LIBEN Men's or boys' jerseys, pullovers, cardigans, waistcoats and similar articles, of cotton, knitted or crocheted (excl. lightweight fine knit roll, polo or turtleneck jumpers and pullovers and wadded waistcoats) 01/01/1988 31/12/2500 -61102099 01/01/1988 31/12/2500 LIBEN Women's or girls' jerseys, pullovers, cardigans, waistcoats and similar articles, of cotton, knitted or crocheted (excl. lightweight fine knit roll, polo or turtleneck jumpers and pullovers and wadded waistcoats) 01/01/1988 31/12/2500 -611030 01/01/1988 31/12/2500 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles, of man-made fibres, knitted or crocheted (excl. wadded waistcoats) 01/01/1988 31/12/2500 -61103010 01/01/1988 31/12/2500 LIBEN Lightweight fine knit roll, polo or turtleneck jumpers and pullovers of man-made fibres, knitted or crocheted 01/01/1988 31/12/2500 -61103091 01/01/1988 31/12/2500 LIBEN Men's or boys' jerseys, pullovers, cardigans, waistcoats and similar articles, of man-made fibres, knitted or crocheted (excl. lightweight fine knit roll, polo or turtleneck jumpers and pullovers and wadded waistcoats) 01/01/1988 31/12/2500 -61103099 01/01/1988 31/12/2500 LIBEN Women's or girls' jerseys, pullovers, cardigans, waistcoats and similar articles, of man-made fibres, knitted or crocheted (excl. lightweight fine knit roll, polo or turtleneck jumpers and pullovers and wadded waistcoats) 01/01/1988 31/12/2500 -611090 01/01/1988 31/12/2500 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles, of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or man-made fibres, and wadded waistcoats) 01/01/1988 31/12/2500 -61109010 01/01/1988 31/12/2500 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles, of flax or ramie, knitted or crocheted (excl. wadded waistcoats) 01/01/1988 31/12/2500 -61109090 01/01/1988 31/12/2500 LIBEN Jerseys, pullovers, cardigans, waistcoats and similar articles, of textile materials, knitted or crocheted (excl. of man-made fibres, wool, fine animal hair, cotton, flax or ramie, and wadded waistcoats) 01/01/1988 31/12/2500 -6111 01/01/1988 31/12/2500 LIBEN Babies' garments and clothing accessories, knitted or crocheted (excl. hats) 01/01/1988 31/12/2500 -611110 01/01/1988 31/12/2006 LIBEN Babies' garments and clothing accessories of wool or fine animal hair, knitted or crocheted (excl. hats) 01/01/1988 31/12/2006 -61111010 01/01/1988 31/12/2006 LIBEN Babies' gloves, mittens and mitts, of wool or fine animal hair, knitted or crocheted 01/01/1988 31/12/2006 -61111090 01/01/1988 31/12/2006 LIBEN Babies' garments and clothing accessories, of wool or fine animal hair, knitted or crocheted (excl. gloves, mittens, mitts and hats) 01/01/1988 31/12/2006 -611120 01/01/1988 31/12/2500 LIBEN Babies' garments and clothing accessories of cotton, knitted or crocheted (excl. hats) 01/01/1988 31/12/2500 -61112010 01/01/1988 31/12/2500 LIBEN Babies' gloves, mittens and mitts, of cotton, knitted or crocheted 01/01/1988 31/12/2500 -61112090 01/01/1988 31/12/2011 LIBEN Babies' garments and clothing accessories, of cotton, knitted or crocheted (excl. gloves, mittens, mitts and hats) 01/01/1988 31/12/2011 -61112090 01/01/2012 31/12/2500 LIBEN Babies' garments and clothing accessories, of cotton, knitted or crocheted (excl. gloves, mittens, mitts and hats) 01/01/2012 31/12/2500 -611130 01/01/1988 31/12/2500 LIBEN Babies' garments and clothing accessories of synthetic fibres, knitted or crocheted (excl. hats) 01/01/1988 31/12/2500 -61113010 01/01/1988 31/12/2500 LIBEN Babies' gloves, mittens and mitts for babies, of synthetic fibres, knitted or crocheted 01/01/1988 31/12/2500 -61113090 01/01/1988 31/12/2011 LIBEN Babies' garments and clothing accessories, of synthetic fibres, knitted or crocheted (excl. gloves, mittens, mitts and hats) 01/01/1988 31/12/2011 -61113090 01/01/2012 31/12/2500 LIBEN Babies' garments and clothing accessories, of synthetic fibres, knitted or crocheted (excl. gloves, mittens, mitts and hats) 01/01/2012 31/12/2500 -611190 01/01/1988 31/12/2500 LIBEN Babies' garments and clothing accessories of textile materials, knitted or crocheted (excl. of cotton or synthetic fibres, and hats) 01/01/1988 31/12/2500 -61119000 01/01/1988 31/12/2006 LIBEN Babies' garments and clothing accessories of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, and hats) 01/01/1988 31/12/2006 -61119011 01/01/2007 31/12/2500 LIBEN Babies' gloves, mittens and mitts, of wool or fine animal hair, knitted or crocheted 01/01/2007 31/12/2500 -61119019 01/01/2007 31/12/2500 LIBEN Babies' garments and clothing accessories, of wool or fine animal hair, knitted or crocheted (excl. gloves, mittens, mitts and hats) 01/01/2007 31/12/2500 -61119090 01/01/2007 31/12/2011 LIBEN Babies' garments and clothing accessories of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, and hats) 01/01/2007 31/12/2011 -61119090 01/01/2012 31/12/2500 LIBEN Babies' garments and clothing accessories of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, and hats) 01/01/2012 31/12/2500 -6112 01/01/1988 31/12/2500 LIBEN Track-suits, ski-suits and swimwear, knitted or crocheted 01/01/1988 31/12/2500 -611211 01/01/1988 31/12/2500 LIBEN Track-suits of cotton, knitted or crocheted 01/01/1988 31/12/2500 -61121100 01/01/1988 31/12/2500 LIBEN Track-suits of cotton, knitted or crocheted 01/01/1988 31/12/2500 -611212 01/01/1988 31/12/2500 LIBEN Track-suits of synthetic fibres, knitted or crocheted 01/01/1988 31/12/2500 -61121200 01/01/1988 31/12/2500 LIBEN Track-suits of synthetic fibres, knitted or crocheted 01/01/1988 31/12/2500 -611219 01/01/1988 31/12/2500 LIBEN Track-suits of textile materials, knitted or crocheted (excl. cotton or synthetic fibres) 01/01/1988 31/12/2500 -61121900 01/01/1988 31/12/2500 LIBEN Track-suits of textile materials, knitted or crocheted (excl. cotton or synthetic fibres) 01/01/1988 31/12/2500 -611220 01/01/1988 31/12/2500 LIBEN Ski-suits, knitted or crocheted 01/01/1988 31/12/2500 -61122000 01/01/1988 31/12/2500 LIBEN Ski-suits, knitted or crocheted 01/01/1988 31/12/2500 -611231 01/01/1988 31/12/2500 LIBEN Men's or boys' swimwear of synthetic fibres, knitted or crocheted 01/01/1988 31/12/2500 -61123110 01/01/1988 31/12/2500 LIBEN Men's or boys' swimwear of synthetic fibres, knitted or crocheted, containing >= 5% by weight of rubber thread 01/01/1988 31/12/2500 -61123190 01/01/1988 31/12/2500 LIBEN Men's or boys' swimwear of synthetic fibres, knitted or crocheted (excl. containing >= 5% by weight of rubber thread) 01/01/1988 31/12/2500 -611239 01/01/1988 31/12/2500 LIBEN Men's or boys' swimwear of textile materials, knitted or crocheted (excl. synthetic fibres) 01/01/1988 31/12/2500 -61123910 01/01/1988 31/12/2500 LIBEN Men's or boys' swimwear of textile materials, knitted or crocheted, containing >= 5% by weight of rubber thread (excl. synthetic fibres) 01/01/1988 31/12/2500 -61123990 01/01/1988 31/12/2500 LIBEN Men's or boys' swimwear of textile materials, knitted or crocheted (excl. synthetic fibres and containing >= 5% by weight of rubber thread) 01/01/1988 31/12/2500 -611241 01/01/1988 31/12/2500 LIBEN Women's or girls' swimwear of synthetic fibres, knitted or crocheted 01/01/1988 31/12/2500 -61124110 01/01/1988 31/12/2500 LIBEN Women's or girls' swimwear of synthetic fibres, knitted or crocheted, containing >= 5% by weight of rubber thread 01/01/1988 31/12/2500 -61124190 01/01/1988 31/12/2500 LIBEN Women's or girls' swimwear of synthetic fibres, knitted or crocheted (excl. containing >= 5% by weight of rubber thread) 01/01/1988 31/12/2500 -611249 01/01/1988 31/12/2500 LIBEN Women's or girls' swimwear of textile materials, knitted or crocheted (excl. synthetic fibres) 01/01/1988 31/12/2500 -61124910 01/01/1988 31/12/2500 LIBEN Women's or girls' swimwear of textile materials, knitted or crocheted, containing >= 5% by weight of rubber thread (excl. synthetic fibres) 01/01/1988 31/12/2500 -61124990 01/01/1988 31/12/2500 LIBEN Women's or girls' swimwear of textile materials, knitted or crocheted (excl. synthetic fibres and containing >= 5% by weight of rubber thread) 01/01/1988 31/12/2500 -6113 01/01/1988 31/12/2500 LIBEN Garments, knitted or crocheted, rubberised or impregnated, coated or covered with plastics or other materials (excl. babies' garments and clothing accessories) 01/01/1988 31/12/2500 -611300 01/01/1988 31/12/2500 LIBEN Garments, knitted or crocheted, rubberised or impregnated, coated or covered with plastics or other materials (excl. babies' garments and clothing accessories) 01/01/1988 31/12/2500 -61130010 01/01/1988 31/12/2011 LIBEN Garments, knitted or crocheted, rubberised (excl. babies' garments and clothing accessories) 01/01/1988 31/12/2011 -61130010 01/01/2012 31/12/2500 LIBEN Garments, knitted or crocheted, rubberised (excl. babies' garments and clothing accessories) 01/01/2012 31/12/2500 -61130090 01/01/1988 31/12/2011 LIBEN Garments, knitted or crocheted, impregnated, coated or covered with plastics or other materials (excl. rubberised and babies' garments and clothing accessories) 01/01/1988 31/12/2011 -61130090 01/01/2012 31/12/2500 LIBEN Garments, knitted or crocheted, impregnated, coated or covered with plastics or other materials (excl. rubberised and babies' garments and clothing accessories) 01/01/2012 31/12/2500 -6114 01/01/1988 31/12/2500 LIBEN Special garments for professional, sporting or other purposes, n.e.s., knitted or crocheted 01/01/1988 31/12/2500 -611410 01/01/1988 31/12/2006 LIBEN Special garments for professional, sporting or other purposes, n.e.s., of wool or fine animal hair, knitted or crocheted 01/01/1988 31/12/2006 -61141000 01/01/1988 31/12/2006 LIBEN Special garments for professional, sporting or other purposes, n.e.s., of wool or fine animal hair, knitted or crocheted 01/01/1988 31/12/2006 -611420 01/01/1988 31/12/2500 LIBEN Special garments for professional, sporting or other purposes, n.e.s., of cotton, knitted or crocheted 01/01/1988 31/12/2500 -61142000 01/01/1988 31/12/2500 LIBEN Special garments for professional, sporting or other purposes, n.e.s., of cotton, knitted or crocheted 01/01/1988 31/12/2500 -611430 01/01/1988 31/12/2500 LIBEN Special garments for professional, sporting or other purposes, n.e.s., of man-made fibres, knitted or crocheted 01/01/1988 31/12/2500 -61143000 01/01/1988 31/12/2500 LIBEN Special garments for professional, sporting or other purposes, n.e.s., of man-made fibres, knitted or crocheted 01/01/1988 31/12/2500 -611490 01/01/1988 31/12/2500 LIBEN Special garments for professional, sporting or other purposes, n.e.s., of textile materials, knitted or crocheted (excl. of cotton and man-made fibres) 01/01/1988 31/12/2500 -61149000 01/01/1988 31/12/2006 LIBEN Special garments for professional, sporting or other purposes, n.e.s., of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton and man-made fibres) 01/01/1988 31/12/2006 -61149000 01/01/2007 31/12/2500 LIBEN Special garments for professional, sporting or other purposes, n.e.s., of textile materials, knitted or crocheted (excl. of cotton and man-made fibres) 01/01/2007 31/12/2500 -6115 01/01/1988 31/12/2500 LIBEN Pantyhose, tights, stockings, socks and other hosiery, incl. graduated compression hosiery [e.g., stockings for varicose veins] and footwear without applied soles, knitted or crocheted (excl. for babies) 01/01/1988 31/12/2500 -611510 01/01/2007 31/12/2500 LIBEN Graduated compression hosiery [e.g., stockings for varicose veins], of textile materials, knitted or crocheted (excl. hosiery for babies) 01/01/2007 31/12/2500 -61151010 01/01/2007 31/12/2500 LIBEN Stockings for varicose veins of synthetic fibres, knitted or crocheted 01/01/2007 31/12/2500 -61151090 01/01/2007 31/12/2500 LIBEN Graduated compression hosiery of textile materials, knitted or crocheted (excl. stockings for varicose veins of synthetic fibres and hosiery for babies) 01/01/2007 31/12/2500 -611511 01/01/1988 31/12/2006 LIBEN Pantyhose and tights of synthetic fibres, knitted or crocheted, measuring per single yarn < 67 decitex 01/01/1988 31/12/2006 -61151100 01/01/1988 31/12/2006 LIBEN Pantyhose and tights of synthetic fibres, knitted or crocheted, measuring per single yarn < 67 decitex 01/01/1988 31/12/2006 -611512 01/01/1988 31/12/2006 LIBEN Pantyhose and tights of synthetic fibres, knitted or crocheted, measuring per single yarn >= 67 decitex 01/01/1988 31/12/2006 -61151200 01/01/1988 31/12/2006 LIBEN Pantyhose and tights of synthetic fibres, knitted or crocheted, measuring per single yarn >= 67 decitex 01/01/1988 31/12/2006 -611519 01/01/1988 31/12/2006 LIBEN Pantyhose and tights of textile materials, knitted or crocheted (excl. of synthetic fibres and hosiery for babies) 01/01/1988 31/12/2006 -61151900 01/01/1999 31/12/2006 LIBEN Pantyhose and tights of textile materials, knitted or crocheted (excl. of synthetic fibres and hosiery for babies) 01/01/1999 31/12/2006 -61151910 01/01/1988 31/12/1998 LIBEN Panty hose and tights of wool or fine animal hair, knitted or crocheted (excl. hosiery for babies) 01/01/1988 31/12/1998 -61151990 01/01/1988 31/12/1998 LIBEN Panty hose and tights of textile materials, knitted or crocheted (excl. of wool, fine animal hair, or synthetic fibres, and hosiery for babies) 01/01/1988 31/12/1998 -611520 01/01/1988 31/12/2006 LIBEN Women's full-length or knee-length hosiery, knitted or crocheted, measuring per single yarn < 67 decitex (excl. pantyhose and tights) 01/01/1988 31/12/2006 -61152011 01/01/1988 31/12/2006 LIBEN Women's knee-length stockings of synthetic fibres, knitted or crocheted, measuring per single yarn < 67 decitex 01/01/1988 31/12/2006 -61152019 01/01/1988 31/12/2006 LIBEN Women's full-length hosiery of synthetic fibres, knitted or crocheted, measuring per single yarn < 67 decitex (excl. pantyhose and tights and knee length stockings) 01/01/1988 31/12/2006 -61152090 01/01/1988 31/12/2006 LIBEN Women's full-length and knee-length hosiery, knitted or crocheted, measuring per single yarn < 67 decitex (excl. of synthetic fibres and pantyhose and tights) 01/01/1988 31/12/2006 -611521 01/01/2007 31/12/2500 LIBEN Pantyhose and tights of synthetic fibres, knitted or crocheted, measuring per single yarn < 67 decitex (excl. graduated compression hosiery) 01/01/2007 31/12/2500 -61152100 01/01/2007 31/12/2500 LIBEN Pantyhose and tights of synthetic fibres, knitted or crocheted, measuring per single yarn < 67 decitex (excl. graduated compression hosiery) 01/01/2007 31/12/2500 -611522 01/01/2007 31/12/2500 LIBEN Pantyhose and tights of synthetic fibres, knitted or crocheted, measuring per single yarn >= 67 decitex (excl. graduated compression hosiery) 01/01/2007 31/12/2500 -61152200 01/01/2007 31/12/2500 LIBEN Pantyhose and tights of synthetic fibres, knitted or crocheted, measuring per single yarn >= 67 decitex (excl. graduated compression hosiery) 01/01/2007 31/12/2500 -611529 01/01/2007 31/12/2500 LIBEN Pantyhose and tights of textile materials, knitted or crocheted (excl. graduated compression hosiery, those of synthetic fibres and hosiery for babies) 01/01/2007 31/12/2500 -61152900 01/01/2007 31/12/2500 LIBEN Pantyhose and tights of textile materials, knitted or crocheted (excl. graduated compression hosiery, those of synthetic fibres and hosiery for babies) 01/01/2007 31/12/2500 -611530 01/01/2007 31/12/2500 LIBEN Women's full-length or knee-length hosiery, knitted or crocheted, measuring per single yarn < 67 decitex (excl. graduated compression hosiery, pantyhose and tights) 01/01/2007 31/12/2500 -61153011 01/01/2007 31/12/2500 LIBEN Women's knee-length stockings of synthetic fibres, knitted or crocheted, measuring per single yarn < 67 decitex (excl. graduated compression hosiery) 01/01/2007 31/12/2500 -61153019 01/01/2007 31/12/2500 LIBEN Women's full-length hosiery of synthetic fibres, knitted or crocheted, measuring per single yarn < 67 decitex (excl. graduated compression hosiery, pantyhose and tights and knee length stockings) 01/01/2007 31/12/2500 -61153090 01/01/2007 31/12/2500 LIBEN Women's full-length and knee-length hosiery, knitted or crocheted, measuring per single yarn < 67 decitex (excl. graduated compression hosiery, those of synthetic fibres and pantyhose and tights) 01/01/2007 31/12/2500 -611591 01/01/1988 31/12/2006 LIBEN Full-length or knee-length stockings, socks and other hosiery, incl. stockings for varicose veins and footwear without applied soles, of wool or fine animal hair, knitted or crocheted (excl. pantyhose and tights, women's full-length or knee-length stockings, measuring per single yarn < 67 decitex, and hosiery for babies) 01/01/1988 31/12/2006 -61159100 01/01/1988 31/12/2006 LIBEN Full-length or knee-length stockings, socks and other hosiery, incl. stockings for varicose veins and footwear without applied soles, of wool or fine animal hair, knitted or crocheted (excl. pantyhose and tights, women's full-length or knee-length stockings, measuring per single yarn < 67 decitex, and hosiery for babies) 01/01/1988 31/12/2006 -611592 01/01/1988 31/12/2006 LIBEN Full-length or knee-length stockings, socks and other hosiery, incl. stockings for varicose veins and footwear without applied soles, of cotton, knitted or crocheted (excl. pantyhose and tights, women's full-length or knee-length stockings, measuring per single yarn < 67 decitex, and hosiery for babies) 01/01/1988 31/12/2006 -61159200 01/01/1988 31/12/2006 LIBEN Full-length or knee-length stockings, socks and other hosiery, incl. stockings for varicose veins and footwear without applied soles, of cotton, knitted or crocheted (excl. pantyhose and tights, women's full-length or knee-length stockings, measuring per single yarn < 67 decitex, and hosiery for babies) 01/01/1988 31/12/2006 -611593 01/01/1988 31/12/2006 LIBEN Full-length or knee-length stockings, socks and other hosiery, incl. stockings for varicose veins and footwear without applied soles, of synthetic fibres, knitted or crocheted (excl. pantyhose and tights, women's full-length or knee-length stockings, measuring per single yarn < 67 decitex, and hosiery for babies) 01/01/1988 31/12/2006 -61159310 01/01/1988 31/12/2006 LIBEN Stockings for varicose veins of synthetic fibres, knitted or crocheted 01/01/1988 31/12/2006 -61159330 01/01/1988 31/12/2006 LIBEN Knee-length stockings of synthetic fibres, knitted or crocheted (excl. women's full-length stockings, measuring per single yarn < 67 decitex, stockings for varicose veins and hosiery for babies) 01/01/1988 31/12/2006 -61159391 01/01/1988 31/12/2006 LIBEN Women's stockings of synthetic fibres, knitted or crocheted (excl. pantyhose and tights, women's full-length stockings, measuring per single yarn < 67 decitex, knee-length stockings and stockings for varicose veins) 01/01/1988 31/12/2006 -61159399 01/01/1988 31/12/2006 LIBEN Full-length stockings, socks and other hosiery, incl. footwear without applied soles, of synthetic fibres, knitted or crocheted (excl. women's pantyhose and tights, full-length or knee-length stockings, stockings for varicose veins, and hosiery for babies) 01/01/1988 31/12/2006 -611594 01/01/2007 31/12/2500 LIBEN Full-length or knee-length stockings, socks and other hosiery, incl. footwear without applied soles, of wool or fine animal hair, knitted or crocheted (excl. graduated compression hosiery, pantyhose and tights, women's full-length or knee-length stockings, measuring per single yarn < 67 decitex, and hosiery for babies) 01/01/2007 31/12/2500 -61159400 01/01/2007 31/12/2500 LIBEN Full-length or knee-length stockings, socks and other hosiery, incl. footwear without applied soles, of wool or fine animal hair, knitted or crocheted (excl. graduated compression hosiery, pantyhose and tights, women's full-length or knee-length stockings, measuring per single yarn < 67 decitex, and hosiery for babies) 01/01/2007 31/12/2500 -611595 01/01/2007 31/12/2500 LIBEN Full-length or knee-length stockings, socks and other hosiery, incl. footwear without applied soles, of cotton, knitted or crocheted (excl. graduated compression hosiery, pantyhose and tights, women's full-length or knee-length stockings, measuring per single yarn < 67 decitex, and hosiery for babies) 01/01/2007 31/12/2500 -61159500 01/01/2007 31/12/2500 LIBEN Full-length or knee-length stockings, socks and other hosiery, incl. footwear without applied soles, of cotton, knitted or crocheted (excl. graduated compression hosiery, pantyhose and tights, women's full-length or knee-length stockings, measuring per single yarn < 67 decitex, and hosiery for babies) 01/01/2007 31/12/2500 -611596 01/01/2007 31/12/2500 LIBEN Full-length or knee-length stockings, socks and other hosiery, incl. footwear without applied soles, of synthetic fibres, knitted or crocheted (excl. graduated compression hosiery, pantyhose and tights, women's full-length or knee-length stockings, measuring per single yarn < 67 decitex, and hosiery for babies) 01/01/2007 31/12/2500 -61159610 01/01/2007 31/12/2500 LIBEN Knee-length stockings of synthetic fibres, knitted or crocheted (excl. graduated compression hosiery, women's full-length stockings measuring per single yarn < 67 decitex, and hosiery for babies) 01/01/2007 31/12/2500 -61159691 01/01/2007 31/12/2500 LIBEN Women's stockings of synthetic fibres, knitted or crocheted (excl. graduated compression hosiery, pantyhose and tights, women's full-length stockings measuring per single yarn < 67 decitex and knee-length stockings) 01/01/2007 31/12/2500 -61159699 01/01/2007 31/12/2500 LIBEN Full-length stockings, socks and other hosiery, incl. footwear without applied soles, of synthetic fibres, knitted or crocheted (excl. graduated compression hosiery, women's pantyhose and tights, full-length or knee-length stockings, and hosiery for babies) 01/01/2007 31/12/2500 -611599 01/01/1988 31/12/2500 LIBEN Full-length or knee-length stockings, socks and other hosiery, incl. footwear without applied soles, of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, graduated compression hosiery, pantyhose and tights, women's full-length or knee-length stockings, measuring per single yarn < 67 decitex, and hosiery for babies) 01/01/1988 31/12/2500 -61159900 01/01/1988 31/12/2006 LIBEN Full-length or knee-length stockings, socks and other hosiery, incl. stockings for varicose veins and footwear without applied soles, of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, pantyhose and tights, women's full-length or knee-length stockings, measuring per single yarn < 67 decitex, and hosiery for babies) 01/01/1988 31/12/2006 -61159900 01/01/2007 31/12/2500 LIBEN Full-length or knee-length stockings, socks and other hosiery, incl. footwear without applied soles, of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, graduated compression hosiery, pantyhose and tights, women's full-length or knee-length stockings, measuring per single yarn < 67 decitex, and hosiery for babies) 01/01/2007 31/12/2500 -6116 01/01/1988 31/12/2500 LIBEN Gloves, mittens and mitts, knitted or crocheted (excl. for babies) 01/01/1988 31/12/2500 -611610 01/01/1988 31/12/2500 LIBEN Gloves, mittens and mitts, impregnated, coated or covered with plastics or rubber, knitted or crocheted 01/01/1988 31/12/2500 -61161010 01/01/1988 31/12/1995 LIBEN Gloves, mittens and mitts, impregnated coated or covered with plastics, knitted or crocheted 01/01/1988 31/12/1995 -61161020 01/01/1996 31/12/2500 LIBEN Gloves, impregnated, coated or covered with rubber, knitted or crocheted 01/01/1996 31/12/2500 -61161080 01/01/1996 31/12/2500 LIBEN Mittens and mitts, impregnated, coated or covered with plastics or rubber, knitted or crocheted, and gloves, impregnated, coated or covered with plastics, knitted or crocheted 01/01/1996 31/12/2500 -61161090 01/01/1988 31/12/1995 LIBEN Gloves, mittens and mitts, impregnated coated or covered with rubber, knitted or crocheted 01/01/1988 31/12/1995 -611691 01/01/1988 31/12/2500 LIBEN Gloves, mittens and mitts, of wool or fine animal hair, knitted or crocheted (excl. for babies) 01/01/1988 31/12/2500 -61169100 01/01/1988 31/12/1995 LIBEN Gloves, mittens and mitts, of wool or fine animal hair, knitted or crocheted (excl. for babies) 01/01/1988 31/12/1995 -61169100 01/01/1996 31/12/2500 LIBEN Gloves, mittens and mitts, of wool or fine animal hair, knitted or crocheted (excl. for babies) 01/01/1996 31/12/2500 -611692 01/01/1988 31/12/2500 LIBEN Gloves, mittens and mitts, of cotton, knitted or crocheted (excl. impregnated, coated or covered with plastics or rubber, and for babies) 01/01/1988 31/12/2500 -61169200 01/01/1988 31/12/1995 LIBEN Gloves, mittens and mitts, of cotton, knitted or crocheted (excl. impregnated, coated or covered with plastics or rubber, and for babies) 01/01/1988 31/12/1995 -61169200 01/01/1996 31/12/2500 LIBEN Gloves, mittens and mitts, of cotton, knitted or crocheted (excl. impregnated, coated or covered with plastics or rubber, and for babies) 01/01/1996 31/12/2500 -611693 01/01/1988 31/12/2500 LIBEN Gloves, mittens and mitts, of synthetic fibres, knitted or crocheted (excl. impregnated, coated or covered with plastics or rubber, and for babies) 01/01/1988 31/12/2500 -61169300 01/01/1988 31/12/1995 LIBEN Gloves, mittens and mitts, of synthetic fibres, knitted or crocheted (excl. impregnated, coated or covered with plastics or rubber, and for babies) 01/01/1988 31/12/1995 -61169300 01/01/1996 31/12/2500 LIBEN Gloves, mittens and mitts, of synthetic fibres, knitted or crocheted (excl. impregnated, coated or covered with plastics or rubber, and for babies) 01/01/1996 31/12/2500 -611699 01/01/1988 31/12/2500 LIBEN Gloves, mittens and mitts, of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, impregnated, coated or covered with plastics or rubber, and for babies) 01/01/1988 31/12/2500 -61169900 01/01/1988 31/12/1995 LIBEN Gloves, mittens and mitts, of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, impregnated, coated or covered with plastics or rubber, and for babies) 01/01/1988 31/12/1995 -61169900 01/01/1996 31/12/2500 LIBEN Gloves, mittens and mitts, of textile materials, knitted or crocheted (excl. of wool, fine animal hair, cotton or synthetic fibres, impregnated, coated or covered with plastics or rubber, and for babies) 01/01/1996 31/12/2500 -6117 01/01/1988 31/12/2500 LIBEN Made-up clothing accessories, knitted or crocheted; knitted or crocheted parts of garments or of clothing accessories, n.e.s. 01/01/1988 31/12/2500 -611710 01/01/1988 31/12/2500 LIBEN Shawls, scarves, mufflers, mantillas, veils and the like, knitted or crocheted 01/01/1988 31/12/2500 -61171000 01/01/1988 31/12/2500 LIBEN Shawls, scarves, mufflers, mantillas, veils and the like, knitted or crocheted 01/01/1988 31/12/2500 -611720 01/01/1988 31/12/2006 LIBEN Ties, bow ties and cravats, knitted or crocheted 01/01/1988 31/12/2006 -61172000 01/01/1988 31/12/2006 LIBEN Ties, bow ties and cravats, knitted or crocheted 01/01/1988 31/12/2006 -611780 01/01/1988 31/12/2500 LIBEN Ties, bow ties, cravats and other made-up clothing accessories, knitted or crocheted, n.e.s. (excl. shawls, scarves, mufflers, mantillas, veils and the like) 01/01/1988 31/12/2500 -61178010 01/01/1988 31/12/2500 LIBEN Made-up clothing accessories, knitted or crocheted, elasticated or rubberised, n.e.s. 01/01/1988 31/12/2500 -61178080 01/01/2007 31/12/2500 LIBEN Ties, bow ties, cravats and other made-up clothing accessories, knitted or crocheted, n.e.s. (excl. elasticated or rubberised, shawls, scarves, mufflers, mantillas, veils and the like) 01/01/2007 31/12/2500 -61178090 01/01/1988 31/12/2006 LIBEN Made-up clothing accessories, knitted or crocheted, n.e.s. (excl. elasticated or rubberised, shawls, scarves, mufflers, mantillas, veils and the like, ties, bow ties and cravats) 01/01/1988 31/12/2006 -611790 01/01/1988 31/12/2500 LIBEN Parts of garments or clothing accessories, knitted or crocheted, n.e.s. 01/01/1988 31/12/2500 -61179000 01/01/1988 31/12/2500 LIBEN Parts of garments or clothing accessories, knitted or crocheted, n.e.s. 01/01/1988 31/12/2500 -61CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 61 01/01/2002 31/12/2500 -61CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 61 01/01/2002 31/12/2500 -61CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 61 01/01/2002 31/12/2500 -61MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -61MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -61MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -61PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 61 carried by post 01/01/1988 31/12/2500 -61PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 61 carried by post 01/01/1988 31/12/2500 -61PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 61 carried by post 01/01/1988 31/12/2500 -61SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 61 01/01/1988 31/12/2500 -61SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 61 and SITC section 0 01/01/1997 31/12/2001 -61SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 61 and SITC group 000 01/01/1997 31/12/2001 -61SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 61 and SITC section 8 01/01/1997 31/12/2500 -61SSS843 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 61 and SITC group 843 01/01/1997 31/12/2500 -61SSS844 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 61 and SITC group 844 01/01/1997 31/12/2500 -61SSS845 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 61 and SITC group 845 01/01/1997 31/12/2500 -61SSS846 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 61 and SITC group 846 01/01/1997 31/12/2500 -61SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 61 and SITC section 9 01/01/1988 31/12/1996 -61SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 61 and SITC section 9 01/01/1997 31/12/2500 -61SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 61 and SITC group 999 01/01/1988 31/12/1996 -61SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 61 and SITC group 999 01/01/1997 31/12/2500 -62 01/01/1988 31/12/2500 LIBEN ARTICLES OF APPAREL AND CLOTHING ACCESSORIES, NOT KNITTED OR CROCHETED 01/01/1988 31/12/2500 -6201 01/01/1988 31/12/2500 LIBEN Men's or boys' overcoats, car coats, capes, cloaks, anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles (excl. knitted or crocheted, suits, ensembles, jackets, blazers and trousers) 01/01/1988 31/12/2500 -620111 01/01/1988 31/12/2500 LIBEN Men's or boys' overcoats, raincoats, car coats, capes, cloaks and similar articles, of wool or fine animal hair (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62011100 01/01/1988 31/12/2500 LIBEN Men's or boys' overcoats, raincoats, car coats, capes, cloaks and similar articles, of wool or fine animal hair (excl. knitted or crocheted) 01/01/1988 31/12/2500 -620112 01/01/1988 31/12/2500 LIBEN Men's or boys' overcoats, raincoats, car coats, capes, cloaks and similar articles, of cotton (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62011210 01/01/1988 31/12/2500 LIBEN Men's or boys' overcoats, raincoats, car coats, capes, cloaks and similar articles, of cotton, of a weight per garment of <= 1 kg (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62011290 01/01/1988 31/12/2500 LIBEN Men's or boys' overcoats, raincoats, car coats, capes, cloaks and similar articles, of cotton, of a weight per garment of > 1 kg (excl. knitted or crocheted) 01/01/1988 31/12/2500 -620113 01/01/1988 31/12/2500 LIBEN Men's or boys' overcoats, raincoats, car coats, capes, cloaks and similar articles, of man-made fibres (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62011310 01/01/1988 31/12/2500 LIBEN Men's or boys' overcoats, raincoats, car coats, capes, cloaks and similar articles, of man-made fibres, of a weight per garment of <= 1 kg (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62011390 01/01/1988 31/12/2500 LIBEN Men's or boys' overcoats, raincoats, car coats, capes, cloaks and similar articles, of man-made fibres, of a weight per garment of > 1 kg (excl. knitted or crocheted) 01/01/1988 31/12/2500 -620119 01/01/1988 31/12/2500 LIBEN Men's or boys' overcoats, raincoats, car coats, capes, cloaks and similar articles, of textile materials (excl. of wool or fine animal hair, cotton or man-made fibres, knitted or crocheted) 01/01/1988 31/12/2500 -62011900 01/01/1988 31/12/2500 LIBEN Men's or boys' overcoats, raincoats, car coats, capes, cloaks and similar articles, of textile materials (excl. of wool or fine animal hair, cotton or man-made fibres, knitted or crocheted) 01/01/1988 31/12/2500 -620191 01/01/1988 31/12/2500 LIBEN Men's or boys' anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles, of wool or fine animal hair (excl. knitted or crocheted, suits, ensembles, jackets, blazers and trousers) 01/01/1988 31/12/2500 -62019100 01/01/1988 31/12/2500 LIBEN Men's or boys' anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles, of wool or fine animal hair (excl. knitted or crocheted, suits, ensembles, jackets, blazers and trousers) 01/01/1988 31/12/2500 -620192 01/01/1988 31/12/2500 LIBEN Men's or boys' anoraks, windcheaters, wind jackets and similar articles, of cotton (not knitted or crocheted and excl. suits, ensembles, jackets, blazers, trousers and tops of ski suits) 01/01/1988 31/12/2500 -62019200 01/01/1988 31/12/1991 LIBEN Men's or boys' anoraks, incl. ski-jackets, wind-cheaters, wind-jackets and similar articles, of cotton (excl. knitted or crocheted, suits, ensembles, jackets, blazers and trousers) 01/01/1988 31/12/1991 -62019200 01/01/1992 31/12/2500 LIBEN Men's or boys' anoraks, windcheaters, wind jackets and similar articles, of cotton (not knitted or crocheted and excl. suits, ensembles, jackets, blazers, trousers and tops of ski suits) 01/01/1992 31/12/2500 -620193 01/01/1988 31/12/2500 LIBEN Men's or boys' anoraks, windcheaters, wind jackets and similar articles, of man-made fibres (not knitted or crocheted and excl. suits, ensembles, jackets, blazers, trousers and tops of ski suits) 01/01/1988 31/12/2500 -62019300 01/01/1988 31/12/1991 LIBEN Men's or boys' anoraks, incl. ski-jackets, wind-cheaters, wind-jackets and similar articles, of man-made fibres (excl. knitted or crocheted, suits, ensembles, jackets, blazers and trousers) 01/01/1988 31/12/1991 -62019300 01/01/1992 31/12/2500 LIBEN Men's or boys' anoraks, windcheaters, wind jackets and similar articles, of man-made fibres (not knitted or crocheted and excl. suits, ensembles, jackets, blazers, trousers and tops of ski suits) 01/01/1992 31/12/2500 -620199 01/01/1988 31/12/2500 LIBEN Men's or boys' anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles of textile materials (excl. of wool, fine animal hair, cotton or man-made fibres, knitted or crocheted, suits, ensembles, jackets, blazers and trousers) 01/01/1988 31/12/2500 -62019900 01/01/1988 31/12/2500 LIBEN Men's or boys' anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles of textile materials (excl. of wool, fine animal hair, cotton or man-made fibres, knitted or crocheted, suits, ensembles, jackets, blazers and trousers) 01/01/1988 31/12/2500 -6202 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, car coats, capes, cloaks, anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles (excl. knitted or crocheted, suits, ensembles, jackets, blazers and trousers) 01/01/1988 31/12/2500 -620211 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, raincoats, car coats, capes, cloaks and similar articles, of wool or fine animal hair (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62021100 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, raincoats, car coats, capes, cloaks and similar articles, of wool or fine animal hair (excl. knitted or crocheted) 01/01/1988 31/12/2500 -620212 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, raincoats, car coats, capes, cloaks and similar articles, of cotton (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62021210 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, raincoats, car coats, capes, cloaks and similar articles, of cotton, of a weight per garment of <= 1 kg (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62021290 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, raincoats, car coats, capes, cloaks and similar articles, of cotton, of a weight per garment of > 1 kg (excl. knitted or crocheted) 01/01/1988 31/12/2500 -620213 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, raincoats, car coats, capes, cloaks and similar articles, of man-made fibres (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62021310 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, raincoats, car coats, capes, cloaks and similar articles, of man-made fibres, of a weight per garment of <= 1 kg (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62021390 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, raincoats, car coats, capes, cloaks and similar articles, of man-made fibres, of a weight per garment of > 1 kg (excl. knitted or crocheted) 01/01/1988 31/12/2500 -620219 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, raincoats, car coats, capes, cloaks and similar articles, of textile materials (excl. of wool or fine animal hair, cotton or man-made fibres, knitted or crocheted) 01/01/1988 31/12/2500 -62021900 01/01/1988 31/12/2500 LIBEN Women's or girls' overcoats, raincoats, car coats, capes, cloaks and similar articles, of textile materials (excl. of wool or fine animal hair, cotton or man-made fibres, knitted or crocheted) 01/01/1988 31/12/2500 -620291 01/01/1988 31/12/2500 LIBEN Women's or girls' anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles, of wool or fine animal hair (excl. knitted or crocheted, suits, ensembles, jackets, blazers and trousers) 01/01/1988 31/12/2500 -62029100 01/01/1988 31/12/2500 LIBEN Women's or girls' anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles, of wool or fine animal hair (excl. knitted or crocheted, suits, ensembles, jackets, blazers and trousers) 01/01/1988 31/12/2500 -620292 01/01/1988 31/12/2500 LIBEN Women's or girls' anoraks, windcheaters, wind jackets and similar articles, of cotton (not knitted or crocheted and excl. suits, ensembles, jackets, blazers, trousers and tops of ski suits) 01/01/1988 31/12/2500 -62029200 01/01/1988 31/12/1991 LIBEN Women's or girls' anoraks, incl. ski-jackets, wind-cheaters, wind-jackets and similar articles, of cotton (excl. knitted or crocheted, suits, ensembles, jackets, blazers and trousers) 01/01/1988 31/12/1991 -62029200 01/01/1992 31/12/2500 LIBEN Women's or girls' anoraks, windcheaters, wind jackets and similar articles, of cotton (not knitted or crocheted and excl. suits, ensembles, jackets, blazers, trousers and tops of ski suits) 01/01/1992 31/12/2500 -620293 01/01/1988 31/12/2500 LIBEN Women's or girls' anoraks, windcheaters, wind jackets and similar articles, of man-made fibres (not knitted or crocheted and excl. suits, ensembles, jackets, blazers, trousers and tops of ski suits) 01/01/1988 31/12/2500 -62029300 01/01/1988 31/12/1991 LIBEN Women's or girls' anoraks, incl. ski-jackets, wind-cheaters, wind-jackets and similar articles, of man-made fibres (excl. knitted or crocheted, suits, ensembles, jackets, blazers and trousers) 01/01/1988 31/12/1991 -62029300 01/01/1992 31/12/2500 LIBEN Women's or girls' anoraks, windcheaters, wind jackets and similar articles, of man-made fibres (not knitted or crocheted and excl. suits, ensembles, jackets, blazers, trousers and tops of ski suits) 01/01/1992 31/12/2500 -620299 01/01/1988 31/12/2500 LIBEN Women's or girls' anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles, of textile materials (excl. of wool, fine animal hair, cotton or man-made fibres, knitted or crocheted, suits, ensembles, jackets, blazers and trousers) 01/01/1988 31/12/2500 -62029900 01/01/1988 31/12/2500 LIBEN Women's or girls' anoraks, incl. ski jackets, windcheaters, wind-jackets and similar articles, of textile materials (excl. of wool, fine animal hair, cotton or man-made fibres, knitted or crocheted, suits, ensembles, jackets, blazers and trousers) 01/01/1988 31/12/2500 -6203 01/01/1988 31/12/2500 LIBEN Men's or boys' suits, ensembles, jackets, blazers, trousers, bib and brace overalls, breeches and shorts (excl. knitted or crocheted, wind-jackets and similar articles, separate waistcoats, tracksuits, ski suits and swimwear) 01/01/1988 31/12/2500 -620311 01/01/1988 31/12/2500 LIBEN Men's or boys' suits of wool or fine animal hair (excl. knitted or crocheted, tracksuits, ski suits and swimwear) 01/01/1988 31/12/2500 -62031100 01/01/1988 31/12/2500 LIBEN Men's or boys' suits of wool or fine animal hair (excl. knitted or crocheted, tracksuits, ski suits and swimwear) 01/01/1988 31/12/2500 -620312 01/01/1988 31/12/2500 LIBEN Men's or boys' suits of synthetic fibres (excl. knitted or crocheted, tracksuits, ski suits and swimwear) 01/01/1988 31/12/2500 -62031200 01/01/1988 31/12/2500 LIBEN Men's or boys' suits of synthetic fibres (excl. knitted or crocheted, tracksuits, ski suits and swimwear) 01/01/1988 31/12/2500 -620319 01/01/1988 31/12/2500 LIBEN Men's or boys' suits of textile materials (excl. of wool, fine animal hair or synthetic fibres, knitted or crocheted, tracksuits, ski suits and swimwear) 01/01/1988 31/12/2500 -62031910 01/01/1988 31/12/2500 LIBEN Men's or boys' suits of cotton (excl. knitted or crocheted, tracksuits, ski suits and swimwear) 01/01/1988 31/12/2500 -62031930 01/01/1988 31/12/2500 LIBEN Men's or boys' suits of artificial fibres (excl. knitted or crocheted, tracksuits, ski suits and swimwear) 01/01/1988 31/12/2500 -62031990 01/01/1988 31/12/2500 LIBEN Men's or boys' suits of textile materials (excl. of wool or fine animal hair, cotton or synthetic fibres, knitted or crocheted, tracksuits, ski suits and swimwear) 01/01/1988 31/12/2500 -620321 01/01/1988 31/12/2006 LIBEN Men's or boys' ensembles of wool or fine animal hair (excl. knitted or crocheted, ski ensembles and swimwear) 01/01/1988 31/12/2006 -62032100 01/01/1988 31/12/2006 LIBEN Men's or boys' ensembles of wool or fine animal hair (excl. knitted or crocheted, ski ensembles and swimwear) 01/01/1988 31/12/2006 -620322 01/01/1988 31/12/2500 LIBEN Men's or boys' ensembles of cotton (excl. knitted or crocheted, ski ensembles and swimwear) 01/01/1988 31/12/2500 -62032210 01/01/1988 31/12/2500 LIBEN Men's or boys' industrial and occupational ensembles of cotton (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62032280 01/01/1992 31/12/2500 LIBEN Men's or boys' ensembles, of cotton (not knitted or crocheted and excl. industrial and occupational clothing, tracksuits, ski ensembles and swimwear) 01/01/1992 31/12/2500 -62032290 01/01/1988 31/12/1991 LIBEN Men's or boys' ensembles of cotton (excl. knitted or crocheted, industrial and occupational, ski ensembles and swimwear) 01/01/1988 31/12/1991 -620323 01/01/1988 31/12/2500 LIBEN Men's or boys' ensembles of synthetic fibres (excl. knitted or crocheted, ski ensembles and swimwear) 01/01/1988 31/12/2500 -62032310 01/01/1988 31/12/2500 LIBEN Men's or boys' industrial and occupational ensembles of synthetic fibres (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62032380 01/01/1992 31/12/2500 LIBEN Men's or boys' ensembles, of synthetic fibres (not knitted or crocheted and excl. industrial and occupational clothing, tracksuits, ski ensembles and swimwear) 01/01/1992 31/12/2500 -62032390 01/01/1988 31/12/1991 LIBEN Men's or boys' ensembles of synthetic fibres (excl. knitted or crocheted, industrial and occupational, ski ensembles and swimwear) 01/01/1988 31/12/1991 -620329 01/01/1988 31/12/2500 LIBEN Men's or boys' ensembles of textile materials (excl. of cotton or synthetic fibres, knitted or crocheted, ski ensembles and swimwear) 01/01/1988 31/12/2500 -62032911 01/01/1988 31/12/2500 LIBEN Men's or boys' industrial and occupational ensembles of artificial fibres (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62032918 01/01/1992 31/12/2500 LIBEN Men's or boys' ensembles, of artificial fibres (not knitted or crocheted and excl. industrial and occupational clothing, tracksuits, ski ensembles and swimwear) 01/01/1992 31/12/2500 -62032919 01/01/1988 31/12/1991 LIBEN Men's or boys' ensembles of artificial fibres (excl. knitted or crocheted, industrial and occupational, ski ensembles and swimwear) 01/01/1988 31/12/1991 -62032930 01/01/2007 31/12/2500 LIBEN Men's or boys' ensembles of wool or fine animal hair (excl. knitted or crocheted, ski ensembles and swimwear) 01/01/2007 31/12/2500 -62032990 01/01/1988 31/12/2500 LIBEN Men's or boys' ensembles of textile materials (excl. of wool, fine animal hair, cotton, man-made fibres, knitted or crocheted, ski ensembles and swimwear) 01/01/1988 31/12/2500 -620331 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of wool or fine animal hair (excl. knitted or crocheted, and wind-jackets and similar articles) 01/01/1988 31/12/2500 -62033100 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of wool or fine animal hair (excl. knitted or crocheted, and wind-jackets and similar articles) 01/01/1988 31/12/2500 -620332 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of cotton (excl. knitted or crocheted, and wind-jackets and similar articles) 01/01/1988 31/12/2500 -62033210 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of cotton, industrial and occupational (excl. knitted or crocheted, and wind-jackets and similar articles) 01/01/1988 31/12/2500 -62033290 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of cotton (excl. knitted or crocheted, industrial and occupational, and wind-jackets and similar articles) 01/01/1988 31/12/2500 -620333 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of synthetic fibres (excl. knitted or crocheted, and wind-jackets and similar articles) 01/01/1988 31/12/2500 -62033310 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of synthetic fibres, industrial and occupational (excl. knitted or crocheted, and wind-jackets and similar articles) 01/01/1988 31/12/2500 -62033390 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of synthetic fibres (excl. knitted or crocheted, industrial and occupational, and wind-jackets and similar articles) 01/01/1988 31/12/2500 -620339 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of textile materials (excl. of wool, fine animal hair, cotton or synthetic fibres, knitted or crocheted, and wind-jackets and similar articles) 01/01/1988 31/12/2500 -62033911 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of artificial fibres, industrial and occupational (excl. knitted or crocheted, and wind-jackets and similar articles) 01/01/1988 31/12/2500 -62033919 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of artificial fibres (excl. knitted or crocheted, industrial and occupational, and wind-jackets and similar articles) 01/01/1988 31/12/2500 -62033990 01/01/1988 31/12/2500 LIBEN Men's or boys' jackets and blazers of textile materials (excl. of wool, fine animal hair, cotton or man-made fibres, knitted or crocheted, and wind-jackets and similar articles) 01/01/1988 31/12/2500 -620341 01/01/1988 31/12/2500 LIBEN Men's or boys' trousers, bib and brace overalls, breeches and shorts, of wool or fine animal hair (excl. knitted or crocheted, underpants and swimwear) 01/01/1988 31/12/2500 -62034110 01/01/1988 31/12/2500 LIBEN Men's or boys' trousers and breeches of wool or fine animal hair (excl. knitted or crocheted, bib and brace overalls and underpants) 01/01/1988 31/12/2500 -62034130 01/01/1988 31/12/2500 LIBEN Men's or boys' bib and brace overalls of wool or fine animal hair (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62034190 01/01/1988 31/12/2500 LIBEN Men's or boys' shorts of wool or fine animal hair (excl. knitted or crocheted, underpants and swimwear) 01/01/1988 31/12/2500 -620342 01/01/1988 31/12/2500 LIBEN Men's or boys' trousers, bib and brace overalls, breeches and shorts, of cotton (excl. knitted or crocheted, underpants and swimwear) 01/01/1988 31/12/2500 -62034211 01/01/1988 31/12/2500 LIBEN Men's or boys' industrial and occupational trousers and breeches of cotton (excl. knitted or crocheted and bib and brace overalls) 01/01/1988 31/12/2500 -62034231 01/01/1988 31/12/2500 LIBEN Men's or boys' trousers and breeches of cotton denim (excl. knitted or crocheted, industrial and occupational, bib and brace overalls and underpants) 01/01/1988 31/12/2500 -62034233 01/01/1988 31/12/2500 LIBEN Men's or boys' trousers and breeches of cotton cut corduroy (excl. knitted or crocheted, industrial and occupational, bib and brace overalls and underpants) 01/01/1988 31/12/2500 -62034235 01/01/1988 31/12/2500 LIBEN Men's or boys' trousers and breeches of cotton (excl. denim, cut corduroy, knitted or crocheted, industrial and occupational, bib and brace overalls and underpants) 01/01/1988 31/12/2500 -62034251 01/01/1988 31/12/2500 LIBEN Men's or boys' bib and brace overalls, of cotton, industrial and occupational (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62034259 01/01/1988 31/12/2500 LIBEN Men's or boys' bib and brace overalls, of cotton (excl. knitted or crocheted, industrial and occupational) 01/01/1988 31/12/2500 -62034290 01/01/1988 31/12/2500 LIBEN Men's or boys' shorts of cotton (excl. knitted or crocheted, swimwear and underpants) 01/01/1988 31/12/2500 -620343 01/01/1988 31/12/2500 LIBEN Men's or boys' trousers, bib and brace overalls, breeches and shorts of synthetic fibres (excl. knitted or crocheted, underpants and swimwear) 01/01/1988 31/12/2500 -62034311 01/01/1988 31/12/2500 LIBEN Men's or boys' trousers and breeches of synthetic fibres, industrial and occupational (excl. knitted or crocheted and bib and brace overalls) 01/01/1988 31/12/2500 -62034319 01/01/1988 31/12/2500 LIBEN Men's or boys' trousers and breeches of synthetic fibres (excl. knitted or crocheted, industrial and occupational, bib and brace overalls and underpants) 01/01/1988 31/12/2500 -62034331 01/01/1988 31/12/2500 LIBEN Men's or boys' bib and brace overalls of synthetic fibres, industrial and occupational (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62034339 01/01/1988 31/12/2500 LIBEN Men's or boys' bib and brace overalls of synthetic fibres (excl. knitted or crocheted, and industrial and occupational) 01/01/1988 31/12/2500 -62034390 01/01/1988 31/12/2500 LIBEN Men's or boys' shorts of synthetic fibres (excl. knitted or crocheted, underpants and swimwear) 01/01/1988 31/12/2500 -620349 01/01/1988 31/12/2500 LIBEN Men's or boys' trousers, bib and brace overalls, breeches and shorts of textile materials (excl. of wool, fine animal hair, cotton or synthetic fibres, knitted or crocheted, underpants and swimwear) 01/01/1988 31/12/2500 -62034911 01/01/1988 31/12/2500 LIBEN Men's or boys' trousers and breeches of artificial fibres, industrial and occupational (excl. knitted or crocheted and bib and brace overalls) 01/01/1988 31/12/2500 -62034919 01/01/1988 31/12/2500 LIBEN Men's or boys' trousers and breeches of artificial fibres (excl. knitted or crocheted, industrial and occupational, bib and brace overalls and underpants) 01/01/1988 31/12/2500 -62034931 01/01/1988 31/12/2500 LIBEN Men's or boys' bib and brace overalls of artificial fibres, industrial and occupational (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62034939 01/01/1988 31/12/2500 LIBEN Men's or boys' bib and brace overalls of artificial fibres (excl. knitted or crocheted, industrial and occupational) 01/01/1988 31/12/2500 -62034950 01/01/1988 31/12/2500 LIBEN Men's or boys' shorts of artificial fibres (excl. knitted or crocheted, underpants and swimwear) 01/01/1988 31/12/2500 -62034990 01/01/1988 31/12/2500 LIBEN Men's or boys' trousers, bib and brace overalls, breeches and shorts of textile materials (excl. of wool, fine animal hair, cotton or man-made fibres, knitted or crocheted, underpants and swimwear) 01/01/1988 31/12/2500 -6204 01/01/1988 31/12/2500 LIBEN Women's or girls' suits, ensembles, jackets, blazers, dresses, skirts, divided skirts, trousers, bib and brace overalls, breeches and shorts (excl. knitted or crocheted, wind-jackets and similar articles, slips, petticoats and panties, tracksuits, ski suits and swimwear) 01/01/1988 31/12/2500 -620411 01/01/1988 31/12/2500 LIBEN Women's or girls' suits of wool or fine animal hair (excl. knitted or crocheted, ski overalls and swimwear) 01/01/1988 31/12/2500 -62041100 01/01/1988 31/12/2500 LIBEN Women's or girls' suits of wool or fine animal hair (excl. knitted or crocheted, ski overalls and swimwear) 01/01/1988 31/12/2500 -620412 01/01/1988 31/12/2500 LIBEN Women's or girls' suits of cotton (excl. knitted or crocheted, ski overalls and swimwear) 01/01/1988 31/12/2500 -62041200 01/01/1988 31/12/2500 LIBEN Women's or girls' suits of cotton (excl. knitted or crocheted, ski overalls and swimwear) 01/01/1988 31/12/2500 -620413 01/01/1988 31/12/2500 LIBEN Women's or girls' suits of synthetic fibres (excl. knitted or crocheted, ski overalls and swimwear) 01/01/1988 31/12/2500 -62041300 01/01/1988 31/12/2500 LIBEN Women's or girls' suits of synthetic fibres (excl. knitted or crocheted, ski overalls and swimwear) 01/01/1988 31/12/2500 -620419 01/01/1988 31/12/2500 LIBEN Women's or girls' suits of textile materials (excl. of wool, fine animal hair, cotton or synthetic fibres, knitted or crocheted, ski overalls and swimwear) 01/01/1988 31/12/2500 -62041910 01/01/1988 31/12/2500 LIBEN Women's or girls' suits of artificial fibres (excl. knitted or crocheted, ski overalls and swimwear) 01/01/1988 31/12/2500 -62041990 01/01/1988 31/12/2500 LIBEN Women's or girls' suits of textile materials (excl. of wool, fine animal hair, cotton or man-made fibres, knitted or crocheted, ski overalls and swimwear) 01/01/1988 31/12/2500 -620421 01/01/1988 31/12/2500 LIBEN Women's or girls' ensembles of wool or fine animal hair (excl. knitted or crocheted, ski overalls and swimwear) 01/01/1988 31/12/2500 -62042100 01/01/1988 31/12/2500 LIBEN Women's or girls' ensembles of wool or fine animal hair (excl. knitted or crocheted, ski overalls and swimwear) 01/01/1988 31/12/2500 -620422 01/01/1988 31/12/2500 LIBEN Women's or girls' ensembles of cotton (excl. knitted or crocheted, ski overalls and swimwear) 01/01/1988 31/12/2500 -62042210 01/01/1988 31/12/2500 LIBEN Women's or girls' ensembles of cotton, industrial and occupational (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62042280 01/01/1992 31/12/2500 LIBEN Women's or girls' ensembles, of cotton (not knitted or crocheted and excl. industrial and occupational clothing, tracksuits, ski ensembles and swimwear) 01/01/1992 31/12/2500 -62042290 01/01/1988 31/12/1991 LIBEN Women's or girls' ensembles of cotton (excl. industrial and occupational, knitted or crocheted, ski overalls and swimwear) 01/01/1988 31/12/1991 -620423 01/01/1988 31/12/2500 LIBEN Women's or girls' ensembles of synthetic fibres (excl. knitted or crocheted, ski overalls and swimwear) 01/01/1988 31/12/2500 -62042310 01/01/1988 31/12/2500 LIBEN Women's or girls' ensembles of synthetic fibres, industrial and occupational (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62042380 01/01/1992 31/12/2500 LIBEN Women's or girls' ensembles, of synthetic fibres (not knitted or crocheted and excl. industrial and occupational clothing, tracksuits, ski ensembles and swimwear) 01/01/1992 31/12/2500 -62042390 01/01/1988 31/12/1991 LIBEN Women's or girls' ensembles of synthetic fibres (excl. industrial and occupational, knitted or crocheted, ski overalls and swimwear) 01/01/1988 31/12/1991 -620429 01/01/1988 31/12/2500 LIBEN Women's or girls' ensembles of textile materials (excl. of wool, fine animal hair, cotton or synthetic fibres, knitted or crocheted, ski overalls and swimwear) 01/01/1988 31/12/2500 -62042911 01/01/1988 31/12/2500 LIBEN Women's or girls' ensembles, of artificial fibres, industrial and occupational (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62042918 01/01/1992 31/12/2500 LIBEN Women's or girls' ensembles, of artificial fibres (not knitted or crocheted and excl. industrial and occupational clothing, tracksuits, ski ensembles and swimwear) 01/01/1992 31/12/2500 -62042919 01/01/1988 31/12/1991 LIBEN Women's or girls' ensembles of artificial fibres (excl. knitted or crocheted, industrial and occupational, ski overalls and swimwear) 01/01/1988 31/12/1991 -62042990 01/01/1988 31/12/2500 LIBEN Women's or girls' ensembles of textile materials (excl. of wool, fine animal hair, cotton or man-made fibres, knitted or crocheted, ski overalls and swimwear) 01/01/1988 31/12/2500 -620431 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of wool or fine animal hair (excl. knitted or crocheted, wind-jackets and similar articles) 01/01/1988 31/12/2500 -62043100 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of wool or fine animal hair (excl. knitted or crocheted, wind-jackets and similar articles) 01/01/1988 31/12/2500 -620432 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of cotton (excl. knitted or crocheted, wind-jackets and similar articles) 01/01/1988 31/12/2500 -62043210 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of cotton, industrial and occupational (excl. knitted or crocheted, wind-jackets and similar articles) 01/01/1988 31/12/2500 -62043290 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of cotton (excl. knitted or crocheted, industrial and occupational, wind-jackets and similar articles) 01/01/1988 31/12/2500 -620433 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of synthetic fibres (excl. knitted or crocheted, wind-jackets and similar articles) 01/01/1988 31/12/2500 -62043310 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of synthetic fibres, industrial and occupational (excl. knitted or crocheted, wind-jackets and similar articles) 01/01/1988 31/12/2500 -62043390 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of synthetic fibres (excl. knitted or crocheted, industrial and occupational, wind-jackets and similar articles) 01/01/1988 31/12/2500 -620439 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of textile materials (excl. of wool, fine animal hair, cotton or synthetic fibres, knitted or crocheted, wind-jackets and similar articles) 01/01/1988 31/12/2500 -62043911 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of artificial fibres, industrial and occupational (excl. knitted or crocheted, wind-jackets and similar articles) 01/01/1988 31/12/2500 -62043919 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of artificial fibres (excl. knitted or crocheted, industrial and occupational, wind-jackets and similar articles) 01/01/1988 31/12/2500 -62043990 01/01/1988 31/12/2500 LIBEN Women's or girls' jackets and blazers of textile materials (excl. of wool, fine animal hair, cotton or man-made fibres, knitted or crocheted, wind-jackets and similar articles) 01/01/1988 31/12/2500 -620441 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of wool or fine animal hair (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -62044100 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of wool or fine animal hair (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -620442 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of cotton (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -62044200 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of cotton (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -620443 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of synthetic fibres (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -62044300 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of synthetic fibres (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -620444 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of artificial fibres (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -62044400 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of artificial fibres (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -620449 01/01/1988 31/12/2500 LIBEN Women's or girls' dresses of textile materials (excl. of wool, fine animal hair, cotton or man-made fibres, knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -62044900 01/01/2006 31/12/2007 LIBEN Women's or girls' dresses of textile materials (excl. of wool, fine animal hair, cotton or man-made fibres, knitted or crocheted and petticoats) 01/01/2006 31/12/2007 -62044910 01/01/1988 31/12/2005 LIBEN Women's or girls' dresses of silk or waste silk (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/2005 -62044910 01/01/2008 31/12/2500 LIBEN Women's or girls' dresses of textile materials, of silk or silk waste (excl. knitted or crocheted and petticoats) 01/01/2008 31/12/2500 -62044990 01/01/1988 31/12/2005 LIBEN Women's or girls' dresses of textile materials (excl. of wool, fine animal hair, cotton or man-made fibres, silk or waste silk, knitted or crocheted and petticoats) 01/01/1988 31/12/2005 -62044990 01/01/2008 31/12/2500 LIBEN Women's or girls' dresses of textile materials (excl. of silk or silk waste, wool, fine animal hair, cotton or man-made fibres, knitted or crocheted and petticoats) 01/01/2008 31/12/2500 -620451 01/01/1988 31/12/2500 LIBEN Women's or girls' skirts and divided skirts of wool or fine animal hair (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -62045100 01/01/1988 31/12/2500 LIBEN Women's or girls' skirts and divided skirts of wool or fine animal hair (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -620452 01/01/1988 31/12/2500 LIBEN Women's or girls' skirts and divided skirts of cotton (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -62045200 01/01/1988 31/12/2500 LIBEN Women's or girls' skirts and divided skirts of cotton (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -620453 01/01/1988 31/12/2500 LIBEN Women's or girls' skirts and divided skirts of synthetic fibres (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -62045300 01/01/1988 31/12/2500 LIBEN Women's or girls' skirts and divided skirts of synthetic fibres (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -620459 01/01/1988 31/12/2500 LIBEN Women's or girls' skirts and divided skirts of textile materials (excl. of wool, fine animal hair, cotton or synthetic fibres, knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -62045910 01/01/1988 31/12/2500 LIBEN Women's or girls' skirts and divided skirts of artificial fibres (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -62045990 01/01/1988 31/12/2500 LIBEN Women's or girls' skirts and divided skirts of textile materials (excl. of wool, fine animal hair, cotton or man-made fibres, knitted or crocheted and petticoats) 01/01/1988 31/12/2500 -620461 01/01/1988 31/12/2500 LIBEN Women's or girls' trousers, bib and brace overalls, breeches and shorts of wool or fine animal hair (excl. knitted or crocheted, panties and swimwear) 01/01/1988 31/12/2500 -62046110 01/01/1988 31/12/2500 LIBEN Women's or girls' trousers and breeches of wool or fine animal hair (excl. knitted or crocheted, panties and swimwear) 01/01/1988 31/12/2500 -62046180 01/01/1988 31/12/2004 LIBEN Women's or girls' bib and brace overalls of wool or fine animal hair (excl. knitted or crocheted) 01/01/1988 31/12/2004 -62046185 01/01/2005 31/12/2500 LIBEN Women's or girls' bib and brace overalls and shorts, of wool or fine animal hair (excl. knitted or crocheted, panties and swimwear) 01/01/2005 31/12/2500 -62046190 01/01/1988 31/12/2004 LIBEN Women's or girls' shorts of wool or fine animal hair (excl. knitted or crocheted, panties and swimwear) 01/01/1988 31/12/2004 -620462 01/01/1988 31/12/2500 LIBEN Women's or girls' trousers, bib and brace overalls, breeches and shorts of cotton (excl. knitted or crocheted, panties and swimwear) 01/01/1988 31/12/2500 -62046211 01/01/1988 31/12/2500 LIBEN Women's or girls' trousers and breeches of cotton, industrial and occupational (excl. knitted or crocheted and bib and brace overalls) 01/01/1988 31/12/2500 -62046231 01/01/1988 31/12/2500 LIBEN Women's or girls' cotton denim trousers and breeches (excl. industrial and occupational, bib and brace overalls and panties) 01/01/1988 31/12/2500 -62046233 01/01/1988 31/12/2500 LIBEN Women's or girls' trousers and breeches of cotton cut corduroy (excl. industrial and occupational, bib and brace overalls and panties) 01/01/1988 31/12/2500 -62046235 01/01/1988 31/12/1991 LIBEN Women's or girls' cotton trousers and breeches (excl. of cotton cut corduroy, denim, industrial and occupational, bib and brace overalls and panties) 01/01/1988 31/12/1991 -62046239 01/01/1992 31/12/2500 LIBEN Women's or girls' trousers and breeches, of cotton (not of cut corduroy, of denim or knitted or crocheted and excl. industrial and occupational clothing, bib and brace overalls, briefs and tracksuit bottoms) 01/01/1992 31/12/2500 -62046251 01/01/1988 31/12/2500 LIBEN Women's or girls' bib and brace overalls, of cotton, industrial and occupational (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62046259 01/01/1988 31/12/2500 LIBEN Women's or girls' cotton bib and brace overalls (excl. knitted or crocheted, industrial and occupational) 01/01/1988 31/12/2500 -62046290 01/01/1988 31/12/2500 LIBEN Women's or girls' cotton shorts (excl. knitted or crocheted, panties and swimwear) 01/01/1988 31/12/2500 -620463 01/01/1988 31/12/2500 LIBEN Women's or girls' trousers, bib and brace overalls, breeches and shorts of synthetic fibres (excl. knitted or crocheted, panties and swimwear) 01/01/1988 31/12/2500 -62046311 01/01/1988 31/12/2500 LIBEN Women's or girls' trousers and breeches, of synthetic fibres, industrial and occupational (excl. knitted or crocheted and bib and brace overalls) 01/01/1988 31/12/2500 -62046318 01/01/1992 31/12/2500 LIBEN Women's or girls' trousers and breeches, of synthetic fibres (not of cut corduroy, of denim or knitted or crocheted and excl. industrial and occupational clothing, bib and brace overalls, briefs and tracksuit bottoms) 01/01/1992 31/12/2500 -62046319 01/01/1988 31/12/1991 LIBEN Women's or girls' trousers and breeches of synthetic fibres (excl. knitted or crocheted, industrial and occupational, bib and brace overalls, and panties) 01/01/1988 31/12/1991 -62046331 01/01/1988 31/12/2500 LIBEN Women's or girls' bib and brace overalls, of synthetic fibres, industrial and occupational (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62046339 01/01/1988 31/12/2500 LIBEN Women's or girls' bib and brace overalls, of synthetic fibres (excl. knitted or crocheted, occupational and industrial) 01/01/1988 31/12/2500 -62046390 01/01/1988 31/12/2500 LIBEN Women's or girls' shorts of synthetic fibres (excl. knitted or crocheted, panties and swimwear) 01/01/1988 31/12/2500 -620469 01/01/1988 31/12/2500 LIBEN Women's or girls' trousers, bib and brace overalls, breeches and shorts of textile materials (excl. of wool, fine animal hair, cotton or synthetic fibres, knitted or crocheted, panties and swimwear) 01/01/1988 31/12/2500 -62046911 01/01/1988 31/12/2500 LIBEN Women's or girls' trousers and breeches, of artificial fibres, industrial and occupational (excl. knitted or crocheted, and bib and brace overalls) 01/01/1988 31/12/2500 -62046918 01/01/1992 31/12/2500 LIBEN Women's or girls' trousers and breeches, of artificial fibres (not of cut corduroy, of denim or knitted or crocheted and excl. industrial and occupational clothing, bib and brace overalls, briefs and tracksuit bottoms) 01/01/1992 31/12/2500 -62046919 01/01/1988 31/12/1991 LIBEN Women's or girls' trousers and breeches of artificial fibres (excl. knitted or crocheted, industrial and occupational, bib and brace overalls and panties) 01/01/1988 31/12/1991 -62046931 01/01/1988 31/12/2500 LIBEN Women's or girls' bib and brace overalls, of artificial fibres, industrial and occupational (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62046939 01/01/1988 31/12/2500 LIBEN Women's or girls' bib and brace overalls of artificial fibres (excl. knitted or crocheted, industrial and occupational) 01/01/1988 31/12/2500 -62046950 01/01/1988 31/12/2500 LIBEN Women's or girls' shorts of artificial fibres (excl. knitted or crocheted, panties and swimwear) 01/01/1988 31/12/2500 -62046990 01/01/1988 31/12/2500 LIBEN Women's or girls' trousers, bib and brace overalls, breeches and shorts of textile materials (excl. of wool, fine animal hair, cotton or man-made fibres, knitted or crocheted, panties and swimwear) 01/01/1988 31/12/2500 -6205 01/01/1988 31/12/2500 LIBEN Men's or boys' shirts (excl. knitted or crocheted, nightshirts, singlets and other vests) 01/01/1988 31/12/2500 -620510 01/01/1988 31/12/2006 LIBEN Men's or boys' shirts of wool or fine animal hair (excl. knitted or crocheted, nightshirts, singlets and other vests) 01/01/1988 31/12/2006 -62051000 01/01/1988 31/12/2006 LIBEN Men's or boys' shirts of wool or fine animal hair (excl. knitted or crocheted, nightshirts, singlets and other vests) 01/01/1988 31/12/2006 -620520 01/01/1988 31/12/2500 LIBEN Men's or boys' shirts of cotton (excl. knitted or crocheted, nightshirts, singlets and other vests) 01/01/1988 31/12/2500 -62052000 01/01/1988 31/12/2500 LIBEN Men's or boys' shirts of cotton (excl. knitted or crocheted, nightshirts, singlets and other vests) 01/01/1988 31/12/2500 -620530 01/01/1988 31/12/2500 LIBEN Men's or boys' shirts of man-made fibres (excl. knitted or crocheted, nightshirts, singlets and other vests) 01/01/1988 31/12/2500 -62053000 01/01/1988 31/12/2500 LIBEN Men's or boys' shirts of man-made fibres (excl. knitted or crocheted, nightshirts, singlets and other vests) 01/01/1988 31/12/2500 -620590 01/01/1988 31/12/2500 LIBEN Men's or boys' shirts of textile materials (excl. of cotton or man-made fibres, knitted or crocheted, nightshirts, singlets and other vests) 01/01/1988 31/12/2500 -62059010 01/01/1988 31/12/2500 LIBEN Men's or boys' shirts of flax or ramie (excl. knitted or crocheted, nightshirts, singlets and other vests) 01/01/1988 31/12/2500 -62059080 01/01/2007 31/12/2500 LIBEN Men's or boys' shirts of textile materials (excl. of cotton or man-made fibres, flax or ramie, knitted or crocheted, nightshirts, singlets and other vests) 01/01/2007 31/12/2500 -62059090 01/01/1988 31/12/2006 LIBEN Men's or boys' shirts of textile materials (excl. of wool, fine animal hair, cotton or man-made fibres, flax or ramie, knitted or crocheted, nightshirts, singlets and other vests) 01/01/1988 31/12/2006 -6206 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses (excl. knitted or crocheted and vests) 01/01/1988 31/12/2500 -620610 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of silk or silk waste (excl. knitted or crocheted and vests) 01/01/1988 31/12/2500 -62061000 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of silk or silk waste (excl. knitted or crocheted and vests) 01/01/1988 31/12/2500 -620620 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of wool or fine animal hair (excl. knitted or crocheted and vests) 01/01/1988 31/12/2500 -62062000 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of wool or fine animal hair (excl. knitted or crocheted and vests) 01/01/1988 31/12/2500 -620630 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of cotton (excl. knitted or crocheted and vests) 01/01/1988 31/12/2500 -62063000 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of cotton (excl. knitted or crocheted and vests) 01/01/1988 31/12/2500 -620640 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of man-made fibres (excl. knitted or crocheted and vests) 01/01/1988 31/12/2500 -62064000 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of man-made fibres (excl. knitted or crocheted and vests) 01/01/1988 31/12/2500 -620690 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of textile materials (excl. of silk, silk waste, wool, fine animal hair, cotton or man-made fibres, knitted or crocheted and vests) 01/01/1988 31/12/2500 -62069010 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of flax or ramie (excl. knitted or crocheted and vests) 01/01/1988 31/12/2500 -62069090 01/01/1988 31/12/2500 LIBEN Women's or girls' blouses, shirts and shirt-blouses of textile materials (excl. of silk, silk waste, wool, fine animal hair, cotton or man-made fibres, flax or ramie, knitted or crocheted and vests) 01/01/1988 31/12/2500 -6207 01/01/1988 31/12/2500 LIBEN Men's or boys' singlets and other vests, underpants, briefs, nightshirts, pyjamas, bathrobes, dressing gowns and similar articles (excl. knitted or crocheted) 01/01/1988 31/12/2500 -620711 01/01/1988 31/12/2500 LIBEN Men's or boys' underpants and briefs of cotton (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62071100 01/01/1988 31/12/2500 LIBEN Men's or boys' underpants and briefs of cotton (excl. knitted or crocheted) 01/01/1988 31/12/2500 -620719 01/01/1988 31/12/2500 LIBEN Men's or boys' underpants and briefs of textile materials (excl. cotton and knitted or crocheted) 01/01/1988 31/12/2500 -62071900 01/01/1988 31/12/2500 LIBEN Men's or boys' underpants and briefs of textile materials (excl. cotton and knitted or crocheted) 01/01/1988 31/12/2500 -620721 01/01/1988 31/12/2500 LIBEN Men's or boys' nightshirts and pyjamas of cotton (excl. knitted or crocheted, vests, singlets and underpants) 01/01/1988 31/12/2500 -62072100 01/01/1988 31/12/2500 LIBEN Men's or boys' nightshirts and pyjamas of cotton (excl. knitted or crocheted, vests, singlets and underpants) 01/01/1988 31/12/2500 -620722 01/01/1988 31/12/2500 LIBEN Men's or boys' nightshirts and pyjamas of man-made fibres (excl. knitted or crocheted, vests, singlets and underpants) 01/01/1988 31/12/2500 -62072200 01/01/1988 31/12/2500 LIBEN Men's or boys' nightshirts and pyjamas of man-made fibres (excl. knitted or crocheted, vests, singlets and underpants) 01/01/1988 31/12/2500 -620729 01/01/1988 31/12/2500 LIBEN Men's or boys' nightshirts and pyjamas of textile materials (excl. of cotton or man-made fibres, knitted or crocheted, vests, singlets and underpants) 01/01/1988 31/12/2500 -62072900 01/01/1988 31/12/2500 LIBEN Men's or boys' nightshirts and pyjamas of textile materials (excl. of cotton or man-made fibres, knitted or crocheted, vests, singlets and underpants) 01/01/1988 31/12/2500 -620791 01/01/1988 31/12/2500 LIBEN Men's or boys' singlets and other vests, bathrobes, dressing gowns and similar articles of cotton (excl. knitted or crocheted, underpants, nightshirts and pyjamas) 01/01/1988 31/12/2500 -62079100 01/01/1988 31/12/1993 LIBEN Men's or boys' singlets and other vests, bathrobes, dressing gowns and similar articles of cotton (excl. knitted or crocheted, underpants, nightshirts and pyjamas) 01/01/1988 31/12/1993 -62079100 01/01/2005 31/12/2500 LIBEN Men's or boys' singlets and other vests, bathrobes, dressing gowns and similar articles of cotton (excl. knitted or crocheted, underpants, nightshirts and pyjamas) 01/01/2005 31/12/2500 -62079110 01/01/1994 31/12/2004 LIBEN Bathrobes, dressing gowns and similar articles, of terry towelling and similar woven terry fabrics, of cotton knitted or crocheted fabrics, for men or boys 01/01/1994 31/12/2004 -62079190 01/01/1994 31/12/2004 LIBEN Singlets and other vests, bathrobes, dressing gowns and similar articles, of cotton, for men or boys (excl. such articles of terry towelling and similar woven terry fabrics, knitted or crocheted, and underpants, nightshirts and pyjamas) 01/01/1994 31/12/2004 -620792 01/01/1988 31/12/2006 LIBEN Men's or boys' singlets and other vests, bathrobes, dressing gowns and similar articles of man-made fibres (excl. knitted or crocheted, underpants, nightshirts and pyjamas) 01/01/1988 31/12/2006 -62079200 01/01/1988 31/12/2006 LIBEN Men's or boys' singlets and other vests, bathrobes, dressing gowns and similar articles of man-made fibres (excl. knitted or crocheted, underpants, nightshirts and pyjamas) 01/01/1988 31/12/2006 -620799 01/01/1988 31/12/2500 LIBEN Men's or boys' singlets and other vests, bathrobes and dressing gowns of textile materials (excl. of cotton, knitted or crocheted, underpants, nightshirts and pyjamas) 01/01/1988 31/12/2500 -62079900 01/01/1988 31/12/2006 LIBEN Men's or boys' singlets and other vests, bathrobes and dressing gowns of textile materials (excl. of cotton or man-made fibres, knitted or crocheted, underpants, nightshirts and pyjamas) 01/01/1988 31/12/2006 -62079910 01/01/2007 31/12/2500 LIBEN Men's or boys' singlets and other vests, bathrobes, dressing gowns and similar articles of man-made fibres (excl. knitted or crocheted, underpants, nightshirts and pyjamas) 01/01/2007 31/12/2500 -62079990 01/01/2007 31/12/2500 LIBEN Men's or boys' singlets and other vests, bathrobes and dressing gowns of textile materials (excl. of cotton or man-made fibres, knitted or crocheted, underpants, nightshirts and pyjamas) 01/01/2007 31/12/2500 -6208 01/01/1988 31/12/2500 LIBEN Women's or girls' singlets and other vests, slips, petticoats, briefs, panties, nightdresses, pyjamas, négligés, bathrobes, dressing gowns, housecoats and similar articles (excl. knitted or crocheted, brassières, girdles, corsets and similar articles) 01/01/1988 31/12/2500 -620811 01/01/1988 31/12/2500 LIBEN Women's or girls' slips and petticoats of man-made fibres (excl. knitted or crocheted and vests) 01/01/1988 31/12/2500 -62081100 01/01/1988 31/12/2500 LIBEN Women's or girls' slips and petticoats of man-made fibres (excl. knitted or crocheted and vests) 01/01/1988 31/12/2500 -620819 01/01/1988 31/12/2500 LIBEN Women's or girls' slips and petticoats of textile materials (excl. man-made fibres, knitted or crocheted and vests) 01/01/1988 31/12/2500 -62081900 01/01/2005 31/12/2500 LIBEN Women's or girls' slips and petticoats of textile materials (excl. man-made fibres, knitted or crocheted and vests) 01/01/2005 31/12/2500 -62081910 01/01/1988 31/12/2004 LIBEN Women's or girls' slips and petticoats of cotton (excl. knitted or crocheted and vests) 01/01/1988 31/12/2004 -62081990 01/01/1988 31/12/2004 LIBEN Women's or girls' slips and petticoats of textile materials (excl. man-made fibres or cotton, knitted or crocheted and vests) 01/01/1988 31/12/2004 -620821 01/01/1988 31/12/2500 LIBEN Women's or girls' nightdresses and pyjamas of cotton (excl. knitted or crocheted, vests and négligés) 01/01/1988 31/12/2500 -62082100 01/01/1988 31/12/2500 LIBEN Women's or girls' nightdresses and pyjamas of cotton (excl. knitted or crocheted, vests and négligés) 01/01/1988 31/12/2500 -620822 01/01/1988 31/12/2500 LIBEN Women's or girls' nightdresses and pyjamas of man-made fibres (excl. knitted or crocheted, vests and négligés) 01/01/1988 31/12/2500 -62082200 01/01/1988 31/12/2500 LIBEN Women's or girls' nightdresses and pyjamas of man-made fibres (excl. knitted or crocheted, vests and négligés) 01/01/1988 31/12/2500 -620829 01/01/1988 31/12/2500 LIBEN Women's or girls' nightdresses and pyjamas of textile materials (excl. cotton and man-made fibres, knitted or crocheted, vests and négligés) 01/01/1988 31/12/2500 -62082900 01/01/1988 31/12/2500 LIBEN Women's or girls' nightdresses and pyjamas of textile materials (excl. cotton and man-made fibres, knitted or crocheted, vests and négligés) 01/01/1988 31/12/2500 -620891 01/01/1988 31/12/2500 LIBEN Women's or girls' singlets and other vests, briefs, panties, négligés, bathrobes, dressing gowns, housecoats and similar articles of cotton (excl. knitted or crocheted, slips, petticoats, nightdresses and pyjamas, brassières, girdles, corsets and similar articles) 01/01/1988 31/12/2500 -62089100 01/01/2005 31/12/2011 LIBEN Women's or girls' singlets and other vests, briefs, panties, négligés, bathrobes, dressing gowns, housecoats and similar articles of cotton (excl. knitted or crocheted, slips, petticoats, nightdresses and pyjamas, brassières, girdles, corsets and similar articles) 01/01/2005 31/12/2011 -62089100 01/01/2012 31/12/2500 LIBEN Women's or girls' singlets and other vests, briefs, panties, négligés, bathrobes, dressing gowns, housecoats and similar articles of cotton (excl. knitted or crocheted, slips, petticoats, nightdresses and pyjamas, brassières, girdles, corsets and similar articles) 01/01/2012 31/12/2500 -62089110 01/01/1988 31/12/1993 LIBEN Women's or girls' negliges, bathrobes, dressing gowns, housecoats and similar articles of cotton (excl. knitted or crocheted, vests, briefs, panties, slips, petticoats, nightdresses and pyjamas, brassieres, girdles, corsets and similar articles) 01/01/1988 31/12/1993 -62089111 01/01/1994 31/12/2004 LIBEN Bathrobes, dressing gowns and similar articles, of terry towelling and similar woven terry fabrics, of cotton knitted or crocheted fabrics, for women or girls 01/01/1994 31/12/2004 -62089119 01/01/1994 31/12/2004 LIBEN Négligés, bathrobes, dressing gowns, housejackets and similar articles, of cotton, knitted or crocheted, for women or girls (excl. such articles of terry towelling and similar woven terry fabrics, knitted or crocheted, and vests, slips, petticoats, briefs and panties, nightdresses, pyjamas, brassières, girdles, corsets and similar articles) 01/01/1994 31/12/2004 -62089190 01/01/1988 31/12/2004 LIBEN Women's or girls' cotton singlets and other vests, briefs, panties and similar articles (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/2004 -620892 01/01/1988 31/12/2500 LIBEN Women's or girls' singlets and other vests, briefs, panties, négligés, bathrobes, dressing gowns, housecoats and similar articles of man-made fibres (excl. knitted or crocheted, slips, petticoats, nightdresses and pyjamas, brassières, girdles, corsets and similar articles) 01/01/1988 31/12/2500 -62089200 01/01/1999 31/12/2011 LIBEN Women's or girls' singlets and other vests, briefs, panties, négligés, bathrobes, dressing gowns, housecoats and similar articles of man-made fibres (excl. knitted or crocheted, slips, petticoats, nightdresses and pyjamas, brassières, girdles, corsets and similar articles) 01/01/1999 31/12/2011 -62089200 01/01/2012 31/12/2500 LIBEN Women's or girls' singlets and other vests, briefs, panties, négligés, bathrobes, dressing gowns, housecoats and similar articles of man-made fibres (excl. knitted or crocheted, slips, petticoats, nightdresses and pyjamas, brassières, girdles, corsets and similar articles) 01/01/2012 31/12/2500 -62089210 01/01/1988 31/12/1998 LIBEN Women's or girls' negliges, bathrobes, dressing gowns, housecoats and similar articles of man-made fibres (excl. knitted or crocheted, vests, briefs, panties, slips, petticoats, nightdresses and pyjamas, brassières, girdles, corsets and similar articles) 01/01/1988 31/12/1998 -62089290 01/01/1988 31/12/1998 LIBEN Women's or girls' singlets and other vests, briefs, panties and similar articles of man-made fibres (excl. knitted or crocheted and petticoats) 01/01/1988 31/12/1998 -620899 01/01/1988 31/12/2500 LIBEN Women's or girls' singlets and other vests, briefs, panties, négligés, bathrobes, dressing gowns, housecoats and similar articles of textile materials (excl. of cotton or man-made fibres, knitted or crocheted, slips, petticoats, nightdresses and pyjamas, brassières, girdles, corsets and similar articles) 01/01/1988 31/12/2500 -62089900 01/01/1988 31/12/2011 LIBEN Women's or girls' singlets and other vests, briefs, panties, négligés, bathrobes, dressing gowns, housecoats and similar articles of textile materials (excl. of cotton or man-made fibres, knitted or crocheted, slips, petticoats, nightdresses and pyjamas, brassières, girdles, corsets and similar articles) 01/01/1988 31/12/2011 -62089900 01/01/2012 31/12/2500 LIBEN Women's or girls' singlets and other vests, briefs, panties, négligés, bathrobes, dressing gowns, housecoats and similar articles of textile materials (excl. of cotton or man-made fibres, knitted or crocheted, slips, petticoats, nightdresses and pyjamas, brassières, girdles, corsets and similar articles) 01/01/2012 31/12/2500 -6209 01/01/1988 31/12/2500 LIBEN Babies' garments and clothing accessories of textile materials (excl. knitted or crocheted and hats) 01/01/1988 31/12/2500 -620910 01/01/1988 31/12/2006 LIBEN Babies' garments and clothing accessories of wool or fine animal hair (excl. knitted or crocheted and hats) 01/01/1988 31/12/2006 -62091000 01/01/1988 31/12/2006 LIBEN Babies' garments and clothing accessories of wool or fine animal hair (excl. knitted or crocheted and hats) 01/01/1988 31/12/2006 -620920 01/01/1988 31/12/2500 LIBEN Babies' garments and clothing accessories of cotton (excl. knitted or crocheted and hats, napkins and napkin liners [see 9619]) 01/01/1988 31/12/2500 -62092000 01/01/1988 31/12/2011 LIBEN Babies' garments and clothing accessories of cotton (excl. knitted or crocheted and hats) 01/01/1988 31/12/2011 -62092000 01/01/2012 31/12/2500 LIBEN Babies' garments and clothing accessories of cotton (excl. knitted or crocheted and hats, napkins and napkin liners [see 9619]) 01/01/2012 31/12/2500 -620930 01/01/1988 31/12/2500 LIBEN Babies' garments and clothing accessories of synthetic fibres (excl. knitted or crocheted and hats, napkins and napkin liners [see 9619]) 01/01/1988 31/12/2500 -62093000 01/01/1988 31/12/2011 LIBEN Babies' garments and clothing accessories of synthetic fibres (excl. knitted or crocheted and hats) 01/01/1988 31/12/2011 -62093000 01/01/2012 31/12/2500 LIBEN Babies' garments and clothing accessories of synthetic fibres (excl. knitted or crocheted and hats, napkins and napkin liners [see 9619]) 01/01/2012 31/12/2500 -620990 01/01/1988 31/12/2500 LIBEN Babies' garments and clothing accessories of textile materials (excl. of cotton or synthetic fibres, knitted or crocheted and hats, napkins and napkin liners [see 9619]) 01/01/1988 31/12/2500 -62099000 01/01/1988 31/12/2006 LIBEN Babies' garments and clothing accessories of textile materials (excl. of wool or fine animal hair, cotton or synthetic fibres, knitted or crocheted and hats) 01/01/1988 31/12/2006 -62099010 01/01/2007 31/12/2500 LIBEN Babies' garments and clothing accessories of wool or fine animal hair (excl. knitted or crocheted and hats) 01/01/2007 31/12/2500 -62099090 01/01/2007 31/12/2011 LIBEN Babies' garments and clothing accessories of textile materials (excl. of wool or fine animal hair, cotton or synthetic fibres, knitted or crocheted and hats) 01/01/2007 31/12/2011 -62099090 01/01/2012 31/12/2500 LIBEN Babies' garments and clothing accessories of textile materials (excl. of wool or fine animal hair, cotton or synthetic fibres, knitted or crocheted and hats, and napkins and napkin liners [see 9619]) 01/01/2012 31/12/2500 -6210 01/01/1988 31/12/2500 LIBEN Garments made up of felt or nonwovens, whether or not impregnated, coated, covered or laminated; garments of textile fabrics, rubberised or impregnated, coated, covered or laminated with plastics or other substances (excl. knitted or crocheted, and babies' garments and clothing accessories) 01/01/1988 31/12/2500 -621010 01/01/1988 31/12/2500 LIBEN Garments made up of felt or nonwovens, whether or not impregnated, coated, covered or laminated (excl. babies' garments and clothing accessories) 01/01/1988 31/12/2500 -62101010 01/01/1988 31/12/2500 LIBEN Garments made up of felt, whether or not impregnated, coated, covered or laminated (excl. babies' garments and clothing accessories) 01/01/1988 31/12/2500 -62101090 01/01/2005 31/12/2011 LIBEN Garments made up of nonwovens, whether or not impregnated, coated, covered or laminated (excl. babies' garments and clothing accessories) 01/01/2005 31/12/2011 -62101091 01/01/1988 31/12/2004 LIBEN Garments made up of nonwovens, whether or not impregnated, coated, covered or laminated, in sterile packs (excl. babies' garments and clothing accessories) 01/01/1988 31/12/2004 -62101092 01/01/2012 31/12/2500 LIBEN Single-use gowns made up of nonwovens, of a kind used by patients or surgeons during surgical procedures 01/01/2012 31/12/2500 -62101098 01/01/2012 31/12/2500 LIBEN Garments made up of nonwovens, whether or not impregnated, coated, covered or laminated (excl. babies' garments, clothing accessories, and single-use gowns used during surgical procedures) 01/01/2012 31/12/2500 -62101099 01/01/1988 31/12/2004 LIBEN Garments made up of nonwovens, whether or not impregnated, coated, covered or laminated (excl. in sterile packs, babies' garments and clothing accessories) 01/01/1988 31/12/2004 -621020 01/01/1988 31/12/2500 LIBEN Garments of the type described in subheading 6201,11 to 6201,19, rubberised or impregnated, coated, covered or laminated with plastics or other substances 01/01/1988 31/12/2500 -62102000 01/01/1988 31/12/2500 LIBEN Garments of the type described in subheading 6201,11 to 6201,19, rubberised or impregnated, coated, covered or laminated with plastics or other substances 01/01/1988 31/12/2500 -621030 01/01/1988 31/12/2500 LIBEN Garments of the type described in subheading 6202,11 to 6202,19, rubberised or impregnated, coated, covered or laminated with plastics or other substances 01/01/1988 31/12/2500 -62103000 01/01/1988 31/12/2500 LIBEN Garments of the type described in subheading 6202,11 to 6202,19, rubberised or impregnated, coated, covered or laminated with plastics or other substances 01/01/1988 31/12/2500 -621040 01/01/1988 31/12/2500 LIBEN Men's or boys' garments of textile fabrics, rubberised or impregnated, coated, covered or laminated with plastics or other substances (excl. of the type described in subheading 6201,11 to 6201,19, and babies' garments and clothing accessories) 01/01/1988 31/12/2500 -62104000 01/01/1988 31/12/2500 LIBEN Men's or boys' garments of textile fabrics, rubberised or impregnated, coated, covered or laminated with plastics or other substances (excl. of the type described in subheading 6201,11 to 6201,19, and babies' garments and clothing accessories) 01/01/1988 31/12/2500 -621050 01/01/1988 31/12/2500 LIBEN Women's or girls' garments of textile fabrics, rubberised or impregnated, coated, covered or laminated with plastics or other substances (excl. of the type described in subheading 6202,11 to 6202,19, and babies' garments and clothing accessories) 01/01/1988 31/12/2500 -62105000 01/01/1988 31/12/2011 LIBEN Women's or girls' garments of textile fabrics, rubberised or impregnated, coated, covered or laminated with plastics or other substances (excl. of the type described in subheading 6202,11 to 6202,19, and babies' garments and clothing accessories) 01/01/1988 31/12/2011 -62105000 01/01/2012 31/12/2500 LIBEN Women's or girls' garments of textile fabrics, rubberised or impregnated, coated, covered or laminated with plastics or other substances (excl. of the type described in subheading 6202,11 to 6202,19, and babies' garments and clothing accessories) 01/01/2012 31/12/2500 -6211 01/01/1988 31/12/2500 LIBEN Tracksuits, ski suits, swimwear and other garments, n.e.s. (excl. knitted or crocheted) 01/01/1988 31/12/2500 -621111 01/01/1988 31/12/2500 LIBEN Men's or boys' swimwear (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62111100 01/01/1988 31/12/2500 LIBEN Men's or boys' swimwear (excl. knitted or crocheted) 01/01/1988 31/12/2500 -621112 01/01/1988 31/12/2500 LIBEN Women's or girls' swimwear (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62111200 01/01/1988 31/12/2500 LIBEN Women's or girls' swimwear (excl. knitted or crocheted) 01/01/1988 31/12/2500 -621120 01/01/1988 31/12/2500 LIBEN Ski suits (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62112000 01/01/1988 31/12/2500 LIBEN Ski suits (excl. knitted or crocheted) 01/01/1988 31/12/2500 -621131 01/01/1988 31/12/2006 LIBEN Men's or boys' tracksuits and other garments, n.e.s. of wool or fine animal hair (excl. knitted or crocheted) 01/01/1988 31/12/2006 -62113100 01/01/1988 31/12/2006 LIBEN Men's or boys' tracksuits and other garments, n.e.s. of wool or fine animal hair (excl. knitted or crocheted) 01/01/1988 31/12/2006 -621132 01/01/1988 31/12/2500 LIBEN Men's or boys' tracksuits and other garments, n.e.s. of cotton (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62113210 01/01/1988 31/12/2500 LIBEN Men's or boys' industrial and occupational clothing of cotton (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62113231 01/01/1992 31/12/2500 LIBEN Men's or boys' lined tracksuits, of cotton, with an outer shell of a single identical fabric (not knitted or crocheted) 01/01/1992 31/12/2500 -62113241 01/01/1992 31/12/2500 LIBEN Men's or boys' lined tracksuit tops "upper parts", of cotton (not knitted or crocheted and excl. tracksuit tops with an outer shell of a single identical fabric) 01/01/1992 31/12/2500 -62113242 01/01/1992 31/12/2500 LIBEN Men's or boy's lined tracksuit bottoms "lower parts", of cotton (not knitted or crocheted and excl. tracksuit bottoms with an outer shell of a single identical fabric) 01/01/1992 31/12/2500 -62113290 01/01/1988 31/12/2500 LIBEN Men's or boys' garments, of cotton, n.e.s. (not knitted or crocheted) 01/01/1988 31/12/2500 -621133 01/01/1988 31/12/2500 LIBEN Men's or boys' tracksuits and other garments, n.e.s. of man-made fibres (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62113310 01/01/1988 31/12/2500 LIBEN Men's or boys' industrial and occupational clothing of man-made fibres (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62113331 01/01/1992 31/12/2500 LIBEN Men's or boys' lined tracksuits, of man-made fibres, with an outer shell of a single identical fabric (not knitted or crocheted) 01/01/1992 31/12/2500 -62113341 01/01/1992 31/12/2500 LIBEN Men's or boys' lined tracksuit tops "upper parts", of man-made fibres (not knitted or crocheted and excl. tracksuit tops with an outer shell of a single identical fabric) 01/01/1992 31/12/2500 -62113342 01/01/1992 31/12/2500 LIBEN Men's or boys' lined tracksuit bottoms "lower parts", of man-made fibres (not knitted or crocheted and excl. tracksuit bottoms with an outer shell of a single identical fabric) 01/01/1992 31/12/2500 -62113390 01/01/1988 31/12/2500 LIBEN Men's or boys' garments, of man-made fibres, n.e.s. (not knitted or crocheted) 01/01/1988 31/12/2500 -621139 01/01/1988 31/12/2500 LIBEN Men's or boys' tracksuits and other garments, n.e.s. of textile materials (excl. of cotton or man-made fibres, knitted or crocheted) 01/01/1988 31/12/2500 -62113900 01/01/1988 31/12/2006 LIBEN Men's or boys' tracksuits and other garments, n.e.s. of textile materials (excl. of wool, fine animal hair, cotton or man-made fibres, knitted or crocheted) 01/01/1988 31/12/2006 -62113900 01/01/2007 31/12/2500 LIBEN Men's or boys' tracksuits and other garments, n.e.s. of textile materials (excl. of cotton or man-made fibres, knitted or crocheted) 01/01/2007 31/12/2500 -621141 01/01/1988 31/12/2011 LIBEN Women's or girls' tracksuits and other garments, n.e.s. of wool or fine animal hair (excl. knitted or crocheted) 01/01/1988 31/12/2011 -62114100 01/01/1988 31/12/2011 LIBEN Women's or girls' tracksuits and other garments, n.e.s. of wool or fine animal hair (excl. knitted or crocheted) 01/01/1988 31/12/2011 -621142 01/01/1988 31/12/2500 LIBEN Women's or girls' tracksuits and other garments, n.e.s. of cotton (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62114210 01/01/1988 31/12/2500 LIBEN Women's or girls' aprons, overalls, smock-overalls and other industrial and occupational clothing of cotton (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62114231 01/01/1992 31/12/2500 LIBEN Women's or girls' lined tracksuits, of cotton, with an outer shell of a single identical fabric (not knitted or crocheted) 01/01/1992 31/12/2500 -62114241 01/01/1992 31/12/2500 LIBEN Women's or girls' lined tracksuit tops "upper parts", of cotton (not knitted or crocheted and excl. tracksuit tops with an outer shell of a single identical fabric) 01/01/1992 31/12/2500 -62114242 01/01/1992 31/12/2500 LIBEN Women's or girls' lined tracksuit bottoms "lower parts", of cotton (not knitted or crocheted and excl. tracksuit bottoms with an outer shell of a single identical fabric) 01/01/1992 31/12/2500 -62114290 01/01/1988 31/12/2500 LIBEN Women's or girls' garments, of cotton, n.e.s. (not knitted or crocheted) 01/01/1988 31/12/2500 -621143 01/01/1988 31/12/2500 LIBEN Women's or girls' tracksuits and other garments, n.e.s. of man-made fibres (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62114310 01/01/1988 31/12/2500 LIBEN Women's or girls' aprons, overalls, smock-overalls and other industrial and occupational clothing, of man-made fibres (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62114331 01/01/1992 31/12/2500 LIBEN Women's or girls' lined tracksuits, of man-made fibres, with an outer shell of a single identical fabric (not knitted or crocheted) 01/01/1992 31/12/2500 -62114341 01/01/1992 31/12/2500 LIBEN Women's or girls' lined tracksuit tops "upper parts", of man-made fibres (not knitted or crocheted and excl. tracksuit tops with an outer shell of a single identical fabric) 01/01/1992 31/12/2500 -62114342 01/01/1992 31/12/2500 LIBEN Women's or girls' lined tracksuit bottoms "lower parts", of man-made fibres (not knitted or crocheted and excl. tracksuit bottoms with an outer shell of a single identical fabric) 01/01/1992 31/12/2500 -62114390 01/01/1988 31/12/2500 LIBEN Women's or girls' garments, of man-made fibres, n.e.s. (not knitted or crocheted) 01/01/1988 31/12/2500 -621149 01/01/1988 31/12/2500 LIBEN Women's or girls' tracksuits and other garments, n.e.s. of textile materials (excl. of cotton or man-made fibres, knitted or crocheted and goods of 9619) 01/01/1988 31/12/2500 -62114900 01/01/1988 31/12/2011 LIBEN Women's or girls' tracksuits and other garments, n.e.s. of textile materials (excl. of wool, fine animal hair, cotton or man-made fibres, knitted or crocheted) 01/01/1988 31/12/2011 -62114900 01/01/2012 31/12/2500 LIBEN Women's or girls' tracksuits and other garments, n.e.s. of textile materials (excl. of cotton or man-made fibres, knitted or crocheted and goods of 9619) 01/01/2012 31/12/2500 -6212 01/01/1988 31/12/2500 LIBEN Brassieres, girdles, corsets, braces, suspenders, garters and similar articles and parts thereof, of all types of textile materials, whether or not elasticated, incl. knitted or crocheted (excl. belts and corselets made entirely of rubber) 01/01/1988 31/12/2500 -621210 01/01/1988 31/12/2500 LIBEN Brassieres of all types of textile materials, whether or not elasticated, incl. knitted or crocheted 01/01/1988 31/12/2500 -62121000 01/01/1988 31/12/1998 LIBEN Brassieres of all types of textile materials, whether or not elasticated, incl. knitted or crocheted 01/01/1988 31/12/1998 -62121010 01/01/1999 31/12/2500 LIBEN Brassières of all types of textile materials, whether or not elasticated, incl. knitted or crocheted, in a set made up for retail sale containing a brassière and a brief 01/01/1999 31/12/2500 -62121090 01/01/1999 31/12/2500 LIBEN Brassieres of all types of textile materials, whether or not elasticated, incl. knitted or crocheted (excl. in a set made up for retail sale containing a brassière and a brief) 01/01/1999 31/12/2500 -621220 01/01/1988 31/12/2500 LIBEN Girdles and panty girdles of all types of textile materials, whether or not elasticated, incl. knitted or crocheted (excl. belts and corselets made entirely of rubber) 01/01/1988 31/12/2500 -62122000 01/01/1988 31/12/2500 LIBEN Girdles and panty girdles of all types of textile materials, whether or not elasticated, incl. knitted or crocheted (excl. belts and corselets made entirely of rubber) 01/01/1988 31/12/2500 -621230 01/01/1988 31/12/2500 LIBEN Corselettes of all types of textile materials, whether or not elasticated, incl. knitted or crocheted 01/01/1988 31/12/2500 -62123000 01/01/1988 31/12/2500 LIBEN Corselettes of all types of textile materials, whether or not elasticated, incl. knitted or crocheted 01/01/1988 31/12/2500 -621290 01/01/1988 31/12/2500 LIBEN Corsets, braces, garters, suspenders and similar articles and parts thereof, incl. parts of brassieres, girdles, panty girdles and corselettes, of all types of textile materials, whether or not elasticated, incl. knitted or crocheted (excl. complete brassieres, girdles, panty girdles and corselettes) 01/01/1988 31/12/2500 -62129000 01/01/1988 31/12/2500 LIBEN Corsets, braces, garters, suspenders and similar articles and parts thereof, incl. parts of brassieres, girdles, panty girdles and corselettes, of all types of textile materials, whether or not elasticated, incl. knitted or crocheted (excl. complete brassieres, girdles, panty girdles and corselettes) 01/01/1988 31/12/2500 -6213 01/01/1988 31/12/2500 LIBEN Handkerchiefs, of which no side exceeds 60 cm (excl. knitted or crocheted) 01/01/1988 31/12/2500 -621310 01/01/1988 31/12/2006 LIBEN Handkerchiefs of silk or silk waste, of which no side exceeds 60 cm (excl. knitted or crocheted) 01/01/1988 31/12/2006 -62131000 01/01/1988 31/12/2006 LIBEN Handkerchiefs of silk or silk waste, of which no side exceeds 60 cm (excl. knitted or crocheted) 01/01/1988 31/12/2006 -621320 01/01/1988 31/12/2500 LIBEN Handkerchiefs of cotton, of which no side exceeds 60 cm (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62132000 01/01/1988 31/12/2500 LIBEN Handkerchiefs of cotton, of which no side exceeds 60 cm (excl. knitted or crocheted) 01/01/1988 31/12/2500 -621390 01/01/1988 31/12/2500 LIBEN Handkerchiefs of textile materials, of which no side exceeds 60 cm (excl. of cotton, and knitted or crocheted) 01/01/1988 31/12/2500 -62139000 01/01/1988 31/12/2006 LIBEN Handkerchiefs of textile materials, of which no side exceeds 60 cm (excl. of silk, silk waste or cotton, knitted or crocheted) 01/01/1988 31/12/2006 -62139000 01/01/2007 31/12/2500 LIBEN Handkerchiefs of textile materials, of which no side exceeds 60 cm (excl. of cotton, and knitted or crocheted) 01/01/2007 31/12/2500 -6214 01/01/1988 31/12/2500 LIBEN Shawls, scarves, mufflers, mantillas, veils and similar articles (excl. knitted or crocheted) 01/01/1988 31/12/2500 -621410 01/01/1988 31/12/2500 LIBEN Shawls, scarves, mufflers, mantillas, veils and similar articles of silk or silk waste (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62141000 01/01/1988 31/12/2500 LIBEN Shawls, scarves, mufflers, mantillas, veils and similar articles of silk or silk waste (excl. knitted or crocheted) 01/01/1988 31/12/2500 -621420 01/01/1988 31/12/2500 LIBEN Shawls, scarves, mufflers, mantillas, veils and similar articles of wool or fine animal hair (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62142000 01/01/1988 31/12/2500 LIBEN Shawls, scarves, mufflers, mantillas, veils and similar articles of wool or fine animal hair (excl. knitted or crocheted) 01/01/1988 31/12/2500 -621430 01/01/1988 31/12/2500 LIBEN Shawls, scarves, mufflers, mantillas, veils and similar articles of synthetic fibres (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62143000 01/01/1988 31/12/2500 LIBEN Shawls, scarves, mufflers, mantillas, veils and similar articles of synthetic fibres (excl. knitted or crocheted) 01/01/1988 31/12/2500 -621440 01/01/1988 31/12/2500 LIBEN Shawls, scarves, mufflers, mantillas, veils and similar articles of artificial fibres (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62144000 01/01/1988 31/12/2500 LIBEN Shawls, scarves, mufflers, mantillas, veils and similar articles of artificial fibres (excl. knitted or crocheted) 01/01/1988 31/12/2500 -621490 01/01/1988 31/12/2500 LIBEN Shawls, scarves, mufflers, mantillas, veils and similar articles of textile materials (excl. of silk, silk waste, wool, fine animal hair or man-made fibres, knitted or crocheted) 01/01/1988 31/12/2500 -62149000 01/01/2006 31/12/2500 LIBEN Shawls, scarves, mufflers, mantillas, veils and similar articles of textile materials (excl. of silk, silk waste, wool, fine animal hair or man-made fibres, knitted or crocheted) 01/01/2006 31/12/2500 -62149010 01/01/1988 31/12/2005 LIBEN Shawls, scarves, mufflers, mantillas, veils and similar articles of cotton (excl. knitted or crocheted) 01/01/1988 31/12/2005 -62149090 01/01/1988 31/12/2005 LIBEN Shawls, scarves, mufflers, mantillas, veils and similar articles of textile materials (excl. of silk, silk waste, wool, fine animal hair, man-made fibres and cotton, knitted or crocheted) 01/01/1988 31/12/2005 -6215 01/01/1988 31/12/2500 LIBEN Ties, bow ties and cravats of textile materials (excl. knitted or crocheted) 01/01/1988 31/12/2500 -621510 01/01/1988 31/12/2500 LIBEN Ties, bow ties and cravats of silk or silk waste (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62151000 01/01/1988 31/12/2500 LIBEN Ties, bow ties and cravats of silk or silk waste (excl. knitted or crocheted) 01/01/1988 31/12/2500 -621520 01/01/1988 31/12/2500 LIBEN Ties, bow ties and cravats of man-made fibres (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62152000 01/01/1988 31/12/2500 LIBEN Ties, bow ties and cravats of man-made fibres (excl. knitted or crocheted) 01/01/1988 31/12/2500 -621590 01/01/1988 31/12/2500 LIBEN Ties, bow ties and cravats of textile materials (excl. of silk, silk waste or man-made fibres, knitted or crocheted) 01/01/1988 31/12/2500 -62159000 01/01/1988 31/12/2500 LIBEN Ties, bow ties and cravats of textile materials (excl. of silk, silk waste or man-made fibres, knitted or crocheted) 01/01/1988 31/12/2500 -6216 01/01/1988 31/12/2500 LIBEN Gloves, mittens and mitts, of all types of textile materials (excl. knitted or crocheted and for babies) 01/01/1988 31/12/2500 -621600 01/01/1988 31/12/2500 LIBEN Gloves, mittens and mitts, of all types of textile materials (excl. knitted or crocheted and for babies) 01/01/1988 31/12/2500 -62160000 01/01/1988 31/12/2500 LIBEN Gloves, mittens and mitts, of all types of textile materials (excl. knitted or crocheted and for babies) 01/01/1988 31/12/2500 -6217 01/01/1988 31/12/2500 LIBEN Made-up clothing accessories and parts of garments or clothing accessories, of all types of textile materials, n.e.s. (excl. knitted or crocheted) 01/01/1988 31/12/2500 -621710 01/01/1988 31/12/2500 LIBEN Made-up clothing accessories, of all types of textile materials, n.e.s. (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62171000 01/01/1988 31/12/2500 LIBEN Made-up clothing accessories, of all types of textile materials, n.e.s. (excl. knitted or crocheted) 01/01/1988 31/12/2500 -621790 01/01/1988 31/12/2500 LIBEN Parts of garments or clothing accessories, of all types of textile materials, n.e.s. (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62179000 01/01/1988 31/12/2500 LIBEN Parts of garments or clothing accessories, of all types of textile materials, n.e.s. (excl. knitted or crocheted) 01/01/1988 31/12/2500 -62CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 62 01/01/2002 31/12/2500 -62CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 62 01/01/2002 31/12/2500 -62CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 62 01/01/2002 31/12/2500 -62MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -62MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -62MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -62PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 62 carried by post 01/01/1988 31/12/2500 -62PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 62 carried by post 01/01/1988 31/12/2500 -62PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 62 carried by post 01/01/1988 31/12/2500 -62SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 62 01/01/1988 31/12/2500 -62SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 62 and SITC section 0 01/01/1997 31/12/2001 -62SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 62 and SITC group 000 01/01/1997 31/12/2001 -62SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 62 and SITC section 8 01/01/1997 31/12/2500 -62SSS841 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 62 and SITC group 841 01/01/1997 31/12/2500 -62SSS842 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 62 and SITC group 842 01/01/1997 31/12/2500 -62SSS845 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 62 and SITC group 845 01/01/1997 31/12/2500 -62SSS846 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 62 and SITC group 846 01/01/1997 31/12/2500 -62SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 62 and SITC section 9 01/01/1988 31/12/1996 -62SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 62 and SITC section 9 01/01/1997 31/12/2500 -62SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 62 and SITC group 999 01/01/1988 31/12/1996 -62SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 62 and SITC group 999 01/01/1997 31/12/2500 -63 01/01/1988 31/12/2500 LIBEN OTHER MADE-UP TEXTILE ARTICLES; SETS; WORN CLOTHING AND WORN TEXTILE ARTICLES; RAGS 01/01/1988 31/12/2500 -6301 01/01/1988 31/12/2500 LIBEN Blankets and travelling rugs of all types of textile materials (excl. table covers, bedspreads and articles of bedding and similar furnishing of heading 9404) 01/01/1988 31/12/2500 -630110 01/01/1988 31/12/2500 LIBEN Electric blankets of all types of textile materials 01/01/1988 31/12/2500 -63011000 01/01/1988 31/12/2500 LIBEN Electric blankets of all types of textile materials 01/01/1988 31/12/2500 -630120 01/01/1988 31/12/2500 LIBEN Blankets and travelling rugs of wool or fine animal hair (excl. electric, table covers, bedspreads and articles of bedding and similar furnishing of heading 9404) 01/01/1988 31/12/2500 -63012010 01/01/1988 31/12/2500 LIBEN Blankets and travelling rugs of wool or fine animal hair, knitted or crocheted (excl. electric, table covers, bedspreads and articles of bedding and similar furnishing of heading 9404) 01/01/1988 31/12/2500 -63012090 01/01/2005 31/12/2500 LIBEN Blankets and travelling rugs, of wool or fine animal hair (excl. knitted or crocheted, electric, table covers, bedspreads and articles of bedding and similar furnishing of heading 9404) 01/01/2005 31/12/2500 -63012091 01/01/1988 31/12/2004 LIBEN Blankets and travelling rugs, wholly of wool or fine animal hair (excl. knitted or crocheted, electric, table covers, bedspreads and articles of bedding and similar furnishing of heading 9404) 01/01/1988 31/12/2004 -63012099 01/01/1988 31/12/2004 LIBEN Blankets and travelling rugs, mainly of wool or fine animal hair (excl. wholly of wool or fine animal hair, knitted or crocheted, electric, table covers, bedspreads and articles of bedding and similar furnishing of heading 9404) 01/01/1988 31/12/2004 -630130 01/01/1988 31/12/2500 LIBEN Blankets and travelling rugs of cotton (excl. electric, table covers, bedspreads and articles of bedding and similar furnishing of heading 9404) 01/01/1988 31/12/2500 -63013010 01/01/1988 31/12/2500 LIBEN Blankets and travelling rugs of cotton, knitted or crocheted (excl. electric, table covers, bedspreads and articles of bedding and similar furnishing of heading 9404) 01/01/1988 31/12/2500 -63013090 01/01/1988 31/12/2500 LIBEN Blankets and travelling rugs of cotton (excl. knitted or crocheted, electric, table covers, bedspreads and articles of bedding and similar furnishing of heading 9404) 01/01/1988 31/12/2500 -630140 01/01/1988 31/12/2500 LIBEN Blankets and travelling rugs of synthetic fibres (excl. electric, table covers, bedspreads and articles of bedding and similar furnishing of heading 9404) 01/01/1988 31/12/2500 -63014010 01/01/1988 31/12/2500 LIBEN Blankets and travelling rugs of synthetic fibres, knitted or crocheted (excl. electric, table covers, bedspreads and articles of bedding and similar furnishing of heading 9404) 01/01/1988 31/12/2500 -63014090 01/01/1988 31/12/2500 LIBEN Blankets and travelling rugs of synthetic fibres (excl. knitted or crocheted, electric, table covers, bedspreads and articles of bedding and similar furnishing of heading 9404) 01/01/1988 31/12/2500 -630190 01/01/1988 31/12/2500 LIBEN Blankets and travelling rugs of textile materials (excl. of wool or fine animal hair, cotton or synthetic fibres, electric, table covers, bedspreads and articles of bedding and similar furnishing of heading 9404) 01/01/1988 31/12/2500 -63019010 01/01/1988 31/12/2500 LIBEN Blankets and travelling rugs, knitted or crocheted (excl. of wool or fine animal hair, cotton or synthetic fibres, electric, table covers, bedspreads and articles of bedding and similar furnishing of heading 9404) 01/01/1988 31/12/2500 -63019090 01/01/1988 31/12/2500 LIBEN Blankets and travelling rugs of textile materials (excl. of wool or fine animal hair, cotton or synthetic fibres, knitted or crocheted, electric, table covers, bedspreads and articles of bedding and similar furnishing of heading 9404) 01/01/1988 31/12/2500 -6302 01/01/1988 31/12/2500 LIBEN Bedlinen, table linen, toilet linen and kitchen linen of all types of textile materials (excl. floorcloths, polishing cloths, dishcloths and dusters) 01/01/1988 31/12/2500 -630210 01/01/1988 31/12/2500 LIBEN Bedlinen, knitted or crocheted 01/01/1988 31/12/2500 -63021000 01/01/2005 31/12/2500 LIBEN Bedlinen, knitted or crocheted 01/01/2005 31/12/2500 -63021010 01/01/1988 31/12/2004 LIBEN Bedlinen, knitted or crocheted, of cotton 01/01/1988 31/12/2004 -63021090 01/01/1988 31/12/2004 LIBEN Bedlinen, knitted or crocheted (excl. cotton) 01/01/1988 31/12/2004 -630221 01/01/1988 31/12/2500 LIBEN Printed bedlinen of cotton (excl. knitted or crocheted) 01/01/1988 31/12/2500 -63022100 01/01/1988 31/12/2500 LIBEN Printed bedlinen of cotton (excl. knitted or crocheted) 01/01/1988 31/12/2500 -630222 01/01/1988 31/12/2500 LIBEN Printed bedlinen of man-made fibres (excl. knitted or crocheted) 01/01/1988 31/12/2500 -63022210 01/01/1988 31/12/2500 LIBEN Printed bedlinen of nonwovens of man-made fibres 01/01/1988 31/12/2500 -63022290 01/01/1988 31/12/2500 LIBEN Printed bedlinen of man-made fibres (excl. nonwovens and knitted or crocheted) 01/01/1988 31/12/2500 -630229 01/01/1988 31/12/2500 LIBEN Printed bedlinen of textile materials (excl. cotton and man-made fibres, knitted or crocheted) 01/01/1988 31/12/2500 -63022910 01/01/1988 31/12/2500 LIBEN Printed bedlinen of flax or ramie (excl. knitted or crocheted) 01/01/1988 31/12/2500 -63022990 01/01/1988 31/12/2500 LIBEN Printed bedlinen of textile materials (excl. of cotton and man-made fibres, flax or ramie, knitted or crocheted) 01/01/1988 31/12/2500 -630231 01/01/1988 31/12/2500 LIBEN Bedlinen of cotton (excl. printed, knitted or crocheted) 01/01/1988 31/12/2500 -63023100 01/01/2005 31/12/2500 LIBEN Bedlinen of cotton (excl. printed, knitted or crocheted) 01/01/2005 31/12/2500 -63023110 01/01/1988 31/12/2004 LIBEN Bedlinen of cotton mixed with flax (excl. printed, knitted or crocheted) 01/01/1988 31/12/2004 -63023190 01/01/1988 31/12/2004 LIBEN Bedlinen of cotton (excl. mixed with flax, printed, knitted or crocheted) 01/01/1988 31/12/2004 -630232 01/01/1988 31/12/2500 LIBEN Bedlinen of man-made fibres (excl. printed, knitted or crocheted) 01/01/1988 31/12/2500 -63023210 01/01/1988 31/12/2500 LIBEN Bedlinen of nonwovens of man-made fibres (excl. printed) 01/01/1988 31/12/2500 -63023290 01/01/1988 31/12/2500 LIBEN Bedlinen of man-made fibres (excl. nonwovens, printed, knitted or crocheted) 01/01/1988 31/12/2500 -630239 01/01/1988 31/12/2500 LIBEN Bedlinen of textile materials (excl. of cotton and man-made fibres, printed, knitted or crocheted) 01/01/1988 31/12/2500 -63023910 01/01/1988 31/12/2004 LIBEN Bedlinen of flax (excl. printed, knitted or crocheted) 01/01/1988 31/12/2004 -63023920 01/01/2005 31/12/2500 LIBEN Bedlinen of flax or ramie (excl. printed, knitted or crocheted) 01/01/2005 31/12/2500 -63023930 01/01/1988 31/12/2004 LIBEN Bedlinen of ramie (excl. printed, knitted or crocheted) 01/01/1988 31/12/2004 -63023990 01/01/1988 31/12/2500 LIBEN Bedlinen of textile materials (excl. of cotton, man-made fibres, flax or ramie, printed, knitted or crocheted) 01/01/1988 31/12/2500 -630240 01/01/1988 31/12/2500 LIBEN Table linen, knitted or crocheted 01/01/1988 31/12/2500 -63024000 01/01/1988 31/12/2500 LIBEN Table linen, knitted or crocheted 01/01/1988 31/12/2500 -630251 01/01/1988 31/12/2500 LIBEN Table linen of cotton (excl. knitted or crocheted) 01/01/1988 31/12/2500 -63025100 01/01/2005 31/12/2500 LIBEN Table linen of cotton (excl. knitted or crocheted) 01/01/2005 31/12/2500 -63025110 01/01/1988 31/12/2004 LIBEN Table linen of cotton mixed with flax (excl. knitted or crocheted) 01/01/1988 31/12/2004 -63025190 01/01/1988 31/12/2004 LIBEN Table linen of cotton (excl. mixed with flax, knitted or crocheted) 01/01/1988 31/12/2004 -630252 01/01/1988 31/12/2006 LIBEN Table linen of flax (excl. knitted or crocheted) 01/01/1988 31/12/2006 -63025200 01/01/1988 31/12/2006 LIBEN Table linen of flax (excl. knitted or crocheted) 01/01/1988 31/12/2006 -630253 01/01/1988 31/12/2500 LIBEN Table linen of man-made fibres (excl. knitted or crocheted) 01/01/1988 31/12/2500 -63025310 01/01/1988 31/12/2500 LIBEN Table linen of nonwovens of man-made fibres 01/01/1988 31/12/2500 -63025390 01/01/1988 31/12/2500 LIBEN Table linen of man-made fibres (excl. nonwovens, knitted or crocheted) 01/01/1988 31/12/2500 -630259 01/01/1988 31/12/2500 LIBEN Table linen of textile materials (excl. of cotton or man-made fibres, knitted or crocheted) 01/01/1988 31/12/2500 -63025900 01/01/1988 31/12/2006 LIBEN Table linen of textile materials (excl. of cotton, flax or man-made fibres, knitted or crocheted) 01/01/1988 31/12/2006 -63025910 01/01/2007 31/12/2500 LIBEN Table linen of flax (excl. knitted or crocheted) 01/01/2007 31/12/2500 -63025990 01/01/2007 31/12/2500 LIBEN Table linen of textile materials (excl. of cotton, flax or man-made fibres, knitted or crocheted) 01/01/2007 31/12/2500 -630260 01/01/1988 31/12/2500 LIBEN Toilet linen and kitchen linen, of terry towelling or similar terry fabrics of cotton (excl. floorcloths, polishing cloths, dishcloths and dusters) 01/01/1988 31/12/2500 -63026000 01/01/1988 31/12/2500 LIBEN Toilet linen and kitchen linen, of terry towelling or similar terry fabrics of cotton (excl. floorcloths, polishing cloths, dishcloths and dusters) 01/01/1988 31/12/2500 -630291 01/01/1988 31/12/2500 LIBEN Toilet linen and kitchen linen of cotton (excl. of terry fabrics, floorcloths, polishing cloths, dishcloths and dusters) 01/01/1988 31/12/2500 -63029100 01/01/2005 31/12/2500 LIBEN Toilet linen and kitchen linen of cotton (excl. of terry fabrics, floorcloths, polishing cloths, dishcloths and dusters) 01/01/2005 31/12/2500 -63029110 01/01/1988 31/12/2004 LIBEN Toilet linen and kitchen linen of cotton mixed with flax (excl. of terry fabrics, floorcloths, polishing cloths, dishcloths and dusters) 01/01/1988 31/12/2004 -63029190 01/01/1988 31/12/2004 LIBEN Toilet linen and kitchen linen of cotton (excl. mixed with flax, of terry fabrics, floorcloths, polishing cloths, dishcloths and dusters) 01/01/1988 31/12/2004 -630292 01/01/1988 31/12/2006 LIBEN Toilet linen and kitchen linen of flax (excl. floorcloths, polishing cloths, dishcloths and dusters) 01/01/1988 31/12/2006 -63029200 01/01/1988 31/12/2006 LIBEN Toilet linen and kitchen linen of flax (excl. floorcloths, polishing cloths, dishcloths and dusters) 01/01/1988 31/12/2006 -630293 01/01/1988 31/12/2500 LIBEN Toilet linen and kitchen linen of man-made fibres (excl. floorcloths, polishing cloths, dishcloths and dusters) 01/01/1988 31/12/2500 -63029310 01/01/1988 31/12/2500 LIBEN Toilet linen and kitchen linen of nonwovens of man-made fibres (excl. floorcloths, polishing cloths, dishcloths and dusters) 01/01/1988 31/12/2500 -63029390 01/01/1988 31/12/2500 LIBEN Toilet linen and kitchen linen of man-made fibres (excl. nonwovens, floorcloths, polishing cloths, dishcloths and dusters) 01/01/1988 31/12/2500 -630299 01/01/1988 31/12/2500 LIBEN Toilet linen and kitchen linen of textile materials (excl. of cotton or man-made fibres, floorcloths, polishing cloths, dishcloths and dusters) 01/01/1988 31/12/2500 -63029900 01/01/1988 31/12/2006 LIBEN Toilet linen and kitchen linen of textile materials (excl. of cotton, flax or man-made fibres, floorcloths, polishing cloths, dishcloths and dusters) 01/01/1988 31/12/2006 -63029910 01/01/2007 31/12/2500 LIBEN Toilet linen and kitchen linen of flax (excl. floorcloths, polishing cloths, dishcloths and dusters) 01/01/2007 31/12/2500 -63029990 01/01/2007 31/12/2500 LIBEN Toilet linen and kitchen linen of textile materials (excl. of cotton, flax or man-made fibres, floorcloths, polishing cloths, dishcloths and dusters) 01/01/2007 31/12/2500 -6303 01/01/1988 31/12/2500 LIBEN Curtains, incl. drapes, and interior blinds; curtain or bed valances of all types of textile materials (excl. awnings and sunblinds) 01/01/1988 31/12/2500 -630311 01/01/1988 31/12/2006 LIBEN Curtains, incl. drapes, and interior blinds, curtain or bed valances of cotton, knitted or crocheted (excl. awnings and sunblinds) 01/01/1988 31/12/2006 -63031100 01/01/1988 31/12/2006 LIBEN Curtains, incl. drapes, and interior blinds, curtain or bed valances of cotton, knitted or crocheted (excl. awnings and sunblinds) 01/01/1988 31/12/2006 -630312 01/01/1988 31/12/2500 LIBEN Curtains, incl. drapes, and interior blinds, curtain or bed valances of synthetic fibres, knitted or crocheted (excl. awnings and sunblinds) 01/01/1988 31/12/2500 -63031200 01/01/1988 31/12/2500 LIBEN Curtains, incl. drapes, and interior blinds, curtain or bed valances of synthetic fibres, knitted or crocheted (excl. awnings and sunblinds) 01/01/1988 31/12/2500 -630319 01/01/1988 31/12/2500 LIBEN Curtains, incl. drapes, and interior blinds, curtain or bed valances, knitted or crocheted (excl. of synthetic fibres, awnings and sunblinds) 01/01/1988 31/12/2500 -63031900 01/01/1988 31/12/2006 LIBEN Curtains, incl. drapes, and interior blinds, curtain or bed valances, knitted or crocheted (excl. of cotton or synthetic fibres, awnings and sunblinds) 01/01/1988 31/12/2006 -63031900 01/01/2007 31/12/2500 LIBEN Curtains, incl. drapes, and interior blinds, curtain or bed valances, knitted or crocheted (excl. of synthetic fibres, awnings and sunblinds) 01/01/2007 31/12/2500 -630391 01/01/1988 31/12/2500 LIBEN Curtains, incl. drapes, and interior blinds, curtain or bed valances of cotton (excl. knitted or crocheted, awnings and sunblinds) 01/01/1988 31/12/2500 -63039100 01/01/1988 31/12/2500 LIBEN Curtains, incl. drapes, and interior blinds, curtain or bed valances of cotton (excl. knitted or crocheted, awnings and sunblinds) 01/01/1988 31/12/2500 -630392 01/01/1988 31/12/2500 LIBEN Curtains, incl. drapes, and interior blinds, curtain or bed valances of synthetic fibres (excl. knitted or crocheted, awnings and sunblinds) 01/01/1988 31/12/2500 -63039210 01/01/1988 31/12/2500 LIBEN Curtains, incl. drapes, and interior blinds, curtain or bed valances of nonwovens of synthetic fibres (excl. awnings and sunblinds) 01/01/1988 31/12/2500 -63039290 01/01/1988 31/12/2500 LIBEN Curtains, incl. drapes, and interior blinds, curtain or bed valances of synthetic fibres (excl. nonwovens, knitted or crocheted, awnings and sunblinds) 01/01/1988 31/12/2500 -630399 01/01/1988 31/12/2500 LIBEN Curtains, incl. drapes, and interior blinds, curtain or bed valances of textile materials (excl. of cotton and synthetic fibres, knitted or crocheted, awnings and sunblinds) 01/01/1988 31/12/2500 -63039910 01/01/1988 31/12/2500 LIBEN Curtains, incl. drapes, and interior blinds, curtain or bed valances of nonwovens (excl. of cotton and synthetic fibres, awnings and sunblinds) 01/01/1988 31/12/2500 -63039990 01/01/1988 31/12/2500 LIBEN Curtains, incl. drapes, and interior blinds, curtain or bed valances of textile materials (excl. of cotton and synthetic fibres or of nonwovens, knitted or crocheted, awnings and sunblinds) 01/01/1988 31/12/2500 -6304 01/01/1988 31/12/2500 LIBEN Articles for interior furnishing, of all types of textile materials (excl. blankets and travelling rugs, bedlinen, table linen, toilet linen, kitchen linen, curtains, incl. drapes, interior blinds, curtain or bed valances, lampshades and articles of heading 9404) 01/01/1988 31/12/2500 -630411 01/01/1988 31/12/2500 LIBEN Knitted or crocheted bedspreads (excl. bedlinen, quilts and eiderdowns) 01/01/1988 31/12/2500 -63041100 01/01/1988 31/12/2500 LIBEN Knitted or crocheted bedspreads (excl. bedlinen, quilts and eiderdowns) 01/01/1988 31/12/2500 -630419 01/01/1988 31/12/2500 LIBEN Bedspreads of all types of textile materials (excl. knitted or crocheted, bedlinen, quilts and eiderdowns) 01/01/1988 31/12/2500 -63041910 01/01/1988 31/12/2500 LIBEN Bedspreads of cotton (excl. knitted or crocheted, bedlinen, quilts and eiderdowns) 01/01/1988 31/12/2500 -63041930 01/01/1988 31/12/2500 LIBEN Bedspreads of flax or ramie (excl. knitted or crocheted, bedlinen, quilts and eiderdowns) 01/01/1988 31/12/2500 -63041990 01/01/1988 31/12/2500 LIBEN Bedspreads of textile materials (excl. of cotton, flax or ramie, knitted or crocheted, bedlinen, quilts and eiderdowns) 01/01/1988 31/12/2500 -630420 01/01/2017 31/12/2500 LIBEN Bed nets, warp knit, antimalarial 01/01/2017 31/12/2500 -63042000 01/01/2017 31/12/2500 LIBEN Bed nets, warp knit, antimalarial 01/01/2017 31/12/2500 -630491 01/01/1988 31/12/2500 LIBEN Articles for interior furnishing, knitted or crocheted (excl. blankets and travelling rugs, bedlinen, table linen, toilet linen, kitchen linen, curtains, incl. drapes, interior blinds, curtain or bed valances, bedspreads, antimalarial bed nets, lampshades and articles of heading 9404) 01/01/1988 31/12/2500 -63049100 01/01/1988 31/12/2016 LIBEN Articles for interior furnishing, knitted or crocheted (excl. blankets and travelling rugs, bedlinen, table linen, toilet linen, kitchen linen, curtains, incl. drapes, interior blinds, curtain or bed valances, bedspreads, lampshades and articles of heading 9404) 01/01/1988 31/12/2016 -63049100 01/01/2017 31/12/2500 LIBEN Articles for interior furnishing, knitted or crocheted (excl. blankets and travelling rugs, bedlinen, table linen, toilet linen, kitchen linen, curtains, incl. drapes, interior blinds, curtain or bed valances, bedspreads, antimalarial bed nets, lampshades and articles of heading 9404) 01/01/2017 31/12/2500 -630492 01/01/1988 31/12/2500 LIBEN Articles for interior furnishing, of cotton (excl. knitted or crocheted, blankets and travelling rugs, bedlinen, table linen, toilet linen, kitchen linen, curtains, incl. drapes, interior blinds, curtain or bed valances, bedspreads, lampshades and articles of heading 9404) 01/01/1988 31/12/2500 -63049200 01/01/1988 31/12/2500 LIBEN Articles for interior furnishing, of cotton (excl. knitted or crocheted, blankets and travelling rugs, bedlinen, table linen, toilet linen, kitchen linen, curtains, incl. drapes, interior blinds, curtain or bed valances, bedspreads, lampshades and articles of heading 9404) 01/01/1988 31/12/2500 -630493 01/01/1988 31/12/2500 LIBEN Articles for interior furnishing, of synthetic fibres (excl. knitted or crocheted, blankets and travelling rugs, bedlinen, table linen, toilet linen, kitchen linen, curtains, incl. drapes, interior blinds, curtain or bed valances, bedspreads, lampshades and articles of heading 9404) 01/01/1988 31/12/2500 -63049300 01/01/1988 31/12/2500 LIBEN Articles for interior furnishing, of synthetic fibres (excl. knitted or crocheted, blankets and travelling rugs, bedlinen, table linen, toilet linen, kitchen linen, curtains, incl. drapes, interior blinds, curtain or bed valances, bedspreads, lampshades and articles of heading 9404) 01/01/1988 31/12/2500 -630499 01/01/1988 31/12/2500 LIBEN Articles for interior furnishing, of textile materials (excl. of cotton or synthetic fibres, knitted or crocheted, blankets and travelling rugs, bedlinen, table linen, toilet linen, kitchen linen, curtains, incl. drapes, interior blinds, curtain or bed valances, bedspreads, lampshades and articles of heading 9404) 01/01/1988 31/12/2500 -63049900 01/01/1988 31/12/2500 LIBEN Articles for interior furnishing, of textile materials (excl. of cotton or synthetic fibres, knitted or crocheted, blankets and travelling rugs, bedlinen, table linen, toilet linen, kitchen linen, curtains, incl. drapes, interior blinds, curtain or bed valances, bedspreads, lampshades and articles of heading 9404) 01/01/1988 31/12/2500 -6304I1 01/01/2003 31/12/2005 LIBEN Components of complete industrial plants of heading 6304; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/2003 31/12/2005 -6304I100 01/01/2003 31/12/2005 LIBEN Components of complete industrial plants of heading 6304; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/2003 31/12/2005 -6305 01/01/1988 31/12/2500 LIBEN Sacks and bags, of a kind used for the packing of goods, of all types of textile materials 01/01/1988 31/12/2500 -630510 01/01/1988 31/12/2500 LIBEN Sacks and bags, for the packing of goods, of jute or other textile bast fibres of heading 5303 01/01/1988 31/12/2500 -63051010 01/01/1988 31/12/2500 LIBEN Used sacks and bags, for the packing of goods, of jute or other textile bast fibres of heading 5303 01/01/1988 31/12/2500 -63051090 01/01/1988 31/12/2500 LIBEN Sacks and bags, for the packing of goods, of jute or other textile bast fibres of heading 5303 (excl. used) 01/01/1988 31/12/2500 -630520 01/01/1988 31/12/2500 LIBEN Sacks and bags, for the packing of goods, of cotton 01/01/1988 31/12/2500 -63052000 01/01/1988 31/12/2500 LIBEN Sacks and bags, for the packing of goods, of cotton 01/01/1988 31/12/2500 -630531 01/01/1988 31/12/1995 LIBEN Sacks and bags, for the packing of goods, of polyethylene or polypropylene strip or similar 01/01/1988 31/12/1995 -63053110 01/01/1988 31/12/1995 LIBEN Sacks and bags, for the packing of goods, of polyethylene or polypropylene strip or similar, knitted or crocheted 01/01/1988 31/12/1995 -63053191 01/01/1988 31/12/1995 LIBEN Sacks and bags, for the packing of goods, of polyethylene or polypropylene strip or similar, of fabric weighing <= 120 g/m2 (excl. knitted or crocheted) 01/01/1988 31/12/1995 -63053199 01/01/1988 31/12/1995 LIBEN Sacks and bags, for the packing of goods, of polyethylene or polypropylene strip or similar, of fabric weighing > 120 g/m2 (excl. knitted or crocheted) 01/01/1988 31/12/1995 -630532 01/01/1996 31/12/2500 LIBEN Flexible intermediate bulk containers, for the packing of goods, of synthetic or man-made textile materials 01/01/1996 31/12/2500 -63053211 01/01/1996 31/12/2500 LIBEN Flexible intermediate bulk containers, for the packing of goods, of polyethylene or polypropylene strip or the like, knitted or crocheted 01/01/1996 31/12/2500 -63053219 01/01/2009 31/12/2500 LIBEN Flexible intermediate bulk containers, for the packing of goods, of polyethylene or polypropylene strip or the like (excl. knitted or crocheted) 01/01/2009 31/12/2500 -63053281 01/01/1996 31/12/2008 LIBEN Flexible intermediate bulk containers, for the packing of goods, of polyethylene or polypropylene strip or the like, of fabric weighing <= 120 g/m² (excl. knitted or crocheted) 01/01/1996 31/12/2008 -63053289 01/01/1996 31/12/2008 LIBEN Flexible intermediate bulk containers, for the packing of goods, of polyethylene or polypropylene strip or the like, of fabric weighing > 120 g/m² (excl. knitted or crocheted) 01/01/1996 31/12/2008 -63053290 01/01/1996 31/12/2500 LIBEN Flexible intermediate bulk containers, for the packing of goods, of man-made textile materials (excl. of polyethylene or polypropylene strip or the like) 01/01/1996 31/12/2500 -630533 01/01/1996 31/12/2500 LIBEN Sacks and bags, for the packing of goods, of polyethylene or polypropylene strip or the like (excl. flexible intermediate bulk containers) 01/01/1996 31/12/2500 -63053310 01/01/1996 31/12/2500 LIBEN Sacks and bags, for the packing of goods, of polyethylene or polypropylene strip or the like, knitted or crocheted (excl. flexible intermediate bulk containers) 01/01/1996 31/12/2500 -63053390 01/01/2009 31/12/2500 LIBEN Sacks and bags, for the packing of goods, of polyethylene or polypropylene strip or the like (excl. knitted or crocheted and flexible intermediate bulk containers) 01/01/2009 31/12/2500 -63053391 01/01/1996 31/12/2008 LIBEN Sacks and bags, for the packing of goods, of polyethylene or polypropylene strip or the like, of fabric weighing <= 120 g/m² (excl. knitted or crocheted and flexible intermediate bulk containers) 01/01/1996 31/12/2008 -63053399 01/01/1996 31/12/2008 LIBEN Sacks and bags, for the packing of goods, of polyethylene or polypropylene strip or the like, of fabric weighing > 120 g/m² (excl. knitted or crocheted and flexible intermediate bulk containers) 01/01/1996 31/12/2008 -630539 01/01/1988 31/12/2500 LIBEN Sacks and bags, for the packing of goods, of man-made textile materials (excl. of polyethylene or polypropylene strip or the like, and flexible intermediate bulk containers) 01/01/1988 31/12/2500 -63053900 01/01/1988 31/12/1995 LIBEN Sacks and bags, for the packing of goods, of man-made textile materials (excl. of polyethylene or polypropylene strip or similar) 01/01/1988 31/12/1995 -63053900 01/01/1996 31/12/2500 LIBEN Sacks and bags, for the packing of goods, of man-made textile materials (excl. of polyethylene or polypropylene strip or the like, and flexible intermediate bulk containers) 01/01/1996 31/12/2500 -630590 01/01/1988 31/12/2500 LIBEN Sacks and bags, for the packing of goods, of textile materials (excl. man-made, cotton, jute or other textile bast fibres of heading 5303) 01/01/1988 31/12/2500 -63059000 01/01/1988 31/12/2500 LIBEN Sacks and bags, for the packing of goods, of textile materials (excl. man-made, cotton, jute or other textile bast fibres of heading 5303) 01/01/1988 31/12/2500 -6306 01/01/1988 31/12/2500 LIBEN Tarpaulins, awnings and sunblinds; tents; sails for boats, sailboards or landcraft; camping goods of all types of textile materials (excl. flat protective coverings of light woven fabrics; umbrella and play tents; rucksacks, napsacks and similar containers; sleeping bags, mattresses and pillows, incl. their fillings) 01/01/1988 31/12/2500 -630611 01/01/1988 31/12/2006 LIBEN Tarpaulins, awnings and sunblinds of cotton (excl. flat covers of light fabrics made up as tarpaulins) 01/01/1988 31/12/2006 -63061100 01/01/1988 31/12/2006 LIBEN Tarpaulins, awnings and sunblinds of cotton (excl. flat covers of light fabrics made up as tarpaulins) 01/01/1988 31/12/2006 -630612 01/01/1988 31/12/2500 LIBEN Tarpaulins, awnings and sunblinds of synthetic fibres (excl. flat covers of light fabrics made up as tarpaulins) 01/01/1988 31/12/2500 -63061200 01/01/1988 31/12/2500 LIBEN Tarpaulins, awnings and sunblinds of synthetic fibres (excl. flat covers of light fabrics made up as tarpaulins) 01/01/1988 31/12/2500 -630619 01/01/1988 31/12/2500 LIBEN Tarpaulins, awnings and sunblinds of textile materials (excl. of synthetic fibres and flat covers of light fabrics made up as tarpaulins) 01/01/1988 31/12/2500 -63061900 01/01/1988 31/12/2006 LIBEN Tarpaulins, awnings and sunblinds of textile materials (excl. cotton or synthetic fibres and flat covers of light fabrics made up as tarpaulins) 01/01/1988 31/12/2006 -63061900 01/01/2007 31/12/2500 LIBEN Tarpaulins, awnings and sunblinds of textile materials (excl. of synthetic fibres and flat covers of light fabrics made up as tarpaulins) 01/01/2007 31/12/2500 -630621 01/01/1988 31/12/2006 LIBEN Tents of cotton (excl. fly sheets) 01/01/1988 31/12/2006 -63062100 01/01/1988 31/12/2006 LIBEN Tents of cotton (excl. fly sheets) 01/01/1988 31/12/2006 -630622 01/01/1988 31/12/2500 LIBEN Tents of synthetic fibres (excl. umbrella and play tents) 01/01/1988 31/12/2500 -63062200 01/01/1988 31/12/2500 LIBEN Tents of synthetic fibres (excl. umbrella and play tents) 01/01/1988 31/12/2500 -630629 01/01/1988 31/12/2500 LIBEN Tents of textile materials (excl. of synthetic fibres, and umbrella and play tents) 01/01/1988 31/12/2500 -63062900 01/01/1988 31/12/2006 LIBEN Tents of textile materials (excl. cotton or synthetic fibres and fly sheets) 01/01/1988 31/12/2006 -63062900 01/01/2007 31/12/2500 LIBEN Tents of textile materials (excl. of synthetic fibres, and umbrella and play tents) 01/01/2007 31/12/2500 -630630 01/01/2007 31/12/2500 LIBEN Sails for boats, sailboards or landcraft, of textile materials 01/01/2007 31/12/2500 -63063000 01/01/2007 31/12/2500 LIBEN Sails for boats, sailboards or landcraft, of textile materials 01/01/2007 31/12/2500 -630631 01/01/1988 31/12/2006 LIBEN Sails for boats, sailboards or landcraft, of synthetic fibres 01/01/1988 31/12/2006 -63063100 01/01/1988 31/12/2006 LIBEN Sails for boats, sailboards or landcraft, of synthetic fibres 01/01/1988 31/12/2006 -630639 01/01/1988 31/12/2006 LIBEN Sails for boats, sailboards or landcraft, of textile materials (excl. synthetic fibres) 01/01/1988 31/12/2006 -63063900 01/01/1988 31/12/2006 LIBEN Sails for boats, sailboards or landcraft, of textile materials (excl. synthetic fibres) 01/01/1988 31/12/2006 -630640 01/01/2007 31/12/2500 LIBEN Pneumatic mattresses of textile materials 01/01/2007 31/12/2500 -63064000 01/01/2007 31/12/2500 LIBEN Pneumatic mattresses of textile materials 01/01/2007 31/12/2500 -630641 01/01/1988 31/12/2006 LIBEN Pneumatic mattresses of cotton 01/01/1988 31/12/2006 -63064100 01/01/1988 31/12/2006 LIBEN Pneumatic mattresses of cotton 01/01/1988 31/12/2006 -630649 01/01/1988 31/12/2006 LIBEN Pneumatic mattresses of textile materials (excl. cotton) 01/01/1988 31/12/2006 -63064900 01/01/1988 31/12/2006 LIBEN Pneumatic mattresses of textile materials (excl. cotton) 01/01/1988 31/12/2006 -630690 01/01/2012 31/12/2500 LIBEN Camping goods of textile materials (excl. tents, awnings and sunblinds, sails, pneumatic mattresses, rucksacks, knapsacks and similar receptacles, filled sleeping bags, mattresses and cushions) 01/01/2012 31/12/2500 -63069000 01/01/2012 31/12/2500 LIBEN Camping goods of textile materials (excl. tents, awnings and sunblinds, sails, pneumatic mattresses, rucksacks, knapsacks and similar receptacles, filled sleeping bags, mattresses and cushions) 01/01/2012 31/12/2500 -630691 01/01/1988 31/12/2011 LIBEN Camping goods of cotton (excl. tents, awnings and sunblinds, sails, pneumatic mattresses, rucksacks, knapsacks and similar receptacles, filled sleeping bags, mattresses and cushions) 01/01/1988 31/12/2011 -63069100 01/01/1988 31/12/2011 LIBEN Camping goods of cotton (excl. tents, awnings and sunblinds, sails, pneumatic mattresses, rucksacks, knapsacks and similar receptacles, filled sleeping bags, mattresses and cushions) 01/01/1988 31/12/2011 -630699 01/01/1988 31/12/2011 LIBEN Camping goods of textile materials (excl. of cotton, tents, awnings and sunblinds, sails, pneumatic mattresses, rucksacks, knapsacks and similar receptacles, filled sleeping bags, mattresses and cushions) 01/01/1988 31/12/2011 -63069900 01/01/1988 31/12/2011 LIBEN Camping goods of textile materials (excl. of cotton, tents, awnings and sunblinds, sails, pneumatic mattresses, rucksacks, knapsacks and similar receptacles, filled sleeping bags, mattresses and cushions) 01/01/1988 31/12/2011 -6307 01/01/1988 31/12/2500 LIBEN Made-up articles of textile materials, incl. dress patterns, n.e.s. 01/01/1988 31/12/2500 -630710 01/01/1988 31/12/2500 LIBEN Floorcloths, dishcloths, dusters and similar cleaning cloths, of all types of textile materials 01/01/1988 31/12/2500 -63071010 01/01/1988 31/12/2500 LIBEN Floorcloths, dishcloths, dusters and similar cleaning cloths, knitted or crocheted 01/01/1988 31/12/2500 -63071030 01/01/1988 31/12/2500 LIBEN Floorcloths, dishcloths, dusters and similar cleaning cloths, of nonwovens 01/01/1988 31/12/2500 -63071090 01/01/1988 31/12/2500 LIBEN Floorcloths, dishcloths, dusters and similar cleaning cloths, of all types of textile materials (excl. knitted or crocheted and nonwovens) 01/01/1988 31/12/2500 -630720 01/01/1988 31/12/2500 LIBEN Life jackets and life belts, of all types of textile materials 01/01/1988 31/12/2500 -63072000 01/01/1988 31/12/2500 LIBEN Life jackets and life belts, of all types of textile materials 01/01/1988 31/12/2500 -630790 01/01/1988 31/12/2500 LIBEN Made-up articles of textile materials, incl. dress patterns, n.e.s. 01/01/1988 31/12/2500 -63079010 01/01/1988 31/12/2011 LIBEN Made-up articles of textile materials, incl. dress patterns, knitted or crocheted, n.e.s. 01/01/1988 31/12/2011 -63079010 01/01/2012 31/12/2500 LIBEN Made-up articles of textile materials, incl. dress patterns, knitted or crocheted, n.e.s. 01/01/2012 31/12/2500 -63079091 01/01/1988 31/12/2500 LIBEN Made-up articles of felt, incl. dress patterns, n.e.s. 01/01/1988 31/12/2500 -63079092 01/01/2012 31/12/2500 LIBEN Single-use drapes used during surgical procedures made up of nonwovens 01/01/2012 31/12/2500 -63079093 01/01/2021 31/12/2500 LIBEN Filtering facepieces (FFP) according to EN149, and other masks conforming to a similar standard for masks as respiratory protective devices to protect against particles 01/01/2021 31/12/2500 -63079095 01/01/2021 31/12/2500 LIBEN Protective face masks (excl. filtering facepieces FFP according to EN149, and other masks conforming to a similar standard for masks as respiratory protective devices to protect against particles) 01/01/2021 31/12/2500 -63079098 01/01/2012 31/12/2020 LIBEN Made-up articles of textile materials, incl. dress patterns, n.e.s. (excl. of felt, knitted or crocheted, single-use drapes used during surgical procedures made up of nonwovens, and protective face masks) 01/01/2012 31/12/2020 -63079098 01/01/2021 31/12/2500 LIBEN Made-up articles of textile materials, incl. dress patterns, n.e.s. (excl. of felt, knitted or crocheted, single-use drapes used during surgical procedures made up of nonwovens, and protective face masks) 01/01/2021 31/12/2500 -63079099 01/01/1988 31/12/2011 LIBEN Made-up articles of textile materials, incl. dress patterns, n.e.s. (excl. of felt, and knitted or crocheted) 01/01/1988 31/12/2011 -6308 01/01/1988 31/12/2500 LIBEN Sets consisting of woven fabric and yarn, whether or not with accessories, for making up into rugs, tapestries, embroidered tablecloths or serviettes, or similar textile articles, put up in packings for retail sale (excl. sets for making up into articles of clothing) 01/01/1988 31/12/2500 -630800 01/01/1988 31/12/2500 LIBEN Sets consisting of woven fabric and yarn, whether or not with accessories, for making up into rugs, tapestries, embroidered tablecloths or serviettes, or similar textile articles, put up in packings for retail sale (excl. sets for making up into articles of clothing) 01/01/1988 31/12/2500 -63080000 01/01/1988 31/12/2500 LIBEN Sets consisting of woven fabric and yarn, whether or not with accessories, for making up into rugs, tapestries, embroidered tablecloths or serviettes, or similar textile articles, put up in packings for retail sale (excl. sets for making up into articles of clothing) 01/01/1988 31/12/2500 -6309 01/01/1988 31/12/2500 LIBEN Worn clothing and clothing accessories, blankets and travelling rugs, household linen and articles for interior furnishing, of all types of textile materials, incl. all types of footwear and headgear, showing signs of appreciable wear and presented in bulk or in bales, sacks or similar packings (excl. carpets, other floor coverings and tapestries) 01/01/1988 31/12/2500 -630900 01/01/1988 31/12/2500 LIBEN Worn clothing and clothing accessories, blankets and travelling rugs, household linen and articles for interior furnishing, of all types of textile materials, incl. all types of footwear and headgear, showing signs of appreciable wear and presented in bulk or in bales, sacks or similar packings (excl. carpets, other floor coverings and tapestries) 01/01/1988 31/12/2500 -63090000 01/01/1988 31/12/2500 LIBEN Worn clothing and clothing accessories, blankets and travelling rugs, household linen and articles for interior furnishing, of all types of textile materials, incl. all types of footwear and headgear, showing signs of appreciable wear and presented in bulk or in bales, sacks or similar packings (excl. carpets, other floor coverings and tapestries) 01/01/1988 31/12/2500 -6310 01/01/1988 31/12/2500 LIBEN Used or new rags, scrap twine, cordage, rope and cables and worn-out articles thereof, of textile materials 01/01/1988 31/12/2500 -631010 01/01/1988 31/12/2500 LIBEN Used or new rags, scrap twine, cordage, rope and cables and worn-out articles thereof, of textile materials, sorted 01/01/1988 31/12/2500 -63101000 01/01/2009 31/12/2500 LIBEN Used or new rags, scrap twine, cordage, rope and cables and worn-out articles thereof, of textile materials, sorted 01/01/2009 31/12/2500 -63101010 01/01/1988 31/12/2008 LIBEN Used or new rags, scrap twine, cordage, rope and cables and worn-out articles thereof, of wool or fine or coarse animal hair, sorted 01/01/1988 31/12/2008 -63101030 01/01/1988 31/12/2008 LIBEN Used or new rags, scrap twine, cordage, rope and cables and worn-out articles thereof, of flax or cotton, sorted 01/01/1988 31/12/2008 -63101090 01/01/1988 31/12/2008 LIBEN Used or new rags, scrap twine, cordage, rope and cables and worn-out articles thereof, of textile materials, sorted (excl. of flax, cotton, wool or fine or coarse animal hair) 01/01/1988 31/12/2008 -631090 01/01/1988 31/12/2500 LIBEN Used or new rags, scrap twine, cordage, rope and cables and worn-out articles thereof, of textile materials (excl. sorted) 01/01/1988 31/12/2500 -63109000 01/01/1988 31/12/2500 LIBEN Used or new rags, scrap twine, cordage, rope and cables and worn-out articles thereof, of textile materials (excl. sorted) 01/01/1988 31/12/2500 -63CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 63 01/01/2002 31/12/2500 -63CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 63 01/01/2002 31/12/2500 -63CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 63 01/01/2002 31/12/2500 -63EE 01/01/1988 31/12/2004 LIBEN Sets of goods of chapter 63 01/01/1988 31/12/2004 -63EEE0 01/01/1988 31/12/2004 LIBEN Sets of goods of chapter 63 01/01/1988 31/12/2004 -63EEE000 01/01/1988 31/12/2004 LIBEN Sets of goods of chapter 63 01/01/1988 31/12/2004 -63II 01/01/1988 31/12/2500 LIBEN Components of complete industrial plants of chapter 63 01/01/1988 31/12/2500 -63III0 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -63III0 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 63; 01/01/2006 31/12/2500 -63III000 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -63III000 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 63 01/01/2006 31/12/2500 -63III1 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -63III100 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -63III2 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -63III200 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -63III3 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -63III300 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -63III4 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -63III400 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -63III5 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; food, drink and tobacco industry 01/01/1988 31/12/1992 -63III500 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; food, drink and tobacco industry 01/01/1988 31/12/1992 -63III6 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -63III6 01/01/2003 31/12/2005 LIBEN Components of complete industrial plants of chapter 63; textile, leather, footwear and clothing industry 01/01/2003 31/12/2005 -63III600 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -63III600 01/01/2003 31/12/2005 LIBEN Components of complete industrial plants of chapter 63; textile, leather, footwear and clothing industry 01/01/2003 31/12/2005 -63III7 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -63III700 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -63III8 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/1992 -63III800 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 63; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/1992 -63III9 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 63; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -63III900 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 63; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -63MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -63MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -63MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -63PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 63 carried by post 01/01/1988 31/12/2500 -63PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 63 carried by post 01/01/1988 31/12/2500 -63PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 63 carried by post 01/01/1988 31/12/2500 -63SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 63 01/01/1988 31/12/2500 -63SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 63 and SITC section 0 01/01/1997 31/12/2001 -63SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 63 and SITC group 000 01/01/1997 31/12/2001 -63SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 63 and SITC section 2 01/01/1997 31/12/2500 -63SSS269 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 63 and SITC group 269 01/01/1997 31/12/2500 -63SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 63 and SITC section 6 01/01/1997 31/12/2500 -63SSS658 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 63 and SITC group 658 01/01/1997 31/12/2500 -63SSS7 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 63 and SITC section 7 01/01/1997 31/12/2500 -63SSS775 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 63 and SITC group 775 01/01/1997 31/12/2500 -63SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 63 and SITC section 9 01/01/1988 31/12/1996 -63SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 63 and SITC section 9 01/01/1997 31/12/2500 -63SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 63 and SITC group 999 01/01/1988 31/12/1996 -63SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 63 and SITC group 999 01/01/1997 31/12/2500 -64 01/01/1988 31/12/2500 LIBEN FOOTWEAR, GAITERS AND THE LIKE; PARTS OF SUCH ARTICLES 01/01/1988 31/12/2500 -6401 01/01/1988 31/12/2500 LIBEN Waterproof footwear with outer soles and uppers of rubber or of plastics, the uppers of which are neither fixed to the sole nor assembled by stitching, riveting, nailing, screwing, plugging or similar processes (excl. orthopaedic footwear, toy footwear, skating boots with ice skates attached, shin-guards and similar protective sportswear) 01/01/1988 31/12/2500 -640110 01/01/1988 31/12/2500 LIBEN Waterproof footwear incorporating a protective metal toecap, with outer soles and uppers of rubber or of plastics, the uppers of which are neither fixed to the sole nor assembled by stitching, riveting, nailing, screwing, plugging or similar processes (excl. skating boots with ice or roller skates attached, shin-guards and similar protective sportswear) 01/01/1988 31/12/2500 -64011000 01/01/2009 31/12/2500 LIBEN Waterproof footwear incorporating a protective metal toecap, with outer soles and uppers of rubber or of plastics, the uppers of which are neither fixed to the sole nor assembled by stitching, riveting, nailing, screwing, plugging or similar processes (excl. skating boots with ice or roller skates attached, shin-guards and similar protective sportswear) 01/01/2009 31/12/2500 -64011010 01/01/1988 31/12/2008 LIBEN Waterproof footwear incorporating a protective metal toecap, with uppers of rubber and outer soles of rubber or of plastics, the uppers of which are neither fixed to the sole nor assembled by stitching, riveting, nailing, screwing, plugging or similar processes (excl. skating boots with ice or roller skates attached, shin-guards and similar protective sportswear) 01/01/1988 31/12/2008 -64011090 01/01/1988 31/12/2008 LIBEN Waterproof footwear incorporating a protective metal toecap, with uppers of plastic and outer soles of rubber or of plastics, the uppers of which are neither fixed to the sole nor assembled by stitching, riveting, nailing, screwing, plugging or similar processes (excl. skating boots with ice or roller skates attached, shin-guards and similar protective sportswear) 01/01/1988 31/12/2008 -640191 01/01/1988 31/12/2006 LIBEN Waterproof footwear covering the knee, with outer soles and uppers of rubber or of plastics, the uppers of which are neither fixed to the sole nor assembled by stitching, riveting, nailing, screwing, plugging or similar processes (excl. incorporating a protective metal toecap, skating boots with ice or roller skates attached, shin-guards and similar protective sportswear) 01/01/1988 31/12/2006 -64019100 01/01/2004 31/12/2006 LIBEN Waterproof footwear covering the knee, with outer soles and uppers of rubber or of plastics, the uppers of which are neither fixed to the sole nor assembled by stitching, riveting, nailing, screwing, plugging or similar processes (excl. incorporating a protective metal toecap, skating boots with ice or roller skates attached, shin-guards and similar protective sportswear) 01/01/2004 31/12/2006 -64019110 01/01/1988 31/12/2003 LIBEN Waterproof footwear with outer soles of rubber or plastics, and uppers of rubber, the uppers of which are neither fixed to the sole nor assembled by stitching, riveting, nailing, screwing, plugging or similar processes, covering the knee (excl. footwear incorporating a protective metal toecap, and footwear with fixed attachments for skiing or skating, shin pads and similar protective devices for sports purposes) 01/01/1988 31/12/2003 -64019190 01/01/1988 31/12/2003 LIBEN Waterproof footwear with outer soles of rubber or plastics, and uppers of rubber, the uppers of which are neither fixed to the sole nor assembled by stitching, riveting, nailing, screwing, plugging or similar processes, covering the knee (excl. footwear incorporating a protective metal toecap, and footwear with fixed attachments for skiing or skating, shin pads and similar protective devices for sports purposes) 01/01/1988 31/12/2003 -640192 01/01/1988 31/12/2500 LIBEN Waterproof footwear covering the ankle, but not the knee, with outer soles and uppers of rubber or of plastics, the uppers of which are neither fixed to the sole nor assembled by stitching, riveting, nailing, screwing, plugging or similar processes (excl. incorporating a protective metal toecap, orthopaedic footwear, sports and toy footwear) 01/01/1988 31/12/2500 -64019210 01/01/1988 31/12/2500 LIBEN Waterproof footwear with uppers of rubber and outer soles of rubber or of plastics, the uppers of which are neither fixed to the sole nor assembled by stitching, riveting, nailing, screwing, plugging or similar processes, covering only the ankle (excl. footwear incorporating a protective metal toecap, orthopaedic footwear, footwear with fixed attachments for skiing or skating, and toy footwear) 01/01/1988 31/12/2500 -64019290 01/01/1988 31/12/2500 LIBEN Waterproof footwear with uppers of plastic and outer soles of rubber or of plastics, the uppers of which are neither fixed to the sole nor assembled by stitching, riveting, nailing, screwing, plugging or similar processes, covering only the ankle (excl. footwear incorporating a protective metal toecap, orthopaedic footwear, sports footwear, footwear with fixed attachments for skiing or skating, and toy footwear) 01/01/1988 31/12/2500 -640199 01/01/1988 31/12/2500 LIBEN Waterproof footwear covering neither the ankle nor the knee, with outer soles and uppers of rubber or of plastics, the uppers of which are neither fixed to the sole nor assembled by stitching, riveting, nailing, screwing, plugging or similar processes (excl. covering the ankle but not the knee, footwear incorporating a protective metal toecap, orthopaedic footwear, skating boots with ice or roller skates attached and sports and toy footwear) 01/01/1988 31/12/2500 -64019900 01/01/2004 31/12/2006 LIBEN Waterproof footwear covering neither the ankle nor the knee, with outer soles and uppers of rubber or of plastics, the uppers of which are neither fixed to the sole nor assembled by stitching, riveting, nailing, screwing, plugging or similar processes (excl. incorporating a protective metal toecap, orthopaedic footwear, skating boots with ice or roller skates attached, and toy footwear) 01/01/2004 31/12/2006 -64019900 01/01/2007 31/12/2500 LIBEN Waterproof footwear covering neither the ankle nor the knee, with outer soles and uppers of rubber or of plastics, the uppers of which are neither fixed to the sole nor assembled by stitching, riveting, nailing, screwing, plugging or similar processes (excl. covering the ankle but not the knee, footwear incorporating a protective metal toecap, orthopaedic footwear, skating boots with ice or roller skates attached and sports and toy footwear) 01/01/2007 31/12/2500 -64019910 01/01/1988 31/12/2003 LIBEN Waterproof footwear with outer soles of rubber or plastics, and uppers of rubber, the uppers of which are neither fixed to the sole nor assembled by stitching, riveting, nailing, screwing, plugging or similar processes, covering neither the knee nor the ankle (excl. footwear incorporating a protective metal toecap, orthopaedic footwear, footwear, skating boots or ski boots, and shoes having the character of toys) 01/01/1988 31/12/2003 -64019990 01/01/1988 31/12/2003 LIBEN Waterproof footwear with outer soles of rubber or plastics, and uppers of rubber, the uppers of which are neither fixed to the sole nor assembled by stitching, riveting, nailing, screwing, plugging or similar processes, covering neither the knee nor the ankle (excl. footwear incorporating a protective metal toecap, orthopaedic footwear, footwear, skating boots or ski boots, and shoes having the character of toys) 01/01/1988 31/12/2003 -6402 01/01/1988 31/12/2500 LIBEN Footwear with outer soles and uppers of rubber or plastics (excl. waterproof footwear of heading 6401, orthopaedic footwear, skating boots with ice or roller skates attached, and toy footwear) 01/01/1988 31/12/2500 -640211 01/01/1988 31/12/1995 LIBEN Ski-boots and cross-country ski footwear, with outer soles and uppers of rubber or plastics (excl. waterproof footwear of heading 6401) 01/01/1988 31/12/1995 -64021100 01/01/1988 31/12/1995 LIBEN Ski-boots and cross-country ski footwear, with outer soles and uppers of rubber or plastics (excl. waterproof footwear of heading 6401) 01/01/1988 31/12/1995 -640212 01/01/1996 31/12/2500 LIBEN Ski-boots, cross-country ski footwear and snowboard boots, with outer soles and uppers of rubber or plastics (excl. waterproof footwear of heading 6401) 01/01/1996 31/12/2500 -64021210 01/01/1996 31/12/2500 LIBEN Ski-boots and cross-country ski footwear, with outer soles and uppers of rubber or plastics (excl. waterproof footwear of heading 6401) 01/01/1996 31/12/2500 -64021290 01/01/1996 31/12/2500 LIBEN Snowboard boots with outer soles and uppers of rubber or plastics (excl. waterproof footwear of heading 6401) 01/01/1996 31/12/2500 -640219 01/01/1988 31/12/2500 LIBEN Sports footwear with outer soles and uppers of rubber or plastics (excl. waterproof footwear of heading 6401, ski-boots, cross-country ski footwear, snowboard boots and skating boots with ice or roller skates attached) 01/01/1988 31/12/2500 -64021900 01/01/1988 31/12/2500 LIBEN Sports footwear with outer soles and uppers of rubber or plastics (excl. waterproof footwear of heading 6401, ski-boots, cross-country ski footwear, snowboard boots and skating boots with ice or roller skates attached) 01/01/1988 31/12/2500 -640220 01/01/1988 31/12/2500 LIBEN Footwear with outer soles and uppers of rubber or plastics, with upper straps or thongs assembled to the sole by means of plugs (excl. toy footwear) 01/01/1988 31/12/2500 -64022000 01/01/1988 31/12/2500 LIBEN Footwear with outer soles and uppers of rubber or plastics, with upper straps or thongs assembled to the sole by means of plugs (excl. toy footwear) 01/01/1988 31/12/2500 -640230 01/01/1988 31/12/2006 LIBEN Footwear, incorporating a protective metal toecap, with outer soles and uppers of rubber or plastics (excl. waterproof footwear of heading 6401, sports footwear and orthopaedic footwear) 01/01/1988 31/12/2006 -64023000 01/01/1996 31/12/2006 LIBEN Footwear, incorporating a protective metal toecap, with outer soles and uppers of rubber or plastics (excl. waterproof footwear of heading 6401, sports footwear and orthopaedic footwear) 01/01/1996 31/12/2006 -64023010 01/01/1988 31/12/1995 LIBEN Footwear, incorporating a protective metal toe-cap, with uppers of rubber and outer soles of rubber or plastics (excl. waterproof footwear of heading 6401, sports footwear and orthopaedic footwear) 01/01/1988 31/12/1995 -64023090 01/01/1988 31/12/1995 LIBEN Footwear, incorporating a protective metal toe-cap, with uppers of plastics and outer soles of rubber or plastics (excl. waterproof footwear of heading 6401, sports footwear and orthopaedic footwear) 01/01/1988 31/12/1995 -640291 01/01/1988 31/12/2500 LIBEN Footwear covering the ankle, with outer soles and uppers of rubber or plastics (excl. waterproof footwear of heading 6401, sports footwear, orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -64029100 01/01/1996 31/12/2006 LIBEN Footwear covering the ankle, with outer soles and uppers of rubber or plastics (excl. incorporating a protective metal toecap, waterproof footwear of heading 6401, sports footwear, orthopaedic footwear and toy footwear) 01/01/1996 31/12/2006 -64029110 01/01/1988 31/12/1995 LIBEN Footwear covering the ankle, with uppers of rubber and outer soles of rubber or plastics (excl. incorporating a protective metal toe-cap, waterproof footwear of heading 6401, sports footwear, orthopaedic footwear and toy footwear) 01/01/1988 31/12/1995 -64029110 01/01/2007 31/12/2500 LIBEN Footwear covering the ankle, incorporating a protective metal toecap, with outer soles and uppers of rubber or plastics (excl. waterproof footwear of heading 6401, sports footwear and orthopaedic footwear) 01/01/2007 31/12/2500 -64029190 01/01/1988 31/12/1995 LIBEN Footwear covering the ankle, with uppers of plastics and outer soles of rubber or plastics (excl. incorporating a protective metal toe-cap, waterproof footwear of heading 6401, sports footwear, orthopaedic footwear and toy footwear) 01/01/1988 31/12/1995 -64029190 01/01/2007 31/12/2500 LIBEN Footwear covering the ankle, with outer soles and uppers of rubber or plastics (excl. incorporating a protective metal toecap, waterproof footwear of heading 6401, sports footwear, orthopaedic footwear and toy footwear) 01/01/2007 31/12/2500 -640299 01/01/1988 31/12/2500 LIBEN Footwear with outer soles and uppers of rubber or plastics (excl. covering the ankle or with upper straps or thongs assembled to the sole by means of plugs, waterproof footwear of heading 6401, sports footwear, orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -64029905 01/01/2007 31/12/2500 LIBEN Footwear incorporating a protective metal toecap, with outer soles and uppers of rubber or plastics (excl. covering the ankle, waterproof footwear of heading 6401, sports footwear and orthopaedic footwear) 01/01/2007 31/12/2500 -64029910 01/01/1988 31/12/2500 LIBEN Footwear with uppers of rubber and outer soles of rubber or plastics (excl. covering the ankle or with upper straps or thongs assembled to the sole by means of plugs, waterproof footwear of heading 6401, sports footwear, orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -64029931 01/01/1988 31/12/2500 LIBEN Footwear with uppers of plastic and outer soles of rubber or plastics, with a vamp made of straps or which has one or several pieces cut out, with a maximum sole and heel height of > 3 cm (excl. with upper straps or thongs assembled to the sole by means of plugs) 01/01/1988 31/12/2500 -64029939 01/01/1988 31/12/2500 LIBEN Footwear with uppers of plastic and outer soles of rubber or plastics, with a vamp made of straps or which has one or several pieces cut out, with a maximum sole and heel height of <= 3 cm (excl. with upper straps or thongs assembled to the sole by means of plugs) 01/01/1988 31/12/2500 -64029950 01/01/1988 31/12/2500 LIBEN Slippers and other indoor footwear, with outer sole and upper of rubber or plastics (excl. covering the ankle, footwear with a vamp made of straps or which has one or several pieces cut out, and toy footwear) 01/01/1988 31/12/2500 -64029991 01/01/1988 31/12/2500 LIBEN Footwear with uppers of plastics and outer soles of rubber or plastics, with in-soles of a length of < 24 cm (excl. covering the ankle, footwear with a vamp made of straps or which has one or several pieces cut out, footwear incorporating a protective metal toecap, indoor footwear, sports footwear, waterproof footwear of heading 6401, orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -64029993 01/01/1990 31/12/2500 LIBEN Footwear non-identifiable as men's or women's footwear, with uppers of plastics, with outer soles of rubber or plastics, with in-soles of length >= 24 cm (excl. footwear covering the ankle, with a vamp made of straps or which has one or more pieces cut out, or incorporating a protective metal toecap, indoor or sports footwear, waterproof footwear in heading 6401, and orthopaedic footwear) 01/01/1990 31/12/2500 -64029995 01/01/1988 31/12/1989 LIBEN Men's footwear with uppers of plastics and outer soles of rubber or plastics, with in-soles of a length of >= 24 cm (excl. covering the ankle, footwear with a vamp made of straps or which has one or several pieces cut out, footwear incorporating a protective metal toe-cap, indoor footwear, sports footwear, waterproof footwear of heading 6401, and orthopaedic footwear) 01/01/1988 31/12/1989 -64029996 01/01/1990 31/12/2500 LIBEN Footwear with outer soles of rubber or plastics and uppers of plastics, with in-soles of a length >= 24 cm, for men (excl. footwear covering the ankle, with a vamp made of straps or which has one or more pieces cut out, or incorporating a protective metal toecap, indoor or sports footwear, waterproof footwear in heading 6401, orthopaedic footwear and footwear which cannot be identified as men's or women's) 01/01/1990 31/12/2500 -64029998 01/01/1990 31/12/2500 LIBEN Footwear with outer soles of rubber or of plastics and uppers of plastics, with in-soles of a length of >= 24 cm, for women (excl. footwear covering the ankle, with a vamp made of straps or which has one or more pieces cut out, or incorporating a protective metal toecap, indoor or sports footwear, waterproof footwear in heading 6401, orthopaedic footwear and footwear which cannot be identified as men's or women's) 01/01/1990 31/12/2500 -64029999 01/01/1988 31/12/1989 LIBEN Women's footwear with uppers of plastics and outer soles of rubber or plastics, with in-soles of a length of >= 24 cm (excl. covering the ankle, footwear with a vamp made of straps or which has one or several pieces cut out, footwear incorporating a protective metal toe-cap, indoor footwear, sports footwear, waterproof footwear of heading 6401, and orthopaedic footwear) 01/01/1988 31/12/1989 -6403 01/01/1988 31/12/2500 LIBEN Footwear with outer soles of rubber, plastics, leather or composition leather and uppers of leather (excl. orthopaedic footwear, skating boots with ice or roller skates attached, and toy footwear) 01/01/1988 31/12/2500 -640311 01/01/1988 31/12/1995 LIBEN Ski-boots and cross-country ski footwear, with outer soles of rubber, plastics, leather or composition leather and uppers of leather 01/01/1988 31/12/1995 -64031100 01/01/1988 31/12/1995 LIBEN Ski-boots and cross-country ski footwear, with outer soles of rubber, plastics, leather or composition leather and uppers of leather 01/01/1988 31/12/1995 -640312 01/01/1996 31/12/2500 LIBEN Ski-boots, cross-country ski footwear and snowboard boots, with outer soles of rubber, plastics, leather or composition leather and uppers of leather 01/01/1996 31/12/2500 -64031200 01/01/1996 31/12/2500 LIBEN Ski-boots, cross-country ski footwear and snowboard boots, with outer soles of rubber, plastics, leather or composition leather and uppers of leather 01/01/1996 31/12/2500 -640319 01/01/1988 31/12/2500 LIBEN Sports footwear, with outer soles of rubber, plastics, leather or composition leather and uppers of leather (excl. ski-boots, cross-country ski footwear, snowboard boots and skating boots with ice or roller skates attached) 01/01/1988 31/12/2500 -64031900 01/01/1988 31/12/2500 LIBEN Sports footwear, with outer soles of rubber, plastics, leather or composition leather and uppers of leather (excl. ski-boots, cross-country ski footwear, snowboard boots and skating boots with ice or roller skates attached) 01/01/1988 31/12/2500 -640320 01/01/1988 31/12/2500 LIBEN Footwear with outer soles of leather, and uppers which consist of leather straps across the instep and around the big toe 01/01/1988 31/12/2500 -64032000 01/01/1988 31/12/2500 LIBEN Footwear with outer soles of leather, and uppers which consist of leather straps across the instep and around the big toe 01/01/1988 31/12/2500 -640330 01/01/1988 31/12/2006 LIBEN Footwear with leather uppers, made on a base or platform of wood, with neither an inner sole nor a protective metal toecap 01/01/1988 31/12/2006 -64033000 01/01/1988 31/12/2006 LIBEN Footwear with leather uppers, made on a base or platform of wood, with neither an inner sole nor a protective metal toecap 01/01/1988 31/12/2006 -640340 01/01/1988 31/12/2500 LIBEN Footwear, incorporating a protective metal toecap, with outer soles of rubber, plastics, leather or composition leather and uppers of leather (excl. sports footwear and orthopaedic footwear) 01/01/1988 31/12/2500 -64034000 01/01/1988 31/12/2500 LIBEN Footwear, incorporating a protective metal toecap, with outer soles of rubber, plastics, leather or composition leather and uppers of leather (excl. sports footwear and orthopaedic footwear) 01/01/1988 31/12/2500 -640351 01/01/1988 31/12/2500 LIBEN Footwear with outer soles and uppers of leather, covering the ankle (excl. incorporating a protective metal toecap, sports footwear, orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -64035105 01/01/2007 31/12/2500 LIBEN Footwear with outer soles and uppers of leather, made on a base or platform of wood, covering the ankle, with neither an inner sole nor a protective metal toecap 01/01/2007 31/12/2500 -64035111 01/01/1988 31/12/2500 LIBEN Footwear with outer soles and uppers of leather, covering the ankle but not the calf, with in-soles of < 24 cm in length (excl. incorporating a protective metal toecap, sports footwear, orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -64035115 01/01/1988 31/12/2500 LIBEN Men's footwear with outer soles and uppers of leather, covering the ankle but not the calf, with in-soles of >= 24 cm in length (excl. incorporating a protective metal toecap, sports footwear, and orthopaedic footwear) 01/01/1988 31/12/2500 -64035119 01/01/1988 31/12/2500 LIBEN Women's footwear with outer soles and uppers of leather, covering the ankle but not the calf, with in-soles of >= 24 cm in length (excl. incorporating a protective metal toecap, sports footwear, and orthopaedic footwear) 01/01/1988 31/12/2500 -64035191 01/01/1988 31/12/2500 LIBEN Footwear with outer soles and uppers of leather, covering the ankle and calf, with in-soles of < 24 cm in length (excl. incorporating a protective metal toecap, sports footwear, orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -64035195 01/01/1988 31/12/2500 LIBEN Men's footwear with outer soles and uppers of leather, covering the ankle and calf, with in-soles of >= 24 cm in length (excl. incorporating a protective metal toecap, sports footwear, and orthopaedic footwear) 01/01/1988 31/12/2500 -64035199 01/01/1988 31/12/2500 LIBEN Women's footwear with outer soles and uppers of leather, covering the ankle and calf, with in-soles of >= 24 cm in length (excl. incorporating a protective metal toecap, sports footwear, and orthopaedic footwear) 01/01/1988 31/12/2500 -640359 01/01/1988 31/12/2500 LIBEN Footwear with outer soles and uppers of leather (excl. covering the ankle, incorporating a protective metal toecap, with uppers which consist of leather straps across the instep and around the big toe, sports footwear, orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -64035905 01/01/2007 31/12/2500 LIBEN Footwear with outer soles and uppers of leather, made on a base or platform of wood, with neither an inner sole nor a protective metal toecap (excl. covering the ankle) 01/01/2007 31/12/2500 -64035911 01/01/1988 31/12/2500 LIBEN Footwear with outer soles and uppers of leather, with a vamp made of straps or which has one or several pieces cut out, with a maximum sole and heel height of > 3 cm (excl. with uppers which consist of leather straps across the instep and around the big toe) 01/01/1988 31/12/2500 -64035931 01/01/1988 31/12/2500 LIBEN Footwear with outer soles and uppers of leather, with a vamp made of straps or which has one or several pieces cut out, with a maximum sole and heel height of <= 3 cm, with in-soles of < 24 cm in length (excl. with uppers which consist of leather straps across the instep and around the big toe, and toy footwear) 01/01/1988 31/12/2500 -64035935 01/01/1988 31/12/2500 LIBEN Men's footwear with outer soles and uppers of leather, with a vamp made of straps or which has one or several pieces cut out, with a maximum sole and heel height of <= 3 cm, with in-soles of >= 24 cm in length (excl. with uppers which consist of leather straps across the instep and around the big toe) 01/01/1988 31/12/2500 -64035939 01/01/1988 31/12/2500 LIBEN Women's footwear with outer soles and uppers of leather, with a vamp made of straps or which has one or several pieces cut out, with a maximum sole and heel height of <= 3 cm, with in-soles of >= 24 cm in length (excl. with uppers which consist of leather straps across the instep and around the big toe) 01/01/1988 31/12/2500 -64035950 01/01/1988 31/12/2500 LIBEN Slippers and other indoor footwear, with outer soles and uppers of leather (excl. covering the ankle, with a vamp or upper made of straps, and toy footwear) 01/01/1988 31/12/2500 -64035991 01/01/1988 31/12/2500 LIBEN Footwear with outer soles and uppers of leather, with in-soles of < 24 cm in length (excl. covering the ankle, incorporating a protective metal toecap, made on a base or platform of wood, without in-soles, with a vamp or upper made of straps, indoor footwear, sports footwear, orthopaedic footwear, and toy footwear) 01/01/1988 31/12/2500 -64035995 01/01/1988 31/12/2500 LIBEN Men's footwear with outer soles and uppers of leather, with in-soles of >= 24 cm in length (excl. covering the ankle, incorporating a protective metal toecap, made on a base or platform of wood, without in-soles, with a vamp or upper made of straps, indoor footwear, sports footwear, and orthopaedic footwear) 01/01/1988 31/12/2500 -64035999 01/01/1988 31/12/2500 LIBEN Women's footwear with outer soles and uppers of leather, with in-soles of >= 24 cm in length (excl. covering the ankle, incorporating a protective metal toecap, made on a base or platform of wood, without in-soles, with a vamp or upper made of straps, indoor footwear, sports footwear, and orthopaedic footwear) 01/01/1988 31/12/2500 -640391 01/01/1988 31/12/2500 LIBEN Footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, covering the ankle (excl. incorporating a protective metal toecap, sports footwear, orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -64039105 01/01/2007 31/12/2500 LIBEN Footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, made on a base or platform of wood, covering the ankle with neither an inner sole nor a protective metal toecap 01/01/2007 31/12/2500 -64039111 01/01/1988 31/12/1995 LIBEN Footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, covering the ankle but not the calf, with in-soles of < 24 cm in length (excl. incorporating a protective metal toe-cap, sports footwear, orthopaedic footwear and toy footwear) 01/01/1988 31/12/1995 -64039111 01/01/1996 31/12/2500 LIBEN Footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, covering the ankle but not the calf, with in-soles of < 24 cm in length (excl. incorporating a protective metal toecap, sports footwear, orthopaedic footwear and toy footwear) 01/01/1996 31/12/2500 -64039113 01/01/1990 31/12/1995 LIBEN Footwear non-identifiable as men's or women's footwear, with outer soles of rubber, plastics or composition leather, with uppers of leather, covering the ankle (but not the calf), with in-soles of a length >= 24 cm (excl. 6403.11-00 to 6403.40.00) 01/01/1990 31/12/1995 -64039113 01/01/1996 31/12/2500 LIBEN Footwear non-identifiable as men's or women's footwear, with outer soles of rubber, plastics or composition leather, with uppers of leather, covering the ankle (but not the calf), with in-soles of a length >= 24 cm (excl. 6403.11-00 to 6403.40.00) 01/01/1996 31/12/2500 -64039115 01/01/1988 31/12/1989 LIBEN Men's footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, covering the ankle but not the calf, with in-soles of >= 24 cm in length (excl. incorporating a protective metal toe-cap, sports footwear, and orthopaedic footwear) 01/01/1988 31/12/1989 -64039116 01/01/1990 31/12/2500 LIBEN Men's footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, covering the ankle (but not the calf), with in-soles of a length >= 24 cm (excl. 6403.11-00 to 6403.40.00) 01/01/1990 31/12/2500 -64039118 01/01/1990 31/12/2500 LIBEN Women's footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, covering the ankle (but not the calf), with in-soles of a length >= 24 cm (excl. 6403.11-00 to 6403.40.00) 01/01/1990 31/12/2500 -64039119 01/01/1988 31/12/1989 LIBEN Women's footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, covering the ankle but not the calf, with in-soles of >= 24 cm in length (excl. incorporating a protective metal toe-cap, sports footwear, and orthopaedic footwear) 01/01/1988 31/12/1989 -64039191 01/01/1988 31/12/2500 LIBEN Footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, covering the ankle and calf, with in-soles of < 24 cm in length (excl. incorporating a protective metal toecap, sports footwear, orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -64039193 01/01/1990 31/12/2500 LIBEN Footwear non-identifiable as men's or women's footwear, with outer soles of rubber, plastics or composition leather, with uppers of leather, covering the ankle, with in-soles of a length >= 24 cm (excl. 6403.1-00 to 6403.40.00) 01/01/1990 31/12/2500 -64039195 01/01/1988 31/12/1989 LIBEN Men's footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, covering the ankle and calf, with in-soles of >= 24 cm in length (excl. incorporating a protective metal toe-cap, sports footwear, and orthopaedic footwear) 01/01/1988 31/12/1989 -64039196 01/01/1990 31/12/2500 LIBEN Men's footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, covering the ankle, with in-soles of a length >= 24 cm (excl. 6403.11-00 to 6403.40.00 nor 6403.90-16) 01/01/1990 31/12/2500 -64039198 01/01/1990 31/12/2500 LIBEN Women's footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, covering the ankle, with in-soles of length >= 24 cm (excl. 6403.11-00 to 6403.40.00 nor 6403.91.18) 01/01/1990 31/12/2500 -64039199 01/01/1988 31/12/1989 LIBEN Women's footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, covering the ankle and calf, with in-soles of >= 24 cm in length (excl. incorporating a protective metal toe-cap, sports footwear, and orthopaedic footwear) 01/01/1988 31/12/1989 -640399 01/01/1988 31/12/2500 LIBEN Footwear with outer soles of rubber, plastics or composition leather, with uppers of leather (excl. covering the ankle, incorporating a protective metal toecap, sports footwear, orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -64039905 01/01/2007 31/12/2500 LIBEN Footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, made on a base or platform of wood, with neither an inner sole nor a protective metal toecap (excl. covering the ankle) 01/01/2007 31/12/2500 -64039911 01/01/1988 31/12/2500 LIBEN Footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, with a vamp made of straps or which has one or several pieces cut out, with a maximum sole and heel height of > 3 cm 01/01/1988 31/12/2500 -64039931 01/01/1988 31/12/2500 LIBEN Footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, with a vamp made of straps or which has one or several pieces cut out, with a maximum sole and heel height of <= 3 cm, with in-soles of < 24 cm in length (excl. toy footwear) 01/01/1988 31/12/2500 -64039933 01/01/1990 31/12/2500 LIBEN Footwear non-identifiable as men's or women's footwear, with outer soles of rubber, plastics or composition leather, with uppers of leather (not covering the ankle), with a vamp made of straps or which has one or several pieces cut out, with sole and heel height <= 3 cm, with in-soles of a length >= 24 cm (excl. 6403.11-00 to 6403.40.00) 01/01/1990 31/12/2500 -64039935 01/01/1988 31/12/1989 LIBEN Men's footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, with a vamp made of straps or which has one or several pieces cut out, with a maximum sole and heel height of =< 3 cm, with in-soles of >= 24 cm in length 01/01/1988 31/12/1989 -64039936 01/01/1990 31/12/2500 LIBEN Men's footwear with outer soles of rubber, plastics or composition leather, with uppers of leather (not covering the ankle), with a vamp made of straps or which has one or several pieces cut out, with sole and heel height <= 3 cm, with in-soles of a length >= 24 cm (excl. 6403.11-00 to 6403.40.00) 01/01/1990 31/12/2500 -64039938 01/01/1990 31/12/2500 LIBEN Women's footwear with outer soles of rubber, plastics or composition leather, with uppers of leather (not covering the ankle), with a vamp made of straps or which has one or several pieces cut out, with sole and heel height <= 3 cm, with in-soles of a length >= 24 cm (excl. 6403.11-00 to 6403.40.00) 01/01/1990 31/12/2500 -64039939 01/01/1988 31/12/1989 LIBEN Women's footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, with a vamp made of straps or which has one or several pieces cut out, with a maximum sole and heel height of =< 3 cm, with in-soles of >= 24 cm in length 01/01/1988 31/12/1989 -64039950 01/01/1988 31/12/2500 LIBEN Slippers and other indoor footwear, with outer soles of rubber, plastics, or composition leather and uppers of leather (excl. covering the ankle, with a vamp made of straps or which has one or several pieces cut out, and toy footwear) 01/01/1988 31/12/2500 -64039991 01/01/1988 31/12/2500 LIBEN Footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, with in-soles of < 24 cm in length (excl. covering the ankle, incorporating a protective metal toecap, made on a base or platform of wood, without in-soles, with a vamp made of straps or which has one or several pieces cut out, indoor footwear, sports footwear, orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -64039993 01/01/1990 31/12/2500 LIBEN Footwear non-identifiable as men's or women's footwear, with outer soles of rubber, plastics or composition leather and uppers of leather, with in-soles of a length of >= 24 cm (excl. footwear covering the ankle; with a protective metal toecap; with a main sole of wood, without in-sole; footwear with a vamp made of straps or which has one or more pieces cut out; indoor, sports or orthopaedic footwear) 01/01/1990 31/12/2500 -64039995 01/01/1988 31/12/1989 LIBEN Men's footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, with in-soles of >= 24 cm in length (excl. covering the ankle, incorporating a protective metal toe-cap, made on a base or platform of wood, without in-soles, with a vamp made of straps or which has one or several pieces cut out, indoor footwear, sports footwear and orthopaedic footwear) 01/01/1988 31/12/1989 -64039996 01/01/1990 31/12/2500 LIBEN Men's footwear with outer soles of rubber, plastics or composition leather, with uppers of leather (not covering the ankle), with in-soles of a length >= 24 cm (excl. 6403.11-00 to 6403.40.00, 6403.99.11, 6403.99.36, 6403.99.50) 01/01/1990 31/12/2500 -64039998 01/01/1990 31/12/2500 LIBEN Footwear with outer soles of rubber, plastics or composition leather and uppers of leather, with in-soles of a length of >= 24 cm, for women (excl. footwear covering the ankle; with a protective metal toecap; with a main sole of wood, without in-sole; footwear with a vamp made of straps or which has one or more pieces cut out; indoor, sports or orthopaedic footwear; footwear which cannot be identified as men's or women's) 01/01/1990 31/12/2500 -64039999 01/01/1988 31/12/1989 LIBEN Women's footwear with outer soles of rubber, plastics or composition leather, with uppers of leather, with in-soles of >= 24 cm in length (excl. covering the ankle, incorporating a protective metal toe-cap, made on a base or platform of wood, without in-soles, with a vamp made of straps or which has one or several pieces cut out, indoor footwear, sports footwear and orthopaedic footwear) 01/01/1988 31/12/1989 -6404 01/01/1988 31/12/2500 LIBEN Footwear with outer soles of rubber, plastics, leather or composition leather and uppers of textile materials (excl. toy footwear) 01/01/1988 31/12/2500 -640411 01/01/1988 31/12/2500 LIBEN Sports footwear, incl. tennis shoes, basketball shoes, gym shoes, training shoes and the like, with outer soles of rubber or plastics and uppers of textile materials 01/01/1988 31/12/2500 -64041100 01/01/1988 31/12/1995 LIBEN Sports footwear, incl. tennis shoes, basketball shoes, gym shoes, training shoes and the like, with outer soles of rubber or plastics and uppers of textile materials 01/01/1988 31/12/1995 -64041100 01/01/1996 31/12/2500 LIBEN Sports footwear, incl. tennis shoes, basketball shoes, gym shoes, training shoes and the like, with outer soles of rubber or plastics and uppers of textile materials 01/01/1996 31/12/2500 -640419 01/01/1988 31/12/2500 LIBEN Footwear with outer soles of rubber or plastics and uppers of textile materials (excl. sports footwear, incl. tennis shoes, basketball shoes, gym shoes, training shoes and the like, and toy footwear) 01/01/1988 31/12/2500 -64041910 01/01/1988 31/12/2500 LIBEN Slippers and other indoor footwear, with outer soles of rubber or plastics and uppers of textile materials (excl. tennis shoes, gym shoes, training shoes and the like, and toy footwear) 01/01/1988 31/12/2500 -64041990 01/01/1988 31/12/1995 LIBEN Footwear with outer soles of rubber or plastics and uppers of textile materials (excl. indoor footwear, sports footwear, incl. tennis shoes, basketball shoes, gym shoes, training shoes and the like, and toy footwear) 01/01/1988 31/12/1995 -64041990 01/01/1996 31/12/2500 LIBEN Footwear with outer soles of rubber or plastics and uppers of textile materials (excl. indoor footwear, sports footwear, incl. tennis shoes, basketball shoes, gym shoes, training shoes and the like, and toy footwear) 01/01/1996 31/12/2500 -640420 01/01/1988 31/12/2500 LIBEN Footwear with outer soles of leather or composition leather and uppers of textile materials (excl. toy footwear) 01/01/1988 31/12/2500 -64042010 01/01/1988 31/12/2500 LIBEN Slippers and other indoor footwear with outer soles of leather or composition leather and uppers of textile materials (excl. toy footwear) 01/01/1988 31/12/2500 -64042090 01/01/1988 31/12/2500 LIBEN Footwear with outer soles of leather or composition leather and uppers of textile materials (excl. indoor footwear and toy footwear) 01/01/1988 31/12/2500 -6405 01/01/1988 31/12/2500 LIBEN Footwear with outer soles of rubber or plastics, with uppers other than rubber, plastics, leather or textile materials; footwear with outer soles of leather or composition leather, with uppers other than leather or textile materials; footwear with outer soles of wood, cork, twine, paperboard, furskin, woven fabrics, felt, nonwovens, linoleum, raffia, straw, loofah, etc and uppers of any type of material, n.e.s. 01/01/1988 31/12/2500 -640510 01/01/1988 31/12/2500 LIBEN Footwear with uppers of leather or composition leather (excl. with outer soles of rubber, plastics, leather or composition leather and uppers of leather, orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -64051000 01/01/2004 31/12/2500 LIBEN Footwear with uppers of leather or composition leather (excl. with outer soles of rubber, plastics, leather or composition leather and uppers of leather, orthopaedic footwear and toy footwear) 01/01/2004 31/12/2500 -64051010 01/01/1988 31/12/2003 LIBEN Footwear with uppers of leather or composition leather and outer soles of wood or cork (excl. orthopaedic footwear and toy footwear) 01/01/1988 31/12/2003 -64051090 01/01/1988 31/12/2003 LIBEN Footwear with uppers of leather or composition leather (excl. with outer soles of rubber, plastics, leather or composition leather and uppers of leather, or with outer soles of wood or cork, orthopaedic footwear and toy footwear) 01/01/1988 31/12/2003 -640520 01/01/1988 31/12/2500 LIBEN Footwear with uppers of textile materials (excl. with outer soles of rubber, plastics, leather or composition leather, orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -64052010 01/01/1988 31/12/2500 LIBEN Footwear with uppers of textile materials and outer soles of wood or cork (excl. orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -64052091 01/01/1988 31/12/2500 LIBEN Slippers and other indoor footwear with uppers of textile materials (excl. with outer soles of rubber, plastics, leather or composition leather, and toy footwear) 01/01/1988 31/12/2500 -64052099 01/01/1988 31/12/2500 LIBEN Footwear with uppers of textile materials (excl. with outer soles of rubber, plastics, leather or composition leather, wood or cork, indoor footwear, orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -640590 01/01/1988 31/12/2500 LIBEN Footwear with outer soles of rubber or plastics, with uppers other than rubber, plastics, leather or textile materials; footwear with outer soles of leather or composition leather, with uppers other than leather or textile materials; footwear with outer soles of wood, cork, paperboard, furskin, felt, straw, loofah, etc., with uppers other than leather, composition leather or textile materials, n.e.s. 01/01/1988 31/12/2500 -64059010 01/01/1988 31/12/2500 LIBEN Footwear with outer soles of rubber, plastics, leather or composition leather and uppers of materials other than leather, composition leather or textile materials (excl. orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -64059090 01/01/1988 31/12/2500 LIBEN Footwear with outer soles of wood, cork, twine, paperboard, furskin, woven fabrics, felt, nonwovens, linoleum, raffia, straw, loofah, etc. and uppers of materials other than leather, composition leather or textile materials (excl. orthopaedic footwear and toy footwear) 01/01/1988 31/12/2500 -6406 01/01/1988 31/12/2500 LIBEN Parts of footwear, incl. uppers whether or not attached to soles other than outer soles; removable in-soles, heel cushions and similar articles; gaiters, leggings and similar articles, and parts thereof (excl. articles of asbestos) 01/01/1988 31/12/2500 -640610 01/01/1988 31/12/2500 LIBEN Uppers and parts thereof (excl. stiffeners and general parts made of asbestos) 01/01/1988 31/12/2500 -64061010 01/01/2009 31/12/2500 LIBEN Uppers and parts thereof, of leather (excl. stiffeners) 01/01/2009 31/12/2500 -64061011 01/01/1988 31/12/2008 LIBEN Leather uppers, whether or not attached to soles other than outer soles 01/01/1988 31/12/2008 -64061019 01/01/1988 31/12/2008 LIBEN Parts of leather uppers (excl. stiffeners) 01/01/1988 31/12/2008 -64061090 01/01/1988 31/12/2500 LIBEN Uppers, whether or not attached to soles other than outer soles, and parts thereof (excl. stiffeners and general parts made of leather or asbestos) 01/01/1988 31/12/2500 -640620 01/01/1988 31/12/2500 LIBEN Outer soles and heels, of rubber or plastics 01/01/1988 31/12/2500 -64062010 01/01/1988 31/12/2500 LIBEN Outer soles and heels of rubber 01/01/1988 31/12/2500 -64062090 01/01/1988 31/12/2500 LIBEN Outer soles and heels of plastics 01/01/1988 31/12/2500 -640690 01/01/2012 31/12/2500 LIBEN Parts of footwear; removable in-soles, heel cushions and similar articles; gaiters, leggings and similar articles, and parts thereof (excl. outer soles and heels of rubber or plastics, uppers and parts thereof other than stiffeners, and general parts made of asbestos) 01/01/2012 31/12/2500 -64069030 01/01/2012 31/12/2500 LIBEN Assemblies of uppers affixed to inner soles or to other sole components (excl. of asbestos or fixed to outer soles) 01/01/2012 31/12/2500 -64069050 01/01/2012 31/12/2500 LIBEN Removable in-soles, heel cushions and other removable accessories 01/01/2012 31/12/2500 -64069060 01/01/2012 31/12/2500 LIBEN Outer soles of shoes, of leather or composition leather 01/01/2012 31/12/2500 -64069090 01/01/2012 31/12/2500 LIBEN Parts of footwear and gaiters, leggings and similar articles, and parts thereof (excl. outer soles of leather, composition leather, rubber or plastics, heels of rubber or plastics, uppers and parts thereof other than stiffeners, removable accessories, and general parts made of asbestos) 01/01/2012 31/12/2500 -640691 01/01/1988 31/12/2011 LIBEN Parts of footwear, of wood 01/01/1988 31/12/2011 -64069100 01/01/1988 31/12/2011 LIBEN Parts of footwear, of wood 01/01/1988 31/12/2011 -640699 01/01/1988 31/12/2011 LIBEN Parts of footwear (excl. outer soles and heels of rubber or plastics, uppers and parts thereof, and general parts made of wood or asbestos) 01/01/1988 31/12/2011 -64069910 01/01/1988 31/12/2008 LIBEN Gaiters, leggings and similar articles and parts thereof 01/01/1988 31/12/2008 -64069930 01/01/1988 31/12/2011 LIBEN Assemblies of uppers affixed to inner soles or to other sole components (excl. of asbestos or fixed to outer soles) 01/01/1988 31/12/2011 -64069950 01/01/1988 31/12/2011 LIBEN Removable in-soles, heel cushions and other removable accessories 01/01/1988 31/12/2011 -64069960 01/01/1994 31/12/2011 LIBEN Outer soles of shoes, of leather or composition leather, 01/01/1994 31/12/2011 -64069980 01/01/1994 31/12/2008 LIBEN Parts of footwear (excl. outer soles of leather, composition leather, rubber or plastics, heels of rubber or plastics, uppers whether or not attached to inner soles or other sole components [excl. outer soles] and parts thereof, and general parts made of wood or asbestos) 01/01/1994 31/12/2008 -64069985 01/01/2009 31/12/2011 LIBEN Parts of footwear and gaiters, leggings and similar articles, and parts thereof (excl. outer soles of leather, composition leather, rubber or plastics, heels of rubber or plastics, uppers whether or not attached to inner soles or other sole components [excl. outer soles] and parts thereof, and general parts made of wood or asbestos) 01/01/2009 31/12/2011 -64069990 01/01/1988 31/12/1993 LIBEN Parts of footwear (excl. outer soles and heels of rubber or plastics, uppers, whether or not affixed to inner soles or sole components other than outer soles, and parts thereof, and general parts made of wood or asbestos) 01/01/1988 31/12/1993 -64CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 64 01/01/2002 31/12/2500 -64CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 64 01/01/2002 31/12/2500 -64CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 64 01/01/2002 31/12/2500 -64MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -64MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -64MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -64PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 64 carried by post 01/01/1988 31/12/2500 -64PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 64 carried by post 01/01/1988 31/12/2500 -64PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 64 carried by post 01/01/1988 31/12/2500 -64SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 64 01/01/1988 31/12/2500 -64SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 64 and SITC section 8 01/01/1997 31/12/2500 -64SSS851 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 64 and SITC group 851 01/01/1997 31/12/2500 -64SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 64 and SITC section 9 01/01/1988 31/12/1996 -64SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 64 and SITC section 9 01/01/1997 31/12/2500 -64SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 64 and SITC group 999 01/01/1988 31/12/1996 -64SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 64 and SITC group 999 01/01/1997 31/12/2500 -65 01/01/1988 31/12/2500 LIBEN HEADGEAR AND PARTS THEREOF 01/01/1988 31/12/2500 -6501 01/01/1988 31/12/2500 LIBEN Hat-forms, hat bodies and hoods of felt, neither blocked to shape nor with made brims; plateaux and manchons, incl. slit manchons, of felt 01/01/1988 31/12/2500 -650100 01/01/1988 31/12/2500 LIBEN Hat-forms, hat bodies and hoods of felt, neither blocked to shape nor with made brims; plateaux and manchons, incl. slit manchons, of felt 01/01/1988 31/12/2500 -65010000 01/01/1988 31/12/2500 LIBEN Hat-forms, hat bodies and hoods of felt, neither blocked to shape nor with made brims; plateaux and manchons, incl. slit manchons, of felt 01/01/1988 31/12/2500 -6502 01/01/1988 31/12/2500 LIBEN Hat-shapes, plaited or made by assembling strips of any material (excl. blocked to shape, with made brims, lined, or trimmed) 01/01/1988 31/12/2500 -650200 01/01/1988 31/12/2500 LIBEN Hat-shapes, plaited or made by assembling strips of any material (excl. blocked to shape, with made brims, lined, or trimmed) 01/01/1988 31/12/2500 -65020000 01/01/1988 31/12/2500 LIBEN Hat-shapes, plaited or made by assembling strips of any material (excl. blocked to shape, with made brims, lined, or trimmed) 01/01/1988 31/12/2500 -6503 01/01/1988 31/12/2006 LIBEN Felt hats and other felt headgear, made from the hat bodies, hoods or plateaux of heading 6501, whether or not lined or trimmed (excl. made by assembling strips or pieces of felt, and toy and carnival headgear) 01/01/1988 31/12/2006 -650300 01/01/1988 31/12/2006 LIBEN Felt hats and other felt headgear, made from the hat bodies, hoods or plateaux of heading 6501, whether or not lined or trimmed (excl. made by assembling strips or pieces of felt, and toy and carnival headgear) 01/01/1988 31/12/2006 -65030010 01/01/1988 31/12/2006 LIBEN Hats and other headgear, of fur felt or of felt of wool and fur, made from the hat bodies, hoods or plateaux of heading 6501, whether or not lined or trimmed (excl. made by assembling strips or pieces of felt, and toy and carnival headgear) 01/01/1988 31/12/2006 -65030090 01/01/1988 31/12/2006 LIBEN Felt hats and other felt headgear, made from the hat bodies, hoods or plateaux of heading 6501, whether or not lined or trimmed (excl. of fur felt or of felt of wool and fur, hats and other headgear made by assembling strips or pieces of felt, and toy and carnival headgear) 01/01/1988 31/12/2006 -6504 01/01/1988 31/12/2500 LIBEN Hats and other headgear, plaited or made by assembling strips of any material, whether or not lined or trimmed (excl. headgear for animals, and toy and carnival headgear) 01/01/1988 31/12/2500 -650400 01/01/1988 31/12/2500 LIBEN Hats and other headgear, plaited or made by assembling strips of any material, whether or not lined or trimmed (excl. headgear for animals, and toy and carnival headgear) 01/01/1988 31/12/2500 -65040000 01/01/1988 31/12/2500 LIBEN Hats and other headgear, plaited or made by assembling strips of any material, whether or not lined or trimmed (excl. headgear for animals, and toy and carnival headgear) 01/01/1988 31/12/2500 -6505 01/01/1988 31/12/2500 LIBEN Hats and other headgear, knitted or crocheted, or made up from lace, felt or other textile fabric, in the piece (but not in strips), whether or not lined or trimmed; hairnets of any material, whether or not lined or trimmed (excl. headgear for animals, and toy and carnival headgear) 01/01/1988 31/12/2500 -650500 01/01/2012 31/12/2500 LIBEN Hats and other headgear, knitted or crocheted, or made up from lace, felt or other textile fabric, in the piece (but not in strips), whether or not lined or trimmed; hairnets of any material, whether or not lined or trimmed (excl. headgear for animals, and toy and carnival headgear) 01/01/2012 31/12/2500 -65050010 01/01/2012 31/12/2500 LIBEN Hats and other headgear, knitted or crocheted, or made up from lace, of fur felt or of felt of wool and fur, made from the hat bodies, hoods or plateaux of heading 6501, whether or not lined or trimmed (excl. made by assembling strips or pieces of felt, and toy and carnival headgear) 01/01/2012 31/12/2500 -65050030 01/01/2012 31/12/2500 LIBEN Peaked caps and the like, knitted or crocheted, or made up from lace, felt or other textile fabric, in the piece (but not in strips), whether or not lined or trimmed (excl. toy and carnival headgear) 01/01/2012 31/12/2500 -65050090 01/01/2012 31/12/2500 LIBEN Hats and other headgear, knitted or crocheted, or made up from lace, felt or other textile fabric, in the piece (but not in strips), whether or not lined or trimmed (excl. of fur felt or of felt of wool and fur, peaked caps, headgear for animals or headgear having the character of toys or festive articles) 01/01/2012 31/12/2500 -650510 01/01/1988 31/12/2011 LIBEN Hairnets of any material, whether or not lined or trimmed 01/01/1988 31/12/2011 -65051000 01/01/1988 31/12/2011 LIBEN Hairnets of any material, whether or not lined or trimmed 01/01/1988 31/12/2011 -650590 01/01/1988 31/12/2011 LIBEN Hats and other headgear, knitted or crocheted, or made up from lace, felt or other textile fabric, in the piece (but not in strips), whether or not lined or trimmed (excl. hairnets, headgear for animals, and toy and fancy-dress headgear) 01/01/1988 31/12/2011 -65059005 01/01/2007 31/12/2011 LIBEN Hats and other headgear, knitted or crocheted, or made up from lace, of fur felt or of felt of wool and fur, made from the hat bodies, hoods or plateaux of heading 6501, whether or not lined or trimmed (excl. made by assembling strips or pieces of felt, and toy and carnival headgear) 01/01/2007 31/12/2011 -65059010 01/01/1995 31/12/2011 LIBEN Berets, bonnets, skull-caps, fezzes, tarbooshes and the like, knitted or crocheted, or made up from lace, felt or other textile fabric, in the piece (but not in strips), whether or not lined or trimmed (other than headgear having the character of toys or festive articles) 01/01/1995 31/12/2011 -65059011 01/01/1988 31/12/1994 LIBEN Berets, bonnets, skull-caps, fezzes, tarbooshes and the like of knitted or crocheted material, fulled or felted, whether or not lined or trimmed (excl. toy and carnival headgear) 01/01/1988 31/12/1994 -65059019 01/01/1988 31/12/1994 LIBEN Berets, bonnets, skull-caps, fezzes, tarbooshes and the like, knitted or crocheted or made up from pieces, but not strips, of lace, felt or other textile fabrics, whether or not lined or trimmed (excl. of knitted or crocheted material, fulled or felted, toy and carnival headgear) 01/01/1988 31/12/1994 -65059030 01/01/1988 31/12/2011 LIBEN Peaked caps and the like, knitted or crocheted, or made up from lace, felt or other textile fabric, in the piece (but not in strips), whether or not lined or trimmed (excl. toy and carnival headgear) 01/01/1988 31/12/2011 -65059080 01/01/2007 31/12/2011 LIBEN Hats and other headgear, knitted or crocheted, or made up from lace, felt or other textile fabric, in the piece (but not in strips), whether or not lined or trimmed (excl. of fur felt or of felt of wool and fur, hairnets, berets, bonnets, skull-caps, fezzes, tarbooshes and the like, peaked caps, headgear for animals or headgear having the character of toys or festive articles) 01/01/2007 31/12/2011 -65059090 01/01/1988 31/12/2006 LIBEN Hats and other headgear, knitted or crocheted, or made up from lace, felt or other textile fabric, in the piece (but not in strips), whether or not lined or trimmed (excl. hairnets, berets, bonnets, skull-caps, fezzes, tarbooshes and the like, peaked caps, headgear for animals or headgear having the character of toys or festive articles) 01/01/1988 31/12/2006 -6506 01/01/1988 31/12/2500 LIBEN Headgear, whether or not lined or trimmed, n.e.s. 01/01/1988 31/12/2500 -650610 01/01/1988 31/12/2500 LIBEN Safety headgear, whether or not lined or trimmed 01/01/1988 31/12/2500 -65061010 01/01/1988 31/12/2500 LIBEN Safety headgear of plastics, whether or not lined or trimmed 01/01/1988 31/12/2500 -65061030 01/01/1988 31/12/1994 LIBEN Safety headgear of metal, whether or not lined or trimmed 01/01/1988 31/12/1994 -65061080 01/01/1995 31/12/2500 LIBEN Safety headgear, whether or not lined or trimmed (other than of plastics) 01/01/1995 31/12/2500 -65061090 01/01/1988 31/12/1994 LIBEN Safety headgear, whether or not lined or trimmed (excl. plastics or metal) 01/01/1988 31/12/1994 -650691 01/01/1988 31/12/2500 LIBEN Bathing caps, hoods and other headgear, whether or not lined or trimmed, of rubber or plastics (other than safety headgear and headgear having the character of toys or festive articles) 01/01/1988 31/12/2500 -65069100 01/01/1995 31/12/2500 LIBEN Bathing caps, hoods and other headgear, whether or not lined or trimmed, of rubber or plastics (other than safety headgear and headgear having the character of toys or festive articles) 01/01/1995 31/12/2500 -65069110 01/01/1988 31/12/1994 LIBEN Bathing caps, hoods and other headgear of rubber, whether or not lined or trimmed (excl. safety headgear, and toy and carnival headgear) 01/01/1988 31/12/1994 -65069190 01/01/1988 31/12/1994 LIBEN Bathing caps, hoods and other headgear of plastics, whether or not lined or trimmed (excl. safety headgear, and toy and carnival headgear) 01/01/1988 31/12/1994 -650692 01/01/1988 31/12/2006 LIBEN Headgear of furskin, whether or not lined or trimmed (excl. toy and carnival headgear) 01/01/1988 31/12/2006 -65069200 01/01/1988 31/12/2006 LIBEN Headgear of furskin, whether or not lined or trimmed (excl. toy and carnival headgear) 01/01/1988 31/12/2006 -650699 01/01/1988 31/12/2500 LIBEN Headgear, whether or not lined or trimmed, n.e.s. 01/01/1988 31/12/2500 -65069900 01/01/1988 31/12/2006 LIBEN Headgear, whether or not lined or trimmed, n.e.s. 01/01/1988 31/12/2006 -65069910 01/01/2007 31/12/2500 LIBEN Hats and other headgear, of fur felt or of felt of wool and fur, made from the hat bodies, hoods or plateaux of heading 6501, whether or not lined or trimmed (excl. knitted or crocheted or made up from lace, made by assembling strips or pieces of felt, and toy and carnival headgear) 01/01/2007 31/12/2500 -65069990 01/01/2007 31/12/2500 LIBEN Headgear, whether or not lined or trimmed, n.e.s. 01/01/2007 31/12/2500 -6507 01/01/1988 31/12/2500 LIBEN Headbands, linings, covers, hat foundations, hat frames, peaks and chinstraps, for headgear (excl. headbands used by sportsmen as sweatbands, knitted or crocheted) 01/01/1988 31/12/2500 -650700 01/01/1988 31/12/2500 LIBEN Headbands, linings, covers, hat foundations, hat frames, peaks and chinstraps, for headgear (excl. headbands used by sportsmen as sweatbands, knitted or crocheted) 01/01/1988 31/12/2500 -65070000 01/01/1988 31/12/2500 LIBEN Headbands, linings, covers, hat foundations, hat frames, peaks and chinstraps, for headgear (excl. headbands used by sportsmen as sweatbands, knitted or crocheted) 01/01/1988 31/12/2500 -65CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 65 01/01/2002 31/12/2500 -65CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 65 01/01/2002 31/12/2500 -65CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 65 01/01/2002 31/12/2500 -65MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -65MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -65MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -65PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 65 carried by post 01/01/1988 31/12/2500 -65PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 65 carried by post 01/01/1988 31/12/2500 -65PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 65 carried by post 01/01/1988 31/12/2500 -65SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 65 01/01/1988 31/12/2500 -65SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 65 and SITC section 0 01/01/1997 31/12/2001 -65SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 65 and SITC group 000 01/01/1997 31/12/2001 -65SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 65 and SITC section 6 01/01/1997 31/12/2500 -65SSS657 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 65 and SITC group 657 01/01/1997 31/12/2500 -65SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 65 and SITC section 8 01/01/1997 31/12/2500 -65SSS848 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 65 and SITC group 848 01/01/1997 31/12/2500 -65SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 65 and SITC section 9 01/01/1988 31/12/1996 -65SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 65 and SITC section 9 01/01/1997 31/12/2500 -65SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 65 and SITC group 999 01/01/1988 31/12/1996 -65SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 65 and SITC group 999 01/01/1997 31/12/2500 -66 01/01/1988 31/12/2500 LIBEN UMBRELLAS, SUN UMBRELLAS, WALKING STICKS, SEAT-STICKS, WHIPS, RIDING-CROPS AND PARTS THEREOF 01/01/1988 31/12/2500 -6601 01/01/1988 31/12/2500 LIBEN Umbrellas and sun umbrellas, incl. walking-stick umbrellas, garden umbrellas and similar umbrellas (excl. toy umbrellas and beach tents) 01/01/1988 31/12/2500 -660110 01/01/1988 31/12/2500 LIBEN Garden or similar umbrellas (excl. beach tents) 01/01/1988 31/12/2500 -66011000 01/01/1988 31/12/2500 LIBEN Garden or similar umbrellas (excl. beach tents) 01/01/1988 31/12/2500 -660191 01/01/1988 31/12/2500 LIBEN Umbrellas having a telescopic shaft (excl. toy umbrellas) 01/01/1988 31/12/2500 -66019100 01/01/1988 31/12/2500 LIBEN Umbrellas having a telescopic shaft (excl. toy umbrellas) 01/01/1988 31/12/2500 -660199 01/01/1988 31/12/2500 LIBEN Umbrellas and sun umbrellas, incl. walking-stick umbrellas (excl. umbrellas having a telescopic shaft, garden umbrellas and the like, and toy umbrellas) 01/01/1988 31/12/2500 -66019910 01/01/1988 31/12/1993 LIBEN Umbrellas and sun umbrellas, incl. walking-stick umbrellas, with a cover of textile materials (excl. umbrellas having a telescopic shaft, garden umbrellas and the like, and toy umbrellas) 01/01/1988 31/12/1993 -66019911 01/01/1994 31/12/2010 LIBEN Umbrellas and sun umbrellas, incl. walking-stick umbrellas, with a cover of woven textile materials of man-made fibres (excl. umbrellas having a telescopic shaft, garden umbrellas and the like, and toy umbrellas) 01/01/1994 31/12/2010 -66019919 01/01/1994 31/12/2010 LIBEN Umbrellas and sun umbrellas, incl. walking-stick umbrellas, with a cover of woven textile materials (excl. such articles of man-made fibres, umbrellas having a telescopic shaft, garden umbrellas and the like, and toy umbrellas) 01/01/1994 31/12/2010 -66019920 01/01/2011 31/12/2500 LIBEN Umbrellas and sun umbrellas, incl. walking-stick umbrellas, with a cover of woven textile materials (excl. umbrellas having a telescopic shaft, garden umbrellas and the like, and toy umbrellas) 01/01/2011 31/12/2500 -66019990 01/01/1988 31/12/1993 LIBEN Umbrellas and sun umbrellas, incl. walking-stick umbrellas, with a cover of non-textile materials (excl. umbrellas having a telescopic shaft, garden umbrellas and the like, and toy umbrellas) 01/01/1988 31/12/1993 -66019990 01/01/1994 31/12/2500 LIBEN Umbrellas and sun umbrellas, incl. walking-stick umbrellas (excl. umbrellas with a cover of woven textile materials and umbrellas having a telescopic shaft, garden umbrellas and the like, and toy umbrellas) 01/01/1994 31/12/2500 -6602 01/01/1988 31/12/2500 LIBEN Walking sticks, seat-sticks, whips, riding-crops and the like (excl. measure walking sticks, crutches, firearm-sticks and sports sticks) 01/01/1988 31/12/2500 -660200 01/01/1988 31/12/2500 LIBEN Walking sticks, seat-sticks, whips, riding-crops and the like (excl. measure walking sticks, crutches, firearm-sticks and sports sticks) 01/01/1988 31/12/2500 -66020000 01/01/1988 31/12/2500 LIBEN Walking sticks, seat-sticks, whips, riding-crops and the like (excl. measure walking sticks, crutches, firearm-sticks and sports sticks) 01/01/1988 31/12/2500 -6603 01/01/1988 31/12/2500 LIBEN Parts, trimmings and accessories for umbrellas and sun umbrellas of heading 6601 or for walking sticks, seat-sticks, whips, riding-crops and the like of heading 6602 01/01/1988 31/12/2500 -660310 01/01/1988 31/12/2006 LIBEN Handles and knobs for umbrellas and sun umbrellas of heading 6601 or for walking sticks, seat-sticks, whips, riding-crops and the like of heading 6602 01/01/1988 31/12/2006 -66031000 01/01/1988 31/12/2006 LIBEN Handles and knobs for umbrellas and sun umbrellas of heading 6601 or for walking sticks, seat-sticks, whips, riding-crops and the like of heading 6602 01/01/1988 31/12/2006 -660320 01/01/1988 31/12/2500 LIBEN Umbrella frames, incl. frames mounted on shafts "sticks", for umbrellas and sun umbrellas of heading 6601 01/01/1988 31/12/2500 -66032000 01/01/1988 31/12/2500 LIBEN Umbrella frames, incl. frames mounted on shafts "sticks", for umbrellas and sun umbrellas of heading 6601 01/01/1988 31/12/2500 -660390 01/01/1988 31/12/2500 LIBEN Parts, trimmings and accessories for umbrellas and sun umbrellas of heading 6601 or for walking sticks, seat-sticks, whips, riding-crops and the like of heading 6602 (excl. umbrella frames, incl. frames mounted on shafts "sticks") 01/01/1988 31/12/2500 -66039000 01/01/1988 31/12/2006 LIBEN Parts, trimmings and accessories for umbrellas and sun umbrellas of heading 6601 or for walking sticks, seat-sticks, whips, riding-crops and the like of heading 6602 (excl. handles and knobs, and umbrella frames, incl. frames mounted on shafts "sticks") 01/01/1988 31/12/2006 -66039010 01/01/2007 31/12/2500 LIBEN Handles and knobs for umbrellas and sun umbrellas of heading 6601 or for walking sticks, seat-sticks, whips, riding-crops and the like of heading 6602 01/01/2007 31/12/2500 -66039090 01/01/2007 31/12/2500 LIBEN Parts, trimmings and accessories for umbrellas and sun umbrellas of heading 6601 or for walking sticks, seat-sticks, whips, riding-crops and the like of heading 6602 (excl. handles and knobs, and umbrella frames, incl. frames mounted on shafts "sticks") 01/01/2007 31/12/2500 -66CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 66 01/01/2002 31/12/2500 -66CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 66 01/01/2002 31/12/2500 -66CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 66 01/01/2002 31/12/2500 -66MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -66MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -66MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -66SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 66 01/01/1988 31/12/2500 -66SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 66 and SITC section 8 01/01/1997 31/12/2500 -66SSS899 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 66 and SITC group 899 01/01/1997 31/12/2500 -66SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 66 and SITC section 9 01/01/1988 31/12/1996 -66SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 66 and SITC section 9 01/01/1997 31/12/2500 -66SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 66 and SITC group 999 01/01/1988 31/12/1996 -66SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 66 and SITC group 999 01/01/1997 31/12/2500 -67 01/01/1988 31/12/2500 LIBEN PREPARED FEATHERS AND DOWN AND ARTICLES MADE OF FEATHERS OR OF DOWN; ARTIFICIAL FLOWERS; ARTICLES OF HUMAN HAIR 01/01/1988 31/12/2500 -6701 01/01/1988 31/12/2500 LIBEN Skins and other parts of birds with their feathers or down, feathers, parts of feathers, down and articles thereof (excl. goods of heading 0505, worked quills and scapes, footwear and headgear, articles of bedding and similar furnishing of heading 9404, toys, games and sports requisites, and collectors' pieces) 01/01/1988 31/12/2500 -670100 01/01/1988 31/12/2500 LIBEN Skins and other parts of birds with their feathers or down, feathers, parts of feathers, down and articles thereof (excl. goods of heading 0505, worked quills and scapes, footwear and headgear, articles of bedding and similar furnishing of heading 9404, toys, games and sports requisites, and collectors' pieces) 01/01/1988 31/12/2500 -67010000 01/01/1988 31/12/2500 LIBEN Skins and other parts of birds with their feathers or down, feathers, parts of feathers, down and articles thereof (excl. goods of heading 0505, worked quills and scapes, footwear and headgear, articles of bedding and similar furnishing of heading 9404, toys, games and sports requisites, and collectors' pieces) 01/01/1988 31/12/2500 -6702 01/01/1988 31/12/2500 LIBEN Artificial flowers, foliage and fruit and parts thereof, and articles made of artificial flowers, foliage or fruit, by binding, glueing, fitting into one another or similar methods 01/01/1988 31/12/2500 -670210 01/01/1988 31/12/2500 LIBEN Artificial flowers, foliage and fruit and parts thereof, and articles made of artificial flowers, foliage or fruit, by binding, glueing, fitting into one another or similar methods, of plastics 01/01/1988 31/12/2500 -67021000 01/01/1988 31/12/2500 LIBEN Artificial flowers, foliage and fruit and parts thereof, and articles made of artificial flowers, foliage or fruit, by binding, glueing, fitting into one another or similar methods, of plastics 01/01/1988 31/12/2500 -670290 01/01/1988 31/12/2500 LIBEN Artificial flowers, foliage and fruit and parts thereof, and articles made of artificial flowers, foliage or fruit, by binding, glueing, fitting into one another or similar methods (excl. of plastics) 01/01/1988 31/12/2500 -67029000 01/01/1988 31/12/2500 LIBEN Artificial flowers, foliage and fruit and parts thereof, and articles made of artificial flowers, foliage or fruit, by binding, glueing, fitting into one another or similar methods (excl. of plastics) 01/01/1988 31/12/2500 -6703 01/01/1988 31/12/2500 LIBEN Human hair, dressed, thinned, bleached or otherwise worked; wool, other animal hair or other textile materials, prepared for use in making wigs or the like (excl. natural plaits of human hair, whether or not washed and degreased, but not otherwise processed) 01/01/1988 31/12/2500 -670300 01/01/1988 31/12/2500 LIBEN Human hair, dressed, thinned, bleached or otherwise worked; wool, other animal hair or other textile materials, prepared for use in making wigs or the like (excl. natural plaits of human hair, whether or not washed and degreased, but not otherwise processed) 01/01/1988 31/12/2500 -67030000 01/01/1988 31/12/2500 LIBEN Human hair, dressed, thinned, bleached or otherwise worked; wool, other animal hair or other textile materials, prepared for use in making wigs or the like (excl. natural plaits of human hair, whether or not washed and degreased, but not otherwise processed) 01/01/1988 31/12/2500 -6704 01/01/1988 31/12/2500 LIBEN Wigs, false beards, eyebrows and eyelashes, switches and the like, of human or animal hair or of textile materials; articles of human hair, n.e.s. 01/01/1988 31/12/2500 -670411 01/01/1988 31/12/2500 LIBEN Complete wigs of synthetic textile materials 01/01/1988 31/12/2500 -67041100 01/01/1988 31/12/2500 LIBEN Complete wigs of synthetic textile materials 01/01/1988 31/12/2500 -670419 01/01/1988 31/12/2500 LIBEN False beards, eyebrows and eyelashes, switches and the like, of synthetic textile materials (excl. complete wigs) 01/01/1988 31/12/2500 -67041900 01/01/1988 31/12/2500 LIBEN False beards, eyebrows and eyelashes, switches and the like, of synthetic textile materials (excl. complete wigs) 01/01/1988 31/12/2500 -670420 01/01/1988 31/12/2500 LIBEN Wigs, false beards, eyebrows and eyelashes, switches and the like, of human hair, and articles of human hair, n.e.s. 01/01/1988 31/12/2500 -67042000 01/01/1988 31/12/2500 LIBEN Wigs, false beards, eyebrows and eyelashes, switches and the like, of human hair, and articles of human hair, n.e.s. 01/01/1988 31/12/2500 -670490 01/01/1988 31/12/2500 LIBEN Wigs, false beards, eyebrows and eyelashes, switches and the like, of animal hair or textile materials (excl. synthetic textile materials) 01/01/1988 31/12/2500 -67049000 01/01/1988 31/12/2500 LIBEN Wigs, false beards, eyebrows and eyelashes, switches and the like, of animal hair or textile materials (excl. synthetic textile materials) 01/01/1988 31/12/2500 -67CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 67 01/01/2002 31/12/2500 -67CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 67 01/01/2002 31/12/2500 -67CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 67 01/01/2002 31/12/2500 -67MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -67MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -67MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -67SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 67 01/01/1988 31/12/2500 -67SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 67 and SITC section 8 01/01/1997 31/12/2500 -67SSS899 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 67 and SITC group 899 01/01/1997 31/12/2500 -67SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 67 and SITC section 9 01/01/1988 31/12/1996 -67SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 67 and SITC section 9 01/01/1997 31/12/2500 -67SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 67 and SITC group 999 01/01/1988 31/12/1996 -67SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 67 and SITC group 999 01/01/1997 31/12/2500 -68 01/01/1988 31/12/2500 LIBEN ARTICLES OF STONE, PLASTER, CEMENT, ASBESTOS, MICA OR SIMILAR MATERIALS 01/01/1988 31/12/2500 -6801 01/01/1988 31/12/2500 LIBEN Setts, curbstones and flagstones, of natural stone (excl. slate) 01/01/1988 31/12/2500 -680100 01/01/1988 31/12/2500 LIBEN Setts, curbstones and flagstones, of natural stone (excl. slate) 01/01/1988 31/12/2500 -68010000 01/01/1988 31/12/2500 LIBEN Setts, curbstones and flagstones, of natural stone (excl. slate) 01/01/1988 31/12/2500 -6802 01/01/1988 31/12/2500 LIBEN Monumental or building stone, natural (excl. slate), worked, and articles; mosaic cubes etc. of natural stone, incl. slate, whether or not on a backing; artificially coloured granules, chippings, powder, of natural stone, incl. slate (excl. setts, curbstones, flagstones; articles of fused basalt and of fired steatite; jewellery, clocks, lamps and parts; buttons, chalks, original sculptures and statuary) 01/01/1988 31/12/2500 -680210 01/01/1988 31/12/2500 LIBEN Tiles, cubes and other processed articles of natural stone, incl. slate, for mosaics and the like, whether or not rectangular or square, the largest surface area of which is capable of being enclosed in a square of side of < 7 cm; artificially coloured granules, chippings and powder of natural stone, incl. slate 01/01/1988 31/12/2500 -68021000 01/01/1988 31/12/2500 LIBEN Tiles, cubes and other processed articles of natural stone, incl. slate, for mosaics and the like, whether or not rectangular or square, the largest surface area of which is capable of being enclosed in a square of side of < 7 cm; artificially coloured granules, chippings and powder of natural stone, incl. slate 01/01/1988 31/12/2500 -680221 01/01/1988 31/12/2500 LIBEN Marble, travertine and alabaster articles thereof, simply cut or sawn, with a flat or even surface (excl. with a completely or partly planed, sand-dressed, coarsely or finely ground or polished surface, tiles, cubes and similar articles of subheading 6802,10, setts, curbstones and flagstones) 01/01/1988 31/12/2500 -68022100 01/01/1988 31/12/2500 LIBEN Marble, travertine and alabaster articles thereof, simply cut or sawn, with a flat or even surface (excl. with a completely or partly planed, sand-dressed, coarsely or finely ground or polished surface, tiles, cubes and similar articles of subheading 6802,10, setts, curbstones and flagstones) 01/01/1988 31/12/2500 -680222 01/01/1988 31/12/2006 LIBEN Calcareous stone and articles thereof, simply cut or sawn, with a flat or even surface (excl. marble, travertine and alabaster, with a completely or partly planed, sand-dressed, coarsely or finely ground or polished surface, tiles, cubes and similar articles of subheading 6802,10, setts, curbstones and flagstones) 01/01/1988 31/12/2006 -68022200 01/01/1988 31/12/2006 LIBEN Calcareous stone and articles thereof, simply cut or sawn, with a flat or even surface (excl. marble, travertine and alabaster, with a completely or partly planed, sand-dressed, coarsely or finely ground or polished surface, tiles, cubes and similar articles of subheading 6802,10, setts, curbstones and flagstones) 01/01/1988 31/12/2006 -680223 01/01/1988 31/12/2500 LIBEN Granite and articles thereof, simply cut or sawn, with a flat or even surface (excl. with a completely or partly planed, sand-dressed, coarsely or finely ground or polished surface, tiles, cubes and similar articles of subheading 6802 10 00, setts, curbstones and flagstones) 01/01/1988 31/12/2500 -68022300 01/01/1988 31/12/2500 LIBEN Granite and articles thereof, simply cut or sawn, with a flat or even surface (excl. with a completely or partly planed, sand-dressed, coarsely or finely ground or polished surface, tiles, cubes and similar articles of subheading 6802 10 00, setts, curbstones and flagstones) 01/01/1988 31/12/2500 -680229 01/01/1988 31/12/2500 LIBEN Monumental or building stone and articles thereof, simply cut or sawn, with a flat or even surface (excl. marble, travertine, alabaster, granite and slate, those with a completely or partly planed, sand-dressed, coarsely or finely ground or polished surface, tiles, cubes and similar articles of subheading 6802 10 00, setts, curbstones and flagstones) 01/01/1988 31/12/2500 -68022900 01/01/1988 31/12/2006 LIBEN Monumental or building stone and articles thereof, simply cut or sawn, with a flat or even surface (excl. calcareous stone, granite and slate, with a completely or partly planed, sand-dressed, coarsely or finely ground or polished surface, tiles, cubes and similar articles of subheading 6802,10, setts, curbstones and flagstones) 01/01/1988 31/12/2006 -68022900 01/01/2007 31/12/2500 LIBEN Monumental or building stone and articles thereof, simply cut or sawn, with a flat or even surface (excl. marble, travertine, alabaster, granite and slate, those with a completely or partly planed, sand-dressed, coarsely or finely ground or polished surface, tiles, cubes and similar articles of subheading 6802 10 00, setts, curbstones and flagstones) 01/01/2007 31/12/2500 -680291 01/01/1988 31/12/2500 LIBEN Marble, travertine and alabaster, in any form (excl. tiles, cubes and similar articles of subheading 6802.10, imitation jewellery, clocks, lamps and lighting fittings and parts thereof, buttons, original sculptures and statuary, setts, curbstones and flagstones) 01/01/1988 31/12/2500 -68029100 01/01/1988 31/12/1993 LIBEN Marble, travertine and alabaster, in any form, polished, carved or otherwise processed (excl. tiles, cubes and similar articles of subheading 680210, imitation jewellery, clocks, lamps and lighting fittings and parts thereof, buttons, original sculptures and statuary, setts, curbstones and flagstones) 01/01/1988 31/12/1993 -68029100 01/01/2011 31/12/2500 LIBEN Marble, travertine and alabaster, in any form (excl. tiles, cubes and similar articles of subheading 6802.10, imitation jewellery, clocks, lamps and lighting fittings and parts thereof, buttons, original sculptures and statuary, setts, curbstones and flagstones) 01/01/2011 31/12/2500 -68029110 01/01/1994 31/12/2010 LIBEN Polished alabaster, in any form, decorated or otherwise worked, but not carved (excl. tiles, cubes and similar articles of subheading 6802.10, imitation jewellery, clocks, lamps and lighting fittings and parts thereof, buttons, original sculptures and statuary, setts, curbstones and flagstones) 01/01/1994 31/12/2010 -68029190 01/01/1994 31/12/2010 LIBEN Marble, travertine and alabaster, in any form, polished, decorated or otherwise worked, carvings of marble, travertine or alabaster (excl. alabaster polished, decorated or otherwise worked, but not carved, tiles, cubes and similar articles of subheading 6802.10, imitation jewellery, clocks, lamps and lighting fittings and parts thereof, buttons, original sculptures and statuary, setts, curbstones and flagstones) 01/01/1994 31/12/2010 -680292 01/01/1988 31/12/2500 LIBEN Calcareous stone, in any form (excl. marble, travertine and alabaster, tiles, cubes and similar articles of subheading 6802.10, imitation jewellery, clocks, lamps and lighting fittings and parts thereof, original sculptures and statuary, setts, curbstones and flagstones) 01/01/1988 31/12/2500 -68029200 01/01/1988 31/12/1993 LIBEN Calcareous stone, in any form, polished, carved or otherwise processed (excl. marble, travertine and alabaster, tiles, cubes and similar articles of subheading 680210, imitation jewellery, clocks, lamps and lighting fittings and parts thereof, original sculptures and statuary, setts, curbstones and flagstones) 01/01/1988 31/12/1993 -68029200 01/01/2011 31/12/2500 LIBEN Calcareous stone, in any form (excl. marble, travertine and alabaster, tiles, cubes and similar articles of subheading 6802.10, imitation jewellery, clocks, lamps and lighting fittings and parts thereof, original sculptures and statuary, setts, curbstones and flagstones) 01/01/2011 31/12/2500 -68029210 01/01/1994 31/12/2010 LIBEN Calcareous stone other than marble, travertine and alabaster, in any form, polished, decorated or otherwise worked, but not carved (excl. tiles, cubes and similar articles of subheading 6802.10, imitation jewellery, clocks, lamps and lighting fittings and parts thereof, buttons, original sculptures and statuary, setts, curbstones and flagstones) 01/01/1994 31/12/2010 -68029290 01/01/1994 31/12/2010 LIBEN Calcareous stone other than marble, travertine and alabaster, in any form, polished, decorated or otherwise worked and carved, carvings of calcareous stones (excl. tiles, cubes and similar articles of subheading 6802.10, imitation jewellery, clocks, lamps and lighting fittings and parts thereof, buttons, original sculptures and statuary, setts, curbstones and flagstones) 01/01/1994 31/12/2010 -680293 01/01/1988 31/12/2500 LIBEN Granite, in any form, polished, decorated or otherwise worked (excl. tiles, cubes and similar articles of subheading 6802.10, imitation jewellery, clocks, lamps and lighting fittings and parts thereof, original sculptures and statuary, setts, curbstones and flagstones) 01/01/1988 31/12/2500 -68029310 01/01/1988 31/12/2500 LIBEN Granite, in any form, polished, decorated or otherwise worked, but not carved, of a net weight of >= 10 kg (excl. clocks, lamps and lighting fittings and parts thereof, setts, curbstones and flagstones) 01/01/1988 31/12/2500 -68029390 01/01/1988 31/12/2500 LIBEN Granite, in any form, polished, decorated or otherwise worked, of a net weight of < 10 kg; carvings of granite (excl. tiles, cubes and similar articles of subheading 6802.10, imitation jewellery, clocks, lamps and lighting fittings and parts thereof, original sculptures and statuary, setts, curbstones and flagstones) 01/01/1988 31/12/2500 -680299 01/01/1988 31/12/2500 LIBEN Monumental or building stone, in any form, polished, decorated or otherwise worked (excl. calcareous stone, granite and slate, tiles, cubes and similar articles of subheading 6802.10, articles of fused basalt, articles of natural steatite, ceramically calcined, imitation jewellery, clocks, lamps and lighting fittings and parts thereof, original sculptures and statuary, setts, curbstones and flagstones) 01/01/1988 31/12/2500 -68029910 01/01/1988 31/12/2500 LIBEN Monumental or building stone, in any form, polished, decorated or otherwise worked, but not carved, of a net weight of >= 10 kg (excl. calcareous stone, granite and slate, articles of fused basalt, articles of natural steatite, ceramically calcined, clocks, lamps and lighting fittings and parts thereof, setts, curbstones and flagstones) 01/01/1988 31/12/2500 -68029990 01/01/1988 31/12/2500 LIBEN Monumental or building stone, natural (excl. calcareous stone, granite and slate), in various forms, polished, decorated or otherwise worked, net weight < 10 kg; carved articles of this stone (excl. tiles, cubes and similar articles of subheading 6802.10; setts, curbstones, flagstones; articles of fused basalt and fired steatite; jewellery, clocks, lamps and parts; buttons, chalks, original sculptures, statuary) 01/01/1988 31/12/2500 -6803 01/01/1988 31/12/2500 LIBEN Worked slate and articles of slate or of agglomerated slate (excl. slate granules, chippings and powder, mosaic cubes and the like, slate pencils, and ready-to-use slates or boards with writing or drawing surfaces) 01/01/1988 31/12/2500 -680300 01/01/1988 31/12/2500 LIBEN Worked slate and articles of slate or of agglomerated slate (excl. slate granules, chippings and powder, mosaic cubes and the like, slate pencils, and ready-to-use slates or boards with writing or drawing surfaces) 01/01/1988 31/12/2500 -68030000 01/01/2011 31/12/2011 LIBEN Worked slate and articles of slate or of agglomerated slate (excl. slate granules, chippings and powder, mosaic cubes and the like, slate pencils, and ready-to-use slates or boards with writing or drawing surfaces) 01/01/2011 31/12/2011 -68030010 01/01/1988 31/12/2010 LIBEN Roofing and wall slates, worked 01/01/1988 31/12/2010 -68030010 01/01/2012 31/12/2500 LIBEN Roofing and wall slates, worked 01/01/2012 31/12/2500 -68030090 01/01/1988 31/12/2010 LIBEN Worked slate and articles of slate or of agglomerated slate (excl. slate granules, chippings and powder, mosaic cubes and the like, slate pencils, ready-to-use slates or boards with writing or drawing surfaces, and roofing and wall slates) 01/01/1988 31/12/2010 -68030090 01/01/2012 31/12/2500 LIBEN Worked slate and articles of slate or of agglomerated slate (excl. slate granules, chippings and powder, mosaic cubes and the like, slate pencils, ready-to-use slates or boards with writing or drawing surfaces, and roofing and wall slates) 01/01/2012 31/12/2500 -6804 01/01/1988 31/12/2500 LIBEN Millstones, grindstones, grinding wheels and the like, without frameworks, for milling, grinding, pulping, sharpening, polishing, trueing or cutting, hand sharpening or polishing stones, and parts thereof, of natural stone, of agglomerated natural or artificial abrasives, or of ceramics, with or without parts of other materials (excl. perfumed pumice stones and grinding wheels etc. specifically for dental drill engines) 01/01/1988 31/12/2500 -680410 01/01/1988 31/12/2500 LIBEN Millstones and grindstones, without frameworks, for milling, grinding or pulping 01/01/1988 31/12/2500 -68041000 01/01/1988 31/12/2500 LIBEN Millstones and grindstones, without frameworks, for milling, grinding or pulping 01/01/1988 31/12/2500 -680421 01/01/1988 31/12/2500 LIBEN Millstones, grindstones, grinding wheels and the like, without frameworks, for sharpening, polishing, trueing or cutting, of agglomerated synthetic or natural diamond (excl. hand sharpening or polishing stones, and grinding wheels etc. specifically for dental drill engines) 01/01/1988 31/12/2500 -68042100 01/01/1988 31/12/2500 LIBEN Millstones, grindstones, grinding wheels and the like, without frameworks, for sharpening, polishing, trueing or cutting, of agglomerated synthetic or natural diamond (excl. hand sharpening or polishing stones, and grinding wheels etc. specifically for dental drill engines) 01/01/1988 31/12/2500 -680422 01/01/1988 31/12/2500 LIBEN Millstones, grindstones, grinding wheels and the like, without frameworks, for sharpening, polishing, trueing or cutting, of agglomerated abrasives or ceramics (excl. of agglomerated synthetic or natural diamond, hand sharpening or polishing stones, perfumed pumice stones, and grinding wheels etc. specifically for dental drill engines) 01/01/1988 31/12/2500 -68042211 01/01/1988 31/12/1990 LIBEN Millstones, grindstones, and the like, without frameworks, for sharpening, polishing, trueing or cutting, of agglomerated synthetic abrasives, with binder of synthetic or artificial resin, not reinforced (excl. of agglomerated synthetic diamond, hand sharpening or polishing stones, and grinding wheels etc. specifically for dental drill engines) 01/01/1988 31/12/1990 -68042212 01/01/1991 31/12/2500 LIBEN Millstones, grindstones, grinding wheels and the like, without frameworks, for sharpening, polishing, trueing or cutting, of artificial abrasives, with binder of synthetic or artificial resin, not reinforced (excl. of agglomerated synthetic or natural diamond, hand sharpening or polishing stones, perfumed pumice stones, and grinding wheels etc. specifically for dental drill engines) 01/01/1991 31/12/2500 -68042218 01/01/1991 31/12/2500 LIBEN Millstones, grindstones, grinding wheels and the like, without frameworks, for sharpening, polishing, trueing or cutting, of artificial abrasives, with binder of synthetic or artificial resin, reinforced (excl. of agglomerated synthetic or natural diamond, hand sharpening or polishing stones, perfumed pumice stones, and grinding wheels etc. specifically for dental drill engines) 01/01/1991 31/12/2500 -68042219 01/01/1988 31/12/1990 LIBEN Millstones, grindstones, and the like, without frameworks, for sharpening, polishing, trueing or cutting, of agglomerated synthetic abrasives, with binder of synthetic or artificial resin, reinforced (excl. of agglomerated synthetic diamond, hand sharpening or polishing stones, and grinding wheels etc. specifically for dental drill engines) 01/01/1988 31/12/1990 -68042230 01/01/1988 31/12/2500 LIBEN Millstones, grindstones, grinding wheels and the like, without frameworks, for sharpening, polishing, trueing or cutting, of artificial abrasives, with binder of ceramics or silicates (excl. of agglomerated synthetic or natural diamond, hand sharpening or polishing stones, perfumed pumice stones, and grinding wheels etc. specifically for dental drill engines) 01/01/1988 31/12/2500 -68042250 01/01/1988 31/12/2500 LIBEN Millstones, grindstones, grinding wheels and the like, without frameworks, for sharpening, polishing, trueing or cutting, of artificial abrasives, with binder of other than of synthetic or artificial resin, ceramics or silicates (excl. of agglomerated synthetic or natural diamond, hand sharpening or polishing stones, perfumed pumice stones, and grinding wheels etc. specifically for dental drill engines) 01/01/1988 31/12/2500 -68042290 01/01/1988 31/12/2500 LIBEN Millstones, grindstones, grinding wheels and the like, without frameworks, for sharpening, polishing, trueing or cutting, of agglomerated natural abrasives or ceramics (excl. of agglomerated synthetic or natural diamond, hand sharpening or polishing stones, perfumed pumice stones, and grinding wheels etc. specifically for dental drill engines) 01/01/1988 31/12/2500 -680423 01/01/1988 31/12/2500 LIBEN Millstones, grindstones, grinding wheels and the like, without frameworks, for sharpening, polishing, trueing or cutting, of natural stone (excl. of agglomerated natural abrasives or ceramics, perfumed pumice stones, hand sharpening or polishing stones, and grinding wheels etc. specifically for dental drill engines) 01/01/1988 31/12/2500 -68042300 01/01/1988 31/12/2500 LIBEN Millstones, grindstones, grinding wheels and the like, without frameworks, for sharpening, polishing, trueing or cutting, of natural stone (excl. of agglomerated natural abrasives or ceramics, perfumed pumice stones, hand sharpening or polishing stones, and grinding wheels etc. specifically for dental drill engines) 01/01/1988 31/12/2500 -680430 01/01/1988 31/12/2500 LIBEN Hand sharpening or polishing stones 01/01/1988 31/12/2500 -68043000 01/01/1988 31/12/2500 LIBEN Hand sharpening or polishing stones 01/01/1988 31/12/2500 -6804I0 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of heading 6804 01/01/2000 31/12/2005 -6804I000 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of heading 6804 01/01/2000 31/12/2005 -6804I1 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 6804; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1997 31/12/2005 -6804I100 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 6804; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1997 31/12/2005 -6805 01/01/1988 31/12/2500 LIBEN Natural or artificial abrasive powder or grain, on a base of textile material, paper, paperboard or other materials, whether or not cut to shape or sewn or otherwise made up 01/01/1988 31/12/2500 -680510 01/01/1988 31/12/2500 LIBEN Natural or artificial abrasive powder or grain, on a base of woven textile fabric only, whether or not cut to shape, sewn or otherwise made up 01/01/1988 31/12/2500 -68051000 01/01/1988 31/12/2500 LIBEN Natural or artificial abrasive powder or grain, on a base of woven textile fabric only, whether or not cut to shape, sewn or otherwise made up 01/01/1988 31/12/2500 -680520 01/01/1988 31/12/2500 LIBEN Natural or artificial abrasive powder or grain, on a base of paper or paperboard only, whether or not cut to shape, sewn or otherwise made up 01/01/1988 31/12/2500 -68052000 01/01/1988 31/12/2500 LIBEN Natural or artificial abrasive powder or grain, on a base of paper or paperboard only, whether or not cut to shape, sewn or otherwise made up 01/01/1988 31/12/2500 -680530 01/01/1988 31/12/2500 LIBEN Natural or artificial abrasive powder or grain, on a base of materials other than woven textile fabric only or paper or paperboard only, whether or not cut to shape, sewn or otherwise made up 01/01/1988 31/12/2500 -68053000 01/01/2011 31/12/2500 LIBEN Natural or artificial abrasive powder or grain, on a base of materials other than woven textile fabric only or paper or paperboard only, whether or not cut to shape, sewn or otherwise made up 01/01/2011 31/12/2500 -68053010 01/01/1988 31/12/2010 LIBEN Natural or artificial abrasive powder or grain, on a base of woven textile fabric combined with paper or paperboard, whether or not cut to shape, sewn or otherwise made up 01/01/1988 31/12/2010 -68053020 01/01/1994 31/12/2010 LIBEN Natural or artificial abrasive powder or grain, on a base of vulcanised fibre, whether or not cut to shape, sewn or otherwise made up 01/01/1994 31/12/2010 -68053080 01/01/1994 31/12/2010 LIBEN Natural or artificial abrasive powder or grain, on a base other than of merely woven textile fabric or of merely paper or paperboard of woven textile fabric combined with paper or paperboard or of vulcanised fibre, whether or not cut to shape, sewn or otherwise made up 01/01/1994 31/12/2010 -68053090 01/01/1988 31/12/1993 LIBEN Natural or artificial abrasive powder or grain, on a base of materials other than woven textile fabric only or paper or paperboard only or of woven textile fabric combined with paper or paperboard (excl. cut to shape, sewn or otherwise made up) 01/01/1988 31/12/1993 -6806 01/01/1988 31/12/2500 LIBEN Slag-wool, rock-wool and similar mineral wools; exfoliated vermiculite, expanded clays, foamed slag and similar expanded mineral materials; mixtures and articles of heat-insulating, sound-insulating or sound absorbing mineral materials (excl. articles of light concrete, asbestos, asbestos-cement, cellulose fibre-cement or the like, mixtures and other articles of or based on asbestos, and ceramic products) 01/01/1988 31/12/2500 -680610 01/01/1988 31/12/2500 LIBEN Slag-wool, rock-wool and similar mineral wools, incl. intermixtures thereof, in bulk, sheets or rolls 01/01/1988 31/12/2500 -68061000 01/01/1988 31/12/2500 LIBEN Slag-wool, rock-wool and similar mineral wools, incl. intermixtures thereof, in bulk, sheets or rolls 01/01/1988 31/12/2500 -680620 01/01/1988 31/12/2500 LIBEN Exfoliated vermiculite, expanded clays, foamed slag and similar expanded mineral materials, incl. intermixtures thereof 01/01/1988 31/12/2500 -68062010 01/01/1988 31/12/2500 LIBEN Expanded clays 01/01/1988 31/12/2500 -68062090 01/01/1988 31/12/2500 LIBEN Exfoliated vermiculite, foamed slag and similar expanded mineral materials, incl. intermixtures thereof (excl. expanded clays) 01/01/1988 31/12/2500 -680690 01/01/1988 31/12/2500 LIBEN Mixtures and articles of heat-insulating, sound-insulating or sound absorbing mineral materials (excl. slag-wool, rock-wool and similar mineral wools, exfoliated vermiculite, expanded clays, foamed slag and similar expanded mineral materials, articles of light concrete, asbestos-cement, cellulose fibre-cement or the like, mixtures and other articles of or based on asbestos, and ceramic products) 01/01/1988 31/12/2500 -68069000 01/01/1988 31/12/2500 LIBEN Mixtures and articles of heat-insulating, sound-insulating or sound absorbing mineral materials (excl. slag-wool, rock-wool and similar mineral wools, exfoliated vermiculite, expanded clays, foamed slag and similar expanded mineral materials, articles of light concrete, asbestos-cement, cellulose fibre-cement or the like, mixtures and other articles of or based on asbestos, and ceramic products) 01/01/1988 31/12/2500 -6806S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 6806 and SITC section 6 01/01/1997 31/12/2500 -6806S663 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 6806 and SITC group 663 01/01/1997 31/12/2500 -6807 01/01/1988 31/12/2500 LIBEN Articles of asphalt or of similar materials, e.g. petroleum bitumen or coal tar pitch 01/01/1988 31/12/2500 -680710 01/01/1988 31/12/2500 LIBEN Articles of asphalt or of similar materials, e.g. petroleum bitumen or coal tar pitch, in rolls 01/01/1988 31/12/2500 -68071000 01/01/2011 31/12/2500 LIBEN Articles of asphalt or of similar materials, e.g. petroleum bitumen or coal tar pitch, in rolls 01/01/2011 31/12/2500 -68071010 01/01/1995 31/12/2010 LIBEN Roofing and facing products, of asphalt or of similar materials, in rolls 01/01/1995 31/12/2010 -68071011 01/01/1988 31/12/1994 LIBEN Roofing and facing products of asphalt or similar materials, with a substrate of paper or paperboard 01/01/1988 31/12/1994 -68071019 01/01/1988 31/12/1994 LIBEN Roofing and facing products of asphalt or similar materials, with a substrate of materials other than paper or paperboard 01/01/1988 31/12/1994 -68071090 01/01/1988 31/12/2010 LIBEN Articles of asphalt or of similar materials e.g. petroleum pitch or coal-tar pitch, in rolls (excl. roofing and facing products) 01/01/1988 31/12/2010 -680790 01/01/1988 31/12/2500 LIBEN Articles of asphalt or of similar materials, e.g. petroleum bitumen or coal tar pitch (excl. in rolls) 01/01/1988 31/12/2500 -68079000 01/01/1988 31/12/2500 LIBEN Articles of asphalt or of similar materials, e.g. petroleum bitumen or coal tar pitch (excl. in rolls) 01/01/1988 31/12/2500 -6808 01/01/1988 31/12/2500 LIBEN Panels, boards, tiles, blocks and similar articles of vegetable fibre, of straw or of shavings, chips, particles, sawdust or other waste of wood, agglomerated with cement, plaster or other mineral binders (excl. articles of asbestos-cement, cellulose fibre-cement or the like) 01/01/1988 31/12/2500 -680800 01/01/1988 31/12/2500 LIBEN Panels, boards, tiles, blocks and similar articles of vegetable fibre, of straw or of shavings, chips, particles, sawdust or other waste of wood, agglomerated with cement, plaster or other mineral binders (excl. articles of asbestos-cement, cellulose fibre-cement or the like) 01/01/1988 31/12/2500 -68080000 01/01/1988 31/12/2500 LIBEN Panels, boards, tiles, blocks and similar articles of vegetable fibre, of straw or of shavings, chips, particles, sawdust or other waste of wood, agglomerated with cement, plaster or other mineral binders (excl. articles of asbestos-cement, cellulose fibre-cement or the like) 01/01/1988 31/12/2500 -6809 01/01/1988 31/12/2500 LIBEN Articles of plaster or of compositions based on plaster (excl. plaster bandages for straightening fractures, put up for retail sale; plaster splints for the treatment of fractures; lightweight with plaster agglomerated building boards or articles for heat-insulation, sound-insulation or sound absorption; anatomic and other models for demonstration purposes; original sculptures and statuary) 01/01/1988 31/12/2500 -680911 01/01/1988 31/12/2500 LIBEN Boards, sheets, panels, tiles and similar articles, of plaster or compositions based on plaster, faced or reinforced with paper or paperboard only (excl. ornamented and with plaster agglomerated articles for heat-insulation, sound-insulation or sound absorption) 01/01/1988 31/12/2500 -68091100 01/01/1988 31/12/2500 LIBEN Boards, sheets, panels, tiles and similar articles, of plaster or compositions based on plaster, faced or reinforced with paper or paperboard only (excl. ornamented and with plaster agglomerated articles for heat-insulation, sound-insulation or sound absorption) 01/01/1988 31/12/2500 -680919 01/01/1988 31/12/2500 LIBEN Boards, sheets, panels, tiles and similar articles, of plaster or compositions based on plaster (excl. ornamented, faced or reinforced with paper or paperboard only, and with plaster agglomerated articles for heat-insulation, sound-insulation or sound absorption) 01/01/1988 31/12/2500 -68091900 01/01/1988 31/12/2500 LIBEN Boards, sheets, panels, tiles and similar articles, of plaster or compositions based on plaster (excl. ornamented, faced or reinforced with paper or paperboard only, and with plaster agglomerated articles for heat-insulation, sound-insulation or sound absorption) 01/01/1988 31/12/2500 -680990 01/01/1988 31/12/2500 LIBEN Articles of plaster or of compositions based on plaster (excl. plaster bandages for straightening fractures, put up for retail sale; plaster splints for the treatment of fractures; lightweight with plaster agglomerated building boards or articles for heat-insulation, sound-insulation or sound absorption; anatomic and other models for demonstration purposes; non-ornamented boards, sheets, panels, tiles andsimilar articles) 01/01/1988 31/12/2500 -68099000 01/01/1988 31/12/2500 LIBEN Articles of plaster or of compositions based on plaster (excl. plaster bandages for straightening fractures, put up for retail sale; plaster splints for the treatment of fractures; lightweight with plaster agglomerated building boards or articles for heat-insulation, sound-insulation or sound absorption; anatomic and other models for demonstration purposes; non-ornamented boards, sheets, panels, tiles andsimilar articles) 01/01/1988 31/12/2500 -6809S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 6809 and SITC section 6 01/01/1997 31/12/2500 -6809S663 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 6809 and SITC group 663 01/01/1997 31/12/2500 -6810 01/01/1988 31/12/2500 LIBEN Articles of cement, concrete or artificial stone, whether or not reinforced 01/01/1988 31/12/2500 -681011 01/01/1988 31/12/2500 LIBEN Building blocks and bricks of cement, concrete or artificial stone, whether or not reinforced 01/01/1988 31/12/2500 -68101110 01/01/1988 31/12/2500 LIBEN Building blocks and bricks, of light concrete with a basis of crushed pumice, granulated slag, etc. 01/01/1988 31/12/2500 -68101190 01/01/1988 31/12/2500 LIBEN Building blocks and bricks of cement, concrete or artificial stone, whether or not reinforced (excl. of light concrete with a basis of crushed pumice, granulated slag, etc.) 01/01/1988 31/12/2500 -681019 01/01/1988 31/12/2500 LIBEN Tiles, flagstones, bricks and similar articles, of cement, concrete or artificial stone (excl. building blocks and bricks) 01/01/1988 31/12/2500 -68101900 01/01/2011 31/12/2500 LIBEN Tiles, flagstones, bricks and similar articles, of cement, concrete or artificial stone (excl. building blocks and bricks) 01/01/2011 31/12/2500 -68101910 01/01/1988 31/12/2010 LIBEN Roofing tiles of cement, concrete or artificial stone 01/01/1988 31/12/2010 -68101930 01/01/1988 31/12/1993 LIBEN Wall tiles and paving of cement, concrete or artificial stone, whether or not reinforced 01/01/1988 31/12/1993 -68101931 01/01/1994 31/12/2010 LIBEN Tiles and paving of concrete, whether or not reinforced 01/01/1994 31/12/2010 -68101939 01/01/1994 31/12/2010 LIBEN Wall tiles and paving of cement, concrete or artificial stone, whether or not reinforced 01/01/1994 31/12/2010 -68101990 01/01/1988 31/12/2010 LIBEN Flagstones and similar articles of cement, concrete or artificial stone (excl. building blocks and bricks, roofing tiles, wall tiles and paving) 01/01/1988 31/12/2010 -681020 01/01/1988 31/12/1995 LIBEN Pipes of cement, concrete or artificial stone, whether or not reinforced 01/01/1988 31/12/1995 -68102000 01/01/1988 31/12/1995 LIBEN Pipes of cement, concrete or artificial stone, whether or not reinforced 01/01/1988 31/12/1995 -681091 01/01/1988 31/12/2500 LIBEN Prefabricated structural components for building or civil engineering of cement, concrete or artificial stone, whether or not reinforced 01/01/1988 31/12/2500 -68109100 01/01/1988 31/12/1993 LIBEN Prefabricated structural components for building or civil engineering of cement, concrete or artificial stone, whether or not reinforced 01/01/1988 31/12/1993 -68109100 01/01/2011 31/12/2500 LIBEN Prefabricated structural components for building or civil engineering of cement, concrete or artificial stone, whether or not reinforced 01/01/2011 31/12/2500 -68109110 01/01/1994 31/12/2010 LIBEN Floor components and ceiling components, prefabricated, of cement, concrete or artificial stone, whether or not reinforced 01/01/1994 31/12/2010 -68109190 01/01/1994 31/12/2010 LIBEN Structural components for building or civil engineering, prefabricated, of cement, concrete or artificial stone, whether or not reinforced (excl. floor components and ceiling components) 01/01/1994 31/12/2010 -681099 01/01/1988 31/12/2500 LIBEN Articles of cement, concrete or artificial stone, whether or not reinforced (excl. prefabricated structural components for building or civil engineering, tiles, paving, bricks and the like) 01/01/1988 31/12/2500 -68109900 01/01/1988 31/12/1995 LIBEN Articles of cement, concrete or artificial stone, whether or not reinforced (excl. prefabricated structural components for building or civil engineering, pipes, tiles, paving, bricks and the like) 01/01/1988 31/12/1995 -68109900 01/01/1996 31/12/2500 LIBEN Articles of cement, concrete or artificial stone, whether or not reinforced (excl. prefabricated structural components for building or civil engineering, tiles, paving, bricks and the like) 01/01/1996 31/12/2500 -6811 01/01/1988 31/12/2500 LIBEN Articles of asbestos-cement, cellulose fibre-cement or the like 01/01/1988 31/12/2500 -681110 01/01/1988 31/12/2006 LIBEN Corrugated sheets of asbestos-cement, cellulose fibre-cement or the like 01/01/1988 31/12/2006 -68111000 01/01/1988 31/12/2006 LIBEN Corrugated sheets of asbestos-cement, cellulose fibre-cement or the like 01/01/1988 31/12/2006 -681120 01/01/1988 31/12/2006 LIBEN Sheets, panels, paving, tiles and similar articles, of asbestos-cement, cellulose fibre-cement or the like (excl. corrugated sheets) 01/01/1988 31/12/2006 -68112011 01/01/1988 31/12/2006 LIBEN Sheets of asbestos-cement, cellulose fibre-cement or the like, for roofing or wall cladding, of <= 40 x 60 cm (excl. corrugated sheets) 01/01/1988 31/12/2006 -68112019 01/01/1988 31/12/1994 LIBEN Sheets of asbestos-cement, cellulose fibre-cement or the like (excl. for roofing or wall cladding, of =< 40 x 60 cm, corrugated sheets, paving, tiles and the like) 01/01/1988 31/12/1994 -68112080 01/01/1995 31/12/2006 LIBEN Sheets, panels, tiles and similar articles, of asbestos-cement, cellulose-fibre cement or the like (other than corrugated sheets, sheets for roofing and walls, of <= 40 x 60 cm) 01/01/1995 31/12/2006 -68112090 01/01/1988 31/12/1994 LIBEN Paving, tiles and similar articles of asbestos-cement, cellulose fibre-cement or the like (excl. corrugated and other sheets) 01/01/1988 31/12/1994 -681130 01/01/1988 31/12/2006 LIBEN Tubes, pipes and tube or pipe fittings of asbestos-cement, cellulose fibre-cement or the like 01/01/1988 31/12/2006 -68113000 01/01/1988 31/12/2006 LIBEN Tubes, pipes and tube or pipe fittings of asbestos-cement, cellulose fibre-cement or the like 01/01/1988 31/12/2006 -681140 01/01/2007 31/12/2500 LIBEN Articles of asbestos-cement, cellulose fibre-cement or the like, containing asbestos 01/01/2007 31/12/2500 -68114000 01/01/2007 31/12/2500 LIBEN Articles of asbestos-cement, cellulose fibre-cement or the like, containing asbestos 01/01/2007 31/12/2500 -681181 01/01/2007 31/12/2500 LIBEN Corrugated sheets of cellulose fibre-cement or the like, not containing asbestos 01/01/2007 31/12/2500 -68118100 01/01/2007 31/12/2500 LIBEN Corrugated sheets of cellulose fibre-cement or the like, not containing asbestos 01/01/2007 31/12/2500 -681182 01/01/2007 31/12/2500 LIBEN Sheets, panels, paving, tiles and similar articles, of cellulose fibre-cement or the like, not containing asbestos (excl. corrugated sheets) 01/01/2007 31/12/2500 -68118200 01/01/2011 31/12/2500 LIBEN Sheets, panels, paving, tiles and similar articles, of cellulose fibre-cement or the like, not containing asbestos (excl. corrugated sheets) 01/01/2011 31/12/2500 -68118210 01/01/2007 31/12/2010 LIBEN Sheets of cellulose fibre-cement or the like, for roofing or wall cladding, of <= 40 x 60 cm, not containing asbestos (excl. corrugated sheets) 01/01/2007 31/12/2010 -68118290 01/01/2007 31/12/2010 LIBEN Sheets, panels, tiles and similar articles, of cellulose-fibre cement or the like, not containing asbestos (other than corrugated sheets, sheets for roofing and walls of <= 40 x 60 cm) 01/01/2007 31/12/2010 -681183 01/01/2007 31/12/2011 LIBEN Tubes, pipes and tube or pipe fittings of cellulose fibre-cement or the like, not containing asbestos 01/01/2007 31/12/2011 -68118300 01/01/2007 31/12/2011 LIBEN Tubes, pipes and tube or pipe fittings of cellulose fibre-cement or the like, not containing asbestos 01/01/2007 31/12/2011 -681189 01/01/2007 31/12/2500 LIBEN Articles of cellulose fibre-cement or the like, not containing asbestos (excl. corrugated and other sheets, panels, tiles and similar articles) 01/01/2007 31/12/2500 -68118900 01/01/2007 31/12/2011 LIBEN Articles of cellulose fibre-cement or the like, not containing asbestos (excl. tubes, pipes and tube or pipe fittings, corrugated and other sheets, panels, paving, tiles and similar articles) 01/01/2007 31/12/2011 -68118900 01/01/2012 31/12/2500 LIBEN Articles of cellulose fibre-cement or the like, not containing asbestos (excl. corrugated and other sheets, panels, tiles and similar articles) 01/01/2012 31/12/2500 -681190 01/01/1988 31/12/2006 LIBEN Articles of asbestos-cement, cellulose fibre-cement or the like (excl. tubes, pipes and tube or pipe fittings, corrugated and other sheets, panels, paving, tiles and similar articles) 01/01/1988 31/12/2006 -68119000 01/01/1988 31/12/2006 LIBEN Articles of asbestos-cement, cellulose fibre-cement or the like (excl. tubes, pipes and tube or pipe fittings, corrugated and other sheets, panels, paving, tiles and similar articles) 01/01/1988 31/12/2006 -6812 01/01/1988 31/12/2500 LIBEN Fabricated asbestos fibres; mixtures with a basis of asbestos or with a basis of asbestos and magnesium carbonate; articles of such mixtures or of asbestos, e.g., thread, woven fabric, clothing, headgear, footwear, gaskets, whether or not reinforced (excl. friction material with a basis of asbestos, and articles of asbestos-cement) 01/01/1988 31/12/2500 -681210 01/01/1988 31/12/2001 LIBEN Fabricated asbestos fibres; mixtures with a basis of asbestos or with a basis of asbestos and magnesium carbonate 01/01/1988 31/12/2001 -68121000 01/01/1988 31/12/2001 LIBEN Fabricated asbestos fibres; mixtures with a basis of asbestos or with a basis of asbestos and magnesium carbonate 01/01/1988 31/12/2001 -681220 01/01/1988 31/12/2001 LIBEN Yarn and thread of asbestos or of mixtures with a basis of asbestos or a basis of asbestos and magnesium carbonate 01/01/1988 31/12/2001 -68122000 01/01/1988 31/12/2001 LIBEN Yarn and thread of asbestos or of mixtures with a basis of asbestos or a basis of asbestos and magnesium carbonate 01/01/1988 31/12/2001 -681230 01/01/1988 31/12/2001 LIBEN Cords and string, whether or not plaited, of asbestos or of mixtures with a basis of asbestos or a basis of asbestos and magnesium carbonate 01/01/1988 31/12/2001 -68123000 01/01/1988 31/12/2001 LIBEN Cords and string, whether or not plaited, of asbestos or of mixtures with a basis of asbestos or a basis of asbestos and magnesium carbonate 01/01/1988 31/12/2001 -681240 01/01/1988 31/12/2001 LIBEN Woven or knitted fabric of asbestos or of mixtures with a basis of asbestos or a basis of asbestos and magnesium carbonate 01/01/1988 31/12/2001 -68124000 01/01/1988 31/12/2001 LIBEN Woven or knitted fabric of asbestos or of mixtures with a basis of asbestos or a basis of asbestos and magnesium carbonate 01/01/1988 31/12/2001 -681250 01/01/1988 31/12/2006 LIBEN Clothing, clothing accessories, footwear and headgear of asbestos or of mixtures with a basis of asbestos or a basis of asbestos and magnesium carbonate 01/01/1988 31/12/2006 -68125000 01/01/1988 31/12/2006 LIBEN Clothing, clothing accessories, footwear and headgear of asbestos or of mixtures with a basis of asbestos or a basis of asbestos and magnesium carbonate 01/01/1988 31/12/2006 -681260 01/01/1988 31/12/2006 LIBEN Paper, millboard and felt of asbestos or of mixtures with a basis of asbestos or a basis of asbestos and magnesium carbonate (excl. containing < 35% by weight of asbestos) 01/01/1988 31/12/2006 -68126000 01/01/1988 31/12/2006 LIBEN Paper, millboard and felt of asbestos or of mixtures with a basis of asbestos or a basis of asbestos and magnesium carbonate (excl. containing < 35% by weight of asbestos) 01/01/1988 31/12/2006 -681270 01/01/1988 31/12/2006 LIBEN Compressed asbestos fibre jointing, in sheets or rolls 01/01/1988 31/12/2006 -68127000 01/01/1988 31/12/2006 LIBEN Compressed asbestos fibre jointing, in sheets or rolls 01/01/1988 31/12/2006 -681280 01/01/2007 31/12/2500 LIBEN Fabricated crocidolite asbestos fibres; mixtures with a basis of crocidolite asbestos or with a basis of crocidolite asbestos and magnesium carbonate; articles of such mixtures or of crocidolite asbestos, e.g., thread, woven fabric, clothing, headgear, footwear, gaskets, whether or not reinforced (excl. friction material with a basis of crocidolite asbestos, and articles of crocidolite asbestos-cement) 01/01/2007 31/12/2500 -68128010 01/01/2007 31/12/2500 LIBEN Fabricated crocidolite asbestos fibres; mixtures with a basis of crocidolite asbestos or with a basis of crocidolite asbestos and magnesium carbonate 01/01/2007 31/12/2500 -68128090 01/01/2007 31/12/2500 LIBEN Articles of crocidolite asbestos or of mixtures based on crocidolite asbestos or crocidolite asbestos and magnesium carbonate, e.g., yarn, thread, cords, string, woven or knitted fabric, whether or not reinforced (excl. fabricated crocidolite asbestos fibres; mixtures with a basis of crocidolite asbestos or with a basis of crocidolite asbestos and magnesium carbonate; friction material with a basis of crocidolite asbestos; articles of crocidolite asbestos-cement) 01/01/2007 31/12/2500 -681290 01/01/1988 31/12/2006 LIBEN Fabricated asbestos fibres; mixtures with a basis of asbestos or with a basis of asbestos and magnesium carbonate; articles of such mixtures or of asbestos, e.g., yarn, thread, cords, string, woven or knitted fabric, whether or not reinforced (excl. compressed asbestos fibre jointing, in sheets or rolls; paper, millboard and felt; clothing, clothing accessories, footwear and headgear; friction material with a basis of asbestos; articles of asbestos-cement) 01/01/1988 31/12/2006 -68129010 01/01/1988 31/12/2005 LIBEN Articles of asbestos or of mixtures based on asbestos or asbestos and magnesium carbonate, for use in civil aircraft (excl. compressed asbestos fibre jointing, in sheets or rolls, paper, millboard and felt, friction material with a basis of asbestos and articles of asbestos cement) 01/01/1988 31/12/2005 -68129020 01/01/2006 31/12/2006 LIBEN Fabricated asbestos fibres; mixtures with a basis of asbestos or with a basis of asbestos and magnesium carbonate 01/01/2006 31/12/2006 -68129030 01/01/2002 31/12/2005 LIBEN Fabricated asbestos fibres; mixtures with a basis of asbestos or with a basis of asbestos and magnesium carbonate 01/01/2002 31/12/2005 -68129080 01/01/2002 31/12/2005 LIBEN Articles of asbestos or of mixtures based on asbestos or asbestos and magnesium carbonate, e.g., yarn, thread, cords, string, woven or knitted fabric, whether or not reinforced (excl. for use in civil aircraft of subheading 6812.90.10; fabricated asbestos fibres; mixtures with a basis of asbestos or with a basis of asbestos and magnesium carbonate; compressed asbestos fibre jointing, in sheets or rolls; paper, millboard and felt; clothing, clothing accessories, footwear and headgear; friction material with a basis of asbestos; articles of asbestos-cement) 01/01/2002 31/12/2005 -68129090 01/01/1988 31/12/2001 LIBEN Articles of asbestos or of mixtures based on asbestos or asbestos and magnesium carbonate (excl. compressed asbestos fibre jointing, in sheets or rolls, paper, millboard and felt, clothing, clothing accessories, footwear and headgear, woven or knitted fabric, cords and string, yarn and thread, friction material, articles of asbestos cement, or for use in civil aircraft) 01/01/1988 31/12/2001 -68129095 01/01/2006 31/12/2006 LIBEN Articles of asbestos or of mixtures based on asbestos or asbestos and magnesium carbonate, e.g., yarn, thread, cords, string, woven or knitted fabric, whether or not reinforced (excl. fabricated asbestos fibres; mixtures with a basis of asbestos or with a basis of asbestos and magnesium carbonate; compressed asbestos fibre jointing, in sheets or rolls; paper, millboard and felt; clothing, clothing accessories, footwear and headgear; friction material with a basis of asbestos; articles of asbestos-cement) 01/01/2006 31/12/2006 -681291 01/01/2007 31/12/2500 LIBEN Clothing, clothing accessories, footwear and headgear of asbestos or of mixtures with a basis of asbestos or a basis of asbestos and magnesium carbonate (excl. of crocidolite asbestos) 01/01/2007 31/12/2500 -68129100 01/01/2007 31/12/2500 LIBEN Clothing, clothing accessories, footwear and headgear of asbestos or of mixtures with a basis of asbestos or a basis of asbestos and magnesium carbonate (excl. of crocidolite asbestos) 01/01/2007 31/12/2500 -681292 01/01/2007 31/12/2500 LIBEN Paper, millboard and felt of asbestos or of mixtures with a basis of asbestos or a basis of asbestos and magnesium carbonate (excl. containing < 35% by weight of asbestos and of crocidolite asbestos) 01/01/2007 31/12/2500 -68129200 01/01/2007 31/12/2500 LIBEN Paper, millboard and felt of asbestos or of mixtures with a basis of asbestos or a basis of asbestos and magnesium carbonate (excl. containing < 35% by weight of asbestos and of crocidolite asbestos) 01/01/2007 31/12/2500 -681293 01/01/2007 31/12/2500 LIBEN Compressed asbestos fibre jointing, in sheets or rolls (excl. of crocidolite asbestos) 01/01/2007 31/12/2500 -68129300 01/01/2007 31/12/2500 LIBEN Compressed asbestos fibre jointing, in sheets or rolls (excl. of crocidolite asbestos) 01/01/2007 31/12/2500 -681299 01/01/2007 31/12/2500 LIBEN Fabricated asbestos fibres; mixtures with a basis of asbestos or with a basis of asbestos and magnesium carbonate; articles of such mixtures or of asbestos, e.g., yarn, thread, cords, string, woven or knitted fabric, whether or not reinforced (excl. of crocidolite asbestos; compressed asbestos fibre jointing, in sheets or rolls; paper, millboard and felt; clothing, clothing accessories, footwear and headgear; friction material with a basis of asbestos; articles of asbestos-cement) 01/01/2007 31/12/2500 -68129910 01/01/2007 31/12/2500 LIBEN Fabricated asbestos fibres; mixtures with a basis of asbestos or with a basis of asbestos and magnesium carbonate (excl. of crocidolite asbestos) 01/01/2007 31/12/2500 -68129990 01/01/2007 31/12/2500 LIBEN Articles of asbestos or of mixtures based on asbestos or asbestos and magnesium carbonate, e.g., yarn, thread, cords, string, woven or knitted fabric, whether or not reinforced (excl. of crocidolite asbestos; fabricated asbestos fibres; mixtures with a basis of asbestos or with a basis of asbestos and magnesium carbonate; compressed asbestos fibre jointing, in sheets or rolls; paper, millboard and felt; clothing, clothing accessories, footwear and headgear; friction material with a basis of asbestos; articles of asbestos-cement) 01/01/2007 31/12/2500 -6813 01/01/1988 31/12/2500 LIBEN Friction material and articles thereof, e.g., sheets, rolls, strips, segments, discs, washers, pads, not mounted, for brakes, clutches or the like, with a basis of asbestos, other mineral substances or cellulose, whether or not combined with textile or other materials (excl. mounted friction material) 01/01/1988 31/12/2500 -681310 01/01/1988 31/12/2006 LIBEN Brake linings and pads with a basis of asbestos, of other mineral substances or of cellulose, whether or not combined with textile or other materials 01/01/1988 31/12/2006 -68131000 01/01/2006 31/12/2006 LIBEN Brake linings and pads with a basis of asbestos, of other mineral substances or of cellulose, whether or not combined with textile or other materials 01/01/2006 31/12/2006 -68131010 01/01/1988 31/12/2005 LIBEN Brake linings and pads with a basis of asbestos or other mineral substances, whether or not combined with textile or other materials, for civil aircraft 01/01/1988 31/12/2005 -68131090 01/01/1988 31/12/2005 LIBEN Brake linings and pads with a basis of asbestos, of other mineral substances or of cellulose, whether or not combined with textile or other materials (excl. with a basis of asbestos or other mineral substances for civil aircraft) 01/01/1988 31/12/2005 -681320 01/01/2007 31/12/2500 LIBEN Friction material and articles thereof, e.g. sheets, rolls, strips, segments, discs, washers and pads, for clutches and the like, not mounted, containing asbestos, whether or not combined with textile or other materials 01/01/2007 31/12/2500 -68132000 01/01/2007 31/12/2500 LIBEN Friction material and articles thereof, e.g. sheets, rolls, strips, segments, discs, washers and pads, for clutches and the like, not mounted, containing asbestos, whether or not combined with textile or other materials 01/01/2007 31/12/2500 -681381 01/01/2007 31/12/2500 LIBEN Brake linings and pads, with a basis of mineral substances or cellulose, whether or not combined with textile or other materials (excl. containing asbestos) 01/01/2007 31/12/2500 -68138100 01/01/2007 31/12/2500 LIBEN Brake linings and pads, with a basis of mineral substances or cellulose, whether or not combined with textile or other materials (excl. containing asbestos) 01/01/2007 31/12/2500 -681389 01/01/2007 31/12/2500 LIBEN Friction material and articles thereof, e.g. sheets, rolls, strips, segments, discs, washers and pads, for clutches and the like, with a basis of mineral substances or cellulose, whether or not combined with textile or other materials (excl. containing asbestos, and brake linings and pads) 01/01/2007 31/12/2500 -68138900 01/01/2007 31/12/2500 LIBEN Friction material and articles thereof, e.g. sheets, rolls, strips, segments, discs, washers and pads, for clutches and the like, with a basis of mineral substances or cellulose, whether or not combined with textile or other materials (excl. containing asbestos, and brake linings and pads) 01/01/2007 31/12/2500 -681390 01/01/1988 31/12/2006 LIBEN Friction material and articles thereof, e.g. sheets, rolls, strips, segments, discs, washers and pads, for clutches and the like, with a basis of asbestos, other mineral substances or cellulose, whether or not combined with textile or other materials (excl. brake linings and pads) 01/01/1988 31/12/2006 -68139000 01/01/2006 31/12/2006 LIBEN Friction material and articles thereof, e.g. sheets, rolls, strips, segments, discs, washers and pads, for clutches and the like, with a basis of asbestos, other mineral substances or cellulose, whether or not combined with textile or other materials (excl. brake linings and pads) 01/01/2006 31/12/2006 -68139010 01/01/1988 31/12/2005 LIBEN Friction material and articles thereof, e.g. sheets, rolls, strips, segments, discs, washers and pads, for clutches and the like, with a basis of asbestos or other mineral substances, whether or not combined with textile or other materials, for civil aircraft (excl. brake linings and pads) 01/01/1988 31/12/2005 -68139090 01/01/1988 31/12/2005 LIBEN Friction material and articles thereof, e.g. sheets, rolls, strips, segments, discs, washers and pads, for clutches and the like, with a basis of asbestos, other mineral substances or cellulose, whether or not combined with textile or other materials (excl. brake linings and pads, and friction material with a basis of asbestos or other mineral substances for civil aircraft) 01/01/1988 31/12/2005 -6814 01/01/1988 31/12/2500 LIBEN Worked mica and articles of mica, incl. agglomerated or reconstituted mica, whether or not on a support of paper, paperboard or other materials (excl. electrical insulators, insulating fittings, resistors and capacitors, protective goggles of mica and their glasses, and mica in the form of Christmas tree decorations) 01/01/1988 31/12/2500 -681410 01/01/1988 31/12/2500 LIBEN Plates, sheets and strips of agglomerated or reconstituted mica, whether or not on a support of paper, paperboard or other materials, in rolls or merely cut into square or rectangular shapes 01/01/1988 31/12/2500 -68141000 01/01/1988 31/12/2500 LIBEN Plates, sheets and strips of agglomerated or reconstituted mica, whether or not on a support of paper, paperboard or other materials, in rolls or merely cut into square or rectangular shapes 01/01/1988 31/12/2500 -681490 01/01/1988 31/12/2500 LIBEN Worked mica and articles of mica (excl. electrical insulators, insulating fittings, resistors and capacitors, protective goggles of mica and their glasses, mica in the form of Christmas tree decorations, and plates, sheets and strips of agglomerated or reconstituted mica, whether or not on supports) 01/01/1988 31/12/2500 -68149000 01/01/2004 31/12/2500 LIBEN Worked mica and articles of mica (excl. electrical insulators, insulating fittings, resistors and capacitors, protective goggles of mica and their glasses, mica in the form of Christmas tree decorations, and plates, sheets and strips of agglomerated or reconstituted mica, whether or not on supports) 01/01/2004 31/12/2500 -68149010 01/01/1988 31/12/2003 LIBEN Sheets or splittings of mica cut for a specific purpose (excl. electrical insulators, insulating fittings, resistors and capacitors, and mica in the form of Christmas tree decorations) 01/01/1988 31/12/2003 -68149090 01/01/1988 31/12/2003 LIBEN Worked mica and articles of mica (excl. electrical insulators, parts of insulators, resistors and condensers; protective goggles of mica and lenses for such goggles; Christmas-tree decorations of mica; sheets or splittings of mica, cut for specific purposes; plates, sheets and strips of agglomerated or reconstituted mica, in rolls or only cut into rectangular, incl. square, shapes) 01/01/1988 31/12/2003 -6815 01/01/1988 31/12/2500 LIBEN Articles of stone or of other mineral substances, incl. carbon fibres, articles of carbon fibres and articles of peat, n.e.s. 01/01/1988 31/12/2500 -681510 01/01/1988 31/12/2500 LIBEN Articles of graphite or other carbon, incl. carbon fibres, for non-electrical purposes 01/01/1988 31/12/2500 -68151000 01/01/1988 31/12/1993 LIBEN Articles of graphite or other carbon (excl. for electrical purposes) 01/01/1988 31/12/1993 -68151010 01/01/1994 31/12/2016 LIBEN Carbon fibres and articles of carbon fibres, for non-electrical purposes 01/01/1994 31/12/2016 -68151010 01/01/2017 31/12/2500 LIBEN Carbon fibres and articles of carbon fibres, for non-electrical purposes 01/01/2017 31/12/2500 -68151090 01/01/1994 31/12/2500 LIBEN Articles of graphite or other carbon, for non-electrical purposes (excl. carbon fibres and articles of carbon fibres) 01/01/1994 31/12/2500 -681520 01/01/1988 31/12/2500 LIBEN Articles of peat (excl. textile products from peat fibres) 01/01/1988 31/12/2500 -68152000 01/01/1988 31/12/2500 LIBEN Articles of peat (excl. textile products from peat fibres) 01/01/1988 31/12/2500 -681591 01/01/1988 31/12/2500 LIBEN Articles of stone or other mineral substances, n.e.s. containing magnesite, dolomite or chromite 01/01/1988 31/12/2500 -68159100 01/01/1988 31/12/2500 LIBEN Articles of stone or other mineral substances, n.e.s. containing magnesite, dolomite or chromite 01/01/1988 31/12/2500 -681599 01/01/1988 31/12/2500 LIBEN Articles of stone or other mineral substances, n.e.s. (excl. containing magnesite, dolomite or chromite and articles of graphite or other carbon) 01/01/1988 31/12/2500 -68159900 01/01/2011 31/12/2500 LIBEN Articles of stone or other mineral substances, n.e.s. (excl. containing magnesite, dolomite or chromite and articles of graphite or other carbon) 01/01/2011 31/12/2500 -68159910 01/01/1988 31/12/2010 LIBEN Articles of refractory mineral substances, chemically bonded, not calcined, n.e.s. 01/01/1988 31/12/2010 -68159990 01/01/1988 31/12/2010 LIBEN Articles of stone or other mineral substances, n.e.s. (excl. containing magnesite, dolomite or chromite, articles of graphite or other carbon, and articles of refractory mineral substances, chemically bonded) 01/01/1988 31/12/2010 -68CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 68 01/01/2002 31/12/2500 -68CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 68 01/01/2002 31/12/2500 -68CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 68 01/01/2002 31/12/2500 -68II 01/01/1988 31/12/2500 LIBEN Components of complete industrial plants of chapter 68 01/01/1988 31/12/2500 -68III0 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 68; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -68III0 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of chapter 68 01/01/2001 31/12/2005 -68III0 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 68 01/01/2006 31/12/2500 -68III000 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 68; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -68III000 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of chapter 68; energy (including production and distribution of steam and hot water) 01/01/2001 31/12/2005 -68III000 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 68; energy (including production and distribution of steam and hot water) 01/01/2006 31/12/2500 -68III1 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 68; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -68III100 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 68; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -68III2 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 68; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -68III200 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 68; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -68III3 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 68; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -68III300 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 68; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -68III4 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 68; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -68III400 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 68; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -68III5 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 68; food, drink and tobacco industry 01/01/1988 31/12/1992 -68III500 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 68; food, drink and tobacco industry 01/01/1988 31/12/1992 -68III6 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 68; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -68III600 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 68; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -68III7 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 68; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -68III700 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 68; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -68III8 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 68; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -68III800 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 68; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -68III9 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 68; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -68III900 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 68; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -68MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -68MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -68MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -68SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 68 01/01/1988 31/12/2500 -68SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 68 and SITC section 0 01/01/1997 31/12/2001 -68SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 68 and SITC group 000 01/01/1997 31/12/2001 -68SSS6 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 68 and SITC section 6 01/01/1992 31/12/2500 -68SSS661 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 68 and SITC group 661 01/01/1997 31/12/2500 -68SSS663 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 68 and SITC group 663 01/01/1992 31/12/2500 -68SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 68 and SITC section 9 01/01/1988 31/12/1996 -68SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 68 and SITC section 9 01/01/1997 31/12/2500 -68SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 68 and SITC group 999 01/01/1988 31/12/1996 -68SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 68 and SITC group 999 01/01/1997 31/12/2500 -68VV 01/01/2003 31/12/2500 LIBEN Imported goods of chapter 68 for the assembly of motor vehicles 01/01/2003 31/12/2500 -68VVV0 01/01/2003 31/12/2500 LIBEN Imported goods of chapter 68 for the assembly of motor vehicles 01/01/2003 31/12/2500 -68VVV000 01/01/2003 31/12/2500 LIBEN Imported goods of chapter 68 for the assembly of motor vehicles 01/01/2003 31/12/2500 -69 01/01/1988 31/12/2500 LIBEN CERAMIC PRODUCTS 01/01/1988 31/12/2500 -6901 01/01/1988 31/12/2500 LIBEN Bricks, blocks, tiles and other ceramic goods of siliceous fossil meals, e.g. kieselguhr, tripolite or diatomite, or of similar siliceous earths 01/01/1988 31/12/2500 -690100 01/01/1988 31/12/2500 LIBEN Bricks, blocks, tiles and other ceramic goods of siliceous fossil meals, e.g. kieselguhr, tripolite or diatomite, or of similar siliceous earths 01/01/1988 31/12/2500 -69010000 01/01/2004 31/12/2500 LIBEN Bricks, blocks, tiles and other ceramic goods of siliceous fossil meals, e.g. kieselguhr, tripolite or diatomite, or of similar siliceous earths 01/01/2004 31/12/2500 -69010010 01/01/1988 31/12/2003 LIBEN Bricks, of siliceous fossil meals, e.g. kieselguhr, tripolite or diatomite, or of similar siliceous earths, weighing 650 kg/m³ 01/01/1988 31/12/2003 -69010090 01/01/1988 31/12/2003 LIBEN Bricks, blocks, tiles and other ceramic goods of siliceous fossil meals, e.g. kieselguhr, tripolite or diatomite, or of similar siliceous earths (excl. bricks weighing 650 kg/m³) 01/01/1988 31/12/2003 -6901S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 6901 and SITC section 6 01/01/1997 31/12/2500 -6901S662 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 6901 and SITC group 662 01/01/1997 31/12/2500 -6902 01/01/1988 31/12/2500 LIBEN Refractory bricks, blocks, tiles and similar refractory ceramic constructional goods (excl. those of siliceous fossil meals or similar siliceous earths) 01/01/1988 31/12/2500 -690210 01/01/1988 31/12/2500 LIBEN Refractory bricks, blocks, tiles and similar refractory ceramic constructional goods containing, by weight, singly or together, > 50% of the elements Mg, Ca or Cr, expressed as MgO, CaO or Cr2O3 01/01/1988 31/12/2500 -69021000 01/01/1988 31/12/2500 LIBEN Refractory bricks, blocks, tiles and similar refractory ceramic constructional goods containing, by weight, singly or together, > 50% of the elements Mg, Ca or Cr, expressed as MgO, CaO or Cr2O3 01/01/1988 31/12/2500 -690220 01/01/1988 31/12/2500 LIBEN Refractory bricks, blocks, tiles and similar refractory ceramic constructional goods containing, by weight, > 50% alumina, silica or a mixture or compound of these products (excl. those of siliceous fossil meals or similar siliceous earths) 01/01/1988 31/12/2500 -69022010 01/01/1988 31/12/2500 LIBEN Refractory bricks, blocks, tiles and similar refractory ceramic constructional goods containing, by weight, >= 93% silica (excl. those of siliceous fossil meals or similar siliceous earths) 01/01/1988 31/12/2500 -69022091 01/01/1988 31/12/2500 LIBEN Refractory bricks, blocks, tiles and similar refractory ceramic constructional goods containing, by weight, > 7% but < 45% alumina, but > 50% by weight combined with silica 01/01/1988 31/12/2500 -69022099 01/01/1988 31/12/2500 LIBEN Refractory bricks, blocks, tiles and similar refractory ceramic constructional goods containing, by weight, > 50% alumina, silica or a mixture or compound of these products (excl. containing, by weight, >= 93% silica, > 7% but < 45% alumina and those of siliceous fossil meals or similar siliceous earths) 01/01/1988 31/12/2500 -690290 01/01/1988 31/12/2500 LIBEN Refractory bricks, blocks, tiles and similar refractory ceramic constructional goods (excl. containing, by weight, singly or together, > 50% of the elements Mg, Ca or Cr, expressed as MgO, CaO or Cr2O3, containing, by weight, > 50% alumina, silica or a mixture or compound of these products and those of siliceous fossil meals or similar siliceous earths) 01/01/1988 31/12/2500 -69029000 01/01/1988 31/12/2500 LIBEN Refractory bricks, blocks, tiles and similar refractory ceramic constructional goods (excl. containing, by weight, singly or together, > 50% of the elements Mg, Ca or Cr, expressed as MgO, CaO or Cr2O3, containing, by weight, > 50% alumina, silica or a mixture or compound of these products and those of siliceous fossil meals or similar siliceous earths) 01/01/1988 31/12/2500 -6902I2 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 6902; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -6902I200 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 6902; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -6903 01/01/1988 31/12/2500 LIBEN Retorts, crucibles, mufflers, nozzles, plugs, supports, cupels, tubes, pipes, sheaths, rods and other refractory ceramic goods (excl. those of siliceous fossil meals or of similar siliceous earths, and refractory bricks, blocks, tiles and similar refractory ceramic constructional goods) 01/01/1988 31/12/2500 -690310 01/01/1988 31/12/2500 LIBEN Retorts, crucibles, mufflers, nozzles, plugs, supports, cupels, tubes, pipes, sheaths, rods and other refractory ceramic goods, containing, by weight, > 50% graphite, other carbon or a mixture thereof (excl. refractory bricks, blocks, tiles and similar refractory ceramic constructional goods) 01/01/1988 31/12/2500 -69031000 01/01/1988 31/12/2500 LIBEN Retorts, crucibles, mufflers, nozzles, plugs, supports, cupels, tubes, pipes, sheaths, rods and other refractory ceramic goods, containing, by weight, > 50% graphite, other carbon or a mixture thereof (excl. refractory bricks, blocks, tiles and similar refractory ceramic constructional goods) 01/01/1988 31/12/2500 -690320 01/01/1988 31/12/2500 LIBEN Retorts, crucibles, mufflers, nozzles, plugs, supports, cupels, tubes, pipes, sheaths, rods and other refractory ceramic goods, containing > 50% alumina, or a compound of alumina and silica (excl. refractory bricks, blocks, tiles and similar refractory ceramic constructional goods) 01/01/1988 31/12/2500 -69032010 01/01/1988 31/12/2500 LIBEN Retorts, crucibles, mufflers, nozzles, plugs, supports, cupels, tubes, pipes, sheaths, rods and other refractory ceramic goods, containing, by weight, < 45% of alumina and > 50% of silica (excl. refractory bricks, blocks, tiles and similar refractory ceramic constructional goods) 01/01/1988 31/12/2500 -69032090 01/01/1988 31/12/2500 LIBEN Retorts, crucibles, mufflers, nozzles, plugs, supports, cupels, tubes, pipes, sheaths, rods and other refractory ceramic goods, containing, by weight, >= 45% of alumina and > 50% of silica (excl. refractory bricks, blocks, tiles and similar refractory ceramic constructional goods) 01/01/1988 31/12/2500 -690390 01/01/1988 31/12/2500 LIBEN Retorts, crucibles, mufflers, nozzles, plugs, supports, cupels, tubes, pipes, sheaths, rods and other refractory ceramic goods (excl. those of siliceous fossil meals or similar siliceous earths, those of heading 6902, containing > 50% carbon or containing > 50% by weight of alumina [Al203] or a mixture or compound of alumina and silica [SiO2]) 01/01/1988 31/12/2500 -69039010 01/01/1988 31/12/2500 LIBEN Retorts, crucibles, mufflers, nozzles, plugs, supports, cupels, tubes, pipes, sheaths, rods and other refractory ceramic goods, containing > 25 to 50% graphite or other carbon or a mixture thereof (excl. refractory bricks, blocks, tiles and similar refractory ceramic constructional goods) 01/01/1988 31/12/2500 -69039020 01/01/1994 31/12/2003 LIBEN Retorts, crucibles, mufflers, nozzles, plugs, supports, cupels, tubes, pipes, sheaths, rods and other refractory ceramic goods, containing by weight, singly or together, < 50% of the elements Mg, Ca or Cr, expressed as MgO, CaO or Cr2O3 (excl. refractory bricks, blocks, tiles and similar refractory ceramic constructional goods) 01/01/1994 31/12/2003 -69039080 01/01/1994 31/12/2003 LIBEN Retorts, crucibles, mufflers, nozzles, plugs, supports, cupels, tubes, pipes, sheaths, rods and other refractory ceramic goods (excl. those of siliceous fossil meals or of similar siliceous earths, articles of heading 6902, articles containing carbon, alumina, silica, or the elements Mg, Ca or Cr of subheading 6903.10.00 to 6903.90.20) 01/01/1994 31/12/2003 -69039090 01/01/1988 31/12/1993 LIBEN Retorts, crucibles, mufflers, nozzles, plugs, supports, cupels, tubes, pipes, sheaths, rods and other refractory ceramic goods (excl. those of siliceous fossil meals or similar siliceous earths, of heading 6902, containing > 25 % carbon or containing > 50% by weight of alumina or a mixture or compound of alumina and silica) 01/01/1988 31/12/1993 -69039090 01/01/2004 31/12/2500 LIBEN Retorts, crucibles, mufflers, nozzles, plugs, supports, cupels, tubes, pipes, sheaths, rods and other refractory ceramic goods (excl. those of siliceous fossil meals or of similar siliceous earths, articles of heading 6902, articles containing carbon, alumina or silica of subheading 6903.10.00 and 6903.90.10) 01/01/2004 31/12/2500 -6904 01/01/1988 31/12/2500 LIBEN Ceramic building bricks, flooring blocks, support or filler tiles and the like (excl. those of siliceous fossil meals or similar siliceous earths, refractory bricks of heading 6902, and flags and pavings, hearth and wall tiles of heading 6907 and 6908) 01/01/1988 31/12/2500 -690410 01/01/1988 31/12/2500 LIBEN Building bricks (excl. those of siliceous fossil meals or similar siliceous earths, and refractory bricks of heading 6902) 01/01/1988 31/12/2500 -69041000 01/01/1988 31/12/2500 LIBEN Building bricks (excl. those of siliceous fossil meals or similar siliceous earths, and refractory bricks of heading 6902) 01/01/1988 31/12/2500 -690490 01/01/1988 31/12/2500 LIBEN Ceramic flooring blocks, support or filler tiles and the like (excl. those of siliceous fossil meals or similar siliceous earths, refractory bricks of heading 6902, and flags and pavings, hearth and wall tiles of heading 6907 and 6908, and building bricks) 01/01/1988 31/12/2500 -69049000 01/01/1988 31/12/2500 LIBEN Ceramic flooring blocks, support or filler tiles and the like (excl. those of siliceous fossil meals or similar siliceous earths, refractory bricks of heading 6902, and flags and pavings, hearth and wall tiles of heading 6907 and 6908, and building bricks) 01/01/1988 31/12/2500 -6904I0 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of heading 6904 01/01/2000 31/12/2005 -6904I000 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of heading 6904 01/01/2000 31/12/2005 -6904I1 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 6904; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -6904I100 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 6904; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -6905 01/01/1988 31/12/2500 LIBEN Roofing tiles, chimney pots, cowls, chimney liners, architectural ornaments and other ceramic constructional goods (excl. of siliceous fossil meals or similar siliceous earths, refractory ceramic constructional components, pipes and other components for drainage and similar purposes) 01/01/1988 31/12/2500 -690510 01/01/1988 31/12/2500 LIBEN Roofing tiles 01/01/1988 31/12/2500 -69051000 01/01/1988 31/12/2500 LIBEN Roofing tiles 01/01/1988 31/12/2500 -690590 01/01/1988 31/12/2500 LIBEN Ceramic chimney pots, cowls, chimney liners, architectural ornaments and other ceramic constructional goods (excl. of siliceous fossil meals or similar siliceous earths, refractory ceramic constructional components, pipes and other components for drainage and similar purposes, and roofing tiles) 01/01/1988 31/12/2500 -69059000 01/01/1988 31/12/2500 LIBEN Ceramic chimney pots, cowls, chimney liners, architectural ornaments and other ceramic constructional goods (excl. of siliceous fossil meals or similar siliceous earths, refractory ceramic constructional components, pipes and other components for drainage and similar purposes, and roofing tiles) 01/01/1988 31/12/2500 -6906 01/01/1988 31/12/2500 LIBEN Ceramic pipes, conduits, guttering and pipe fittings (excl. of siliceous fossil meals or similar siliceous earths, refractory ceramic goods, chimney liners, pipes specifically manufactured for laboratories, insulating tubing and fittings and other piping for electrotechnical purposes) 01/01/1988 31/12/2500 -690600 01/01/1988 31/12/2500 LIBEN Ceramic pipes, conduits, guttering and pipe fittings (excl. of siliceous fossil meals or similar siliceous earths, refractory ceramic goods, chimney liners, pipes specifically manufactured for laboratories, insulating tubing and fittings and other piping for electrotechnical purposes) 01/01/1988 31/12/2500 -69060000 01/01/1988 31/12/2500 LIBEN Ceramic pipes, conduits, guttering and pipe fittings (excl. of siliceous fossil meals or similar siliceous earths, refractory ceramic goods, chimney liners, pipes specifically manufactured for laboratories, insulating tubing and fittings and other piping for electrotechnical purposes) 01/01/1988 31/12/2500 -6907 01/01/1988 31/12/2500 LIBEN Ceramic flags and paving, hearth or wall tiles; ceramic mosaic cubes and the like, whether or not on a backing (excl. of siliceous fossil meals or similar siliceous earths, refractory goods, tiles specially adapted as table mats, ornamental articles and tiles specifically manufactured for stoves) 01/01/1988 31/12/2500 -690710 01/01/1988 31/12/2016 LIBEN Unglazed ceramic tiles, mosaic cubes and similar articles, whether or not square or rectangular, the largest surface area of which is capable of being enclosed in a square of side of < 7 cm, whether or not on a backing 01/01/1988 31/12/2016 -69071000 01/01/1988 31/12/2016 LIBEN Unglazed ceramic tiles, mosaic cubes and similar articles, whether or not square or rectangular, the largest surface area of which is capable of being enclosed in a square of side of < 7 cm, whether or not on a backing 01/01/1988 31/12/2016 -690721 01/01/2017 31/12/2500 LIBEN Ceramic flags and paving, hearth or wall tiles, of a water absorption coefficient by weight <= 0,5 % (excl. refractory, mosaic cubes and finishing ceramics) 01/01/2017 31/12/2500 -69072100 01/01/2017 31/12/2500 LIBEN Ceramic flags and paving, hearth or wall tiles, of a water absorption coefficient by weight <= 0,5 % (excl. refractory, mosaic cubes and finishing ceramics) 01/01/2017 31/12/2500 -690722 01/01/2017 31/12/2500 LIBEN Ceramic flags and paving, hearth or wall tiles, of a water absorption coefficient by weight > 0,5 % but <= 10 % (excl. refractory, mosaic cubes and finishing ceramics) 01/01/2017 31/12/2500 -69072200 01/01/2017 31/12/2500 LIBEN Ceramic flags and paving, hearth or wall tiles, of a water absorption coefficient by weight > 0,5 % but <= 10 % (excl. refractory, mosaic cubes and finishing ceramics) 01/01/2017 31/12/2500 -690723 01/01/2017 31/12/2500 LIBEN Ceramic flags and paving, hearth or wall tiles, of a water absorption coefficient by weight > 10 % (excl. refractory, mosaic cubes and finishing ceramics) 01/01/2017 31/12/2500 -69072300 01/01/2017 31/12/2500 LIBEN Ceramic flags and paving, hearth or wall tiles, of a water absorption coefficient by weight > 10 % (excl. refractory, mosaic cubes and finishing ceramics) 01/01/2017 31/12/2500 -690730 01/01/2017 31/12/2500 LIBEN Ceramic mosaic cubes and the like, whether or not on a backing (excl. refractory and finishing ceramics) 01/01/2017 31/12/2500 -69073000 01/01/2017 31/12/2500 LIBEN Ceramic mosaic cubes and the like, whether or not on a backing (excl. refractory and finishing ceramics) 01/01/2017 31/12/2500 -690740 01/01/2017 31/12/2500 LIBEN Finishing ceramics (excl. refractory) 01/01/2017 31/12/2500 -69074000 01/01/2017 31/12/2500 LIBEN Finishing ceramics (excl. refractory) 01/01/2017 31/12/2500 -690790 01/01/1988 31/12/2016 LIBEN Unglazed ceramic flags and paving, hearth or wall tiles; unglazed ceramic mosaic cubes and the like, whether or not on a backing (excl. of siliceous fossil meals or similar siliceous earths, refractory ceramic goods, tiles specially adapted as table mats, ornamental articles, tiles specifically manufactured for stoves, tiles and cubes and the like the largest surface area of which is capable of being enclosed in a square of side of < 7 cm) 01/01/1988 31/12/2016 -69079010 01/01/1988 31/12/2010 LIBEN Unglazed ceramic double tiles of the 'Spaltplatten' type 01/01/1988 31/12/2010 -69079020 01/01/2011 31/12/2016 LIBEN Unglazed flags and paving, hearth or wall tiles of stoneware; unglazed mosaic cubes and the like of stoneware, whether or not on a backing (excl. tiles specially adapted as table mats, ornamental articles, tiles specifically manufactured for stoves, tiles and cubes and the like the largest surface area of which is capable of being enclosed in a square of side of < 7 cm) 01/01/2011 31/12/2016 -69079080 01/01/2011 31/12/2016 LIBEN Unglazed ceramic flags and paving, hearth or wall tiles; unglazed ceramic mosaic cubes and the like, whether or not on a backing (excl. of siliceous fossil meals or similar siliceous earths, refractory ceramic goods, articles of stoneware, tiles specially adapted as table mats, ornamental articles, tiles specifically manufactured for stoves, tiles and cubes and the like the largest surface area of which is capable of being enclosed in a square of side of < 7 cm) 01/01/2011 31/12/2016 -69079091 01/01/1988 31/12/2010 LIBEN Unglazed flags and paving, hearth or wall tiles of stoneware (excl. double tiles of the 'Spaltplatten' type, tiles made into stands, ornamental articles and tiles specifically manufactured for stoves) 01/01/1988 31/12/2010 -69079093 01/01/1988 31/12/2010 LIBEN Unglazed flags and paving, hearth or wall tiles of earthenware or fine pottery (excl. double tiles of the 'Spaltplatten' type, tiles made into stands, ornamental articles and tiles specifically manufactured for stoves) 01/01/1988 31/12/2010 -69079099 01/01/1988 31/12/2010 LIBEN Unglazed ceramic flags and paving, hearth or wall tiles (excl. of siliceous fossil meals or similar siliceous earths, refractory ceramic goods, articles of stoneware, earthenware or fine pottery, double tiles of the 'Spaltplatten' type, tiles made into stands, ornamental articles and tiles specifically manufactured for stoves) 01/01/1988 31/12/2010 -6908 01/01/1988 31/12/2016 LIBEN Glazed ceramic flags and paving, hearth or wall tiles; glazed ceramic mosaic cubes and the like, whether or not on a backing (excl. of siliceous fossil meals or similar siliceous earths, refractory ceramic goods, tiles specially adapted as table mats, ornamental articles and tiles specifically manufactured for stoves) 01/01/1988 31/12/2016 -690810 01/01/1988 31/12/2016 LIBEN Glazed ceramic tiles, mosaic cubes and similar articles, whether or not square or rectangular, the largest surface area of which is capable of being enclosed in a square of side of < 7 cm, whether or not on a backing 01/01/1988 31/12/2016 -69081000 01/01/1988 31/12/1993 LIBEN Glazed ceramic tiles, cubes and similar articles, for mosaics, whether or not square or rectangular, the largest surface area of which is capable of being enclosed in a square of side of < 7 cm, whether or not on a backing 01/01/1988 31/12/1993 -69081000 01/01/2011 31/12/2016 LIBEN Glazed ceramic tiles, mosaic cubes and similar articles, whether or not square or rectangular, the largest surface area of which is capable of being enclosed in a square of side of < 7 cm, whether or not on a backing 01/01/2011 31/12/2016 -69081010 01/01/1994 31/12/2010 LIBEN Ceramic mosaic tiles, cubes and similar articles, of common pottery, glazed, whether or not square or rectangular, the largest surface area of which is capable of being enclosed in a square of side of < 7 cm, whether or not on a backing 01/01/1994 31/12/2010 -69081090 01/01/1994 31/12/2010 LIBEN Ceramic mosaic tiles, cubes and similar articles, glazed, whether or not square or rectangular, the largest surface area of which is capable of being enclosed in a square of side of < 7 cm, whether or not on a backing (excl. such articles of common pottery) 01/01/1994 31/12/2010 -690890 01/01/1988 31/12/2016 LIBEN Glazed ceramic flags and paving, hearth or wall tiles; glazed ceramic mosaic cubes and the like, whether or not on a backing (excl. of siliceous fossil meals or similar siliceous earths, refractory ceramic goods, tiles specially adapted as table mats, ornamental articles, tiles specifically manufactured for stoves, tiles and cubes and the like the largest surface area of which is capable of being enclosed in a square of side of < 7 cm) 01/01/1988 31/12/2016 -69089011 01/01/1988 31/12/2016 LIBEN Glazed double tiles of the 'Spaltplatten' type, of common pottery 01/01/1988 31/12/2016 -69089019 01/01/1988 31/12/1993 LIBEN Glazed flags and paving, hearth or wall tiles, of common pottery (excl. split tiles, tiles made into stands, ornamental articles and tiles specifically manufactured for stoves) 01/01/1988 31/12/1993 -69089020 01/01/2011 31/12/2016 LIBEN Glazed flags and paving, hearth or wall tiles and mosaic cubes and the like, of common pottery (excl. double tiles of the "Spaltplatten" type, tiles specially adapted as table mats, ornamental articles, tiles specifically manufactured for stoves, tiles and cubes and the like the largest surface area of which is capable of being enclosed in a square of side of < 7 cm) 01/01/2011 31/12/2016 -69089021 01/01/1994 31/12/2010 LIBEN Ceramic flags and paving, hearth or wall tiles, of common pottery, glazed, of a maximum thickness of <= 15 mm (excl. double tiles of the "Spaltplatten" type, tiles made into stands, ornamental articles and tiles specifically manufactured for stoves) 01/01/1994 31/12/2010 -69089029 01/01/1994 31/12/2010 LIBEN Ceramic flags and paving, hearth or wall tiles, of common pottery, glazed, of a maximum thickness of > 15 mm (excl. double tiles of the "Spaltplatten" type, tiles made into stands, ornamental articles and tiles specifically manufactured for stoves) 01/01/1994 31/12/2010 -69089031 01/01/1988 31/12/2016 LIBEN Glazed ceramic double tiles of the 'Spaltplatten' type (excl. of common pottery) 01/01/1988 31/12/2016 -69089051 01/01/1988 31/12/2016 LIBEN Glazed ceramic flags and paving, hearth or wall tiles with a face of <= 90 cm² (excl. of common pottery, double tiles of the 'Spaltplatten' type, tiles specially adapted as table mats, ornamental articles and tiles specifically manufactured for stoves) 01/01/1988 31/12/2016 -69089091 01/01/1988 31/12/2016 LIBEN Glazed flags and paving, hearth or wall tiles of stoneware with a face of > 90 cm² (excl. double tiles of the 'Spaltplatten' type, tiles specially adapted as table mats, ornamental articles and tiles specifically manufactured for stoves) 01/01/1988 31/12/2016 -69089093 01/01/1988 31/12/2016 LIBEN Glazed flags and paving, hearth or wall tiles, of earthenware or fine pottery with a face of > 90 cm² (excl. double tiles of the 'Spaltplatten' type, tiles specially adapted as table mats, ornamental articles and tiles specifically manufactured for stoves) 01/01/1988 31/12/2016 -69089099 01/01/1988 31/12/2016 LIBEN Glazed ceramic flags and paving, hearth or wall tiles with a face of > 90 cm² (excl. of common pottery, stoneware, earthenware or fine pottery, double tiles of the 'Spaltplatten' type, tiles specially adapted as table mats, ornamental articles and tiles specifically manufactured for stoves) 01/01/1988 31/12/2016 -6909 01/01/1988 31/12/2500 LIBEN Ceramic wares for laboratory, chemical or other technical uses; ceramic troughs, tubs and similar receptacles used in agriculture; ceramic pots, jars and similar articles used for the conveyance or packing of goods (excl. millstones, polishing stones, grindstones and the like of heading 6804; refractory ceramic goods; household articles; containers for shops; electrical devices, insulators and other insulating fittings) 01/01/1988 31/12/2500 -690911 01/01/1988 31/12/2500 LIBEN Ceramic wares for laboratory, chemical or other technical uses, of porcelain or china (excl. refractory ceramic goods, electrical devices, insulators and other electrical insulating fittings) 01/01/1988 31/12/2500 -69091100 01/01/1988 31/12/2500 LIBEN Ceramic wares for laboratory, chemical or other technical uses, of porcelain or china (excl. refractory ceramic goods, electrical devices, insulators and other electrical insulating fittings) 01/01/1988 31/12/2500 -690912 01/01/1996 31/12/2500 LIBEN Ceramic articles having a hardness equivalent to >= 9 on the Mohs scale, for chemical or other technical uses (excl. of porcelain or china, refractory ceramic goods, electrical devices, insulators and other electrical insulating fittings) 01/01/1996 31/12/2500 -69091200 01/01/1996 31/12/2500 LIBEN Ceramic articles having a hardness equivalent to >= 9 on the Mohs scale, for chemical or other technical uses (excl. of porcelain or china, refractory ceramic goods, electrical devices, insulators and other electrical insulating fittings) 01/01/1996 31/12/2500 -690919 01/01/1988 31/12/2500 LIBEN Ceramic wares for chemical or other technical uses (excl. of porcelain or china, articles having a hardness equivalent to >= 9 on the Mohs scale, millstones, polishing stones, grindstones and the like of heading 6804, refractory ceramic goods, electrical devices, insulators and other electrical insulating fittings) 01/01/1988 31/12/2500 -69091900 01/01/1988 31/12/1995 LIBEN Ceramic wares for chemical or other technical uses (excl. of porcelain or china, millstones, polishing stones, grindstones and the like of heading 6804, refractory ceramic goods, electrical devices, insulators and other electrical insulating fittings) 01/01/1988 31/12/1995 -69091900 01/01/1996 31/12/2006 LIBEN Ceramic wares for chemical or other technical uses (excl. of porcelain or china, articles having a hardness equivalent to >= 9 on the Mohs scale, millstones, polishing stones, grindstones and the like of heading 6804, refractory ceramic goods, electrical devices, insulators and other electrical insulating fittings) 01/01/1996 31/12/2006 -69091900 01/01/2007 31/12/2500 LIBEN Ceramic wares for chemical or other technical uses (excl. of porcelain or china, articles having a hardness equivalent to >= 9 on the Mohs scale, millstones, polishing stones, grindstones and the like of heading 6804, refractory ceramic goods, electrical devices, insulators and other electrical insulating fittings) 01/01/2007 31/12/2500 -690990 01/01/1988 31/12/2500 LIBEN Ceramic troughs, tubs and similar receptacles of a kind used in agriculture; ceramic pots, jars and similar articles of a kind used for the conveyance or packing of goods (excl. general-purpose storage vessels for laboratories, containers for shops and household articles) 01/01/1988 31/12/2500 -69099000 01/01/1988 31/12/2500 LIBEN Ceramic troughs, tubs and similar receptacles of a kind used in agriculture; ceramic pots, jars and similar articles of a kind used for the conveyance or packing of goods (excl. general-purpose storage vessels for laboratories, containers for shops and household articles) 01/01/1988 31/12/2500 -6910 01/01/1988 31/12/2500 LIBEN Ceramic sinks, washbasins, washbasin pedestals, baths, bidets, water closet pans, flushing cisterns, urinals and similar sanitary fixtures (excl. soap dishes, sponge holders, tooth-brush holders, towel hooks and toilet paper holders) 01/01/1988 31/12/2500 -691010 01/01/1988 31/12/2500 LIBEN Ceramic sinks, washbasins, washbasin pedestals, baths, bidets, water closet pans, flushing cisterns, urinals and similar sanitary fixtures of porcelain or china (excl. soap dishes, sponge holders, tooth-brush holders, towel hooks and toilet paper holders) 01/01/1988 31/12/2500 -69101000 01/01/1988 31/12/2500 LIBEN Ceramic sinks, washbasins, washbasin pedestals, baths, bidets, water closet pans, flushing cisterns, urinals and similar sanitary fixtures of porcelain or china (excl. soap dishes, sponge holders, tooth-brush holders, towel hooks and toilet paper holders) 01/01/1988 31/12/2500 -691090 01/01/1988 31/12/2500 LIBEN Ceramic sinks, washbasins, washbasin pedestals, baths, bidets, water closet pans, flushing cisterns, urinals and similar sanitary fixtures (excl. of porcelain or china, soap dishes, sponge holders, tooth-brush holders, towel hooks and toilet paper holders) 01/01/1988 31/12/2500 -69109000 01/01/1988 31/12/2500 LIBEN Ceramic sinks, washbasins, washbasin pedestals, baths, bidets, water closet pans, flushing cisterns, urinals and similar sanitary fixtures (excl. of porcelain or china, soap dishes, sponge holders, tooth-brush holders, towel hooks and toilet paper holders) 01/01/1988 31/12/2500 -6910S8 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 6910 and SITC section 8 01/01/1997 31/12/2500 -6910S812 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 6910 and SITC group 812 01/01/1997 31/12/2500 -6911 01/01/1988 31/12/2500 LIBEN Tableware, kitchenware, other household articles and toilet articles, of porcelain or china (excl. baths, bidets, sinks and similar sanitary fixtures, statuettes and other ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods, and coffee grinders and spice mills with receptacles made of ceramics and working parts of metal) 01/01/1988 31/12/2500 -691110 01/01/1988 31/12/2500 LIBEN Tableware and kitchenware, of porcelain or china (excl. ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods, and coffee grinders and spice mills with receptacles made of ceramics and working parts of metal) 01/01/1988 31/12/2500 -69111000 01/01/1988 31/12/2500 LIBEN Tableware and kitchenware, of porcelain or china (excl. ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods, and coffee grinders and spice mills with receptacles made of ceramics and working parts of metal) 01/01/1988 31/12/2500 -691190 01/01/1988 31/12/2500 LIBEN Household and toilet articles, of porcelain or china (excl. tableware and kitchenware, baths, bidets, sinks and similar sanitary fixtures, statuettes and other ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods, and coffee grinders and spice mills with receptacles made of ceramics and working parts of metal) 01/01/1988 31/12/2500 -69119000 01/01/1988 31/12/2500 LIBEN Household and toilet articles, of porcelain or china (excl. tableware and kitchenware, baths, bidets, sinks and similar sanitary fixtures, statuettes and other ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods, and coffee grinders and spice mills with receptacles made of ceramics and working parts of metal) 01/01/1988 31/12/2500 -6911S6 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 6911 and SITC section 6 01/01/2001 31/12/2500 -6911S666 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 6911 and SITC group 666 01/01/2001 31/12/2500 -6912 01/01/1988 31/12/2500 LIBEN Tableware, kitchenware, other household articles and toilet articles, of ceramics other than porcelain or china (excl. baths, bidets, sinks and similar sanitary fixtures, statuettes and other ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods, and coffee grinders and spice mills with receptacles made of ceramics and working parts of metal) 01/01/1988 31/12/2500 -691200 01/01/1988 31/12/2500 LIBEN Tableware, kitchenware, other household articles and toilet articles, of ceramics other than porcelain or china (excl. baths, bidets, sinks and similar sanitary fixtures, statuettes and other ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods, and coffee grinders and spice mills with receptacles made of ceramics and working parts of metal) 01/01/1988 31/12/2500 -69120010 01/01/1988 31/12/2015 LIBEN Tableware, kitchenware, other household articles and toilet articles, of common pottery (excl. statuettes and other ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods, and coffee grinders and spice mills with receptacles made of ceramics and working parts of metal) 01/01/1988 31/12/2015 -69120021 01/01/2016 31/12/2500 LIBEN Tableware and kitchenware, of common pottery (excl. statuettes and other ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods, and coffee grinders and spice mills with receptacles made of ceramics and working parts of metal) 01/01/2016 31/12/2500 -69120023 01/01/2016 31/12/2500 LIBEN Tableware and kitchenware, of stoneware (excl. statuettes and other ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods, and coffee grinders and spice mills with receptacles made of ceramics and working parts of metal) 01/01/2016 31/12/2500 -69120025 01/01/2016 31/12/2500 LIBEN Tableware and kitchenware, of earthenware or fine pottery (excl. statuettes and other ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods, and coffee grinders and spice mills with receptacles made of ceramics and working parts of metal) 01/01/2016 31/12/2500 -69120029 01/01/2016 31/12/2500 LIBEN Tableware and kitchenware, of ceramics other than porcelain, china, common pottery, stoneware, earthenware or fine pottery (excl. statuettes and other ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods, and coffee grinders and spice mills with receptacles made of ceramics and working parts of metal) 01/01/2016 31/12/2500 -69120030 01/01/1988 31/12/2015 LIBEN Tableware, kitchenware, other household articles and toilet articles, of stoneware (excl. baths, bidets, sinks and similar sanitary fixtures, statuettes and other ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods, and coffee grinders and spice mills with receptacles made of ceramics and working parts of metal) 01/01/1988 31/12/2015 -69120050 01/01/1988 31/12/2015 LIBEN Tableware, kitchenware, other household articles and toilet articles, of earthenware or fine pottery (excl. baths, bidets, sinks and similar sanitary fixtures, statuettes and other ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods, and coffee grinders and spice mills with receptacles made of ceramics and working parts of metal) 01/01/1988 31/12/2015 -69120081 01/01/2016 31/12/2500 LIBEN Household articles and toilet articles, of common pottery (excl. tableware, kitchenware, baths, bidets, sinks and similar sanitary fixtures, statuettes and other ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods) 01/01/2016 31/12/2500 -69120083 01/01/2016 31/12/2500 LIBEN Household articles and toilet articles, of stoneware (excl. tableware, kitchenware, baths, bidets, sinks and similar sanitary fixtures, statuettes and other ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods) 01/01/2016 31/12/2500 -69120085 01/01/2016 31/12/2500 LIBEN Household articles and toilet articles, of earthenware or fine pottery (excl. tableware, kitchenware, baths, bidets, sinks and similar sanitary fixtures, statuettes and other ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods) 01/01/2016 31/12/2500 -69120089 01/01/2016 31/12/2500 LIBEN Household articles and toilet articles, of ceramics other than porcelain, china, common pottery, stoneware, earthenware or fine pottery (excl. tableware, kitchenware, baths, bidets, sinks and similar sanitary fixtures, statuettes and other ornamental articles, pots, jars, carboys and similar receptacles for the conveyance or packing of goods) 01/01/2016 31/12/2500 -69120090 01/01/1988 31/12/2015 LIBEN Ceramic tableware, kitchenware, other household articles and toilet articles (excl. sinks, baths, bidets and similar sanitary fixtures; statuettes and other ornamental articles; pots, jars, etc. for the conveyance or packing of goods; household mills with containers of ceramics and working parts of metal; articles of porcelain or china, common pottery, stoneware, earthenware or fine pottery) 01/01/1988 31/12/2015 -6913 01/01/1988 31/12/2500 LIBEN Statuettes and other ornamental ceramic articles, n.e.s. 01/01/1988 31/12/2500 -691310 01/01/1988 31/12/2500 LIBEN Statuettes and other ornamental articles of porcelain or china, n.e.s. 01/01/1988 31/12/2500 -69131000 01/01/1988 31/12/2500 LIBEN Statuettes and other ornamental articles of porcelain or china, n.e.s. 01/01/1988 31/12/2500 -691390 01/01/1988 31/12/2500 LIBEN Statuettes and other ornamental ceramic articles, n.e.s. (excl. of porcelain or china) 01/01/1988 31/12/2500 -69139010 01/01/1988 31/12/2500 LIBEN Statuettes and other ornamental articles of common pottery, n.e.s. 01/01/1988 31/12/2500 -69139091 01/01/1988 31/12/2010 LIBEN Statuettes and other ornamental articles of stoneware, n.e.s. 01/01/1988 31/12/2010 -69139093 01/01/1988 31/12/2500 LIBEN Statuettes and other ornamental articles of earthenware or fine pottery, n.e.s. 01/01/1988 31/12/2500 -69139098 01/01/2011 31/12/2500 LIBEN Statuettes and other ornamental ceramic articles, n.e.s. (excl. of porcelain or china, common pottery, earthenware or fine pottery) 01/01/2011 31/12/2500 -69139099 01/01/1988 31/12/2010 LIBEN Statuettes and other ornamental ceramic articles, n.e.s. (excl. of porcelain or china, common pottery, stoneware, earthenware or fine pottery) 01/01/1988 31/12/2010 -6914 01/01/1988 31/12/2500 LIBEN Ceramic articles, n.e.s. 01/01/1988 31/12/2500 -691410 01/01/1988 31/12/2500 LIBEN Ceramic articles of porcelain or china, n.e.s. 01/01/1988 31/12/2500 -69141000 01/01/1988 31/12/2500 LIBEN Ceramic articles of porcelain or china, n.e.s. 01/01/1988 31/12/2500 -691490 01/01/1988 31/12/2500 LIBEN Ceramic articles, n.e.s. (excl. of porcelain or china) 01/01/1988 31/12/2500 -69149000 01/01/2011 31/12/2500 LIBEN Ceramic articles, n.e.s. (excl. of porcelain or china) 01/01/2011 31/12/2500 -69149010 01/01/1988 31/12/2010 LIBEN Ceramic articles of common pottery, n.e.s. 01/01/1988 31/12/2010 -69149090 01/01/1988 31/12/2010 LIBEN Ceramic articles, n.e.s. (excl. of porcelain or china and common pottery) 01/01/1988 31/12/2010 -69CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 69 01/01/2002 31/12/2500 -69CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 69 01/01/2002 31/12/2500 -69CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 69 01/01/2002 31/12/2500 -69II 01/01/1988 31/12/2500 LIBEN Components of complete industrial plants of chapter 69 01/01/1988 31/12/2500 -69III0 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 69; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -69III0 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 69 01/01/2006 31/12/2500 -69III000 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 69; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -69III000 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 69 01/01/2006 31/12/2500 -69III1 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 69; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -69III100 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 69; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -69III2 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 69; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -69III200 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 69; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -69III3 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 69; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -69III300 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 69; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -69III4 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 69; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -69III4 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of chapter 69; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/2001 31/12/2005 -69III400 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 69; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -69III400 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of chapter 69; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/2001 31/12/2005 -69III5 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 69; food, drink and tobacco industry 01/01/1988 31/12/1992 -69III500 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 69; food, drink and tobacco industry 01/01/1988 31/12/1992 -69III6 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 69; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -69III600 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 69; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -69III7 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 69; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -69III700 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 69; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -69III8 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 69; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -69III800 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 69; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -69III9 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 69; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -69III900 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 69; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -69MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -69MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -69MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -69SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 69 01/01/1988 31/12/2500 -69SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 69 and SITC section 0 01/01/1997 31/12/2001 -69SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 69 and SITC group 000 01/01/1997 31/12/2001 -69SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 69 and SITC section 6 01/01/1997 31/12/2500 -69SSS662 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 69 and SITC group 662 01/01/1997 31/12/2500 -69SSS663 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 69 and SITC group 663 01/01/1997 31/12/2500 -69SSS666 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 69 and SITC group 666 01/01/1997 31/12/2500 -69SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 69 and SITC section 8 01/01/1997 31/12/2500 -69SSS812 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 69 and SITC group 812 01/01/1997 31/12/2500 -69SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 69 and SITC section 9 01/01/1988 31/12/1996 -69SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 69 and SITC section 9 01/01/1997 31/12/2500 -69SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 69 and SITC group 999 01/01/1988 31/12/1996 -69SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 69 and SITC group 999 01/01/1997 31/12/2500 -70 01/01/1988 31/12/2500 LIBEN GLASS AND GLASSWARE 01/01/1988 31/12/2500 -7001 01/01/1988 31/12/2500 LIBEN Cullet and other waste and scrap of glass; glass in the mass (excl. glass in the form of powder, granules or flakes) 01/01/1988 31/12/2500 -700100 01/01/1988 31/12/2500 LIBEN Cullet and other waste and scrap of glass; glass in the mass (excl. glass in the form of powder, granules or flakes) 01/01/1988 31/12/2500 -70010010 01/01/1988 31/12/2500 LIBEN Cullet and other waste and scrap of glass (excl. glass in the form of powder, granules or flakes) 01/01/1988 31/12/2500 -70010091 01/01/1988 31/12/2500 LIBEN Optical glass in the mass 01/01/1988 31/12/2500 -70010099 01/01/1988 31/12/2500 LIBEN Glass in the mass (excl. optical glass) 01/01/1988 31/12/2500 -7002 01/01/1988 31/12/2500 LIBEN Glass in balls, rods or tubes, unworked (excl. glass microspheres <= 1 mm in diameter, glass balls of the nature of a toy) 01/01/1988 31/12/2500 -700210 01/01/1988 31/12/2500 LIBEN Glass in balls, unworked (excl. glass microspheres <= 1 mm in diameter, glass balls of the nature of a toy) 01/01/1988 31/12/2500 -70021000 01/01/1988 31/12/2500 LIBEN Glass in balls, unworked (excl. glass microspheres <= 1 mm in diameter, glass balls of the nature of a toy) 01/01/1988 31/12/2500 -700220 01/01/1988 31/12/2500 LIBEN Rods of glass, unworked 01/01/1988 31/12/2500 -70022010 01/01/1988 31/12/2500 LIBEN Rods of optical glass, unworked 01/01/1988 31/12/2500 -70022090 01/01/1988 31/12/2500 LIBEN Rods of glass, unworked (excl. optical glass) 01/01/1988 31/12/2500 -700231 01/01/1988 31/12/2500 LIBEN Tubes of fused quartz or other fused silica, unworked 01/01/1988 31/12/2500 -70023100 01/01/1988 31/12/2500 LIBEN Tubes of fused quartz or other fused silica, unworked 01/01/1988 31/12/2500 -700232 01/01/1988 31/12/2500 LIBEN Tubes of glass having a linear coefficient of expansion <= 5 x 10-6 per kelvin within a temperature range of 0°C to 300°C, unworked (excl. tubes of glass having a linear coefficient of expansion <= 5 x 10-6 per kelvin within a temperature range of 0°C to 300°C) 01/01/1988 31/12/2500 -70023200 01/01/1988 31/12/2500 LIBEN Tubes of glass having a linear coefficient of expansion <= 5 x 10-6 per kelvin within a temperature range of 0°C to 300°C, unworked (excl. tubes of glass having a linear coefficient of expansion <= 5 x 10-6 per kelvin within a temperature range of 0°C to 300°C) 01/01/1988 31/12/2500 -700239 01/01/1988 31/12/2500 LIBEN Tubes of glass, unworked (excl. tubes of glass having a linear coefficient of expansion <= 5 x 10-6 per kelvin within a temperature range of 0°C to 300°C or of fused quartz or other fused silica) 01/01/1988 31/12/2500 -70023900 01/01/1988 31/12/2500 LIBEN Tubes of glass, unworked (excl. tubes of glass having a linear coefficient of expansion <= 5 x 10-6 per kelvin within a temperature range of 0°C to 300°C or of fused quartz or other fused silica) 01/01/1988 31/12/2500 -7002I3 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of heading 7002; mechanical engineering and construction of means of transport; instrument engineering 01/01/2001 31/12/2005 -7002I300 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of heading 7002; mechanical engineering and construction of means of transport; instrument engineering 01/01/2001 31/12/2005 -7002S6 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 7002 and SITC section 6 01/01/1998 31/12/2500 -7002S664 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 7002 and SITC group 664 01/01/1998 31/12/2500 -7003 01/01/1988 31/12/2500 LIBEN Cast glass and rolled glass, in sheets or profiles, whether or not having an absorbent, reflecting or non-reflecting layer, but not otherwise worked 01/01/1988 31/12/2500 -700311 01/01/1988 31/12/1995 LIBEN Sheets of glass, cast or rolled, coloured throughout the mass "body tinted", opacified, flashed or having an absorbent or reflecting layer, but not otherwise worked (excl. wired glass) 01/01/1988 31/12/1995 -70031110 01/01/1988 31/12/1995 LIBEN Sheets of optical glass, cast or rolled, coloured throughout the mass "body tinted", opacified, flashed or having an absorbent or reflecting layer, but not otherwise worked (excl. wired glass) 01/01/1988 31/12/1995 -70031190 01/01/1988 31/12/1995 LIBEN Sheets of glass, cast or rolled, coloured throughout the mass "body tinted", opacified, flashed or having an absorbent or reflecting layer, but not otherwise worked (excl. optical or wired glass) 01/01/1988 31/12/1995 -700312 01/01/1996 31/12/2500 LIBEN Cast glass and rolled glass, in non-wired sheets, coloured throughout the mass "body tinted", opacified, flashed or having an absorbent, reflecting or non-reflecting layer, but not otherwise worked 01/01/1996 31/12/2500 -70031210 01/01/1996 31/12/2500 LIBEN Cast glass and rolled glass, optical, in non-wired sheets, coloured throughout the mass "body tinted", opacified, flashed or having an absorbent, reflecting or non-reflecting layer, but not otherwise worked 01/01/1996 31/12/2500 -70031291 01/01/1996 31/12/2500 LIBEN Cast glass and rolled glass, in non-wired sheets, having a non-reflecting layer, but not otherwise worked (excl. optical glass) 01/01/1996 31/12/2500 -70031299 01/01/1996 31/12/2500 LIBEN Cast glass and rolled glass, in non-wired sheets, coloured throughout the mass "body tinted", opacified, flashed or having an absorbent or reflecting layer, but not otherwise worked (excl. optical glass) 01/01/1996 31/12/2500 -700319 01/01/1988 31/12/2500 LIBEN Cast glass and rolled glass, in non-wired sheets, not otherwise worked (excl. glass coloured throughout the mass "body tinted", opacified, flashed or having an absorbent, reflecting or non-reflecting layer) 01/01/1988 31/12/2500 -70031910 01/01/1988 31/12/2500 LIBEN Cast glass and rolled glass, optical, in non-wired sheets, not otherwise worked (excl. glass coloured throughout the mass "body tinted", opacified, flashed or having an absorbent, reflecting or non-reflecting layer) 01/01/1988 31/12/2500 -70031990 01/01/1988 31/12/2500 LIBEN Cast glass and rolled glass, in non-wired sheets, not otherwise worked (excl. glass coloured throughout the mass "body tinted", opacified, flashed or having an absorbent, reflecting or non-reflecting layer, and optical glass) 01/01/1988 31/12/2500 -700320 01/01/1988 31/12/2500 LIBEN Cast glass and rolled glass, in wired sheets, whether or not with absorbent, reflecting or non-reflecting layer, but not otherwise worked 01/01/1988 31/12/2500 -70032000 01/01/1995 31/12/2500 LIBEN Cast glass and rolled glass, in wired sheets, whether or not with absorbent, reflecting or non-reflecting layer, but not otherwise worked 01/01/1995 31/12/2500 -70032010 01/01/1988 31/12/1994 LIBEN Sheets of glass, cast or rolled, wired, coloured throughout the mass 'body tinted', opacified, flashed or having an absorbent or reflecting layer, but not otherwise worked 01/01/1988 31/12/1994 -70032090 01/01/1988 31/12/1994 LIBEN Sheets of glass, cast or rolled, wired, but not otherwise worked (excl. glass coloured throughout the mass 'body tinted', opacified, flashed or having an absorbent or reflecting layer) 01/01/1988 31/12/1994 -700330 01/01/1988 31/12/2500 LIBEN Profiles of glass, whether or not having an absorbent, reflecting or non-reflecting layer, but not otherwise worked 01/01/1988 31/12/2500 -70033000 01/01/1988 31/12/2500 LIBEN Profiles of glass, whether or not having an absorbent, reflecting or non-reflecting layer, but not otherwise worked 01/01/1988 31/12/2500 -7004 01/01/1988 31/12/2500 LIBEN Sheets of glass, drawn or blown, whether or not having an absorbent, reflecting or non-reflecting layer, but not otherwise worked 01/01/1988 31/12/2500 -700410 01/01/1988 31/12/1995 LIBEN Sheets of glass, drawn or blown, coloured throughout the mass "body tinted" opacified, flashed or having an absorbent or reflecting layer, but not otherwise worked 01/01/1988 31/12/1995 -70041010 01/01/1988 31/12/1995 LIBEN Sheets of optical glass, drawn or blown, coloured throughout the mass "body tinted" opacified, flashed or having an absorbent or reflecting layer, but not otherwise worked 01/01/1988 31/12/1995 -70041030 01/01/1988 31/12/1994 LIBEN Sheets of antique glass, drawn or blown, coloured throughout the mass 'body tinted' opacified, flashed or having an absorbent or reflecting layer, but not otherwise worked 01/01/1988 31/12/1994 -70041050 01/01/1988 31/12/1994 LIBEN Sheets of horticultural glass, drawn or blown, coloured throughout the mass 'body tinted' opacified, flashed or having an absorbent or reflecting layer, but not otherwise worked 01/01/1988 31/12/1994 -70041080 01/01/1995 31/12/1995 LIBEN Sheets of drawn or blown glass, coloured throughout the mass (body tinted), flashed or having an absorbent or reflecting layer, but not otherwise worked (other than optical glass) 01/01/1995 31/12/1995 -70041090 01/01/1988 31/12/1994 LIBEN Sheets of glass, drawn or blown, coloured throughout the mass 'body tinted' opacified, flashed or having an absorbent or reflecting layer, but not otherwise worked (excl. optical, antique and horticultural glass) 01/01/1988 31/12/1994 -700420 01/01/1996 31/12/2500 LIBEN Sheets of glass, drawn or blown, coloured throughout the mass "body tinted" opacified, flashed or having an absorbent, reflecting or non-reflecting layer, but not otherwise worked 01/01/1996 31/12/2500 -70042010 01/01/1996 31/12/2500 LIBEN Sheets of optical glass, drawn or blown, coloured throughout the mass "body tinted" opacified, flashed or having an absorbent, reflecting or non-reflecting layer, but not otherwise worked 01/01/1996 31/12/2500 -70042091 01/01/1996 31/12/2500 LIBEN Sheets of glass, drawn or blown, having a non-reflecting layer, but not otherwise worked (other than optical glass) 01/01/1996 31/12/2500 -70042099 01/01/1996 31/12/2500 LIBEN Sheets of glass, drawn or blown, coloured throughout the mass "body tinted", flashed or having an absorbent or reflecting layer, but not otherwise worked (other than optical glass) 01/01/1996 31/12/2500 -700490 01/01/1988 31/12/2500 LIBEN Sheets of glass, drawn or blown, but not otherwise worked (excl. glass coloured throughout the mass "body tinted" opacified, flashed or having an absorbent, reflecting or non-reflecting layer) 01/01/1988 31/12/2500 -70049010 01/01/1988 31/12/2500 LIBEN Sheets of optical glass, drawn or blown, but not otherwise worked (excl. glass coloured throughout the mass "body tinted" opacified, flashed or having an absorbent, reflecting or non-reflecting layer) 01/01/1988 31/12/2500 -70049050 01/01/1988 31/12/1994 LIBEN Sheets of antique glass, drawn or blown, but not otherwise worked (excl. glass coloured throughout the mass 'body tinted' opacified, flashed or having an absorbent or reflecting layer) 01/01/1988 31/12/1994 -70049070 01/01/1988 31/12/2008 LIBEN Sheets of horticultural glass, drawn or blown, but not otherwise worked (excl. glass coloured throughout the mass "body tinted" opacified, flashed or having an absorbent, reflecting or non-reflecting layer) 01/01/1988 31/12/2008 -70049080 01/01/2009 31/12/2500 LIBEN Sheets of glass, drawn or blown, otherwise unworked (other than coloured throughout the mass "body tinted", opacified, flashed or having an absorbent, reflecting or non-reflecting layer, optical glass) 01/01/2009 31/12/2500 -70049091 01/01/1988 31/12/1994 LIBEN Sheets of glass, drawn or blown, but not otherwise worked, of a thickness of =< 2.5 mm (excl. glass coloured throughout the mass 'body tinted' opacified, flashed or having an absorbent or reflecting layer, optical glass, antique glass and horticultural sheet glass) 01/01/1988 31/12/1994 -70049092 01/01/1995 31/12/2008 LIBEN Sheets of glass, drawn or blown, otherwise unworked, of a thickness of <= 2,5 mm (other than coloured throughout the mass "body tinted", opacified, flashed or having an absorbent, reflecting or non-reflecting layer, optical glass and horticultural glass) 01/01/1995 31/12/2008 -70049093 01/01/1988 31/12/1994 LIBEN Sheets of glass, drawn or blown, but not otherwise worked, of a thickness of > 2.5 mm but =< 3.5 mm (excl. glass coloured throughout the mass 'body tinted' opacified, flashed or having an absorbent of reflecting layer, optical glass, antique glass and horticultural sheet glass) 01/01/1988 31/12/1994 -70049095 01/01/1988 31/12/1994 LIBEN Sheets of horticultural glass, drawn or blown, but not otherwise worked, of a thickness of > 3.5 mm but =< 4.5 (excl. glass coloured throughout the mass 'body tinted' opacified, flashed or having an absorbent or reflecting layer) 01/01/1988 31/12/1994 -70049098 01/01/1995 31/12/2008 LIBEN Sheets of glass, drawn or blown, otherwise unworked, of a thickness of > 2,5 mm (other than coloured throughout the mass "body tinted", opacified, flashed or having an absorbent, reflecting or non-reflecting layer, optical glass and horticultural glass) 01/01/1995 31/12/2008 -70049099 01/01/1988 31/12/1994 LIBEN Sheets of glass, drawn or blown, but not otherwise worked, of a thickness of > 4.5 (excl. glass coloured throughout the mass 'body tinted' opacified, flashed or having an absorbent of reflecting layer, optical glass, antique glass and horticultural sheet glass) 01/01/1988 31/12/1994 -7005 01/01/1988 31/12/2500 LIBEN Float glass and surface ground or polished glass, in sheets, whether or not having an absorbent, reflecting or non-reflecting layer, but not otherwise worked 01/01/1988 31/12/2500 -700510 01/01/1988 31/12/2500 LIBEN Float glass and surface ground or polished glass, in sheets, having an absorbent, reflecting or non-reflecting layer, but not otherwise worked (excl. wired glass) 01/01/1988 31/12/2500 -70051005 01/01/1996 31/12/2500 LIBEN Float glass and surface ground or polished glass, in sheets, having a non-reflecting layer, but not otherwise worked (excl. wired glass) 01/01/1996 31/12/2500 -70051010 01/01/1988 31/12/1995 LIBEN Sheets of horticultural float glass or surface ground or polished glass, having an absorbent or reflecting layer (excl. wired glass) 01/01/1988 31/12/1995 -70051025 01/01/1996 31/12/2500 LIBEN Float glass and surface ground or polished glass, in sheets, having an absorbent or reflecting layer, but not otherwise worked, of a thickness of <= 3,5 mm (excl. wired glass) 01/01/1996 31/12/2500 -70051030 01/01/1996 31/12/2500 LIBEN Float glass and surface ground or polished glass, in sheets, having an absorbent or reflecting layer, but not otherwise worked, of a thickness of > 3,5 mm but <= 4,5 mm (excl. wired glass) 01/01/1996 31/12/2500 -70051031 01/01/1988 31/12/1995 LIBEN Sheets of float glass and surface ground or polished glass, in sheets, having an absorbent or reflecting layer, but not otherwise worked, of a thickness of <= 2,5 mm (excl. horticultural or wired glass) 01/01/1988 31/12/1995 -70051033 01/01/1988 31/12/1995 LIBEN Sheets of float glass and surface ground or polished glass, in sheets, having an absorbent or reflecting layer, but not otherwise worked, of a thickness of > 2,5 mm but <= 3,5 mm (excl. horticultural or wired glass) 01/01/1988 31/12/1995 -70051035 01/01/1988 31/12/1995 LIBEN Sheets of float glass and surface ground or polished glass, in sheets, having an absorbent or reflecting layer, but not otherwise worked, of a thickness of > 3,5 mm but <= 4,5 mm (excl. horticultural or wired glass) 01/01/1988 31/12/1995 -70051080 01/01/1996 31/12/2500 LIBEN Float glass and surface ground or polished glass, in sheets, having an absorbent or reflecting layer, but not otherwise worked, of a thickness of > 4,5 mm (excl. wired glass) 01/01/1996 31/12/2500 -70051091 01/01/1988 31/12/1995 LIBEN Sheets of float glass and surface ground or polished glass, in sheets, having an absorbent or reflecting layer, but not otherwise worked, of a thickness of > 4,5 mm but <= 5,5 mm (excl. horticultural or wired glass) 01/01/1988 31/12/1995 -70051093 01/01/1988 31/12/1995 LIBEN Sheets of float glass and surface ground or polished glass, in sheets, having an absorbent or reflecting layer, but not otherwise worked, of a thickness of > 5,5 mm but <= 7 mm (excl. horticultural or wired glass) 01/01/1988 31/12/1995 -70051095 01/01/1988 31/12/1995 LIBEN Sheets of float glass and surface ground or polished glass, in sheets, having an absorbent or reflecting layer, but not otherwise worked, of a thickness of > 7 mm (excl. horticultural or wired glass) 01/01/1988 31/12/1995 -700521 01/01/1988 31/12/2500 LIBEN Float glass and surface ground glass, in sheets, coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, but not otherwise worked (excl. wired glass or glass having an absorbent, reflecting or non-reflecting layer) 01/01/1988 31/12/2500 -70052110 01/01/1988 31/12/1995 LIBEN Sheets of float glass and surface ground glass, in sheets coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, but not otherwise worked, of a thickness of <= 2,5 mm (excl. wired glass or glass having an absorbent or reflecting layer) 01/01/1988 31/12/1995 -70052120 01/01/1988 31/12/1995 LIBEN Sheets of float glass and surface ground glass, in sheets, coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, but not otherwise worked, of a thickness of > 2,5 mm but <= 3,5 mm (excl. wired glass or glass having an absorbent or reflecting layer) 01/01/1988 31/12/1995 -70052125 01/01/1996 31/12/2500 LIBEN Float glass and surface ground glass, in sheets, coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, but not otherwise worked, of a thickness of <= 3,5 mm (excl. wired glass or glass having an absorbent, reflecting or non-reflecting layer) 01/01/1996 31/12/2500 -70052130 01/01/1988 31/12/2500 LIBEN Float glass and surface ground glass, in sheets, coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, but not otherwise worked, of a thickness of > 3,5 mm but <= 4,5 mm (excl. wired glass or glass having an absorbent, reflecting or non-reflecting layer) 01/01/1988 31/12/2500 -70052140 01/01/1988 31/12/1995 LIBEN Sheets of float glass and surface ground glass, in sheets, coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, but not otherwise worked, of a thickness of > 4,5 mm but <= 5,5 mm (excl. wired glass or glass having an absorbent or reflecting layer) 01/01/1988 31/12/1995 -70052150 01/01/1988 31/12/1995 LIBEN Sheets of float glass and surface ground glass, in sheets, coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, but not otherwise worked, of a thickness of > 5,5 mm but <= 7 mm (excl. wired glass or glass having an absorbent or reflecting layer) 01/01/1988 31/12/1995 -70052180 01/01/1996 31/12/2500 LIBEN Float glass and surface ground glass, in sheets, coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, but not otherwise worked, of a thickness of > 4,5 mm (excl. wired glass or glass having an absorbent, reflecting or non-reflecting layer) 01/01/1996 31/12/2500 -70052190 01/01/1988 31/12/1995 LIBEN Sheets of float glass and surface ground glass, in sheets, coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, but not otherwise worked, of a thickness of > 7 mm (excl. wired glass or glass having an absorbent or reflecting layer) 01/01/1988 31/12/1995 -700529 01/01/1988 31/12/2500 LIBEN Float glass and surface ground and polished glass, in sheets, but not otherwise worked (excl. wired glass or glass coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, or glass having an absorbent, reflecting or non-reflecting layer) 01/01/1988 31/12/2500 -70052910 01/01/1988 31/12/1995 LIBEN Sheets of horticultural glass and surface ground and polished glass, in sheets, but not otherwise worked (excl. wired glass or glass coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, or glass having an absorbent or reflecting layer) 01/01/1988 31/12/1995 -70052925 01/01/1996 31/12/2500 LIBEN Float glass and surface ground and polished glass, in sheets, but not otherwise worked, of a thickness of <= 3,5 mm (excl. wired glass or glass coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, or glass having an absorbent, reflecting or non-reflecting layer) 01/01/1996 31/12/2500 -70052931 01/01/1988 31/12/1995 LIBEN Sheets of float glass and surface ground and polished glass, in sheets, but not otherwise worked, of a thickness of <= 2,5 mm (excl. horticultural glass or wired glass or glass coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, or glass having an absorbent or reflecting layer) 01/01/1988 31/12/1995 -70052933 01/01/1988 31/12/1995 LIBEN Sheets of float glass and surface ground and polished glass, in sheets, but not otherwise worked, of a thickness of > 2,5 mm but <= 3,5 mm (excl. horticultural glass or wired glass or glass coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, or glass having an absorbent or reflecting layer) 01/01/1988 31/12/1995 -70052935 01/01/1988 31/12/2500 LIBEN Float glass and surface ground and polished glass, in sheets, but not otherwise worked, of a thickness of > 3,5 mm but <= 4,5 mm (excl. wired glass or glass coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, or glass having an absorbent, reflecting or non-reflecting layer) 01/01/1988 31/12/2500 -70052980 01/01/1996 31/12/2500 LIBEN Float glass and surface ground and polished glass, in sheets, but not otherwise worked, of a thickness of > 4,5 mm (excl. horticultural glass or wired glass or glass coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, or glass having an absorbent, reflecting or non-reflecting layer) 01/01/1996 31/12/2500 -70052991 01/01/1988 31/12/1995 LIBEN Sheets of float glass and surface ground and polished glass, in sheets, but not otherwise worked, of a thickness of > 4,5 mm but <= 5,5 mm (excl. horticultural glass or wired glass or glass coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, or glass having an absorbent or reflecting layer) 01/01/1988 31/12/1995 -70052993 01/01/1988 31/12/1995 LIBEN Sheets of float glass and surface ground and polished glass, in sheets, but not otherwise worked, of a thickness of > 5,5 mm but <= 7 mm (excl. horticultural glass or wired glass or glass coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, or glass having an absorbent or reflecting layer) 01/01/1988 31/12/1995 -70052995 01/01/1988 31/12/1995 LIBEN Sheets of float glass and surface ground and polished glass, in sheets, but not otherwise worked, of a thickness of > 7 mm (excl. horticultural glass or wired glass or glass coloured throughout the mass "body tinted", opacified, flashed or merely surface ground, or glass having an absorbent or reflecting layer) 01/01/1988 31/12/1995 -700530 01/01/1988 31/12/2500 LIBEN Float glass and surface ground and polished glass, in sheets, whether or not having an absorbent, reflecting or non-reflecting layer, wired, but not otherwise worked 01/01/1988 31/12/2500 -70053000 01/01/1988 31/12/2500 LIBEN Float glass and surface ground and polished glass, in sheets, whether or not having an absorbent, reflecting or non-reflecting layer, wired, but not otherwise worked 01/01/1988 31/12/2500 -7006 01/01/1988 31/12/2500 LIBEN Sheets or profiles of glass, whether or not having an absorbent, reflecting or non-reflecting layer, bent, edge-worked, engraved, enamelled or otherwise worked, but not framed or fitted with other materials (excl. safety glass, multiple-walled insulating units of glass, glass in the form of a mirror) 01/01/1988 31/12/2500 -700600 01/01/1988 31/12/2500 LIBEN Sheets or profiles of glass, whether or not having an absorbent, reflecting or non-reflecting layer, bent, edge-worked, engraved, enamelled or otherwise worked, but not framed or fitted with other materials (excl. safety glass, multiple-walled insulating units of glass, glass in the form of a mirror) 01/01/1988 31/12/2500 -70060010 01/01/1988 31/12/1995 LIBEN Sheets or profiles of optical glass, "whether or not having an absorbent or reflecting layer", bent, edge-worked, engraved, drilled, enamelled or otherwise worked, but not framed or fitted with other materials (excl. safety glass, multiple-walled insulating units of glass, glass in the form of a mirror) 01/01/1988 31/12/1995 -70060010 01/01/1996 31/12/2500 LIBEN Sheets or profiles of optical glass, whether or not having an absorbent or reflecting layer, bent, edge-worked, engraved, drilled, enamelled or otherwise worked, but not framed or fitted with other materials (excl. safety glass, multiple-walled insulating units of glass, glass in the form of a mirror) 01/01/1996 31/12/2500 -70060090 01/01/1988 31/12/1995 LIBEN Sheets or profiles of glass, "whether or not having an absorbent or reflecting layer", bent, edge-worked, engraved, drilled, enamelled or otherwise worked, but not framed or fitted with other materials (excl. optical glass, safety glass, multiple-walled insulating units of glass, glass in the form of a mirror) 01/01/1988 31/12/1995 -70060090 01/01/1996 31/12/2500 LIBEN Sheets or profiles of glass, whether or not having an absorbent, reflecting or non-reflecting layer, bent, edge-worked, engraved, enamelled or otherwise worked, but not framed or fitted with other materials (excl. optical glass, safety glass, multiple-walled insulating units of glass, glass in the form of a mirror) 01/01/1996 31/12/2500 -7007 01/01/1988 31/12/2500 LIBEN Safety glass, toughened "tempered", laminated safety glass (excl. multiple-walled insulating units of glass, glasses for spectacles and clock or watch glasses) 01/01/1988 31/12/2500 -700711 01/01/1988 31/12/2500 LIBEN Toughened "tempered" safety glass, of size and shape suitable for incorporation in motor vehicles, aircraft, spacecraft, vessels and other vehicles 01/01/1988 31/12/2500 -70071110 01/01/1988 31/12/2500 LIBEN Toughened "tempered" safety glass, of size and shape suitable for incorporation in motor vehicles 01/01/1988 31/12/2500 -70071190 01/01/1988 31/12/2500 LIBEN Toughened "tempered" safety glass, of size and shape suitable for incorporation in aircraft, spacecraft, vessels or other vehicles (excl. motor vehicles) 01/01/1988 31/12/2500 -700719 01/01/1988 31/12/2500 LIBEN Toughened "tempered" safety glass (excl. glass of size and shape suitable for incorporation in motor vehicles, aircraft, spacecraft, vessels and other vehicles, and lenses for spectacles and goggles, etc., and for clocks and watches) 01/01/1988 31/12/2500 -70071910 01/01/1988 31/12/2500 LIBEN Toughened "tempered" safety glass, enamelled 01/01/1988 31/12/2500 -70071920 01/01/1990 31/12/2500 LIBEN Toughened "tempered" safety glass, coloured throughout the mass "body tinted", opacified, flashed or having an absorbent or reflecting layer (excl. glass of size and shape suitable for incorporation in motor vehicles, aircraft, spacecraft, vessels and other vehicles, and lenses for spectacles and goggles, etc., and for clocks and watches) 01/01/1990 31/12/2500 -70071930 01/01/1988 31/12/1989 LIBEN Safety glass, toughened 'tempered', coloured throughout the mass 'body tinted' or having an absorbent or reflecting layer (excl. glass of size and shape suitable for incorporation into motor vehicles, aircraft, vessels or other vehicles, glasses for spectacles and clock or watch glasses) 01/01/1988 31/12/1989 -70071980 01/01/1990 31/12/2500 LIBEN Toughened "tempered" safety glass (excl. enamelled, coloured throughout the mass, opacified, flashed or with an absorbent or reflecting layer, glass of size and shape suitable for incorporation in motor vehicles, aircraft, spacecraft, vessels and other vehicles, and lenses for spectacles and goggles, etc., and for clocks and watches) 01/01/1990 31/12/2500 -70071990 01/01/1988 31/12/1989 LIBEN Safety glass, toughened 'tempered' (excl. glass coloured throughout the mass 'body tinted' or having an absorbent or reflecting layer or of size and shape suitable for incorporation into motor vehicles, aircraft, vessels or other vehicles, glasses for spectacles and clock or watch glasses) 01/01/1988 31/12/1989 -700721 01/01/1988 31/12/2500 LIBEN Laminated safety glass, of size and shape suitable for incorporation in motor vehicles, aircraft, spacecraft, vessels and other vehicles (excl. multiple-walled insulating units of glass) 01/01/1988 31/12/2500 -70072110 01/01/1988 31/12/2005 LIBEN Windshields of laminated safety glass, not framed, for civil aircraft 01/01/1988 31/12/2005 -70072120 01/01/2006 31/12/2500 LIBEN Laminated safety glass of size and shape suitable for incorporation in motor vehicles (excl. multiple-walled insulating units) 01/01/2006 31/12/2500 -70072180 01/01/2006 31/12/2500 LIBEN Laminated safety glass of size and shape suitable for incorporation in aircraft, spacecraft, vessels or other vehicles (excl. for motor vehicles and multiple-walled insulating units) 01/01/2006 31/12/2500 -70072191 01/01/1988 31/12/2005 LIBEN Laminated safety glass of size and shape suitable for incorporation in motor vehicles (excl. multiple-walled insulating units) 01/01/1988 31/12/2005 -70072199 01/01/1988 31/12/2005 LIBEN Laminated safety glass of size and shape suitable for incorporation in aircraft, spacecraft, vessels or other vehicles (excl. laminated safety glass for motor vehicles; not framed windshields for use in civil aircraft; multiple-walled insulating units) 01/01/1988 31/12/2005 -700729 01/01/1988 31/12/2500 LIBEN Laminated safety glass (excl. glass of size and shape suitable for incorporation in motor vehicles, aircraft, spacecraft, vessels or other vehicles, multiple-walled insulating units) 01/01/1988 31/12/2500 -70072900 01/01/1988 31/12/2500 LIBEN Laminated safety glass (excl. glass of size and shape suitable for incorporation in motor vehicles, aircraft, spacecraft, vessels or other vehicles, multiple-walled insulating units) 01/01/1988 31/12/2500 -7008 01/01/1988 31/12/2500 LIBEN Multiple-walled insulating units of glass 01/01/1988 31/12/2500 -700800 01/01/1988 31/12/2500 LIBEN Multiple-walled insulating units of glass 01/01/1988 31/12/2500 -70080011 01/01/1988 31/12/1990 LIBEN Insulating units, double-walled, coloured throughout the mass 'body tinted', opacified, flashed or having an absorbent or reflecting layer 01/01/1988 31/12/1990 -70080019 01/01/1988 31/12/1990 LIBEN Insulating units, triple- and multiple-walled, coloured throughout the mass 'body tinted', opacified, flashed or having an absorbent or reflecting layer 01/01/1988 31/12/1990 -70080020 01/01/1995 31/12/2500 LIBEN Multiple-walled insulating units of glass, coloured throughout the mass, opacified, flashed or having an absorbent or reflective layer 01/01/1995 31/12/2500 -70080021 01/01/1991 31/12/1994 LIBEN Insulating units consisting of two panels of glass sealed around the edges by an airtight joint and separated by a layer of air, other gases or a vacuum, coloured throughout the mass 'body tinted', opacified, flashed or having an absorbent or reflecting layer 01/01/1991 31/12/1994 -70080029 01/01/1991 31/12/1994 LIBEN Multiple-walled insulating units of glass coloured throughout the mass 'body tinted', opacified, flashed or having an absorbent or reflecting layer (excl. 7008.00-21) 01/01/1991 31/12/1994 -70080081 01/01/1991 31/12/2500 LIBEN Insulating units consisting of two panels of glass sealed around the edges by an airtight joint and separated by a layer of air, other gases or a vacuum (excl. coloured throughout the mass, opacified, flashed or having an absorbent or reflective layer) 01/01/1991 31/12/2500 -70080089 01/01/1991 31/12/2500 LIBEN Multiple-walled insulating glass consisting of two panels of glass with an interlayer of glass fibre, and multiple-walled insulating glass consisting of three or more panels of glass (excl. coloured throughout the mass, opacified, flashed or having an absorbent or reflective layer) 01/01/1991 31/12/2500 -70080091 01/01/1988 31/12/1990 LIBEN Insulating units, double-walled (excl. units of glass coloured throughout the mass 'body tinted', opacified, flashed or having an absorbent or reflecting layer) 01/01/1988 31/12/1990 -70080099 01/01/1988 31/12/1990 LIBEN Insulating units, triple- and multiple-walled (excl. units of glass coloured throughout the mass 'body tinted', opacified, flashed or having an absorbent or reflecting layer) 01/01/1988 31/12/1990 -7009 01/01/1988 31/12/2500 LIBEN Glass mirrors, whether or not framed, incl. rear-view mirrors (excl. optical mirrors, optically worked, mirrors > 100 years old) 01/01/1988 31/12/2500 -700910 01/01/1988 31/12/2500 LIBEN Rear-view mirrors, whether or not framed, for vehicles 01/01/1988 31/12/2500 -70091000 01/01/1988 31/12/2500 LIBEN Rear-view mirrors, whether or not framed, for vehicles 01/01/1988 31/12/2500 -700991 01/01/1988 31/12/2500 LIBEN Glass mirrors, unframed (excl. rear-view mirrors for vehicles, optical mirrors, optically worked, mirrors > 100 years old) 01/01/1988 31/12/2500 -70099100 01/01/1988 31/12/2500 LIBEN Glass mirrors, unframed (excl. rear-view mirrors for vehicles, optical mirrors, optically worked, mirrors > 100 years old) 01/01/1988 31/12/2500 -700992 01/01/1988 31/12/2500 LIBEN Glass mirrors, framed (excl. rear-view mirrors for vehicles, optical mirrors, optically processed, and mirrors of an age of > 100 years) 01/01/1988 31/12/2500 -70099200 01/01/1988 31/12/2500 LIBEN Glass mirrors, framed (excl. rear-view mirrors for vehicles, optical mirrors, optically processed, and mirrors of an age of > 100 years) 01/01/1988 31/12/2500 -7010 01/01/1988 31/12/2500 LIBEN Carboys, bottles, flasks, jars, pots, phials, ampoules and other containers, of glass, of a kind used for the conveyance or packing of goods, preserving jars, stoppers, lids and other closures, of glass (excl. glass envelopes and containers, with vacuum insulation, perfume atomizers, flasks, bottles etc. for atomizers) 01/01/1988 31/12/2500 -701010 01/01/1988 31/12/2500 LIBEN Glass ampoules 01/01/1988 31/12/2500 -70101000 01/01/1988 31/12/2500 LIBEN Glass ampoules 01/01/1988 31/12/2500 -701020 01/01/1996 31/12/2500 LIBEN Stoppers, lids and other closures, of glass 01/01/1996 31/12/2500 -70102000 01/01/1996 31/12/2500 LIBEN Stoppers, lids and other closures, of glass 01/01/1996 31/12/2500 -701090 01/01/1988 31/12/1995 LIBEN Carboys, bottles, flasks, jars, pots, phials, ampoules and other containers, of glass, of a kind used for the conveyance or packing of goods, preserving jars, stoppers, lids and other closures, of glass (excl. ampoules, glass envelopes and containers, with vacuum insulation, perfume atomizers, flasks, bottles etc. for atomizers) 01/01/1988 31/12/1995 -701090 01/01/2002 31/12/2500 LIBEN Carboys, bottles, flasks, jars, pots, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of goods, and preserving jars, of glass (excl. ampoules, glass inners for containers, with vacuum insulation, perfume atomizers, flasks, bottles etc. for atomizers) 01/01/2002 31/12/2500 -70109010 01/01/1988 31/12/1995 LIBEN Glass preserving jars "sterilizing jars" 01/01/1988 31/12/1995 -70109010 01/01/2002 31/12/2500 LIBEN Household preserving jars "sterilising jars", of glass 01/01/2002 31/12/2500 -70109021 01/01/1988 31/12/1995 LIBEN Containers made from tubing of glass of a thickness of < 1 mm (excl. ampoules) 01/01/1988 31/12/1995 -70109021 01/01/2002 31/12/2500 LIBEN Phials and other containers made from tubing of glass, of a kind used for the commercial packing of goods (excl. ampoules) 01/01/2002 31/12/2500 -70109031 01/01/1988 31/12/1995 LIBEN Glass containers of a kind used for the conveyance or packing of goods of a nominal capacity of >= 2,5 l (excl. glass envelopes and containers, with vacuum insulation) 01/01/1988 31/12/1995 -70109031 01/01/2002 31/12/2500 LIBEN Carboys, bottles, flasks, jars, pots, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of goods, of a nominal capacity of >= 2,5 l 01/01/2002 31/12/2500 -70109041 01/01/1988 31/12/1995 LIBEN Bottles of colourless glass of a kind used for the conveyance or packing of foodstuffs and beverages, of a nominal capacity of >= 1 l but < 2,5 l 01/01/1988 31/12/1995 -70109041 01/01/2002 31/12/2500 LIBEN Bottles of colourless glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of >= 1 l but < 2,5 l 01/01/2002 31/12/2500 -70109043 01/01/1988 31/12/1995 LIBEN Bottles of colourless glass of a kind used for the conveyance or packing of foodstuffs and beverages, of a nominal capacity of >= 0,33 l but < 1 l 01/01/1988 31/12/1995 -70109043 01/01/2002 31/12/2500 LIBEN Bottles of colourless glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of > 0,33 l but < 1 l 01/01/2002 31/12/2500 -70109045 01/01/1988 31/12/1995 LIBEN Bottles of colourless glass of a kind used for the conveyance or packing of foodstuffs and beverages, of a nominal capacity of >= 0,15 l but < 0,33 l 01/01/1988 31/12/1995 -70109045 01/01/2002 31/12/2500 LIBEN Bottles of colourless glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of >= 0,15 l to 0,33 l 01/01/2002 31/12/2500 -70109047 01/01/1988 31/12/1995 LIBEN Bottles of colourless glass of a kind used for the conveyance or packing of foodstuffs and beverages, of a nominal capacity of <= 0,15 l (excl. tubing of glass of a thickness of < 1 mm) 01/01/1988 31/12/1995 -70109047 01/01/2002 31/12/2500 LIBEN Bottles of colourless glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of < 0,15 l 01/01/2002 31/12/2500 -70109051 01/01/1988 31/12/1995 LIBEN Bottles of coloured glass of a kind used for the conveyance or packing of foodstuffs and beverages, of a nominal capacity of >= 1 l but < 2,5 l 01/01/1988 31/12/1995 -70109051 01/01/2002 31/12/2500 LIBEN Bottles of coloured glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of >= 1 l but < 2,5 l 01/01/2002 31/12/2500 -70109053 01/01/1988 31/12/1995 LIBEN Bottles of coloured glass of a kind used for the conveyance or packing of foodstuffs and beverages, of a nominal capacity of > 0,33 l but < 1 l 01/01/1988 31/12/1995 -70109053 01/01/2002 31/12/2500 LIBEN Bottles of coloured glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of > 0,33 l but <= 1 l 01/01/2002 31/12/2500 -70109055 01/01/1988 31/12/1995 LIBEN Bottles of coloured glass of a kind used for the conveyance or packing of foodstuffs and beverages, of a nominal capacity of >= 0,15 l but <= 0,33 l 01/01/1988 31/12/1995 -70109055 01/01/2002 31/12/2500 LIBEN Bottles of coloured glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of >= 0,15 l to 0,33 l 01/01/2002 31/12/2500 -70109057 01/01/1988 31/12/1995 LIBEN Bottles of coloured glass of a kind used for the conveyance or packing of foodstuffs and beverages, of a nominal capacity of <= 0,15 l (excl. tubing of glass of a thickness of < 1 mm) 01/01/1988 31/12/1995 -70109057 01/01/2002 31/12/2500 LIBEN Bottles of coloured glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of < 0,15 l 01/01/2002 31/12/2500 -70109061 01/01/1988 31/12/1995 LIBEN Glass containers of a kind used for the conveyance or packing of foodstuffs and beverages, of a nominal capacity of >= 0,25 l but < 2,5 l (excl. bottles) 01/01/1988 31/12/1995 -70109061 01/01/2002 31/12/2500 LIBEN Carboys, flasks, jars, pots, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of >= 0,25 l but < 2,5 l (excl. bottles) 01/01/2002 31/12/2500 -70109067 01/01/1988 31/12/1995 LIBEN Glass containers of a kind used for the conveyance or packing of foodstuffs and beverages, of a nominal capacity of <= 0,25 l (excl. bottles) 01/01/1988 31/12/1995 -70109067 01/01/2002 31/12/2500 LIBEN Carboys, flasks, jars, pots, phials and other containers, of glass, of a kind used for the conveyance or packing of foodstuffs and beverages, of a nominal capacity of < 0,25 l (excl. bottles) 01/01/2002 31/12/2500 -70109071 01/01/1988 31/12/1995 LIBEN Glass containers of a kind used for the conveyance or packing of pharmaceutical products, of a nominal capacity of > 0,055 l but < 2,5 l (excl. tubing of glass of a thickness of < 1 mm, glass envelopes and containers, with vacuum insulation) 01/01/1988 31/12/1995 -70109071 01/01/2002 31/12/2500 LIBEN Bottles, flasks, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of pharmaceutical products, of a nominal capacity of > 0,055 l but < 2,5 l (excl. ampoules, containers made from tubing, glass inners for containers, with vacuum insulation) 01/01/2002 31/12/2500 -70109077 01/01/1988 31/12/1995 LIBEN Glass containers of a kind used for the conveyance or packing of pharmaceutical products, of a nominal capacity of <= 0,055 l (excl. tubing of glass of a thickness of < 1 mm, glass envelopes and containers, with vacuum insulation) 01/01/1988 31/12/1995 -70109079 01/01/2002 31/12/2500 LIBEN Bottles, flasks, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of pharmaceutical products, of a nominal capacity of <= 0,055 l (excl. ampoules, containers made from tubing, glass inners for containers, with vacuum insulation) 01/01/2002 31/12/2500 -70109081 01/01/1988 31/12/1995 LIBEN Colourless glass containers of a kind used for the conveyance or packing of goods, of a nominal capacity of <= 2,5 l (excl. containers for foodstuffs, beverages or pharmaceutical products, or containers made of tubing of glass of a thickness of < 1 mm, glass envelopes and containers, with vacuum insulation, perfume atomizers, flasks, bottles etc. for atomizers, ampoules) 01/01/1988 31/12/1995 -70109087 01/01/1988 31/12/1995 LIBEN Coloured glass containers of a kind used for the conveyance or packing of goods, of a nominal capacity of <= 2,5 l (excl. containers for foodstuffs, beverages or pharmaceutical products, or containers made of tubing of glass of a thickness of < 1 mm, glass envelopes and containers, with vacuum insulation, perfume atomizers, flasks, bottles etc. for atomizers, ampoules) 01/01/1988 31/12/1995 -70109091 01/01/2002 31/12/2500 LIBEN Carboys, bottles, flasks, jars, pots, phials and other containers, of colourless glass, of a kind used for the commercial conveyance or packing of goods, of a nominal capacity of < 2,5 l (excl. containers for foodstuffs, beverages or pharmaceutical products, ampoules, containers made from tubing, glass inners for containers, with vacuum insulation, perfume atomizers, flasks, bottles etc. for atomizers) 01/01/2002 31/12/2500 -70109099 01/01/1988 31/12/1995 LIBEN Stoppers, lids and other closures of glass 01/01/1988 31/12/1995 -70109099 01/01/2002 31/12/2500 LIBEN Carboys, bottles, flasks, jars, pots, phials and other containers, of coloured glass, of a kind used for the commercial conveyance or packing of goods, of a nominal capacity of < 2,5 l (excl. containers for foodstuffs, beverages or pharmaceutical products, ampoules, containers made from tubing, glass inners for containers, with vacuum insulation, perfume atomizers, flasks, bottles etc. for atomizers) 01/01/2002 31/12/2500 -701091 01/01/1996 31/12/2001 LIBEN Carboys, bottles, flasks, jars, pots, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of goods, and preserving jars, of glass, of a nominal capacity of > 1 l (excl. ampoules, glass inners for containers, with vacuum insulation, perfume atomizers, flasks, bottles etc. for atomizers) 01/01/1996 31/12/2001 -70109110 01/01/1996 31/12/2001 LIBEN Household preserving jars "sterilizing jars", of glass, of a nominal capacity of > 1 l 01/01/1996 31/12/2001 -70109121 01/01/1996 31/12/2001 LIBEN Bottles of colourless glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of > 1 l 01/01/1996 31/12/2001 -70109129 01/01/1996 31/12/2001 LIBEN Bottles of coloured glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of > 1 l 01/01/1996 31/12/2001 -70109160 01/01/1996 31/12/2001 LIBEN Carboys, flasks, jars, pots, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of > 1 l (excl. bottles) 01/01/1996 31/12/2001 -70109190 01/01/1996 31/12/2001 LIBEN Carboys, bottles, flasks, jars, pots, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of goods, of a nominal capacity of > 1 l (excl. containers for foodstuffs and beverages, ampoules, glass inners for containers, with vacuum insulation, perfume atomizers, flasks, bottles etc. for atomizers) 01/01/1996 31/12/2001 -701092 01/01/1996 31/12/2001 LIBEN Carboys, bottles, flasks, jars, pots, phials and other containers of a kind used for the commercial conveyance or packing of goods, and preserving jars, of glass, of a nominal capacity of > 0,33 l but <= 1 l (excl. ampoules, glass inners for containers, with vacuum insulation, perfume atomizers, flasks, bottles etc. for atomizers) 01/01/1996 31/12/2001 -70109210 01/01/1996 31/12/2001 LIBEN Household preserving jars "sterilizing jars", of glass, of a nominal capacity of > 0,33 l but <= 1 l 01/01/1996 31/12/2001 -70109221 01/01/1996 31/12/2001 LIBEN Bottles of colourless glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of > 0,33 l but <= 1 l 01/01/1996 31/12/2001 -70109229 01/01/1996 31/12/2001 LIBEN Bottles of coloured glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of > 0,33 l but <= 1 l 01/01/1996 31/12/2001 -70109260 01/01/1996 31/12/2001 LIBEN Carboys, bottles, flasks, jars, pots, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of > 0,33 l but <= 1 l (excl. bottles) 01/01/1996 31/12/2001 -70109290 01/01/1996 31/12/2001 LIBEN Carboys, bottles, flasks, jars, pots, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of goods, of a nominal capacity of > 0,33 l but <= 1 l(excl. containers for foodstuffs and beverages, ampoules, glass inners for containers, with vacuum insulation, perfume atomizers, flasks, bottles etc. for atomizers) 01/01/1996 31/12/2001 -701093 01/01/1996 31/12/2001 LIBEN Carboys, bottles, flasks, jars, pots, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of goods, and preserving jars, of glass, of a nominal capacity of > 0,15 l but <= 0,33 l (excl. ampoules, glass inners for containers, with vacuum insulation, perfume atomizers, flasks, bottles etc. for atomizers) 01/01/1996 31/12/2001 -70109310 01/01/1996 31/12/2001 LIBEN Household preserving jars "sterilizing jars", of glass, of a nominal capacity of > 0,15 l but <= 0,33 l 01/01/1996 31/12/2001 -70109321 01/01/1996 31/12/2001 LIBEN Bottles of colourless glass of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of > 0,15 l but <= 0,33 l 01/01/1996 31/12/2001 -70109329 01/01/1996 31/12/2001 LIBEN Bottles of coloured glass of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of > 0,15 l but <= 0,33 l 01/01/1996 31/12/2001 -70109361 01/01/1996 31/12/2001 LIBEN Carboys, flasks, jars, pots, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of >= 0,25 l but <= 0,33 l (excl. bottles) 01/01/1996 31/12/2001 -70109369 01/01/1996 31/12/2001 LIBEN Carboys, flasks, jars, pots, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of > 0,15 l but < 0,25 l (excl. bottles) 01/01/1996 31/12/2001 -70109370 01/01/1996 31/12/2001 LIBEN Flasks, phials and other cotainers, of glass, of a kind used for the commercial conveyance or packing of pharmaceutical products, of a nominal capacity of > 0,15 l but <= 0,33 l (excl. ampoules and glass inners for containers, with vacuum insulation) 01/01/1996 31/12/2001 -70109390 01/01/1996 31/12/2001 LIBEN Carboys, bottles, flasks, jars, pots, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of goods, of a nominal capacity of > 0,15 l but <= 0,33 l (excl. containers for foodstuffs, beverages or pharmaceutical products, ampoules, and glass inners for containers, with vacuum insulation, perfume atomizers, flasks, bottles etc. for atomizers) 01/01/1996 31/12/2001 -701094 01/01/1996 31/12/2001 LIBEN Carboys, bottles, flasks, jars, pots, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of goods, and preserving jars, of glass, of a nominal capacity of <= 0,15 l (excl. ampoules, glass inners for containers, with vacuum insulation, perfume atomizers, flasks, bottles etc. for atomizers) 01/01/1996 31/12/2001 -70109410 01/01/1996 31/12/2001 LIBEN Household preserving jars "sterilizing jars", of glass, of a nominal capacity of <= 0,15 l 01/01/1996 31/12/2001 -70109420 01/01/1996 31/12/2001 LIBEN Bottles of glass, of a kind used for the commercial conveyance or packing of foodstuffs and beverages, of a nominal capacity of <= 0,15 l 01/01/1996 31/12/2001 -70109460 01/01/1996 31/12/2001 LIBEN Carboys, flasks, jars, pots, phials and other containers, of glass, of a kind used for the conveyance or packing of foodstuffs and beverages, of a nominal capacity of <= 0,15 l (excl. bottles) 01/01/1996 31/12/2001 -70109471 01/01/1996 31/12/2001 LIBEN Flasks, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of pharmaceutical products, of a nominal capacity of > 0,055 l but <= 0,15 l (excl. ampoules, glass inners for containers, with vacuum insulation) 01/01/1996 31/12/2001 -70109479 01/01/1996 31/12/2001 LIBEN Flasks, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of pharmaceutical products, of a nominal capacity of <= 0,055 l (excl. ampoules, glass inners for containers, with vacuum insulation) 01/01/1996 31/12/2001 -70109490 01/01/1996 31/12/2001 LIBEN Carboys, flasks, jars, pots, phials and other containers, of glass, of a kind used for the commercial conveyance or packing of goods, of a nominal capacity of <= 0,15 l (excl. containers for foodstuffs, beverages or pharmaceutical products, ampoules, glass inners for containers, with vacuum insulation, perfume atomizers, flasks, bottles etc. for atomizers) 01/01/1996 31/12/2001 -7011 01/01/1988 31/12/2500 LIBEN Glass envelopes, incl. bulbs and tubes, open, and glass parts thereof, without fittings, for electric lamps, cathode ray tubes or the like 01/01/1988 31/12/2500 -701110 01/01/1988 31/12/2500 LIBEN Glass envelopes, incl. bulbs and tubes, open, and glass parts thereof, without fittings, for electric lighting 01/01/1988 31/12/2500 -70111000 01/01/1988 31/12/1993 LIBEN Glass envelopes, open, and open tubing of glass, glass parts thereof, without fittings, suitable for electric lamps for lighting 01/01/1988 31/12/1993 -70111000 01/01/1998 31/12/2500 LIBEN Glass envelopes, incl. bulbs and tubes, open, and glass parts thereof, without fittings, for electric lighting 01/01/1998 31/12/2500 -70111010 01/01/1994 31/12/1997 LIBEN Glass bulbs, open, without fittings, for filament lamps with a greatest external diameter of 25 mm to 70 mm 01/01/1994 31/12/1997 -70111090 01/01/1994 31/12/1997 LIBEN Glass envelopes, incl. bulbs and tubes, open, and glass parts thereof, without fittings, for electric for lighting (excl. bulbs for filament lamps with a greatest external diameter of 25 mm to 70 mm) 01/01/1994 31/12/1997 -701120 01/01/1988 31/12/2500 LIBEN Glass envelopes, incl. bulbs and tubes, open, and glass parts thereof, without fittings, for cathode ray tubes 01/01/1988 31/12/2500 -70112000 01/01/1988 31/12/2500 LIBEN Glass envelopes, incl. bulbs and tubes, open, and glass parts thereof, without fittings, for cathode ray tubes 01/01/1988 31/12/2500 -701190 01/01/1988 31/12/2500 LIBEN Glass envelopes, incl. bulbs and tubes, open, and glass parts thereof, without fittings, for electric lamps and the like (excl. cathode ray tubes and for electric lighting) 01/01/1988 31/12/2500 -70119000 01/01/1988 31/12/2500 LIBEN Glass envelopes, incl. bulbs and tubes, open, and glass parts thereof, without fittings, for electric lamps and the like (excl. cathode ray tubes and for electric lighting) 01/01/1988 31/12/2500 -7011S6 01/01/2007 31/12/2500 LIBEN Confidential trade of heading 7011 and SITC section 6 01/01/2007 31/12/2500 -7011S664 01/01/2007 31/12/2500 LIBEN Confidential trade of heading 7011 and SITC group 664 01/01/2007 31/12/2500 -7012 01/01/1988 31/12/2006 LIBEN Glass inners for vacuum flasks or for other vacuum vessels 01/01/1988 31/12/2006 -701200 01/01/1988 31/12/2006 LIBEN Glass inners for vacuum flasks or for other vacuum vessels 01/01/1988 31/12/2006 -70120010 01/01/1988 31/12/2006 LIBEN Unfinished glass inners, for vacuum flasks or for other vacuum vessels, unfinished 01/01/1988 31/12/2006 -70120090 01/01/1988 31/12/2006 LIBEN Finished glass inners, for vacuum flasks or for other vacuum vessels, finished 01/01/1988 31/12/2006 -7013 01/01/1988 31/12/2500 LIBEN Glassware of a kind used for table, kitchen, toilet, office, indoor decoration or similar purposes (excl. goods of heading 7018, glass preserving jars "sterilising jars", mirrors, leaded lights and the like, lighting fittings and parts thereof, atomizers for perfume and the like, vacuum flasks and other vacuum vessels) 01/01/1988 31/12/2500 -701310 01/01/1988 31/12/2500 LIBEN Glassware of glass ceramics, of a kind used for table, kitchen, toilet, office, indoor decoration or similar purposes (excl. goods of heading 7018, cooking hobs, leaded lights and the like, lighting fittings and parts thereof, atomizers for perfume and the like) 01/01/1988 31/12/2500 -70131000 01/01/1988 31/12/2500 LIBEN Glassware of glass ceramics, of a kind used for table, kitchen, toilet, office, indoor decoration or similar purposes (excl. goods of heading 7018, cooking hobs, leaded lights and the like, lighting fittings and parts thereof, atomizers for perfume and the like) 01/01/1988 31/12/2500 -701321 01/01/1988 31/12/2006 LIBEN Drinking glasses of lead crystal 01/01/1988 31/12/2006 -70132111 01/01/1988 31/12/2006 LIBEN Drinking glasses of lead crystal, gathered by hand, cut or otherwise decorated 01/01/1988 31/12/2006 -70132119 01/01/1988 31/12/2006 LIBEN Drinking glasses of lead crystal, gathered by hand (excl. cut or otherwise decorated) 01/01/1988 31/12/2006 -70132191 01/01/1988 31/12/2006 LIBEN Drinking glasses of lead crystal, gathered mechanically, cut or otherwise decorated 01/01/1988 31/12/2006 -70132199 01/01/1988 31/12/2006 LIBEN Drinking glasses of lead crystal, gathered mechanically (excl. cut or otherwise decorated) 01/01/1988 31/12/2006 -701322 01/01/2007 31/12/2500 LIBEN Drinking glasses, stemware, of lead crystal 01/01/2007 31/12/2500 -70132210 01/01/2007 31/12/2500 LIBEN Drinking glasses, stemware, of lead crystal, gathered by hand 01/01/2007 31/12/2500 -70132290 01/01/2007 31/12/2500 LIBEN Drinking glasses of lead crystal, stemware, gathered mechanically 01/01/2007 31/12/2500 -701328 01/01/2007 31/12/2500 LIBEN Drinking glasses, stemware (excl. of glass ceramics or of lead crystal) 01/01/2007 31/12/2500 -70132810 01/01/2007 31/12/2500 LIBEN Drinking glasses, stemware, gathered by hand (excl. of glass ceramics or of lead crystal) 01/01/2007 31/12/2500 -70132890 01/01/2007 31/12/2500 LIBEN Drinking glasses, stemware, gathered mechanically (excl. of glass ceramics or of lead crystal) 01/01/2007 31/12/2500 -701329 01/01/1988 31/12/2006 LIBEN Drinking glasses (excl. glasses of glass ceramics or of lead crystal) 01/01/1988 31/12/2006 -70132910 01/01/1988 31/12/2006 LIBEN Drinking glasses of toughened glass (excl. glasses of glass ceramics or of lead crystal) 01/01/1988 31/12/2006 -70132951 01/01/1988 31/12/2006 LIBEN Drinking glasses, gathered by hand, cut or otherwise decorated (excl. glasses of glass ceramics, lead crystal or toughened glass) 01/01/1988 31/12/2006 -70132959 01/01/1988 31/12/2006 LIBEN Drinking glasses, gathered by hand (excl. glasses cut or otherwise decorated, or of glass ceramics, lead crystal or toughened glass) 01/01/1988 31/12/2006 -70132991 01/01/1988 31/12/2006 LIBEN Drinking glasses, gathered mechanically, cut or otherwise decorated (excl. glasses of glass ceramics, lead crystal or toughened glass) 01/01/1988 31/12/2006 -70132999 01/01/1988 31/12/2006 LIBEN Drinking glasses, gathered mechanically (excl. glasses cut or otherwise decorated, or of glass ceramics, lead crystal or toughened glass) 01/01/1988 31/12/2006 -701331 01/01/1988 31/12/2006 LIBEN Glassware of lead crystal, of a kind used for table or kitchen purposes (excl. articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/1988 31/12/2006 -70133110 01/01/1988 31/12/2006 LIBEN Glassware of lead crystal, of a kind used for table or kitchen purposes, gathered by hand (excl. articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/1988 31/12/2006 -70133190 01/01/1988 31/12/2006 LIBEN Glassware of lead crystal, of a kind used for table or kitchen purposes, gathered mechanically (excl. articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/1988 31/12/2006 -701332 01/01/1988 31/12/2006 LIBEN Glassware for table or kitchen purposes of glass having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0°C to 300°C (excl. glassware of glass ceramics or lead crystal, articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/1988 31/12/2006 -70133200 01/01/1988 31/12/2006 LIBEN Glassware for table or kitchen purposes of glass having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0°C to 300°C (excl. glassware of glass ceramics or lead crystal, articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/1988 31/12/2006 -701333 01/01/2007 31/12/2500 LIBEN Drinking glasses of lead crystal (excl. stemware) 01/01/2007 31/12/2500 -70133311 01/01/2007 31/12/2500 LIBEN Drinking glasses of lead crystal, gathered by hand, cut or otherwise decorated (excl. stemware) 01/01/2007 31/12/2500 -70133319 01/01/2007 31/12/2500 LIBEN Drinking glasses of lead crystal, gathered by hand (excl. cut or otherwise decorated and stemware) 01/01/2007 31/12/2500 -70133391 01/01/2007 31/12/2500 LIBEN Drinking glasses of lead crystal, gathered mechanically, cut or otherwise decorated (excl. stemware) 01/01/2007 31/12/2500 -70133399 01/01/2007 31/12/2500 LIBEN Drinking glasses of lead crystal, gathered mechanically (excl. cut or otherwise decorated and stemware) 01/01/2007 31/12/2500 -701337 01/01/2007 31/12/2500 LIBEN Drinking glasses (excl. glasses of glass ceramics or of lead crystal and stemware) 01/01/2007 31/12/2500 -70133710 01/01/2007 31/12/2500 LIBEN Drinking glasses of toughened glass (excl. stemware) 01/01/2007 31/12/2500 -70133751 01/01/2007 31/12/2500 LIBEN Drinking glasses, gathered by hand, cut or otherwise decorated (excl. glasses of glass ceramics, lead crystal or toughened glass and stemware) 01/01/2007 31/12/2500 -70133759 01/01/2007 31/12/2500 LIBEN Drinking glasses, gathered by hand (excl. glasses cut or otherwise decorated, or of glass ceramics, lead crystal or toughened glass and stemware) 01/01/2007 31/12/2500 -70133791 01/01/2007 31/12/2500 LIBEN Drinking glasses, gathered mechanically, cut or otherwise decorated (excl. glasses of glass ceramics, lead crystal or toughened glass and stemware) 01/01/2007 31/12/2500 -70133799 01/01/2007 31/12/2500 LIBEN Drinking glasses, gathered mechanically (excl. glasses cut or otherwise decorated, or of glass ceramics, lead crystal or toughened glass and stemware) 01/01/2007 31/12/2500 -701339 01/01/1988 31/12/2006 LIBEN Glassware for table or kitchen purposes (excl. glass having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0°C to 300°C, glassware of glass ceramics or lead crystal, articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/1988 31/12/2006 -70133910 01/01/1988 31/12/2006 LIBEN Glassware for table or kitchen purposes, of toughened glass (excl. glass having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0 to 300°C, glassware of glass ceramics or lead crystal, articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/1988 31/12/2006 -70133991 01/01/1988 31/12/2006 LIBEN Glassware of a kind used for table or kitchen purposes, gathered by hand (excl. toughened glass and glass having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0 to 300°C, glassware of glass ceramics or lead crystal, articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/1988 31/12/2006 -70133999 01/01/1988 31/12/2006 LIBEN Glassware of a kind used for table or kitchen purposes, gathered mechanically (excl. toughened glass and glass having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0 to 300°C, glassware of glass ceramics or lead crystal, articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/1988 31/12/2006 -701341 01/01/2007 31/12/2500 LIBEN Glassware of lead crystal, of a kind used for table or kitchen purposes (excl. articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/2007 31/12/2500 -70134110 01/01/2007 31/12/2500 LIBEN Glassware of lead crystal, of a kind used for table or kitchen purposes, gathered by hand (excl. articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/2007 31/12/2500 -70134190 01/01/2007 31/12/2500 LIBEN Glassware of lead crystal, of a kind used for table or kitchen purposes, gathered mechanically (excl. articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/2007 31/12/2500 -701342 01/01/2007 31/12/2500 LIBEN Glassware for table or kitchen purposes of glass having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0°C to 300°C (excl. glassware of glass ceramics or lead crystal, articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/2007 31/12/2500 -70134200 01/01/2007 31/12/2500 LIBEN Glassware for table or kitchen purposes of glass having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0°C to 300°C (excl. glassware of glass ceramics or lead crystal, articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/2007 31/12/2500 -701349 01/01/2007 31/12/2500 LIBEN Glassware for table or kitchen purposes (excl. glass having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0°C to 300°C, glassware of glass ceramics or lead crystal, articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/2007 31/12/2500 -70134910 01/01/2007 31/12/2500 LIBEN Glassware for table or kitchen purposes, of toughened glass (excl. glass having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0 to 300°C, glassware of glass ceramics or lead crystal, articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/2007 31/12/2500 -70134991 01/01/2007 31/12/2500 LIBEN Glassware of a kind used for table or kitchen purposes, gathered by hand (excl. toughened glass and glass having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0 to 300°C, glassware of glass ceramics or lead crystal, articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/2007 31/12/2500 -70134999 01/01/2007 31/12/2500 LIBEN Glassware of a kind used for table or kitchen purposes, gathered mechanically (excl. toughened glass and glass having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0 to 300°C, glassware of glass ceramics or lead crystal, articles of heading 7018, drinking glasses, glass preserving jars "sterilising jars", vacuum flasks and other vacuum vessels) 01/01/2007 31/12/2500 -701391 01/01/1988 31/12/2500 LIBEN Glassware, of lead crystal, of a kind used for toilet, office, indoor decoration or similar purposes (excl. glassware of a kind used for table or kitchen purposes, glassware of glass ceramics or lead crystal, articles of heading 7018, mirrors, leaded lights and the like, lighting fittings and parts thereof, atomizers for perfume and the like) 01/01/1988 31/12/2500 -70139110 01/01/1988 31/12/2500 LIBEN Glassware of lead crystal, of a kind used for toilet, office, indoor decoration or similar purposes, gathered by hand (excl. glassware of a kind used for table or kitchen purposes, drinking glasses, articles of heading 7018, mirrors, leaded lights and the like, lighting fittings and parts thereof, atomizers for perfume and the like) 01/01/1988 31/12/2500 -70139190 01/01/1988 31/12/2500 LIBEN Glassware of lead crystal, of a kind used for toilet, office, indoor decoration or similar purposes, gathered mechanically (excl. glassware of a kind used for table or kitchen purposes, articles of heading 7018, mirrors, leaded lights and the like, lighting fittings and parts thereof, atomizers for perfume and the like) 01/01/1988 31/12/2500 -701399 01/01/1988 31/12/2500 LIBEN Glassware of a kind used for toilet, office, indoor decoration or similar purposes (excl. glassware of lead crystal or of a kind used for table or kitchen purposes, articles of heading 7018, mirrors, leaded lights and the like, lighting fittings and parts thereof, atomizers for perfume and the like) 01/01/1988 31/12/2500 -70139900 01/01/1998 31/12/2500 LIBEN Glassware of a kind used for toilet, office, indoor decoration or similar purposes (excl. glassware of lead crystal or of a kind used for table or kitchen purposes, articles of heading 7018, mirrors, leaded lights and the like, lighting fittings and parts thereof, atomizers for perfume and the like) 01/01/1998 31/12/2500 -70139910 01/01/1988 31/12/1997 LIBEN Glassware of a kind used for toilet, office, indoor decoration or similar purposes, gathered by hand (excl. glassware of lead crystal or of a kind used for table or kitchen purposes, articles of heading 7018, mirrors, leaded lights and the like, lighting fittings and parts thereof, atomizers for perfume and the like) 01/01/1988 31/12/1997 -70139990 01/01/1988 31/12/1997 LIBEN Glassware of a kind used for toilet, office, indoor decoration or similar purposes, gathered mechanically (excl. glassware of lead crystal or of a kind used for table or kitchen purposes, articles of heading 7018, mirrors, leaded lights and the like, lighting fittings and parts thereof, atomizers for perfume and the like) 01/01/1988 31/12/1997 -7014 01/01/1988 31/12/2500 LIBEN Signalling glassware and optical elements of glass, not optically worked (excl. clock or watch glasses, glasses for non-corrective or corrective spectacles, incl. hollow glass spheres and their segments, for the manufacture of such glasses, microspheres, loose, lighting fittings and parts thereof) 01/01/1988 31/12/2500 -701400 01/01/1988 31/12/2500 LIBEN Signalling glassware and optical elements of glass, not optically worked (excl. clock or watch glasses, glasses for non-corrective or corrective spectacles, incl. hollow glass spheres and their segments, for the manufacture of such glasses, microspheres, loose, lighting fittings and parts thereof) 01/01/1988 31/12/2500 -70140000 01/01/1988 31/12/2500 LIBEN Signalling glassware and optical elements of glass, not optically worked (excl. clock or watch glasses, glasses for non-corrective or corrective spectacles, incl. hollow glass spheres and their segments, for the manufacture of such glasses, microspheres, loose, lighting fittings and parts thereof) 01/01/1988 31/12/2500 -7015 01/01/1988 31/12/2500 LIBEN Clock or watch glasses and similar glasses, glasses for non-corrective or corrective spectacles, curved, bent, hollowed or the like, but not optically worked, hollow glass spheres and their segments, for the manufacture of such glasses (excl. flat glass for such purposes) 01/01/1988 31/12/2500 -701510 01/01/1988 31/12/2500 LIBEN Glasses for corrective spectacles, curved, bent, hollowed or the like, but not optically worked (excl. flat glass for such purposes) 01/01/1988 31/12/2500 -70151000 01/01/1988 31/12/2500 LIBEN Glasses for corrective spectacles, curved, bent, hollowed or the like, but not optically worked (excl. flat glass for such purposes) 01/01/1988 31/12/2500 -701590 01/01/1988 31/12/2500 LIBEN Clock or watch glasses and similar glasses, glasses for non-corrective spectacles, curved, bent, hollowed or the like, but not optically worked, hollow glass spheres and their segments, for the manufacture of such glasses incl. glasses for corrective spectacles (excl. flat glass for such purposes and glasses for corrective spectacles) 01/01/1988 31/12/2500 -70159000 01/01/1988 31/12/2500 LIBEN Clock or watch glasses and similar glasses, glasses for non-corrective spectacles, curved, bent, hollowed or the like, but not optically worked, hollow glass spheres and their segments, for the manufacture of such glasses incl. glasses for corrective spectacles (excl. flat glass for such purposes and glasses for corrective spectacles) 01/01/1988 31/12/2500 -7015S6 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 7015 and SITC section 6 01/01/1998 31/12/2500 -7015S664 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 7015 and SITC group 664 01/01/1998 31/12/2500 -7016 01/01/1988 31/12/2500 LIBEN Paving blocks, slabs, bricks, squares, tiles and other articles of pressed or moulded glass, whether or not wired, for building or construction purposes (excl. laminated safety glass and multiple-walled insulating units of glass); glass cubes and glass smallwares, whether or not on a backing, for mosaics or similar; leaded lights and similar; multicellular or foam glass in blocks, panels, plates, shells or like, n.e.s 01/01/1988 31/12/2500 -701610 01/01/1988 31/12/2500 LIBEN Glass cubes and other glass smallwares, whether or not on a backing, for mosaics or similar decorative purposes (excl. finished panels and other finished decorative motifs, made from glass cubes for mosaics) 01/01/1988 31/12/2500 -70161000 01/01/1988 31/12/2500 LIBEN Glass cubes and other glass smallwares, whether or not on a backing, for mosaics or similar decorative purposes (excl. finished panels and other finished decorative motifs, made from glass cubes for mosaics) 01/01/1988 31/12/2500 -701690 01/01/1988 31/12/2500 LIBEN Paving blocks, slabs, bricks, squares, tiles and other articles of pressed or moulded glass, whether or not wired, for building or construction purposes (excl. laminated safety glass and multiple-walled insulating units of glass); leaded lights and the like, multicellular or foam glass in blocks, panels, plates, shells or similar forms (excl. glass cubes and other glass smallwares for mosaics or similar decorative purposes) 01/01/1988 31/12/2500 -70169010 01/01/1988 31/12/2500 LIBEN Leaded lights and the like (excl. such articles > 100 years old) 01/01/1988 31/12/2500 -70169030 01/01/1988 31/12/1999 LIBEN Multicellular glass or foam glass in blocks, panels, plates, shells or similar form 01/01/1988 31/12/1999 -70169040 01/01/2009 31/12/2500 LIBEN Blocks and bricks, of a kind used for building or construction purposes 01/01/2009 31/12/2500 -70169070 01/01/2009 31/12/2500 LIBEN Slabs, squares, tiles and other articles of pressed or moulded glass, whether or not wired, of a kind used for building or construction purposes, and multicellular or foam glass in blocks, panels, plates, shells or similar forms (excl. laminated safety glass and multiple-walled insulating units of glass, and leaded lights and the like and blocks and bricks, of a kind used for building or construction purposes) 01/01/2009 31/12/2500 -70169080 01/01/2000 31/12/2008 LIBEN Paving blocks, slabs, bricks, squares, tiles and other articles of pressed or moulded glass, whether or not wired, of a kind used for building or construction purposes (excl. laminated safety glass and multiple-walled insulating units of glass, and leaded lights and the like) 01/01/2000 31/12/2008 -70169090 01/01/1988 31/12/1999 LIBEN Paving blocks, slabs, bricks, squares, tiles and other articles of pressed or moulded glass, whether or not wired, of a kind used for building or construction purposes (excl. laminated safety glass and multiple-walled insulating units of glass, leaded lights and the like, multicellular or foam glass in blocks, panels, plates, shells or similar forms) 01/01/1988 31/12/1999 -7017 01/01/1988 31/12/2500 LIBEN Laboratory, hygienic or pharmaceutical glassware, whether or not graduated or calibrated (excl. containers for the conveyance or packing of goods, measuring, checking or medical instruments and apparatus of chapter 90) 01/01/1988 31/12/2500 -701710 01/01/1988 31/12/2500 LIBEN Laboratory, hygienic or pharmaceutical glassware, whether or not graduated or calibrated, of fused quartz or other fused silica (excl. containers for the conveyance or packing of goods, measuring, checking or medical instruments and apparatus of chapter 90) 01/01/1988 31/12/2500 -70171000 01/01/1988 31/12/2500 LIBEN Laboratory, hygienic or pharmaceutical glassware, whether or not graduated or calibrated, of fused quartz or other fused silica (excl. containers for the conveyance or packing of goods, measuring, checking or medical instruments and apparatus of chapter 90) 01/01/1988 31/12/2500 -701720 01/01/1988 31/12/2500 LIBEN Laboratory, hygienic or pharmaceutical glassware, whether or not graduated or calibrated, having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0°C to 300°C (excl. glass of fused quartz or other fused silica, containers for the conveyance or packing of goods, measuring, checking or medical instruments and apparatus of chapter 90) 01/01/1988 31/12/2500 -70172000 01/01/1988 31/12/2500 LIBEN Laboratory, hygienic or pharmaceutical glassware, whether or not graduated or calibrated, having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0°C to 300°C (excl. glass of fused quartz or other fused silica, containers for the conveyance or packing of goods, measuring, checking or medical instruments and apparatus of chapter 90) 01/01/1988 31/12/2500 -701790 01/01/1988 31/12/2500 LIBEN Laboratory, hygienic or pharmaceutical glassware, whether or not graduated or calibrated (excl. glass having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0°C to 300°C or of fused quartz or other fused silica, containers for the conveyance or packing of goods, measuring, checking or medical instruments and apparatus of chapter 90) 01/01/1988 31/12/2500 -70179000 01/01/1988 31/12/2500 LIBEN Laboratory, hygienic or pharmaceutical glassware, whether or not graduated or calibrated (excl. glass having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0°C to 300°C or of fused quartz or other fused silica, containers for the conveyance or packing of goods, measuring, checking or medical instruments and apparatus of chapter 90) 01/01/1988 31/12/2500 -7018 01/01/1988 31/12/2500 LIBEN Glass beads, imitation pearls, imitation precious or semi-precious stones and similar glass smallwares, and articles thereof (excl. imitation jewellery); glass eyes (excl. prosthetic articles); statuettes and other ornaments of lamp-worked glass (excl. imitation jewellery); glass microspheres with a diameter of <= 1 mm 01/01/1988 31/12/2500 -701810 01/01/1988 31/12/2500 LIBEN Glass beads, imitation pearls, imitation precious or semi-precious stones and similar glass smallwares, and articles thereof (excl. imitation jewellery); glass eyes (excl. prosthetic articles); statuettes and other ornaments of lamp-worked glass (excl. imitation jewellery); glass microspheres with a diameter of <= 1 mm 01/01/1988 31/12/2500 -70181011 01/01/1988 31/12/2500 LIBEN Glass beads, cut and mechanically polished (excl. articles thereof) 01/01/1988 31/12/2500 -70181019 01/01/1988 31/12/2500 LIBEN Glass beads (excl. beads, cut and mechanically polished, and articles thereof) 01/01/1988 31/12/2500 -70181030 01/01/1988 31/12/2500 LIBEN Imitation pearls of glass (excl. articles thereof) 01/01/1988 31/12/2500 -70181051 01/01/1988 31/12/2500 LIBEN Imitation precious and semi-precious stones of glass, cut and mechanically polished (excl. articles thereof) 01/01/1988 31/12/2500 -70181059 01/01/1988 31/12/2500 LIBEN Imitation precious and semi-precious stones of glass (excl. beads, cut and mechanically polished, and articles thereof) 01/01/1988 31/12/2500 -70181090 01/01/1988 31/12/2500 LIBEN Imitation coral and similar glass smallwares (excl. articles thereof and imitation pearls, precious and semi-precious stones) 01/01/1988 31/12/2500 -701820 01/01/1988 31/12/2500 LIBEN Glass microspheres <= 1 mm in diameter 01/01/1988 31/12/2500 -70182000 01/01/1988 31/12/2500 LIBEN Glass microspheres <= 1 mm in diameter 01/01/1988 31/12/2500 -701890 01/01/1988 31/12/2500 LIBEN Glass eyes (excl. prosthetic articles); articles of glass beads, or of imitation pearls, imitation precious or semi-precious stones, statuettes and other ornaments of lamp-worked glass (excl. imitation jewellery) 01/01/1988 31/12/2500 -70189010 01/01/1988 31/12/2500 LIBEN Glass eyes, articles of glass beads, or of imitation pearls, imitation precious or semi-precious stones, or of other glass smallwares (excl. prosthetic articles and imitation jewellery) 01/01/1988 31/12/2500 -70189090 01/01/1988 31/12/2500 LIBEN Statuettes and other ornaments of lamp-worked glass (excl. imitation jewellery) 01/01/1988 31/12/2500 -7019 01/01/1988 31/12/2500 LIBEN Glass fibres, incl. glass wool, and articles thereof (excl. mineral wools and articles thereof, optical fibres, fibre bundles or cable, electrical insulators or parts thereof, brushes of glass fibres, dolls' wigs) 01/01/1988 31/12/2500 -701910 01/01/1988 31/12/1995 LIBEN Slivers, rovings, yarn and chopped strands, of glass fibres 01/01/1988 31/12/1995 -70191010 01/01/1988 31/12/1995 LIBEN Glass fibre threads, cut into lengths = 3 mm but <= 50 mm "chopped strands" 01/01/1988 31/12/1995 -70191051 01/01/1988 31/12/1995 LIBEN Rovings of glass fibres 01/01/1988 31/12/1995 -70191059 01/01/1988 31/12/1995 LIBEN Yarn of glass fibre filaments (excl. rovings) 01/01/1988 31/12/1995 -70191099 01/01/1988 31/12/1995 LIBEN Yarn of slivers 01/01/1988 31/12/1995 -701911 01/01/1996 31/12/2500 LIBEN Glass fibre threads "chopped strands", cut into lengths <= 50 mm 01/01/1996 31/12/2500 -70191100 01/01/1996 31/12/2500 LIBEN Glass fibre threads "chopped strands", cut into lengths <= 50 mm 01/01/1996 31/12/2500 -701912 01/01/1996 31/12/2500 LIBEN Rovings of glass fibres 01/01/1996 31/12/2500 -70191200 01/01/1996 31/12/2500 LIBEN Rovings of glass fibres 01/01/1996 31/12/2500 -701919 01/01/1996 31/12/2500 LIBEN Glass staple fibres, yarn of glass fibres and filaments (excl. yarn in chopped strands of a length of <= 50 mm, and rovings) 01/01/1996 31/12/2500 -70191910 01/01/1996 31/12/2500 LIBEN Slivers and yarn of glass filaments (excl. glass filaments in chopped strands of a length of <= 50 mm and rovings) 01/01/1996 31/12/2500 -70191990 01/01/1996 31/12/2500 LIBEN Slivers and yarn of glass staple fibres 01/01/1996 31/12/2500 -701920 01/01/1988 31/12/1995 LIBEN Woven fabrics, incl. narrow fabrics, of glass fibres 01/01/1988 31/12/1995 -70192011 01/01/1988 31/12/1995 LIBEN Woven fabrics of glass filaments made from rovings 01/01/1988 31/12/1995 -70192031 01/01/1988 31/12/1995 LIBEN Woven fabrics, incl. narrow fabrics, of glass filaments, of a width <= 30 cm (excl. rovings of glass fibres 01/01/1988 31/12/1995 -70192035 01/01/1988 31/12/1991 LIBEN Woven fabrics, including narrow fabrics, of glass filaments, of a width > 30 cm (excl. rovings of glass fibres 01/01/1988 31/12/1991 -70192036 01/01/1992 31/12/1995 LIBEN Woven fabrics, incl. narrow fabrics, of glass filaments, of width of > 30 cm, plain weave, weighing < 250 g/m2, made of yarn measuring per single yarn <= 136 tex (excl. fabrics made from rovings) 01/01/1992 31/12/1995 -70192039 01/01/1992 31/12/1995 LIBEN Woven fabrics, incl. narrow fabrics, of glass filaments, of width of > 30 cm (excl. plain weave, weighing < 250 g/m2, made of yarn measuring per single yarn <= 136 tex, and fabrics made from rovings) 01/01/1992 31/12/1995 -70192090 01/01/1988 31/12/1995 LIBEN Woven fabrics, incl. narrow fabrics, of glass staple fibres 01/01/1988 31/12/1995 -701931 01/01/1988 31/12/2500 LIBEN Mats of irregularly laminated glass fibres 01/01/1988 31/12/2500 -70193100 01/01/1988 31/12/2011 LIBEN Mats of irregularly laminated glass fibres 01/01/1988 31/12/2011 -70193100 01/01/2014 31/12/2500 LIBEN Mats of irregularly laminated glass fibres 01/01/2014 31/12/2500 -70193110 01/01/2012 31/12/2013 LIBEN Mats of irregularly laminated glass fibres, of filaments 01/01/2012 31/12/2013 -70193190 01/01/2012 31/12/2013 LIBEN Mats of irregularly laminated glass fibres (excl. of filaments) 01/01/2012 31/12/2013 -701932 01/01/1988 31/12/2500 LIBEN Thin sheets "voiles" of irregularly laminated glass fibres 01/01/1988 31/12/2500 -70193200 01/01/1988 31/12/2011 LIBEN Thin sheets "voiles" of irregularly laminated glass fibres 01/01/1988 31/12/2011 -70193200 01/01/2014 31/12/2500 LIBEN Thin sheets "voiles" of irregularly laminated glass fibres 01/01/2014 31/12/2500 -70193210 01/01/2012 31/12/2013 LIBEN Thin sheets "voiles" of irregularly laminated glass fibres, of filaments 01/01/2012 31/12/2013 -70193290 01/01/2012 31/12/2013 LIBEN Thin sheets "voiles" of irregularly laminated glass fibres (excl. of filaments) 01/01/2012 31/12/2013 -701939 01/01/1988 31/12/2500 LIBEN Webs, mattresses, boards and similar nonwoven products, of glass fibres (excl. mats and thin sheets "voiles") 01/01/1988 31/12/2500 -70193900 01/01/1988 31/12/1993 LIBEN Mattresses and boards and similar nonwoven products, of glass fibres (excl. mats and thin sheets 'voiles') 01/01/1988 31/12/1993 -70193900 01/01/2000 31/12/2500 LIBEN Webs, mattresses, boards and similar nonwoven products, of glass fibres (excl. mats and thin sheets "voiles") 01/01/2000 31/12/2500 -70193910 01/01/1994 31/12/1999 LIBEN Webs, mattresses, boards and similar nonwoven products, of glass fibres, covered with paper or metal (excl. mats and thin sheets "voiles") 01/01/1994 31/12/1999 -70193990 01/01/1994 31/12/1999 LIBEN Webs, mattresses, boards and similar nonwoven products, of glass fibres (excl. mats and thin sheets "voiles" and such articles covered with paper or metal) 01/01/1994 31/12/1999 -701940 01/01/1996 31/12/2500 LIBEN Woven fabrics of glass fibres made from rovings 01/01/1996 31/12/2500 -70194000 01/01/1996 31/12/2500 LIBEN Woven fabrics of glass fibres made from rovings 01/01/1996 31/12/2500 -701951 01/01/1996 31/12/2500 LIBEN Woven fabrics, incl. narrow fabrics, of glass, of a width of <= 30 cm (excl. rovings) 01/01/1996 31/12/2500 -70195100 01/01/1998 31/12/2500 LIBEN Woven fabrics, incl. narrow fabrics, of glass, of a width of <= 30 cm (excl. rovings) 01/01/1998 31/12/2500 -70195110 01/01/1996 31/12/1997 LIBEN Woven fabrics, incl. narrow fabrics, of glass filaments, of a width of <= 30 cm (excl. rovings of glass fibres) 01/01/1996 31/12/1997 -70195190 01/01/1996 31/12/1997 LIBEN Woven fabrics, incl. narrow fabrics, of glass staple fibres, of a width of <= 30 cm 01/01/1996 31/12/1997 -701952 01/01/1996 31/12/2500 LIBEN Woven fabrics, incl. narrow fabrics, of glass filaments, of width of > 30 cm, plain weave, weighing < 250 g/m², made of yarn of a linear density of <= 136 tex per single yarn (excl. fabrics made from rovings) 01/01/1996 31/12/2500 -70195200 01/01/1996 31/12/2500 LIBEN Woven fabrics, incl. narrow fabrics, of glass filaments, of width of > 30 cm, plain weave, weighing < 250 g/m², made of yarn of a linear density of <= 136 tex per single yarn (excl. fabrics made from rovings) 01/01/1996 31/12/2500 -701959 01/01/1996 31/12/2500 LIBEN Woven fabrics, incl. narrow fabrics, of glass fibres, of a width of > 30 cm (excl. plain weave, weighing < 250 g/m², of a linear density of <= 136 tex per single yarn, and fabrics made from rovings) 01/01/1996 31/12/2500 -70195900 01/01/1998 31/12/2500 LIBEN Woven fabrics, incl. narrow fabrics, of glass fibres, of a width of > 30 cm (excl. plain weave, weighing < 250 g/m², of a linear density of <= 136 tex per single yarn, and fabrics made from rovings) 01/01/1998 31/12/2500 -70195910 01/01/1996 31/12/1997 LIBEN Woven fabrics, incl. narrow fabrics, of glass fibre filaments, of width of > 30 cm (excl. plain weave, weighing < 250 g/m², of a linear density of <= 136 tex, and fabrics made from rovings) 01/01/1996 31/12/1997 -70195990 01/01/1996 31/12/1997 LIBEN Woven fabrics, incl. narrow fabrics, of glass staple fibres, of a width of > 30 cm (excl. plain weave, weighing < 250 g/m², of a linear density of <= 136 tex) 01/01/1996 31/12/1997 -701990 01/01/1988 31/12/2500 LIBEN Glass fibres, incl. glass wool, and articles thereof (excl. staple fibres, rovings, yarn, chopped strands, woven fabrics, incl. narrow fabrics, thin sheets "voiles", webs, mats, mattresses and boards and similar nonwoven products, mineral wool and articles thereof, electrical insulators or parts thereof, optical fibres, fibre bundles or cable, brushes of glass fibres, and dolls' wigs) 01/01/1988 31/12/2500 -70199000 01/01/2012 31/12/2500 LIBEN Glass fibres, incl. glass wool, and articles thereof (excl. staple fibres, rovings, yarn, chopped strands, woven fabrics, incl. narrow fabrics, thin sheets "voiles", webs, mats, mattresses and boards and similar nonwoven products, mineral wool and articles thereof, electrical insulators or parts thereof, optical fibres, fibre bundles or cable, brushes of glass fibres, and dolls' wigs) 01/01/2012 31/12/2500 -70199010 01/01/1988 31/12/2011 LIBEN Glass fibres in bulk or flocks (excl. textile glass fibres and mineral wool) 01/01/1988 31/12/2011 -70199030 01/01/1988 31/12/2011 LIBEN Pads and casings for insulating tubes and pipes, of glass fibres 01/01/1988 31/12/2011 -70199091 01/01/1988 31/12/2011 LIBEN Articles of textile glass fibres (excl. yarn, woven fabrics, incl. narrow fabrics, thin sheets "voiles", webs, mats, mattresses and boards and similar nonwoven products, pads and casings for insulating tubes and pipes, brushes of glass fibres, and dolls' wigs) 01/01/1988 31/12/2011 -70199099 01/01/1988 31/12/2011 LIBEN Articles of non-textile glass fibres (excl. electrical insulators or parts thereof, optical fibre bundles or cable, brushes of glass fibres, lighting cables and the like) 01/01/1988 31/12/2011 -7019S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7019 and SITC section 6 01/01/1997 31/12/2500 -7019S664 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7019 and SITC group 664 01/01/1997 31/12/2500 -7020 01/01/1988 31/12/2500 LIBEN Articles of glass, n.e.s. 01/01/1988 31/12/2500 -702000 01/01/1988 31/12/2500 LIBEN Articles of glass, n.e.s. 01/01/1988 31/12/2500 -70200005 01/01/1998 31/12/2500 LIBEN Quartz reactor tubes and holders designed for insertion into diffusion and oxidation furnaces for production of semiconductor materials 01/01/1998 31/12/2500 -70200007 01/01/2007 31/12/2500 LIBEN Unfinished glass inners, for vacuum flasks or for other vacuum vessels, unfinished 01/01/2007 31/12/2500 -70200008 01/01/2007 31/12/2500 LIBEN Finished glass inners, for vacuum flasks or for other vacuum vessels, finished 01/01/2007 31/12/2500 -70200010 01/01/1988 31/12/2500 LIBEN Glassware of fused quartz or other fused silica, n.e.s. 01/01/1988 31/12/2500 -70200030 01/01/1988 31/12/2500 LIBEN Articles of glass having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0°C to 300°C, n.e.s. (excl. glassware of fused quartz or other fused silica) 01/01/1988 31/12/2500 -70200080 01/01/1998 31/12/2500 LIBEN Articles of glass, n.e.s. 01/01/1998 31/12/2500 -70200090 01/01/1988 31/12/1997 LIBEN Articles of glass, n.e.s. (excl. articles of glass having a linear coefficient of expansion <= 5 x 10 -6 per kelvin within a temperature range of 0°C to 300°C or glassware of fused quartz or other fused silica) 01/01/1988 31/12/1997 -70CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 70 01/01/2002 31/12/2500 -70CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 70 01/01/2002 31/12/2500 -70CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 70 01/01/2002 31/12/2500 -70II 01/01/1988 31/12/2500 LIBEN Components of complete industrial plants of chapter 70 01/01/1988 31/12/2500 -70III0 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -70III0 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 70 01/01/2006 31/12/2500 -70III000 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -70III000 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 70 01/01/2006 31/12/2500 -70III1 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -70III100 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -70III2 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -70III200 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -70III3 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -70III300 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -70III4 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -70III400 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -70III5 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; food, drink and tobacco industry 01/01/1988 31/12/1992 -70III500 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; food, drink and tobacco industry 01/01/1988 31/12/1992 -70III6 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -70III600 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -70III7 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -70III700 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -70III8 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/1992 -70III800 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 70; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/1992 -70III9 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 70; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -70III900 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 70; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -70MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -70MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -70MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -70SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 70 01/01/1988 31/12/2500 -70SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 70 and SITC section 0 01/01/1997 31/12/2001 -70SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 70 and SITC group 000 01/01/1997 31/12/2001 -70SSS6 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 70 and SITC section 6 01/01/1988 31/12/2500 -70SSS651 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 70 and SITC group 651 01/01/1997 31/12/2500 -70SSS654 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 70 and SITC group 654 01/01/1997 31/12/2500 -70SSS664 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 70 and SITC group 664 01/01/1988 31/12/2500 -70SSS665 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 70 and SITC group 665 01/01/1990 31/12/2500 -70SSS9 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 70 and SITC section 9 01/01/1988 31/12/2500 -70SSS999 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 70 and SITC group 999 01/01/1988 31/12/2500 -70VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 70 for the assembly of motor vehicles 01/01/1988 31/12/2500 -70VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 70 for the assembly of motor vehicles 01/01/1988 31/12/2500 -70VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 70 for the assembly of motor vehicles 01/01/1988 31/12/2500 -71 01/01/1988 31/12/2500 LIBEN NATURAL OR CULTURED PEARLS, PRECIOUS OR SEMI-PRECIOUS STONES, PRECIOUS METALS, METALS CLAD WITH PRECIOUS METAL, AND ARTICLES THEREOF; IMITATION JEWELLERY; COIN 01/01/1988 31/12/2500 -7101 01/01/1988 31/12/2500 LIBEN Pearls, natural or cultured, whether or not worked or graded, but not strung, mounted or set, pearls, natural or cultured, temporarily strung for convenience of transport (excl. imitations of natural pearls and mother-of-pearl) 01/01/1988 31/12/2500 -710110 01/01/1988 31/12/2500 LIBEN Pearls, natural, whether or not worked or graded, but not strung, mounted or set, natural pearls, temporarily strung for convenience of transport (excl. mother-of-pearl) 01/01/1988 31/12/2500 -71011000 01/01/1988 31/12/1995 LIBEN Pearls, natural, whether or not worked or graded, but not strung, mounted or set, ungraded natural pearls, temporarily strung for convenience of transport (excl. mother-of-pearl) 01/01/1988 31/12/1995 -71011000 01/01/1996 31/12/2500 LIBEN Pearls, natural, whether or not worked or graded, but not strung, mounted or set, natural pearls, temporarily strung for convenience of transport (excl. mother-of-pearl) 01/01/1996 31/12/2500 -710121 01/01/1988 31/12/2500 LIBEN Cultured pearls, unworked, whether or not graded 01/01/1988 31/12/2500 -71012100 01/01/1988 31/12/1995 LIBEN Cultured pearls, unworked, whether or not graded 01/01/1988 31/12/1995 -71012100 01/01/1996 31/12/2500 LIBEN Cultured pearls, unworked, whether or not graded 01/01/1996 31/12/2500 -710122 01/01/1988 31/12/2500 LIBEN Cultured pearls, worked, whether or not graded, but not strung, mounted or set, worked cultured pearls, temporarily strung for convenience of transport 01/01/1988 31/12/2500 -71012200 01/01/1988 31/12/1995 LIBEN Cultured pearls, worked, whether or not graded, but not strung, mounted or set, worked cultured pearls, ungraded, temporarily strung for convenience of transport 01/01/1988 31/12/1995 -71012200 01/01/1996 31/12/2500 LIBEN Cultured pearls, worked, whether or not graded, but not strung, mounted or set, worked cultured pearls, temporarily strung for convenience of transport 01/01/1996 31/12/2500 -7102 01/01/1988 31/12/2500 LIBEN Diamonds, whether or not worked, but not mounted or set (excl. unmounted stones for pick-up styluses, worked stones, suitable for use as parts of meters, measuring instruments or other articles of chapter 90) 01/01/1988 31/12/2500 -710210 01/01/1988 31/12/2500 LIBEN Diamonds, unsorted 01/01/1988 31/12/2500 -71021000 01/01/1988 31/12/2500 LIBEN Diamonds, unsorted 01/01/1988 31/12/2500 -710221 01/01/1988 31/12/2500 LIBEN Industrial diamonds unworked or simply sawn, cleaved or bruted 01/01/1988 31/12/2500 -71022100 01/01/1988 31/12/2500 LIBEN Industrial diamonds unworked or simply sawn, cleaved or bruted 01/01/1988 31/12/2500 -710229 01/01/1988 31/12/2500 LIBEN Industrial diamonds, worked, but not mounted or set (excl. unmounted stones for pick-up styluses, stones suitable for use as parts of meters, measuring instruments or other articles of chapter 90) 01/01/1988 31/12/2500 -71022900 01/01/1988 31/12/2500 LIBEN Industrial diamonds, worked, but not mounted or set (excl. unmounted stones for pick-up styluses, stones suitable for use as parts of meters, measuring instruments or other articles of chapter 90) 01/01/1988 31/12/2500 -710231 01/01/1988 31/12/2500 LIBEN Non-industrial diamonds unworked or simply sawn, cleaved or bruted (excl. industrial diamonds) 01/01/1988 31/12/2500 -71023100 01/01/1988 31/12/2500 LIBEN Non-industrial diamonds unworked or simply sawn, cleaved or bruted (excl. industrial diamonds) 01/01/1988 31/12/2500 -710239 01/01/1988 31/12/2500 LIBEN Diamonds, worked, but not mounted or set (excl. industrial diamonds) 01/01/1988 31/12/2500 -71023900 01/01/1988 31/12/2500 LIBEN Diamonds, worked, but not mounted or set (excl. industrial diamonds) 01/01/1988 31/12/2500 -7103 01/01/1988 31/12/2500 LIBEN Precious stones and semi-precious stones, whether or not worked or graded, but not strung, mounted or set, ungraded precious stones and semi-precious stones, temporarily strung for convenience of transport (excl. diamonds and imitation precious stones and semi-precious stones) 01/01/1988 31/12/2500 -710310 01/01/1988 31/12/2500 LIBEN Precious stones and semi-precious stones, unworked or simply sawn or roughly shaped, whether or not graded (excl. diamonds and imitation precious stones and semi-precious stones) 01/01/1988 31/12/2500 -71031000 01/01/1988 31/12/2500 LIBEN Precious stones and semi-precious stones, unworked or simply sawn or roughly shaped, whether or not graded (excl. diamonds and imitation precious stones and semi-precious stones) 01/01/1988 31/12/2500 -710391 01/01/1988 31/12/2500 LIBEN Rubies, sapphires and emeralds, worked, whether or not graded, but not strung, mounted or set, rubies, sapphires and emeralds, worked, ungraded, temporarily strung for convenience of transport (excl. rubies, sapphires and emeralds, simply sawn or roughly shaped, imitation precious stones and semi-precious stones) 01/01/1988 31/12/2500 -71039100 01/01/1988 31/12/2500 LIBEN Rubies, sapphires and emeralds, worked, whether or not graded, but not strung, mounted or set, rubies, sapphires and emeralds, worked, ungraded, temporarily strung for convenience of transport (excl. rubies, sapphires and emeralds, simply sawn or roughly shaped, imitation precious stones and semi-precious stones) 01/01/1988 31/12/2500 -710399 01/01/1988 31/12/2500 LIBEN Precious and semi-precious stones, worked, whether or not graded, but not strung, mounted or set, precious and semi-precious stones, worked, ungraded, temporarily strung for convenience of transport (excl. precious and semi-precious stones, simply sawn or roughly shaped, diamonds, rubies, sapphires and emeralds, imitation precious stones and semi-precious stones) 01/01/1988 31/12/2500 -71039900 01/01/1988 31/12/2500 LIBEN Precious and semi-precious stones, worked, whether or not graded, but not strung, mounted or set, precious and semi-precious stones, worked, ungraded, temporarily strung for convenience of transport (excl. precious and semi-precious stones, simply sawn or roughly shaped, diamonds, rubies, sapphires and emeralds, imitation precious stones and semi-precious stones) 01/01/1988 31/12/2500 -7104 01/01/1988 31/12/2500 LIBEN Precious and semi-precious stones, synthetic or reconstructed, whether or not worked or graded but not strung, mounted or set; ungraded synthetic or reconstructed precious or semi-precious stones, temporarily strung for convenience of transport 01/01/1988 31/12/2500 -710410 01/01/1988 31/12/2500 LIBEN Quartz, piezoelectric, of synthetic or reconstructed stone whether or not worked or graded, but not mounted or set 01/01/1988 31/12/2500 -71041000 01/01/1988 31/12/2500 LIBEN Quartz, piezoelectric, of synthetic or reconstructed stone whether or not worked or graded, but not mounted or set 01/01/1988 31/12/2500 -710420 01/01/1988 31/12/2500 LIBEN Precious and semi-precious stones, synthetic or reconstructed, unworked or simply sawn or roughly shaped, whether or not graded (excl. piezoelectric quartz) 01/01/1988 31/12/2500 -71042000 01/01/1988 31/12/2019 LIBEN Precious and semi-precious stones, synthetic or reconstructed, unworked or simply sawn or roughly shaped, whether or not graded (excl. piezoelectric quartz) 01/01/1988 31/12/2019 -71042010 01/01/2020 31/12/2500 LIBEN Diamonds, synthetic or reconstructed, unworked or simply sawn or roughly shaped 01/01/2020 31/12/2500 -71042090 01/01/2020 31/12/2500 LIBEN Precious and semi-precious stones, synthetic or reconstructed, unworked or simply sawn or roughly shaped, whether or not graded (excl. piezoelectric quartz and diamonds) 01/01/2020 31/12/2500 -710490 01/01/1988 31/12/2500 LIBEN Precious and semi-precious stones, synthetic or reconstructed, worked, whether or not graded but not strung, mounted or set, ungraded synthetic or reconstructed precious or semi-precious stones, temporarily strung for convenience of transport (excl. stones simply sawn or roughly shaped, piezoelectric quartz) 01/01/1988 31/12/2500 -71049000 01/01/1988 31/12/2019 LIBEN Precious and semi-precious stones, synthetic or reconstructed, worked, whether or not graded but not strung, mounted or set, ungraded synthetic or reconstructed precious or semi-precious stones, temporarily strung for convenience of transport (excl. stones simply sawn or roughly shaped, piezoelectric quartz) 01/01/1988 31/12/2019 -71049010 01/01/2020 31/12/2500 LIBEN Diamonds, synthetic or reconstructed, worked, whether or not graded but not strung, mounted or set, ungraded diamonds, temporarily strung for convenience of transport (excl. diamonds simply sawn or roughly shaped) 01/01/2020 31/12/2500 -71049090 01/01/2020 31/12/2500 LIBEN Precious and semi-precious stones, synthetic or reconstructed, worked, whether or not graded but not strung, mounted or set, ungraded synthetic or reconstructed precious or semi-precious stones, temporarily strung for convenience of transport (excl. stones simply sawn or roughly shaped, piezoelectric quartz and diamonds) 01/01/2020 31/12/2500 -7105 01/01/1988 31/12/2500 LIBEN Dust and powder of natural or synthetic precious or semi-precious stones 01/01/1988 31/12/2500 -710510 01/01/1988 31/12/2500 LIBEN Dust and powder of diamonds, incl. synthetic diamonds 01/01/1988 31/12/2500 -71051000 01/01/1988 31/12/2500 LIBEN Dust and powder of diamonds, incl. synthetic diamonds 01/01/1988 31/12/2500 -710590 01/01/1988 31/12/2500 LIBEN Dust and powder of natural or synthetic precious or semi-precious stones (excl. dust and powder of diamonds) 01/01/1988 31/12/2500 -71059000 01/01/1988 31/12/2500 LIBEN Dust and powder of natural or synthetic precious or semi-precious stones (excl. dust and powder of diamonds) 01/01/1988 31/12/2500 -7106 01/01/1988 31/12/2500 LIBEN Silver, incl. silver plated with gold or platinum, unwrought or in semi-manufactured forms, or in powder form 01/01/1988 31/12/2500 -710610 01/01/1988 31/12/2500 LIBEN Powder of silver, incl. silver plated with gold or platinum 01/01/1988 31/12/2500 -71061000 01/01/1988 31/12/2500 LIBEN Powder of silver, incl. silver plated with gold or platinum 01/01/1988 31/12/2500 -710691 01/01/1988 31/12/2500 LIBEN Silver, incl. silver plated with gold or platinum, unwrought (excl. silver in powder form) 01/01/1988 31/12/2500 -71069100 01/01/2011 31/12/2500 LIBEN Silver, incl. silver plated with gold or platinum, unwrought (excl. silver in powder form) 01/01/2011 31/12/2500 -71069110 01/01/1988 31/12/2010 LIBEN Silver, incl. silver plated with gold or platinum, unwrought, of a fineness of >= 999 ‰ (excl. silver in powder form) 01/01/1988 31/12/2010 -71069190 01/01/1988 31/12/2010 LIBEN Silver, incl. silver plated with gold or platinum, unwrought, of a fineness of < 999 ‰ (excl. silver in powder form) 01/01/1988 31/12/2010 -710692 01/01/1988 31/12/2500 LIBEN Silver, incl. silver plated with gold or platinum, semi-manufactured 01/01/1988 31/12/2500 -71069200 01/01/2011 31/12/2500 LIBEN Silver, incl. silver plated with gold or platinum, semi-manufactured 01/01/2011 31/12/2500 -71069210 01/01/1988 31/12/1999 LIBEN Silver, incl. silver plated with gold or platinum, in the form of purls, spangles and cuttings 01/01/1988 31/12/1999 -71069220 01/01/2000 31/12/2010 LIBEN Semi-manufactured silver, incl. silver plated with gold or platinum, of a fineness of >= 750 ‰ 01/01/2000 31/12/2010 -71069280 01/01/2000 31/12/2010 LIBEN Semi-manufactured silver, incl. silver plated with gold or platinum, of a fineness of < 750 ‰ 01/01/2000 31/12/2010 -71069291 01/01/1988 31/12/1999 LIBEN Semi-manufactured silver, incl. silver plated with gold or platinum, of a fineness of >= 750 parts per 1.000 (excl. purls, spangles and cuttings) 01/01/1988 31/12/1999 -71069299 01/01/1988 31/12/1999 LIBEN Semi-manufactured silver, incl. silver plated with gold or platinum, of a fineness of >= 750 parts per 1.000 (excl. purls, spangles and cuttings) 01/01/1988 31/12/1999 -7107 01/01/1988 31/12/2500 LIBEN Base metals clad with silver, not further worked than semi-manufactured 01/01/1988 31/12/2500 -710700 01/01/1988 31/12/2500 LIBEN Base metals clad with silver, not further worked than semi-manufactured 01/01/1988 31/12/2500 -71070000 01/01/1988 31/12/2500 LIBEN Base metals clad with silver, not further worked than semi-manufactured 01/01/1988 31/12/2500 -7108 01/01/1988 31/12/2500 LIBEN Gold, incl. gold plated with platinum, unwrought or not further worked than semi-manufactured or in powder form 01/01/1988 31/12/2500 -710811 01/01/1988 31/12/2500 LIBEN Gold, incl. gold plated with platinum, for non-monetary purposes 01/01/1988 31/12/2500 -71081100 01/01/1988 31/12/2500 LIBEN Gold, incl. gold plated with platinum, for non-monetary purposes 01/01/1988 31/12/2500 -710812 01/01/1988 31/12/2500 LIBEN Gold, incl. gold plated with platinum, unwrought, for non-monetary purposes (excl. gold in powder form) 01/01/1988 31/12/2500 -71081200 01/01/1988 31/12/2500 LIBEN Gold, incl. gold plated with platinum, unwrought, for non-monetary purposes (excl. gold in powder form) 01/01/1988 31/12/2500 -710813 01/01/1988 31/12/2500 LIBEN Gold, incl. gold plated with platinum, in semi-manufactured forms, for non-monetary purposes 01/01/1988 31/12/2500 -71081310 01/01/1988 31/12/2500 LIBEN Bars, rods, wire and sections, plates, sheets and strips of a thickness, excl. any backing, of > 0,15 mm, of gold, incl. gold plated with platinum 01/01/1988 31/12/2500 -71081330 01/01/1988 31/12/1999 LIBEN Tubes, pipes and hollow bars, of gold, incl. gold plated with platinum 01/01/1988 31/12/1999 -71081350 01/01/1988 31/12/1999 LIBEN Bars, rods, wire and sections, plates, sheets and strips of a thickness, excl. any backing, of > 0,15 mm, of gold, incl. gold plated with platinum 01/01/1988 31/12/1999 -71081380 01/01/2000 31/12/2500 LIBEN Gold, incl. gold plated with platinum, in semi-manufactured forms, for non-monetary purposes (excl. sheets and strips of a thickness, excl. any backing, of > 0,15 mm and plates, bars, rods, wire and sections) 01/01/2000 31/12/2500 -71081390 01/01/1988 31/12/1999 LIBEN Gold, incl. gold plated with platinum, in semi-manufactured forms, for non-monetary purposes (excl. thin sheets and strips "foil", tubes, pipes and hollow bars, bars, rods, wire and sections) 01/01/1988 31/12/1999 -710820 01/01/1993 31/12/2500 LIBEN Monetary gold 01/01/1993 31/12/2500 -71082000 01/01/1993 31/12/2500 LIBEN Monetary gold 01/01/1993 31/12/2500 -7109 01/01/1988 31/12/2500 LIBEN Base metals or silver, clad with gold, not further worked than semi-manufactured 01/01/1988 31/12/2500 -710900 01/01/1988 31/12/2500 LIBEN Base metals or silver, clad with gold, not further worked than semi-manufactured 01/01/1988 31/12/2500 -71090000 01/01/1988 31/12/2500 LIBEN Base metals or silver, clad with gold, not further worked than semi-manufactured 01/01/1988 31/12/2500 -7110 01/01/1988 31/12/2500 LIBEN Platinum, incl. palladium, rhodium, iridium, osmium and ruthenium, unwrought or in semi-manufactured forms, or in powder form 01/01/1988 31/12/2500 -711011 01/01/1988 31/12/2500 LIBEN Platinum, unwrought or in powder form 01/01/1988 31/12/2500 -71101100 01/01/1988 31/12/2500 LIBEN Platinum, unwrought or in powder form 01/01/1988 31/12/2500 -711019 01/01/1988 31/12/2500 LIBEN Platinum, in semi-manufactured forms 01/01/1988 31/12/2500 -71101910 01/01/1988 31/12/2500 LIBEN Bars, rods, wire and sections; plates; sheets and strips of a thickness, excl. any backing, of > 0,15 mm, of platinum 01/01/1988 31/12/2500 -71101930 01/01/1988 31/12/1999 LIBEN Tubes, pipes and hollow bars, of platinum 01/01/1988 31/12/1999 -71101950 01/01/1988 31/12/1999 LIBEN Thin sheets and strips "foil" of a thickness, excl. any backing, of <= 0,15 mm, of platinum 01/01/1988 31/12/1999 -71101980 01/01/2000 31/12/2500 LIBEN Platinum in semi-manufactured forms (excl. sheets and strips of a thickness, excl. any backing, of > 0,15 mm and plates, bars, rods, wire and sections) 01/01/2000 31/12/2500 -71101990 01/01/1988 31/12/1999 LIBEN Platinum in semi-manufactured forms (excl. thin sheets and strips "foil", tubes, pipes and hollow bars, bars, rods, wire and sections) 01/01/1988 31/12/1999 -711021 01/01/1988 31/12/2500 LIBEN Palladium, unwrought or in powder form 01/01/1988 31/12/2500 -71102100 01/01/1988 31/12/2500 LIBEN Palladium, unwrought or in powder form 01/01/1988 31/12/2500 -711029 01/01/1988 31/12/2500 LIBEN Palladium in semi-manufactured forms 01/01/1988 31/12/2500 -71102900 01/01/1988 31/12/2500 LIBEN Palladium in semi-manufactured forms 01/01/1988 31/12/2500 -711031 01/01/1988 31/12/2500 LIBEN Rhodium, unwrought or in powder form 01/01/1988 31/12/2500 -71103100 01/01/1988 31/12/2500 LIBEN Rhodium, unwrought or in powder form 01/01/1988 31/12/2500 -711039 01/01/1988 31/12/2500 LIBEN Rhodium in semi-manufactured forms 01/01/1988 31/12/2500 -71103900 01/01/1988 31/12/2500 LIBEN Rhodium in semi-manufactured forms 01/01/1988 31/12/2500 -711041 01/01/1988 31/12/2500 LIBEN Iridium, osmium and ruthenium, unwrought or in powder form 01/01/1988 31/12/2500 -71104100 01/01/1988 31/12/2500 LIBEN Iridium, osmium and ruthenium, unwrought or in powder form 01/01/1988 31/12/2500 -711049 01/01/1988 31/12/2500 LIBEN Iridium, osmium and ruthenium, in semi-manufactured forms 01/01/1988 31/12/2500 -71104900 01/01/1988 31/12/2500 LIBEN Iridium, osmium and ruthenium, in semi-manufactured forms 01/01/1988 31/12/2500 -7111 01/01/1988 31/12/2500 LIBEN Base metals, silver or gold, clad with platinum, not further worked than semi-manufactured 01/01/1988 31/12/2500 -711100 01/01/1988 31/12/2500 LIBEN Base metals, silver or gold, clad with platinum, not further worked than semi-manufactured 01/01/1988 31/12/2500 -71110000 01/01/1988 31/12/2500 LIBEN Base metals, silver or gold, clad with platinum, not further worked than semi-manufactured 01/01/1988 31/12/2500 -7112 01/01/1988 31/12/2500 LIBEN Waste and scrap of precious metal or of metal clad with precious metal; other waste and scrap containing precious metal or precious-metal compounds, of a kind used principally for the recovery of precious metal (excl. waste and scrap melted down into unworked blocks, ingots, or similar forms) 01/01/1988 31/12/2500 -711210 01/01/1988 31/12/2001 LIBEN Waste and scrap of gold, incl. metal clad with gold, and other waste and scrap containing gold or gold compounds, of a kind used principally for the recovery of precious metal (excl. waste melted down into unworked blocks, ingots, or similar forms, and sweepings and ash containing precious metals) 01/01/1988 31/12/2001 -71121000 01/01/1988 31/12/1995 LIBEN Waste and scrap of gold, incl. metal clad with gold (excl. waste melted down into unworked blocks, ingots, or similar forms, sweepings containing other precious metals) 01/01/1988 31/12/1995 -71121000 01/01/1996 31/12/2001 LIBEN Waste and scrap of gold, incl. metal clad with gold, and other waste and scrap containing gold or gold compounds, of a kind used principally for the recovery of precious metal (excl. waste melted down into unworked blocks, ingots, or similar forms, and sweepings and ash containing precious metals) 01/01/1996 31/12/2001 -711220 01/01/1988 31/12/2001 LIBEN Waste and scrap of platinum, incl. metal clad with platinum, and other waste and scrap containing platinum or platinum compounds, of a kind used principally for the recovery of precious metal (excl. waste melted down into unworked blocks, ingots, or similar forms, and sweepings and ash containing other precious metals) 01/01/1988 31/12/2001 -71122000 01/01/1988 31/12/1995 LIBEN Waste and scrap of platinum, incl. metal clad with platinum (excl. waste melted down into unworked blocks, ingots, or similar forms, other precious metals containing ashes and residues or dross) 01/01/1988 31/12/1995 -71122000 01/01/1996 31/12/2001 LIBEN Waste and scrap of platinum, incl. metal clad with platinum, and other waste and scrap containing platinum or platinum compounds, of a kind used principally for the recovery of precious metal (excl. waste melted down into unworked blocks, ingots, or similar forms, and sweepings and ash containing other precious metals) 01/01/1996 31/12/2001 -711230 01/01/2002 31/12/2500 LIBEN Ash containing precious metal or precious-metal compounds 01/01/2002 31/12/2500 -71123000 01/01/2002 31/12/2500 LIBEN Ash containing precious metal or precious-metal compounds 01/01/2002 31/12/2500 -711290 01/01/1988 31/12/2001 LIBEN Waste and scrap of silver, incl. metal clad with silver, and ash and sweepings containing several precious metals; other waste and scrap containing silver or silver compounds, of a kind used principally for the recovery of precious metal (excl. waste melted down into unworked blocks, ingots, or similar forms and sweepings containing precious metals) 01/01/1988 31/12/2001 -71129000 01/01/1988 31/12/1995 LIBEN Waste and scrap of precious metal or metal clad with precious metal (excl. waste and scrap of gold or platinum, melted down into unworked blocks, ingots, or similar forms, sweepings containing other precious metals) 01/01/1988 31/12/1995 -71129000 01/01/1996 31/12/2001 LIBEN Waste and scrap of silver, incl. metal clad with silver, and ash and sweepings containing several precious metals; other waste and scrap containing silver or silver compounds, of a kind used principally for the recovery of precious metal (excl. waste melted down into unworked blocks, ingots, or similar forms and sweepings containing precious metals) 01/01/1996 31/12/2001 -711291 01/01/2002 31/12/2500 LIBEN Waste and scrap of gold, incl. metal clad with gold, and other waste and scrap containing gold or gold compounds, of a kind used principally for the recovery of precious metal (excl. ash containing gold or gold compounds, waste and scrap of gold melted down into unworked blocks, ingots, or similar forms, and sweepings and ash containing precious metals) 01/01/2002 31/12/2500 -71129100 01/01/2002 31/12/2500 LIBEN Waste and scrap of gold, incl. metal clad with gold, and other waste and scrap containing gold or gold compounds, of a kind used principally for the recovery of precious metal (excl. ash containing gold or gold compounds, waste and scrap of gold melted down into unworked blocks, ingots, or similar forms, and sweepings and ash containing precious metals) 01/01/2002 31/12/2500 -711292 01/01/2002 31/12/2500 LIBEN Waste and scrap of platinum, incl. metal clad with platinum, and other waste and scrap containing platinum or platinum compounds, of a kind used principally for the recovery of precious metal (excl. ash containing platinum or platinum compounds, waste and scrap of platinum melted down into unworked blocks, ingots, or similar forms, and sweepings and ash containing precious metals) 01/01/2002 31/12/2500 -71129200 01/01/2002 31/12/2500 LIBEN Waste and scrap of platinum, incl. metal clad with platinum, and other waste and scrap containing platinum or platinum compounds, of a kind used principally for the recovery of precious metal (excl. ash containing platinum or platinum compounds, waste and scrap of platinum melted down into unworked blocks, ingots, or similar forms, and sweepings and ash containing precious metals) 01/01/2002 31/12/2500 -711299 01/01/2002 31/12/2500 LIBEN Waste and scrap of silver, incl. metal clad with silver, and other waste and scrap containing silver or silver compounds, of a kind used principally for the recovery of precious metal (excl. ash, and waste and scrap of precious metals melted down into unworked blocks, ingots or similar forms) 01/01/2002 31/12/2500 -71129900 01/01/2002 31/12/2500 LIBEN Waste and scrap of silver, incl. metal clad with silver, and other waste and scrap containing silver or silver compounds, of a kind used principally for the recovery of precious metal (excl. ash, and waste and scrap of precious metals melted down into unworked blocks, ingots or similar forms) 01/01/2002 31/12/2500 -7113 01/01/1988 31/12/2500 LIBEN Articles of jewellery and parts thereof, of precious metal or of metal clad with precious metal (excl. articles > 100 years old) 01/01/1988 31/12/2500 -711311 01/01/1988 31/12/2500 LIBEN Articles of jewellery and parts thereof, of silver, whether or not plated or clad with other precious metal (excl. articles > 100 years old) 01/01/1988 31/12/2500 -71131100 01/01/1988 31/12/2500 LIBEN Articles of jewellery and parts thereof, of silver, whether or not plated or clad with other precious metal (excl. articles > 100 years old) 01/01/1988 31/12/2500 -711319 01/01/1988 31/12/2500 LIBEN Articles of jewellery and parts thereof, of precious metal other than silver, whether or not plated or clad with precious metal (excl. articles > 100 years old) 01/01/1988 31/12/2500 -71131900 01/01/1988 31/12/2500 LIBEN Articles of jewellery and parts thereof, of precious metal other than silver, whether or not plated or clad with precious metal (excl. articles > 100 years old) 01/01/1988 31/12/2500 -711320 01/01/1988 31/12/2500 LIBEN Articles of jewellery and parts thereof, of base metal clad with precious metal (excl. articles > 100 years old) 01/01/1988 31/12/2500 -71132000 01/01/1988 31/12/2500 LIBEN Articles of jewellery and parts thereof, of base metal clad with precious metal (excl. articles > 100 years old) 01/01/1988 31/12/2500 -7114 01/01/1988 31/12/2500 LIBEN Articles of goldsmiths' or silversmiths' wares and parts thereof, of precious metal or of metal clad with precious metal (excl. jewellery, clocks, watches and parts thereof, musical instruments, arms, perfume atomizers and their atomizing heads, original sculptures, collectors' pieces and antiques) 01/01/1988 31/12/2500 -711411 01/01/1988 31/12/2500 LIBEN Articles of goldsmiths' or silversmiths' wares or parts thereof, of silver, whether or not plated or clad with other precious metal (excl. jewellery, watch-and clockmakers' wares, musical instruments, weapons, perfume atomizers and heads for these, original sculptures or statuary, collectors' pieces and antiques) 01/01/1988 31/12/2500 -71141100 01/01/1988 31/12/2500 LIBEN Articles of goldsmiths' or silversmiths' wares or parts thereof, of silver, whether or not plated or clad with other precious metal (excl. jewellery, watch-and clockmakers' wares, musical instruments, weapons, perfume atomizers and heads for these, original sculptures or statuary, collectors' pieces and antiques) 01/01/1988 31/12/2500 -711419 01/01/1988 31/12/2500 LIBEN Articles of goldsmiths' or silversmiths' wares or parts thereof, of precious metal other than silver, whether or not plated or clad with precious metal (excl. jewellery, watch- and clockmakers' wares, musical instruments, weapons, perfume atomizers and heads for these, original sculptures or statuary, collectors' pieces and antiques) 01/01/1988 31/12/2500 -71141900 01/01/1988 31/12/2500 LIBEN Articles of goldsmiths' or silversmiths' wares or parts thereof, of precious metal other than silver, whether or not plated or clad with precious metal (excl. jewellery, watch- and clockmakers' wares, musical instruments, weapons, perfume atomizers and heads for these, original sculptures or statuary, collectors' pieces and antiques) 01/01/1988 31/12/2500 -711420 01/01/1988 31/12/2500 LIBEN Articles of goldsmiths' or silversmiths' wares and parts thereof, of base metal clad with precious metal (excl. jewellery, watch-and clockmakers' wares, musical instruments, weapons, perfume atomizers and heads for these, original sculptures or statuary, collectors' pieces and antiques) 01/01/1988 31/12/2500 -71142000 01/01/1988 31/12/2500 LIBEN Articles of goldsmiths' or silversmiths' wares and parts thereof, of base metal clad with precious metal (excl. jewellery, watch-and clockmakers' wares, musical instruments, weapons, perfume atomizers and heads for these, original sculptures or statuary, collectors' pieces and antiques) 01/01/1988 31/12/2500 -7115 01/01/1988 31/12/2500 LIBEN Articles of precious metal or of metal clad with precious metal, n.e.s. 01/01/1988 31/12/2500 -711510 01/01/1988 31/12/2500 LIBEN Catalysts in the form of wire cloth or grill, of platinum 01/01/1988 31/12/2500 -71151000 01/01/1988 31/12/2500 LIBEN Catalysts in the form of wire cloth or grill, of platinum 01/01/1988 31/12/2500 -711590 01/01/1988 31/12/2500 LIBEN Articles of precious metal or of metal clad with precious metal, n.e.s. 01/01/1988 31/12/2500 -71159000 01/01/2011 31/12/2500 LIBEN Articles of precious metal or of metal clad with precious metal, n.e.s. 01/01/2011 31/12/2500 -71159010 01/01/1988 31/12/2010 LIBEN Articles of precious metal, n.e.s. 01/01/1988 31/12/2010 -71159090 01/01/1988 31/12/2010 LIBEN Articles of metal clad with precious metal, n.e.s. 01/01/1988 31/12/2010 -7116 01/01/1988 31/12/2500 LIBEN Articles of natural or cultured pearls, precious or semi-precious stones "natural, synthetic or reconstructed", n.e.s. 01/01/1988 31/12/2500 -711610 01/01/1988 31/12/2500 LIBEN Articles of natural or cultured pearls, n.e.s. 01/01/1988 31/12/2500 -71161000 01/01/1988 31/12/1995 LIBEN Articles of natural or cultured pearls, n.e.s. 01/01/1988 31/12/1995 -71161000 01/01/1996 31/12/2500 LIBEN Articles of natural or cultured pearls, n.e.s. 01/01/1996 31/12/2500 -711620 01/01/1988 31/12/2500 LIBEN Articles of precious or semi-precious stones "natural, synthetic or reconstructed", n.e.s. 01/01/1988 31/12/2500 -71162011 01/01/1988 31/12/2500 LIBEN Necklaces, bracelets and other articles, wholly of natural precious or semi-precious stones, simply strung, without fasteners or other accessories 01/01/1988 31/12/2500 -71162019 01/01/1988 31/12/2010 LIBEN Articles made wholly of natural precious or semi-precious stones, n.e.s. 01/01/1988 31/12/2010 -71162080 01/01/2011 31/12/2500 LIBEN Articles of precious or semi-precious stones (natural, synthetic or reconstructed), n.e.s. 01/01/2011 31/12/2500 -71162090 01/01/1988 31/12/2010 LIBEN Articles of precious or semi-precious stones "natural, synthetic or reconstructed", n.e.s. (excl. made wholly of natural precious or semi-precious stones) 01/01/1988 31/12/2010 -7117 01/01/1988 31/12/2500 LIBEN Imitation jewellery 01/01/1988 31/12/2500 -711711 01/01/1988 31/12/2500 LIBEN Cuff links and studs, of base metal, whether or not clad with silver, gold or platinum 01/01/1988 31/12/2500 -71171100 01/01/1988 31/12/2500 LIBEN Cuff links and studs, of base metal, whether or not clad with silver, gold or platinum 01/01/1988 31/12/2500 -711719 01/01/1988 31/12/2500 LIBEN Imitation jewellery, of base metal, whether or not plated with precious metal (excl. cuff links and studs) 01/01/1988 31/12/2500 -71171900 01/01/2011 31/12/2500 LIBEN Imitation jewellery, of base metal, whether or not plated with precious metal (excl. cuff links and studs) 01/01/2011 31/12/2500 -71171910 01/01/1988 31/12/2010 LIBEN Imitation jewellery, of base metal, whether or not clad with silver, gold or platinum, with parts of glass (excl. cuff links and studs) 01/01/1988 31/12/2010 -71171991 01/01/1988 31/12/2010 LIBEN Imitation jewellery, of base metal, whether or not clad with silver, gold or platinum (excl. jewellery with parts of glass, cuff links and studs) 01/01/1988 31/12/2010 -71171999 01/01/1988 31/12/2010 LIBEN Imitation jewellery, of base metal (excl. jewellery clad with silver, gold or platinum, or with parts of glass, cuff links and studs) 01/01/1988 31/12/2010 -711790 01/01/1988 31/12/2500 LIBEN Imitation jewellery (excl. jewellery, of base metal, whether or not clad with silver, gold or platinum) 01/01/1988 31/12/2500 -71179000 01/01/1988 31/12/2500 LIBEN Imitation jewellery (excl. jewellery, of base metal, whether or not clad with silver, gold or platinum) 01/01/1988 31/12/2500 -7118 01/01/1988 31/12/2500 LIBEN Coin, incl. legal tender (excl. medals, jewellery made from coins, collectors' items of numismatic value, waste and scrap) 01/01/1988 31/12/2500 -711810 01/01/1988 31/12/2500 LIBEN Coin (excl. legal tender, gold coins, medals, jewellery made from coins, collectors' items of numismatic value, waste and scrap) 01/01/1988 31/12/2500 -71181000 01/01/2011 31/12/2500 LIBEN Coin (excl. legal tender, gold coins, medals, jewellery made from coins, collectors' items of numismatic value, waste and scrap) 01/01/2011 31/12/2500 -71181010 01/01/1988 31/12/2010 LIBEN Silver coin (excl. coin being legal tender, medals, jewellery of coins, collectors' coins, waste and scrap) 01/01/1988 31/12/2010 -71181090 01/01/1988 31/12/2010 LIBEN Coin (excl. coin being legal tender, gold and silver coin, medals, jewellery of coins, collectors' coins, waste and scrap) 01/01/1988 31/12/2010 -711890 01/01/1988 31/12/2500 LIBEN Coin of legal tender 01/01/1988 31/12/2500 -71189000 01/01/1991 31/12/2500 LIBEN Coin of legal tender 01/01/1991 31/12/2500 -71189010 01/01/1988 31/12/1990 LIBEN Gold coin, including coin being legal tender (excl. medals, jewellery of coins, collectors' coins, waste and scrap) 01/01/1988 31/12/1990 -71189090 01/01/1988 31/12/1990 LIBEN Coin except gold, including coin being legal tender (excl. medals, jewellery of coins, collectors' coins, waste and scrap) 01/01/1988 31/12/1990 -71CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 71 01/01/2002 31/12/2500 -71CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 71 01/01/2002 31/12/2500 -71CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 71 01/01/2002 31/12/2500 -71MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -71MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -71MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -71PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 71 carried by post 01/01/1988 31/12/2500 -71PPP1 01/01/1988 31/12/2500 LIBEN Goods of chapter 71 carried by post 01/01/1988 31/12/2500 -71PPP100 01/01/1988 31/12/2500 LIBEN Goods of chapter 71 carried by post 01/01/1988 31/12/2500 -71PPP4 01/01/1988 31/12/2500 LIBEN Goods of chapter 71 carried by post 01/01/1988 31/12/2500 -71PPP400 01/01/1988 31/12/2500 LIBEN Goods of chapter 71 carried by post 01/01/1988 31/12/2500 -71SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 71 01/01/1988 31/12/2500 -71SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 71 and SITC section 0 01/01/1997 31/12/2001 -71SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 71 and SITC group 000 01/01/1997 31/12/2001 -71SSS2 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 71 and SITC section 2 01/01/1990 31/12/2500 -71SSS277 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 71 and SITC group 277 01/01/1990 31/12/2500 -71SSS289 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 71 and SITC group 289 01/01/1997 31/12/2500 -71SSS6 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 71 and SITC section 6 01/01/1990 31/12/2500 -71SSS667 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 71 and SITC group 667 01/01/1990 31/12/2500 -71SSS681 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 71 and SITC group 681 01/01/1997 31/12/2500 -71SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 71 and SITC section 8 01/01/1997 31/12/2500 -71SSS897 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 71 and SITC group 897 01/01/1997 31/12/2500 -71SSS9 01/01/1988 31/12/1992 LIBEN Confidential trade of chapter 71 and SITC section 9 01/01/1988 31/12/1992 -71SSS9 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 71 and SITC section 9 01/01/1993 31/12/2500 -71SSS961 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 71 and SITC group 961 01/01/1993 31/12/2500 -71SSS971 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 71 and SITC group 971 01/01/1993 31/12/2500 -71SSS972 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 71 and SITC group 972 01/01/1997 31/12/2500 -71SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 71 and SITC group 999 01/01/1988 31/12/1996 -71SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 71 and SITC group 999 01/01/1997 31/12/2500 -72 01/01/1988 31/12/2500 LIBEN IRON AND STEEL 01/01/1988 31/12/2500 -7201 01/01/1988 31/12/2500 LIBEN Pig iron and spiegeleisen, in pigs, blocks or other primary forms 01/01/1988 31/12/2500 -720110 01/01/1988 31/12/2500 LIBEN Non-alloy pig iron in pigs, blocks or other primary forms, containing, by weight, <= 0,5% of phosphorous 01/01/1988 31/12/2500 -72011011 01/01/1988 31/12/2500 LIBEN Non-alloy pig iron in pigs, blocks or other primary forms, containing by weight <= 0,5% phosphorus, >= 0,4% manganese and <= 1% silicon 01/01/1988 31/12/2500 -72011019 01/01/1988 31/12/2500 LIBEN Non-alloy pig iron in pigs, blocks or other primary forms, containing by weight <= 0,5% phosphorus, >= 0,4% manganese and > 1% silicon 01/01/1988 31/12/2500 -72011030 01/01/1988 31/12/2500 LIBEN Non-alloy pig iron in pigs, blocks or other primary forms, containing by weight <= 0,5% phosphorus, and >= 0,1% but < 0,4% manganese 01/01/1988 31/12/2500 -72011090 01/01/1988 31/12/2500 LIBEN Non-alloy pig iron in pigs, blocks or other primary forms, containing by weight <= 0,5% phosphorus, and <= 0,1% manganese 01/01/1988 31/12/2500 -720120 01/01/1988 31/12/2500 LIBEN Non-alloy pig iron in pigs, blocks or other primary forms, containing by weight >= 0,5% phosphorus 01/01/1988 31/12/2500 -72012000 01/01/1988 31/12/2500 LIBEN Non-alloy pig iron in pigs, blocks or other primary forms, containing by weight >= 0,5% phosphorus 01/01/1988 31/12/2500 -720130 01/01/1988 31/12/1995 LIBEN Alloy pig iron in pigs, blocks or other primary forms 01/01/1988 31/12/1995 -72013010 01/01/1988 31/12/1995 LIBEN Pig iron in pigs, blocks or other primary forms, alloy, containing by weight >= 0,3% but <= 1% titanium and >= 0,5% but <= 1% vanadium "ECSC" 01/01/1988 31/12/1995 -72013090 01/01/1988 31/12/1995 LIBEN Pig iron in pigs, blocks or other primary forms, alloy, "ECSC" (excl. iron containing by weight >= 0,3% but <= 1% titanium and >= 0,5% but <= 1% vanadium) 01/01/1988 31/12/1995 -720140 01/01/1988 31/12/1995 LIBEN Spiegeleisen, in pigs, blocks or other primary forms "ECSC" 01/01/1988 31/12/1995 -72014000 01/01/1988 31/12/1995 LIBEN Spiegeleisen, in pigs, blocks or other primary forms "ECSC" 01/01/1988 31/12/1995 -720150 01/01/1996 31/12/2500 LIBEN Alloy pig iron and spiegeleisen, in pigs, blocks or other primary forms 01/01/1996 31/12/2500 -72015010 01/01/1996 31/12/2500 LIBEN Alloy pig iron in pigs, blocks or other primary forms, containing by weight >= 0,3% but <= 1% titanium and >= 0,5% but <= 1% vanadium 01/01/1996 31/12/2500 -72015090 01/01/1996 31/12/2500 LIBEN Alloy pig iron and spiegeleisen, in pigs, blocks or other primary forms (excl. alloy iron containing, by weight, >= 0,3% but <= 1% titanium and >= 0,5% but <= 1% vanadium) 01/01/1996 31/12/2500 -7202 01/01/1988 31/12/2500 LIBEN Ferro-alloys 01/01/1988 31/12/2500 -720211 01/01/1988 31/12/2500 LIBEN Ferro-manganese, containing by weight > 2% of carbon 01/01/1988 31/12/2500 -72021110 01/01/1988 31/12/1989 LIBEN Ferro-manganese, containing by weight > 2 % carbon, with a granulometry of =< 10 mm and containing by weight > 65 % manganese 'ecsc' 01/01/1988 31/12/1989 -72021120 01/01/1990 31/12/2500 LIBEN Ferro-manganese, containing by weight > 2% carbon, with a granulometry <= 5 mm and a manganese content by weight > 65% 01/01/1990 31/12/2500 -72021180 01/01/1990 31/12/2500 LIBEN Ferro-manganese, containing by weight > 2% carbon (excl. ferro-manganese with a granulometry of <= 5 mm and containing by weight > 65% manganese) 01/01/1990 31/12/2500 -72021190 01/01/1988 31/12/1989 LIBEN Ferro-manganese, containing by weight > 2 % carbon, (excl. 7202.11-10) 01/01/1988 31/12/1989 -720219 01/01/1988 31/12/2500 LIBEN Ferro-manganese, containing by weight <= 2% carbon 01/01/1988 31/12/2500 -72021900 01/01/1988 31/12/2500 LIBEN Ferro-manganese, containing by weight <= 2% carbon 01/01/1988 31/12/2500 -720221 01/01/1988 31/12/2500 LIBEN Ferro-silicon, containing by weight > 55% of silicon 01/01/1988 31/12/2500 -72022100 01/01/2004 31/12/2500 LIBEN Ferro-silicon, containing by weight > 55% of silicon 01/01/2004 31/12/2500 -72022110 01/01/1988 31/12/2003 LIBEN Ferro-silicon, containing by weight > 55% but <= 80% silicon 01/01/1988 31/12/2003 -72022190 01/01/1988 31/12/2003 LIBEN Ferro-silicon, containing by weight > 80% silicon 01/01/1988 31/12/2003 -720229 01/01/1988 31/12/2500 LIBEN Ferro-silicon, containing by weight <= 55% silicon 01/01/1988 31/12/2500 -72022900 01/01/1988 31/12/1996 LIBEN Ferro-silicon, containing by weight <= 55% silicon 01/01/1988 31/12/1996 -72022910 01/01/1997 31/12/2500 LIBEN Ferro-silicon, containing by weight <= 55% silicon and >= 4% but <= 10% of magnesium 01/01/1997 31/12/2500 -72022990 01/01/1997 31/12/2500 LIBEN Ferro-silicon, containing by weight <= 55% silicon (excl. that containing by weight >= 4% but <= 10% of magnesium) 01/01/1997 31/12/2500 -720230 01/01/1988 31/12/2500 LIBEN Ferro-silico-manganese 01/01/1988 31/12/2500 -72023000 01/01/1988 31/12/2500 LIBEN Ferro-silico-manganese 01/01/1988 31/12/2500 -720241 01/01/1988 31/12/2500 LIBEN Ferro-chromium, containing by weight > 4% of carbon 01/01/1988 31/12/2500 -72024110 01/01/1988 31/12/2500 LIBEN Ferro-chromium, containing by weight > 4% but <= 6% carbon 01/01/1988 31/12/2500 -72024190 01/01/1988 31/12/1993 LIBEN Ferro-chromium, containing by weight > 6 % carbon 01/01/1988 31/12/1993 -72024190 01/01/2004 31/12/2500 LIBEN Ferro-chromium, containing by weight > 6% carbon 01/01/2004 31/12/2500 -72024191 01/01/1994 31/12/2003 LIBEN Ferro-chromium, containing by weight > 6% carbon and <= 60% chromium 01/01/1994 31/12/2003 -72024199 01/01/1994 31/12/2003 LIBEN Ferro-chromium, containing by weight > 6% carbon and > 60% chromium 01/01/1994 31/12/2003 -720249 01/01/1988 31/12/2500 LIBEN Ferro-chromium, containing by weight <= 4% of carbon 01/01/1988 31/12/2500 -72024910 01/01/1988 31/12/2500 LIBEN Ferro-chromium, containing by weight <= 0,05% carbon 01/01/1988 31/12/2500 -72024950 01/01/1988 31/12/2500 LIBEN Ferro-chromium, containing by weight > 0,05% but <= 0,5% carbon 01/01/1988 31/12/2500 -72024990 01/01/1988 31/12/2500 LIBEN Ferro-chromium, containing by weight > 0,5% but <= 4% carbon 01/01/1988 31/12/2500 -720250 01/01/1988 31/12/2500 LIBEN Ferro-silico-chromium 01/01/1988 31/12/2500 -72025000 01/01/1988 31/12/2500 LIBEN Ferro-silico-chromium 01/01/1988 31/12/2500 -720260 01/01/1988 31/12/2500 LIBEN Ferro-nickel 01/01/1988 31/12/2500 -72026000 01/01/1988 31/12/2500 LIBEN Ferro-nickel 01/01/1988 31/12/2500 -720270 01/01/1988 31/12/2500 LIBEN Ferro-molybdenum 01/01/1988 31/12/2500 -72027000 01/01/1988 31/12/2500 LIBEN Ferro-molybdenum 01/01/1988 31/12/2500 -720280 01/01/1988 31/12/2500 LIBEN Ferro-tungsten and ferro-silico-tungsten 01/01/1988 31/12/2500 -72028000 01/01/1988 31/12/2500 LIBEN Ferro-tungsten and ferro-silico-tungsten 01/01/1988 31/12/2500 -720291 01/01/1988 31/12/2500 LIBEN Ferro-titanium and ferro-silico-titanium 01/01/1988 31/12/2500 -72029100 01/01/1988 31/12/2500 LIBEN Ferro-titanium and ferro-silico-titanium 01/01/1988 31/12/2500 -720292 01/01/1988 31/12/2500 LIBEN Ferro-vanadium 01/01/1988 31/12/2500 -72029200 01/01/1988 31/12/2500 LIBEN Ferro-vanadium 01/01/1988 31/12/2500 -720293 01/01/1988 31/12/2500 LIBEN Ferro-niobium 01/01/1988 31/12/2500 -72029300 01/01/1988 31/12/2500 LIBEN Ferro-niobium 01/01/1988 31/12/2500 -720299 01/01/1988 31/12/2500 LIBEN Ferro-alloys (excl. ferro-manganese, ferro-silicon, ferro-silico-manganese, ferro-chromium, ferro-silico-chromium, ferro-nickel, ferro-molybdenum, ferro-tungsten, ferro-silico-tungsten, ferro-titanium, ferro-silico-titanium, ferro-vanadium and ferro-niobium) 01/01/1988 31/12/2500 -72029910 01/01/2004 31/12/2500 LIBEN Ferro-phosphorus 01/01/2004 31/12/2500 -72029911 01/01/1988 31/12/2003 LIBEN Ferro-phophorus, containing by weight > 3% but < 15% phosphorus 01/01/1988 31/12/2003 -72029919 01/01/1988 31/12/2003 LIBEN Ferro-phophorus, containing by weight >= 15% phosphorus 01/01/1988 31/12/2003 -72029930 01/01/1991 31/12/2500 LIBEN Ferro-silico-magnesium 01/01/1991 31/12/2500 -72029980 01/01/1991 31/12/2500 LIBEN Ferro-alloys (excl. ferro-manganese, ferro-silicon, ferro-silico-manganese, ferro-chromium, ferro-silico-chromium, ferro-nickel, ferro-molybdenum, ferro-tungsten, ferro-silico-tungsten, ferro-titanium, ferro-silico-titanium, ferro-vanadium, ferro-niobium, ferro-phosphorus and ferro-silico-magnesium) 01/01/1991 31/12/2500 -72029990 01/01/1988 31/12/1990 LIBEN Ferro-alloys (excl. ferro-manganese, ferro-silicon, ferro-silicon manganese, ferro-chromium, ferro-silico-chromium, ferro-nickel, ferro-molybdenum, ferro-tungsten, ferro-titanium, ferro-silico-titanium, ferro-vanadium, ferro-niobium and ferro-phophorus) 01/01/1988 31/12/1990 -7202I2 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of heading 7202; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/2000 31/12/2005 -7202I200 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of heading 7202; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/2000 31/12/2005 -7203 01/01/1988 31/12/2500 LIBEN Ferrous products obtained by direct reduction of iron ore and other spongy ferrous products, in lumps, pellets or similar forms; iron having a minimum purity by weight of 99,94%, in lumps, pellets or similar forms 01/01/1988 31/12/2500 -720310 01/01/1988 31/12/2500 LIBEN Ferrous products obtained by direct reduction of iron ore, in lumps, pellets or similar forms 01/01/1988 31/12/2500 -72031000 01/01/1988 31/12/2500 LIBEN Ferrous products obtained by direct reduction of iron ore, in lumps, pellets or similar forms 01/01/1988 31/12/2500 -720390 01/01/1988 31/12/2500 LIBEN Spongy ferrous products, obtained from molten pig iron by atomisation, iron of a purity of >= 99,94%, in lumps, pellets or similar forms 01/01/1988 31/12/2500 -72039000 01/01/1988 31/12/2500 LIBEN Spongy ferrous products, obtained from molten pig iron by atomisation, iron of a purity of >= 99,94%, in lumps, pellets or similar forms 01/01/1988 31/12/2500 -7204 01/01/1988 31/12/2500 LIBEN Ferrous waste and scrap; remelting scrap ingots of iron or steel (excl. slag, scale and other waste from the production of iron or steel; radioactive waste and scrap; fragments of pigs, blocks or other primary forms of pig iron or spiegeleisen) 01/01/1988 31/12/2500 -720410 01/01/1988 31/12/2500 LIBEN Waste and scrap, of cast iron (excl. radioactive) 01/01/1988 31/12/2500 -72041000 01/01/1988 31/12/2500 LIBEN Waste and scrap, of cast iron (excl. radioactive) 01/01/1988 31/12/2500 -720421 01/01/1988 31/12/2500 LIBEN Waste and scrap of stainless steel (excl. radioactive, and waste and scrap of batteries and electric accumulators) 01/01/1988 31/12/2500 -72042100 01/01/1988 31/12/1994 LIBEN Waste and scrap, of stainless steel 'ecsc' (excl. radioactive waste and scrap) 01/01/1988 31/12/1994 -72042110 01/01/1995 31/12/1995 LIBEN Waste and scrap, of stainless steel (ECSC), containing >= 8% nickel (other than radioactive) 01/01/1995 31/12/1995 -72042110 01/01/1996 31/12/2500 LIBEN Waste and scrap of stainless steel, containing by weight >= 8% nickel (excl. radioactive, and waste and scrap from batteries and electric accumulators) 01/01/1996 31/12/2500 -72042190 01/01/1995 31/12/1995 LIBEN Waste and scrap, of stainless steel (ECSC) (not containing >= 8% of nickel or radioactive) 01/01/1995 31/12/1995 -72042190 01/01/1996 31/12/2500 LIBEN Waste and scrap of stainless steel (not containing >= 8% nickel, radioactive, or waste and scrap from batteries and electric accumulators) 01/01/1996 31/12/2500 -720429 01/01/1988 31/12/2500 LIBEN Waste and scrap of alloy steel (excl. stainless steel, and waste and scrap, radioactive, or waste and scrap from batteries and electric accumulators) 01/01/1988 31/12/2500 -72042900 01/01/1988 31/12/1995 LIBEN Waste and scrap, of alloy steel "ECSC" (excl. stainless steel, and waste and scrap, radioactive) 01/01/1988 31/12/1995 -72042900 01/01/1996 31/12/2500 LIBEN Waste and scrap of alloy steel (excl. stainless steel, and waste and scrap, radioactive, or waste and scrap from batteries and electric accumulators) 01/01/1996 31/12/2500 -720430 01/01/1988 31/12/2500 LIBEN Waste and scrap of tinned iron or steel (excl. radioactive, and waste and scrap of batteries and electric accumulators) 01/01/1988 31/12/2500 -72043000 01/01/1988 31/12/1995 LIBEN Waste and scrap of tinned iron or steel "ECSC" (excl. radioactive waste and scrap) 01/01/1988 31/12/1995 -72043000 01/01/1996 31/12/2500 LIBEN Waste and scrap of tinned iron or steel (excl. radioactive, and waste and scrap of batteries and electric accumulators) 01/01/1996 31/12/2500 -720441 01/01/1988 31/12/2500 LIBEN Turnings, shavings, chips, milling waste, sawdust, filings, trimmings and stampings of iron or steel, whether or not in bundles (excl. those of cast iron, alloy steel or tinned iron or steel) 01/01/1988 31/12/2500 -72044110 01/01/1988 31/12/2500 LIBEN Turnings, shavings, chips, milling waste, sawdust and filings, of iron or steel, whether or not in bundles (excl. such items of cast iron, alloy steel or tinned iron or steel) 01/01/1988 31/12/2500 -72044191 01/01/1988 31/12/2500 LIBEN Trimmings and stampings, of iron or steel, in bundles (excl. such items of cast iron, alloy steel or tinned iron or steel) 01/01/1988 31/12/2500 -72044199 01/01/1988 31/12/2500 LIBEN Trimmings and stampings, of iron or steel, not in bundles (excl. such items of cast iron, alloy steel or tinned iron or steel) 01/01/1988 31/12/2500 -720449 01/01/1988 31/12/2500 LIBEN Waste and scrap of iron or steel (excl. slag, scale and other waste of the production of iron and steel; radioactive waste and scrap; fragments of pigs, blocks or other primary forms of pig iron or spiegeleisen; waste and scrap of cast iron, alloy steel or tinned iron or steel; turnings, shavings, chips, milling waste, sawdust, filings, trimmings and stampings; waste and scrap of primary cells, primary batteries and electric accumulators) 01/01/1988 31/12/2500 -72044910 01/01/1988 31/12/2500 LIBEN Waste and scrap of iron or steel, fragmentised "shredded" (excl. slag, scale and other waste of the production of iron and steel; radioactive waste and scrap; fragments of pigs, blocks or other primary forms of pig iron or spiegeleisen; waste and scrap of cast iron, alloy steel or tinned iron or steel; turnings, shavings, chips, milling waste, sawdust, filings, trimmings and stampings; waste and scrap of primary cells, primary batteries and electric accumulators) 01/01/1988 31/12/2500 -72044930 01/01/1988 31/12/2500 LIBEN Waste and scrap of iron or steel, not fragmentised "shredded", in bundles (excl. slag, scale and other waste of the production of iron and steel; radioactive waste and scrap; fragments of pigs, blocks or other primary forms of pig iron or spiegeleisen; waste and scrap of cast iron, alloy steel or tinned iron or steel; turnings, shavings, chips, milling waste, sawdust, filings, trimmings and stampings; waste and scrap of primary cells, primary batteries and electric accumulators) 01/01/1988 31/12/2500 -72044990 01/01/2004 31/12/2500 LIBEN Waste and scrap of iron or steel, not fragmentised "shredded", not in bundles (excl. slag, scale and other waste of the production of iron and steel; radioactive waste and scrap; fragments of pigs, blocks or other primary forms of pig iron or spiegeleisen; waste and scrap of cast iron, alloy steel or tinned iron or steel; turnings, shavings, chips, milling waste, sawdust, filings, trimmings and stampings; waste and scrap of primary cells, primary batteries and electric accumulators) 01/01/2004 31/12/2500 -72044991 01/01/1988 31/12/2003 LIBEN Waste and scrap of iron or steel, not fragmentised "shredded", not in bundles, not sorted or graded (excl. slag, scale and other waste of the production of iron and steel; radioactive waste and scrap; fragments of pigs, blocks or other primary forms of pig iron or spiegeleisen; waste and scrap of cast iron, alloy steel or tinned iron or steel; turnings, shavings, chips, milling waste, sawdust, filings, trimmings and stampings; waste and scrap of primary cells, primary batteries and electric accumulators) 01/01/1988 31/12/2003 -72044999 01/01/1988 31/12/1995 LIBEN Waste and scrap of iron or steel (not fragmentized -shredded-, or in bundles) but sorted and graded "ECSC" (excl. slag, scale and other waste of iron & steel production; radioactive waste and scrap; fragments of pigs, blocks or other primary forms of pig iron or spiegeleisen; waste & scrap of cast iron, alloy steel or tinned iron or steel; turnings shavings, chips, milling waste, sawdust, filings, trimmings and stampings) 01/01/1988 31/12/1995 -72044999 01/01/1996 31/12/2003 LIBEN Waste and scrap of iron or steel, not fragmentised "shredded", not in bundles, but sorted and graded (excl. slag, scale and other waste of the production of iron and steel; radioactive waste and scrap; fragments of pigs, blocks or other primary forms of pig iron or spiegeleisen; waste and scrap of cast iron, alloy steel or tinned iron or steel; turnings, shavings, chips, milling waste, sawdust, filings, trimmings and stampings; waste and scrap of primary cells, primary batteries and electric accumulators) 01/01/1996 31/12/2003 -720450 01/01/1988 31/12/2500 LIBEN Remelting scrap ingots of iron or steel (excl. products whose chemical composition conforms to the definitions of pig iron, spiegeleisen, or ferro-alloys) 01/01/1988 31/12/2500 -72045000 01/01/2004 31/12/2500 LIBEN Remelting scrap ingots of iron or steel (excl. products whose chemical composition conforms to the definitions of pig iron, spiegeleisen, or ferro-alloys) 01/01/2004 31/12/2500 -72045010 01/01/1988 31/12/2003 LIBEN Remelted scrap ingots of alloy steel (excl. products with a chemical composition corresponding to the definitions for ferro-alloys) 01/01/1988 31/12/2003 -72045090 01/01/1988 31/12/2003 LIBEN Remelted scrap ingots of iron or non-alloy steel (excl. products with a chemical composition corresponding to the definitions for pig iron, spiegeleisen or ferro-alloys) 01/01/1988 31/12/2003 -7205 01/01/1988 31/12/2500 LIBEN Granules and powders of pig iron, spiegeleisen, iron or steel (excl. granules and powders of ferro-alloys, turnings and filings of iron or steel, radioactive iron powders "isotopes" and certain low-calibre, substandard balls for ballbearings) 01/01/1988 31/12/2500 -720510 01/01/1988 31/12/2500 LIBEN Granules, of pig iron, spiegeleisen, iron or steel (excl. granules of ferro-alloys, turnings and filings of iron or steel, certain small calibre items, defective balls for ball-bearings) 01/01/1988 31/12/2500 -72051000 01/01/1988 31/12/2500 LIBEN Granules, of pig iron, spiegeleisen, iron or steel (excl. granules of ferro-alloys, turnings and filings of iron or steel, certain small calibre items, defective balls for ball-bearings) 01/01/1988 31/12/2500 -720521 01/01/1988 31/12/2500 LIBEN Powders, of alloy steel (excl. powders of ferro-alloys and radioactive iron powders "isotopes") 01/01/1988 31/12/2500 -72052100 01/01/1988 31/12/2500 LIBEN Powders, of alloy steel (excl. powders of ferro-alloys and radioactive iron powders "isotopes") 01/01/1988 31/12/2500 -720529 01/01/1988 31/12/2500 LIBEN Powders, of pig iron, spiegeleisen, iron or non-alloy steel (excl. powders of ferro-alloys and radioactive iron powders "isotopes") 01/01/1988 31/12/2500 -72052900 01/01/1988 31/12/2500 LIBEN Powders, of pig iron, spiegeleisen, iron or non-alloy steel (excl. powders of ferro-alloys and radioactive iron powders "isotopes") 01/01/1988 31/12/2500 -7206 01/01/1988 31/12/2500 LIBEN Iron and non-alloy steel in ingots or other primary forms (excl. remelting scrap ingots, products obtained by continuous casting and iron of heading 7203) 01/01/1988 31/12/2500 -720610 01/01/1988 31/12/2500 LIBEN Ingots, of iron and non-alloy steel (excl. remelted scrap ingots, continuous cast products, iron of heading 7203) 01/01/1988 31/12/2500 -72061000 01/01/1988 31/12/2500 LIBEN Ingots, of iron and non-alloy steel (excl. remelted scrap ingots, continuous cast products, iron of heading 7203) 01/01/1988 31/12/2500 -720690 01/01/1988 31/12/2500 LIBEN Iron and non-alloy steel, in puddled bars or other primary forms (excl. ingots, remelted scrap ingots, continuous cast products, iron of heading 7203) 01/01/1988 31/12/2500 -72069000 01/01/1988 31/12/2500 LIBEN Iron and non-alloy steel, in puddled bars or other primary forms (excl. ingots, remelted scrap ingots, continuous cast products, iron of heading 7203) 01/01/1988 31/12/2500 -7207 01/01/1988 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel 01/01/1988 31/12/2500 -720711 01/01/1988 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel containing, by weight, < 0,25% of carbon, of square or rectangular cross-section, the width measuring < twice the thickness 01/01/1988 31/12/2500 -72071111 01/01/1988 31/12/2500 LIBEN Semi-finished products, of non-alloy free-cutting steel, containing by weight < 0,25% carbon, of square or rectangular cross-section, the width < twice the thickness, rolled or obtained by continuous casting 01/01/1988 31/12/2500 -72071114 01/01/1994 31/12/2500 LIBEN Semi-finished products, of iron or non-alloy steel, containing by weight < 0,25% carbon, of square or rectangular cross-section, the width < twice the thickness of <= 130 mm, rolled or obtained by continuous casting (excl. free-cutting steel) 01/01/1994 31/12/2500 -72071116 01/01/1994 31/12/2500 LIBEN Semi-finished products, of iron or non-alloy steel, containing by weight < 0,25% carbon, of square or rectangular cross-section, the width < twice the thickness of > 130 mm, rolled or obtained by continuous casting (excl. free-cutting steel) 01/01/1994 31/12/2500 -72071119 01/01/1988 31/12/1993 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight < 0.25 % carbon, of rectangular 'including square' cross-section, the width < twice the thickness, rolled or obtained by continuous casting 'ecsc' (excl. free-cutting steel) 01/01/1988 31/12/1993 -72071190 01/01/1988 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight < 0,25% carbon, of rectangular cross-section, the width < twice the thickness, forged 01/01/1988 31/12/2500 -720712 01/01/1988 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel containing, by weight, < 0,25% of carbon, of rectangular "other than square" cross-section, the width measuring >= twice the thickness 01/01/1988 31/12/2500 -72071210 01/01/1993 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight < 0,25 of carbon, of rectangular "other than square" cross-section, the width measuring >= twice the thickness, rolled or obtained by continuous casting 01/01/1993 31/12/2500 -72071211 01/01/1988 31/12/1992 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight < 0.25 % carbon, of rectangular 'other than square' cross-section, the width >= twice the thickness, rolled or obtained by continuous casting, of a thickness of >= 50 mm 'ecsc' 01/01/1988 31/12/1992 -72071219 01/01/1988 31/12/1992 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight < 0.25 % carbon, of rectangular 'other than square' cross-section, the width >= twice the thickness, rolled or obtained by continuous casting, of a thickness of < 50 mm 'ecsc' 01/01/1988 31/12/1992 -72071290 01/01/1988 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight < 0,25% carbon, of rectangular "other than square" cross-section, the width >= twice the thickness, forged 01/01/1988 31/12/2500 -720712SS 01/01/2007 31/12/2500 LIBEN Confidential trade of heading 7207 12 01/01/2007 31/12/2500 -720719 01/01/1988 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel containing, by weight, < 0,25% of carbon, of circular cross-section, or of a cross-section other than square or rectangular 01/01/1988 31/12/2500 -72071911 01/01/1988 31/12/2003 LIBEN Semi-finished products, of non-alloy free-cutting steel, containing by weight < 0,25% carbon, of circular or polygonal cross-section, rolled or obtained by continuous casting 01/01/1988 31/12/2003 -72071912 01/01/2004 31/12/2500 LIBEN Semi-finished products, of iron or non-alloy steel, containing by weight < 0,25% carbon, of circular or polygonal cross-section, rolled or obtained by continuous casting 01/01/2004 31/12/2500 -72071914 01/01/1994 31/12/2003 LIBEN Semi-finished products, of iron or non-alloy steel, containing by weight < 0,25% carbon, of circular or polygonal cross-section, obtained by continuous casting (excl. free-cutting steel) 01/01/1994 31/12/2003 -72071915 01/01/1988 31/12/1993 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight < 0.25 % carbon, of circular or polygonal cross-section, rolled or obtained by continuous casting 'ecsc' (excl. free-cutting steel) 01/01/1988 31/12/1993 -72071916 01/01/1994 31/12/2003 LIBEN Semi-finished products, of iron or non-alloy steel, containing by weight < 0,25% carbon, of circular or polygonal cross-section, rolled (excl. free-cutting steel) 01/01/1994 31/12/2003 -72071919 01/01/1988 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight < 0,25% carbon, of circular or polygonal cross-section, forged 01/01/1988 31/12/2500 -72071931 01/01/1988 31/12/2003 LIBEN Blanks for angles, shapes and sections of iron or non-alloy steel, rolled or obtained by continuous casting 01/01/1988 31/12/2003 -72071939 01/01/1988 31/12/2003 LIBEN Blanks for angles, shapes and sections of iron or non-alloy steel, forged 01/01/1988 31/12/2003 -72071980 01/01/2004 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight < 0,25% carbon (excl. semi-products, of square, rectangular, circular or polygonal cross-section) 01/01/2004 31/12/2500 -72071990 01/01/1988 31/12/2003 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight < 0,25% carbon (excl. semi-products, of square, rectangular, circular or polygonal cross-section, blanks for angles, shapes and sections) 01/01/1988 31/12/2003 -720720 01/01/1988 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel containing, by weight, >= 0,25% of carbon 01/01/1988 31/12/2500 -72072011 01/01/1988 31/12/2500 LIBEN Semi-finished products, of non-alloy free-cutting steel, containing by weight >= 0,25% carbon, of square or rectangular cross-section, the width < twice the thickness, rolled or obtained by continuous casting 01/01/1988 31/12/2500 -72072015 01/01/1988 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight >= 0,25% but < 0,6% carbon, of square or rectangular cross-section, the width < twice the thickness, rolled or obtained by continuous casting (excl. free-cutting steel) 01/01/1988 31/12/2500 -72072017 01/01/1988 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight >= 0,6% carbon, of square or rectangular cross-section, the width < twice the thickness, rolled or obtained by continuous casting (excl. free-cutting steel) 01/01/1988 31/12/2500 -72072019 01/01/1988 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight >= 0,25% carbon, of square or rectangular cross-section, the width < twice the thickness, forged 01/01/1988 31/12/2500 -72072031 01/01/1988 31/12/1992 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight >= 0.25 % carbon, of rectangular 'other than square' cross-section and the width >= twice the thickness, rolled or obtained by continuous casting, of a thickness of >= 50 mm 'ecsc' 01/01/1988 31/12/1992 -72072032 01/01/1993 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight >= 0,25 of carbon, of rectangular "other than square" cross-section, the width measuring >= twice the thickness, rolled or obtained by continuous casting 01/01/1993 31/12/2500 -72072033 01/01/1988 31/12/1992 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight >= 0.25 % carbon, of rectangular 'other than square' cross-section, rolled or obtained by continuous casting, of a thickness of < 50 mm 'ecsc' 01/01/1988 31/12/1992 -72072039 01/01/1988 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight >= 0,25% carbon, of rectangular "other than square" cross-section and the width >= twice the thickness, forged 01/01/1988 31/12/2500 -72072051 01/01/1988 31/12/2003 LIBEN Semi-finished products, of non-alloy free-cutting steel, containing by weight >= 0,25% carbon, of circular or polygonal cross-section, rolled or obtained by continuous casting 01/01/1988 31/12/2003 -72072052 01/01/2004 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight >= 0,25% carbon, of circular or polygonal cross-section, rolled or obtained by continuous casting 01/01/2004 31/12/2500 -72072055 01/01/1988 31/12/2003 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight >= 0,25% but < 0,6% carbon, of circular or polygonal cross-section, rolled or obtained by continuous casting (excl. free-cutting steel) 01/01/1988 31/12/2003 -72072057 01/01/1988 31/12/2003 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight >= 0,6% carbon, of circular or polygonal cross-section, rolled or obtained by continuous casting (excl. free-cutting steel) 01/01/1988 31/12/2003 -72072059 01/01/1988 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight >= 0,6% carbon, of circular or polygonal cross-section, forged 01/01/1988 31/12/2500 -72072071 01/01/1988 31/12/2003 LIBEN Blanks for angles, shapes and sections of iron or non-alloy steel, containing by weight >= 0,6% carbon, rolled or obtained by continuous casting 01/01/1988 31/12/2003 -72072079 01/01/1988 31/12/2003 LIBEN Blanks for angles, shapes and sections of iron or non-alloy steel, containing by weight >= 0,6% carbon, forged 01/01/1988 31/12/2003 -72072080 01/01/2004 31/12/2500 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight >= 0,25% carbon (excl. those of square, rectangular, circular or polygonal cross-section) 01/01/2004 31/12/2500 -72072090 01/01/1988 31/12/2003 LIBEN Semi-finished products of iron or non-alloy steel, containing by weight >= 0,25% carbon (excl. those of square, rectangular, circular or polygonal cross-section, blanks for angles, shapes and sections) 01/01/1988 31/12/2003 -7208 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, hot-rolled, not clad, plated or coated 01/01/1988 31/12/2500 -720810 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, with patterns in relief directly due to the rolling process 01/01/1996 31/12/2500 -72081000 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, with patterns in relief directly due to the rolling process 01/01/1996 31/12/2500 -720811 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 10 mm and having a minimum yield point of 355 MPa "ECSC" 01/01/1988 31/12/1995 -72081100 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 10 mm and having a minimum yield point of 355 MPa "ECSC" 01/01/1988 31/12/1995 -720812 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, in coils, not further worked than hot-rolled, not clad, plated or coated, of a thickness >= 4,75 mm and <= 10 mm and having a minimum yield point of 355 MPa 01/01/1988 31/12/1995 -72081210 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm but <= 10 mm and having a minimum yield point of 355 MPa, intended for re-rolling "ECSC" 01/01/1988 31/12/1995 -72081291 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm but <= 10 mm and having a minimum yield point of 355 MPa, with patterns in relief directly due to the rolling process "ECSC" (excl. products intended for re-rolling) 01/01/1988 31/12/1995 -72081295 01/01/1991 31/12/1995 LIBEN Flat-rolled products in coils, simply hot-rolled, of high resistance steel, of a thickness >= 4,75 mm but <= 10 mm, of a width >= 600 mm, pickled (excl. 7208.12.10 and 7208.12.91) 01/01/1991 31/12/1995 -72081298 01/01/1991 31/12/1995 LIBEN Flat-rolled products in coils, simply hot-rolled, of high resistance steel, of a thickness >= 4,75 mm but <= 10 mm, of a width >= 600 mm (excl. 7208.12.10 to 7208.12.95) 01/01/1991 31/12/1995 -72081299 01/01/1988 31/12/1990 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4.75 mm but =< 10 mm and having a minimum yield point of 355 mpa, without patterns in relief 'ecsc' (excl. products intended for re-rolling) 01/01/1988 31/12/1990 -720813 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, in coils, not further worked than hot-rolled, not clad, plated or coated, of a thickness >= 3 mm and <= 4,75 mm and having a minimum yield point of 355 MPa 01/01/1988 31/12/1995 -72081310 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 3 mm but < 4,75 mm and having a minimum yield point of 355 MPa "ECSC", intended for re-rolling 01/01/1988 31/12/1995 -72081391 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4,75 mm and having a minimum yield point of 355 MPa, with patterns in relief directly due to the rolling process "ECSC" (excl. products intended for re-rolling) 01/01/1988 31/12/1995 -72081395 01/01/1991 31/12/1995 LIBEN Flat-rolled products in coils, simply hot-rolled, of high resitance steel, of a thickness >= 3 mm but < 4,75 mm, of a width >= 600 mm, pickled (excl. 7208.13.10 and 7208.13.91) 01/01/1991 31/12/1995 -72081398 01/01/1991 31/12/1995 LIBEN Flat-rolled products in coils, simply hot-rolled, of high resistance steel, of a thickness >= 3 mm but < 4,75 mm, of a width >= 600 mm (excl. 7208.13.10 to 7208.13.95) 01/01/1991 31/12/1995 -72081399 01/01/1988 31/12/1990 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4.75 mm and having a minimum yield point of 355 mpa, without patterns in relief 'ecsc' (excl. products intended for re-rolling) 01/01/1988 31/12/1990 -720814 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, in coils, not further worked than hot-rolled, not clad, plated or coated, of a thickness < 3 mm and having a minimum yield point of 275 MPa 01/01/1988 31/12/1995 -72081410 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 3 mm and having a minimum yield point of 275 MPa, intended for re-rolling "ECSC" 01/01/1988 31/12/1995 -72081490 01/01/1988 31/12/1990 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 3 mm and having a minimum yield point of 275 mpa (excl. products intended for re-rolling) 01/01/1988 31/12/1990 -72081491 01/01/1991 31/12/1995 LIBEN Flat-rolled products in coils, simply hot-rolled, of high resistance steel, of a thickness < 3 mm, of a width >= 600 mm, pickled (excl. for re-rolling) 01/01/1991 31/12/1995 -72081499 01/01/1991 31/12/1995 LIBEN Flat-rolled products in coils, simply hot-rolled, of high resistance steel, of a thickness < 3 mm, of a width >= 600 mm (excl. for re-rolling or pickled) 01/01/1991 31/12/1995 -720821 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, in coils, not further worked than hot-rolled, not clad, plated or coated, of a thickness > 10 mm and having a minimum yield point of < 355 MPa "ECSC" 01/01/1988 31/12/1995 -72082110 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 10 mm and having a maximum yield point of < 355 MPa, with patterns in relief directly due to the rolling process "ECSC" 01/01/1988 31/12/1995 -72082190 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 10 mm and having a maximum yield point of < 355 MPa, without patterns in relief "ECSC" 01/01/1988 31/12/1995 -720822 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, in coils, not further worked than hot-rolled, not clad, plated or coated, of a thickness >= 4,75 mm and <= 10 mm and having a minimum yield point of < 355 MPa 01/01/1988 31/12/1995 -72082210 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm but <= 10 mm and having a maximum yield point of < 355 MPa, intended for re-rolling "ECSC" 01/01/1988 31/12/1995 -72082291 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm but <= 10 mm and having a maximum yield point of < 355 MPa, with patterns in relief directly due to the rolling process "ECSC" (excl. products intended for re-rolling) 01/01/1988 31/12/1995 -72082295 01/01/1991 31/12/1995 LIBEN Flat-rolled products in coils, simply hot-rolled, of iron or non-alloy steel (excl. high resistance), of a thickness >= 4,75 mm but <= 10 mm, of a width >= 600 mm, pickled (excl. 7208.22.10 and 7208.22.91) 01/01/1991 31/12/1995 -72082298 01/01/1991 31/12/1995 LIBEN Flat-rolled products in coils, simply hot-rolled, of iron or non-alloy steel (excl. high resistance), of a thickness > 4,75 mm but <= 10 mm, of a width >= 600 mm (excl. 7208.22.10 to 7208.22.95) 01/01/1991 31/12/1995 -72082299 01/01/1988 31/12/1990 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4.75 mm but =< 10 mm and having a maximum yield point of < 355 mpa, without patterns in relief 'ecsc' (excl. products intended for re-rolling) 01/01/1988 31/12/1990 -720823 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, in coils, not further worked than hot-rolled, not clad, plated or coated, of a thickness >= 3 mm and < 4,75 mm and having a minimum yield point of < 355 MPa 01/01/1988 31/12/1995 -72082310 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4,75 mm and having a maximum yield point of < 355 MPa, intended for re-rolling "ECSC" 01/01/1988 31/12/1995 -72082391 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4,75 mm and having a maximum yield point of < 355 MPa, with patterns in relief directly due to the rolling process "ECSC" (excl. products intended for re-rolling) 01/01/1988 31/12/1995 -72082395 01/01/1991 31/12/1995 LIBEN Flat-rolled products in coils, simply hot-rolled, of iron or non-alloy steel (excl. high resistance), of a thickness >= 3 mm but < 4,75 mm, of a width >= 600 mm, pickled (excl. 7208.23.10 and 7208.23.91) 01/01/1991 31/12/1995 -72082398 01/01/1991 31/12/1995 LIBEN Flat-rolled products in coils, simply hot-rolled, of iron or non-alloy steel (excl. high resistance), of a thickness >= 3 mm but < 4,75 mm, of a width >= 600 mm (excl. 7208.23.10 to 7208.23.95) 01/01/1991 31/12/1995 -72082399 01/01/1988 31/12/1990 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4.75 mm and having a maximum yield point of < 355 mpa, without patterns in relief 'ecsc' (excl. products intended for re-rolling) 01/01/1988 31/12/1990 -720824 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width > 600 mm, in coils, not further worked than hot-rolled, not clad, plated or coated, of a thickness < 3 mm and having a minimum yield point of < 275 MPa 01/01/1988 31/12/1995 -72082410 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of < 3 mm and having a maximum yield point of < 275 MPa, intended for re-rolling "ECSC" 01/01/1988 31/12/1995 -72082490 01/01/1988 31/12/1990 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of < 3 mm and having a maximum yield point of < 275 mpa 'ecsc' (excl. products intended for re-rolling) 01/01/1988 31/12/1990 -72082491 01/01/1991 31/12/1995 LIBEN Flat-rolled products in coils, simply hot-rolled, of iron or non-alloy steel (excl. high resistance), of a thickness < 3 mm, of a width >= 600 mm, pickled (excl. for re-rolling) 01/01/1991 31/12/1995 -72082499 01/01/1991 31/12/1995 LIBEN Flat-rolled products in coils, simply hot-rolled, of iron or non-alloy steel (excl. high resistance), of a thickness < 3 mm, of a width >= 600 mm (excl. for re-rolling or pickled) 01/01/1991 31/12/1995 -720825 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm, pickled, without patterns in relief 01/01/1996 31/12/2500 -72082500 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm, pickled, without patterns in relief 01/01/1996 31/12/2500 -720826 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4,75 mm, pickled, without patterns in relief 01/01/1996 31/12/2500 -72082600 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4,75 mm, pickled, without patterns in relief 01/01/1996 31/12/2500 -720827 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of < 3 mm, pickled, without patterns in relief 01/01/1996 31/12/2500 -72082700 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of < 3 mm, pickled, without patterns in relief 01/01/1996 31/12/2500 -720831 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel simply hot-rolled, rolled on four faces or in a box pass, of a width of <= 1 250mm but > 600 mm, of a thickness of >= 4 mm and having a minimum yield point of 355 MPa, not clad, plated or coated, without patterns in relief "ECSC" 01/01/1988 31/12/1995 -72083100 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel simply hot-rolled, rolled on four faces or in a box pass, of a width of <= 1 250mm but > 600 mm, of a thickness of >= 4 mm and having a minimum yield point of 355 MPa, not clad, plated or coated, without patterns in relief "ECSC" 01/01/1988 31/12/1995 -720832 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, not in coils, not further worked than hot-rolled, not clad, plated or coated, of a thickness > 10 mm and having a minimum yield point of 355 MPa "ECSC" (excl. wide flat "universal plate") 01/01/1988 31/12/1995 -72083210 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 10 mm and having a minimum yield point of 355 MPa, with patterns in relief directly due to the rolling process "ECSC" 01/01/1988 31/12/1995 -72083230 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 10 mm and having a minimum yield point of 355 MPa, with patterns in relief directly due to the rolling process "ECSC" (excl. wide flats, also known as "universal plate") 01/01/1988 31/12/1995 -72083251 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 2050 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 15 mm but <= 20 mm and having a minimum yield point of 355 MPa, with patterns in relief directly due to the rolling process "ECSC" (excl. wide flats, also known as "universal plate") 01/01/1988 31/12/1995 -72083259 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 2050 mm but >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 15 mm but <= 20 mm and having a minimum yield point of 355 MPa, without patterns in relief "ECSC" (excl. wide flats, also known as "universal plate") 01/01/1988 31/12/1995 -72083291 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 2050 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 10 mm but <= 15 mm and having a minimum yield point of 355 MPa, without patterns in relief "ECSC" (excl. wide flats, also known as "universal plate") 01/01/1988 31/12/1995 -72083299 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 2050 mm but >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 10 mm but <= 15 mm and having a minimum yield point of 355 MPa, without patterns in relief "ECSC" (excl. wide flats, also known as "universal plate") 01/01/1988 31/12/1995 -720833 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, not in coils, not further worked than hot-rolled, not clad, plated or coated, of a thickness >= 4,75 mm and <= 10 mm and < 4,75 mm and having a minimum yield point of 355 MPa "ECSC" (excl. wide flat "universal plate") 01/01/1988 31/12/1995 -72083310 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 4,75 mm but <= 10 mm and having a minimum yield point of 355 MPa, with patterns in relief directly due to the rolling process "ECSC" 01/01/1988 31/12/1995 -72083391 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 2050 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 4,75 mm but <= 10 mm and having a minimum yield point of 355 MPa, without patterns in relief "ECSC" (excl. wide flats, also known as "universal plate") 01/01/1988 31/12/1995 -72083399 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 2050 mm but >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 4,75 mm but <= 10 mm and having a minimum yield point of 355 MPa, without patterns in relief "ECSC" (excl. wide flats, also known as "universal plate") 01/01/1988 31/12/1995 -720834 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, not in coils, not further worked than hot-rolled, not clad, plated or coated, of a thickness >= 3 mm and < 4,75 mm and having a minimum yield point of 355 MPa "ECSC" (excl. wide flat "universal plate") 01/01/1988 31/12/1995 -72083410 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4,75 mm and having a minimum yield point of 355 MPa, with patterns in relief directly due to the rolling process "ECSC" 01/01/1988 31/12/1995 -72083490 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4,75 mm and having a minimum yield point of 355 MPa, without patterns in relief "ECSC" (excl. wide flats, also known as "universal plate") 01/01/1988 31/12/1995 -720835 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, not in coils, not further worked than hot-rolled, not clad, plated or coated, of a thickness < 3 mm and having a minimum yield point < 275 MPa 01/01/1988 31/12/1995 -72083510 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 2 mm but < 3 mm, and having a minimum yield point of 275 MPa "ECSC" 01/01/1988 31/12/1995 -72083590 01/01/1991 31/12/1995 LIBEN Flat-rolled products (excl. coiled), simply hot-rolled, of high resistance steel, of a thickness < 2 mm, of a width >= 600 mm 01/01/1991 31/12/1995 -72083591 01/01/1988 31/12/1990 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 1 mm but < 2 mm, and having a minimum yield point of 275 mpa 'ecsc' 01/01/1988 31/12/1990 -72083593 01/01/1988 31/12/1990 LIBEN Flat-rolled products (excl. coiled), simply hot-rolled, of high resistance steel, of a thickness >= 0.5 mm but < 1 mm, of a width >= 600 mm 01/01/1988 31/12/1990 -72083599 01/01/1988 31/12/1990 LIBEN Flat-rolled products (excl. coiled), simply hot-rolled, of high resistance steel, of a thickness < 0.5 mm, of a width >= 600 mm 01/01/1988 31/12/1990 -720836 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 10 mm, not pickled, without patterns in relief 01/01/1996 31/12/2500 -72083600 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 10 mm, not pickled, without patterns in relief 01/01/1996 31/12/2500 -720837 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm but < 10 mm, not pickled, without patterns in relief 01/01/1996 31/12/2500 -72083700 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm but < 10 mm, not pickled, without patterns in relief 01/01/2004 31/12/2500 -72083710 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm but <= 10 mm, intended for re-rolling 01/01/1996 31/12/2003 -72083790 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm but <= 10 mm, not pickled, not intended for re-rolling 01/01/1996 31/12/2003 -720838 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4,75 mm, not pickled, without patterns in relief 01/01/1996 31/12/2500 -72083800 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4,75 mm, not pickled, without patterns in relief 01/01/2004 31/12/2500 -72083810 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4,75 mm, intended for re-rolling 01/01/1996 31/12/2003 -72083890 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4,75 mm, not pickled, without patterns in relief, not intended for re-rolling 01/01/1996 31/12/2003 -720839 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of < 3 mm, not pickled, without patterns in relief 01/01/1996 31/12/2500 -72083900 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of < 3 mm, not pickled, without patterns in relief 01/01/2004 31/12/2500 -72083910 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness of < 3 mm, intended for re-rolling 01/01/1996 31/12/2003 -72083990 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, in coils, simply hot-rolled, not clad, plated or coated, of a thickness < 3 mm, not pickled, without patterns in relief, not intended for re-rolling 01/01/1996 31/12/2003 -720840 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, with patterns in relief directly due to the rolling process 01/01/1996 31/12/2500 -72084000 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, with patterns in relief directly due to the rolling process 01/01/2004 31/12/2500 -72084010 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 2 mm, with patterns in relief directly due to the rolling process 01/01/1996 31/12/2003 -72084090 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, not in coils, simply hot-rolled, of high resistance steel, of a thickness < 2 mm, with patterns in relief directly due to the rolling process 01/01/1996 31/12/2003 -720841 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel simply hot-rolled, rolled on four faces or in a box pass, of a width of <= 1 250mm but > 600 mm, of a thickness of >= 4 mm and having a maximum yield point of < 355 MPa, not clad, plated or coated, without patterns in relief "ECSC" 01/01/1988 31/12/1995 -72084100 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel simply hot-rolled, rolled on four faces or in a box pass, of a width of <= 1 250mm but > 600 mm, of a thickness of >= 4 mm and having a maximum yield point of < 355 MPa, not clad, plated or coated, without patterns in relief "ECSC" 01/01/1988 31/12/1995 -720842 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, not in coils, not further worked than hot-rolled, not clad, plated or coated, of a thickness > 10 mm and having a minimum yield point of < 355 MPa "ECSC" (excl. wide flat "universal plate") 01/01/1988 31/12/1995 -72084210 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 10 mm and having a maximum yield point of < 355 MPa, with patterns in relief directly due to the rolling process "ECSC" 01/01/1988 31/12/1995 -72084230 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 20 mm and having a minimum yield point of > 355 MPa, without patterns in relief "ECSC" (excl. wide flats, also known as "universal plate") 01/01/1988 31/12/1995 -72084251 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 2050 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 15 mm but <= 20 mm and having a maximum yield point of < 355 MPa, without patterns in relief "ECSC" (excl. wide flats, also known as "universal plate") 01/01/1988 31/12/1995 -72084259 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 2050 mm but >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 15 mm but <= 20 mm and having a maximum yield point of < 355 MPa, without patterns in relief "ECSC" (excl. wide flats, also known as "universal plate") 01/01/1988 31/12/1995 -72084291 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 2050 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 10 mm but <= 15 mm and having a maximum yield point of < 355 MPa, without patterns in relief "ECSC" (excl. wide flats, also known as "universal plate") 01/01/1988 31/12/1995 -72084299 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 2050 mm but >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 10 mm but <= 15 mm and having a maximum yield point of < 355 MPa, without patterns in relief "ECSC" (excl. wide flats, also known as "universal plate") 01/01/1988 31/12/1995 -720843 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, not in coils, not further worked than hot-rolled, not clad, plated or coated, of a thickness >= 4,75 mm and <= 10 mm and having a minimum yield point of < 355 MPa "ECSC" (excl. wide flat "universal plate") 01/01/1988 31/12/1995 -72084310 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 4,75 mm but <= 10 mm and having a maximum yield point of < 355 MPa, with patterns in relief directly due to the rolling process "ECSC" 01/01/1988 31/12/1995 -72084391 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 2050 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 4,75 mm but <= 10 mm and having a maximum yield point of < 355 MPa, without patterns in relief "ECSC" (excl. wide flats, also known as "universal plate") 01/01/1988 31/12/1995 -72084399 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 2050 mm but >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 4,75 mm but <= 10 mm and having a maximum yield point of < 355 MPa, without patterns in relief "ECSC" (excl. wide flats, also known as "universal plate") 01/01/1988 31/12/1995 -720844 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, not in coils, not further worked than hot-rolled, not clad, plated or coated, of a thickness >= 3 mm and < 4,75 mm and having a minimum yield point of < 355 MPa "ECSC" (excl. wide flat "universal plate") 01/01/1988 31/12/1995 -72084410 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4,75 mm and having a maximum yield point of < 355 MPa, with patterns in relief directly due to the rolling process "ECSC" 01/01/1988 31/12/1995 -72084490 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4,75 mm and having a maximum yield point of < 355 MPa, without patterns in relief "ECSC" (excl. wide flats, also known as "universal plate") 01/01/1988 31/12/1995 -720845 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, not in coils, not further worked than hot-rolled, not clad, plated or coated, of a thickness < 3 mm and having a minimum yield point of < 275 MPa 01/01/1988 31/12/1995 -72084510 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 2 mm but < 3 mm and having a maximum yield point of < 275 MPa "ECSC" 01/01/1988 31/12/1995 -72084590 01/01/1991 31/12/1995 LIBEN Flat-rolled products (excl. coiled), simply hot-rolled, of iron or non-alloy steel (excl. high resistance), of a thickness < 2 mm, of a width >= 600 mm 01/01/1991 31/12/1995 -72084591 01/01/1988 31/12/1990 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 1 mm but < 2 mm and having a maximum yield point of < 275 mpa 'ecsc' 01/01/1988 31/12/1990 -72084593 01/01/1988 31/12/1990 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 0.5 mm but < 1 mm and having a maximum yield point of < 275 mpa 'ecsc' 01/01/1988 31/12/1990 -72084599 01/01/1988 31/12/1990 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of < 0.5 mm and having a maximum yield point of < 275 mpa 'ecsc' 01/01/1988 31/12/1990 -720851 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 10 mm, without patterns in relief 01/01/1996 31/12/2500 -72085110 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, simply hot-rolled on four faces or in a closed box pass, of a width of <= 1 250mm but >= 600 mm, of a thickness of > 10 mm, not clad, plated or coated, without patterns in relief, commonly known as "wide flats" 01/01/1996 31/12/2003 -72085120 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 15 mm, without patterns in relief 01/01/2004 31/12/2500 -72085130 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 20 mm, without patterns in relief (excl. "wide flats") 01/01/1996 31/12/2003 -72085150 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 15 mm but <= 20 mm, without patterns in relief (excl. "wide flats") 01/01/1996 31/12/2003 -72085191 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 2.050 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 10 mm but <= 15 mm, without patterns in relief (excl. "wide flats") 01/01/1996 31/12/2500 -72085198 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 2.050 mm but >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 10 mm but <= 15 mm, without patterns in relief 01/01/2004 31/12/2500 -72085199 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 2050 mm but >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of > 10 mm but <= 15 mm, without patterns in relief (excl. "wide flats") 01/01/1996 31/12/2003 -720852 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm but <= 10 mm, without patterns in relief 01/01/1996 31/12/2500 -72085210 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, simply hot-rolled on four faces or in a closed box pass, of a width of <= 1.250 mm but >= 600 mm, of a thickness of >= 4,75 mm but <= 10 mm, not clad, plated or coated, without patterns in relief, commonly known as "wide flats" 01/01/1996 31/12/2003 -72085210 01/01/2005 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 1.250 mm, not in coils, simply hot-rolled on four faces or in a closed box pass, not clad, plated or coated, of a thickness of >= 4,75 mm but <= 10 mm, without patterns in relief 01/01/2005 31/12/2500 -72085220 01/01/2004 31/12/2004 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 2050 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm but <= 10 mm, without patterns in relief 01/01/2004 31/12/2004 -72085280 01/01/2004 31/12/2004 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 2050 mm but >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm but <= 10 mm, without patterns in relief 01/01/2004 31/12/2004 -72085291 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 2050 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm but <= 10 mm, without patterns in relief 01/01/1996 31/12/2003 -72085291 01/01/2005 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 2.050 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm but <= 10 mm, without patterns in relief 01/01/2005 31/12/2500 -72085299 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 2050 mm but >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm but <= 10 mm, without patterns in relief (excl. "wide flats") 01/01/1996 31/12/2003 -72085299 01/01/2005 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 2.050 mm but >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm but <= 10 mm, without patterns in relief (excl. rolled on four faces or in a closed bow pass of a width <= 1.250 mm) 01/01/2005 31/12/2500 -720853 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4,75 mm, without patterns in relief 01/01/1996 31/12/2500 -72085300 01/01/2004 31/12/2004 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4,75 mm, without patterns in relief 01/01/2004 31/12/2004 -72085310 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel simply hot-rolled on four faces or in a closed box pass, of a width of <= 1.250 mm but >= 600 mm, of a thickness of >= 4 mm but < 4,75 mm, not clad, plated or coated, without patterns in relief, commonly known as "wide flats" 01/01/1996 31/12/2003 -72085310 01/01/2005 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 1.250 mm, not in coils, simply hot-rolled on four faces or in a closed box pass, not clad, plated or coated, of a thickness of >= 4 mm but < 4,75 mm, without patterns in relief 01/01/2005 31/12/2500 -72085390 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4,75 mm, without patterns in relief (excl. "wide flats") 01/01/1996 31/12/2003 -72085390 01/01/2005 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 3 mm but < 4,75 mm, without patterns in relief (excl. rolled on four faces or in a closed bow pass of a width <= 1.250 mm and of a thickness of >= 4 mm) 01/01/2005 31/12/2500 -720854 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of < 3 mm, without patterns in relief 01/01/1996 31/12/2500 -72085400 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of < 3 mm, without patterns in relief 01/01/2004 31/12/2500 -72085410 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness of >= 2 mm but < 3 mm, without patterns in relief 01/01/1996 31/12/2003 -72085490 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, not in coils, simply hot-rolled, not clad, plated or coated, of a thickness < 2 mm, without patterns in relief 01/01/1996 31/12/2003 -720890 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or steel, of a width >= 600 mm, hot-rolled and further worked, but not clad, plated or coated 01/01/1988 31/12/2500 -72089000 01/01/2004 31/12/2005 LIBEN Flat-rolled products of iron or steel, of a width >= 600 mm, hot-rolled and further worked, but not clad, plated or coated 01/01/2004 31/12/2005 -72089010 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled, not further worked than surface-treated or simply cut into shapes other than square or rectangular 01/01/1988 31/12/2003 -72089020 01/01/2006 31/12/2500 LIBEN Flat-rolled products of iron or steel, of a width >= 600 mm, hot-rolled and further worked, but not clad, plated or coated, perforated 01/01/2006 31/12/2500 -72089080 01/01/2006 31/12/2500 LIBEN Flat-rolled products of iron or steel, of a width >= 600 mm, hot-rolled and further worked, but not clad, plated or coated, non-perforated 01/01/2006 31/12/2500 -72089090 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled and further worked, but not clad, plated or coated (excl. products cut into shapes other than square or rectangular) 01/01/1988 31/12/2003 -7208S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7208 and SITC section 6 01/01/1997 31/12/2500 -7208S673 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7208 and SITC group 673 01/01/1997 31/12/2500 -7209 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, cold-rolled "cold-reduced", not clad, plated or coated 01/01/1988 31/12/2500 -720911 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled, not clad, plated or coated, of a thickness of >= 3 mm and having a minimum yield point of 355 MPa "ECSC" 01/01/1988 31/12/1995 -72091100 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled, not clad, plated or coated, of a thickness of >= 3 mm and having a minimum yield point of 355 MPa "ECSC" 01/01/1988 31/12/1995 -720912 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, in coils, not further worked than cold-rolled "cold-reduced", not clad, plated or coated, of a thickness > 1 mm and < 3 mm and having a minimum yield point of 275 MPa "ECSC" 01/01/1988 31/12/1995 -72091210 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled, not clad, plated or coated, of a thickness of >= 1 mm but < 3 mm and having a minimum yield point of 275 MPa "electrical" "ECSC" 01/01/1988 31/12/1995 -72091290 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled, not clad, plated or coated, of a thickness of >= 1 mm but < 3 mm and having a minimum yield point of 275 MPa "ECSC" (excl. electrical) 01/01/1988 31/12/1995 -720913 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, in coils, not further worked than cold-rolled "cold-reduced", not clad, plated or coated, of a thickness >= 0,5 mm, and <= 1 mm and having a minimum yield point of 275 MPa "ECSC" 01/01/1988 31/12/1995 -72091310 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled, not clad, plated or coated, of a thickness of >= 0,5 mm but <= 1 mm and having a minimum yield point of 275 MPa "electrical" "ECSC" 01/01/1988 31/12/1995 -72091390 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled, not clad, plated or coated, of a thickness of >= 0,5 mm but <= 1 mm and having a minimum yield point of 275 MPa "ECSC" (excl. electrical) 01/01/1988 31/12/1995 -720914 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, in coils, not further worked than cold-rolled "cold-reduced", not clad, plated or coated, of a thickness < 0,5 mm and having a minimum yield point of 275 MPa "ECSC" 01/01/1988 31/12/1995 -72091410 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled, of a thickness of < 0,5 mm and having a minimum yield point of 275 MPa "electrical" "ECSC" 01/01/1988 31/12/1995 -72091490 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled, not clad, plated or coated, of a thickness of < 0,5 mm and having a minimum yield point of 275 MPa "ECSC" (excl. electrical) 01/01/1988 31/12/1995 -720915 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled "cold-reduced", not clad, plated or coated, of a thickness of >= 3 mm 01/01/1996 31/12/2500 -72091500 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled "cold-reduced", not clad, plated or coated, of a thickness of >= 3 mm 01/01/1996 31/12/2500 -720916 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled "cold-reduced", not clad, plated or coated, of a thickness of > 1 mm but < 3 mm 01/01/1996 31/12/2500 -72091610 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled "cold-reduced", of a thickness of > 1 mm but < 3 mm "electrical" 01/01/1996 31/12/2500 -72091690 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled "cold-reduced", not clad, plated or coated, of a thickness of > 1 mm but < 3 mm (excl. electrical) 01/01/1996 31/12/2500 -720917 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled "cold-reduced", not clad, plated or coated, of a thickness of >= 0,5 mm but <= 1 mm 01/01/1996 31/12/2500 -72091710 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled "cold-reduced", of a thickness of >= 0,5 mm but <= 1 mm "electrical" 01/01/1996 31/12/2500 -72091790 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled "cold-reduced", not clad, plated or coated, of a thickness of >= 0,5 mm but <= 1 mm (excl. electrical) 01/01/1996 31/12/2500 -720918 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled "cold-reduced", not clad, plated or coated, of a thickness of < 0,5 mm 01/01/1996 31/12/2500 -72091810 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled "cold-reduced", of a thickness of < 0,5 mm "electrical" 01/01/1996 31/12/2500 -72091891 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled "cold-reduced", not clad, plated or coated, of a thickness of >= 0,35 mm but < 0,5 mm (excl. electrical) 01/01/1996 31/12/2500 -72091899 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled "cold-reduced", not clad, plated or coated, of a thickness of < 0,35 mm (excl. electrical) 01/01/1996 31/12/2500 -720921 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled, not clad, plated or coated, of a thickness of >= 3 mm and having a maximum yield point of < 355 MPa "ECSC" 01/01/1988 31/12/1995 -72092100 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled, not clad, plated or coated, of a thickness of >= 3 mm and having a maximum yield point of < 355 MPa "ECSC" 01/01/1988 31/12/1995 -720922 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, in coils, not further worked than cold-rolled "cold-reduced", not clad, plated or coated, of a thickness > 1 mm and < 3 mm and having a maximum yield point of < 275 MPa "ECSC" 01/01/1988 31/12/1995 -72092210 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled, not clad, plated or coated, of a thickness of > 1 mm but < 3 mm and having a maximum yield point of < 275 MPa "electrical" "ECSC" 01/01/1988 31/12/1995 -72092290 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled, not clad, plated or coated, of a thickness of > 1 mm but < 3 mm and having a maximum yield point of < 275 MPa "ECSC" (excl. electrical) 01/01/1988 31/12/1995 -720923 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, in coils, not further worked than cold-rolled "cold-reduced", not clad, plated or coated, of a thickness >= 0,5 mm and <= 1 mm and having a maximum yield point of < 275 MPa "ECSC" 01/01/1988 31/12/1995 -72092310 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled, not clad, plated or coated, of a thickness of > 0,5 mm but < 1 mm and having a maximum yield point of < 275 MPa "electrical" "ECSC" 01/01/1988 31/12/1995 -72092390 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled, not clad, plated or coated, of a thickness of > 0,5 mm but < 1 mm and having a maximum yield point of < 275 MPa "ECSC" (excl. electrical) 01/01/1988 31/12/1995 -720924 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, in coils, not further worked than cold-rolled "cold-reduced", not clad, plated or coated, of a thickness < 0,5 mm and having a maximum yield point of < 275 MPa "ECSC" 01/01/1988 31/12/1995 -72092410 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled, of a thickness of < 0,5 mm and having a maximum yield point of < 275 MPa "electrical" "ECSC" 01/01/1988 31/12/1995 -72092491 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled, not clad, plated or coated, of a thickness of >= 0,35 mm but < 0,5 mm and having a maximum yield point of < 275 MPa "ECSC" (excl. electrical) 01/01/1988 31/12/1995 -72092499 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, in coils, simply cold-rolled, not clad, plated or coated, of a thickness of >= 0,35 mm and having a maximum yield point of < 275 MPa "electrical" "ECSC" (excl. electrical) 01/01/1988 31/12/1995 -720925 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply cold-rolled "cold-reduced", not clad, plated or coated, of a thickness of >= 3 mm 01/01/1996 31/12/2500 -72092500 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply cold-rolled "cold-reduced", not clad, plated or coated, of a thickness of >= 3 mm 01/01/1996 31/12/2500 -720926 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply cold-rolled "cold-reduced", not clad, plated or coated, of a thickness of > 1 mm but < 3 mm 01/01/1996 31/12/2500 -72092610 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply cold-rolled "cold-reduced", of a thickness of > 1 mm but < 3 mm "electrical" 01/01/1996 31/12/2500 -72092690 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply cold-rolled "cold-reduced", not clad, plated or coated, of a thickness of > 1 mm but < 3 mm (excl. electrical) 01/01/1996 31/12/2500 -720927 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply cold-rolled "cold-reduced", not clad, plated or coated, of a thickness of >= 0,5 mm but <= 1 mm 01/01/1996 31/12/2500 -72092710 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply cold-rolled "cold-reduced", of a thickness of >= 0,5 mm but <= 1 mm "electrical" 01/01/1996 31/12/2500 -72092790 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply cold-rolled "cold-reduced", not clad, plated or coated, of a thickness of >= 0,5 mm but <= 1 mm (excl. electrical) 01/01/1996 31/12/2500 -720928 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply cold-rolled "cold-reduced", not clad, plated or coated, of a thickness of < 0,5 mm 01/01/1996 31/12/2500 -72092810 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply cold-rolled "cold-reduced", of a thickness of < 0,5 mm "electrical" 01/01/1996 31/12/2500 -72092890 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, not in coils, simply cold-rolled "cold-reduced", not clad, plated or coated, of a thickness of < 0,5 mm (excl. electrical) 01/01/1996 31/12/2500 -720931 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, other than in coils, simply cold-rolled, not clad, plated or coated, of a thickness of >= 3 mm and having a minimum yield point of 355 MPa "ECSC" 01/01/1988 31/12/1995 -72093100 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, other than in coils, simply cold-rolled, not clad, plated or coated, of a thickness of >= 3 mm and having a minimum yield point of 355 MPa "ECSC" 01/01/1988 31/12/1995 -720932 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, in coils, not further worked than cold-rolled "cold-reduced", not clad, plated or coated, of a thickness > 1 mm and < 3 mm and having a minimum yield point of 275 MPa "ECSC" 01/01/1988 31/12/1995 -72093210 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, other than in coils, simply cold-rolled, not clad, plated or coated, of a thickness of >= 1 mm but < 3 mm, and having a minimum yield point of 275 MPa "ECSC" "electrical" 01/01/1988 31/12/1995 -72093290 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, other than in coils, simply cold-rolled, not clad, plated or coated, of a thickness of >= 1 mm but < 3 mm, and having a minimum yield point of 275 MPa "ECSC" (excl. electrical) 01/01/1988 31/12/1995 -720933 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, in coils, not further worked than cold-rolled "cold-reduced", not clad, plated or coated, of a thickness >= 0,5 mm and <= 1 mm and having a minimum yield point of 275 MPa "ECSC" 01/01/1988 31/12/1995 -72093310 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, other than in coils, simply cold-rolled, of a thickness of >= 0,5 mm but <= 1 mm, and having a minimum yield point of 275 MPa "ECSC" "electrical" 01/01/1988 31/12/1995 -72093390 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, other than in coils, simply cold-rolled, not clad, plated or coated, of a thickness of >= 0,5 mm but <= 1 mm, and having a minimum yield point of 275 MPa "ECSC" (excl. electrical) 01/01/1988 31/12/1995 -720934 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, not in coils, not further worked than cold-rolled "cold-reduced", not clad, plated or coated, of a thickness < 0,5.mm and having a minimum yield point of 275 MPa "ECSC" 01/01/1988 31/12/1995 -72093410 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, other than in coils, simply cold-rolled, of a thickness of > 1 mm but < 3 mm, and having a minimum yield point of 275 MPa "ECSC" "electrical" 01/01/1988 31/12/1995 -72093490 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, other than in coils, simply cold-rolled, not clad, plated or coated, of a thickness of < 0,5 mm, and having a minimum yield point of 275 MPa "ECSC" (excl. electrical) 01/01/1988 31/12/1995 -720941 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, other than in coils, simply cold-rolled, not clad, plated or coated, of a thickness of <= 3 mm, and having a minimum yield point of 355 MPa "ECSC" 01/01/1988 31/12/1995 -72094100 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, other than in coils, simply cold-rolled, not clad, plated or coated, of a thickness of <= 3 mm, and having a minimum yield point of 355 MPa "ECSC" 01/01/1988 31/12/1995 -720942 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, not in coils, not further worked than cold-rolled "cold-reduced", not clad, plated or coated, of a thickness > 1 mm and < 3 mm and having a maximum yield point of < 275 MPa "ECSC" 01/01/1988 31/12/1995 -72094210 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, other than in coils, simply cold-rolled, of a thickness of > 1 mm but < 3 mm, and having a maximum yield point of < 275 MPa "ECSC" "electrical" 01/01/1988 31/12/1995 -72094290 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, other than in coils, simply cold-rolled, not clad, plated or coated, of a thickness of > 1 mm but < 3 mm, and having a maximum yield point of < 275 MPa "ECSC" (excl. electrical) 01/01/1988 31/12/1995 -720943 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, not in coils, not further worked than cold-rolled "cold-reduced", not clad, plated or coated, of a thickness >= 0,5 mm and <= 1 mm and having a maximum yield point of < 275 MPa "ECSC" 01/01/1988 31/12/1995 -72094310 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, other than in coils, simply cold-rolled, of a thickness of >= 0,5 mm but <= 1 mm, "electrical" 01/01/1988 31/12/1995 -72094390 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, other than in coils, simply cold-rolled, not clad, plated or coated, of a thickness of >= 0,5 mm but <= 1 mm, and having a maximum yield point of < 275 MPa "ECSC" (excl. electrical) 01/01/1988 31/12/1995 -720944 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, not in coils, not further worked than cold-rolled "cold-reduced", not clad, plated or coated, of a thickness < 0,5 mm and having a maximum yield point of < 275 MPa "ECSC" 01/01/1988 31/12/1995 -72094410 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, other than in coils, simply cold-rolled, of a thickness of < 0,5 mm, and having a maximum yield point of < 275 MPa "ECSC" "electrical" 01/01/1988 31/12/1995 -72094490 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, other than in coils, simply cold-rolled, not clad, plated or coated, of a thickness of < 0,5 mm, and having a maximum yield point of < 275 MPa "ECSC" 01/01/1988 31/12/1995 -720990 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or steel, of a width of >= 600 mm, cold-rolled "cold-reduced", and further worked, but not clad, plated or coated 01/01/1988 31/12/2500 -72099000 01/01/2004 31/12/2005 LIBEN Flat-rolled products of iron or steel, of a width of >= 600 mm, cold-rolled "cold-reduced", and further worked, but not clad, plated or coated 01/01/2004 31/12/2005 -72099010 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, cold-rolled "cold-reduced", not clad, plated or coated, not further worked than surface-treated, or simply cut into shapes other than square or rectangular 01/01/1988 31/12/2003 -72099020 01/01/2006 31/12/2500 LIBEN Flat-rolled products of iron or steel, of a width of >= 600 mm, cold-rolled "cold-reduced" and further worked, but not clad, plated or coated, perforated 01/01/2006 31/12/2500 -72099080 01/01/2006 31/12/2500 LIBEN Flat-rolled products of iron or steel, of a width of >= 600 mm, cold-rolled "cold-reduced" and further worked, but not clad, plated or coated, non-perforated 01/01/2006 31/12/2500 -72099090 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, cold-rolled "cold-reduced" and further worked, but not clad, plated or coated (excl. products cut into shapes other than square or rectangular) 01/01/1988 31/12/2003 -7209I2 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 7209; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1997 31/12/2005 -7209I200 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 7209; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1997 31/12/2005 -7209S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7209 and SITC section 6 01/01/1997 31/12/2500 -7209S673 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7209 and SITC group 673 01/01/1997 31/12/2500 -7210 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, hot-rolled or cold-rolled "cold-reduced", clad, plated or coated 01/01/1988 31/12/2500 -721011 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", tinned, of a thickness of >= 0,5 mm 01/01/1988 31/12/2500 -72101100 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", tinned, of a thickness of >= 0,5 mm 01/01/2004 31/12/2500 -72101110 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with tin, of a thickness of >= 0,5 mm, not further worked than surface-treated, or simply cut into shapes other than square or rectangular 01/01/1988 31/12/2003 -72101190 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with tin, of a thickness of >= 0,5 mm (excl. products not further worked than surface-treated, or simply cut into shapes other than square or rectangular) 01/01/1988 31/12/2003 -721012 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", tinned, of a thickness of < 0,5 mm 01/01/1988 31/12/2500 -72101211 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, tinplate, of a width of >= 600 mm and of a thickness of < 0,5 mm, hot-rolled or cold-rolled "cold-reduced", not further worked than surface-treated, or simply cut into shapes other than square or rectangular 01/01/1988 31/12/2003 -72101219 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with tin, of a thickness of < 0,5 mm, not further worked than surface-treated, or simply cut into shapes other than square or rectangular (excl. tinplate) 01/01/1988 31/12/2003 -72101220 01/01/2004 31/12/2500 LIBEN Tinplate of iron or non-alloy steel, of a width of >= 600 mm and of a thickness of < 0,5 mm, tinned [coated with a layer of metal containing, by weight, >= 97% of tin], not further worked than surface-treated 01/01/2004 31/12/2500 -72101280 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with tin, of a thickness of < 0,5 mm (excl. tinplate) 01/01/2004 31/12/2500 -72101290 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with tin, of a thickness of < 0,5 mm, (excl. products not further worked than surface-treated, or simply cut into shapes other than square or rectangular, tinplate) 01/01/1988 31/12/2003 -721020 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with lead, incl. terne-plate 01/01/1988 31/12/2500 -72102000 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with lead, incl. terne-plate 01/01/2004 31/12/2500 -72102010 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with lead, incl. terne-plate, not further worked than surface-treated, or simply cut into shapes other than square or rectangular 01/01/1988 31/12/2003 -72102090 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with lead, incl. terne-plate (excl. products not further worked than surface-treated, or simply cut into shapes other than square or rectangular) 01/01/1988 31/12/2003 -721030 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", electrolytically plated or coated with zinc 01/01/1996 31/12/2500 -72103000 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", electrolytically plated or coated with zinc 01/01/2004 31/12/2500 -72103010 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", electrolytically plated or coated with zinc, not further worked than surface-treated, or simply cut into shapes other than square or rectangular 01/01/1996 31/12/2003 -72103090 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", electrolytically plated or coated with zinc (excl. products not further worked than surface-treated, or simply cut into shapes other than square or rectangular) 01/01/1996 31/12/2003 -721031 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, hot-rolled or cold-rolled "cold-reduced", electrolytically plated or coated with zinc, of a thickness < 3 mm and having a minimum yield point of 275 MPa, or of a thickness >= 3 mm and having a minimum yield point of 355 MPa 01/01/1988 31/12/1995 -72103110 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot- or cold-rolled, electrolytically plated or coated with zinc, of a thickness of <= 3 mm and having a minimum yield point of 275 MPa or of a thickness of >= 3 mm and having a minimum yield point of 355 MPa, not further worked than surface-treated, or simply cut into shapes other than rectangular "including square" "ECSC" 01/01/1988 31/12/1995 -72103190 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot- or cold-rolled, electrolytically plated or coated with zinc, of a thickness of <= 3 mm and having a minimum yield point of 275 MPa or of a thickness of >= 3 mm and having a minimum yield point of 355 MPa (excl. products not further worked than surface-treated, or simply cut into shapes other than rectangular "including square" "ECSC") 01/01/1988 31/12/1995 -721039 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, hot-rolled or cold-rolled "cold-reduced", electrolytically plated or coated with zinc (excl. products of steel of a thickness < 3 mm and having a minimum yield point of 275 MPa, or of a thickness >= 3 mm and having a minimum yield point of 355 MPa) 01/01/1988 31/12/1995 -72103910 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot- or cold-rolled, electrolytically plated or coated with zinc, not further worked than surface-treated, or simply cut into shapes other than rectangular "including square" "ECSC" (excl. products of a thickness of <= 3 mm and having a minimum yield point of 275 MPa or of a thickness of >= 3 mm and having a minimum yield point of 355 MPa) 01/01/1988 31/12/1995 -72103990 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot- or cold-rolled, electrolytically plated or coated with zinc (excl. products not further worked than surface-treated, or simply cut into shapes other than rectangular "including square" "ECSC" or of a thickness of <= 3 mm and having a minimum yield point of 275 MPa or of a thickness of >= 3 mm and having a minimum yield point of 355 MPa) 01/01/1988 31/12/1995 -721041 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", corrugated, plated or coated with zinc (excl. electrolytically plated or coated with zinc) 01/01/1988 31/12/2500 -72104100 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", corrugated, plated or coated with zinc (excl. electrolytically plated or coated with zinc) 01/01/2004 31/12/2500 -72104110 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", corrugated, plated or coated with zinc, not further worked than surface-treated, or simply cut into shapes other than square or rectangular (excl. products electrolytically plated or coated with zinc) 01/01/1988 31/12/2003 -72104190 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", corrugated, plated or coated with zinc (excl. products electrolytically plated or coated with zinc, or not further worked than surface-treated, or simply cut into shapes other than square or rectangular) 01/01/1988 31/12/2003 -721049 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", not corrugated, plated or coated with zinc (excl. electrolytically plated or coated with zinc) 01/01/1988 31/12/2500 -72104900 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", not corrugated, plated or coated with zinc (excl. electrolytically plated or coated with zinc) 01/01/2004 31/12/2500 -72104910 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", not corrugated, plated or coated with zinc, not further worked than surface-treated, or simply cut into shapes other than square or rectangular (excl. products electrolytically plated or coated with zinc) 01/01/1988 31/12/2003 -72104990 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", not corrugated, plated or coated with zinc (excl. products electrolytically plated or coated with zinc or not further worked than surface-treated or simply cut into shapes other than square or rectangular) 01/01/1988 31/12/2003 -721050 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with chromium oxides or with chromium and chromium oxides 01/01/1988 31/12/2500 -72105000 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with chromium oxides or with chromium and chromium oxides 01/01/2004 31/12/2500 -72105010 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with chromium oxides or chromium and chromium oxides, not further worked than surface-treated or simply cut into shapes other than square or rectangular 01/01/1988 31/12/2003 -72105090 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with chromium oxides or chromium and chromium oxides (excl. products not further worked than surface-treated or simply cut into shapes other than square or rectangular) 01/01/1988 31/12/2003 -721060 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with aluminium 01/01/1988 31/12/1995 -72106011 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot- or cold-rolled, plated or coated with aluminium-zinc alloys, not further worked than surface-treated or simply cut into shapes other than rectangular "including square" "ECSC" 01/01/1988 31/12/1995 -72106019 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot- or cold-rolled, plated or coated with aluminium, not further worked than surface-treated or simply cut into shapes other than rectangular "including square" "ECSC" (excl. products plated or coated with aluminium-zinc alloys) 01/01/1988 31/12/1995 -72106090 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot- or cold-rolled, plated or coated with aluminium (excl. products plated or coated with aluminium-zinc alloys or not further worked than surface-treated or simply cut into shapes other than rectangular "including square" "ECSC") 01/01/1988 31/12/1995 -721061 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with aluminium-zinc alloys 01/01/1996 31/12/2500 -72106100 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with aluminium-zinc alloys 01/01/2004 31/12/2500 -72106110 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with aluminium-zinc alloys, not further worked than surface-treated or simply cut into shapes other than square or rectangular 01/01/1996 31/12/2003 -72106190 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with aluminium (excl. not further worked than surface-treated or simply cut into shapes other than square or rectangular) 01/01/1996 31/12/2003 -721069 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with aluminium (excl. products plated or coated with aluminium-zinc alloys) 01/01/1996 31/12/2500 -72106900 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with aluminium (excl. products plated or coated with aluminium-zinc alloys) 01/01/2004 31/12/2500 -72106910 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with aluminium, not further worked than surface-treated or simply cut into shapes other than square or rectangular (excl. products plated or coated with aluminium-zinc alloys) 01/01/1996 31/12/2003 -72106990 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with aluminium (excl. with aluminium-zinc alloys, not further worked than surface-treated or simply cut into shapes other than square or rectangular) 01/01/1996 31/12/2003 -721070 01/01/1988 31/12/2500 LIBEN Flat products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", painted, varnished or coated with plastics 01/01/1988 31/12/2500 -72107010 01/01/2004 31/12/2500 LIBEN Tinplate of a width of >= 600 mm and of a thickness of < 0,5 mm, tinned [coated with a layer of metal containing, by weight, >= 97% of tin], not further worked than varnished, and flat products plated or coated with chromium oxides or with chromium and chromium oxides, of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", varnished 01/01/2004 31/12/2500 -72107011 01/01/1988 31/12/1990 LIBEN Tinplate of iron or non-alloy steel, of a width of >= 600 mm and a thickness of < 0.5 mm, varnished 'ecsc' 01/01/1988 31/12/1990 -72107019 01/01/1988 31/12/1990 LIBEN Flat-rolled products of iron or non-alloy steel, painted, varnished or plastic coated, of a width >= 600 mm, simply surface-treated or cut into shapes (excl. rectangular) (excl. varnished tinplate) 01/01/1988 31/12/1990 -72107021 01/01/1991 31/12/1991 LIBEN Flat-rolled products of varnished tinplate and flat-rolled products, electrolytically plated or coated with chromium, varnished, of a width >= 600 mm, simply surface-treated or cut into shapes (excl. rectangular) 01/01/1991 31/12/1991 -72107029 01/01/1991 31/12/1991 LIBEN Flat-rolled products of iron or non-alloy steel, painted, varnished or plastic coated, of a width >= 600 mm, simply surface-treated or cut into shapes (excl. rectangular) (excl. tinplate and products electrolytically plated or coated with chromium, varnished) 01/01/1991 31/12/1991 -72107031 01/01/1992 31/12/2003 LIBEN Tinplate and flat products plated or coated with chromium oxides or with chromium and chromium oxides, of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", varnished, not further worked than surface treated or simply cut into shapes other than square or rectangular 01/01/1992 31/12/2003 -72107039 01/01/1992 31/12/2003 LIBEN Flat products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", painted, varnished or coated with plastics, not further worked than surface treated or simply cut into shapes other than square or rectangular (excl. tinplate and products plated or coated with chromium oxides or with chromium and chromium oxides, varnished) 01/01/1992 31/12/2003 -72107080 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", painted, varnished or plastic coated (excl. tinplate and products electrolytically plated or coated with chrome, varnished) 01/01/2004 31/12/2500 -72107090 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", painted, varnished or plastic coated (excl. products not further worked than surface-treated, or simply cut into shapes other than square or rectangular, and tinplate and products electrolytically plated or coated with chrome, varnished) 01/01/1988 31/12/2003 -721090 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", clad, plated or coated (excl. tinned, plated or coated with lead, zinc, chromium oxides, chromium and chromium oxides, or aluminium, painted, varnished or coated with plastics) 01/01/1988 31/12/2500 -72109010 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", silvered, gilded, platinum-plated or enamelled 01/01/1988 31/12/2003 -72109030 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", clad 01/01/2004 31/12/2500 -72109031 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", clad, simply surface-treated or cut into shapes other than square or rectangular 01/01/1988 31/12/2003 -72109033 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, tinned and printed, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", simply surface-treated or cut into shapes other than square or rectangular 01/01/1988 31/12/2003 -72109035 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, tinned and printed, of a width of >= 600 mm, hot- or cold-rolled, simply surface-treated or cut into shapes other than rectangular "including square" "ECSC" 01/01/1988 31/12/1995 -72109038 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", simply surface-treated or cut into shapes other than square or rectangular (excl. tinned, tinned and printed, plated or coated with lead or zinc, aluminium, chromium, chromium oxides or plastics, silvered, gilded, platinum-plated, enamelled, painted or varnished) 01/01/1996 31/12/2003 -72109039 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, hot-rolled or cold-rolled, width >= 600 mm, clad, not further worked than surface-treated, or simply cut into shapes (excl. rectangular) -ECSC- (excl. tinned, tinned and printed, plated or coated with lead or zinc, aluminium, chromium oxide and chromium or plastic coated, plated or coated with chrome or nickel, silvered, gilded, platinum-plated or enamelled, painted or varnished) 01/01/1988 31/12/1995 -72109040 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, tinned and printed, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" 01/01/2004 31/12/2500 -72109080 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, hot-rolled or cold-rolled "cold-reduced", of a width of >= 600 mm, plated or coated (excl. plated or coated with thin, lead "incl. terne-plate", zinc, aluminium, chromium, chromium oxides, plastics, platinum, painted or varnished, clad and tinned and printed) 01/01/2004 31/12/2500 -72109090 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, hot-rolled or cold-rolled "cold-reduced", of a width of >= 600 mm, plated or coated (excl. plated or coated with thin, lead "incl. terne-plate", zinc, aluminium, chromium, chromium oxides, plastics, platinum, silvered, gilded, enamelled, painted or varnished, tinned and printed, not further worked than surface-treated "incl. cladding", or cut into shapes other than square or rectangular) 01/01/1988 31/12/2003 -7211 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", not clad, plated or coated 01/01/1988 31/12/2500 -721111 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, simply hot-rolled, rolled on four faces or in a box pass, of a width of > 150 mm but < 600mm, of a thickness of >= 4 mm and having a minimum yield point of 355 MPa, other than in coils, without patterns in relief "ECSC" 01/01/1988 31/12/1995 -72111100 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, simply hot-rolled, rolled on four faces or in a box pass, of a width of > 150 mm but < 600mm, of a thickness of >= 4 mm and having a minimum yield point of 355 MPa, other than in coils, without patterns in relief "ECSC" 01/01/1988 31/12/1995 -721112 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width < 600 mm, not further worked than hot-rolled of a thickness >= 4,75 mm and having a minimum yield point of 355 MPa (excl. wide flat "universal plate") 01/01/1988 31/12/1995 -72111210 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600mm, simply hot-rolled, of a thickness of >= 4,75 mm and having a minimum yield point of 355 MPa "ECSC" (excl. universal plate) 01/01/1988 31/12/1995 -72111290 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, simply hot-rolled, of a thickness of >= 4,75 mm and having a minimum yield point of 355 MPa "ECSC" (excl. universal plate) 01/01/1988 31/12/1995 -721113 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, simply hot-rolled on four faces or in a closed box pass, not clad, plated or coated, of a width of > 150 mm but < 600 mm and a thickness of >= 4 mm, not in coils, without patterns in relief, commonly known as "wide flats" 01/01/1996 31/12/2500 -72111300 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, simply hot-rolled on four faces or in a closed box pass, not clad, plated or coated, of a width of > 150 mm but < 600 mm and a thickness of >= 4 mm, not in coils, without patterns in relief, commonly known as "wide flats" 01/01/1996 31/12/2500 -721114 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width < 600 mm, not further worked than hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm (excl. "wide flats") 01/01/1996 31/12/2500 -72111400 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width < 600 mm, not further worked than hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm (excl. "wide flats") 01/01/2004 31/12/2500 -72111410 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm (excl. "wide flats") 01/01/1996 31/12/2003 -72111490 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, simply hot-rolled, not clad, plated or coated, of a thickness of >= 4,75 mm (excl. "wide flats") 01/01/1996 31/12/2003 -721119 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width < 600 mm, simply hot-rolled, not clad, plated or coated, of a thickness < 4,75 mm (excl. "wide flats") 01/01/1988 31/12/2500 -72111900 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width < 600 mm, simply hot-rolled, not clad, plated or coated, of a thickness < 4,75 mm (excl. "wide flats") 01/01/2004 31/12/2500 -72111910 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600mm, simply hot-rolled, of a thickness of < 3 mm and having a minimum yield point of 275 MPa or of a thickness of >= 3 mm but < 4.75mm, and having a minimum yield point of 355 MPa "ECSC" (excl. universal plate) 01/01/1988 31/12/1995 -72111920 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, simply hot-rolled, not clad, plated or coated, of a thickness of < 4,75 mm (excl. "wide flats") 01/01/1996 31/12/2003 -72111990 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, simply hot-rolled, not clad, plated or coated, of a thickness of < 4,75 mm (excl. "wide flats") 01/01/1996 31/12/2003 -72111991 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, simply hot-rolled, of a thickness of >= 3 mm but < 4.75mm, and having a minimum yield point of 355 MPa "ECSC" (excl. universal plate) 01/01/1988 31/12/1995 -72111999 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, simply hot-rolled, of a thickness of < 3 mm, and having a minimum yield point of 275 MPa "ECSC" 01/01/1988 31/12/1995 -721121 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, simply hot-rolled, rolled on four faces or in a box pass, of a width of > 150 mm but < 600mm, of a thickness of >= 4 mm and having a maximum yield point of < 355 MPa, other than in coils, without patterns in relief "ECSC" 01/01/1988 31/12/1995 -72112100 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, simply hot-rolled, rolled on four faces or in a box pass, of a width of > 150 mm but < 600mm, of a thickness of >= 4 mm and having a maximum yield point of < 355 MPa, other than in coils, without patterns in relief "ECSC" 01/01/1988 31/12/1995 -721122 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width < 600 mm, not further worked than hot-rolled, of a thickness >= 4,75 mm and having a minimum yield point < 355 MPa (excl. wide flat "universal plate") 01/01/1988 31/12/1995 -72112210 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600mm, simply hot-rolled, of a thickness of >= 4,75 mm and having a minimum yield point of 355 MPa "ECSC" (excl. universal plate) 01/01/1988 31/12/1995 -72112290 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, simply hot-rolled, of a thickness of >= 4,75 mm and having a minimum yield point of 355 MPa "ECSC" (excl. universal plate) 01/01/1988 31/12/1995 -721123 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, simply cold-rolled "cold-reduced", not clad, plated or coated, containing by weight < 0,25% of carbon 01/01/1996 31/12/2500 -72112310 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm and < 600 mm, simply cold-rolled "cold-reduced", not clad, plated or coated, containing by weight < 0,25% of carbon 01/01/1996 31/12/2003 -72112320 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, simply cold-rolled "cold-reduced", not clad, plated or coated, containing by weight < 0,25% of carbon "electrical" 01/01/2004 31/12/2500 -72112330 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm and of a thickness of >= 0,35 mm, simply cold-rolled "cold-reduced", not clad, plated or coated, containing by weight < 0,25% of carbon (excl. electrical plate) 01/01/2004 31/12/2500 -72112351 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, simply cold-rolled "cold-reduced", not clad, plated or coated, containing by weight < 0,25% of carbon, in coils, intended for the manufacture of tinplate 01/01/1996 31/12/2003 -72112380 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm and of a thickness of < 0,35 mm, simply cold-rolled "cold-reduced", not clad, plated or coated, containing by weight < 0,25% of carbon (excl. electrical plate) 01/01/2004 31/12/2500 -72112391 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, simply cold-rolled "cold-reduced", not clad, plated or coated, containing by weight < 0,25% of carbon "electrical" 01/01/1996 31/12/2003 -72112399 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, simply cold-rolled "cold-reduced", not clad, plated or coated, containing by weight < 0,25% of carbon (excl. those in coils, intended for the manufacture of tinplate, and electrical plate) 01/01/1996 31/12/2003 -721129 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, simply cold-rolled "cold-reduced", not clad, plated or coated, containing by weight >= 0,25% of carbon 01/01/1988 31/12/2500 -72112900 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, simply cold-rolled "cold-reduced", not clad, plated or coated, containing by weight >= 0,25% of carbon 01/01/2004 31/12/2500 -72112910 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600mm, simply hot-rolled, of a thickness of < 3 mm and having a minimum yield point of < 275 MPa or of a thickness of >= 3 mm but < 4.75mm, and having a maximum yield point of < 355 MPa "ECSC" (excl. universal plate) 01/01/1988 31/12/1995 -72112920 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm and < 600 mm, simply cold-rolled "cold-reduced", not clad, plated or coated, containing by weight >= 0,25% of carbon 01/01/1996 31/12/2003 -72112950 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, simply cold-rolled "cold-reduced", not clad, plated or coated, containing by weight >= 0,25% but < 0,6% of carbon 01/01/1996 31/12/2003 -72112990 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, simply cold-rolled "cold-reduced", not clad, plated or coated, containing by weight >= 0,6% of carbon 01/01/1996 31/12/2003 -72112991 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600mm, simply hot-rolled, of a thickness of >= 3 mm but < 4.75mm, and having a maximum yield point of < 355 MPa "ECSC" (excl. universal plate) 01/01/1988 31/12/1995 -72112999 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, simply hot-rolled, of a thickness of < 3 mm, and having a maximum yield point of < 275 MPa "ECSC" 01/01/1988 31/12/1995 -721130 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width < 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness < 3 mm and having a minimum yield point of 275 MPa, or of a thickness >= 3 mm and having a minimum yield point of 355 MPa 01/01/1988 31/12/1995 -72113010 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600mm, simply cold-rolled, of a thickness of < 3 mm and having a minimum yield point of < 275 MPa or of a thickness of >= 3 mm, and having a minimum yield point of 355 MPa "ECSC" 01/01/1988 31/12/1995 -72113031 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, simply cold-rolled, of a thickness of < 3 mm and having a minimum yield point of < 275 MPa or of a thickness of >= 3 mm, and having a minimum yield point of 355 MPa, containing by weight < 0,25% of carbon "electrical" 01/01/1988 31/12/1995 -72113039 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, simply cold-rolled, of a thickness of < 3 mm and having a minimum yield point of 275 MPa or of a thickness of >= 3 mm, and having a minimum yield point of 355 MPa, containing by weight < 0,25% of carbon (excl. "electrical") 01/01/1988 31/12/1995 -72113050 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, simply cold-rolled, of a thickness of < 3 mm and having a minimum yield point of 275 MPa or of a thickness of >= 3 mm, and having a minimum yield point of 355 MPa, containing by weight >= 0,25% but < 0,6% of carbon 01/01/1988 31/12/1995 -72113090 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, simply cold-rolled, of a thickness of < 3 mm and having a minimum yield point of 275 MPa or of a thickness of >= 3 mm, and having a minimum yield point of 355 MPa, containing by weight >= 0,6% of carbon 01/01/1988 31/12/1995 -721141 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width < 600 mm, not further worked than cold-rolled "cold-reduced", containing by weight < 0,25% of carbon (excl. those of a thickness < 3 mm and having a minimum yield point of 275 MPa, or of a thickness >= 3 mm and having a minimum yield point of 355 MPa) 01/01/1988 31/12/1995 -72114110 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width > 500 mm and < 600 mm, not further worked than cold-rolled "cold-reduced", containing by weight < 0,25% of carbon "ECSC" (excl. those of a thickness < 3 mm and having a minimum yield point of 275 MPa, or of a thickness >= 3 mm and having a minimum yield point of 355 MPa) 01/01/1988 31/12/1995 -72114191 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width <= 500 mm, not further worked than cold-rolled "cold-reduced", containing by weight < 0,25% of carbon, in coils, intended for the manufacture of tinplate "ECSC" (excl. those of a thickness < 3 mm and having a minimum yield point of 275 MPa, or of a thickness >= 3 mm and having a minimum yield point of 355 MPa) 01/01/1988 31/12/1995 -72114195 01/01/1988 31/12/1995 LIBEN Electrical plate of iron or non-alloy steel, of a width <= 500 mm, not further worked than cold-rolled "cold-reduced", containing by weight < 0,25% of carbon (excl. those of a thickness < 3 mm and having a minimum yield point of 275 MPa, or of a thickness >= 3 mm and having a minimum yield point of 355 MPa) 01/01/1988 31/12/1995 -72114199 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width <= 500 mm, not further worked than cold-rolled "cold-reduced", containing by weight < 0,25% of carbon (excl. those in coils, intended for the manufacture of tinplate "ECSC" or of a thickness < 3 mm and having a minimum yield point of 275 MPa, or of a thickness >= 3 mm and having a minimum yield point of 355 MPa, and electrical plate) 01/01/1988 31/12/1995 -721149 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width < 600 mm, not further worked than cold-rolled "cold-reduced", containing by weight >= 0,25% of carbon (excl. those of a thickness < 3 mm and having a minimum yield point of 275 MPa, or of a thickness >= 3 mm and having a minimum yield point of 355 MPa) 01/01/1988 31/12/1995 -72114910 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width > 500 mm and < 600 mm, not further worked than cold-rolled "cold-reduced", containing by weight >= 0,25% of carbon "ECSC" (excl. those of a thickness < 3 mm and having a minimum yield point of 275 MPa, or of a thickness >= 3 mm and having a minimum yield point of 355 MPa) 01/01/1988 31/12/1995 -72114991 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width <= 500 mm, not further worked than cold-rolled "cold-reduced", containing by weight >= 0,25% and < 0,6% of carbon (excl. those of a thickness < 3 mm and having a minimum yield point of 275 MPa, or of a thickness >= 3 mm and having a minimum yield point of 355 MPa) 01/01/1988 31/12/1995 -72114999 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width <= 500 mm, not further worked than cold-rolled "cold-reduced", containing by weight >= 0,6% of carbon (excl. those of a thickness < 3 mm and having a minimum yield point of 275 MPa, or of a thickness >= 3 mm and having a minimum yield point of 355 MPa) 01/01/1988 31/12/1995 -721190 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked, but not clad, plated or coated 01/01/1988 31/12/2500 -72119000 01/01/2004 31/12/2005 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked, but not clad, plated or coated 01/01/2004 31/12/2005 -72119011 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", not plated or coated, not further worked than surface-treated 01/01/1988 31/12/2003 -72119019 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", further worked but not plated or coated (excl. products not further worked than surface-treated) 01/01/1988 31/12/2003 -72119020 01/01/2006 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked, but not clad, plated or coated, perforated 01/01/2006 31/12/2500 -72119080 01/01/2006 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked, but not clad, plated or coatednon-perforated 01/01/2006 31/12/2500 -72119090 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, hot-rolled or cold-rolled "cold-reduced" and further rolled and further worked but not plated or coated 01/01/1988 31/12/2003 -7211S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7211 and SITC section 6 01/01/1997 31/12/2500 -7211S673 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7211 and SITC group 673 01/01/1997 31/12/2500 -7212 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", clad, plated or coated 01/01/1988 31/12/2500 -721210 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", tinned 01/01/1988 31/12/2500 -72121010 01/01/1988 31/12/2500 LIBEN Tinplate of iron or non-alloy steel, of a width of < 600 mm and of a thickness of < 0,5 mm, tinned [coated with a layer of metal containing, by weight, >= 97% of tin], not further worked than surface-treated 01/01/1988 31/12/2500 -72121090 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, hot-rolled or cold-rolled "cold-reduced", of a width of < 600 mm, tinned (excl. tinplate, not further worked than surface-treated) 01/01/2004 31/12/2500 -72121091 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", tinned, not further worked than surface-treated (excl. tinplate) 01/01/1988 31/12/2003 -72121093 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot- or cold-rolled, tinned (excl. products not further worked than surface-treated) 01/01/1988 31/12/2003 -72121099 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, hot-rolled or cold-rolled "cold-reduced", of a width of <= 500 mm, tinned 01/01/1988 31/12/2003 -721220 01/01/1996 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", electrolytically plated or coated with zinc 01/01/1996 31/12/2500 -72122000 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", electrolytically plated or coated with zinc 01/01/2004 31/12/2500 -72122011 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", electrolytically plated or coated with zinc, not further worked than surface-treated 01/01/1996 31/12/2003 -72122019 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", electrolytically plated or coated with zinc (excl. products not further worked than surface-treated) 01/01/1996 31/12/2003 -72122090 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, hot-rolled or cold-rolled "cold-reduced", electrolytically plated or coated with zinc 01/01/1996 31/12/2003 -721221 01/01/1988 31/12/1995 LIBEN Flat-rolled products of non-alloy steel, of a width < 600 mm, hot-rolled or cold-rolled "cold-reduced", electrolytically plated or coated with zinc, of a thickness < 3 mm and having a minimum yield point of 275 MPa, or of a thickness >= 3 mm and having a minimum yield point of 355 MPa 01/01/1988 31/12/1995 -72122111 01/01/1988 31/12/1995 LIBEN Flat-rolled products of non-alloy steel, of a width of > 500 mm but < 600 mm, hot- or cold-rolled, electrolytically plated or coated with zinc, of a thickness of < 3 mm and having a minimum yield point of 275 MPa or of a thickness of >= 3 mm, and having a minimum yield point of 355 MPa, not further worked than surface-treated "ECSC" 01/01/1988 31/12/1995 -72122119 01/01/1988 31/12/1995 LIBEN Flat-rolled products of non-alloy steel, of a width of > 500 mm but < 600 mm, hot- or cold-rolled, electrolytically plated or coated with zinc, of a thickness of < 3 mm and having a minimum yield point of 275 MPa or of a thickness of >= 3 mm, and having a minimum yield point of 355 MPa (excl. products not further worked than surface-treated "ECSC") 01/01/1988 31/12/1995 -72122190 01/01/1988 31/12/1995 LIBEN Flat-rolled products of non-alloy steel, of a width of <= 500 mm, hot- or cold-rolled, electrolytically plated or coated with zinc, of a thickness of < 3 mm and having a minimum yield point of 275 MPa or of a thickness of >= 3 mm, and having a minimum yield point of 355 MPa 01/01/1988 31/12/1995 -721229 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width < 600 mm, hot-rolled or cold-rolled "cold-reduced", electrolytically plated or coated with zinc (excl. those of steel, of a thickness < 3 mm and having a minimum yield point of 275 MPa, or of a thickness >= 3 mm and having a minimum yield point of 355 MPa) 01/01/1988 31/12/1995 -72122911 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot- or cold-rolled, electrolytically plated or coated with zinc, not further worked than surface-treated "ECSC" (excl. products of steel of a thickness of < 3 mm and having a minimum yield point of 275 MPa or of a thickness of >= 3 mm, and having a minimum yield point of 355 MPa) 01/01/1988 31/12/1995 -72122919 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot- or cold-rolled, electrolytically plated or coated with zinc (excl. products not further worked than surface-treated "ECSC" and products of steel of a thickness of < 3 mm and having a minimum yield point of 275 MPa or of a thickness of >= 3 mm, and having a minimum yield point of 355 MPa) 01/01/1988 31/12/1995 -72122990 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, hot- or cold-rolled, electrolytically plated or coated with zinc (excl. products of steel of a thickness of < 3 mm and having a minimum yield point of 275 MPa or of a thickness of >= 3 mm, and having a minimum yield point of 355 MPa) 01/01/1988 31/12/1995 -721230 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", tinned (excl. electrolytically plated or coated with zinc) 01/01/1988 31/12/2500 -72123000 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", tinned (excl. electrolytically plated or coated with zinc) 01/01/2004 31/12/2500 -72123011 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with zinc, not further worked than surface-treated (excl. products electrolytically plated or coated with zinc) 01/01/1988 31/12/2003 -72123019 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with zinc (excl. products, not further worked than surface-treated, and products electrolytically plated or coated with zinc) 01/01/1988 31/12/2003 -72123090 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with zinc (excl. products electrolytically plated or coated with zinc) 01/01/1988 31/12/2003 -721240 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", painted, varnished or coated with plastics 01/01/1988 31/12/2500 -72124010 01/01/1988 31/12/2003 LIBEN Tinplate, of iron or non-alloy steel, of a width of < 600 mm, simply varnished 01/01/1988 31/12/2003 -72124020 01/01/2004 31/12/2500 LIBEN Tinplate of a width of < 600 mm and of a thickness of < 0,5 mm, tinned [coated with a layer of metal containing, by weight, >= 97% of tin], not further worked than varnished, and flat products plated or coated with chromium oxides or with chromium and chromium oxides, of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", varnished 01/01/2004 31/12/2500 -72124080 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", painted, varnished or plastic coated (excl. tinplate, not further worked than varnished, and products plated or coated with chromium oxides or with chromium and chromium oxides, varnished) 01/01/2004 31/12/2500 -72124091 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", painted, varnished or plastic coated, not further worked than surface-treated (excl. tinplate, simply varnished) 01/01/1988 31/12/2003 -72124093 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", painted, varnished or plastic coated (excl. products not further worked than surface-treated, and tinplate, simply varnished) 01/01/1988 31/12/2003 -72124095 01/01/1991 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with chromium oxides or with chromium and chromium oxides, varnished 01/01/1991 31/12/2003 -72124098 01/01/1991 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, hot-rolled or cold-rolled "cold-reduced", painted, varnished or plastic coated (excl. tinplate, not further worked than surface-treated, and plated or coated with chromium oxides or with chromium and chromium oxides, varnished) 01/01/1991 31/12/2003 -72124099 01/01/1988 31/12/1990 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of =< 500 mm, hot- or cold-rolled, painted, varnished or plastic coated (excl. tinplate simply varnished 'ecsc') 01/01/1988 31/12/1990 -721250 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated (excl. tinned, plated or coated with zinc, painted, varnished or coated with plastics) 01/01/1988 31/12/2500 -72125010 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", silvered, gilded, platinum-plated or enamelled 01/01/1988 31/12/2003 -72125020 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with chromium oxides or with chromium and chromium oxides (excl. varnished) 01/01/2004 31/12/2500 -72125030 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with chromium or nickel 01/01/2004 31/12/2500 -72125031 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", lead-coated, not further worked than surface-treated 01/01/1988 31/12/2003 -72125039 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot- or cold-rolled, plated or coated with lead (excl. products not further worked than surface-treated "ECSC") 01/01/1988 31/12/1995 -72125040 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with copper 01/01/2004 31/12/2500 -72125051 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", clad, not further worked than surface-treated (excl. products plated or coated with tin, zinc or lead, silvered, gilded, platinum-plated or enamelled, painted, varnished or plastic-coated) 01/01/1988 31/12/2003 -72125058 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", clad (excl. products plated or coated with tin or zinc, silvered, gilded, platinum-plated or enamelled, painted, varnished or plastic-coated, and products not further worked than surface-treated) 01/01/1996 31/12/2003 -72125059 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot- or cold-rolled, clad, further worked (excl. products plated or coated with tin or zinc, silvered, gilded, platinum-plated or enamelled, painted, varnished or plastic coated, and products not further worked than surface-treated "ECSC") 01/01/1988 31/12/1995 -72125061 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with aluminium-zinc alloys 01/01/2004 31/12/2500 -72125069 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with aluminium (excl. products plated or coated with aluminium-zinc alloys) 01/01/2004 31/12/2500 -72125071 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, hot- or cold-rolled, tinned and printed 01/01/1988 31/12/1995 -72125073 01/01/1988 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, hot- or cold-rolled, plated or coated with chrome oxides or with chrome and chrome oxides 01/01/1988 31/12/1995 -72125075 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with copper 01/01/1988 31/12/2003 -72125085 01/01/1990 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, lead-coated, of a width <= 500 mm 01/01/1990 31/12/1995 -72125090 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", clad (excl. products plated or coated with tin or zinc, copper, with chromium oxides or with chromium and chromium oxides, chromium, nickel or aluminium, painted or varnished, and plastic-coated) 01/01/2004 31/12/2500 -72125091 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with chromium or nickel 01/01/1988 31/12/2003 -72125093 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with aluminium-zinc alloys 01/01/1988 31/12/2003 -72125097 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with aluminium (excl. products plated or coated with aluminium-zinc alloys) 01/01/1988 31/12/2003 -72125098 01/01/1990 31/12/1995 LIBEN Flat-rolled products of iron or non-alloy steel, plated or coated (excl. 7212.10.10 to 7212.50.97) 01/01/1990 31/12/1995 -72125099 01/01/1988 31/12/1989 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of =< 500 mm, hot- or cold-rolled, clad (excl. products plated or coated with tin, or plated or coated with tin and printed, plated or coated with zinc, chrome oxides or with chrome and chrome oxides, copper, chrome, nickel or aluminium, silvered, gilded, platinum-plated or enamelled, painted, varnished or plastic coated) 01/01/1988 31/12/1989 -72125099 01/01/1996 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, hot-rolled or cold-rolled "cold-reduced", clad (excl. products plated or coated with tin or zinc, copper, chromium, nickel or aluminium, painted or varnished, and plastic-coated) 01/01/1996 31/12/2003 -721260 01/01/1988 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", clad 01/01/1988 31/12/2500 -72126000 01/01/2004 31/12/2500 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", clad 01/01/2004 31/12/2500 -72126011 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", clad, not further worked than surface-treated 01/01/1988 31/12/2003 -72126019 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", clad (excl. products not further worked than surface-treated) 01/01/1988 31/12/2003 -72126091 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, hot-rolled, not further worked than clad and surface-treated 01/01/1988 31/12/2003 -72126093 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, hot-rolled or cold-rolled "cold-reduced", clad, not further worked than surface-treated (excl. products hot-rolled and not further worked than clad) 01/01/1988 31/12/2003 -72126099 01/01/1988 31/12/2003 LIBEN Flat-rolled products of iron or non-alloy steel, of a width of <= 500 mm, hot-rolled or cold-rolled "cold-reduced", clad (excl. products, not further worked than surface-treated) 01/01/1988 31/12/2003 -7212S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7212 and SITC section 6 01/01/1997 31/12/2500 -7212S674 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7212 and SITC group 674 01/01/1997 31/12/2500 -7213 01/01/1988 31/12/2500 LIBEN Bars and rods of iron or non-alloy steel, hot-rolled, in irregularly wound coils 01/01/1988 31/12/2500 -721310 01/01/1988 31/12/2500 LIBEN Bars and rods, hot-rolled, in irregularly wound coils of iron or non-alloy steel, with indentations, ribs, grooves or other deformations produced during the rolling process 01/01/1988 31/12/2500 -72131000 01/01/1988 31/12/2500 LIBEN Bars and rods, hot-rolled, in irregularly wound coils of iron or non-alloy steel, with indentations, ribs, grooves or other deformations produced during the rolling process 01/01/1988 31/12/2500 -721320 01/01/1988 31/12/2500 LIBEN Bars and rods, hot-rolled, in irregularly wound coils, of non-alloy free-cutting steel (excl. bars and rods containing indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1988 31/12/2500 -72132000 01/01/1988 31/12/2500 LIBEN Bars and rods, hot-rolled, in irregularly wound coils, of non-alloy free-cutting steel (excl. bars and rods containing indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1988 31/12/2500 -721331 01/01/1988 31/12/1995 LIBEN Bars and rods of iron or non-alloy steel, in irregularly wound coils, containing by weight < 0,25% of carbon, of circular cross-section measuring < 14 mm in diameter "ECSC" (excl. those of free-cutting steel, and bars and rods containing indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1988 31/12/1995 -72133100 01/01/1988 31/12/1993 LIBEN Bars and rods, hot-rolled, in irregularly wound coils, of iron or non-alloy steel containing by weight < 0.25 % carbon, of circular cross-section measuring < 14 mm diameter (excl. products of free-cutting steel, and bars and rods, with indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1988 31/12/1993 -72133110 01/01/1994 31/12/1994 LIBEN Bars and rods, of iron or non-alloy steel, hot-rolled, in irregularly wound coils, containing by weight =< 0.06% carbon, of circular cross-section measuring < 14 mm diameter 'ecsc' (excl. products of free-cutting steel, and bars and rods, with indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1994 31/12/1994 -72133120 01/01/1995 31/12/1995 LIBEN Bars and rods, hot-rolled, of the type used in reinforced concrete, smooth, of iron or non-alloy steel, in irregularly wound coils, containing by weight < 0,25% of carbon, of circular cross-section measuring < 14 mm in diameter (ECSC) 01/01/1995 31/12/1995 -72133181 01/01/1995 31/12/1995 LIBEN Bars and rods, hot-rolled, of iron or non-alloy steel, in irregularly wound coils, containing by weight <= 0,06% of carbon, of circular cross-section measuring < 14 mm in diameter (ECSC) (other than of free-cutting steel, smooth bars and rods, hot-rolled, for reinforced concrete, and bars and rods, hot-rolled, containing indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1995 31/12/1995 -72133189 01/01/1995 31/12/1995 LIBEN Bars and rods, hot-rolled, of iron or non-alloy steel, in irregularly wound coils, containing by weight between > 0,06% and < 0,25% of carbon, of circular cross-section, measuring < 14 mm in diameter (ECSC) (other than of free-cutting steel, smooth bars and rods, hot-rolled, for reinforced concrete and bars and rods, hot-rolled, containing indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1995 31/12/1995 -72133190 01/01/1994 31/12/1994 LIBEN Bars and rods of iron or non-alloy steel, in irregularly wound coils, containing by weight > 0.06% but < 0.25% carbon, of circular cross-section measuring < 14 mm diameter 'ecsc' (excl. bars and rods of free-cutting steel, and bars and rods with indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1994 31/12/1994 -721339 01/01/1988 31/12/1995 LIBEN Bars and rods of iron or non-alloy steel, in irregularly wound coils, containing by weight < 0,25% of carbon "ECSC" (excl. those of circular cross-section measuring < 14 mm in diameter; bars and rods of free-cutting steel; bars and rods containing indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1988 31/12/1995 -72133900 01/01/1988 31/12/1993 LIBEN Bars and rods, hot-rolled, in irregularly wound coils, of iron or non-alloy steel containing by weight < 0.25 % carbon 'ecsc' (excl. products of circular cross-section measuring < 14 mm diameter, bars and rods of free-cutting steel, and bars and rods with indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1988 31/12/1993 -72133910 01/01/1994 31/12/1995 LIBEN Bars and rods, of iron or non-alloy steel, hot-rolled, in irregularly wound coils, containing by weight <= 0,06% carbon "ECSC" (excl. products of circular cross-section measuring < 14 mm diameter, bars and rods of free-cutting steel, and bars and rods with indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1994 31/12/1995 -72133990 01/01/1994 31/12/1995 LIBEN Bars and rods of iron or non-alloy steel, in irregularly wound coils, containing by weight > 0,06% but < 0,25% carbon "ECSC" (excl. bars and rods of circular cross-section measuring < 14 mm diameter, bars and rods of free-cutting steel, and bars and rods with indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1994 31/12/1995 -721341 01/01/1988 31/12/1995 LIBEN Bars and rods, hot-rolled, in irregularly wound coils, of iron or non-alloy steel, containing by weight >= 0,25% but < 0,6% carbon, of circular cross-section measuring < 14 mm diameter "ECSC" (excl. bars and rods of free-cutting steel, and bars and rods with indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1988 31/12/1995 -72134100 01/01/1988 31/12/1995 LIBEN Bars and rods, hot-rolled, in irregularly wound coils, of iron or non-alloy steel, containing by weight >= 0,25% but < 0,6% carbon, of circular cross-section measuring < 14 mm diameter "ECSC" (excl. bars and rods of free-cutting steel, and bars and rods with indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1988 31/12/1995 -721349 01/01/1988 31/12/1995 LIBEN Bars and rods, hot-rolled, in irregularly wound coils, of iron or non-alloy steel, containing by weight >= 0,25% but < 0,6% carbon "ECSC" (excl. products of circular cross-section measuring < 14 mm diameter, bars and rods of free-cutting steel, and bars and rods with indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1988 31/12/1995 -72134900 01/01/1988 31/12/1995 LIBEN Bars and rods, hot-rolled, in irregularly wound coils, of iron or non-alloy steel, containing by weight >= 0,25% but < 0,6% carbon "ECSC" (excl. products of circular cross-section measuring < 14 mm diameter, bars and rods of free-cutting steel, and bars and rods with indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1988 31/12/1995 -721350 01/01/1988 31/12/1995 LIBEN Bars and rods of iron or non-alloy steel, in irregularly wound coils, containing by weight >= 0,6% of carbon (excl. those of free-cutting steel, and bars and rods containing indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1988 31/12/1995 -72135000 01/01/1988 31/12/1989 LIBEN Bars and rods, hot-rolled, in irregularly wound coils of iron or non-alloy steel, containing by weight >= 0.6 % carbon, (excl. 7213.10-00 and 7213.20-00) 01/01/1988 31/12/1989 -72135010 01/01/1990 31/12/1994 LIBEN Bars and rods, hot-rolled, in irregularly wound coils, of iron or non-alloy steel, containing by weight 0,6 % to 0,75 % of carbon (excl. of free-cutting steel and bars and rods containing indentations, ribs, grooves or other deformations) 01/01/1990 31/12/1994 -72135020 01/01/1995 31/12/1995 LIBEN Bars and rods, hot-rolled, of the type used for tyre cord, smooth, of iron or non-alloy steel, in irregularly wound coils, containing by weight >= 0,6% of carbon (ECSC) 01/01/1995 31/12/1995 -72135081 01/01/1995 31/12/1995 LIBEN Bars and rods, hot-rolled, of iron or non-alloy steel, in irregularly wound coils, containing by weight between 0,6% and 0,75% carbon (ECSC) (other than of free-cutting steel, bars and rods for tyre cord and bars and rods containing indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1995 31/12/1995 -72135089 01/01/1995 31/12/1995 LIBEN Bars and rods, hot-rolled, of iron or non-alloy steel, in irregularly wound coils, containing by weight > 0,75% of carbon (ECSC) (other than of free-cutting steel, bars and rods for tyre cord and bars and rods containing indentations, ribs, grooves and other deformations produced during the rolling process) 01/01/1995 31/12/1995 -72135090 01/01/1990 31/12/1994 LIBEN Bars and rods, hot-rolled, in irregularly wound coils, of iron or non-alloy steel, containing by weight > 0,75 % of carbon (excl. of free-cutting steel and bars and rods containing indentations, ribs, grooves or other deformations) 01/01/1990 31/12/1994 -721391 01/01/1996 31/12/2500 LIBEN Bars and rods, hot-rolled, in irregularly wound coils, of iron or non-alloy steel, of circular cross-section measuring < 14 mm in diameter (excl. bars and rods of free-cutting steel, and bars and rods with indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1996 31/12/2500 -72139110 01/01/1996 31/12/2500 LIBEN Bars and rods, hot-rolled, of the type used for concrete reinforcement, smooth, of iron or non-alloy steel, in irregularly wound coils, of circular cross-section measuring < 14 mm in diameter 01/01/1996 31/12/2500 -72139120 01/01/1996 31/12/2500 LIBEN Bars and rods, hot-rolled, of the type used for tyre cord, smooth, of iron or non-alloy steel, in irregularly wound coils 01/01/1996 31/12/2500 -72139141 01/01/1996 31/12/2500 LIBEN Bars and rods, hot-rolled, of iron or non-alloy steel, in irregularly wound coils, containing by weight <= 0,06% of carbon, of circular cross-section measuring < 14 mm in diameter (excl. free-cutting steel, bars and rods, hot-rolled, for concrete reinforcement and tyre cord, and bars and rods, hot-rolled, containing indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1996 31/12/2500 -72139149 01/01/1996 31/12/2500 LIBEN Bars and rods, hot-rolled, of iron or non-alloy steel, in irregularly wound coils, containing by weight > 0,06% and < 0,25% of carbon, of circular cross-section, measuring < 14 mm in diameter (excl. of free-cutting steel, bars and rods, hot-rolled, for concrete reinforcement and tyre cord and bars and rods, hot-rolled, containing indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1996 31/12/2500 -72139170 01/01/1996 31/12/2500 LIBEN Bars and rods, hot-rolled, in irregularly wound coils, of iron or non-alloy steel, containing by weight >= 0,25% but <= 0,75% carbon, of circular cross-section measuring < 14 mm in diameter (excl. of free-cutting steel, and bars and rods, smooth, for concrete reinforcement and tyre cord, and bars and rods with indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1996 31/12/2500 -72139190 01/01/1996 31/12/2500 LIBEN Bars and rods, hot-rolled, of iron or non-alloy steel, in irregularly wound coils, containing by weight > 0,75% of carbon, of circular cross-section measuring < 14 mm in diameter (excl. of free-cutting steel, bars and rods, smooth, for tyre cord and bars and rods with indentations, ribs, grooves and other deformations produced during the rolling process) 01/01/1996 31/12/2500 -721399 01/01/1996 31/12/2500 LIBEN Bars and rods, hot-rolled, in irregularly wound coils, of iron or non-alloy steel (excl. products of circular cross-section measuring < 14 mm in diameter, bars and rods of free-cutting steel, and bars and rods with indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1996 31/12/2500 -72139910 01/01/1996 31/12/2500 LIBEN Bars and rods, of iron or non-alloy steel, hot-rolled, in irregularly wound coils, containing by weight < 0,25% carbon (excl. products of circular cross-section measuring < 14 mm in diameter, bars and rods of free-cutting steel, and bars and rods with indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1996 31/12/2500 -72139990 01/01/1996 31/12/2500 LIBEN Bars and rods, hot-rolled, in irregularly wound coils, of iron or non-alloy steel, containing by weight >= 0,25% carbon (excl. products of circular cross-section measuring < 14 mm diameter, bars and rods of free-cutting steel, and bars and rods with indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1996 31/12/2500 -7214 01/01/1988 31/12/2500 LIBEN Bars and rods, of iron or non-alloy steel, not further worked than forged, hot-rolled, hot-drawn or hot-extruded, but incl. those twisted after rolling (excl. in irregularly wound coils) 01/01/1988 31/12/2500 -721410 01/01/1988 31/12/2500 LIBEN Bars and rods, of iron or non-alloy steel, not further worked than forged (excl. in irregularly wound coils) 01/01/1988 31/12/2500 -72141000 01/01/1988 31/12/2500 LIBEN Bars and rods, of iron or non-alloy steel, not further worked than forged (excl. in irregularly wound coils) 01/01/1988 31/12/2500 -721420 01/01/1988 31/12/2500 LIBEN Bars and rods, of iron or non-alloy steel, with indentations, ribs, groves or other deformations produced during the rolling process 01/01/1988 31/12/2500 -72142000 01/01/1988 31/12/2500 LIBEN Bars and rods, of iron or non-alloy steel, with indentations, ribs, groves or other deformations produced during the rolling process 01/01/1988 31/12/2500 -721430 01/01/1988 31/12/2500 LIBEN Bars and rods, of non-alloy free-cutting steel, not further worked than hot-rolled, hot-drawn or hot-extruded (excl. containing indentations, ribs, grooves or other deformations produced during the rolling process or twisted after rolling) 01/01/1988 31/12/2500 -72143000 01/01/1988 31/12/2500 LIBEN Bars and rods, of non-alloy free-cutting steel, not further worked than hot-rolled, hot-drawn or hot-extruded (excl. containing indentations, ribs, grooves or other deformations produced during the rolling process or twisted after rolling) 01/01/1988 31/12/2500 -721440 01/01/1988 31/12/1995 LIBEN Other bars and rods of non-alloy free-cutting steel, not further worked than hot-rolled, hot-drawn or hot-extruded, containing by weight < 0,25% of carbon "ECSC" (excl. those containing indentations, ribs, grooves or other deformations produced during the rolling process, and free-cutting steel) 01/01/1988 31/12/1995 -72144010 01/01/1988 31/12/1995 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than hot-rolled, containing by weight < 0,25% of carbon, of rectangular (excl. square) cross-section, rolled on four faces "ECSC" (excl. those containing indentations, ribs, grooves or other deformations produced during the rolling process, and free-cutting steel) 01/01/1988 31/12/1995 -72144020 01/01/1995 31/12/1995 LIBEN Bars and rods of the type used for reinforced concrete, smooth, of iron or non-alloy steel, only hot-rolled, hot-drawn or hot-extruded, containing < 0,25% of carbon, of square cross-section or of a cross-section other than rectangular or circular (ECSC) 01/01/1995 31/12/1995 -72144031 01/01/1994 31/12/1994 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, containing by weight =< 0.25% carbon, of circular cross-section measuring not more than >= 80 mm diameter 'ecsc' (excl. such products with indentations, ribs, grooves or other deformations produced during the rolling process, and such products of free-cutting steel) 01/01/1994 31/12/1994 -72144039 01/01/1994 31/12/1994 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, containing by weight =< 0.25% carbon, of circular cross-section measuring not more than < 80 mm diameter 'ecsc' (excl. such products with indentations, ribs, grooves or other deformations produced during the rolling process, and such products of free-cutting steel) 01/01/1994 31/12/1994 -72144051 01/01/1995 31/12/1995 LIBEN Bars and rods of iron or non-alloy steel, only hot-rolled, hot-drawn or hot-extruded, containing < 0,25% of carbon, of circular cross-section, of a maximum diameter of >= 80 mm (ECSC) (other than of free-cutting steel, smooth bars and rods, for reinfoced concrete, or bars and rods containing indentations, ribs, grooves or other deformations produced during the rolling process, or wound after rolling) 01/01/1995 31/12/1995 -72144059 01/01/1995 31/12/1995 LIBEN Bars and rods of iron or non-alloy steel, only hot-rolled, hot-drawn or hot-extruded, containing < 0,25% of carbon, of circular cross-section of a maximum diameter of < 80 mm (ECSC) (other than of free-cutting steel, smooth bars and rods, for reinforced concrete, or bars and rods containing indentations, ribs, grooves or other deformations produced during the rolling process, or wound after rolling) 01/01/1995 31/12/1995 -72144080 01/01/1995 31/12/1995 LIBEN Bars and rods of iron or non-alloy steel, only hot-rolled, hot-drawn or hot-extruded, containing by weight < 0,25% of carbon, of square cross-section or of a cross-section other than square or circular (ECSC) (other than of free-cutting steel, smooth bars and rods, for reinforced concrete, or bars and rods containing indentations, ribs, grooves or other deformations produced during the rolling process, or wound after rolling) 01/01/1995 31/12/1995 -72144090 01/01/1994 31/12/1994 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, containing by weight < 0.25% carbon, of rectangular 'including square' cross-section or of other than rectangular or circular cross-section 'ecsc' (excl. such products with indentations, ribs, grooves or other deformations produced during the rolling process, and such products of free-cutting steel) 01/01/1994 31/12/1994 -72144091 01/01/1988 31/12/1993 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, of square or other (excl. other rectangular) cross-section measuring >= 80 mm in diameter 'ecsc' (excl. those containing indentations, ribs, grooves or other deformations produced during the rolling process, and free-cutting steel) 01/01/1988 31/12/1993 -72144099 01/01/1988 31/12/1993 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, of square or other (excl. other rectangular) cross-section measuring < 80 mm in diameter 'ecsc' (excl. those containing indentations, ribs, grooves or other deformations produced during the rolling process, and free-cutting steel) 01/01/1988 31/12/1993 -721450 01/01/1988 31/12/1995 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, containing by weight >= 0,25% and < 0,6% of carbon "ECSC" (excl. those containing indentations, ribs, grooves or other deformations produced during the rolling process, and free-cutting steel) 01/01/1988 31/12/1995 -72145010 01/01/1988 31/12/1995 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, containing by weight >= 0,25% and < 0,6% of carbon, of rectangular (excl. square) cross-section rolled on four faces "ECSC" (excl. those of free-cutting steel) 01/01/1988 31/12/1995 -72145031 01/01/1994 31/12/1995 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, containing by weight >= 0,25% but < 0,6% carbon, of circular cross-section measuring >= 80 mm diameter "ECSC" (excl. such products with indentations, ribs, grooves or other deformations produced during the rolling process, and such products of free-cutting steel) 01/01/1994 31/12/1995 -72145039 01/01/1994 31/12/1995 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, containing by weight >= 0,25% but < 0,6% carbon, of circular cross-section measuring < 80 mm diameter "ECSC" (excl. such products with indentations, ribs, grooves or other deformations produced during the rolling process, and such products of free-cutting steel) 01/01/1994 31/12/1995 -72145090 01/01/1994 31/12/1995 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, containing by weight >= 0,25% but < 0,6% carbon, of rectangular "including square" cross-section or of other than rectangular or circular cross-section "ECSC" (excl. such products with indentations, ribs, grooves or other deformations produced during the rolling process, and such products of free-cutting steel) 01/01/1994 31/12/1995 -72145091 01/01/1988 31/12/1993 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, containing by weight >= 0.25% and < 0.6% of carbon, of rectangular or other (excl. square) cross-section, whose longest cross-section is >= 80 mm 'ecsc' (excl. those of free-cutting steel) 01/01/1988 31/12/1993 -72145099 01/01/1988 31/12/1993 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, containing by weight >= 0.25% and < 0.6% of carbon, of rectangular or other (excl. square) cross-section, whose longest cross-section is < 80 mm 'ecsc' (excl. those containing indentations, ribs, grooves or other deformations produced during the rolling process, and free-cutting steel) 01/01/1988 31/12/1993 -721460 01/01/1988 31/12/1995 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, containing by weight >= 0,6% of carbon "ECSC" (excl. those containing indentations, ribs, grooves or other deformations produced during the rolling process, and free-cutting steel) 01/01/1988 31/12/1995 -72146000 01/01/1988 31/12/1995 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, containing by weight >= 0,6% of carbon "ECSC" (excl. those containing indentations, ribs, grooves or other deformations produced during the rolling process, and free-cutting steel) 01/01/1988 31/12/1995 -721491 01/01/1996 31/12/2500 LIBEN Bars and rods, of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, of rectangular "other than square" cross-section (excl. containing indentations, ribs, grooves or other deformations produced during the rolling process, bars and rods twisted after rolling and free-cutting steel) 01/01/1996 31/12/2500 -72149110 01/01/1996 31/12/2500 LIBEN Bars and rods of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, containing by weight < 0,25% of carbon, of rectangular "other than square" cross-section (excl. those with indentations, ribs, grooves or other deformations produced during the rolling process, bars and rods twisted after rolling, and free-cutting steel) 01/01/1996 31/12/2500 -72149190 01/01/1996 31/12/2500 LIBEN Other bars and rods of iron or non-alloy steel, only hot-rolled, only hot-drawn or only hot-extruded, containing by weight >= 0,25% of carbon, of rectangular "other than square" cross-section (excl. those with indentations, ribs, grooves or other deformations produced during the rolling process, bars and rods twisted after rolling, and free-cutting steel) 01/01/1996 31/12/2500 -721499 01/01/1996 31/12/2500 LIBEN Bars and rods, of iron or non-alloy steel, only hot-rolled, only hot-drawn or only hot-extruded (excl. of rectangular [other than square] cross-section and those containing indentations, ribs, grooves or other deformations produced during the rolling process, and of non-alloy free-cutting steel) 01/01/1996 31/12/2500 -72149910 01/01/1996 31/12/2500 LIBEN Bars and rods of the type used for concrete reinforcement, smooth, of iron or non-alloy steel, only hot-rolled, only hot-drawn or only hot-extruded, containing < 0,25% of carbon, of square cross-section or of a cross-section other than rectangular 01/01/1996 31/12/2500 -72149931 01/01/1996 31/12/2500 LIBEN Bars and rods of iron or non-alloy steel, only hot-rolled, hot-drawn or hot-extruded, containing < 0,25% of carbon, of circular cross-section, of a maximum diameter of >= 80 mm (other than of free-cutting steel, smooth bars and rods, for reinfoced concrete, or bars and rods containing indentations, ribs, grooves or other deformations produced during the rolling process, or wound after rolling) 01/01/1996 31/12/2500 -72149939 01/01/1996 31/12/2500 LIBEN Bars and rods of iron or non-alloy steel, only hot-rolled, hot-drawn or hot-extruded, containing < 0,25% of carbon, of circular cross-section of a maximum diameter of < 80 mm (other than of free-cutting steel, smooth bars and rods, for reinforced concrete, or bars and rods containing indentations, ribs, grooves or other deformations produced during the rolling process, or wound after rolling) 01/01/1996 31/12/2500 -72149950 01/01/1996 31/12/2500 LIBEN Bars and rods of iron or non-alloy steel, only hot-rolled, hot-drawn or hot-extruded, containing by weight < 0,25% of carbon, of square cross-section or of a cross-section other than square or circular (other than of free-cutting steel, smooth bars and rods, for reinforced concrete, or bars and rods containing indentations, ribs, grooves or other deformations produced during the rolling process, or wound after rolling) 01/01/1996 31/12/2500 -72149961 01/01/1996 31/12/2003 LIBEN Bars and rods of iron or non-alloy steel, only hot-rolled, only hot-drawn or only hot-extruded, containing by weight >= 0,25% but < 0,6% carbon, of circular cross-section measuring >= 80 mm in diameter (excl. bars and rods with indentations, ribs, grooves or other deformations produced during the rolling process, twisted after rolling, and of free-cutting steel) 01/01/1996 31/12/2003 -72149969 01/01/1996 31/12/2003 LIBEN Bars and rods of iron or non-alloy steel, only hot-rolled, only hot-drawn or only hot-extruded, containing by weight >= 0,25% but < 0,6% carbon, of circular cross-section measuring < 80 mm in diameter (excl. with indentations, ribs, grooves or other deformations produced during the rolling process, twisted after rolling, and of free-cutting steel) 01/01/1996 31/12/2003 -72149971 01/01/2004 31/12/2500 LIBEN Bars and rods of iron or non-alloy steel, only hot-rolled, only hot-drawn or only hot-extruded, containing by weight >= 0,25% carbon, of circular cross-section measuring >= 80 mm in diameter (excl. bars and rods with indentations, ribs, grooves or other deformations produced during the rolling process, twisted after rolling, and of free-cutting steel) 01/01/2004 31/12/2500 -72149979 01/01/2004 31/12/2500 LIBEN Bars and rods of iron or non-alloy steel, only hot-rolled, only hot-drawn or only hot-extruded, containing by weight >= 0,25% carbon, of circular cross-section measuring < 80 mm in diameter (excl. bars and rods with indentations, ribs, grooves or other deformations produced during the rolling process, twisted after rolling, and of free-cutting steel) 01/01/2004 31/12/2500 -72149980 01/01/1996 31/12/2003 LIBEN Bars and rods of iron or non-alloy steel, only hot-rolled, only hot-drawn or only hot-extruded, containing by weight >= 0,25% but < 0,6% carbon, of square or of other than rectangular or circular cross-section (excl. indentations, ribs, grooves or other deformations produced during the rolling process, twisted fter rolling, and of free-cutting steel) 01/01/1996 31/12/2003 -72149990 01/01/1996 31/12/2003 LIBEN Bars and rods of iron or non-alloy steel, only hot-rolled, only hot-drawn or only hot-extruded, containing by weight >= 0,6% of carbon (excl. with indentations, ribs, grooves or other deformations produced during the rolling process, twisted after rolling, and of free-cutting steel) 01/01/1996 31/12/2003 -72149995 01/01/2004 31/12/2500 LIBEN Bars and rods of iron or non-alloy steel, only hot-rolled, only hot-drawn or only hot-extruded, containing by weight >= 0,25% carbon, of square or of other than rectangular or circular cross-section (excl. indentations, ribs, grooves or other deformations produced during the rolling process, twisted fter rolling, and of free-cutting steel) 01/01/2004 31/12/2500 -7215 01/01/1988 31/12/2500 LIBEN Bars and rods, of iron or non-alloy steel, cold-formed or cold-finished, whether or not further worked, or hot-formed and further worked, n.e.s. 01/01/1988 31/12/2500 -721510 01/01/1988 31/12/2500 LIBEN Bars and rods, of non-alloy free-cutting steel, not further worked than cold-formed or cold-finished 01/01/1988 31/12/2500 -72151000 01/01/1988 31/12/2500 LIBEN Bars and rods, of non-alloy free-cutting steel, not further worked than cold-formed or cold-finished 01/01/1988 31/12/2500 -721520 01/01/1988 31/12/1995 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than cold-formed or cold-finished, containing by weight < 0,25% of carbon (excl. those of free-cutting steel) 01/01/1988 31/12/1995 -72152000 01/01/1988 31/12/1989 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than cold-formed or cold-finished, containing by weight < 0.25% of carbon (excl. those of free-cutting steel) 01/01/1988 31/12/1989 -72152010 01/01/1990 31/12/1995 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than cold-formed or cold-finished, containing by weight < 0,25% of carbon of rectangular (excl. square) cross-section (excl. those of free-cutting steel) 01/01/1990 31/12/1995 -72152090 01/01/1990 31/12/1995 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than cold-formed or cold-finished, containing by weight < 0,25% of carbon, of square or other (excl. other rectangular) cross-section (excl. those of free-cutting steel) 01/01/1990 31/12/1995 -721530 01/01/1988 31/12/1995 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than cold-formed or cold-finished, containing by weight >= 0,25% and < 0,6% of carbon (excl. those of free-cutting steel) 01/01/1988 31/12/1995 -72153000 01/01/1988 31/12/1995 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than cold-formed or cold-finished, containing by weight >= 0,25% and < 0,6% of carbon (excl. those of free-cutting steel) 01/01/1988 31/12/1995 -721540 01/01/1988 31/12/1995 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than cold-formed or cold-finished, containing by weight >= 0,6% of carbon (excl. those of free-cutting steel) 01/01/1988 31/12/1995 -72154000 01/01/1988 31/12/1995 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than cold-formed or cold-finished, containing by weight >= 0,6% of carbon (excl. those of free-cutting steel) 01/01/1988 31/12/1995 -721550 01/01/1996 31/12/2500 LIBEN Bars and rods, of iron or non-alloy steel, not further worked than cold-formed or cold-finished (excl. of free-cutting steel) 01/01/1996 31/12/2500 -72155011 01/01/1996 31/12/2500 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than cold-formed or cold-finished, containing by weight < 0,25% of carbon of rectangular "other than square" cross-section (excl. those of free-cutting steel) 01/01/1996 31/12/2500 -72155019 01/01/1996 31/12/2500 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than cold-formed or cold-finished, containing by weight < 0,25% of carbon, of square or other than rectangular cross-section (excl. those of free-cutting steel) 01/01/1996 31/12/2500 -72155030 01/01/1996 31/12/2003 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than cold-formed or cold-finished, containing by weight >= 0,25% and < 0,6% of carbon (excl. those of free-cutting steel) 01/01/1996 31/12/2003 -72155080 01/01/2004 31/12/2500 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than cold-formed or cold-finished, containing by weight >= 0,25% of carbon (excl. those of free-cutting steel) 01/01/2004 31/12/2500 -72155090 01/01/1996 31/12/2003 LIBEN Other bars and rods of iron or non-alloy steel, not further worked than cold-formed or cold-finished, containing by weight >= 0,6% of carbon (excl. those of free-cutting steel) 01/01/1996 31/12/2003 -721590 01/01/1988 31/12/2500 LIBEN Bars or rods, of iron or non-alloy steel, cold-formed or cold-finished and further worked or hot-formed and further worked, n.e.s. 01/01/1988 31/12/2500 -72159000 01/01/2004 31/12/2500 LIBEN Bars or rods, of iron or non-alloy steel, cold-formed or cold-finished and further worked or hot-formed and further worked, n.e.s. 01/01/2004 31/12/2500 -72159010 01/01/1988 31/12/2003 LIBEN Other bars and rods of iron or non-alloy steel, hot-rolled, hot-drawn or hot-extruded, not further worked than clad 01/01/1988 31/12/2003 -72159090 01/01/1988 31/12/2003 LIBEN Other bars and rods of iron or non-alloy steel, cold-formed or cold-finished and further worked, or hot-formed and further worked, n.e.s. (excl. hot-rolled, hot-drawn or hot-extruded, not further worked than clad, and forged products) 01/01/1988 31/12/2003 -7216 01/01/1988 31/12/2500 LIBEN Angles, shapes and sections of iron or non-alloy steel, n.e.s. 01/01/1988 31/12/2500 -721610 01/01/1988 31/12/2500 LIBEN U, I or H sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or extruded, of a height of < 80 mm 01/01/1988 31/12/2500 -72161000 01/01/1988 31/12/2500 LIBEN U, I or H sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or extruded, of a height of < 80 mm 01/01/1988 31/12/2500 -721621 01/01/1988 31/12/2500 LIBEN L sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or extruded, of a height of < 80 mm 01/01/1988 31/12/2500 -72162100 01/01/1988 31/12/2500 LIBEN L sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or extruded, of a height of < 80 mm 01/01/1988 31/12/2500 -721622 01/01/1988 31/12/2500 LIBEN T sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or extruded, of a height of < 80 mm 01/01/1988 31/12/2500 -72162200 01/01/1988 31/12/2500 LIBEN T sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or extruded, of a height of < 80 mm 01/01/1988 31/12/2500 -721631 01/01/1988 31/12/2500 LIBEN U sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, of a height >= 80 mm 01/01/1988 31/12/2500 -72163100 01/01/1988 31/12/1989 LIBEN U sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or extruded, of a height of >= 80 mm 'ecsc' 01/01/1988 31/12/1989 -72163110 01/01/2004 31/12/2500 LIBEN U sections of iron or non-alloy steel, simply hot-rolled, hot-drawn or extruded, of a height >= 80 mm but <= 220 mm 01/01/2004 31/12/2500 -72163111 01/01/1990 31/12/2003 LIBEN U sections with parallel flange faces, of iron or non-alloy steel, simply hot-rolled, hot-drawn or extruded, of a height >= 80 mm but <= 220 mm 01/01/1990 31/12/2003 -72163119 01/01/1990 31/12/2003 LIBEN U sections of iron or non-alloy steel, simply hot-rolled, hot-drawn or extruded, of a height >= 80 mm but <= 220 mm (excl. 7216.31.11) 01/01/1990 31/12/2003 -72163190 01/01/2004 31/12/2500 LIBEN U sections of iron or non-alloy steel, simply hot-rolled, hot-drawn or extruded, of a height > 220 mm 01/01/2004 31/12/2500 -72163191 01/01/1990 31/12/2003 LIBEN U sections with parallel flange faces, of iron or non-alloy steel, simply hot-rolled, hot-drawn or extruded, of a height > 220 mm 01/01/1990 31/12/2003 -72163199 01/01/1990 31/12/2003 LIBEN U sections of iron or non-alloy steel, simply hot-rolled, hot-drawn or extruded, of a height > 220 mm (excl. 7216.31.91) 01/01/1990 31/12/2003 -721632 01/01/1988 31/12/2500 LIBEN I sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, of a height >= 80 mm 01/01/1988 31/12/2500 -72163200 01/01/1988 31/12/1989 LIBEN I sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or extruded, of a height of >= 80 mm 'ecsc' 01/01/1988 31/12/1989 -72163211 01/01/1990 31/12/2500 LIBEN I sections with parallel flange faces, of iron or non-alloy steel, simply hot-rolled, hot-drawn or extruded, of a height >= 80 mm but <= 220 mm 01/01/1990 31/12/2500 -72163219 01/01/1990 31/12/2500 LIBEN I sections of iron or non-alloy steel, simply hot-rolled, hot-drawn or extruded, of a height >= 80 mm but <= 220 mm (excl. 7216.32.11) 01/01/1990 31/12/2500 -72163291 01/01/1990 31/12/2500 LIBEN I sections with parallel flange faces, of iron or non-alloy steel, simply hot-rolled, hot-drawn or extruded, of a height > 220 mm 01/01/1990 31/12/2500 -72163299 01/01/1990 31/12/2500 LIBEN I sections of iron or non-alloy steel, simply hot-rolled, hot-drawn or extruded, of a height > 220 mm (excl. 7216.32.91) 01/01/1990 31/12/2500 -721633 01/01/1988 31/12/2500 LIBEN H sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, of a height >= 80 mm 01/01/1988 31/12/2500 -72163300 01/01/1988 31/12/1989 LIBEN H sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or extruded, of a height of >= 80 mm 'ecsc' 01/01/1988 31/12/1989 -72163310 01/01/1990 31/12/2500 LIBEN H sections of iron or non-alloy steel, simply hot-rolled, hot-drawn or extruded, of a height >= 80 mm but <= 180 mm 01/01/1990 31/12/2500 -72163390 01/01/1990 31/12/2500 LIBEN H sections of iron or non-alloy steel, simply hot-rolled, hot-drawn or extruded, of a height > 180 mm 01/01/1990 31/12/2500 -721640 01/01/1988 31/12/2500 LIBEN L sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, of a height >= 80 mm 01/01/1988 31/12/2500 -72164010 01/01/1988 31/12/2500 LIBEN L sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or extruded, of a height of >= 80 mm 01/01/1988 31/12/2500 -72164090 01/01/1988 31/12/2500 LIBEN T sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or extruded, of a height of >= 80 mm 01/01/1988 31/12/2500 -721650 01/01/1988 31/12/2500 LIBEN Sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded (excl. U, I, H, L or T sections) 01/01/1988 31/12/2500 -72165010 01/01/1988 31/12/2500 LIBEN Sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded, with a cross-section which is capable of being enclosed in a square the side of which is <= 80 mm (excl. U, I, H, L or T sections) 01/01/1988 31/12/2500 -72165090 01/01/1988 31/12/1993 LIBEN Sections of iron or non-alloy steel, not further worked than hot-rolled, hot-drawn or hot-extruded 'ecsc' (excl. those with a cross-section which is capable of being enclosed in a square the side of which is 80 mm, and u, i, h, l, or t sections) 01/01/1988 31/12/1993 -72165091 01/01/1994 31/12/2500 LIBEN Bulb sections "bulb flat", only hot-rolled, hot-drawn or hot-extruded 01/01/1994 31/12/2500 -72165099 01/01/1994 31/12/2500 LIBEN Profile of iron or non-alloy steel, only hot-rolled, hot-drawn or hot-extruded (other than with a cross-section which is capable of being enclosed in a square the side of which is <= 80 mm, and U-, I-, H-, L- or T-sections and ribbed sections [ribbed steel]) 01/01/1994 31/12/2500 -721660 01/01/1988 31/12/1995 LIBEN Sections of iron or non-alloy steel, not further worked than cold-formed or cold-finished (excl. profiled sheet) 01/01/1988 31/12/1995 -72166010 01/01/1988 31/12/1988 LIBEN No label available 01/01/1988 31/12/1988 -72166011 01/01/1989 31/12/1995 LIBEN c, l, u, z, omega or open-ended sections of iron or non-alloy steel, simply cold-formed or cold-finished, obtained from flat-rolled products 01/01/1989 31/12/1995 -72166019 01/01/1989 31/12/1995 LIBEN Angles, shapes and sections (other than c, l, u, z, omega or open-ended sections) of iron or non-alloy steel, simply cold-formed or cold-finished, obtained from flat-rolled products 01/01/1989 31/12/1995 -72166090 01/01/1988 31/12/1995 LIBEN Sections of iron or non-alloy steel, not further worked than cold-formed or cold-finished (excl. those produced from flat-rolled products) 01/01/1988 31/12/1995 -721661 01/01/1996 31/12/2500 LIBEN Angles, shapes and sections, of iron or non-alloy steel, from flat-rolled products simply cold-formed or cold-finished (excl. profiled sheet) 01/01/1996 31/12/2500 -72166110 01/01/1996 31/12/2500 LIBEN c, l, u, z, omega or open-ended sections of iron or non-alloy steel, simply cold-formed or cold-finished, obtained from flat-rolled products 01/01/1996 31/12/2500 -72166190 01/01/1996 31/12/2500 LIBEN Angles, shapes and sections (other than c, l, u, z, omega or open-ended sections) of iron or non-alloy steel, simply cold-formed or cold-finished, obtained from flat-rolled products 01/01/1996 31/12/2500 -721669 01/01/1996 31/12/2500 LIBEN Angles, shapes and sections, of iron or non-alloy steel, not further worked than cold-formed or cold-finished (excl. profiled sheet) 01/01/1996 31/12/2500 -72166900 01/01/1996 31/12/2500 LIBEN Angles, shapes and sections, of iron or non-alloy steel, not further worked than cold-formed or cold-finished (excl. profiled sheet) 01/01/1996 31/12/2500 -721690 01/01/1988 31/12/1995 LIBEN Sections of iron or non-alloy steel, cold-formed or cold-finished and further worked, or not further worked than forged, or forged, or hot-formed by other means and further worked, n.e.s. 01/01/1988 31/12/1995 -72169010 01/01/1988 31/12/1995 LIBEN Sections of iron or non-alloy steel, hot-rolled, hot drawn or hot-extruded, not further worked than clad "ECSC" 01/01/1988 31/12/1995 -72169050 01/01/1988 31/12/1995 LIBEN Sections or iron or non-alloy steel, forged 01/01/1988 31/12/1995 -72169060 01/01/1989 31/12/1995 LIBEN Hot-rolled, hot-drawn or extruded angles, shapes and sections of iron or non-alloy steel (excl. 7216.10.00 to 7216.90.10) 01/01/1989 31/12/1995 -72169091 01/01/1988 31/12/1995 LIBEN Sheets sheets of iron or non-alloy steel, cold-formed or cold finished, profiled "ribbed" 01/01/1988 31/12/1995 -72169093 01/01/1989 31/12/1995 LIBEN Angles, shapes and sections of iron or non-alloy steel, cold-formed or cold-finished and obtained from flat-rolled products (excl. profiled -ribbed- sheets), plated or coated with zinc, of a thickness < 2,5 mm 01/01/1989 31/12/1995 -72169095 01/01/1989 31/12/1995 LIBEN Angles, shapes and sections of iron or non-alloy steel, cold-formed or cold-finished and obtained from flat-rolled products (excl. profiled -ribbed- sheets), plated or coated with zinc, of a thickness >= 2,5 mm 01/01/1989 31/12/1995 -72169097 01/01/1989 31/12/1995 LIBEN Angles, shapes and sections of iron or non-alloy steel, cold-formed or cold-finished and obtained from flat-rolled products (excl. 7216.60.11 to 7216.90.95) 01/01/1989 31/12/1995 -72169098 01/01/1989 31/12/1995 LIBEN Angles, shapes and sections of iron or non-alloy steel, cold-formed or cold-finished (excl. 7216.60.11 to 7216.90.97) 01/01/1989 31/12/1995 -72169099 01/01/1988 31/12/1988 LIBEN No label available 01/01/1988 31/12/1988 -721691 01/01/1996 31/12/2500 LIBEN Angles, shapes and sections, of iron or non-alloy steel, cold-formed or cold-finished from flat-rolled products and further worked 01/01/1996 31/12/2500 -72169110 01/01/1996 31/12/2500 LIBEN Sheets sheets of iron or non-alloy steel, cold-formed or cold finished, profiled "ribbed" 01/01/1996 31/12/2500 -72169130 01/01/1996 31/12/2003 LIBEN Angles, shapes and sections of iron or non-alloy steel, cold-formed or cold-finished and obtained from flat-rolled products (excl. profiled -ribbed- sheets), plated or coated with zinc, of a thickness < 2,5 mm 01/01/1996 31/12/2003 -72169150 01/01/1996 31/12/2003 LIBEN Angles, shapes and sections of iron or non-alloy steel, cold-formed or cold-finished and obtained from flat-rolled products (excl. profiled -ribbed- sheets), plated or coated with zinc, of a thickness of >= 2,5 mm 01/01/1996 31/12/2003 -72169180 01/01/2004 31/12/2500 LIBEN Angles, shapes and sections, of iron or non-alloy steel, cold-formed or cold-finished from flat-rolled products and further worked (excl. profiled sheet) 01/01/2004 31/12/2500 -72169190 01/01/1996 31/12/2003 LIBEN Angles, shapes and sections of iron or non-alloy steel, cold-formed or cold-finished and obtained from flat-rolled products (excl. 7216.60-11 to 7216.90-95) 01/01/1996 31/12/2003 -721699 01/01/1996 31/12/2500 LIBEN Angles, shapes and sections, of iron or non-alloy steel, cold-formed or cold-finished and further worked, or hot-forged, or hot-formed by other means and further worked, n.e.s. (excl. from flat-rolled products) 01/01/1996 31/12/2500 -72169900 01/01/2004 31/12/2500 LIBEN Angles, shapes and sections, of iron or non-alloy steel, cold-formed or cold-finished and further worked, or hot-forged, or hot-formed by other means and further worked, n.e.s. (excl. from flat-rolled products) 01/01/2004 31/12/2500 -72169910 01/01/1996 31/12/2003 LIBEN Sections of iron or non-alloy steel, hot-rolled, hot drawn or hot-extruded, not further worked than clad 01/01/1996 31/12/2003 -72169990 01/01/1996 31/12/2003 LIBEN Angles, shapes and sections of iron or non-alloy steel, hot-rolled, hot-drawn or hot-extruded and further worked, or cold-formed or cold-finished and further worked (excl. profiled sheet, other angles, shapes and sections cold-formed from flat-rolled products, and hot-rolled, hot-drawn or only hot-extruded and cladded) 01/01/1996 31/12/2003 -7217 01/01/1988 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils (excl. bars and rods) 01/01/1988 31/12/2500 -721710 01/01/1996 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, not plated or coated, whether or not polished (excl. bars and rods) 01/01/1996 31/12/2500 -72171010 01/01/1996 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight < 0,25% carbon, not plated or coated, whether or not polished, with a maximum cross-sectional dimension of < 0,8 mm 01/01/1996 31/12/2500 -72171031 01/01/1996 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight < 0,25% carbon, with indentations, ribs, grooves or other deformations produced during the rolling process, not plated or coated, with a maximum cross-sectional dimension of >= 0,8 mm 01/01/1996 31/12/2500 -72171039 01/01/1996 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight < 0,25% carbon, not plated or coated, with a maximum cross-sectional dimension of >= 0,8 mm (without indentations, ribs, grooves or other deformations produced during the rolling process) 01/01/1996 31/12/2500 -72171050 01/01/1996 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight >= 0,25% but < 0,6% carbon, not plated or coated, whether or not polished (excl. hot-rolled bars and rods) 01/01/1996 31/12/2500 -72171090 01/01/1996 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight >= 0,6% carbon, not plated or coated, whether or not polished (excl. hot-rolled bars and rods) 01/01/1996 31/12/2500 -721711 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in rings or coils, containing by weight < 0,25% of carbon, not plated or coated, whether or not polished (excl. bars and rods) 01/01/1988 31/12/1995 -72171110 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight < 0,25% carbon, not plated or coated, whether or not polished, with a maximum cross-sectional dimension of < 0,8 mm 01/01/1988 31/12/1995 -72171190 01/01/1988 31/12/1990 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight < 0.25 % carbon, not plated or coated, whether or not polished, with a maximum cross-sectional dimension of < 0.8 mm (excl. hot-rolled bars and rods) 01/01/1988 31/12/1990 -72171191 01/01/1991 31/12/1995 LIBEN Wire of iron or non-alloy steel, containing by weight < 0,25% carbon, with identations, ribs, grooves or other deformations produced during the rolling process (not plated or coated), maximum cross-sectional dimension >= 0,8 mm 01/01/1991 31/12/1995 -72171199 01/01/1991 31/12/1995 LIBEN Wire of iron or non-alloy steel, containing by weight < 0,25% carbon (not plated or coated), maximum cross-sectional dimension >= 0,8 mm (without identations, ribs, grooves or other deformations produced during the rolling process) 01/01/1991 31/12/1995 -721712 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in rings or coils, containing by weight < 0,25% of carbon, plated or coated with zinc (excl. bars and rods) 01/01/1988 31/12/1995 -72171210 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight < 0,25% carbon, plated or coated with zinc, with a maximum cross-sectional dimension of < 0,8 mm 01/01/1988 31/12/1995 -72171290 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight < 0,25% carbon, plated or coated with zinc, with a maximum cross-sectional dimension of < 0,8 mm (excl. hot-rolled bars and rods) 01/01/1988 31/12/1995 -721713 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in rings or coils, containing by weight < 0,25% of carbon, plated or coated with base metals (excl. plated or coated with zinc, and bars and rods) 01/01/1988 31/12/1995 -72171311 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight < 0,25% carbon, copper-coated, with a maximum cross-sectional dimension of < 0,8 mm 01/01/1988 31/12/1995 -72171319 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight < 0,25% carbon, plated or coated with base metals, with a maximum cross-sectional dimension of < 0,8 mm (excl. products plated or coated with zinc or copper) 01/01/1988 31/12/1995 -72171391 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight < 0,25% carbon, copper-coated, with a maximum cross-sectional dimension of < 0,8 mm (excl. hot-rolled bars and rods) 01/01/1988 31/12/1995 -72171399 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight < 0,25% carbon, plated or coated with base metals, with a maximum cross-sectional dimension of < 0,8 mm (excl. products plated or coated with zinc or copper and hot-rolled bars and rods) 01/01/1988 31/12/1995 -721719 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in rings or coils, containing by weight < 0,25% of carbon, plated or coated (excl. plated or coated with base metals, and bars and rods) 01/01/1988 31/12/1995 -72171910 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight < 0,25% carbon, plated or coated, with a maximum cross-sectional dimension of < 0,8 mm (excl. products plated or coated with base metals) 01/01/1988 31/12/1995 -72171990 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight < 0,25% carbon, plated or coated, with a maximum cross-sectional dimension of < 0,8 mm (excl. products plated or coated with base metals and hot-rolled bars and rods) 01/01/1988 31/12/1995 -721720 01/01/1996 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, plated or coated with zinc (excl. bars and rods) 01/01/1996 31/12/2500 -72172010 01/01/1996 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight < 0,25% carbon, plated or coated with zinc, with a maximum cross-sectional dimension of < 0,8 mm 01/01/1996 31/12/2500 -72172030 01/01/1996 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight < 0,25% carbon, plated or coated with zinc, with a maximum cross-sectional dimension of < 0,8 mm (excl. bars and rods) 01/01/1996 31/12/2500 -72172050 01/01/1996 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight >= 0,25% but < 0,6% carbon, plated or coated with zinc (excl. bars and rods) 01/01/1996 31/12/2500 -72172090 01/01/1996 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight >= 0,6% carbon, plated or coated with zinc (excl. bars and rods) 01/01/1996 31/12/2500 -721721 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight >= 0,25% but < 0,6% carbon, not plated or coated, whether or not polished (excl. hot-rolled bars and rods) 01/01/1988 31/12/1995 -72172100 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight >= 0,25% but < 0,6% carbon, not plated or coated, whether or not polished (excl. hot-rolled bars and rods) 01/01/1988 31/12/1995 -721722 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight >= 0,25% but < 0,6% carbon, plated or coated with zinc (excl. hot-rolled bars and rods) 01/01/1988 31/12/1995 -72172200 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight >= 0,25% but < 0,6% carbon, plated or coated with zinc (excl. hot-rolled bars and rods) 01/01/1988 31/12/1995 -721723 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight >= 0,25% but < 0,6% carbon, plated or coated with base metals (excl. products plated or coated with zinc, and hot-rolled bars and rods) 01/01/1988 31/12/1995 -72172300 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight >= 0,25% but < 0,6% carbon, plated or coated with base metals (excl. products plated or coated with zinc, and hot-rolled bars and rods) 01/01/1988 31/12/1995 -721729 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight >= 0,25% but < 0,6% carbon, plated or coated (excl. products plated or coated with with base metals, and hot-rolled bars and rods) 01/01/1988 31/12/1995 -72172900 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight >= 0,25% but < 0,6% carbon, plated or coated (excl. products plated or coated with with base metals, and hot-rolled bars and rods) 01/01/1988 31/12/1995 -721730 01/01/1996 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, plated or coated with base metals (excl. plated or coated with zinc, and bars and rods) 01/01/1996 31/12/2500 -72173011 01/01/1996 31/12/2003 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight < 0,25% carbon, copper-coated, with a maximum cross-sectional dimension of < 0,8 mm 01/01/1996 31/12/2003 -72173019 01/01/1996 31/12/2003 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight < 0,25% carbon, plated or coated with base metals, with a maximum cross-sectional dimension of < 0,8 mm (excl. products plated or coated with zinc or copper) 01/01/1996 31/12/2003 -72173031 01/01/1996 31/12/2003 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight < 0,25% carbon, copper-coated, with a maximum cross-sectional dimension of < 0,8 mm (excl. bars and rods) 01/01/1996 31/12/2003 -72173039 01/01/1996 31/12/2003 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight < 0,25% carbon, plated or coated with base metals, with a maximum cross-sectional dimension of < 0,8 mm (excl. products plated or coated with zinc or copper and bars and rods) 01/01/1996 31/12/2003 -72173041 01/01/2004 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight < 0,25% carbon, copper-coated (excl. bars and rods) 01/01/2004 31/12/2500 -72173049 01/01/2004 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight < 0,25% carbon, plated or coated with base metals (excl. products plated or coated with zinc or copper and bars and rods) 01/01/2004 31/12/2500 -72173050 01/01/1996 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight >= 0,25% but < 0,6% carbon, plated or coated with base metals (excl. products plated or coated with zinc, and bars and rods) 01/01/1996 31/12/2500 -72173090 01/01/1996 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight >= 0,6% carbon, plated or coated with base metals (excl. products plated or coated with zinc, and bars and rods) 01/01/1996 31/12/2500 -721731 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight >= 0,6% carbon, not plated or coated, whether or not polished (excl. hot-rolled bars and rods) 01/01/1988 31/12/1995 -72173100 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight >= 0,6% carbon, not plated or coated, whether or not polished (excl. hot-rolled bars and rods) 01/01/1988 31/12/1995 -721732 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight >= 0,6% carbon, plated or coated with zinc (excl. hot-rolled bars and rods) 01/01/1988 31/12/1995 -72173200 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight >= 0,6% carbon, plated or coated with zinc (excl. hot-rolled bars and rods) 01/01/1988 31/12/1995 -721733 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight >= 0,6% carbon, plated or coated with base metals (excl. products plated or coated with zinc, and hot-rolled bars and rods) 01/01/1988 31/12/1995 -72173300 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight >= 0,6% carbon, plated or coated with base metals (excl. products plated or coated with zinc, and hot-rolled bars and rods) 01/01/1988 31/12/1995 -721739 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight >= 0,6% carbon, plated or coated (excl. products plated or coated with base metals, and hot-rolled bars and rods) 01/01/1988 31/12/1995 -72173900 01/01/1988 31/12/1995 LIBEN Wire of iron or non-alloy steel, in reels or coils, containing by weight >= 0,6% carbon, plated or coated (excl. products plated or coated with base metals, and hot-rolled bars and rods) 01/01/1988 31/12/1995 -721790 01/01/1996 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, plated or coated (excl. plated or coated with base metals, and bars and rods) 01/01/1996 31/12/2500 -72179010 01/01/1996 31/12/2003 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight < 0,25% carbon, plated or coated, with a maximum cross-sectional dimension of < 0,8 mm (excl. products plated or coated with base metals) 01/01/1996 31/12/2003 -72179020 01/01/2004 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight < 0,25% carbon, plated or coated (excl. products plated or coated with base metals and bars and rods) 01/01/2004 31/12/2500 -72179030 01/01/1996 31/12/2003 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight < 0,25% carbon, plated or coated, with a maximum cross-sectional dimension of < 0,8 mm (excl. products plated or coated with base metals and bars and rods) 01/01/1996 31/12/2003 -72179050 01/01/1996 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight >= 0,25% but < 0,6% carbon, plated or coated (excl. products plated or coated with with base metals, and bars and rods) 01/01/1996 31/12/2500 -72179090 01/01/1996 31/12/2500 LIBEN Wire of iron or non-alloy steel, in coils, containing by weight >= 0,6% carbon, plated or coated (excl. products plated or coated with base metals, and bars and rods) 01/01/1996 31/12/2500 -7218 01/01/1988 31/12/2500 LIBEN Stainless steel in ingots or other primary forms (excl. remelting scrap ingots and products obtained by continuous casting); semi-finished products of stainless steel 01/01/1988 31/12/2500 -721810 01/01/1988 31/12/2500 LIBEN Steel, stainless, in ingots and other primary forms (excl. waste and scrap in ingot form, and products obtained by continuous casting) 01/01/1988 31/12/2500 -72181000 01/01/1988 31/12/2500 LIBEN Steel, stainless, in ingots and other primary forms (excl. waste and scrap in ingot form, and products obtained by continuous casting) 01/01/1988 31/12/2500 -721890 01/01/1988 31/12/1995 LIBEN Semi-finished products of stainless steel 01/01/1988 31/12/1995 -72189011 01/01/1988 31/12/1995 LIBEN Semi-finished products of stainless steel, of rectangular "including square" cross-section, rolled or obtained by continuous casting, of a width measuring < twice the thickness, containing by weight >= 2,5 nickel "ECSC" 01/01/1988 31/12/1995 -72189013 01/01/1988 31/12/1995 LIBEN Semi-finished products of stainless steel, of rectangular "including square" cross-section, rolled or obtained by continuous casting, of a width measuring < twice the thickness, containing by weight < 2,5 nickel "ECSC" 01/01/1988 31/12/1995 -72189015 01/01/1988 31/12/1995 LIBEN Semi-finished products of stainless steel, of rectangular "including square" cross-section, rolled or obtained by continuous casting, of a width measuring >= twice the thickness, containing by weight >= 2,5 nickel "ECSC" 01/01/1988 31/12/1995 -72189019 01/01/1988 31/12/1995 LIBEN Semi-finished products of stainless steel, of rectangular "including square" cross-section, rolled or obtained by continuous casting, of a width measuring >= twice the thickness, containing by weight < 2,5 nickel "ECSC" 01/01/1988 31/12/1995 -72189030 01/01/1988 31/12/1995 LIBEN Semi-finished products of stainless steel, of rectangular "including square" cross-section, forged 01/01/1988 31/12/1995 -72189050 01/01/1988 31/12/1995 LIBEN Semi-finished products of stainless steel, of circular or polygonal cross-section, rolled or obtained by continuous casting "ECSC" 01/01/1988 31/12/1995 -72189091 01/01/1988 31/12/1995 LIBEN Semi-finished products of stainless steel, of circular or polygonal cross-section, forged 01/01/1988 31/12/1995 -72189099 01/01/1988 31/12/1995 LIBEN Semi-finished products of stainless steel, forged (excl. products of rectangular "including square", circular or polygonal cross-section) 01/01/1988 31/12/1995 -721891 01/01/1996 31/12/2500 LIBEN Semi-finished products of stainless steel, of rectangular "other than square" cross-section 01/01/1996 31/12/2500 -72189110 01/01/2004 31/12/2500 LIBEN Semi-finished products of stainless steel, of rectangular "other than square" cross-section, containing by weight >= 2,5% nickel 01/01/2004 31/12/2500 -72189111 01/01/1996 31/12/2003 LIBEN Semi-finished products of stainless steel, of rectangular "other than square" cross-section, rolled or obtained by continuous casting, containing by weight >= 2,5% nickel 01/01/1996 31/12/2003 -72189119 01/01/1996 31/12/2003 LIBEN Semi-finished products of stainless steel, of rectangular "other than square" cross-section, rolled or obtained by continuous casting, containing by weight < 2,5 nickel 01/01/1996 31/12/2003 -72189180 01/01/2004 31/12/2500 LIBEN Semi-finished products of stainless steel, of rectangular "other than square" cross-section, containing by weight < 2,5 nickel 01/01/2004 31/12/2500 -72189190 01/01/1996 31/12/2003 LIBEN Semi-finished products of stainless steel, of rectangular "other than square" cross-section, forged 01/01/1996 31/12/2003 -721899 01/01/1996 31/12/2500 LIBEN Semi-finished products of stainless steel (excl. of rectangular [other than square] cross-section) 01/01/1996 31/12/2500 -72189911 01/01/1996 31/12/2500 LIBEN Semi-finished products of stainless steel, of square cross-section, rolled or obtained by continuous casting 01/01/1996 31/12/2500 -72189919 01/01/1996 31/12/2500 LIBEN Semi-finished products of stainless steel, of square cross-section, forged 01/01/1996 31/12/2500 -72189920 01/01/1996 31/12/2500 LIBEN Semi-finished products of stainless steel, of circular cross-section or of cross-section other than square or rectangular, rolled or obtained by continuous casting 01/01/1996 31/12/2500 -72189980 01/01/2004 31/12/2500 LIBEN Semi-finished products of stainless steel, forged (excl. products of square or rectangular cross-section) 01/01/2004 31/12/2500 -72189991 01/01/1996 31/12/2003 LIBEN Semi-finished products of stainless steel, of circular or polygonal cross-section, forged 01/01/1996 31/12/2003 -72189999 01/01/1996 31/12/2003 LIBEN Semi-finished products of stainless steel, forged (excl. products of square or rectangular, circular or polygonal cross-section) 01/01/1996 31/12/2003 -7219 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" 01/01/1988 31/12/2500 -721911 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, in coils, of a thickness of > 10 mm 01/01/1988 31/12/2500 -72191100 01/01/1996 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, in coils, of a thickness of > 10 mm 01/01/1996 31/12/2500 -72191110 01/01/1988 31/12/1995 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, in coils, of a thickness of > 10 mm, containing by weight >= 2,5% nickel "ECSC" 01/01/1988 31/12/1995 -72191190 01/01/1988 31/12/1995 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, in coils, of a thickness of > 10 mm, containing by weight < 2,5% nickel "ECSC" 01/01/1988 31/12/1995 -721912 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of>= 600 mm, not further worked than hot-rolled, in coils, of a thickness of >= 4,7 mm and <= 10 mm 01/01/1988 31/12/2500 -72191210 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, in coils, of a thickness of >= 4,75 mm but <= 10 mm, containing by weight >= 2,5 nickel 01/01/1988 31/12/2500 -72191290 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, in coils, of a thickness of >= 4,75 mm but <= 10 mm, containing by weight < 2,5 nickel 01/01/1988 31/12/2500 -721913 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, in coils, of a thickness of >= 3 mm and < 4,75 mm 01/01/1988 31/12/2500 -72191310 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, in coils, of a thickness of >= 3 mm but <= 4,75 mm, containing by weight >= 2,5 nickel 01/01/1988 31/12/2500 -72191390 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, in coils, of a thickness of >= 3 mm but <= 4,75 mm, containing by weight < 2,5 nickel 01/01/1988 31/12/2500 -721914 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, in coils, of a thickness of < 3 mm 01/01/1988 31/12/2500 -72191410 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, in coils, of a thickness of < 3 mm, containing by weight >= 2,5 nickel 01/01/1988 31/12/2500 -72191490 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, in coils, of a thickness of < 3 mm, containing by weight < 2,5 nickel 01/01/1988 31/12/2500 -721921 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of > 10 mm 01/01/1988 31/12/2500 -72192110 01/01/1988 31/12/1989 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of > 10 mm, containing by weight >= 2.5 nickel 'ecsc' 01/01/1988 31/12/1989 -72192110 01/01/1996 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of > 10 mm, containing by weight >= 2,5 nickel 01/01/1996 31/12/2500 -72192111 01/01/1990 31/12/1995 LIBEN Flat-rolled products of stainless steel (excl. in coils), simply hot-rolled, of a thickness > 13 mm, containing by weight >= 2,5% nickel, of a width >= 600 mm 01/01/1990 31/12/1995 -72192119 01/01/1990 31/12/1995 LIBEN Flat-rolled products of stainless steel (excl. in coils), simply hot-rolled, of a thickness > 10 mm but <= 13 mm, containing by weight >= 2,5% nickel, of a width >= 600 mm 01/01/1990 31/12/1995 -72192190 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of > 10 mm, containing by weight < 2,5 nickel 01/01/1988 31/12/2500 -721922 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of >= 4,75 mm and <= 10 mm 01/01/1988 31/12/2500 -72192210 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of >= 4,75 mm but <= 10 mm, containing by weight >= 2,5% nickel 01/01/1988 31/12/2500 -72192290 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of >= 4,75 mm but <= 10 mm, containing by weight < 2,5% nickel 01/01/1988 31/12/2500 -721923 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of >= 3 mm and < 4,75 mm 01/01/1988 31/12/2500 -72192300 01/01/1996 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of >= 3 mm and < 4,75 mm 01/01/1996 31/12/2500 -72192310 01/01/1988 31/12/1995 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of >= 3 mm but <= 4,75 mm, containing by weight >= 2,5 nickel "ECSC" 01/01/1988 31/12/1995 -72192390 01/01/1988 31/12/1995 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, in coils, of a thickness of >= 3 mm but <= 4,75 mm, containing by weight < 2,5 nickel "ECSC" 01/01/1988 31/12/1995 -721924 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of < 3 mm 01/01/1988 31/12/2500 -72192400 01/01/1996 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of < 3 mm 01/01/1996 31/12/2500 -72192410 01/01/1988 31/12/1995 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of < 3 mm, containing by weight >= 2,5 nickel "ECSC" 01/01/1988 31/12/1995 -72192490 01/01/1988 31/12/1995 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, in coils, of a thickness of < 3 mm, containing by weight < 2,5 nickel "ECSC" 01/01/1988 31/12/1995 -721931 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of >= 4,75 mm 01/01/1988 31/12/2500 -72193100 01/01/1996 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of >= 4,75 mm 01/01/1996 31/12/2500 -72193110 01/01/1988 31/12/1995 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than hot-rolled, in coils, of a thickness of < 4,75 mm, containing by weight >= 2,5 nickel "ECSC" 01/01/1988 31/12/1995 -72193190 01/01/1988 31/12/1995 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than cold-rolled, in coils, of a thickness of < 4,75 mm, containing by weight < 2,5 nickel "ECSC" 01/01/1988 31/12/1995 -721932 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of >= 3 mm but < 4,75 mm 01/01/1988 31/12/2500 -72193210 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of >= 3 mm but <= 4,75 mm, containing by weight >= 2,5% nickel 01/01/1988 31/12/2500 -72193290 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of >= 3 mm but <= 4,75 mm, containing by weight < 2,5% nickel 01/01/1988 31/12/2500 -721933 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of > 1 mm but < 3 mm 01/01/1988 31/12/2500 -72193310 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of > 1 mm but < 3 mm, containing by weight >= 2,5% nickel 01/01/1988 31/12/2500 -72193390 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of > 1 mm but < 3 mm, containing by weight < 2,5% nickel 01/01/1988 31/12/2500 -721934 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of >= 0,5 mm but <= 1 mm 01/01/1988 31/12/2500 -72193410 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of >= 0,5 mm but <= 1 mm, containing by weight >= 2,5% nickel 01/01/1988 31/12/2500 -72193490 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of >= 0,5 mm but <= 1 mm, containing by weight < 2,5% nickel 01/01/1988 31/12/2500 -721935 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of < 0,5 mm 01/01/1988 31/12/2500 -72193510 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of < 0,5 mm, containing by weight >= 2,5% nickel 01/01/1988 31/12/2500 -72193590 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of < 0,5 mm, containing by weight < 2,5% nickel 01/01/1988 31/12/2500 -721990 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked 01/01/1988 31/12/2500 -72199000 01/01/2004 31/12/2005 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked 01/01/2004 31/12/2005 -72199010 01/01/1996 31/12/2003 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", not further worked than surface-treated "incl. cladding" or simply cut into shapes other than square or rectangular 01/01/1996 31/12/2003 -72199011 01/01/1988 31/12/1995 LIBEN 76Flat-rolled products of stainless steel, of a width of >= 600 mm, hot- or cold-rolled, not further worked than surface-treated "including cladding" or simply cut into shapes other than rectangular "including square", containing by weight >= 2,5% nickel "ECSC" 01/01/1988 31/12/1995 -72199019 01/01/1988 31/12/1995 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, hot- or cold-rolled, not further worked than surface-treated "including cladding" or simply cut into shapes other than rectangular "including square", containing by weight < 2,5% nickel "ECSC" 01/01/1988 31/12/1995 -72199020 01/01/2006 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked, perforated 01/01/2006 31/12/2500 -72199080 01/01/2006 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked, non-perforated 01/01/2006 31/12/2500 -72199090 01/01/1996 31/12/2003 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, hot- rolled or cold-rolled "cold-reduced" and further worked (excl. not further worked than surface-treated "incl. cladding" or simply cut into shapes other than square or rectangular) 01/01/1996 31/12/2003 -72199091 01/01/1988 31/12/1995 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, hot- or cold-rolled and further worked, containing by weight >= 2,5% nickel (excl. products not further worked than surface-treated "including cladding" or simply cut into shapes other than rectangular "including square" "ECSC") 01/01/1988 31/12/1995 -72199099 01/01/1988 31/12/1995 LIBEN Flat-rolled products of stainless steel, of a width of >= 600 mm, hot- or cold-rolled and further worked, containing by weight < 2,5% nickel (excl. products not further worked than surface-treated "including cladding" or simply cut into shapes other than rectangular "including square" "ECSC") 01/01/1988 31/12/1995 -7220 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" 01/01/1988 31/12/2500 -722011 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of < 600 mm, not further worked than hot-rolled, of a thickness of >= 4,75 mm 01/01/1988 31/12/2500 -72201100 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of < 600 mm, not further worked than hot-rolled, of a thickness of >= 4,75 mm 01/01/1988 31/12/2500 -722012 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of < 600 mm, not further worked than hot-rolled, of a thickness of < 4,75 mm 01/01/1988 31/12/2500 -72201200 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of < 600 mm, not further worked than hot-rolled, of a thickness of < 4,75 mm 01/01/1988 31/12/2500 -722020 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of < 600 mm, not further worked than cold-rolled "cold-reduced" 01/01/1988 31/12/2500 -72202010 01/01/1988 31/12/2003 LIBEN Flat-rolled products of stainless steel, of a width of > 500 mm but < 600 mm, not further worked than cold-rolled "cold-reduced" 01/01/1988 31/12/2003 -72202021 01/01/2004 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of < 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of >= 3 mm and containing by weight >= 2,5% nickel 01/01/2004 31/12/2500 -72202029 01/01/2004 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of < 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of >= 3 mm and containing by weight < 2,5% nickel 01/01/2004 31/12/2500 -72202031 01/01/1988 31/12/2003 LIBEN Flat-rolled products of stainless steel, of a width of <= 500 mm, not further worked than cold-rolled "cold-reduced", of a thickness of >= 3 mm and containing by weight >= 2,5% nickel 01/01/1988 31/12/2003 -72202039 01/01/1988 31/12/2003 LIBEN Flat-rolled products of stainless steel, of a width of <= 500 mm, not further worked than cold-rolled "cold-reduced", of a thickness of >= 3 mm and containing by weight < 2,5% nickel 01/01/1988 31/12/2003 -72202041 01/01/2004 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of < 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of > 0,35 mm but < 3 mm, and containing by weight >= 2,5% nickel 01/01/2004 31/12/2500 -72202049 01/01/2004 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of < 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of > 0,35 mm but < 3 mm, and containing by weight < 2,5% nickel 01/01/2004 31/12/2500 -72202051 01/01/1988 31/12/2003 LIBEN Flat-rolled products of stainless steel, of a width of <= 500 mm, not further worked than cold-rolled "cold-reduced", of a thickness of > 0,35 mm but < 3 mm, and containing by weight >= 2,5% nickel 01/01/1988 31/12/2003 -72202059 01/01/1988 31/12/2003 LIBEN Flat-rolled products of stainless steel, of a width of <= 500 mm, not further worked than cold-rolled "cold-reduced", of a thickness of > 0,35 mm but < 3 mm, and containing by weight < 2,5% nickel 01/01/1988 31/12/2003 -72202081 01/01/2004 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of < 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of <= 0,35 mm and containing by weight >= 2,5% nickel 01/01/2004 31/12/2500 -72202089 01/01/2004 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of < 600 mm, not further worked than cold-rolled "cold-reduced", of a thickness of <= 0,35 mm and containing by weight < 2,5% nickel 01/01/2004 31/12/2500 -72202091 01/01/1988 31/12/2003 LIBEN Flat-rolled products of stainless steel, of a width of <= 500 mm, not further worked than cold-rolled "cold-reduced", of a thickness of <= 0,35 mm and containing by weight >= 2,5% nickel 01/01/1988 31/12/2003 -72202099 01/01/1988 31/12/2003 LIBEN Flat-rolled products of stainless steel, of a width of <= 500 mm, not further worked than cold-rolled "cold-reduced", of a thickness of <= 0,35 mm and containing by weight < 2,5% nickel 01/01/1988 31/12/2003 -722090 01/01/1988 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked 01/01/1988 31/12/2500 -72209000 01/01/2004 31/12/2005 LIBEN Flat-rolled products of stainless steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked 01/01/2004 31/12/2005 -72209011 01/01/1988 31/12/2003 LIBEN Flat-rolled products of stainless steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", not further worked than surface-treated "incl. cladding" 01/01/1988 31/12/2003 -72209019 01/01/1988 31/12/2003 LIBEN Flat-rolled products of stainless steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked (excl. products not further worked than surface-treated "incl. cladding") 01/01/1988 31/12/2003 -72209020 01/01/2006 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked, perforated 01/01/2006 31/12/2500 -72209031 01/01/1988 31/12/2003 LIBEN Flat-rolled products of stainless steel, of a width of <= 500 mm, hot-rolled, not further worked than clad 01/01/1988 31/12/2003 -72209039 01/01/1988 31/12/2003 LIBEN Flat-rolled products of stainless steel, of a width of <= 500 mm, hot- rolledor cold-rolled "cold-reduced", not further worked than surface-treated "incl. cladding" (excl. products hot-rolled and not further worked than clad) 01/01/1988 31/12/2003 -72209080 01/01/2006 31/12/2500 LIBEN Flat-rolled products of stainless steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked, non-perforated 01/01/2006 31/12/2500 -72209090 01/01/1988 31/12/2003 LIBEN Flat-rolled products of stainless steel, of a width of <= 500 mm, hot- rolled or cold-rolled "cold-reduced" and further worked "incl. cladding" (excl. products hot-rolled and not further worked than clad) 01/01/1988 31/12/2003 -7221 01/01/1988 31/12/2500 LIBEN Bars and rods of stainless steel, hot-rolled, in irregularly wound coils 01/01/1988 31/12/2500 -722100 01/01/1988 31/12/2500 LIBEN Bars and rods of stainless steel, hot-rolled, in irregularly wound coils 01/01/1988 31/12/2500 -72210010 01/01/1988 31/12/2500 LIBEN Bars and rods of stainless steel, hot-rolled, in irregularly wound coils, containing by weight >= 2,5% nickel 01/01/1988 31/12/2500 -72210090 01/01/1988 31/12/2500 LIBEN Bars and rods of stainless steel, hot-rolled, in irregularly wound coils, containing by weight < 2,5% nickel 01/01/1988 31/12/2500 -7222 01/01/1988 31/12/2500 LIBEN Other bars and rods of stainless steel; angles, shapes and sections of stainless steel, n.e.s. 01/01/1988 31/12/2500 -722210 01/01/1988 31/12/1995 LIBEN Other bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or hot-extruded "ECSC" 01/01/1988 31/12/1995 -72221011 01/01/1988 31/12/1995 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, of circular cross-section of a diameter of >= 800 mm, containing by weight >= 2,5% nickel 01/01/1988 31/12/1995 -72221019 01/01/1988 31/12/1995 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, of circular cross-section of a diameter of >= 800 mm, containing by weight < 2,5% nickel 01/01/1988 31/12/1995 -72221021 01/01/1994 31/12/1995 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, of circular cross-section measuring >= 25 mm but < 80 mm diameter and containing by weight >= 2,5% nickel "ECSC" 01/01/1994 31/12/1995 -72221029 01/01/1994 31/12/1995 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, of circular cross-section measuring >= 25 mm but < 80 mm diameter and containing by weight < 2,5% nickel "ECSC" 01/01/1994 31/12/1995 -72221031 01/01/1994 31/12/1995 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, of circular cross-section measuring < 25 mm and containing by weight >= 2,5% nickel "ECSC" 01/01/1994 31/12/1995 -72221039 01/01/1994 31/12/1995 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, of circular cross-section measuring < 25 mm and containing by weight < 2,5% nickel "ECSC" 01/01/1994 31/12/1995 -72221051 01/01/1990 31/12/1993 LIBEN Bars and rods of stainless steel, of rectangular cross-section, simply hot-rolled on 4 faces, containing by weight >= 2.5 % nickel 01/01/1990 31/12/1993 -72221059 01/01/1990 31/12/1993 LIBEN Bars and rods of stainless steel, simply hot-rolled, hot-drawn or extruded, (excl. of circular cross-section and 7222.10-51), containing by weight >= 2.5 % nickel 01/01/1990 31/12/1993 -72221081 01/01/1994 31/12/1995 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, containing by weight >= 2,5% nickel (excl. such products of circular cross-section) 01/01/1994 31/12/1995 -72221089 01/01/1994 31/12/1995 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, containing by weight < 2,5% nickel (excl. such products of circular cross-section) 01/01/1994 31/12/1995 -72221091 01/01/1988 31/12/1989 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, containing by weight >= 2.5 % nickel 'ecsc' (excl. products of circular cross-section of a diameter of >= 800 mm) 01/01/1988 31/12/1989 -72221099 01/01/1988 31/12/1993 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, containing by weight < 2.5 % nickel 'ecsc' (excl. products of circular cross-section of a diameter of >= 800 mm) 01/01/1988 31/12/1993 -722211 01/01/1996 31/12/2500 LIBEN Bars and rods of stainless steel, only hot-rolled, only hot-drawn or only hot-extruded, of circular cross-section 01/01/1996 31/12/2500 -72221111 01/01/1996 31/12/2500 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, of circular cross-section of a diameter of >= 800 mm, containing by weight >= 2,5% nickel 01/01/1996 31/12/2500 -72221119 01/01/1996 31/12/2500 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, of circular cross-section of a diameter of >= 800 mm, containing by weight < 2,5% nickel 01/01/1996 31/12/2500 -72221121 01/01/1996 31/12/2003 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, of circular cross-section measuring >= 25 mm but < 80 mm diameter and containing by weight >= 2,5% nickel 01/01/1996 31/12/2003 -72221129 01/01/1996 31/12/2003 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, of circular cross-section measuring >= 25 mm but < 80 mm diameter and containing by weight < 2,5% nickel 01/01/1996 31/12/2003 -72221181 01/01/2004 31/12/2500 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, of circular cross-section measuring < 80 mm and containing by weight >= 2,5% nickel 01/01/2004 31/12/2500 -72221189 01/01/2004 31/12/2500 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, of circular cross-section measuring < 80 mm and containing by weight < 2,5% nickel 01/01/2004 31/12/2500 -72221191 01/01/1996 31/12/2003 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, of circular cross-section measuring < 25 mm and containing by weight >= 2,5% nickel 01/01/1996 31/12/2003 -72221199 01/01/1996 31/12/2003 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, of circular cross-section measuring < 25 mm and containing by weight < 2,5% nickel 01/01/1996 31/12/2003 -722219 01/01/1996 31/12/2500 LIBEN Bars and rods of stainless steel, only hot-rolled, only hot-drawn or only extruded (excl. of circular cross-section) 01/01/1996 31/12/2500 -72221910 01/01/1996 31/12/2500 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, containing by weight >= 2,5% nickel (excl. such products of circular cross-section) 01/01/1996 31/12/2500 -72221990 01/01/1996 31/12/2500 LIBEN Bars and rods of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, containing by weight < 2,5% nickel (excl. such products of circular cross-section) 01/01/1996 31/12/2500 -722220 01/01/1988 31/12/2500 LIBEN Other bars and rods of stainless steel, not further worked than cold-formed or cold-finished 01/01/1988 31/12/2500 -72222010 01/01/1988 31/12/1990 LIBEN Bars and rods of stainless steel, not further worked than cold-formed or cold-finished, containing by weight >= 2.5 % nickel 01/01/1988 31/12/1990 -72222011 01/01/1991 31/12/2500 LIBEN Bars and rods of stainless steel, of circular cross-section of a diameter >= 80 mm, simply cold-formed or cold-finished, containing by weight >= 2,5% nickel 01/01/1991 31/12/2500 -72222019 01/01/1991 31/12/2500 LIBEN Bars and rods of stainless steel, of circular cross-section of a diameter >= 80 mm, simply cold-formed or cold-finished, containing by weight < 2,5% nickel 01/01/1991 31/12/2500 -72222021 01/01/1994 31/12/2500 LIBEN Bars and rods of stainless steel, not further worked than cold-formed or cold-finished, of circular cross-section measuring >= 25 mm but < 80 mm and containing by weight >= 2,5% nickel 01/01/1994 31/12/2500 -72222029 01/01/1994 31/12/2500 LIBEN Bars and rods of stainless steel, not further worked than cold-formed or cold-finished, of circular cross-section measuring >= 25 mm but < 80 mm and containing by weight < 2,5% nickel 01/01/1994 31/12/2500 -72222031 01/01/1994 31/12/2500 LIBEN Bars and rods of stainless steel, not further worked than cold-formed or cold-finished, of circular cross-section measuring < 25 mm and containing by weight >= 2,5% nickel 01/01/1994 31/12/2500 -72222039 01/01/1994 31/12/2500 LIBEN Bars and rods of stainless steel, not further worked than cold-formed or cold-finished, of circular cross-section measuring < 25 mm and containing by weight < 2,5% nickel 01/01/1994 31/12/2500 -72222081 01/01/1994 31/12/2500 LIBEN Bars and rods of stainless steel, not further worked than cold-formed or cold-finished, containing by weight >= 2,5% nickel (excl. such products of circular cross-section) 01/01/1994 31/12/2500 -72222089 01/01/1994 31/12/2500 LIBEN Bars and rods of stainless steel, not further worked than cold-formed or cold-finished, containing by weight < 2,5% nickel (excl. such products of circular cross-section) 01/01/1994 31/12/2500 -72222090 01/01/1988 31/12/1990 LIBEN Bars and rods of stainless steel, not further worked than cold-formed or cold-finished, containing by weight < 2.5 % nickel 01/01/1988 31/12/1990 -72222091 01/01/1991 31/12/1993 LIBEN Bars and rods of stainless steel, simply cold-formed or cold-finished, containing by weight >= 2.5 % nickel, (other than of circular cross-section of a diameter >= 80 mm) 01/01/1991 31/12/1993 -72222099 01/01/1991 31/12/1993 LIBEN Bars and rods of stainless steel, simply cold-formed or cold-finished, containing by weight < 2.5 % nickel, (other than of circular cross-section of a diameter >= 80 mm) 01/01/1991 31/12/1993 -722230 01/01/1988 31/12/2500 LIBEN Other bars and rods of stainless steel, cold-formed or cold-finished and further worked, or not further worked than forged, or forged, or hot-formed by other means and further worked, n.e.s. 01/01/1988 31/12/2500 -72223010 01/01/1988 31/12/2003 LIBEN Other bars and rods of stainless steel, hot-rolled, hot-drawn or hot-extruded, not further worked than clad 01/01/1988 31/12/2003 -72223051 01/01/1988 31/12/2500 LIBEN Other bars and rods of stainless steel, containing by weight >= 2,5% of nickel, forged 01/01/1988 31/12/2500 -72223059 01/01/1988 31/12/1995 LIBEN Other bars and rods of stainless steel, containing by weight >= 2,5% of nickel, cold-formed or cold-finished and further worked, or hot-formed and further worked, n.e.s. (excl. hot-rolled, hot-drawn or hot-extruded, not further worked than clad, and forged products) 01/01/1988 31/12/1995 -72223091 01/01/1988 31/12/2500 LIBEN Other bars and rods of stainless steel, containing by weight < 2,5% of nickel, forged 01/01/1988 31/12/2500 -72223097 01/01/2004 31/12/2500 LIBEN Bars and rods of stainless steel, cold-formed or cold-finished and further worked, or hot-formed and further worked, n.e.s. (excl. forged products) 01/01/2004 31/12/2500 -72223098 01/01/1996 31/12/2003 LIBEN Bars and rods of stainless steel, cold-formed or cold-finished and further worked, or hot-formed and further worked, n.e.s. (excl. hot-rolled, hot-drawn or hot-extruded, not further worked than clad, and forged products) 01/01/1996 31/12/2003 -72223099 01/01/1988 31/12/1995 LIBEN Other bars and rods of stainless steel, containing by weight < 2,5% of nickel, cold-formed or cold-finished and further worked, or hot-formed and further worked, n.e.s. (excl. hot-rolled, hot-drawn or hot-extruded, not further worked than clad, and forged products) 01/01/1988 31/12/1995 -722240 01/01/1988 31/12/2500 LIBEN Angles, shapes and sections of stainless steel, n.e.s. 01/01/1988 31/12/2500 -72224010 01/01/1996 31/12/2500 LIBEN Angles, shapes and sections of stainless steel, only hot-rolled, only hot-drawn or only extruded 01/01/1996 31/12/2500 -72224011 01/01/1988 31/12/1995 LIBEN Angles, shapes and sections of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, containing by weight >= 2,5% nickel "ECSC" 01/01/1988 31/12/1995 -72224019 01/01/1988 31/12/1995 LIBEN Angles, shapes and sections of stainless steel, not further worked than hot-rolled, hot-drawn or extruded, containing by weight < 2,5% nickel "ECSC" 01/01/1988 31/12/1995 -72224030 01/01/1988 31/12/2003 LIBEN Angles, shapes and sections of stainless steel, hot-rolled, hot-drawn or extruded, not further worked than clad 01/01/1988 31/12/2003 -72224050 01/01/2004 31/12/2500 LIBEN Angles, shapes and sections of stainless steel, not further worked than cold-formed or cold-finished 01/01/2004 31/12/2500 -72224090 01/01/2004 31/12/2500 LIBEN Angles, shapes and sections of stainless steel, cold-formed or cold-finished and further worked, or not further worked than forged, or forged, or hot-formed by other means and further worked, n.e.s. 01/01/2004 31/12/2500 -72224091 01/01/1988 31/12/2003 LIBEN Angles, shapes and sections of stainless steel, obtained from flat-rolled products, not further worked than cold-formed or cold-finished 01/01/1988 31/12/2003 -72224093 01/01/1988 31/12/2003 LIBEN Angles, shapes and sections of stainless steel, not further worked than cold-formed or cold-finished (excl. products obtained from flat-rolled products) 01/01/1988 31/12/2003 -72224099 01/01/1988 31/12/2003 LIBEN Angles, shapes and sections of stainless steel, cold-formed or cold-finished and further worked or not further worked than forged or forged or otherwise hot-formed and further worked, n.e.s. (excl. products hot-rolled, hot-drawn or extruded, not further worked than clad) 01/01/1988 31/12/2003 -7223 01/01/1988 31/12/2500 LIBEN Wire of stainless steel, in coils (excl. bars and rods) 01/01/1988 31/12/2500 -722300 01/01/1988 31/12/2500 LIBEN Wire of stainless steel, in coils (excl. bars and rods) 01/01/1988 31/12/2500 -72230010 01/01/1988 31/12/1993 LIBEN Wire of stainless steel, in reels or coils, containing by weight >= 2.5 % nickel (excl. bars and rods) 01/01/1988 31/12/1993 -72230011 01/01/1994 31/12/2500 LIBEN Wire of stainless steel, in coils, containing by weight 28% to 31% nickel and 20% to 22% chromium (excl. bars and rods) 01/01/1994 31/12/2500 -72230019 01/01/1994 31/12/2500 LIBEN Wire of stainless steel, in coils, containing by weight >= 2,5% nickel (excl. such products containing 28% to 31% nickel and 20% to 22% chromium, and bars and rods) 01/01/1994 31/12/2500 -72230090 01/01/1988 31/12/1993 LIBEN Wire of stainless steel, in reels or coils, containing by weight < 2.5 % nickel (excl. bars and rods) 01/01/1988 31/12/1993 -72230091 01/01/1994 31/12/2500 LIBEN Wire of stainless steel, in coils, containing by weight < 2,5% nickel, 13% to 25% chromium and 3,5% to 6% aluminium (excl. bars and rods) 01/01/1994 31/12/2500 -72230099 01/01/1994 31/12/2500 LIBEN Wire of stainless steel, in coils, containing by weight < 2,5% nickel (excl. such products containing 13% to 25% chromium and 3,5% to 6% aluminium, and bars and rods) 01/01/1994 31/12/2500 -7224 01/01/1988 31/12/2500 LIBEN Steel, alloy, other than stainless, in ingots or other primary forms, semi-finished products of alloy steel other than stainless (excl. waste and scrap in ingot form, and products obtained by continuous casting) 01/01/1988 31/12/2500 -722410 01/01/1988 31/12/2500 LIBEN Steel, alloy, other than stainless, in ingots or other primary forms (excl. waste and scrap in ingot form, and products obtained by continuous casting) 01/01/1988 31/12/2500 -72241000 01/01/1988 31/12/2003 LIBEN Steel, alloy, other than stainless, in ingots or other primary forms (excl. waste and scrap in ingot form, and products obtained by continuous casting) 01/01/1988 31/12/2003 -72241010 01/01/2004 31/12/2500 LIBEN Ingots and other primary forms, of tool steel 01/01/2004 31/12/2500 -72241090 01/01/2004 31/12/2500 LIBEN Steel, alloy, other than stainless, in ingots or other primary forms (excl. of tool steel, waste and scrap in ingot form and products obtained by continuous casting) 01/01/2004 31/12/2500 -722490 01/01/1988 31/12/2500 LIBEN Semi-finished products of alloy steel other than stainless 01/01/1988 31/12/2500 -72249001 01/01/1990 31/12/2003 LIBEN Semi-finished products of high-speed steel, of square or rectangular cross-section, hot-rolled or obtained by continuous casting the width measuring < twice the thickness 01/01/1990 31/12/2003 -72249002 01/01/2004 31/12/2500 LIBEN Semi-finished products of tool steel 01/01/2004 31/12/2500 -72249003 01/01/2004 31/12/2500 LIBEN Semi-finished products of high-speed steel, of square or rectangular cross-section, hot-rolled or obtained by continuous casting the width measuring < twice the thickness 01/01/2004 31/12/2500 -72249005 01/01/1993 31/12/2500 LIBEN Semi-finished products of steel containing by weight <= 0,7% of carbon, 0,5% to 1,2% of manganese, 0,6% to 2,3% of silicon, or of steel containing by weight >= 0,0008% of boron with any other element < the minimum content referred to in Note 1 f to chapter 72, of square or rectangular cross-section, hot rolled or obtained by continuous casting, the width measuring < twice the thickness 01/01/1993 31/12/2500 -72249007 01/01/2004 31/12/2500 LIBEN Semi-finished products of alloy steel other than stainless steel, of square or rectangular cross-section, hot-rolled or obtained by continuous casting, the width measuring < twice the thickness (excl. of tool steel, high-speed steel and articles of subheading 7224.90.05) 01/01/2004 31/12/2500 -72249008 01/01/1993 31/12/2003 LIBEN Semi-finished products of alloy steel other than stainless steel, of square or rectangular cross-section, hot-rolled or obtained by continuous casting, the width measuring < twice the thickness (excl. high-speed steel and articles of subheading 7224.90.05) 01/01/1993 31/12/2003 -72249009 01/01/1990 31/12/1992 LIBEN Semi-finished products of alloy steel (excl. stainless and high-speed), the width measuring less than twice the thickness, hot-rolled or obtained by continuous casting 01/01/1990 31/12/1992 -72249011 01/01/1988 31/12/1989 LIBEN Semi-finished products of alloy steel other than stainless, hot-rolled or obtained by continuous casting, of rectangular 'including square' cross-section 'ecsc' 01/01/1988 31/12/1989 -72249014 01/01/2004 31/12/2500 LIBEN Semi-finished products of alloy steel other than stainless steel, of square or rectangular cross-section, hot-rolled or obtained by continuous casting, the width measuring >= twice the thickness (excl. of tool steel) 01/01/2004 31/12/2500 -72249015 01/01/1990 31/12/2003 LIBEN Semi-finished products of alloy steel other than stainless steel, of square or rectangular cross-section, hot-rolled or obtained by continuous casting, the width measuring >= twice the thickness 01/01/1990 31/12/2003 -72249018 01/01/2004 31/12/2500 LIBEN Semi-finished products of alloy steel other than stainless steel, of square or rectangular cross-section, forged (excl. of tool steel) 01/01/2004 31/12/2500 -72249019 01/01/1988 31/12/2003 LIBEN Semi-finished products of alloy steel other than stainless steel, of square or rectangular cross-section, forged 01/01/1988 31/12/2003 -72249030 01/01/1988 31/12/1992 LIBEN Semi-finished products of alloy steel other than stainless, hot-rolled or obtained by continuous casting, of other than rectangular 'including square' cross-section 'ecsc' 01/01/1988 31/12/1992 -72249031 01/01/1993 31/12/2500 LIBEN Semi-finished products of steel containing by weight 0,9% to 1,15% carbon, 0,5% to 2% of chromium and, if present, <= 0,5% of molybdenum, cut into shapes other than square or rectangular, hot-rolled or obtained by continuous casting 01/01/1993 31/12/2500 -72249038 01/01/2004 31/12/2500 LIBEN Semi-finished products of alloy steel, other than stainless steel, cut into shapes other than square or rectangular, hot-rolled or obtained by continuous casting (excl. of tool steel and products containing by weight 0,9% to 1,15% of carbon, 0,5% to 2% of chromium and, if present, <= 0,5% of molybdenum) 01/01/2004 31/12/2500 -72249039 01/01/1993 31/12/2003 LIBEN Semi-finished products of alloy steel, other than stainless steel, cut into shapes other than square or rectangular, hot-rolled or obtained by continuous casting (excl. containing by weight 0,9% to 1,15% of carbon, 0,5% to 2% of chromium and, if present, <= 0,5% of molybdenum) 01/01/1993 31/12/2003 -72249090 01/01/2004 31/12/2500 LIBEN Semi-finished products of alloy steel, other than stainless steel, forged (excl. of tool steel and products of square or rectangular, circular or polygamol cross-section) 01/01/2004 31/12/2500 -72249091 01/01/1988 31/12/2003 LIBEN Semi-finished products of alloy steel other than stainless, forged, of circular or polygonal cross-section 01/01/1988 31/12/2003 -72249099 01/01/1988 31/12/2003 LIBEN Semi-finished products of alloy steel, other than stainless steel, forged (excl. of square or rectangular, circular or polygamol cross-section) 01/01/1988 31/12/2003 -7225 01/01/1988 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" 01/01/1988 31/12/2500 -722510 01/01/1988 31/12/1995 LIBEN Flat-rolled products of silicon-electrical steel, of a width of >= 600 mm, hot- or cold-rolled "ECSC" 01/01/1988 31/12/1995 -72251010 01/01/1988 31/12/1995 LIBEN Flat-rolled products of silicon-electrical steel, of a width of >= 600 mm, hot-rolled "ECSC" 01/01/1988 31/12/1995 -72251091 01/01/1988 31/12/1995 LIBEN Flat-rolled products of silicon-electrical steel, of a width of >= 600 mm, cold-rolled, grain-oriented "ECSC" 01/01/1988 31/12/1995 -72251099 01/01/1988 31/12/1995 LIBEN Flat-rolled products of silicon-electrical steel, of a width of >= 600 mm, cold-rolled, non-grain-oriented "ECSC" 01/01/1988 31/12/1995 -722511 01/01/1996 31/12/2500 LIBEN Flat-rolled products of silicon-electrical steel, of a width of >= 600 mm, grain-oriented 01/01/1996 31/12/2500 -72251100 01/01/1996 31/12/2500 LIBEN Flat-rolled products of silicon-electrical steel, of a width of >= 600 mm, grain-oriented 01/01/1996 31/12/2500 -722519 01/01/1996 31/12/2500 LIBEN Flat-rolled products of silicon-electrical steel, of a width of >= 600 mm, non-grain-oriented 01/01/1996 31/12/2500 -72251910 01/01/1996 31/12/2500 LIBEN Flat-rolled products of silicon-electrical steel, of a width of >= 600 mm, hot-rolled 01/01/1996 31/12/2500 -72251990 01/01/1996 31/12/2500 LIBEN Flat-rolled products of silicon-electrical steel, of a width of >= 600 mm, cold-rolled "cold-reduced", non-grain-oriented 01/01/1996 31/12/2500 -722520 01/01/1988 31/12/2006 LIBEN Flat-rolled products of high-speed steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" 01/01/1988 31/12/2006 -72252000 01/01/2004 31/12/2006 LIBEN Flat-rolled products of high-speed steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" 01/01/2004 31/12/2006 -72252010 01/01/1991 31/12/1992 LIBEN Flat-rolled products of high speed steel, simply rolled, of a width >= 600 mm 01/01/1991 31/12/1992 -72252011 01/01/1988 31/12/1990 LIBEN Flat-rolled products of high-speed steel, of a width of >= 600 mm, not further worked than hot-rolled 'ecsc' 01/01/1988 31/12/1990 -72252019 01/01/1988 31/12/1990 LIBEN Flat-rolled products of high-speed steel, of a width of >= 600 mm, not further worked than cold-rolled 'ecsc' 01/01/1988 31/12/1990 -72252020 01/01/1993 31/12/2003 LIBEN Flat-rolled products of high-speed steel, of a width of >= 600 mm, not further worked than rolled; not further worked than surface-treated, incl. cladding, or simply cut into shapes other than square or rectangular 01/01/1993 31/12/2003 -72252030 01/01/1988 31/12/1992 LIBEN Flat-rolled products of high-speed steel, of a width of >= 600 mm, hot- or cold-rolled, not further worked than surface-treated 'including cladding' or simply cut into shapes other than rectangular 'including square' 'ecsc') 01/01/1988 31/12/1992 -72252090 01/01/1988 31/12/2003 LIBEN Flat-rolled products of high-speed steel, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked (excl. not further worked than surface-treated, incl. cladding, or simply cut into shapes other than square or rectangular) 01/01/1988 31/12/2003 -722530 01/01/1988 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than hot-rolled, in coils (excl. products of silicon-electrical steel) 01/01/1988 31/12/2500 -72253000 01/01/1988 31/12/2003 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than hot-rolled, in coils, (excl. products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/2003 -72253010 01/01/2004 31/12/2500 LIBEN Flat-rolled products of tool steel, of a width of >= 600 mm, not further worked than hot-rolled, in coils 01/01/2004 31/12/2500 -72253030 01/01/2007 31/12/2500 LIBEN Flat-rolled products of high-speed steel, of a width of >= 600 mm, not further worked than hot-rolled, in coils 01/01/2007 31/12/2500 -72253090 01/01/2004 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than hot-rolled, in coils (excl. products of tool steel, high-speed steel or silicon-electrical steel) 01/01/2004 31/12/2500 -722540 01/01/1988 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than hot-rolled, not in coils (excl. products of silicon-electrical steel) 01/01/1988 31/12/2500 -72254010 01/01/1988 31/12/1995 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of > 20 mm "ECSC" 01/01/1988 31/12/1995 -72254012 01/01/2004 31/12/2500 LIBEN Flat-rolled products of tool steel, of a width of >= 600 mm, not further worked than hot-rolled, not in coils 01/01/2004 31/12/2500 -72254015 01/01/2007 31/12/2500 LIBEN Flat-rolled products of high-speed steel, of a width of >= 600 mm, not further worked than hot-rolled, not in coils 01/01/2007 31/12/2500 -72254020 01/01/1996 31/12/2003 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of > 15 mm (excl. of high-speed steel or electrical steel) 01/01/1996 31/12/2003 -72254030 01/01/1988 31/12/1995 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of > 15 mm but <= 20 mm "ECSC" (excl. products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/1995 -72254040 01/01/2004 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of > 10 mm (excl. products of tool steel, high-speed steel or silicon-electrical steel) 01/01/2004 31/12/2500 -72254050 01/01/1988 31/12/2003 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of > 4,75 mm but <= 15 mm (excl. products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/2003 -72254060 01/01/2004 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of >= 4,75 mm but <= 10 mm (excl. products of tool steel, high-speed steel or silicon-electrical steel) 01/01/2004 31/12/2500 -72254070 01/01/1988 31/12/1995 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of >= 3 mm but <= 4,75 mm "ECSC" (excl. products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/1995 -72254080 01/01/1996 31/12/2003 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of < 4,75 mm (excl. products of high-speed steel or silicon-electrical steel) 01/01/1996 31/12/2003 -72254090 01/01/1988 31/12/1995 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of < 3 mm "ECSC" (excl. products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/1995 -72254090 01/01/2004 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than hot-rolled, not in coils, of a thickness of < 4,75 mm (excl. products of tool steel, high-speed steel or silicon-electrical steel) 01/01/2004 31/12/2500 -722550 01/01/1988 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than cold-rolled "cold-reduced" (excl. products of silicon-electrical steel) 01/01/1988 31/12/2500 -72255000 01/01/1988 31/12/1990 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than hot-rolled 'ecsc' (excl. products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/1990 -72255000 01/01/1996 31/12/2006 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than hot-rolled (excl. products of high-speed steel or silicon-electrical steel) 01/01/1996 31/12/2006 -72255010 01/01/1991 31/12/1995 LIBEN Flat-rolled products of steel alloys (excl. stainless, silicon-electrical or high speed), simply cold-rolled, of a width >= 600 mm, containing by weight < 0,6% silicon, >= 0,3% but <= 1% aluminium 01/01/1991 31/12/1995 -72255020 01/01/2007 31/12/2500 LIBEN Flat-rolled products of high-speed steel, of a width of >= 600 mm, not further worked than cold-rolled "cold-reduced" 01/01/2007 31/12/2500 -72255080 01/01/2007 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, not further worked than cold-rolled "cold-reduced" (excl. products of high-speed steel or silicon-electrical steel) 01/01/2007 31/12/2500 -72255090 01/01/1991 31/12/1995 LIBEN Flat-rolled products of steel alloys (excl. stainless, silicon-electrical or high speed), simply cold-rolled, of a width >= 600 mm (excl. 7225.50.10) 01/01/1991 31/12/1995 -722590 01/01/1988 31/12/1995 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot- or cold-rolled and further worked (excl. products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/1995 -72259010 01/01/1988 31/12/1995 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot- or cold-rolled, not further worked than surface-treated "including cladding" or simply cut into shapes other than rectangular "including square" "ECSC" (excl. products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/1995 -72259090 01/01/1988 31/12/1995 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot- or cold-rolled and further worked (excl. products not further worked than surface-treated "including cladding" or simply cut into shapes other than rectangular "including square", and products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/1995 -722591 01/01/1996 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" and electrolytically plated or coated with zinc (excl. products of silicon-electrical steel) 01/01/1996 31/12/2500 -72259100 01/01/2004 31/12/2006 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" and electrolytically plated or coated with zinc (excl. products of high-speed steel or silicon-electrical steel) 01/01/2004 31/12/2006 -72259100 01/01/2007 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" and electrolytically plated or coated with zinc (excl. products of silicon-electrical steel) 01/01/2007 31/12/2500 -72259110 01/01/1996 31/12/2003 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot-roled or cold-rolled "cold-reduced", electrolytically plated or coated with zinc, not further worked than surface-treated "incl. cladding" or simply cut into shapes other than square or rectangular (excl. of high-speed steel or silicon-electrical steel) 01/01/1996 31/12/2003 -72259190 01/01/1996 31/12/2003 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked, electrolytically plated or coated with zinc (excl. products not further worked than surface-treated "incl. cladding" or simply cut into shapes other than square or rectangular, and of high-speed steel or silicon-electrical steel) 01/01/1996 31/12/2003 -722592 01/01/1996 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" and plated or coated with zinc (excl. electrolytically plated or coated and products of silicon-electrical steel) 01/01/1996 31/12/2500 -72259200 01/01/2004 31/12/2006 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" and plated or coated with zinc (excl. electrolytically plated or coated and products of high-speed steel or silicon-electrical steel) 01/01/2004 31/12/2006 -72259200 01/01/2007 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" and plated or coated with zinc (excl. electrolytically plated or coated and products of silicon-electrical steel) 01/01/2007 31/12/2500 -72259210 01/01/1996 31/12/2003 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", not further worked than surface-treated "incl. cladding" or simply cut into shapes other than square or rectangular (excl. products of high-speed steel or silicon-electrical steel) 01/01/1996 31/12/2003 -72259290 01/01/1996 31/12/2003 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked, plated or coated with zinc (excl. electrolytically plated or coated with zinc, products not further worked than surface-treated "incl. cladding" or simply cut into shapes other than square or rectangular, and products of high-speed steel or silicon-electrical steel) 01/01/1996 31/12/2003 -722599 01/01/1996 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked (excl. plated or coated with zinc and products of silicon-electrical steel) 01/01/1996 31/12/2500 -72259900 01/01/2004 31/12/2006 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked (excl. plated or coated with zinc and products of high-speed steel or silicon-electrical steel) 01/01/2004 31/12/2006 -72259900 01/01/2007 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked (excl. plated or coated with zinc and products of silicon-electrical steel) 01/01/2007 31/12/2500 -72259910 01/01/1996 31/12/2003 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced", not further worked than surface-treated "incl. cladding" or simply cut into shapes other than square or rectangular (excl. plated or coated with zinc, and products of high-speed steel or silicon-electrical steel) 01/01/1996 31/12/2003 -72259990 01/01/1996 31/12/2003 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of >= 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked (excl. plated or coated with zinc, products not further worked than surface-treated "incl. cladding" or simply cut into shapes other than square or rectangular, and products of high-speed steel or silicon-electrical steel) 01/01/1996 31/12/2003 -7225S6 01/01/2007 31/12/2500 LIBEN Confidential trade of heading 7225 and SITC section 6 01/01/2007 31/12/2500 -7225S675 01/01/2007 31/12/2500 LIBEN Confidential trade of heading 7225 and SITC group 675 01/01/2007 31/12/2500 -7226 01/01/1988 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" 01/01/1988 31/12/2500 -722610 01/01/1988 31/12/1995 LIBEN Flat-rolled products of silicon-electrical steel, of a width of < 600 mm, hot- or cold-rolled 01/01/1988 31/12/1995 -72261010 01/01/1988 31/12/1995 LIBEN Flat-rolled products of silicon-electrical steel, of a width of < 600 mm, not further worked than hot-rolled 01/01/1988 31/12/1995 -72261030 01/01/1988 31/12/1994 LIBEN Flat-rolled products of silicon-electrical steel, of a width of > 500 mm but < 600 mm, cold-rolled, whether or not further worked, or hot-rolled and further worked 'ecsc' 01/01/1988 31/12/1994 -72261031 01/01/1995 31/12/1995 LIBEN Flat products of silicon-electrical steel, of a width of > 500 mm and < 600 mm, cold-rolled, whether or not further worked, or hot-rolled and further worked (ECSC), grain oriented 01/01/1995 31/12/1995 -72261039 01/01/1995 31/12/1995 LIBEN Flat products of silicon-electrical steel, of a width of > 500 mm and < 600 mm, cold-rolled, whether or not further worked, or hot-rolled and further worked (ECSC), non-grain oriented 01/01/1995 31/12/1995 -72261091 01/01/1988 31/12/1995 LIBEN Flat-rolled products of silicon-electrical steel, of a width of <= 500 mm, cold-rolled, whether or not further worked, or hot-rolled and further worked, grain oriented "ECSC" 01/01/1988 31/12/1995 -72261099 01/01/1988 31/12/1995 LIBEN Flat-rolled products of silicon-electrical steel, of a width of <= 500 mm, cold-rolled, whether or not further worked, or hot-rolled and further worked, not grain oriented "ECSC" 01/01/1988 31/12/1995 -722611 01/01/1996 31/12/2500 LIBEN Flat-rolled products of silicon-electrical steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", grain-oriented 01/01/1996 31/12/2500 -72261100 01/01/2004 31/12/2500 LIBEN Flat-rolled products of silicon-electrical steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", grain-oriented 01/01/2004 31/12/2500 -72261110 01/01/1996 31/12/2003 LIBEN Flat-rolled products of silicon-electrical steel, of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", grain-oriented 01/01/1996 31/12/2003 -72261190 01/01/1996 31/12/2003 LIBEN Flat-rolled products of silicon-electrical steel, of a width of <= 500 mm, hot-rolled or cold-rolled "cold-reduced", grain-oriented 01/01/1996 31/12/2003 -722619 01/01/1996 31/12/2500 LIBEN Flat-rolled products of silicon-electrical steel, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced", not grain-oriented 01/01/1996 31/12/2500 -72261910 01/01/1996 31/12/2500 LIBEN Flat-rolled products of silicon-electrical steel, of a width of < 600 mm, not further worked than hot-rolled 01/01/1996 31/12/2500 -72261930 01/01/1996 31/12/2003 LIBEN Flat-rolled products of silicon-electrical steel, of a width of > 500 mm but < 600 mm, cold-rolled "cold-reduced", whether or not further worked, or hot-rolled and further worked, not grain-oriented 01/01/1996 31/12/2003 -72261980 01/01/2004 31/12/2500 LIBEN Flat-rolled products of silicon-electrical steel, of a width of < 600 mm, cold-rolled "cold-reduced", whether or not further worked, or hot-rolled and further worked, non-grain-oriented 01/01/2004 31/12/2500 -72261990 01/01/1996 31/12/2003 LIBEN Flat-rolled products of silicon-electrical steel, of a width of <= 500 mm, cold-rolled "cold-reduced", whether or not further worked, or hot-rolled and further worked, not grain oriented 01/01/1996 31/12/2003 -722620 01/01/1988 31/12/2500 LIBEN Flat-rolled products of high-speed steel, of a width of <= 600 mm, hot-rolled or cold-rolled "cold-reduced" 01/01/1988 31/12/2500 -72262000 01/01/2004 31/12/2500 LIBEN Flat-rolled products of high-speed steel, of a width of <= 600 mm, hot-rolled or cold-rolled "cold-reduced" 01/01/2004 31/12/2500 -72262010 01/01/1988 31/12/1992 LIBEN Flat-rolled products of high-speed steel, of a width of =< 600 mm, not further worked than hot-rolled 'ecsc' 01/01/1988 31/12/1992 -72262020 01/01/1993 31/12/2003 LIBEN Flat-rolled products of high-speed steel, of a width < 600 mm, only hot-rolled; of a width of <= 500 mm, hot rolled not further worked than clad; of a width of > mm, but < 600 mm, only cold-rolled "cold-reduced" or not further worked than surface-treated "incl. cladding" 01/01/1993 31/12/2003 -72262031 01/01/1988 31/12/1992 LIBEN Flat-rolled products of high-speed steel, of a width of > 500 mm but < 600 mm, not further worked than cold-rolled 'ecsc' 01/01/1988 31/12/1992 -72262039 01/01/1988 31/12/1992 LIBEN Flat-rolled products of high-speed steel, of a width of =< 500 mm, not further worked than cold-rolled 01/01/1988 31/12/1992 -72262051 01/01/1988 31/12/1992 LIBEN Flat-rolled products of high-speed steel, of a width of > 500 mm but < 600 mm, hot- or cold-rolled, not further worked than surface-treated 'including cladding' 'ecsc' 01/01/1988 31/12/1992 -72262059 01/01/1988 31/12/1992 LIBEN Flat-rolled products of high-speed steel, of a width of > 500 mm but < 600 mm, hot- or cold-rolled and further worked (excl. products not further worked than surface-treated 'including cladding') 01/01/1988 31/12/1992 -72262071 01/01/1988 31/12/1992 LIBEN Flat-rolled products of high-speed steel, of a width of < 500 mm, hot-rolled, not further worked than clad 'ecsc' 01/01/1988 31/12/1992 -72262079 01/01/1988 31/12/1992 LIBEN Flat-rolled products of high-speed steel, of a width of < 500 mm, hot- or cold-rolled, not further worked than surface-treated 'including cladding' (excl. products hot-rolled, not further worked than clad 'ecsc') 01/01/1988 31/12/1992 -72262080 01/01/1993 31/12/2003 LIBEN Flat-rolled products of high-speed steel, of a width of < 600 mm, only hot-rolled or cold-rolled "cold-reduced" and further worked (excl. of a width of <= 500 mm, hot-rolled, not further worked than clad; of a width of > 500 mm, not further worked than surface treated "incl. cladding") 01/01/1993 31/12/2003 -72262090 01/01/1988 31/12/1992 LIBEN Flat-rolled products of high-speed steel, of a width of < 500 mm, hot- or cold-rolled and further worked (excl. products not further worked than surface-treated 'including cladding') 01/01/1988 31/12/1992 -722691 01/01/1988 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 600 mm, not further worked than hot-rolled (excl. products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/2500 -72269100 01/01/1988 31/12/1990 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 600 mm, not further worked than hot-rolled 'ecsc' (excl. products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/1990 -72269110 01/01/1991 31/12/2003 LIBEN Flat-rolled products of steel alloys (excl. stainless, silicon-electrical or high speed), simply hot-rolled, of a thickness of >= 4,75 mm, of a width of < 600 mm 01/01/1991 31/12/2003 -72269120 01/01/2004 31/12/2500 LIBEN Flat-rolled products of tool steel, of a width of < 600 mm, simply hot-rolled 01/01/2004 31/12/2500 -72269190 01/01/1991 31/12/2003 LIBEN Flat-rolled products of steel alloys (excl. stainless, silicon-electrical or high speed), simply hot-rolled, of a thickness of < 4,75 mm, of a width of < 600 mm 01/01/1991 31/12/2003 -72269191 01/01/2004 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless steel, simply hot-rolled, of a thickness of >= 4,75 mm, of a width of < 600 mm (excl. of tool steel, silicon-electrical steel or high speed steel) 01/01/2004 31/12/2500 -72269199 01/01/2004 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless steel, simply hot-rolled, of a thickness of < 4,75 mm, of a width of < 600 mm (excl. of tool steel, silicon-electrical steel or high speed steel) 01/01/2004 31/12/2500 -722692 01/01/1988 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 600 mm, not further worked than cold-rolled "cold-reduced" (excl. products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/2500 -72269200 01/01/2004 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 600 mm, not further worked than cold-rolled "cold-reduced" (excl. products of high-speed steel or silicon-electrical steel) 01/01/2004 31/12/2500 -72269210 01/01/1988 31/12/2003 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of > 500 mm but < 600 mm, not further worked than cold-rolled "cold-reduced" (excl. products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/2003 -72269290 01/01/1988 31/12/1990 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of =< 500 mm, not further worked than cold-rolled (excl. products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/1990 -72269290 01/01/1996 31/12/2003 LIBEN Flat-rolled products of steel alloys other than stainless, simply cold-rolled "cold-reduced", of a width of <= 500 mm (excl. products of high-speed steel or silicon-electrical steel) 01/01/1996 31/12/2003 -72269291 01/01/1991 31/12/1995 LIBEN Flat-rolled products of steel alloys (excl. stainless, silicon-electrical or high speed), simply cold-rolled, of a width <= 500 mm, containing by weight < 0,6% silicon, >= 0,3% but <= 1% aluminium 01/01/1991 31/12/1995 -72269299 01/01/1991 31/12/1995 LIBEN Flat-rolled products of steel alloys (excl. stainless, silicon-electrical or high speed), simply cold-rolled, of a width <= 500 mm (excl. 7226.92.91) 01/01/1991 31/12/1995 -722693 01/01/1996 31/12/2006 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and electrolytically plated or coated with zinc (excl. products of high-speed steel or silicon-electrical steel) 01/01/1996 31/12/2006 -72269300 01/01/2004 31/12/2006 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and electrolytically plated or coated with zinc (excl. products of high-speed steel or silicon-electrical steel) 01/01/2004 31/12/2006 -72269320 01/01/1996 31/12/2003 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of <= 500 mm, hot-rolled, electrolytically plated or coated with zinc, not further worked than clad; of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", electrolytically plated or coated with zinc, not further worked than surface-treated "incl. cladding" (excl. of high-speed steel or silicon-electrical steel) 01/01/1996 31/12/2003 -72269380 01/01/1996 31/12/2003 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked, electrolytically plated or coated with zinc (excl. of a width of <= 500 mm, hot-rolled, not further worked than clad, of a width of > 500 mm, not further worked than surface-treated "incl. cladding", and products of high-speed steel or silicon-electrical steel) 01/01/1996 31/12/2003 -722694 01/01/1996 31/12/2006 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and plated or coated with zinc (excl. electrolytically plated or coated, and products of high-speed steel or silicon-electrical steel) 01/01/1996 31/12/2006 -72269400 01/01/2004 31/12/2006 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and plated or coated with zinc (excl. electrolytically plated or coated, and products of high-speed steel or silicon-electrical steel) 01/01/2004 31/12/2006 -72269420 01/01/1996 31/12/2003 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of <= 500 mm, hot-rolled, plated or coated with zinc, not further worked than clad; of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", plated or coated with zinc, not further worked than surface-treated "incl. cladding" (excl. electrolytically plated or coated, of high-speed steel or silicon-electrical steel) 01/01/1996 31/12/2003 -72269480 01/01/1996 31/12/2003 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked (excl. electrolytically plated or coated with zinc, of a width of <= 500 mm, hot-rolled, not further worked than clad of a width of > 500 mm, not further worked than surface-treated "incl. cladding", and products of high-speed steel or silicon-electrical steel) 01/01/1996 31/12/2003 -722699 01/01/1988 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked (excl. products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/2500 -72269900 01/01/2004 31/12/2006 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked (excl. plated or coated with zinc, and products of high-speed steel or silicon-electrical steel) 01/01/2004 31/12/2006 -72269910 01/01/2007 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and electrolytically plated or coated with zinc (excl. products of high-speed steel or silicon-electrical steel) 01/01/2007 31/12/2500 -72269911 01/01/1988 31/12/1992 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of > 500 mm but < 600 mm, hot- or cold-rolled, not further worked than surface-treated 'including cladding' 'ecsc' (excl. products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/1992 -72269919 01/01/1988 31/12/1992 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of > 500 mm but < 600 mm, hot- or cold-rolled and further worked (excl. products not further worked than surface-treated 'including cladding' and products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/1992 -72269920 01/01/1993 31/12/1995 LIBEN Flat-rolled products of alloy steel other than stainless steel of a width of <= 500 mm, hot-rolled, not further worked than clad; of a width of > 500 mm, but < 600 mm, hot- or cold-rolled, not further worked than surface-treated "including cladding" "ECSC" (excl. of high-speed steel or silicon-electrical steel) 01/01/1993 31/12/1995 -72269920 01/01/1996 31/12/2003 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of <= 500 mm, hot-rolled, not further worked than clad; of a width of > 500 mm but < 600 mm, hot-rolled or cold-rolled "cold-reduced", not further worked than surface-treated "incl. cladding" (excl. plated or coated with zinc, of high-speed steel or silicon-electrical steel) 01/01/1996 31/12/2003 -72269930 01/01/2007 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and plated or coated with zinc (excl. electrolytically plated or coated, and products of high-speed steel or silicon-electrical steel) 01/01/2007 31/12/2500 -72269931 01/01/1988 31/12/1992 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 500 mm, hot-rolled, not further worked than clad 'ecsc' (excl. products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/1992 -72269939 01/01/1988 31/12/1992 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 500 mm, hot- or cold-rolled, not further worked than surface-treated 'including cladding' (excl. products hot-rolled, not further worked than clad and products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/1992 -72269970 01/01/2007 31/12/2500 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked (excl. plated or coated with zinc, and products of high-speed steel or silicon-electrical steel) 01/01/2007 31/12/2500 -72269980 01/01/1993 31/12/1995 LIBEN Flat-rolled products of alloy steel other than stainless steel of a width of < 500 mm, hot- or cold-rolled and further worked (excl. of a width of<= 500 mm, hot-rolled, not further worked than clad, of a width of > 500 mm, not further worked than surface-treated "including cladding" "ECSC", and products of high-speed steel or silicon-electrical steel) 01/01/1993 31/12/1995 -72269980 01/01/1996 31/12/2003 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 600 mm, hot-rolled or cold-rolled "cold-reduced" and further worked (excl. plated or coated with zinc, of a width of <= 500 mm, hot-rolled, not further worked than clad of a width of > 500 mm, not further worked than surface-treated "incl. cladding", and products of high-speed steel or silicon-electrical steel) 01/01/1996 31/12/2003 -72269990 01/01/1988 31/12/1992 LIBEN Flat-rolled products of alloy steel other than stainless, of a width of < 500 mm, hot- or cold-rolled and further worked (excl. products not further worked than surface-treated 'including cladding' and products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/1992 -7227 01/01/1988 31/12/2500 LIBEN Bars and rods of alloy steel other than stainless, hot-rolled, in irregularly wound coils 01/01/1988 31/12/2500 -722710 01/01/1988 31/12/2500 LIBEN Bars and rods of high-speed steel, hot-rolled, in irregularly wound coils 01/01/1988 31/12/2500 -72271000 01/01/1988 31/12/2500 LIBEN Bars and rods of high-speed steel, hot-rolled, in irregularly wound coils 01/01/1988 31/12/2500 -722720 01/01/1988 31/12/2500 LIBEN Bars and rods of silico-manganese steel, hot-rolled, in irregularly wound coils 01/01/1988 31/12/2500 -72272000 01/01/1988 31/12/2500 LIBEN Bars and rods of silico-manganese steel, hot-rolled, in irregularly wound coils 01/01/1988 31/12/2500 -722790 01/01/1988 31/12/2500 LIBEN Bars and rods of alloy steel other than stainless, hot-rolled, in irregularly wound coils (excl. products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/2500 -72279010 01/01/1988 31/12/2500 LIBEN Bars and rods, hot-rolled, of steel containing by weight >= 0,0008% of boron with any other element < the minimum content referred to in Note 1 f to this chapter, in irregularly wound coils 01/01/1988 31/12/2500 -72279030 01/01/1990 31/12/1995 LIBEN Bars and rods, hot-rolled, containing by weight < 0,35% carbon, 0,5% to 1,2% of manganese and 0,6% to 2,3% of silicon, in irregularly wound coils "ECSC" 01/01/1990 31/12/1995 -72279050 01/01/1993 31/12/2500 LIBEN Bars and rods, hot-rolled, of steel containing by weight 0,9% to 1,15% carbon, 0,5% to 2% of chromium and, if present, <= 0,5 of molybdenum, in irregularly wound coils 01/01/1993 31/12/2500 -72279070 01/01/1993 31/12/1995 LIBEN Bars and rods, hot-rolled, in irregularly wound coils of steel other than stainless steel, "ECSC" (excl. of high-speed steel or silico-manganese steel and bars and rods of subheadings 7227.90.10, 7227.90.50) 01/01/1993 31/12/1995 -72279080 01/01/1990 31/12/1992 LIBEN Bars and rods, hot-rolled, in irregularly wound coils, of alloy steel (excl. stainless) (excl. 7227.10-00 to 7227.90-30) 01/01/1990 31/12/1992 -72279090 01/01/1988 31/12/1989 LIBEN Bars and rods of alloy steel other than stainless, in irregularly wound coils 'ecsc' (excl. products containing by weight >=0.0008% boron and products of high-speed steel or silicon-electrical steel) 01/01/1988 31/12/1989 -72279095 01/01/1996 31/12/2500 LIBEN Bars and rods, hot-rolled, in irregularly wound coils of alloy steel other than stainless (excl. of high-speed steel or silico-manganese steel and bars and rods of subheadings 7227.90.10 and 7227.90.50) 01/01/1996 31/12/2500 -7228 01/01/1988 31/12/2500 LIBEN Other bars and rods of alloy steel other than stainless, angles, shapes and sections of alloy steel other than stainless, n.e.s.; hollow drill bars and rods, of alloy or non-alloy steel 01/01/1988 31/12/2500 -722810 01/01/1988 31/12/2500 LIBEN Bars and rods of high-speed steel (excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1988 31/12/2500 -72281010 01/01/1988 31/12/2003 LIBEN Bars and rods of high-speed steel, not further worked than hot-rolled, hot-drawn or extruded (excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1988 31/12/2003 -72281020 01/01/2004 31/12/2500 LIBEN Bars and rods of high-speed steel, not further worked than hot-rolled, hot-drawn or extruded, and hot-rolled, hot-drawn or extruded, not further worked than clad (excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/2004 31/12/2500 -72281030 01/01/1988 31/12/2003 LIBEN Bars and rods of high-speed steel, hot-rolled, hot-drawn or extruded, not further worked than clad (excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1988 31/12/2003 -72281050 01/01/1988 31/12/2500 LIBEN Bars and rods of high-speed steel, forged (excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1988 31/12/2500 -72281090 01/01/1988 31/12/2500 LIBEN Bars and rods of high-speed steel, not further worked than cold-formed or cold-finished, whether or not further worked, or hot-formed and further worked (excl. forged products, semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1988 31/12/2500 -722820 01/01/1988 31/12/2500 LIBEN Bars and rods of silico-manganese steel (excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1988 31/12/2500 -72282010 01/01/2004 31/12/2500 LIBEN Bars and rods of silico-manganese steel, of rectangular "other than square" cross-section, hot-rolled on four faces (excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/2004 31/12/2500 -72282011 01/01/1988 31/12/2003 LIBEN Bars and rods of silico-manganese steel, not further worked than hot-rolled, hot-drawn or extruded, of rectangular "other than square" cross-section, rolled on four faces (excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1988 31/12/2003 -72282019 01/01/1988 31/12/2003 LIBEN Bars and rods of silico-manganese steel, not further worked than hot-rolled, hot-drawn or extruded, of square or other than rectangular cross-section (excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1988 31/12/2003 -72282030 01/01/1988 31/12/2003 LIBEN Bars and rods of silico-manganese steel, hot-rolled, hot-drawn or extruded, not further worked than clad (excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1988 31/12/2003 -72282050 01/01/1988 31/12/1992 LIBEN Bars and rods of silico-manganese steel, forged 01/01/1988 31/12/1992 -72282060 01/01/1993 31/12/2003 LIBEN Bars and rods of silico-manganese steel, only cold-formed or cold-finished, incl. further worked, or hot-rolled and further worked (excl. hot-rolled, hot drawn or extruded, not further worked than clad, semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1993 31/12/2003 -72282070 01/01/1988 31/12/1990 LIBEN Bars and rods of silico-manganese steel, not further worked than cold-formed or cold-finished 01/01/1988 31/12/1990 -72282080 01/01/1991 31/12/1992 LIBEN Bars and rods of silico-manganese steel, (excl. 7228.20-11 to 7228.20-50) 01/01/1991 31/12/1992 -72282090 01/01/1988 31/12/1990 LIBEN Bars and rods of silico-manganese steel, cold-formed or cold-finished and further worked or hot-formed and further worked (excl. hot-rolled, hot-drawn or extruded products, not further worked than clad, and forged products) 01/01/1988 31/12/1990 -72282091 01/01/2004 31/12/2500 LIBEN Bars and rods of silico-manganese steel, of square or other than rectangular cross-section, not further worked than hot-rolled, hot-drawn or extruded, and hot-rolled, hot-drawn or extruded, not further worked than clad (excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/2004 31/12/2500 -72282099 01/01/2004 31/12/2500 LIBEN Bars and rods of silico-manganese stee, of square or other than rectangular cross-section, only cold-formed or cold-finished, incl. further worked, or hot-rolled and further worked (excl. hot-rolled, hot drawn or extruded, not further worked than clad, semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/2004 31/12/2500 -722830 01/01/1988 31/12/2500 LIBEN Bars and rods of alloy steel other than stainless, not further worked than hot-rolled, hot-drawn or extruded (excl. products of high-speed steel or silico-manganese steel, semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1988 31/12/2500 -72283010 01/01/1988 31/12/1992 LIBEN Bars and rods of alloy steel other than stainless, not further worked than hot-rolled, hot-drawn or extruded 'ecsc' (excl. products of circular cross-section of a diameter of >= 80 mm, and products of high-speed steel or silico-manganese steel) 01/01/1988 31/12/1992 -72283020 01/01/1993 31/12/2500 LIBEN Bars and rods of tool steel, only hot-rolled, only hot-drawn or only extruded (excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1993 31/12/2500 -72283030 01/01/1990 31/12/1992 LIBEN Bars and rods of alloy steel, (excl. stainless, high speed or silico-manganese), of rectangular cross-section, simply hot-rolled on 4 faces 01/01/1990 31/12/1992 -72283040 01/01/1993 31/12/1994 LIBEN Bars and rods of steel containing by weight 0.9% to 1.15% of carbon and 0.5% to 2% of chromium, and, if present, <= 0.5% of molybdenum, only hot-rolled, only hot-drawn or only extruded 'ecsc' 01/01/1993 31/12/1994 -72283041 01/01/1995 31/12/2500 LIBEN Bars and rods of steel containing by weight 0,9 to 1,15% of carbon and 0,5 to 2% of chromium, and, if present, <= 0,5% of molybdenum, only hot-rolled, hot-drawn or hot-extruded, of a circular cross-section of a diameter of >= 80 mm (excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1995 31/12/2500 -72283049 01/01/1995 31/12/2500 LIBEN Bars and rods of steel containing by weight 0,9 to 1,15% of carbon and 0,5 to 2% of chromium, and, if present, <= 0,5% of molybdenum, only hot-rolled, only hot-drawn or hot-extruded (other than of circular cross-section, of a diameter of >= 80 mm and excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1995 31/12/2500 -72283061 01/01/1993 31/12/2500 LIBEN Bars and rods of alloy steel other than stainless steel, only hot-rolled, hot-drawn or hot-extruded, of circular cross-section, of a diameter of >= 80 mm (other than of high-speed steel, silico-manganese steel, tool steel, articles of subheading 7228.30.41 and excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1993 31/12/2500 -72283069 01/01/1993 31/12/2500 LIBEN Bars and rods or alloy steel other than stainless steel, only hot-rolled, hot-drawn or hot-extruded, of circular cross-section, of a diameter of < 80 mm (other than of high-speed steel, silico-manganese steel, tool steel and articles of subheading 7228.30.49 and excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1993 31/12/2500 -72283070 01/01/1993 31/12/2500 LIBEN Bars and rods of alloy steel other than stainless steel, of rectangular "other than square" cross-section, hot-rolled on four faces (other than of high-speed steel, silico-manganese steel, tool steel, articles of subheading 7228.30.41 and 7228.30.49 and excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1993 31/12/2500 -72283080 01/01/1990 31/12/1992 LIBEN Bars and rods of alloy steel, (excl. stainless, high speed or silico-manganese), simply hot-rolled, hot-drawn or extruded (excl. 7228.30-10 and 7228.30-30) 01/01/1990 31/12/1992 -72283089 01/01/1993 31/12/2500 LIBEN Bars and rods of alloy steel other than stainless steel, only hot-rolled, hot-drawn or hot-extruded, of other than rectangular [other than square] cross-section, rolled on four faces, or of circular cross-section (other than of high-speed steel, silico-manganese steel, tool steel, articles of subheading 7228.30.49 and excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1993 31/12/2500 -72283090 01/01/1988 31/12/1989 LIBEN Bars and rods of alloy steel other than stainless, not further worked than hot-rolled, hot-drawn or extruded, of circular cross-section of a diameter of >= 80 mm 'ecsc' (excl. products of high-speed steel or silico-manganese steel) 01/01/1988 31/12/1989 -722840 01/01/1988 31/12/2500 LIBEN Bars and rods of alloy steel other than stainless, not further worked than forged (excl. products of high-speed steel or silico-manganese steel, semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1988 31/12/2500 -72284000 01/01/1988 31/12/1992 LIBEN Bars and rods of alloy steel other than stainless, not further worked than forged (excl. products of high-speed steel or silico-manganese steel) 01/01/1988 31/12/1992 -72284010 01/01/1993 31/12/2500 LIBEN Bars and rods of tool steel, only forged (excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1993 31/12/2500 -72284090 01/01/1993 31/12/2500 LIBEN Bars and rods of alloy steel, other than stainless steel, only forged (excl. of high-speed steel, silico-manganese steel, tool steel, semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1993 31/12/2500 -722850 01/01/1988 31/12/2500 LIBEN Bars and rods of alloy steel other than stainless, not further worked than cold-formed or cold-finished (excl. products of high-speed steel or silico-manganese steel, semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1988 31/12/2500 -72285000 01/01/1988 31/12/1990 LIBEN Bars and rods of alloy steel other than stainless, not further worked than cold-formed or cold-finished (excl. products of high-speed steel or silico-manganese steel) 01/01/1988 31/12/1990 -72285010 01/01/1991 31/12/1992 LIBEN Bars and rods of alloy steel, (excl. stainless, high speed or silico-manganese), of circular cross-section of a diameter >= 80 mm, simply cold-formed or cold-finished 01/01/1991 31/12/1992 -72285020 01/01/1993 31/12/2500 LIBEN Bars and rods of tool steel, only cold-formed or cold-finished (excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1993 31/12/2500 -72285040 01/01/1993 31/12/2500 LIBEN Bars and rods of steel containing 0,9% to 1,15% of carbon, 0,5% to 2% of chromium and, if present <= 0,5% of molybdenum, only cold-formed or cold-finished (excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1993 31/12/2500 -72285061 01/01/1993 31/12/2500 LIBEN Bars and rods of alloy steel, other than stainless steel, not further worked than cold-formed or cold-finished, of circular cross-section, of a diameter of >= 80 mm (excl. of high-speed steel, silico-manganese steel, tool steel, articles of subheading 7228.50.40, semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1993 31/12/2500 -72285069 01/01/1993 31/12/2500 LIBEN Bars and rods of alloy steel, other than stainless steel, not further worked than cold-formed or cold-finished, of circular cross-section, of a diameter of < 80 mm (excl. of high-speed steel, silico-manganese steel, tool steel, articles of subheading 7228.50.40, semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1993 31/12/2500 -72285070 01/01/1993 31/12/2003 LIBEN Bars and rods of alloy steel, other than stainless steel, not further worked than cold-formed or cold-finished, of rectangular "other than square" cross-section, rolled on four faces (excl. of high-speed steel, silico-manganese steel, tool steel, articles of subheading 7228.50.40, semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1993 31/12/2003 -72285080 01/01/2004 31/12/2500 LIBEN Bars and rods of alloy steel, other than stainless steel, not further worked than cold-formed or cold-finished (excl. of circular cross-section and products of high-speed steel, silico-manganese steel, tool steel, articles of subheading 7228.50.40, semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/2004 31/12/2500 -72285089 01/01/1993 31/12/2003 LIBEN Bars and rods of alloy steel, other than stainless steel, not further worked than cold-formed or cold-finished, of rectangular "other than square" cross-section, rolled on four faces or of circular cross-section (excl. of high-speed steel, silico-manganese steel, tool steel, articles of subheading 7228.50.40, semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1993 31/12/2003 -72285090 01/01/1991 31/12/1992 LIBEN Bars and rods of alloy steel, (excl. stainless, high speed or silico-manganese), simply cold-formed or cold-finished, (other than of circular cross-section of a diameter >= 80 mm) 01/01/1991 31/12/1992 -722860 01/01/1988 31/12/2500 LIBEN Bars and rods of alloy steel other than stainless, cold-formed or cold-finished and further worked or hot-formed and further worked, n.e.s. (excl. products of high-speed steel or silico-manganese steel, semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1988 31/12/2500 -72286010 01/01/1988 31/12/2003 LIBEN Bars and rods of alloy steel other than stainless, hot-rolled, hot-drawn or extruded, not further worked than clad (excl. products of high-speed steel or silico-manganese steel, hot-rolled, hot-drawn or extruded, not further worked than clad, products of high-speed steel or silico-manganese steel, semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1988 31/12/2003 -72286020 01/01/2004 31/12/2500 LIBEN Bars and rods of tool steel, cold-formed or cold-finished and further worked or hot-formed and further worked (excl. semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/2004 31/12/2500 -72286080 01/01/2004 31/12/2500 LIBEN Bars and rods of alloy steel, other than stainless steel, cold-formed or cold-finished and further worked or hot-formed and further worked (excl. bars and rods of high-speed steel, silico-manganese steel or tool steel, semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/2004 31/12/2500 -72286081 01/01/1993 31/12/2003 LIBEN Bars and rods of tool steel, cold-formed or cold-finished and further worked or hot-formed and further worked (excl. hot-rolled, hot-drawn or extruded, not further worked than clad, semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1993 31/12/2003 -72286089 01/01/1993 31/12/2003 LIBEN Bars and rods of alloy steel, other than stainless steel, cold-formed or cold-finished and further worked or hot-formed and further worked (excl. hot-rolled, hot-drawn or extruded, not further worked than clad, and bars and rods of high-speed steel, silico-manganese steel or tool steel, semi-finished products, flat-rolled products and hot-rolled bars and rods in irregularly wound coils) 01/01/1993 31/12/2003 -72286090 01/01/1988 31/12/1992 LIBEN Bars and rods of alloy steel other than stainless, cold-formed or cold-finished and further worked or hot-formed and further worked n.e.s. (excl. products hot-rolled, hot-drawn or extruded, not further worked than clad, and products of high-speed steel or silico-manganese steel) 01/01/1988 31/12/1992 -722870 01/01/1988 31/12/2500 LIBEN Angles, shapes and sections of alloy steel other than stainless, n.e.s. 01/01/1988 31/12/2500 -72287010 01/01/1988 31/12/2500 LIBEN Angles, shapes and sections of alloy steel other than stainless, not further worked than hot-rolled, hot-drawn or extruded 01/01/1988 31/12/2500 -72287031 01/01/1988 31/12/2003 LIBEN Angles, shapes and sections of alloy steel other than stainless, hot-rolled, hot-drawn, not further worked than clad 01/01/1988 31/12/2003 -72287090 01/01/2004 31/12/2500 LIBEN Angles, shapes and sections of alloy steel other than stainless, n.e.s. (excl. products not further worked than hot-rolled, hot-drawn or extruded) 01/01/2004 31/12/2500 -72287091 01/01/1988 31/12/2003 LIBEN Angles, shapes and sections of alloy steel other than stainless, not further worked than cold-formed or cold-finished 01/01/1988 31/12/2003 -72287099 01/01/1988 31/12/2003 LIBEN Angles, shapes and sections of alloy steel other than stainless, cold-formed or cold-finished and further worked or not further worked than forged or forged or otherwise hot-formed and further worked, n.e.s. (excl. products hot-rolled, hot-drawn or extruded, not further worked than clad) 01/01/1988 31/12/2003 -722880 01/01/1988 31/12/2500 LIBEN Hollow drill bars and rods, of alloy or non-alloy steel 01/01/1988 31/12/2500 -72288000 01/01/2004 31/12/2500 LIBEN Hollow drill bars and rods, of alloy or non-alloy steel 01/01/2004 31/12/2500 -72288010 01/01/1988 31/12/2003 LIBEN Hollow drill bars and rods, of alloy steel 01/01/1988 31/12/2003 -72288090 01/01/1988 31/12/2003 LIBEN Hollow drill bars and rods, of non-alloy steel 01/01/1988 31/12/2003 -7229 01/01/1988 31/12/2500 LIBEN Wire of alloy steel other than stainless, in coils (excl. bars and rods) 01/01/1988 31/12/2500 -722910 01/01/1988 31/12/2006 LIBEN Wire of high-speed steel, in coils (excl. bars and rods) 01/01/1988 31/12/2006 -72291000 01/01/1988 31/12/2006 LIBEN Wire of high-speed steel, in coils (excl. bars and rods) 01/01/1988 31/12/2006 -722920 01/01/1988 31/12/2500 LIBEN Wire of silico-manganese steel, in coils (excl. bars and rods) 01/01/1988 31/12/2500 -72292000 01/01/1988 31/12/1995 LIBEN Wire of silico-manganese steel, in coils (excl. bars and rods) 01/01/1988 31/12/1995 -72292000 01/01/1996 31/12/2500 LIBEN Wire of silico-manganese steel, in coils (excl. bars and rods) 01/01/1996 31/12/2500 -722990 01/01/1988 31/12/2500 LIBEN Wire of alloy steel other than stainless, in coils (excl. bars and rods and wire of silico-manganese steel) 01/01/1988 31/12/2500 -72299000 01/01/1988 31/12/1992 LIBEN Wire of alloy steel other than stainless, in coils or reels (excl. bars and rods and wire of high-speed steel or of silico-manganese steel) 01/01/1988 31/12/1992 -72299010 01/01/1993 31/12/1995 LIBEN Wire of steel containing by weight < 0,35% of carbon, 0,5% to 1,2% of manganese and 0,6% to 2,3% of silicon, in coils (excl. rolled bars and rods) 01/01/1993 31/12/1995 -72299020 01/01/2007 31/12/2500 LIBEN Wire of high-speed steel, in coils (excl. bars and rods) 01/01/2007 31/12/2500 -72299050 01/01/1993 31/12/2500 LIBEN Wire of steel containing by weight 0,9% to 1,1% of carbon, 0,5% to 2% of chromium and, if present, <= 0,5% of molybdenum, in coils (excl. rolled bars and rods) 01/01/1993 31/12/2500 -72299090 01/01/1993 31/12/2500 LIBEN Wire of alloy steel other than stainless, in coils (excl. rolled bars and rods, wire of high-speed steel or silico-manganese steel and articles of subheading 7229.90.50) 01/01/1993 31/12/2500 -72CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 72 01/01/2002 31/12/2500 -72CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 72 01/01/2002 31/12/2500 -72CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 72 01/01/2002 31/12/2500 -72II 01/01/1988 31/12/2500 LIBEN Components of complete industrial plants of chapter 72 01/01/1988 31/12/2500 -72III0 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 72; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -72III0 01/01/2001 31/12/2500 LIBEN Components of complete industrial plants of chapter 72 01/01/2001 31/12/2500 -72III000 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 72; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -72III000 01/01/2001 31/12/2500 LIBEN Components of complete industrial plants of chapter 72 01/01/2001 31/12/2500 -72III1 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 72; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -72III100 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 72; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -72III2 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 72; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -72III200 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 72; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -72III3 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 72; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -72III300 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 72; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -72III4 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 72; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -72III400 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 72; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -72III5 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 72; food, drink and tobacco industry 01/01/1988 31/12/2005 -72III500 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 72; food, drink and tobacco industry 01/01/1988 31/12/2005 -72III6 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 72; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -72III600 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 72; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -72III7 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 72; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -72III700 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 72; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -72III8 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 72; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -72III800 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 72; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -72III9 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 72; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/1992 -72III9 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 72; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1997 31/12/2005 -72III900 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 72; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/1992 -72III900 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 72; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1997 31/12/2005 -72MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -72MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -72MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -72SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 72 01/01/1988 31/12/2500 -72SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 72 and SITC section 0 01/01/1997 31/12/2001 -72SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 72 and SITC group 000 01/01/1997 31/12/2001 -72SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 72 and SITC section 2 01/01/1997 31/12/2500 -72SSS282 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 72 and SITC group 282 01/01/1997 31/12/2500 -72SSS6 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 72 and SITC section 6 01/01/1988 31/12/2500 -72SSS671 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 72 and SITC group 671 01/01/1988 31/12/2500 -72SSS672 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 72 and SITC group 672 01/01/1997 31/12/2500 -72SSS673 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 72 and SITC group 673 01/01/1988 31/12/2500 -72SSS674 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 72 and SITC group 674 01/01/1997 31/12/2500 -72SSS675 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 72 and SITC group 675 01/01/1997 31/12/2500 -72SSS676 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 72 and SITC group 676 01/01/1992 31/12/2500 -72SSS678 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 72 and SITC group 678 01/01/1988 31/12/2500 -72SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 72 and SITC section 9 01/01/1988 31/12/1996 -72SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 72 and SITC section 9 01/01/1997 31/12/2500 -72SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 72 and SITC group 999 01/01/1988 31/12/1996 -72SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 72 and SITC group 999 01/01/1997 31/12/2500 -72VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 72 for the assembly of motor vehicles 01/01/1988 31/12/2500 -72VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 72 for the assembly of motor vehicles 01/01/1988 31/12/2500 -72VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 72 for the assembly of motor vehicles 01/01/1988 31/12/2500 -73 01/01/1988 31/12/2500 LIBEN ARTICLES OF IRON OR STEEL 01/01/1988 31/12/2500 -7301 01/01/1988 31/12/2500 LIBEN Sheet piling of iron or steel, whether or not drilled, punched or made from assembled elements; welded angles, shapes and sections, of iron or steel 01/01/1988 31/12/2500 -730110 01/01/1988 31/12/2500 LIBEN Sheet piling of iron or steel, whether or not drilled, punched or made from assembled elements 01/01/1988 31/12/2500 -73011000 01/01/1988 31/12/2500 LIBEN Sheet piling of iron or steel, whether or not drilled, punched or made from assembled elements 01/01/1988 31/12/2500 -730120 01/01/1988 31/12/2500 LIBEN Angles, shapes and sections, of iron or steel, welded 01/01/1988 31/12/2500 -73012000 01/01/1988 31/12/2500 LIBEN Angles, shapes and sections, of iron or steel, welded 01/01/1988 31/12/2500 -7302 01/01/1988 31/12/2500 LIBEN Railway or tramway track construction material of iron or steel, the following : rails, check-rails and rack rails, switch blades, crossing frogs, point rods and other crossing pieces, sleepers "cross-ties", fish-plates, chairs, chair wedges, sole plates "base plates", rail clips, bedplates, ties and other material specialised for jointing or fixing rails 01/01/1988 31/12/2500 -730210 01/01/1988 31/12/2500 LIBEN Rails of iron or steel, for railway or tramway track (excl. check-rails) 01/01/1988 31/12/2500 -73021010 01/01/1988 31/12/2500 LIBEN Current-conducting rails of iron or steel, with parts of non-ferrous metal, for railway or tramway track (excl. check-rails) 01/01/1988 31/12/2500 -73021021 01/01/2004 31/12/2011 LIBEN Vignole rails of iron or steel, for railway or tramway track, new, of a weight of >= 46 kg/m 01/01/2004 31/12/2011 -73021022 01/01/2012 31/12/2500 LIBEN Vignole rails of iron or steel, for railway or tramway track, new, of a weight of >= 36 kg/m 01/01/2012 31/12/2500 -73021023 01/01/2004 31/12/2011 LIBEN Vignole rails of iron or steel, for railway or tramway track, new, of a weight of >= 27 kg/m but < 46 kg/m 01/01/2004 31/12/2011 -73021028 01/01/2012 31/12/2500 LIBEN Vignole rails of iron or steel, for railway or tramway track, new, of a weight of < 36 kg/m 01/01/2012 31/12/2500 -73021029 01/01/2004 31/12/2011 LIBEN Vignole rails of iron or steel, for railway or tramway track, new, of a weight of < 27 kg/m 01/01/2004 31/12/2011 -73021031 01/01/1988 31/12/2003 LIBEN Rails of iron or steel, for railway or tramway track, new, of a weight per m of >= 20 kg (excl. check-rails) 01/01/1988 31/12/2003 -73021039 01/01/1988 31/12/2003 LIBEN Rails of iron or steel, for railway or tramway track, new, of a weight per m of < 20 kg (excl. check-rails) 01/01/1988 31/12/2003 -73021040 01/01/2004 31/12/2500 LIBEN Grooved rails of iron or steel, for railway or tramway track, new 01/01/2004 31/12/2500 -73021050 01/01/2004 31/12/2500 LIBEN Rails of iron or steel, for railway or tramway track, new (excl. vignole rails, grooved rails, and current-conducting rails with parts of non-ferrous metal) 01/01/2004 31/12/2500 -73021090 01/01/1988 31/12/2500 LIBEN Rails of iron or steel, for railway or tramway track, used (excl. current-conducting rails with parts of non-ferrous metal) 01/01/1988 31/12/2500 -730220 01/01/1988 31/12/2001 LIBEN Sleepers "cross-ties" of iron or steel "ECSC" 01/01/1988 31/12/2001 -73022000 01/01/1988 31/12/2001 LIBEN Sleepers "cross-ties" of iron or steel "ECSC" 01/01/1988 31/12/2001 -730230 01/01/1988 31/12/2500 LIBEN Switch blades, crossing frogs, point rods and other crossing pieces, for railway or tramway track, of iron or steel 01/01/1988 31/12/2500 -73023000 01/01/1988 31/12/2500 LIBEN Switch blades, crossing frogs, point rods and other crossing pieces, for railway or tramway track, of iron or steel 01/01/1988 31/12/2500 -730240 01/01/1988 31/12/2500 LIBEN Fish-plates and sole plates of iron or steel, for railways or tramways 01/01/1988 31/12/2500 -73024000 01/01/2004 31/12/2500 LIBEN Fish-plates and sole plates of iron or steel, for railways or tramways 01/01/2004 31/12/2500 -73024010 01/01/1988 31/12/2003 LIBEN Fish-plates and sole plates of iron or steel, for railways or tramways, rolled 01/01/1988 31/12/2003 -73024090 01/01/1988 31/12/2003 LIBEN Fish-plates and sole plates of iron or steel, for railways or tramways (excl. rolled products) 01/01/1988 31/12/2003 -730290 01/01/1988 31/12/2500 LIBEN Sleepers "cross-ties", check-rails, rack rails, chairs, chair wedges, rail clips, bedplates and ties and other specialised material for the jointing or fixing of railway or tramway track, of iron or steel (excl. rails, switch blades, crossing frogs, point rods and other crossing pieces, and fish-plates and sole plates) 01/01/1988 31/12/2500 -73029000 01/01/2004 31/12/2500 LIBEN Sleepers "cross-ties", check-rails, rack rails, chairs, chair wedges, rail clips, bedplates and ties and other specialised material for the jointing or fixing of railway or tramway track, of iron or steel (excl. rails, switch blades, crossing frogs, point rods and other crossing pieces, and fish-plates and sole plates) 01/01/2004 31/12/2500 -73029010 01/01/1988 31/12/2001 LIBEN Check-rails of iron or steel, for railway or tramway track "ECSC" 01/01/1988 31/12/2001 -73029020 01/01/2002 31/12/2003 LIBEN Sleepers "cross-ties" and check-rails, of iron or steel, for railway or tramway track 01/01/2002 31/12/2003 -73029030 01/01/1988 31/12/2003 LIBEN Rail clips, bedplates and ties, of iron or steel, for railway or tramway track 01/01/1988 31/12/2003 -73029090 01/01/1988 31/12/2003 LIBEN Rack rails, chairs, chair wedges and other specialised material for the jointing or fixing of railway or tramway track, of iron or steel (excl. rails, switch blades, crossing frogs, point rods and other crossing pieces, fish-plates, sole plates "base plates", check-rails, sleepers "cross-ties", rail clips, bedplates and ties) 01/01/1988 31/12/2003 -7302I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7302; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -7302I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7302; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -7302I1 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7302; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -7302I100 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7302; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -7302I2 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7302; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -7302I200 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7302; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -7302I3 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7302; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -7302I300 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7302; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -7302I7 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7302; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -7302I700 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7302; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -7303 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, of cast iron 01/01/1988 31/12/2500 -730300 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, of cast iron 01/01/1988 31/12/2500 -73030010 01/01/1988 31/12/2500 LIBEN Tubes and pipes of a kind used in pressure systems, of cast iron 01/01/1988 31/12/2500 -73030090 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, of cast iron (excl. products of a kind used in pressure systems) 01/01/1988 31/12/2500 -7303S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7303 and SITC section 6 01/01/1997 31/12/2500 -7303S679 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7303 and SITC group 679 01/01/1997 31/12/2500 -7304 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of iron or steel (excl. products of cast iron) 01/01/1988 31/12/2500 -730410 01/01/1988 31/12/2006 LIBEN Line pipe of a kind used for oil or gas pipelines, seamless, of iron or steel (excl. products of cast iron) 01/01/1988 31/12/2006 -73041010 01/01/1988 31/12/2006 LIBEN Line pipe of a kind used for oil or gas pipelines, seamless, of iron or steel, of an external diameter of <= 168,3 mm (excl. products of cast iron) 01/01/1988 31/12/2006 -73041030 01/01/1988 31/12/2006 LIBEN Line pipe of a kind used for oil or gas pipelines, seamless, of iron or steel, of an external diameter of > 168,3 mm but <= 406,4 mm (excl. products of cast iron) 01/01/1988 31/12/2006 -73041090 01/01/1988 31/12/2006 LIBEN Line pipe of a kind used for oil or gas pipelines, seamless, of iron or steel, of an external diameter of > 406,4 mm (excl. products of cast iron) 01/01/1988 31/12/2006 -730411 01/01/2007 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, seamless, of stainless steel 01/01/2007 31/12/2500 -73041100 01/01/2007 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, seamless, of stainless steel 01/01/2007 31/12/2500 -730419 01/01/2007 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, seamless, of iron or steel (excl. products of stainless steel or of cast iron) 01/01/2007 31/12/2500 -73041910 01/01/2007 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, seamless, of iron or steel, of an external diameter of <= 168,3 mm (excl. products of stainless steel or of cast iron) 01/01/2007 31/12/2500 -73041930 01/01/2007 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, seamless, of iron or steel, of an external diameter of > 168,3 mm but <= 406,4 mm (excl. products of stainless steel or of cast iron) 01/01/2007 31/12/2500 -73041990 01/01/2007 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, seamless, of iron or steel, of an external diameter of > 406,4 mm (excl. products of stainless steel or of cast iron) 01/01/2007 31/12/2500 -730420 01/01/1988 31/12/1995 LIBEN Casing and tubing of a kind used for drilling for oil or gas, seamless, of iron or steel (excl. products of cast iron) 01/01/1988 31/12/1995 -73042010 01/01/1988 31/12/1995 LIBEN Drill pipe of a kind used for drilling for oil or gas, of iron or steel (excl. products of cast iron) 01/01/1988 31/12/1995 -73042091 01/01/1988 31/12/1995 LIBEN Casing and tubing of a kind used for drilling for oil or gas, seamless, of iron or steel, of an external diameter <= 406,4 mm (excl. products of cast iron) 01/01/1988 31/12/1995 -73042099 01/01/1988 31/12/1995 LIBEN Casing and tubing of a kind used for drilling for oil or gas, seamless, of iron or steel, of an external diameter > 406,4 mm (excl. products of cast iron) 01/01/1988 31/12/1995 -730421 01/01/1996 31/12/2006 LIBEN Drill pipe, seamless, of a kind used in drilling for oil or gas, of iron or steel (excl. products of cast iron) 01/01/1996 31/12/2006 -73042100 01/01/1996 31/12/2006 LIBEN Drill pipe, seamless, of a kind used in drilling for oil or gas, of iron or steel (excl. products of cast iron) 01/01/1996 31/12/2006 -730422 01/01/2007 31/12/2500 LIBEN Drill pipe, seamless, of stainless steel, of a kind used in drilling for oil or gas 01/01/2007 31/12/2500 -73042200 01/01/2007 31/12/2500 LIBEN Drill pipe, seamless, of stainless steel, of a kind used in drilling for oil or gas 01/01/2007 31/12/2500 -730423 01/01/2007 31/12/2500 LIBEN Drill pipe, seamless, of a kind used in drilling for oil or gas, of iron or steel (excl. products of stainless steel or of cast iron) 01/01/2007 31/12/2500 -73042300 01/01/2007 31/12/2500 LIBEN Drill pipe, seamless, of a kind used in drilling for oil or gas, of iron or steel (excl. products of stainless steel or of cast iron) 01/01/2007 31/12/2500 -730424 01/01/2007 31/12/2500 LIBEN Casing and tubing, seamless, of a kind used for drilling for oil or gas, of stainless steel 01/01/2007 31/12/2500 -73042400 01/01/2007 31/12/2500 LIBEN Casing and tubing, seamless, of a kind used for drilling for oil or gas, of stainless steel 01/01/2007 31/12/2500 -730429 01/01/1996 31/12/2500 LIBEN Casing and tubing, seamless, of iron or steel, of a kind used in drilling for oil or gas (excl. products of cast iron) 01/01/1996 31/12/2500 -73042910 01/01/2007 31/12/2500 LIBEN Casing and tubing of a kind used for drilling for oil or gas, seamless, of iron or steel, of an external diameter <= 168,3 mm (excl. products of cast iron) 01/01/2007 31/12/2500 -73042911 01/01/1996 31/12/2006 LIBEN Casing and tubing of a kind used for drilling for oil or gas, seamless, of iron or steel, of an external diameter <= 406,4 mm (excl. products of cast iron) 01/01/1996 31/12/2006 -73042919 01/01/1996 31/12/2006 LIBEN Casing and tubing of a kind used for drilling for oil or gas, seamless, of iron or steel, of an external diameter > 406,4 mm (excl. products of cast iron) 01/01/1996 31/12/2006 -73042930 01/01/2007 31/12/2500 LIBEN Casing and tubing of a kind used for drilling for oil or gas, seamless, of iron or steel, of an external diameter > 168,3 mm, but <= 406,4 mm (excl. products of cast iron) 01/01/2007 31/12/2500 -73042990 01/01/2007 31/12/2500 LIBEN Casing and tubing of a kind used for drilling for oil or gas, seamless, of iron or steel, of an external diameter > 406,4 mm (excl. products of cast iron) 01/01/2007 31/12/2500 -730431 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of iron or non-alloy steel, cold-drawn or cold-rolled "cold-reduced" (excl. cast iron products and line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used for drilling for oil or gas) 01/01/1988 31/12/2500 -73043110 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of iron or non-alloy steel, cold-drawn or cold-rolled "cold-reduced", with attached fittings, for gases or liquids, for civil aircraft (excl. cast iron products) 01/01/1988 31/12/2005 -73043120 01/01/2006 31/12/2500 LIBEN Precision tubes, seamless, of circular cross-section, of iron or non-alloy steel, cold-drawn or cold-rolled "cold-reduced" (excl. line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used for drilling for oil or gas) 01/01/2006 31/12/2500 -73043180 01/01/2006 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of iron or non-alloy steel, cold-drawn or cold-rolled "cold-reduced" (excl. cast iron products, line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil or gas and precision tubes) 01/01/2006 31/12/2500 -73043191 01/01/1988 31/12/2005 LIBEN Precision tubes, seamless, of circular cross-section, of non-alloy steel, cold-drawn or cold-rolled "cold-reduced" (excl. cast iron products and line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used for drilling for oil or gas and pipes with attached fittings, for gases or liquids, for civil aircraft) 01/01/1988 31/12/2005 -73043199 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of iron or non-alloy steel, cold-drawn or cold-rolled "cold-reduced" (excl. cast iron products, line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil or gas and pipes with attached fittings, for gases or liquids, for civil aircraft, and precision tubes) 01/01/1988 31/12/2005 -730439 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of iron or non-alloy steel, not cold-drawn or cold-rolled "cold-reduced" (excl. cast iron products, line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil or gas) 01/01/1988 31/12/2500 -73043910 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of iron or non-alloy steel, not cold-drawn or cold-rolled "cold-reduced", unworked, straight and of uniform wall-thickness, for use solely in the manufacture of tubes and pipes with other cross-sections and wall-thicknesses (excl. cast iron products) 01/01/1988 31/12/2500 -73043920 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of iron or non-alloy steel, not cold-drawn or cold-rolled "cold-reduced", with attached fittings, for gases or liquids, for civil aircraft (excl. cast iron products) 01/01/1988 31/12/2005 -73043930 01/01/1988 31/12/2008 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of iron (excl. cast iron) or non-alloy steel, not cold-drawn or cold-rolled "cold-reduced", of an external diameter of > 421 mm and a wall-thickness of > 10,5 mm (excl. line pipe of a kind used for oil or gas pipelines and casing and tubing of a kind used for drilling for oil or gas) 01/01/1988 31/12/2008 -73043951 01/01/1988 31/12/2005 LIBEN Threaded or threadable tubes, seamless, of iron or non-alloy steel, plated or coated with zinc (excl. cast iron products) 01/01/1988 31/12/2005 -73043952 01/01/2006 31/12/2500 LIBEN Threaded or threadable tubes "gas pipe", seamless, of iron or non-alloy steel, plated or coated with zinc (excl. cast iron products) 01/01/2006 31/12/2500 -73043958 01/01/2006 31/12/2500 LIBEN Threaded or threadable tubes "gas pipe", seamless, of iron or non-alloy steel (excl. cast iron products and products plated or coated with zinc) 01/01/2006 31/12/2500 -73043959 01/01/1988 31/12/2005 LIBEN Threaded or threadable tubes, seamless, of iron or non-alloy steel (excl. cast iron products and products plated or coated with zinc) 01/01/1988 31/12/2005 -73043991 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of iron or non-alloy steel, not cold-drawn or cold-rolled "cold-reduced", of an external diameter of <= 168,3 mm (excl. cast iron products, line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil or gas and tubes, pipes and hollow profiles of heading 7304.39.10 to 7304.39.59) 01/01/1988 31/12/2005 -73043992 01/01/2006 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of iron or non-alloy steel, not cold-drawn or cold-rolled (cold-reduced), of an external diameter of <= 168,3 mm (excl. cast iron products, line pipe of a kind used for oil or gas pipelines, casing, tubing and drill pipe of a kind used in drilling for oil or gas and tubes, pipes and hollow profiles of subheadings 7304 39 10 to 7304 39 58) 01/01/2006 31/12/2500 -73043993 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of iron or non-alloy steel, not cold-drawn or cold-rolled (cold-reduced), of an external diameter of > 168,3 mm but <= 406,4 mm (excl. cast iron products, line pipe of a kind used for oil or gas pipelines, casing, tubing and drill pipe of a kind used for drilling for oil or gas and tubes, pipes and hollow profiles of subheadings 7304 39 10 to 7304 39 58) 01/01/1988 31/12/2500 -73043998 01/01/2009 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of iron or non-alloy steel, not cold-drawn or cold-rolled "cold-reduced", of an external diameter of > 406,4 mm (excl. cast iron products, line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil or gas and tubes, pipes and hollow profiles of heading 7304.39.52 and 7304.39.58) 01/01/2009 31/12/2500 -73043999 01/01/1988 31/12/2008 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of iron or non-alloy steel, not cold-drawn or cold-rolled "cold-reduced", of an external diameter of > 406,4 mm (excl. cast iron products, line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil or gas and tubes, pipes and hollow profiles of heading 7304.39.30 to 7304.39.58) 01/01/1988 31/12/2008 -730441 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of stainless steel, cold-drawn or cold-rolled "cold-reduced" (excl. line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil or gas) 01/01/1988 31/12/2500 -73044100 01/01/2006 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of stainless steel, cold-drawn or cold-rolled "cold-reduced" (excl. line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil or gas) 01/01/2006 31/12/2500 -73044110 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of stainless steel, cold-drawn or cold-rolled "cold-reduced", with attached fittings, for gases or liquids, for civil aircraft 01/01/1988 31/12/2005 -73044190 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of stainless steel, cold-drawn or cold-rolled "cold-reduced" (excl. line pipe of a kind used for oil or gas pipelines or of a kind used for drilling for oil or gas and pipes with attached fittings, for gases or liquids, for civil aircraft) 01/01/1988 31/12/2005 -730449 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of stainless steel, not cold-drawn or cold-rolled "cold-reduced" (excl. line pipe of a kind used for oil or gas pipelines or of a kind used for drilling for oil or gas) 01/01/1988 31/12/2500 -73044910 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of stainless steel, not cold-drawn or cold-rolled "cold-reduced", unworked, straight and of uniform wall-thickness, for use solely in the manufacture of tubes and pipes with other cross-sections and wall-thicknesses 01/01/1988 31/12/2500 -73044930 01/01/1988 31/12/2005 LIBEN Tubes and pipes of circular cross-section, of stainless steel, not cold-drawn or cold-rolled, seamless, with attached fittings, for gases or liquids, for civil aircraft 01/01/1988 31/12/2005 -73044991 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of stainless steel, not cold-drawn or cold-rolled "cold-reduced", of an external diameter of <= 406,4 mm (excl. line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil or gas and tubes, pipes and hollow profiles of heading 7304.49.10 to 7304.49.30) 01/01/1988 31/12/2005 -73044992 01/01/2006 31/12/2007 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of stainless steel, not cold-drawn or cold-rolled "cold-reduced", of an external diameter of <= 406,4 mm (excl. line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil or gas and tubes, pipes and hollow profiles of heading 7304.49.10) 01/01/2006 31/12/2007 -73044993 01/01/2008 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of stainless steel, not cold-drawn or cold-rolled "cold-reduced", of an external diameter of <= 168,3 mm (excl. line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil or gas and tubes, pipes and hollow profiles of heading 7304.49.10) 01/01/2008 31/12/2500 -73044995 01/01/2008 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of stainless steel, not cold-drawn or cold-rolled "cold-reduced", of an external diameter of > 168,3 mm but <= 406,4 mm (excl. line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil or gas and tubes, pipes and hollow profiles of heading 7304.49.10) 01/01/2008 31/12/2500 -73044999 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of stainless steel, not cold-drawn or cold-rolled "cold-reduced", of an external diameter of > 406,4 mm (excl. line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil or gas and tubes, pipes and hollow profiles of heading 7304.49.10) 01/01/1988 31/12/2500 -730451 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of alloy steel other than stainless, cold-drawn or cold-rolled "cold-reduced" (excl. line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil) 01/01/1988 31/12/2500 -73045111 01/01/1988 31/12/2003 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of alloy steel other than stainless, cold-drawn or cold-rolled "cold-reduced", straight and of uniform wall-thickness, containing by weight >= 0,9% but <= 1,15% carbon and >= 0,5% but <= 2% chrome, whether or not containing by weight <= 0,5% molybdenum, of a length of <= 4,5 m (excl. tubes, pipes and hollow profiles of heading 7304.10 and 7304.20) 01/01/1988 31/12/2003 -73045112 01/01/2004 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of alloy steel other than stainless, cold-drawn or cold-rolled "cold-reduced", straight and of uniform wall-thickness, containing by weight >= 0,9% but <= 1,15% carbon and >= 0,5% but <= 2% chrome, whether or not containing by weight <= 0,5% molybdenum, of a length of <= 0,5 m (excl. tubes, pipes and hollow profiles of subheadings 7304 19 to 7304 29) 01/01/2004 31/12/2500 -73045118 01/01/2004 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of alloy steel other than stainless, cold-drawn or cold-rolled "cold-reduced", straight and of uniform wall-thickness, containing by weight >= 0,9% but <= 1,15% carbon and >= 0,5% but <= 2% chrome, whether or not containing by weight <= 0,5% molybdenum, of a length of > 0,5 m (excl. tubes, pipes and hollow profiles of subheadings 7304 19 to 7304 29) 01/01/2004 31/12/2500 -73045119 01/01/1988 31/12/2003 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of alloy steel other than stainless, cold-drawn or cold-rolled "cold-reduced", straight and of uniform wall-thickness, containing by weight >= 0,9% but <= 1,15% carbon and >= 0,5% but <= 2% chrome, whether or not containing by weight <= 0,5% molybdenum, of a length of > 4,5 m (excl. tubes, pipes and hollow profiles of heading 7304.10 and 7304.20) 01/01/1988 31/12/2003 -73045130 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of alloy steel other than stainless, cold-drawn or cold-rolled "cold-reduced", with attached fittings, for gases or liquids, for civil aircraft (excl. tubes, pipes and hollow profiles of heading 7304.51.11 and 7304.51.19) 01/01/1988 31/12/2005 -73045181 01/01/2006 31/12/2500 LIBEN Precision tubes, seamless, of circular cross-section, of alloy steel other than stainless, cold-drawn or cold-rolled "cold-reduced" (excl. line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil and tubes, and pipes and hollow profiles, straight and of uniform wall-thickness, containing by weight >= 0,9% but <= 1,15% carbon and >= 0,5% but <= 2% chrome, whether or not containing by weight <= 0,5% molybdenum) 01/01/2006 31/12/2500 -73045189 01/01/2006 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of alloy steel other than stainless, not cold-drawn or cold-rolled "cold-reduced" (excl. line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil, precision tubes, and , pipes and hollow profiles, straight and of uniform wall-thickness, containing by weight >= 0,9% but <= 1,15% carbon and >= 0,5% but <= 2% chrome, whether or not containing by weight <= 0,5% molybdenum) 01/01/2006 31/12/2500 -73045191 01/01/1988 31/12/2005 LIBEN Steel precision tubes, seamless, of circular cross-section, of alloy steel other than stainless, cold-drawn or cold-rolled "cold-reduced" (excl. line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil and tubes, pipes and hollow profiles of heading 7304.51.11 to 7304.51.30) 01/01/1988 31/12/2005 -73045199 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of alloy steel other than stainless, not cold-drawn or cold-rolled "cold-reduced" (excl. line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil, precision tubes, and tubes, pipes and hollow profiles of heading 7304.51.11 to 7304.51.30) 01/01/1988 31/12/2005 -730459 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of alloy steel other than stainless, not cold-drawn or cold-rolled "cold-reduced" (excl. line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil) 01/01/1988 31/12/2500 -73045910 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of alloy steel other than stainless, not cold-drawn or cold-rolled "cold-reduced", unworked, straight and of uniform wall-thickness, for use solely in the manufacture of tubes and pipes with other cross-sections and wall-thicknesses 01/01/1988 31/12/2500 -73045931 01/01/1988 31/12/2003 LIBEN Tubes, pipes and hollow profiles of alloy steel (excl. stainless), seamless, of circular cross-section (not cold-drawn or cold-rolled), straight and of uniform wall-thickness, of a length <= 4.5m, containing by weight >= 0,9% but <= 1,15% carbon and >= 0,5% but <= 2% chrome, whether or not containing by weight <= 0,5% molybdenum (excl. tubes, pipes and hollow profiles of heading 7304.10, 7304.20 and 7304.59.10) 01/01/1988 31/12/2003 -73045932 01/01/2004 31/12/2500 LIBEN Tubes, pipes and hollow profiles of alloy steel (excl. stainless), seamless, of circular cross-section (not cold-drawn or cold-rolled), straight and of uniform wall-thickness, of a length <= 0,5 m, containing by weight >= 0,9% but <= 1,15% carbon and >= 0,5% but <= 2% chrome, whether or not containing by weight <= 0,5% molybdenum (excl. tubes, pipes and hollow profiles of subheadings 7304 19 to 7304 29 and 7304 59 10) 01/01/2004 31/12/2500 -73045938 01/01/2004 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of alloy steel (excl. stainless) (not cold-drawn or cold-rolled) straight and of uniform wall-thickness, containing by weight >= 0,9% but <= 1,15% carbon and >= 0,5% but <= 2% chrome, whether or not containing by weight <= 0,5% molybdenum, of a length of > 0,5 m (excl. tubes, pipes and hollow profiles of subheadings 7304 19 to 7304 29 and 7304 59 10) 01/01/2004 31/12/2500 -73045939 01/01/1988 31/12/2003 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of alloy steel (excl. stainless) (not cold-drawn or cold-rolled) straight and of uniform wall-thickness, containing by weight >= 0,9% but <= 1,15% carbon and >= 0,5% but <= 2% chrome, whether or not containing by weight <= 0,5% molybdenum, of a length of > 4,5 m (excl. tubes, pipes and hollow profiles of heading 7304.10, 7304.20 and 7304.59.10) 01/01/1988 31/12/2003 -73045950 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of alloy steel other than stainless, not cold-drawn or cold-rolled "cold-reduced", with attached fittings, for gases or liquids, for civil aircraft (excl. tubes, pipes and hollow profiles of heading 7304.59.31 to 7304.59.39) 01/01/1988 31/12/2005 -73045991 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of alloy steel other than stainless, not cold-drawn or cold-rolled "cold-reduced", of an external diameter of <= 168,3 mm (excl. line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil or gas and tubes, pipes and hollow profiles of heading 7304.59.10 to 7304.59.50) 01/01/1988 31/12/2005 -73045992 01/01/2006 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of alloy steel other than stainless, not cold-drawn or cold-rolled "cold-reduced", of an external diameter of <= 168,3 mm (excl. line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil or gas and tubes, pipes and hollow profiles of heading 7304.59.10 to 7304.59.38) 01/01/2006 31/12/2500 -73045993 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of alloy steel other than stainless, not cold-drawn or cold-rolled "cold-reduced", of an external diameter of > 168,3 mm but <= 406,4 mm (excl. line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil or gas and tubes, pipes and hollow profiles of heading 7304.59.10 to 7304.59.38) 01/01/1988 31/12/2500 -73045999 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of circular cross-section, of alloy steel other than stainless, not cold-drawn or cold-rolled "cold-reduced", of an external diameter of > 406,4 mm (excl. line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used for drilling for oil or gas and tubes, pipes and hollow profiles of heading 7304.59.10 to 7304.59.38) 01/01/1988 31/12/2500 -730490 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of non-circular cross-section, of iron or steel (excl. products of cast iron) 01/01/1988 31/12/2500 -73049000 01/01/2006 31/12/2500 LIBEN Tubes, pipes and hollow profiles, seamless, of non-circular cross-section, of iron or steel (excl. products of cast iron) 01/01/2006 31/12/2500 -73049010 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, seamless, of non-circular cross-section, of iron or steel, with attached fittings, for gases or liquids, for civil aircraft (excl. products of cast iron) 01/01/1988 31/12/2005 -73049090 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, seamless, of non-circular cross-section, of iron or steel (excl. products of cast iron, and tubes, pipes and hollow profiles with attached fittings, for gases or liquids, for civil aircraft) 01/01/1988 31/12/2005 -7304I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7304; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -7304I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7304; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -7304I1 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7304; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -7304I100 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7304; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -7304I2 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 7304; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1997 31/12/2005 -7304I200 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 7304; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1997 31/12/2005 -7304I3 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7304; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -7304I300 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7304; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -7304I9 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7304; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1993 31/12/2005 -7304I900 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7304; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1993 31/12/2005 -7305 01/01/1988 31/12/2500 LIBEN Tubes and pipes, having circular cross-sections and an external diameter of > 406,4 mm, of flat-rolled products of iron or steel "e.g., welded, riveted or similarly closed" 01/01/1988 31/12/2500 -730511 01/01/1988 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, having circular cross-sections and an external diameter of > 406,4 mm, of iron or steel, longitudinally submerged arc welded 01/01/1988 31/12/2500 -73051100 01/01/1988 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, having circular cross-sections and an external diameter of > 406,4 mm, of iron or steel, longitudinally submerged arc welded 01/01/1988 31/12/2500 -730512 01/01/1988 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, having circular cross-sections and an external diameter of > 406,4 mm, of iron or steel, longitudinally arc welded (excl. products longitudinally submerged arc welded) 01/01/1988 31/12/2500 -73051200 01/01/1988 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, having circular cross-sections and an external diameter of > 406,4 mm, of iron or steel, longitudinally arc welded (excl. products longitudinally submerged arc welded) 01/01/1988 31/12/2500 -730519 01/01/1988 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, having circular cross-sections and an external diameter of > 406,4 mm, of flat-rolled products of iron or steel (excl. products longitudinally arc welded) 01/01/1988 31/12/2500 -73051900 01/01/1988 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, having circular cross-sections and an external diameter of > 406,4 mm, of flat-rolled products of iron or steel (excl. products longitudinally arc welded) 01/01/1988 31/12/2500 -730520 01/01/1988 31/12/2500 LIBEN Casing of a kind used in drilling for oil or gas, having circular cross-sections and an external diameter of > 406,4 mm, of flat-rolled products of iron or steel 01/01/1988 31/12/2500 -73052000 01/01/2004 31/12/2500 LIBEN Casing of a kind used in drilling for oil or gas, having circular cross-sections and an external diameter of > 406,4 mm, of flat-rolled products of iron or steel 01/01/2004 31/12/2500 -73052010 01/01/1988 31/12/2003 LIBEN Casing of a kind used in drilling for oil or gas, having circular cross-sections and an external diameter of > 406,4 mm, of iron or steel, longitudinally welded 01/01/1988 31/12/2003 -73052090 01/01/1988 31/12/2003 LIBEN Casing of a kind used in drilling for oil or gas, having circular cross-sections and an external diameter of > 406,4 mm, of flat-rolled products of iron or steel (excl. products longitudinally welded) 01/01/1988 31/12/2003 -730531 01/01/1988 31/12/2500 LIBEN Tubes and pipes having circular cross-sections and an external diameter of > 406,4 mm, of iron or steel, longitudinally welded (excl. products of a kind used for oil or gas pipelines or of a kind used in drilling for oil or gas) 01/01/1988 31/12/2500 -73053100 01/01/1988 31/12/2500 LIBEN Tubes and pipes having circular cross-sections and an external diameter of > 406,4 mm, of iron or steel, longitudinally welded (excl. products of a kind used for oil or gas pipelines or of a kind used in drilling for oil or gas) 01/01/1988 31/12/2500 -730539 01/01/1988 31/12/2500 LIBEN Tubes and pipes having circular cross-sections and an external diameter of > 406,4 mm, of iron or steel, welded (excl. products longitudinally welded or of a kind used for oil or gas pipelines or of a kind used in drilling for oil or gas) 01/01/1988 31/12/2500 -73053900 01/01/1988 31/12/2500 LIBEN Tubes and pipes having circular cross-sections and an external diameter of > 406,4 mm, of iron or steel, welded (excl. products longitudinally welded or of a kind used for oil or gas pipelines or of a kind used in drilling for oil or gas) 01/01/1988 31/12/2500 -730590 01/01/1988 31/12/2500 LIBEN Tubes and pipes having circular cross-sections and an external diameter of > 406,4 mm, of flat-rolled products of iron or steel, welded (excl. welded products or products of a kind used for oil or gas pipelines or of a kind used in drilling for oil or gas) 01/01/1988 31/12/2500 -73059000 01/01/1988 31/12/2500 LIBEN Tubes and pipes having circular cross-sections and an external diameter of > 406,4 mm, of flat-rolled products of iron or steel, welded (excl. welded products or products of a kind used for oil or gas pipelines or of a kind used in drilling for oil or gas) 01/01/1988 31/12/2500 -7305S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7305 and SITC section 6 01/01/1997 31/12/2500 -7305S679 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7305 and SITC group 679 01/01/1997 31/12/2500 -7306 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles "e.g., open seam or welded, riveted or similarly closed", of iron or steel (excl. of cast iron, seamless tubes and pipes and tubes having internal and external circular cross-sections and an external diameter of > 406,4 mm) 01/01/1988 31/12/2500 -730610 01/01/1988 31/12/2006 LIBEN Line pipe of a kind used for oil or gas pipelines, of iron or steel, of an external diameter of <= 406,4 mm (excl. of cast iron and seamless tubes) 01/01/1988 31/12/2006 -73061011 01/01/1988 31/12/2006 LIBEN Line pipe of a kind used for oil or gas pipelines, of iron or steel, longitudinally welded, of an external diameter of <= 186,3 mm 01/01/1988 31/12/2006 -73061019 01/01/1988 31/12/2006 LIBEN Line pipe of a kind used for oil or gas pipelines, of iron or steel, longitudinally welded, of an external diameter of > 168,3 mm but <= 406,4 mm, of iron or steel 01/01/1988 31/12/2006 -73061090 01/01/1988 31/12/2006 LIBEN Line pipe of a kind used for oil or gas pipelines, of iron or steel, spirally welded, of an external diameter of <= 406,4 mm 01/01/1988 31/12/2006 -730611 01/01/2007 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, welded, of flat-rolled products of stainless steel, of an external diameter of <= 406,4 mm 01/01/2007 31/12/2500 -73061110 01/01/2007 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, longitudinally welded, of flat-rolled products of stainless steel, of an external diameter of <= 406,4 mm 01/01/2007 31/12/2500 -73061190 01/01/2007 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, spirally welded, of flat-rolled products of stainless steel, of an external diameter of <= 406,4 mm 01/01/2007 31/12/2500 -730619 01/01/2007 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, welded, of flat-rolled products of iron or steel, of an external diameter of <= 406,4 mm (excl. products of stainless steel or of cast iron) 01/01/2007 31/12/2500 -73061910 01/01/2008 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, longitudinally welded, of flat-rolled products of iron or steel (excl. products of stainless steel or of cast iron) 01/01/2008 31/12/2500 -73061911 01/01/2007 31/12/2007 LIBEN Line pipe of a kind used for oil or gas pipelines, longitudinally welded, of flat-rolled products of iron or steel, of an external diameter of <= 168,3 mm (excl. products of stainless steel or of cast iron) 01/01/2007 31/12/2007 -73061919 01/01/2007 31/12/2007 LIBEN Line pipe of a kind used for oil or gas pipelines, longitudinally welded, of flat-rolled products of iron or steel, of an external diameter of > 168,3 mm but <= 406,4 mm (excl. products of stainless steel or of cast iron) 01/01/2007 31/12/2007 -73061990 01/01/2007 31/12/2500 LIBEN Line pipe of a kind used for oil or gas pipelines, spirally welded, of flat-rolled products of iron or steel, of an external diameter of <= 406,4 mm (excl. products of stainless steel or of cast iron) 01/01/2007 31/12/2500 -730620 01/01/1988 31/12/2006 LIBEN Casing and tubing of a kind used in drilling for oil or gas, of flat-rolled products of iron or steel, of an external diameter of <= 406,4 mm (excl. of cast iron and seamless tubes) 01/01/1988 31/12/2006 -73062000 01/01/1988 31/12/2006 LIBEN Casing and tubing of a kind used in drilling for oil or gas, of flat-rolled products of iron or steel, of an external diameter of <= 406,4 mm (excl. of cast iron and seamless tubes) 01/01/1988 31/12/2006 -730621 01/01/2007 31/12/2500 LIBEN Casing and tubing of a kind used in drilling for oil or gas, welded, of flat-rolled products of stainless steel, of an external diameter of <= 406,4 mm 01/01/2007 31/12/2500 -73062100 01/01/2007 31/12/2500 LIBEN Casing and tubing of a kind used in drilling for oil or gas, welded, of flat-rolled products of stainless steel, of an external diameter of <= 406,4 mm 01/01/2007 31/12/2500 -730629 01/01/2007 31/12/2500 LIBEN Casing and tubing of a kind used in drilling for oil or gas, welded, of flat-rolled products of iron or steel, of an external diameter of <= 406,4 mm (excl. products of stainless steel or of cast iron) 01/01/2007 31/12/2500 -73062900 01/01/2007 31/12/2500 LIBEN Casing and tubing of a kind used in drilling for oil or gas, welded, of flat-rolled products of iron or steel, of an external diameter of <= 406,4 mm (excl. products of stainless steel or of cast iron) 01/01/2007 31/12/2500 -730630 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, welded, of circular cross-section, of iron or non-alloy steel (excl. products having internal and external circular cross-sections and an external diameter of > 406,4 mm, or line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas) 01/01/1988 31/12/2500 -73063010 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, welded, having a circular cross-section, of iron or non-alloy steel, with attached fittings, for gases or liquids, for civil aircraft (excl. of cast iron and seamless tubes) 01/01/1988 31/12/2005 -73063011 01/01/2006 31/12/2500 LIBEN Precision tubes, welded, of circular cross-section, of iron or non-alloy steel, with a wall thickness of <= 2 mm 01/01/2006 31/12/2500 -73063019 01/01/2006 31/12/2500 LIBEN Precision tubes, welded, of circular cross-section, of iron or non-alloy steel, with a wall thickness of > 2 mm 01/01/2006 31/12/2500 -73063021 01/01/1988 31/12/2005 LIBEN Precision steel tubes, welded, having a circular cross-section, of iron or non-alloy steel, with a wall thickness of <= 2 mm 01/01/1988 31/12/2005 -73063029 01/01/1988 31/12/2005 LIBEN Precision steel tubes, welded, having a circular cross-section, of iron or non-alloy steel, with a wall thickness of > 2 mm 01/01/1988 31/12/2005 -73063030 01/01/1988 31/12/1990 LIBEN Electrical conduit tubes, welded, having a circular cross-section, of iron or non-alloy steel 01/01/1988 31/12/1990 -73063041 01/01/2006 31/12/2500 LIBEN Threaded or threadable tubes "gas pipe", welded, of circular cross-section, of iron or non-alloy steel, plated or coated with zinc 01/01/2006 31/12/2500 -73063049 01/01/2006 31/12/2500 LIBEN Threaded or threadable tubes "gas pipe", welded, of circular cross-section, of iron or non-alloy steel (excl. products plated or coated with zinc) 01/01/2006 31/12/2500 -73063051 01/01/1988 31/12/2005 LIBEN Threaded or threadable tubes "gas pipe", welded, having a circular cross-section, of iron or non-alloy steel, plated or coated with zinc 01/01/1988 31/12/2005 -73063059 01/01/1988 31/12/2005 LIBEN Threaded or threadable tubes "gas pipe", welded, having a circular cross-section, of iron or non-alloy steel (excl. products plated or coated with zinc) 01/01/1988 31/12/2005 -73063071 01/01/1988 31/12/2005 LIBEN Other tubes, pipes and hollow profiles, welded, having a circular cross-section, of iron or non-alloy steel, of an external diameter of <= 168,3 mm, plated or coated with zinc (excl. products with attached fittings, for gases or liquids, for civil aircraft, or line pipe of a kind used for oil or gas pipelines or casing and tubingof a kind used in drilling for oil or gas) 01/01/1988 31/12/2005 -73063072 01/01/2006 31/12/2500 LIBEN Other tubes, pipes and hollow profiles, welded, of circular cross-section, of iron or non-alloy steel, of an external diameter of <= 168,3 mm, plated or coated with zinc (excl. line pipe of a kind used for oil or gas pipelines or casing and tubingof a kind used in drilling for oil or gas) 01/01/2006 31/12/2500 -73063077 01/01/2006 31/12/2500 LIBEN Other tubes, pipes and hollow profiles, welded, of circular cross-section, of iron or non-alloy steel of an external diameter of <= 168,3 mm (excl. plated or coated with zinc and line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used in drilling for oil or gas, precision tubes and threaded or threadable tubes "gas pipe") 01/01/2006 31/12/2500 -73063078 01/01/1991 31/12/2005 LIBEN Other tubes, pipes and hollow profiles, welded, having a circular cross-section, of iron or non-alloy steel of an external diameter of <= 168,3 mm (excl. plated or coated with zinc, products with attached fittings, for gases or liquids, for civil aircraft, and line pipe of a kind used for oil or gas pipelines, casing and tubing of a kind used in drilling for oil or gas, precision tubes and threaded or threadable tubes "gas pipe") 01/01/1991 31/12/2005 -73063079 01/01/1988 31/12/1990 LIBEN Other tubes, pipes and hollow profiles of iron or non-alloy steel, welded, having a circular cross-section of an external diameter of =< 168.3 mm (excl. products plated or coated with zinc or with attached fittings, for gases or liquids, for civil aircraft; products used for oil or gas pipelines or in drilling for oil or gas; precision steel tubes; electrical conduit tubes; threaded or threadable tubes 'gas pipe') 01/01/1988 31/12/1990 -73063080 01/01/2006 31/12/2500 LIBEN Tubes, pipes and hollow profiles, welded, having a circular cross-section, of iron or steel, of an external diameter of > 168,3 mm but <= 406,4 mm (excl. line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas, or precision steel tubes, electrical conduit tubes or threaded or threadable tubes "gas pipe") 01/01/2006 31/12/2500 -73063090 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, welded, having a circular cross-section, of iron or steel, of an external diameter of > 168,3 mm but <= 406,4 mm (excl. seamless and line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas, or precision steel tubes, electrical conduit tubes or threaded or threadable tubes "gas pipe") 01/01/1988 31/12/2005 -730640 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, welded, of circular cross-section, of stainless steel (excl. products having internal and external circular cross-sections and an external diameter of > 406,4 mm, and products of a kind used for oil or gas pipelines or of a kind used in drilling for oil or gas) 01/01/1988 31/12/2500 -73064010 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, welded, having a circular cross-section, of stainless steel, with attached fittings, for gases or liquids, for civil aircraft (excl. seamless) 01/01/1988 31/12/2005 -73064020 01/01/2006 31/12/2500 LIBEN Tubes, pipes and hollow profiles, welded, of circular cross-section, of stainless steel, cold-drawn or cold-rolled "cold-reduced" (excl. products having internal and external circular cross-sections and an external diameter of > 406,4 mm, and line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas) 01/01/2006 31/12/2500 -73064080 01/01/2006 31/12/2500 LIBEN Tubes, pipes and hollow profiles, welded, of circular cross-section, of stainless steel (excl. products cold-drawn or cold-rolled "cold-reduced", tubes and pipes having internal and external circular cross-sections and an external diameter of > 406,4 mm, and line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas) 01/01/2006 31/12/2500 -73064091 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, welded, having a circular cross-section, of stainless steel, cold-drawn or cold-rolled "cold-reduced" (excl. seamless, products having internal and external circular cross-sections and an external diameter of > 406,4 mm, and line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas) 01/01/1988 31/12/2005 -73064099 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, welded, having a circular cross-section, of stainless steel (excl. seamless, products cold-drawn or cold-rolled "cold-reduced", tubes and pipes having internal and external circular cross-sections and an external diameter of > 406,4 mm, and line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas) 01/01/1988 31/12/2005 -730650 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles, welded, of circular cross-section, of alloy steel other than stainless (excl. tubes and pipes having internal and external circular cross-sections and an external diameter of > 406,4 mm, and line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas) 01/01/1988 31/12/2500 -73065010 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, welded, having a circular cross-section, of alloy steel other than stainless, with attached fittings, for gases or liquids, for civil aircraft (excl. seamless) 01/01/1988 31/12/2005 -73065020 01/01/2006 31/12/2500 LIBEN Precision steel tubes, welded, of circular cross-section, of alloy steel other than stainless 01/01/2006 31/12/2500 -73065080 01/01/2006 31/12/2500 LIBEN Tubes, pipes and hollow profiles, welded, of circular cross-section, of alloy steel other than stainless (excl. tubes and pipes having internal and external circular cross-sections and an external diameter of > 406,4 mm, and line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas, and precision steel tubes) 01/01/2006 31/12/2500 -73065091 01/01/1988 31/12/2005 LIBEN Precision steel tubes, welded, having a circular cross-section, of alloy steel other than stainless (excl. seamless) 01/01/1988 31/12/2005 -73065099 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, welded, having a circular cross-section, of alloy steel other than stainless (excl. seamless, tubes and pipes having internal and external circular cross-sections and an external diameter of > 406,4 mm, and line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas, and precision steel tubes) 01/01/1988 31/12/2005 -730660 01/01/1988 31/12/2006 LIBEN Tubes, pipes and hollow profiles, welded, of non-circular cross-section, of iron or steel (excl. seamless, and line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas) 01/01/1988 31/12/2006 -73066010 01/01/1988 31/12/2005 LIBEN Tubes, pipes and hollow profiles, welded, having a non-circular cross-section, of iron or steel, with attached fittings, for gases or liquids, for civil aircraft (excl. seamless) 01/01/1988 31/12/2005 -73066011 01/01/2006 31/12/2006 LIBEN Tubes and pipes and hollow profiles, welded, of square or rectangular cross-section, of stainless steel, with a wall thickness of <= 2 mm (excl. seamless) 01/01/2006 31/12/2006 -73066019 01/01/2006 31/12/2006 LIBEN Tubes and pipes and hollow profiles, welded, of square or rectangular cross-section, of iron or steel other than stainless steel, with a wall thickness of <= 2 mm (excl. seamless and of cast iron) 01/01/2006 31/12/2006 -73066021 01/01/2006 31/12/2006 LIBEN Tubes and pipes and hollow profiles, welded, of square or rectangular cross-section, of stainless steel, with a wall thickness of > 2 mm (excl. seamless) 01/01/2006 31/12/2006 -73066029 01/01/2006 31/12/2006 LIBEN Tubes and pipes and hollow profiles, welded, of square or rectangular cross-section, of iron or steel other than stainless steel, with a wall thickness of > 2 mm (excl. seamless) 01/01/2006 31/12/2006 -73066031 01/01/1988 31/12/2003 LIBEN Tubes and pipes and hollow profiles, welded, of square or rectangular cross-section, of iron or steel, with a wall thickness of <= 2 mm (excl. seamless and of cast iron) 01/01/1988 31/12/2003 -73066032 01/01/2004 31/12/2005 LIBEN Tubes and pipes and hollow profiles, welded, of square or rectangular cross-section, of stainless steel, with a wall thickness of <= 2 mm (excl. seamless) 01/01/2004 31/12/2005 -73066034 01/01/2004 31/12/2005 LIBEN Tubes and pipes and hollow profiles, welded, of square or rectangular cross-section, of iron or steel other than stainless steel, with a wall thickness of <= 2 mm (excl. seamless and of cast iron) 01/01/2004 31/12/2005 -73066036 01/01/2004 31/12/2005 LIBEN Tubes and pipes and hollow profiles, welded, of square or rectangular cross-section, of stainless steel, with a wall thickness of > 2 mm (excl. seamless) 01/01/2004 31/12/2005 -73066038 01/01/2004 31/12/2005 LIBEN Tubes and pipes and hollow profiles, welded, of square or rectangular cross-section, of iron or steel other than stainless steel, with a wall thickness of > 2 mm (excl. seamless) 01/01/2004 31/12/2005 -73066039 01/01/1988 31/12/2003 LIBEN Tubes and pipes and hollow profiles, welded, of square or rectangular cross-section, of iron or steel, with a wall thickness of > 2 mm (excl. seamless and of cast iron) 01/01/1988 31/12/2003 -73066081 01/01/2006 31/12/2006 LIBEN Tubes, pipes and hollow profiles, welded, of non-circular cross-section, of stainless steel (excl. of cast iron, seamless, and line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas, and tubes and pipes and hollow profiles of square or rectangular cross-section) 01/01/2006 31/12/2006 -73066089 01/01/2006 31/12/2006 LIBEN Tubes, pipes and hollow profiles, welded, of non-circular cross-section, of iron or steel other than stainless steel (excl. of cast iron, seamless, and line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas, and tubes and pipes and hollow profiles of square or rectangular cross-section) 01/01/2006 31/12/2006 -73066090 01/01/1988 31/12/2003 LIBEN Tubes, pipes and hollow profiles, welded, of non-circular cross-section, of iron or steel (excl. of cast iron, seamless, and line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas, and tubes and pipes and hollow profiles of square or rectangular cross-section) 01/01/1988 31/12/2003 -73066091 01/01/2004 31/12/2005 LIBEN Tubes, pipes and hollow profiles, welded, of non-circular cross-section, of stainless steel (excl. of cast iron, seamless, and line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas, and tubes and pipes and hollow profiles of square or rectangular cross-section) 01/01/2004 31/12/2005 -73066099 01/01/2004 31/12/2005 LIBEN Tubes, pipes and hollow profiles, welded, of non-circular cross-section, of iron or steel other than stainless steel (excl. of cast iron, seamless, and line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas, and tubes and pipes and hollow profiles of square or rectangular cross-section) 01/01/2004 31/12/2005 -730661 01/01/2007 31/12/2500 LIBEN Tubes and pipes and hollow profiles, welded, of square or rectangular cross-section, of iron or steel 01/01/2007 31/12/2500 -73066110 01/01/2008 31/12/2500 LIBEN Tubes and pipes and hollow profiles, welded, of square or rectangular cross-section, of stainless steel 01/01/2008 31/12/2500 -73066111 01/01/2007 31/12/2007 LIBEN Tubes and pipes and hollow profiles, welded, of square or rectangular cross-section, of stainless steel, with a wall thickness of <= 2 mm 01/01/2007 31/12/2007 -73066119 01/01/2007 31/12/2007 LIBEN Tubes and pipes and hollow profiles, welded, of square or rectangular cross-section, of iron or steel other than stainless steel, with a wall thickness of <= 2 mm 01/01/2007 31/12/2007 -73066191 01/01/2007 31/12/2007 LIBEN Tubes and pipes and hollow profiles, welded, of square or rectangular cross-section, of stainless steel, with a wall thickness of > 2 mm 01/01/2007 31/12/2007 -73066192 01/01/2008 31/12/2500 LIBEN Tubes and pipes and hollow profiles, welded, of square or rectangular cross-section, of iron or steel other than stainless steel, with a wall thickness of <= 2 mm 01/01/2008 31/12/2500 -73066199 01/01/2007 31/12/2500 LIBEN Tubes and pipes and hollow profiles, welded, of square or rectangular cross-section, of iron or steel other than stainless steel, with a wall thickness of > 2 mm 01/01/2007 31/12/2500 -730669 01/01/2007 31/12/2500 LIBEN Tubes, pipes and hollow profiles, welded, of non-circular cross-section, of iron or steel (excl. tubes and pipes having internal and external circular cross-sections and an external diameter of > 406,4 mm, line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas, and tubes and pipes and hollow profiles of square or rectangular cross-section) 01/01/2007 31/12/2500 -73066910 01/01/2007 31/12/2500 LIBEN Tubes, pipes and hollow profiles, welded, of non-circular cross-section, of stainless steel (excl. tubes and pipes having internal and external circular cross-sections and an external diameter of > 406,4 mm, line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas, and tubes and pipes and hollow profiles of square or rectangular cross-section) 01/01/2007 31/12/2500 -73066990 01/01/2007 31/12/2500 LIBEN Tubes, pipes and hollow profiles, welded, of non-circular cross-section, of iron or steel other than stainless steel (excl. tubes and pipes having internal and external circular cross-sections and an external diameter of > 406,4 mm, line pipe of a kind used for oil or gas pipelines or casing and tubing of a kind used in drilling for oil or gas, and tubes and pipes and hollow profiles of square or rectangular cross-section) 01/01/2007 31/12/2500 -730690 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles "e.g., open seam, riveted or similarly closed", of iron or steel (excl. of cast iron, seamless or welded tubes and pipes and tubes and pipes having internal and external circular cross-sections and an external diameter of > 406,4 mm) 01/01/1988 31/12/2500 -73069000 01/01/1988 31/12/2500 LIBEN Tubes, pipes and hollow profiles "e.g., open seam, riveted or similarly closed", of iron or steel (excl. of cast iron, seamless or welded tubes and pipes and tubes and pipes having internal and external circular cross-sections and an external diameter of > 406,4 mm) 01/01/1988 31/12/2500 -7306I0 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 7306; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -7306I000 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 7306; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -7306I4 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7306; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -7306I400 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7306; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -7306S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7306 and SITC section 6 01/01/1997 31/12/2500 -7306S679 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7306 and SITC group 679 01/01/1997 31/12/2500 -7307 01/01/1988 31/12/2500 LIBEN Tube or pipe fittings "e.g. couplings, elbows, sleeves", of iron or steel 01/01/1988 31/12/2500 -730711 01/01/1988 31/12/2500 LIBEN Tube or pipe fittings of non-malleable cast iron 01/01/1988 31/12/2500 -73071110 01/01/1988 31/12/2500 LIBEN Tube or pipe fittings of non-malleable cast iron, of a kind used in pressure systems 01/01/1988 31/12/2500 -73071190 01/01/1988 31/12/2500 LIBEN Tube or pipe fittings of non-malleable cast iron (excl. products of a kind used in pressure systems) 01/01/1988 31/12/2500 -730719 01/01/1988 31/12/2500 LIBEN Cast tube or pipe fittings of iron or steel (excl. products of non-malleable cast iron) 01/01/1988 31/12/2500 -73071910 01/01/1988 31/12/2019 LIBEN Tube or pipe fittings of malleable cast iron 01/01/1988 31/12/2019 -73071910 01/01/2020 31/12/2500 LIBEN Tube or pipe fittings of cast iron (excl. of non-malleable) 01/01/2020 31/12/2500 -73071990 01/01/1988 31/12/2019 LIBEN Cast tube or pipe fittings of steel 01/01/1988 31/12/2019 -73071990 01/01/2020 31/12/2500 LIBEN Cast tube or pipe fittings of steel 01/01/2020 31/12/2500 -730721 01/01/1988 31/12/2500 LIBEN Flanges of stainless steel (excl. cast products) 01/01/1988 31/12/2500 -73072100 01/01/1988 31/12/2500 LIBEN Flanges of stainless steel (excl. cast products) 01/01/1988 31/12/2500 -730722 01/01/1988 31/12/2500 LIBEN Threaded elbows, bends and sleeves of stainless steel (excl. cast products) 01/01/1988 31/12/2500 -73072200 01/01/1988 31/12/1994 LIBEN Threaded elbows, bends and sleeves of stainless steel (excl. cast products) 01/01/1988 31/12/1994 -73072210 01/01/1995 31/12/2500 LIBEN Sleeves, of stainless steel, threaded (excl. cast products) 01/01/1995 31/12/2500 -73072290 01/01/1995 31/12/2500 LIBEN Elbows and bends, of stainless steel, threaded (excl. cast products) 01/01/1995 31/12/2500 -730723 01/01/1988 31/12/2500 LIBEN Butt welding tube or pipe fittings of stainless steel (excl. cast products) 01/01/1988 31/12/2500 -73072310 01/01/1988 31/12/2500 LIBEN Butt welding elbows and bends of stainless steel (excl. cast products) 01/01/1988 31/12/2500 -73072390 01/01/1988 31/12/2500 LIBEN Butt welding tube or pipe fittings of stainless steel (excl. cast products and elbows and bends) 01/01/1988 31/12/2500 -730729 01/01/1988 31/12/2500 LIBEN Tube or pipe fittings of stainless steel (excl. cast products, flanges, threaded elbows, bends and sleeves and butt weldings fittings) 01/01/1988 31/12/2500 -73072910 01/01/1988 31/12/2500 LIBEN Threaded tube or pipe fittings of stainless steel (excl. cast products, flanges, elbows, bends and sleeves) 01/01/1988 31/12/2500 -73072930 01/01/1988 31/12/2011 LIBEN Tube or pipe fittings of stainless steel, for welding (excl. cast products and flanges) 01/01/1988 31/12/2011 -73072980 01/01/2012 31/12/2500 LIBEN Tube or pipe fittings of stainless steel (excl. cast, threaded, butt welding fittings and flanges) 01/01/2012 31/12/2500 -73072990 01/01/1988 31/12/2011 LIBEN Tube or pipe fittings of stainless steel (excl. cast products, threaded products or products for butt welding or welding, and flanges) 01/01/1988 31/12/2011 -730791 01/01/1988 31/12/2500 LIBEN Flanges of iron or steel (excl. cast or stainless products) 01/01/1988 31/12/2500 -73079100 01/01/1988 31/12/2500 LIBEN Flanges of iron or steel (excl. cast or stainless products) 01/01/1988 31/12/2500 -730792 01/01/1988 31/12/2500 LIBEN Threaded elbows, bends and sleeves, of stainless steel (excl. cast or stainless products) 01/01/1988 31/12/2500 -73079200 01/01/1988 31/12/1994 LIBEN Threaded elbows, bends and sleeves, of iron or steel (excl. cast or stainless products) 01/01/1988 31/12/1994 -73079210 01/01/1995 31/12/2500 LIBEN Sleeves of iron or steel, threaded (excl. cast or of stainless steel) 01/01/1995 31/12/2500 -73079290 01/01/1995 31/12/2500 LIBEN Elbows and bends, of iron or steel, threaded (excl. cast or of stainless steel) 01/01/1995 31/12/2500 -730793 01/01/1988 31/12/2500 LIBEN Butt welding fittings of iron or steel (excl. cast iron or stainless steel products, and flanges) 01/01/1988 31/12/2500 -73079311 01/01/1988 31/12/2500 LIBEN Butt welding elbows and bends, of iron or steel, with greatest external diameter <= 609,6 mm (excl. cast iron or stainless steel products) 01/01/1988 31/12/2500 -73079319 01/01/1988 31/12/2500 LIBEN Butt welding fittings of iron or steel, with greatest external diameter <= 609,6 mm (excl. cast iron or stainless steel products, elbows, bends and flanges) 01/01/1988 31/12/2500 -73079391 01/01/1988 31/12/2500 LIBEN Butt welding elbows and bends, of iron or steel, with greatest external diameter > 609,6 mm (excl. cast iron or stainless steel products) 01/01/1988 31/12/2500 -73079399 01/01/1988 31/12/2500 LIBEN Butt welding fittings of iron or steel, with greatest external diameter > 609,6 mm (excl. cast iron or stainless steel products, elbows, bends and flanges) 01/01/1988 31/12/2500 -730799 01/01/1988 31/12/2500 LIBEN Tube or pipe fittings, of iron or steel (excl. cast iron or stainless steel products; flanges; threaded elbows, bends and sleeves; butt welding fittings) 01/01/1988 31/12/2500 -73079910 01/01/1988 31/12/2500 LIBEN Threaded tube or pipe fittings, of iron or steel (excl. cast iron or stainless steel products, flanges, elbows, bends and sleeves) 01/01/1988 31/12/2500 -73079930 01/01/1988 31/12/2011 LIBEN Tube or pipe fittings, of iron or steel, for welding (excl. cast iron or stainless steel products, and flanges) 01/01/1988 31/12/2011 -73079980 01/01/2012 31/12/2500 LIBEN Tube or pipe fittings, of iron or steel (excl. of cast iron or stainless steel, threaded, butt welding fittings, and flanges) 01/01/2012 31/12/2500 -73079990 01/01/1988 31/12/2011 LIBEN Tube or pipe fittings, of iron or steel (excl. products of cast iron or stainless steel, threaded products, products for butt welding or welding and flanges) 01/01/1988 31/12/2011 -7307I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7307; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -7307I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7307; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -7308 01/01/1988 31/12/2500 LIBEN Structures and parts of structures "e.g., bridges and bridge-sections, lock-gates, towers, lattice masts, roofs, roofing frameworks, doors and windows and their frames and thresholds for doors, shutters, balustrades, pillars and columns", of iron or steel; plates, rods, angles, shapes, sections, tubes and the like, prepared for use in structures, of iron or steel (excl. prefabricated buildings of heading 9406) 01/01/1988 31/12/2500 -730810 01/01/1988 31/12/2500 LIBEN Bridges and bridge-sections, of iron or steel 01/01/1988 31/12/2500 -73081000 01/01/1988 31/12/2500 LIBEN Bridges and bridge-sections, of iron or steel 01/01/1988 31/12/2500 -730820 01/01/1988 31/12/2500 LIBEN Towers and lattice masts, of iron or steel 01/01/1988 31/12/2500 -73082000 01/01/1988 31/12/2500 LIBEN Towers and lattice masts, of iron or steel 01/01/1988 31/12/2500 -730830 01/01/1988 31/12/2500 LIBEN Doors, windows and their frames and thresholds for doors, of iron or steel 01/01/1988 31/12/2500 -73083000 01/01/1988 31/12/2500 LIBEN Doors, windows and their frames and thresholds for doors, of iron or steel 01/01/1988 31/12/2500 -730840 01/01/1988 31/12/2500 LIBEN Equipment for scaffolding, shuttering, propping or pit-propping (excl. composite sheetpiling products and formwork panels for poured-in-place concrete, which have the characteristics of moulds) 01/01/1988 31/12/2500 -73084000 01/01/1988 31/12/1993 LIBEN Props and similar equipment for scaffolding, shuttering or pit-propping (excl. composite sheetpiling products and formwork panels for poured-in-place concrete, which have the characteristics of moulds) 01/01/1988 31/12/1993 -73084000 01/01/2012 31/12/2500 LIBEN Equipment for scaffolding, shuttering, propping or pit-propping (excl. composite sheetpiling products and formwork panels for poured-in-place concrete, which have the characteristics of moulds) 01/01/2012 31/12/2500 -73084010 01/01/1994 31/12/2011 LIBEN Mine supports, of iron or steel 01/01/1994 31/12/2011 -73084090 01/01/1994 31/12/2011 LIBEN Equipment for scaffolding, shuttering, propping or pit-propping, of iron or steel (excl. mine supports, composite sheetpiling products and formwork panels for poured-in-place concrete, which have the characteristics of moulds) 01/01/1994 31/12/2011 -730890 01/01/1988 31/12/2500 LIBEN Structures and parts of structures, of iron or steel, n.e.s. (excl. bridges and bridge-sections, towers and lattice masts, doors and windows and their frames, thresholds for doors, props and similar equipment for scaffolding, shuttering, propping or pit-propping) 01/01/1988 31/12/2500 -73089010 01/01/1988 31/12/2011 LIBEN Weirs, sluices, lock-gates, landing stages, fixed docks and other maritime and waterway structures, of iron or steel 01/01/1988 31/12/2011 -73089051 01/01/1988 31/12/2500 LIBEN Panels comprising two walls of profiled "ribbed" sheet, of iron or steel, with an insulating core 01/01/1988 31/12/2500 -73089059 01/01/1988 31/12/2500 LIBEN Structures and parts of structures, of iron or steel, solely or principally of sheet, n.e.s. (excl. doors and windows and their frames, and panels comprising two walls of profiled "ribbed" sheet, of iron or steel, with an insulating core) 01/01/1988 31/12/2500 -73089098 01/01/2012 31/12/2500 LIBEN Structures and parts of structures of iron or steel, n.e.s. (excl. bridges and bridge-sections; towers; lattice masts; doors, windows and their frames and thresholds; equipment for scaffolding, shuttering, propping or pit-propping, and products made principally of sheet) 01/01/2012 31/12/2500 -73089099 01/01/1988 31/12/2011 LIBEN Structures and parts of structures of iron or steel, n.e.s. (excl. bridges and bridge-sections; towers; lattice masts; gates; doors, windows and their frames and thresholds; equipment for scaffolding, shuttering, propping or pit-propping, weirs, sluices, lock-gates, fixed docks, landing stages and other maritime and waterway structures, and structures and parts of structures not manufactured exclusively or mainly from plate) 01/01/1988 31/12/2011 -7308I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7308; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -7308I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7308; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -7308I2 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 7308; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1997 31/12/2005 -7308I200 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 7308; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1997 31/12/2005 -7308I4 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 7308; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1997 31/12/2005 -7308I400 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 7308; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1997 31/12/2005 -7308I9 01/01/2003 31/12/2005 LIBEN Components of complete industrial plants of heading 7308; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/2003 31/12/2005 -7308I900 01/01/2003 31/12/2005 LIBEN Components of complete industrial plants of heading 7308; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/2003 31/12/2005 -7309 01/01/1988 31/12/2500 LIBEN Reservoirs, tanks, vats and similar containers, of iron or steel, for any material "other than compressed or liquefied gas", of a capacity of > 300 l, not fitted with mechanical or thermal equipment, whether or not lined or heat-insulated (excl. containers specifically constructed or equipped for one or more types of transport) 01/01/1988 31/12/2500 -730900 01/01/1988 31/12/2500 LIBEN Reservoirs, tanks, vats and similar containers, of iron or steel, for any material "other than compressed or liquefied gas", of a capacity of > 300 l, not fitted with mechanical or thermal equipment, whether or not lined or heat-insulated (excl. containers specifically constructed or equipped for one or more types of transport) 01/01/1988 31/12/2500 -73090010 01/01/1988 31/12/2500 LIBEN Reservoirs, tanks, vats and similar containers, of iron or steel, for gases other than compressed or liquefied gas, of a capacity of > 300 l (excl. containers fitted with mechanical or thermal equipment and containers specifically constructed or equipped for one or more types of transport) 01/01/1988 31/12/2500 -73090030 01/01/1988 31/12/2500 LIBEN Reservoirs, tanks, vats and similar containers, of iron or steel, for liquids, lined or heat-insulated and of a capacity of > 300 l (excl. containers fitted with mechanical or thermal equipment and containers specifically constructed or equipped for one or more types of transport) 01/01/1988 31/12/2500 -73090051 01/01/1988 31/12/2500 LIBEN Reservoirs, tanks, vats and similar containers, of iron or steel, for liquids, of a capacity of > 100.000 l (excl. containers lined or heat-insulated or fitted with mechanical or thermal equipment and containers specifically constructed or equipped for one or more types of transport) 01/01/1988 31/12/2500 -73090059 01/01/1988 31/12/2500 LIBEN Reservoirs, tanks, vats and similar containers, of iron or steel, for liquids, of a capacity of <= 100.000 l but > 300 l (excl. containers lined or heat-insulated or fitted with mechanical or thermal equipment and containers specifically constructed or equipped for one or more types of transport) 01/01/1988 31/12/2500 -73090090 01/01/1988 31/12/2500 LIBEN Reservoirs, tanks, vats and similar containers, of iron or steel, for solids, of a capacity of > 300 l (excl. containers lined or heat-insulated or fitted with mechanical or thermal equipment and containers specifically constructed or equipped for one or more types of transport) 01/01/1988 31/12/2500 -7309I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7309; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -7309I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7309; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -7309I2 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7309; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -7309I200 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7309; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -7309I4 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 7309; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1997 31/12/2005 -7309I400 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 7309; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1997 31/12/2005 -7309I7 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7309; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -7309I700 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7309; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -7310 01/01/1988 31/12/2500 LIBEN Tanks, casks, drums, cans, boxes and similar containers, of iron or steel, for any material "other than compressed or liquefied gas", of a capacity of <= 300 l, not fitted with mechanical or thermal equipment, whether or not lined or heat-insulated, n.e.s. 01/01/1988 31/12/2500 -731010 01/01/1988 31/12/2500 LIBEN Tanks, casks, drums, cans, boxes and similar containers, of iron or steel, for any material, of a capacity of >= 50 l but <= 300 l, n.e.s. (excl. containers for compressed or liquefied gas, or containers fitted with mechanical or thermal equipment) 01/01/1988 31/12/2500 -73101000 01/01/1988 31/12/2500 LIBEN Tanks, casks, drums, cans, boxes and similar containers, of iron or steel, for any material, of a capacity of >= 50 l but <= 300 l, n.e.s. (excl. containers for compressed or liquefied gas, or containers fitted with mechanical or thermal equipment) 01/01/1988 31/12/2500 -731021 01/01/1988 31/12/2500 LIBEN Cans of iron or steel, of a capacity of < 50 l, which are to be closed by soldering or crimping (excl. containers for compressed or liquefied gas) 01/01/1988 31/12/2500 -73102110 01/01/1988 31/12/1997 LIBEN Cans of iron or steel, of a capacity of < 50 l, which are to be closed by soldering or crimping, of a kind used for preserving food and drink 01/01/1988 31/12/1997 -73102111 01/01/1998 31/12/2500 LIBEN Cans of iron or steel, of a capacity of < 50 l, which are to be closed by soldering or crimping, of a kind used for preserving food 01/01/1998 31/12/2500 -73102119 01/01/1998 31/12/2500 LIBEN Cans of iron or steel, of a capacity of < 50 l, which are to be closed by soldering or crimping, of a kind used for preserving drink 01/01/1998 31/12/2500 -73102191 01/01/1988 31/12/2500 LIBEN Cans of iron or steel, of a capacity of < 50 l, which are to be closed by soldering or crimping, of a wall thickness of < 0,5 mm (excl. cans for compressed or liquefied gas, and cans of a kind used for preserving food and drink) 01/01/1988 31/12/2500 -73102199 01/01/1988 31/12/2500 LIBEN Cans of iron or steel, of a capacity of < 50 l, which are to be closed by soldering or crimping, of a wall thickness of >= 0,5 mm (excl. cans for compressed or liquefied gas, and cans of a kind used for preserving food and drink) 01/01/1988 31/12/2500 -731029 01/01/1988 31/12/2500 LIBEN Tanks, casks, drums, cans, boxes and similar containers, of iron or steel, for any material, of a capacity of < 50 l, n.e.s. (excl. containers for compressed or liquefied gas, or containers fitted with mechanical or thermal equipment, and cans which are to be closed by soldering or crimping) 01/01/1988 31/12/2500 -73102910 01/01/1988 31/12/2500 LIBEN Tanks, casks, drums, cans, boxes and similar containers, of iron or steel, for any material, of a capacity of < 50 l and of a wall thickness of < 0,5 mm, n.e.s. (excl. containers for compressed or liquefied gas, or containers fitted with mechanical or thermal equipment, and cans which are to be closed by soldering or crimping) 01/01/1988 31/12/2500 -73102990 01/01/1988 31/12/2500 LIBEN Tanks, casks, drums, cans, boxes and similar containers, of iron or steel, for any material, of a capacity of < 50 l and of a wall thickness of >= 0,5 mm, n.e.s. (excl. containers for compressed or liquefied gas, or containers fitted with mechanical or thermal equipment, and cans which are to be closed by soldering or crimping) 01/01/1988 31/12/2500 -7311 01/01/1988 31/12/2500 LIBEN Containers of iron or steel, for compressed or liquefied gas (excl. containers specifically constructed or equipped for one or more types of transport) 01/01/1988 31/12/2500 -731100 01/01/1988 31/12/2500 LIBEN Containers of iron or steel, for compressed or liquefied gas (excl. containers specifically constructed or equipped for one or more types of transport) 01/01/1988 31/12/2500 -73110010 01/01/1988 31/12/2008 LIBEN Containers of iron or steel, seamless, for compressed or liquefied gas (excl. containers specifically constructed or equipped for one or more types of transport) 01/01/1988 31/12/2008 -73110011 01/01/2009 31/12/2500 LIBEN Containers of iron or steel, seamless, for compressed or liquefied gas, for a pressure >= 165 bar, of a capacity < 20 l (excl. containers specifically constructed or equipped for one or more types of transport) 01/01/2009 31/12/2500 -73110013 01/01/2009 31/12/2500 LIBEN Containers of iron or steel, seamless, for compressed or liquefied gas, for a pressure >= 165 bar, of a capacity >= 20 l to <= 50 l (excl. containers specifically constructed or equipped for one or more types of transport) 01/01/2009 31/12/2500 -73110019 01/01/2009 31/12/2500 LIBEN Containers of iron or steel, seamless, for compressed or liquefied gas, for a pressure >= 165 bar, of a capacity > 50 l (excl. containers specifically constructed or equipped for one or more types of transport) 01/01/2009 31/12/2500 -73110030 01/01/2009 31/12/2500 LIBEN Containers of iron or steel, seamless, for compressed or liquefied gas, for a pressure < 165 bar (excl. containers specifically constructed or equipped for one or more types of transport) 01/01/2009 31/12/2500 -73110091 01/01/1988 31/12/2500 LIBEN Containers of iron or steel, seamless, for compressed or liquefied gas, of a capacity of < 1.000 l (excl. seamless containers and containers specifically constructed or equipped for one or more types of transport) 01/01/1988 31/12/2500 -73110099 01/01/1988 31/12/2500 LIBEN Containers of iron or steel, seamless, for compressed or liquefied gas, of a capacity of >= 1.000 l (excl. seamless containers and containers specifically constructed or equipped for one or more types of transport) 01/01/1988 31/12/2500 -7311I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7311; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -7311I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 7311; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -7312 01/01/1988 31/12/2500 LIBEN Stranded wire, ropes, cables, plaited bands, slings and the like, of iron or steel (excl. electrically insulated products and twisted fencing wire and barbed wire) 01/01/1988 31/12/2500 -731210 01/01/1988 31/12/2500 LIBEN Stranded wire, ropes and cables, of iron or steel (excl. electrically insulated products and twisted fencing wire and barbed wire) 01/01/1988 31/12/2500 -73121010 01/01/1988 31/12/2005 LIBEN Stranded wire, ropes and cables, of iron or steel, with fittings attached, or made up into articles, for civil aircraft (excl. electrically insulated products) 01/01/1988 31/12/2005 -73121020 01/01/2006 31/12/2500 LIBEN Stranded wire, ropes and cables, of stainless steel (excl. electrically insulated products and twisted fencing wire and barbed wire) 01/01/2006 31/12/2500 -73121030 01/01/1988 31/12/2005 LIBEN Stranded wire, ropes and cables, of stainless steel (excl. electrically insulated products and twisted fencing wire and barbed wire) 01/01/1988 31/12/2005 -73121041 01/01/2006 31/12/2500 LIBEN Stranded wire, ropes and cables, of iron or steel other than stainless steel, with a maximum cross-sectional dimension of <= 3 mm, plated or coated with copper-zinc alloys "brass" (other than electrically insulated, and twisted fencing and barbed wire) 01/01/2006 31/12/2500 -73121049 01/01/2006 31/12/2500 LIBEN Stranded wire, ropes and cables, of iron or steel other than stainless steel, with a maximum cross-sectional dimension of <= 3 mm (excl. electrically insulated, twisted fencing and barbed wire, and plated or coated with copper-zinc alloys [brass]) 01/01/2006 31/12/2500 -73121050 01/01/1988 31/12/1994 LIBEN Stranded wire, ropes and cables, of stainless steel, with a maximum cross-sectional dimension of =< 3 mm (excl. electrically insulated products and twisted fencing wire and barbed wire) 01/01/1988 31/12/1994 -73121051 01/01/1995 31/12/2005 LIBEN Stranded wire, ropes and cables, of iron or steel other than stainless steel, with a maximum cross-sectional dimension of <= 3 mm, coated with copper-zinc alloys "brass" (other than electrically insulated, and twisted fencing and barbed wire) 01/01/1995 31/12/2005 -73121059 01/01/1995 31/12/2005 LIBEN Stranded wire, ropes and cables, of iron or steel other than stainless steel, with a maximum cross-sectional dimension of <= 3 mm (excl. electrically insulated, twisted fencing and barbed wire, and coated with copper-zinc alloys [brass]) 01/01/1995 31/12/2005 -73121061 01/01/2006 31/12/2500 LIBEN Stranded wire, of iron or steel other than stainless, uncoated, with a maximum cross-sectional dimension of > 3 mm (excl. electrically insulated products and twisted fencing wire and barbed wire) 01/01/2006 31/12/2500 -73121065 01/01/2006 31/12/2500 LIBEN Stranded wire, of iron or steel other than stainless, with a maximum cross-sectional dimension of > 3 mm, plated or coated with zinc (excl. electrically insulated products and twisted fencing wire and barbed wire) 01/01/2006 31/12/2500 -73121069 01/01/2006 31/12/2500 LIBEN Stranded wire, of iron or steel other than stainless, with a maximum cross-sectional dimension of > 3 mm, coated (excl. electrically insulated products and twisted fencing wire and barbed wire, and stranded wire plated or coated with zinc) 01/01/2006 31/12/2500 -73121071 01/01/1988 31/12/2005 LIBEN Stranded wire, of iron or steel other than stainless, not coated, with a maximum cross-sectional dimension of > 3 mm (excl. electrically insulated products and twisted fencing wire and barbed wire) 01/01/1988 31/12/2005 -73121075 01/01/1988 31/12/2005 LIBEN Stranded wire, of iron or steel other than stainless, with a maximum cross-sectional dimension of > 3 mm, plated or coated with zinc (excl. electrically insulated products and twisted fencing wire and barbed wire) 01/01/1988 31/12/2005 -73121079 01/01/1988 31/12/2005 LIBEN Stranded wire, of iron or steel other than stainless, with a maximum cross-sectional dimension of > 3 mm, coated (excl. electrically insulated products and twisted fencing wire and barbed wire, and stranded wire plated or coated with zinc) 01/01/1988 31/12/2005 -73121081 01/01/2006 31/12/2500 LIBEN Ropes and cables, incl. locked-coil ropes, of iron or steel other than stainless steel, with a maximum cross-sectional dimension of > 3 mm but <= 12 mm, uncoated or only zinc-plated or zinc-coated (other than electrically insulated, fencing and barbed wire) 01/01/2006 31/12/2500 -73121082 01/01/1995 31/12/2005 LIBEN Ropes and cables, incl. locked-coil ropes, of iron or steel other than stainless steel, with a maximum cross-sectional dimension of > 3 mm to 12 mm, not coated or only zinc-coated (other than electrically insulated, fencing and barbed wire) 01/01/1995 31/12/2005 -73121083 01/01/2006 31/12/2500 LIBEN Ropes and cables, incl. locked-coil ropes, of iron or steel other than stainless steel, with a maximum cross-sectional dimension of > 12 mm but <= 24 mm, uncoated or only zinc-plated or zinc-coated (other than electrically insulated, twisted fencing and barbed wire) 01/01/2006 31/12/2500 -73121084 01/01/1995 31/12/2005 LIBEN Ropes and cables, incl. locked-coil ropes, of iron or steel other than stainless steel, with a maximum cross-sectional dimension of > 12 mm to 24 mm, not coated or only zinc-coated (other than electrically insulated, twisted fencing and barbed wire) 01/01/1995 31/12/2005 -73121085 01/01/2006 31/12/2500 LIBEN Ropes and cables, incl. locked-coil ropes, of iron or steel other than stainless steel, with a maximum cross-sectional dimension of > 24 mm but <= 48 mm, uncoated or only zinc-plated or zinc-coated (other than electrically insulated, twisted fencing and barbed wire) 01/01/2006 31/12/2500 -73121086 01/01/1995 31/12/2005 LIBEN Ropes and cables, incl. locked-coil ropes, of iron or steel other than stainless steel, with a maximum cross-sectional dimension of > 24 mm to 48 mm, not coated or only zinc-coated (other than electrically insulated, twisted fencing and barbed wire) 01/01/1995 31/12/2005 -73121088 01/01/1995 31/12/2005 LIBEN Ropes and cables, incl. locked-coil ropes, of iron or steel other than stainless steel, with a maximum cross-sectional dimension of > 48 mm, not coated or only zinc-coated (other than electrically insulated, twisted fencing and barbed wire) 01/01/1995 31/12/2005 -73121089 01/01/2006 31/12/2500 LIBEN Ropes and cables, incl. locked-coil ropes, of iron or steel other than stainless steel, with a maximum cross-sectional dimension of > 48 mm, uncoated or only zinc-plated or zinc-coated (other than electrically insulated, twisted fencing and barbed wire) 01/01/2006 31/12/2500 -73121091 01/01/1988 31/12/1994 LIBEN Ropes and cables, of iron or steel other than stainless, with a maximum cross-sectional dimension of > 3 mm, not coated (excl. electrically insulated products and twisted fencing wire and barbed wire) 01/01/1988 31/12/1994 -73121095 01/01/1988 31/12/1994 LIBEN Ropes and cables, of iron or steel other than stainless, with a maximum cross-sectional dimension of > 3 mm, plated or coated with zinc (excl. electrically insulated products and twisted fencing wire and barbed wire) 01/01/1988 31/12/1994 -73121098 01/01/2006 31/12/2500 LIBEN Ropes and cables, incl. locked-coil ropes, of iron or steel other than stainless, with a maximum cross-sectional dimension of > 3 mm (excl. uncoated or only zinc-plated or zinc-coated, electrically insulated products and twisted fencing wire and barbed wire, and ropes and cables plated or coated with zinc) 01/01/2006 31/12/2500 -73121099 01/01/1988 31/12/2005 LIBEN Ropes and cables, incl. locked-coil ropes, of iron or steel other than stainless, with a maximum cross-sectional dimension of > 3 mm, coated (excl. electrically insulated products and twisted fencing wire and barbed wire, and ropes and cables plated or coated with zinc) 01/01/1988 31/12/2005 -731290 01/01/1988 31/12/2500 LIBEN Plaited bands, slings and the like, of iron or steel (excl. electrically insulated products) 01/01/1988 31/12/2500 -73129000 01/01/2006 31/12/2500 LIBEN Plaited bands, slings and the like, of iron or steel (excl. electrically insulated products) 01/01/2006 31/12/2500 -73129010 01/01/1988 31/12/2005 LIBEN Plaited bands, slings and the like, of iron or steel, with fittings attached or made up into articles, for civil aircraft (excl. electrically insulated products) 01/01/1988 31/12/2005 -73129090 01/01/1988 31/12/2005 LIBEN Plaited bands, slings and the like, of iron or steel (excl. products with fittings attached or made up into articles, for civil aircraft, and electrically insulated products) 01/01/1988 31/12/2005 -7312I0 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 7312; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -7312I000 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 7312; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -7313 01/01/1988 31/12/2500 LIBEN Barbed wire of iron or steel; twisted hoop or single flat wire, barbed or not, and loosely twisted double wire, of a kind used for fencing, of iron or steel 01/01/1988 31/12/2500 -731300 01/01/1988 31/12/2500 LIBEN Barbed wire of iron or steel; twisted hoop or single flat wire, barbed or not, and loosely twisted double wire, of a kind used for fencing, of iron or steel 01/01/1988 31/12/2500 -73130000 01/01/1988 31/12/2500 LIBEN Barbed wire of iron or steel; twisted hoop or single flat wire, barbed or not, and loosely twisted double wire, of a kind used for fencing, of iron or steel 01/01/1988 31/12/2500 -7314 01/01/1988 31/12/2500 LIBEN Cloth, incl. endless bands, grill, netting and fencing, of iron or steel wire, expanded metal of iron or steel (excl. woven products of metal fibres of a kind used for cladding, lining or similar purposes) 01/01/1988 31/12/2500 -731411 01/01/1988 31/12/1995 LIBEN Woven products "including endless bands" of stainless steel (excl. woven products of metal fibres of a kind used for cladding, lining or similar purposes) 01/01/1988 31/12/1995 -73141100 01/01/1988 31/12/1989 LIBEN Woven products 'including endless bands' of stainless steel (excl. woven products of metal fibres of a kind used for cladding, lining or similar purposes) 01/01/1988 31/12/1989 -73141110 01/01/1990 31/12/1995 LIBEN Endless bands of stainless steel wire, for machinery 01/01/1990 31/12/1995 -73141190 01/01/1990 31/12/1995 LIBEN Woven products of stainless steel (excl. endless bands for machinery) 01/01/1990 31/12/1995 -731412 01/01/1996 31/12/2500 LIBEN Endless bands of stainless steel wire, for machinery 01/01/1996 31/12/2500 -73141200 01/01/1996 31/12/2500 LIBEN Endless bands of stainless steel wire, for machinery 01/01/1996 31/12/2500 -731413 01/01/1996 31/12/2006 LIBEN Endless bands of iron or steel wire (excl. stainless), for machinery 01/01/1996 31/12/2006 -73141300 01/01/1996 31/12/2006 LIBEN Endless bands of iron or steel wire (excl. stainless), for machinery 01/01/1996 31/12/2006 -731414 01/01/1996 31/12/2500 LIBEN Woven cloth, incl. endless bands, of stainless steel wire (excl. woven products of metal fibres of a kind used for cladding, lining or similar purposes and endless bands for machinery) 01/01/1996 31/12/2500 -73141400 01/01/1996 31/12/2500 LIBEN Woven cloth, incl. endless bands, of stainless steel wire (excl. woven products of metal fibres of a kind used for cladding, lining or similar purposes and endless bands for machinery) 01/01/1996 31/12/2500 -731419 01/01/1988 31/12/2500 LIBEN Woven cloth, incl. endless bands, of iron or steel wire (excl. stainless and woven products of metal fibres of a kind used for cladding, lining or similar purposes) 01/01/1988 31/12/2500 -73141900 01/01/1988 31/12/1989 LIBEN Woven products 'including endless bands' of iron or steel other than stainless steel (excl. woven products of metal fibres of a kind used for cladding, lining or similar purposes) 01/01/1988 31/12/1989 -73141900 01/01/1996 31/12/2006 LIBEN Woven cloth, incl. endless bands, of iron or steel wire (excl. stainless and woven products of metal fibres of a kind used for cladding, lining or similar purposes and endless bands for machinery) 01/01/1996 31/12/2006 -73141900 01/01/2007 31/12/2500 LIBEN Woven cloth, incl. endless bands, of iron or steel wire (excl. stainless and woven products of metal fibres of a kind used for cladding, lining or similar purposes) 01/01/2007 31/12/2500 -73141910 01/01/1990 31/12/1995 LIBEN Endless bands of iron or steel wire (excl. stainless), for machinery 01/01/1990 31/12/1995 -73141990 01/01/1990 31/12/1995 LIBEN Woven products of iron or steel (excl. stainless) (excl. endless bands for machinery) 01/01/1990 31/12/1995 -731420 01/01/1988 31/12/2500 LIBEN Grill, netting and fencing, welded at the intersection, having a mesh size of >= 100 cm², of iron or steel wire with a maximum cross-sectional dimension of >= 3 mm 01/01/1988 31/12/2500 -73142000 01/01/1988 31/12/1994 LIBEN Grill, netting and fencing, welded at the intersection, having a mesh size of >= 100 cm², of iron or steel wire with a maximum cross-sectional dimension of >= 3 mm 01/01/1988 31/12/1994 -73142010 01/01/1995 31/12/2500 LIBEN Grill, netting and fencing, welded at the intersection, having a mesh size of >= 100 cm², of ribbed iron or steel wire of a maximum cross-sectional dimension of >= 3 mm 01/01/1995 31/12/2500 -73142090 01/01/1995 31/12/2500 LIBEN Grill, netting and fencing, welded at the intersection, having a mesh size of >= 100 cm², of iron or steel wire, the constituent material of which having a maximum cross-sectional dimension of >= 3 mm (other than of ribbed wire) 01/01/1995 31/12/2500 -731430 01/01/1988 31/12/1995 LIBEN Grill, netting and fencing, of iron or steel wire, welded at the intersection (excl. products of wire with a maximum cross-sectional dimension of >= 3 mm and having a mesh size of >= 100 cm²) 01/01/1988 31/12/1995 -73143010 01/01/1988 31/12/1995 LIBEN Grill, netting and fencing, of iron or steel wire, welded at the intersection, plated or coated with zinc (excl. products of wire with a maximum cross-sectional dimension of >= 3 mm and having a mesh size of >= 100 cm²) 01/01/1988 31/12/1995 -73143090 01/01/1988 31/12/1995 LIBEN Grill, netting and fencing, of iron or steel wire, welded at the intersection (excl. products of wire with a maximum cross-sectional dimension of >= 3 mm and having a mesh size of >= 100 cm², and grill, netting and fencing plated or coated with zinc) 01/01/1988 31/12/1995 -731431 01/01/1996 31/12/2500 LIBEN Grill, netting and fencing, of iron or steel wire, welded at the intersection, plated or coated with zinc (excl. products of wire with a maximum cross-sectional dimension of >= 3 mm and having a mesh size of >= 100 cm²) 01/01/1996 31/12/2500 -73143100 01/01/1996 31/12/2500 LIBEN Grill, netting and fencing, of iron or steel wire, welded at the intersection, plated or coated with zinc (excl. products of wire with a maximum cross-sectional dimension of >= 3 mm and having a mesh size of >= 100 cm²) 01/01/1996 31/12/2500 -731439 01/01/1996 31/12/2500 LIBEN Grill, netting and fencing, of iron or steel wire, welded at the intersection (excl. products of wire with a maximum cross-sectional dimension of >= 3 mm and having a mesh size of >= 100 cm², and grill, netting and fencing plated or coated with zinc) 01/01/1996 31/12/2500 -73143900 01/01/1996 31/12/2500 LIBEN Grill, netting and fencing, of iron or steel wire, welded at the intersection (excl. products of wire with a maximum cross-sectional dimension of >= 3 mm and having a mesh size of >= 100 cm², and grill, netting and fencing plated or coated with zinc) 01/01/1996 31/12/2500 -731441 01/01/1988 31/12/2500 LIBEN Grill, netting and fencing, of iron or steel wire, not welded at the intersection, plated or coated with zinc 01/01/1988 31/12/2500 -73144100 01/01/2012 31/12/2500 LIBEN Grill, netting and fencing, of iron or steel wire, not welded at the intersection, plated or coated with zinc 01/01/2012 31/12/2500 -73144110 01/01/1988 31/12/2011 LIBEN Hexagonal netting, of iron or steel wire, not welded at the intersection, plated or coated with zinc 01/01/1988 31/12/2011 -73144190 01/01/1988 31/12/2011 LIBEN Grill, netting and fencing, of iron or steel wire, not welded at the intersection, plated or coated with zinc (excl. hexagonal netting) 01/01/1988 31/12/2011 -731442 01/01/1988 31/12/2500 LIBEN Grill, netting and fencing, of iron or steel wire, not welded at the intersection, coated with plastics 01/01/1988 31/12/2500 -73144200 01/01/2012 31/12/2500 LIBEN Grill, netting and fencing, of iron or steel wire, not welded at the intersection, coated with plastics 01/01/2012 31/12/2500 -73144210 01/01/1988 31/12/2011 LIBEN Hexagonal netting, of iron or steel wire, not welded at the intersection, coated with plastics 01/01/1988 31/12/2011 -73144290 01/01/1988 31/12/2011 LIBEN Grill, netting and fencing, of iron or steel wire, not welded at the intersection, coated with plastics (excl. hexagonal netting) 01/01/1988 31/12/2011 -731449 01/01/1988 31/12/2500 LIBEN Grill, netting and fencing, of iron or steel wire, not welded at the intersection (excl. plated or coated with zinc or coated with plastics) 01/01/1988 31/12/2500 -73144900 01/01/1988 31/12/2500 LIBEN Grill, netting and fencing, of iron or steel wire, not welded at the intersection (excl. plated or coated with zinc or coated with plastics) 01/01/1988 31/12/2500 -731450 01/01/1988 31/12/2500 LIBEN Expanded metal, of iron or steel 01/01/1988 31/12/2500 -73145000 01/01/1988 31/12/2500 LIBEN Expanded metal, of iron or steel 01/01/1988 31/12/2500 -7315 01/01/1988 31/12/2500 LIBEN Chain and parts thereof, or iron or steel (excl. watch chains, necklace chains and the like, cutting and saw chain, skid chain, scraper chain for conveyors, toothed chain for textile machinery and the like, safety devices with chains for securing doors, measuring chains) 01/01/1988 31/12/2500 -731511 01/01/1988 31/12/2500 LIBEN Roller chain of iron or steel 01/01/1988 31/12/2500 -73151110 01/01/1988 31/12/2500 LIBEN Roller chain of iron or steel, of a kind used for cycles and motorcycles 01/01/1988 31/12/2500 -73151190 01/01/1988 31/12/2500 LIBEN Roller chain of iron or steel (excl. roller chain of a kind used for cycles and motorcycles) 01/01/1988 31/12/2500 -731512 01/01/1988 31/12/2500 LIBEN Articulated link chain of iron or steel (excl. roller chain) 01/01/1988 31/12/2500 -73151200 01/01/1988 31/12/2500 LIBEN Articulated link chain of iron or steel (excl. roller chain) 01/01/1988 31/12/2500 -731519 01/01/1988 31/12/2500 LIBEN Parts of articulated link chain, of iron or steel 01/01/1988 31/12/2500 -73151900 01/01/1988 31/12/2500 LIBEN Parts of articulated link chain, of iron or steel 01/01/1988 31/12/2500 -731520 01/01/1988 31/12/2500 LIBEN Skid chain for motor vehicles, of iron or steel 01/01/1988 31/12/2500 -73152000 01/01/1988 31/12/2500 LIBEN Skid chain for motor vehicles, of iron or steel 01/01/1988 31/12/2500 -731581 01/01/1988 31/12/2500 LIBEN Stud-link of iron or steel 01/01/1988 31/12/2500 -73158100 01/01/1988 31/12/2500 LIBEN Stud-link of iron or steel 01/01/1988 31/12/2500 -731582 01/01/1988 31/12/2500 LIBEN Welded link chain of iron or steel (excl. articulated link chain, skid chain and stud-link chain) 01/01/1988 31/12/2500 -73158200 01/01/2012 31/12/2500 LIBEN Welded link chain of iron or steel (excl. articulated link chain, skid chain and stud-link chain) 01/01/2012 31/12/2500 -73158210 01/01/1988 31/12/2011 LIBEN Welded link chain of iron or steel, the constituent material of which has a maximum cross-sectional dimension of <= 16 mm (excl. articulated link chain, skid chain and stud-link chain) 01/01/1988 31/12/2011 -73158290 01/01/1988 31/12/2011 LIBEN Chains of iron or steel, welded at the intersection, the constituent material of which having a maximum cross-sectional dimension of > 16 mm (excl. articulated link chain, skid chain and stud-link chain) 01/01/1988 31/12/2011 -731589 01/01/1988 31/12/2500 LIBEN Chain of iron or steel (excl. articulated link chain, skid chain, stud-link chain, welded link chain and parts thereof; watch chains, necklace chains and the like, cutting and saw chain, skid chain, scraper chain for conveyors, toothed chain for textile machinery and the like, safety devices with chains for securing doors, and measuring chains) 01/01/1988 31/12/2500 -73158900 01/01/1988 31/12/2500 LIBEN Chain of iron or steel (excl. articulated link chain, skid chain, stud-link chain, welded link chain and parts thereof; watch chains, necklace chains and the like, cutting and saw chain, skid chain, scraper chain for conveyors, toothed chain for textile machinery and the like, safety devices with chains for securing doors, and measuring chains) 01/01/1988 31/12/2500 -731590 01/01/1988 31/12/2500 LIBEN Parts of skid chain, stud-link chain and other chains of heading 7315 (excl. articulated link chain) 01/01/1988 31/12/2500 -73159000 01/01/1988 31/12/2500 LIBEN Parts of skid chain, stud-link chain and other chains of heading 7315 (excl. articulated link chain) 01/01/1988 31/12/2500 -7316 01/01/1988 31/12/2500 LIBEN Anchors, grapnels and parts thereof, of iron or steel 01/01/1988 31/12/2500 -731600 01/01/1988 31/12/2500 LIBEN Anchors, grapnels and parts thereof, of iron or steel 01/01/1988 31/12/2500 -73160000 01/01/1988 31/12/2500 LIBEN Anchors, grapnels and parts thereof, of iron or steel 01/01/1988 31/12/2500 -7317 01/01/1988 31/12/2500 LIBEN Nails, tacks, drawing pins, corrugated nails, staples and similar articles of iron or steel, whether or not with heads of other material (excl. such articles with heads of copper and staples in strips) 01/01/1988 31/12/2500 -731700 01/01/1988 31/12/2500 LIBEN Nails, tacks, drawing pins, corrugated nails, staples and similar articles of iron or steel, whether or not with heads of other material (excl. such articles with heads of copper and staples in strips) 01/01/1988 31/12/2500 -73170010 01/01/1988 31/12/2011 LIBEN Drawing pins of iron or steel 01/01/1988 31/12/2011 -73170020 01/01/1992 31/12/2500 LIBEN Nails of iron or steel wire, in strips or coils 01/01/1992 31/12/2500 -73170030 01/01/1988 31/12/1991 LIBEN Nails, tacks, studs and spikes, for footwear 01/01/1988 31/12/1991 -73170040 01/01/1992 31/12/2011 LIBEN Nails of steel wire containing by weight >= 0,5% of carbon, hardened (excl. nails in strips or coils) 01/01/1992 31/12/2011 -73170050 01/01/1988 31/12/1991 LIBEN Decorative studs (excl. such articles with heads of copper) 01/01/1988 31/12/1991 -73170060 01/01/2012 31/12/2500 LIBEN Nails, tacks, corrugated nails, staples and similar articles, of iron or steel wire (excl. nails in strips or coils, and staples in strips) 01/01/2012 31/12/2500 -73170061 01/01/1992 31/12/2011 LIBEN Nails, tacks, corrugated nails, staples and similar articles, of iron or steel wire, plated or coated with zinc (excl. nails in strips or coils, hardened nails containing by weight >= 0,5% of carbon and staples in strips) 01/01/1992 31/12/2011 -73170069 01/01/1992 31/12/2011 LIBEN Nails, tacks, corrugated nails, staples and similar articles, of iron or steel wire, not plated or coated with zinc (excl. nails in strips or coils, hardened nails containing by weight >= 0,5% of carbon, staples in strips and drawing pins) 01/01/1992 31/12/2011 -73170080 01/01/2012 31/12/2500 LIBEN Nails, tacks, drawing pins, corrugated nails, staples and similar articles, of iron or steel (excl. cold-pressed from wire, and staples in strips) 01/01/2012 31/12/2500 -73170090 01/01/1992 31/12/2011 LIBEN Nails, tacks, corrugated nails, staples and similar articles, of iron or steel (not of iron or steel wire and excl. staples in strips and drawing pins) 01/01/1992 31/12/2011 -73170091 01/01/1988 31/12/1991 LIBEN Nails, tacks, corrugated nails, staples and similar articles of iron or steel wire (excl. nails, tacks, studs and spikes, for footwear, decorative studs, drawing pins and staples in strips) 01/01/1988 31/12/1991 -73170099 01/01/1988 31/12/1991 LIBEN Nails, tacks, corrugated nails, staples and similar articles of iron or steel (excl. such articles of iron or steel wire, nails, tacks, studs and spikes, for footwear, decorative studs, drawing pins and staples in strips) 01/01/1988 31/12/1991 -7318 01/01/1988 31/12/2500 LIBEN Screws, bolts, nuts, coach screws, screw hooks, rivets, cotters, cotter pins, washers, incl. spring washers, and similar articles, of iron or steel (excl. lag screws, stoppers, plugs and the like, threaded) 01/01/1988 31/12/2500 -731811 01/01/1988 31/12/2500 LIBEN Coach screws of iron or steel 01/01/1988 31/12/2500 -73181100 01/01/1988 31/12/2500 LIBEN Coach screws of iron or steel 01/01/1988 31/12/2500 -731812 01/01/1988 31/12/2500 LIBEN Wood screws of iron or steel (excl. coach screws) 01/01/1988 31/12/2500 -73181210 01/01/1988 31/12/2500 LIBEN Wood screws of stainless steel (excl. coach screws) 01/01/1988 31/12/2500 -73181290 01/01/1988 31/12/2500 LIBEN Wood screws of iron or steel other than stainless (excl. coach screws) 01/01/1988 31/12/2500 -731813 01/01/1988 31/12/2500 LIBEN Screw hooks and screw rings, of iron or steel 01/01/1988 31/12/2500 -73181300 01/01/1988 31/12/2500 LIBEN Screw hooks and screw rings, of iron or steel 01/01/1988 31/12/2500 -731814 01/01/1988 31/12/2500 LIBEN Self-tapping screws, of iron or steel (excl. wook screws) 01/01/1988 31/12/2500 -73181410 01/01/1988 31/12/2500 LIBEN Self-tapping screws, of iron or steel other than stainless (excl. wook screws) 01/01/1988 31/12/2500 -73181491 01/01/1988 31/12/2500 LIBEN Spaced-thread screws of iron or steel other than stainless 01/01/1988 31/12/2500 -73181499 01/01/1988 31/12/2500 LIBEN Self-tapping screws of iron or steel other than stainless (excl. spaced-thread screws and wood screws) 01/01/1988 31/12/2500 -731815 01/01/1988 31/12/2500 LIBEN Threaded screws and bolts, of iron or steel, whether or not with their nuts and washers (excl. coach screws and other wood screws, screw hooks and screw rings, self-tapping screws, lag screws, stoppers, plugs and the like, threaded) 01/01/1988 31/12/2500 -73181510 01/01/1988 31/12/2016 LIBEN Screws of iron or steel, turned from bars, rods, profiles, or wire, of solid section, threaded, of a shank thickness of <= 6 mm 01/01/1988 31/12/2016 -73181520 01/01/1988 31/12/2500 LIBEN Screws and bolts, of iron or steel "whether or not with their nuts and washers", for fixing railway track construction material (excl. coach screws) 01/01/1988 31/12/2500 -73181530 01/01/1988 31/12/2016 LIBEN Screws and bolts, of stainless steel "whether or not with their nuts and washers", without heads (excl. screws turned from bars, rods, profiles, or wire, of solid section, threaded, of a shank thickness of <= 6 mm, and screws and bolts for fixing railway track construction material) 01/01/1988 31/12/2016 -73181535 01/01/2017 31/12/2500 LIBEN Screws and bolts, of stainless steel "whether or not with their nuts and washers", without heads (excl. screws and bolts for fixing railway track construction material) 01/01/2017 31/12/2500 -73181541 01/01/1988 31/12/2016 LIBEN Screws and bolts, of iron or steel other than stainless "whether or not with their nuts and washers", without heads, with a tensile strength of < 800 MPa (excl. screws turned from bars, rods, profiles, or wire, of solid section, threaded, of a shank thickness of <= 6 mm, and screws and bolts for fixing railway track construction material) 01/01/1988 31/12/2016 -73181542 01/01/2017 31/12/2500 LIBEN Screws and bolts, of iron or steel other than stainless "whether or not with their nuts and washers", without heads, with a tensile strength of < 800 MPa (excl. screws and bolts for fixing railway track construction material) 01/01/2017 31/12/2500 -73181548 01/01/2017 31/12/2500 LIBEN Screws and bolts, of iron or steel other than stainless "whether or not with their nuts and washers", without heads, with a tensile strength of >= 800 MPa (excl. screws and bolts for fixing railway track construction material) 01/01/2017 31/12/2500 -73181549 01/01/1988 31/12/2016 LIBEN Screws and bolts, of iron or steel other than stainless "whether or not with their nuts and washers", without heads, with a tensile strength of >= 800 MPa (excl. screws turned from bars, rods, profiles, or wire, of solid section, threaded, of a shank thickness of <= 6 mm, and screws and bolts for fixing railway track construction material) 01/01/1988 31/12/2016 -73181551 01/01/1988 31/12/2016 LIBEN Slotted and cross-recessed screws and bolts, of stainless steel "whether or not with their nuts and washers", with heads (excl. wood screws and self-tapping screws) 01/01/1988 31/12/2016 -73181552 01/01/2017 31/12/2500 LIBEN Screws and bolts, of stainless steel "whether or not with their nuts and washers", with slotted or cross-recessed heads (excl. wood screws and self-tapping screws) 01/01/2017 31/12/2500 -73181558 01/01/2017 31/12/2500 LIBEN Screws and bolts, of iron or steel other than stainless "whether or not with their nuts and washers", with slotted or cross-recessed heads (excl. wood screws and self-tapping screws) 01/01/2017 31/12/2500 -73181559 01/01/1988 31/12/2016 LIBEN Slotted and cross-recessed screws and bolts, of iron or steel other than stainless "whether or not with their nuts and washers", with heads (excl. wood screws and self-tapping screws) 01/01/1988 31/12/2016 -73181561 01/01/1988 31/12/2016 LIBEN Hexagon socket head screws and bolts, of stainless steel "whether or not with their nuts and washers" (excl. wood screws, self-tapping screws and screws and bolts for fixing railway track construction material) 01/01/1988 31/12/2016 -73181562 01/01/2017 31/12/2500 LIBEN Hexagonal-socket head screws and bolts, of stainless steel "whether or not with their nuts and washers" (excl. wood screws, self-tapping screws and screws and bolts for fixing railway track construction material) 01/01/2017 31/12/2500 -73181568 01/01/2017 31/12/2500 LIBEN Hexagonal-socket head screws and bolts, of iron or steel other than stainless "whether or not with their nuts and washers" (excl. wood screws, self-tapping screws and screws and bolts for fixing railway track construction material) 01/01/2017 31/12/2500 -73181569 01/01/1988 31/12/2016 LIBEN Hexagon socket head screws and bolts, of iron or steel other than stainless "whether or not with their nuts and washers" (excl. wood screws, self-tapping screws and screws and bolts for fixing railway track construction material) 01/01/1988 31/12/2016 -73181570 01/01/1988 31/12/2016 LIBEN Hexagon screws and bolts, of stainless steel "whether or not with their nuts and washers", with heads (excl. socket head screws, wood screws, self-tapping screws and screws and bolts for fixing railway track construction material) 01/01/1988 31/12/2016 -73181575 01/01/2017 31/12/2500 LIBEN Hexagon screws and bolts, of stainless steel "whether or not with their nuts and washers" (excl. with socket head, wood screws, self-tapping screws and screws and bolts for fixing railway track construction material) 01/01/2017 31/12/2500 -73181581 01/01/1988 31/12/2016 LIBEN Hexagon screws and bolts, of iron or steel other than stainless "whether or not with their nuts and washers", with a tensile strength of < 800 MPa, with heads (excl. socket head screws, wood screws, self-tapping screws and screws and bolts for fixing railway track construction material) 01/01/1988 31/12/2016 -73181582 01/01/2017 31/12/2500 LIBEN Hexagon screws and bolts, of iron or steel other than stainless "whether or not with their nuts and washers", with a tensile strength of < 800 MPa (excl. with socket head, wood screws, self-tapping screws and screws and bolts for fixing railway track construction material) 01/01/2017 31/12/2500 -73181588 01/01/2017 31/12/2500 LIBEN Hexagon screws and bolts, of iron or steel other than stainless "whether or not with their nuts and washers", with a tensile strength of => 800 MPa (excl. with socket head, wood screws, self-tapping screws and screws and bolts for fixing railway track construction material) 01/01/2017 31/12/2500 -73181589 01/01/1988 31/12/2016 LIBEN Hexagon screws and bolts, of iron or steel other than stainless "whether or not with their nuts and washers", with a tensile strength of >= 800 MPa, with heads (excl. socket head screws, wood screws, self-tapping screws and screws and bolts for fixing railway track construction material) 01/01/1988 31/12/2016 -73181590 01/01/1988 31/12/2016 LIBEN Screws and bolts, of iron or steel "whether or not with their nuts and washers", with heads (excl. slotted and cross-recessed screws and bolts, hexagon head screws and bolts; wood screws, self-tapping screws and screws and bolts for fixing railway track construction material, screw hooks, screw rings and lag screws) 01/01/1988 31/12/2016 -73181595 01/01/2017 31/12/2500 LIBEN Screws and bolts, of iron or steel "whether or not with their nuts and washers", with heads (excl. with slotted, cross-recessed or hexagonal head; wood screws, self-tapping screws and screws and bolts for fixing railway track construction material, screw hooks and screw rings) 01/01/2017 31/12/2500 -731816 01/01/1988 31/12/2500 LIBEN Nuts of iron or steel 01/01/1988 31/12/2500 -73181610 01/01/1988 31/12/2016 LIBEN Nuts of iron or steel, turned from bars, rods, profiles, or wire, of solid section, with an inside diameter of <= 6 mm 01/01/1988 31/12/2016 -73181630 01/01/1988 31/12/2016 LIBEN Nuts of stainless steel (excl. nuts turned from bars, rods, profiles, or wire, of solid section, with an inside diameter of <= 6 mm) 01/01/1988 31/12/2016 -73181631 01/01/2017 31/12/2500 LIBEN Blind rivet nuts of stainless steel 01/01/2017 31/12/2500 -73181639 01/01/2017 31/12/2500 LIBEN Nuts of stainless steel (excl. blind rivet nuts) 01/01/2017 31/12/2500 -73181640 01/01/2017 31/12/2500 LIBEN Blind rivet nuts of iron or steel other than stainless 01/01/2017 31/12/2500 -73181650 01/01/1988 31/12/2016 LIBEN Self-locking nuts of iron or steel other than stainless (excl. such articles turned from bars, rods, profiles, or wire, of solid section, with an inside diameter of <= 6 mm) 01/01/1988 31/12/2016 -73181660 01/01/2017 31/12/2500 LIBEN Self-locking nuts of iron or steel other than stainless 01/01/2017 31/12/2500 -73181691 01/01/1988 31/12/2016 LIBEN Nuts of iron or steel other than stainless, with an inside diameter of <= 12 mm (excl. such articles turned from bars, rods, profiles, or wire, of solid section, with an inside diameter of <= 6 mm, and self-locking nuts) 01/01/1988 31/12/2016 -73181692 01/01/2017 31/12/2500 LIBEN Nuts of iron or steel other than stainless, with an inside diameter <= 12 mm (excl. blind rivet nuts and self-locking nuts) 01/01/2017 31/12/2500 -73181699 01/01/1988 31/12/2016 LIBEN Nuts of iron or steel other than stainless, with an inside diameter of > 12 mm (excl. self-locking nuts) 01/01/1988 31/12/2016 -73181699 01/01/2017 31/12/2500 LIBEN Nuts of iron or steel other than stainless, with an inside diameter > 12 mm (excl. blind rivet nuts and self-locking nuts) 01/01/2017 31/12/2500 -731819 01/01/1988 31/12/2500 LIBEN Threaded articles, of iron or steel, n.e.s. 01/01/1988 31/12/2500 -73181900 01/01/1988 31/12/2500 LIBEN Threaded articles, of iron or steel, n.e.s. 01/01/1988 31/12/2500 -731821 01/01/1988 31/12/2500 LIBEN Spring washers and other lock washers, of iron or steel 01/01/1988 31/12/2500 -73182100 01/01/1988 31/12/2500 LIBEN Spring washers and other lock washers, of iron or steel 01/01/1988 31/12/2500 -731822 01/01/1988 31/12/2500 LIBEN Washers of iron or steel (excl. spring washers and other lock washers) 01/01/1988 31/12/2500 -73182200 01/01/1988 31/12/2500 LIBEN Washers of iron or steel (excl. spring washers and other lock washers) 01/01/1988 31/12/2500 -731823 01/01/1988 31/12/2500 LIBEN Rivets of iron or steel (excl. tubular and bifurcated rivets for particular uses) 01/01/1988 31/12/2500 -73182300 01/01/1988 31/12/2500 LIBEN Rivets of iron or steel (excl. tubular and bifurcated rivets for particular uses) 01/01/1988 31/12/2500 -731824 01/01/1988 31/12/2500 LIBEN Cotters and cotter pins, of iron or steel 01/01/1988 31/12/2500 -73182400 01/01/1988 31/12/2500 LIBEN Cotters and cotter pins, of iron or steel 01/01/1988 31/12/2500 -731829 01/01/1988 31/12/2500 LIBEN Non-threaded articles, of iron or steel 01/01/1988 31/12/2500 -73182900 01/01/1988 31/12/2500 LIBEN Non-threaded articles, of iron or steel 01/01/1988 31/12/2500 -7319 01/01/1988 31/12/2500 LIBEN Sewing needles, knitting needles, bodkins, crochet hoods, embroidery stilettos and similar articles, for use in the hand, of iron or steel; safety pins and other pins of iron or steel, n.e.s. 01/01/1988 31/12/2500 -731910 01/01/1988 31/12/2006 LIBEN Sewing, darning or embroidery needles, for use in the hand, of iron or steel 01/01/1988 31/12/2006 -73191000 01/01/1988 31/12/2006 LIBEN Sewing, darning or embroidery needles, for use in the hand, of iron or steel 01/01/1988 31/12/2006 -731920 01/01/1988 31/12/2011 LIBEN Safety pins of iron or steel 01/01/1988 31/12/2011 -73192000 01/01/1988 31/12/2011 LIBEN Safety pins of iron or steel 01/01/1988 31/12/2011 -731930 01/01/1988 31/12/2011 LIBEN Pins of iron or steel, n.e.s. 01/01/1988 31/12/2011 -73193000 01/01/1988 31/12/2011 LIBEN Pins of iron or steel, n.e.s. 01/01/1988 31/12/2011 -731940 01/01/2012 31/12/2500 LIBEN Safety pins and other pins of iron or steel, n.e.s. 01/01/2012 31/12/2500 -73194000 01/01/2012 31/12/2500 LIBEN Safety pins and other pins of iron or steel, n.e.s. 01/01/2012 31/12/2500 -731990 01/01/1988 31/12/2500 LIBEN Knitting needles, bodkins, crochet hooks, embroidery stilettos and similar articles, for use in the hand, of iron or steel 01/01/1988 31/12/2500 -73199000 01/01/1988 31/12/2006 LIBEN Knitting needles, bodkins, crochet hooks, embroidery stilettos and similar articles, of iron or steel (excl. sewing, darning or embroidery needles) 01/01/1988 31/12/2006 -73199010 01/01/2007 31/12/2500 LIBEN Sewing, darning or embroidery needles, for use in the hand, of iron or steel 01/01/2007 31/12/2500 -73199090 01/01/2007 31/12/2500 LIBEN Knitting needles, bodkins, crochet hooks, embroidery stilettos and similar articles, of iron or steel (excl. sewing, darning or embroidery needles) 01/01/2007 31/12/2500 -7320 01/01/1988 31/12/2500 LIBEN Springs and leaves for springs, of iron or steel (excl. clock and watch springs, springs for sticks and handles of umbrellas or parasols, shock absorbers and torque rod or torsion bar springs of Section 17) 01/01/1988 31/12/2500 -732010 01/01/1988 31/12/2500 LIBEN Leaf-springs and leaves therefor, of iron or steel (excl. clock and watch springs and shock absorbers and torque rod or torsion bar springs of Section 17) 01/01/1988 31/12/2500 -73201000 01/01/1988 31/12/1990 LIBEN Leaf-springs and leaves therefor, of iron or steel (excl. clock and watch springs and shock absorbers and torque rod or torsion bar springs of section xvii 01/01/1988 31/12/1990 -73201011 01/01/1991 31/12/2500 LIBEN Laminated leaf-springs and leaves therefor, of iron or steel 01/01/1991 31/12/2500 -73201019 01/01/1991 31/12/2500 LIBEN Leaf-springs and leaves therefor, of iron or steel, hot-worked (excl. laminated) 01/01/1991 31/12/2500 -73201090 01/01/1991 31/12/2500 LIBEN Leaf-springs and leaves therefor, of iron or steel (excl. hot-worked) 01/01/1991 31/12/2500 -732020 01/01/1988 31/12/2500 LIBEN Helical springs, of iron or steel (excl. flat spiral springs, clock and watch springs, springs for sticks and handles of umbrellas or parasols, and shock absorbers of Section 17) 01/01/1988 31/12/2500 -73202010 01/01/1988 31/12/1990 LIBEN Upholstery and mattress springs, of iron or steel 01/01/1988 31/12/1990 -73202020 01/01/1991 31/12/2500 LIBEN Helical springs, of iron or steel, hot-worked (excl. flat spiral springs, clock and watch springs, springs for sticks and handles of umbrellas or parasols, and shock absorbers of Section 17) 01/01/1991 31/12/2500 -73202081 01/01/1991 31/12/2500 LIBEN Coil compression springs, of iron or steel 01/01/1991 31/12/2500 -73202085 01/01/1991 31/12/2500 LIBEN Coil tension springs, of iron or steel 01/01/1991 31/12/2500 -73202089 01/01/1991 31/12/2500 LIBEN Helical springs, of iron or steel (excl. hot-worked, coil compression and coil tension springs) 01/01/1991 31/12/2500 -73202090 01/01/1988 31/12/1990 LIBEN Spiral springs, other than flat spiral springs, of iron or steel (excl. upholstery and mattress springs, clock and watch springs, springs for sticks and handles of umbrellas or parasols, and shock absorbers of section xvii 01/01/1988 31/12/1990 -732090 01/01/1988 31/12/2500 LIBEN Springs and leaves for springs, of iron or steel, incl. flat spiral springs (excl. helical springs, spiral springs, leaf-springs and leaves therefor, clock and watch springs, spring washers and other lock washers and shock absorbers and torque rod or torsion bar springs of Section 17) 01/01/1988 31/12/2500 -73209000 01/01/1988 31/12/1990 LIBEN Springs and leaves for springs, of iron or steel, including flat spiral springs (excl. helical springs, spiral springs, leaf-springs and leaves therefor, clock and watch springs, spring washers and other lock washers and shock absorbers and torque rod or torsion bar springs of section xvii) 01/01/1988 31/12/1990 -73209010 01/01/1991 31/12/2500 LIBEN Flat spiral springs, of iron or steel 01/01/1991 31/12/2500 -73209030 01/01/1991 31/12/2500 LIBEN Discs springs, of iron or steel 01/01/1991 31/12/2500 -73209090 01/01/1991 31/12/2500 LIBEN Springs and leaves for springs, of iron or steel (excl. discs springs, flat spiral springs, helical springs, leaf-springs and leaves therefor, clock and watch springs, springs for sticks and handles of umbrellas or parasols, and shock absorbers and torque rod or torsion bar springs of Section 17) 01/01/1991 31/12/2500 -7321 01/01/1988 31/12/2500 LIBEN Stoves, ranges, grates, cookers, incl. those with subsidiary boilers for central heating, barbecues, braziers, gas rings, plate warmers and similar non-electric domestic appliances, and parts thereof of iron or steel (excl. boilers and radiators for central heating, geysers and hot water cylinders) 01/01/1988 31/12/2500 -732111 01/01/1988 31/12/2500 LIBEN Appliances for baking, frying, grilling and cooking and plate warmers, for domestic use, of iron or steel, for gas fuel or for both gas and other fuels (excl. large cooking appliances) 01/01/1988 31/12/2500 -73211110 01/01/1988 31/12/2500 LIBEN Appliances for baking, frying, grilling and cooking with oven, incl. separate ovens, for domestic use, of iron or steel, for gas fuel or for both gas and other fuels (excl. large cooking appliances) 01/01/1988 31/12/2500 -73211190 01/01/1988 31/12/2500 LIBEN Appliances for baking, frying, grilling and cooking and plate warmers, for domestic use, of iron or steel, for gas fuel or for both gas and other fuels (excl. cooking appliances with oven, separate ovens and large cooking appliances) 01/01/1988 31/12/2500 -732112 01/01/1988 31/12/2500 LIBEN Appliances for baking, frying, grilling and cooking and plate warmers, for domestic use, of iron or steel, for liquid fuel (excl. large cooking appliances) 01/01/1988 31/12/2500 -73211200 01/01/1988 31/12/2500 LIBEN Appliances for baking, frying, grilling and cooking and plate warmers, for domestic use, of iron or steel, for liquid fuel (excl. large cooking appliances) 01/01/1988 31/12/2500 -732113 01/01/1988 31/12/2006 LIBEN Appliances for baking, frying, grilling and cooking and plate warmers, for domestic use, of iron or steel, for solid fuel (excl. large cooking appliances) 01/01/1988 31/12/2006 -73211300 01/01/1988 31/12/2006 LIBEN Appliances for baking, frying, grilling and cooking and plate warmers, for domestic use, of iron or steel, for solid fuel (excl. large cooking appliances) 01/01/1988 31/12/2006 -732119 01/01/2007 31/12/2500 LIBEN Appliances for baking, frying, grilling and cooking and plate warmers, for domestic use, of iron or steel, for solid fuel or other non-electric source of energy (excl. liquid or gaseous fuel, and large cooking appliances) 01/01/2007 31/12/2500 -73211900 01/01/2007 31/12/2500 LIBEN Appliances for baking, frying, grilling and cooking and plate warmers, for domestic use, of iron or steel, for solid fuel or other non-electric source of energy (excl. liquid or gaseous fuel, and large cooking appliances) 01/01/2007 31/12/2500 -732181 01/01/1988 31/12/2500 LIBEN Stoves, heaters, grates, fires, wash boilers, braziers and similar appliances, of iron or steel, for gas fuel or for both gas and other fuels (excl. cooking appliances, whether or not with oven, separate ovens, plate warmers, central heating boilers, geysers and hot water cylinders and large cooking appliances) 01/01/1988 31/12/2500 -73218100 01/01/2012 31/12/2500 LIBEN Stoves, heaters, grates, fires, wash boilers, braziers and similar appliances, of iron or steel, for gas fuel or for both gas and other fuels (excl. cooking appliances, whether or not with oven, separate ovens, plate warmers, central heating boilers, geysers and hot water cylinders and large cooking appliances) 01/01/2012 31/12/2500 -73218110 01/01/1988 31/12/2011 LIBEN Stoves, heaters, grates, fires, wash boilers, braziers and similar appliances, of iron or steel, for gas fuel or for both gas and other fuels, with exhaust outlet (excl. cooking appliances, whether or not with oven, separate ovens, plate warmers, central heating boilers, geysers and hot water cylinders and large cooking appliances) 01/01/1988 31/12/2011 -73218190 01/01/1988 31/12/2011 LIBEN Stoves, heaters, grates, fires, wash boilers, braziers and similar appliances, of iron or steel, for gas fuel or for both gas and other fuels, without exhaust outlet (excl. cooking appliances, plate warmers and large cooking appliances) 01/01/1988 31/12/2011 -732182 01/01/1988 31/12/2500 LIBEN Stoves, heaters, grates, fires, wash boilers, braziers and similar appliances, of iron or steel, for liquid fuel (excl. cooking appliances, whether or not with oven, separate ovens, plate warmers, central heating boilers, geysers, hot water cylinders and large cooking appliances) 01/01/1988 31/12/2500 -73218200 01/01/2012 31/12/2500 LIBEN Stoves, heaters, grates, fires, wash boilers, braziers and similar appliances, of iron or steel, for liquid fuel (excl. cooking appliances, whether or not with oven, separate ovens, plate warmers, central heating boilers, geysers, hot water cylinders and large cooking appliances) 01/01/2012 31/12/2500 -73218210 01/01/1988 31/12/2011 LIBEN Stoves, heaters, grates, fires, wash boilers, braziers and similar appliances, of iron or steel, for liquid fuel, with exhaust outlet (excl. cooking appliances, whether or not with oven, separate ovens, plate warmers, central heating boilers, geysers, hot water cylinders and large cooking appliances) 01/01/1988 31/12/2011 -73218290 01/01/1988 31/12/2011 LIBEN Stoves, heaters, grates, fires, wash boilers, braziers and similar appliances, of iron or steel, for liquid fuel, without exhaust outlet (excl. cooking appliances, plate warmers and large cooking appliances) 01/01/1988 31/12/2011 -732183 01/01/1988 31/12/2006 LIBEN Stoves, heaters, grates, fires, wash boilers, braziers and similar appliances, of iron or steel, for solid fuel (excl. cooking appliances, whether or not with oven, separate ovens, plate warmers, central heating boilers, hot water cylinders and large cooking appliances) 01/01/1988 31/12/2006 -73218300 01/01/1988 31/12/2006 LIBEN Stoves, heaters, grates, fires, wash boilers, braziers and similar appliances, of iron or steel, for solid fuel (excl. cooking appliances, whether or not with oven, separate ovens, plate warmers, central heating boilers, hot water cylinders and large cooking appliances) 01/01/1988 31/12/2006 -732189 01/01/2007 31/12/2500 LIBEN Stoves, heaters, grates, fires, wash boilers, braziers and similar domestic appliances, of iron or steel, for solid fuel or other non-electricsource of energy (excl. liquid or gaseous fuel, and cooking appliances, whether or not with oven, separate ovens, plate warmers, central heating boilers, hot water cylinders and large cooking appliances) 01/01/2007 31/12/2500 -73218900 01/01/2007 31/12/2500 LIBEN Stoves, heaters, grates, fires, wash boilers, braziers and similar domestic appliances, of iron or steel, for solid fuel or other non-electricsource of energy (excl. liquid or gaseous fuel, and cooking appliances, whether or not with oven, separate ovens, plate warmers, central heating boilers, hot water cylinders and large cooking appliances) 01/01/2007 31/12/2500 -732190 01/01/1988 31/12/2500 LIBEN Parts of domestic appliances non-electrically heated of heading 7321, n.e.s. 01/01/1988 31/12/2500 -73219000 01/01/1988 31/12/2500 LIBEN Parts of domestic appliances non-electrically heated of heading 7321, n.e.s. 01/01/1988 31/12/2500 -7322 01/01/1988 31/12/2500 LIBEN Radiators for central heating, non-electrically heated, and parts thereof, of iron or steel; air heaters and hot-air distributors, incl. distributors which can also distribute fresh or conditioned air, non-electrically heated, incorporating a motor-driven fan or blower, and parts thereof, of iron or steel 01/01/1988 31/12/2500 -732211 01/01/1988 31/12/2500 LIBEN Radiators for central heating, non-electrically heated, and parts thereof, of iron or steel (excl. parts, elsewhere specified or included, and central-heating boilers) 01/01/1988 31/12/2500 -73221100 01/01/1988 31/12/2500 LIBEN Radiators for central heating, non-electrically heated, and parts thereof, of iron or steel (excl. parts, elsewhere specified or included, and central-heating boilers) 01/01/1988 31/12/2500 -732219 01/01/1988 31/12/2500 LIBEN Radiators for central heating, non-electrically heated, and parts thereof, of iron other than cast iron or steel (excl. parts, elsewhere specified or included, and central-heating boilers) 01/01/1988 31/12/2500 -73221900 01/01/1988 31/12/2500 LIBEN Radiators for central heating, non-electrically heated, and parts thereof, of iron other than cast iron or steel (excl. parts, elsewhere specified or included, and central-heating boilers) 01/01/1988 31/12/2500 -732290 01/01/1988 31/12/2500 LIBEN Air heaters and hot-air distributors, incl. distributors which can also distribute fresh or conditioned air, non-electrically heated, incorporating a motor-driven fan or blower, and parts thereof, of iron or steel 01/01/1988 31/12/2500 -73229000 01/01/2006 31/12/2500 LIBEN Air heaters and hot-air distributors, incl. distributors which can also distribute fresh or conditioned air, non-electrically heated, incorporating a motor-driven fan or blower, and parts thereof, of iron or steel 01/01/2006 31/12/2500 -73229010 01/01/1988 31/12/2005 LIBEN Air heaters and hot-air distributors, incl. distributors which can also distribute fresh or conditioned air, non-electrically heated, incorporating a motor-driven fan or blower, of iron or steel, for civil aircraft (excl. parts thereof) 01/01/1988 31/12/2005 -73229090 01/01/1988 31/12/2005 LIBEN Air heaters and hot-air distributors, incl. distributors which can also distribute fresh or conditioned air, non-electrically heated, incorporating a motor-driven fan or blower, and parts thereof, of iron or steel (excl. complete parts thereof) 01/01/1988 31/12/2005 -7323 01/01/1988 31/12/2500 LIBEN Table, kitchen or other household articles, and parts thereof, of iron or steel; iron or steel wool; pot scourers and scouring or polishing pads, gloves and the like, of iron or steel (excl. cans, boxes and similar containers of heading 7310; waste baskets; shovels, corkscrews and other articles of the nature of a work implement; articles of cutlery, spoons, ladles, forks etc. of heading 8211 to 8215; ornamental articles; sanitary ware) 01/01/1988 31/12/2500 -732310 01/01/1988 31/12/2500 LIBEN Iron or steel wool; pot scourers and scouring or polishing pads, gloves and the like, of iron or steel 01/01/1988 31/12/2500 -73231000 01/01/1988 31/12/2500 LIBEN Iron or steel wool; pot scourers and scouring or polishing pads, gloves and the like, of iron or steel 01/01/1988 31/12/2500 -732391 01/01/1988 31/12/2500 LIBEN Table, kitchen or other household articles, and parts thereof, of cast iron, not enamelled (excl. cans, boxes and similar containers of heading 7310; waste baskets; shovels, corkscrews and other articles of the nature of a work implement; articles of cutlery, spoons, ladles, forks etc. of heading 8211 to 8215; ornamental articles; sanitary ware) 01/01/1988 31/12/2500 -73239100 01/01/1988 31/12/2500 LIBEN Table, kitchen or other household articles, and parts thereof, of cast iron, not enamelled (excl. cans, boxes and similar containers of heading 7310; waste baskets; shovels, corkscrews and other articles of the nature of a work implement; articles of cutlery, spoons, ladles, forks etc. of heading 8211 to 8215; ornamental articles; sanitary ware) 01/01/1988 31/12/2500 -732392 01/01/1988 31/12/2500 LIBEN Table, kitchen or other household articles, and parts thereof, of cast iron, enamelled (excl. cans, boxes and similar containers of heading 7310; waste baskets; shovels, corkscrews and other articles of the nature of a work implement; articles of cutlery, spoons, ladles, forks etc. of heading 8211 to 8215; ornamental articles; sanitary ware) 01/01/1988 31/12/2500 -73239200 01/01/1988 31/12/2500 LIBEN Table, kitchen or other household articles, and parts thereof, of cast iron, enamelled (excl. cans, boxes and similar containers of heading 7310; waste baskets; shovels, corkscrews and other articles of the nature of a work implement; articles of cutlery, spoons, ladles, forks etc. of heading 8211 to 8215; ornamental articles; sanitary ware) 01/01/1988 31/12/2500 -732393 01/01/1988 31/12/2500 LIBEN Table, kitchen or other household articles, and parts thereof, of stainless steel (excl. cans, boxes and similar containers of heading 7310; waste baskets; shovels, corkscrews and other articles of the nature of a work implement; articles of cutlery, spoons, ladles, forks etc. of heading 8211 to 8215; ornamental articles; sanitary ware) 01/01/1988 31/12/2500 -73239300 01/01/2012 31/12/2500 LIBEN Table, kitchen or other household articles, and parts thereof, of stainless steel (excl. cans, boxes and similar containers of heading 7310; waste baskets; shovels, corkscrews and other articles of the nature of a work implement; articles of cutlery, spoons, ladles, forks etc. of heading 8211 to 8215; ornamental articles; sanitary ware) 01/01/2012 31/12/2500 -73239310 01/01/1988 31/12/2011 LIBEN Household articles for table use, of stainless steel (excl. cans, boxes and similar containers of heading 7310; corkscrews, nutcrackers and other articles of the nature of a work implement; articles of cutlery, spoons, ladles, forks etc. of heading 8211 to 8215; ornamental articles; sanitary ware) 01/01/1988 31/12/2011 -73239390 01/01/1988 31/12/2011 LIBEN Kitchen or other household articles, and parts thereof, of stainless steel (excl. cans, boxes and similar containers of heading 7310; waste baskets; shovels, corkscrews and other articles of the nature of a work implement; articles of cutlery, spoons, ladles, forks etc. of heading 8211 to 8215; ornamental articles; sanitary ware; articles for table use) 01/01/1988 31/12/2011 -732394 01/01/1988 31/12/2500 LIBEN Table, kitchen or other household articles, and parts thereof, of iron other than cast iron or steel other than stainless, enamelled (excl. cans, boxes and similar containers of heading 7310; waste baskets; shovels, corkscrews and other articles of the nature of a work implement; articles of cutlery, spoons, ladles, forks etc. of heading 8211 to 8215; ornamental articles; sanitary ware; articles for table use) 01/01/1988 31/12/2500 -73239400 01/01/2012 31/12/2500 LIBEN Table, kitchen or other household articles, and parts thereof, of iron other than cast iron or steel other than stainless, enamelled (excl. cans, boxes and similar containers of heading 7310; waste baskets; shovels, corkscrews and other articles of the nature of a work implement; articles of cutlery, spoons, ladles, forks etc. of heading 8211 to 8215; ornamental articles; sanitary ware; articles for table use) 01/01/2012 31/12/2500 -73239410 01/01/1988 31/12/2011 LIBEN Articles for table use, of iron other than cast iron or steel other than stainless, enamelled (excl. cans, boxes and similar containers of heading 7310; spoons, ladles etc. of heading 8215; ornamental articles) 01/01/1988 31/12/2011 -73239490 01/01/1988 31/12/2011 LIBEN Kitchen or other household articles, and parts thereof, of iron other than cast iron or steel other than stainless, enamelled (excl. cans, boxes and similar containers of heading 7310; waste baskets; shovels and other articles of the nature of a work implement; spoons, ladles etc. of heading 8215; ornamental articles; sanitary ware; articles for table use) 01/01/1988 31/12/2011 -732399 01/01/1988 31/12/2500 LIBEN Table, kitchen or other household articles, and parts thereof, of iron other than cast iron or steel other than stainless (excl. enamelled articles; cans, boxes and similar containers of heading 7310; waste baskets; shovels and other articles of the nature of a work implement; cutlery, spoons, ladles etc. of heading 8211 to 8215; ornamental articles; sanitary ware) 01/01/1988 31/12/2500 -73239900 01/01/2012 31/12/2500 LIBEN Table, kitchen or other household articles, and parts thereof, of iron other than cast iron or steel other than stainless (excl. enamelled articles; cans, boxes and similar containers of heading 7310; waste baskets; shovels and other articles of the nature of a work implement; cutlery, spoons, ladles etc. of heading 8211 to 8215; ornamental articles; sanitary ware) 01/01/2012 31/12/2500 -73239910 01/01/1988 31/12/2011 LIBEN Articles for table use, of iron other than cast iron or steel other than stainless (excl. enamelled articles; cans, boxes and similar containers of heading 7310; corkscrews, nutcrackers and other articles of the nature of a work implement; articles of cutlery, spoons, ladles, forks etc. of heading 8211 to 8215; ornamental articles) 01/01/1988 31/12/2011 -73239991 01/01/1988 31/12/2011 LIBEN Kitchen or other household articles, and parts thereof, of iron other than cast iron or steel other than stainless, varnished or painted (excl. cans, boxes and similar containers of heading 7310; waste baskets; shovels and other articles of the nature of a work implement; ornamental articles; sanitary ware) 01/01/1988 31/12/2011 -73239999 01/01/1988 31/12/2011 LIBEN Table, kitchen or other household articles and parts thereof, of iron other than cast iron or steel other than stainless (excl. enamelled, painted or varnished articles; cans, boxes and similar containers in heading 7310; waste baskets; shovels, corkscrews, waffle irons, etc.; articles of cutlery such as spoons, ladles, forks, etc. in heading 8211 to 8215; decorative articles; sanitary ware; articles for table use) 01/01/1988 31/12/2011 -7324 01/01/1988 31/12/2500 LIBEN Sanitary ware, and parts thereof, of iron or steel (excl. cans, boxes and similar containers of heading 7310, small wall cabinets for medical supplies or toiletries and other furniture of chapter 94, and fittings) 01/01/1988 31/12/2500 -732410 01/01/1988 31/12/2500 LIBEN Sinks and washbasins, of stainless steel 01/01/1988 31/12/2500 -73241000 01/01/2006 31/12/2500 LIBEN Sinks and washbasins, of stainless steel 01/01/2006 31/12/2500 -73241010 01/01/1988 31/12/2005 LIBEN Sinks and washbasins, of stainless steel, for civil aircraft 01/01/1988 31/12/2005 -73241090 01/01/1988 31/12/2005 LIBEN Sinks and washbasins, of stainless steel (excl. such articles for civil aircraft) 01/01/1988 31/12/2005 -732421 01/01/1988 31/12/2500 LIBEN Baths of cast iron, whether or not enamelled 01/01/1988 31/12/2500 -73242100 01/01/1988 31/12/2500 LIBEN Baths of cast iron, whether or not enamelled 01/01/1988 31/12/2500 -732429 01/01/1988 31/12/2500 LIBEN Baths of steel sheet 01/01/1988 31/12/2500 -73242900 01/01/1988 31/12/2500 LIBEN Baths of steel sheet 01/01/1988 31/12/2500 -732490 01/01/1988 31/12/2500 LIBEN Sanitary ware, incl. parts thereof (excl. cans, boxes and similar containers of heading 7310, small wall cabinets for medical supplies or toiletries and other furniture of chapter 94, and fittings, complete sinks and washbasins, of stainless steel, complete baths and fittings) 01/01/1988 31/12/2500 -73249000 01/01/2006 31/12/2500 LIBEN Sanitary ware, incl. parts thereof (excl. cans, boxes and similar containers of heading 7310, small wall cabinets for medical supplies or toiletries and other furniture of chapter 94, and fittings, complete sinks and washbasins, of stainless steel, complete baths and fittings) 01/01/2006 31/12/2500 -73249010 01/01/1988 31/12/2005 LIBEN Sanitary ware of iron or steel, for civil aircraft (excl. parts thereof and sinks and washbasins of stainless steel) 01/01/1988 31/12/2005 -73249090 01/01/1988 31/12/2005 LIBEN Sanitary ware, incl. parts thereof, of iron and steel (excl. cans, boxes and similar containers of heading 7310, small wall cabinets for medical supplies or toiletries and other furniture of chapter 94, and fittings, complete sinks and washbasins, of stainless steel, complete baths and fittings, and sanitary ware other than parts thereof for civil aircraft) 01/01/1988 31/12/2005 -7325 01/01/1988 31/12/2500 LIBEN Articles of iron or steel, cast, n.e.s. 01/01/1988 31/12/2500 -732510 01/01/1988 31/12/2500 LIBEN Articles of non-malleable cast iron, n.e.s. 01/01/1988 31/12/2500 -73251000 01/01/2014 31/12/2500 LIBEN Articles of non-malleable cast iron, n.e.s. 01/01/2014 31/12/2500 -73251010 01/01/1988 31/12/1988 LIBEN Products of non-malleable cast iron for sewage, water, etc. systems, n.e.s. 01/01/1988 31/12/1988 -73251020 01/01/1989 31/12/1996 LIBEN Step irons of a kind used in sewers, of non-malleable cast iron 01/01/1989 31/12/1996 -73251050 01/01/1989 31/12/2013 LIBEN Surface and valve boxes, of non-malleable cast iron 01/01/1989 31/12/2013 -73251090 01/01/1988 31/12/1988 LIBEN Articles of non-malleable cast iron, n.e.s. (excl. products for sewage, water, etc. systems 01/01/1988 31/12/1988 -73251091 01/01/1989 31/12/1996 LIBEN Articles of non-malleable cast iron, for sewage, water, etc., systems (excl. step irons, surface and valve boxes) 01/01/1989 31/12/1996 -73251092 01/01/1997 31/12/2013 LIBEN Articles of non-malleable cast iron, for sewage, water, etc., systems (excl. surface and valve boxes) 01/01/1997 31/12/2013 -73251099 01/01/1989 31/12/2013 LIBEN Articles of non-malleable cast iron, n.e.s. (excl. surface and valve boxes and articles for sewage, water, etc. systems) 01/01/1989 31/12/2013 -732591 01/01/1988 31/12/2500 LIBEN Grinding balls and similar articles for mills, cast (excl. such articles of non-malleable cast iron) 01/01/1988 31/12/2500 -73259100 01/01/1988 31/12/2500 LIBEN Grinding balls and similar articles for mills, cast (excl. such articles of non-malleable cast iron) 01/01/1988 31/12/2500 -732599 01/01/1988 31/12/2500 LIBEN Cast articles of iron or steel, n.e.s. (excl. articles of non-malleable cast iron, and grinding balls and similar articles for mills) 01/01/1988 31/12/2500 -73259910 01/01/1988 31/12/2019 LIBEN Articles of malleable cast iron, n.e.s. (excl. grinding balls and similar articles for mills) 01/01/1988 31/12/2019 -73259910 01/01/2020 31/12/2500 LIBEN Articles of cast iron, n.e.s. (excl. of non-malleable cast iron, and grinding balls and similar articles for mills) 01/01/2020 31/12/2500 -73259990 01/01/1988 31/12/1992 LIBEN Cast articles of iron or steel, n.e.s. (excl. articles of non-malleable or malleable cast iron, and grinding balls and similar articles for mills) 01/01/1988 31/12/1992 -73259990 01/01/1997 31/12/2019 LIBEN Articles of iron or steel, cast, n.e.s. (excl. of malleable or non-malleable cast iron, grinding balls and similar articles for mills) 01/01/1997 31/12/2019 -73259990 01/01/2020 31/12/2500 LIBEN Articles of cast steel, n.e.s. (excl. grinding balls and similar articles for mills) 01/01/2020 31/12/2500 -73259991 01/01/1993 31/12/1996 LIBEN Container corner fittings 01/01/1993 31/12/1996 -73259999 01/01/1993 31/12/1996 LIBEN Articles of iron or steel, cast, n.e.s. (excl. of malleable or non-malleable cast iron, grinding balls and similar articles for mills and container corner fittings) 01/01/1993 31/12/1996 -7326 01/01/1988 31/12/2500 LIBEN Articles of iron or steel, n.e.s. (excl. cast articles) 01/01/1988 31/12/2500 -732611 01/01/1988 31/12/2500 LIBEN Grinding balls and similar articles for mills, of iron or steel, forged or stamped, but not further worked 01/01/1988 31/12/2500 -73261100 01/01/1988 31/12/2500 LIBEN Grinding balls and similar articles for mills, of iron or steel, forged or stamped, but not further worked 01/01/1988 31/12/2500 -732619 01/01/1988 31/12/2500 LIBEN Articles of iron or steel, forged or stamped, but not further worked, n.e.s. (excl. grinding balls and similar articles for mills) 01/01/1988 31/12/2500 -73261910 01/01/1988 31/12/2500 LIBEN Articles of iron or steel, open-die forged, but not further worked, n.e.s. (excl. grinding balls and similar articles for mills) 01/01/1988 31/12/2500 -73261990 01/01/1988 31/12/2500 LIBEN Articles of iron or steel, closed-die forged or stamped, but not further worked, n.e.s. (excl. grinding balls and similar articles for mills) 01/01/1988 31/12/2500 -732620 01/01/1988 31/12/2500 LIBEN Articles of iron or steel wire, n.e.s. 01/01/1988 31/12/2500 -73262000 01/01/2012 31/12/2500 LIBEN Articles of iron or steel wire, n.e.s. 01/01/2012 31/12/2500 -73262010 01/01/1988 31/12/2005 LIBEN Articles of iron or steel wire, n.e.s., for civil aircraft 01/01/1988 31/12/2005 -73262030 01/01/1988 31/12/2011 LIBEN Small cages and aviaries, of iron or steel wire 01/01/1988 31/12/2011 -73262050 01/01/1988 31/12/2011 LIBEN Baskets of iron or steel wire 01/01/1988 31/12/2011 -73262080 01/01/2006 31/12/2011 LIBEN Articles of iron or steel wire, n.e.s. (excl. small cages and aviaries, and baskets) 01/01/2006 31/12/2011 -73262090 01/01/1988 31/12/2005 LIBEN Articles of iron or steel wire, n.e.s. (excl. small cages and aviaries, baskets and articles for civil aircraft) 01/01/1988 31/12/2005 -732690 01/01/1988 31/12/2500 LIBEN Articles of iron or steel, n.e.s. (excl. cast articles or articles of iron or steel wire) 01/01/1988 31/12/2500 -73269010 01/01/1988 31/12/2011 LIBEN Snuffboxes, cigarette cases, cosmetic and powder boxes and cases, and similar pocket articles, of iron or steel 01/01/1988 31/12/2011 -73269030 01/01/1988 31/12/2500 LIBEN Ladders and steps, of iron or steel 01/01/1988 31/12/2500 -73269040 01/01/1988 31/12/2500 LIBEN Pallets and similar platforms for handling goods, of iron or steel 01/01/1988 31/12/2500 -73269050 01/01/1988 31/12/2500 LIBEN Reels for cables, piping and the like, of iron or steel 01/01/1988 31/12/2500 -73269060 01/01/1988 31/12/2500 LIBEN Ventilators, non-mechanical, guttering, hooks and like articles used in the building industry, n.e.s., of iron or steel 01/01/1988 31/12/2500 -73269070 01/01/1988 31/12/2011 LIBEN Perforated buckets and similar articles of steel sheet, used to filter water at the entrance to drains 01/01/1988 31/12/2011 -73269080 01/01/1995 31/12/2003 LIBEN Connectors for optical fibre cables, of iron or steel 01/01/1995 31/12/2003 -73269091 01/01/1988 31/12/2011 LIBEN Articles of iron or steel, open-die forged, n.e.s. 01/01/1988 31/12/2011 -73269092 01/01/2012 31/12/2500 LIBEN Articles of iron or steel, open-die forged, n.e.s. 01/01/2012 31/12/2500 -73269093 01/01/1988 31/12/2011 LIBEN Articles of iron or steel, closed-die forged, n.e.s. 01/01/1988 31/12/2011 -73269094 01/01/2012 31/12/2500 LIBEN Articles of iron or steel, closed-die forged, n.e.s. 01/01/2012 31/12/2500 -73269095 01/01/1991 31/12/2011 LIBEN Sintered articles of iron or steel, n.e.s. 01/01/1991 31/12/2011 -73269096 01/01/2012 31/12/2500 LIBEN Sintered articles of iron or steel, n.e.s. 01/01/2012 31/12/2500 -73269097 01/01/1995 31/12/2003 LIBEN Articles of iron or steel, n.e.s. 01/01/1995 31/12/2003 -73269098 01/01/1991 31/12/1994 LIBEN Articles (excl. 7326.11-00 to 7326.90-95 and n.e.s. in chapter 73), of iron or steel 01/01/1991 31/12/1994 -73269098 01/01/2004 31/12/2006 LIBEN Articles of iron or steel, n.e.s. 01/01/2004 31/12/2006 -73269098 01/01/2007 31/12/2011 LIBEN Articles of iron or steel, n.e.s. 01/01/2007 31/12/2011 -73269098 01/01/2012 31/12/2016 LIBEN Articles of iron or steel, n.e.s. 01/01/2012 31/12/2016 -73269098 01/01/2017 31/12/2500 LIBEN Articles of iron or steel, n.e.s. 01/01/2017 31/12/2500 -73269099 01/01/1988 31/12/1990 LIBEN Articles of iron or steel, n.e.s. 01/01/1988 31/12/1990 -7326S6 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 7326 and SITC section 6 01/01/2001 31/12/2500 -7326S699 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 7326 and SITC group 699 01/01/2001 31/12/2500 -73CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 73 01/01/2002 31/12/2500 -73CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 73 01/01/2002 31/12/2500 -73CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 73 01/01/2002 31/12/2500 -73II 01/01/1988 31/12/2500 LIBEN Components of complete industrial plants of chapter 73 01/01/1988 31/12/2500 -73III0 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 73; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/2005 -73III0 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 73 01/01/2006 31/12/2500 -73III000 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 73; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/2005 -73III000 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 73 01/01/2006 31/12/2500 -73III1 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 73; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -73III100 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 73; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -73III2 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 73; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -73III2 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of chapter 73; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/2000 31/12/2005 -73III200 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 73; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -73III200 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of chapter 73; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/2000 31/12/2005 -73III3 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 73; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -73III3 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of chapter 73; mechanical engineering and construction of means of transport; instrument engineering 01/01/2001 31/12/2005 -73III300 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 73; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -73III300 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of chapter 73; mechanical engineering and construction of means of transport; instrument engineering 01/01/2001 31/12/2005 -73III4 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 73; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/2005 -73III400 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 73; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/2005 -73III5 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 73; food, drink and tobacco industry 01/01/1988 31/12/2005 -73III500 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 73; food, drink and tobacco industry 01/01/1988 31/12/2005 -73III6 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 73; textile, leather, footwear and clothing industry 01/01/1988 31/12/2005 -73III600 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 73; textile, leather, footwear and clothing industry 01/01/1988 31/12/2005 -73III7 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 73; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -73III700 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 73; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -73III8 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 73; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -73III800 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 73; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -73III9 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 73; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -73III900 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 73; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -73MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -73MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -73MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -73SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 73 01/01/1988 31/12/2500 -73SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 73 and SITC section 0 01/01/1997 31/12/2001 -73SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 73 and SITC group 000 01/01/1997 31/12/2001 -73SSS6 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 73 and SITC section 6 01/01/1988 31/12/2500 -73SSS676 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 73 and SITC group 676 01/01/1997 31/12/2500 -73SSS677 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 73 and SITC group 677 01/01/1993 31/12/2500 -73SSS679 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 73 and SITC group 679 01/01/1988 31/12/2500 -73SSS691 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 73 and SITC group 691 01/01/1997 31/12/2500 -73SSS692 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 73 and SITC group 692 01/01/1997 31/12/2500 -73SSS693 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 73 and SITC group 693 01/01/1992 31/12/2500 -73SSS694 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 73 and SITC group 694 01/01/1992 31/12/2500 -73SSS697 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 73 and SITC group 697 01/01/1997 31/12/2500 -73SSS699 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 73 and SITC group 699 01/01/1993 31/12/2500 -73SSS7 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 73 and SITC section 7 01/01/1997 31/12/2500 -73SSS748 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 73 and SITC group 748 01/01/1997 31/12/2500 -73SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 73 and SITC section 8 01/01/1997 31/12/2500 -73SSS812 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 73 and SITC group 812 01/01/1997 31/12/2500 -73SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 73 and SITC section 9 01/01/1988 31/12/1996 -73SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 73 and SITC section 9 01/01/1997 31/12/2500 -73SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 73 and SITC group 999 01/01/1988 31/12/1996 -73SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 73 and SITC group 999 01/01/1997 31/12/2500 -73VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 73 for the assembly of motor vehicles 01/01/1988 31/12/2500 -73VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 73 for the assembly of motor vehicles 01/01/1988 31/12/2500 -73VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 73 for the assembly of motor vehicles 01/01/1988 31/12/2500 -74 01/01/1988 31/12/2500 LIBEN COPPER AND ARTICLES THEREOF 01/01/1988 31/12/2500 -7401 01/01/1988 31/12/2500 LIBEN Copper mattes; cement copper "precipitated copper" 01/01/1988 31/12/2500 -740100 01/01/2007 31/12/2500 LIBEN Copper mattes; cement copper "precipitated copper" 01/01/2007 31/12/2500 -74010000 01/01/2007 31/12/2500 LIBEN Copper mattes; cement copper "precipitated copper" 01/01/2007 31/12/2500 -740110 01/01/1988 31/12/2006 LIBEN Copper mattes 01/01/1988 31/12/2006 -74011000 01/01/1988 31/12/2006 LIBEN Copper mattes 01/01/1988 31/12/2006 -740120 01/01/1988 31/12/2006 LIBEN Cement copper "precipitated copper" 01/01/1988 31/12/2006 -74012000 01/01/1988 31/12/2006 LIBEN Cement copper "precipitated copper" 01/01/1988 31/12/2006 -7402 01/01/1988 31/12/2500 LIBEN Copper, unrefined; copper anodes for electrolytic refining 01/01/1988 31/12/2500 -740200 01/01/1988 31/12/2500 LIBEN Copper, unrefined; copper anodes for electrolytic refining 01/01/1988 31/12/2500 -74020000 01/01/1988 31/12/2500 LIBEN Copper, unrefined; copper anodes for electrolytic refining 01/01/1988 31/12/2500 -7403 01/01/1988 31/12/2500 LIBEN Copper, refined, and copper alloys, unwrought (excl. copper alloys of heading 7405) 01/01/1988 31/12/2500 -740311 01/01/1988 31/12/2500 LIBEN Copper, refined, in the form of cathodes and sections of cathodes 01/01/1988 31/12/2500 -74031100 01/01/1988 31/12/2500 LIBEN Copper, refined, in the form of cathodes and sections of cathodes 01/01/1988 31/12/2500 -740312 01/01/1988 31/12/2500 LIBEN Copper, refined, in the form of wire-bars 01/01/1988 31/12/2500 -74031200 01/01/1988 31/12/2500 LIBEN Copper, refined, in the form of wire-bars 01/01/1988 31/12/2500 -740313 01/01/1988 31/12/2500 LIBEN Copper, refined, in the form of billets 01/01/1988 31/12/2500 -74031300 01/01/1988 31/12/2500 LIBEN Copper, refined, in the form of billets 01/01/1988 31/12/2500 -740319 01/01/1988 31/12/2500 LIBEN Copper, refined, unwrought (excl. copper in the form of billets, wire-bars, cathodes and sections of cathodes) 01/01/1988 31/12/2500 -74031900 01/01/1988 31/12/2500 LIBEN Copper, refined, unwrought (excl. copper in the form of billets, wire-bars, cathodes and sections of cathodes) 01/01/1988 31/12/2500 -740321 01/01/1988 31/12/2500 LIBEN Copper-zinc base alloys "brass" unwrought 01/01/1988 31/12/2500 -74032100 01/01/1988 31/12/2500 LIBEN Copper-zinc base alloys "brass" unwrought 01/01/1988 31/12/2500 -740322 01/01/1988 31/12/2500 LIBEN Copper-tin base alloys "bronze" unwrought 01/01/1988 31/12/2500 -74032200 01/01/1988 31/12/2500 LIBEN Copper-tin base alloys "bronze" unwrought 01/01/1988 31/12/2500 -740323 01/01/1988 31/12/2006 LIBEN Copper-nickel base alloys "cupro-nickel" or copper-nickel-zinc base alloys "nickel silver" unwrought 01/01/1988 31/12/2006 -74032300 01/01/1988 31/12/2006 LIBEN Copper-nickel base alloys "cupro-nickel" or copper-nickel-zinc base alloys "nickel silver" unwrought 01/01/1988 31/12/2006 -740329 01/01/1988 31/12/2500 LIBEN Copper alloys unwrought (excl. copper-zinc base alloys "brass", copper-zinc base alloys "bronze", and copper master alloys of heading 7405) 01/01/1988 31/12/2500 -74032900 01/01/1988 31/12/2006 LIBEN Copper alloys unwrought (excl. copper-zinc base alloys "brass", copper-zinc base alloys "bronze", copper-nickel base alloys "cupro-nickel", copper-nickel-zinc base alloys "nickel silver", and copper alloys of heading 7405) 01/01/1988 31/12/2006 -74032900 01/01/2007 31/12/2500 LIBEN Copper alloys unwrought (excl. copper-zinc base alloys "brass", copper-tin base alloys "bronze", and copper master alloys of heading 7405) 01/01/2007 31/12/2500 -7404 01/01/1988 31/12/2500 LIBEN Waste and scrap, of copper (excl. ingots or other similar unwrought shapes, of remelted copper waste and scrap, ashes and residues containing copper, and waste and scrap of primary cells, primary batteries and electric accumulators) 01/01/1988 31/12/2500 -740400 01/01/1988 31/12/2500 LIBEN Waste and scrap, of copper (excl. ingots or other similar unwrought shapes, of remelted copper waste and scrap, ashes and residues containing copper, and waste and scrap of primary cells, primary batteries and electric accumulators) 01/01/1988 31/12/2500 -74040010 01/01/1988 31/12/1995 LIBEN Waste and scrap, of refined copper (excl. ingots or other similar unwrought shapes, of remelted refined copper waste and scrap, ashes and residues containing refined copper) 01/01/1988 31/12/1995 -74040010 01/01/1996 31/12/2500 LIBEN Waste and scrap, of refined copper (excl. ingots or other similar unwrought shapes, of remelted refined copper waste and scrap, ashes and residues containing refined copper, and waste and scrap of primary cells, primary batteries and electric accumulators) 01/01/1996 31/12/2500 -74040091 01/01/1988 31/12/1995 LIBEN Waste and scrap, of copper-zinc base alloys "brass" (excl. ingots or other similar unwrought shapes, of remelted waste and scrap of copper-zinc base alloys, ashes and residues containing copper-zinc base alloys) 01/01/1988 31/12/1995 -74040091 01/01/1996 31/12/2500 LIBEN Waste and scrap, of copper-zinc base alloys "brass" (excl. ingots or other similar unwrought shapes, of remelted waste and scrap of copper-zinc alloys, ashes and residues containing copper-zinc alloys and waste and scrap of primary cells, primary batteries and electric accumulators) 01/01/1996 31/12/2500 -74040099 01/01/1988 31/12/1995 LIBEN Waste and scrap, of copper alloys (excl. of copper-zinc base alloys, ingots or other similar unwrought shapes, of remelted waste and scrap of copper alloys, ashes and residues containing copper alloys) 01/01/1988 31/12/1995 -74040099 01/01/1996 31/12/2500 LIBEN Waste and scrap, of copper alloys (excl. of copper-zinc alloys, ingots or other similar unwrought shapes, of remelted waste and scrap of copper alloys, ashes and residues containing copper alloys, and waste and scrap of primary cells, primary batteries and electric accumulators) 01/01/1996 31/12/2500 -7405 01/01/1988 31/12/2500 LIBEN Master alloys of copper (excl. phosphorus-copper compounds "copper phosphide" containing by weight > 15% phosphorus) 01/01/1988 31/12/2500 -740500 01/01/1988 31/12/2500 LIBEN Master alloys of copper (excl. phosphorus-copper compounds "copper phosphide" containing by weight > 15% phosphorus) 01/01/1988 31/12/2500 -74050000 01/01/1988 31/12/2500 LIBEN Master alloys of copper (excl. phosphorus-copper compounds "copper phosphide" containing by weight > 15% phosphorus) 01/01/1988 31/12/2500 -7406 01/01/1988 31/12/2500 LIBEN Powders and flakes, of copper (excl. grains of copper and spangles of heading 8308) 01/01/1988 31/12/2500 -740610 01/01/1988 31/12/2500 LIBEN Copper powders, of non-lamellar structure (excl. grains of copper) 01/01/1988 31/12/2500 -74061000 01/01/1988 31/12/2500 LIBEN Copper powders, of non-lamellar structure (excl. grains of copper) 01/01/1988 31/12/2500 -740620 01/01/1988 31/12/2500 LIBEN Copper powders, of lamellar structure, and flakes of copper (excl. grains of copper and spangles of heading 8308) 01/01/1988 31/12/2500 -74062000 01/01/1988 31/12/2500 LIBEN Copper powders, of lamellar structure, and flakes of copper (excl. grains of copper and spangles of heading 8308) 01/01/1988 31/12/2500 -7407 01/01/1988 31/12/2500 LIBEN Bars, rods and profiles, of copper, n.e.s. 01/01/1988 31/12/2500 -740710 01/01/1988 31/12/2500 LIBEN Bars, rods and profiles, of refined copper, n.e.s. 01/01/1988 31/12/2500 -74071000 01/01/1988 31/12/2500 LIBEN Bars, rods and profiles, of refined copper, n.e.s. 01/01/1988 31/12/2500 -740721 01/01/1988 31/12/2500 LIBEN Bars, rods and profiles, of copper-zinc base alloys "brass", n.e.s. 01/01/1988 31/12/2500 -74072110 01/01/1988 31/12/2500 LIBEN Bars and rods, of copper-zinc base alloys "brass", n.e.s. 01/01/1988 31/12/2500 -74072190 01/01/1988 31/12/2500 LIBEN Profiles of copper-zinc base alloys "brass", n.e.s. 01/01/1988 31/12/2500 -740722 01/01/1988 31/12/2006 LIBEN Bars, rods and profiles of copper-nickel base alloys "cupro-nickel" or copper-nickel-zinc base alloys "nickel silver", n.e.s. 01/01/1988 31/12/2006 -74072210 01/01/1988 31/12/2006 LIBEN Bars, rods and profiles of copper-nickel base alloys "cupro-nickel", n.e.s. 01/01/1988 31/12/2006 -74072290 01/01/1988 31/12/2006 LIBEN Bars, rods and profiles of copper-nickel-zinc base alloys "nickel silver", n.e.s. 01/01/1988 31/12/2006 -740729 01/01/1988 31/12/2500 LIBEN Bars, rods and profiles of copper alloys, n.e.s. (excl. such articles of copper-zinc base alloys "brass") 01/01/1988 31/12/2500 -74072900 01/01/1988 31/12/2006 LIBEN Bars, rods and profiles of copper alloys, n.e.s. (excl. such articles of copper-zinc base alloys "brass", copper-nickel base alloys "cupro-nickel" or copper-nickel-zinc base alloys "nickel silver") 01/01/1988 31/12/2006 -74072900 01/01/2011 31/12/2500 LIBEN Bars, rods and profiles of copper alloys, n.e.s. (excl. such articles of copper-zinc base alloys "brass") 01/01/2011 31/12/2500 -74072910 01/01/2007 31/12/2010 LIBEN Bars, rods and profiles of copper-nickel base alloys "cupro-nickel" or copper-nickel-zinc base alloys "nickel silver", n.e.s. 01/01/2007 31/12/2010 -74072990 01/01/2007 31/12/2010 LIBEN Bars, rods and profiles of copper alloys, n.e.s. (excl. such articles of copper-zinc base alloys "brass", copper-nickel base alloys "cupro-nickel" or copper-nickel-zinc base alloys "nickel silver") 01/01/2007 31/12/2010 -7408 01/01/1988 31/12/2500 LIBEN Copper wire (excl. surgical sutures, stranded wire, cables, plaited bands and the like and other articles of heading 7413, electrically insulated wires and strings for musical instruments) 01/01/1988 31/12/2500 -740811 01/01/1988 31/12/2500 LIBEN Wire of refined copper, with a maximum cross-sectional dimension of > 6 mm 01/01/1988 31/12/2500 -74081100 01/01/1988 31/12/2500 LIBEN Wire of refined copper, with a maximum cross-sectional dimension of > 6 mm 01/01/1988 31/12/2500 -740819 01/01/1988 31/12/2500 LIBEN Wire of refined copper, with a maximum cross-sectional dimension of <= 6 mm 01/01/1988 31/12/2500 -74081910 01/01/1988 31/12/2500 LIBEN Wire of refined copper, with a maximum cross-sectional dimension of > 0,5 mm but <= 6 mm 01/01/1988 31/12/2500 -74081990 01/01/1988 31/12/2500 LIBEN Wire of refined copper, with a maximum cross-sectional dimension of <= 0,5 mm 01/01/1988 31/12/2500 -740821 01/01/1988 31/12/2500 LIBEN Wire of copper-zinc base alloys "brass" 01/01/1988 31/12/2500 -74082100 01/01/1988 31/12/2500 LIBEN Wire of copper-zinc base alloys "brass" 01/01/1988 31/12/2500 -740822 01/01/1988 31/12/2500 LIBEN Wire of copper-nickel alloys "cupro-nickel" or copper-nickel-zinc alloys "nickel silver" 01/01/1988 31/12/2500 -74082200 01/01/1995 31/12/2500 LIBEN Wire of copper-nickel alloys "cupro-nickel" or copper-nickel-zinc alloys "nickel silver" 01/01/1995 31/12/2500 -74082210 01/01/1988 31/12/1994 LIBEN Wire of copper-nickel base alloys 'cupro-nickel' 01/01/1988 31/12/1994 -74082290 01/01/1988 31/12/1994 LIBEN Wire of copper-nickel-zinc base alloys 'nickel silver' 01/01/1988 31/12/1994 -740829 01/01/1988 31/12/2500 LIBEN Wire of copper alloys (other than copper-zinc alloys [brass], copper-nickel alloys [cupro-nickel] or copper-nickel-zinc alloys [nickel silver]) 01/01/1988 31/12/2500 -74082900 01/01/1995 31/12/2500 LIBEN Wire of copper alloys (other than copper-zinc alloys [brass], copper-nickel alloys [cupro-nickel] or copper-nickel-zinc alloys [nickel silver]) 01/01/1995 31/12/2500 -74082910 01/01/1988 31/12/1994 LIBEN Wire of copper-zinc base alloys 'bronze' 01/01/1988 31/12/1994 -74082990 01/01/1988 31/12/1994 LIBEN Wire of copper alloys (excl. wire of copper-zinc base alloys 'brass', copper-zinc base alloys 'bronze', copper-nickel base alloys 'cupro-nickel' or copper-nickel-zinc base alloys 'nickel silver') 01/01/1988 31/12/1994 -7409 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of copper, of a thickness of > 0,15 mm (excl. expanded sheet and strip copper and electrically insulated strip) 01/01/1988 31/12/2500 -740911 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of refined copper, in coils, of a thickness of > 0,15 mm (excl. expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/2500 -74091100 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of refined copper, in coils, of a thickness of > 0,15 mm (excl. expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/2500 -740919 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of refined copper, not in coils, of a thickness of > 0,15 mm (excl. expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/2500 -74091900 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of refined copper, not in coils, of a thickness of > 0,15 mm (excl. expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/2500 -740921 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of copper-zinc base alloys "brass", of a thickness of > 0,15 mm, in coils (excl. expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/2500 -74092100 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of copper-zinc base alloys "brass", of a thickness of > 0,15 mm, in coils (excl. expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/2500 -740929 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of copper-zinc base alloys "brass", of a thickness of > 0,15 mm, not in coils (excl. expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/2500 -74092900 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of copper-zinc base alloys "brass", of a thickness of > 0,15 mm, not in coils (excl. expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/2500 -740931 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of copper-tin base alloys "bronze", of a thickness of > 0,15 mm, in coils (excl. expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/2500 -74093100 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of copper-tin base alloys "bronze", of a thickness of > 0,15 mm, in coils (excl. expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/2500 -740939 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of copper-tin base alloys "bronze", of a thickness of > 0,15 mm, not in coils (excl. expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/2500 -74093900 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of copper-tin base alloys "bronze", of a thickness of > 0,15 mm, not in coils (excl. expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/2500 -740940 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of copper-nickel base alloys "cupro-nickel" or copper-nickel-zinc base alloys "nickel silver", of a thickness of > 0,15 mm (excl. expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/2500 -74094000 01/01/2011 31/12/2500 LIBEN Plates, sheets and strip, of copper-nickel base alloys "cupro-nickel" or copper-nickel-zinc base alloys "nickel silver", of a thickness of > 0,15 mm (excl. expanded sheet and strip and electrically insulated strip) 01/01/2011 31/12/2500 -74094010 01/01/1995 31/12/2010 LIBEN Plates, sheets and strip, of copper-nickel alloys "cupro-nickel", having a thickness of > 0,15 mm (other than stretched plates, sheets and strip and electrically insulated strip) 01/01/1995 31/12/2010 -74094011 01/01/1988 31/12/1994 LIBEN Plates, sheets and strip, of copper-nickel base alloys 'cupro-nickel', of a thickness of > 0.15 mm, in coils (excl. expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/1994 -74094019 01/01/1988 31/12/1994 LIBEN Plates, sheets and strip, of copper-nickel base alloys 'cupro-nickel', of a thickness of > 0.15 mm, not in coils (excl. expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/1994 -74094090 01/01/1995 31/12/2010 LIBEN Plates, sheets and strip, of copper-nickel-zinc alloys "nickel silver", having a thickness of > 0,15 mm (other than stretched plates, sheets and strip and electrically insulated strip) 01/01/1995 31/12/2010 -74094091 01/01/1988 31/12/1994 LIBEN Plates, sheets and strip, of copper-nickel-zinc base alloys 'nickel silver', of a thickness of > 0.15 mm, in coils (excl. expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/1994 -74094099 01/01/1988 31/12/1994 LIBEN Plates, sheets and strip, of copper-nickel-zinc base alloys 'nickel silver', of a thickness of > 0.15 mm, not in coils (excl. expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/1994 -740990 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of copper alloys, of a thickness of > 0,15 mm (excl. copper-zinc base alloys "brass", copper-zinc base alloys "bronze", copper-nickel base alloys "cupro-nickel", copper-nickel-zinc base alloys "nickel silver", and expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/2500 -74099000 01/01/2000 31/12/2500 LIBEN Plates, sheets and strip, of copper alloys, of a thickness of > 0,15 mm (excl. copper-zinc base alloys "brass", copper-zinc base alloys "bronze", copper-nickel base alloys "cupro-nickel", copper-nickel-zinc base alloys "nickel silver", and expanded sheet and strip and electrically insulated strip) 01/01/2000 31/12/2500 -74099010 01/01/1988 31/12/1999 LIBEN Plates, sheets and strip, of copper alloys, of a thickness of > 0,15 mm, in coils (excl. copper-zinc base alloys "brass", copper-zinc base alloys "bronze", copper-nickel base alloys "cupro-nickel", copper-nickel-zinc base alloys "nickel silver", and expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/1999 -74099090 01/01/1988 31/12/1999 LIBEN Plates, sheets and strip, of copper alloys, of a thickness of > 0,15 mm, not in coils (excl. copper-zinc base alloys "brass", copper-zinc base alloys "bronze", copper-nickel base alloys "cupro-nickel", copper-nickel-zinc base alloys "nickel silver", and expanded sheet and strip and electrically insulated strip) 01/01/1988 31/12/1999 -7410 01/01/1988 31/12/2500 LIBEN Copper foil "whether or not printed or backed with paper, paperboard, plastics or similar backing materials", of a thickness "excl. any backing" of <= 0,15 mm (excl. stamping foils of heading 3212, metal yarns and metallised yarns and foil made up as christmas tree decorating material) 01/01/1988 31/12/2500 -741011 01/01/1988 31/12/2500 LIBEN Refined copper foil, not backed, of a thickness of <= 0,15 mm (excl. stamping foils of heading 3212, metal yarns and metallised yarns and foil made up as christmas tree decorating material) 01/01/1988 31/12/2500 -74101100 01/01/1988 31/12/2500 LIBEN Refined copper foil, not backed, of a thickness of <= 0,15 mm (excl. stamping foils of heading 3212, metal yarns and metallised yarns and foil made up as christmas tree decorating material) 01/01/1988 31/12/2500 -741012 01/01/1988 31/12/2500 LIBEN Copper alloy foil, not backed, of a thickness of <= 0,15 mm (excl. stamping foils of heading 3212, metal yarns and metallised yarns and foil made up as christmas tree decorating material) 01/01/1988 31/12/2500 -74101200 01/01/1988 31/12/2500 LIBEN Copper alloy foil, not backed, of a thickness of <= 0,15 mm (excl. stamping foils of heading 3212, metal yarns and metallised yarns and foil made up as christmas tree decorating material) 01/01/1988 31/12/2500 -741021 01/01/1988 31/12/2500 LIBEN Refined copper foil, backed, of a thickness "excl. any backing" of <= 0,15 mm (excl. stamping foils of heading 3212, metal yarns and metallised yarns and foil made up as christmas tree decorating material) 01/01/1988 31/12/2500 -74102100 01/01/1988 31/12/2500 LIBEN Refined copper foil, backed, of a thickness "excl. any backing" of <= 0,15 mm (excl. stamping foils of heading 3212, metal yarns and metallised yarns and foil made up as christmas tree decorating material) 01/01/1988 31/12/2500 -741022 01/01/1988 31/12/2500 LIBEN Copper alloy foil, backed, of a thickness "excl. any backing" of <= 0,15 mm (excl. stamping foils of heading 3212, metal yarns and metallised yarns and foil made up as christmas tree decorating material) 01/01/1988 31/12/2500 -74102200 01/01/1988 31/12/2500 LIBEN Copper alloy foil, backed, of a thickness "excl. any backing" of <= 0,15 mm (excl. stamping foils of heading 3212, metal yarns and metallised yarns and foil made up as christmas tree decorating material) 01/01/1988 31/12/2500 -7411 01/01/1988 31/12/2500 LIBEN Copper tubes and pipes 01/01/1988 31/12/2500 -741110 01/01/1988 31/12/2500 LIBEN Tubes and pipes of refined copper 01/01/1988 31/12/2500 -74111010 01/01/2011 31/12/2500 LIBEN Tubes and pipes of refined copper, straight 01/01/2011 31/12/2500 -74111011 01/01/1988 31/12/2010 LIBEN Tubes and pipes of refined copper, straight, of a wall thickness of > 0,6 mm 01/01/1988 31/12/2010 -74111019 01/01/1988 31/12/2010 LIBEN Tubes and pipes of refined copper, straight, of a wall thickness of <= 0,6 mm 01/01/1988 31/12/2010 -74111090 01/01/1988 31/12/2500 LIBEN Tubes and pipes of refined copper, in coils or otherwise bent 01/01/1988 31/12/2500 -741121 01/01/1988 31/12/2500 LIBEN Tubes and pipes of copper-zinc base alloys "brass" 01/01/1988 31/12/2500 -74112110 01/01/1988 31/12/2500 LIBEN Tubes and pipes of copper-zinc base alloys "brass", straight 01/01/1988 31/12/2500 -74112190 01/01/1988 31/12/2500 LIBEN Tubes and pipes of copper-zinc base alloys "brass", in coils or otherwise bent 01/01/1988 31/12/2500 -741122 01/01/1988 31/12/2500 LIBEN Tubes and pipes of copper-nickel base alloys "cupro-nickel" or copper-nickel-zinc base alloys "nickel silver" 01/01/1988 31/12/2500 -74112200 01/01/1995 31/12/2500 LIBEN Tubes and pipes of copper-nickel base alloys "cupro-nickel" or copper-nickel-zinc base alloys "nickel silver" 01/01/1995 31/12/2500 -74112210 01/01/1988 31/12/1994 LIBEN Tubes and pipes of copper-nickel base alloys 'cupro-nickel' or copper-nickel-zinc base alloys 'nickel silver', straight 01/01/1988 31/12/1994 -74112290 01/01/1988 31/12/1994 LIBEN Tubes and pipes of copper-nickel base alloys 'cupro-nickel' or copper-nickel-zinc base alloys 'nickel silver', in coils or otherwise bent 01/01/1988 31/12/1994 -741129 01/01/1988 31/12/2500 LIBEN Tubes and pipes of copper alloys (excl. copper-zinc base alloys "brass", copper-nickel base alloys "cupro-nickel" and copper-nickel-zinc base alloys "nickel silver") 01/01/1988 31/12/2500 -74112900 01/01/2000 31/12/2500 LIBEN Tubes and pipes of copper alloys (excl. copper-zinc base alloys "brass", copper-nickel base alloys "cupro-nickel" and copper-nickel-zinc base alloys "nickel silver") 01/01/2000 31/12/2500 -74112910 01/01/1988 31/12/1999 LIBEN Tubes and pipes of copper alloys, straight (excl. copper-zinc base alloys "brass", copper-nickel base alloys "cupro-nickel" and copper-nickel-zinc base alloys "nickel silver") 01/01/1988 31/12/1999 -74112990 01/01/1988 31/12/1999 LIBEN Tubes and pipes of copper alloys, in coils or otherwise bent (excl. copper-zinc base alloys "brass", copper-nickel base alloys "cupro-nickel" and copper-nickel-zinc base alloys "nickel silver") 01/01/1988 31/12/1999 -7412 01/01/1988 31/12/2500 LIBEN Copper tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/1988 31/12/2500 -741210 01/01/1988 31/12/2500 LIBEN Refined copper tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/1988 31/12/2500 -74121000 01/01/1988 31/12/2500 LIBEN Refined copper tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/1988 31/12/2500 -741220 01/01/1988 31/12/2500 LIBEN Copper alloy tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/1988 31/12/2500 -74122000 01/01/1988 31/12/2500 LIBEN Copper alloy tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/1988 31/12/2500 -7413 01/01/1988 31/12/2500 LIBEN Stranded wire, cables, plaited bands and the like, of copper (excl. electrically insulated products) 01/01/1988 31/12/2500 -741300 01/01/1988 31/12/2500 LIBEN Stranded wire, cables, plaited bands and the like, of copper (excl. electrically insulated products) 01/01/1988 31/12/2500 -74130000 01/01/2011 31/12/2500 LIBEN Stranded wire, cables, plaited bands and the like, of copper (excl. electrically insulated products) 01/01/2011 31/12/2500 -74130010 01/01/1988 31/12/2005 LIBEN Stranded wire, cables, plaited bands and the like, of copper, with fittings attached, for use in civil aircraft (excl. electrically insulated products) 01/01/1988 31/12/2005 -74130020 01/01/2006 31/12/2010 LIBEN Stranded wire, cables, plaited bands and the like, of refined copper (excl. electrically insulated products) 01/01/2006 31/12/2010 -74130080 01/01/2006 31/12/2010 LIBEN Stranded wire, cables, plaited bands and the like, of copper alloys (excl. electrically insulated products) 01/01/2006 31/12/2010 -74130091 01/01/1988 31/12/2005 LIBEN Stranded wire, cables, plaited bands and the like, of refined copper (excl. such products with fittings attached, for use in civil aircraft and electrically insulated products) 01/01/1988 31/12/2005 -74130099 01/01/1988 31/12/2005 LIBEN Stranded wire, cables, plaited bands and the like, of copper alloys (excl. such products with fittings attached, for use in civil aircraft and electrically insulated products) 01/01/1988 31/12/2005 -7414 01/01/1988 31/12/2006 LIBEN Cloth "incl. endless bands", grill and netting, of copper wire, and expanded metal, of copper (excl. cloth of metal fibres for clothing, lining and similar uses, flux-coated copper fabric for brazing, cloth, grill and netting made into hand sieves or machine parts) 01/01/1988 31/12/2006 -741410 01/01/1988 31/12/1995 LIBEN Endless bands, of copper, for machinery 01/01/1988 31/12/1995 -74141000 01/01/1988 31/12/1995 LIBEN Endless bands, of copper, for machinery 01/01/1988 31/12/1995 -741420 01/01/1996 31/12/2006 LIBEN Woven copper wire cloth, incl. endless (excl. woven products of metal fibres of a kind used for cladding, lining or similar purposes, cloth coated with flux for brazing, or made into hand sieves or machine parts) 01/01/1996 31/12/2006 -74142000 01/01/1996 31/12/2006 LIBEN Woven copper wire cloth, incl. endless (excl. woven products of metal fibres of a kind used for cladding, lining or similar purposes, cloth coated with flux for brazing, or made into hand sieves or machine parts) 01/01/1996 31/12/2006 -741490 01/01/1988 31/12/2006 LIBEN Grill and netting, of copper wire; expanded metal, of copper (excl. grill and netting made into hand sieves or machine parts) 01/01/1988 31/12/2006 -74149000 01/01/1988 31/12/1989 LIBEN Cloth 8 (excl. 7414.10-00); grill and netting, of copper wire ; expanded metal, of copper 01/01/1988 31/12/1989 -74149000 01/01/1996 31/12/2006 LIBEN Grill and netting, of copper wire; expanded metal, of copper (excl. grill and netting made into hand sieves or machine parts) 01/01/1996 31/12/2006 -74149010 01/01/1990 31/12/1995 LIBEN Woven copper wire cloth (excl. endless bands for machinery) 01/01/1990 31/12/1995 -74149090 01/01/1990 31/12/1995 LIBEN Grill and netting, of copper wire; expanded metal, of copper 01/01/1990 31/12/1995 -7415 01/01/1988 31/12/2500 LIBEN Nails, tacks, drawing pins, staples and similar articles, of copper or with shafts of iron or steel and heads of copper, screws, bolts, nuts, screw hooks, rivets, cotters, cotter pins, washers "incl. spring washers" and similar articles, of copper (excl. staples in strips, and lag screws, plugs, bungs and the like, threaded) 01/01/1988 31/12/2500 -741510 01/01/1988 31/12/2500 LIBEN Nails, tacks, drawing pins, staples and similar articles, of copper or with shafts of iron or steel and heads of copper (excl. staples in strips) 01/01/1988 31/12/2500 -74151000 01/01/1988 31/12/2500 LIBEN Nails, tacks, drawing pins, staples and similar articles, of copper or with shafts of iron or steel and heads of copper (excl. staples in strips) 01/01/1988 31/12/2500 -741521 01/01/1988 31/12/2500 LIBEN Washers, "incl. spring washers and spring lock washers", of copper 01/01/1988 31/12/2500 -74152100 01/01/1988 31/12/2500 LIBEN Washers, "incl. spring washers and spring lock washers", of copper 01/01/1988 31/12/2500 -741529 01/01/1988 31/12/2500 LIBEN Rivets, cotters, cotter pins and the like, not threaded, of copper (excl. spring washers and spring lock washers) 01/01/1988 31/12/2500 -74152900 01/01/1988 31/12/2500 LIBEN Rivets, cotters, cotter pins and the like, not threaded, of copper (excl. spring washers and spring lock washers) 01/01/1988 31/12/2500 -741531 01/01/1988 31/12/2001 LIBEN Screws for wood, of copper 01/01/1988 31/12/2001 -74153100 01/01/1988 31/12/2001 LIBEN Screws for wood, of copper 01/01/1988 31/12/2001 -741532 01/01/1988 31/12/2001 LIBEN Screws, bolts, nuts and similar articles, threaded, of copper (other than screw hooks, ring- and eyebolts, lag screws, plugs, bungs and the like, with screw thread and wood screws) 01/01/1988 31/12/2001 -74153200 01/01/1995 31/12/2001 LIBEN Screws, bolts, nuts and similar articles, threaded, of copper (other than screw hooks, ring- and eyebolts, lag screws, plugs, bungs and the like, with screw thread and wood screws) 01/01/1995 31/12/2001 -74153210 01/01/1988 31/12/1994 LIBEN Screws and bolts, with metal thread, whether or not with their nuts, of copper 01/01/1988 31/12/1994 -74153290 01/01/1988 31/12/1994 LIBEN Bolts, nuts and the like, threaded, of copper (excl. bolts with metal thread, screws, screw hooks, screw rings, lag screws, plugs, bungs and the like, threaded) 01/01/1988 31/12/1994 -741533 01/01/2002 31/12/2500 LIBEN Screws, bolts, nuts and similar articles, threaded, of copper (other than screw hooks, ring- and eyebolts, lag screws, plugs, bungs and the like, with screw thread) 01/01/2002 31/12/2500 -74153300 01/01/2002 31/12/2500 LIBEN Screws, bolts, nuts and similar articles, threaded, of copper (other than screw hooks, ring- and eyebolts, lag screws, plugs, bungs and the like, with screw thread) 01/01/2002 31/12/2500 -741539 01/01/1988 31/12/2500 LIBEN Screw hooks, screw rings and the like, threaded, of copper (excl. standard screws and bolts and nuts) 01/01/1988 31/12/2500 -74153900 01/01/1988 31/12/2500 LIBEN Screw hooks, screw rings and the like, threaded, of copper (excl. standard screws and bolts and nuts) 01/01/1988 31/12/2500 -7416 01/01/1988 31/12/2006 LIBEN Copper springs (excl. clock and watch springs, spring washers and other lock washers) 01/01/1988 31/12/2006 -741600 01/01/1988 31/12/2006 LIBEN Copper springs (excl. clock and watch springs, spring washers and other lock washers) 01/01/1988 31/12/2006 -74160000 01/01/1988 31/12/2006 LIBEN Copper springs (excl. clock and watch springs, spring washers and other lock washers) 01/01/1988 31/12/2006 -7417 01/01/1988 31/12/2006 LIBEN Cooking or heating apparatus of a kind used for domestic purposes, non-electric, and parts thereof, of copper (excl. hot water heaters and geysers) 01/01/1988 31/12/2006 -741700 01/01/1988 31/12/2006 LIBEN Cooking or heating apparatus of a kind used for domestic purposes, non-electric, and parts thereof, of copper (excl. hot water heaters and geysers) 01/01/1988 31/12/2006 -74170000 01/01/1988 31/12/2006 LIBEN Cooking or heating apparatus of a kind used for domestic purposes, non-electric, and parts thereof, of copper (excl. hot water heaters and geysers) 01/01/1988 31/12/2006 -7418 01/01/1988 31/12/2500 LIBEN Table, kitchen or other household articles, sanitary ware, and parts thereof, of copper; pot scourers and scouring or polishing pads, gloves and the like, of copper (excl. cans, boxes and similar containers of heading 7419, articles of the nature of a work implement, articles of cutlery, spoons, ladles, etc., ornamental articles, fittings) 01/01/1988 31/12/2500 -741810 01/01/1988 31/12/1995 LIBEN Table, kitchen or other household articles, parts thereof, of copper, incl. pot scourers and scouring or polishing pads, gloves and the like, of copper (excl. cooking and heating appliances of heading 7417, cans, boxes and similar containers of heading 7419, articles of the nature of a work implement, articles of cutlery, spoons, ladles, etc., ornamental articles and sanitary ware) 01/01/1988 31/12/1995 -741810 01/01/2012 31/12/2500 LIBEN Table, kitchen or other household articles and parts thereof, and pot scourers and scouring or polishing pads, gloves and the like, of copper (excl. cans, boxes and similar containers of heading 7419, articles of the nature of a work implement, articles of cutlery, spoons, ladles, etc., ornamental articles and sanitary ware) 01/01/2012 31/12/2500 -74181000 01/01/1988 31/12/1995 LIBEN Table, kitchen or other household articles, parts thereof, of copper, incl. pot scourers and scouring or polishing pads, gloves and the like, of copper (excl. cooking and heating appliances of heading 7417, cans, boxes and similar containers of heading 7419, articles of the nature of a work implement, articles of cutlery, spoons, ladles, etc., ornamental articles and sanitary ware) 01/01/1988 31/12/1995 -74181010 01/01/2012 31/12/2500 LIBEN Cooking or heating apparatus of a kind used for domestic purposes, non-electric, and parts thereof, of copper (excl. hot water heaters and geysers) 01/01/2012 31/12/2500 -74181090 01/01/2012 31/12/2500 LIBEN Table, kitchen or other household articles and parts thereof, of copper; pot scourers and scouring or polishing pads, gloves and the like, of copper (excl. non-electric cooking and heating appliances, cans, boxes and similar containers of heading 7419, articles of the nature of a work implement, articles of cutlery, spoons, ladles, etc., ornamental articles and sanitary ware) 01/01/2012 31/12/2500 -741811 01/01/1996 31/12/2011 LIBEN Pot scourers and scouring or polishing pads, gloves and the like, of copper (excl. sanitary ware) 01/01/1996 31/12/2011 -74181100 01/01/1996 31/12/2011 LIBEN Pot scourers and scouring or polishing pads, gloves and the like, of copper (excl. sanitary ware) 01/01/1996 31/12/2011 -741819 01/01/1996 31/12/2011 LIBEN Table, kitchen or other household articles, parts thereof, of copper (excl. pot scourers and scouring or polishing pads, gloves and the like, cans, boxes and similar containers of heading 7419, articles of the nature of a work implement, articles of cutlery, spoons, ladles, etc., ornamental articles and sanitary ware) 01/01/1996 31/12/2011 -74181900 01/01/1996 31/12/2006 LIBEN Table, kitchen or other household articles, parts thereof, of copper (excl. pot scourers and scouring or polishing pads, gloves and the like, cooking and heating appliances of heading 7417, cans, boxes and similar containers of heading 7419, articles of the nature of a work implement, articles of cutlery, spoons, ladles, etc., ornamental articles and sanitary ware) 01/01/1996 31/12/2006 -74181910 01/01/2007 31/12/2011 LIBEN Cooking or heating apparatus of a kind used for domestic purposes, non-electric, and parts thereof, of copper (excl. hot water heaters and geysers) 01/01/2007 31/12/2011 -74181990 01/01/2007 31/12/2011 LIBEN Table, kitchen or other household articles, parts thereof, of copper (excl. pot scourers and scouring or polishing pads, gloves and the like, non-electric cooking and heating appliances, cans, boxes and similar containers of heading 7419, articles of the nature of a work implement, articles of cutlery, spoons, ladles, etc., ornamental articles and sanitary ware) 01/01/2007 31/12/2011 -741820 01/01/1988 31/12/2500 LIBEN Sanitary ware and parts thereof, of copper (excl. cans, boxes and similar containers of heading 7419, and fittings) 01/01/1988 31/12/2500 -74182000 01/01/1988 31/12/2500 LIBEN Sanitary ware and parts thereof, of copper (excl. cans, boxes and similar containers of heading 7419, and fittings) 01/01/1988 31/12/2500 -7419 01/01/1988 31/12/2500 LIBEN Other articles of copper, n.e.s. 01/01/1988 31/12/2500 -741910 01/01/1988 31/12/2500 LIBEN Chain and parts thereof, of copper (excl. watch chains, necklace chains and the like) 01/01/1988 31/12/2500 -74191000 01/01/1988 31/12/2500 LIBEN Chain and parts thereof, of copper (excl. watch chains, necklace chains and the like) 01/01/1988 31/12/2500 -741991 01/01/1988 31/12/2500 LIBEN Articles of copper, cast, moulded, stamped or forged, but not further worked, n.e.s. 01/01/1988 31/12/2500 -74199100 01/01/1988 31/12/2500 LIBEN Articles of copper, cast, moulded, stamped or forged, but not further worked, n.e.s. 01/01/1988 31/12/2500 -741999 01/01/1988 31/12/2500 LIBEN Articles of copper, n.e.s. 01/01/1988 31/12/2500 -74199900 01/01/1988 31/12/2006 LIBEN Articles of copper, n.e.s. 01/01/1988 31/12/2006 -74199910 01/01/2007 31/12/2500 LIBEN Cloth "incl. endless bands", grill and netting, of copper wire of which the largest cross-sectional dimension <= 6  mm, and expanded metal, of copper (excl. cloth of metal fibres for clothing, lining and similar uses, flux-coated copper fabric for brazing, cloth, grill and netting made into hand sieves or machine parts) 01/01/2007 31/12/2500 -74199930 01/01/2007 31/12/2500 LIBEN Copper springs (excl. clock and watch springs, spring washers and other lock washers) 01/01/2007 31/12/2500 -74199990 01/01/2007 31/12/2500 LIBEN Articles of copper, n.e.s. 01/01/2007 31/12/2500 -74CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 74 01/01/2002 31/12/2500 -74CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 74 01/01/2002 31/12/2500 -74CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 74 01/01/2002 31/12/2500 -74MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -74MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -74MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -74SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 74 01/01/1988 31/12/2500 -74SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 74 and SITC section 0 01/01/1997 31/12/2001 -74SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 74 and SITC group 000 01/01/1997 31/12/2001 -74SSS2 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 74 and SITC section 2 01/01/1988 31/12/2500 -74SSS283 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 74 and SITC group 283 01/01/1988 31/12/2500 -74SSS288 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 74 and SITC group 288 01/01/1997 31/12/2500 -74SSS6 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 74 and SITC section 6 01/01/1988 31/12/2500 -74SSS682 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 74 and SITC group 682 01/01/1988 31/12/2500 -74SSS693 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 74 and SITC group 693 01/01/1997 31/12/2500 -74SSS694 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 74 and SITC group 694 01/01/1997 31/12/2500 -74SSS697 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 74 and SITC group 697 01/01/1997 31/12/2500 -74SSS699 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 74 and SITC group 699 01/01/1997 31/12/2500 -74SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 74 and SITC section 9 01/01/1988 31/12/1996 -74SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 74 and SITC section 9 01/01/1997 31/12/2500 -74SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 74 and SITC group 999 01/01/1988 31/12/1996 -74SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 74 and SITC group 999 01/01/1997 31/12/2500 -74VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 74 for the assembly of motor vehicles 01/01/1988 31/12/2500 -74VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 74 for the assembly of motor vehicles 01/01/1988 31/12/2500 -74VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 74 for the assembly of motor vehicles 01/01/1988 31/12/2500 -75 01/01/1988 31/12/2500 LIBEN NICKEL AND ARTICLES THEREOF 01/01/1988 31/12/2500 -7501 01/01/1988 31/12/2500 LIBEN Nickel mattes, nickel oxide sinters and other intermediate products of nickel metallurgy : 01/01/1988 31/12/2500 -750110 01/01/1988 31/12/2500 LIBEN Nickel mattes 01/01/1988 31/12/2500 -75011000 01/01/1988 31/12/2500 LIBEN Nickel mattes 01/01/1988 31/12/2500 -750120 01/01/1988 31/12/2500 LIBEN Nickel oxide sinters and other intermediate products of nickel metallurgy (excl. nickel mattes) 01/01/1988 31/12/2500 -75012000 01/01/1988 31/12/2500 LIBEN Nickel oxide sinters and other intermediate products of nickel metallurgy (excl. nickel mattes) 01/01/1988 31/12/2500 -7502 01/01/1988 31/12/2500 LIBEN Unwrought nickel 01/01/1988 31/12/2500 -750210 01/01/1988 31/12/2500 LIBEN Nickel, not alloyed, unwrought 01/01/1988 31/12/2500 -75021000 01/01/1988 31/12/2500 LIBEN Nickel, not alloyed, unwrought 01/01/1988 31/12/2500 -750220 01/01/1988 31/12/2500 LIBEN Unwrought nickel alloys 01/01/1988 31/12/2500 -75022000 01/01/1988 31/12/2500 LIBEN Unwrought nickel alloys 01/01/1988 31/12/2500 -7503 01/01/1988 31/12/2500 LIBEN Waste and scrap, of nickel (excl. ingots or other similar unwrought shapes, of remelted nickel waste and scrap, ashes and residues containing nickel and waste and scrap of primary cells, primary batteries and electric accumulators) 01/01/1988 31/12/2500 -750300 01/01/1988 31/12/2500 LIBEN Waste and scrap, of nickel (excl. ingots or other similar unwrought shapes, of remelted nickel waste and scrap, ashes and residues containing nickel and waste and scrap of primary cells, primary batteries and electric accumulators) 01/01/1988 31/12/2500 -75030010 01/01/1988 31/12/1995 LIBEN Waste and scrap, of non-alloy nickel (excl. ingots or other similar unwrought shapes, of remelted non-alloy nickel waste and scrap, ashes and residues containing non-alloy nickel) 01/01/1988 31/12/1995 -75030010 01/01/1996 31/12/2500 LIBEN Waste and scrap, of non-alloy nickel (excl. ingots or other similar unwrought shapes, of remelted non-alloy nickel waste and scrap, ashes and residues containing non-alloy nickel, waste and scrap of primary cells, primary batteries and electric accumulators) 01/01/1996 31/12/2500 -75030090 01/01/1988 31/12/2500 LIBEN Waste and scrap, of nickel alloys (excl. ingots or other similar unwrought shapes, of remelted nickel alloys waste and scrap, ashes and residues containing nickel alloys) 01/01/1988 31/12/2500 -7504 01/01/1988 31/12/2500 LIBEN Powders and flakes, of nickel (excl. nickel oxide sinters) 01/01/1988 31/12/2500 -750400 01/01/1988 31/12/2500 LIBEN Powders and flakes, of nickel (excl. nickel oxide sinters) 01/01/1988 31/12/2500 -75040000 01/01/1988 31/12/2500 LIBEN Powders and flakes, of nickel (excl. nickel oxide sinters) 01/01/1988 31/12/2500 -7505 01/01/1988 31/12/2500 LIBEN Bars, rods, profiles and wire, of nickel (excl. electrically insulated products) 01/01/1988 31/12/2500 -750511 01/01/1988 31/12/2500 LIBEN Bars, rods, profiles and wire, of non-alloy nickel, n.e.s. (excl. electrically insulated products) 01/01/1988 31/12/2500 -75051100 01/01/1988 31/12/2500 LIBEN Bars, rods, profiles and wire, of non-alloy nickel, n.e.s. (excl. electrically insulated products) 01/01/1988 31/12/2500 -750512 01/01/1988 31/12/2500 LIBEN Bars, rods, profiles and wire, of nickel alloys, n.e.s. (excl. electrically insulated products) 01/01/1988 31/12/2500 -75051200 01/01/1988 31/12/2500 LIBEN Bars, rods, profiles and wire, of nickel alloys, n.e.s. (excl. electrically insulated products) 01/01/1988 31/12/2500 -750521 01/01/1988 31/12/2500 LIBEN Wire of non-alloy nickel (excl. electrically insulated products) 01/01/1988 31/12/2500 -75052100 01/01/1988 31/12/2500 LIBEN Wire of non-alloy nickel (excl. electrically insulated products) 01/01/1988 31/12/2500 -750522 01/01/1988 31/12/2500 LIBEN Wire of nickel alloys (excl. electrically insulated products) 01/01/1988 31/12/2500 -75052200 01/01/1988 31/12/2500 LIBEN Wire of nickel alloys (excl. electrically insulated products) 01/01/1988 31/12/2500 -7506 01/01/1988 31/12/2500 LIBEN Plates, sheets, strip and foil, of nickel (excl. expanded plates, sheets or strip) 01/01/1988 31/12/2500 -750610 01/01/1988 31/12/2500 LIBEN Plates, sheets, strip and foil, of non-alloy nickel (excl. expanded plates, sheets or strip) 01/01/1988 31/12/2500 -75061000 01/01/1988 31/12/2500 LIBEN Plates, sheets, strip and foil, of non-alloy nickel (excl. expanded plates, sheets or strip) 01/01/1988 31/12/2500 -750620 01/01/1988 31/12/2500 LIBEN Plates, sheets, strip and foil, of nickel alloys (excl. expanded plates, sheets or strip) 01/01/1988 31/12/2500 -75062000 01/01/1988 31/12/2500 LIBEN Plates, sheets, strip and foil, of nickel alloys (excl. expanded plates, sheets or strip) 01/01/1988 31/12/2500 -7507 01/01/1988 31/12/2500 LIBEN Tubes, pipes and tube or pipe fittings "e.g., couplings, elbows, sleeves", of nickel 01/01/1988 31/12/2500 -750711 01/01/1988 31/12/2500 LIBEN Tubes and pipes of non-alloy nickel 01/01/1988 31/12/2500 -75071100 01/01/1988 31/12/2500 LIBEN Tubes and pipes of non-alloy nickel 01/01/1988 31/12/2500 -750712 01/01/1988 31/12/2500 LIBEN Tubes and pipes of nickel alloys 01/01/1988 31/12/2500 -75071200 01/01/1988 31/12/2500 LIBEN Tubes and pipes of nickel alloys 01/01/1988 31/12/2500 -750720 01/01/1988 31/12/2500 LIBEN Tube or pipe fittings, of nickel 01/01/1988 31/12/2500 -75072000 01/01/1988 31/12/2500 LIBEN Tube or pipe fittings, of nickel 01/01/1988 31/12/2500 -7508 01/01/1988 31/12/2500 LIBEN Articles of nickel, n.e.s. (excl. powder, flakes, bars, profiles, wire, plates, sheets, strip, foil, tubes, pipes and tube or pipe fittings) 01/01/1988 31/12/2500 -750800 01/01/1988 31/12/1995 LIBEN Articles of nickel, n.e.s. (excl. powder, flakes, bars, profiles, wire, plates, sheets, strip, foil, tubes, pipes and tube or pipe fittings) 01/01/1988 31/12/1995 -75080010 01/01/1988 31/12/1995 LIBEN Cloth, grill, netting and fencing, of nickel wire 01/01/1988 31/12/1995 -75080090 01/01/1988 31/12/1995 LIBEN Articles of nickel, n.e.s. 01/01/1988 31/12/1995 -750810 01/01/1996 31/12/2500 LIBEN Cloth, grill, netting and fencing, of nickel wire 01/01/1996 31/12/2500 -75081000 01/01/1996 31/12/2500 LIBEN Cloth, grill, netting and fencing, of nickel wire 01/01/1996 31/12/2500 -750890 01/01/1996 31/12/2500 LIBEN Articles of nickel, n.e.s. 01/01/1996 31/12/2500 -75089000 01/01/1996 31/12/2500 LIBEN Articles of nickel, n.e.s. 01/01/1996 31/12/2500 -75CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 75 01/01/2002 31/12/2500 -75CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 75 01/01/2002 31/12/2500 -75CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 75 01/01/2002 31/12/2500 -75MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -75MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -75MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -75SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 75 01/01/1988 31/12/2500 -75SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 75 and SITC section 0 01/01/1997 31/12/2001 -75SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 75 and SITC group 000 01/01/1997 31/12/2001 -75SSS2 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 75 and SITC section 2 01/01/1992 31/12/2500 -75SSS284 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 75 and SITC group 284 01/01/1997 31/12/2500 -75SSS288 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 75 and SITC group 288 01/01/1992 31/12/2500 -75SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 75 and SITC section 6 01/01/1997 31/12/2500 -75SSS683 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 75 and SITC group 683 01/01/1997 31/12/2500 -75SSS699 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 75 and SITC group 699 01/01/1997 31/12/2500 -75SSS6SS 01/01/2005 31/12/2500 LIBEN Confidential trade of chapter 75 and SITC section 6 01/01/2005 31/12/2500 -75SSS9 01/01/1988 31/12/1991 LIBEN Confidential trade of chapter 75 and SITC section 9 01/01/1988 31/12/1991 -75SSS9 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 75 and SITC section 9 01/01/1992 31/12/2500 -75SSS999 01/01/1988 31/12/1991 LIBEN Confidential trade of chapter 75 and SITC group 999 01/01/1988 31/12/1991 -75SSS999 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 75 and SITC group 999 01/01/1992 31/12/2500 -75VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 75 for the assembly of motor vehicles 01/01/1988 31/12/2500 -75VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 75 for the assembly of motor vehicles 01/01/1988 31/12/2500 -75VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 75 for the assembly of motor vehicles 01/01/1988 31/12/2500 -76 01/01/1988 31/12/2500 LIBEN ALUMINIUM AND ARTICLES THEREOF 01/01/1988 31/12/2500 -7601 01/01/1988 31/12/2500 LIBEN Unwrought aluminium 01/01/1988 31/12/2500 -760110 01/01/1988 31/12/2500 LIBEN Aluminium, not alloyed, unwrought 01/01/1988 31/12/2500 -76011000 01/01/1988 31/12/2500 LIBEN Aluminium, not alloyed, unwrought 01/01/1988 31/12/2500 -760120 01/01/1988 31/12/2500 LIBEN Unwrought aluminium alloys 01/01/1988 31/12/2500 -76012010 01/01/1988 31/12/2012 LIBEN Unwrought primary aluminium alloys 01/01/1988 31/12/2012 -76012020 01/01/2013 31/12/2500 LIBEN Unwrought aluminium alloys in the form of slabs or billets 01/01/2013 31/12/2500 -76012080 01/01/2013 31/12/2500 LIBEN Unwrought aluminium alloys (excl. slabs and billets) 01/01/2013 31/12/2500 -76012090 01/01/1988 31/12/1995 LIBEN Secondary aluminium, alloyed, unwrought 01/01/1988 31/12/1995 -76012091 01/01/1996 31/12/2012 LIBEN Unwrought secondary aluminium alloys, in ingots or in liquid state 01/01/1996 31/12/2012 -76012099 01/01/1996 31/12/2012 LIBEN Unwrought secondary aluminium alloys (excl. in ingots or in liquid state) 01/01/1996 31/12/2012 -7602 01/01/1988 31/12/2500 LIBEN Waste and scrap, of aluminium (excl. slags, scale and the like from iron and steel production, containing recoverable aluminium in the form of silicates, ingots or other similar unwrought shapes, of remelted waste and scrap, of aluminium, ashes and residues from aluminium production) 01/01/1988 31/12/2500 -760200 01/01/1988 31/12/2500 LIBEN Waste and scrap, of aluminium (excl. slags, scale and the like from iron and steel production, containing recoverable aluminium in the form of silicates, ingots or other similar unwrought shapes, of remelted waste and scrap, of aluminium, ashes and residues from aluminium production) 01/01/1988 31/12/2500 -76020011 01/01/1988 31/12/2500 LIBEN Turnings, shavings, chips, milling waste, sawdust and filings, of aluminium; waste of coloured, coated or bonded sheets and foil, of a thickness "excl. any backing" of <= 0,2 mm, of aluminium 01/01/1988 31/12/2500 -76020019 01/01/1988 31/12/2500 LIBEN Waste of aluminium, incl. faulty workpieces and workpieces which have become unusable in the course of production or processing (excl. slag, scale and other waste from the production of iron or steel, containing recyclable aluminium in the form of silicates, ingots and other primary forms, of smelted waste or scrap, of aluminium, ash or the residues of the production of aluminium, and waste in heading 7602.00.11) 01/01/1988 31/12/2500 -76020090 01/01/1988 31/12/2500 LIBEN Scrap of aluminium (excl. slags, scale and the like from iron and steel production, containing recoverable aluminium in the form of silicates, ingots or other similar unwrought shapes, of remelted waste and scrap, of aluminium, and ashes and residues from aluminium production) 01/01/1988 31/12/2500 -7603 01/01/1988 31/12/2500 LIBEN Powder and flakes, of aluminium (excl. pellets of aluminium, and spangles) 01/01/1988 31/12/2500 -760310 01/01/1988 31/12/2500 LIBEN Powders of aluminium, of non-lamellar structure (excl. pellets of aluminium) 01/01/1988 31/12/2500 -76031000 01/01/1988 31/12/2500 LIBEN Powders of aluminium, of non-lamellar structure (excl. pellets of aluminium) 01/01/1988 31/12/2500 -760320 01/01/1988 31/12/2500 LIBEN Powders of aluminium, of lamellar structure, and flakes of aluminium (excl. pellets of aluminium, and spangles) 01/01/1988 31/12/2500 -76032000 01/01/1988 31/12/2500 LIBEN Powders of aluminium, of lamellar structure, and flakes of aluminium (excl. pellets of aluminium, and spangles) 01/01/1988 31/12/2500 -7604 01/01/1988 31/12/2500 LIBEN Bars, rods and profiles, of aluminium, n.e.s. 01/01/1988 31/12/2500 -760410 01/01/1988 31/12/2500 LIBEN Bars, rods and profiles, of non-alloy aluminium, n.e.s. 01/01/1988 31/12/2500 -76041010 01/01/1988 31/12/2500 LIBEN Bars, rods and profiles, of non-alloy aluminium 01/01/1988 31/12/2500 -76041090 01/01/1988 31/12/2500 LIBEN Profiles of non-alloy aluminium, n.e.s. 01/01/1988 31/12/2500 -760421 01/01/1988 31/12/2500 LIBEN Hollow profiles of aluminium alloys, n.e.s. 01/01/1988 31/12/2500 -76042100 01/01/1988 31/12/2500 LIBEN Hollow profiles of aluminium alloys, n.e.s. 01/01/1988 31/12/2500 -760429 01/01/1988 31/12/2500 LIBEN Bars, rods and solid profiles, of aluminium alloys, n.e.s. 01/01/1988 31/12/2500 -76042910 01/01/1988 31/12/2500 LIBEN Bars and rods of aluminium alloys 01/01/1988 31/12/2500 -76042990 01/01/1988 31/12/2500 LIBEN Solid profiles, of aluminium alloys, n.e.s. 01/01/1988 31/12/2500 -7605 01/01/1988 31/12/2500 LIBEN Aluminium wire (excl. stranded wire, cables, plaited bands and the like and other articles of heading 7614, electrically insulated wires, and strings for musical instruments) 01/01/1988 31/12/2500 -760511 01/01/1988 31/12/2500 LIBEN Wire of non-alloy aluminium, with a maximum cross-sectional dimension of > 7 mm (excl. stranded wire, cables, plaited bands and the like and other articles of heading 7614, and electrically insulated wires) 01/01/1988 31/12/2500 -76051100 01/01/1988 31/12/2500 LIBEN Wire of non-alloy aluminium, with a maximum cross-sectional dimension of > 7 mm (excl. stranded wire, cables, plaited bands and the like and other articles of heading 7614, and electrically insulated wires) 01/01/1988 31/12/2500 -760519 01/01/1988 31/12/2500 LIBEN Wire of non-alloy aluminium, with a maximum cross-sectional dimension of <= 7 mm (other than stranded wires, cables, ropes and other articles of heading 7614, electrically insulated wires, strings for musical instruments) 01/01/1988 31/12/2500 -76051900 01/01/1995 31/12/2500 LIBEN Wire of non-alloy aluminium, with a maximum cross-sectional dimension of <= 7 mm (other than stranded wires, cables, ropes and other articles of heading 7614, electrically insulated wires, strings for musical instruments) 01/01/1995 31/12/2500 -76051910 01/01/1988 31/12/1994 LIBEN Wire of non-alloy aluminium, with a maximum cross-sectional dimension of =< 7 mm, containing by weight < 0.1 % silicon (excl. stranded wire, cables, plaited bands and the like and other articles of heading 7614, electrically insulated wires, and strings for musical instruments) 01/01/1988 31/12/1994 -76051990 01/01/1988 31/12/1994 LIBEN Wire of non-alloy aluminium, with a maximum cross-sectional dimension of =< 7 mm (excl. wire containing by weight < 0.1 % silicon, stranded wire, cables, plaited bands and the like and other articles of heading 7614, electrically insulated wires, and strings for musical instruments) 01/01/1988 31/12/1994 -760521 01/01/1988 31/12/2500 LIBEN Wire of aluminium alloys, with a maximum cross-sectional dimension of > 7 mm (excl. stranded wire, cables, plaited bands and the like and other articles of heading 7614, and electrically insulated wires) 01/01/1988 31/12/2500 -76052100 01/01/1988 31/12/2500 LIBEN Wire of aluminium alloys, with a maximum cross-sectional dimension of > 7 mm (excl. stranded wire, cables, plaited bands and the like and other articles of heading 7614, and electrically insulated wires) 01/01/1988 31/12/2500 -760529 01/01/1988 31/12/2500 LIBEN Wire, of aluminium alloys, having a maximum cross-sectional dimension of <= 7 mm (other than stranded wires, cables, ropes and other articles of heading 7614, electrically insulated wires, strings for musical instruments) 01/01/1988 31/12/2500 -76052900 01/01/1995 31/12/2500 LIBEN Wire, of aluminium alloys, having a maximum cross-sectional dimension of <= 7 mm (other than stranded wires, cables, ropes and other articles of heading 7614, electrically insulated wires, strings for musical instruments) 01/01/1995 31/12/2500 -76052910 01/01/1988 31/12/1994 LIBEN Wire of aluminium alloys, with a maximum cross-sectional dimension of =< 7 mm, containing by weight =< 0.9 % of silicon, =< 0.9 % of magnesium and =< 0.03 % of manganese (excl. stranded wire, cables, plaited bands and the like and other articles of heading 7614, electrically insulated wires, and strings for musical instruments) 01/01/1988 31/12/1994 -76052990 01/01/1988 31/12/1994 LIBEN Wire of aluminium alloys, with a maximum cross-sectional dimension of =< 7 mm (excl. such wire containing by weight =< 0.9 % of silicon, =< 0.9 % of magnesium and =< 0.03 % of manganese, stranded wire, cables, plaited bands and the like and other articles of heading 7614, electrically insulated wires, and strings for musical instruments) 01/01/1988 31/12/1994 -7606 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of aluminium, of a thickness of > 0,2 mm (excl. expanded plates, sheets and strip) 01/01/1988 31/12/2500 -760611 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of non-alloy aluminium, of a thickness of > 0,2 mm, square or rectangular (excl. expanded plates, sheets and strip) 01/01/1988 31/12/2500 -76061110 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of non-alloy aluminium, of a thickness of > 0,2 mm, square or rectangular, painted, varnished or coated with plastics 01/01/1988 31/12/2500 -76061191 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of non-alloy aluminium, of a thickness of > 0,2 mm but < 3 mm, square or rectangular (excl. such products painted, varnished or coated with plastics, and expanded plates, sheets and strip) 01/01/1988 31/12/2500 -76061193 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of non-alloy aluminium, of a thickness of >= 3 mm but < 6 mm, square or rectangular (excl. such products painted, varnished or coated with plastics) 01/01/1988 31/12/2500 -76061199 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of non-alloy aluminium, of a thickness of >= 6 mm, square or rectangular (excl. such products painted, varnished or coated with plastics) 01/01/1988 31/12/2500 -760612 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of aluminium alloys, of a thickness of > 0,2 mm, square or rectangular (excl. expanded plates, sheets and strip) 01/01/1988 31/12/2500 -76061210 01/01/1988 31/12/2010 LIBEN Strip of aluminium alloys, for venetian blinds 01/01/1988 31/12/2010 -76061211 01/01/2019 31/12/2500 LIBEN Beverage can body stock, of aluminium alloys, of a thickness of > 0,2 mm 01/01/2019 31/12/2500 -76061219 01/01/2019 31/12/2500 LIBEN Beverage can end stock and tab stock, of aluminium alloys, of a thickness of > 0,2 mm 01/01/2019 31/12/2500 -76061220 01/01/2011 31/12/2018 LIBEN Plates, sheets and strip, of aluminium alloys, of a thickness of > 0,2 mm, square or rectangular, painted, varnished or coated with plastics 01/01/2011 31/12/2018 -76061220 01/01/2019 31/12/2500 LIBEN Plates, sheets and strip, of aluminium alloys, of a thickness of > 0,2 mm, square or rectangular, painted, varnished or coated with plastics (excl. beverage can body stock, end stock and tab stock) 01/01/2019 31/12/2500 -76061250 01/01/1988 31/12/2010 LIBEN Plates, sheets and strip, of aluminium alloys, of a thickness of > 0,2 mm, square or rectangular, painted, varnished or coated with plastics (excl. strip for venetian blinds) 01/01/1988 31/12/2010 -76061291 01/01/1988 31/12/2010 LIBEN Plates, sheets and strip, of aluminium alloys, of a thickness of > 0,2 mm but < 3 mm, square or rectangular (excl. such products painted, varnished or coated with plastics, strip for venetian blinds, and expanded plates, sheets and strip) 01/01/1988 31/12/2010 -76061292 01/01/2011 31/12/2018 LIBEN Plates, sheets and strip, of aluminium alloys, of a thickness of > 0,2 mm but < 3 mm, square or rectangular (excl. painted, varnished or coated with plastics, expanded plates, sheets and strip) 01/01/2011 31/12/2018 -76061292 01/01/2019 31/12/2500 LIBEN Plates, sheets and strip, of aluminium alloys, of a thickness of > 0,2 mm but < 3 mm, square or rectangular (excl. painted, varnished or coated with plastics, expanded plates, sheets and strip, beverage can body stock, end stock and tab stock) 01/01/2019 31/12/2500 -76061293 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of aluminium alloys, of a thickness of >= 3 mm but < 6 mm, square or rectangular (excl. such products painted, varnished or coated with plastics) 01/01/1988 31/12/2500 -76061299 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of aluminium alloys, of a thickness of >= 6 mm, square or rectangular (excl. such products painted, varnished or coated with plastics) 01/01/1988 31/12/2500 -760691 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of non-alloy aluminium, of a thickness of > 0,2 mm (other than square or rectangular) 01/01/1988 31/12/2500 -76069100 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of non-alloy aluminium, of a thickness of > 0,2 mm (other than square or rectangular) 01/01/1988 31/12/2500 -760692 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of aluminium alloys, of a thickness of > 0,2 mm (other than square or rectangular) 01/01/1988 31/12/2500 -76069200 01/01/1988 31/12/2500 LIBEN Plates, sheets and strip, of aluminium alloys, of a thickness of > 0,2 mm (other than square or rectangular) 01/01/1988 31/12/2500 -7607 01/01/1988 31/12/2500 LIBEN Aluminium foil, "whether or not printed or backed with paper, paperboard, plastics or similar backing materials", of a thickness "excl. any backing" of <= 0,2 mm (excl. stamping foils of heading 3212, christmas tree decorating material) 01/01/1988 31/12/2500 -760711 01/01/1988 31/12/2500 LIBEN Aluminium foil, not backed, rolled but not further worked, of a thickness of <= 0,2 mm (excl. stamping foils of heading 3212, and foil made up as christmas tree decorating material) 01/01/1988 31/12/2500 -76071110 01/01/1988 31/12/2008 LIBEN Aluminium foil, not backed, rolled but not further worked, of a thickness of < 0,021 mm (excl. stamping foils of heading 3212, and foil made up as christmas tree decorating material) 01/01/1988 31/12/2008 -76071111 01/01/2009 31/12/2500 LIBEN Aluminium foil, not backed, rolled but not further worked, of a thickness of < 0,021 mm, in rolls of a weight of <= 10 kg (excl. stamping foils of heading 3212, and foil made up as christmas tree decorating material) 01/01/2009 31/12/2500 -76071119 01/01/2009 31/12/2500 LIBEN Aluminium foil, not backed, rolled but not further worked, of a thickness of < 0,021 mm (excl. stamping foils of heading 3212, and foil made up as christmas tree decorating material and in rolls of a weight <= 10 kg) 01/01/2009 31/12/2500 -76071190 01/01/1988 31/12/2500 LIBEN Aluminium foil, not backed, rolled but not further worked, of a thickness of >= 0,021 mm but <= 2 mm (excl. stamping foils of heading 3212, and foil made up as christmas tree decorating material) 01/01/1988 31/12/2500 -760719 01/01/1988 31/12/2500 LIBEN Aluminium foil, not backed, rolled and further worked, of a thickness of <= 2 mm (excl. stamping foils of heading 3212, and foil made up as christmas tree decorating material) 01/01/1988 31/12/2500 -76071910 01/01/1988 31/12/2500 LIBEN Aluminium foil, not backed, rolled and further worked, of a thickness of < 0,021 mm (excl. stamping foils of heading 3212, and foil made up as christmas tree decorating material) 01/01/1988 31/12/2500 -76071990 01/01/1988 31/12/1993 LIBEN Aluminium foil, not backed, rolled and worked, of a thickness of >= 0.021 mm but < 2 mm (excl. stamping foils of heading 3212, and foil made up as Christmas tree decorating material) 01/01/1988 31/12/1993 -76071990 01/01/2011 31/12/2500 LIBEN Aluminium foil, not backed, rolled and further worked, of a thickness (excl. any backing) from 0,021 mm to 0,2 mm (excl. stamping foils of heading 3212, and foil made up as christmas tree decorating material) 01/01/2011 31/12/2500 -76071991 01/01/1994 31/12/2010 LIBEN Aluminium foil, not backed, rolled and worked, of a thickness of >= 0,021 mm but <= 0,2 mm, self-adhesive (excl. stamping foils of heading 3212, and foil made up as christmas tree decorating material) 01/01/1994 31/12/2010 -76071999 01/01/1994 31/12/2010 LIBEN Aluminium foil, not backed, rolled and worked, of a thickness (excl. any backing) of >= 0,021 mm but <= 0,2 mm, not self-adhesive (excl. stamping foils of heading 3212, and foil made up as christmas tree decorating material) 01/01/1994 31/12/2010 -760720 01/01/1988 31/12/2500 LIBEN Aluminium foil, backed, of a thickness (excl. any backing) of <= 0,2 mm (excl. stamping foils of heading 3212, and foil made up as christmas tree decorating material) 01/01/1988 31/12/2500 -76072010 01/01/1988 31/12/2500 LIBEN Aluminium foil, backed, of a thickness (excl. any backing) of < 0,021 mm (excl. stamping foils of heading 3212, and foil made up as christmas tree decorating material) 01/01/1988 31/12/2500 -76072090 01/01/1988 31/12/1993 LIBEN Aluminium foil, backed, of a thickness 'excluding any backing' of >= 0.021 mm but < 2 mm (excl. stamping foils of heading 3212, and foil made up as Christmas tree decorating material) 01/01/1988 31/12/1993 -76072090 01/01/2011 31/12/2500 LIBEN Aluminium foil, backed, of a thickness (excl. any backing) of >= 0,021 mm but <= 0,2 mm (excl. stamping foils of heading 3212, and foil made up as christmas tree decorating material) 01/01/2011 31/12/2500 -76072091 01/01/1994 31/12/2010 LIBEN Aluminium foil, backed, rolled and worked, of a thickness (excl. any backing) of >= 0,021 mm but <= 0,2 mm, self-adhesive (excl. stamping foils of heading 3212, and foil made up as christmas tree decorating material) 01/01/1994 31/12/2010 -76072099 01/01/1994 31/12/2010 LIBEN Aluminium foil, backed, of a thickness (excl. any backing) of >= 0,021 mm but <= 0,2 mm, not self-adhesive (excl. stamping foils of heading 3212, and foil made up as christmas tree decorating material) 01/01/1994 31/12/2010 -7608 01/01/1988 31/12/2500 LIBEN Aluminium tubes and pipes (excl. hollow profiles) 01/01/1988 31/12/2500 -760810 01/01/1988 31/12/2500 LIBEN Tubes and pipes of non-alloy aluminium (excl. hollow profiles) 01/01/1988 31/12/2500 -76081000 01/01/2006 31/12/2500 LIBEN Tubes and pipes of non-alloy aluminium (excl. hollow profiles) 01/01/2006 31/12/2500 -76081010 01/01/1988 31/12/2005 LIBEN Tubes and pipes of non-alloy aluminium, suitable for gases or liquids, with attached fittings, for civil aircraft 01/01/1988 31/12/2005 -76081090 01/01/1995 31/12/2005 LIBEN Tubes and pipes of non-alloyed aluminium (other than for conducting gas or liquids, with attached fittings, for use in civil aircraft, and hollow sections) 01/01/1995 31/12/2005 -76081091 01/01/1988 31/12/1994 LIBEN Tubes and pipes of non-alloy aluminium, not further worked than extruded (excl. such products suitable for gases or liquids, with attached fittings, for civil aircraft, and hollow profiles) 01/01/1988 31/12/1994 -76081099 01/01/1988 31/12/1994 LIBEN Tubes and pipes of non-alloy aluminium (excl. such products not further worked than extruded, suitable for gases or liquids, with attached fittings, for civil aircraft, and hollow profiles) 01/01/1988 31/12/1994 -760820 01/01/1988 31/12/2500 LIBEN Tubes and pipes of aluminium alloys (excl. hollow profiles) 01/01/1988 31/12/2500 -76082010 01/01/1988 31/12/2005 LIBEN Tubes and pipes of aluminium alloys, suitable for gases or liquids, with attached fittings, for civil aircraft (excl. hollow profiles) 01/01/1988 31/12/2005 -76082020 01/01/2006 31/12/2500 LIBEN Tubes and pipes of aluminium alloys, welded (excl. hollow profiles) 01/01/2006 31/12/2500 -76082030 01/01/1988 31/12/2005 LIBEN Tubes and pipes of aluminium alloys, welded (excl. such products suitable for gases or liquids, with attached fittings, for civil aircraft, and hollow profiles) 01/01/1988 31/12/2005 -76082081 01/01/2006 31/12/2500 LIBEN Tubes and pipes of aluminium alloys, not further worked than extruded (excl. hollow profiles) 01/01/2006 31/12/2500 -76082089 01/01/2006 31/12/2500 LIBEN Tubes and pipes of aluminium alloys (excl. such products welded or not further worked than extruded, and hollow profiles) 01/01/2006 31/12/2500 -76082091 01/01/1988 31/12/2005 LIBEN Tubes and pipes of aluminium alloys, not further worked than extruded (excl. such products suitable for gases or liquids, with attached fittings, for civil aircraft, and hollow profiles) 01/01/1988 31/12/2005 -76082099 01/01/1988 31/12/2005 LIBEN Tubes and pipes of aluminium alloys (excl. such products welded or not further worked than extruded, suitable for gases or liquids, with attached fittings, for civil aircraft, and hollow profiles) 01/01/1988 31/12/2005 -7609 01/01/1988 31/12/2500 LIBEN Aluminium tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/1988 31/12/2500 -760900 01/01/1988 31/12/2500 LIBEN Aluminium tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/1988 31/12/2500 -76090000 01/01/1988 31/12/2500 LIBEN Aluminium tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/1988 31/12/2500 -7610 01/01/1988 31/12/2500 LIBEN Structures and parts of structures "e.g., bridges and bridge-sections, towers, lattice masts, pillars and columns, roofs, roofing frameworks, doors and windows and their frames and thresholds for doors, shutters, balustrades", of aluminium (excl. prefabricated buildings of heading 9406); plates, rods, profiles, tubes and the like, prepared for use in structures, of aluminium 01/01/1988 31/12/2500 -761010 01/01/1988 31/12/2500 LIBEN Doors, windows and their frames and thresholds for door, of aluminium (excl. door furniture) 01/01/1988 31/12/2500 -76101000 01/01/1988 31/12/2500 LIBEN Doors, windows and their frames and thresholds for door, of aluminium (excl. door furniture) 01/01/1988 31/12/2500 -761090 01/01/1988 31/12/2500 LIBEN Structures and parts of structures, of aluminium, n.e.s., and plates, rods, profiles, tubes and the like, prepared for use in structures, of aluminium, n.e.s. (excl. prefabricated buildings of heading 9406, doors and windows and their frames and thresholds for doors) 01/01/1988 31/12/2500 -76109010 01/01/1988 31/12/2500 LIBEN Bridges and bridge-sections, towers and lattice masts, of aluminium 01/01/1988 31/12/2500 -76109090 01/01/1988 31/12/2500 LIBEN Structures and parts of structures, of aluminium, n.e.s., and plates, rods, profiles, tubes and the like, prepared for use in structures, of aluminium, n.e.s. (excl. prefabricated buildings of heading 9406, doors and windows and their frames and thresholds for doors, bridges and bridge-sections, towers and lattice masts) 01/01/1988 31/12/2500 -7611 01/01/1988 31/12/2500 LIBEN Reservoirs, tanks, vats and similar containers, of aluminium, for any material (other than compressed or liquefied gas), of a capacity of > 300 l, not fitted with mechanical or thermal equipment, whether or not lined or heat-insulated (excl. containers specifically constructed or equipped for one or more types of transport) 01/01/1988 31/12/2500 -761100 01/01/1988 31/12/2500 LIBEN Reservoirs, tanks, vats and similar containers, of aluminium, for any material (other than compressed or liquefied gas), of a capacity of > 300 l, not fitted with mechanical or thermal equipment, whether or not lined or heat-insulated (excl. containers specifically constructed or equipped for one or more types of transport) 01/01/1988 31/12/2500 -76110000 01/01/1988 31/12/2500 LIBEN Reservoirs, tanks, vats and similar containers, of aluminium, for any material (other than compressed or liquefied gas), of a capacity of > 300 l, not fitted with mechanical or thermal equipment, whether or not lined or heat-insulated (excl. containers specifically constructed or equipped for one or more types of transport) 01/01/1988 31/12/2500 -7612 01/01/1988 31/12/2500 LIBEN Casks, drums, cans, boxes and similar containers, incl. rigid or collapsible tubular containers, of aluminium, for any material (other than compressed or liquefied gas), of a capacity of <= 300 l, not fitted with mechanical or thermal equipment, whether or not lined or heat-insulated, n.e.s. 01/01/1988 31/12/2500 -761210 01/01/1988 31/12/2500 LIBEN Collapsible tubular containers, of aluminium 01/01/1988 31/12/2500 -76121000 01/01/1988 31/12/2500 LIBEN Collapsible tubular containers, of aluminium 01/01/1988 31/12/2500 -761290 01/01/1988 31/12/2500 LIBEN Casks, drums, cans, boxes and similar containers, incl. rigid tubular containers, of aluminium, for any material (other than compressed or liquefied gas), of a capacity of <= 300 l, n.e.s. 01/01/1988 31/12/2500 -76129010 01/01/1988 31/12/2010 LIBEN Rigid tubular containers, of aluminium 01/01/1988 31/12/2010 -76129020 01/01/1995 31/12/2500 LIBEN Containers of a kind used for aerosols, of aluminium 01/01/1995 31/12/2500 -76129030 01/01/2014 31/12/2500 LIBEN Casks, drums, cans, boxes and similar containers, of aluminium, manufactured from foil of a thickness <= 0,2 mm 01/01/2014 31/12/2500 -76129080 01/01/2014 31/12/2500 LIBEN Casks, drums, cans, boxes and similar containers <= 300 l, of aluminium, for any material (other than compressed or liquefied gas), n.e.s. (other than collapsible tubular containers, containers for aerosols and containers manufactured from foil of a thickness <= 0,2 mm 01/01/2014 31/12/2500 -76129090 01/01/2011 31/12/2013 LIBEN Casks, drums, cans, boxes and similar containers, of aluminium, for any material (other than compressed or liquefied gas), n.e.s. (other than collapsible tubular containers and containers for aerosols) 01/01/2011 31/12/2013 -76129091 01/01/1988 31/12/2010 LIBEN Casks, drums, cans, boxes and similar containers, of aluminium, for any material (other than compressed or liquefied gas), of a capacity of >= 50 l but <= 300 l, n.e.s. 01/01/1988 31/12/2010 -76129098 01/01/1995 31/12/2010 LIBEN Casks, drums, cans, boxes and similar containers, of aluminium, for any material (other than compressed or liquefied gas), with a capacity of < 50 l, n.e.s. (other than collapsible tubular containers, rigid tubular containers and containers for aerosols) 01/01/1995 31/12/2010 -76129099 01/01/1988 31/12/1994 LIBEN Tanks, casks, drums, cans, boxes and similar containers, of aluminium, for any material 'other than compressed or liquefied gas', of a capacity of < 50 l, n.e.s. 01/01/1988 31/12/1994 -7613 01/01/1988 31/12/2500 LIBEN Aluminium containers for compressed or liquefied gas 01/01/1988 31/12/2500 -761300 01/01/1988 31/12/2500 LIBEN Aluminium containers for compressed or liquefied gas 01/01/1988 31/12/2500 -76130000 01/01/1988 31/12/2500 LIBEN Aluminium containers for compressed or liquefied gas 01/01/1988 31/12/2500 -7614 01/01/1988 31/12/2500 LIBEN Stranded wire, cables, plaited bands and the like, of aluminium (excl. such products electrically insulated) 01/01/1988 31/12/2500 -761410 01/01/1988 31/12/2500 LIBEN Stranded wire, cables, plaited bands and the like, of aluminium, with steel core (excl. such products electrically insulated) 01/01/1988 31/12/2500 -76141000 01/01/1988 31/12/2500 LIBEN Stranded wire, cables, plaited bands and the like, of aluminium, with steel core (excl. such products electrically insulated) 01/01/1988 31/12/2500 -761490 01/01/1988 31/12/2500 LIBEN Stranded wires, cables, ropes and similar articles, of aluminium (other than with steel core and electrically insulated products) 01/01/1988 31/12/2500 -76149000 01/01/1995 31/12/2500 LIBEN Stranded wires, cables, ropes and similar articles, of aluminium (other than with steel core and electrically insulated products) 01/01/1995 31/12/2500 -76149010 01/01/1988 31/12/1994 LIBEN Stranded wire, cables, plaited bands and the like, of non-alloy aluminium (excl. such products with steel core, and electrically insulated products) 01/01/1988 31/12/1994 -76149090 01/01/1988 31/12/1994 LIBEN Stranded wire, cables, plaited bands and the like, of aluminium alloys (excl. such products with steel core, and electrically insulated products) 01/01/1988 31/12/1994 -7615 01/01/1988 31/12/2500 LIBEN Table, kitchen or other household articles, sanitary ware, and parts thereof, of aluminium, pot scourers and scouring or polishing pads, gloves and the like, of aluminium (excl. cans, boxes and similar containers of heading 7612, articles of the nature of a work implement, spoons, ladles, forks and other articles of heading 8211 to 8215, ornamental articles and fittings) 01/01/1988 31/12/2500 -761510 01/01/1988 31/12/1995 LIBEN Table, kitchen or other household articles, parts thereof, of aluminium, incl. pot scourers and scouring or polishing pads, gloves and the like, of aluminium (excl. cans, boxes and similar containers of heading 7612, articles of the nature of a work implement, spoons, ladles, forks and other articles of headings 8211 to 8215, ornamental articles, fittings and sanitary ware) 01/01/1988 31/12/1995 -761510 01/01/2012 31/12/2500 LIBEN Table, kitchen or other household articles and parts thereof, and pot scourers and scouring or polishing pads, gloves and the like, of aluminium (excl. cans, boxes and similar containers of heading 7612, articles of the nature of a work implement, spoons, ladles, forks and other articles of heading 8211 to 8215, ornamental articles, fittings and sanitary ware) 01/01/2012 31/12/2500 -76151010 01/01/1988 31/12/1995 LIBEN Table, kitchen or other household articles, parts thereof, of aluminium, cast (excl. cans, boxes and similar containers of heading 7612, articles of the nature of a work implement, spoons, ladles and other articles of headings 8211 to 8215, ornamental articles, fittings and sanitary ware) 01/01/1988 31/12/1995 -76151010 01/01/2012 31/12/2500 LIBEN Table, kitchen or other household articles and parts thereof, and pot scourers and scouring or polishing pads, gloves and the like, of cast aluminium (excl. cans, boxes and similar containers of heading 7612, articles of the nature of a work implement, spoons, ladles, forks and other articles of heading 8211 to 8215, ornamental articles, fittings and sanitary ware) 01/01/2012 31/12/2500 -76151030 01/01/2014 31/12/2500 LIBEN Table, kitchen or other household articles and parts thereof, of aluminium, manufactured from foil of a thickness <= 0,2 mm (excl. cans, boxes and similar containers of heading 7612) 01/01/2014 31/12/2500 -76151080 01/01/2014 31/12/2500 LIBEN Table, kitchen or other household articles and parts thereof, and pot scourers and scouring or polishing pads, gloves and the like, of uncast aluminium (excl. cans, boxes and similar containers of heading 7612, articles manufactured from foil of a thickness <= 0,2 mm, articles of the nature of a work implement, spoons, ladles, forks and other articles of heading 8211 to 8215, ornamental articles, fittings and sanitary ware) 01/01/2014 31/12/2500 -76151090 01/01/1988 31/12/1995 LIBEN Table, kitchen or other household articles, parts thereof, of aluminium, not cast, incl. pot scourers and scouring or polishing pads, gloves and the like, of aluminium (excl. cans, boxes and similar containers of heading 7612, articles of the nature of a work implement, spoons, ladles, forks and other articles of headings 8211 to 8215, ornamental articles, fittings and sanitary ware) 01/01/1988 31/12/1995 -76151090 01/01/2012 31/12/2013 LIBEN Table, kitchen or other household articles and parts thereof, and pot scourers and scouring or polishing pads, gloves and the like, of uncast aluminium (excl. cans, boxes and similar containers of heading 7612, articles of the nature of a work implement, 01/01/2012 31/12/2013 -761511 01/01/1996 31/12/2011 LIBEN Pot scourers and scouring or polishing pads, gloves and the like, of aluminium (excl. sanitary ware) 01/01/1996 31/12/2011 -76151100 01/01/1996 31/12/2011 LIBEN Pot scourers and scouring or polishing pads, gloves and the like, of aluminium (excl. sanitary ware) 01/01/1996 31/12/2011 -761519 01/01/1996 31/12/2011 LIBEN Table, kitchen or other household articles, parts thereof, of aluminium (excl. pot scourers and scouring or polishing pads, gloves and the like, cans, boxes and similar containers of heading 7612, articles of the nature of a work implement, spoons, ladles, forks and other articles of heading 8211 to 8215, ornamental articles, fittings and sanitary ware) 01/01/1996 31/12/2011 -76151910 01/01/1996 31/12/2011 LIBEN Table, kitchen or other household articles, parts thereof, of aluminium, cast (excl. cans, boxes and similar containers of heading 7612, articles of the nature of a work implement, spoons, ladles and other articles of heading 8211 to 8215, ornamental articles, fittings and sanitary ware) 01/01/1996 31/12/2011 -76151990 01/01/1996 31/12/2011 LIBEN Table, kitchen or other household articles, parts thereof, of aluminium, uncast (excl. pot scourers and scouring or polishing pads, gloves and the like, of aluminium, cans, boxes and similar containers of heading 7612, articles of the nature of a work implement, spoons, ladles, forks and other articles of heading 8211 to 8215, ornamental articles, fittings and sanitary ware) 01/01/1996 31/12/2011 -761520 01/01/1988 31/12/2500 LIBEN Sanitary ware and parts thereof, of aluminium (excl. cans, boxes and similar containers of heading 7612, and fittings) 01/01/1988 31/12/2500 -76152000 01/01/1988 31/12/2500 LIBEN Sanitary ware and parts thereof, of aluminium (excl. cans, boxes and similar containers of heading 7612, and fittings) 01/01/1988 31/12/2500 -7616 01/01/1988 31/12/2500 LIBEN Articles of aluminium, n.e.s. 01/01/1988 31/12/2500 -761610 01/01/1988 31/12/2500 LIBEN Nails, tacks, staples, screws, bolts, nuts, screw hooks, rivets, cotters, cotter pins, washers and similar articles, of aluminium (excl. staples in strips, plugs, bungs and the like, threaded) 01/01/1988 31/12/2500 -76161000 01/01/1988 31/12/2500 LIBEN Nails, tacks, staples, screws, bolts, nuts, screw hooks, rivets, cotters, cotter pins, washers and similar articles, of aluminium (excl. staples in strips, plugs, bungs and the like, threaded) 01/01/1988 31/12/2500 -761690 01/01/1988 31/12/1995 LIBEN Articles of aluminium, n.e.s. 01/01/1988 31/12/1995 -76169010 01/01/1988 31/12/1995 LIBEN Knitting needles and crochet hooks, of aluminium 01/01/1988 31/12/1995 -76169030 01/01/1988 31/12/1995 LIBEN Cloth, grill, netting and fencing, of aluminium (excl. cloth of metal fibres for clothing, lining and similar uses, flux-coated copper fabric for brazing, cloth, grill and netting made into hand sieves or machine parts) 01/01/1988 31/12/1995 -76169091 01/01/1988 31/12/1995 LIBEN Articles of aluminium, cast, n.e.s. 01/01/1988 31/12/1995 -76169099 01/01/1988 31/12/1995 LIBEN Articles of aluminium, n.e.s. 01/01/1988 31/12/1995 -761691 01/01/1996 31/12/2500 LIBEN Cloth, grill, netting and fencing, of aluminium wire (excl. cloth of metal fibres for clothing, lining and similar uses, and cloth, grill and netting made into hand sieves or machine parts) 01/01/1996 31/12/2500 -76169100 01/01/1996 31/12/2500 LIBEN Cloth, grill, netting and fencing, of aluminium wire (excl. cloth of metal fibres for clothing, lining and similar uses, and cloth, grill and netting made into hand sieves or machine parts) 01/01/1996 31/12/2500 -761699 01/01/1996 31/12/2500 LIBEN Articles of aluminium, n.e.s. 01/01/1996 31/12/2500 -76169910 01/01/1996 31/12/2500 LIBEN Articles of aluminium, cast, n.e.s. 01/01/1996 31/12/2500 -76169990 01/01/1996 31/12/2016 LIBEN Articles of aluminium, uncast, n.e.s. 01/01/1996 31/12/2016 -76169990 01/01/2017 31/12/2500 LIBEN Articles of aluminium, uncast, n.e.s. 01/01/2017 31/12/2500 -76CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 76 01/01/2002 31/12/2500 -76CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 76 01/01/2002 31/12/2500 -76CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 76 01/01/2002 31/12/2500 -76II 01/01/1988 31/12/2500 LIBEN Components of complete industrial plants of chapter 76 01/01/1988 31/12/2500 -76III0 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 76; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -76III0 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 76 01/01/2006 31/12/2500 -76III000 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 76; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -76III000 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 76 01/01/2006 31/12/2500 -76III1 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 76; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -76III100 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 76; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -76III2 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 76; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/2005 -76III200 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 76; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/2005 -76III3 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 76; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -76III300 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 76; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -76III4 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 76; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -76III4 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of chapter 76; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/2001 31/12/2005 -76III400 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 76; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -76III400 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of chapter 76; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/2001 31/12/2005 -76III5 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 76; food, drink and tobacco industry 01/01/1988 31/12/1992 -76III500 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 76; food, drink and tobacco industry 01/01/1988 31/12/1992 -76III6 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 76; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -76III600 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 76; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -76III7 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 76; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -76III700 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 76; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -76III8 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 76; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/1992 -76III8 01/01/1998 31/12/2005 LIBEN Component of complete industrial plants of chapter 76; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1998 31/12/2005 -76III800 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 76; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/1992 -76III800 01/01/1998 31/12/2005 LIBEN Components of complete industrial plants of chapter 76; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1998 31/12/2005 -76III9 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 76; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -76III900 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 76; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -76MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -76MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -76MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -76SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 76 01/01/1988 31/12/2500 -76SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 76 and SITC section 0 01/01/1997 31/12/2001 -76SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 76 and SITC group 000 01/01/1997 31/12/2001 -76SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 76 and SITC section 2 01/01/1997 31/12/2500 -76SSS288 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 76 and SITC group 288 01/01/1997 31/12/2500 -76SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 76 and SITC section 6 01/01/1997 31/12/2500 -76SSS684 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 76 and SITC group 684 01/01/1997 31/12/2500 -76SSS691 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 76 and SITC group 691 01/01/1997 31/12/2500 -76SSS692 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 76 and SITC group 692 01/01/1997 31/12/2500 -76SSS693 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 76 and SITC group 693 01/01/1997 31/12/2500 -76SSS694 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 76 and SITC group 694 01/01/1997 31/12/2500 -76SSS697 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 76 and SITC group 697 01/01/1997 31/12/2500 -76SSS699 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 76 and SITC group 699 01/01/1997 31/12/2500 -76SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 76 and SITC section 9 01/01/1988 31/12/1996 -76SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 76 and SITC section 9 01/01/1997 31/12/2500 -76SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 76 and SITC group 999 01/01/1988 31/12/1996 -76SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 76 and SITC group 999 01/01/1997 31/12/2500 -76VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 76 for the assembly of motor vehicles 01/01/1988 31/12/2500 -76VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 76 for the assembly of motor vehicles 01/01/1988 31/12/2500 -76VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 76 for the assembly of motor vehicles 01/01/1988 31/12/2500 -78 01/01/1988 31/12/2500 LIBEN LEAD AND ARTICLES THEREOF 01/01/1988 31/12/2500 -7801 01/01/1988 31/12/2500 LIBEN Unwrought lead : 01/01/1988 31/12/2500 -780110 01/01/1988 31/12/2500 LIBEN Unwrought lead, refined 01/01/1988 31/12/2500 -78011000 01/01/1988 31/12/2500 LIBEN Unwrought lead, refined 01/01/1988 31/12/2500 -780191 01/01/1988 31/12/2500 LIBEN Unwrought lead, containing by weight antimony as the principal other element 01/01/1988 31/12/2500 -78019100 01/01/1988 31/12/2500 LIBEN Unwrought lead, containing by weight antimony as the principal other element 01/01/1988 31/12/2500 -780199 01/01/1988 31/12/2500 LIBEN Unwrought lead (excl. refined lead and lead containing by weight antimony as the principal other element) 01/01/1988 31/12/2500 -78019910 01/01/1988 31/12/2500 LIBEN Unwrought lead, containing by weight >= 0,02% of silver, for refining "bullion lead" 01/01/1988 31/12/2500 -78019990 01/01/2011 31/12/2500 LIBEN Unwrought lead (excl. lead containing by weight antimony as the principal other element, lead for refining containing by weight >= 0,02% of silver (bullion lead) and refined lead) 01/01/2011 31/12/2500 -78019991 01/01/1988 31/12/2010 LIBEN Unwrought lead alloys (excl. lead containing by weight antimony as the principal other element, and lead containing by weight >= 0,02% of silver, for refining "bullion lead") 01/01/1988 31/12/2010 -78019999 01/01/1988 31/12/2010 LIBEN Unwrought lead (excl. lead containing by weight antimony as the principal other element, and lead containing by weight >= 0,02% of silver, for refining "bullion lead", lead alloys and refined lead) 01/01/1988 31/12/2010 -7802 01/01/1988 31/12/2500 LIBEN Lead waste and scrap (excl. ashes and residues from lead production "heading No 2620", and ingots or other similar unwrought shapes, of remelted waste and scrap, of lead "heading No 7801" and waste and scrap of primary cells, primary batteries et electric accumulators) 01/01/1988 31/12/2500 -780200 01/01/1988 31/12/2500 LIBEN Lead waste and scrap (excl. ashes and residues from lead production "heading No 2620", and ingots or other similar unwrought shapes, of remelted waste and scrap, of lead "heading No 7801" and waste and scrap of primary cells, primary batteries et electric accumulators) 01/01/1988 31/12/2500 -78020000 01/01/1996 31/12/2500 LIBEN Lead waste and scrap (excl. ashes and residues from lead production "heading No 2620", and ingots or other similar unwrought shapes, of remelted waste and scrap, of lead "heading No 7801" and waste and scrap of primary cells, primary batteries et electric accumulators) 01/01/1996 31/12/2500 -78020010 01/01/1988 31/12/1995 LIBEN Waste and scrap, of lead, from accumulators 01/01/1988 31/12/1995 -78020090 01/01/1988 31/12/1995 LIBEN Waste and scrap, of lead (excl. ashes and residues from lead production "heading 2620", ingots and other similar unwrought shapes, of remelted waste and scrap, of lead "heading 7801", and waste and scrap, from accumulators 01/01/1988 31/12/1995 -7803 01/01/1988 31/12/2006 LIBEN Lead bars, rods, profiles and wire, n.e.s. 01/01/1988 31/12/2006 -780300 01/01/1988 31/12/2006 LIBEN Lead bars, rods, profiles and wire, n.e.s. 01/01/1988 31/12/2006 -78030000 01/01/1988 31/12/2006 LIBEN Lead bars, rods, profiles and wire, n.e.s. 01/01/1988 31/12/2006 -7804 01/01/1988 31/12/2500 LIBEN Lead plates, sheets, strip and foil; lead powders and flakes (excl. grains of lead, and spangles of heading 8308) 01/01/1988 31/12/2500 -780411 01/01/1988 31/12/2500 LIBEN Lead sheets, strip and foil, of a thickness "excl. any backing" of <= 0,2 mm 01/01/1988 31/12/2500 -78041100 01/01/1988 31/12/2500 LIBEN Lead sheets, strip and foil, of a thickness "excl. any backing" of <= 0,2 mm 01/01/1988 31/12/2500 -780419 01/01/1988 31/12/2500 LIBEN Lead plates; lead sheets, strip and foil, of a thickness "excl. any backing" of > 0,2 mm 01/01/1988 31/12/2500 -78041900 01/01/1988 31/12/2500 LIBEN Lead plates; lead sheets, strip and foil, of a thickness "excl. any backing" of > 0,2 mm 01/01/1988 31/12/2500 -780420 01/01/1988 31/12/2500 LIBEN Lead powders and flakes (excl. grains of lead, and spangles of heading 8308) 01/01/1988 31/12/2500 -78042000 01/01/1988 31/12/2500 LIBEN Lead powders and flakes (excl. grains of lead, and spangles of heading 8308) 01/01/1988 31/12/2500 -7805 01/01/1988 31/12/2006 LIBEN Lead tubes, pipes and tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/1988 31/12/2006 -780500 01/01/1988 31/12/2006 LIBEN Lead tubes, pipes and tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/1988 31/12/2006 -78050000 01/01/1988 31/12/2006 LIBEN Lead tubes, pipes and tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/1988 31/12/2006 -7806 01/01/1988 31/12/2500 LIBEN Articles of lead, n.e.s. 01/01/1988 31/12/2500 -780600 01/01/1988 31/12/2500 LIBEN Articles of lead, n.e.s. 01/01/1988 31/12/2500 -78060010 01/01/1988 31/12/2500 LIBEN Containers with an anti-radiation lead covering, for the transport or storage of radioactive materials [Euratom] (excl. containers specifically constructed or equipped for one or more types of transport) 01/01/1988 31/12/2500 -78060030 01/01/2007 31/12/2010 LIBEN Lead bars, rods, profiles and wire, n.e.s. 01/01/2007 31/12/2010 -78060050 01/01/2007 31/12/2010 LIBEN Lead tubes, pipes and tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/2007 31/12/2010 -78060080 01/01/2011 31/12/2500 LIBEN Articles of lead, n.e.s. 01/01/2011 31/12/2500 -78060090 01/01/1988 31/12/2010 LIBEN Articles of lead, n.e.s. 01/01/1988 31/12/2010 -78CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 78 01/01/2002 31/12/2500 -78CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 78 01/01/2002 31/12/2500 -78CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 78 01/01/2002 31/12/2500 -78MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -78MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -78MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -78SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 78 01/01/1988 31/12/2500 -78SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 78 and SITC section 0 01/01/1997 31/12/2001 -78SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 78 and SITC group 000 01/01/1997 31/12/2001 -78SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 78 and SITC section 2 01/01/1997 31/12/2500 -78SSS288 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 78 and SITC group 288 01/01/1997 31/12/2500 -78SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 78 and SITC section 6 01/01/1997 31/12/2500 -78SSS685 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 78 and SITC group 685 01/01/1997 31/12/2500 -78SSS699 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 78 and SITC group 699 01/01/1997 31/12/2500 -78SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 78 and SITC section 9 01/01/1988 31/12/1996 -78SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 78 and SITC section 9 01/01/1997 31/12/2500 -78SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 78 and SITC group 999 01/01/1988 31/12/1996 -78SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 78 and SITC group 999 01/01/1997 31/12/2500 -79 01/01/1988 31/12/2500 LIBEN ZINC AND ARTICLES THEREOF 01/01/1988 31/12/2500 -7901 01/01/1988 31/12/2500 LIBEN Unwrought zinc : 01/01/1988 31/12/2500 -790111 01/01/1988 31/12/2500 LIBEN Unwrought zinc, not alloyed, containing by weight >= 99,99% of zinc 01/01/1988 31/12/2500 -79011100 01/01/1988 31/12/2500 LIBEN Unwrought zinc, not alloyed, containing by weight >= 99,99% of zinc 01/01/1988 31/12/2500 -790112 01/01/1988 31/12/2500 LIBEN Unwrought zinc, not alloyed, containing by weight < 99,99% of zinc 01/01/1988 31/12/2500 -79011210 01/01/1988 31/12/2500 LIBEN Unwrought zinc, not alloyed, containing by weight >= 99,95% but < 99,99% of zinc 01/01/1988 31/12/2500 -79011230 01/01/1988 31/12/2500 LIBEN Unwrought zinc, not alloyed, containing by weight >= 98,5% but < 99,95% of zinc 01/01/1988 31/12/2500 -79011290 01/01/1988 31/12/2500 LIBEN Unwrought zinc, not alloyed, containing by weight >= 97,5% but < 98,95% of zinc 01/01/1988 31/12/2500 -790120 01/01/1988 31/12/2500 LIBEN Unwrought zinc alloys 01/01/1988 31/12/2500 -79012000 01/01/1988 31/12/2500 LIBEN Unwrought zinc alloys 01/01/1988 31/12/2500 -7902 01/01/1988 31/12/2500 LIBEN Zinc waste and scrap (excl. ash and residues from zinc production "heading 2620", ingots and other similar unwrought shapes, of remelted waste and scrap, of zinc "heading 7901" and waste and scrap of primary cells, primary batteries and electric accumulators) 01/01/1988 31/12/2500 -790200 01/01/1988 31/12/2500 LIBEN Zinc waste and scrap (excl. ash and residues from zinc production "heading 2620", ingots and other similar unwrought shapes, of remelted waste and scrap, of zinc "heading 7901" and waste and scrap of primary cells, primary batteries and electric accumulators) 01/01/1988 31/12/2500 -79020000 01/01/1988 31/12/1995 LIBEN Waste and scrap of zinc (excl. ash abd residues from zinc production "heading 2620", ingots and other similar unwrought shapes, of remelted waste and scrap, of zinc "heading 7901") 01/01/1988 31/12/1995 -79020000 01/01/1996 31/12/2500 LIBEN Zinc waste and scrap (excl. ash and residues from zinc production "heading 2620", ingots and other similar unwrought shapes, of remelted waste and scrap, of zinc "heading 7901" and waste and scrap of primary cells, primary batteries and electric accumulators) 01/01/1996 31/12/2500 -7903 01/01/1988 31/12/2500 LIBEN Zinc dust, powders and flakes (excl. grains of zinc, and spangles of heading 8308) 01/01/1988 31/12/2500 -790310 01/01/1988 31/12/2500 LIBEN Zinc dust 01/01/1988 31/12/2500 -79031000 01/01/1988 31/12/2500 LIBEN Zinc dust 01/01/1988 31/12/2500 -790390 01/01/1988 31/12/2500 LIBEN Zinc powders and flakes (excl. grains of zinc, and spangles of heading 8308, and zinc dust) 01/01/1988 31/12/2500 -79039000 01/01/1988 31/12/2500 LIBEN Zinc powders and flakes (excl. grains of zinc, and spangles of heading 8308, and zinc dust) 01/01/1988 31/12/2500 -7904 01/01/1988 31/12/2500 LIBEN Zinc bars, rods, profiles and wire, n.e.s. 01/01/1988 31/12/2500 -790400 01/01/1988 31/12/2500 LIBEN Zinc bars, rods, profiles and wire, n.e.s. 01/01/1988 31/12/2500 -79040000 01/01/1988 31/12/2500 LIBEN Zinc bars, rods, profiles and wire, n.e.s. 01/01/1988 31/12/2500 -7904S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7904 and SITC section 6 01/01/1997 31/12/2500 -7904S686 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 7904 and SITC group 686 01/01/1997 31/12/2500 -7904S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 7904 and SITC section 9 01/01/2002 31/12/2500 -7904S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 7904 and SITC group 999 01/01/2002 31/12/2500 -7905 01/01/1988 31/12/2500 LIBEN Zinc plates, sheets, strip and foil 01/01/1988 31/12/2500 -790500 01/01/1988 31/12/2500 LIBEN Zinc plates, sheets, strip and foil 01/01/1988 31/12/2500 -79050000 01/01/1995 31/12/2500 LIBEN Zinc plates, sheets, strip and foil 01/01/1995 31/12/2500 -79050011 01/01/1988 31/12/1994 LIBEN Plates, sheets, strip and foil, of zinc, not surface-worked, of a thickness of < 5 mm 01/01/1988 31/12/1994 -79050019 01/01/1988 31/12/1994 LIBEN Plates, sheets, strip and foil, of zinc, not surface-worked, of a thickness of >= 5 mm 01/01/1988 31/12/1994 -79050090 01/01/1988 31/12/1994 LIBEN Plates, sheets, strip and foil, of zinc, not surface-worked 01/01/1988 31/12/1994 -7905S6 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 7905 and SITC section 6 01/01/2001 31/12/2500 -7905S686 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 7905 and SITC group 686 01/01/2001 31/12/2500 -7905S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 7905 and SITC section 9 01/01/2002 31/12/2500 -7905S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 7905 and SITC group 999 01/01/2002 31/12/2500 -7906 01/01/1988 31/12/2006 LIBEN Zinc tubes, pipes and tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/1988 31/12/2006 -790600 01/01/1988 31/12/2006 LIBEN Zinc tubes, pipes and tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/1988 31/12/2006 -79060000 01/01/1988 31/12/2006 LIBEN Zinc tubes, pipes and tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/1988 31/12/2006 -7907 01/01/1988 31/12/2500 LIBEN Articles of zinc, n.e.s. 01/01/1988 31/12/2500 -790700 01/01/1996 31/12/2500 LIBEN Articles of zinc, n.e.s. 01/01/1996 31/12/2500 -79070000 01/01/1996 31/12/2006 LIBEN Articles of zinc, n.e.s. 01/01/1996 31/12/2006 -79070000 01/01/2011 31/12/2500 LIBEN Articles of zinc, n.e.s. 01/01/2011 31/12/2500 -79070010 01/01/2007 31/12/2010 LIBEN Zinc tubes, pipes and tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/2007 31/12/2010 -79070090 01/01/2007 31/12/2010 LIBEN Articles of zinc, n.e.s. 01/01/2007 31/12/2010 -790710 01/01/1988 31/12/1995 LIBEN Gutters, roof capping, skylight frames and other fabricated building components, of zinc 01/01/1988 31/12/1995 -79071000 01/01/1988 31/12/1995 LIBEN Gutters, roof capping, skylight frames and other fabricated building components, of zinc 01/01/1988 31/12/1995 -790790 01/01/1988 31/12/1995 LIBEN Articles of zinc, n.e.s. 01/01/1988 31/12/1995 -79079000 01/01/1988 31/12/1995 LIBEN Articles of zinc, n.e.s. 01/01/1988 31/12/1995 -79CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 79 01/01/2002 31/12/2500 -79CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 79 01/01/2002 31/12/2500 -79CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 79 01/01/2002 31/12/2500 -79MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -79MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -79MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -79SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 79 01/01/1988 31/12/2500 -79SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 79 and SITC section 0 01/01/1997 31/12/2001 -79SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 79 and SITC group 000 01/01/1997 31/12/2001 -79SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 79 and SITC section 2 01/01/1997 31/12/2500 -79SSS288 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 79 and SITC group 288 01/01/1997 31/12/2500 -79SSS6 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 79 and SITC section 6 01/01/1993 31/12/2500 -79SSS686 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 79 and SITC group 686 01/01/1993 31/12/2500 -79SSS699 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 79 and SITC group 699 01/01/1993 31/12/2500 -79SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 79 and SITC section 9 01/01/1988 31/12/1996 -79SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 79 and SITC section 9 01/01/1997 31/12/2500 -79SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 79 and SITC group 999 01/01/1988 31/12/1996 -79SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 79 and SITC group 999 01/01/1997 31/12/2500 -80 01/01/1988 31/12/2500 LIBEN TIN AND ARTICLES THEREOF 01/01/1988 31/12/2500 -8001 01/01/1988 31/12/2500 LIBEN Unwrought tin 01/01/1988 31/12/2500 -800110 01/01/1988 31/12/2500 LIBEN Unwrought tin, not alloyed 01/01/1988 31/12/2500 -80011000 01/01/1988 31/12/2500 LIBEN Unwrought tin, not alloyed 01/01/1988 31/12/2500 -800120 01/01/1988 31/12/2500 LIBEN Unwrought tin alloys 01/01/1988 31/12/2500 -80012000 01/01/1988 31/12/2500 LIBEN Unwrought tin alloys 01/01/1988 31/12/2500 -8002 01/01/1988 31/12/2500 LIBEN Tin waste and scrap (excl. ash and residues from the manufacture of tin of heading 2620, and ingots and similar unwrought tin produced from melted tin waste and scrap of heading 8001) 01/01/1988 31/12/2500 -800200 01/01/1988 31/12/2500 LIBEN Tin waste and scrap (excl. ash and residues from the manufacture of tin of heading 2620, and ingots and similar unwrought tin produced from melted tin waste and scrap of heading 8001) 01/01/1988 31/12/2500 -80020000 01/01/1988 31/12/2500 LIBEN Tin waste and scrap (excl. ash and residues from the manufacture of tin of heading 2620, and ingots and similar unwrought tin produced from melted tin waste and scrap of heading 8001) 01/01/1988 31/12/2500 -8003 01/01/1988 31/12/2500 LIBEN Tin bars, rods, profiles and wire, n.e.s. 01/01/1988 31/12/2500 -800300 01/01/1988 31/12/2500 LIBEN Tin bars, rods, profiles and wire, n.e.s. 01/01/1988 31/12/2500 -80030000 01/01/1988 31/12/2500 LIBEN Tin bars, rods, profiles and wire, n.e.s. 01/01/1988 31/12/2500 -8004 01/01/1988 31/12/2006 LIBEN Tin plates, sheets and strip, of a thickness of > 0,2 mm 01/01/1988 31/12/2006 -800400 01/01/1988 31/12/2006 LIBEN Tin plates, sheets and strip, of a thickness of > 0,2 mm 01/01/1988 31/12/2006 -80040000 01/01/1988 31/12/2006 LIBEN Tin plates, sheets and strip, of a thickness of > 0,2 mm 01/01/1988 31/12/2006 -8005 01/01/1988 31/12/2006 LIBEN Tin foil of a thickness "without any backing" <= 0,2 mm, whether or not printed or backed with paper, paperboard, plastics or similar backing materials; tin powders and flakes (excl. tin granules and spangles of heading 8308) 01/01/1988 31/12/2006 -800500 01/01/1996 31/12/2006 LIBEN Tin foil of a thickness "without any backing" <= 0,2 mm, whether or not printed or backed with paper, paperboard, plastics or similar backing materials; tin powders and flakes (excl. tin granules and spangles of heading 8308) 01/01/1996 31/12/2006 -80050000 01/01/2000 31/12/2006 LIBEN Tin foil of a thickness "without any backing" <= 0,2 mm, whether or not printed or backed with paper, paperboard, plastics or similar backing materials; tin powders and flakes (excl. tin granules and spangles of heading 8308) 01/01/2000 31/12/2006 -80050010 01/01/1996 31/12/1999 LIBEN Tin foil of a thickness (excluding any backing) <= 0,2 mm 01/01/1996 31/12/1999 -80050020 01/01/1996 31/12/1999 LIBEN Tin powders and flakes (excl. tin granules and spangles of heading 8308) 01/01/1996 31/12/1999 -800510 01/01/1988 31/12/1995 LIBEN Tin foil of a thickness <= 0,2 mm excl. any backing 01/01/1988 31/12/1995 -80051000 01/01/1988 31/12/1995 LIBEN Tin foil of a thickness <= 0,2 mm excl. any backing 01/01/1988 31/12/1995 -800520 01/01/1988 31/12/1995 LIBEN Powders and flakes of tin (excl. tin granules and spangles of heading 8308) 01/01/1988 31/12/1995 -80052000 01/01/1988 31/12/1995 LIBEN Powders and flakes of tin (excl. tin granules and spangles of heading 8308) 01/01/1988 31/12/1995 -8006 01/01/1988 31/12/2006 LIBEN Tin tubes, pipes and tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/1988 31/12/2006 -800600 01/01/1988 31/12/2006 LIBEN Tin tubes, pipes and tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/1988 31/12/2006 -80060000 01/01/1988 31/12/2006 LIBEN Tin tubes, pipes and tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/1988 31/12/2006 -8007 01/01/1988 31/12/2500 LIBEN Articles of tin, n.e.s. 01/01/1988 31/12/2500 -800700 01/01/1988 31/12/2500 LIBEN Articles of tin, n.e.s. 01/01/1988 31/12/2500 -80070000 01/01/1988 31/12/2006 LIBEN Articles of tin, n.e.s. 01/01/1988 31/12/2006 -80070010 01/01/2007 31/12/2500 LIBEN Tin plates, sheets and strip, of a thickness of > 0,2 mm 01/01/2007 31/12/2500 -80070030 01/01/2007 31/12/2010 LIBEN Tin foil of a thickness "without any backing" <= 0,2 mm, whether or not printed or backed with paper, paperboard, plastics or similar backing materials; tin powders and flakes (excl. tin granules and spangles of heading 8308) 01/01/2007 31/12/2010 -80070050 01/01/2007 31/12/2010 LIBEN Tin tubes, pipes and tube or pipe fittings "e.g., couplings, elbows, sleeves" 01/01/2007 31/12/2010 -80070080 01/01/2011 31/12/2500 LIBEN Articles of tin, n.e.s. 01/01/2011 31/12/2500 -80070090 01/01/2007 31/12/2010 LIBEN Articles of tin, n.e.s. 01/01/2007 31/12/2010 -80CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 80 01/01/2002 31/12/2500 -80CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 80 01/01/2002 31/12/2500 -80CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 80 01/01/2002 31/12/2500 -80MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -80MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -80MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -80SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 80 01/01/1988 31/12/2500 -80SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 80 and SITC section 0 01/01/1997 31/12/2001 -80SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 80 and SITC group 000 01/01/1997 31/12/2001 -80SSS2 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 80 and SITC section 2 01/01/1997 31/12/2500 -80SSS288 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 80 and SITC group 288 01/01/1997 31/12/2500 -80SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 80 and SITC section 6 01/01/1997 31/12/2500 -80SSS687 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 80 and SITC group 687 01/01/1997 31/12/2500 -80SSS699 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 80 and SITC group 699 01/01/1997 31/12/2500 -80SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 80 and SITC section 9 01/01/1988 31/12/1996 -80SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 80 and SITC section 9 01/01/1997 31/12/2500 -80SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 80 and SITC group 999 01/01/1988 31/12/1996 -80SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 80 and SITC group 999 01/01/1997 31/12/2500 -81 01/01/1988 31/12/2500 LIBEN OTHER BASE METALS; CERMETS; ARTICLES THEREOF 01/01/1988 31/12/2500 -8101 01/01/1988 31/12/2500 LIBEN Tungsten "wolfram" and articles thereof, n.e.s.; tungsten waste and scrap (excl. ash and residues containing tungsten) 01/01/1988 31/12/2500 -810110 01/01/1988 31/12/2500 LIBEN Tungsten powders 01/01/1988 31/12/2500 -81011000 01/01/1988 31/12/2500 LIBEN Tungsten powders 01/01/1988 31/12/2500 -810191 01/01/1988 31/12/2001 LIBEN Unwrought tungsten, incl. bars and rods of tungsten obtained simply by sintering; tungsten waste and scrap (excl. ash and residues containing tungsten) 01/01/1988 31/12/2001 -81019110 01/01/1988 31/12/2001 LIBEN Unwrought tungsten, incl. bars and rods of tungsten obtained simply by sintering 01/01/1988 31/12/2001 -81019190 01/01/1988 31/12/2001 LIBEN Tungsten waste and scrap (excl. ash and residues containing tungsten) 01/01/1988 31/12/2001 -810192 01/01/1988 31/12/2001 LIBEN Tungsten bars and rods (other than those obtained simply by sintering), profiles, plates, sheets, strip and foil, n.e.s. 01/01/1988 31/12/2001 -81019200 01/01/1988 31/12/2001 LIBEN Tungsten bars and rods (other than those obtained simply by sintering), profiles, plates, sheets, strip and foil, n.e.s. 01/01/1988 31/12/2001 -810193 01/01/1988 31/12/2001 LIBEN Tungsten wire 01/01/1988 31/12/2001 -81019300 01/01/1988 31/12/2001 LIBEN Tungsten wire 01/01/1988 31/12/2001 -810194 01/01/2002 31/12/2500 LIBEN Unwrought tungsten, incl. bars and rods of tungsten obtained simply by sintering 01/01/2002 31/12/2500 -81019400 01/01/2002 31/12/2500 LIBEN Unwrought tungsten, incl. bars and rods of tungsten obtained simply by sintering 01/01/2002 31/12/2500 -810195 01/01/2002 31/12/2006 LIBEN Tungsten bars and rods (other than those obtained simply by sintering), profiles, plates, sheets, strip and foil, n.e.s. 01/01/2002 31/12/2006 -81019500 01/01/2002 31/12/2006 LIBEN Tungsten bars and rods (other than those obtained simply by sintering), profiles, plates, sheets, strip and foil, n.e.s. 01/01/2002 31/12/2006 -810196 01/01/2002 31/12/2500 LIBEN Tungsten wire 01/01/2002 31/12/2500 -81019600 01/01/2002 31/12/2500 LIBEN Tungsten wire 01/01/2002 31/12/2500 -810197 01/01/2002 31/12/2500 LIBEN Tungsten waste and scrap (excl. ash and residues containing tungsten) 01/01/2002 31/12/2500 -81019700 01/01/2002 31/12/2500 LIBEN Tungsten waste and scrap (excl. ash and residues containing tungsten) 01/01/2002 31/12/2500 -810199 01/01/1988 31/12/2500 LIBEN Articles of tungsten, n.e.s. 01/01/1988 31/12/2500 -81019900 01/01/1988 31/12/2006 LIBEN Articles of tungsten, n.e.s. 01/01/1988 31/12/2006 -81019910 01/01/2007 31/12/2500 LIBEN Tungsten bars and rods (other than those obtained simply by sintering), profiles, plates, sheets, strip and foil, n.e.s. 01/01/2007 31/12/2500 -81019990 01/01/2007 31/12/2500 LIBEN Articles of tungsten, n.e.s. 01/01/2007 31/12/2500 -8101S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8101 and SITC section 6 01/01/1997 31/12/2500 -8101S689 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8101 and SITC group 689 01/01/1997 31/12/2500 -8101S699 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8101 and SITC group 699 01/01/1997 31/12/2500 -8102 01/01/1988 31/12/2500 LIBEN Molybdenum and articles thereof, n.e.s.; molybdenum waste and scrap (excl. ash and residues containing molybdenum) 01/01/1988 31/12/2500 -810210 01/01/1988 31/12/2500 LIBEN Molybdenum powders 01/01/1988 31/12/2500 -81021000 01/01/1988 31/12/2500 LIBEN Molybdenum powders 01/01/1988 31/12/2500 -810291 01/01/1988 31/12/2001 LIBEN Unwrought molybdenum, incl. bars and rods obtained simply by sintering; molybdenum waste and scrap (excl. ash and residues containing molybdenum) 01/01/1988 31/12/2001 -81029110 01/01/1988 31/12/2001 LIBEN Unwrought molybdenum, incl. bars and rods obtained simply by sintering 01/01/1988 31/12/2001 -81029190 01/01/1988 31/12/2001 LIBEN Molybdenum waste and scrap (excl. ash and residues containing molybdenum) 01/01/1988 31/12/2001 -810292 01/01/1988 31/12/2001 LIBEN Molybdenum bars and rods (other than those obtained simply by sintering), profiles, plates, sheets, strip and foil, n.e.s. 01/01/1988 31/12/2001 -81029200 01/01/1988 31/12/2001 LIBEN Molybdenum bars and rods (other than those obtained simply by sintering), profiles, plates, sheets, strip and foil, n.e.s. 01/01/1988 31/12/2001 -810293 01/01/1988 31/12/2001 LIBEN Molybdenum wire 01/01/1988 31/12/2001 -81029300 01/01/1988 31/12/2001 LIBEN Molybdenum wire 01/01/1988 31/12/2001 -810294 01/01/2002 31/12/2500 LIBEN Unwrought molybdenum, incl. bars and rods obtained simply by sintering 01/01/2002 31/12/2500 -81029400 01/01/2002 31/12/2500 LIBEN Unwrought molybdenum, incl. bars and rods obtained simply by sintering 01/01/2002 31/12/2500 -810295 01/01/2002 31/12/2500 LIBEN Molybdenum bars and rods (other than those obtained simply by sintering), profiles, plates, sheets, strip and foil, n.e.s. 01/01/2002 31/12/2500 -81029500 01/01/2002 31/12/2500 LIBEN Molybdenum bars and rods (other than those obtained simply by sintering), profiles, plates, sheets, strip and foil, n.e.s. 01/01/2002 31/12/2500 -810296 01/01/2002 31/12/2500 LIBEN Molybdenum wire 01/01/2002 31/12/2500 -81029600 01/01/2002 31/12/2500 LIBEN Molybdenum wire 01/01/2002 31/12/2500 -810297 01/01/2002 31/12/2500 LIBEN Molybdenum waste and scrap (excl. ash and residues containing molybdenum) 01/01/2002 31/12/2500 -81029700 01/01/2002 31/12/2500 LIBEN Molybdenum waste and scrap (excl. ash and residues containing molybdenum) 01/01/2002 31/12/2500 -810299 01/01/1988 31/12/2500 LIBEN Articles of molybdenum, n.e.s. 01/01/1988 31/12/2500 -81029900 01/01/1988 31/12/2500 LIBEN Articles of molybdenum, n.e.s. 01/01/1988 31/12/2500 -8102S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8102 and SITC section 6 01/01/1997 31/12/2500 -8102S689 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8102 and SITC group 689 01/01/1997 31/12/2500 -8102S699 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8102 and SITC group 699 01/01/1997 31/12/2500 -8103 01/01/1988 31/12/2500 LIBEN Tantalum and articles thereof, n.e.s.; tantalum waste and scrap (excl. ash and residues containing tantalum) 01/01/1988 31/12/2500 -810310 01/01/1988 31/12/2001 LIBEN Unwrought tantalium, incl. bars and rods of tantalium obtained simply by sintering; tantalium powders; tantalium waste and scrap (excl. ash and residues containing tantalium) 01/01/1988 31/12/2001 -81031010 01/01/1988 31/12/2001 LIBEN Unwrought tantalium, incl. bars and rods of tantalium obtained simply by sintering; tantalium powders 01/01/1988 31/12/2001 -81031090 01/01/1988 31/12/2001 LIBEN Tantalium waste and scrap (excl. ash and residues containing tantalium) 01/01/1988 31/12/2001 -810320 01/01/2002 31/12/2500 LIBEN Unwrought tantalum, incl. bars and rods of tantalum obtained simply by sintering; tantalum powders 01/01/2002 31/12/2500 -81032000 01/01/2002 31/12/2500 LIBEN Unwrought tantalum, incl. bars and rods of tantalum obtained simply by sintering; tantalum powders 01/01/2002 31/12/2500 -810330 01/01/2002 31/12/2500 LIBEN Tantalum waste and scrap (excl. ash and residues containing tantalum) 01/01/2002 31/12/2500 -81033000 01/01/2002 31/12/2500 LIBEN Tantalum waste and scrap (excl. ash and residues containing tantalum) 01/01/2002 31/12/2500 -810390 01/01/1988 31/12/2500 LIBEN Articles of tantalum, n.e.s. 01/01/1988 31/12/2500 -81039010 01/01/1988 31/12/2500 LIBEN Tantalum bars and rods (other than those obtained simply by sintering), profiles, wire, plates, sheets, strip and foil, n.e.s. 01/01/1988 31/12/2500 -81039090 01/01/1988 31/12/2500 LIBEN Articles of tantalum, n.e.s. 01/01/1988 31/12/2500 -8103S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8103 and SITC section 6 01/01/1997 31/12/2500 -8103S689 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8103 and SITC group 689 01/01/1997 31/12/2500 -8103S699 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8103 and SITC group 699 01/01/1997 31/12/2500 -8104 01/01/1988 31/12/2500 LIBEN Magnesium and articles thereof, n.e.s.; magnesium waste and scrap (excl. ash and residues containing magnesium) 01/01/1988 31/12/2500 -810411 01/01/1988 31/12/2500 LIBEN Unwrought magnesium, containing >= 99,8% by weight of magnesium 01/01/1988 31/12/2500 -81041100 01/01/1988 31/12/2500 LIBEN Unwrought magnesium, containing >= 99,8% by weight of magnesium 01/01/1988 31/12/2500 -810419 01/01/1988 31/12/2500 LIBEN Unwrought magnesium, containing < 99,8% by weight of magnesium 01/01/1988 31/12/2500 -81041900 01/01/1988 31/12/2500 LIBEN Unwrought magnesium, containing < 99,8% by weight of magnesium 01/01/1988 31/12/2500 -810420 01/01/1988 31/12/2500 LIBEN Magnesium waste and scrap (excl. ash and residues containing magnesium, and raspings, turnings and granules graded according to size) 01/01/1988 31/12/2500 -81042000 01/01/1988 31/12/2500 LIBEN Magnesium waste and scrap (excl. ash and residues containing magnesium, and raspings, turnings and granules graded according to size) 01/01/1988 31/12/2500 -810430 01/01/1988 31/12/2500 LIBEN Magnesium raspings, turnings and granules, graded according to size; magnesium powders 01/01/1988 31/12/2500 -81043000 01/01/1988 31/12/2500 LIBEN Magnesium raspings, turnings and granules, graded according to size; magnesium powders 01/01/1988 31/12/2500 -810490 01/01/1988 31/12/2500 LIBEN Articles of magnesium, n.e.s. 01/01/1988 31/12/2500 -81049000 01/01/1995 31/12/2500 LIBEN Articles of magnesium, n.e.s. 01/01/1995 31/12/2500 -81049010 01/01/1988 31/12/1994 LIBEN Magnesium bars, rods, profiles, wire, plates, sheets, strip, foil, tubes and pipes n.e.s. 01/01/1988 31/12/1994 -81049090 01/01/1988 31/12/1994 LIBEN Articles of magnesium n.e.s. 01/01/1988 31/12/1994 -8105 01/01/1988 31/12/2500 LIBEN Cobalt mattes and other intermediate products of cobalt metallurgy; cobalt and articles thereof, n.e.s.; cobalt waste and scrap (excl. ash and residues containing cobalt) 01/01/1988 31/12/2500 -810510 01/01/1988 31/12/2001 LIBEN Cobalt mattes and other intermediate products of cobalt metallurgy; unwrought cobalt; cobalt powders; cobalt waste and scrap (excl. ash and residues containing cobalt) 01/01/1988 31/12/2001 -81051010 01/01/1988 31/12/2001 LIBEN Cobalt mattes and other intermediate products of cobalt metallurgy; unwrought cobalt; cobalt powders 01/01/1988 31/12/2001 -81051090 01/01/1988 31/12/2001 LIBEN Cobalt waste and scrap (excl. ash and residues containing cobalt) 01/01/1988 31/12/2001 -810520 01/01/2002 31/12/2500 LIBEN Cobalt mattes and other intermediate products of cobalt metallurgy; unwrought cobalt; cobalt powders 01/01/2002 31/12/2500 -81052000 01/01/2002 31/12/2500 LIBEN Cobalt mattes and other intermediate products of cobalt metallurgy; unwrought cobalt; cobalt powders 01/01/2002 31/12/2500 -810530 01/01/2002 31/12/2500 LIBEN Cobalt waste and scrap (excl. ash and residues containing cobalt) 01/01/2002 31/12/2500 -81053000 01/01/2002 31/12/2500 LIBEN Cobalt waste and scrap (excl. ash and residues containing cobalt) 01/01/2002 31/12/2500 -810590 01/01/1988 31/12/2500 LIBEN Articles of cobalt, n.e.s. 01/01/1988 31/12/2500 -81059000 01/01/1988 31/12/2500 LIBEN Articles of cobalt, n.e.s. 01/01/1988 31/12/2500 -8105S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8105 and SITC section 6 01/01/1997 31/12/2500 -8105S689 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8105 and SITC group 689 01/01/1997 31/12/2500 -8105S699 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8105 and SITC group 699 01/01/1997 31/12/2500 -8106 01/01/1988 31/12/2500 LIBEN Bismuth and articles thereof, n.e.s.; bismuth waste and scrap (excl. ash and residues containing bismuth) 01/01/1988 31/12/2500 -810600 01/01/1988 31/12/2500 LIBEN Bismuth and articles thereof, n.e.s.; bismuth waste and scrap (excl. ash and residues containing bismuth) 01/01/1988 31/12/2500 -81060010 01/01/1988 31/12/2500 LIBEN Unwrought bismuth; bismuth powders; bismuth waste and scrap (excl. ash and residues containing bismuth) 01/01/1988 31/12/2500 -81060090 01/01/1988 31/12/2500 LIBEN Articles of bismuth, n.e.s. 01/01/1988 31/12/2500 -8107 01/01/1988 31/12/2500 LIBEN Cadmium and articles thereof, n.e.s.; cadmium waste and scrap (excl. ash and residues containing cadmium) 01/01/1988 31/12/2500 -810710 01/01/1988 31/12/2001 LIBEN Unwrought cadmium; cadmium powders; cadmium waste and scrap (excl. ash and residues containing cadmium) 01/01/1988 31/12/2001 -81071000 01/01/1988 31/12/1994 LIBEN Unwrought cadmium; powders of cadmium; cadmium waste and scrap (excl. ash and residues containing cadmium) 01/01/1988 31/12/1994 -81071010 01/01/1995 31/12/2001 LIBEN Unwrought cadmium; cadmium powders 01/01/1995 31/12/2001 -81071090 01/01/1995 31/12/1995 LIBEN Cadmium waste and scrap (excl. ashes and residues containing cadmium) 01/01/1995 31/12/1995 -81071090 01/01/1996 31/12/2001 LIBEN Cadmium waste and scrap (excl. ashes and residues containing cadmium) 01/01/1996 31/12/2001 -810720 01/01/2002 31/12/2500 LIBEN Unwrought cadmium; cadmium powders 01/01/2002 31/12/2500 -81072000 01/01/2002 31/12/2500 LIBEN Unwrought cadmium; cadmium powders 01/01/2002 31/12/2500 -810730 01/01/2002 31/12/2500 LIBEN Cadmium waste and scrap (excl. ashes and residues containing cadmium) 01/01/2002 31/12/2500 -81073000 01/01/2002 31/12/2500 LIBEN Cadmium waste and scrap (excl. ashes and residues containing cadmium) 01/01/2002 31/12/2500 -810790 01/01/1988 31/12/2500 LIBEN Articles of cadmium, n.e.s. 01/01/1988 31/12/2500 -81079000 01/01/1988 31/12/2500 LIBEN Articles of cadmium, n.e.s. 01/01/1988 31/12/2500 -8107S6 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 8107 and SITC section 6 01/01/2001 31/12/2500 -8107S689 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 8107 and SITC group 689 01/01/2001 31/12/2500 -8107S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 8107 and SITC section 9 01/01/2002 31/12/2500 -8107S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 8107 and SITC group 999 01/01/2002 31/12/2500 -8108 01/01/1988 31/12/2500 LIBEN Titanium and articles thereof, n.e.s.; titanium waste and scrap (excl. ash and residues containing titanium) 01/01/1988 31/12/2500 -810810 01/01/1988 31/12/2001 LIBEN Unwrought titanium; titanium powders; titanium waste and scrap (excl. ash and residues containing titanium) 01/01/1988 31/12/2001 -81081010 01/01/1988 31/12/2001 LIBEN Unwrought titanium; titanium powders 01/01/1988 31/12/2001 -81081090 01/01/1988 31/12/2001 LIBEN Titanium waste and scrap (excl. ash and residues containing titanium) 01/01/1988 31/12/2001 -810820 01/01/2002 31/12/2500 LIBEN Unwrought titanium; titanium powders 01/01/2002 31/12/2500 -81082000 01/01/2002 31/12/2500 LIBEN Unwrought titanium; titanium powders 01/01/2002 31/12/2500 -810830 01/01/2002 31/12/2500 LIBEN Titanium waste and scrap (excl. ash and residues containing titanium) 01/01/2002 31/12/2500 -81083000 01/01/2002 31/12/2500 LIBEN Titanium waste and scrap (excl. ash and residues containing titanium) 01/01/2002 31/12/2500 -810890 01/01/1988 31/12/2500 LIBEN Articles of titanium, n.e.s. 01/01/1988 31/12/2500 -81089010 01/01/1988 31/12/2005 LIBEN Titanium tubes and pipes with attached fittings, suitable for gases or liquids, for civil aircraft 01/01/1988 31/12/2005 -81089030 01/01/1988 31/12/2500 LIBEN Titanium bars, rods, profiles and wire, n.e.s. 01/01/1988 31/12/2500 -81089050 01/01/1988 31/12/2500 LIBEN Titanium plates, sheets, strip and foil 01/01/1988 31/12/2500 -81089060 01/01/2006 31/12/2500 LIBEN Tubes and pipes, of titanium 01/01/2006 31/12/2500 -81089070 01/01/1988 31/12/2005 LIBEN Titanium tubes and pipes (excl. those with attached fittings, suitable for gases or liquids, for civil aircraft) 01/01/1988 31/12/2005 -81089090 01/01/1988 31/12/2500 LIBEN Articles of titanium, n.e.s. 01/01/1988 31/12/2500 -8108S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8108 and SITC section 6 01/01/1997 31/12/2500 -8108S689 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8108 and SITC group 689 01/01/1997 31/12/2500 -8108S699 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8108 and SITC group 699 01/01/1997 31/12/2500 -8109 01/01/1988 31/12/2500 LIBEN Zirconium and articles thereof, n.e.s.; zirconium waste and scrap (excl. ash and residues containing zirconium) 01/01/1988 31/12/2500 -810910 01/01/1988 31/12/2001 LIBEN Unwrought zirconium; zirconium powders; zirconium waste and scrap (excl. ash and residues containing zirconium) 01/01/1988 31/12/2001 -81091010 01/01/1988 31/12/2001 LIBEN Unwrought zirconium; zirconium powders 01/01/1988 31/12/2001 -81091090 01/01/1988 31/12/2001 LIBEN Zirconium waste and scrap (excl. ash and residues containing zirconium) 01/01/1988 31/12/2001 -810920 01/01/2002 31/12/2500 LIBEN Unwrought zirconium; zirconium powders 01/01/2002 31/12/2500 -81092000 01/01/2002 31/12/2500 LIBEN Unwrought zirconium; zirconium powders 01/01/2002 31/12/2500 -810930 01/01/2002 31/12/2500 LIBEN Zirconium waste and scrap (excl. ash and residues containing zirconium) 01/01/2002 31/12/2500 -81093000 01/01/2002 31/12/2500 LIBEN Zirconium waste and scrap (excl. ash and residues containing zirconium) 01/01/2002 31/12/2500 -810990 01/01/1988 31/12/2500 LIBEN Articles of zirconium, n.e.s. 01/01/1988 31/12/2500 -81099000 01/01/1988 31/12/2500 LIBEN Articles of zirconium, n.e.s. 01/01/1988 31/12/2500 -8109S6 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 8109 and SITC section 6 01/01/2001 31/12/2500 -8109S699 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 8109 and SITC group 699 01/01/2001 31/12/2500 -8110 01/01/1988 31/12/2001 LIBEN Antimony and articles thereof, n.e.s.; antimony waste and scrap (excl. ash and residues containing antimony) 01/01/1988 31/12/2001 -8110 01/01/2002 31/12/2500 LIBEN Antimony and articles thereof, n.e.s.; antimony waste and scrap (excl. ash and residues containing antimony) 01/01/2002 31/12/2500 -811000 01/01/1988 31/12/2001 LIBEN Antimony and articles thereof, n.e.s.; antimony waste and scrap (excl. ash and residues containing antimony) 01/01/1988 31/12/2001 -81100011 01/01/1988 31/12/2001 LIBEN Unwrought antimony; antimony powders 01/01/1988 31/12/2001 -81100019 01/01/1988 31/12/2001 LIBEN Antimony waste and scrap (excl. ash and residues containing antimony) 01/01/1988 31/12/2001 -81100090 01/01/1988 31/12/2001 LIBEN Articles of antimony, n.e.s. 01/01/1988 31/12/2001 -811010 01/01/2002 31/12/2500 LIBEN Unwrought antimony; antimony powders 01/01/2002 31/12/2500 -81101000 01/01/2002 31/12/2500 LIBEN Unwrought antimony; antimony powders 01/01/2002 31/12/2500 -811020 01/01/2002 31/12/2500 LIBEN Antimony waste and scrap (excl. ash and residues containing antimony) 01/01/2002 31/12/2500 -81102000 01/01/2002 31/12/2500 LIBEN Antimony waste and scrap (excl. ash and residues containing antimony) 01/01/2002 31/12/2500 -811090 01/01/2002 31/12/2500 LIBEN Articles of antimony, n.e.s. 01/01/2002 31/12/2500 -81109000 01/01/2002 31/12/2500 LIBEN Articles of antimony, n.e.s. 01/01/2002 31/12/2500 -8111 01/01/1988 31/12/2500 LIBEN Manganese and articles thereof, n.e.s.; manganese waste and scrap (excl. ash and residues containing manganese) 01/01/1988 31/12/2500 -811100 01/01/1988 31/12/2500 LIBEN Manganese and articles thereof, n.e.s.; manganese waste and scrap (excl. ash and residues containing manganese) 01/01/1988 31/12/2500 -81110011 01/01/1988 31/12/2500 LIBEN Unwrought manganese; manganese powders 01/01/1988 31/12/2500 -81110019 01/01/1988 31/12/2500 LIBEN Manganese waste and scrap (excl. ash and residues containing manganese) 01/01/1988 31/12/2500 -81110090 01/01/1988 31/12/2500 LIBEN Articles of manganese, n.e.s. 01/01/1988 31/12/2500 -8112 01/01/1988 31/12/2500 LIBEN Beryllium, chromium, germanium, vanadium, gallium, hafnium "celtium", indium, niobium "columbium", rhenium and thallium, and articles of these metals, n.e.s.; waste and scrap of these metals (excl. ash and residues containing these metals) 01/01/1988 31/12/2500 -811211 01/01/1988 31/12/2001 LIBEN Unwrought beryllium; beryllium powders; beryllium waste and scrap (excl. ash and residues containing beryllium) 01/01/1988 31/12/2001 -81121100 01/01/1988 31/12/1994 LIBEN Unwrought beryllium; powders of beryllium; beryllium waste and scrap (excl. ash and residues containing beryllium) 01/01/1988 31/12/1994 -81121110 01/01/1995 31/12/2001 LIBEN Unwrought beryllium; beryllium powders 01/01/1995 31/12/2001 -81121190 01/01/1995 31/12/2001 LIBEN Beryllium waste and scrap (excl. ashes and residues containing beryllium) 01/01/1995 31/12/2001 -811212 01/01/2002 31/12/2500 LIBEN Unwrought beryllium; beryllium powders 01/01/2002 31/12/2500 -81121200 01/01/2002 31/12/2500 LIBEN Unwrought beryllium; beryllium powders 01/01/2002 31/12/2500 -811213 01/01/2002 31/12/2500 LIBEN Beryllium waste and scrap (excl. ashes and residues containing beryllium) 01/01/2002 31/12/2500 -81121300 01/01/2002 31/12/2500 LIBEN Beryllium waste and scrap (excl. ashes and residues containing beryllium) 01/01/2002 31/12/2500 -811219 01/01/1988 31/12/2500 LIBEN Articles of beryllium, n.e.s. 01/01/1988 31/12/2500 -81121900 01/01/1988 31/12/2500 LIBEN Articles of beryllium, n.e.s. 01/01/1988 31/12/2500 -811220 01/01/1988 31/12/2001 LIBEN Chromium and articles thereof, n.e.s.; chromium waste and scrap (excl. ash and residues containing chromium) 01/01/1988 31/12/2001 -81122010 01/01/1988 31/12/2001 LIBEN Chromium alloys containing > 10% by weight of nickel, unwrought, and powders, waste and scrap of these alloys (excl. ash and residues containing chromium or chromium alloys of this kind) 01/01/1988 31/12/2001 -81122031 01/01/1988 31/12/2001 LIBEN Unwrought chromium; chromium powders (excl. chromium alloys containing > 10% by weight of nickel) 01/01/1988 31/12/2001 -81122039 01/01/1988 31/12/2001 LIBEN Chromium waste and scrap (excl. ash and residues containing chromium and chromium alloys containing > 10% by weight of nickel) 01/01/1988 31/12/2001 -81122090 01/01/1988 31/12/2001 LIBEN Articles of chromium, n.e.s. 01/01/1988 31/12/2001 -811221 01/01/2002 31/12/2500 LIBEN Unwrought chromium; chromium powders 01/01/2002 31/12/2500 -81122110 01/01/2002 31/12/2500 LIBEN Chromium alloys containing > 10% by weight of nickel, unwrought; powders of these alloys (excl. ash and residues containing chromium or chromium alloys of this kind) 01/01/2002 31/12/2500 -81122190 01/01/2002 31/12/2500 LIBEN Unwrought chromium; chromium powders (excl. chromium alloys containing > 10% by weight of nickel) 01/01/2002 31/12/2500 -811222 01/01/2002 31/12/2500 LIBEN Chromium waste and scrap (excl. ash and residues containing chromium and chromium alloys containing > 10% by weight of nickel) 01/01/2002 31/12/2500 -81122200 01/01/2002 31/12/2500 LIBEN Chromium waste and scrap (excl. ash and residues containing chromium and chromium alloys containing > 10% by weight of nickel) 01/01/2002 31/12/2500 -811229 01/01/2002 31/12/2500 LIBEN Articles of chromium, n.e.s. 01/01/2002 31/12/2500 -81122900 01/01/2002 31/12/2500 LIBEN Articles of chromium, n.e.s. 01/01/2002 31/12/2500 -811230 01/01/1988 31/12/2006 LIBEN Germanium and articles thereof, n.e.s.; germanium waste and scrap (excl. ash and residues containing germanium) 01/01/1988 31/12/2006 -81123010 01/01/1988 31/12/1994 LIBEN Unwrought germanium; powders of germanium; germanium waste and scrap (excl. ash and residues containing germanium) 01/01/1988 31/12/1994 -81123020 01/01/1995 31/12/2006 LIBEN Unwrought germanium; germanium powders 01/01/1995 31/12/2006 -81123040 01/01/1995 31/12/2006 LIBEN Germanium waste and scrap (excl. ashes and residues containing germanium) 01/01/1995 31/12/2006 -81123090 01/01/1988 31/12/2006 LIBEN Articles of germanium, n.e.s. 01/01/1988 31/12/2006 -811240 01/01/1988 31/12/2006 LIBEN Vanadium and articles thereof, n.e.s.; vanadium waste and scrap (excl. ash and residues containing vanadium) 01/01/1988 31/12/2006 -81124010 01/01/2004 31/12/2006 LIBEN Unwrought vanadium; vanadium powders; vanadium waste and scrap (excl. ash and residues containing vanadium) 01/01/2004 31/12/2006 -81124011 01/01/1988 31/12/2003 LIBEN Unwrought vanadium; vanadium powders 01/01/1988 31/12/2003 -81124019 01/01/1988 31/12/2003 LIBEN Vanadium waste and scrap (excl. ash and residues containing vanadium) 01/01/1988 31/12/2003 -81124090 01/01/1988 31/12/2006 LIBEN Articles of vanadium, n.e.s. 01/01/1988 31/12/2006 -811251 01/01/2002 31/12/2500 LIBEN Unwrought thallium; thallium powders 01/01/2002 31/12/2500 -81125100 01/01/2002 31/12/2500 LIBEN Unwrought thallium; thallium powders 01/01/2002 31/12/2500 -811252 01/01/2002 31/12/2500 LIBEN Thallium waste and scrap (excl. ashes and residues containing thallium) 01/01/2002 31/12/2500 -81125200 01/01/2002 31/12/2500 LIBEN Thallium waste and scrap (excl. ashes and residues containing thallium) 01/01/2002 31/12/2500 -811259 01/01/2002 31/12/2500 LIBEN Articles of thallium, n.e.s. 01/01/2002 31/12/2500 -81125900 01/01/2002 31/12/2500 LIBEN Articles of thallium, n.e.s. 01/01/2002 31/12/2500 -811291 01/01/1988 31/12/2001 LIBEN Unwrought hafnium "celtium", niobium "columbium", rhenium, gallium, indium and thallium; powders and waste and scrap of these metals (excl. ash and residues containing these metals) 01/01/1988 31/12/2001 -81129110 01/01/1988 31/12/2001 LIBEN Unwrought hafnium "celtium"; hafnium powders; hafnium waste and scrap (excl. ash and residues containing hafnium) 01/01/1988 31/12/2001 -81129131 01/01/1988 31/12/2001 LIBEN Unwrought niobium "columbium" and rhenium; niobium "columbium" and rhenium powders 01/01/1988 31/12/2001 -81129139 01/01/1988 31/12/2001 LIBEN Niobium "columbium" and rhenium waste and scrap (excl. ash and residues containing these metals) 01/01/1988 31/12/2001 -81129150 01/01/1995 31/12/2001 LIBEN Gallium, indium and thallium waste and scrap (excl. ashes and residues containing these metals) 01/01/1995 31/12/2001 -81129181 01/01/1995 31/12/2001 LIBEN Unwrought indium; indium powders 01/01/1995 31/12/2001 -81129189 01/01/1995 31/12/2001 LIBEN Unwrought gallium and thallium; gallium and thallium powders 01/01/1995 31/12/2001 -81129190 01/01/1988 31/12/1994 LIBEN Gallium, indium and thallium, unwrought; powders and waste and scrap of these metals (excl. ash and residues containing these metals) 01/01/1988 31/12/1994 -811292 01/01/2002 31/12/2500 LIBEN Unwrought hafnium "celtium", niobium "columbium", rhenium, gallium, indium, vanadium and germanium; powders and waste and scrap of these metals (excl. ash and residues containing these metals) 01/01/2002 31/12/2500 -81129210 01/01/2002 31/12/2500 LIBEN Unwrought hafnium "celtium"; hafnium powders; hafnium waste and scrap (excl. ash and residues containing hafnium) 01/01/2002 31/12/2500 -81129221 01/01/2007 31/12/2500 LIBEN Niobium "columbium", rhenium, gallium, indium, vanadium and germanium waste and scrap (excl. ashes and residues containing these metals) 01/01/2007 31/12/2500 -81129231 01/01/2002 31/12/2500 LIBEN Unwrought niobium "columbium" and rhenium; niobium "columbium" or rhenium powders 01/01/2002 31/12/2500 -81129239 01/01/2002 31/12/2006 LIBEN Niobium "columbium" and rhenium waste and scrap (excl. ash and residues containing these metals) 01/01/2002 31/12/2006 -81129250 01/01/2002 31/12/2006 LIBEN Gallium and indium waste and scrap (excl. ashes and residues containing these metals) 01/01/2002 31/12/2006 -81129281 01/01/2002 31/12/2500 LIBEN Unwrought indium; indium powders 01/01/2002 31/12/2500 -81129289 01/01/2002 31/12/2500 LIBEN Unwrought gallium; gallium powders 01/01/2002 31/12/2500 -81129291 01/01/2007 31/12/2500 LIBEN Unwrought vanadium; vanadium powders (excl. ash and residues containing vanadium) 01/01/2007 31/12/2500 -81129295 01/01/2007 31/12/2500 LIBEN Unwrought germanium; germanium powders 01/01/2007 31/12/2500 -811299 01/01/1988 31/12/2500 LIBEN Articles of hafnium "celtium", niobium "columbium", rhenium, gallium, indium, vanadium and germanium, n.e.s. 01/01/1988 31/12/2500 -81129910 01/01/1988 31/12/2006 LIBEN Articles of hafnium "celtium", n.e.s. 01/01/1988 31/12/2006 -81129920 01/01/2007 31/12/2500 LIBEN Articles of hafnium "celtium" and germanium, n.e.s. 01/01/2007 31/12/2500 -81129930 01/01/1988 31/12/2500 LIBEN Articles of niobium "columbium" or rhenium, n.e.s. 01/01/1988 31/12/2500 -81129970 01/01/2007 31/12/2500 LIBEN Articles of gallium, indium and vanadium, n.e.s. 01/01/2007 31/12/2500 -81129980 01/01/2002 31/12/2006 LIBEN Articles of gallium or indium, n.e.s. 01/01/2002 31/12/2006 -81129990 01/01/1988 31/12/2001 LIBEN Articles of gallium, indium and thallium, n.e.s. 01/01/1988 31/12/2001 -8112S6 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 8112 and SITC section 6 01/01/2001 31/12/2500 -8112S689 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 8112 and SITC group 689 01/01/2001 31/12/2500 -8112S9 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 8112 and SITC section 9 01/01/2002 31/12/2500 -8112S999 01/01/2002 31/12/2500 LIBEN Confidential trade of heading 8112 and SITC group 999 01/01/2002 31/12/2500 -8113 01/01/1988 31/12/2500 LIBEN Cermets and articles thereof, n.e.s.; waste and scrap of cermets (excl. ash and residues containing cermets) 01/01/1988 31/12/2500 -811300 01/01/1988 31/12/2500 LIBEN Cermets and articles thereof, n.e.s.; waste and scrap of cermets (excl. ash and residues containing cermets) 01/01/1988 31/12/2500 -81130010 01/01/1988 31/12/1994 LIBEN Unwrought cermets; waste and scrap of cermets (excl. ash and residues containing cermets) 01/01/1988 31/12/1994 -81130020 01/01/1995 31/12/2500 LIBEN Unwrought cermets 01/01/1995 31/12/2500 -81130040 01/01/1995 31/12/2500 LIBEN Waste and scrap of cermets (excl. ashes and residues containing cermets) 01/01/1995 31/12/2500 -81130090 01/01/1988 31/12/2500 LIBEN Articles of cermets, n.e.s. 01/01/1988 31/12/2500 -81CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 81 01/01/2002 31/12/2500 -81CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 81 01/01/2002 31/12/2500 -81CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 81 01/01/2002 31/12/2500 -81MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -81MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -81MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -81SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 81 01/01/1988 31/12/2500 -81SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 81 and SITC section 0 01/01/1997 31/12/2001 -81SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 81 and SITC group 000 01/01/1997 31/12/2001 -81SSS6 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 81 and SITC section 6 01/01/1988 31/12/2500 -81SSS689 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 81 and SITC group 689 01/01/1988 31/12/2500 -81SSS699 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 81 and SITC group 699 01/01/1988 31/12/2500 -81SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 81 and SITC section 9 01/01/1988 31/12/1996 -81SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 81 and SITC section 9 01/01/1997 31/12/2500 -81SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 81 and SITC group 999 01/01/1988 31/12/1996 -81SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 81 and SITC group 999 01/01/1997 31/12/2500 -82 01/01/1988 31/12/2500 LIBEN TOOLS, IMPLEMENTS, CUTLERY, SPOONS AND FORKS, OF BASE METAL; PARTS THEREOF OF BASE METAL 01/01/1988 31/12/2500 -8201 01/01/1988 31/12/2500 LIBEN Hand tools, the following: spades, shovels, mattocks, picks, hoes, forks and rakes, of base metal; axes, billhooks and similar hewing tools, of base metal; poultry shears, secateurs and pruners of any kind, of base metal; scythes, sickles, hay knives, hedge shears, timber wedges and other tools of a kind used in agriculture, horticulture or forestry, of base metal 01/01/1988 31/12/2500 -820110 01/01/1988 31/12/2500 LIBEN Spades and shovels, with working parts of base metal 01/01/1988 31/12/2500 -82011000 01/01/1988 31/12/2500 LIBEN Spades and shovels, with working parts of base metal 01/01/1988 31/12/2500 -820120 01/01/1988 31/12/2011 LIBEN Forks, incl. pitchforks, with working parts of base metal 01/01/1988 31/12/2011 -82012000 01/01/1988 31/12/2011 LIBEN Forks, incl. pitchforks, with working parts of base metal 01/01/1988 31/12/2011 -820130 01/01/1988 31/12/2500 LIBEN Mattocks, picks, hoes and rakes, with working parts of base metal (excl. ice axes) 01/01/1988 31/12/2500 -82013000 01/01/1988 31/12/2500 LIBEN Mattocks, picks, hoes and rakes, with working parts of base metal (excl. ice axes) 01/01/1988 31/12/2500 -820140 01/01/1988 31/12/2500 LIBEN Axes, billhooks and similar hewing tools, with working parts of base metal (excl. ice axes) 01/01/1988 31/12/2500 -82014000 01/01/1988 31/12/2500 LIBEN Axes, billhooks and similar hewing tools, with working parts of base metal (excl. ice axes) 01/01/1988 31/12/2500 -820150 01/01/1988 31/12/2500 LIBEN Secateurs and similar one-handed pruners and shears, incl. poultry shears, with working parts of base metal 01/01/1988 31/12/2500 -82015000 01/01/1988 31/12/2500 LIBEN Secateurs and similar one-handed pruners and shears, incl. poultry shears, with working parts of base metal 01/01/1988 31/12/2500 -820160 01/01/1988 31/12/2500 LIBEN Hedge shears, two-handed pruning shears and similar two-handed shears, with working parts of base metal 01/01/1988 31/12/2500 -82016000 01/01/1988 31/12/2500 LIBEN Hedge shears, two-handed pruning shears and similar two-handed shears, with working parts of base metal 01/01/1988 31/12/2500 -820190 01/01/1988 31/12/2500 LIBEN Scythes, sickles, hay knives, timber wedges and other hand tools of a kind used in agriculture, horticulture or forestry, with working parts of base metal (excl. spades, shovels, mattocks, picks, hoes, rakes, axes, billhooks and similar hewing tools, poultry shears, secateurs and similar one-handed pruners and shears, hedge shears, two-handed pruning shears and similar two-handed shears) 01/01/1988 31/12/2500 -82019000 01/01/1988 31/12/2011 LIBEN Scythes, sickles, hay knives, timber wedges and other hand tools of a kind used in agriculture, horticulture or forestry, with working parts of base metal (excl. spades, shovels, forks, mattocks, picks, hoes, rakes, axes, billhooks and similar hewing tools, poultry shears, secateurs and similar one-handed pruners and shears, hedge shears, two-handed pruning shears and similar two-handed shears) 01/01/1988 31/12/2011 -82019000 01/01/2012 31/12/2500 LIBEN Scythes, sickles, hay knives, timber wedges and other hand tools of a kind used in agriculture, horticulture or forestry, with working parts of base metal (excl. spades, shovels, mattocks, picks, hoes, rakes, axes, billhooks and similar hewing tools, poultry shears, secateurs and similar one-handed pruners and shears, hedge shears, two-handed pruning shears and similar two-handed shears) 01/01/2012 31/12/2500 -8202 01/01/1988 31/12/2500 LIBEN Handsaws, with working parts of base metal (excl. power-operated saws); blades for saws of all kinds, incl. slitting, slotting or toothless saw blades, of base metal 01/01/1988 31/12/2500 -820210 01/01/1988 31/12/2500 LIBEN Handsaws, with working parts of base metal (excl. power-operated saws) 01/01/1988 31/12/2500 -82021000 01/01/1988 31/12/2500 LIBEN Handsaws, with working parts of base metal (excl. power-operated saws) 01/01/1988 31/12/2500 -820220 01/01/1988 31/12/2500 LIBEN Bandsaw blades of base metal 01/01/1988 31/12/2500 -82022000 01/01/1996 31/12/2500 LIBEN Bandsaw blades of base metal 01/01/1996 31/12/2500 -82022010 01/01/1988 31/12/1995 LIBEN Band saw blades of base metal, for working metal 01/01/1988 31/12/1995 -82022090 01/01/1988 31/12/1995 LIBEN Band saw blades of base metal, for working materials other than metal 01/01/1988 31/12/1995 -820231 01/01/1988 31/12/2500 LIBEN Circular saw blades, incl. slitting or slotting saw blades, of base metal, with working parts of steel 01/01/1988 31/12/2500 -82023100 01/01/1996 31/12/2500 LIBEN Circular saw blades, incl. slitting or slotting saw blades, of base metal, with working parts of steel 01/01/1996 31/12/2500 -82023110 01/01/1988 31/12/1995 LIBEN Circular saw blades with inserted teeth or segments, of base metal, with working parts of steel 01/01/1988 31/12/1995 -82023151 01/01/1988 31/12/1995 LIBEN Circular saw blades, incl. slitting or slotting saw blades, of base metal, with working parts of steel, for working metal, of diameter <= 315 mm (excl. saw blades with inserted teeth or segments) 01/01/1988 31/12/1995 -82023159 01/01/1988 31/12/1995 LIBEN Circular saw blades, incl. slitting or slotting saw blades, of base metal, with working parts of steel, for working metal, of diameter > 315 mm (excl. saw blades with inserted teeth or segments) 01/01/1988 31/12/1995 -82023190 01/01/1988 31/12/1995 LIBEN Circular saw blades, incl. slitting or slotting saw blades, of base metal, with working parts of steel, for working materials other than metal (excl. saw blades with inserted teeth or segments) 01/01/1988 31/12/1995 -820232 01/01/1988 31/12/1995 LIBEN Circular saw blades, incl. slitting or slotting saw blades, of base metal, with working parts of materials other than steel 01/01/1988 31/12/1995 -82023210 01/01/1988 31/12/1995 LIBEN Circular saw blades with inserted teeth or segments, incl. slitting or slotting saw blades, of base metal, with working parts of materials other than steel 01/01/1988 31/12/1995 -82023290 01/01/1988 31/12/1995 LIBEN Circular saw blades, incl. slitting or slotting saw blades, of base metal, with working parts of materials other than steel (excl. saw blades with inserted teeth or segments) 01/01/1988 31/12/1995 -820239 01/01/1996 31/12/2500 LIBEN Circular saw blades, incl. slitting or slotting saw blades, and parts thereof, of base metal, with working parts of materials other than steel 01/01/1996 31/12/2500 -82023900 01/01/1996 31/12/2500 LIBEN Circular saw blades, incl. slitting or slotting saw blades, and parts thereof, of base metal, with working parts of materials other than steel 01/01/1996 31/12/2500 -820240 01/01/1988 31/12/2500 LIBEN Chainsaw blades of base metal 01/01/1988 31/12/2500 -82024000 01/01/1988 31/12/2500 LIBEN Chainsaw blades of base metal 01/01/1988 31/12/2500 -820291 01/01/1988 31/12/2500 LIBEN Straight saw blades, of base metal, for working metal 01/01/1988 31/12/2500 -82029100 01/01/1995 31/12/2500 LIBEN Straight saw blades, of base metal, for working metal 01/01/1995 31/12/2500 -82029111 01/01/1988 31/12/1994 LIBEN Straight saw blades of base metal, for working metal, with working parts of steel, with a fixing hole at each end, of a width =< 16 mm 01/01/1988 31/12/1994 -82029119 01/01/1988 31/12/1994 LIBEN Straight saw blades of base metal, for working metal, with working parts of steel, with a fixing hole at each end, of a width > 16 mm 01/01/1988 31/12/1994 -82029130 01/01/1988 31/12/1994 LIBEN Straight saw blades of base metal, for working metal, with working parts of steel, without a fixing hole at each end 01/01/1988 31/12/1994 -82029190 01/01/1988 31/12/1994 LIBEN Straight saw blades of base metal, for working metal, with working parts of materials other than steel 01/01/1988 31/12/1994 -820299 01/01/1988 31/12/2500 LIBEN Saw blades, incl. toothless saw blades, of base metal (excl. bandsaw blades, circular saw blades, slitting or slotting saw blades, chainsaw blades and straight saw blades for working metal) 01/01/1988 31/12/2500 -82029911 01/01/1988 31/12/2010 LIBEN Saw blades, incl. toothless saw blades, of base metal, with working parts of steel, for working metal (excl. bandsaw blades, circular saw blades and straight saw blades) 01/01/1988 31/12/2010 -82029919 01/01/1988 31/12/2010 LIBEN Saw blades, incl. toothless saw blades, of base metal, with working parts of steel, for working materials other than metal (excl. bandsaw blades, circular saw blades, slitting or slotting saw blades and chainsaw blades) 01/01/1988 31/12/2010 -82029920 01/01/2011 31/12/2500 LIBEN Saw blades, incl. toothless saw blades, of base metal, for working metal (excl. bandsaw and chainsaw blades, and circular or straight saw blades) 01/01/2011 31/12/2500 -82029980 01/01/2011 31/12/2500 LIBEN Saw blades, incl. toothless saw blades, of base metal, for working materials other than metal (excl. bandsaw and chainsaw blades, circular saw blades) 01/01/2011 31/12/2500 -82029990 01/01/1988 31/12/2010 LIBEN Saw blades, incl. toothless saw blades, of base metal, with working parts of materials other than steel (excl. bandsaw blades, circular saw blades, slitting or slotting saw blades and chainsaw blades) 01/01/1988 31/12/2010 -8202I1 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8202; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1997 31/12/2005 -8202I100 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8202; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1997 31/12/2005 -8202I2 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8202; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1997 31/12/2005 -8202I200 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8202; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1997 31/12/2005 -8202I3 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8202; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -8202I300 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8202; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -8202I7 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8202; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -8202I700 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8202; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -8203 01/01/1988 31/12/2500 LIBEN Files, rasps, pliers, incl. cutting pliers, pincers and tweezers for non-medical use, metal-cutting shears, pipe-cutters, bolt croppers, perforating punches and similar hand tools, of base metal 01/01/1988 31/12/2500 -820310 01/01/1988 31/12/2500 LIBEN Files, rasps and similar hand tools of base metal 01/01/1988 31/12/2500 -82031000 01/01/1988 31/12/2500 LIBEN Files, rasps and similar hand tools of base metal 01/01/1988 31/12/2500 -820320 01/01/1988 31/12/2500 LIBEN Pliers, incl. cutting pliers, pincers and tweezers for non-medical use and similar hand tools, of base metal 01/01/1988 31/12/2500 -82032000 01/01/2011 31/12/2500 LIBEN Pliers, incl. cutting pliers, pincers and tweezers for non-medical use and similar hand tools, of base metal 01/01/2011 31/12/2500 -82032010 01/01/1988 31/12/2010 LIBEN Tweezers for non-medical use, of base metal 01/01/1988 31/12/2010 -82032090 01/01/1988 31/12/2010 LIBEN Pliers, incl. cutting pliers, pincers and similar hand tools of base metal (excl.tweezers) 01/01/1988 31/12/2010 -820330 01/01/1988 31/12/2500 LIBEN Metal-cutting shears and similar hand tools, of base metal 01/01/1988 31/12/2500 -82033000 01/01/1988 31/12/2500 LIBEN Metal-cutting shears and similar hand tools, of base metal 01/01/1988 31/12/2500 -820340 01/01/1988 31/12/2500 LIBEN Pipe-cutters, bolt croppers, perforating punches and similar hand tools, of base metal 01/01/1988 31/12/2500 -82034000 01/01/1988 31/12/2500 LIBEN Pipe-cutters, bolt croppers, perforating punches and similar hand tools, of base metal 01/01/1988 31/12/2500 -8203S6 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8203 and SITC section 6 01/01/1997 31/12/2500 -8203S695 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8203 and SITC group 695 01/01/1997 31/12/2500 -8204 01/01/1988 31/12/2500 LIBEN Hand-operated spanners and wrenches, incl. torque meter wrenches (excl. tap wrenches), of base metal; interchangeable spanner sockets, with or without handles, of base metal 01/01/1988 31/12/2500 -820411 01/01/1988 31/12/2500 LIBEN Hand-operated spanners and wrenches, incl. torque meter wrenches, of base metal, non-adjustable 01/01/1988 31/12/2500 -82041100 01/01/1988 31/12/2500 LIBEN Hand-operated spanners and wrenches, incl. torque meter wrenches, of base metal, non-adjustable 01/01/1988 31/12/2500 -820412 01/01/1988 31/12/2500 LIBEN Hand-operated spanners and wrenches, incl. torque meter wrenches, of base metal, adjustable (excl. tap wrenches) 01/01/1988 31/12/2500 -82041200 01/01/1988 31/12/2500 LIBEN Hand-operated spanners and wrenches, incl. torque meter wrenches, of base metal, adjustable (excl. tap wrenches) 01/01/1988 31/12/2500 -820420 01/01/1988 31/12/2500 LIBEN Interchangeable spanner sockets, with or without handles, of base metal 01/01/1988 31/12/2500 -82042000 01/01/1988 31/12/2500 LIBEN Interchangeable spanner sockets, with or without handles, of base metal 01/01/1988 31/12/2500 -8204I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8204; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8204I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8204; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8204I1 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8204; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1997 31/12/2005 -8204I100 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8204; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1997 31/12/2005 -8204I3 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8204; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -8204I300 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8204; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -8205 01/01/1988 31/12/2500 LIBEN Hand tools, incl. glaziers' diamonds, of base metal, n.e.s.; blowlamps and the like; vices, clamps and the like (other than accessories for and parts of machine-tools or water-jet cutting machines); anvils; portable forges; hand-operated or pedal-operated grinding wheels with frameworks 01/01/1988 31/12/2500 -820510 01/01/1988 31/12/2500 LIBEN Hand-operated drilling, threading or tapping hand tools 01/01/1988 31/12/2500 -82051000 01/01/1988 31/12/2500 LIBEN Hand-operated drilling, threading or tapping hand tools 01/01/1988 31/12/2500 -820520 01/01/1988 31/12/2500 LIBEN Hammers and sledge hammers with working parts of base metal 01/01/1988 31/12/2500 -82052000 01/01/1988 31/12/2500 LIBEN Hammers and sledge hammers with working parts of base metal 01/01/1988 31/12/2500 -820530 01/01/1988 31/12/2500 LIBEN Planes, chisels, gouges and similar cutting tools for working wood 01/01/1988 31/12/2500 -82053000 01/01/1988 31/12/2500 LIBEN Planes, chisels, gouges and similar cutting tools for working wood 01/01/1988 31/12/2500 -820540 01/01/1988 31/12/2500 LIBEN Hand-operated screwdrivers 01/01/1988 31/12/2500 -82054000 01/01/1988 31/12/2500 LIBEN Hand-operated screwdrivers 01/01/1988 31/12/2500 -820551 01/01/1988 31/12/2500 LIBEN Household hand tools, non-mechanical, with working parts of base metal, n.e.s. 01/01/1988 31/12/2500 -82055100 01/01/1988 31/12/2500 LIBEN Household hand tools, non-mechanical, with working parts of base metal, n.e.s. 01/01/1988 31/12/2500 -820559 01/01/1988 31/12/2500 LIBEN Hand tools, incl. glaziers' diamonds, of base metal, n.e.s. 01/01/1988 31/12/2500 -82055910 01/01/1988 31/12/2500 LIBEN Hand tools for masons, moulders, cement workers, plasterers and painters, of base metal, n.e.s. 01/01/1988 31/12/2500 -82055930 01/01/1988 31/12/2010 LIBEN Cartridge-operated riveting, wallplugging, etc., hand tools 01/01/1988 31/12/2010 -82055980 01/01/2011 31/12/2500 LIBEN Hand tools, incl. glaziers' diamonds, of base metal, n.e.s. 01/01/2011 31/12/2500 -82055990 01/01/1988 31/12/2010 LIBEN Hand tools, incl. glaziers' diamonds, of base metal, n.e.s. 01/01/1988 31/12/2010 -820560 01/01/1988 31/12/2500 LIBEN Blowlamps and the like (excl. gas-powered blowlamps) 01/01/1988 31/12/2500 -82056000 01/01/1988 31/12/2500 LIBEN Blowlamps and the like (excl. gas-powered blowlamps) 01/01/1988 31/12/2500 -820570 01/01/1988 31/12/2500 LIBEN Vices, clamps and the like (excl. accessories for and parts of machine tools or water-jet cutting machines) 01/01/1988 31/12/2500 -82057000 01/01/1988 31/12/2500 LIBEN Vices, clamps and the like (excl. accessories for and parts of machine tools or water-jet cutting machines) 01/01/1988 31/12/2500 -820580 01/01/1988 31/12/2011 LIBEN Anvils; portable forges; hand-operated or pedal-operated grinding wheels with frameworks 01/01/1988 31/12/2011 -82058000 01/01/1988 31/12/2011 LIBEN Anvils; portable forges; hand-operated or pedal-operated grinding wheels with frameworks 01/01/1988 31/12/2011 -820590 01/01/1988 31/12/2500 LIBEN Anvils; portable forges; hand- or pedal-operated grinding wheels with frameworks; sets of articles of two or more subheadings of heading 8205 01/01/1988 31/12/2500 -82059000 01/01/1988 31/12/2011 LIBEN Sets of two or more tools of the subheading of heading 8205 01/01/1988 31/12/2011 -82059010 01/01/2012 31/12/2500 LIBEN Anvils; portable forges; hand- or pedal-operated grinding wheels with frameworks 01/01/2012 31/12/2500 -82059090 01/01/2012 31/12/2500 LIBEN Sets of articles of two or more subheadings of heading 8205 01/01/2012 31/12/2500 -8206 01/01/1988 31/12/2500 LIBEN Sets of two or more tools of heading 8202 to 8205, put up in sets for retail sale 01/01/1988 31/12/2500 -820600 01/01/1988 31/12/2500 LIBEN Sets of two or more tools of heading 8202 to 8205, put up in sets for retail sale 01/01/1988 31/12/2500 -82060000 01/01/1988 31/12/2500 LIBEN Sets of two or more tools of heading 8202 to 8205, put up in sets for retail sale 01/01/1988 31/12/2500 -8207 01/01/1988 31/12/2500 LIBEN Tools, interchangeable, for hand tools, whether or not power-operated, or for machine tools "e.g. for pressing, stamping, punching, tapping, threading, drilling, boring, broaching, milling, turning or screw driving", incl. dies for drawing or extruding metal, and rock-drilling or earth-boring tools 01/01/1988 31/12/2500 -820711 01/01/1988 31/12/1995 LIBEN Rock-drilling or earth-boring tools, interchangeable, with working part of sintered metal carbides or cermets 01/01/1988 31/12/1995 -82071100 01/01/1995 31/12/1995 LIBEN Rock-drilling or earth-boring tools, interchangeable, with working part of sintered metal carbides or cermets 01/01/1995 31/12/1995 -82071110 01/01/1988 31/12/1994 LIBEN Rock drilling or earth boring interchangeable tools, with working parts of sintered metal carbide 01/01/1988 31/12/1994 -82071190 01/01/1988 31/12/1994 LIBEN Rock drilling or earth boring interchangeable tools, with working parts of cermets 01/01/1988 31/12/1994 -820712 01/01/1988 31/12/1995 LIBEN Rock drilling or earth boring interchangeable tools with working parts of material other than sintered metal carbide or cermets 01/01/1988 31/12/1995 -82071210 01/01/1988 31/12/1995 LIBEN Rock drilling or earth boring interchangeable tools, with working parts of diamond or agglomerated diamond 01/01/1988 31/12/1995 -82071290 01/01/1988 31/12/1995 LIBEN Rock drilling or earth boring interchangeable tools with working parts of materials other than sintered metal carbide, cermets, diamond or agglomerated diamond 01/01/1988 31/12/1995 -820713 01/01/1996 31/12/2500 LIBEN Rock-drilling or earth-boring tools, interchangeable, with working parts of sintered metal carbides or cermets 01/01/1996 31/12/2500 -82071300 01/01/1996 31/12/2500 LIBEN Rock-drilling or earth-boring tools, interchangeable, with working parts of sintered metal carbides or cermets 01/01/1996 31/12/2500 -820719 01/01/1996 31/12/2500 LIBEN Rock-drilling or earth-boring tools, interchangeable, and parts therefor, with working parts of materials other than sintered metal carbide or cermets 01/01/1996 31/12/2500 -82071910 01/01/1996 31/12/2500 LIBEN Rock-drilling or earth-boring tools, interchangeable, with working parts of diamond or agglomerated diamond 01/01/1996 31/12/2500 -82071990 01/01/1996 31/12/2500 LIBEN Rock-drilling or earth-boring tools, interchangeable, with working parts of materials other than sintered metal carbide, cermets, diamond or agglomerated diamond 01/01/1996 31/12/2500 -820720 01/01/1988 31/12/2500 LIBEN Interchangeable dies for drawing or extruding metal 01/01/1988 31/12/2500 -82072010 01/01/1988 31/12/2500 LIBEN Interchangeable dies for drawing or extruding metal, with working parts of diamond or agglomerated diamond 01/01/1988 31/12/2500 -82072090 01/01/1996 31/12/2500 LIBEN Interchangeable dies for drawing or extruding metal, with working parts of materials other than diamond or agglomerated diamond 01/01/1996 31/12/2500 -82072091 01/01/1988 31/12/1995 LIBEN Interchangeable dies for drawing or extruding metal, with working parts of sintered metal carbide 01/01/1988 31/12/1995 -82072099 01/01/1988 31/12/1995 LIBEN Interchangeable dies for drawing or extruding metal, with working parts of materials other than sintered metal carbide, diamond or agglomerated diamond 01/01/1988 31/12/1995 -820730 01/01/1988 31/12/2500 LIBEN Interchangeable tools for pressing, stamping or punching 01/01/1988 31/12/2500 -82073010 01/01/1988 31/12/2500 LIBEN Interchangeable tools for pressing, stamping or punching, for working metal 01/01/1988 31/12/2500 -82073090 01/01/1988 31/12/2500 LIBEN Interchangeable tools for pressing, stamping or punching, for working materials other than metal 01/01/1988 31/12/2500 -820740 01/01/1988 31/12/2500 LIBEN Tools for tapping or threading, interchangeable 01/01/1988 31/12/2500 -82074010 01/01/1996 31/12/2500 LIBEN Tools for tapping metal, interchangeable 01/01/1996 31/12/2500 -82074011 01/01/1988 31/12/1995 LIBEN Tools for tapping metals, interchangeable, with working parts of sintered metal carbide 01/01/1988 31/12/1995 -82074019 01/01/1988 31/12/1995 LIBEN Tools for tapping metals, interchangeable, with working parts of material other than sintered metal carbide 01/01/1988 31/12/1995 -82074030 01/01/1996 31/12/2500 LIBEN Tools for threading metal, interchangeable 01/01/1996 31/12/2500 -82074031 01/01/1988 31/12/1995 LIBEN Tools for threading metals, interchangeable, with working parts of sintered metal carbide 01/01/1988 31/12/1995 -82074039 01/01/1988 31/12/1995 LIBEN Tools for threading metals, interchangeable, with working parts of material other than sintered metal carbide 01/01/1988 31/12/1995 -82074090 01/01/1988 31/12/2500 LIBEN Tools for tapping or threading materials other than metal, interchangeable 01/01/1988 31/12/2500 -820750 01/01/1988 31/12/2500 LIBEN Tools for drilling, interchangeable (excl. rock-drilling or earth-boring tools and tools for tapping) 01/01/1988 31/12/2500 -82075010 01/01/1988 31/12/2500 LIBEN Tools for drilling, interchangeable, with working parts of diamond or agglomerated diamond (excl. tools for rock-drilling or earth-boring and tools for tapping) 01/01/1988 31/12/2500 -82075030 01/01/1988 31/12/2500 LIBEN Interchangeable masonry drills, with working parts of materials other than diamond or agglomerated diamond 01/01/1988 31/12/2500 -82075050 01/01/1988 31/12/2500 LIBEN Tools for drilling metal, interchangeable, with working parts of sintered metal carbide or cermets (excl. tools for tapping) 01/01/1988 31/12/2500 -82075060 01/01/1988 31/12/2500 LIBEN Tools for drilling, interchangeable, for working metal, with working parts of high speed steel (excl. tools for tapping) 01/01/1988 31/12/2500 -82075070 01/01/1988 31/12/2500 LIBEN Tools for drilling metal, interchangeable, with working parts of materials other than diamond, agglomerated diamond, sintered metal carbide, cermets or high speed steel (excl. tools for tapping) 01/01/1988 31/12/2500 -82075090 01/01/1988 31/12/2500 LIBEN Tools for drilling, interchangeable, for working materials other than metal, with working parts of materials other than diamond or agglomerated diamond (excl. tools for rock-drilling or earth-boring, wall boring and tools for tapping) 01/01/1988 31/12/2500 -820760 01/01/1988 31/12/2500 LIBEN Interchangeable tools for boring or broaching 01/01/1988 31/12/2500 -82076010 01/01/1988 31/12/2500 LIBEN Interchangeable tools for boring or broaching, with working parts of diamond or agglomerated diamond 01/01/1988 31/12/2500 -82076030 01/01/1996 31/12/2500 LIBEN Interchangeable tools for boring or drilling metal 01/01/1996 31/12/2500 -82076031 01/01/1988 31/12/1995 LIBEN Interchangeable tools for boring metals, with working parts of sintered metal carbide 01/01/1988 31/12/1995 -82076039 01/01/1988 31/12/1995 LIBEN Interchangeable tools for boring metals, with working parts of materials other than diamond, agglomerated diamond or sintered metal carbide 01/01/1988 31/12/1995 -82076050 01/01/1988 31/12/2500 LIBEN Interchangeable tools for boring materials other than metal, with working parts of materials other than diamond or agglomerated diamond 01/01/1988 31/12/2500 -82076070 01/01/1996 31/12/2500 LIBEN Interchangeable tools for broaching metal 01/01/1996 31/12/2500 -82076071 01/01/1988 31/12/1995 LIBEN Interchangeable tools for broaching metals, with working parts of sintered metal carbide 01/01/1988 31/12/1995 -82076079 01/01/1988 31/12/1995 LIBEN Interchangeable tools for broaching metals, with working parts of materials other than diamond, agglomerated diamond or sintered metal carbide 01/01/1988 31/12/1995 -82076090 01/01/1988 31/12/2500 LIBEN Interchangeable tools for broaching materials other than metal, with working parts of materials other than diamond or agglomerated diamond 01/01/1988 31/12/2500 -820770 01/01/1988 31/12/2500 LIBEN Interchangeable tools for milling 01/01/1988 31/12/2500 -82077010 01/01/1988 31/12/2500 LIBEN Interchangeable tools for milling metal, with working parts of sintered metal carbide or of cermets 01/01/1988 31/12/2500 -82077031 01/01/1988 31/12/2500 LIBEN Interchangeable shank type tools for milling metal, with working parts of materials other than sintered metal carbide or cermets 01/01/1988 31/12/2500 -82077035 01/01/1993 31/12/2011 LIBEN Hobs, interchangeable, for working metal, with working part of materials other than sintered metal carbide or cermets 01/01/1993 31/12/2011 -82077037 01/01/2012 31/12/2500 LIBEN Tools for milling, interchangeable, for working metal, with working part of materials other than sintered metal carbide or cermets (excl. shank-type) 01/01/2012 31/12/2500 -82077038 01/01/1993 31/12/2011 LIBEN Tools for milling, interchangeable, for working metal, with working part of materials other than sintered metal carbide or cermets (excl. shank-type and hobs) 01/01/1993 31/12/2011 -82077039 01/01/1988 31/12/1992 LIBEN Interchangeable tools for milling metals, with working parts of materials other than sintered metal carbide (excl. shank type milling tools) 01/01/1988 31/12/1992 -82077090 01/01/1988 31/12/2500 LIBEN Interchangeable tools for milling materials other than metal 01/01/1988 31/12/2500 -820780 01/01/1988 31/12/2500 LIBEN Interchangeable tools for turning 01/01/1988 31/12/2500 -82078011 01/01/1988 31/12/2500 LIBEN Tools, interchangeable, for turning metal, with working parts of sintered metal carbide or of cermets 01/01/1988 31/12/2500 -82078015 01/01/1993 31/12/1995 LIBEN Tools for turning, interchangeable, for working metal, with working part of diamond or agglomerated diamond 01/01/1993 31/12/1995 -82078018 01/01/1993 31/12/1995 LIBEN Tools for turning, interchangeable, for working metal, with working part of materials other than sintered metal carbide, diamond or agglomerated diamond 01/01/1993 31/12/1995 -82078019 01/01/1988 31/12/1992 LIBEN Interchangeable tools for turning metals, with working parts of materials other than sintered metal carbide 01/01/1988 31/12/1992 -82078019 01/01/1996 31/12/2500 LIBEN Tools for turning, interchangeable, for working metal, with working part of materials other than sintered metal carbide or cermets 01/01/1996 31/12/2500 -82078090 01/01/1988 31/12/2500 LIBEN Interchangeable tools for turning materials other than metal 01/01/1988 31/12/2500 -820790 01/01/1988 31/12/2500 LIBEN Interchangeable tools for hand tools, whether or not power-operated, or for machine tools, n.e.s. 01/01/1988 31/12/2500 -82079010 01/01/1988 31/12/2500 LIBEN Interchangeable tools for hand tools, whether or not power-operated, or for machine tools, with working parts of diamond or agglomerated diamond, n.e.s. 01/01/1988 31/12/2500 -82079030 01/01/1988 31/12/2500 LIBEN Screwdriver bits of base metal 01/01/1988 31/12/2500 -82079050 01/01/1988 31/12/2500 LIBEN Interchangeable gear-cutting tools (excl. milling tools for gear-cutting) 01/01/1988 31/12/2500 -82079071 01/01/1988 31/12/2500 LIBEN Interchangeable tools for hand tools, whether or not power-operated, or for machine tools, for working metal, with working parts of sintered metal carbide or cermets, n.e.s. 01/01/1988 31/12/2500 -82079075 01/01/1988 31/12/1994 LIBEN Interchangeable tools for hand tools, whether or not power-operated, or for machine-tools, for the working of materials other than metals, with working parts of sintered metal carbide, rotating, n.e.s. 01/01/1988 31/12/1994 -82079078 01/01/1995 31/12/2500 LIBEN Tools, interchangeable, for use in mechanical or non-mechanical hand-held appliances or in machine tools, for working materials other than metal, with working part of sintered metal carbides or cermets, n.e.s. 01/01/1995 31/12/2500 -82079079 01/01/1988 31/12/1994 LIBEN Interchangeable tools for hand tools, whether or not power-operated, or for machine-tools, for the working of materials other than metals, with working parts of sintered metal carbide, not rotating, n.e.s. 01/01/1988 31/12/1994 -82079091 01/01/1988 31/12/2500 LIBEN Tools, interchangeable, for use in mechanical or non-mechanical hand-held appliances, or for machine tools, for working metal, with working parts of materials other than diamond, agglomerated diamond, sintered metal carbide or cermets, n.e.s. 01/01/1988 31/12/2500 -82079099 01/01/1988 31/12/2500 LIBEN Tools, interchangeable, for use in mechanical or non-mechanical hand-held appliances, or for machine tools, for working materials other than metal, with working parts of materials other than diamond, agglomerated diamond, sintered metal carbide or cermets, n.e.s. 01/01/1988 31/12/2500 -8208 01/01/1988 31/12/2500 LIBEN Knives and cutting blades, of base metal, for machines or for mechanical appliances 01/01/1988 31/12/2500 -820810 01/01/1988 31/12/2500 LIBEN Knives and cutting blades, of base metal, for machines or for mechanical appliances, for metalworking 01/01/1988 31/12/2500 -82081000 01/01/1988 31/12/2500 LIBEN Knives and cutting blades, of base metal, for machines or for mechanical appliances, for metalworking 01/01/1988 31/12/2500 -820820 01/01/1988 31/12/2500 LIBEN Knives and cutting blades, of base metal, for machines or for mechanical appliances, for wood-working 01/01/1988 31/12/2500 -82082000 01/01/1988 31/12/2500 LIBEN Knives and cutting blades, of base metal, for machines or for mechanical appliances, for wood-working 01/01/1988 31/12/2500 -820830 01/01/1988 31/12/2500 LIBEN Knives and cutting blades, of base metal, for kitchen appliances or for machines used by the food industry 01/01/1988 31/12/2500 -82083000 01/01/2011 31/12/2500 LIBEN Knives and cutting blades, of base metal, for kitchen appliances or for machines used by the food industry 01/01/2011 31/12/2500 -82083010 01/01/1988 31/12/2010 LIBEN Circular knives of base metal, for kitchen appliances or for machines used by the food industry 01/01/1988 31/12/2010 -82083090 01/01/1988 31/12/2010 LIBEN Knives and cutting blades, of base metal, for kitchen appliances or for machines used by the food industry (excl. circular knives) 01/01/1988 31/12/2010 -820840 01/01/1988 31/12/2500 LIBEN Knives and cutting blades, of base metal, for agricultural, horticultural or forestry machines (excl. those for wood-working) 01/01/1988 31/12/2500 -82084000 01/01/1988 31/12/2500 LIBEN Knives and cutting blades, of base metal, for agricultural, horticultural or forestry machines (excl. those for wood-working) 01/01/1988 31/12/2500 -820890 01/01/1988 31/12/2500 LIBEN Knives and cutting blades, of base metal, for machines or for mechanical appliances (excl. those for metal or wood-working, kitchen appliances or machines used by the food industry and those for agricultural, horticultural or forestry machines) 01/01/1988 31/12/2500 -82089000 01/01/1988 31/12/2500 LIBEN Knives and cutting blades, of base metal, for machines or for mechanical appliances (excl. those for metal or wood-working, kitchen appliances or machines used by the food industry and those for agricultural, horticultural or forestry machines) 01/01/1988 31/12/2500 -8209 01/01/1988 31/12/2500 LIBEN Plates, sticks, tips and the like for tools, unmounted, of sintered metal carbides or cermets 01/01/1988 31/12/2500 -820900 01/01/1988 31/12/2500 LIBEN Plates, sticks, tips and the like for tools, unmounted, of sintered metal carbides or cermets 01/01/1988 31/12/2500 -82090010 01/01/1988 31/12/1993 LIBEN Tool-tips, for tools, unmounted, of sintered metal carbides or cermets 01/01/1988 31/12/1993 -82090020 01/01/1994 31/12/2500 LIBEN Inserts, indexable, for tools, unmounted, of sintered metal carbide or cermets 01/01/1994 31/12/2500 -82090080 01/01/1994 31/12/2500 LIBEN Plates, sticks, tips and the like for tools, unmounted, of sintered metal carbides or cermets (excl. indexable inserts) 01/01/1994 31/12/2500 -82090090 01/01/1988 31/12/1993 LIBEN Plates, sticks and the like, for tools, unmounted, of sintered metal carbides or cermets (excl. tool-tips) 01/01/1988 31/12/1993 -8209I0 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of heading 8209 01/01/2000 31/12/2005 -8209I000 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of heading 8209 01/01/2000 31/12/2005 -8209I2 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8209; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1997 31/12/2005 -8209I200 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8209; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1997 31/12/2005 -8210 01/01/1988 31/12/2500 LIBEN Hand-operated mechanical devices, of base metal, weighing <= 10 kg, used in the preparation, conditioning or serving of food or drink 01/01/1988 31/12/2500 -821000 01/01/1988 31/12/2500 LIBEN Hand-operated mechanical devices, of base metal, weighing <= 10 kg, used in the preparation, conditioning or serving of food or drink 01/01/1988 31/12/2500 -82100000 01/01/1995 31/12/2500 LIBEN Hand-operated mechanical devices, of base metal, weighing <= 10 kg, used in the preparation, conditioning or serving of food or drink 01/01/1995 31/12/2500 -82100010 01/01/1988 31/12/1994 LIBEN Meat mincers, pressers, juice-extractors, vegetable and fruit slicers and cutters, incl. potato chippers, vegetable mincers and mashers and similar appliances of base metal, weighing =< 10 kg 01/01/1988 31/12/1994 -82100090 01/01/1988 31/12/1994 LIBEN Hand-operated mechanical appliances of base metal, weighing =< 10 kg, used in the preparation, conditioning or serving of food or drink (excl. meat mincers, pressers, juice-extractors, vegetable and fruit slicers and cutters, incl. potato chippers, vegetable mincers and mashers and similar appliances) 01/01/1988 31/12/1994 -8211 01/01/1988 31/12/2500 LIBEN Knives with cutting blades, serrated or not, incl. pruning knives, and blades therefor, of base metal (excl. straw knives, machetes, knives and cutting blades for machines or mechanical appliances, fish knives, butter knives, razors and razor blades and knives of heading 8214) 01/01/1988 31/12/2500 -821110 01/01/1988 31/12/2500 LIBEN Sets of assorted articles of knives of heading 8211; sets in which there is a higher number of knives of heading 8211 than of any other article 01/01/1988 31/12/2500 -82111000 01/01/1988 31/12/2500 LIBEN Sets of assorted articles of knives of heading 8211; sets in which there is a higher number of knives of heading 8211 than of any other article 01/01/1988 31/12/2500 -821191 01/01/1988 31/12/2500 LIBEN Table knives having fixed blades of base metal, incl. handles (excl. butter knives and fish knives) 01/01/1988 31/12/2500 -82119100 01/01/2011 31/12/2500 LIBEN Table knives having fixed blades of base metal, incl. handles (excl. butter knives and fish knives) 01/01/2011 31/12/2500 -82119110 01/01/1988 31/12/1995 LIBEN Handles of base metal for table knives with fixed blades (excl. those for butter knives or fish knives) 01/01/1988 31/12/1995 -82119130 01/01/1992 31/12/2010 LIBEN Table knives with handle and fixed blade of stainless steel 01/01/1992 31/12/2010 -82119180 01/01/1992 31/12/2010 LIBEN Table knives with fixed blades of base metal (not with handle and blade of stainless steel and excl. butter knives and fish knives) 01/01/1992 31/12/2010 -82119190 01/01/1988 31/12/1991 LIBEN Table knives with fixed blades of base metal (excl. butter knives and fish knives) 01/01/1988 31/12/1991 -821192 01/01/1988 31/12/2500 LIBEN Knives with fixed blades of base metal (excl. straw knives, machetes, knives and cutting blades for machines or mechanical appliances, table knives, fish knives, butter knives, razors and razor blades and knives of heading 8214) 01/01/1988 31/12/2500 -82119200 01/01/1996 31/12/2500 LIBEN Knives with fixed blades of base metal (excl. straw knives, machetes, knives and cutting blades for machines or mechanical appliances, table knives, fish knives, butter knives, razors and razor blades and knives of heading 8214) 01/01/1996 31/12/2500 -82119210 01/01/1988 31/12/1995 LIBEN Handles of base metal for knives with fixed blades of subheading 8211.92.90 01/01/1988 31/12/1995 -82119290 01/01/1988 31/12/1995 LIBEN Knives with fixed blades of base metal (excl. hay knives, machetes, knives and cutting blades for machines or mechanical appliances, table knives, fish knives, butter knives, razors and razor blades and knives of heading 8214) 01/01/1988 31/12/1995 -821193 01/01/1988 31/12/2500 LIBEN Knives having other than fixed blades, incl. pruning knives, of base metal (excl. razors) 01/01/1988 31/12/2500 -82119300 01/01/1996 31/12/2500 LIBEN Knives having other than fixed blades, incl. pruning knives, of base metal (excl. razors) 01/01/1996 31/12/2500 -82119310 01/01/1988 31/12/1995 LIBEN Handles of base metal for knives having other than fixed blades of subheading 8211.93.90 01/01/1988 31/12/1995 -82119390 01/01/1988 31/12/1995 LIBEN Knives having other than fixed blades, of base metal (excl. razors) 01/01/1988 31/12/1995 -821194 01/01/1988 31/12/2500 LIBEN Blades of base metal for table knives, pocket knives and other knives of heading 8211 01/01/1988 31/12/2500 -82119400 01/01/1988 31/12/2500 LIBEN Blades of base metal for table knives, pocket knives and other knives of heading 8211 01/01/1988 31/12/2500 -821195 01/01/1996 31/12/2500 LIBEN Handles of base metal for table knives, pocket knives and other knives of heading 8211 01/01/1996 31/12/2500 -82119500 01/01/1996 31/12/2500 LIBEN Handles of base metal for table knives, pocket knives and other knives of heading 8211 01/01/1996 31/12/2500 -8212 01/01/1988 31/12/2500 LIBEN Non-electric razors and razor blades of base metal, incl. razor blade blanks in strips 01/01/1988 31/12/2500 -821210 01/01/1988 31/12/2500 LIBEN Non-electric razors of base metal 01/01/1988 31/12/2500 -82121010 01/01/1988 31/12/2500 LIBEN Safety razors with non-replaceable blades of base metal 01/01/1988 31/12/2500 -82121090 01/01/1988 31/12/2500 LIBEN Non-electric razors of base metal (excl. safety razors with non-replaceable blades) 01/01/1988 31/12/2500 -821220 01/01/1988 31/12/2500 LIBEN Safety razor blades of base metal, incl. razor blade blanks in strips 01/01/1988 31/12/2500 -82122000 01/01/1988 31/12/2500 LIBEN Safety razor blades of base metal, incl. razor blade blanks in strips 01/01/1988 31/12/2500 -821290 01/01/1988 31/12/2500 LIBEN Parts of non-electric razors of base metal (excl. safety razor blades and razor blade blanks in strips) 01/01/1988 31/12/2500 -82129000 01/01/1988 31/12/2500 LIBEN Parts of non-electric razors of base metal (excl. safety razor blades and razor blade blanks in strips) 01/01/1988 31/12/2500 -8213 01/01/1988 31/12/2500 LIBEN Scissors, tailors' shears and similar shears, and blades therefor, of base metal (excl. hedge shears, two-handed pruning shears and similar two-handed shears, secateurs and similar one-handed pruners and shears and hoof nippers for farriers) 01/01/1988 31/12/2500 -821300 01/01/1988 31/12/2500 LIBEN Scissors, tailors' shears and similar shears, and blades therefor, of base metal (excl. hedge shears, two-handed pruning shears and similar two-handed shears, secateurs and similar one-handed pruners and shears and hoof nippers for farriers) 01/01/1988 31/12/2500 -82130000 01/01/1988 31/12/2500 LIBEN Scissors, tailors' shears and similar shears, and blades therefor, of base metal (excl. hedge shears, two-handed pruning shears and similar two-handed shears, secateurs and similar one-handed pruners and shears and hoof nippers for farriers) 01/01/1988 31/12/2500 -8214 01/01/1988 31/12/2500 LIBEN Articles of cutlery, n.e.s., e.g. hair clippers, butchers' or kitchen cleavers, choppers and mincing knives and paperknives of base metal; manicure or pedicure sets and instruments, incl. nail files, of base metal 01/01/1988 31/12/2500 -821410 01/01/1988 31/12/2500 LIBEN Paperknives, letter openers, erasing knives, pencil sharpeners and blades therefor, of base metal (excl. machinery and mechanical appliances of chapter 84) 01/01/1988 31/12/2500 -82141000 01/01/1988 31/12/2500 LIBEN Paperknives, letter openers, erasing knives, pencil sharpeners and blades therefor, of base metal (excl. machinery and mechanical appliances of chapter 84) 01/01/1988 31/12/2500 -821420 01/01/1988 31/12/2500 LIBEN Manicure or pedicure sets and instruments, incl. nail files, of base metal (excl. ordinary scissors) 01/01/1988 31/12/2500 -82142000 01/01/1988 31/12/2500 LIBEN Manicure or pedicure sets and instruments, incl. nail files, of base metal (excl. ordinary scissors) 01/01/1988 31/12/2500 -821490 01/01/1988 31/12/2500 LIBEN Hair clippers, butchers' or kitchen cleavers and other articles of cutlery of base metal, n.e.s. 01/01/1988 31/12/2500 -82149000 01/01/1988 31/12/2500 LIBEN Hair clippers, butchers' or kitchen cleavers and other articles of cutlery of base metal, n.e.s. 01/01/1988 31/12/2500 -8215 01/01/1988 31/12/2500 LIBEN Spoons, forks, ladles, skimmers, cake-servers, fish-knives, butter-knives, sugar tongs and similar kitchen or tableware of base metal (excl. lobster cutters and poultry shears of heading 8201 and 8213) 01/01/1988 31/12/2500 -821510 01/01/1988 31/12/2500 LIBEN Sets of spoons, forks or other articles of heading 8215, which may also contain up to an equivalent number of knives, of base metal, containing at least one article plated with precious metal 01/01/1988 31/12/2500 -82151010 01/01/1988 31/12/1991 LIBEN 4sets of spoons, forks or other articles of heading no 8215, incl. those with up to an equal number of knives, of stainless steel, containing at least one article plated with precious metal 01/01/1988 31/12/1991 -82151020 01/01/1992 31/12/2500 LIBEN Sets consisting of one or more knives of heading 8211 and at least an equal number of spoons, forks or other articles of heading 8215, of base metal, containing only articles plated with precious metal 01/01/1992 31/12/2500 -82151030 01/01/1992 31/12/2500 LIBEN Sets consisting of one or more knives of heading 8211 and at least an equal number of spoons, forks or other articles of heading 8215, of stainless steel, containing at least one article plated with precious metal 01/01/1992 31/12/2500 -82151080 01/01/1992 31/12/2500 LIBEN Sets consisting of one or more knives of heading 8211 and at least an equal number of spoons, forks or other articles of heading 8215, of base metal other than stainless steel, containing at least one article plated with precious metal 01/01/1992 31/12/2500 -82151090 01/01/1988 31/12/1991 LIBEN 4sets of spoons, forks or other articles of heading no 8215, incl. those with up to an equal number of knives, of base metals other than stainless steel, containing at least one article plated with precious metal 01/01/1988 31/12/1991 -821520 01/01/1988 31/12/2500 LIBEN Sets consisting of one or more knives of heading 8211 and at least an equal number of spoons, forks or other articles of heading 8215, of base metal, containing no articles plated with precious metal 01/01/1988 31/12/2500 -82152010 01/01/1988 31/12/2500 LIBEN Sets consisting of one or more knives of heading 8211 and at least an equal number of spoons, forks or other articles of heading 8215, of stainless steel, containing no articles plated with precious metal 01/01/1988 31/12/2500 -82152090 01/01/1988 31/12/2500 LIBEN Sets consisting of one or more knives of heading 8211 and at least an equal number of spoons, forks or other articles of heading 8215, of base metals other than stainless steel, containing no articles plated with precious metal 01/01/1988 31/12/2500 -821591 01/01/1988 31/12/2500 LIBEN Spoons, forks, ladles, skimmers, cake-servers, fish-knives, butter-knives, sugar tongs and similar kitchen or tableware of base metal, plated with precious metal (excl. sets of articles such as lobster cutters and poultry shears) 01/01/1988 31/12/2500 -82159100 01/01/1988 31/12/2500 LIBEN Spoons, forks, ladles, skimmers, cake-servers, fish-knives, butter-knives, sugar tongs and similar kitchen or tableware of base metal, plated with precious metal (excl. sets of articles such as lobster cutters and poultry shears) 01/01/1988 31/12/2500 -821599 01/01/1988 31/12/2500 LIBEN Spoons, forks, ladles, skimmers, cake-servers, fish-knives, butter-knives, sugar tongs and similar kitchen or tableware of base metal, not plated with precious metal (excl. sets of articles such as lobster cutters and poultry shears) 01/01/1988 31/12/2500 -82159910 01/01/1988 31/12/2500 LIBEN Spoons, forks, ladles, skimmers, cake-servers, fish-knives, butter-knives, sugar tongs and similar kitchen or tableware of stainless steel, not plated with precious metal (excl. sets of articles such as lobster cutters and poultry shears) 01/01/1988 31/12/2500 -82159990 01/01/1988 31/12/2500 LIBEN Spoons, forks, ladles, skimmers, cake-servers, fish-knives, butter-knives, sugar tongs and similar kitchen or tableware of base metals other than stainless steel, not plated with precious metal (excl. sets of articles such as lobster cutters and poultry shears) 01/01/1988 31/12/2500 -82CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 82 01/01/2002 31/12/2500 -82CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 82 01/01/2002 31/12/2500 -82CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 82 01/01/2002 31/12/2500 -82EE 01/01/1988 31/12/2004 LIBEN Sets of goods of chapter 82 01/01/1988 31/12/2004 -82EEE0 01/01/1988 31/12/2004 LIBEN Sets of goods of chapter 82 01/01/1988 31/12/2004 -82EEE000 01/01/1988 31/12/2004 LIBEN Sets of goods of chapter 82 01/01/1988 31/12/2004 -82II 01/01/1988 31/12/2500 LIBEN Components of complete industrial plants of chapter 82 01/01/1988 31/12/2500 -82III0 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 82; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -82III0 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 82 01/01/2006 31/12/2500 -82III000 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 82; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -82III000 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 82 01/01/2006 31/12/2500 -82III1 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 82; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -82III100 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 82; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -82III2 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 82; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -82III200 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 82; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -82III3 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 82; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -82III3 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of chapter 82; mechanical engineering and construction of means of transport; instrument engineering 01/01/2001 31/12/2005 -82III300 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 82; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -82III300 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of chapter 82; mechanical engineering and construction of means of transport; instrument engineering 01/01/2001 31/12/2005 -82III4 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 82; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -82III4 01/01/2003 31/12/2005 LIBEN Components of complete industrial plants of chapter 82; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/2003 31/12/2005 -82III400 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 82; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -82III400 01/01/2003 31/12/2005 LIBEN Components of complete industrial plants of chapter 82; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/2003 31/12/2005 -82III5 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 82; food, drink and tobacco industry 01/01/1988 31/12/2005 -82III500 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 82; food, drink and tobacco industry 01/01/1988 31/12/2005 -82III6 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 82; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -82III600 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 82; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -82III7 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 82; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -82III700 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 82; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -82III8 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 82; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -82III800 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 82; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -82III9 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 82; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -82III900 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 82; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -82MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -82MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -82MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -82PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 82 carried by post 01/01/1988 31/12/2500 -82PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 82 carried by post 01/01/1988 31/12/2500 -82PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 82 carried by post 01/01/1988 31/12/2500 -82SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 82 01/01/1988 31/12/2500 -82SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 82 and SITC section 0 01/01/1997 31/12/2001 -82SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 82 and SITC group 000 01/01/1997 31/12/2001 -82SSS6 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 82 and SITC section 6 01/01/1992 31/12/2500 -82SSS695 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 82 and SITC group 695 01/01/1992 31/12/2500 -82SSS696 01/01/1993 31/12/2500 LIBEN Confidential trade of chapter 82 and SITC group 696 01/01/1993 31/12/2500 -82SSS697 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 82 and SITC group 697 01/01/1997 31/12/2500 -82SSS9 01/01/1988 31/12/1991 LIBEN Confidential trade of chapter 82 and SITC section 9 01/01/1988 31/12/1991 -82SSS9 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 82 and SITC section 9 01/01/1992 31/12/2500 -82SSS999 01/01/1988 31/12/1991 LIBEN Confidential trade of chapter 82 and SITC group 999 01/01/1988 31/12/1991 -82SSS999 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 82 and SITC group 999 01/01/1992 31/12/2500 -82VV 01/01/2000 31/12/2500 LIBEN Imported goods of chapter 82 for the assembly of motor vehicles 01/01/2000 31/12/2500 -82VVV0 01/01/2000 31/12/2500 LIBEN Imported goods of chapter 82 for the assembly of motor vehicles 01/01/2000 31/12/2500 -82VVV000 01/01/2000 31/12/2500 LIBEN Imported goods of chapter 82 for the assembly of motor vehicles 01/01/2000 31/12/2500 -83 01/01/1988 31/12/2500 LIBEN MISCELLANEOUS ARTICLES OF BASE METAL 01/01/1988 31/12/2500 -8301 01/01/1988 31/12/2500 LIBEN Padlocks and locks "key, combination or electrically operated", of base metal; clasps and frames with clasps, incorporating locks, of base metal; keys for any of the foregoing articles, of base metal 01/01/1988 31/12/2500 -830110 01/01/1988 31/12/2500 LIBEN Padlocks of base metal 01/01/1988 31/12/2500 -83011000 01/01/1988 31/12/2500 LIBEN Padlocks of base metal 01/01/1988 31/12/2500 -830120 01/01/1988 31/12/2500 LIBEN Locks used for motor vehicles, of base metal 01/01/1988 31/12/2500 -83012000 01/01/1988 31/12/2500 LIBEN Locks used for motor vehicles, of base metal 01/01/1988 31/12/2500 -830130 01/01/1988 31/12/2500 LIBEN Locks used for furniture, of base metal 01/01/1988 31/12/2500 -83013000 01/01/1988 31/12/2500 LIBEN Locks used for furniture, of base metal 01/01/1988 31/12/2500 -830140 01/01/1988 31/12/2500 LIBEN Locks of base metal (excl. padlocks and locks for motor vehicles or furniture) 01/01/1988 31/12/2500 -83014011 01/01/1988 31/12/2500 LIBEN Cylinder locks of a kind used for doors of buildings, of base metal 01/01/1988 31/12/2500 -83014019 01/01/1988 31/12/2500 LIBEN Locks of a kind used for doors of buildings, of base metal (excl. cylinder locks and padlocks) 01/01/1988 31/12/2500 -83014090 01/01/1988 31/12/2500 LIBEN Locks of base metal (excl. padlocks and locks of a kind used for motor vehicles, furniture or doors of buildings) 01/01/1988 31/12/2500 -830150 01/01/1988 31/12/2500 LIBEN Clasps and frames with clasps, incorporating locks, of base metal 01/01/1988 31/12/2500 -83015000 01/01/1988 31/12/2500 LIBEN Clasps and frames with clasps, incorporating locks, of base metal 01/01/1988 31/12/2500 -830160 01/01/1988 31/12/2500 LIBEN Parts of padlocks, locks, clasps and frames with clasps, incorporating locks, of base metal, n.e.s. 01/01/1988 31/12/2500 -83016000 01/01/1988 31/12/2500 LIBEN Parts of padlocks, locks, clasps and frames with clasps, incorporating locks, of base metal, n.e.s. 01/01/1988 31/12/2500 -830170 01/01/1988 31/12/2500 LIBEN Keys presented separately for padlocks, locks, clasps and frames with clasps incorporating locks, of base metal, n.e.s 01/01/1988 31/12/2500 -83017000 01/01/1988 31/12/2500 LIBEN Keys presented separately for padlocks, locks, clasps and frames with clasps incorporating locks, of base metal, n.e.s 01/01/1988 31/12/2500 -8302 01/01/1988 31/12/2500 LIBEN Base metal mountings, fittings and similar articles suitable for furniture, doors, staircases, windows, blinds, coachwork, saddlery, trunks, chests, caskets or the like; base metal hat-racks, hat-pegs, brackets and similar fixtures; castors with mountings of base metal; automatic door closers of base metal 01/01/1988 31/12/2500 -830210 01/01/1988 31/12/2500 LIBEN Hinges of all kinds, of base metal 01/01/1988 31/12/2500 -83021000 01/01/2006 31/12/2500 LIBEN Hinges of all kinds, of base metal 01/01/2006 31/12/2500 -83021010 01/01/1988 31/12/2005 LIBEN Hinges for civil aircraft, of base metal 01/01/1988 31/12/2005 -83021090 01/01/1988 31/12/2005 LIBEN Hinges of base metal (excl. those for civil aircraft) 01/01/1988 31/12/2005 -830220 01/01/1988 31/12/2500 LIBEN Castors with mountings of base metal 01/01/1988 31/12/2500 -83022000 01/01/2006 31/12/2500 LIBEN Castors with mountings of base metal 01/01/2006 31/12/2500 -83022010 01/01/1988 31/12/2005 LIBEN Castors with mountings of base metal, for civil aircraft 01/01/1988 31/12/2005 -83022090 01/01/1988 31/12/2005 LIBEN Castors with mountings of base metal (excl. those for civil aircraft) 01/01/1988 31/12/2005 -830230 01/01/1988 31/12/2500 LIBEN Base metal mountings, fittings and similar articles suitable for motor vehicles (excl. hinges and castors) 01/01/1988 31/12/2500 -83023000 01/01/1988 31/12/2500 LIBEN Base metal mountings, fittings and similar articles suitable for motor vehicles (excl. hinges and castors) 01/01/1988 31/12/2500 -830241 01/01/1988 31/12/2500 LIBEN Base metal mountings and fittings suitable for buildings (excl. locks with keys and hinges) 01/01/1988 31/12/2500 -83024100 01/01/1988 31/12/2008 LIBEN Base metal mountings and fittings suitable for buildings (excl. locks with keys and hinges) 01/01/1988 31/12/2008 -83024110 01/01/2009 31/12/2500 LIBEN Base metal mountings and fittings suitable for doors (excl. locks with keys and hinges) 01/01/2009 31/12/2500 -83024150 01/01/2009 31/12/2500 LIBEN Base metal mountings and fittings suitable for windows and French windows (excl. locks with keys and hinges) 01/01/2009 31/12/2500 -83024190 01/01/2009 31/12/2500 LIBEN Base metal mountings and fittings suitable for buildings (excl. for doors, windows and French windows and locks with keys and hinges) 01/01/2009 31/12/2500 -830242 01/01/1988 31/12/2500 LIBEN Base metal mountings, fittings and similar articles suitable for furniture (excl. locks with keys, hinges and castors) 01/01/1988 31/12/2500 -83024200 01/01/2006 31/12/2500 LIBEN Base metal mountings, fittings and similar articles suitable for furniture (excl. locks with keys, hinges and castors) 01/01/2006 31/12/2500 -83024210 01/01/1988 31/12/2005 LIBEN Base metal mountings, fittings and similar articles suitable for furniture, for civil aircraft (excl. locks with keys, hinges and castors) 01/01/1988 31/12/2005 -83024290 01/01/1988 31/12/2005 LIBEN Base metal mountings, fittings and similar articles suitable for furniture (excl. furniture for civil aircraft, locks with keys, hinges and castors) 01/01/1988 31/12/2005 -830249 01/01/1988 31/12/2500 LIBEN Base metal mountings, fittings and similar articles (excl. locks with keys, clasps and frames with clasps incorporating locks, hinges, castors and mountings and fittings suitable for buildings, motor vehicles or furniture) 01/01/1988 31/12/2500 -83024900 01/01/2006 31/12/2500 LIBEN Base metal mountings, fittings and similar articles (excl. locks with keys, clasps and frames with clasps incorporating locks, hinges, castors and mountings and fittings suitable for buildings, motor vehicles or furniture) 01/01/2006 31/12/2500 -83024910 01/01/1988 31/12/2005 LIBEN Base metal mountings, fittings and similar articles for civil aircraft (excl. locks with keys, clasps and frames with clasps incorporating locks, hinges, castors and mountings and fittings suitable for buildings, motor vehicles or furniture) 01/01/1988 31/12/2005 -83024990 01/01/1988 31/12/2005 LIBEN Base metal mountings, fittings and similar articles (excl. those for civil aircraft, locks with keys, clasps and frames with clasps incorporating locks, hinges, castors and mountings and fittings suitable for buildings, motor vehicles or furniture) 01/01/1988 31/12/2005 -830250 01/01/1988 31/12/2500 LIBEN Hat-racks, hat-pegs, brackets and similar fixtures of base metal 01/01/1988 31/12/2500 -83025000 01/01/1988 31/12/2500 LIBEN Hat-racks, hat-pegs, brackets and similar fixtures of base metal 01/01/1988 31/12/2500 -830260 01/01/1988 31/12/2500 LIBEN Automatic door closers of base metal 01/01/1988 31/12/2500 -83026000 01/01/2006 31/12/2500 LIBEN Automatic door closers of base metal 01/01/2006 31/12/2500 -83026010 01/01/1988 31/12/2005 LIBEN Automatic door closers for civil aircraft, of base metal 01/01/1988 31/12/2005 -83026090 01/01/1988 31/12/2005 LIBEN Automatic door closers of base metal (excl. those for civil aircraft) 01/01/1988 31/12/2005 -8303 01/01/1988 31/12/2500 LIBEN Armoured or reinforced safes, strongboxes and doors and safe deposit lockers for strongrooms, cash or deed boxes and the like, of base metal 01/01/1988 31/12/2500 -830300 01/01/1988 31/12/2500 LIBEN Armoured or reinforced safes, strongboxes and doors and safe deposit lockers for strongrooms, cash or deed boxes and the like, of base metal 01/01/1988 31/12/2500 -83030010 01/01/1988 31/12/2010 LIBEN Armoured or reinforced safes and strongboxes, of base metal 01/01/1988 31/12/2010 -83030030 01/01/1988 31/12/2010 LIBEN Armoured or reinforced doors and safe deposit lockers for strongrooms, of base metal 01/01/1988 31/12/2010 -83030040 01/01/2011 31/12/2500 LIBEN Armoured or reinforced safes, strongboxes and doors and safe deposit lockers for strongrooms, of base metal 01/01/2011 31/12/2500 -83030090 01/01/1988 31/12/2500 LIBEN Cash or deed boxes and the like, of base metal (excl. armoured or reinforced safes, strongboxes, doors and safe deposit lockers for strongrooms) 01/01/1988 31/12/2500 -8304 01/01/1988 31/12/2500 LIBEN Filing cabinets, card-index cabinets, paper trays, paper rests, pen trays, office-stamp stands and similar office or desk equipment, of base metal (excl. office furniture of heading 9403 and waste paper bins) 01/01/1988 31/12/2500 -830400 01/01/1988 31/12/2500 LIBEN Filing cabinets, card-index cabinets, paper trays, paper rests, pen trays, office-stamp stands and similar office or desk equipment, of base metal (excl. office furniture of heading 9403 and waste paper bins) 01/01/1988 31/12/2500 -83040000 01/01/1988 31/12/2500 LIBEN Filing cabinets, card-index cabinets, paper trays, paper rests, pen trays, office-stamp stands and similar office or desk equipment, of base metal (excl. office furniture of heading 9403 and waste paper bins) 01/01/1988 31/12/2500 -8305 01/01/1988 31/12/2500 LIBEN Fittings for loose-leaf binders or files, letter clips, letter corners, paper clips, indexing tags and similar office articles, of base metal (excl. drawing pins and clasps for books or registers); staples in strips, e.g. for use in offices, upholstery and packaging, of base metal 01/01/1988 31/12/2500 -830510 01/01/1988 31/12/2500 LIBEN Fittings for loose-leaf binders or files, of base metal (excl. drawing pins and clasps for books or registers) 01/01/1988 31/12/2500 -83051000 01/01/1988 31/12/2500 LIBEN Fittings for loose-leaf binders or files, of base metal (excl. drawing pins and clasps for books or registers) 01/01/1988 31/12/2500 -830520 01/01/1988 31/12/2500 LIBEN Staples in strips, of base metal 01/01/1988 31/12/2500 -83052000 01/01/1988 31/12/2500 LIBEN Staples in strips, of base metal 01/01/1988 31/12/2500 -830590 01/01/1988 31/12/2500 LIBEN Office articles such as letter clips, letter corners, paper clips and indexing tags, of base metal, incl. parts of articles of heading 8305 (excl. fittings for loose-leaf binders or files, staples in strips, drawing pins and clasps for books or registers) 01/01/1988 31/12/2500 -83059000 01/01/1988 31/12/2500 LIBEN Office articles such as letter clips, letter corners, paper clips and indexing tags, of base metal, incl. parts of articles of heading 8305 (excl. fittings for loose-leaf binders or files, staples in strips, drawing pins and clasps for books or registers) 01/01/1988 31/12/2500 -8306 01/01/1988 31/12/2500 LIBEN Bells, gongs and the like, non-electric, of base metal (excl. musical instruments); statuettes and other ornaments, of base metal (excl. works of art, collectors' pieces and antiques); photograph, picture or similar frames, of base metal; mirrors of base metal (excl. optical elements) 01/01/1988 31/12/2500 -830610 01/01/1988 31/12/2500 LIBEN Bells, gongs and the like, non-electric, of base metal (excl. musical instruments) 01/01/1988 31/12/2500 -83061000 01/01/1988 31/12/2500 LIBEN Bells, gongs and the like, non-electric, of base metal (excl. musical instruments) 01/01/1988 31/12/2500 -830621 01/01/1988 31/12/2500 LIBEN Statuettes and other ornaments, of base metal, plated with precious metal (excl. works of art, collectors' pieces and antiques) 01/01/1988 31/12/2500 -83062100 01/01/1988 31/12/2500 LIBEN Statuettes and other ornaments, of base metal, plated with precious metal (excl. works of art, collectors' pieces and antiques) 01/01/1988 31/12/2500 -830629 01/01/1988 31/12/2500 LIBEN Statuettes and other ornaments, of base metal, not plated with precious metal (excl. works of art, collectors' pieces and antiques) 01/01/1988 31/12/2500 -83062900 01/01/2011 31/12/2500 LIBEN Statuettes and other ornaments, of base metal, not plated with precious metal (excl. works of art, collectors' pieces and antiques) 01/01/2011 31/12/2500 -83062910 01/01/1988 31/12/2010 LIBEN Statuettes and other ornaments, of copper, not plated with precious metal (excl. works of art, collectors' pieces and antiques) 01/01/1988 31/12/2010 -83062990 01/01/1988 31/12/2010 LIBEN Statuettes and other ornaments, of base metal other than copper, not plated with precious metal (excl. works of art, collectors' pieces and antiques) 01/01/1988 31/12/2010 -830630 01/01/1988 31/12/2500 LIBEN Photograph, picture or similar frames, of base metal; mirrors of base metal (excl. optical elements) 01/01/1988 31/12/2500 -83063000 01/01/1988 31/12/2500 LIBEN Photograph, picture or similar frames, of base metal; mirrors of base metal (excl. optical elements) 01/01/1988 31/12/2500 -8307 01/01/1988 31/12/2500 LIBEN Flexible tubing of base metal, with or without fittings 01/01/1988 31/12/2500 -830710 01/01/1988 31/12/2500 LIBEN Flexible tubing of iron or steel, with or without fittings 01/01/1988 31/12/2500 -83071000 01/01/2006 31/12/2500 LIBEN Flexible tubing of iron or steel, with or without fittings 01/01/2006 31/12/2500 -83071010 01/01/1988 31/12/2005 LIBEN Flexible tubing of iron or steel, with fittings attached, for civil aircraft 01/01/1988 31/12/2005 -83071090 01/01/1988 31/12/2005 LIBEN Flexible tubing of iron or steel, with or without fittings (excl. that with fittings attached, for civil aircraft) 01/01/1988 31/12/2005 -830790 01/01/1988 31/12/2500 LIBEN Flexible tubing of base metal other than iron or steel, with or without fittings 01/01/1988 31/12/2500 -83079000 01/01/2006 31/12/2500 LIBEN Flexible tubing of base metal other than iron or steel, with or without fittings 01/01/2006 31/12/2500 -83079010 01/01/1988 31/12/2005 LIBEN Flexible tubing of base metal other than iron or steel, with fittings attached, for civil aircraft 01/01/1988 31/12/2005 -83079090 01/01/1988 31/12/2005 LIBEN Flexible tubing of base metal other than iron or steel, with or without fittings (excl. that with fittings attached, for civil aircraft) 01/01/1988 31/12/2005 -8308 01/01/1988 31/12/2500 LIBEN Clasps, frames with clasps, buckles, buckle-clasps, hooks, eyes, eyelets and the like, of base metal, of a kind used for clothing, footwear, awnings, handbags, travel goods or other made-up articles, tubular or bifurcated rivets, of base metal; beads and spangles of base metal 01/01/1988 31/12/2500 -830810 01/01/1988 31/12/2500 LIBEN Hooks, eyes and eyelets, of base metal, of a kind used for clothing, footwear, awnings, handbags, travel goods or other made-up articles 01/01/1988 31/12/2500 -83081000 01/01/1988 31/12/2500 LIBEN Hooks, eyes and eyelets, of base metal, of a kind used for clothing, footwear, awnings, handbags, travel goods or other made-up articles 01/01/1988 31/12/2500 -830820 01/01/1988 31/12/2500 LIBEN Tubular or bifurcated rivets, of base metal 01/01/1988 31/12/2500 -83082000 01/01/1988 31/12/2500 LIBEN Tubular or bifurcated rivets, of base metal 01/01/1988 31/12/2500 -830890 01/01/1988 31/12/2500 LIBEN Clasps, frames with clasps without locks, buckles and buckle-clasps, of base metal, for clothing, footwear, handbags, travel goods or other made-up articles, incl. parts of articles of heading 8308, of base metal (excl. hooks, eyes, eyelets and tubular or bifurcated rivets) 01/01/1988 31/12/2500 -83089000 01/01/1988 31/12/2500 LIBEN Clasps, frames with clasps without locks, buckles and buckle-clasps, of base metal, for clothing, footwear, handbags, travel goods or other made-up articles, incl. parts of articles of heading 8308, of base metal (excl. hooks, eyes, eyelets and tubular or bifurcated rivets) 01/01/1988 31/12/2500 -8309 01/01/1988 31/12/2500 LIBEN Stoppers, caps and lids, incl. crown corks, screw caps and pouring stoppers, capsules for bottles, threaded bungs, bung covers, seals and other packing accessories, of base metal 01/01/1988 31/12/2500 -830910 01/01/1988 31/12/2500 LIBEN Crown corks of base metal 01/01/1988 31/12/2500 -83091000 01/01/1988 31/12/2500 LIBEN Crown corks of base metal 01/01/1988 31/12/2500 -830990 01/01/1988 31/12/2500 LIBEN Stoppers, caps and lids, incl. screw caps and pouring stoppers, capsules for bottles, threaded bungs, bung covers, seals and other packing accessories of base metal (excl. crow corks) 01/01/1988 31/12/2500 -83099010 01/01/1988 31/12/2500 LIBEN Capsules of lead; capsules of aluminium of a diameter > 21 mm (excl. crown corks) 01/01/1988 31/12/2500 -83099090 01/01/1988 31/12/2500 LIBEN Stoppers, caps and lids, incl. screw caps and pouring stoppers, capsules for bottles, threaded bungs, bung covers, seals and other packing accessories, of base metal (excl. crown corks, capsules of lead and capsules of aluminium of a diameter > 21 mm) 01/01/1988 31/12/2500 -8310 01/01/1988 31/12/2500 LIBEN Sign-plates, nameplates, address-plates and similar plates, numbers, letters and other symbols, of base metal, incl. traffic signs (excl. those of heading 9405, type and the like, and signal boards, signal discs and signal arms for traffic of heading 8608) 01/01/1988 31/12/2500 -831000 01/01/1988 31/12/2500 LIBEN Sign-plates, nameplates, address-plates and similar plates, numbers, letters and other symbols, of base metal, incl. traffic signs (excl. those of heading 9405, type and the like, and signal boards, signal discs and signal arms for traffic of heading 8608) 01/01/1988 31/12/2500 -83100000 01/01/1988 31/12/2500 LIBEN Sign-plates, nameplates, address-plates and similar plates, numbers, letters and other symbols, of base metal, incl. traffic signs (excl. those of heading 9405, type and the like, and signal boards, signal discs and signal arms for traffic of heading 8608) 01/01/1988 31/12/2500 -8311 01/01/1988 31/12/2500 LIBEN Wire, rods, tubes, plates, electrodes and similar products, of base metal or of metal carbides, coated or cored with flux material, of a kind used for soldering, brazing, welding or deposition of metal or of metal carbides; wire and rods, of agglomerated base metal powder, used for metal spraying 01/01/1988 31/12/2500 -831110 01/01/1988 31/12/2500 LIBEN Coated electrodes of base metal, for electric arc-welding 01/01/1988 31/12/2500 -83111000 01/01/2011 31/12/2500 LIBEN Coated electrodes of base metal, for electric arc-welding 01/01/2011 31/12/2500 -83111010 01/01/1988 31/12/2010 LIBEN Welding electrodes cored with iron or steel and coated with refractory material, for electric arc-welding 01/01/1988 31/12/2010 -83111090 01/01/1988 31/12/2010 LIBEN Coated electrodes of base metal, for electric arc-welding (excl. those cored with iron or steel and coated with refractory material) 01/01/1988 31/12/2010 -831120 01/01/1988 31/12/2500 LIBEN Cored wire of base metal, for electric arc-welding 01/01/1988 31/12/2500 -83112000 01/01/1988 31/12/2500 LIBEN Cored wire of base metal, for electric arc-welding 01/01/1988 31/12/2500 -831130 01/01/1988 31/12/2500 LIBEN Coated rods and cored wire, of base metal, for soldering, brazing or welding by flame (excl. wire and rods cored with solder which, excl. the flux material, contains >= 2% by weight of precious metal) 01/01/1988 31/12/2500 -83113000 01/01/1988 31/12/2500 LIBEN Coated rods and cored wire, of base metal, for soldering, brazing or welding by flame (excl. wire and rods cored with solder which, excl. the flux material, contains >= 2% by weight of precious metal) 01/01/1988 31/12/2500 -831190 01/01/1988 31/12/2500 LIBEN Wire, rods, tubes, plates, electrodes and the like, of base metal or of metal carbides, coated or cored with flux material, for soldering, brazing, welding or deposition of metal or metal carbides, n.e.s., and wire and rods of agglomerated base metal powder, for metal spraying, n.e.s. 01/01/1988 31/12/2500 -83119000 01/01/1988 31/12/2500 LIBEN Wire, rods, tubes, plates, electrodes and the like, of base metal or of metal carbides, coated or cored with flux material, for soldering, brazing, welding or deposition of metal or metal carbides, n.e.s., and wire and rods of agglomerated base metal powder, for metal spraying, n.e.s. 01/01/1988 31/12/2500 -83CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 83 01/01/2002 31/12/2500 -83CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 83 01/01/2002 31/12/2500 -83CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 83 01/01/2002 31/12/2500 -83MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -83MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -83MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -83SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 83 01/01/1988 31/12/2500 -83SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 83 and SITC section 0 01/01/1997 31/12/2001 -83SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 83 and SITC group 000 01/01/1997 31/12/2001 -83SSS6 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 83 and SITC section 6 01/01/1997 31/12/2500 -83SSS697 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 83 and SITC group 697 01/01/1997 31/12/2500 -83SSS699 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 83 and SITC group 699 01/01/1997 31/12/2500 -83SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 83 and SITC section 8 01/01/1997 31/12/2500 -83SSS895 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 83 and SITC group 895 01/01/1997 31/12/2500 -83SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 83 and SITC section 9 01/01/1988 31/12/1996 -83SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 83 and SITC section 9 01/01/1997 31/12/2500 -83SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 83 and SITC group 999 01/01/1988 31/12/1996 -83SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 83 and SITC group 999 01/01/1997 31/12/2500 -83VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 83 for the assembly of motor vehicles 01/01/1988 31/12/2500 -83VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 83 for the assembly of motor vehicles 01/01/1988 31/12/2500 -83VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 83 for the assembly of motor vehicles 01/01/1988 31/12/2500 -84 01/01/1988 31/12/2500 LIBEN NUCLEAR REACTORS, BOILERS, MACHINERY AND MECHANICAL APPLIANCES; PARTS THEREOF 01/01/1988 31/12/2500 -8401 01/01/1988 31/12/2500 LIBEN Nuclear reactors; fuel elements "cartridges", non-irradiated, for nuclear reactors; machinery and apparatus for isotopic separation; parts thereof 01/01/1988 31/12/2500 -840110 01/01/1988 31/12/2500 LIBEN Nuclear reactors [Euratom] 01/01/1988 31/12/2500 -84011000 01/01/1988 31/12/2500 LIBEN Nuclear reactors [Euratom] 01/01/1988 31/12/2500 -840120 01/01/1988 31/12/2500 LIBEN Machinery and apparatus for isotopic separation and parts thereof, n.e.s. [Euratom] 01/01/1988 31/12/2500 -84012000 01/01/1988 31/12/2500 LIBEN Machinery and apparatus for isotopic separation and parts thereof, n.e.s. [Euratom] 01/01/1988 31/12/2500 -840130 01/01/1988 31/12/2500 LIBEN Fuel elements "cartridges", non-irradiated, in casing with handling fixtures, for nuclear reactors [Euratom] 01/01/1988 31/12/2500 -84013000 01/01/1988 31/12/2500 LIBEN Fuel elements "cartridges", non-irradiated, in casing with handling fixtures, for nuclear reactors [Euratom] 01/01/1988 31/12/2500 -840140 01/01/1988 31/12/2500 LIBEN Parts of nuclear reactors, n.e.s. [Euratom] 01/01/1988 31/12/2500 -84014000 01/01/1997 31/12/2500 LIBEN Parts of nuclear reactors, n.e.s. [Euratom] 01/01/1997 31/12/2500 -84014010 01/01/1988 31/12/1996 LIBEN Parts of nuclear reactors of open-die forged steel n.e.s., "Euratom" 01/01/1988 31/12/1996 -84014090 01/01/1988 31/12/1996 LIBEN Parts of nuclear reactors n.e.s., "Euratom" 01/01/1988 31/12/1996 -8401S7 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 8401 and SITC section 7 01/01/2006 31/12/2500 -8401S718 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 8401 and SITC group 718 01/01/2006 31/12/2500 -8402 01/01/1988 31/12/2500 LIBEN Steam or other vapour generating boilers (excl. central heating hot water boilers capable also of producing low pressure steam); superheated water boilers; parts thereof 01/01/1988 31/12/2500 -840211 01/01/1988 31/12/2500 LIBEN Watertube boilers with a steam production > 45 t/hour 01/01/1988 31/12/2500 -84021100 01/01/1988 31/12/2500 LIBEN Watertube boilers with a steam production > 45 t/hour 01/01/1988 31/12/2500 -840212 01/01/1988 31/12/2500 LIBEN Watertube boilers with a steam production <= 45 t/hour (excl. central heating hot water boilers capable also of producing low pressure steam) 01/01/1988 31/12/2500 -84021200 01/01/1988 31/12/2500 LIBEN Watertube boilers with a steam production <= 45 t/hour (excl. central heating hot water boilers capable also of producing low pressure steam) 01/01/1988 31/12/2500 -840219 01/01/1988 31/12/2500 LIBEN Vapour generating boilers, incl. hybrid boilers (excl. central heating hot water boilers capable also of producing low pressure steam) 01/01/1988 31/12/2500 -84021910 01/01/1988 31/12/2500 LIBEN Firetube boilers (excl. central heating hot water boilers capable also of producing low pressure steam) 01/01/1988 31/12/2500 -84021990 01/01/1988 31/12/2500 LIBEN Vapour generating boilers, incl. hybrid boilers (excl. watertube boilers, firetube boilers and central heating hot water boilers capable also of producing low pressure steam) 01/01/1988 31/12/2500 -840220 01/01/1988 31/12/2500 LIBEN Superheated water boilers 01/01/1988 31/12/2500 -84022000 01/01/1988 31/12/2500 LIBEN Superheated water boilers 01/01/1988 31/12/2500 -840290 01/01/1988 31/12/2500 LIBEN Parts of vapour generating boilers and superheated water boilers, n.e.s. 01/01/1988 31/12/2500 -84029000 01/01/1988 31/12/2500 LIBEN Parts of vapour generating boilers and superheated water boilers, n.e.s. 01/01/1988 31/12/2500 -8402I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8402; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8402I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8402; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8402I1 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8402; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -8402I100 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8402; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -8402I2 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8402; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -8402I200 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8402; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -8402I3 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8402; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -8402I300 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8402; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -8402I7 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8402; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -8402I700 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8402; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -8403 01/01/1988 31/12/2500 LIBEN Central heating boilers, non-electric; parts thereof (excl. vapour generating boilers and superheated water boilers of heading 8402) 01/01/1988 31/12/2500 -840310 01/01/1988 31/12/2500 LIBEN Central heating boilers, non-electric (excl. vapour generating boilers and superheated water boilers of heading 8402) 01/01/1988 31/12/2500 -84031010 01/01/1988 31/12/2500 LIBEN Central heating boilers, non-electric, of cast iron (excl. vapour generating boilers and superheated water boilers of heading 8402) 01/01/1988 31/12/2500 -84031090 01/01/1988 31/12/2500 LIBEN Central heating boilers, non-electric (excl. of cast iron, and vapour generating boilers and superheated water boilers of heading 8402) 01/01/1988 31/12/2500 -840390 01/01/1988 31/12/2500 LIBEN Parts of central heating boilers, n.e.s. 01/01/1988 31/12/2500 -84039010 01/01/1988 31/12/2500 LIBEN Parts of central heating boilers of cast iron, n.e.s. 01/01/1988 31/12/2500 -84039090 01/01/1988 31/12/2500 LIBEN Parts of central heating boilers, n.e.s. 01/01/1988 31/12/2500 -8404 01/01/1988 31/12/2500 LIBEN Auxiliary plant for use with boilers of heading 8402 or 8403, e.g. economizers, superheaters, soot removers and gas recoverers; condensers for steam or other vapour power units; parts thereof 01/01/1988 31/12/2500 -840410 01/01/1988 31/12/2500 LIBEN Auxiliary plant for use with boilers of heading 8402 or 8403, e.g. economizers, superheaters, soot removers and gas recoverers; 01/01/1988 31/12/2500 -84041000 01/01/1988 31/12/2500 LIBEN Auxiliary plant for use with boilers of heading 8402 or 8403, e.g. economizers, superheaters, soot removers and gas recoverers; 01/01/1988 31/12/2500 -840420 01/01/1988 31/12/2500 LIBEN Condensers for steam or other vapour power units 01/01/1988 31/12/2500 -84042000 01/01/1988 31/12/2500 LIBEN Condensers for steam or other vapour power units 01/01/1988 31/12/2500 -840490 01/01/1988 31/12/2500 LIBEN Parts of auxiliary plant of heading 8402 or 8403 and condensers for steam or other vapour power units, n.e.s. 01/01/1988 31/12/2500 -84049000 01/01/1988 31/12/2500 LIBEN Parts of auxiliary plant of heading 8402 or 8403 and condensers for steam or other vapour power units, n.e.s. 01/01/1988 31/12/2500 -8404I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8404; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8404I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8404; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8404I1 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8404; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -8404I100 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8404; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -8404I3 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8404; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -8404I300 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8404; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -8405 01/01/1988 31/12/2500 LIBEN Producer gas or water gas generators, with or without their purifiers; acetylene gas generators and similar water process gas generators, with or without their purifiers; parts thereof (excl. coke ovens, electrolytic process gas generators and carbide lamps) 01/01/1988 31/12/2500 -840510 01/01/1988 31/12/2500 LIBEN Producer gas or water gas generators, with or without their purifiers; acetylene gas generators and similar water process gas generators, with or without their purifiers (excl. coke ovens, electrolytic process gas generators and carbide lamps) 01/01/1988 31/12/2500 -84051000 01/01/1988 31/12/2500 LIBEN Producer gas or water gas generators, with or without their purifiers; acetylene gas generators and similar water process gas generators, with or without their purifiers (excl. coke ovens, electrolytic process gas generators and carbide lamps) 01/01/1988 31/12/2500 -840590 01/01/1988 31/12/2500 LIBEN Parts of producer gas or water gas generators and acetylene gas generators or similar water process gas generators, n.e.s. 01/01/1988 31/12/2500 -84059000 01/01/1988 31/12/2500 LIBEN Parts of producer gas or water gas generators and acetylene gas generators or similar water process gas generators, n.e.s. 01/01/1988 31/12/2500 -8406 01/01/1988 31/12/2500 LIBEN Steam turbines and other vapour turbines; parts thereof 01/01/1988 31/12/2500 -840610 01/01/1996 31/12/2500 LIBEN Steam and other vapour turbines for marine propulsion 01/01/1996 31/12/2500 -84061000 01/01/1996 31/12/2500 LIBEN Steam and other vapour turbines for marine propulsion 01/01/1996 31/12/2500 -840611 01/01/1988 31/12/1995 LIBEN Steam and other vapour turbines for marine propulsion 01/01/1988 31/12/1995 -84061100 01/01/1988 31/12/1995 LIBEN Steam and other vapour turbines for marine propulsion 01/01/1988 31/12/1995 -840619 01/01/1988 31/12/1995 LIBEN Steam and other vapour turbines (excl. those for marine propulsion) 01/01/1988 31/12/1995 -84061911 01/01/1988 31/12/1995 LIBEN Steam turbines for electricity generation, of a power <= 10.000 kW 01/01/1988 31/12/1995 -84061913 01/01/1988 31/12/1995 LIBEN Steam turbines for electricity generation, of a power > 10.000 kW but <= 40.000 kW 01/01/1988 31/12/1995 -84061915 01/01/1988 31/12/1994 LIBEN Steam turbines for electricity generation, of a power > 40 000 kw but =< 10 000 kw 01/01/1988 31/12/1994 -84061918 01/01/1995 31/12/1995 LIBEN Steam turbines for electricity generation, of a power of > 40.000 kW 01/01/1995 31/12/1995 -84061919 01/01/1988 31/12/1994 LIBEN Steam turbines for electricity generation, of a power > 10 000 kw 01/01/1988 31/12/1994 -84061990 01/01/1988 31/12/1995 LIBEN Steam and other vapour turbines (excl. for marine propulsion and electricity generation) 01/01/1988 31/12/1995 -840681 01/01/1996 31/12/2500 LIBEN Steam and other vapour turbines, of an output > 40 MW (excl. those for marine propulsion) 01/01/1996 31/12/2500 -84068100 01/01/2010 31/12/2500 LIBEN Steam and other vapour turbines, of an output > 40 MW (excl. those for marine propulsion) 01/01/2010 31/12/2500 -84068110 01/01/1996 31/12/2009 LIBEN Steam turbines for electricity generation, of an output of > 40 MW 01/01/1996 31/12/2009 -84068190 01/01/1996 31/12/2009 LIBEN Steam and other vapour turbines, of an output > 40 MW (excl. for marine propulsion and electricity generation) 01/01/1996 31/12/2009 -840682 01/01/1996 31/12/2500 LIBEN Steam and other vapour turbines, of an output <= 40 MW (excl. those for marine propulsion) 01/01/1996 31/12/2500 -84068200 01/01/2010 31/12/2500 LIBEN Steam and other vapour turbines, of an output <= 40 MW (excl. those for marine propulsion) 01/01/2010 31/12/2500 -84068211 01/01/1996 31/12/2009 LIBEN Steam turbines for electricity generation, of an output <= 10 MW 01/01/1996 31/12/2009 -84068219 01/01/1996 31/12/2009 LIBEN Steam turbines for electricity generation, of an output > 10 MW but <= 40 MW 01/01/1996 31/12/2009 -84068290 01/01/1996 31/12/2009 LIBEN Steam and other vapour turbines, of an output <= 40 MW (excl. for marine propulsion and electricity generation) 01/01/1996 31/12/2009 -840690 01/01/1988 31/12/2500 LIBEN Parts of steam and other vapour turbines, n.e.s. 01/01/1988 31/12/2500 -84069000 01/01/1988 31/12/1993 LIBEN Parts of steam and other vapour turbines n.e.s. 01/01/1988 31/12/1993 -84069010 01/01/1994 31/12/2500 LIBEN Stator blades, rotors and their blades, of turbines 01/01/1994 31/12/2500 -84069090 01/01/1994 31/12/2500 LIBEN Parts of steam turbines and other vapour turbines, n.e.s. (excl. stator blades, rotors and their blades) 01/01/1994 31/12/2500 -8406I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8406; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8406I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8406; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8406S7 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 8406 and SITC section 7 01/01/2006 31/12/2500 -8406S712 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 8406 and SITC group 712 01/01/2006 31/12/2500 -8407 01/01/1988 31/12/2500 LIBEN Spark-ignition reciprocating or rotary internal combustion piston engine 01/01/1988 31/12/2500 -840710 01/01/1988 31/12/2500 LIBEN Spark-ignition reciprocating or rotary internal combustion piston engine, for aircraft 01/01/1988 31/12/2500 -84071000 01/01/2006 31/12/2500 LIBEN Spark-ignition reciprocating or rotary internal combustion piston engine, for aircraft 01/01/2006 31/12/2500 -84071010 01/01/1988 31/12/2005 LIBEN Spark-ignition reciprocating or rotary internal combustion piston engine, for civil aircraft 01/01/1988 31/12/2005 -84071090 01/01/1988 31/12/2005 LIBEN Spark-ignition reciprocating or rotary internal combustion piston engine, for aircraft (excl. those for civil aircraft of subheading 8407.10.10) 01/01/1988 31/12/2005 -840721 01/01/1988 31/12/2500 LIBEN Spark-ignition outboard motors for marine propulsion 01/01/1988 31/12/2500 -84072110 01/01/1995 31/12/2500 LIBEN Spark-ignition outboard motors for marine propulsion, of a cylinder capacity <= 325 cm³ 01/01/1995 31/12/2500 -84072111 01/01/1988 31/12/1994 LIBEN Outboard motors for marine propulsion, of a cylinder capacity =< 325 cc and a power =< 3 kw 01/01/1988 31/12/1994 -84072119 01/01/1988 31/12/1994 LIBEN Outboard motors for marine propulsion, of a cylinder capacity =< 325 cc and a power > 3 kw 01/01/1988 31/12/1994 -84072191 01/01/1988 31/12/2500 LIBEN Spark-ignition outboard motors for marine propulsion, of a cylinder capacity > 325 cm³ and a power <= 30 kW 01/01/1988 31/12/2500 -84072199 01/01/1988 31/12/2500 LIBEN Spark-ignition outboard motors for marine propulsion, of a cylinder capacity > 325 cm³ and a power > 30 kW 01/01/1988 31/12/2500 -840729 01/01/1988 31/12/2500 LIBEN Spark-ignition reciprocating or rotary engines, for marine propulsion (excl. outboard motors) 01/01/1988 31/12/2500 -84072900 01/01/2010 31/12/2500 LIBEN Spark-ignition reciprocating or rotary engines, for marine propulsion (excl. outboard motors) 01/01/2010 31/12/2500 -84072910 01/01/1988 31/12/1994 LIBEN Spark-ignition reciprocating or rotary internal combustion piston engines for marine propulsion, used (excl. outboard motors) 01/01/1988 31/12/1994 -84072920 01/01/1995 31/12/2009 LIBEN Spark-ignition reciprocating or rotary engines, for marine propulsion, of a power <= 200 kW (other than outboard motors) 01/01/1995 31/12/2009 -84072930 01/01/1988 31/12/1994 LIBEN Spark-ignition reciprocating or rotary internal combustion piston engines for marine propulsion, new, of a power < 100 kw (excl. outboard motors) 01/01/1988 31/12/1994 -84072950 01/01/1988 31/12/1994 LIBEN Spark-ignition reciprocating or rotary internal combustion piston engines for marine propulsion, new, of a power => 100 kw but =< 150 kw (excl. outboard motors) 01/01/1988 31/12/1994 -84072970 01/01/1988 31/12/1994 LIBEN Spark-ignition reciprocating or rotary internal combustion piston engines for marine propulsion, new, of a power > 150 kw but =< 200 kw (excl. outboard motors) 01/01/1988 31/12/1994 -84072980 01/01/1995 31/12/2009 LIBEN Spark-ignition reciprocating or rotary engines, for marine propulsion, of a power > 200 kW (other than outboard motors) 01/01/1995 31/12/2009 -84072990 01/01/1988 31/12/1994 LIBEN Spark-ignition reciprocating or rotary internal combustion piston engines for marine propulsion, new, of a power > 200 kw (excl. outboard motors) 01/01/1988 31/12/1994 -840731 01/01/1988 31/12/2500 LIBEN Spark-ignition reciprocating piston engine, of a kind used for the propulsion of vehicles of chapter 87, of a cylinder capacity <= 50 cm³ 01/01/1988 31/12/2500 -84073100 01/01/1988 31/12/2500 LIBEN Spark-ignition reciprocating piston engine, of a kind used for the propulsion of vehicles of chapter 87, of a cylinder capacity <= 50 cm³ 01/01/1988 31/12/2500 -840732 01/01/1988 31/12/2500 LIBEN Spark-ignition reciprocating piston engine, of a kind used for the propulsion of vehicles of chapter 87, of a cylinder capacity > 50 cm³ but <= 250 cm³ 01/01/1988 31/12/2500 -84073200 01/01/1988 31/12/1993 LIBEN Spark-ignition reciprocating piston engines, of a kind used for the propulsion of vehicles of chapter 87, of a cylinder capacity > 50 cc but =< 250 cc 01/01/1988 31/12/1993 -84073210 01/01/1994 31/12/2500 LIBEN Spark-ignition reciprocating piston engine, of a kind used for the propulsion of vehicles of chapter 87, of a cylinder capacity of > 50 cm³ but <= 125 cm³ 01/01/1994 31/12/2500 -84073290 01/01/1994 31/12/2500 LIBEN Spark-ignition reciprocating piston engine, of a kind used for the propulsion of vehicles of chapter 87, of a cylinder capacity of > 125 cm³ but <= 250 cm³ 01/01/1994 31/12/2500 -840733 01/01/1988 31/12/2500 LIBEN Spark-ignition reciprocating piston engine, of a kind used for vehicles of chapter 87, of a cylinder capacity > 250 cm³ but <= 1.000 cm³ 01/01/1988 31/12/2500 -84073300 01/01/2010 31/12/2013 LIBEN Spark-ignition reciprocating piston engine, of a kind used for vehicles of chapter 87, of a cylinder capacity > 250 cm³ but <= 1.000 cm³ 01/01/2010 31/12/2013 -84073310 01/01/1988 31/12/2009 LIBEN Spark-ignition reciprocating piston engine, of a kind used for vehicles of chapter 87, of a cylinder capacity > 250 cm³ but <= 1.000 cm³, for the industrial assembly of pedestrian-controlled tractors of subheading 8701.10 and motor vehicles of heading 8703, 8704 and 8705 01/01/1988 31/12/2009 -84073320 01/01/2014 31/12/2500 LIBEN Spark-ignition reciprocating piston engine, of a kind used for vehicles of chapter 87, of a cylinder capacity > 250 cm³ but <= 500 cm³ 01/01/2014 31/12/2500 -84073380 01/01/2014 31/12/2500 LIBEN Spark-ignition reciprocating piston engine, of a kind used for vehicles of chapter 87, of a cylinder capacity > 500 cm³ but <= 1000 cm³ 01/01/2014 31/12/2500 -84073390 01/01/1988 31/12/2009 LIBEN Spark-ignition reciprocating piston engine, of a kind used for vehicles of chapter 87, of a cylinder capacity > 250 cm³ but <= 1.000 cm³ (excl. those for the industrial assembly of pedestrian-controlled tractors of subheading 8701.10 and motor vehicles of heading 8703, 8704 and 8705) 01/01/1988 31/12/2009 -840734 01/01/1988 31/12/2500 LIBEN Spark-ignition reciprocating piston engine, of a kind used for vehicles of chapter 87, of a cylinder capacity > 1.000 cm³ 01/01/1988 31/12/2500 -84073410 01/01/1988 31/12/2500 LIBEN Spark ignition reciprocating piston engine of a cylinder capacity > 1.000 cm³, for the industrial assembly of : pedestrian-controlled tractors of subheading 8701.10, motor vehicles of heading 8703, motor vehicles of heading 8704 with engines of a cylinder capacity < 2.800 cm³ and motor vehicles of heading 8705 01/01/1988 31/12/2500 -84073430 01/01/1988 31/12/2500 LIBEN Spark-ignition reciprocating piston engine, of a kind used for vehicles of chapter 87, used, of a cylinder capacity > 1.000 cm³ 01/01/1988 31/12/2500 -84073491 01/01/1988 31/12/2500 LIBEN Spark-ignition reciprocating piston engine, of a kind used for vehicles of chapter 87, new, of a cylinder capacity <= 1.500 cm³ but > 1.000 cm³ (excl. engines of subheading 8407.34.10) 01/01/1988 31/12/2500 -84073499 01/01/1988 31/12/2500 LIBEN Spark-ignition reciprocating piston engine, of a kind used for vehicles of chapter 87, new, of a cylinder capacity > 1.500 cm³ (excl. those used for the industrial assembly of pedestrian-controlled tractors of subheading 8701.10, motor vehicles of heading 8703, motor vehicles of heading 8704 with engines of a cylinder capacity < 2.800 cm³ and motor vehicles of heading 8705) 01/01/1988 31/12/2500 -840734SS 01/01/2007 31/12/2500 LIBEN Confidential trade of heading 8407 34 01/01/2007 31/12/2500 -840790 01/01/1988 31/12/2500 LIBEN Spark-ignition reciprocating or rotary internal combustion piston engine (excl. those for aircraft or marine propulsion and reciprocating piston engine of a kind used for vehicles of chapter 87) 01/01/1988 31/12/2500 -84079010 01/01/1988 31/12/2500 LIBEN Spark-ignition reciprocating or rotary internal combustion piston engine, of a cylinder capacity <= 250 cm³ (excl. those for aircraft or marine propulsion and reciprocating piston engine of a kind used for vehicles of chapter 87) 01/01/1988 31/12/2500 -84079050 01/01/1988 31/12/2500 LIBEN Spark-ignition rotary internal combustion piston engine of a cylinder capacity > 250 cm³, for the industrial assembly of : pedestrian-controlled tractors of subheading 8701.10, motor vehicles of heading 8703, motor vehicles of heading 8704 with engines of a cylinder capacity < 2.800 cm³ and motor vehicles of heading 8705 01/01/1988 31/12/2500 -84079070 01/01/1988 31/12/1994 LIBEN Spark-ignition reciprocating or rotary internal combustion piston engines of a cylinder capacity > 250 cc, used (excl. reciprocating piston engines of a kind used for vehicles of chapter 87 and engines for aircraft and marine propulsion) 01/01/1988 31/12/1994 -84079080 01/01/1995 31/12/2500 LIBEN Spark-ignition reciprocating or rotary piston engine, of a cylinder capacity > 250 cm³, of a power <= 10 kW (other than engines of subheading 8407.90.50, reciprocating piston engine of a kind used for the propulsion of vehicles of chapter 87, aircraft engines and marine propulsion engines) 01/01/1995 31/12/2500 -84079090 01/01/1995 31/12/2500 LIBEN Spark-ignition reciprocating or rotary piston engine, of a cylinder capacity > 250 cm³, of a power > 10 kW (other than engines of subheading 8407.90.50, reciprocating piston engine of a kind used for the propulsion of vehicles of chapter 87, aircraft engines and marine propulsion engines) 01/01/1995 31/12/2500 -84079091 01/01/1988 31/12/1994 LIBEN Spark-ignition reciprocating or rotary internal combustion piston engines of a cylinder capacity > 250 cc and a power =< 10 kw, new (excl. engines of subheading no 8407.90-50, reciprocating piston engines of a kind used for vehicles of chapter 87 and engines for aircraft and marine propulsion) 01/01/1988 31/12/1994 -84079093 01/01/1988 31/12/1994 LIBEN Spark-ignition reciprocating or rotary internal combustion piston engines of a cylinder capacity > 250 cc and a power > 10 kw but =< 50 kw, new (excl. engines of subheading no 8407.90-50, reciprocating piston engines of a kind used for vehicles of chapter 87 and engines for aircraft and marine propulsion) 01/01/1988 31/12/1994 -84079099 01/01/1988 31/12/1994 LIBEN Spark-ignition reciprocating or rotary internal combustion piston engines of a cylinder capacity > 250 cc and a power > 50 kw, new (excl. engines of subheading no 8407.90-50, reciprocating piston engines of a kind used for vehicles of chapter 87 and engines for aircraft and marine propulsion) 01/01/1988 31/12/1994 -8407S7 01/01/2005 31/12/2500 LIBEN Confidential trade of heading 8407 and SITC section 7 01/01/2005 31/12/2500 -8407S713 01/01/2005 31/12/2500 LIBEN Confidential trade of heading 8407 and SITC group 713 01/01/2005 31/12/2500 -8408 01/01/1988 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" 01/01/1988 31/12/2500 -840810 01/01/1988 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", for marine propulsion 01/01/1988 31/12/2500 -84081010 01/01/1988 31/12/1994 LIBEN Compression-ignition internal combustion piston engines, for marine propulsion, used 01/01/1988 31/12/1994 -84081011 01/01/1995 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", used, for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00 01/01/1995 31/12/2500 -84081019 01/01/1995 31/12/2500 LIBEN Compression-ignition combustion piston engine, used, for vessels (other than for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00) 01/01/1995 31/12/2500 -84081021 01/01/1988 31/12/1994 LIBEN Compression-ignition internal combustion piston engines, for marine propulsion, new, of a power =< 15 kw 01/01/1988 31/12/1994 -84081022 01/01/1995 31/12/2009 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00, new, of a power <= 15 kW 01/01/1995 31/12/2009 -84081023 01/01/2010 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00, new, of a power <= 50 kW 01/01/2010 31/12/2500 -84081024 01/01/1995 31/12/2009 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", for vessels, new, of a power <= 15 kW (excl. for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00) 01/01/1995 31/12/2009 -84081025 01/01/1988 31/12/1994 LIBEN Compression-ignition internal combustion piston engines, for marine propulsion, new, of a power > 15 kw but =< 50 kw 01/01/1988 31/12/1994 -84081026 01/01/1995 31/12/2009 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00, new, of a power > 15 kW but <= 50 kW 01/01/1995 31/12/2009 -84081027 01/01/2010 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", for vessels, new, of a power <= 50 kW (excl. for seagoing vessels of heading 8901 to 8906, for tugs of subheading 8904.00.10 and for warships of subheading 8906.10.00) 01/01/2010 31/12/2500 -84081028 01/01/1995 31/12/2009 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", for vessels, new, of a power > 15 kW but <= 50 kW (excl. for seagoing vessels of heading 8901 to 8906, for tugs of subheading 8904.00.10 and for warships of subheading 8906.10.00) 01/01/1995 31/12/2009 -84081030 01/01/1988 31/12/1994 LIBEN Compression-ignition internal combustion piston engines, for marine propulsion, new, of a power > 50 kw but =< 100 kw 01/01/1988 31/12/1994 -84081031 01/01/1995 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00, new, of a power > 50 kW but <= 100 kW 01/01/1995 31/12/2500 -84081039 01/01/1995 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" for vessels, new, of a power > 50 kW but <= 100 kW (excl. for vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00) 01/01/1995 31/12/2500 -84081040 01/01/1988 31/12/1994 LIBEN Compression-ignition internal combustion piston engines, for marine propulsion, new, of a power > 100 kw but =< 200 kw 01/01/1988 31/12/1994 -84081041 01/01/1995 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00, new, of a power > 100 kW but <= 200 kW 01/01/1995 31/12/2500 -84081049 01/01/1995 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" for vessels, new, of a power > 100 kW but <= 200 kW (excl. for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00) 01/01/1995 31/12/2500 -84081050 01/01/1988 31/12/1994 LIBEN Compression-ignition internal combustion piston engines, for marine propulsion, new, of a power > 200 kw but =< 300 kw 01/01/1988 31/12/1994 -84081051 01/01/1995 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00, new, of a power > 200 kW but <= 300 kW 01/01/1995 31/12/2500 -84081059 01/01/1995 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", of vessels, new, of a power > 200 kW but <= 300 kW (excl. for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00) 01/01/1995 31/12/2500 -84081060 01/01/1988 31/12/1994 LIBEN Compression-ignition internal combustion piston engines, for marine propulsion, new, of a power > 300 kw but =< 500 kw 01/01/1988 31/12/1994 -84081061 01/01/1995 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00, new, of a power > 300 kW but <= 500 kW 01/01/1995 31/12/2500 -84081069 01/01/1995 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", for vessels, new, of a power > 300 kW but <= 500 kW (excl. for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00) 01/01/1995 31/12/2500 -84081070 01/01/1988 31/12/1994 LIBEN Compression-ignition internal combustion piston engines, for marine propulsion, new, of a power > 500 kw but =< 1 000 kw 01/01/1988 31/12/1994 -84081071 01/01/1995 31/12/2500 LIBEN Compression-engine internal combustion piston engine "diesel or semi-diesel engine", for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00, new, of a power > 500 kW but <= 1.000 kW 01/01/1995 31/12/2500 -84081079 01/01/1995 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" for vessels, new, of a power > 500 kW but <= 1.000 kW (excl. for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00) 01/01/1995 31/12/2500 -84081080 01/01/1988 31/12/1994 LIBEN Compression-ignition internal combustion piston engines, for marine propulsion, new, of a power > 1 000 kw but =< 5 000 kw 01/01/1988 31/12/1994 -84081081 01/01/1995 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00, new, of a power > 1.000 kW but <= 5.000 kW 01/01/1995 31/12/2500 -84081089 01/01/1995 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" for vessels, new, of a power > 1.000 kW but <= 5.000 kW (excl. for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00) 01/01/1995 31/12/2500 -84081090 01/01/1988 31/12/1994 LIBEN Compression-ignition internal combustion piston engines, for marine propulsion, new, of a power > 5 000 kw 01/01/1988 31/12/1994 -84081091 01/01/1995 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00, new, of a power > 5.000 kW 01/01/1995 31/12/2500 -84081099 01/01/1995 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" for vessels, new, of a power > 5.000 kW (excl. for seagoing vessels of heading 8901 to 8906, tugs of subheading 8904.00.10 and warships of subheading 8906.10.00) 01/01/1995 31/12/2500 -840820 01/01/1988 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", for the propulsion of vehicles of chapter 87 01/01/1988 31/12/2500 -84082010 01/01/1988 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" for the industrial assembly of : pedestrian-controlled tractors of subheading 8701.10, motor vehicles of heading 8703, motor vehicles of heading 8704 with engines of a cylinder capacity < 2.500 cm³ and motor vehicles of heading 8705 01/01/1988 31/12/2500 -84082031 01/01/1988 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" for wheeled agricultural or forestry tractors, of a power <= 50 kW 01/01/1988 31/12/2500 -84082035 01/01/1988 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" for wheeled agricultural or forestry tractors, of a power > 50 kW but <= 100 kW 01/01/1988 31/12/2500 -84082037 01/01/1988 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" for wheeled agricultural or forestry tractors, of a power > 100 kW 01/01/1988 31/12/2500 -84082051 01/01/1988 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" for vehicles of chapter 87, of a power <= 50 kW (excl. engines of subheading 8408.20.10 and engines for wheeled agricultural or forestry tractors) 01/01/1988 31/12/2500 -84082055 01/01/1988 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" for vehicles of chapter 87, of a power > 50 kW but <= 100 kW (excl. engines of subheading 8408.20.10 and engines for wheeled agricultural or forestry tractors) 01/01/1988 31/12/2500 -84082057 01/01/1988 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" for vehicles of chapter 87, of a power > 100 kW but <= 200 kW (excl. engines of subheading 8408.20.10 and engines for wheeled agricultural or forestry tractors) 01/01/1988 31/12/2500 -84082099 01/01/1988 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" for vehicles of chapter 87, of a power > 200 kW (excl. engines of subheading 8408.20.10 and engines for wheeled agricultural or forestry tractors) 01/01/1988 31/12/2500 -840820SS 01/01/2007 31/12/2500 LIBEN Confidential trade of heading 8408 20 01/01/2007 31/12/2500 -840890 01/01/1988 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" (excl. engines for marine propulsion and engines for vehicles of chapter 87) 01/01/1988 31/12/2500 -84089010 01/01/1988 31/12/2005 LIBEN Compression-ignition internal combustion piston engine for civil aircraft 01/01/1988 31/12/2005 -84089021 01/01/1988 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine" for rail traction 01/01/1988 31/12/2500 -84089027 01/01/2006 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", used (excl. engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/2006 31/12/2500 -84089029 01/01/1988 31/12/2005 LIBEN Compression-ignition internal combustion piston engine, used (excl. engines for civil aircraft of subheading 8408.90.10, engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/1988 31/12/2005 -84089031 01/01/1988 31/12/2005 LIBEN Compression-ignition internal combustion piston engine, new, of a power <= 15 kW (excl. engines for civil aircraft of subheading 8408.90.10, engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/1988 31/12/2005 -84089033 01/01/1991 31/12/2005 LIBEN Compression-ignition internal combustion piston engine, new, of a power > 15 kW but <= 30 kW (excl. for ships and motor vehicles of chapter 87 and of subheading 8408.90.10 and 8408.90.21) 01/01/1991 31/12/2005 -84089035 01/01/1988 31/12/1990 LIBEN Compression-ignition internal combustion piston engines, new, of a power > 15 kw but =< 50 kw (excl. engines for civil aircraft of subheading no 8408.90-10, engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/1988 31/12/1990 -84089036 01/01/1991 31/12/2005 LIBEN Compression-ignition internal combustion piston engine, new, of a power > 30 kW but <= 50 kW (excl. for ships and motor vehicles of chapter 87 and of subheading 8408.90.10 and 8408.90.21) 01/01/1991 31/12/2005 -84089037 01/01/1988 31/12/2005 LIBEN Compression-ignition internal combustion piston engine, new, of a power > 50 kW but <= 100 kW (excl. engines for civil aircraft of subheading 8408.90.10, engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/1988 31/12/2005 -84089041 01/01/2006 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", new, of a power <= 15 kW (excl. engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/2006 31/12/2500 -84089043 01/01/2006 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", new, of a power > 15 kW but <= 30 kW (excl. engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/2006 31/12/2500 -84089045 01/01/2006 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", new, of a power > 30 kW but <= 50 kW (excl. engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/2006 31/12/2500 -84089047 01/01/2006 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", new, of a power > 50 kW but <= 100 kW (excl. engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/2006 31/12/2500 -84089051 01/01/1988 31/12/2005 LIBEN Compression-ignition internal combustion piston engine, new, of a power > 100 kW but <= 200 kW (excl. engines for civil aircraft of subheading 8408.90.10, engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/1988 31/12/2005 -84089055 01/01/1988 31/12/2005 LIBEN Compression-ignition internal combustion piston engine, new, of a power > 200 kW but <= 300 kW (excl. engines for civil aircraft of subheading 8408.90.10, engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/1988 31/12/2005 -84089057 01/01/1988 31/12/2005 LIBEN Compression-ignition internal combustion piston engine, new, of a power > 300 kW but <= 500 kW (excl. engines for civil aircraft of subheading 8408.90.10, engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/1988 31/12/2005 -84089061 01/01/2006 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", new, of a power > 100 kW but <= 200 kW (excl. engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/2006 31/12/2500 -84089065 01/01/2006 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", new, of a power > 200 kW but <= 300 kW (excl. engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/2006 31/12/2500 -84089067 01/01/2006 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", new, of a power > 300 kW but <= 500 kW (excl. engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/2006 31/12/2500 -84089071 01/01/1988 31/12/2005 LIBEN Compression-ignition internal combustion piston engine, new, of a power > 500 kW but <= 1.000 kW (excl. engines for civil aircraft of subheading 8408.90.10, engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/1988 31/12/2005 -84089075 01/01/1988 31/12/2005 LIBEN Compression-ignition internal combustion piston engine, new, of a power > 1.000 kW but <= 5.000 kW (excl. engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/1988 31/12/2005 -84089081 01/01/2006 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", new, of a power > 500 kW but <= 1.000 kW (excl. engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/2006 31/12/2500 -84089085 01/01/2006 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", new, of a power > 1.000 kW but <= 5.000 kW (excl. engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/2006 31/12/2500 -84089089 01/01/2006 31/12/2500 LIBEN Compression-ignition internal combustion piston engine "diesel or semi-diesel engine", new, of a power > 5.000 kW (excl. engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/2006 31/12/2500 -84089099 01/01/1988 31/12/2005 LIBEN Compression-ignition internal combustion piston engine, new, of a power > 5.000 kW (excl. engines for rail traction or marine propulsion and engines for motor vehicles of chapter 87) 01/01/1988 31/12/2005 -8408S7 01/01/2005 31/12/2500 LIBEN Confidential trade of heading 8408 and SITC section 7 01/01/2005 31/12/2500 -8408S713 01/01/2005 31/12/2500 LIBEN Confidential trade of heading 8408 and SITC group 713 01/01/2005 31/12/2500 -8409 01/01/1988 31/12/2500 LIBEN Parts suitable for use solely or principally with internal combustion piston engine of heading 8407 or 8408 01/01/1988 31/12/2500 -840910 01/01/1988 31/12/2500 LIBEN Parts suitable for use solely or principally with internal combustion piston engine for aircraft, n.e.s. 01/01/1988 31/12/2500 -84091000 01/01/2006 31/12/2500 LIBEN Parts suitable for use solely or principally with internal combustion piston engine for aircraft, n.e.s. 01/01/2006 31/12/2500 -84091010 01/01/1988 31/12/2005 LIBEN Parts suitable for use solely or principally with internal combustion piston engine for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -84091090 01/01/1988 31/12/2005 LIBEN Parts suitable for use solely or principally with internal combustion piston engine for aircraft, n.e.s. 01/01/1988 31/12/2005 -840991 01/01/1988 31/12/2500 LIBEN Parts suitable for use solely or principally with spark-ignition internal combustion piston engine, n.e.s. 01/01/1988 31/12/2500 -84099100 01/01/1988 31/12/2500 LIBEN Parts suitable for use solely or principally with spark-ignition internal combustion piston engine, n.e.s. 01/01/1988 31/12/2500 -840999 01/01/1988 31/12/2500 LIBEN Parts suitable for use solely or principally with compression-ignition internal combustion piston engine "diesel or semi-diesel engine", n.e.s. 01/01/1988 31/12/2500 -84099900 01/01/1988 31/12/2500 LIBEN Parts suitable for use solely or principally with compression-ignition internal combustion piston engine "diesel or semi-diesel engine", n.e.s. 01/01/1988 31/12/2500 -8409I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8409; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8409I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8409; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8409I2 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8409; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -8409I200 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8409; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -8409I7 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8409; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -8409I700 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8409; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -8410 01/01/1988 31/12/2500 LIBEN Hydraulic turbines, water wheels, and regulators therefor (excl. hydraulic power engines and motors of heading 8412) 01/01/1988 31/12/2500 -841011 01/01/1988 31/12/2500 LIBEN Hydraulic turbines and water wheels, of a power <= 1.000 kW (excl. hydraulic power engines and motors of heading 8412) 01/01/1988 31/12/2500 -84101100 01/01/1988 31/12/2500 LIBEN Hydraulic turbines and water wheels, of a power <= 1.000 kW (excl. hydraulic power engines and motors of heading 8412) 01/01/1988 31/12/2500 -841012 01/01/1988 31/12/2500 LIBEN Hydraulic turbines and water wheels, of a power > 1.000 kW but <= 10.000 kW (excl. hydraulic power engines and motors of heading 8412) 01/01/1988 31/12/2500 -84101200 01/01/1988 31/12/2500 LIBEN Hydraulic turbines and water wheels, of a power > 1.000 kW but <= 10.000 kW (excl. hydraulic power engines and motors of heading 8412) 01/01/1988 31/12/2500 -841013 01/01/1988 31/12/2500 LIBEN Hydraulic turbines and water wheels, of a power > 10.000 kW (excl. hydraulic power engines and motors of heading 8412) 01/01/1988 31/12/2500 -84101300 01/01/1988 31/12/2500 LIBEN Hydraulic turbines and water wheels, of a power > 10.000 kW (excl. hydraulic power engines and motors of heading 8412) 01/01/1988 31/12/2500 -841090 01/01/1988 31/12/2500 LIBEN Parts of hydraulic turbines and water wheels incl. regulators 01/01/1988 31/12/2500 -84109000 01/01/1988 31/12/1989 LIBEN Parts of hydraulic turbines and water wheels n.e.s.; hydraulic turbine regulators 01/01/1988 31/12/1989 -84109000 01/01/2010 31/12/2500 LIBEN Parts of hydraulic turbines and water wheels incl. regulators 01/01/2010 31/12/2500 -84109010 01/01/1990 31/12/2009 LIBEN Parts of hydraulic turbines, water wheels incl. regulators, of cast iron or cast steel 01/01/1990 31/12/2009 -84109090 01/01/1990 31/12/2009 LIBEN Parts of hydraulic turbines, water wheels incl. regulators (excl. of cast iron or cast steel) 01/01/1990 31/12/2009 -8411 01/01/1988 31/12/2500 LIBEN Turbojets, turbopropellers and other gas turbines 01/01/1988 31/12/2500 -841111 01/01/1988 31/12/2500 LIBEN Turbojets of a thrust <= 25 kN 01/01/1988 31/12/2500 -84111100 01/01/2006 31/12/2500 LIBEN Turbojets of a thrust <= 25 kN 01/01/2006 31/12/2500 -84111110 01/01/1988 31/12/2005 LIBEN Turbojets of a thrust <= 25 kN, for civil aircraft 01/01/1988 31/12/2005 -84111190 01/01/1988 31/12/2005 LIBEN Turbojets of a thrust <= 25 kN (excl. those for civil aircraft of subheading 8411.11.10) 01/01/1988 31/12/2005 -841112 01/01/1988 31/12/2500 LIBEN Turbojets of a thrust > 25 kN 01/01/1988 31/12/2500 -84111210 01/01/2006 31/12/2500 LIBEN Turbojets of a thrust > 25 kN but <= 44 kN 01/01/2006 31/12/2500 -84111211 01/01/1988 31/12/2005 LIBEN Turbojets of a thrust > 25 kN but <= 44 kN, for civil aircraft 01/01/1988 31/12/2005 -84111213 01/01/1988 31/12/2005 LIBEN Turbojets of a thrust > 44 kN but <= 132 kN, for civil aircraft 01/01/1988 31/12/2005 -84111219 01/01/1988 31/12/2005 LIBEN Turbojets of a thrust > 132 kN, for civil aircraft 01/01/1988 31/12/2005 -84111230 01/01/2006 31/12/2500 LIBEN Turbojets of a thrust > 44 kN but <= 132 kN 01/01/2006 31/12/2500 -84111280 01/01/2006 31/12/2500 LIBEN Turbojets of a thrust > 132 kN 01/01/2006 31/12/2500 -84111290 01/01/1988 31/12/2005 LIBEN Turbojets of a thrust > 25 kN (excl. those for civil aircraft of subheading 8411.12.11 to 8411.12.19) 01/01/1988 31/12/2005 -841121 01/01/1988 31/12/2500 LIBEN Turbopropellers of a power <= 1.100 kW 01/01/1988 31/12/2500 -84112100 01/01/2006 31/12/2500 LIBEN Turbopropellers of a power <= 1.100 kW 01/01/2006 31/12/2500 -84112110 01/01/1988 31/12/2005 LIBEN Turbopropellers of a power <= 1.100 kW, for civil aircraft 01/01/1988 31/12/2005 -84112190 01/01/1988 31/12/2005 LIBEN Turbopropellers of a power <= 1.100 kW (excl. those for civil aircraft of subheading 8411.21.10) 01/01/1988 31/12/2005 -841122 01/01/1988 31/12/2500 LIBEN Turbopropellers of a power > 1.100 kW 01/01/1988 31/12/2500 -84112211 01/01/1988 31/12/2005 LIBEN Turbopropellers of a power > 1.100 kW but <= 3.730 kW, for civil aircraft 01/01/1988 31/12/2005 -84112219 01/01/1988 31/12/2005 LIBEN Turbopropellers of a power > 3.730 kW, for civil aircraft 01/01/1988 31/12/2005 -84112220 01/01/2006 31/12/2500 LIBEN Turbopropellers of a power > 1.100 kW but <= 3.730 kW 01/01/2006 31/12/2500 -84112280 01/01/2006 31/12/2500 LIBEN Turbopropellers of a power > 3.730 kW 01/01/2006 31/12/2500 -84112290 01/01/1988 31/12/2005 LIBEN Turbopropellers of a power > 1.100 kW (excl. those for civil aircraft of subheading 8411.22.11 and 8411.22.19) 01/01/1988 31/12/2005 -841181 01/01/1988 31/12/2500 LIBEN Gas turbines of a power <= 5.000 kW (excl. turbojets and turbopropellers) 01/01/1988 31/12/2500 -84118100 01/01/2006 31/12/2500 LIBEN Gas turbines of a power <= 5.000 kW (excl. turbojets and turbopropellers) 01/01/2006 31/12/2500 -84118110 01/01/1988 31/12/2005 LIBEN Gas turbines of a power <= 5.000 kW, for civil aircraft (excl. turbojets and turbopropellers) 01/01/1988 31/12/2005 -84118190 01/01/1988 31/12/2005 LIBEN Gas turbines of a power <= 5.000 kW (excl. those for civil aircraft of subheading 8411.81.10, turbojets and turbopropellers) 01/01/1988 31/12/2005 -841182 01/01/1988 31/12/2500 LIBEN Gas turbines of a power > 5.000 kW (excl. turbojets and turbopropellers) 01/01/1988 31/12/2500 -84118210 01/01/1988 31/12/2005 LIBEN Gas turbines of a power > 5.000 kW, for civil aircraft (excl. turbojets and turbopropellers) 01/01/1988 31/12/2005 -84118220 01/01/2006 31/12/2500 LIBEN Gas turbines of a power > 5.000 kW but <= 20.000 kW (excl. turbojets and turbopropellers) 01/01/2006 31/12/2500 -84118260 01/01/2006 31/12/2500 LIBEN Gas turbines of a power > 20.000 kW but <= 50.000 kW (excl. turbojets and turbopropellers) 01/01/2006 31/12/2500 -84118280 01/01/2006 31/12/2500 LIBEN Gas turbines of a power > 50.000 kW (excl. turbojets and turbopropellers) 01/01/2006 31/12/2500 -84118281 01/01/1999 31/12/2000 LIBEN Gas turbines of a power <= 7.000 kW, for use in combined heat and power stations 01/01/1999 31/12/2000 -84118289 01/01/1999 31/12/2000 LIBEN Gas turbines of a power > 5.000 kW but <= 20.000 kW (excl. those for civil aircraft of subheading 8411.82.10, gas turbines of a power <= 7.000 kW for use in combined heat and power stations, and turbo-jets and turbo-propellers) 01/01/1999 31/12/2000 -84118291 01/01/1988 31/12/1998 LIBEN Gas turbines of a power > 5.000 kW but <= 20.000 kW (excl. those for civil aircraft of subheading 8411.82.10, turbo-jets and turbo-propellers) 01/01/1988 31/12/1998 -84118291 01/01/2001 31/12/2005 LIBEN Gas turbines of a power > 5.000 kW but <= 20.000 kW (excl. those for civil aircraft of subheading 8411.82.10 and turbojets and turbopropellers) 01/01/2001 31/12/2005 -84118293 01/01/1988 31/12/2005 LIBEN Gas turbines of a power > 20.000 kW but <= 50.000 kW (excl. those for civil aircraft of subheading 8411.82.10, turbojets and turbopropellers) 01/01/1988 31/12/2005 -84118299 01/01/1988 31/12/2005 LIBEN Gas turbines of a power > 50.000 kW (excl. those for civil aircraft of subheading 8411.82.10, turbojets and turbopropellers) 01/01/1988 31/12/2005 -841191 01/01/1988 31/12/2500 LIBEN Parts of turbojets or turbopropellers, n.e.s. 01/01/1988 31/12/2500 -84119100 01/01/2006 31/12/2500 LIBEN Parts of turbojets or turbopropellers, n.e.s. 01/01/2006 31/12/2500 -84119110 01/01/1988 31/12/2005 LIBEN Parts of turbojets or turbopropellers, for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -84119190 01/01/1988 31/12/2005 LIBEN Parts of turbojets or turbopropellers, n.e.s. 01/01/1988 31/12/2005 -841191SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 8411 91 01/01/2006 31/12/2500 -841199 01/01/1988 31/12/2500 LIBEN Parts of gas turbines, n.e.s. 01/01/1988 31/12/2500 -84119900 01/01/2006 31/12/2500 LIBEN Parts of gas turbines, n.e.s. 01/01/2006 31/12/2500 -84119910 01/01/1988 31/12/2005 LIBEN Parts of gas turbines for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -84119990 01/01/1988 31/12/2005 LIBEN Parts of gas turbines, n.e.s. 01/01/1988 31/12/2005 -841199SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 8411 99 01/01/2006 31/12/2500 -8411I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8411; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8411I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8411; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8412 01/01/1988 31/12/2500 LIBEN Engines and motors (excl. steam turbines, internal combustion piston engine, hydraulic turbines, water wheels, gas turbines and electric motors); parts thereof 01/01/1988 31/12/2500 -841210 01/01/1988 31/12/2500 LIBEN Reaction engines other than turbojets 01/01/1988 31/12/2500 -84121000 01/01/2006 31/12/2500 LIBEN Reaction engines other than turbojets 01/01/2006 31/12/2500 -84121010 01/01/1988 31/12/2005 LIBEN Reaction engines other than turbojets, for civil aircraft 01/01/1988 31/12/2005 -84121090 01/01/1988 31/12/2005 LIBEN Reaction engines other than turbojets (excl. those for civil aircraft of subheading 8412.10.10) 01/01/1988 31/12/2005 -841221 01/01/1988 31/12/2500 LIBEN Hydraulic power engines and motors, linear acting "cylinders" 01/01/1988 31/12/2500 -84122110 01/01/1988 31/12/2005 LIBEN Hydraulic power engines and motors, linear acting, for civil aircraft 01/01/1988 31/12/2005 -84122120 01/01/2006 31/12/2500 LIBEN Hydraulic systems, linear acting "cylinders" 01/01/2006 31/12/2500 -84122180 01/01/2006 31/12/2500 LIBEN Hydraulic power engines and motors, linear acting "cylinders" (excl. hydraulic systems) 01/01/2006 31/12/2500 -84122191 01/01/1988 31/12/2005 LIBEN Hydraulic systems, linear acting (excl. those for civil aircraft of subheading 8412.21.10) 01/01/1988 31/12/2005 -84122199 01/01/1988 31/12/2005 LIBEN Hydraulic power engines and motors, linear acting (excl. those for civil aircraft of subheading 8412.21.10 and hydraulic systems) 01/01/1988 31/12/2005 -841229 01/01/1988 31/12/2500 LIBEN Hydraulic power engines and motors (excl. hydraulic turbines and water wheels of heading 8410, steam turbines and hydraulic power engines and motors, linear acting) 01/01/1988 31/12/2500 -84122910 01/01/1988 31/12/2005 LIBEN Hydraulic motors for civil aircraft (excl. hydraulic power engines and motors, linear acting) 01/01/1988 31/12/2005 -84122920 01/01/2006 31/12/2500 LIBEN Hydraulic systems powered using hydraulic fluid power motors (excl. hydraulic power engines and motors, linear acting[cylinders]) 01/01/2006 31/12/2500 -84122950 01/01/1988 31/12/2005 LIBEN Hydraulic systems powered using hydraulic fluid power motors (excl. those for civil aircraft of subheading 8412.29.10 and hydraulic power engines and motors, linear acting) 01/01/1988 31/12/2005 -84122981 01/01/2006 31/12/2500 LIBEN Hydraulic fluid power motors (excl. linear acting [cylinders] and hydraulic systems) 01/01/2006 31/12/2500 -84122989 01/01/2006 31/12/2500 LIBEN Hydraulic power engines and motors (excl. linear acting [cylinders], hydraulic systems, hydraulic fluid power motors, hydraulic turbines and water wheels of heading 8410 and steam turbines) 01/01/2006 31/12/2500 -84122991 01/01/1988 31/12/2005 LIBEN Hydraulic fluid power motors (excl. those for civil aircraft of subheading 8412.29.10 and hydraulic power engines and motors, linear acting and hydraulic systems) 01/01/1988 31/12/2005 -84122999 01/01/1988 31/12/2005 LIBEN Hydraulic power engines and motors (excl. hydraulic fluid power motors, incl. hydraulic power engines and motors, linear acting, hydraulic turbines and water wheels of heading 8410 and steam turbines) 01/01/1988 31/12/2005 -841231 01/01/1988 31/12/2500 LIBEN Pneumatic power engines and motors, linear-acting, "cylinders" 01/01/1988 31/12/2500 -84123100 01/01/2006 31/12/2500 LIBEN Pneumatic power engines and motors, linear-acting, "cylinders" 01/01/2006 31/12/2500 -84123110 01/01/1988 31/12/2005 LIBEN Pneumatic power engines and motors, linear-acting, for civil aircraft 01/01/1988 31/12/2005 -84123190 01/01/1988 31/12/2005 LIBEN Pneumatic power engines and motors, linear-acting (excl. those for civil aircraft of subheading 8412.31.10) 01/01/1988 31/12/2005 -841239 01/01/1988 31/12/2500 LIBEN Pneumatic power engines and motors (excl. linear acting) 01/01/1988 31/12/2500 -84123900 01/01/2006 31/12/2500 LIBEN Pneumatic power engines and motors (excl. linear acting) 01/01/2006 31/12/2500 -84123910 01/01/1988 31/12/2005 LIBEN Pneumatic power engines and motors, for civil aircraft (excl. linear acting) 01/01/1988 31/12/2005 -84123990 01/01/1988 31/12/2005 LIBEN Pneumatic power engines and motors (excl. those for civil aircraft of subheading 8412.31.10 and linear acting engines and motors) 01/01/1988 31/12/2005 -841280 01/01/1988 31/12/2500 LIBEN Engines and motors (excl. steam turbines, internal combustion piston engine, hydraulic turbines, water wheels, gas turbines, reaction engines, hydraulic power engines and motors, pneumatic power engines and motors and electric motors) 01/01/1988 31/12/2500 -84128010 01/01/1988 31/12/2500 LIBEN Steam or other vapour power engines (excl. steam or other vapour generating boilers and turbines) 01/01/1988 31/12/2500 -84128080 01/01/2006 31/12/2500 LIBEN Engines and motors, non-electrical (excl. steam turbines, internal combustion piston engine, hydraulic turbines, water wheels, gas turbines, reaction engines, hydraulic power engines and motors, pneumatic power engines and motors, steam or other vapour power engines and electric motors) 01/01/2006 31/12/2500 -84128091 01/01/1988 31/12/2005 LIBEN Engines and motors, for civil aircraft (excl. internal combustion piston engine, gas turbines, reaction engines, hydraulic or pneumatic power engines and motors and electric motors) 01/01/1988 31/12/2005 -84128099 01/01/1988 31/12/2005 LIBEN Engines and motors (excl. those for civil aircraft of subheading 8412.80.91, steam turbines, internal combustion piston engine, hydraulic turbines, water wheels, gas turbines, reaction engines, hydraulic power engines and motors, pneumatic power engines and motors, steam or other vapour power engines and electric motors) 01/01/1988 31/12/2005 -841290 01/01/1988 31/12/2500 LIBEN Parts of non-electrical engines and motors, n.e.s. 01/01/1988 31/12/2500 -84129010 01/01/1988 31/12/2005 LIBEN Parts of engines and motors, for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -84129020 01/01/2006 31/12/2500 LIBEN Parts of reaction engines, n.e.s. (excl. of turbojets) 01/01/2006 31/12/2500 -84129030 01/01/1988 31/12/2005 LIBEN Parts of reaction engines other than turbojets, n.e.s. 01/01/1988 31/12/2005 -84129040 01/01/2006 31/12/2500 LIBEN Parts of hydraulic power engines and motors, n.e.s. 01/01/2006 31/12/2500 -84129050 01/01/1988 31/12/2005 LIBEN Parts of hydraulic power engines and motors, n.e.s. 01/01/1988 31/12/2005 -84129080 01/01/2006 31/12/2500 LIBEN Parts of non-electrical engines and motors, n.e.s. 01/01/2006 31/12/2500 -84129090 01/01/1988 31/12/2005 LIBEN Parts of engines and motors, n.e.s. 01/01/1988 31/12/2005 -8412I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8412; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8412I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8412; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8413 01/01/1988 31/12/2500 LIBEN Pumps for liquids, whether or not fitted with a measuring device (excl. ceramic pumps and secretion aspirating pumps for medical use and medical pumps carried on or implanted in the body); liquid elevators (excl. pumps); parts thereof 01/01/1988 31/12/2500 -841311 01/01/1988 31/12/2500 LIBEN Pumps fitted or designed to be fitted with a measuring device, for dispensing fuel or lubricants, of the type used in filling stations or in garages 01/01/1988 31/12/2500 -84131100 01/01/1988 31/12/2500 LIBEN Pumps fitted or designed to be fitted with a measuring device, for dispensing fuel or lubricants, of the type used in filling stations or in garages 01/01/1988 31/12/2500 -841319 01/01/1988 31/12/2500 LIBEN Pumps for liquids, fitted or designed to be fitted with a measuring device (excl. pumps for dispensing fuel or lubricants, of the type used in filling stations or in garages) 01/01/1988 31/12/2500 -84131900 01/01/2006 31/12/2500 LIBEN Pumps for liquids, fitted or designed to be fitted with a measuring device (excl. pumps for dispensing fuel or lubricants, of the type used in filling stations or in garages) 01/01/2006 31/12/2500 -84131910 01/01/1988 31/12/2005 LIBEN Pumps for liquids, fitted or designed to be fitted with a measuring device, for civil aircraft 01/01/1988 31/12/2005 -84131990 01/01/1988 31/12/2005 LIBEN Pumps for liquids, fitted or designed to be fitted with a measuring device (excl. those for civil aircraft of subheading 8413.19.10 and pumps for dispensing fuel or lubricants, of the type used in filling stations or in garages) 01/01/1988 31/12/2005 -841320 01/01/1988 31/12/2500 LIBEN Hand pumps for liquids (excl. those of subheading 8413.11 and 8413.19) 01/01/1988 31/12/2500 -84132000 01/01/2006 31/12/2500 LIBEN Hand pumps for liquids (excl. those of subheading 8413.11 and 8413.19) 01/01/2006 31/12/2500 -84132010 01/01/1988 31/12/2005 LIBEN Hand pumps for civil aircraft (excl. those of subheading 8413.11.00 and 8413.19.00) 01/01/1988 31/12/2005 -84132090 01/01/1988 31/12/2005 LIBEN Hand pumps (excl. those for civil aircraft of subheading 8413.20.10 and pumps of subheading 8413.11 and 8413.19) 01/01/1988 31/12/2005 -841330 01/01/1988 31/12/2500 LIBEN Fuel, lubricating or cooling medium pumps for internal combustion piston engine 01/01/1988 31/12/2500 -84133010 01/01/1988 31/12/2005 LIBEN Fuel, lubricating or cooling medium pumps for internal combustion piston engine, for civil aircraft 01/01/1988 31/12/2005 -84133020 01/01/2006 31/12/2500 LIBEN Injection pumps for internal combustion piston engine 01/01/2006 31/12/2500 -84133080 01/01/2006 31/12/2500 LIBEN Fuel, lubricating or cooling medium pumps for internal combustion piston engine (excl. injection pumps) 01/01/2006 31/12/2500 -84133090 01/01/1988 31/12/1994 LIBEN Fuel, lubricating or cooling-medium pumps for internal combustion piston engines (excl. those for civil aircraft of subheading 8413.30-10) 01/01/1988 31/12/1994 -84133091 01/01/1995 31/12/2005 LIBEN Injection pumps for internal combustion piston engine (other than for civil aircraft of subheading 8413.30.10) 01/01/1995 31/12/2005 -84133099 01/01/1995 31/12/2005 LIBEN Fuel, lubricating or cooling medium pumps for internal combustion piston engine (other than for civil aircraft of heading 8413.30.10, and injection pumps) 01/01/1995 31/12/2005 -841340 01/01/1988 31/12/2500 LIBEN Concrete pumps 01/01/1988 31/12/2500 -84134000 01/01/1988 31/12/2500 LIBEN Concrete pumps 01/01/1988 31/12/2500 -841350 01/01/1988 31/12/2500 LIBEN Reciprocating positive displacement pumps for liquids, power-driven (excl. those of subheading 8413.11 and 8413,19, fuel, lubricating or cooling medium pumps for internal combustion piston engine and concrete pumps) 01/01/1988 31/12/2500 -84135010 01/01/1988 31/12/2005 LIBEN Reciprocating positive displacement pumps for civil aircraft (excl. those of subheading 8413.11 and 8413.19 and fuel, lubricating or cooling medium pumps for internal combustion piston engine) 01/01/1988 31/12/2005 -84135020 01/01/2006 31/12/2500 LIBEN Reciprocating positive displacement hydraulic units, with pumps 01/01/2006 31/12/2500 -84135030 01/01/1988 31/12/2005 LIBEN Reciprocating positive displacement hydraulic units, with pumps (excl. those for civil aircraft of subheading 8413.50.10) 01/01/1988 31/12/2005 -84135040 01/01/2006 31/12/2500 LIBEN Dosing and proportioning reciprocating positive displacement pumps, power-driven 01/01/2006 31/12/2500 -84135050 01/01/1988 31/12/2005 LIBEN Dosing and proportioning reciprocating positive displacement pumps, power-driven 01/01/1988 31/12/2005 -84135061 01/01/2006 31/12/2500 LIBEN Hydraulic fluid power piston pumps (excl. hydraulic units) 01/01/2006 31/12/2500 -84135069 01/01/2006 31/12/2500 LIBEN Piston pumps, power-driven (excl. pumps of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine, concrete pumps, hydraulic pumps, incl. hydraulic units, and dosing pumps) 01/01/2006 31/12/2500 -84135071 01/01/1988 31/12/2005 LIBEN Hydraulic fluid power piston pumps (excl. those for civil aircraft of subheading 8413.50.10 and hydraulic units) 01/01/1988 31/12/2005 -84135079 01/01/1988 31/12/2005 LIBEN Piston pumps, power-driven (excl. those for civil aircraft of subheading 8413.50.10, pumps of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine, concrete pumps, hydraulic pumps, incl. hydraulic units, and dosing pumps) 01/01/1988 31/12/2005 -84135080 01/01/2006 31/12/2500 LIBEN Reciprocating positive displacement pumps, power-driven (excl. pumps of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine, concrete pumps, hydraulic units, dosing pumps and general piston pumps) 01/01/2006 31/12/2500 -84135090 01/01/1988 31/12/2005 LIBEN Reciprocating positive displacement pumps, power-driven (excl. those for civil aircraft of subheading 8413.50.10, pumps of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine, concrete pumps, hydraulic units, dosing pumps and general piston pumps) 01/01/1988 31/12/2005 -841360 01/01/1988 31/12/2500 LIBEN Rotary positive displacement pumps for liquids, power-driven (excl. those of subheading 8413.11 and 8413.19 and fuel, lubricating or cooling medium pumps for internal combustion piston engine) 01/01/1988 31/12/2500 -84136010 01/01/1988 31/12/2005 LIBEN Rotary positive displacement pumps, power-driven, for civil aircraft 01/01/1988 31/12/2005 -84136020 01/01/2006 31/12/2500 LIBEN Rotory positive displacement hydraulic units, with pumps 01/01/2006 31/12/2500 -84136030 01/01/1988 31/12/2005 LIBEN Rotory positive displacement hydraulic units, with pumps (excl. those for civil aircraft of subheading 8413.60.10) 01/01/1988 31/12/2005 -84136031 01/01/2006 31/12/2500 LIBEN Hydraulic fluid power gear pumps (excl. hydraulic units) 01/01/2006 31/12/2500 -84136039 01/01/2006 31/12/2500 LIBEN Gear pumps, power-driven (excl. pumps of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine and hydraulic pumps, incl. hydraulic units) 01/01/2006 31/12/2500 -84136041 01/01/1988 31/12/2005 LIBEN Hydraulic fluid power gear pumps (excl. those for civil aircraft of subheading 8413.60.10 and hydraulic units) 01/01/1988 31/12/2005 -84136049 01/01/1988 31/12/2005 LIBEN Gear pumps, power-driven (excl. those for civil aircraft of subheading 8413.60.10, pumps of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine and hydraulic pumps, incl. hydraulic units) 01/01/1988 31/12/2005 -84136051 01/01/1988 31/12/2005 LIBEN Hydraulic fluid power vane pumps (excl. those for civil aircraft of subheading 8413.60.10 and hydraulic units) 01/01/1988 31/12/2005 -84136059 01/01/1988 31/12/2005 LIBEN Vane pumps, power-driven (excl. those for civil aircraft of subheading 8413.60.10, pumps of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine and hydraulic pumps, incl. hydraulic units) 01/01/1988 31/12/2005 -84136060 01/01/1988 31/12/2005 LIBEN Screw pumps, power-driven (excl. those for civil aircraft of subheading 8413.60.10, pumps of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine, concrete pumps and hydraulic units) 01/01/1988 31/12/2005 -84136061 01/01/2006 31/12/2500 LIBEN Hydraulic fluid power vane pumps (excl. hydraulic units) 01/01/2006 31/12/2500 -84136069 01/01/2006 31/12/2500 LIBEN Vane pumps, power-driven (excl. pumps of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine and hydraulic pumps, incl. hydraulic units) 01/01/2006 31/12/2500 -84136070 01/01/2006 31/12/2500 LIBEN Screw pumps, power-driven (excl. pumps of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine, concrete pumps and hydraulic units) 01/01/2006 31/12/2500 -84136080 01/01/2006 31/12/2500 LIBEN Rotary positive displacement pumps, power-driven (excl. pumps of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine, concrete pumps, gear pumps, vane pumps, screw pumps and hydraulic units) 01/01/2006 31/12/2500 -84136090 01/01/1988 31/12/2005 LIBEN Rotary positive displacement pumps, power-driven (excl. those for civil aircraft of subheading 8413.60.10, pumps of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine, concrete pumps, gear pumps, vane pumps, screw pumps and hydraulic units) 01/01/1988 31/12/2005 -841370 01/01/1988 31/12/2500 LIBEN Centrifugal pumps, power-driven (excl. those of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine and concrete pumps) 01/01/1988 31/12/2500 -84137010 01/01/1988 31/12/2005 LIBEN Centrifugal pumps, power-driven, for civil aircraft (excl. those of subheading 8413.11 and 8413.19 and fuel, lubricating or cooling medium pumps for internal combustion piston engine) 01/01/1988 31/12/2005 -84137021 01/01/1988 31/12/2500 LIBEN Submersible pumps, single-stage 01/01/1988 31/12/2500 -84137029 01/01/1988 31/12/2500 LIBEN Submersible pumps, multi-stage 01/01/1988 31/12/2500 -84137030 01/01/1988 31/12/2500 LIBEN Glandless impeller pumps for heating systems and warm water supply 01/01/1988 31/12/2500 -84137035 01/01/2006 31/12/2500 LIBEN Pumps, power-driven, with a discharge outlet diameter <= 15 mm (excl. pumps of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine and submersible pumps) 01/01/2006 31/12/2500 -84137040 01/01/1988 31/12/2005 LIBEN Pumps, power-driven, with a discharge outlet diameter <= 15 mm (excl. those for civil aircraft of subheading 8413.70.10, pumps of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine and submersible pumps) 01/01/1988 31/12/2005 -84137045 01/01/2006 31/12/2500 LIBEN Channel impeller and side channel pumps 01/01/2006 31/12/2500 -84137050 01/01/1988 31/12/2005 LIBEN Channel impeller and side channel pumps 01/01/1988 31/12/2005 -84137051 01/01/2006 31/12/2500 LIBEN Radial flow centrifugal pumps with a discharge outlet diameter > 15 mm, single-stage, with single entry impeller, monobloc (excl. pumps of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine, concrete pumps, submersible pumps and impeller pumps for heating systems and warm water supply) 01/01/2006 31/12/2500 -84137059 01/01/2006 31/12/2500 LIBEN Radial flow centrifugal pumps with a discharge outlet diameter > 15 mm, single-stage, with single entry impeller (other than monobloc and excl. pumps of subheading 8413.11 and 8413.19) 01/01/2006 31/12/2500 -84137061 01/01/1988 31/12/2005 LIBEN Radial flow pumps with a discharge outlet diameter > 15 mm, single-stage, with single entry impeller, monobloc (excl. those for civil aircraft of subheading 8413.70.10, pumps of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine, concrete pumps, submersible pumps and impeller pumps for heating systems and warm water supply) 01/01/1988 31/12/2005 -84137065 01/01/2006 31/12/2500 LIBEN Radial flow centrifugal pumps with a discharge outlet diameter > 15 mm, single-stage, with more than one entry impeller (excl. pumps of subheading 8413.11 and 8413.19 and submersible pumps) 01/01/2006 31/12/2500 -84137069 01/01/1988 31/12/2005 LIBEN Radial flow pumps with a discharge outlet diameter > 15 mm, single-stage, with single entry impeller (other than monobloc and excl. those for civil aircraft of subheading 8413.70.10 and pumps of subheading 8413.11 and 8413.19) 01/01/1988 31/12/2005 -84137070 01/01/1988 31/12/2005 LIBEN Radial flow pumps with a discharge outlet diameter > 15 mm, single-stage, with more than one entry impeller (excl. those for civil aircraft of subheading 8413.70.10, pumps of subheading 8413.11 and 8413.19 and submersible pumps) 01/01/1988 31/12/2005 -84137075 01/01/2006 31/12/2500 LIBEN Radial flow centrifugal pumps with a discharge outlet diameter > 15 mm, multi-stage (excl. pumps of subheading 8413.11 and 8413.19 and submersible pumps) 01/01/2006 31/12/2500 -84137080 01/01/1988 31/12/2005 LIBEN Radial flow pumps with a discharge outlet diameter > 15 mm, multi-stage (excl. those for civil aircraft of subheading 8413.70.10, pumps of subheading 8413.11 and 8413.19 and submersible pumps) 01/01/1988 31/12/2005 -84137081 01/01/2006 31/12/2500 LIBEN Single-stage centrifugal pumps, power-driven, with a discharge outlet diameter > 15 mm (excl. pumps of subheading 8413.11 and 8413.19; fuel, lubricating or cooling medium pumps for internal combustion piston engine; concrete pumps; submersible pumps; impeller pumps for heating systems and warm water supply; channel impeller, side channel and general radial flow pumps) 01/01/2006 31/12/2500 -84137089 01/01/2006 31/12/2500 LIBEN Multi-stage centrifugal pumps, power-driven, with a discharge outlet diameter > 15 mm (excl. pumps of subheading 8413.11 and 8413.19; fuel, lubricating or cooling medium pumps for internal combustion piston engine; concrete pumps; submersible pumps; impeller pumps for heating systems and warm water supply; channel impeller, side channel and general radial flow pumps) 01/01/2006 31/12/2500 -84137091 01/01/1988 31/12/2005 LIBEN Single-stage centrifugal pumps, power-driven, with a discharge outlet diameter > 15 mm (excl. those for civil aircraft of subheading 8413.70.10; pumps of subheading 8413.11 and 8413.19; fuel, lubricating or cooling medium pumps for internal combustion piston engine; concrete pumps; submersible pumps; impeller pumps for heating systems and warm water supply; channel impeller, side channel and general radial flow pumps) 01/01/1988 31/12/2005 -84137099 01/01/1988 31/12/2005 LIBEN Multi-stage centrifugal pumps, power-driven, with a discharge outlet diameter > 15 mm (excl. those for civil aircraft of subheading 8413.70.10; pumps of subheading 8413.11 and 8413.19; fuel, lubricating or cooling medium pumps for internal combustion piston engine; concrete pumps; submersible pumps; impeller pumps for heating systems and warm water supply; channel impeller, side channel and general radial flow pumps) 01/01/1988 31/12/2005 -841381 01/01/1988 31/12/2500 LIBEN Pumps for liquids, power-driven (excl. those of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine, concrete pumps, general reciprocating or rotary positive displacement pumps and centrifugal pumps of all kinds) 01/01/1988 31/12/2500 -84138100 01/01/2006 31/12/2500 LIBEN Pumps for liquids, power-driven (excl. those of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine, concrete pumps, general reciprocating or rotary positive displacement pumps and centrifugal pumps of all kinds) 01/01/2006 31/12/2500 -84138110 01/01/1988 31/12/2005 LIBEN Pumps for liquids, power-driven, for civil aircraft (excl. those of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine, concrete pumps, general reciprocating or rotary positive displacement pumps and centrifugal pumps of all kinds) 01/01/1988 31/12/2005 -84138190 01/01/1988 31/12/2005 LIBEN Pumps for liquids, power-driven (excl. those for civil aircraft of subheading 8413.81.10, pumps of subheading 8413.11 and 8413.19, fuel, lubricating or cooling medium pumps for internal combustion piston engine, concrete pumps, general reciprocating or rotary positive displacement pumps and centrifugal pumps of all kinds) 01/01/1988 31/12/2005 -841382 01/01/1988 31/12/2500 LIBEN Liquid elevators (excl. pumps) 01/01/1988 31/12/2500 -84138200 01/01/1988 31/12/2500 LIBEN Liquid elevators (excl. pumps) 01/01/1988 31/12/2500 -841391 01/01/1988 31/12/2500 LIBEN Parts of pumps for liquids, n.e.s. 01/01/1988 31/12/2500 -84139100 01/01/2006 31/12/2500 LIBEN Parts of pumps for liquids, n.e.s. 01/01/2006 31/12/2500 -84139110 01/01/1988 31/12/2005 LIBEN Parts of pumps for liquids, for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -84139190 01/01/1988 31/12/2005 LIBEN Parts of pumps for liquids, n.e.s. 01/01/1988 31/12/2005 -841392 01/01/1988 31/12/2500 LIBEN Parts of liquid elevators, n.e.s. 01/01/1988 31/12/2500 -84139200 01/01/1988 31/12/2500 LIBEN Parts of liquid elevators, n.e.s. 01/01/1988 31/12/2500 -8413I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8413; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8413I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8413; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8413I4 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8413; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8413I400 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8413; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8414 01/01/1988 31/12/2500 LIBEN Air or vacuum pumps (excl. gas compound elevators and pneumatic elevators and conveyors); air or other gas compressors and fans; ventilating or recycling hoods incorporating a fan, whether or not fitted with filters; parts thereof 01/01/1988 31/12/2500 -841410 01/01/1988 31/12/2500 LIBEN Vacuum pumps 01/01/1988 31/12/2500 -84141010 01/01/1988 31/12/2005 LIBEN Vacuum pumps, for civil aircraft 01/01/1988 31/12/2005 -84141010 01/01/2017 31/12/2017 LIBEN Dryers for wood, paper pulp, paper or paperboard 01/01/2017 31/12/2017 -84141015 01/01/2018 31/12/2500 LIBEN Vacuum pumps of a kind used for the manufacture of semiconductors or solely or principally used for the manufacture of flat panel displays 01/01/2018 31/12/2500 -84141020 01/01/1998 31/12/2016 LIBEN Vacuum pumps for use in semiconductor production 01/01/1998 31/12/2016 -84141020 01/01/2017 31/12/2017 LIBEN Dryers (excl. dryers for agricultural products, for wood, paper pulp, paper or paperboard, for yarns, fabrics and other textile products, dryers for bottles or other containers, hairdryers, hand dryers and domestic appliances) 01/01/2017 31/12/2017 -84141025 01/01/2006 31/12/2016 LIBEN Rotary piston vacuum pumps, sliding vane rotary pumps, molecular drag pumps and Roots pumps 01/01/2006 31/12/2016 -84141025 01/01/2017 31/12/2500 LIBEN Rotary piston vacuum pumps, sliding vane rotary pumps, molecular drag pumps and Roots pumps (excl. pumps used in semiconductor or flat panel display production) 01/01/2017 31/12/2500 -84141030 01/01/1988 31/12/2005 LIBEN Rotary piston vacuum pumps, sliding vane rotary pumps, molecular drag pumps and Roots pumps (excl. those for civil aircraft of subheading 8414.10.10) 01/01/1988 31/12/2005 -84141050 01/01/1988 31/12/2005 LIBEN Diffusion pumps, cryopumps and adsorption pumps (excl. those for civil aircraft of subheading 8414.10.10) 01/01/1988 31/12/2005 -84141080 01/01/1998 31/12/2005 LIBEN Vacuum pumps (excl. those for civil aircraft of subheading 8414.10.10, vacuum pumps for use in semiconductor production, rotary piston vacuum pumps, sliding vane rotary pumps, molecular drag pumps and Roots pumps, diffusion pumps, cryopumps and adsorption pumps) 01/01/1998 31/12/2005 -84141081 01/01/2006 31/12/2016 LIBEN Diffusion pumps, cryopumps and adsorption pumps 01/01/2006 31/12/2016 -84141081 01/01/2017 31/12/2500 LIBEN Diffusion pumps, cryopumps and adsorption pumps (excl. pumps used in semiconductor or flat panel display production) 01/01/2017 31/12/2500 -84141089 01/01/2006 31/12/2016 LIBEN Vacuum pumps (excl. vacuum pumps for use in semiconductor production, rotary piston vacuum pumps, sliding vane rotary pumps, molecular drag pumps and Roots pumps, diffusion pumps, cryopumps and adsorption pumps) 01/01/2006 31/12/2016 -84141089 01/01/2017 31/12/2500 LIBEN Vacuum pumps (excl. pumps used in semiconductor or flat panel display production, rotary piston pumps, sliding vane rotary pumps, molecular drag pumps, Roots pumps, diffusion pumps, cryopumps and adsorption pumps) 01/01/2017 31/12/2500 -84141090 01/01/1988 31/12/1997 LIBEN Vacuum pumps (excl. those for civil aircraft of subheading 8414.10.10, rotary piston vacuum pumps, sliding vane rotary pumps, molecular drag pumps and Roots pumps, diffusion pumps, cryopumps and adsorption pumps) 01/01/1988 31/12/1997 -841420 01/01/1988 31/12/2500 LIBEN Hand-operated or foot-operated air pumps 01/01/1988 31/12/2500 -84142010 01/01/1988 31/12/2005 LIBEN Hand-operated or foot-operated air pumps, for civil aircraft 01/01/1988 31/12/2005 -84142020 01/01/2006 31/12/2500 LIBEN Handpumps for cycles 01/01/2006 31/12/2500 -84142080 01/01/2006 31/12/2500 LIBEN Hand-operated or foot-operated air pumps (excl. handpumps for cycles) 01/01/2006 31/12/2500 -84142091 01/01/1988 31/12/2005 LIBEN Hand pumps for cycles 01/01/1988 31/12/2005 -84142099 01/01/1988 31/12/2005 LIBEN Hand-operated or foot-operated air pumps (excl. those for civil aircraft of subheading 8414.20.10 and hand pumps for cycles) 01/01/1988 31/12/2005 -841430 01/01/1988 31/12/2500 LIBEN Compressors for refrigerating equipment 01/01/1988 31/12/2500 -84143010 01/01/1988 31/12/2005 LIBEN Compressors for refrigerating equipment, for civil aircraft 01/01/1988 31/12/2005 -84143020 01/01/2006 31/12/2500 LIBEN Compressors for refrigerating equipment, of a power <= 0,4 kW 01/01/2006 31/12/2500 -84143030 01/01/1988 31/12/2005 LIBEN Compressors for refrigerating equipment, of a power <= 0,4 kW (excl. those for civil aircraft of subheading 8414.30.10) 01/01/1988 31/12/2005 -84143081 01/01/2006 31/12/2500 LIBEN Compressors for refrigerating equipment, of a power > 0,4 kW, hermetic or semi-hermetic 01/01/2006 31/12/2500 -84143089 01/01/2006 31/12/2500 LIBEN Compressors for refrigerating equipment, of a power > 0,4 kW (excl. hermetic or semi-hermetic compressors) 01/01/2006 31/12/2500 -84143091 01/01/1988 31/12/2005 LIBEN Compressors for refrigerating equipment, of a power > 0,4 kW, hermetic or semi-hermetic (excl. those for civil aircraft of subheading 8414.30.10) 01/01/1988 31/12/2005 -84143099 01/01/1988 31/12/2005 LIBEN Compressors for refrigerating equipment, of a power > 0,4 kW (excl. those for civil aircraft of subheading 8414.30.10 and hermetic or semi-hermetic compressors) 01/01/1988 31/12/2005 -841440 01/01/1988 31/12/2500 LIBEN Air compressors mounted on a wheeled chassis for towing 01/01/1988 31/12/2500 -84144010 01/01/1988 31/12/2500 LIBEN Air compressors mounted on a wheeled chassis for towing, giving a flow per minute <= 2 m³ 01/01/1988 31/12/2500 -84144090 01/01/1988 31/12/2500 LIBEN Air compressors mounted on a wheeled chassis for towing, giving a flow per minute > 2 m³ 01/01/1988 31/12/2500 -841451 01/01/1988 31/12/2500 LIBEN Table, floor, wall, window, ceiling or roof fans, with a self-contained electric motor of an output <= 125 W 01/01/1988 31/12/2500 -84145100 01/01/2006 31/12/2500 LIBEN Table, floor, wall, window, ceiling or roof fans, with a self-contained electric motor of an output <= 125 W 01/01/2006 31/12/2500 -84145110 01/01/1988 31/12/2005 LIBEN Table, floor, wall, window, ceiling or roof fans, with a self-contained electric motor of an output <= 125 W, for civil aircraft 01/01/1988 31/12/2005 -84145190 01/01/1988 31/12/2005 LIBEN Table, floor, wall, window, ceiling or roof fans, with a self-contained electric motor of an output <= 125 W (excl. those for civil aircraft of subheading 8414.51.10) 01/01/1988 31/12/2005 -841459 01/01/1988 31/12/2500 LIBEN Fans (excl. table, floor, wall, window, ceiling or roof fans, with a self-contained electric motor of an output <= 125 W) 01/01/1988 31/12/2500 -84145910 01/01/1988 31/12/2005 LIBEN Fans for civil aircraft (excl. table, floor, wall, window, ceiling or roof fans, with a self-contained electric motor of an output <= 125 W) 01/01/1988 31/12/2005 -84145915 01/01/2017 31/12/2500 LIBEN Fans of a kind used solely or principally for cooling microprocessors, telecommunication apparatus, automatic data processing machines or units of automatic data processing machines 01/01/2017 31/12/2500 -84145920 01/01/2006 31/12/2016 LIBEN Axial fans (excl. table, floor, wall, window, ceiling or roof fans, with a self-contained electric motor of an output <= 125 W) 01/01/2006 31/12/2016 -84145925 01/01/2017 31/12/2500 LIBEN Axial fans (excl. table, floor, wall, window, ceiling or roof fans, with a self-contained electric motor of an output <= 125 W, and fans for cooling IT equipment of 8414 59 15) 01/01/2017 31/12/2500 -84145930 01/01/1988 31/12/2005 LIBEN Axial fans (excl. those for civil aircraft of subheading 8414.59.10 and table, floor, wall, window, ceiling or roof fans, with a self-contained electric motor of an output <= 125 W) 01/01/1988 31/12/2005 -84145935 01/01/2017 31/12/2500 LIBEN Centrifugal fans (excl. table, floor, wall, window, ceiling or roof fans, with a self-contained electric motor of an output <= 125 W, and fans for cooling IT equipment of 8414 59 15) 01/01/2017 31/12/2500 -84145940 01/01/2006 31/12/2016 LIBEN Centrifugal fans (excl. table, floor, wall, window, ceiling or roof fans, with a self-contained electric motor of an output <= 125 W) 01/01/2006 31/12/2016 -84145950 01/01/1988 31/12/2005 LIBEN Centrifugal fans (excl. those for civil aircraft of subheading 8414.59.10 and table, floor, wall, window, ceiling or roof fans, with a self-contained electric motor of an output <= 125 W) 01/01/1988 31/12/2005 -84145980 01/01/2006 31/12/2016 LIBEN Fans (excl. table, floor, wall, window, ceiling or roof fans, with a self-contained electric motor of an output <= 125 W, axial and centrifugal fans) 01/01/2006 31/12/2016 -84145990 01/01/1988 31/12/2005 LIBEN Fans (excl. those for civil aircraft of subheading 8414.59.10, table, floor, wall, window, ceiling or roof fans, with a self-contained electric motor of an output <= 125 W, axial fans and centrifugal fans) 01/01/1988 31/12/2005 -84145995 01/01/2017 31/12/2500 LIBEN Fans (excl. table, floor, wall, window, ceiling or roof fans, with a self-contained electric motor of an output <= 125 W, axial and centrifugal fans, and fans for cooling IT equipment of 8414 59 15) 01/01/2017 31/12/2500 -841460 01/01/1988 31/12/2500 LIBEN Hoods incorporating a fan, whether or not fitted with filters, having a maximum horizontal side <= 120 cm 01/01/1988 31/12/2500 -84146000 01/01/1988 31/12/2500 LIBEN Hoods incorporating a fan, whether or not fitted with filters, having a maximum horizontal side <= 120 cm 01/01/1988 31/12/2500 -841480 01/01/1988 31/12/2500 LIBEN Air pumps, air or other gas compressors and ventilating or recycling hoods incorporating a fan, whether or not fitted with filters, having a maximum horizontal side > 120 cm (excl. vacuum pumps, hand- or foot-operated air pumps, compressors for refrigerating equipment and air compressors mounted on a wheeled chassis for towing) 01/01/1988 31/12/2500 -84148010 01/01/1988 31/12/2005 LIBEN Air pumps and air or other gas compressors for civil aircraft (excl. vacuum pumps, hand- or foot-operated air pumps and compressors for refrigerating equipment) 01/01/1988 31/12/2005 -84148011 01/01/2006 31/12/2500 LIBEN Turbocompressors, single-stage (excl. compressors for refrigerating equipment and air compressors mounted on a wheeled chassis for towing) 01/01/2006 31/12/2500 -84148019 01/01/2006 31/12/2500 LIBEN Turbocompressors, multi-stage (excl. compressors for refrigerating equipment and air compressors mounted on a wheeled chassis for towing) 01/01/2006 31/12/2500 -84148021 01/01/1988 31/12/2005 LIBEN Turbocompressors, single-stage (excl. those for civil aircraft of subheading 8414.80.10, compressors for refrigerating equipment and air compressors mounted on a wheeled chassis for towing) 01/01/1988 31/12/2005 -84148022 01/01/2006 31/12/2500 LIBEN Reciprocating displacement compressors, having a gauge pressure capacity <= 15 bar, giving a flow/h <= 60 m³ (excl. compressors for refrigerating equipment and air compressors mounted on a wheeled chassis for towing) 01/01/2006 31/12/2500 -84148028 01/01/2006 31/12/2500 LIBEN Reciprocating displacement compressors, having a gauge pressure capacity <= 15 bar, giving a flow/h > 60 m³ (excl. compressors for refrigerating equipment and air compressors mounted on a wheeled chassis for towing) 01/01/2006 31/12/2500 -84148029 01/01/1988 31/12/2005 LIBEN Turbocompressors, multi-stage (excl. those for civil aircraft of subheading 8414.80.10, compressors for refrigerating equipment and air compressors mounted on a wheeled chassis for towing) 01/01/1988 31/12/2005 -84148031 01/01/1988 31/12/2005 LIBEN Reciprocating displacement compressors, having a gauge pressure capacity <= 15 bar, giving a flow/h <= 60 m³ (excl. those for civil aircraft of subheading 8414.80.10, compressors for refrigerating equipment and air compressors mounted on a wheeled chassis for towing) 01/01/1988 31/12/2005 -84148039 01/01/1988 31/12/2005 LIBEN Reciprocating displacement compressors, having a gauge pressure capacity <= 15 bar, giving a flow/h > 60 m³ (excl. those for civil aircraft of subheading 8414.80.10, compressors for refrigerating equipment and air compressors mounted on a wheeled chassis for towing) 01/01/1988 31/12/2005 -84148041 01/01/1988 31/12/2005 LIBEN Reciprocating displacement compressors, having a gauge pressure capacity > 15 bar, giving a flow/h <= 120 m³ (excl. those for civil aircraft of subheading 8414.80.10, compressors for refrigerating equipment and air compressors mounted on a wheeled chassis for towing) 01/01/1988 31/12/2005 -84148049 01/01/1988 31/12/2005 LIBEN Reciprocating displacement compressors, having a gauge pressure capacity > 15 bar, giving a flow/h > 120 m³ (excl. those for civil aircraft of subheading 8414.80.10, compressors for refrigerating equipment and air compressors mounted on a wheeled chassis for towing) 01/01/1988 31/12/2005 -84148051 01/01/2006 31/12/2500 LIBEN Reciprocating displacement compressors, having a gauge pressure capacity > 15 bar, giving a flow/h <= 120 m³ (excl. compressors for refrigerating equipment and air compressors mounted on a wheeled chassis for towing) 01/01/2006 31/12/2500 -84148059 01/01/2006 31/12/2500 LIBEN Reciprocating displacement compressors, having a gauge pressure capacity > 15 bar, giving a flow/h > 120 m³ (excl. compressors for refrigerating equipment and air compressors mounted on a wheeled chassis for towing) 01/01/2006 31/12/2500 -84148060 01/01/1988 31/12/2005 LIBEN Rotary displacement compressors, single-shaft (excl. those for civil aircraft of subheading 8414.80.10, compressors for refrigerating equipment and air compressors mounted on a wheeled chassis for towing) 01/01/1988 31/12/2005 -84148071 01/01/1988 31/12/2005 LIBEN Screw compressors, multi-shaft (excl. those for civil aircraft of subheading 8414.80.10, compressors for refrigerating equipment and air compressors mounted on a wheeled chassis for towing) 01/01/1988 31/12/2005 -84148073 01/01/2006 31/12/2500 LIBEN Rotary displacement compressors, single-shaft (excl. compressors for refrigerating equipment and air compressors mounted on a wheeled chassis for towing) 01/01/2006 31/12/2500 -84148075 01/01/2006 31/12/2500 LIBEN Screw compressors, multi-shaft (excl. compressors for refrigerating equipment and air compressors mounted on a wheeled chassis for towing) 01/01/2006 31/12/2500 -84148078 01/01/2006 31/12/2500 LIBEN Rotary displacement compressors, multi-shaft (excl. compressors for refrigerating equipment, air compressors mounted on a wheeled chassis for towing and screw compressors) 01/01/2006 31/12/2500 -84148079 01/01/1988 31/12/2005 LIBEN Rotary displacement compressors, multi-shaft (excl. those for civil aircraft of subheading 8414.80.10, compressors for refrigerating equipment, air compressors mounted on a wheeled chassis for towing and screw compressors) 01/01/1988 31/12/2005 -84148080 01/01/2006 31/12/2500 LIBEN Air pumps and ventilating or recycling hoods incorporating a fan, whether or not fitted with filters, with a maximum horizontal side > 120 cm (excl. vacuum pumps, hand- or foot-operated air pumps and compressors) 01/01/2006 31/12/2500 -84148090 01/01/1988 31/12/2001 LIBEN Air pumps and ventilating or recycling hoods incorporating a fan, whether or not fitted with filters, with a maximum horizontal side > 120 cm (excl. those for civil aircraft of subheading 8414.80.10, vacuum pumps, hand- or foot-operated air pumps and compressors) 01/01/1988 31/12/2001 -84148090 01/01/2002 31/12/2005 LIBEN Air pumps and ventilating or recycling hoods incorporating a fan, whether or not fitted with filters, with a maximum horizontal side > 120 cm (excl. those for civil aircraft of subheading 8414.80.10, vacuum pumps, hand- or foot-operated air pumps and compressors) 01/01/2002 31/12/2005 -841490 01/01/1988 31/12/2500 LIBEN Parts of : air or vacuum pumps, air or other gas compressors, fans and ventilating or recycling hoods incorporating a fan, n.e.s. 01/01/1988 31/12/2500 -84149000 01/01/2006 31/12/2500 LIBEN Parts of : air or vacuum pumps, air or other gas compressors, fans and ventilating or recycling hoods incorporating a fan, n.e.s. 01/01/2006 31/12/2500 -84149010 01/01/1988 31/12/2005 LIBEN Parts of air or vacuum pumps, air or other gas compressors and fans, for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -84149090 01/01/1988 31/12/2001 LIBEN Parts of air or vacuum pumps, air or other gas compressors, fans and ventilating or recycling hoods incorporating a fan, n.e.s. 01/01/1988 31/12/2001 -84149090 01/01/2002 31/12/2005 LIBEN Parts of air or vacuum pumps, air or other gas compressors, fans and ventilating or recycling hoods incorporating a fan, n.e.s. 01/01/2002 31/12/2005 -8414I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8414; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8414I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8414; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8414I4 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8414; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8414I400 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8414; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8414S7 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 8414 and SITC section 7 01/01/2001 31/12/2500 -8414S743 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 8414 and SITC group 743 01/01/2001 31/12/2500 -8415 01/01/1988 31/12/2500 LIBEN Air conditioning machines comprising a motor-driven fan and elements for changing the temperature and humidity, incl. those machines in which the humidity cannot be separately regulated; parts thereof 01/01/1988 31/12/2500 -841510 01/01/1988 31/12/2001 LIBEN Window or wall air conditioning machines, self-contained 01/01/1988 31/12/2001 -841510 01/01/2002 31/12/2500 LIBEN Air conditioning machines designed to be fixed to a window, wall, ceiling or floor, self-contained or "split-system" 01/01/2002 31/12/2500 -84151000 01/01/1988 31/12/2001 LIBEN Window or wall air conditioning machines, self-contained 01/01/1988 31/12/2001 -84151010 01/01/2002 31/12/2500 LIBEN Air conditioning machines designed to be fixed to a window, wall, ceiling or floor, self-contained 01/01/2002 31/12/2500 -84151090 01/01/2002 31/12/2500 LIBEN Air conditioning machines designed to be fixed to a window, wall, ceiling or floor, "split-system" 01/01/2002 31/12/2500 -841520 01/01/1996 31/12/2500 LIBEN Air conditioning machines of a kind used for persons, in motor vehicles 01/01/1996 31/12/2500 -84152000 01/01/1996 31/12/2500 LIBEN Air conditioning machines of a kind used for persons, in motor vehicles 01/01/1996 31/12/2500 -841581 01/01/1988 31/12/2500 LIBEN Air conditioning machines incorporating a refrigerating unit and a valve for reversal of the cooling-heat cycle "reversible heat pumps" (excl. of a kind used for persons in motor vehicles and self-contained or "split-system" window or wall air conditioning machines) 01/01/1988 31/12/2500 -84158100 01/01/2006 31/12/2500 LIBEN Air conditioning machines incorporating a refrigerating unit and a valve for reversal of the cooling-heat cycle "reversible heat pumps" (excl. of a kind used for persons in motor vehicles and self-contained or "split-system" window or wall air conditioning machines) 01/01/2006 31/12/2500 -84158110 01/01/1988 31/12/2005 LIBEN Air conditioning machines incorporating a refrigerating unit and a valve for reversal of the cooling-heat cycle "reversible heat pumps", for civil aircraft 01/01/1988 31/12/2005 -84158190 01/01/1988 31/12/2005 LIBEN Air conditioning machines incorporating a refrigerating unit and a valve for reversal of the cooling-heat cycle "reversible heat pumps" (excl. those for civil aircraft of subheading 8415.81.10, machines of a kind used for persons in motor vehicles and self-contained or "split-system" window or wall air conditioning machines) 01/01/1988 31/12/2005 -841582 01/01/1988 31/12/2500 LIBEN Air conditioning machines incorporating a refrigerating unit but without a valve for reversal of the cooling-heat cycle (excl. of a kind used for persons in motor vehicles, and self-contained or "split-system" window or wall air conditioning machines) 01/01/1988 31/12/2500 -84158200 01/01/2006 31/12/2500 LIBEN Air conditioning machines incorporating a refrigerating unit but without a valve for reversal of the cooling-heat cycle (excl. of a kind used for persons in motor vehicles, and self-contained or "split-system" window or wall air conditioning machines) 01/01/2006 31/12/2500 -84158210 01/01/1988 31/12/2005 LIBEN Air conditioning machines incorporating a refrigerating unit but without a valve for reversal of the cooling-heat cycle, for civil aircraft 01/01/1988 31/12/2005 -84158280 01/01/1996 31/12/2001 LIBEN Air conditioning machines incorporating a refrigerating unit, but without a valve for reversal of the cooling/heat cycle (excl. those for civil aircraft of subheading 8415.82.10, machines of a kind used for persons in motor vehicles, and self-contained window or wall air conditioning machines) 01/01/1996 31/12/2001 -84158280 01/01/2002 31/12/2005 LIBEN Air conditioning machines incorporating a refrigerating unit, but without a valve for reversal of the cooling-heat cycle (excl. those for civil aircraft of subheading 8415.82.10, machines of a kind used for persons in motor vehicles, and self-contained or "split-system" window or wall air conditioning machines) 01/01/2002 31/12/2005 -84158290 01/01/1988 31/12/1995 LIBEN Air conditioning machines incorporating a refrigerating unit, but without a valve for reversal of the cooling/heat cycle (excl. those for civil aircraft of subheading 8415.82.10 and self-contained window or wall air conditioning machines) 01/01/1988 31/12/1995 -841582SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 8415 82 01/01/2006 31/12/2500 -841583 01/01/1988 31/12/2500 LIBEN Air conditioning machines comprising a motor-driven fan, not incorporating a refrigerating unit but incorporating elements for changing the temperature and humidity (excl. of a kind used for persons in motor vehicles, and self-contained or "split-system" window or wall air conditioning machines) 01/01/1988 31/12/2500 -84158300 01/01/2006 31/12/2500 LIBEN Air conditioning machines comprising a motor-driven fan, not incorporating a refrigerating unit but incorporating elements for changing the temperature and humidity (excl. of a kind used for persons in motor vehicles, and self-contained or "split-system" window or wall air conditioning machines) 01/01/2006 31/12/2500 -84158310 01/01/1988 31/12/2005 LIBEN Air conditioning machines comprising a motor-driven fan, not incorporating a refrigerating unit but incorporating elements for changing the temperature and humidity, for civil aircraft 01/01/1988 31/12/2005 -84158390 01/01/1988 31/12/2005 LIBEN Air conditioning machines comprising a motor-driven fan, not incorporating a refrigerating unit but incorporating elements for changing the temperature and humidity (excl. those for civil aircraft of subheading 8415.83.10, machines of a kind used for persons in motor vehicles, and self-contained or "split-system" window or wall air conditioning machines) 01/01/1988 31/12/2005 -841590 01/01/1988 31/12/2500 LIBEN Parts of air conditioning machines, comprising a motor-driven fan and elements for changing the temperature and humidity, n.e.s. 01/01/1988 31/12/2500 -84159000 01/01/2006 31/12/2500 LIBEN Parts of air conditioning machines, comprising a motor-driven fan and elements for changing the temperature and humidity, n.e.s. 01/01/2006 31/12/2500 -84159010 01/01/1988 31/12/2005 LIBEN Parts of air conditioning machines of subheading 8415.81, 8415.82 and 8415.83, for civil aircraft 01/01/1988 31/12/2005 -84159090 01/01/1988 31/12/2005 LIBEN Parts of air conditioning machines, comprising a motor-driven fan and elements for changing the temperature and humidity, n.e.s. 01/01/1988 31/12/2005 -841590SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 8415 90 01/01/2006 31/12/2500 -8415I0 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8415; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -8415I000 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8415; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -8416 01/01/1988 31/12/2500 LIBEN Furnace burners for liquid fuel, for pulverised solid fuel or for gas; mechanical stokers, incl. their mechanical grates, mechanical ash dischargers and similar appliances; parts thereof 01/01/1988 31/12/2500 -841610 01/01/1988 31/12/2500 LIBEN Furnace burners for liquid fuel 01/01/1988 31/12/2500 -84161010 01/01/1988 31/12/2500 LIBEN Furnace burners for liquid fuel, incorporating an automatic control device 01/01/1988 31/12/2500 -84161090 01/01/1988 31/12/2500 LIBEN Furnace burners for liquid fuel (excl. those incorporating an automatic control device) 01/01/1988 31/12/2500 -841620 01/01/1988 31/12/2500 LIBEN Furnace burners for pulverised solid fuel or gas, incl. combination burners 01/01/1988 31/12/2500 -84162000 01/01/1988 31/12/1995 LIBEN Furnace burners for pulverised solid fuel or gas, incl. combination burners 01/01/1988 31/12/1995 -84162010 01/01/1996 31/12/2500 LIBEN Furnace burners, only for gas, monobloc, incorporating a ventilator and a control device 01/01/1996 31/12/2500 -84162020 01/01/2009 31/12/2500 LIBEN Combination furnace burners for pulverised solid fuel or for gas 01/01/2009 31/12/2500 -84162080 01/01/2009 31/12/2500 LIBEN Furnace burners for pulverised solid fuel or gas (excl. such products only for gas, monobloc, incorporating a ventilator and a control device and combination burners) 01/01/2009 31/12/2500 -84162090 01/01/1996 31/12/2008 LIBEN Furnace burners for pulverised solid fuel or gas, incl. combination burners (excl. such products only for gas, monobloc, incorporating a ventilator and a control device) 01/01/1996 31/12/2008 -841630 01/01/1988 31/12/2500 LIBEN Mechanical stokers, incl. their mechanical grates, mechanical ash dischargers and similar appliances (excl. burners) 01/01/1988 31/12/2500 -84163000 01/01/1988 31/12/2500 LIBEN Mechanical stokers, incl. their mechanical grates, mechanical ash dischargers and similar appliances (excl. burners) 01/01/1988 31/12/2500 -841690 01/01/1988 31/12/2500 LIBEN Parts of furnace burners such as mechanical stokers, incl. their mechanical grates, mechanical ash dischargers and similar appliances, n.e.s. 01/01/1988 31/12/2500 -84169000 01/01/1988 31/12/2500 LIBEN Parts of furnace burners such as mechanical stokers, incl. their mechanical grates, mechanical ash dischargers and similar appliances, n.e.s. 01/01/1988 31/12/2500 -8417 01/01/1988 31/12/2500 LIBEN Industrial or laboratory furnaces and ovens, non-electric, incl. incinerators (excl. drying ovens and ovens for cracking operations) 01/01/1988 31/12/2500 -841710 01/01/1988 31/12/2500 LIBEN Industrial or laboratory furnaces and ovens, non-electric, for the roasting, melting or other heat treatment of ores, pyrites or metals (excl. drying ovens) 01/01/1988 31/12/2500 -84171000 01/01/1988 31/12/2500 LIBEN Industrial or laboratory furnaces and ovens, non-electric, for the roasting, melting or other heat treatment of ores, pyrites or metals (excl. drying ovens) 01/01/1988 31/12/2500 -841720 01/01/1988 31/12/2500 LIBEN Bakery ovens, incl. biscuit ovens, non-electric 01/01/1988 31/12/2500 -84172010 01/01/1988 31/12/2500 LIBEN Tunnel bakery ovens, incl. biscuit ovens, non-electric 01/01/1988 31/12/2500 -84172090 01/01/1988 31/12/2500 LIBEN Bakery ovens, incl. biscuit ovens, non-electric (excl. tunnel ovens) 01/01/1988 31/12/2500 -841780 01/01/1988 31/12/2500 LIBEN Industrial or laboratory furnaces and ovens, non-electric, incl. incinerators (excl. those for the roasting, melting or other heat treatment of ores, pyrites or metals, bakery ovens, drying ovens and ovens for cracking operations) 01/01/1988 31/12/2500 -84178000 01/01/1988 31/12/1988 LIBEN Industrial or laboratory furnaces and ovens, non-electric, incl. incinerators (excl. those for the roasting, melting or other heat treatment of ores, pyrites or metals, bakery ovens, drying ovens and ovens for cracking operations) 01/01/1988 31/12/1988 -84178010 01/01/1989 31/12/2008 LIBEN Furnaces and ovens for the incineration of rubbish, non-electric 01/01/1989 31/12/2008 -84178020 01/01/1998 31/12/2008 LIBEN Tunnel ovens and muffle furnaces for firing ceramic products, non-electric 01/01/1998 31/12/2008 -84178030 01/01/2009 31/12/2500 LIBEN Ovens and furnaces for firing ceramic products 01/01/2009 31/12/2500 -84178050 01/01/2009 31/12/2500 LIBEN Ovens and furnaces for firing cement, glass or chemical products 01/01/2009 31/12/2500 -84178070 01/01/2009 31/12/2500 LIBEN Industrial or laboratory furnaces, incl. incinerators, non-electric (excl. for the roasting, melting or other heat treatment of ores, pyrites or metals, bakery ovens, ovens and furnaces for firing ceramic products, ovens and furnaces for firing cement, glass or chemical products, drying ovens and ovens for cracking operations) 01/01/2009 31/12/2500 -84178080 01/01/1998 31/12/2008 LIBEN Industrial or laboratory furnaces, incl. incinerators, non-electric (excl. for the roasting, melting or other heat treatment of ores, pyrites or metals, for the incineration of rubbish, bakery ovens, tunnel ovens and muffle furnaces for firing ceramic products, drying ovens and ovens for cracking operations) 01/01/1998 31/12/2008 -84178090 01/01/1989 31/12/1997 LIBEN Industrial or laboratory furnaces, incl. incinerators (non-electric) (excl. 8417.10.00 to 8417.80.10) 01/01/1989 31/12/1997 -841790 01/01/1988 31/12/2500 LIBEN Parts of industrial or laboratory furnaces, non-electric, incl. incinerators, n.e.s. 01/01/1988 31/12/2500 -84179000 01/01/1988 31/12/2500 LIBEN Parts of industrial or laboratory furnaces, non-electric, incl. incinerators, n.e.s. 01/01/1988 31/12/2500 -8417I1 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8417; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -8417I100 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8417; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -8417I2 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8417; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1997 31/12/2005 -8417I200 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8417; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1997 31/12/2005 -8418 01/01/1988 31/12/2500 LIBEN Refrigerators, freezers and other refrigerating or freezing equipment, electric or other; heat pumps; parts thereof (excl. air conditioning machines of heading 8415) 01/01/1988 31/12/2500 -841810 01/01/1988 31/12/2500 LIBEN Combined refrigerator-freezers, with separate external doors 01/01/1988 31/12/2500 -84181010 01/01/1988 31/12/2005 LIBEN Combined refrigerator-freezers, with separate external doors, for civil aircraft 01/01/1988 31/12/2005 -84181020 01/01/2006 31/12/2500 LIBEN Combined refrigerator-freezers, of a capacity > 340 l, fitted with separate external doors 01/01/2006 31/12/2500 -84181080 01/01/2006 31/12/2500 LIBEN Combined refrigerator-freezers, of a capacity <= 340 l, fitted with separate external doors 01/01/2006 31/12/2500 -84181090 01/01/1988 31/12/1994 LIBEN Combined refrigerators-freezers, with separate external doors (excl. those for civil aircraft of subheading no 8418.10-10) 01/01/1988 31/12/1994 -84181091 01/01/1995 31/12/2005 LIBEN Combined refrigerator-freezers of a capacity > 340 l, fitted with separate external doors (other than for civil aircraft of subheading 8418.10.10) 01/01/1995 31/12/2005 -84181099 01/01/1995 31/12/2005 LIBEN Combined refrigerator-freezers of a capacity <= 340 l, fitted with separate external doors (other than for civil aircraft of subheading 8418.10.10) 01/01/1995 31/12/2005 -841821 01/01/1988 31/12/2500 LIBEN Household refrigerators, compression-type 01/01/1988 31/12/2500 -84182110 01/01/1988 31/12/2500 LIBEN Household refrigerators, compression-type, of a capacity > 340 l 01/01/1988 31/12/2500 -84182151 01/01/1988 31/12/2500 LIBEN Household refrigerators, compression-type, table model 01/01/1988 31/12/2500 -84182159 01/01/1988 31/12/2500 LIBEN Household refrigerators, compression-type, building-in type 01/01/1988 31/12/2500 -84182191 01/01/1988 31/12/2500 LIBEN Household refrigerators compression-type, of a capacity <= 250 l (excl. table models and building-in types) 01/01/1988 31/12/2500 -84182199 01/01/1988 31/12/2500 LIBEN Household refrigerators, compression-type, of a capacity > 250 l but <= 340 l (excl. table models and building-in types) 01/01/1988 31/12/2500 -841822 01/01/1988 31/12/2006 LIBEN Household electrical refrigerators, absorption-type 01/01/1988 31/12/2006 -84182200 01/01/1988 31/12/2006 LIBEN Household electrical refrigerators, absorption-type 01/01/1988 31/12/2006 -841829 01/01/1988 31/12/2500 LIBEN Household refrigerators, absorption-type 01/01/1988 31/12/2500 -84182900 01/01/1988 31/12/2006 LIBEN Household refrigerators, non-electrical, absorption-type 01/01/1988 31/12/2006 -84182900 01/01/2007 31/12/2500 LIBEN Household refrigerators, absorption-type 01/01/2007 31/12/2500 -841830 01/01/1988 31/12/2500 LIBEN Freezers of the chest type, of a capacity <= 800 l 01/01/1988 31/12/2500 -84183010 01/01/1988 31/12/2005 LIBEN Freezers of the chest type, of a capacity <= 800 l, for civil aircraft 01/01/1988 31/12/2005 -84183020 01/01/2006 31/12/2500 LIBEN Freezers of the chest type, of a capacity <= 400 l 01/01/2006 31/12/2500 -84183080 01/01/2006 31/12/2500 LIBEN Freezers of the chest type, of a capacity > 400 l but <= 800 l 01/01/2006 31/12/2500 -84183091 01/01/1988 31/12/2005 LIBEN Freezers of the chest type, of a capacity <= 400 l (excl. those for civil aircraft of subheading 8418.30.10) 01/01/1988 31/12/2005 -84183099 01/01/1988 31/12/2005 LIBEN Freezers of the chest type, of a capacity > 400 l but <= 800 l (excl. those for civil aircraft of subheading 8418.30.10) 01/01/1988 31/12/2005 -841840 01/01/1988 31/12/2500 LIBEN Freezers of the upright type, of a capacity <= 900 l 01/01/1988 31/12/2500 -84184010 01/01/1988 31/12/2005 LIBEN Freezers of the upright type, of a capacity <= 900 l, for civil aircraft 01/01/1988 31/12/2005 -84184020 01/01/2006 31/12/2500 LIBEN Freezers of the upright type, of a capacity <= 250 l 01/01/2006 31/12/2500 -84184080 01/01/2006 31/12/2500 LIBEN Freezers of the upright type, of a capacity > 250 l but <= 900 l 01/01/2006 31/12/2500 -84184091 01/01/1988 31/12/2005 LIBEN Freezers of the upright type, of a capacity <= 250 l (excl. those for civil aircraft of subheading 8418.40.10) 01/01/1988 31/12/2005 -84184099 01/01/1988 31/12/2005 LIBEN Freezers of the upright type, of a capacity > 250 l but <= 900 l (excl. those for civil aircraft of subheading 8418.40.10) 01/01/1988 31/12/2005 -841850 01/01/1988 31/12/2500 LIBEN Furniture "chests, cabinets, display counters, show-cases and the like" for storage and display, incorporating refrigerating or freezing equipment (excl. combined refrigerator-freezers with separate external doors, household refrigerators and freezers of the chest type of a capacity <= 800 l or of the upright type of a capacity <= 900 l) 01/01/1988 31/12/2500 -84185011 01/01/1988 31/12/2500 LIBEN Refrigerated show-cases and counters, with a refrigerating unit or evaporator, for frozen food storage 01/01/1988 31/12/2500 -84185019 01/01/1988 31/12/2500 LIBEN Refrigerated show-cases and counters, with a refrigerating unit or evaporator, for non-frozen food storage 01/01/1988 31/12/2500 -84185090 01/01/2010 31/12/2500 LIBEN Refrigerating furniture with a refrigerating unit or evaporator (excl. combined refrigerator-freezers, with separate external doors, household refrigerators, refrigerated show-cases and counters) 01/01/2010 31/12/2500 -84185091 01/01/1988 31/12/2009 LIBEN Furniture for deep-freezing, for storage and display (excl. freezers of the chest type of a capacity <= 800 l, freezers of the upright type of a capacity <= 900 l and refrigerated show-cases and counters with a refrigerating unit or evaporator) 01/01/1988 31/12/2009 -84185099 01/01/1988 31/12/2009 LIBEN Refrigerating furniture with a refrigerating unit or evaporator (excl. combined refrigerator-freezers, with separate external doors, household refrigerators, refrigerated show-cases and counters and deep-freezing furniture) 01/01/1988 31/12/2009 -841861 01/01/1988 31/12/2500 LIBEN Heat pumps (excl. air conditioning machines of heading 8415) 01/01/1988 31/12/2500 -84186100 01/01/2006 31/12/2006 LIBEN Compression-type units whose condensers are heat-exchangers 01/01/2006 31/12/2006 -84186100 01/01/2007 31/12/2500 LIBEN Heat pumps (excl. air conditioning machines of heading 8415) 01/01/2007 31/12/2500 -84186110 01/01/1988 31/12/2005 LIBEN Compression-type units whose condensers are heat-exchangers, for civil aircraft 01/01/1988 31/12/2005 -84186190 01/01/1988 31/12/2005 LIBEN Compression-type units whose condensers are heat-exchangers (excl. those for civil aircraft of subheading 8418.61.10) 01/01/1988 31/12/2005 -841869 01/01/1988 31/12/2500 LIBEN Refrigerating or freezing equipment (excl. refrigerating and freezing furniture) 01/01/1988 31/12/2500 -84186900 01/01/2007 31/12/2500 LIBEN Refrigerating or freezing equipment (excl. refrigerating and freezing furniture) 01/01/2007 31/12/2500 -84186910 01/01/1988 31/12/2005 LIBEN Refrigerating or freezing equipment and absorption heat pumps, for civil aircraft (excl. refrigerating and freezing furniture) 01/01/1988 31/12/2005 -84186920 01/01/2006 31/12/2006 LIBEN Absorption heat pumps 01/01/2006 31/12/2006 -84186980 01/01/2006 31/12/2006 LIBEN Refrigerating or freezing equipment (excl. refrigerating and freezing furniture) 01/01/2006 31/12/2006 -84186991 01/01/1988 31/12/2005 LIBEN Absorption heat pumps (excl. those for civil aircraft of subheading 8418.69.10) 01/01/1988 31/12/2005 -84186999 01/01/1988 31/12/2005 LIBEN Refrigerating or freezing equipment (excl. those for civil aircraft of subheading 8418.69.10 and refrigerating and freezing furniture) 01/01/1988 31/12/2005 -841891 01/01/1988 31/12/2500 LIBEN Furniture designed to receive refrigerating or freezing equipment 01/01/1988 31/12/2500 -84189100 01/01/1988 31/12/2500 LIBEN Furniture designed to receive refrigerating or freezing equipment 01/01/1988 31/12/2500 -841899 01/01/1988 31/12/2500 LIBEN Parts of refrigerating or freezing equipment and heat pumps, n.e.s. 01/01/1988 31/12/2500 -84189910 01/01/1988 31/12/2500 LIBEN Evaporators and condensers for refrigerating equipment (excl. for household refrigerators) 01/01/1988 31/12/2500 -84189990 01/01/1988 31/12/2006 LIBEN Parts of refrigerating or freezing equipment and heat pumps, n.e.s. 01/01/1988 31/12/2006 -84189990 01/01/2007 31/12/2500 LIBEN Parts of refrigerating or freezing equipment and heat pumps, n.e.s. 01/01/2007 31/12/2500 -8418I2 01/01/1998 31/12/2005 LIBEN Components of complete industrial plants of heading 8418; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1998 31/12/2005 -8418I200 01/01/1998 31/12/2005 LIBEN Components of complete industrial plants of heading 8418; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1998 31/12/2005 -8418S7 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8418 and SITC section 7 01/01/1997 31/12/2500 -8418S741 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8418 and SITC group 741 01/01/1997 31/12/2500 -8418S775 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8418 and SITC group 775 01/01/1997 31/12/2500 -8419 01/01/1988 31/12/2500 LIBEN Machinery, plant or laboratory equipment whether or not electrically heated (excl. furnaces, ovens and other equipment of heading 8514), for the treatment of materials by a process involving a change of temperature such as heating, cooking, roasting, distilling, rectifying, sterilising, pasteurising, steaming, drying, evaporating, vaporising, condensing or cooling (excl. those used for domestic purposes); instantaneous or storage water heaters, non-electric; parts thereof 01/01/1988 31/12/2500 -841911 01/01/1988 31/12/2500 LIBEN Instantaneous gas water heaters (excl. boilers or water heaters for central heating) 01/01/1988 31/12/2500 -84191100 01/01/1988 31/12/2500 LIBEN Instantaneous gas water heaters (excl. boilers or water heaters for central heating) 01/01/1988 31/12/2500 -841919 01/01/1988 31/12/2500 LIBEN Instantaneous or storage water heaters, non-electric (excl. instantaneous gas water heaters and boilers or water heaters for central heating) 01/01/1988 31/12/2500 -84191900 01/01/1988 31/12/2500 LIBEN Instantaneous or storage water heaters, non-electric (excl. instantaneous gas water heaters and boilers or water heaters for central heating) 01/01/1988 31/12/2500 -841920 01/01/1988 31/12/2500 LIBEN Medical, surgical or laboratory sterilizers 01/01/1988 31/12/2500 -84192000 01/01/1988 31/12/2500 LIBEN Medical, surgical or laboratory sterilizers 01/01/1988 31/12/2500 -841931 01/01/1988 31/12/2500 LIBEN Dryers for agricultural products 01/01/1988 31/12/2500 -84193100 01/01/1988 31/12/2500 LIBEN Dryers for agricultural products 01/01/1988 31/12/2500 -841932 01/01/1988 31/12/2500 LIBEN Dryers for wood, paper pulp, paper or paperboard 01/01/1988 31/12/2500 -84193200 01/01/1988 31/12/2500 LIBEN Dryers for wood, paper pulp, paper or paperboard 01/01/1988 31/12/2500 -841939 01/01/1988 31/12/2500 LIBEN Dryers (excl. dryers for agricultural products, for wood, paper pulp, paper or paperboard, for yarns, fabrics and other textile products, dryers for bottles or other containers, hairdryers, hand dryers and domestic appliances) 01/01/1988 31/12/2500 -84193900 01/01/1988 31/12/1997 LIBEN Dryers (excl. dryers for agricultural products, paper pulp, paper or paperboard, yarns, fabrics and other textile products, dryers for bottles or other containers, hair dryers, hand dryers and domestic appliances) 01/01/1988 31/12/1997 -84193900 01/01/2010 31/12/2500 LIBEN Dryers (excl. dryers for agricultural products, for wood, paper pulp, paper or paperboard, for yarns, fabrics and other textile products, dryers for bottles or other containers, hairdryers, hand dryers and domestic appliances) 01/01/2010 31/12/2500 -84193910 01/01/1998 31/12/2009 LIBEN Dryers for ceramic articles 01/01/1998 31/12/2009 -84193990 01/01/1998 31/12/2001 LIBEN Dryers (excl. dryers for ceramic articles, for agricultural products, for wood, paper pulp, paper or paperboard, for yarns, fabrics and other textile products, dryers for bottles or other containers, hair dryers, hand dryers and domestic appliances) 01/01/1998 31/12/2001 -84193990 01/01/2002 31/12/2009 LIBEN Dryers (excl. dryers for ceramic articles, for agricultural products, for wood, paper pulp, paper or paperboard, for yarns, fabrics and other textile products, dryers for bottles or other containers, hairdryers, hand dryers and domestic appliances) 01/01/2002 31/12/2009 -841940 01/01/1988 31/12/2500 LIBEN Distilling or rectifying plant 01/01/1988 31/12/2500 -84194000 01/01/1988 31/12/2500 LIBEN Distilling or rectifying plant 01/01/1988 31/12/2500 -841950 01/01/1988 31/12/2500 LIBEN Heat-exchange units (excl. those used with boilers) 01/01/1988 31/12/2500 -84195000 01/01/2006 31/12/2016 LIBEN Heat-exchange units (excl. instantaneous heaters, storage water heaters, boilers and equipment without a separating wall) 01/01/2006 31/12/2016 -84195010 01/01/1988 31/12/2005 LIBEN Heat-exchange units for civil aircraft 01/01/1988 31/12/2005 -84195020 01/01/2017 31/12/2500 LIBEN Heat exchange units made of fluoropolymers and with inlet and outlet tube bores with inside diameters measuring <=3 cm 01/01/2017 31/12/2500 -84195080 01/01/2017 31/12/2500 LIBEN Heat-exchange units (excl. those used with boilers and those made of fluoropolymers with inlet and outlet tube bores with inside diameters measuring <=3 cm) 01/01/2017 31/12/2500 -84195090 01/01/1988 31/12/2005 LIBEN Heat-exchange units (excl. those for civil aircraft of subheading 8419.50.10, instantaneous heaters, storage water heaters, boilers and equipment without a separating wall) 01/01/1988 31/12/2005 -841960 01/01/1988 31/12/2500 LIBEN Machinery for liquefying air or other gases 01/01/1988 31/12/2500 -84196000 01/01/1988 31/12/2500 LIBEN Machinery for liquefying air or other gases 01/01/1988 31/12/2500 -841981 01/01/1988 31/12/2500 LIBEN Machinery, plant and equipment for making hot drinks or for cooking or heating food (excl. domestic appliances) 01/01/1988 31/12/2500 -84198110 01/01/1988 31/12/2005 LIBEN Machinery, plant and equipment for making hot drinks or for cooking or heating food, for civil aircraft (excl. domestic appliances) 01/01/1988 31/12/2005 -84198120 01/01/2006 31/12/2500 LIBEN Percolators and other appliances for making coffee and other hot drinks (excl. domestic appliances) 01/01/2006 31/12/2500 -84198180 01/01/2006 31/12/2500 LIBEN Machinery, plant and equipment for cooking or heating food (excl. percolators and other appliances for making hot drinks and domestic appliances) 01/01/2006 31/12/2500 -84198191 01/01/1988 31/12/2005 LIBEN Percolators and other appliances for making coffee and other hot drinks (excl. those for civil aircraft of subheading 8419.81.10 and domestic appliances) 01/01/1988 31/12/2005 -84198199 01/01/1988 31/12/2005 LIBEN Machinery, plant and equipment for cooking or heating food (excl. that for civil aircraft of subheading 8419.81.10, percolators and other appliances for making hot drinks and domestic appliances) 01/01/1988 31/12/2005 -841989 01/01/1988 31/12/2500 LIBEN Machinery, plant or laboratory equipment, whether or not electrically heated, for the treatment of materials by a process involving a change of temperature such as heating, cooking, roasting, sterilising, pasteurising, steaming, evaporating, vaporising, condensing or cooling, n.e.s. (excl. machinery used for domestic purposes and furnaces, ovens and other equipment of heading 8514) 01/01/1988 31/12/2500 -84198910 01/01/1988 31/12/2500 LIBEN Cooling towers and similar plant for direct cooling (without a separating wall) by means of recirculated water 01/01/1988 31/12/2500 -84198915 01/01/1995 31/12/2006 LIBEN Apparatus for rapid heating of semiconductor wafers 01/01/1995 31/12/2006 -84198920 01/01/1995 31/12/2006 LIBEN Apparatus for chemical vapour deposition on semiconductor wafers 01/01/1995 31/12/2006 -84198925 01/01/1995 31/12/2006 LIBEN Apparatus for physical vapour deposition by electronic beam or evaporation on semiconductor wafers 01/01/1995 31/12/2006 -84198927 01/01/1998 31/12/2006 LIBEN Apparatus for chemical vapour deposition on LCD substrates 01/01/1998 31/12/2006 -84198930 01/01/1991 31/12/2500 LIBEN Vacuum-vapour plant for the deposition of metal 01/01/1991 31/12/2500 -84198980 01/01/1991 31/12/1994 LIBEN Machinery, plant or laboratory equipment, whether or not electrically heated, for treatment of materials by a process involving change of temperature e.g. heating, cooking, roasting, distilling, rectifying, sterilizing, pasteurizing, steaming, drying, evaporating, vaporizing, condensing or cooling, (excl. machinery or plant of a kind used for domestic purposes), (excl. 8419.11-00 to 8419.89-30) 01/01/1991 31/12/1994 -84198990 01/01/1988 31/12/1990 LIBEN Machinery, plant and laboratory equipment whether or not electrically heated, for the treatment of materials by a process involving a change of temperature, n.e.s. 01/01/1988 31/12/1990 -84198995 01/01/1995 31/12/1997 LIBEN Appliances and devices, whether or not electrically heated, for treating materials using processes based on temperature change, n.e.s. 01/01/1995 31/12/1997 -84198998 01/01/1998 31/12/2001 LIBEN Machinery, plant or laboratory equipment, whether or non-electrically heated, for the treatment of materials by a process involving a change of temperature, n.e.s. 01/01/1998 31/12/2001 -84198998 01/01/2002 31/12/2500 LIBEN Machinery, plant or laboratory equipment, whether or not electrically heated, for the treatment of materials by a process involving a change of temperature, n.e.s. 01/01/2002 31/12/2500 -841990 01/01/1988 31/12/2500 LIBEN Parts of machinery, plant and laboratory equipment, whether or not electrically heated, for the treatment of materials by a process involving a change of temperature, and of non-electric instantaneous and storage water heaters, n.e.s. 01/01/1988 31/12/2500 -84199010 01/01/1988 31/12/2005 LIBEN Parts of heat-exchange units, for use in civil aircraft, n.e.s. 01/01/1988 31/12/2005 -84199015 01/01/2007 31/12/2500 LIBEN Parts of medical, surgical or laboratory sterilizers, n.e.s. 01/01/2007 31/12/2500 -84199020 01/01/1995 31/12/1999 LIBEN Parts for sterilizers of subheading 8419.20.00, n.e.s. 01/01/1995 31/12/1999 -84199025 01/01/2000 31/12/2006 LIBEN Parts of medical, surgical or laboratory sterilizers and of apparatus for rapid heating, for chemical vapour deposition and for physical vapour deposition by electronic beam or evaporation, on semiconductor wafers, n.e.s. 01/01/2000 31/12/2006 -84199030 01/01/1998 31/12/1999 LIBEN Parts of apparatus for rapid heating, for deposition and for physical deposition by electronic beam or evaporation, on semiconductor wafers, n.e.s. 01/01/1998 31/12/1999 -84199050 01/01/1998 31/12/2006 LIBEN Parts of apparatus for chemical vapour deposition on LCD substrates, n.e.s. 01/01/1998 31/12/2006 -84199080 01/01/1998 31/12/2001 LIBEN Parts of machinery, plant and laboratory equipment, whether or non-electrically heated, for the treatment of materials by a process involving a change of temperature, and of non-electric instantaneous and storage water heaters, n.e.s. (excl. of heat exchange units for civil aircraft of subheading 8419.90.10, of sterilizers of subheading 8419.20.00, and of apparatus for rapid heating, for deposition and for physical deposition by electronic beam or evaporation on semiconductor wafers and for chemical vapour deposition on LCD substrates) 01/01/1998 31/12/2001 -84199080 01/01/2002 31/12/2005 LIBEN Parts of machinery, plant and laboratory equipment, whether or not electrically heated, for the treatment of materials by a process involving a change of temperature, and of non-electric instantaneous and storage water heaters, n.e.s. (excl. of heat-exchange units for civil aircraft of subheading 8419.90.10, of sterilizers of subheading 8419.20.00, and of apparatus for rapid heating, for deposition and for physical deposition by electronic beam or evaporation on semiconductor wafers and for chemical vapour deposition on LCD substrates, and of furnaces, ovens and other equipment of heading 8514) 01/01/2002 31/12/2005 -84199085 01/01/2006 31/12/2500 LIBEN Parts of machinery, plant and laboratory equipment, whether or not electrically heated, for the treatment of materials by a process involving a change of temperature, and of non-electric instantaneous and storage water heaters, n.e.s. (excl. of medical, surgical or laboratory sterilizers, those for the manufacture of semiconductor boules or wafers, semiconductor devices, electronic integrated circuits or flat panel displays, and of furnaces, ovens and other equipment of heading 8514) 01/01/2006 31/12/2500 -84199090 01/01/1988 31/12/1994 LIBEN Parts of machinery, plant and laboratory equipment whether or not electrically heated, for the treatment of materials by a process involving a change of temperature, and non-electric instantaneous water heaters and storage water heaters n.e.s. 01/01/1988 31/12/1994 -84199095 01/01/1995 31/12/1997 LIBEN Parts of apparatus and devices, whether or not electrically heated, for treating materials using processes based on temperature change, and non-electric geysers and hot-water tanks, n.e.s. 01/01/1995 31/12/1997 -8419I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8419; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8419I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8419; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8419I4 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8419; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8419I400 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8419; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8419I5 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8419; food, drink and tobacco industry 01/01/1993 31/12/2005 -8419I500 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8419; food, drink and tobacco industry 01/01/1993 31/12/2005 -8420 01/01/1988 31/12/2500 LIBEN Calendering or other rolling machines (other than for metals or glass) and cylinders therefor; parts thereof 01/01/1988 31/12/2500 -842010 01/01/1988 31/12/2500 LIBEN Calendering or other rolling machines (other than for metals or glass) 01/01/1988 31/12/2500 -84201000 01/01/1988 31/12/1993 LIBEN Calendering or other rolling machines (other than for metals or glass) 01/01/1988 31/12/1993 -84201010 01/01/1994 31/12/2500 LIBEN Calendering or other rolling machines, of a kind used in the textile industry 01/01/1994 31/12/2500 -84201030 01/01/1994 31/12/2500 LIBEN Calendering or other rolling machines, of a kind used in the paper industry 01/01/1994 31/12/2500 -84201050 01/01/1994 31/12/2009 LIBEN Calendering or other rolling machines, of a kind used in the rubber or plastics industry 01/01/1994 31/12/2009 -84201080 01/01/2010 31/12/2016 LIBEN Calendering or other rolling machines (excl. such machines of a kind used in the textile, paper industries or for metals or glass) 01/01/2010 31/12/2016 -84201081 01/01/2017 31/12/2500 LIBEN Roll laminators of a kind used solely or principally for the manufacture of printed circuit substrates or printed circuits 01/01/2017 31/12/2500 -84201089 01/01/2017 31/12/2500 LIBEN Calendering or other rolling machines (excl. of a kind used in the textile or paper industries or for metals or glass, and roll laminators of a kind used solely or principally for the manufacture of printed circuit substrates or printed circuits) 01/01/2017 31/12/2500 -84201090 01/01/1994 31/12/2009 LIBEN Calendering or other rolling machines (excl. such machines of a kind used in the textile, paper, rubber or plastics industries or for metals or glass) 01/01/1994 31/12/2009 -842091 01/01/1988 31/12/2500 LIBEN Cylinders for calendering or other rolling machines (other than for metals or glass) 01/01/1988 31/12/2500 -84209110 01/01/1988 31/12/2500 LIBEN Cylinders for calendering or other rolling machines, of cast iron (other than for metals or glass) 01/01/1988 31/12/2500 -84209130 01/01/1988 31/12/1996 LIBEN Cylinders for calendering or other rolling machines, of open-die forged steel (other than for metals or glass) 01/01/1988 31/12/1996 -84209180 01/01/1997 31/12/2500 LIBEN Cylinders for calendering or other rolling machines (excl. of cast iron and those for metals or glass) 01/01/1997 31/12/2500 -84209190 01/01/1988 31/12/1996 LIBEN Cylinders for calendering or other rolling machines (excl. those of open-die forged steel or cast iron and those for metals or glass) 01/01/1988 31/12/1996 -842099 01/01/1988 31/12/2500 LIBEN Parts for calendering or rolling machines, n.e.s. (other than for metals or glass and excl. cylinders) 01/01/1988 31/12/2500 -84209900 01/01/1988 31/12/2500 LIBEN Parts for calendering or rolling machines, n.e.s. (other than for metals or glass and excl. cylinders) 01/01/1988 31/12/2500 -8421 01/01/1988 31/12/2500 LIBEN Centrifuges, incl. centrifugal dryers (excl. those for isotope separation); filtering or purifying machinery and apparatus, for liquids or gases; parts thereof (excl. artificial kidneys) 01/01/1988 31/12/2500 -842111 01/01/1988 31/12/2500 LIBEN Centrifugal cream separators 01/01/1988 31/12/2500 -84211100 01/01/1988 31/12/2500 LIBEN Centrifugal cream separators 01/01/1988 31/12/2500 -842112 01/01/1988 31/12/2500 LIBEN Centrifugal clothes-dryers 01/01/1988 31/12/2500 -84211200 01/01/1988 31/12/2500 LIBEN Centrifugal clothes-dryers 01/01/1988 31/12/2500 -842119 01/01/1988 31/12/2500 LIBEN Centrifuges, incl. centrifugal dryers (excl. isotope separators, cream separators and clothes dryers) 01/01/1988 31/12/2500 -84211910 01/01/1988 31/12/2005 LIBEN Centrifuges for civil aircraft (excl. isotope separators) 01/01/1988 31/12/2005 -84211920 01/01/2006 31/12/2500 LIBEN Centrifuges of a kind used in laboratories 01/01/2006 31/12/2500 -84211940 01/01/2006 31/12/2006 LIBEN Centrifuges of a kind used in the manufacture of semiconductor wafers 01/01/2006 31/12/2006 -84211970 01/01/2007 31/12/2500 LIBEN Centrifuges, incl. centrifugal dryers (excl. apparatus for isotope separation, cream separators, clothes-dryers, and centrifuges of a kind used in laboratories and in the manufacture of semiconductor wafers) 01/01/2007 31/12/2500 -84211980 01/01/2006 31/12/2006 LIBEN Centrifuges, incl. centrifugal dryers (excl. apparatus for isotope separation, cream separators, clothes-dryers, and centrifuges of a kind used in laboratories and in the manufacture of semiconductor wafers) 01/01/2006 31/12/2006 -84211991 01/01/1988 31/12/2005 LIBEN Centrifuges of a kind used in laboratories 01/01/1988 31/12/2005 -84211993 01/01/1995 31/12/1999 LIBEN Spinners for coating photographic emulsions on semiconductor wafers 01/01/1995 31/12/1999 -84211994 01/01/2000 31/12/2005 LIBEN Centrifuges of a kind used in the manufacture of semiconductor wafers 01/01/2000 31/12/2005 -84211995 01/01/1998 31/12/1999 LIBEN Centrifuges of a kind used in the manufacture of semiconductor wafers (excl. spinners for coating photographic emulsions on semiconductor wafers) 01/01/1998 31/12/1999 -84211996 01/01/1998 31/12/1998 LIBEN Spinners for coating photographic emulsions on LCD substrates 01/01/1998 31/12/1998 -84211997 01/01/1998 31/12/1998 LIBEN Centrifuges, incl. centrifugal dryers (excl. for civil aircraft of subheading 8421.19.10, apparatus for isotope separation, cream separators, clothes-dryers, centrifuges of a kind used in laboratories and in the manufacture of semiconductor wafers and spinners for coating photographic emulsions on LCD substrates) 01/01/1998 31/12/1998 -84211998 01/01/1995 31/12/1997 LIBEN Centrifuges, incl. centrifugal dryers (excl. for civil aircraft of subheading 8421.19.10, apparatus for isotope separation, cream separators, clothes-dryers, centrifuges of a kind used in laboratories, and spinners for coating photographic emulsions on semiconductor wafers) 01/01/1995 31/12/1997 -84211999 01/01/1988 31/12/1994 LIBEN Centrifuges, including centrifugal dryers (excl. those for civil aircraft of subheading no 8421.19-10, isotope separators, cream separators, clothes dryers and centrifuges for laboratories) 01/01/1988 31/12/1994 -84211999 01/01/1999 31/12/2005 LIBEN Centrifuges, incl. centrifugal dryers (excl. for civil aircraft of subheading 8421.19.10, apparatus for isotope separation, cream separators, clothes-dryers, and centrifuges of a kind used in laboratories and in the manufacture of semiconductor wafers) 01/01/1999 31/12/2005 -842121 01/01/1988 31/12/2500 LIBEN Machinery and apparatus for filtering or purifying water 01/01/1988 31/12/2500 -84212100 01/01/2006 31/12/2500 LIBEN Machinery and apparatus for filtering or purifying water 01/01/2006 31/12/2500 -84212110 01/01/1988 31/12/2005 LIBEN Machinery and apparatus for filtering or purifying water, for civil aircraft 01/01/1988 31/12/2005 -84212190 01/01/1988 31/12/2005 LIBEN Machinery and apparatus for filtering or purifying water (excl. that for civil aircraft of subheading 8421.21.10) 01/01/1988 31/12/2005 -842122 01/01/1988 31/12/2500 LIBEN Machinery and apparatus for filtering or purifying beverages (excl.water) 01/01/1988 31/12/2500 -84212200 01/01/1988 31/12/2500 LIBEN Machinery and apparatus for filtering or purifying beverages (excl.water) 01/01/1988 31/12/2500 -842123 01/01/1988 31/12/2500 LIBEN Oil or petrol-filters for internal combustion engines 01/01/1988 31/12/2500 -84212300 01/01/2006 31/12/2500 LIBEN Oil or petrol-filters for internal combustion engines 01/01/2006 31/12/2500 -84212310 01/01/1988 31/12/2005 LIBEN Oil or petrol-filters for internal combustion engines, for civil aircraft 01/01/1988 31/12/2005 -84212390 01/01/1988 31/12/2005 LIBEN Oil or petrol-filters for internal combustion engines (excl. such for civil aircraft of subheading 8421.23.10) 01/01/1988 31/12/2005 -842129 01/01/1988 31/12/2500 LIBEN Machinery and apparatus for filtering or purifying liquids (excl. such machinery and apparatus for water and other beverages, oil or petrol-filters for internal combustion engines and artificial kidneys) 01/01/1988 31/12/2500 -84212900 01/01/2006 31/12/2016 LIBEN Machinery and apparatus for filtering or purifying liquids (excl. such machinery and apparatus for water and other beverages, oil or petrol-filters for internal combustion engines and artificial kidneys) 01/01/2006 31/12/2016 -84212910 01/01/1988 31/12/2005 LIBEN Machinery and apparatus for filtering or purifying liquids for civil aircraft (excl. such machinery and apparatus for water and other beverages and oil or petrol-filters for internal combustion engines) 01/01/1988 31/12/2005 -84212920 01/01/2017 31/12/2500 LIBEN Machinery and apparatus for filtering or purifying liquids, made of fluoropolymers and with filter or purifier membrane thickness <= 140 μm (excl. those for water and other beverages, and artificial kidneys) 01/01/2017 31/12/2500 -84212980 01/01/2017 31/12/2500 LIBEN Machinery and apparatus for filtering or purifying liquids (excl. such machinery and apparatus for water and other beverages, oil or petrol filters for internal combustion engines, artificial kidneys, and those made of fluoropolymers with filter or purifier membrane thickness <= 140 μm) 01/01/2017 31/12/2500 -84212990 01/01/1988 31/12/2005 LIBEN Machinery and apparatus for filtering or purifying liquids (excl. such machinery and apparatus for civil aircraft of subheading 8421.29.10 and for water and other beverages, oil or petrol-filters for internal combustion engines and artificial kidneys) 01/01/1988 31/12/2005 -842131 01/01/1988 31/12/2500 LIBEN Intake air filters for internal combustion engines 01/01/1988 31/12/2500 -84213100 01/01/2006 31/12/2500 LIBEN Intake air filters for internal combustion engines 01/01/2006 31/12/2500 -84213110 01/01/1988 31/12/2005 LIBEN Intake air filters for internal combustion engines, for civil aircraft 01/01/1988 31/12/2005 -84213190 01/01/1988 31/12/2005 LIBEN Intake air filters for internal combustion engines (excl. those for civil aircraft of subheading 8421.31.10) 01/01/1988 31/12/2005 -842139 01/01/1988 31/12/2500 LIBEN Machinery and apparatus for filtering or purifying gases (excl. isotope separators and intake air filters for internal combustion engines) 01/01/1988 31/12/2500 -84213910 01/01/1988 31/12/2005 LIBEN Machinery and apparatus for filtering or purifying gases, for civil aircraft (excl. isotope separators and intake air filters for internal combustion engines) 01/01/1988 31/12/2005 -84213915 01/01/2017 31/12/2500 LIBEN Machinery and apparatus for filtering or purifying gases, with stainless steel housing and with inlet and outlet tube bores with inside diameters <= 1,3 cm 01/01/2017 31/12/2500 -84213920 01/01/2006 31/12/2016 LIBEN Machinery and apparatus for filtering or purifying air (excl. isotope separators and intake air filters for internal combustion engines) 01/01/2006 31/12/2016 -84213925 01/01/2017 31/12/2500 LIBEN Machinery and apparatus for filtering or purifying air (excl. intake air filters for internal combustion engines, and those with stainless steel housing and with inlet and outlet tube bores with inside diameters <= 1,3 cm) 01/01/2017 31/12/2500 -84213930 01/01/1988 31/12/2005 LIBEN Machinery and apparatus for filtering or purifying air (excl. such articles for civil aircraft of subheading 8421.39.10, isotope separators and intake air filters for internal combustion engines) 01/01/1988 31/12/2005 -84213935 01/01/2017 31/12/2500 LIBEN Machinery and apparatus for filtering or purifying gases other than air by a catalytic process (excl. those with stainless steel housing and with inlet and outlet tube bores with inside diameters <= 1,3 cm) 01/01/2017 31/12/2500 -84213940 01/01/2006 31/12/2009 LIBEN Machinery and apparatus for filtering or purifying gases (other than air), by a liquid process (excl. isotope separators) 01/01/2006 31/12/2009 -84213951 01/01/1988 31/12/2005 LIBEN Machinery and apparatus for filtering or purifying gases (other than air), by a liquid process (excl. such articles for civil aircraft of subheading 8421.39.10 and isotope separators) 01/01/1988 31/12/2005 -84213955 01/01/1988 31/12/1995 LIBEN Machinery and apparatus for filtering or purifying gases other than air, by an electrostatic process (excl. such articles for civil aircraft of subheading 8421.39.10 and isotope separators) 01/01/1988 31/12/1995 -84213960 01/01/2006 31/12/2016 LIBEN Machinery and apparatus for filtering or purifying gases (other than air), by a catalytic process (excl. isotope separators) 01/01/2006 31/12/2016 -84213971 01/01/1988 31/12/2005 LIBEN Machinery and apparatus for filtering or purifying gases (other than air), by a catalytic process (excl. such articles for civil aircraft of subheading 8421.39.10 and isotope separators) 01/01/1988 31/12/2005 -84213975 01/01/1988 31/12/1995 LIBEN Machinery and apparatus for filtering and purifying gases other than air, by a thermic process (excl. such articles for civil aircraft of subheading 8421.39.10 and isotope separators) 01/01/1988 31/12/1995 -84213980 01/01/2010 31/12/2016 LIBEN Machinery and apparatus for filtering and purifying gases (other than air and excl. those which operate using a catalytic process, and isotope separators) 01/01/2010 31/12/2016 -84213985 01/01/2017 31/12/2500 LIBEN Machinery and apparatus for filtering or purifying gases other than air (excl. isotope separators, those using a catalytic process, and those with stainless steel housing and with inlet and outlet tube bores with inside diameters <= 1,3 cm) 01/01/2017 31/12/2500 -84213990 01/01/2006 31/12/2009 LIBEN Machinery and apparatus for filtering and purifying gases (other than air and excl. those which operate using a liquid or catalytic process, and isotope separators) 01/01/2006 31/12/2009 -84213998 01/01/1996 31/12/2005 LIBEN Machinery and apparatus for filtering and purifying gases (other than air and excl. those which operate using a liquid or catalytic process, machinery and apparatus for civil aircraft of subheading 8421.39.10, and isotope separators) 01/01/1996 31/12/2005 -84213999 01/01/1988 31/12/1995 LIBEN Machinery and apparatus for filtering and purifying gases other than air (excl. those which operate using a liquid, electrostatic, catalytic or thermic process, machinery and apparatus for civil aircraft of subheading 8421.39.10 and isotope separators) 01/01/1988 31/12/1995 -842191 01/01/1988 31/12/2500 LIBEN Parts of centrifuges, incl. centrifugal dryers, n.e.s. 01/01/1988 31/12/2500 -84219100 01/01/1988 31/12/1997 LIBEN Parts of centrifuges, incl. centrifugal dryers n.e.s. 01/01/1988 31/12/1997 -84219100 01/01/2007 31/12/2500 LIBEN Parts of centrifuges, incl. centrifugal dryers, n.e.s. 01/01/2007 31/12/2500 -84219110 01/01/1998 31/12/2006 LIBEN Parts of centrifuges of a kind used in the manufacture of semiconductor wafers, n.e.s. 01/01/1998 31/12/2006 -84219130 01/01/1998 31/12/2006 LIBEN Parts of spinners for coating photographic emulsions on LCD substrates, n.e.s. 01/01/1998 31/12/2006 -84219190 01/01/1998 31/12/2006 LIBEN Parts of centrifuges, incl. centrifugal dryers, n.e.s. (excl. of centrifuges of a kind used in the manufacture of semiconductor wafers and of spinners for coating photographic emulsions on LCD substrates) 01/01/1998 31/12/2006 -842199 01/01/1988 31/12/2500 LIBEN Parts of machinery and apparatus for filtering or purifying liquids or gases, n.e.s. 01/01/1988 31/12/2500 -84219900 01/01/1988 31/12/2016 LIBEN Parts of machinery and apparatus for filtering or purifying liquids or gases, n.e.s. 01/01/1988 31/12/2016 -84219910 01/01/2017 31/12/2500 LIBEN Parts of machinery and apparatus of subheadings 84212920 or 84213915, n.e.s. 01/01/2017 31/12/2500 -84219990 01/01/2017 31/12/2500 LIBEN Parts of machinery and apparatus for filtering or purifying liquids or gases, n.e.s. 01/01/2017 31/12/2500 -8421I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8421; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8421I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8421; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8421I4 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8421; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8421I400 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8421; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8421I7 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8421; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -8421I700 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8421; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -8422 01/01/1988 31/12/2500 LIBEN Dishwashing machines; machinery for cleaning or drying bottles or other containers; machinery for filling, closing, sealing or labelling bottles, cans, boxes, bags or other containers; machinery for capsuling bottles, jars, tubes and similar containers; other packing or wrapping machinery, incl. heat-shrink wrapping machinery; machinery for aerating beverages; parts thereof 01/01/1988 31/12/2500 -842211 01/01/1988 31/12/2500 LIBEN Dishwashing machines of the household type 01/01/1988 31/12/2500 -84221100 01/01/1988 31/12/2500 LIBEN Dishwashing machines of the household type 01/01/1988 31/12/2500 -842219 01/01/1988 31/12/2500 LIBEN Dishwashing machines (excl. those of the household type) 01/01/1988 31/12/2500 -84221900 01/01/1988 31/12/2500 LIBEN Dishwashing machines (excl. those of the household type) 01/01/1988 31/12/2500 -842220 01/01/1988 31/12/2500 LIBEN Machinery for cleaning or drying bottles or other containers (excl. dishwashing machines) 01/01/1988 31/12/2500 -84222000 01/01/1988 31/12/2500 LIBEN Machinery for cleaning or drying bottles or other containers (excl. dishwashing machines) 01/01/1988 31/12/2500 -842230 01/01/1988 31/12/2500 LIBEN Machinery for filling, closing, sealing or labelling bottles, cans, boxes, bags or other containers; machinery for capsuling bottles, jars, tubes and similar containers; machinery for aerating beverages 01/01/1988 31/12/2500 -84223000 01/01/1988 31/12/2001 LIBEN Machinery for filling, closing, sealing or labelling bottles, cans, boxes, bags or other containers; machinery for capsuling bottles, jars, tubes and similar containers; machinery for aerating beverages 01/01/1988 31/12/2001 -84223000 01/01/2002 31/12/2500 LIBEN Machinery for filling, closing, sealing or labelling bottles, cans, boxes, bags or other containers; machinery for capsuling bottles, jars, tubes and similar containers; machinery for aerating beverages 01/01/2002 31/12/2500 -842240 01/01/1988 31/12/2500 LIBEN Packing or wrapping machinery, incl. heat-shrink wrapping machinery (excl. machinery for filling, closing, sealing or labelling bottles, cans, boxes, bags or other containers and machinery for capsuling bottles, jars, tubes and similar containers) 01/01/1988 31/12/2500 -84224000 01/01/1988 31/12/2001 LIBEN Packing or wrapping machinery, incl. heat-shrink wrapping machinery (excl. machinery for filling, closing, sealing or labelling bottles, cans, boxes, bags or other containers and machinery for capsuling bottles, jars, tubes and similar containers) 01/01/1988 31/12/2001 -84224000 01/01/2002 31/12/2500 LIBEN Packing or wrapping machinery, incl. heat-shrink wrapping machinery (excl. machinery for filling, closing, sealing or labelling bottles, cans, boxes, bags or other containers and machinery for capsuling bottles, jars, tubes and similar containers) 01/01/2002 31/12/2500 -842290 01/01/1988 31/12/2500 LIBEN Parts of dishwashing machines, packing or wrapping machinery and other machinery and apparatus of heading 8422, n.e.s. 01/01/1988 31/12/2500 -84229000 01/01/1988 31/12/1991 LIBEN Parts of dish-washing machines, packing or wrapping machinery and other machinery and apparatus of heading 8422, n.e.s. 01/01/1988 31/12/1991 -84229010 01/01/1992 31/12/2006 LIBEN Parts of dishwashing machines, n.e.s. 01/01/1992 31/12/2006 -84229010 01/01/2007 31/12/2016 LIBEN Parts of dishwashing machines, n.e.s. 01/01/2007 31/12/2016 -84229010 01/01/2017 31/12/2500 LIBEN Parts of dishwashing machines, n.e.s. 01/01/2017 31/12/2500 -84229090 01/01/1992 31/12/2001 LIBEN Parts of packing or wrapping machinery and of other machinery of heading 8422, n.e.s. (excl. parts of dish-washing machines) 01/01/1992 31/12/2001 -84229090 01/01/2002 31/12/2006 LIBEN Parts of packing or wrapping machinery and of other machinery of heading 8422, n.e.s. (excl. parts of dishwashing machines) 01/01/2002 31/12/2006 -84229090 01/01/2007 31/12/2016 LIBEN Parts of packing or wrapping machinery and of other machinery of heading 8422, n.e.s. (excl. parts of dishwashing machines) 01/01/2007 31/12/2016 -84229090 01/01/2017 31/12/2500 LIBEN Parts of packing or wrapping machinery and of other machinery of heading 8422, n.e.s. (excl. parts of dishwashing machines) 01/01/2017 31/12/2500 -8423 01/01/1988 31/12/2500 LIBEN Weighing machinery, incl. weight-operated counting or checking machines (excl. balances of a sensitivity of 5 cg or better); weighing machine weights of all kinds; parts thereof 01/01/1988 31/12/2500 -842310 01/01/1988 31/12/2500 LIBEN Personal weighing machines, incl. baby scales; household scales 01/01/1988 31/12/2500 -84231010 01/01/1988 31/12/2500 LIBEN Household scales (excl. personal weighing machines and baby scales) 01/01/1988 31/12/2500 -84231090 01/01/1988 31/12/2500 LIBEN Personal weighing machines, incl. baby scales 01/01/1988 31/12/2500 -842320 01/01/1988 31/12/2500 LIBEN Scales for continuous weighing of goods on conveyors 01/01/1988 31/12/2500 -84232000 01/01/1988 31/12/2016 LIBEN Scales for continuous weighing of goods on conveyors 01/01/1988 31/12/2016 -84232010 01/01/2017 31/12/2500 LIBEN Scales for continuous weighing of goods on conveyors, using electronic means for gauging weight 01/01/2017 31/12/2500 -84232090 01/01/2017 31/12/2500 LIBEN Scales for continuous weighing of goods on conveyors, using non-electronic means for gauging weight 01/01/2017 31/12/2500 -842330 01/01/1988 31/12/2500 LIBEN Constant weight scales and scales for discharging a pre-determined weight of material into a bag or container, incl. hopper scales (excl. scales for continuous weighing of goods on conveyors) 01/01/1988 31/12/2500 -84233000 01/01/1988 31/12/2016 LIBEN Constant weight scales and scales for discharging a pre-determined weight of material into a bag or container, incl. hopper scales (excl. scales for continuous weighing of goods on conveyors) 01/01/1988 31/12/2016 -84233010 01/01/2017 31/12/2500 LIBEN Constant weight scales and scales for discharging a predetermined weight of material into a bag or container, incl. hopper scales, using electronic means for gauging weight 01/01/2017 31/12/2500 -84233090 01/01/2017 31/12/2500 LIBEN Constant weight scales and scales for discharging a predetermined weight of material into a bag or container, incl. hopper scales, using non-electronic means for gauging weight 01/01/2017 31/12/2500 -842381 01/01/1988 31/12/2500 LIBEN Weighing machinery having a maximum weighing capacity <= 30 kg (excl. balances of a sensitivity of 5 cg or better, personal weighing machines, household scales, scales for continuous weighing of goods on conveyors, constant weight scales and scales for discharging a pre-determined weight of material into a bag or container, incl. hopper scales) 01/01/1988 31/12/2500 -84238110 01/01/1988 31/12/2016 LIBEN Check weighers and automatic control machines operating by reference to a pre-determined weight, of a maximum weighing capacity <= 30 kg 01/01/1988 31/12/2016 -84238121 01/01/2017 31/12/2500 LIBEN Check weighers and automatic control machines operating by reference to a pre-determined weight, having weighing capacity <= 30 kg, using electronic means for gauging weight 01/01/2017 31/12/2500 -84238123 01/01/2017 31/12/2500 LIBEN Machinery for weighing and labelling pre-packaged goods, having weighing capacity <= 30 kg, using electronic means for gauging weight 01/01/2017 31/12/2500 -84238125 01/01/2017 31/12/2500 LIBEN Shop scales, having weighing capacity <= 30 kg, using electronic means for gauging weight (excl. machinery for weighing and labelling pre-packaged goods) 01/01/2017 31/12/2500 -84238129 01/01/2017 31/12/2500 LIBEN Weighing machinery having a maximum weighing capacity <= 30 kg, using electronic means for gauging weight, n.e.s 01/01/2017 31/12/2500 -84238130 01/01/1988 31/12/2016 LIBEN Machinery for weighing and labelling pre-packaged goods, of a maximum weighing capacity <= 30 kg 01/01/1988 31/12/2016 -84238150 01/01/1988 31/12/2016 LIBEN Shop-scales of a maximum weighing capacity <= 30 kg (excl. machinery for weighing and labelling pre-packaged goods) 01/01/1988 31/12/2016 -84238180 01/01/2017 31/12/2500 LIBEN Weighing machinery having a maximum weighing capacity <= 30 kg, using non-electronic means for gauging weight, n.e.s 01/01/2017 31/12/2500 -84238190 01/01/1988 31/12/2016 LIBEN Weighing machinery of a maximum capacity <= 30 kg (excl. of a sensitivity <= 50 mg; personal weighing machines; household scales; scales for continuous weighing of goods on conveyors; constant weight scales and scales for discharging a predetermined weight, incl. hopper scales; check weighers and automatic control machines for a pre-determined weight; for weighing and labelling packed goods; for use in shops) 01/01/1988 31/12/2016 -842382 01/01/1988 31/12/2500 LIBEN Weighing machinery of a maximum weighing capacity > 30 kg but <= 5.000 kg (excl. personal weighing machines, scales for continuous weighing of goods on conveyors, constant weight scales and scales for discharging a pre-determined weight of material into a bag or container, incl. hopper scales) 01/01/1988 31/12/2500 -84238210 01/01/1988 31/12/2016 LIBEN Check weighers and automatic control machines operating by reference to a pre-determined weight, of a maximum weighing capacity > 30 kg but <= 5.000 kg 01/01/1988 31/12/2016 -84238220 01/01/2017 31/12/2500 LIBEN Weighing machinery of a maximum weighing capacity > 30 kg but <= 5.000 kg, using electronic means for gauging weight (excl. machines for weighing motor vehicles, personal weighing machines, scales for continuous weighing of goods on conveyors, constant weight scales and scales for discharging a pre-determined weight of material into a bag or container, also hopper scales) 01/01/2017 31/12/2500 -84238281 01/01/2017 31/12/2500 LIBEN Check weighers and automatic control machines operating by reference to a pre-determined weight, of a maximum weighing capacity > 30 kg but <= 5.000 kg, using non-electronic means for gauging weight 01/01/2017 31/12/2500 -84238289 01/01/2017 31/12/2500 LIBEN Weighing machinery of a maximum weighing capacity > 30 kg but <= 5.000 kg, n.e.s. 01/01/2017 31/12/2500 -84238290 01/01/1995 31/12/2016 LIBEN Weighing machinery having a maximum weighing capacity of > 30 kg but <= 5.000 kg (other than personal weighing machines, scales for continuous weighing of goods on conveyors, constant weight scales and scales for discharging a certain weight of material into a bag or container, incl. hopper scales, check weighers and automatic control machines operating by reference to a pre-determined weight) 01/01/1995 31/12/2016 -84238291 01/01/1988 31/12/1994 LIBEN Weighing machinery of a capacity > 30 kg but =< 1 500 kg (excl. personal weighing machines, scales for continuous weighing of goods on conveyors, constant weight scales and scales for discharging a predetermined weight of material into a bag or container, incl. hopper scales, check weighers and automatic control machines operating by reference to a predetermined weight) 01/01/1988 31/12/1994 -84238299 01/01/1988 31/12/1994 LIBEN Weighing machinery of a capacity > 1 500 kg but =< 5 000 kg (excl. constant weight scales and scales for discharging a predetermined weight of material into a bag or container, incl. hopper scales) 01/01/1988 31/12/1994 -842389 01/01/1988 31/12/2500 LIBEN Weighing machinery of a maximum weighing capacity > 5.000 kg 01/01/1988 31/12/2500 -84238900 01/01/2004 31/12/2016 LIBEN Weighing machinery of a maximum weighing capacity > 5.000 kg 01/01/2004 31/12/2016 -84238910 01/01/1988 31/12/2003 LIBEN Weighbridges of a maximum weighing capacity > 5.000 kg 01/01/1988 31/12/2003 -84238920 01/01/2017 31/12/2500 LIBEN Weighing machinery of a maximum weighing capacity > 5.000 kg, using electronic means for gauging weight 01/01/2017 31/12/2500 -84238980 01/01/2017 31/12/2500 LIBEN Weighing machinery of a maximum weighing capacity > 5.000 kg, using non-electronic means for gauging weight 01/01/2017 31/12/2500 -84238990 01/01/1988 31/12/2003 LIBEN Weighing machinery of a maximum weighing capacity > 5.000 kg (excl. weighbridges) 01/01/1988 31/12/2003 -842390 01/01/1988 31/12/2500 LIBEN Weighing machine weights of all kinds; parts of weighing machinery, n.e.s. 01/01/1988 31/12/2500 -84239000 01/01/1988 31/12/2016 LIBEN Weighing machine weights of all kinds; parts of weighing machinery, n.e.s. 01/01/1988 31/12/2016 -84239010 01/01/2017 31/12/2500 LIBEN Parts of weighing machinery of subheadings 84232010, 84233010, 84238121, 84238123 , 84238125, 84238129, 84238220 or 84238920, n.e.s. 01/01/2017 31/12/2500 -84239090 01/01/2017 31/12/2500 LIBEN Weighing machine weights of all kinds; parts of weighing machinery, n.e.s. 01/01/2017 31/12/2500 -8424 01/01/1988 31/12/2500 LIBEN Mechanical appliances, whether or not hand-operated, for projecting, dispersing or spraying liquids or powders, n.e.s.; fire extinguishers, charged or not (excl. fire-extinguishing bombs and grenades); spray guns and similar appliances (excl. electric machines and apparatus for hot spraying of metals or sintered metal carbides of heading 8515); steam or sand blasting machines and similar jet projecting machines; parts thereof, n.e.s. 01/01/1988 31/12/2500 -842410 01/01/1988 31/12/2500 LIBEN Fire extinguishers, whether or not charged 01/01/1988 31/12/2500 -84241000 01/01/2010 31/12/2500 LIBEN Fire extinguishers, whether or not charged 01/01/2010 31/12/2500 -84241010 01/01/1988 31/12/2005 LIBEN Fire extinguishers, whether or not charged, for civil aircraft (excl. fire-extinguishing bombs and grenades) 01/01/1988 31/12/2005 -84241020 01/01/2006 31/12/2009 LIBEN Fire extinguishers, whether or not charged, weighing <= 21 kg (excl. fire-extinguishing bombs and grenades) 01/01/2006 31/12/2009 -84241080 01/01/2006 31/12/2009 LIBEN Fire extinguishers, whether or not charged, weighing > 21 kg 01/01/2006 31/12/2009 -84241090 01/01/1988 31/12/1993 LIBEN Fire extinguishers, whether or not charged (excl. those for civil aircraft of subheading no 8424.10-10 and fire-extinguishing bombs and grenades) 01/01/1988 31/12/1993 -84241091 01/01/1994 31/12/2005 LIBEN Fire extinguishers, whether or not charged, weighing <= 21 kg (excl. those for civil aircraft of subheading 8424.10.10 and fire-extinguishing bombs and grenades) 01/01/1994 31/12/2005 -84241099 01/01/1994 31/12/2005 LIBEN Fire extinguishers, whether or not charged, weighing > 21 kg (excl. those for civil aircraft of subheading 8424.10.10) 01/01/1994 31/12/2005 -842420 01/01/1988 31/12/2500 LIBEN Spray guns and similar appliances (other than electrical machines, appliances and other devices for spraying molten metals or metal carbides of heading 8515, sand blasting machines and similar jet projecting machines) 01/01/1988 31/12/2500 -84242000 01/01/1995 31/12/2500 LIBEN Spray guns and similar appliances (other than electrical machines, appliances and other devices for spraying molten metals or metal carbides of heading 8515, sand blasting machines and similar jet projecting machines) 01/01/1995 31/12/2500 -84242010 01/01/1988 31/12/1994 LIBEN Guns for spraying hot materials (excl. electric machines and apparatus for hot spraying of metals or sintered metal carbides of heading 8515, steam or sand blasting machines and similar jet projecting machines) 01/01/1988 31/12/1994 -84242090 01/01/1988 31/12/1994 LIBEN Spray guns and similar appliances (excl. electric machines and apparatus for hot spraying of metals or sintered metal carbides of heading 8515, guns for spraying hot materials, steam or sand blasting machines and similar jet projecting machines) 01/01/1988 31/12/1994 -842430 01/01/1988 31/12/2500 LIBEN Steam or sand blasting machines and similar jet projecting machines, incl. water cleaning appliances with built-in motor (excl. appliances for cleaning special containers) 01/01/1988 31/12/2500 -84243001 01/01/1993 31/12/2500 LIBEN Water cleaning appliances with built-in motor, with heating device 01/01/1993 31/12/2500 -84243005 01/01/1993 31/12/2009 LIBEN Water cleaning appliances with built-in motor, without heating device, of an engine power <= 7,5 kW 01/01/1993 31/12/2009 -84243008 01/01/2010 31/12/2500 LIBEN Water cleaning appliances with built-in motor, without heating device 01/01/2010 31/12/2500 -84243009 01/01/1993 31/12/2009 LIBEN Water cleaning appliances with built-in motor, without heating device, of an engine power >= 7,5 kW 01/01/1993 31/12/2009 -84243010 01/01/1988 31/12/2500 LIBEN Steam or sand blasting machines and similar jet projecting machines, compressed air operated 01/01/1988 31/12/2500 -84243090 01/01/1988 31/12/2001 LIBEN Steam or sand blasting machines and similar jet projecting machines (excl. compressed air operated and water cleaning appliances with built-in motor and appliances for cleaning special containers) 01/01/1988 31/12/2001 -84243090 01/01/2002 31/12/2500 LIBEN Steam or sand blasting machines and similar jet projecting machines (excl. compressed air operated and water cleaning appliances with built-in motor and appliances for cleaning special containers) 01/01/2002 31/12/2500 -842441 01/01/2017 31/12/2500 LIBEN Agricultural or horticultural sprayers, portable 01/01/2017 31/12/2500 -84244100 01/01/2017 31/12/2500 LIBEN Agricultural or horticultural sprayers, portable 01/01/2017 31/12/2500 -842449 01/01/2017 31/12/2500 LIBEN Agricultural or horticultural sprayers (excl. portable) 01/01/2017 31/12/2500 -84244910 01/01/2017 31/12/2500 LIBEN Agricultural or horticultural liquid/powder sprayers designed to be mounted on or drawn by a tractor 01/01/2017 31/12/2500 -84244990 01/01/2017 31/12/2500 LIBEN Agricultural or horticultural sprayers (excl. portable, and those designed to be mounted on or drawn by a tractor) 01/01/2017 31/12/2500 -842481 01/01/1988 31/12/2016 LIBEN Agricultural or horticultural mechanical appliances, whether or not hand-operated, for projecting, dispersing or spraying liquids or powders 01/01/1988 31/12/2016 -84248110 01/01/1988 31/12/2016 LIBEN Agricultural or horticultural watering appliances, whether or not hand-operated 01/01/1988 31/12/2016 -84248130 01/01/1999 31/12/2016 LIBEN Portable agricultural or horticultural appliances, whether or not hand-operated, for projecting, dispersing or spraying liquids or powder 01/01/1999 31/12/2016 -84248131 01/01/1988 31/12/1998 LIBEN Portable agricultural or horticultural appliances, whether or not hand-operated, for projecting, dispersing or spraying liquids or powder, without motor 01/01/1988 31/12/1998 -84248139 01/01/1988 31/12/1998 LIBEN Portable agricultural or horticultural appliances, whether or not hand-operated, for projecting, dispersing or spraying liquids or powder, with motor 01/01/1988 31/12/1998 -84248191 01/01/1988 31/12/2016 LIBEN Agricultural or horticultural sprayers and powder distributors, designed to be mounted on or drawn by tractors 01/01/1988 31/12/2016 -84248199 01/01/1988 31/12/2016 LIBEN Agricultural or horticultural mechanical appliances, whether or not hand-operated, for projecting, dispersing or spraying liquids or powders (excl. watering appliances, portable appliances and sprayers and powder distributors designed to be mounted on or drawn by tractors) 01/01/1988 31/12/2016 -842482 01/01/2017 31/12/2500 LIBEN Agricultural or horticultural mechanical appliances, whether or not hand-operated, for projecting or dispersing liquids or powders (excl. sprayers) 01/01/2017 31/12/2500 -84248210 01/01/2017 31/12/2500 LIBEN Agricultural or horticultural watering appliances, whether or not hand-operated 01/01/2017 31/12/2500 -84248290 01/01/2017 31/12/2500 LIBEN Agricultural or horticultural mechanical appliances, whether or not hand-operated, for projecting or dispersing liquids or powders (excl. sprayers and watering appliances) 01/01/2017 31/12/2500 -842489 01/01/1988 31/12/2500 LIBEN Mechanical appliances, whether or not hand-operated, for projecting, dispersing or spraying liquids or powders, n.e.s. 01/01/1988 31/12/2500 -84248900 01/01/1993 31/12/1994 LIBEN Appliances, mechanical, whether or not hand-operated, for projecting, dispersing or spraying liquids or powders n.e.s. 01/01/1993 31/12/1994 -84248900 01/01/2007 31/12/2016 LIBEN Mechanical appliances, whether or not hand-operated, for projecting, dispersing or spraying liquids or powders, n.e.s. 01/01/2007 31/12/2016 -84248910 01/01/1988 31/12/1992 LIBEN Water cleaning appliances, with built-in motor, with heating device 01/01/1988 31/12/1992 -84248920 01/01/1995 31/12/2006 LIBEN Spraying appliances for etching, stripping or cleaning semiconductor wafers, mechanical 01/01/1995 31/12/2006 -84248930 01/01/1998 31/12/2006 LIBEN Deflash machines for cleaning the metal leads of semiconductor packages prior to the electroplating process 01/01/1998 31/12/2006 -84248931 01/01/1988 31/12/1992 LIBEN Water cleaning appliances, with built-in motor, without heating device, of an engine power =< 7.5 kw 01/01/1988 31/12/1992 -84248939 01/01/1988 31/12/1992 LIBEN Water cleaning appliances, with built-in motor, without heating device, of an engine power > 7.5 kw 01/01/1988 31/12/1992 -84248940 01/01/2017 31/12/2500 LIBEN Mechanical appliances for projecting, dispersing, or spraying liquids or powders, of a kind used solely or principally for the manufacture of printed circuits or printed circuit assemblies 01/01/2017 31/12/2500 -84248970 01/01/2017 31/12/2500 LIBEN Mechanical appliances, whether or not hand-operated, for projecting, dispersing or spraying liquids or powders, n.e.s. 01/01/2017 31/12/2500 -84248980 01/01/1995 31/12/1995 LIBEN Mechanical appliances, whether or not hand-operated, for projecting, dispersing or spraying liquids or powders, n.e.s. 01/01/1995 31/12/1995 -84248980 01/01/1996 31/12/1997 LIBEN Mechanical appliances, whether or not hand-operated, for projecting, dispersing or spraying liquids or powders, n.e.s. 01/01/1996 31/12/1997 -84248990 01/01/1988 31/12/1992 LIBEN Machinery and apparatus, whether or not hand-operated, for projecting, dispersing or spraying liquids or powder, n.e.s. 01/01/1988 31/12/1992 -84248995 01/01/1998 31/12/2006 LIBEN Mechanical appliances, whether or not hand-operated, for projecting, dispersing or spraying liquids or powders, n.e.s. 01/01/1998 31/12/2006 -842490 01/01/1988 31/12/2500 LIBEN Parts of fire extinguishers, spray guns and similar appliances, steam or sand blasting machines and similar jet projecting machines and machinery and apparatus for projecting, dispersing or spraying liquids or powders, n.e.s. 01/01/1988 31/12/2500 -84249000 01/01/1988 31/12/1997 LIBEN Parts of fire extinguishers, spray guns and similar appliances, steam or sand blasting machines and similar jet projecting machines and machinery and apparatus for projecting, dispersing or spraying liquids or powder n.e.s. 01/01/1988 31/12/1997 -84249000 01/01/2007 31/12/2016 LIBEN Parts of fire extinguishers, spray guns and similar appliances, steam or sand blasting machines and similar jet projecting machines and machinery and apparatus for projecting, dispersing or spraying liquids or powders, n.e.s. 01/01/2007 31/12/2016 -84249010 01/01/1998 31/12/2006 LIBEN Parts of spraying appliances for etching, stripping or cleaning semiconductor wafers, n.e.s. 01/01/1998 31/12/2006 -84249020 01/01/2017 31/12/2500 LIBEN Parts of mechanical appliances for projecting, dispersing, or spraying liquids or powders, of a kind used solely or principally for the manufacture of printed circuits or printed circuit assemblies 01/01/2017 31/12/2500 -84249030 01/01/1998 31/12/2006 LIBEN Parts of deflash machines for cleaning the metal leads of semiconductor packages prior to the electroplating process, n.e.s. 01/01/1998 31/12/2006 -84249080 01/01/2017 31/12/2500 LIBEN Parts of fire extinguishers, spray guns and similar appliances, steam or sand blasting machines and similar jet projecting machines and machinery and apparatus for projecting, dispersing or spraying liquids or powders, n.e.s. 01/01/2017 31/12/2500 -84249090 01/01/1998 31/12/2001 LIBEN Parts of fire extinguishers, spray guns and similar appliances, steam or sand blasting machines and similar jet projecting machines and machinery and apparatus for projecting, dispersing or spraying liquids or powder, n.e.s. (excl. of spraying appliances for etching, stripping or cleaning semiconductor wafers and of deflash machines for cleaning the metal leads of semiconductor packages prior to the electroplating process) 01/01/1998 31/12/2001 -84249090 01/01/2002 31/12/2006 LIBEN Parts of fire extinguishers, spray guns and similar appliances, steam or sand blasting machines and similar jet projecting machines and machinery and apparatus for projecting, dispersing or spraying liquids or powder, n.e.s. (excl. of spraying appliances for etching, stripping or cleaning semiconductor wafers and of deflash machines for cleaning the metal leads of semiconductor packages prior to the electroplating process) 01/01/2002 31/12/2006 -8424S7 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8424 and SITC section 7 01/01/1997 31/12/2500 -8424S745 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8424 and SITC group 745 01/01/1997 31/12/2500 -8425 01/01/1988 31/12/2500 LIBEN Pulley tackle and hoists (other than skip hoists); winches and capstans; jacks 01/01/1988 31/12/2500 -842511 01/01/1988 31/12/2500 LIBEN Pulley tackle and hoists, powered by electric motor (other than skip hoists or hoists of a kind used for raising vehicles) 01/01/1988 31/12/2500 -84251100 01/01/2006 31/12/2500 LIBEN Pulley tackle and hoists, powered by electric motor (other than skip hoists or hoists of a kind used for raising vehicles) 01/01/2006 31/12/2500 -84251110 01/01/1988 31/12/2005 LIBEN Pulley tackle and hoists, powered by electric motor, for civil aircraft (other than skip hoists or hoists of a kind used for raising vehicles) 01/01/1988 31/12/2005 -84251190 01/01/1988 31/12/2005 LIBEN Pulley tackle and hoists, powered by electric motor (other than skip hoists or hoists of a kind used for raising vehicles and excl. those for civil aircraft of subheading 8425.11.10) 01/01/1988 31/12/2005 -842519 01/01/1988 31/12/2500 LIBEN Pulley tackle and hoists (other than skip hoists or hoists of a kind used for raising vehicles), non-powered by electric motor 01/01/1988 31/12/2500 -84251900 01/01/2010 31/12/2500 LIBEN Pulley tackle and hoists (other than skip hoists or hoists of a kind used for raising vehicles), non-powered by electric motor 01/01/2010 31/12/2500 -84251910 01/01/1988 31/12/2005 LIBEN Pulley tackle and hoists, for civil aircraft, not powered by electric motor (other than skip hoists or hoists of a kind used for raising vehicles) 01/01/1988 31/12/2005 -84251920 01/01/2006 31/12/2009 LIBEN Manually operated chain hoists 01/01/2006 31/12/2009 -84251980 01/01/2006 31/12/2009 LIBEN Pulley tackle and hoists (other than skip hoists or hoists of a kind used for raising vehicles), non-powered by electric motor (excl. manually operated chain hoists) 01/01/2006 31/12/2009 -84251991 01/01/1988 31/12/2005 LIBEN Manually operated chain hoists (excl. those for civil aircraft of subheading 8425.19.10) 01/01/1988 31/12/2005 -84251999 01/01/1988 31/12/2005 LIBEN Pulley tackle and hoists (other than skip hoists or hoists of a kind used for raising vehicles), not powered by electric motor (excl. those for civil aircraft of subheading 8425.19.10 and manually operated chain hoists) 01/01/1988 31/12/2005 -842520 01/01/1988 31/12/2006 LIBEN Pithead winding gear; winches for use underground 01/01/1988 31/12/2006 -84252000 01/01/1988 31/12/2006 LIBEN Pithead winding gear; winches for use underground 01/01/1988 31/12/2006 -842531 01/01/1988 31/12/2500 LIBEN Winches and capstans powered by electric motor 01/01/1988 31/12/2500 -84253100 01/01/2006 31/12/2006 LIBEN Winches and capstans powered by electric motor (excl. pithead winding gear and winches for use underground) 01/01/2006 31/12/2006 -84253100 01/01/2007 31/12/2500 LIBEN Winches and capstans powered by electric motor 01/01/2007 31/12/2500 -84253110 01/01/1988 31/12/2005 LIBEN Winches and capstans, powered by electric motor, for civil aircraft 01/01/1988 31/12/2005 -84253190 01/01/1988 31/12/2005 LIBEN Winches and capstans, powered by electric motor (excl. those for civil aircraft of subheading 8425.31.10, pithead winding gear and winches specially designed for use underground) 01/01/1988 31/12/2005 -842539 01/01/1988 31/12/2500 LIBEN Winches and capstans, non-powered by electric motor 01/01/1988 31/12/2500 -84253900 01/01/2010 31/12/2500 LIBEN Winches and capstans, non-powered by electric motor 01/01/2010 31/12/2500 -84253910 01/01/1988 31/12/2005 LIBEN Winches and capstans, not powered by electric motor, for civil aircraft 01/01/1988 31/12/2005 -84253920 01/01/2006 31/12/2006 LIBEN Winches and capstans powered by internal combustion piston engines 01/01/2006 31/12/2006 -84253930 01/01/2007 31/12/2009 LIBEN Winches and capstans powered by internal combustion piston engines 01/01/2007 31/12/2009 -84253980 01/01/2006 31/12/2006 LIBEN Winches and capstans, non-powered by electric motor (excl. winches and capstans powered by internal combustion piston engines, pithead winding gear and winches specially designed for use underground) 01/01/2006 31/12/2006 -84253990 01/01/2007 31/12/2009 LIBEN Winches and capstans, non-powered by electric motor (excl. powered by internal combustion piston engines) 01/01/2007 31/12/2009 -84253991 01/01/1988 31/12/2005 LIBEN Winches and capstans powered by internal combustion piston engine 01/01/1988 31/12/2005 -84253999 01/01/1988 31/12/2005 LIBEN Winches and capstans, not powered by electric motor (excl. those for civil aircraft of subheading 8425.39.10, winches and capstans powered by internal combustion piston engine, pithead winding gear and winches specially designed for use underground) 01/01/1988 31/12/2005 -842541 01/01/1988 31/12/2500 LIBEN Built-in jacking systems of a type used in garages 01/01/1988 31/12/2500 -84254100 01/01/1988 31/12/2500 LIBEN Built-in jacking systems of a type used in garages 01/01/1988 31/12/2500 -842542 01/01/1988 31/12/2500 LIBEN Jacks and hoists, hydraulic (excl. built-in jacking systems used in garages) 01/01/1988 31/12/2500 -84254200 01/01/2006 31/12/2500 LIBEN Jacks and hoists, hydraulic (excl. built-in jacking systems used in garages) 01/01/2006 31/12/2500 -84254210 01/01/1988 31/12/2005 LIBEN Jacks and hoists, hydraulic, for civil aircraft 01/01/1988 31/12/2005 -84254290 01/01/1988 31/12/2005 LIBEN Jacks and hoists, hydraulic (excl. those for civil aircraft of subheading 8425.42.10 and built-in jacking systems of a type used in garages) 01/01/1988 31/12/2005 -842549 01/01/1988 31/12/2500 LIBEN Jacks and hoists of a kind used for raising vehicles, not hydraulic 01/01/1988 31/12/2500 -84254900 01/01/2006 31/12/2500 LIBEN Jacks and hoists of a kind used for raising vehicles, not hydraulic 01/01/2006 31/12/2500 -84254910 01/01/1988 31/12/2005 LIBEN Jacks and hoists of a kind used for raising vehicles, not hydraulic, for civil aircraft 01/01/1988 31/12/2005 -84254990 01/01/1988 31/12/2005 LIBEN Jacks and hoists of a kind used for raising vehicles, not hydraulic (excl. those for civil aircraft of subheading 8425.49.10) 01/01/1988 31/12/2005 -8426 01/01/1988 31/12/2500 LIBEN Ships' derricks; cranes, incl. cable cranes (excl. wheel-mounted cranes and vehicle cranes for railways); mobile lifting frames, straddle carriers and works trucks fitted with a crane 01/01/1988 31/12/2500 -842611 01/01/1988 31/12/2500 LIBEN Overhead travelling cranes on fixed support 01/01/1988 31/12/2500 -84261100 01/01/1988 31/12/2500 LIBEN Overhead travelling cranes on fixed support 01/01/1988 31/12/2500 -842612 01/01/1988 31/12/2500 LIBEN Mobile lifting frames on tyres and straddle carriers 01/01/1988 31/12/2500 -84261200 01/01/1988 31/12/2500 LIBEN Mobile lifting frames on tyres and straddle carriers 01/01/1988 31/12/2500 -842619 01/01/1988 31/12/2500 LIBEN Overhead travelling cranes, transporter cranes, gantry cranes, bridge cranes and mobile lifting frames (excl. overhead travelling cranes on fixed support, mobile lifting frames on tyres, straddle carriers and portal or pedestal jib cranes) 01/01/1988 31/12/2500 -84261900 01/01/1988 31/12/2500 LIBEN Overhead travelling cranes, transporter cranes, gantry cranes, bridge cranes and mobile lifting frames (excl. overhead travelling cranes on fixed support, mobile lifting frames on tyres, straddle carriers and portal or pedestal jib cranes) 01/01/1988 31/12/2500 -842620 01/01/1988 31/12/2500 LIBEN Tower cranes 01/01/1988 31/12/2500 -84262000 01/01/1988 31/12/2500 LIBEN Tower cranes 01/01/1988 31/12/2500 -842630 01/01/1988 31/12/2500 LIBEN Portal or pedestal jib cranes 01/01/1988 31/12/2500 -84263000 01/01/1988 31/12/2500 LIBEN Portal or pedestal jib cranes 01/01/1988 31/12/2500 -842641 01/01/1988 31/12/2500 LIBEN Mobile cranes and works trucks fitted with a crane, self-propelled, on tyres (excl. wheel-mounted cranes, mobile lifting frames on tyres and straddle carriers) 01/01/1988 31/12/2500 -84264100 01/01/1988 31/12/2500 LIBEN Mobile cranes and works trucks fitted with a crane, self-propelled, on tyres (excl. wheel-mounted cranes, mobile lifting frames on tyres and straddle carriers) 01/01/1988 31/12/2500 -842649 01/01/1988 31/12/2500 LIBEN Mobile cranes and works trucks fitted with a crane, self-propelled (excl. those on tyres and straddle carriers) 01/01/1988 31/12/2500 -84264900 01/01/1988 31/12/2500 LIBEN Mobile cranes and works trucks fitted with a crane, self-propelled (excl. those on tyres and straddle carriers) 01/01/1988 31/12/2500 -842691 01/01/1988 31/12/2500 LIBEN Cranes designed for mounting on road vehicles 01/01/1988 31/12/2500 -84269110 01/01/1988 31/12/2500 LIBEN Hydraulic cranes designed for the loading and unloading of the vehicle 01/01/1988 31/12/2500 -84269190 01/01/1988 31/12/2500 LIBEN Cranes designed for mounting on road vehicles (excl. hydraulic cranes designed for the loading and unloading of vehicles) 01/01/1988 31/12/2500 -842699 01/01/1988 31/12/2500 LIBEN Ships' derricks; cranes, incl. cable cranes (excl. overhead travelling cranes, transporter cranes, gantry cranes, portal or pedestal jib cranes, bridge cranes, mobile lifting frames and straddle carriers, tower cranes, works trucks fitted with a crane, mobile cranes and cranes designed for mounting on road vehicles) 01/01/1988 31/12/2500 -84269900 01/01/2006 31/12/2500 LIBEN Ships' derricks; cranes, incl. cable cranes (excl. overhead travelling cranes, transporter cranes, gantry cranes, portal or pedestal jib cranes, bridge cranes, mobile lifting frames and straddle carriers, tower cranes, works trucks fitted with a crane, mobile cranes and cranes designed for mounting on road vehicles) 01/01/2006 31/12/2500 -84269910 01/01/1988 31/12/2005 LIBEN Cranes for civil aircraft 01/01/1988 31/12/2005 -84269990 01/01/1988 31/12/2005 LIBEN Ships' derricks; cranes, incl. cable cranes (excl. those for civil aircraft of subheading 8426.99.10, overhead travelling cranes, transporter cranes, gantry cranes, portal or pedestal jib cranes, bridge cranes, mobile lifting frames and straddle carriers, tower cranes, works trucks fitted with a crane, mobile cranes and cranes designed for mounting on road vehicles) 01/01/1988 31/12/2005 -8426I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8426; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8426I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8426; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8427 01/01/1988 31/12/2500 LIBEN Fork-lift trucks; other works trucks fitted with lifting or handling equipment (excl. straddle carriers and works trucks fitted with a crane) 01/01/1988 31/12/2500 -842710 01/01/1988 31/12/2500 LIBEN Self-propelled trucks fitted with lifting or handling equipment, powered by an electric motor 01/01/1988 31/12/2500 -84271010 01/01/1988 31/12/2500 LIBEN Self-propelled works trucks powered by an electric motor, with a lifting height >= 1 m 01/01/1988 31/12/2500 -84271090 01/01/1988 31/12/2500 LIBEN Self-propelled works trucks powered by an electric motor, with a lifting height < 1 m 01/01/1988 31/12/2500 -842720 01/01/1988 31/12/2500 LIBEN Self-propelled trucks fitted with lifting or handling equipment, non-powered by an electric motor 01/01/1988 31/12/2500 -84272011 01/01/1988 31/12/2500 LIBEN Rough terrain fork-lift and other stacking trucks, self-propelled, with a lifting height >= 1 m 01/01/1988 31/12/2500 -84272019 01/01/1988 31/12/2500 LIBEN Works trucks, self-propelled, with a lifting height >= 1 m, non- powered with an electric motor (excl. rough terrain fork-lift trucks and other stacking trucks) 01/01/1988 31/12/2500 -84272090 01/01/1988 31/12/2500 LIBEN Works trucks, self-propelled, with a lifting height < 1 m, non-powered with an electric motor 01/01/1988 31/12/2500 -842790 01/01/1988 31/12/2500 LIBEN Works trucks fitted with lifting or handling equipment, not self-propelled 01/01/1988 31/12/2500 -84279000 01/01/1988 31/12/2500 LIBEN Works trucks fitted with lifting or handling equipment, not self-propelled 01/01/1988 31/12/2500 -8428 01/01/1988 31/12/2500 LIBEN Lifting, handling, loading or unloading machinery, e.g. lifts, escalators, conveyors, teleferics (excl. pulley tackle and hoists, winches and capstans, jacks, cranes of all kinds, mobile lifting frames and straddle carriers, works trucks fitted with a crane, fork-lift trucks and other works trucks fitted with lifting or handling equipment) 01/01/1988 31/12/2500 -842810 01/01/1988 31/12/2500 LIBEN Lifts and skip hoists 01/01/1988 31/12/2500 -84281010 01/01/1988 31/12/2005 LIBEN Lifts and skip hoists, for civil aircraft 01/01/1988 31/12/2005 -84281020 01/01/2006 31/12/2500 LIBEN Lifts and skip hoists, electrically operated 01/01/2006 31/12/2500 -84281080 01/01/2006 31/12/2500 LIBEN Lifts and skip hoists, non-electrically operated 01/01/2006 31/12/2500 -84281091 01/01/1988 31/12/2005 LIBEN Lifts and skip hoists, electrically operated (excl. those for civil aircraft of subheading 8428.10.10) 01/01/1988 31/12/2005 -84281099 01/01/1988 31/12/2005 LIBEN Lifts and skip hoists, non-electrically operated (excl. those for civil aircraft of subheading 8428.10.10) 01/01/1988 31/12/2005 -842820 01/01/1988 31/12/2500 LIBEN Pneumatic elevators and conveyors 01/01/1988 31/12/2500 -84282010 01/01/1988 31/12/2005 LIBEN Pneumatic elevators and conveyors, for civil aircraft 01/01/1988 31/12/2005 -84282020 01/01/2010 31/12/2500 LIBEN Pneumatic elevators and conveyors, for bulk materials 01/01/2010 31/12/2500 -84282030 01/01/1988 31/12/2009 LIBEN Pneumatic elevators and conveyors, for use in agriculture 01/01/1988 31/12/2009 -84282080 01/01/2010 31/12/2500 LIBEN Pneumatic elevators and conveyors (excl. those for bulk materials) 01/01/2010 31/12/2500 -84282091 01/01/1988 31/12/2009 LIBEN Pneumatic elevators and conveyors, for bulk materials (excl. those for use in agriculture) 01/01/1988 31/12/2009 -84282098 01/01/2006 31/12/2009 LIBEN Pneumatic elevators and conveyors (excl. for use in agriculture and those for bulk materials) 01/01/2006 31/12/2009 -84282099 01/01/1988 31/12/2005 LIBEN Pneumatic elevators and conveyors (excl. those for civil aircraft of subheading 8428.20.10, for use in agriculture and those for bulk materials) 01/01/1988 31/12/2005 -842831 01/01/1988 31/12/2500 LIBEN Continuous-action elevators and conveyors for goods or materials, for underground use (excl. pneumatic elevators and conveyors) 01/01/1988 31/12/2500 -84283100 01/01/1988 31/12/2500 LIBEN Continuous-action elevators and conveyors for goods or materials, for underground use (excl. pneumatic elevators and conveyors) 01/01/1988 31/12/2500 -842832 01/01/1988 31/12/2500 LIBEN Continuous-action elevators and conveyors for goods or materials, bucket type (excl. for underground use) 01/01/1988 31/12/2500 -84283200 01/01/1988 31/12/2500 LIBEN Continuous-action elevators and conveyors for goods or materials, bucket type (excl. for underground use) 01/01/1988 31/12/2500 -842833 01/01/1988 31/12/2500 LIBEN Continuous-action elevators and conveyors for goods or materials, belt type (excl. those for underground use) 01/01/1988 31/12/2500 -84283300 01/01/2006 31/12/2500 LIBEN Continuous-action elevators and conveyors for goods or materials, belt type (excl. those for underground use) 01/01/2006 31/12/2500 -84283310 01/01/1988 31/12/2005 LIBEN Continuous-action elevators and conveyors, belt type, for civil aircraft 01/01/1988 31/12/2005 -84283390 01/01/1988 31/12/2005 LIBEN Continuous-action elevators and conveyors, belt type (excl. those for civil aircraft of subheading 8428.33.10 and those for underground use) 01/01/1988 31/12/2005 -842839 01/01/1988 31/12/2500 LIBEN Continuous-action elevators and conveyors, for goods or materials (excl. those for underground use and bucket, belt or pneumatic types) 01/01/1988 31/12/2500 -84283910 01/01/1988 31/12/2005 LIBEN Continuous-action elevators and conveyors, for civil aircraft (excl. belt and pneumatic types) 01/01/1988 31/12/2005 -84283920 01/01/2006 31/12/2500 LIBEN Roller conveyors 01/01/2006 31/12/2500 -84283940 01/01/2006 31/12/2006 LIBEN Automated material handling machines for transport, handling and storage of semiconductor wafers, wafer cassettes, wafer boxes and other material for semiconductor devices 01/01/2006 31/12/2006 -84283990 01/01/2006 31/12/2500 LIBEN Continuous-action conveyors for goods or materials (excl. specially designed for underground use, continuous-action conveyors with buckets or belts, wheel conveyors and other roller conveyors, pneumatic continuous-action conveyors and automated material handling machines for transport, handling and storage of material for semiconductor devices) 01/01/2006 31/12/2500 -84283991 01/01/1988 31/12/2005 LIBEN Roller conveyors 01/01/1988 31/12/2005 -84283993 01/01/1995 31/12/2005 LIBEN Automated material handling machines for transport, handling and storage of semiconductor wafers, wafer cassettes, wafer boxes and other material for semiconductor devices 01/01/1995 31/12/2005 -84283998 01/01/1995 31/12/2005 LIBEN Continuous-action conveyors for goods or materials (excl. for civil aircraft of subheading 8428.39.10, specially designed for underground use, continuous-action conveyors with buckets or belts, wheel conveyors and other roller conveyors, pneumatic continuous-action conveyors and automated material handling machines for transport, handling and storage of material for semiconductor devices) 01/01/1995 31/12/2005 -84283999 01/01/1988 31/12/1994 LIBEN Continuous-action elevators and conveyors, for goods or materials (excl. those for civil aircraft of subheading no 8428.39-10, those for underground use, bucket or belt types, roller conveyors and pneumatic types) 01/01/1988 31/12/1994 -842840 01/01/1988 31/12/2500 LIBEN Escalators and moving walkways 01/01/1988 31/12/2500 -84284000 01/01/1988 31/12/2500 LIBEN Escalators and moving walkways 01/01/1988 31/12/2500 -842850 01/01/1988 31/12/2006 LIBEN Mines wagon pushers, locomotive or wagon traversers, wagon tippers and similar railway wagon handling equipment 01/01/1988 31/12/2006 -84285000 01/01/1988 31/12/2006 LIBEN Mines wagon pushers, locomotive or wagon traversers, wagon tippers and similar railway wagon handling equipment 01/01/1988 31/12/2006 -842860 01/01/1988 31/12/2500 LIBEN Teleferics, chairlifts, ski-draglines; traction mechanisms for funiculars 01/01/1988 31/12/2500 -84286000 01/01/1988 31/12/2500 LIBEN Teleferics, chairlifts, ski-draglines; traction mechanisms for funiculars 01/01/1988 31/12/2500 -842890 01/01/1988 31/12/2500 LIBEN Machinery for lifting, handling, loading or unloading, n.e.s. 01/01/1988 31/12/2500 -84289010 01/01/1988 31/12/2005 LIBEN Machinery for lifting, handling, loading or unloading, for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -84289030 01/01/1988 31/12/2009 LIBEN Rolling-mill machinery: roller tables for feeding and removing products; tilters and manipulators for ingots, balls, bars and slabs 01/01/1988 31/12/2009 -84289050 01/01/1988 31/12/1996 LIBEN Feeding equipment for blast and other industrial furnaces; forging manipulators (excl. cranes and continuous-action elevators and conveyors) 01/01/1988 31/12/1996 -84289071 01/01/1988 31/12/2500 LIBEN Loaders specially designed for attachment to agricultural tractors 01/01/1988 31/12/2500 -84289079 01/01/1988 31/12/2500 LIBEN Loaders for use in agriculture (excl. those specially designed for attachment to agricultural tractors) 01/01/1988 31/12/2500 -84289090 01/01/2010 31/12/2500 LIBEN Lifting, handling, loading or unloading machinery, n.e.s. 01/01/2010 31/12/2500 -84289091 01/01/1988 31/12/2009 LIBEN Mechanical loaders for bulk material (excl. those for use in agriculture and self-propelled shovel loaders) 01/01/1988 31/12/2009 -84289095 01/01/2007 31/12/2009 LIBEN Lifting, handling, loading or unloading machinery, n.e.s. 01/01/2007 31/12/2009 -84289097 01/01/2006 31/12/2006 LIBEN Lifting, handling, loading or unloading machinery, n.e.s. 01/01/2006 31/12/2006 -84289098 01/01/1997 31/12/2005 LIBEN Lifting, handling, loading or unloading machinery, n.e.s. 01/01/1997 31/12/2005 -84289099 01/01/1988 31/12/1996 LIBEN Lifting, handling, loading or unloading machinery n.e.s. 01/01/1988 31/12/1996 -8428I1 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8428; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -8428I100 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8428; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -8428I2 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8428; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1997 31/12/2005 -8428I200 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8428; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1997 31/12/2005 -8428I4 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8428; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8428I400 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8428; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8429 01/01/1988 31/12/2500 LIBEN Self-propelled bulldozers, angledozers, graders, levellers, scrapers, mechanical shovels, excavators, shovel loaders, tamping machines and roadrollers 01/01/1988 31/12/2500 -842911 01/01/1988 31/12/2500 LIBEN Self-propelled bulldozers and angledozers, track laying 01/01/1988 31/12/2500 -84291100 01/01/1988 31/12/2500 LIBEN Self-propelled bulldozers and angledozers, track laying 01/01/1988 31/12/2500 -842919 01/01/1988 31/12/2500 LIBEN Self-propelled bulldozers and angledozers, on wheels 01/01/1988 31/12/2500 -84291900 01/01/1988 31/12/2500 LIBEN Self-propelled bulldozers and angledozers, on wheels 01/01/1988 31/12/2500 -842920 01/01/1988 31/12/2500 LIBEN Self-propelled graders and levellers 01/01/1988 31/12/2500 -84292000 01/01/1988 31/12/2500 LIBEN Self-propelled graders and levellers 01/01/1988 31/12/2500 -842930 01/01/1988 31/12/2500 LIBEN Self-propelled scrapers 01/01/1988 31/12/2500 -84293000 01/01/1988 31/12/2500 LIBEN Self-propelled scrapers 01/01/1988 31/12/2500 -842940 01/01/1988 31/12/2500 LIBEN Self-propelled tamping machines and roadrollers 01/01/1988 31/12/2500 -84294010 01/01/1988 31/12/2500 LIBEN Self-propelled roadrollers, vibratory 01/01/1988 31/12/2500 -84294030 01/01/1995 31/12/2500 LIBEN Self-propelled roadrollers (other than vibratory) 01/01/1995 31/12/2500 -84294031 01/01/1988 31/12/1994 LIBEN Self-propelled road rollers which use pneumatic tyres for compacting 01/01/1988 31/12/1994 -84294039 01/01/1988 31/12/1994 LIBEN Self-propelled road rollers (excl. those which use pneumatic tyres for compacting and vibratory rollers) 01/01/1988 31/12/1994 -84294090 01/01/1988 31/12/2500 LIBEN Self-propelled tamping machines (excl. roadrollers) 01/01/1988 31/12/2500 -842951 01/01/1988 31/12/2500 LIBEN Self-propelled front-end shovel loaders 01/01/1988 31/12/2500 -84295110 01/01/1988 31/12/2500 LIBEN Self-propelled front-end shovel loaders specially designed for underground use 01/01/1988 31/12/2500 -84295190 01/01/1988 31/12/1994 LIBEN Self-propelled front-end shovel loaders (excl. those for underground use) 01/01/1988 31/12/1994 -84295191 01/01/1995 31/12/2500 LIBEN Self-propelled front-end crawler shovel loaders (other than specially designed for underground use) 01/01/1995 31/12/2500 -84295199 01/01/1995 31/12/2500 LIBEN Self-propelled front-end shovel loaders (other than specially designed for underground use or crawler shovel loaders) 01/01/1995 31/12/2500 -842952 01/01/1988 31/12/2500 LIBEN Self-propelled mechanical shovels, excavators and shovel loaders, with a 360° revolving superstructure 01/01/1988 31/12/2500 -84295200 01/01/1988 31/12/1994 LIBEN Self-propelled mechanical shovels with a 360. revolving superstructure 01/01/1988 31/12/1994 -84295210 01/01/1995 31/12/2500 LIBEN Self-propelled track-laying excavators, with a 360° revolving superstructure 01/01/1995 31/12/2500 -84295290 01/01/1995 31/12/2500 LIBEN Self-propelling mechanical shovels with a 360° revolving superstructure (other than on track-laying excavators) 01/01/1995 31/12/2500 -842959 01/01/1988 31/12/2500 LIBEN Self-propelled mechanical shovels, excavators and shovel loaders (excl. self-propelled mechanical shovels with a 360° revolving superstructure and front-end shovel loaders) 01/01/1988 31/12/2500 -84295900 01/01/1988 31/12/2500 LIBEN Self-propelled mechanical shovels, excavators and shovel loaders (excl. self-propelled mechanical shovels with a 360° revolving superstructure and front-end shovel loaders) 01/01/1988 31/12/2500 -8430 01/01/1988 31/12/2500 LIBEN Moving, grading, levelling, scraping, excavating, tamping, compacting, extracting or boring machinery, for earth, minerals or ores; pile-drivers and pile-extractors; snowploughs and snowblowers (excl. those mounted on railway wagons, motor vehicle chassis or lorries, self-propelled machinery of heading 8429, lifting, handling, loading or unloading machinery of heading 8425 to 8428 and hand-operated tools) 01/01/1988 31/12/2500 -843010 01/01/1988 31/12/2500 LIBEN Pile-drivers and pile-extractors (excl. those mounted on railway wagons, motor vehicle chassis or lorries) 01/01/1988 31/12/2500 -84301000 01/01/1988 31/12/2500 LIBEN Pile-drivers and pile-extractors (excl. those mounted on railway wagons, motor vehicle chassis or lorries) 01/01/1988 31/12/2500 -843020 01/01/1988 31/12/2500 LIBEN Snowploughs and snowblowers (excl. those mounted on railway wagons, motor vehicle chassis or lorries) 01/01/1988 31/12/2500 -84302000 01/01/1988 31/12/2500 LIBEN Snowploughs and snowblowers (excl. those mounted on railway wagons, motor vehicle chassis or lorries) 01/01/1988 31/12/2500 -843031 01/01/1988 31/12/2500 LIBEN Self-propelled coal or rock cutters and tunnelling machinery (excl. hydraulically operated self-advancing supports for mines) 01/01/1988 31/12/2500 -84303100 01/01/1988 31/12/2500 LIBEN Self-propelled coal or rock cutters and tunnelling machinery (excl. hydraulically operated self-advancing supports for mines) 01/01/1988 31/12/2500 -843039 01/01/1988 31/12/2500 LIBEN Coal or rock cutters and tunnelling machinery, not self-propelled (excl. hand-operated tools and hydraulically operated self-advancing supports for mines) 01/01/1988 31/12/2500 -84303900 01/01/1988 31/12/2500 LIBEN Coal or rock cutters and tunnelling machinery, not self-propelled (excl. hand-operated tools and hydraulically operated self-advancing supports for mines) 01/01/1988 31/12/2500 -843041 01/01/1988 31/12/2500 LIBEN Self-propelled boring or sinking machinery for boring earth or extracting minerals or ores (excl. those mounted on railway or tramway wagons, motor vehicle chassis or lorries and tunnelling machinery) 01/01/1988 31/12/2500 -84304100 01/01/1988 31/12/2500 LIBEN Self-propelled boring or sinking machinery for boring earth or extracting minerals or ores (excl. those mounted on railway or tramway wagons, motor vehicle chassis or lorries and tunnelling machinery) 01/01/1988 31/12/2500 -843049 01/01/1988 31/12/2500 LIBEN Boring or sinking machinery for boring earth or extracting minerals or ores, not self-propelled and not hydraulic (excl. tunnelling machinery and hand-operated tools) 01/01/1988 31/12/2500 -84304900 01/01/1988 31/12/1995 LIBEN Boring or sinking machinery for boring earth or extracting minerals or ores, not self-propelled (excl. tunnelling machinery and hand-operated tools) 01/01/1988 31/12/1995 -84304900 01/01/1996 31/12/2500 LIBEN Boring or sinking machinery for boring earth or extracting minerals or ores, not self-propelled and not hydraulic (excl. tunnelling machinery and hand-operated tools) 01/01/1996 31/12/2500 -843050 01/01/1988 31/12/2500 LIBEN Self-propelled earth-moving machinery, n.e.s. 01/01/1988 31/12/2500 -84305000 01/01/1988 31/12/2500 LIBEN Self-propelled earth-moving machinery, n.e.s. 01/01/1988 31/12/2500 -843061 01/01/1988 31/12/2500 LIBEN Tamping or compacting machinery, not self-propelled (excl. hand-operated tools) 01/01/1988 31/12/2500 -84306100 01/01/1988 31/12/2500 LIBEN Tamping or compacting machinery, not self-propelled (excl. hand-operated tools) 01/01/1988 31/12/2500 -843062 01/01/1988 31/12/2001 LIBEN Scrapers, not self-propelled 01/01/1988 31/12/2001 -84306200 01/01/1988 31/12/2001 LIBEN Scrapers, not self-propelled 01/01/1988 31/12/2001 -843069 01/01/1988 31/12/2500 LIBEN Earth moving machinery, not self-propelled, n.e.s. 01/01/1988 31/12/2500 -84306900 01/01/1988 31/12/2001 LIBEN Earth moving machinery, not self-propelled, n.e.s. 01/01/1988 31/12/2001 -84306900 01/01/2002 31/12/2500 LIBEN Earth moving machinery, not self-propelled, n.e.s. 01/01/2002 31/12/2500 -8431 01/01/1988 31/12/2500 LIBEN Parts suitable for use solely or principally with the machinery of heading 8425 to 8430, n.e.s. 01/01/1988 31/12/2500 -843110 01/01/1988 31/12/2500 LIBEN Parts of pulley tackles and hoists (other than skip hoists), winches, capstans and jacks, n.e.s. 01/01/1988 31/12/2500 -84311000 01/01/1988 31/12/2500 LIBEN Parts of pulley tackles and hoists (other than skip hoists), winches, capstans and jacks, n.e.s. 01/01/1988 31/12/2500 -843120 01/01/1988 31/12/2500 LIBEN Parts of fork-lift trucks and other works trucks fitted with lifting or handling equipment, n.e.s. 01/01/1988 31/12/2500 -84312000 01/01/1988 31/12/2016 LIBEN Parts of fork-lift trucks and other works trucks fitted with lifting or handling equipment, n.e.s. 01/01/1988 31/12/2016 -84312000 01/01/2017 31/12/2500 LIBEN Parts of fork-lift trucks and other works trucks fitted with lifting or handling equipment, n.e.s. 01/01/2017 31/12/2500 -843131 01/01/1988 31/12/2500 LIBEN Parts of lifts, skip hoists or escalators, n.e.s. 01/01/1988 31/12/2500 -84313100 01/01/1988 31/12/2500 LIBEN Parts of lifts, skip hoists or escalators, n.e.s. 01/01/1988 31/12/2500 -843139 01/01/1988 31/12/2500 LIBEN Parts of machinery of heading 8428, n.e.s. 01/01/1988 31/12/2500 -84313900 01/01/2011 31/12/2016 LIBEN Parts of machinery of heading 8428, n.e.s. 01/01/2011 31/12/2016 -84313900 01/01/2017 31/12/2500 LIBEN Parts of machinery of heading 8428, n.e.s. 01/01/2017 31/12/2500 -84313910 01/01/1988 31/12/2010 LIBEN Parts of rolling-mill machinery of subheading 8428.90.30, n.e.s. 01/01/1988 31/12/2010 -84313920 01/01/1998 31/12/1998 LIBEN Parts of automatic material handling machines for transport, handling and storage of semiconductor wafers, wafer cassettes, wafer boxes and other material for semiconductor devices, n.e.s. 01/01/1998 31/12/1998 -84313970 01/01/2007 31/12/2010 LIBEN Parts of lifting, handling, loading or unloading machinery "e.g. conveyors, teleferics", n.e.s. (excl. of lifts, skip hoists or escalators and of rolling-mill machinery of subheading 8428.90.30) 01/01/2007 31/12/2010 -84313980 01/01/1998 31/12/1998 LIBEN Parts of machinery of heading 8428, n.e.s. (excl. of lifts, skip hoists or escalators, of rolling-mill machinery of subheading 8428.90.30 and of automatic material handling machines for transport, handling and storage of material for semiconductor devices) 01/01/1998 31/12/1998 -84313990 01/01/1988 31/12/1997 LIBEN Parts of machinery of heading 8428 n.e.s. 01/01/1988 31/12/1997 -84313990 01/01/1999 31/12/2006 LIBEN Parts of lifting, handling, loading or unloading machinery "e.g. conveyors, teleferics", n.e.s. (excl. of lifts, skip hoists or escalators and of rolling-mill machinery of subheading 8428.90.30) 01/01/1999 31/12/2006 -843141 01/01/1988 31/12/2500 LIBEN Buckets, shovels, grabs and grips for machinery of heading 8426, 8429 and 8430 01/01/1988 31/12/2500 -84314100 01/01/1988 31/12/2500 LIBEN Buckets, shovels, grabs and grips for machinery of heading 8426, 8429 and 8430 01/01/1988 31/12/2500 -843142 01/01/1988 31/12/2500 LIBEN Bulldozer or angledozer blades, n.e.s. 01/01/1988 31/12/2500 -84314200 01/01/1988 31/12/2500 LIBEN Bulldozer or angledozer blades, n.e.s. 01/01/1988 31/12/2500 -843143 01/01/1988 31/12/2500 LIBEN Parts for boring or sinking machinery of subheading 8430.41 or 8430.49, n.e.s. 01/01/1988 31/12/2500 -84314300 01/01/1988 31/12/2500 LIBEN Parts for boring or sinking machinery of subheading 8430.41 or 8430.49, n.e.s. 01/01/1988 31/12/2500 -843149 01/01/1988 31/12/2500 LIBEN Parts of machinery of heading 8426, 8429 and 8430, n.e.s. 01/01/1988 31/12/2500 -84314910 01/01/1988 31/12/1988 LIBEN Parts of machinery of 8426.11-00 to 8426.99-90 and 8429.11-00 to 8430.69-00, (excl. 8431.41-00 to 8431.43-00), of cast steel 01/01/1988 31/12/1988 -84314920 01/01/1989 31/12/2500 LIBEN Parts of machinery of heading 8426, 8429 and 8430 of cast iron or cast steel, n.e.s. 01/01/1989 31/12/2500 -84314980 01/01/1989 31/12/2500 LIBEN Parts of machinery of heading 8426, 8429 and 8430, n.e.s. 01/01/1989 31/12/2500 -84314990 01/01/1988 31/12/1988 LIBEN Parts of machinery of 8426.11-00 to 8426.99-90 and 8429.11-00 to 8430.69-00, (excl. 8431.41-00 to 8431.49-10) 01/01/1988 31/12/1988 -8432 01/01/1988 31/12/2500 LIBEN Agricultural, horticultural or forestry machinery for soil preparation or cultivation (excl. sprayers and dusters); lawn or sports-ground rollers; parts thereof 01/01/1988 31/12/2500 -843210 01/01/1988 31/12/2500 LIBEN Ploughs for use in agriculture, horticulture or forestry 01/01/1988 31/12/2500 -84321000 01/01/2009 31/12/2500 LIBEN Ploughs for use in agriculture, horticulture or forestry 01/01/2009 31/12/2500 -84321010 01/01/1988 31/12/2008 LIBEN Mouldboard ploughs for use in agriculture, horticulture or forestry 01/01/1988 31/12/2008 -84321090 01/01/1988 31/12/2008 LIBEN Ploughs for use in agriculture, horticulture or forestry (excl. mouldboard ploughs) 01/01/1988 31/12/2008 -843221 01/01/1988 31/12/2500 LIBEN Disc harrows for use in agriculture, horticulture or forestry 01/01/1988 31/12/2500 -84322100 01/01/1988 31/12/2500 LIBEN Disc harrows for use in agriculture, horticulture or forestry 01/01/1988 31/12/2500 -843229 01/01/1988 31/12/2500 LIBEN Harrows, scarifiers, cultivators, weeders and hoes for use in agriculture, horticulture or forestry (excl. disc harrows) 01/01/1988 31/12/2500 -84322910 01/01/1988 31/12/2500 LIBEN Scarifiers and cultivators for use in agriculture, horticulture and forestry 01/01/1988 31/12/2500 -84322930 01/01/1988 31/12/2500 LIBEN Harrows for use in agriculture, horticulture and forestry (excl. disc harrows) 01/01/1988 31/12/2500 -84322950 01/01/1988 31/12/2500 LIBEN Rotovators for use in agriculture, horticulture and forestry 01/01/1988 31/12/2500 -84322990 01/01/1988 31/12/2500 LIBEN Weeders and hoes for use in agriculture, horticulture and forestry (excl. rotovators) 01/01/1988 31/12/2500 -843230 01/01/1988 31/12/2016 LIBEN Seeders, planters and transplanters for use in agriculture, horticulture and forestry 01/01/1988 31/12/2016 -84323011 01/01/1988 31/12/2016 LIBEN Central driven precision spacing seeders for use in agriculture, horticulture and forestry 01/01/1988 31/12/2016 -84323019 01/01/1988 31/12/2016 LIBEN Seeders for use in agriculture, horticulture and forestry (excl. central driven precision spacing seeders) 01/01/1988 31/12/2016 -84323090 01/01/1988 31/12/2016 LIBEN Planters and transplanters for use in agriculture, horticulture and forestry 01/01/1988 31/12/2016 -843231 01/01/2017 31/12/2500 LIBEN No-till direct seeders, planters and transplanters 01/01/2017 31/12/2500 -84323100 01/01/2017 31/12/2500 LIBEN No-till direct seeders, planters and transplanters 01/01/2017 31/12/2500 -843239 01/01/2017 31/12/2500 LIBEN Seeders, planters and transplanters (excl. no-till machines) 01/01/2017 31/12/2500 -84323911 01/01/2017 31/12/2500 LIBEN Central driven precision spacing seeders (excl. no-till direct seeders) 01/01/2017 31/12/2500 -84323919 01/01/2017 31/12/2500 LIBEN Seeders (excl. no-till direct seeders and central driven precision spacing seeders) 01/01/2017 31/12/2500 -84323990 01/01/2017 31/12/2500 LIBEN Planters and transplanters (excl. no-till machines) 01/01/2017 31/12/2500 -843240 01/01/1988 31/12/2016 LIBEN Manure spreaders and fertiliser distributors for use in agriculture, horticulture and forestry 01/01/1988 31/12/2016 -84324010 01/01/1988 31/12/2016 LIBEN Mineral or chemical fertiliser distributors for use in agriculture, horticulture and forestry (excl. sprayers) 01/01/1988 31/12/2016 -84324090 01/01/1988 31/12/2016 LIBEN Farmyard manure or compost spreaders for use in agriculture, horticulture and forestry (excl. sprayers) 01/01/1988 31/12/2016 -843241 01/01/2017 31/12/2500 LIBEN Manure spreaders (excl. sprayers) 01/01/2017 31/12/2500 -84324100 01/01/2017 31/12/2500 LIBEN Manure spreaders (excl. sprayers) 01/01/2017 31/12/2500 -843242 01/01/2017 31/12/2500 LIBEN Fertiliser distributors (excl. sprayers and manure spreaders) 01/01/2017 31/12/2500 -84324200 01/01/2017 31/12/2500 LIBEN Fertiliser distributors (excl. sprayers and manure spreaders) 01/01/2017 31/12/2500 -843280 01/01/1988 31/12/2500 LIBEN Agricultural, horticultural or forestry machinery for soil preparation or cultivation; lawn or sports-ground rollers (excl. sprayers and dusters, ploughs, harrows, scarifiers, cultivators, weeders, hoes, seeders, planters, manure spreaders and fertiliser distributors) 01/01/1988 31/12/2500 -84328000 01/01/1988 31/12/2500 LIBEN Agricultural, horticultural or forestry machinery for soil preparation or cultivation; lawn or sports-ground rollers (excl. sprayers and dusters, ploughs, harrows, scarifiers, cultivators, weeders, hoes, seeders, planters, manure spreaders and fertiliser distributors) 01/01/1988 31/12/2500 -843290 01/01/1988 31/12/2500 LIBEN Parts of agricultural, horticultural or forestry machinery for soil preparation or cultivation or of lawn or sports-ground rollers, n.e.s. 01/01/1988 31/12/2500 -84329000 01/01/1999 31/12/2500 LIBEN Parts of agricultural, horticultural or forestry machinery for soil preparation or cultivation or of lawn or sports-ground rollers, n.e.s. 01/01/1999 31/12/2500 -84329010 01/01/1988 31/12/1998 LIBEN Ploughshares for use in agriculture, horticulture and forestry 01/01/1988 31/12/1998 -84329090 01/01/1988 31/12/1989 LIBEN Parts of agricultural, horticultural or forestry machinery for soil preparation or cultivation; lawn or sports-ground rollers n.e.s. 01/01/1988 31/12/1989 -84329091 01/01/1990 31/12/1998 LIBEN Parts of machinery and apparatus of 8432.10.10 to 8432.80.00 (excl. ploughshares), of cast iron or cast steel 01/01/1990 31/12/1998 -84329099 01/01/1990 31/12/1998 LIBEN Parts of machinery and apparatus of 8432.10.10 to 8432.80.00 (excl. ploughshares) (excl. of cast iron or cast steel) 01/01/1990 31/12/1998 -8433 01/01/1988 31/12/2500 LIBEN Harvesting or threshing machinery, incl. straw or fodder balers; grass or hay mowers; machines for cleaning, sorting or grading eggs, fruit or other agricultural produce; parts thereof (other than machines for cleaning, sorting or grading seed, grain or dried leguminous vegetables of heading 8437) 01/01/1988 31/12/2500 -843311 01/01/1988 31/12/2500 LIBEN Mowers for lawns, parks or sports grounds, powered, with the cutting device rotating in a horizontal plane 01/01/1988 31/12/2500 -84331110 01/01/1988 31/12/2500 LIBEN Electric motor mowers for lawns, parks or sports grounds, with the cutting device rotating in a horizontal plane 01/01/1988 31/12/2500 -84331151 01/01/1988 31/12/2500 LIBEN Self-propelled mowers for lawns, parks or sports grounds, powered non-electrically, with the cutting device rotating in a horizontal plane, with a seat 01/01/1988 31/12/2500 -84331159 01/01/1988 31/12/2500 LIBEN Self-propelled mowers for lawns, parks or sports grounds, powered non-electrically, with the cutting device rotating in a horizontal plane, without a seat 01/01/1988 31/12/2500 -84331190 01/01/1988 31/12/2500 LIBEN Mowers for lawns, parks or sports grounds, powered non-electrically, with the cutting device rotating in a horizontal plane not self-propelled 01/01/1988 31/12/2500 -843319 01/01/1988 31/12/2500 LIBEN Mowers for lawns, parks or sports grounds, powered, with the cutting device rotating in a vertical plane or with cutter bars 01/01/1988 31/12/2500 -84331910 01/01/1988 31/12/2500 LIBEN Electric motor mowers for lawns, parks or sports grounds, with the cutting device rotating in a vertical plane or with cutter bars 01/01/1988 31/12/2500 -84331951 01/01/1988 31/12/2500 LIBEN Self-propelled motor mowers for lawns, parks or sports grounds, powered non-electrically, with the cutting device rotating in a vertical plane or with cutter bars, with a seat 01/01/1988 31/12/2500 -84331959 01/01/1988 31/12/2500 LIBEN Self-propelled motor mowers for lawns, parks or sports grounds, powered non-electrically, with the cutting device rotating in a vertical plane or with cutter bars, without a seat 01/01/1988 31/12/2500 -84331970 01/01/1988 31/12/2500 LIBEN Motor mowers for lawns, parks or sports grounds, powered non-electrically, with the cutting device rotating in a vertical plane or with cutter bars, not self-propelled 01/01/1988 31/12/2500 -84331990 01/01/1988 31/12/2500 LIBEN Mowers for lawns, parks or sports grounds, without motor 01/01/1988 31/12/2500 -843320 01/01/1988 31/12/2500 LIBEN Mowers, incl. cutter bars for tractor mounting (excl. mowers for lawns, parks or sports grounds) 01/01/1988 31/12/2500 -84332010 01/01/1988 31/12/2500 LIBEN Motor mowers (excl. mowers for lawns, parks or sports grounds) 01/01/1988 31/12/2500 -84332050 01/01/2010 31/12/2500 LIBEN Mowers without motor, incl. cutter bars, designed to be carried on or hauled by a tractor 01/01/2010 31/12/2500 -84332051 01/01/1988 31/12/2009 LIBEN Mowers, incl. cutter bars, designed to be carried on or hauled by a tractor, with the cutting device rotating in a horizontal plane 01/01/1988 31/12/2009 -84332059 01/01/1988 31/12/2009 LIBEN Mowers, incl. cutter bars, designed to be carried on or hauled by a tractor, with the cutting device rotating in a vertical plane or with cutter bars 01/01/1988 31/12/2009 -84332090 01/01/1988 31/12/2500 LIBEN Mowers (excl. mowers designed to be carried on or hauled by a tractor, mowers for lawns, parks or sports grounds, motor mowers and combine harvester-threshers) 01/01/1988 31/12/2500 -843330 01/01/1988 31/12/2500 LIBEN Haymaking machinery (excl. mowers) 01/01/1988 31/12/2500 -84333000 01/01/2009 31/12/2500 LIBEN Haymaking machinery (excl. mowers) 01/01/2009 31/12/2500 -84333010 01/01/1988 31/12/2008 LIBEN Turners, side delivery rakes and tedders, for haymaking 01/01/1988 31/12/2008 -84333090 01/01/1988 31/12/2008 LIBEN Haymaking machinery (excl. turners, side delivery rakes, tedders and mowers) 01/01/1988 31/12/2008 -843340 01/01/1988 31/12/2500 LIBEN Straw or fodder balers, incl. pick-up balers 01/01/1988 31/12/2500 -84334000 01/01/2010 31/12/2500 LIBEN Straw or fodder balers, incl. pick-up balers 01/01/2010 31/12/2500 -84334010 01/01/1988 31/12/2009 LIBEN Pick-up balers for straw or fodder 01/01/1988 31/12/2009 -84334090 01/01/1988 31/12/2009 LIBEN Straw or fodder balers (excl. pick-up balers) 01/01/1988 31/12/2009 -843351 01/01/1988 31/12/2500 LIBEN Combine harvester-threshers 01/01/1988 31/12/2500 -84335100 01/01/1988 31/12/2500 LIBEN Combine harvester-threshers 01/01/1988 31/12/2500 -843352 01/01/1988 31/12/2500 LIBEN Threshing machinery (excl. combine harvester-threshers) 01/01/1988 31/12/2500 -84335200 01/01/1988 31/12/2500 LIBEN Threshing machinery (excl. combine harvester-threshers) 01/01/1988 31/12/2500 -843353 01/01/1988 31/12/2500 LIBEN Root or tuber harvesting machines 01/01/1988 31/12/2500 -84335310 01/01/1988 31/12/2500 LIBEN Potato-diggers and potato harvesters 01/01/1988 31/12/2500 -84335330 01/01/1988 31/12/2500 LIBEN Beet-topping machines and beet harvesters 01/01/1988 31/12/2500 -84335390 01/01/1988 31/12/2500 LIBEN Root or tuber harvesting machines (excl. potato-diggers and potato harvesters and beet-topping machines and beet harvesters) 01/01/1988 31/12/2500 -843359 01/01/1988 31/12/2500 LIBEN Harvesting machinery for agricultural produce (excl. mowers, haymaking machinery, straw and fodder balers, incl. pick-up balers, combine harvester-threshers, other threshing machinery and root or tuber harvesting machines) 01/01/1988 31/12/2500 -84335910 01/01/1988 31/12/1993 LIBEN Forage harvesters 01/01/1988 31/12/1993 -84335911 01/01/1994 31/12/2500 LIBEN Forage harvesters, self-propelled 01/01/1994 31/12/2500 -84335919 01/01/1994 31/12/2500 LIBEN Forage harvesters, not self-propelled 01/01/1994 31/12/2500 -84335930 01/01/1994 31/12/2008 LIBEN Grape harvesters 01/01/1994 31/12/2008 -84335980 01/01/1994 31/12/2008 LIBEN Harvesting machinery for agricultural produce (excl. mowers, haymaking machinery, straw and fodder balers, incl. pick-up balers, combine harvester-threshers and other threshing machinery, root or tuber harvesting machines, forage harvesters and grape harvesters) 01/01/1994 31/12/2008 -84335985 01/01/2009 31/12/2500 LIBEN Harvesting machinery for agricultural produce (excl. mowers, haymaking machinery, straw and fodder balers, incl. pick-up balers, combine harvester-threshers and other threshing machinery, root or tuber harvesting machines, forage harvesters) 01/01/2009 31/12/2500 -84335990 01/01/1988 31/12/1993 LIBEN Harvesting machinery for agricultural produce (excl. mowers, haymaking machinery, straw and fodder balers, incl. pick-up balers, combine harvester-threshers and other threshing machinery, root or tuber harvesting machines and forage harvesters) 01/01/1988 31/12/1993 -843360 01/01/1988 31/12/2500 LIBEN Machines for cleaning, sorting or grading eggs, fruit or other agricultural produce (excl. machines for cleaning, sorting or grading seed, grain or dried leguminous vegetables of heading 8437) 01/01/1988 31/12/2500 -84336000 01/01/1999 31/12/2500 LIBEN Machines for cleaning, sorting or grading eggs, fruit or other agricultural produce (excl. machines for cleaning, sorting or grading seed, grain or dried leguminous vegetables of heading 8437) 01/01/1999 31/12/2500 -84336010 01/01/1988 31/12/1998 LIBEN Machines for sorting or grading eggs 01/01/1988 31/12/1998 -84336090 01/01/1988 31/12/1998 LIBEN Machines for cleaning, sorting or grading eggs, fruit or other agricultural produce (excl. machines for cleaning, sorting or grading seed, grain or dried leguminous vegetables of heading 8437 and machines for sorting or grading eggs) 01/01/1988 31/12/1998 -843390 01/01/1988 31/12/2500 LIBEN Parts of harvesting machinery, threshing machinery, mowers and machines for cleaning, sorting or grading agricultural produce, n.e.s. 01/01/1988 31/12/2500 -84339000 01/01/1988 31/12/2500 LIBEN Parts of harvesting machinery, threshing machinery, mowers and machines for cleaning, sorting or grading agricultural produce, n.e.s. 01/01/1988 31/12/2500 -8434 01/01/1988 31/12/2500 LIBEN Milking machines and dairy machinery (excl. refrigerating or heat treatment equipment, cream separators, clarifying centrifuges, filter presses and other filtering equipment); parts thereof 01/01/1988 31/12/2500 -843410 01/01/1988 31/12/2500 LIBEN Milking machines 01/01/1988 31/12/2500 -84341000 01/01/1988 31/12/2500 LIBEN Milking machines 01/01/1988 31/12/2500 -843420 01/01/1988 31/12/2500 LIBEN Dairy machinery (excl. refrigerating or heat treatment equipment, cream separators, clarifying centrifuges, filter presses and other filtering equipment) 01/01/1988 31/12/2500 -84342000 01/01/1988 31/12/2500 LIBEN Dairy machinery (excl. refrigerating or heat treatment equipment, cream separators, clarifying centrifuges, filter presses and other filtering equipment) 01/01/1988 31/12/2500 -843490 01/01/1988 31/12/2500 LIBEN Parts of milking machines and dairy machinery, n.e.s. 01/01/1988 31/12/2500 -84349000 01/01/1988 31/12/2500 LIBEN Parts of milking machines and dairy machinery, n.e.s. 01/01/1988 31/12/2500 -8434I5 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8434; food, drink and tobacco industry 01/01/1993 31/12/2005 -8434I500 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8434; food, drink and tobacco industry 01/01/1993 31/12/2005 -8435 01/01/1988 31/12/2500 LIBEN Presses, crushers and similar machinery used in the manufacture of wine, cider, fruit juices or similar beverages (excl. machinery for the treatment of these beverages, incl. centrifuges, filter presses, other filtering equipment and domestic appliances); parts thereof 01/01/1988 31/12/2500 -843510 01/01/1988 31/12/2500 LIBEN Presses, crushers and similar machinery used in the manufacture of wine, cider, fruit juices or similar beverages (excl. machinery for the treatment of these beverages, incl. centrifuges, filter presses, other filtering equipment and domestic appliances) 01/01/1988 31/12/2500 -84351000 01/01/1999 31/12/2500 LIBEN Presses, crushers and similar machinery used in the manufacture of wine, cider, fruit juices or similar beverages (excl. machinery for the treatment of these beverages, incl. centrifuges, filter presses, other filtering equipment and domestic appliances) 01/01/1999 31/12/2500 -84351010 01/01/1988 31/12/1998 LIBEN Presses used in the manufacture of wine, cider, fruit juices or similar beverages (excl. filter presses and domestic appliances) 01/01/1988 31/12/1998 -84351090 01/01/1988 31/12/1998 LIBEN Crushers and similar machinery used in the manufacture of wine, cider, fruit juices or similar beverages (excl. machinery for the treatment of these beverages, incl. centrifuges, filter presses, other filtering equipment, presses and domestic appliances) 01/01/1988 31/12/1998 -843590 01/01/1988 31/12/2500 LIBEN Parts of presses, crushers and similar machinery used in the manufacture of wine, cider, fruit juices or similar beverages, n.e.s. 01/01/1988 31/12/2500 -84359000 01/01/1988 31/12/2500 LIBEN Parts of presses, crushers and similar machinery used in the manufacture of wine, cider, fruit juices or similar beverages, n.e.s. 01/01/1988 31/12/2500 -8436 01/01/1988 31/12/2500 LIBEN Agricultural, horticultural, forestry, poultry-keeping or bee-keeping machinery, incl. germination plant fitted with mechanical or thermal equipment; poultry incubators and brooders; parts thereof 01/01/1988 31/12/2500 -843610 01/01/1988 31/12/2500 LIBEN Machinery for preparing animal feedingstuffs in agricultural holdings and similar undertakings (excl. machinery for the feedingstuff industry, forage harvesters and autoclaves for cooking fodder) 01/01/1988 31/12/2500 -84361000 01/01/1999 31/12/2500 LIBEN Machinery for preparing animal feedingstuffs in agricultural holdings and similar undertakings (excl. machinery for the feedingstuff industry, forage harvesters and autoclaves for cooking fodder) 01/01/1999 31/12/2500 -84361010 01/01/1988 31/12/1998 LIBEN Crushers and other mills for cereals, beans, peas and the like for preparing animal feedingstuffs in agricultural holdings and similar undertakings 01/01/1988 31/12/1998 -84361090 01/01/1988 31/12/1998 LIBEN Machinery for preparing animal feedingstuffs in agricultural holdings and similar undertakings (excl. machinery for the feedingstuff industry, forage harvesters, autoclaves for cooking fodder and the like, crushers and other mills for cereals, beans, peas and the like) 01/01/1988 31/12/1998 -843621 01/01/1988 31/12/2500 LIBEN Poultry incubators and brooders 01/01/1988 31/12/2500 -84362100 01/01/1988 31/12/2500 LIBEN Poultry incubators and brooders 01/01/1988 31/12/2500 -843629 01/01/1988 31/12/2500 LIBEN Poultry-keeping machinery (excl. machines for sorting or grading eggs, poultry pickers of heading 8438 and incubators and brooders) 01/01/1988 31/12/2500 -84362900 01/01/1988 31/12/2500 LIBEN Poultry-keeping machinery (excl. machines for sorting or grading eggs, poultry pickers of heading 8438 and incubators and brooders) 01/01/1988 31/12/2500 -843680 01/01/1988 31/12/2500 LIBEN Agricultural, horticultural, forestry or bee-keeping machinery, n.e.s. 01/01/1988 31/12/2500 -84368000 01/01/1988 31/12/1993 LIBEN Agricultural, horticultural, forestry or bee-keeping machinery n.e.s. 01/01/1988 31/12/1993 -84368010 01/01/1994 31/12/2500 LIBEN Forestry machinery, n.e.s. 01/01/1994 31/12/2500 -84368090 01/01/2009 31/12/2500 LIBEN Agricultural, horticultural, forestry, poultry-keeping or bee-keeping machinery, n.e.s. 01/01/2009 31/12/2500 -84368091 01/01/1994 31/12/2008 LIBEN Automatic drinking bowls 01/01/1994 31/12/2008 -84368099 01/01/1994 31/12/2008 LIBEN Agricultural, horticultural, forestry, poultry-keeping or bee-keeping machinery, n.e.s. (excl. automatic drinking bowls) 01/01/1994 31/12/2008 -843691 01/01/1988 31/12/2500 LIBEN Parts of poultry-keeping machinery or poultry incubators and brooders, n.e.s. 01/01/1988 31/12/2500 -84369100 01/01/1988 31/12/2500 LIBEN Parts of poultry-keeping machinery or poultry incubators and brooders, n.e.s. 01/01/1988 31/12/2500 -843699 01/01/1988 31/12/2500 LIBEN Parts of agricultural, horticultural, forestry or bee-keeping machinery, n.e.s. 01/01/1988 31/12/2500 -84369900 01/01/1988 31/12/2500 LIBEN Parts of agricultural, horticultural, forestry or bee-keeping machinery, n.e.s. 01/01/1988 31/12/2500 -8437 01/01/1988 31/12/2500 LIBEN Machines for cleaning, sorting or grading seed, grain or dried leguminous vegetables; machinery used in the milling industry or for the working of cereals or dried leguminous vegetables (excl. farm-type machinery, heat treatment equipment, centrifugal dryers and air filters); parts thereof 01/01/1988 31/12/2500 -843710 01/01/1988 31/12/2500 LIBEN Machines for cleaning, sorting or grading seed, grain or dried leguminous vegetables 01/01/1988 31/12/2500 -84371000 01/01/1988 31/12/2500 LIBEN Machines for cleaning, sorting or grading seed, grain or dried leguminous vegetables 01/01/1988 31/12/2500 -843780 01/01/1988 31/12/2500 LIBEN Machinery used in the milling industry or for the working of cereals or dried leguminous vegetables (excl. farm-type machinery, heat treatment equipment, centrifugal dryers, air filters and machines for cleaning, sorting or grading seed, grain or dried leguminous vegetables) 01/01/1988 31/12/2500 -84378000 01/01/1988 31/12/2500 LIBEN Machinery used in the milling industry or for the working of cereals or dried leguminous vegetables (excl. farm-type machinery, heat treatment equipment, centrifugal dryers, air filters and machines for cleaning, sorting or grading seed, grain or dried leguminous vegetables) 01/01/1988 31/12/2500 -843790 01/01/1988 31/12/2500 LIBEN Parts of machinery used in the milling industry or for the working of cereals or dried leguminous vegetables or machines for cleaning, sorting or grading seed, grain or dried leguminous vegetables, n.e.s. 01/01/1988 31/12/2500 -84379000 01/01/1988 31/12/2500 LIBEN Parts of machinery used in the milling industry or for the working of cereals or dried leguminous vegetables or machines for cleaning, sorting or grading seed, grain or dried leguminous vegetables, n.e.s. 01/01/1988 31/12/2500 -8438 01/01/1988 31/12/2500 LIBEN Machinery, not specified or included elsewhere in this chapter, for the industrial preparation or manufacture of food or drink (other than machinery for the extraction or preparation of animal or fixed vegetable fats or oils); parts thereof 01/01/1988 31/12/2500 -843810 01/01/1988 31/12/2500 LIBEN Bakery machinery and machinery for the industrial preparation or manufacture of macaroni, spaghetti or similar products (excl. ovens, macaroni drying machines and dough rollers) 01/01/1988 31/12/2500 -84381010 01/01/1988 31/12/2500 LIBEN Bakery machinery (excl. ovens and dough rollers) 01/01/1988 31/12/2500 -84381090 01/01/1988 31/12/2500 LIBEN Machinery for the industrial preparation or manufacture of macaroni, spaghetti or similar products (excl. macaroni drying machines and dough rollers) 01/01/1988 31/12/2500 -843820 01/01/1988 31/12/2500 LIBEN Machinery for the industrial preparation or manufacture of confectionery, cocoa or chocolate (excl. centrifuges and filtering, heating or refrigerating equipment) 01/01/1988 31/12/2500 -84382000 01/01/1988 31/12/2500 LIBEN Machinery for the industrial preparation or manufacture of confectionery, cocoa or chocolate (excl. centrifuges and filtering, heating or refrigerating equipment) 01/01/1988 31/12/2500 -843830 01/01/1988 31/12/2500 LIBEN Machinery for sugar manufacture (excl. centrifuges and filtering, heating or refrigerating equipment) 01/01/1988 31/12/2500 -84383000 01/01/1988 31/12/2500 LIBEN Machinery for sugar manufacture (excl. centrifuges and filtering, heating or refrigerating equipment) 01/01/1988 31/12/2500 -843840 01/01/1988 31/12/2500 LIBEN Brewery machinery (excl. centrifuges and filtering, heating or refrigerating equipment) 01/01/1988 31/12/2500 -84384000 01/01/1988 31/12/2500 LIBEN Brewery machinery (excl. centrifuges and filtering, heating or refrigerating equipment) 01/01/1988 31/12/2500 -843850 01/01/1988 31/12/2500 LIBEN Machinery for the industrial preparation of meat or poultry (excl. cooking and other heating appliances and refrigerating or freezing equipment) 01/01/1988 31/12/2500 -84385000 01/01/1988 31/12/2500 LIBEN Machinery for the industrial preparation of meat or poultry (excl. cooking and other heating appliances and refrigerating or freezing equipment) 01/01/1988 31/12/2500 -843860 01/01/1988 31/12/2500 LIBEN Machinery for the industrial preparation of fruits, nuts or vegetables (excl. cooking and other heating appliances, refrigerating or freezing equipment and machinery for the sorting or grading of fruit and vegetables) 01/01/1988 31/12/2500 -84386000 01/01/1988 31/12/2500 LIBEN Machinery for the industrial preparation of fruits, nuts or vegetables (excl. cooking and other heating appliances, refrigerating or freezing equipment and machinery for the sorting or grading of fruit and vegetables) 01/01/1988 31/12/2500 -843880 01/01/1988 31/12/2500 LIBEN Machinery for the industrial preparation or manufacture of food or drink, n.e.s. 01/01/1988 31/12/2500 -84388010 01/01/1988 31/12/2500 LIBEN Machinery for the industrial preparation of tea or coffee (excl. centrifuges, filtering equipment, roasters, freeze-dryers and other heating appliances) 01/01/1988 31/12/2500 -84388091 01/01/1988 31/12/2500 LIBEN Machinery for the industrial preparation or manufacture of drink (excl. centrifuges, filtering, heating or refrigerating equipment) 01/01/1988 31/12/2500 -84388099 01/01/1988 31/12/2500 LIBEN Machinery for the industrial preparation or manufacture of food or drink, n.e.s. 01/01/1988 31/12/2500 -843890 01/01/1988 31/12/2500 LIBEN Parts of machinery for the industrial preparation or manufacture of food or drink, n.e.s. 01/01/1988 31/12/2500 -84389000 01/01/1988 31/12/2500 LIBEN Parts of machinery for the industrial preparation or manufacture of food or drink, n.e.s. 01/01/1988 31/12/2500 -8438I5 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8438; food, drink and tobacco industry 01/01/1997 31/12/2005 -8438I500 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8438; food, drink and tobacco industry 01/01/1997 31/12/2005 -8439 01/01/1988 31/12/2500 LIBEN Machinery for making pulp of fibrous cellulosic material or for making or finishing paper or paperboard (excl. autoclaves, boilers, dryers, other heating appliances and calenders); parts thereof 01/01/1988 31/12/2500 -843910 01/01/1988 31/12/2500 LIBEN Machinery for making pulp of fibrous cellulosic material (excl. autoclaves, boilers and other heating appliances) 01/01/1988 31/12/2500 -84391000 01/01/1988 31/12/2500 LIBEN Machinery for making pulp of fibrous cellulosic material (excl. autoclaves, boilers and other heating appliances) 01/01/1988 31/12/2500 -843920 01/01/1988 31/12/2500 LIBEN Machinery for making paper or paperboard (excl. dryers and other heating appliances, calenders and machinery for making pulp) 01/01/1988 31/12/2500 -84392000 01/01/1988 31/12/2500 LIBEN Machinery for making paper or paperboard (excl. dryers and other heating appliances, calenders and machinery for making pulp) 01/01/1988 31/12/2500 -843930 01/01/1988 31/12/2500 LIBEN Machinery for finishing paper or paperboard (excl. calenders) 01/01/1988 31/12/2500 -84393000 01/01/1988 31/12/2500 LIBEN Machinery for finishing paper or paperboard (excl. calenders) 01/01/1988 31/12/2500 -843991 01/01/1988 31/12/2500 LIBEN Parts of machinery for making pulp of fibrous cellulosic material, n.e.s. 01/01/1988 31/12/2500 -84399100 01/01/1988 31/12/1989 LIBEN Parts of machinery for making pulp of fibrous cellulosic material n.e.s. 01/01/1988 31/12/1989 -84399100 01/01/2012 31/12/2500 LIBEN Parts of machinery for making pulp of fibrous cellulosic material, n.e.s. 01/01/2012 31/12/2500 -84399110 01/01/1990 31/12/2011 LIBEN Parts of machinery for making pulp of fibrous cellulosic material, of cast iron or cast steel, n.e.s. 01/01/1990 31/12/2011 -84399190 01/01/1990 31/12/2011 LIBEN Parts of machinery for making pulp of fibrous cellulosic material, n.e.s. (excl. of cast iron or cast steel) 01/01/1990 31/12/2011 -843999 01/01/1988 31/12/2500 LIBEN Parts of machinery for making or finishing paper or paperboard, n.e.s. 01/01/1988 31/12/2500 -84399900 01/01/1988 31/12/1989 LIBEN Parts of machinery for making or finishing paper or paperboard n.e.s. 01/01/1988 31/12/1989 -84399900 01/01/2012 31/12/2500 LIBEN Parts of machinery for making or finishing paper or paperboard, n.e.s. 01/01/2012 31/12/2500 -84399910 01/01/1990 31/12/2011 LIBEN Parts of machinery for making or finishing paper or paperboard, n.e.s., of cast iron or cast steel 01/01/1990 31/12/2011 -84399990 01/01/1990 31/12/2011 LIBEN Parts of machinery for making or finishing paper or paperboard, n.e.s. (excl. of cast iron or cast steel) 01/01/1990 31/12/2011 -8440 01/01/1988 31/12/2500 LIBEN Bookbinding machinery, incl. book-sewing machines (excl. machinery of heading 8441, general-purpose presses, printing machinery of heading 8443 and machines of uses ancillary to printing); parts thereof 01/01/1988 31/12/2500 -844010 01/01/1988 31/12/2500 LIBEN Bookbinding machinery, incl. book-sewing machines (excl. machinery of heading 8441, general-purpose presses, printing machinery of heading 8443 and machines of uses ancillary to printing) 01/01/1988 31/12/2500 -84401010 01/01/1988 31/12/2500 LIBEN Folding machines for bookbinding 01/01/1988 31/12/2500 -84401020 01/01/1988 31/12/2500 LIBEN Collating machines and gathering machines for bookbinding 01/01/1988 31/12/2500 -84401030 01/01/1988 31/12/2500 LIBEN Sewing, wire stitching and stapling machines, incl. book-sewing machines, for bookbinding 01/01/1988 31/12/2500 -84401040 01/01/1988 31/12/2500 LIBEN Unsewn "perfect" binding machines 01/01/1988 31/12/2500 -84401090 01/01/1988 31/12/2500 LIBEN Bookbinding machinery (excl. machinery of heading 8441, general-purpose presses, printing machinery of heading 8443 and machines of uses ancillary to printing, folding machines, collating machines, gathering machines, sewing, wire stitching and stapling machines and unsewn binding machines) 01/01/1988 31/12/2500 -844090 01/01/1988 31/12/2500 LIBEN Parts of bookbinding machinery, n.e.s. 01/01/1988 31/12/2500 -84409000 01/01/1988 31/12/2500 LIBEN Parts of bookbinding machinery, n.e.s. 01/01/1988 31/12/2500 -8441 01/01/1988 31/12/2500 LIBEN Machinery for making up paper pulp, paper or paperboard, incl. cutting machines of all kinds, n.e.s.; parts thereof 01/01/1988 31/12/2500 -844110 01/01/1988 31/12/2500 LIBEN Cutting machines for making up paper pulp, paper or paperboard (excl. bookbinding machinery of heading 8440) 01/01/1988 31/12/2500 -84411010 01/01/1988 31/12/2500 LIBEN Combined reel slitting and re-reeling machines, for making up paper pulp, paper or paperboard 01/01/1988 31/12/2500 -84411020 01/01/1988 31/12/2500 LIBEN Slitting and cross cutting machines, for making up paper pulp, paper or paperboard (excl. combined reel slitting and re-reeling machines) 01/01/1988 31/12/2500 -84411030 01/01/1988 31/12/2500 LIBEN Guillotines for paper or paperboard 01/01/1988 31/12/2500 -84411040 01/01/1995 31/12/2009 LIBEN Three-knife trimmers for paper or paperboard 01/01/1995 31/12/2009 -84411070 01/01/2010 31/12/2500 LIBEN Cutting machines for paper or paperboard (other than bookbinding machinery of heading 8440, combined reel slitting and re-reeling machines, other slitting and cross-cutting machines and guillotines) 01/01/2010 31/12/2500 -84411080 01/01/1995 31/12/2009 LIBEN Cutting machines for paper or paperboard (other than bookbinding machinery of heading 8440, combined reel slitting and re-reeling machines, other slitting and cross-cutting machines, guillotines and three-knife trimmers) 01/01/1995 31/12/2009 -84411090 01/01/1988 31/12/1994 LIBEN Cutting machines for paper pulp, paper or paperboard (excl. book-binding machinery of heading no 8440, combined reel slitting and re-reeling machines, other slitting and cross-cutting machines and guillotines) 01/01/1988 31/12/1994 -844120 01/01/1988 31/12/2500 LIBEN Machines for making bags, sacks or envelopes out of paper pulp, paper or paperboard (excl. sewing machines and eyeletting machines) 01/01/1988 31/12/2500 -84412000 01/01/1988 31/12/2500 LIBEN Machines for making bags, sacks or envelopes out of paper pulp, paper or paperboard (excl. sewing machines and eyeletting machines) 01/01/1988 31/12/2500 -844130 01/01/1988 31/12/2500 LIBEN Machines for making cartons, boxes, cases, tubes, drums or similar containers (other than by moulding) out of paper pulp, paper or paperboard (excl. drying equipment and sewing machines) 01/01/1988 31/12/2500 -84413000 01/01/1988 31/12/2500 LIBEN Machines for making cartons, boxes, cases, tubes, drums or similar containers (other than by moulding) out of paper pulp, paper or paperboard (excl. drying equipment and sewing machines) 01/01/1988 31/12/2500 -844140 01/01/1988 31/12/2500 LIBEN Machines for moulding articles in paper pulp, paper or paperboard (excl. drying equipment) 01/01/1988 31/12/2500 -84414000 01/01/1988 31/12/2500 LIBEN Machines for moulding articles in paper pulp, paper or paperboard (excl. drying equipment) 01/01/1988 31/12/2500 -844180 01/01/1988 31/12/2500 LIBEN Machinery for making up paper pulp, paper or paperboard, n.e.s. 01/01/1988 31/12/2500 -84418000 01/01/1988 31/12/2500 LIBEN Machinery for making up paper pulp, paper or paperboard, n.e.s. 01/01/1988 31/12/2500 -844190 01/01/1988 31/12/2500 LIBEN Parts of machinery for making up paper pulp, paper or paperboard, n.e.s. 01/01/1988 31/12/2500 -84419010 01/01/1988 31/12/2500 LIBEN Parts of cutting machines for making up paper pulp, paper or paperboard, n.e.s. 01/01/1988 31/12/2500 -84419090 01/01/1988 31/12/2500 LIBEN Parts of machinery for making up paper pulp, paper or paperboard, n.e.s. 01/01/1988 31/12/2500 -8442 01/01/1988 31/12/2500 LIBEN Machinery, apparatus and equipment (other than the machines of headings 8456 to 8465) for preparing or making plates, cylinders or other printing components; plates, cylinders and other printing components; plates, cylinders and lithographic stones, prepared for printing purposes, e.g. planed, grained or polished; parts thereof 01/01/1988 31/12/2500 -844210 01/01/1988 31/12/2006 LIBEN Phototypesetting and composing machines (excl. general purpose automatic data-processing machines also used for phototypesetting) 01/01/1988 31/12/2006 -84421000 01/01/1988 31/12/2006 LIBEN Phototypesetting and composing machines (excl. general purpose automatic data-processing machines also used for phototypesetting) 01/01/1988 31/12/2006 -844220 01/01/1988 31/12/2006 LIBEN Machinery, apparatus and equipment for typesetting or composing, with or without founding device (excl. phototypesetting and composing machines) 01/01/1988 31/12/2006 -84422010 01/01/1988 31/12/2006 LIBEN Machinery for type founding and typesetting "combined", e.g. linotypes, monotypes and intertypes 01/01/1988 31/12/2006 -84422090 01/01/1988 31/12/2006 LIBEN Machinery, apparatus and equipment for typesetting or composing (excl. phototypesetting and composing machines and machinery for type founding and typesetting "combined", e.g. linotypes, monotypes and intertypes) 01/01/1988 31/12/2006 -844230 01/01/1988 31/12/2500 LIBEN Machinery, apparatus and equipment for preparing or making printing plates, cylinders or other printing components (excl. machines of headings 8456 to 8465) 01/01/1988 31/12/2500 -84423000 01/01/1988 31/12/2006 LIBEN Machinery, apparatus and equipment for preparing or making printing blocks, plates, cylinders or other printing components (excl. machine tools of heading 8456 to 8465 and machinery for type founding and typesetting) 01/01/1988 31/12/2006 -84423000 01/01/2017 31/12/2500 LIBEN Machinery, apparatus and equipment for preparing or making printing plates, cylinders or other printing components (excl. machines of headings 8456 to 8465) 01/01/2017 31/12/2500 -84423010 01/01/2007 31/12/2016 LIBEN Phototypesetting and composing machines (excl. general purpose automatic data-processing machines also used for phototypesetting) 01/01/2007 31/12/2016 -84423091 01/01/2007 31/12/2016 LIBEN Machinery for type founding and typesetting "combined", e.g. linotypes, monotypes and intertypes 01/01/2007 31/12/2016 -84423099 01/01/2007 31/12/2016 LIBEN Machinery, apparatus and equipment for preparing or making plates, cylinders or other printing components; plates, cylinders and other printing components (excl. machine tools of heading 8456 to 8465 and machinery for type founding and typesetting) 01/01/2007 31/12/2016 -844240 01/01/1988 31/12/2500 LIBEN Parts of machinery, apparatus and equipment for preparing or making printing plates, cylinders or other printing components, n.e.s. 01/01/1988 31/12/2500 -84424000 01/01/1988 31/12/2500 LIBEN Parts of machinery, apparatus and equipment for preparing or making printing plates, cylinders or other printing components, n.e.s. 01/01/1988 31/12/2500 -844250 01/01/1988 31/12/2500 LIBEN Printing plates, cylinders and other printing components; plates, cylinders and lithographic stones, prepared for printing purposes, e.g. planed, grained or polished 01/01/1988 31/12/2500 -84425000 01/01/2017 31/12/2500 LIBEN Printing plates, cylinders and other printing components; plates, cylinders and lithographic stones, prepared for printing purposes, e.g. planed, grained or polished 01/01/2017 31/12/2500 -84425010 01/01/1988 31/12/1993 LIBEN Photogravure plates 01/01/1988 31/12/1993 -84425020 01/01/2010 31/12/2016 LIBEN Plates, cylinders and other printing components, with printing image "e.g. for gravure printing" 01/01/2010 31/12/2016 -84425021 01/01/1994 31/12/2009 LIBEN Plates, cylinders and other printing components, with printing image, for relief printing 01/01/1994 31/12/2009 -84425023 01/01/1994 31/12/2009 LIBEN Plates, cylinders, lithographic stones and other printing components, with printing image, for planographic printing 01/01/1994 31/12/2009 -84425029 01/01/1994 31/12/2009 LIBEN Plates, cylinders and other printing components, with printing image "e.g. for gravure printing" (excl. for relief and planographic printing) 01/01/1994 31/12/2009 -84425030 01/01/1988 31/12/1993 LIBEN Offset printing plates ready for printing or prepared for printing purposes, e.g planed, grained or polished (excl. light-sensitive plates) 01/01/1988 31/12/1993 -84425080 01/01/1994 31/12/2016 LIBEN Lithographic stones, plates and cylinders, without printing image, but prepared for printing purposes, e.g. planed, grained or polished 01/01/1994 31/12/2016 -84425091 01/01/1988 31/12/1993 LIBEN Printing type, plates, blocks, cylinders and other printing components ready for printing (excl. photogravure and offset printing plates) 01/01/1988 31/12/1993 -84425099 01/01/1988 31/12/1993 LIBEN Blocks, plates, cylinder and lithographic stones, not ready for printing but prepared for printing purposes, e.g. planed, grained or polished (excl. offset printing plates) 01/01/1988 31/12/1993 -8443 01/01/1988 31/12/2500 LIBEN Printing machinery used for printing by means of plates, cylinders and other printing components of heading 8442 (excl. hectograph or stencil duplicating machines, addressing machines and other office printing machines of heading 8469 to 8472); other printers, copying machines and facsimile machines, whether or not combined; parts thereof 01/01/1988 31/12/2500 -844311 01/01/1988 31/12/2500 LIBEN Offset printing machinery, reel fed 01/01/1988 31/12/2500 -84431100 01/01/1988 31/12/2500 LIBEN Offset printing machinery, reel fed 01/01/1988 31/12/2500 -844312 01/01/1988 31/12/2500 LIBEN Offset printing machinery, sheet fed [office type], using sheets of a side <= 22 x 36 cm in the unfolded state 01/01/1988 31/12/2500 -84431200 01/01/1988 31/12/2500 LIBEN Offset printing machinery, sheet fed [office type], using sheets of a side <= 22 x 36 cm in the unfolded state 01/01/1988 31/12/2500 -844313 01/01/2007 31/12/2500 LIBEN Offset printing machinery (excl. sheet fed offset printing machinery, sheet size <= 22 x 36 cm, and reel fed offset printing machinery) 01/01/2007 31/12/2500 -84431310 01/01/2007 31/12/2500 LIBEN Offset printing machinery, sheet fed, used, taking sheets of a size > 22 x 36 cm 01/01/2007 31/12/2500 -84431331 01/01/2007 31/12/2018 LIBEN Offset printing machinery, sheet fed, new, taking sheets of a size <= 52 x 74 cm but > 22 x 36 cm 01/01/2007 31/12/2018 -84431332 01/01/2019 31/12/2500 LIBEN Offset printing machinery, sheet fed, new, taking sheets of a size <= 53 x 75 cm but > 22 x 36 cm 01/01/2019 31/12/2500 -84431334 01/01/2019 31/12/2500 LIBEN Offset printing machinery, sheet fed, new, taking sheets of a size > 53 x 75 cm but <= 75 x 107 cm 01/01/2019 31/12/2500 -84431335 01/01/2007 31/12/2018 LIBEN Offset printing machinery, sheet fed, new, taking sheets of a size > 52 x 74 cm but <= 74 x 107 cm 01/01/2007 31/12/2018 -84431338 01/01/2019 31/12/2500 LIBEN Offset printing machinery, sheet fed, new, taking sheets of a size > 75 x 107 cm 01/01/2019 31/12/2500 -84431339 01/01/2007 31/12/2018 LIBEN Offset printing machinery, sheet fed, new, taking sheets of a size > 74 x 107 cm 01/01/2007 31/12/2018 -84431390 01/01/2007 31/12/2500 LIBEN Offset printing machinery (excl. reel feed and sheet feed) 01/01/2007 31/12/2500 -844314 01/01/2007 31/12/2500 LIBEN Letterpress printing machinery, reel fed (excl. flexographic printing machinery) 01/01/2007 31/12/2500 -84431400 01/01/2007 31/12/2500 LIBEN Letterpress printing machinery, reel fed (excl. flexographic printing machinery) 01/01/2007 31/12/2500 -844315 01/01/2007 31/12/2500 LIBEN Letterpress printing machinery (excl. flexographic printing and reel fed machinery) 01/01/2007 31/12/2500 -84431500 01/01/2007 31/12/2500 LIBEN Letterpress printing machinery (excl. flexographic printing and reel fed machinery) 01/01/2007 31/12/2500 -844316 01/01/2007 31/12/2500 LIBEN Flexographic printing machinery 01/01/2007 31/12/2500 -84431600 01/01/2007 31/12/2500 LIBEN Flexographic printing machinery 01/01/2007 31/12/2500 -844317 01/01/2007 31/12/2500 LIBEN Gravure printing machinery 01/01/2007 31/12/2500 -84431700 01/01/2007 31/12/2500 LIBEN Gravure printing machinery 01/01/2007 31/12/2500 -844319 01/01/1988 31/12/2500 LIBEN Printing machinery used for printing by means of plates, cylinders and other printing components of heading 8442 (excl. hectograph or stencil duplicating machines, addressing machines and other office printing machines of heading 8469 to 8472, ink jet printing machines and offset, flexographic, letterpress and gravure printing machinery) 01/01/1988 31/12/2500 -84431910 01/01/1994 31/12/2006 LIBEN Offset printing machinery, sheet fed, used, taking sheets of a size > 22 x 36 cm 01/01/1994 31/12/2006 -84431911 01/01/1988 31/12/1993 LIBEN Offset printing machinery, sheet fed, taking sheets of a size =< 29.7 x 42 cm but > 22 x 36 cm 01/01/1988 31/12/1993 -84431919 01/01/1988 31/12/1993 LIBEN Offset printing machinery, sheet fed, taking sheets of a size > 29.7 x 42 cm 01/01/1988 31/12/1993 -84431920 01/01/2007 31/12/2500 LIBEN Printing machinery for printing textile materials (excl. offset, flexographic, letterpress and gravure printing machinery) 01/01/2007 31/12/2500 -84431931 01/01/1994 31/12/2006 LIBEN Offset printing machinery, sheet fed, new, taking sheets of a size <= 52 x 74 cm but > 22 x 36 cm 01/01/1994 31/12/2006 -84431935 01/01/1994 31/12/2006 LIBEN Offset printing machinery, sheet fed, new, taking sheets of a size > 52 x 74 cm 01/01/1994 31/12/2006 -84431939 01/01/1994 31/12/2006 LIBEN Offset printing machinery, sheet fed, new, taking sheets of a size > 74 x 107 cm 01/01/1994 31/12/2006 -84431940 01/01/2007 31/12/2500 LIBEN Printing machinery for use in the production of semiconductors 01/01/2007 31/12/2500 -84431970 01/01/2007 31/12/2500 LIBEN Printing machinery used for printing by means of plates, cylinders and other printing components of heading 8442 (excl. machinery for printing textile materials, those for use in the production of semiconductors, ink jet printing machines, hectograph or stencil duplicating machines, addressing machines and other office printing machines of heading 8469 to 8472 and offset, flexographic, letterpress and gravure printing machinery) 01/01/2007 31/12/2500 -84431990 01/01/1988 31/12/2006 LIBEN Offset printing machinery (excl. machinery for sheets or webs of paper) 01/01/1988 31/12/2006 -844321 01/01/1988 31/12/2006 LIBEN Letterpress printing machinery, reel fed (excl. flexographic printing machinery) 01/01/1988 31/12/2006 -84432100 01/01/1988 31/12/2006 LIBEN Letterpress printing machinery, reel fed (excl. flexographic printing machinery) 01/01/1988 31/12/2006 -844329 01/01/1988 31/12/2006 LIBEN Letterpress printing machinery (excl. flexographic printing and reel fed machinery) 01/01/1988 31/12/2006 -84432900 01/01/1988 31/12/2006 LIBEN Letterpress printing machinery (excl. flexographic printing and reel fed machinery) 01/01/1988 31/12/2006 -844330 01/01/1988 31/12/2006 LIBEN Flexographic printing machinery 01/01/1988 31/12/2006 -84433000 01/01/1988 31/12/2006 LIBEN Flexographic printing machinery 01/01/1988 31/12/2006 -844331 01/01/2007 31/12/2500 LIBEN Machines which perform two or more of the functions of printing, copying or facsimile transmission, capable of connecting to an automatic data-processing machine or to a network 01/01/2007 31/12/2500 -84433100 01/01/2017 31/12/2500 LIBEN Machines which perform two or more of the functions of printing, copying or facsimile transmission, capable of connecting to an automatic data-processing machine or to a network 01/01/2017 31/12/2500 -84433110 01/01/2007 30/06/2011 LIBEN Machines performing the functions of copying and facsimile transmission, whether or not with a printing function, with a copying speed <= 12 monochrome pages/minute, capable of connecting to an automatic data processing machine or to a network 01/01/2007 30/06/2011 -84433120 01/07/2011 31/12/2016 LIBEN Machines having digital copying as principal function, where the copying is performed by scanning the original and printing the copies by means of an electrostatic print engine, capable of connecting to an automatic data processing machine or to a network 01/07/2011 31/12/2016 -84433180 01/07/2011 31/12/2016 LIBEN Machines which perform two or more of the functions of printing, copying or facsimile transmission, capable of connecting to an automatic data processing machine or to a network (excl. those having digital copying as principal function, where the copying is performed by scanning the original and printing the copies by means of an electrostatic print engine) 01/07/2011 31/12/2016 -84433191 01/01/2007 30/06/2011 LIBEN Machines which perform at least one of the functions of printing or facsimile transmission in addition to the function of copying by scanning the original and printing the copies by means of an electrostatic print engine, capable of connecting to an automatic data processing machine or to a network (excl. those performing the functions of copying and facsimile transmission with a copying speed <= 12 monochrome pages/minute) 01/01/2007 30/06/2011 -84433199 01/01/2007 30/06/2011 LIBEN Machines which perform two or more of the functions of printing, copying or facsimile transmission, capable of connecting to an automatic data processing machine or to a network (excl. those performing the functions of copying and facsimile transmission with a copying speed <= 12 monochrome pages/minute and those performing the function of copying by scanning the original and printing the copies by means of an electrostatic print engine) 01/01/2007 30/06/2011 -844332 01/01/2007 31/12/2500 LIBEN Machines which only perform one of the functions of printing, copying or facsimile transmission, capable of connecting to an automatic data processing machine or to a network 01/01/2007 31/12/2500 -84433210 01/01/2007 31/12/2500 LIBEN Printers capable of connecting to an automatic data processing machine or to a network 01/01/2007 31/12/2500 -84433230 01/01/2007 31/12/2016 LIBEN Facsimile machines capable of connecting to an automatic data processing machine or to a network 01/01/2007 31/12/2016 -84433280 01/01/2017 31/12/2500 LIBEN Machines which only perform one of the functions of copying or facsimile transmission, capable of connecting to an automatic data-processing machine or to a network 01/01/2017 31/12/2500 -84433291 01/01/2007 31/12/2016 LIBEN Machines only performing a copying function by scanning the original and printing the copies by means of an electrostatic print engine capable of connecting to an automatic data processing machine or to a network 01/01/2007 31/12/2016 -84433293 01/01/2007 31/12/2016 LIBEN Machines only performing a copying function incorporating an optical system capable of connecting to an automatic data processing machine or to a network (excl. those performing a copying function by scanning the original and printing the copies by means of an electrostatic print) 01/01/2007 31/12/2016 -84433299 01/01/2007 31/12/2016 LIBEN Machines only performing a copying function incorporating a non-optical system capable of connecting to an automatic data processing machine or to a network 01/01/2007 31/12/2016 -844339 01/01/2007 31/12/2500 LIBEN Printers, copying machines and facsimile machines, whether or not combined (excl. those capable of connecting to an automatic data processing machine or to a network and printing machinery used for printing by means of plates, cylinders and other printing components of heading 8442) 01/01/2007 31/12/2500 -84433900 01/01/2017 31/12/2500 LIBEN Printers, copying machines and facsimile machines, whether or not combined (excl. those capable of connecting to an automatic data processing machine or to a network and printing machinery used for printing by means of plates, cylinders and other printing components of heading 8442) 01/01/2017 31/12/2500 -84433910 01/01/2007 31/12/2016 LIBEN Machines performing a copying function by scanning the original and printing the copies by means of an electrostatic print engine (excl. those capable of connecting to an automatic data processing machine or to a network) 01/01/2007 31/12/2016 -84433931 01/01/2007 31/12/2016 LIBEN Machines performing a copying function incorporating an optical system (excl. capable of connecting to an automatic data processing machine or to a network and those performing a copying function by scanning the original and printing the copies by means of an electrostatic print) 01/01/2007 31/12/2016 -84433939 01/01/2007 31/12/2016 LIBEN Machines only performing a copying function incorporating a non-optical system (excl. capable of connecting to an automatic data processing machine or to a network) 01/01/2007 31/12/2016 -84433990 01/01/2007 31/12/2016 LIBEN Printers and facsimile machines (excl. those capable of connecting to an automatic data processing machine or to a network) 01/01/2007 31/12/2016 -844340 01/01/1988 31/12/2006 LIBEN Gravure printing machinery 01/01/1988 31/12/2006 -84434000 01/01/1988 31/12/2006 LIBEN Gravure printing machinery 01/01/1988 31/12/2006 -844350 01/01/1988 31/12/1995 LIBEN Printing machinery (excl. hectograph or stencil duplicating machines, addressing machines and other office printing machines of headings 8469 to 8472 and offset, letterpress and gravure printing machinery) 01/01/1988 31/12/1995 -84435011 01/01/1988 31/12/1993 LIBEN Rotary presses for printing textile materials (excl. offset, letterpress and gravure printing machinery) 01/01/1988 31/12/1993 -84435019 01/01/1988 31/12/1993 LIBEN Rotary presses (excl. presses for printing textile materials, offset, letterpress and gravure printing machinery) 01/01/1988 31/12/1993 -84435020 01/01/1994 31/12/1995 LIBEN Printing machinery for printing textile materials (excl. offset, letterpress and gravure printing machinery) 01/01/1994 31/12/1995 -84435080 01/01/1994 31/12/1995 LIBEN Printing machinery (excl. machinery for printing textile materials, hectograph or stencil duplicating machines, addressing machines and other office printing machines of headings 8469 to 8472 and offset, letterpress and gravure printing machinery) 01/01/1994 31/12/1995 -84435090 01/01/1988 31/12/1993 LIBEN Printing machinery (excl. hectograph or stencil duplicating machines, addressing machines and other office printing machines of heading nos 8469 to 8472, offset, letterpress and gravure printing machinery and general rotary machinery) 01/01/1988 31/12/1993 -844351 01/01/1996 31/12/2006 LIBEN Ink-jet printing machines 01/01/1996 31/12/2006 -84435100 01/01/1996 31/12/2006 LIBEN Ink-jet printing machines 01/01/1996 31/12/2006 -844359 01/01/1996 31/12/2006 LIBEN Printing machinery used for printing by means of the printing type, blocks, plates, cylinders and other printing components of heading 8442 (excl. hectograph or stencil duplicating machines, addressing machines and other office printing machines of heading 8469 to 8472, ink jet printing machines and offset, flexographic, letterpress and gravure printing machinery) 01/01/1996 31/12/2006 -84435920 01/01/1996 31/12/2006 LIBEN Printing machinery for printing textile materials (excl. offset, flexographic, letterpress and gravure printing machinery) 01/01/1996 31/12/2006 -84435940 01/01/1998 31/12/2006 LIBEN Printing machinery for use in the production of semiconductors 01/01/1998 31/12/2006 -84435970 01/01/1998 31/12/2006 LIBEN Printing machinery used for printing by means of the printing type, blocks, plates, cylinders and other printing components of heading 8442 (excl. machinery for printing textile materials, those for use in the production of semiconductors, ink jet printing machines, hectograph or stencil duplicating machines, addressing machines and other office printing machines of heading 8469 to 8472 and offset, flexographic, letterpress and gravure printing machinery) 01/01/1998 31/12/2006 -84435980 01/01/1996 31/12/1997 LIBEN Printing machinery (excl. machinery for printing textile materials, ink jet printing machines, hectograph or stencil duplicating machines, addressing machines and other office printing machines of headings 8469 to 8472 and offset, flexographic, letterpress and gravure printing machinery) 01/01/1996 31/12/1997 -844360 01/01/1988 31/12/2006 LIBEN Machines for uses ancillary to printing, for the feeding, carriage or further processing of sheets or webs of paper 01/01/1988 31/12/2006 -84436000 01/01/1988 31/12/2006 LIBEN Machines for uses ancillary to printing, for the feeding, carriage or further processing of sheets or webs of paper 01/01/1988 31/12/2006 -844390 01/01/1988 31/12/2006 LIBEN Parts of printing machinery and machines for uses ancillary to printing, n.e.s. 01/01/1988 31/12/2006 -84439000 01/01/1988 31/12/1989 LIBEN Parts of printing machinery and machines for uses ancillary to printing n.e.s. 01/01/1988 31/12/1989 -84439005 01/01/1998 31/12/2006 LIBEN Parts of printing machinery for use in the production of semiconductors, n.e.s. 01/01/1998 31/12/2006 -84439010 01/01/1990 31/12/2006 LIBEN Parts of printing machinery and of machines for uses ancillary to printing, of cast iron or cast steel, n.e.s. 01/01/1990 31/12/2006 -84439080 01/01/1998 31/12/2006 LIBEN Parts of printing machinery and of machines for uses ancillary to printing, n.e.s. (excl. of printing machinery for use in the production of semiconductors and of cast iron or cast steel) 01/01/1998 31/12/2006 -84439090 01/01/1990 31/12/1997 LIBEN Parts of machinery of 8443.11.00 to 8443.60.00 (excl. of cast iron or cast steel) 01/01/1990 31/12/1997 -844391 01/01/2007 31/12/2500 LIBEN Parts and accessories of printing machinery used for printing by means of plates, cylinders and other printing components of heading 8442 01/01/2007 31/12/2500 -84439110 01/01/2007 31/12/2016 LIBEN Parts and accessories of printing machinery for use in the production of semiconductors, n.e.s. 01/01/2007 31/12/2016 -84439110 01/01/2017 31/12/2500 LIBEN Parts and accessories of printing machinery for use in the production of semiconductors, n.e.s. 01/01/2017 31/12/2500 -84439191 01/01/2007 31/12/2500 LIBEN Parts and accessories of printing machinery used for printing by means of plates, cylinders and other printing components of heading 8442, of cast iron or cast steel, n.e.s. (excl. of printing machinery for use in the production of semiconductors) 01/01/2007 31/12/2500 -84439199 01/01/2007 31/12/2500 LIBEN Parts and accessories of printing machinery used for printing by means of plates, cylinders and other printing components of heading 8442, n.e.s. (excl. of printing machinery for use in the production of semiconductors and of cast iron or cast steel) 01/01/2007 31/12/2500 -844399 01/01/2007 31/12/2500 LIBEN Parts and accessories of printers, copying machines and facsimile machines, n.e.s. (excl. of printing machinery used for printing by means of plates, cylinders and other printing components of heading 8442) 01/01/2007 31/12/2500 -84439910 01/01/2007 31/12/2500 LIBEN Electronic assemblies of printers, copying machines and facsimile machines (excl. of printing machinery used for printing by means of plates, cylinders and other printing components of heading 8442) 01/01/2007 31/12/2500 -84439990 01/01/2007 31/12/2500 LIBEN Parts and accessories of printers, copying machines and facsimile machines, n.e.s. (excl. electronic assemblies and of printing machinery used for printing by means of plates, cylinders and other printing components of heading 8442) 01/01/2007 31/12/2500 -8444 01/01/1988 31/12/2500 LIBEN Machines for extruding, drawing, texturing or cutting man-made textile materials 01/01/1988 31/12/2500 -844400 01/01/1988 31/12/2500 LIBEN Machines for extruding, drawing, texturing or cutting man-made textile materials 01/01/1988 31/12/2500 -84440010 01/01/1988 31/12/2500 LIBEN Machines for extruding filaments of man-made textile materials 01/01/1988 31/12/2500 -84440090 01/01/1988 31/12/2500 LIBEN Machines for drawing, texturing or cutting filaments of man-made textile materials 01/01/1988 31/12/2500 -8445 01/01/1988 31/12/2500 LIBEN Machines for preparing textile fibres; spinning, doubling or twisting machines and other machinery for producing textile yarns (excl. machines of heading 8444); textile reeling or winding, incl. weft-winding, machines, and machines for preparing textile yarns for use on the machines of heading 8446 or 8447 01/01/1988 31/12/2500 -844511 01/01/1988 31/12/2500 LIBEN Carding machines for preparing textile fibres 01/01/1988 31/12/2500 -84451100 01/01/1988 31/12/2500 LIBEN Carding machines for preparing textile fibres 01/01/1988 31/12/2500 -844512 01/01/1988 31/12/2500 LIBEN Combing machines for preparing textile fibres 01/01/1988 31/12/2500 -84451200 01/01/1988 31/12/2500 LIBEN Combing machines for preparing textile fibres 01/01/1988 31/12/2500 -844513 01/01/1988 31/12/2500 LIBEN Drawing or roving machines 01/01/1988 31/12/2500 -84451300 01/01/1988 31/12/2500 LIBEN Drawing or roving machines 01/01/1988 31/12/2500 -844519 01/01/1988 31/12/2500 LIBEN Machines for preparing textile fibres (excl. carding, combing, drawing or roving machines) 01/01/1988 31/12/2500 -84451900 01/01/1988 31/12/2500 LIBEN Machines for preparing textile fibres (excl. carding, combing, drawing or roving machines) 01/01/1988 31/12/2500 -844520 01/01/1988 31/12/2500 LIBEN Textile spinning machines (excl. extruding and drawing or roving machines) 01/01/1988 31/12/2500 -84452000 01/01/1988 31/12/2500 LIBEN Textile spinning machines (excl. extruding and drawing or roving machines) 01/01/1988 31/12/2500 -844530 01/01/1988 31/12/2500 LIBEN Textile doubling or twisting machines 01/01/1988 31/12/2500 -84453000 01/01/2012 31/12/2500 LIBEN Textile doubling or twisting machines 01/01/2012 31/12/2500 -84453010 01/01/1988 31/12/2011 LIBEN Textile doubling machines 01/01/1988 31/12/2011 -84453090 01/01/1988 31/12/2011 LIBEN Textile twisting machines 01/01/1988 31/12/2011 -844540 01/01/1988 31/12/2500 LIBEN Textile winding, incl. weft-winding, or reeling machines 01/01/1988 31/12/2500 -84454000 01/01/1988 31/12/2500 LIBEN Textile winding, incl. weft-winding, or reeling machines 01/01/1988 31/12/2500 -844590 01/01/1988 31/12/2500 LIBEN Machines for producing textile yarns and machines for preparing textile yarns for use on machines of heading 8446 or 8447 (excl. machines of heading 8444 and spinning, doubling or twisting machines) 01/01/1988 31/12/2500 -84459000 01/01/1988 31/12/2500 LIBEN Machines for producing textile yarns and machines for preparing textile yarns for use on machines of heading 8446 or 8447 (excl. machines of heading 8444 and spinning, doubling or twisting machines) 01/01/1988 31/12/2500 -8446 01/01/1988 31/12/2500 LIBEN Weaving machines "looms" 01/01/1988 31/12/2500 -844610 01/01/1988 31/12/2500 LIBEN Weaving machines for weaving fabrics of a width <= 30 cm 01/01/1988 31/12/2500 -84461000 01/01/1988 31/12/2500 LIBEN Weaving machines for weaving fabrics of a width <= 30 cm 01/01/1988 31/12/2500 -844621 01/01/1988 31/12/2500 LIBEN Power looms for weaving fabrics of a width > 30 cm, shuttle type 01/01/1988 31/12/2500 -84462100 01/01/1988 31/12/2500 LIBEN Power looms for weaving fabrics of a width > 30 cm, shuttle type 01/01/1988 31/12/2500 -844629 01/01/1988 31/12/2500 LIBEN Hand looms for weaving fabrics of a width > 30 cm, shuttle type 01/01/1988 31/12/2500 -84462900 01/01/1988 31/12/2500 LIBEN Hand looms for weaving fabrics of a width > 30 cm, shuttle type 01/01/1988 31/12/2500 -844630 01/01/1988 31/12/2500 LIBEN Weaving machines for weaving fabrics of a width > 30 cm, shuttleless type 01/01/1988 31/12/2500 -84463000 01/01/1988 31/12/2500 LIBEN Weaving machines for weaving fabrics of a width > 30 cm, shuttleless type 01/01/1988 31/12/2500 -8447 01/01/1988 31/12/2500 LIBEN Knitting machines, stitch-bonding machines and machines for making gimped yarn, tulle, lace, embroidery, trimmings, braid or net and machines for tufting (excl. hem-stitching machines) 01/01/1988 31/12/2500 -844711 01/01/1988 31/12/2500 LIBEN Circular knitting machines, with cylinder diameter <= 165 mm 01/01/1988 31/12/2500 -84471100 01/01/1988 31/12/1993 LIBEN Circular knitting machines, with cylinder diameter =< 165 mm 01/01/1988 31/12/1993 -84471100 01/01/2010 31/12/2500 LIBEN Circular knitting machines, with cylinder diameter <= 165 mm 01/01/2010 31/12/2500 -84471110 01/01/1994 31/12/2009 LIBEN Circular knitting machines, with cylinder diameter <= 165 mm, working with latch needles 01/01/1994 31/12/2009 -84471190 01/01/1994 31/12/2009 LIBEN Circular knitting machines, with cylinder diameter <= 165 mm (excl. such machines working with latch needles) 01/01/1994 31/12/2009 -844712 01/01/1988 31/12/2500 LIBEN Circular knitting machines, with cylinder diameter > 165 mm 01/01/1988 31/12/2500 -84471200 01/01/1988 31/12/1993 LIBEN Circular knitting machines, with cylinder diameter > 165 mm 01/01/1988 31/12/1993 -84471200 01/01/2010 31/12/2500 LIBEN Circular knitting machines, with cylinder diameter > 165 mm 01/01/2010 31/12/2500 -84471210 01/01/1994 31/12/2009 LIBEN Circular knitting machines, with cylinder diameter > 165 mm, working with latch needles 01/01/1994 31/12/2009 -84471290 01/01/1994 31/12/2009 LIBEN Circular knitting machines, with cylinder diameter > 164 mm (excl. such machines working with latch needles) 01/01/1994 31/12/2009 -844720 01/01/1988 31/12/2500 LIBEN Flat knitting machines; stitch-bonding machines 01/01/1988 31/12/2500 -84472010 01/01/1988 31/12/2003 LIBEN Flat knitting machines and stitch-bonding machines, hand operated 01/01/1988 31/12/2003 -84472020 01/01/2004 31/12/2500 LIBEN Warp knitting machines, incl. Raschel type, and stitch-bonding machines 01/01/2004 31/12/2500 -84472080 01/01/2004 31/12/2500 LIBEN Flat knitting machines (excl. warp knitting machines, incl. Raschel type) 01/01/2004 31/12/2500 -84472091 01/01/1988 31/12/1993 LIBEN Warp knitting machines, incl. raschel type 01/01/1988 31/12/1993 -84472092 01/01/1994 31/12/2003 LIBEN Warp knitting machines, incl. Raschel type, and stitch-bonding machines, motorised 01/01/1994 31/12/2003 -84472093 01/01/1988 31/12/1993 LIBEN Fully fashioned knitting machines 'cotton's type' 01/01/1988 31/12/1993 -84472098 01/01/1994 31/12/2003 LIBEN Flat knitting machines, motorised (excl. warp knitting machines, incl. Raschel type) 01/01/1994 31/12/2003 -84472099 01/01/1988 31/12/1993 LIBEN Flat knitting machines and stitch-bonding machines, power-driven (excl. warp knitting machines, incl. raschel type, and fully fashioned knitting machines 'cotton's type') 01/01/1988 31/12/1993 -844790 01/01/1988 31/12/2500 LIBEN Machines for making gimped yarn, tulle, lace, embroidery, trimmings, braid or net and machines for tufting (excl. chain or blanket stitch machines) 01/01/1988 31/12/2500 -84479000 01/01/1988 31/12/2500 LIBEN Machines for making gimped yarn, tulle, lace, embroidery, trimmings, braid or net and machines for tufting (excl. chain or blanket stitch machines) 01/01/1988 31/12/2500 -8448 01/01/1988 31/12/2500 LIBEN Auxiliary machinery for use with machines of heading 8444, 8445, 8446 or 8447, e.g. dobbies, jacquards, automatic stop motions, shuttle changing mechanisms; parts and accessories suitable for use solely or principally with the machines of this heading or of heading 8444, 8445, 8446 or 8447, e.g. spindles and spindle flyers, card clothing, combs, extruding nipples, shuttles, healds and heald-frames, hosiery needles 01/01/1988 31/12/2500 -844811 01/01/1988 31/12/2500 LIBEN Doobies and jacquards; card reducing, copying, punching or assembling machines for use therewith 01/01/1988 31/12/2500 -84481100 01/01/1988 31/12/2500 LIBEN Doobies and jacquards; card reducing, copying, punching or assembling machines for use therewith 01/01/1988 31/12/2500 -844819 01/01/1988 31/12/2500 LIBEN Auxiliary machinery for machines of heading 8444, 8445, 8446 or 8447 (excl. doobies and jacquards, card reducing, copying, punching or assembling machines for use therewith) 01/01/1988 31/12/2500 -84481900 01/01/1988 31/12/2500 LIBEN Auxiliary machinery for machines of heading 8444, 8445, 8446 or 8447 (excl. doobies and jacquards, card reducing, copying, punching or assembling machines for use therewith) 01/01/1988 31/12/2500 -844820 01/01/1988 31/12/2500 LIBEN Parts and accessories of machines for extruding, drawing, texturing or cutting man-made textile materials or of their auxiliary machinery, n.e.s. 01/01/1988 31/12/2500 -84482000 01/01/1988 31/12/1989 LIBEN Parts and accessories of machines of 8444 or of their auxiliary machinery n.e.s. 01/01/1988 31/12/1989 -84482000 01/01/2004 31/12/2500 LIBEN Parts and accessories of machines for extruding, drawing, texturing or cutting man-made textile materials or of their auxiliary machinery, n.e.s. 01/01/2004 31/12/2500 -84482010 01/01/1990 31/12/2003 LIBEN Parts and accessories of machines for extruding, drawing, texturing or cutting man-made textile materials or of their auxiliary machinery, of cast iron or cast steel 01/01/1990 31/12/2003 -84482090 01/01/1990 31/12/2003 LIBEN Parts and accessories of machines for extruding, drawing, texturing or cutting man-made textile materials or of their auxiliary machinery (excl. of cast iron or cast steel) 01/01/1990 31/12/2003 -844831 01/01/1988 31/12/2500 LIBEN Card clothing for machines for preparing textile fibres 01/01/1988 31/12/2500 -84483100 01/01/1988 31/12/2500 LIBEN Card clothing for machines for preparing textile fibres 01/01/1988 31/12/2500 -844832 01/01/1988 31/12/2500 LIBEN Parts and accessories of machines for preparing textile fibres, n.e.s. (other than card clothing) 01/01/1988 31/12/2500 -84483200 01/01/1988 31/12/2500 LIBEN Parts and accessories of machines for preparing textile fibres, n.e.s. (other than card clothing) 01/01/1988 31/12/2500 -844833 01/01/1988 31/12/2500 LIBEN Spindles, spindle flyers, spinning rings and ring travellers, for machines of heading 8445 01/01/1988 31/12/2500 -84483300 01/01/2010 31/12/2500 LIBEN Spindles, spindle flyers, spinning rings and ring travellers, for machines of heading 8445 01/01/2010 31/12/2500 -84483310 01/01/1988 31/12/2009 LIBEN Spindles and spindle flyers for machines of heading 8445 01/01/1988 31/12/2009 -84483390 01/01/1988 31/12/2009 LIBEN Spinning rings and ring travellers for machines of heading 8445 01/01/1988 31/12/2009 -844839 01/01/1988 31/12/2500 LIBEN Parts and accessories of machines of heading 8445, n.e.s. 01/01/1988 31/12/2500 -84483900 01/01/1988 31/12/2500 LIBEN Parts and accessories of machines of heading 8445, n.e.s. 01/01/1988 31/12/2500 -844841 01/01/1988 31/12/2006 LIBEN Shuttles for looms 01/01/1988 31/12/2006 -84484100 01/01/1988 31/12/2006 LIBEN Shuttles for looms 01/01/1988 31/12/2006 -844842 01/01/1988 31/12/2500 LIBEN Reeds for looms, healds and heald-frames 01/01/1988 31/12/2500 -84484200 01/01/1988 31/12/2500 LIBEN Reeds for looms, healds and heald-frames 01/01/1988 31/12/2500 -844849 01/01/1988 31/12/2500 LIBEN Parts and accessories of weaving machines "looms" and their auxiliary machinery, n.e.s. 01/01/1988 31/12/2500 -84484900 01/01/1988 31/12/2006 LIBEN Parts and accessories of weaving machines "looms" and their auxiliary machinery, n.e.s. 01/01/1988 31/12/2006 -84484900 01/01/2007 31/12/2500 LIBEN Parts and accessories of weaving machines "looms" and their auxiliary machinery, n.e.s. 01/01/2007 31/12/2500 -844851 01/01/1988 31/12/2500 LIBEN Sinkers, needles and other articles used in forming stitches, for machines of heading 8447 01/01/1988 31/12/2500 -84485110 01/01/1988 31/12/2500 LIBEN Sinkers used in forming stitches, for machines of heading 8447 01/01/1988 31/12/2500 -84485190 01/01/1988 31/12/2500 LIBEN Needles and other articles used in forming stitches, for machines of heading 8447 (excl. sinkers) 01/01/1988 31/12/2500 -844859 01/01/1988 31/12/2500 LIBEN Parts and accessories of machines of heading 8447, n.e.s. 01/01/1988 31/12/2500 -84485900 01/01/1988 31/12/2500 LIBEN Parts and accessories of machines of heading 8447, n.e.s. 01/01/1988 31/12/2500 -8448S7 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 8448 and SITC section 7 01/01/1998 31/12/2500 -8448S724 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 8448 and SITC group 724 01/01/1998 31/12/2500 -8449 01/01/1988 31/12/2500 LIBEN Machinery for the manufacture or finishing of felt or nonwovens in the piece or in shapes, incl. machinery for making felt hats; blocks for making hats; parts thereof (excl. machinery for preparing fibres for felt and calenders) 01/01/1988 31/12/2500 -844900 01/01/1988 31/12/2500 LIBEN Machinery for the manufacture or finishing of felt or nonwovens in the piece or in shapes, incl. machinery for making felt hats; blocks for making hats; parts thereof (excl. machinery for preparing fibres for felt and calenders) 01/01/1988 31/12/2500 -84490000 01/01/1988 31/12/2500 LIBEN Machinery for the manufacture or finishing of felt or nonwovens in the piece or in shapes, incl. machinery for making felt hats; blocks for making hats; parts thereof (excl. machinery for preparing fibres for felt and calenders) 01/01/1988 31/12/2500 -8450 01/01/1988 31/12/2500 LIBEN Household or laundry-type washing machines, incl. machines which both wash and dry; parts thereof 01/01/1988 31/12/2500 -845011 01/01/1988 31/12/2500 LIBEN Fully-automatic household or laundry-type washing machines, of a dry linen capacity <= 6 kg 01/01/1988 31/12/2500 -84501110 01/01/1988 31/12/1993 LIBEN Fully-automatic household or laundry-type machines, of a dry linen capacity =< 6 kg 01/01/1988 31/12/1993 -84501111 01/01/1994 31/12/2500 LIBEN Fully-automatic household or laundry-type front-loading washing machines, of a dry linen capacity <= 6 kg 01/01/1994 31/12/2500 -84501119 01/01/1994 31/12/2500 LIBEN Fully-automatic household or laundry-type top-loading washing machines, of a dry linen capacity <= 6 kg 01/01/1994 31/12/2500 -84501190 01/01/1988 31/12/2500 LIBEN Fully-automatic household or laundry-type washing machines, of a dry linen capacity > 6 kg but <= 10 kg 01/01/1988 31/12/2500 -845012 01/01/1988 31/12/2500 LIBEN Household or laundry-type washing machines, with built-in centrifugal drier (excl. fully-automatic machines) 01/01/1988 31/12/2500 -84501200 01/01/1988 31/12/2500 LIBEN Household or laundry-type washing machines, with built-in centrifugal drier (excl. fully-automatic machines) 01/01/1988 31/12/2500 -845019 01/01/1988 31/12/2500 LIBEN Household or laundry-type washing machines, of a dry linen capacity <= 6 kg (excl. fully-automatic machines and washing machines with built-in centrifugal drier) 01/01/1988 31/12/2500 -84501900 01/01/1988 31/12/2500 LIBEN Household or laundry-type washing machines, of a dry linen capacity <= 6 kg (excl. fully-automatic machines and washing machines with built-in centrifugal drier) 01/01/1988 31/12/2500 -845020 01/01/1988 31/12/2500 LIBEN Laundry-type washing machines, of a dry linen capacity > 10 kg 01/01/1988 31/12/2500 -84502000 01/01/1988 31/12/2500 LIBEN Laundry-type washing machines, of a dry linen capacity > 10 kg 01/01/1988 31/12/2500 -845090 01/01/1988 31/12/2500 LIBEN Parts of household or laundry-type washing machines, n.e.s. 01/01/1988 31/12/2500 -84509000 01/01/1988 31/12/2006 LIBEN Parts of household or laundry-type washing machines, n.e.s. 01/01/1988 31/12/2006 -84509000 01/01/2007 31/12/2016 LIBEN Parts of household or laundry-type washing machines, n.e.s. 01/01/2007 31/12/2016 -84509000 01/01/2017 31/12/2500 LIBEN Parts of household or laundry-type washing machines, n.e.s. 01/01/2017 31/12/2500 -8450S7 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8450 and SITC section 7 01/01/1997 31/12/2500 -8450S724 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8450 and SITC group 724 01/01/1997 31/12/2500 -8450S775 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8450 and SITC group 775 01/01/1997 31/12/2500 -8451 01/01/1988 31/12/2500 LIBEN Machinery (excl. of heading 8450) for washing, cleaning, wringing, drying, ironing, pressing incl. fusing presses, bleaching, dyeing, dressing, finishing, coating or impregnating textile yarns, fabrics or made-up textile articles and for applying paste to the base fabric or other support used in the manufacture of floor coverings like linoleum; machines for reeling, unreeling, folding, cutting or pinking textile fabrics; parts thereof 01/01/1988 31/12/2500 -845110 01/01/1988 31/12/2500 LIBEN Dry-cleaning machines for made-up textile articles 01/01/1988 31/12/2500 -84511000 01/01/1988 31/12/2500 LIBEN Dry-cleaning machines for made-up textile articles 01/01/1988 31/12/2500 -845121 01/01/1988 31/12/2500 LIBEN Drying machines, of a dry linen capacity <= 10 kg (excl. centrifugal driers) 01/01/1988 31/12/2500 -84512100 01/01/2010 31/12/2500 LIBEN Drying machines, of a dry linen capacity <= 10 kg (excl. centrifugal driers) 01/01/2010 31/12/2500 -84512110 01/01/1988 31/12/2009 LIBEN Drying machines, of a dry linen capacity <= 6 kg (excl. centrifugal driers) 01/01/1988 31/12/2009 -84512190 01/01/1988 31/12/2009 LIBEN Drying machines, of a dry linen capacity > 6 kg but <= 10 kg (excl. centrifugal driers) 01/01/1988 31/12/2009 -845129 01/01/1988 31/12/2500 LIBEN Drying machines for textile yarns, fabrics or made-up textile articles (excl. machines of a dry linen capacity <= 10 kg and centrifugal driers) 01/01/1988 31/12/2500 -84512900 01/01/1988 31/12/2500 LIBEN Drying machines for textile yarns, fabrics or made-up textile articles (excl. machines of a dry linen capacity <= 10 kg and centrifugal driers) 01/01/1988 31/12/2500 -845130 01/01/1988 31/12/2500 LIBEN Ironing machines and presses, incl. fusing presses (excl. calenders) 01/01/1988 31/12/2500 -84513000 01/01/2012 31/12/2500 LIBEN Ironing machines and presses, incl. fusing presses (excl. calenders) 01/01/2012 31/12/2500 -84513010 01/01/1988 31/12/1993 LIBEN Ironing machines and presses, electrically heated of a power < 2 500 w 01/01/1988 31/12/1993 -84513010 01/01/1994 31/12/2011 LIBEN Ironing machines and presses, electrically heated, of a power <= 2.500 W 01/01/1994 31/12/2011 -84513030 01/01/1994 31/12/2011 LIBEN Ironing machines and presses, electrically heated, of a power > 2.500 W 01/01/1994 31/12/2011 -84513080 01/01/1994 31/12/2011 LIBEN Ironing machines and presses (excl. such machines electrically heated and calenders) 01/01/1994 31/12/2011 -84513090 01/01/1988 31/12/1993 LIBEN Ironing machines and presses (excl. electrically heated of a power < 2 500 w and calenders) 01/01/1988 31/12/1993 -845140 01/01/1988 31/12/2500 LIBEN Machines for washing, bleaching or dyeing textile yarns, fabrics or made-up textile articles (excl. household or laundry-type washing machines) 01/01/1988 31/12/2500 -84514000 01/01/1988 31/12/2500 LIBEN Machines for washing, bleaching or dyeing textile yarns, fabrics or made-up textile articles (excl. household or laundry-type washing machines) 01/01/1988 31/12/2500 -845150 01/01/1988 31/12/2500 LIBEN Machines for reeling, unreeling, folding, cutting or pinking textile fabrics 01/01/1988 31/12/2500 -84515000 01/01/1988 31/12/2500 LIBEN Machines for reeling, unreeling, folding, cutting or pinking textile fabrics 01/01/1988 31/12/2500 -845180 01/01/1988 31/12/2500 LIBEN Machinery for dressing, finishing, coating or impregnating textile yarns, fabrics or other made-up textile articles and machines used in the manufacture of linoleum or other floor coverings for applying the paste to the base fabric or other support (excl. machinery for dressing or finishing felt, calenders and general purpose presses) 01/01/1988 31/12/2500 -84518010 01/01/1988 31/12/2500 LIBEN Machines used in the manufacture of linoleum or other floor coverings for applying the paste to the base fabric or other support (excl. calenders and general purpose presses) 01/01/1988 31/12/2500 -84518030 01/01/1994 31/12/2500 LIBEN Machinery for dressing or finishing textile yarns, fabrics or other made-up textile articles (excl. machinery for dressing or finishing felt, and calenders and general purpose presses) 01/01/1994 31/12/2500 -84518080 01/01/1994 31/12/2500 LIBEN Machinery for coating or impregnating textile yarns, fabrics or other made-up textile articles (excl. calenders and general purpose presses) 01/01/1994 31/12/2500 -84518090 01/01/1988 31/12/1993 LIBEN Machines for dressing, finishing, coating or impregnating textile yarns, fabrics or other made up textile articles (excl. machinery for dressing or finishing felt, calenders and general purpose presses) 01/01/1988 31/12/1993 -845190 01/01/1988 31/12/2500 LIBEN Parts of machines for washing, cleaning, wringing, drying, ironing, pressing, bleaching, dyeing, dressing, finishing, coating or impregnating textile yarns, fabrics or made-up textile articles; parts of machines used in the manufacture of linoleum or other floor coverings for applying the paste to the base fabric or other support; parts of machines for reeling, unreeling, folding, cutting or pinking textile fabrics, n.e.s. 01/01/1988 31/12/2500 -84519000 01/01/1988 31/12/2500 LIBEN Parts of machines for washing, cleaning, wringing, drying, ironing, pressing, bleaching, dyeing, dressing, finishing, coating or impregnating textile yarns, fabrics or made-up textile articles; parts of machines used in the manufacture of linoleum or other floor coverings for applying the paste to the base fabric or other support; parts of machines for reeling, unreeling, folding, cutting or pinking textile fabrics, n.e.s. 01/01/1988 31/12/2500 -8451S7 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 8451 and SITC section 7 01/01/2001 31/12/2500 -8451S775 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 8451 and SITC group 775 01/01/2001 31/12/2500 -8452 01/01/1988 31/12/2500 LIBEN Sewing machines (other than book-sewing machines of heading 8440); furniture, bases and covers specially designed for sewing machines; sewing machine needles; parts thereof 01/01/1988 31/12/2500 -845210 01/01/1988 31/12/2500 LIBEN Sewing machines of the household type 01/01/1988 31/12/2500 -84521011 01/01/1988 31/12/2500 LIBEN Sewing machines "lock-stitch only" of the household type, with heads weighing <= 16 kg without motor or <= 17 kg with motor, having a value "not incl. frames, tables or furniture" of > € 65 each 01/01/1988 31/12/2500 -84521019 01/01/1988 31/12/2500 LIBEN Sewing machines "lock-stitch only" of the household type, with heads weighing <= 16 kg without motor or <= 17 kg with motor, having a value "not incl. frames, tables or furniture" of <= € 65; heads for these machines, weighing <= 16 kg without motor or <= 17 kg with motor 01/01/1988 31/12/2500 -84521090 01/01/1988 31/12/2500 LIBEN Sewing machines and heads, of the household type (excl. lock-stitch sewing machines with heads weighing <= 16 kg without motor or <= 17 kg with motor and heads weighing <= 16 kg without motor or <= 17 kg with motor) 01/01/1988 31/12/2500 -845221 01/01/1988 31/12/2500 LIBEN Automatic sewing machines, industrial type 01/01/1988 31/12/2500 -84522100 01/01/1988 31/12/2500 LIBEN Automatic sewing machines, industrial type 01/01/1988 31/12/2500 -845229 01/01/1988 31/12/2500 LIBEN Sewing machines, industrial type (excl. automatic units) 01/01/1988 31/12/2500 -84522900 01/01/1988 31/12/2500 LIBEN Sewing machines, industrial type (excl. automatic units) 01/01/1988 31/12/2500 -845230 01/01/1988 31/12/2500 LIBEN Sewing machine needles 01/01/1988 31/12/2500 -84523000 01/01/1988 31/12/1994 LIBEN Sewing machine needles 01/01/1988 31/12/1994 -84523000 01/01/2012 31/12/2500 LIBEN Sewing machine needles 01/01/2012 31/12/2500 -84523010 01/01/1995 31/12/2011 LIBEN Sewing machine needles with single flat shank 01/01/1995 31/12/2011 -84523090 01/01/1995 31/12/2011 LIBEN Sewing machine needles (other than with single flat shank) 01/01/1995 31/12/2011 -845240 01/01/1988 31/12/2011 LIBEN Furniture, bases and covers for sewing machines and parts thereof 01/01/1988 31/12/2011 -84524000 01/01/1988 31/12/2011 LIBEN Furniture, bases and covers for sewing machines and parts thereof 01/01/1988 31/12/2011 -845290 01/01/1988 31/12/2500 LIBEN Furniture, bases and covers for sewing machines and parts thereof; other parts of sewing machines 01/01/1988 31/12/2500 -84529000 01/01/1988 31/12/2011 LIBEN Parts of sewing machines, n.e.s. 01/01/1988 31/12/2011 -84529000 01/01/2012 31/12/2500 LIBEN Furniture, bases and covers for sewing machines and parts thereof; other parts of sewing machines 01/01/2012 31/12/2500 -8453 01/01/1988 31/12/2500 LIBEN Machinery for preparing, tanning or working hides, skins or leather or for making or repairing footwear or other articles of hides, skins or leather (excl. drying machines, spray guns, machines for the dehairing of pigs, sewing machines and general purpose presses); parts thereof 01/01/1988 31/12/2500 -845310 01/01/1988 31/12/2500 LIBEN Machinery for preparing, tanning or working hides, skins or leather (excl. drying machines, spray guns, machines for the dehairing of pigs, sewing machines and general purpose presses) 01/01/1988 31/12/2500 -84531000 01/01/1988 31/12/2500 LIBEN Machinery for preparing, tanning or working hides, skins or leather (excl. drying machines, spray guns, machines for the dehairing of pigs, sewing machines and general purpose presses) 01/01/1988 31/12/2500 -845320 01/01/1988 31/12/2500 LIBEN Machinery for making or repairing footwear of hides, skins or leather (excl. sewing machines) 01/01/1988 31/12/2500 -84532000 01/01/1988 31/12/2500 LIBEN Machinery for making or repairing footwear of hides, skins or leather (excl. sewing machines) 01/01/1988 31/12/2500 -845380 01/01/1988 31/12/2500 LIBEN Machinery for making or repairing articles of hides, skins or leather (excl. footwear and sewing machines) 01/01/1988 31/12/2500 -84538000 01/01/1988 31/12/2500 LIBEN Machinery for making or repairing articles of hides, skins or leather (excl. footwear and sewing machines) 01/01/1988 31/12/2500 -845390 01/01/1988 31/12/2500 LIBEN Parts of machinery for preparing, tanning or working hides, skins or leather or for making or repairing footwear or other articles of hides, skins or leather, n.e.s. 01/01/1988 31/12/2500 -84539000 01/01/1988 31/12/2500 LIBEN Parts of machinery for preparing, tanning or working hides, skins or leather or for making or repairing footwear or other articles of hides, skins or leather, n.e.s. 01/01/1988 31/12/2500 -8454 01/01/1988 31/12/2500 LIBEN Converters, ladles, ingot moulds and casting machines of a kind used in metallurgy or in metal foundries (excl. metal powder presses); parts thereof 01/01/1988 31/12/2500 -845410 01/01/1988 31/12/2500 LIBEN Converters of a kind used in metallurgy or in metal foundries 01/01/1988 31/12/2500 -84541000 01/01/1988 31/12/2500 LIBEN Converters of a kind used in metallurgy or in metal foundries 01/01/1988 31/12/2500 -845420 01/01/1988 31/12/2500 LIBEN Ingot moulds and ladles, of a kind used in metallurgy or in metal foundries 01/01/1988 31/12/2500 -84542000 01/01/1995 31/12/2500 LIBEN Ingot moulds and ladles, of a kind used in metallurgy or in metal foundries 01/01/1995 31/12/2500 -84542011 01/01/1988 31/12/1994 LIBEN Ingot moulds of a kind used in metallurgy or in metal foundries, of cast iron 01/01/1988 31/12/1994 -84542019 01/01/1988 31/12/1994 LIBEN Ingot moulds of a kind used in metallurgy or in metal foundries (excl. those of cast iron) 01/01/1988 31/12/1994 -84542090 01/01/1988 31/12/1994 LIBEN Ladles of a kind used in metallurgy or in metal foundries 01/01/1988 31/12/1994 -845430 01/01/1988 31/12/2500 LIBEN Casting machines of a kind used in metallurgy or in metal foundries 01/01/1988 31/12/2500 -84543010 01/01/1988 31/12/2500 LIBEN Machines for casting under pressure of a kind used in metallurgy or in metal foundries 01/01/1988 31/12/2500 -84543090 01/01/1988 31/12/2500 LIBEN Casting machines of a kind used in metallurgy or in metal foundries (excl. machines for casting under pressure) 01/01/1988 31/12/2500 -845490 01/01/1988 31/12/2500 LIBEN Parts of converters, ladles, ingot moulds and casting machines of a kind used in metallurgy or in metal foundries, n.e.s. 01/01/1988 31/12/2500 -84549000 01/01/1988 31/12/2500 LIBEN Parts of converters, ladles, ingot moulds and casting machines of a kind used in metallurgy or in metal foundries, n.e.s. 01/01/1988 31/12/2500 -8454I2 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8454; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1997 31/12/2005 -8454I200 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8454; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1997 31/12/2005 -8455 01/01/1988 31/12/2500 LIBEN Metal-rolling mills and rolls therefor; parts of metal-rolling mills 01/01/1988 31/12/2500 -845510 01/01/1988 31/12/2500 LIBEN Mills for rolling metal tubes 01/01/1988 31/12/2500 -84551000 01/01/1988 31/12/2500 LIBEN Mills for rolling metal tubes 01/01/1988 31/12/2500 -845521 01/01/1988 31/12/2500 LIBEN Hot or combination hot and cold metal-rolling mills (excl. tubes mills) 01/01/1988 31/12/2500 -84552100 01/01/1988 31/12/2500 LIBEN Hot or combination hot and cold metal-rolling mills (excl. tubes mills) 01/01/1988 31/12/2500 -845522 01/01/1988 31/12/2500 LIBEN Cold-rolling mills for metal (excl. tube mills) 01/01/1988 31/12/2500 -84552200 01/01/1988 31/12/2500 LIBEN Cold-rolling mills for metal (excl. tube mills) 01/01/1988 31/12/2500 -845530 01/01/1988 31/12/2500 LIBEN Rolls for metal-rolling mills 01/01/1988 31/12/2500 -84553010 01/01/1988 31/12/2500 LIBEN Rolls for metal-rolling mills, of cast iron 01/01/1988 31/12/2500 -84553031 01/01/1988 31/12/2500 LIBEN Hot-rolling work-rolls; hot-rolling and cold-rolling back-up rolls, of open-die forged steel, for metal 01/01/1988 31/12/2500 -84553039 01/01/1988 31/12/2500 LIBEN Cold-rolling work-rolls, for metal, of open-die forged steel 01/01/1988 31/12/2500 -84553090 01/01/1988 31/12/2500 LIBEN Rolls for metal-rolling mills, of cast or wrought steel 01/01/1988 31/12/2500 -845590 01/01/1988 31/12/2500 LIBEN Parts of metal-rolling mills, n.e.s. 01/01/1988 31/12/2500 -84559000 01/01/1988 31/12/2500 LIBEN Parts of metal-rolling mills, n.e.s. 01/01/1988 31/12/2500 -8456 01/01/1988 31/12/2500 LIBEN Machine tools for working any material by removal of material, by laser or other light or photon beam, ultrasonic, electro-discharge, electro-chemical, electron beam, ionic-beam or plasma arc processes; water-jet cutting machines (excl. cleaning apparatus operated by ultrasonic processes, soldering and welding machines, incl. those which can be used for cutting, and material testing machines) 01/01/1988 31/12/2500 -845610 01/01/1988 31/12/2016 LIBEN Machine tools for working any material by removal of material, operated by laser or other light or photon beam processes (excl. soldering and welding machines, incl. those which can be used for cutting, material testing machines and machines for the manufacture of semiconductor devices or of electronic integrated circuits) 01/01/1988 31/12/2016 -84561000 01/01/1988 31/12/1997 LIBEN Machine-tools for working any material by removal of material, operated by laser or other light or photon beam processes (excl. soldering and welding machines, incl. those which can be used for cutting, and material testing machines) 01/01/1988 31/12/1997 -84561000 01/01/2007 31/12/2016 LIBEN Machine tools for working any material by removal of material, operated by laser or other light or photon beam processes (excl. soldering and welding machines, incl. those which can be used for cutting, material testing machines and machines for the manufacture of semiconductor devices or of electronic integrated circuits) 01/01/2007 31/12/2016 -84561010 01/01/1998 31/12/2006 LIBEN Machine tools for working any material by removal of material, operated by laser or other light or photon beam processes, of a kind used in the manufacture of semiconductor wafers or devices 01/01/1998 31/12/2006 -84561090 01/01/1998 31/12/2006 LIBEN Machine tools for working any material by removal of material, operated by laser or other light or photon beam processes (excl. those of a kind used in the manufacture of semiconductor wafers or devices, soldering and welding machines, incl. those which can be used for cutting, and material testing machines) 01/01/1998 31/12/2006 -845611 01/01/2017 31/12/2500 LIBEN Machine tools for working any material by removal of material, operated by laser (excl. soldering and welding machines, also those which can be used for cutting, material testing machines and machines for the manufacture of semiconductor devices or of electronic integrated circuits) 01/01/2017 31/12/2500 -84561110 01/01/2017 31/12/2500 LIBEN Machine tools for working any material by removal of material, operated by laser, of a kind used solely or principally for the manufacture of printed circuits, printed circuit assemblies, parts of heading 8517, or parts of automatic data processing machines 01/01/2017 31/12/2500 -84561190 01/01/2017 31/12/2500 LIBEN Machine tools for working any material by removal of material, operated by laser (excl. soldering and welding machines, also those which can be used for cutting, material testing machines and machines for the manufacture of semiconductor devices, electronic integrated circuits, printed circuits, and parts of heading 8517 or of computers) 01/01/2017 31/12/2500 -845612 01/01/2017 31/12/2500 LIBEN Machine tools for working any material by removal of material, operated by light or photon beam processes other than laser (excl. soldering and welding machines, also those which can be used for cutting, material testing machines and machines for the manufacture of semiconductor devices or of electronic integrated circuits) 01/01/2017 31/12/2500 -84561210 01/01/2017 31/12/2500 LIBEN Machine tools for working any material by removal of material, operated by light or photon beam processes other than laser, of a kind used solely or principally for the manufacture of printed circuits, printed circuit assemblies, parts of heading 8517, or parts of automatic data processing machines 01/01/2017 31/12/2500 -84561290 01/01/2017 31/12/2500 LIBEN Machine tools for working any material by removal of material, operated by light or photon beam processes other than laser (excl. soldering and welding machines, also those which can be used for cutting, material testing machines and machines for the manufacture of semiconductor devices, electronic integrated circuits, printed circuits, and parts of heading 8517 or of computers) 01/01/2017 31/12/2500 -845620 01/01/1988 31/12/2500 LIBEN Machine tools for working any material by removal of material, operated by ultrasonic processes (excl. cleaning apparatus operated by ultrasonic processes and material testing machines) 01/01/1988 31/12/2500 -84562000 01/01/1988 31/12/2006 LIBEN Machine tools for working any material by removal of material, operated by ultrasonic processes (excl. cleaning apparatus operated by ultrasonic processes and material testing machines) 01/01/1988 31/12/2006 -84562000 01/01/2007 31/12/2500 LIBEN Machine tools for working any material by removal of material, operated by ultrasonic processes (excl. cleaning apparatus operated by ultrasonic processes and material testing machines) 01/01/2007 31/12/2500 -845630 01/01/1988 31/12/2500 LIBEN Machine tools for working any material by removal of material, operated by electro-discharge processes 01/01/1988 31/12/2500 -84563000 01/01/1988 31/12/1993 LIBEN Machine-tools operated by electro-discharge processes 01/01/1988 31/12/1993 -84563011 01/01/1994 31/12/2500 LIBEN Machine tools for working any material by removal of material, operated by electro-discharge processes, wire-cut, numerically controlled 01/01/1994 31/12/2500 -84563019 01/01/1994 31/12/2500 LIBEN Machine tools for working any material by removal of material, operated by electro-discharge processes, numerically controlled (excl. such machines, wire-cut) 01/01/1994 31/12/2500 -84563090 01/01/1994 31/12/2500 LIBEN Machine tools for working any material by removal of material, operated by electro-discharge processes, not numerically controlled 01/01/1994 31/12/2500 -845640 01/01/2017 31/12/2500 LIBEN Machine tools for working any material by removal of material, operated by plasma arc processes 01/01/2017 31/12/2500 -84564000 01/01/2017 31/12/2500 LIBEN Machine tools for working any material by removal of material, operated by plasma arc processes 01/01/2017 31/12/2500 -845650 01/01/2017 31/12/2500 LIBEN Water-jet cutting machines 01/01/2017 31/12/2500 -84565000 01/01/2017 31/12/2500 LIBEN Water-jet cutting machines 01/01/2017 31/12/2500 -845690 01/01/1988 31/12/1995 LIBEN Machine-tools for working any material by removal of material, operated by electro-chemical, electron beam, ionic-beam or plasma arc process (excl. soldering and welding machines, incl. those which can be used for cutting, and material testing machines) 01/01/1988 31/12/1995 -845690 01/01/2007 31/12/2500 LIBEN Machine tools for working any material by removal of material, operated by electro-chemical, electron beam or ionic-beam processes (excl. soldering and welding machines, material testing machines and machines for the manufacture of semiconductor devices or of electronic integrated circuits) 01/01/2007 31/12/2500 -84569000 01/01/1988 31/12/1994 LIBEN Machine-tools for working any material by removal of material, operated by electro-chemical, electron beam, ionic-beam or plasma arc processes (excl. soldering and welding machines, incl. those which can be used for cutting, and material testing machines) 01/01/1988 31/12/1994 -84569000 01/01/2007 31/12/2011 LIBEN Machine tools for working any material by removal of material, operated by electro-chemical processes or electron beam, ion beam or plasma arc processes (excl. for soldering and welding machines, materials testing machines and machines for the manufacture of semiconductor devices or of electronic integrated circuits) 01/01/2007 31/12/2011 -84569000 01/01/2017 31/12/2500 LIBEN Machine tools for working any material by removal of material, operated by electro-chemical, electron beam or ionic-beam processes (excl. soldering and welding machines, material testing machines and machines for the manufacture of semiconductor devices or of electronic integrated circuits) 01/01/2017 31/12/2500 -84569010 01/01/1995 31/12/1995 LIBEN Focused ion beam milling machines for producing or repairing masks and reticles for patterns on semiconductor devices 01/01/1995 31/12/1995 -84569020 01/01/2012 31/12/2016 LIBEN Water-jet cutting machines 01/01/2012 31/12/2016 -84569030 01/01/1995 31/12/1995 LIBEN Machine tools for dry etching, stripping or cleaning semiconductor wafers 01/01/1995 31/12/1995 -84569080 01/01/2012 31/12/2016 LIBEN Machine tools for working any material by removal of material, operated by electro-chemical processes or electron beam, ion beam or plasma arc processes (excl. for soldering and welding machines, materials testing machines and machines for the manufacture of semiconductor devices or of electronic integrated circuits) 01/01/2012 31/12/2016 -84569090 01/01/1995 31/12/1995 LIBEN Machine tools for working any material by removal of any material by electro-chemical processes or electron beam, ion beam or plasma arc processes (excl. for soldering and welding machines, materials testing machines, focused ion beam milling machines for producing or repairing masks and reticles for patterns on semiconductor devices, and machine tools for dry etching, stripping or cleaning semiconductor wafers) 01/01/1995 31/12/1995 -845691 01/01/1996 31/12/2006 LIBEN Apparatus for dry-etching patterns on semiconductor materials 01/01/1996 31/12/2006 -84569100 01/01/1996 31/12/2006 LIBEN Apparatus for dry-etching patterns on semiconductor materials 01/01/1996 31/12/2006 -845699 01/01/1996 31/12/2006 LIBEN Machine tools for working any material by removal of material, operated by electro-chemical processes or electron beam, ion beam or plasma arc processes (excl. for soldering and welding machines, materials testing machines and apparatus for-dry etching semiconductor materials) 01/01/1996 31/12/2006 -84569910 01/01/1996 31/12/2006 LIBEN Focused ion beam milling machines for producing or repairing masks and reticles for patterns on semiconductor devices 01/01/1996 31/12/2006 -84569930 01/01/1996 31/12/2006 LIBEN Machine tools for stripping or cleaning semiconductor wafers by electro-chemical processes or electron beam, ion beam or plasma arc processes 01/01/1996 31/12/2006 -84569950 01/01/1998 31/12/2006 LIBEN Machine tools for dry-etching patterns on LCD substrates by electro-chemical processes or electron beam, ion beam or plasma arc processes 01/01/1998 31/12/2006 -84569980 01/01/1998 31/12/2006 LIBEN Machine tools for working any material by removal of material, operated by electro-chemical processes or electron beam, ion beam or plasma arc processes (excl. for soldering and welding machines, materials testing machines, focused ion beam milling machines for producing or repairing masks and reticles for patterns on semiconductor devices, machine tools for dry-etching patterns on semiconductor materials and on LCD substrates, and apparatus for stripping or cleaning semiconductor wafers) 01/01/1998 31/12/2006 -84569990 01/01/1996 31/12/1997 LIBEN Machine-tools for working any material by removal of any material by electro-chemical processes or electron beam, ion beam or plasma arc processes (excl. for soldering and welding machines, materials testing machines, focused ion beam milling machines for producing or repairing masks and reticles for patterns on semiconductor devices, machine-tools for dry- etching patterns on semi-conductor materials and apparatus for stripping or cleaning semiconductor wafers) 01/01/1996 31/12/1997 -8457 01/01/1988 31/12/2500 LIBEN Machining centres, unit construction machines "single station" and multi-station transfer machines for working metal 01/01/1988 31/12/2500 -845710 01/01/1988 31/12/2500 LIBEN Machining centres for working metal 01/01/1988 31/12/2500 -84571000 01/01/1988 31/12/1993 LIBEN Machining centres for working metal 01/01/1988 31/12/1993 -84571010 01/01/1994 31/12/2500 LIBEN Horizontal machining centres for working metal 01/01/1994 31/12/2500 -84571090 01/01/1994 31/12/2500 LIBEN Machining centres for working metal (excl. horizontal machining centres) 01/01/1994 31/12/2500 -845720 01/01/1988 31/12/2500 LIBEN Unit construction machines "single station", for working metal 01/01/1988 31/12/2500 -84572000 01/01/1988 31/12/1994 LIBEN Unit construction machines -single station- for working metal 01/01/1988 31/12/1994 -84572000 01/01/1998 31/12/2500 LIBEN Unit construction machines "single station", for working metal 01/01/1998 31/12/2500 -84572010 01/01/1995 31/12/1997 LIBEN Unit construction machines (single station) for working metal, numerically controlled 01/01/1995 31/12/1997 -84572090 01/01/1995 31/12/1997 LIBEN Unit construction machines (single station) for working metal, not numerically controlled 01/01/1995 31/12/1997 -845730 01/01/1988 31/12/2500 LIBEN Multi-station transfer machines for working metal 01/01/1988 31/12/2500 -84573000 01/01/1988 31/12/1994 LIBEN Multi-station transfer machines for working metal 01/01/1988 31/12/1994 -84573010 01/01/1995 31/12/2500 LIBEN Multi-station transfer machines for working metal, numerically controlled 01/01/1995 31/12/2500 -84573090 01/01/1995 31/12/2500 LIBEN Multi-station transfer machines for working metal, not numerically controlled 01/01/1995 31/12/2500 -8458 01/01/1988 31/12/2500 LIBEN Lathes, incl. turning centres, for removing metal 01/01/1988 31/12/2500 -845811 01/01/1988 31/12/2500 LIBEN Horizontal lathes, incl. turning centres, for removing metal, numerically controlled 01/01/1988 31/12/2500 -84581110 01/01/1988 31/12/1994 LIBEN Centre lathes, multi-tool lathes and copying lathes, horizontal, for removing metal, numerically controlled 01/01/1988 31/12/1994 -84581120 01/01/1995 31/12/2500 LIBEN Horizontal turning centres for removing metal, numerically controlled 01/01/1995 31/12/2500 -84581141 01/01/1995 31/12/2500 LIBEN Horizontal single spindle automatic lathes for removing metal, numerically controlled 01/01/1995 31/12/2500 -84581149 01/01/1995 31/12/2500 LIBEN Horizontal multi-spindle automatic lathes for removing metal, numerically controlled 01/01/1995 31/12/2500 -84581180 01/01/1995 31/12/2500 LIBEN Horizontal lathes for removing metal, numerically controlled (excl. turning centres and automatic lathes) 01/01/1995 31/12/2500 -84581191 01/01/1988 31/12/1994 LIBEN Automatic lathes and capstan and turret lathes, horizontal, for removing metal, numerically controlled 01/01/1988 31/12/1994 -84581199 01/01/1988 31/12/1994 LIBEN Horizontal lathes for removing metal, numerically controlled (excl. centre lathes, multi-tool lathes, copying lathes, automatic lathes and capstan and turret lathes) 01/01/1988 31/12/1994 -845819 01/01/1988 31/12/2500 LIBEN Horizontal lathes, incl. turning centres, for removing metal, not numerically controlled 01/01/1988 31/12/2500 -84581900 01/01/2009 31/12/2500 LIBEN Horizontal lathes, incl. turning centres, for removing metal, not numerically controlled 01/01/2009 31/12/2500 -84581910 01/01/1988 31/12/1994 LIBEN Parallel lathes, multi-tool lathes and copying lathes, horizontal, for removing metal, not numerically controlled 01/01/1988 31/12/1994 -84581920 01/01/1995 31/12/2008 LIBEN Horizontal centre lathes "engine or tool-room", for removing metal, not numerically controlled 01/01/1995 31/12/2008 -84581940 01/01/1995 31/12/2008 LIBEN Horizontal automatic lathes for removing metal, not numerically controlled 01/01/1995 31/12/2008 -84581980 01/01/1995 31/12/2008 LIBEN Horizontal lathes for removing metal, not numerically controlled (excl. centre lathes "engine or tool-room") 01/01/1995 31/12/2008 -84581991 01/01/1988 31/12/1994 LIBEN Automatic lathes and capstan and turret lathes, horizontal, for removing metal, not numerically controlled 01/01/1988 31/12/1994 -84581999 01/01/1988 31/12/1994 LIBEN Horizontal lathes for removing metal, not numerically controlled (excl. centre lathes, multi-tool lathes, copying lathes, automatic lathes and capstan and turret lathes) 01/01/1988 31/12/1994 -845891 01/01/1988 31/12/2500 LIBEN Lathes, incl. turning centres, for removing metal, numerically controlled (excl. horizontal lathes) 01/01/1988 31/12/2500 -84589110 01/01/1988 31/12/1994 LIBEN Vertical lathes for removing metal, numerically controlled 01/01/1988 31/12/1994 -84589120 01/01/1995 31/12/2500 LIBEN Turning centres for removing metal, numerically controlled (excl. horizontal turning centres) 01/01/1995 31/12/2500 -84589180 01/01/1995 31/12/2500 LIBEN Lathes for removing metal, numerically controlled (excl. horizontal lathes and turning centres) 01/01/1995 31/12/2500 -84589190 01/01/1988 31/12/1994 LIBEN Lathes for removing metal, numerically controlled (excl. horizontal and vertical lathes) 01/01/1988 31/12/1994 -845899 01/01/1988 31/12/2500 LIBEN Lathes, incl. turning centres, for removing metal, not numerically controlled (excl. horizontal lathes) 01/01/1988 31/12/2500 -84589900 01/01/1995 31/12/2500 LIBEN Lathes, incl. turning centres, for removing metal, not numerically controlled (excl. horizontal lathes) 01/01/1995 31/12/2500 -84589910 01/01/1988 31/12/1994 LIBEN Vertical lathes for removing metal, not numerically controlled 01/01/1988 31/12/1994 -84589990 01/01/1988 31/12/1994 LIBEN Lathes for removing metal, not numerically controlled (excl. horizontal and vertical lathes) 01/01/1988 31/12/1994 -8458I9 01/01/1997 31/12/1999 LIBEN Components of complete industrial plants of heading 8458; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1997 31/12/1999 -8458I9 01/01/2003 31/12/2005 LIBEN Components of complete industrial plants of heading 8458; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/2003 31/12/2005 -8458I900 01/01/1997 31/12/1999 LIBEN Components of complete industrial plants of heading 8458; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1997 31/12/1999 -8458I900 01/01/2003 31/12/2005 LIBEN Components of complete industrial plants of heading 8458; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/2003 31/12/2005 -8459 01/01/1988 31/12/2500 LIBEN Machine tools, incl. way-type unit head machines, for drilling, boring, milling, threading or tapping (excl. lathes and turning centres of heading 8458, gear cutting machines of heading 8461 and hand-operated machines) 01/01/1988 31/12/2500 -845910 01/01/1988 31/12/2500 LIBEN Way-type unit head machines for drilling, boring, milling, threading or tapping metal 01/01/1988 31/12/2500 -84591000 01/01/1988 31/12/2500 LIBEN Way-type unit head machines for drilling, boring, milling, threading or tapping metal 01/01/1988 31/12/2500 -845921 01/01/1988 31/12/2500 LIBEN Drilling machines for working metal, numerically controlled (excl. way-type unit head machines) 01/01/1988 31/12/2500 -84592100 01/01/1995 31/12/2500 LIBEN Drilling machines for working metal, numerically controlled (excl. way-type unit head machines) 01/01/1995 31/12/2500 -84592110 01/01/1988 31/12/1994 LIBEN Drilling machines for metals, radial, numerically controlled (excl. way-type unit head machines) 01/01/1988 31/12/1994 -84592191 01/01/1988 31/12/1994 LIBEN Machines for metals, multi-spindle, numerically controlled (excl. way-type unit head machines and radial drilling machines) 01/01/1988 31/12/1994 -84592199 01/01/1988 31/12/1994 LIBEN Machines for metals, numerically controlled (excl. way-type unit head machines and radial drilling machines) 01/01/1988 31/12/1994 -845929 01/01/1988 31/12/2500 LIBEN Drilling machines for working metal, not numerically controlled (excl. way-type unit head machines and hand-operated machines) 01/01/1988 31/12/2500 -84592900 01/01/1995 31/12/2500 LIBEN Drilling machines for working metal, not numerically controlled (excl. way-type unit head machines and hand-operated machines) 01/01/1995 31/12/2500 -84592910 01/01/1988 31/12/1994 LIBEN Machines for working metals, radial, not numerically controlled (excl. way-type unit head machines) 01/01/1988 31/12/1994 -84592991 01/01/1988 31/12/1994 LIBEN Machines for working metals, multi-spindle, not numerically controlled (excl. way-type unit head machines and radial drilling machines) 01/01/1988 31/12/1994 -84592999 01/01/1988 31/12/1994 LIBEN Machines for working metals, not multi-spindle or numerically controlled (excl. way-type unit head machines, radial drilling machines and machines for working in the hand) 01/01/1988 31/12/1994 -845931 01/01/1988 31/12/2500 LIBEN Boring-milling machines for metals, numerically controlled (excl. way-type unit head machines) 01/01/1988 31/12/2500 -84593100 01/01/1988 31/12/2500 LIBEN Boring-milling machines for metals, numerically controlled (excl. way-type unit head machines) 01/01/1988 31/12/2500 -845939 01/01/1988 31/12/2500 LIBEN Boring-milling machines for metals, not numerically controlled (excl. way-type unit head machines) 01/01/1988 31/12/2500 -84593900 01/01/1988 31/12/2500 LIBEN Boring-milling machines for metals, not numerically controlled (excl. way-type unit head machines) 01/01/1988 31/12/2500 -845940 01/01/1988 31/12/2016 LIBEN Boring machines for metals (excl. way-type unit head machines and boring-milling machines) 01/01/1988 31/12/2016 -84594010 01/01/1988 31/12/2016 LIBEN Boring machines for metals, numerically controlled (excl. way-type unit head machines and boring-milling machines) 01/01/1988 31/12/2016 -84594090 01/01/1988 31/12/2016 LIBEN Boring machines for metals, not numerically controlled (excl. way-type unit head machines and boring-milling machines) 01/01/1988 31/12/2016 -845941 01/01/2017 31/12/2500 LIBEN Boring machines for metals, numerically controlled (excl. way-type unit head machines and boring-milling machines) 01/01/2017 31/12/2500 -84594100 01/01/2017 31/12/2500 LIBEN Boring machines for metals, numerically controlled (excl. way-type unit head machines and boring-milling machines) 01/01/2017 31/12/2500 -845949 01/01/2017 31/12/2500 LIBEN Boring machines for metals, not numerically controlled (excl. way-type unit head machines and boring-milling machines) 01/01/2017 31/12/2500 -84594900 01/01/2017 31/12/2500 LIBEN Boring machines for metals, not numerically controlled (excl. way-type unit head machines and boring-milling machines) 01/01/2017 31/12/2500 -845951 01/01/1988 31/12/2500 LIBEN Milling machines for metals, knee-type, numerically controlled 01/01/1988 31/12/2500 -84595100 01/01/1988 31/12/2500 LIBEN Milling machines for metals, knee-type, numerically controlled 01/01/1988 31/12/2500 -845959 01/01/1988 31/12/2500 LIBEN Milling machines for metals, knee-type, not numerically controlled 01/01/1988 31/12/2500 -84595900 01/01/1988 31/12/2500 LIBEN Milling machines for metals, knee-type, not numerically controlled 01/01/1988 31/12/2500 -845961 01/01/1988 31/12/2500 LIBEN Milling machines for metals, numerically controlled (excl. way-type unit head machines, boring-milling machines, knee-type milling machines and gear cutting machines) 01/01/1988 31/12/2500 -84596110 01/01/1988 31/12/2500 LIBEN Tool milling machines for metals, numerically controlled 01/01/1988 31/12/2500 -84596190 01/01/1998 31/12/2500 LIBEN Milling machines for metals, numerically controlled (excl. way-type unit head machines, boring-milling machines, knee-type milling machines, tool milling machines and gear cutting machines) 01/01/1998 31/12/2500 -84596191 01/01/1988 31/12/1997 LIBEN Plano-milling machines for metals, numerically controlled 01/01/1988 31/12/1997 -84596199 01/01/1988 31/12/1997 LIBEN Milling machines for metals, numerically controlled (excl. way-type unit head machines, boring-milling machines, knee-type milling machines, tool milling machines, plano-milling machines and gear cutting machines) 01/01/1988 31/12/1997 -845969 01/01/1988 31/12/2500 LIBEN Milling machines for metals, not numerically controlled (excl. way-type unit head machines, boring-milling machines, knee-type milling machines and gear cutting machines) 01/01/1988 31/12/2500 -84596910 01/01/1988 31/12/2500 LIBEN Tool milling machines for metals, not numerically controlled 01/01/1988 31/12/2500 -84596990 01/01/1998 31/12/2500 LIBEN Milling machines for metals, not numerically controlled (excl. way-type unit head machines, boring-milling machines, knee-type milling machines, tool milling machines and gear cutting machines) 01/01/1998 31/12/2500 -84596991 01/01/1988 31/12/1997 LIBEN Plano-milling machines for metals, not numerically controlled 01/01/1988 31/12/1997 -84596999 01/01/1988 31/12/1997 LIBEN Milling machines for metals, not numerically controlled (excl. way-type unit head machines, boring-milling machines, knee-type milling machines, tool milling machines, plano-milling machines and gear cutting machines) 01/01/1988 31/12/1997 -845970 01/01/1988 31/12/2500 LIBEN Threading or tapping machines for metals (excl. way-type unit head machines) 01/01/1988 31/12/2500 -84597000 01/01/1988 31/12/2500 LIBEN Threading or tapping machines for metals (excl. way-type unit head machines) 01/01/1988 31/12/2500 -8460 01/01/1988 31/12/2500 LIBEN Machine tools for deburring, sharpening, grinding, honing, lapping, polishing or otherwise finishing metal or cermets by means of grinding stones, abrasives or polishing products (excl. gear cutting, gear grinding or gear finishing machines of heading 8461 and machines for working in the hand) 01/01/1988 31/12/2500 -846011 01/01/1988 31/12/2016 LIBEN Flat-surface grinding machines, for working metal, in which the positioning in any one axis can be set up to an accuracy of at least 0,01 mm, numerically controlled 01/01/1988 31/12/2016 -84601100 01/01/1988 31/12/2016 LIBEN Flat-surface grinding machines, for working metal, in which the positioning in any one axis can be set up to an accuracy of at least 0,01 mm, numerically controlled 01/01/1988 31/12/2016 -846012 01/01/2017 31/12/2500 LIBEN Flat-surface grinding machines for finishing metal, numerically controlled 01/01/2017 31/12/2500 -84601200 01/01/2017 31/12/2500 LIBEN Flat-surface grinding machines for finishing metal, numerically controlled 01/01/2017 31/12/2500 -846019 01/01/1988 31/12/2500 LIBEN Flat-surface grinding machines for finishing metal, not numerically controlled 01/01/1988 31/12/2500 -84601900 01/01/1988 31/12/2016 LIBEN Flat-surface grinding machines, for working metal, in which the positioning in any one axis can be set up to an accuracy of at least 0,01 mm, not numerically controlled 01/01/1988 31/12/2016 -84601900 01/01/2017 31/12/2500 LIBEN Flat-surface grinding machines for finishing metal, not numerically controlled 01/01/2017 31/12/2500 -846021 01/01/1988 31/12/2016 LIBEN Grinding machines, for working metal, in which the positioning in any one axis can be set up to an accuracy of at least 0,01 mm, numerically controlled (excl. flat-surface grinding machines and gear cutting, gear grinding and gear finishing machines) 01/01/1988 31/12/2016 -84602110 01/01/1988 31/12/1994 LIBEN Grinding machines for cylindrical surfaces, for working metal, in which the positioning in any one axis can be set up to an accuracy of at least 0.01 mm, numerically controlled (excl. gear cutting, gear grinding and gear finishing machines) 01/01/1988 31/12/1994 -84602111 01/01/1995 31/12/2016 LIBEN Internal cylindrical grinding machines for finishing metals, metal carbides or cermets, in which the positioning in any one axis can be set up to an accuracy of >= 0,01 mm, numerically controlled (other than gear finishing machines) 01/01/1995 31/12/2016 -84602115 01/01/1995 31/12/2016 LIBEN Centreless grinding machines, for finishing metals, metal carbides or cermets, in which the positioning in any one axis can be set up to an accuracy of >= 0,01 mm, numerically controlled (other than gear finishing machines) 01/01/1995 31/12/2016 -84602119 01/01/1995 31/12/2016 LIBEN Grinding machines for cylindrical surfaces, for finishing metals, metal carbides or cermets, in which the positioning of any one axis can be set up to a accuracy of >= 0,01 mm, numerically controlled (other than gear finishing machines, internal cylindrical grinding machines and centreless grinding machines) 01/01/1995 31/12/2016 -84602190 01/01/1988 31/12/2016 LIBEN Grinding machines, for working metals, metal carbides or cermets, in which the positioning in any one axis can be set up to an accuracy of at least 0,01 mm, numerically controlled (excl. flat- or cylindrical-surface grinding machines and gear cutting, gear grinding and gear finishing machines) 01/01/1988 31/12/2016 -846022 01/01/2017 31/12/2500 LIBEN Centreless grinding machines for finishing metal, numerically controlled (other than gear finishing machines) 01/01/2017 31/12/2500 -84602200 01/01/2017 31/12/2500 LIBEN Centreless grinding machines for finishing metal, numerically controlled (other than gear finishing machines) 01/01/2017 31/12/2500 -846023 01/01/2017 31/12/2500 LIBEN Cylindrical grinding machines for finishing metal, numerically controlled (excl. gear finishing machines and centreless machines) 01/01/2017 31/12/2500 -84602300 01/01/2017 31/12/2500 LIBEN Cylindrical grinding machines for finishing metal, numerically controlled (excl. gear finishing machines and centreless machines) 01/01/2017 31/12/2500 -846024 01/01/2017 31/12/2500 LIBEN Grinding machines for finishing metal, numerically controlled (excl. flat-surface, cylindrical and gear grinding machines) 01/01/2017 31/12/2500 -84602400 01/01/2017 31/12/2500 LIBEN Grinding machines for finishing metal, numerically controlled (excl. flat-surface, cylindrical and gear grinding machines) 01/01/2017 31/12/2500 -846029 01/01/1988 31/12/2500 LIBEN Grinding machines for finishing metal, not numerically controlled (excl. flat-surface and gear grinding machines) 01/01/1988 31/12/2500 -84602910 01/01/1988 31/12/1994 LIBEN Grinding machines for cylindrical surfaces, for working metal, in which the positioning in any one axis can be set up to an accuracy of at least 0.01 mm, not numerically controlled (excl. gear cutting, gear grinding and gear finishing machines) 01/01/1988 31/12/1994 -84602910 01/01/2009 31/12/2500 LIBEN Grinding machines for cylindrical metal surfaces, not numerically controlled (excl. gear finishing machines) 01/01/2009 31/12/2500 -84602911 01/01/1995 31/12/2008 LIBEN Internal cylindrical grinding machines, for finishing metals, metal carbides or cermets, in which the positioning of any one axis can be set up to an accuracy of >= 0,01 mm, not numerically controlled (other than gear finishing machines) 01/01/1995 31/12/2008 -84602919 01/01/1995 31/12/2008 LIBEN Grinding machines for cylindrical surfaces, for finishing metals, metal carbides or cermets, in which the positioning of any one axis can be set up to an accuracy of >= 0,01 mm, not numerically controlled (other than gear finishing machines) 01/01/1995 31/12/2008 -84602990 01/01/1988 31/12/2500 LIBEN Grinding machines for finishing metal, not numerically controlled (excl. flat-surface, cylindrical and gear grinding machines) 01/01/1988 31/12/2500 -846031 01/01/1988 31/12/2500 LIBEN Sharpening "tool or cutter grinding" machines, numerically controlled 01/01/1988 31/12/2500 -84603100 01/01/1988 31/12/2500 LIBEN Sharpening "tool or cutter grinding" machines, numerically controlled 01/01/1988 31/12/2500 -846039 01/01/1988 31/12/2500 LIBEN Sharpening "tool or cutter grinding" machines, not numerically controlled 01/01/1988 31/12/2500 -84603900 01/01/1988 31/12/2500 LIBEN Sharpening "tool or cutter grinding" machines, not numerically controlled 01/01/1988 31/12/2500 -846040 01/01/1988 31/12/2500 LIBEN Honing or lapping machines, for working metals, metal carbides or cermets (excl. gear cutting, gear grinding or gear finishing machines) 01/01/1988 31/12/2500 -84604000 01/01/1988 31/12/1994 LIBEN Honing or lapping machines, for working metal (excl. gear cutting, gear grinding or gear finishing machines) 01/01/1988 31/12/1994 -84604010 01/01/1995 31/12/2500 LIBEN Honing or lapping machines, for finishing metals, metal carbides or cermets, numerically controlled (other than gear finishing machines) 01/01/1995 31/12/2500 -84604090 01/01/1995 31/12/2500 LIBEN Honing or lapping machines, for finishing metals, metal carbides or cermets, not numerically controlled (other than gear finishing machines) 01/01/1995 31/12/2500 -846090 01/01/1988 31/12/2500 LIBEN Machines for deburring, polishing or otherwise finishing metal or cermets (excl. grinding, sharpening, honing and lapping machines and machines for working in the hand) 01/01/1988 31/12/2500 -84609000 01/01/2017 31/12/2500 LIBEN Machines for deburring, polishing or otherwise finishing metal or cermets (excl. grinding, sharpening, honing and lapping machines and machines for working in the hand) 01/01/2017 31/12/2500 -84609010 01/01/1988 31/12/2016 LIBEN Machines for deburring or polishing metals, metal carbides or cermets, in which the positioning in any one axis can be set up to an accuracy of at least 0,01 mm (excl. gear cutting, gear grinding or gear finishing machines) 01/01/1988 31/12/2016 -84609090 01/01/1988 31/12/2016 LIBEN Machines for deburring, grinding, or polishing metals, metal carbides or cermets (excl. grinding and polishing machines in which the positioning in any one axis can be set up to an accuracy of at least 0,01 mm, gear cutting, gear grinding or gear finishing machines and machines for working in the hand) 01/01/1988 31/12/2016 -8461 01/01/1988 31/12/2500 LIBEN Machine tools for planing, shaping, slotting, broaching, gear cutting, gear grinding or gear finishing, sawing, cutting-off and other machine tools working by removing metal, sintered metal carbides or cermets, n.e.s. 01/01/1988 31/12/2500 -846110 01/01/1988 31/12/2001 LIBEN Planing machines, for working metals, metal carbides or cermets (excl. machines for working in the hand) 01/01/1988 31/12/2001 -84611000 01/01/1988 31/12/2001 LIBEN Planing machines, for working metals, metal carbides or cermets (excl. machines for working in the hand) 01/01/1988 31/12/2001 -846120 01/01/1988 31/12/2500 LIBEN Shaping or slotting machines, for working metals, metal carbides or cermets 01/01/1988 31/12/2500 -84612000 01/01/1988 31/12/2500 LIBEN Shaping or slotting machines, for working metals, metal carbides or cermets 01/01/1988 31/12/2500 -846130 01/01/1988 31/12/2500 LIBEN Broaching machines, for working metals, metal carbides or cermets 01/01/1988 31/12/2500 -84613000 01/01/1988 31/12/1994 LIBEN Broaching machines, for working metal 01/01/1988 31/12/1994 -84613010 01/01/1995 31/12/2500 LIBEN Broaching machines for working metal, metal carbides or cermets, numerically controlled 01/01/1995 31/12/2500 -84613090 01/01/1995 31/12/2500 LIBEN Broaching machines for working metal, metal carbides or cermets, not numerically controlled 01/01/1995 31/12/2500 -846140 01/01/1988 31/12/2500 LIBEN Gear cutting, gear grinding or gear finishing machines, for working metals, metal carbides or cermets (excl. planing, slotting and broaching machines) 01/01/1988 31/12/2500 -84614011 01/01/1988 31/12/2500 LIBEN Gear cutting machines, incl. abrasive gear cutting machines, for cutting cylindrical gears, numerically controlled, for working metals, metal carbides or cermets (excl. planing, slotting and broaching machines) 01/01/1988 31/12/2500 -84614019 01/01/1988 31/12/2500 LIBEN Gear cutting machines, incl. abrasive gear cutting machines, for cutting cylindrical gears, not numerically controlled, for working metals, metal carbides or cermets (excl. planing, slotting and broaching machines) 01/01/1988 31/12/2500 -84614031 01/01/1988 31/12/2500 LIBEN Gear cutting machines, incl. abrasive gear cutting machines, not for cylindrical gears, numerically controlled, for working metals, metal carbides or cermets (excl. planing, slotting and broaching machines) 01/01/1988 31/12/2500 -84614039 01/01/1988 31/12/2500 LIBEN Gear cutting machines, incl. abrasive gear cutting machines, not for cylindrical gears, not numerically controlled, for working metals, metal carbides or cermets (excl. planing, slotting and broaching machines) 01/01/1988 31/12/2500 -84614071 01/01/1988 31/12/2500 LIBEN Gear finishing machines, incl. abrasive gear cutting machines, in which the positioning in any one axis can be set up to an accuracy of at least 0,01 mm, numerically controlled, for working metals, metal carbides or cermets 01/01/1988 31/12/2500 -84614079 01/01/1988 31/12/2500 LIBEN Gear finishing machines, incl. abrasive gear cutting machines, in which the positioning in any one axis can be set up to an accuracy of at least 0,01 mm, not numerically controlled, for working metals, metal carbides or cermets 01/01/1988 31/12/2500 -84614090 01/01/1988 31/12/2500 LIBEN Gear finishing machines for working metals, metal carbides or cermets (excl. those in which the positioning in any one axis can be set up to an accuracy of at least 0,01 mm) 01/01/1988 31/12/2500 -846150 01/01/1988 31/12/2500 LIBEN Sawing or cutting-off machines, for working metals, metal carbides or cermets (excl. machines for working in the hand) 01/01/1988 31/12/2500 -84615011 01/01/1988 31/12/2500 LIBEN Circular saws for working metals, metal carbides or cermets (excl. machines for working in the hand) 01/01/1988 31/12/2500 -84615019 01/01/1988 31/12/2500 LIBEN Sawing machines for working metals, metal carbides or cermets (excl. machines for working in the hand and circular saws) 01/01/1988 31/12/2500 -84615090 01/01/1988 31/12/2500 LIBEN Cutting-off machines for working metals, metal carbides or cermets (excl. machines for working in the hand and sawing machines) 01/01/1988 31/12/2500 -846190 01/01/1988 31/12/2500 LIBEN Planing machines and other machine tools for working metals, metal carbides or cermets by removing material, n.e.s. 01/01/1988 31/12/2500 -84619000 01/01/1988 31/12/2001 LIBEN Machine-tools for working metals, metal carbides or cermets by removing material, n.e.s. 01/01/1988 31/12/2001 -84619000 01/01/2002 31/12/2500 LIBEN Planing machines and other machine tools for working metals, metal carbides or cermets by removing material, n.e.s. 01/01/2002 31/12/2500 -8462 01/01/1988 31/12/2500 LIBEN Machine tools, incl. presses, for working metal by forging, hammering or die-stamping; machine tools, incl. presses, for working metal by bending, folding, straightening, flattening, shearing, punching or notching; presses for working metal or metal carbides (excl. machines of chapters 8456 to 8461) 01/01/1988 31/12/2500 -846210 01/01/1988 31/12/2500 LIBEN Forging or die-stamping machines, incl. presses, and hammers 01/01/1988 31/12/2500 -84621010 01/01/1988 31/12/2500 LIBEN Forging or die-stamping machines, incl. presses, and hammers, numerically controlled 01/01/1988 31/12/2500 -84621090 01/01/1988 31/12/2500 LIBEN Forging or die-stamping machines, incl. presses, and hammers, not numerically controlled 01/01/1988 31/12/2500 -846221 01/01/1988 31/12/2500 LIBEN Bending, folding, straightening or flattening machines, incl. presses, numerically controlled, for working metal 01/01/1988 31/12/2500 -84622105 01/01/1998 31/12/2006 LIBEN Bending, folding, straightening or flattening machines, incl. presses, numerically controlled, of a kind used in the manufacture of semiconductor devices 01/01/1998 31/12/2006 -84622110 01/01/1988 31/12/2500 LIBEN Bending, folding, straightening or flattening machines, incl. presses, numerically controlled, for working flat metal products 01/01/1988 31/12/2500 -84622180 01/01/1998 31/12/2500 LIBEN Bending, folding, straightening or flattening machines, incl. presses, numerically controlled, for working metal (excl. machines for the manufacture of semiconductor devices or of electronic integrated circuits) 01/01/1998 31/12/2500 -84622190 01/01/1988 31/12/1997 LIBEN Bending, folding, straightening or flattening machines -including presses- numerically controlled, for working metal (excl. machines for working flat products) 01/01/1988 31/12/1997 -846229 01/01/1988 31/12/2500 LIBEN Bending, folding, straightening or flattening machines, incl. presses, not numerically controlled, for working metal 01/01/1988 31/12/2500 -84622905 01/01/1998 31/12/2006 LIBEN Bending, folding, straightening or flattening machines, incl. presses, of a kind used in the manufacture of semiconductor devices, not numerically controlled 01/01/1998 31/12/2006 -84622910 01/01/1988 31/12/2500 LIBEN Bending, folding, straightening or flattening machines, incl. presses, not numerically controlled, for working flat metal products 01/01/1988 31/12/2500 -84622991 01/01/1988 31/12/2500 LIBEN Bending, folding, straightening or flattening machines, incl. presses, hydraulic, not numerically controlled, for working metal (excl. machines for working flat products) 01/01/1988 31/12/2500 -84622998 01/01/1998 31/12/2500 LIBEN Bending, folding, straightening or flattening machines, incl. presses, not hydraulic, not numerically controlled, for working metal (excl. for working flat products and machines for the manufacture of semiconductor devices or of electronic integrated circuits) 01/01/1998 31/12/2500 -84622999 01/01/1988 31/12/1997 LIBEN Bending, folding, straightening or flattening machines -including presses- not hydraulic, not numerically controlled, for working metal (excl. machines for working flat products) 01/01/1988 31/12/1997 -846231 01/01/1988 31/12/2500 LIBEN Shearing machines, incl. presses, numerically controlled, for working metal (other than combined punching and shearing machines) 01/01/1988 31/12/2500 -84623100 01/01/1995 31/12/2500 LIBEN Shearing machines, incl. presses, numerically controlled, for working metal (other than combined punching and shearing machines) 01/01/1995 31/12/2500 -84623110 01/01/1988 31/12/1994 LIBEN Shearing machines -including presses- numerically controlled, for working flat metal products (excl. combined punching and shearing machines) 01/01/1988 31/12/1994 -84623190 01/01/1988 31/12/1994 LIBEN Shearing machines -including presses- numerically controlled, for working metal (excl. machines for working flat metal products and combined punching and shearing machines) 01/01/1988 31/12/1994 -846239 01/01/1988 31/12/2500 LIBEN Shearing machines, incl. presses, not numerically controlled, for working metal (excl. combined punching and shearing machines) 01/01/1988 31/12/2500 -84623910 01/01/1988 31/12/2500 LIBEN Shearing machines, incl. presses, not numerically controlled, for working flat metal products (excl. combined punching and shearing machines) 01/01/1988 31/12/2500 -84623991 01/01/1988 31/12/2500 LIBEN Shearing machines, incl. presses, hydraulic, not numerically controlled, for working metal (excl. machines for working flat metal products and combined punching and shearing machines) 01/01/1988 31/12/2500 -84623999 01/01/1988 31/12/2500 LIBEN Shearing machines, incl. presses, not hydraulic, not numerically controlled, for working metal (excl. machines for working flat metal products and combined punching and shearing machines) 01/01/1988 31/12/2500 -846241 01/01/1988 31/12/2500 LIBEN Punching or notching machines, incl. presses, and combined punching and shearing machines, numerically controlled, for working metal 01/01/1988 31/12/2500 -84624110 01/01/1988 31/12/2500 LIBEN Punching or notching machines, incl. presses, and combined punching and shearing machines, numerically controlled, for working flat metal products 01/01/1988 31/12/2500 -84624190 01/01/1988 31/12/2500 LIBEN Punching or notching machines, incl. presses, and combined punching and shearing machines, numerically controlled, for working metal (excl. machines for working flat metal products) 01/01/1988 31/12/2500 -846249 01/01/1988 31/12/2500 LIBEN Punching or notching machines, incl. presses, and combined punching and shearing machines, not numerically controlled, for working metal 01/01/1988 31/12/2500 -84624910 01/01/1988 31/12/2500 LIBEN Punching or notching machines, incl. presses, and combined punching and shearing machines, not numerically controlled, for working flat metal products 01/01/1988 31/12/2500 -84624990 01/01/1988 31/12/2500 LIBEN Punching or notching machines, incl. presses, and combined punching and shearing machines, not numerically controlled, for working metal (excl. machines for working flat metal products) 01/01/1988 31/12/2500 -846291 01/01/1988 31/12/2500 LIBEN Hydraulic presses for working metal (excl. forging, bending, folding, straightening and flattening presses) 01/01/1988 31/12/2500 -84629110 01/01/1988 31/12/2008 LIBEN Hydraulic presses for moulding metallic powders by sintering or presses for compressing scrap metal into bales 01/01/1988 31/12/2008 -84629120 01/01/2009 31/12/2500 LIBEN Hydraulic presses, numerically controlled, for working metals (excl. forging, bending, folding, straightening and flattening presses) 01/01/2009 31/12/2500 -84629150 01/01/1988 31/12/2008 LIBEN Hydraulic presses, numerically controlled, for working metals (excl. forging, bending, folding, straightening and flattening presses, presses for moulding metallic powders by sintering and presses for compressing scrap metal into bales) 01/01/1988 31/12/2008 -84629180 01/01/2009 31/12/2500 LIBEN Hydraulic presses, not numerically controlled, for working metal (excl. forging, bending, folding, straightening and flattening presses) 01/01/2009 31/12/2500 -84629190 01/01/1998 31/12/2008 LIBEN Hydraulic presses, not numerically controlled, for working metal (excl. forging, bending, folding, straightening and flattening presses, and presses for moulding metallic powders by sintering or presses for compressing scrap metal into bales) 01/01/1998 31/12/2008 -84629191 01/01/1988 31/12/1997 LIBEN Hydraulic presses, not numerically controlled, for making metal rivets, bolts and screws 01/01/1988 31/12/1997 -84629199 01/01/1988 31/12/1997 LIBEN Hydraulic presses, not numerically controlled, for working metal 01/01/1988 31/12/1997 -846299 01/01/1988 31/12/2500 LIBEN Presses, not hydraulic, for working metal (excl. forging, bending, folding, straightening and flattening presses) 01/01/1988 31/12/2500 -84629910 01/01/1988 31/12/2008 LIBEN Presses, not hydraulic, for moulding metallic powders by sintering or for compressing scrap metal into bales 01/01/1988 31/12/2008 -84629920 01/01/2009 31/12/2500 LIBEN Presses, not hydraulic, numerically controlled, for working metals (excl. forging, bending, folding, straightening and flattening presses) 01/01/2009 31/12/2500 -84629950 01/01/1988 31/12/2008 LIBEN Presses, not hydraulic, numerically controlled, for working metals (excl. forging, bending, folding, straightening and flattening presses, presses for moulding metallic powders by sintering and presses for compressing scrap metal into bales) 01/01/1988 31/12/2008 -84629980 01/01/2009 31/12/2500 LIBEN Presses, not hydraulic, not numerically controlled, for working metals (excl. forging, bending, folding, straightening and flattening presses) 01/01/2009 31/12/2500 -84629990 01/01/1998 31/12/2008 LIBEN Presses, not hydraulic, not numerically controlled, for working metals (excl. forging, bending, folding, straightening and flattening presses, presses for moulding metallic powders by sintering or presses for compressing scrap metal into bales) 01/01/1998 31/12/2008 -84629991 01/01/1988 31/12/1997 LIBEN Presses, not hydraulic, not numerically controlled, for making metal rivets, bolts and screws 01/01/1988 31/12/1997 -84629999 01/01/1988 31/12/1997 LIBEN Presses, not hydraulic, not numerically controlled, for working metals (excl. forging, bending, folding, straightening and flattening presses, presses for moulding metallic powders by sintering, presses for compressing scrap metal into bales and presses for making metal rivets, bolts and screws) 01/01/1988 31/12/1997 -8463 01/01/1988 31/12/2500 LIBEN Machine tools for working metal, sintered metal carbides or cermets, without removing material (excl. forging, bending, folding, straightening and flattening presses, shearing machines, punching or notching machines, presses and machines for working in the hand) 01/01/1988 31/12/2500 -846310 01/01/1988 31/12/2500 LIBEN Draw-benches for metal bars, tubes, profiles, wire or the like 01/01/1988 31/12/2500 -84631010 01/01/1988 31/12/2500 LIBEN Draw-benches for metal wire 01/01/1988 31/12/2500 -84631090 01/01/1988 31/12/2500 LIBEN Draw-benches for metal bars, tubes, profiles, or the like (excl. draw-benches for wire) 01/01/1988 31/12/2500 -846320 01/01/1988 31/12/2500 LIBEN Thread rolling machines, for working metal 01/01/1988 31/12/2500 -84632000 01/01/1988 31/12/2500 LIBEN Thread rolling machines, for working metal 01/01/1988 31/12/2500 -846330 01/01/1988 31/12/2500 LIBEN Machine tools for working metal wire, without removing material (excl. wire bending machines of heading 8461 and machines for working in the hand) 01/01/1988 31/12/2500 -84633000 01/01/1988 31/12/2500 LIBEN Machine tools for working metal wire, without removing material (excl. wire bending machines of heading 8461 and machines for working in the hand) 01/01/1988 31/12/2500 -846390 01/01/1988 31/12/2500 LIBEN Machine tools for working metal, sintered metal carbides or cermets, without removing metal (excl. forging, bending, folding, straightening and flattening presses, shearing machines, punching or notching machines, presses, draw-benches, thread rolling machines, machines for working metal wire and machines for working in the hand) 01/01/1988 31/12/2500 -84639000 01/01/1998 31/12/2500 LIBEN Machine tools for working metal, sintered metal carbides or cermets, without removing metal (excl. forging, bending, folding, straightening and flattening presses, shearing machines, punching or notching machines, presses, draw-benches, thread rolling machines, machines for working metal wire and machines for working in the hand) 01/01/1998 31/12/2500 -84639010 01/01/1988 31/12/1997 LIBEN Machine-tools for working flat metal products, without removing metal (excl. bending, folding, straightening and flattening presses, shearing machines, punching or notching machines and presses) 01/01/1988 31/12/1997 -84639090 01/01/1988 31/12/1997 LIBEN Machine-tools for working metal, sintered metal carbides or cermets, without removing metal (excl. forging, bending, folding, straightening and flattening presses, shearing machines, punching or notching machines, presses, draw-benches, thread rolling machines, machines for working metal wire or flat products and machines for working in the hand) 01/01/1988 31/12/1997 -8464 01/01/1988 31/12/2500 LIBEN Machine tools for working stone, ceramics, concrete, asbestos-cement or like mineral materials or for cold-working glass (excl. machines for working in the hand) 01/01/1988 31/12/2500 -846410 01/01/1988 31/12/2500 LIBEN Sawing machines for working stone, ceramics, concrete, asbestos-cement or like mineral materials or for cold-working glass (excl. machines for working in the hand) 01/01/1988 31/12/2500 -84641000 01/01/1988 31/12/1994 LIBEN Sawing machines for working stone, ceramics, concrete, asbestos-cement or like mineral materials or for cold working glass (excl. machines for working in the hand) 01/01/1988 31/12/1994 -84641000 01/01/2007 31/12/2500 LIBEN Sawing machines for working stone, ceramics, concrete, asbestos-cement or like mineral materials or for cold-working glass (excl. machines for working in the hand) 01/01/2007 31/12/2500 -84641010 01/01/1995 31/12/2006 LIBEN Sawing machines for sawing monocrystal semiconductor boules into slices, or wafers into chips 01/01/1995 31/12/2006 -84641090 01/01/1995 31/12/2006 LIBEN Sawing machines for working stones, ceramic goods, concrete, asbestos cement or similar mineral substances or for cold-working glass (excl. hand-operated machines and machines for sawing mono-crystal semiconductor boules into slices, or wafers into chips) 01/01/1995 31/12/2006 -846420 01/01/1988 31/12/2500 LIBEN Grinding or polishing machines, for working stone, ceramics, concrete, asbestos-cement or like mineral materials or for cold-working glass (excl. machines for working in the hand) 01/01/1988 31/12/2500 -84642005 01/01/1995 31/12/2006 LIBEN Grinding and polishing machines for working semiconductor wafers 01/01/1995 31/12/2006 -84642011 01/01/1988 31/12/2500 LIBEN Grinding or polishing machines, for cold-working optical glass 01/01/1988 31/12/2500 -84642019 01/01/1988 31/12/2500 LIBEN Grinding or polishing machines, for cold-working glass (other than optical glass) 01/01/1988 31/12/2500 -84642020 01/01/1998 31/12/2009 LIBEN Grinding or polishing machines, for working ceramics (excl. hand-operated machines) 01/01/1998 31/12/2009 -84642080 01/01/1995 31/12/1997 LIBEN Sawing machines for working stones, ceramic goods, concrete, asbestos cement or similar mineral substances (excl. for cold-working glass, hand-operated machines and machines for working semiconductor wafers) 01/01/1995 31/12/1997 -84642080 01/01/2010 31/12/2500 LIBEN Grinding or polishing machines, for working stones, concrete, asbestos cement or similar mineral substances (excl. for cold-working glass, hand-operated machines and machines for working semiconductor wafers) 01/01/2010 31/12/2500 -84642090 01/01/1988 31/12/1994 LIBEN Grinding or polishing machines, for working stone, ceramics, concrete, asbestos-cement or like minerals (excl. machines for cold working glass and machines for working in the hand) 01/01/1988 31/12/1994 -84642095 01/01/1998 31/12/2009 LIBEN Grinding or polishing machines, for working stones, concrete, asbestos cement or similar mineral substances (excl. for working ceramics, for cold-working glass, hand-operated machines and machines for working semiconductor wafers) 01/01/1998 31/12/2009 -846490 01/01/1988 31/12/2500 LIBEN Machine tools for working stones, concrete, asbestos cement or similar mineral substances or for cold-working glass (excl. sawing machines, grinding machines, polishing machines, hand-operated machines and machines for scribing or scoring semiconductor wafers) 01/01/1988 31/12/2500 -84649000 01/01/1988 31/12/1994 LIBEN Machine-tools for working stone, ceramics, concrete, asbestos-cement or like mineral materials or for cold working glass (excl. sawing, grinding or polishing machines and machines for working in the hand) 01/01/1988 31/12/1994 -84649000 01/01/2010 31/12/2500 LIBEN Machine tools for working stones, concrete, asbestos cement or similar mineral substances or for cold-working glass (excl. sawing machines, grinding machines, polishing machines, hand-operated machines and machines for scribing or scoring semiconductor wafers) 01/01/2010 31/12/2500 -84649010 01/01/1995 31/12/2006 LIBEN Machine tools for scribing or scoring semiconductor wafers 01/01/1995 31/12/2006 -84649020 01/01/1998 31/12/2009 LIBEN Machine tools for working ceramics (excl. sawing machines, grinding machines, polishing machines and hand-operated machines) 01/01/1998 31/12/2009 -84649080 01/01/1998 31/12/2009 LIBEN Machine tools for working stones, concrete, asbestos cement or similar mineral substances or for cold-working glass (excl. sawing machines, grinding machines, polishing machines, hand-operated machines, machines for working ceramics and machines for scribing or scoring semiconductor wafers) 01/01/1998 31/12/2009 -84649090 01/01/1995 31/12/1997 LIBEN Machine tools for working stones, ceramic goods, concrete, asbestos cement or similar mineral substances or for cold-working glass (excl. sawing machines, grinding machines, polishing machines, hand-operated machines and machines for scribing or scoring semiconductor wafers) 01/01/1995 31/12/1997 -8464I1 01/01/1997 31/12/1999 LIBEN Components of complete industrial plants of heading 8464; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1997 31/12/1999 -8464I1 01/01/2002 31/12/2005 LIBEN Components of complete industrial plants of heading 8464; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/2002 31/12/2005 -8464I100 01/01/1997 31/12/1999 LIBEN Components of complete industrial plants of heading 8464; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1997 31/12/1999 -8464I100 01/01/2002 31/12/2005 LIBEN Components of complete industrial plants of heading 8464; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/2002 31/12/2005 -8465 01/01/1988 31/12/2500 LIBEN Machine tools, incl. machines for nailing, stapling, glueing or otherwise assembling, for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand) 01/01/1988 31/12/2500 -846510 01/01/1988 31/12/2500 LIBEN Machines for working wood, cork, bone, hard rubber, hard plastics or similar hard materials, which can carry out different types of machining operations without tool change between such operations 01/01/1988 31/12/2500 -84651010 01/01/1988 31/12/2500 LIBEN Machines for working wood, cork, bone, hard rubber, hard plastics or similar hard materials, which can carry out different types of machining operations without tool change between such operations, with manual transfer of workpiece between each operation 01/01/1988 31/12/2500 -84651090 01/01/1988 31/12/2500 LIBEN Machines for working wood, cork, bone, hard rubber, hard plastics or similar hard materials, which can carry out different types of machining operations without tool change between such operations, with automatic transfer of workpiece between each operation 01/01/1988 31/12/2500 -846520 01/01/2017 31/12/2500 LIBEN Machining centres for working wood, cork, bone, hard rubber, hard plastics or similar hard materials, which can carry out different types of machining operations by automatic tool change from a magazine or the like in conformity with a machining programme 01/01/2017 31/12/2500 -84652000 01/01/2017 31/12/2500 LIBEN Machining centres for working wood, cork, bone, hard rubber, hard plastics or similar hard materials, which can carry out different types of machining operations by automatic tool change from a magazine or the like in conformity with a machining programme 01/01/2017 31/12/2500 -846591 01/01/1988 31/12/2500 LIBEN Sawing machines for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand) 01/01/1988 31/12/2500 -84659100 01/01/1988 31/12/1993 LIBEN Sawing machines, for working wood, hard plastics or similar hard materials (excl. machines for working in the hand) 01/01/1988 31/12/1993 -84659110 01/01/1994 31/12/2500 LIBEN Bandsaws for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand) 01/01/1994 31/12/2500 -84659120 01/01/1994 31/12/2500 LIBEN Circular saws for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand) 01/01/1994 31/12/2500 -84659190 01/01/1994 31/12/2016 LIBEN Sawing machines for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. bandsaws, circular saws and machines for working in the hand) 01/01/1994 31/12/2016 -84659190 01/01/2017 31/12/2500 LIBEN Sawing machines for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. bandsaws, circular saws and machines for working in the hand) 01/01/2017 31/12/2500 -846592 01/01/1988 31/12/2500 LIBEN Planing, milling or moulding -by cutting- machines, for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand and machines of subheadings 8465.10 and 8465.20) 01/01/1988 31/12/2500 -84659200 01/01/1988 31/12/2016 LIBEN Planing, milling or moulding -by cutting- machines, for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand and machines of subheading 8465.10) 01/01/1988 31/12/2016 -84659200 01/01/2017 31/12/2500 LIBEN Planing, milling or moulding -by cutting- machines, for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand and machines of subheadings 8465.10 and 8465.20) 01/01/2017 31/12/2500 -846593 01/01/1988 31/12/2500 LIBEN Grinding, sanding or polishing machines for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand and machining centres) 01/01/1988 31/12/2500 -84659300 01/01/1988 31/12/2016 LIBEN Grinding, sanding or polishing machines for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand) 01/01/1988 31/12/2016 -84659300 01/01/2017 31/12/2500 LIBEN Grinding, sanding or polishing machines for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand and machining centres) 01/01/2017 31/12/2500 -846594 01/01/1988 31/12/2500 LIBEN Bending or assembling machines for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand and machining centres) 01/01/1988 31/12/2500 -84659400 01/01/1988 31/12/2016 LIBEN Bending or assembling machines for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand) 01/01/1988 31/12/2016 -84659400 01/01/2017 31/12/2500 LIBEN Bending or assembling machines for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand and machining centres) 01/01/2017 31/12/2500 -846595 01/01/1988 31/12/2500 LIBEN Drilling or mortising machines for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand and machines of subheadings 8465.10 and 8465.20) 01/01/1988 31/12/2500 -84659500 01/01/1988 31/12/2016 LIBEN Drilling or mortising machines for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand and machines of subheading 8465.10) 01/01/1988 31/12/2016 -84659500 01/01/2017 31/12/2500 LIBEN Drilling or mortising machines for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand and machines of subheadings 8465.10 and 8465.20) 01/01/2017 31/12/2500 -846596 01/01/1988 31/12/2500 LIBEN Splitting, slicing or paring machines, for working wood (excl. machining centres) 01/01/1988 31/12/2500 -84659600 01/01/1988 31/12/2016 LIBEN Splitting, slicing or paring machines, for working wood 01/01/1988 31/12/2016 -84659600 01/01/2017 31/12/2500 LIBEN Splitting, slicing or paring machines, for working wood (excl. machining centres) 01/01/2017 31/12/2500 -846599 01/01/1988 31/12/2500 LIBEN Machine tools for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand, machines of subheadings 8465.10 and 8465.20, sawing machines, planing, milling or moulding "by cutting" machines, grinding, sanding or polishing machines, bending or assembling machines, drilling or mortising machines and splitting, slicing or paring machines) 01/01/1988 31/12/2500 -84659900 01/01/2010 31/12/2016 LIBEN Machine tools for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand, machines of subheading 8465.10, sawing machines, planing, milling or moulding "by cutting" machines, grinding, sanding or polishing machines, bending or assembling machines, drilling or mortising machines and splitting, slicing or paring machines) 01/01/2010 31/12/2016 -84659900 01/01/2017 31/12/2500 LIBEN Machine tools for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand, machines of subheadings 8465.10 and 8465.20, sawing machines, planing, milling or moulding "by cutting" machines, grinding, sanding or polishing machines, bending or assembling machines, drilling or mortising machines and splitting, slicing or paring machines) 01/01/2017 31/12/2500 -84659910 01/01/1988 31/12/2009 LIBEN Lathes for working wood, cork, bone, hard rubber, hard plastics or similar hard materials 01/01/1988 31/12/2009 -84659990 01/01/1988 31/12/2009 LIBEN Machine tools for working wood, cork, bone, hard rubber, hard plastics or similar hard materials (excl. machines for working in the hand, machines of subheading 8465.10, sawing machines, planing, milling or moulding "by cutting" machines, grinding, sanding or polishing machines, bending or assembling machines, drilling or mortising machines, splitting, slicing or paring machines and lathes) 01/01/1988 31/12/2009 -8466 01/01/1988 31/12/2500 LIBEN Parts and accessories suitable for use solely or principally with the machines of headings 8456 to 8465, incl. work or tool holders, self-opening dieheads, dividing heads and other special attachments for the machines, n.e.s.; tool holders for any type of tool for working in the hand 01/01/1988 31/12/2500 -846610 01/01/1988 31/12/2500 LIBEN Tool holders, incl. tool holders for any type of tool for working in the hand, and self-opening dieheads, for machine tools 01/01/1988 31/12/2500 -84661010 01/01/1988 31/12/2006 LIBEN Arbors, collets and sleeves for use as tool holders in machine tools, incl. tool holders for any type of tool for working in the hand 01/01/1988 31/12/2006 -84661020 01/01/2007 31/12/2500 LIBEN Arbors, collets and sleeves for use as tool holders in machine tools, incl. tool holders for any type of tool for working in the hand 01/01/2007 31/12/2500 -84661031 01/01/1988 31/12/2016 LIBEN Tool holders for lathes (excl. arbors, collets and sleeves) 01/01/1988 31/12/2016 -84661031 01/01/2017 31/12/2500 LIBEN Tool holders for lathes (excl. arbors, collets and sleeves) 01/01/2017 31/12/2500 -84661038 01/01/2007 31/12/2016 LIBEN Tool holders for machine tools, incl. tool holders for any type of tool for working in the hand (excl. tool holders for lathes, arbors, collets and sleeves) 01/01/2007 31/12/2016 -84661038 01/01/2017 31/12/2500 LIBEN Tool holders for machine tools, incl. tool holders for any type of tool for working in the hand (excl. tool holders for lathes, arbors, collets and sleeves) 01/01/2017 31/12/2500 -84661039 01/01/1988 31/12/2006 LIBEN Tool holders for machine tools, incl. tool holders for any type of tool for working in the hand (excl. tool holders for lathes, arbors, collets and sleeves) 01/01/1988 31/12/2006 -84661080 01/01/2007 31/12/2500 LIBEN Self-opening dieheads for machine tools 01/01/2007 31/12/2500 -84661090 01/01/1988 31/12/2006 LIBEN Self-opening dieheads for machine tools 01/01/1988 31/12/2006 -846620 01/01/1988 31/12/2500 LIBEN Work holders for machine tools 01/01/1988 31/12/2500 -84662010 01/01/1988 31/12/2006 LIBEN Work holders for machine tools in the form of jigs and fixtures for specific applications, incl. sets of standard jig and fixture components 01/01/1988 31/12/2006 -84662020 01/01/2007 31/12/2016 LIBEN Work holders for machine tools in the form of jigs and fixtures for specific applications, incl. sets of standard jig and fixture components 01/01/2007 31/12/2016 -84662020 01/01/2017 31/12/2500 LIBEN Work holders for machine tools in the form of jigs and fixtures for specific applications, incl. sets of standard jig and fixture components 01/01/2017 31/12/2500 -84662091 01/01/1988 31/12/2016 LIBEN Work holders for lathes (excl. work holders in the form of jigs and fixtures for specific applications, incl. sets of standard jig and fixture components) 01/01/1988 31/12/2016 -84662091 01/01/2017 31/12/2500 LIBEN Work holders for lathes (excl. work holders in the form of jigs and fixtures for specific applications, incl. sets of standard jig and fixture components) 01/01/2017 31/12/2500 -84662098 01/01/2007 31/12/2016 LIBEN Work holders for machine tools (excl. work holders for lathes and in the form of jigs and fixtures for specific applications, incl. sets of standard jig and fixture components) 01/01/2007 31/12/2016 -84662098 01/01/2017 31/12/2500 LIBEN Work holders for machine tools (excl. work holders for lathes and in the form of jigs and fixtures for specific applications, incl. sets of standard jig and fixture components) 01/01/2017 31/12/2500 -84662099 01/01/1988 31/12/2006 LIBEN Work holders for machine tools (excl. work holders for lathes and in the form of jigs and fixtures for specific applications, incl. sets of standard jig and fixture components) 01/01/1988 31/12/2006 -846630 01/01/1988 31/12/2500 LIBEN Dividing heads and other special attachments for machine tools, n.e.s. 01/01/1988 31/12/2500 -84663000 01/01/1988 31/12/2006 LIBEN Dividing heads and other special attachments for machine tools, n.e.s. 01/01/1988 31/12/2006 -84663000 01/01/2007 31/12/2500 LIBEN Dividing heads and other special attachments for machine tools, n.e.s. 01/01/2007 31/12/2500 -846691 01/01/1988 31/12/2500 LIBEN Parts and accessories for machine tools for working stone, ceramics, concrete, asbestos-cement or like mineral materials or for cold-working glass, n.e.s. 01/01/1988 31/12/2500 -84669110 01/01/1988 31/12/1988 LIBEN Parts and accessories for machine-tools for working stone, ceramics, concrete, etc., incl. cold working of glass, of cast iron or cast steel, n.e.s. 01/01/1988 31/12/1988 -84669115 01/01/1998 31/12/2006 LIBEN Parts and accessories for machines for sawing monocrystal semiconductor boules into slices, or wafers into chips, for grinding or polishing machines for working semiconductor wafers and for machine tools for scribing or scoring semiconductor wafers, n.e.s. 01/01/1998 31/12/2006 -84669120 01/01/1989 31/12/2016 LIBEN Parts and accessories for machine tools for working stone, ceramics, concrete, asbestos-cement or like mineral materials or for cold-working glass, n.e.s., of cast iron or cast steel 01/01/1989 31/12/2016 -84669120 01/01/2017 31/12/2500 LIBEN Parts and accessories for machine tools for working stone, ceramics, concrete, asbestos-cement or like mineral materials or for cold-working glass, n.e.s., of cast iron or cast steel 01/01/2017 31/12/2500 -84669180 01/01/1989 31/12/1997 LIBEN Parts and accessories for machines of 8464.10-00 to 8466.90-00 (excl. 8466.10.10 to 8466.30.00) (excl. cast iron or cast steel) 01/01/1989 31/12/1997 -84669190 01/01/1988 31/12/1988 LIBEN Parts and accessories for machine-tools for working stone, ceramics, concrete, etc., incl. cold working of glass, n.e.s. 01/01/1988 31/12/1988 -84669195 01/01/1998 31/12/2006 LIBEN Parts and accessories for machine tools for working stone, ceramics, concrete, asbestos-cement or like mineral materials or for cold-working glass, n.e.s. (excl. for machines of subheading 8464.10.10, 8464.20.05 or 8464.90.10 and other than of cast iron or cast steel) 01/01/1998 31/12/2006 -84669195 01/01/2007 31/12/2016 LIBEN Parts and accessories for machine tools for working stone, ceramics, concrete, asbestos-cement or like mineral materials or for cold-working glass, n.e.s. (excl. of cast iron or cast steel) 01/01/2007 31/12/2016 -84669195 01/01/2017 31/12/2500 LIBEN Parts and accessories for machine tools for working stone, ceramics, concrete, asbestos-cement or like mineral materials or for cold-working glass, n.e.s. (excl. of cast iron or cast steel) 01/01/2017 31/12/2500 -846692 01/01/1988 31/12/2500 LIBEN Parts and accessories for machine tools for working wood, cork, bone, hard rubber, hard plastics or similar hard materials, n.e.s. 01/01/1988 31/12/2500 -84669210 01/01/1988 31/12/1988 LIBEN Parts and accessories for machines-tools for working wood, hard plastics or similar hard materials, of cast iron or cast steel, n.e.s. 01/01/1988 31/12/1988 -84669220 01/01/1989 31/12/2016 LIBEN Parts and accessories for machine tools for working wood, cork, bone, hard rubber, hard plastics or similar hard materials, of cast iron or cast steel, n.e.s. 01/01/1989 31/12/2016 -84669220 01/01/2017 31/12/2500 LIBEN Parts and accessories for machine tools for working wood, cork, bone, hard rubber, hard plastics or similar hard materials, of cast iron or cast steel, n.e.s. 01/01/2017 31/12/2500 -84669280 01/01/1989 31/12/2006 LIBEN Parts and accessories for machine tools for working wood, cork, bone, hard rubber, hard plastics or similar hard materials, n.e.s. (excl. of cast iron or cast steel) 01/01/1989 31/12/2006 -84669280 01/01/2007 31/12/2016 LIBEN Parts and accessories for machine tools for working wood, cork, bone, hard rubber, hard plastics or similar hard materials, n.e.s. (excl. of cast iron or cast steel) 01/01/2007 31/12/2016 -84669280 01/01/2017 31/12/2500 LIBEN Parts and accessories for machine tools for working wood, cork, bone, hard rubber, hard plastics or similar hard materials, n.e.s. (excl. of cast iron or cast steel) 01/01/2017 31/12/2500 -84669290 01/01/1988 31/12/1988 LIBEN Parts and accessories for machines-tools for working wood, hard plastics or similar hard materials, n.e.s. 01/01/1988 31/12/1988 -846693 01/01/1988 31/12/2500 LIBEN Parts and accessories for machine tools for working material by removing material of headings 8456 to 8461, n.e.s. 01/01/1988 31/12/2500 -84669300 01/01/2007 31/12/2011 LIBEN Parts and accessories for machine tools for working metal by removing material, n.e.s. 01/01/2007 31/12/2011 -84669310 01/01/1988 31/12/1988 LIBEN Parts and accessories for machine-tools for working metal by removing material, of cast iron or cast steel, n.e.s. 01/01/1988 31/12/1988 -84669315 01/01/1998 31/12/2006 LIBEN Parts and accessories for machine tools for working any material by removal of material operated by laser or other light or photon beam processes of a kind used in the manufacture of semiconductor wafers or devices, for apparatus for dry-etching patterns on semiconductor materials, for focused ion beam milling machines for producing or repairing masks and reticles for patterns on semiconductor devices and for machine tools for stripping or cleaning semiconductor wafers, n.e.s. 01/01/1998 31/12/2006 -84669317 01/01/1998 31/12/2006 LIBEN Parts and accessories for machine tools for dry-etching patterns on LCD substrates by electro-chemical processes or electron beam, ion beam or plasma arc processes, n.e.s. 01/01/1998 31/12/2006 -84669320 01/01/1989 31/12/1997 LIBEN Parts and accessories for machines of 8465.10.00 to 8461.90.00 (excl. 8466.10.10 to 8466.30.00), of cast iron or cast steel 01/01/1989 31/12/1997 -84669330 01/01/2012 31/12/2016 LIBEN Parts and accessories for water-jet cutting machines, n.e.s. 01/01/2012 31/12/2016 -84669340 01/01/2017 31/12/2500 LIBEN Parts and accessories of machines of subheadings 84561110, 84561210, 845620, 845630, 845710, 845891, 84592100, 845961 or 846150 of a kind used solely or principally for the manufacture of printed circuits, printed circuit assemblies, parts of heading 8517, or parts of automatic data processing machines 01/01/2017 31/12/2500 -84669350 01/01/2017 31/12/2500 LIBEN Parts and accessories for water-jet cutting machines, n.e.s. 01/01/2017 31/12/2500 -84669360 01/01/2017 31/12/2500 LIBEN Parts and accessories for machine tools for working material by removing material of headings 8456 to 8461, n.e.s. 01/01/2017 31/12/2500 -84669370 01/01/2012 31/12/2016 LIBEN Parts and accessories for machine tools for working metal by removing material, n.e.s. (excl. for water-jet cutting machines) 01/01/2012 31/12/2016 -84669380 01/01/1989 31/12/1997 LIBEN Parts and accessories for machines of 8456.10.00 to 8461.90.00 (excl. 8466.10.10 to 8466.30.00) (excl. of cast iron or cast steel) 01/01/1989 31/12/1997 -84669390 01/01/1988 31/12/1988 LIBEN Parts and accessories for machine-tools for working metal by removing material, n.e.s. 01/01/1988 31/12/1988 -84669395 01/01/1998 31/12/2006 LIBEN Parts and accessories for machine tools for working metal by removing material, n.e.s. (excl. machines and apparatus of subheading 8456.10.10, 8456.91.00, 8456.99.10, 8456.99.30 or 8456.99.50) 01/01/1998 31/12/2006 -846694 01/01/1988 31/12/2500 LIBEN Parts and accessories for machine tools for working metal without removing material, n.e.s. 01/01/1988 31/12/2500 -84669400 01/01/1988 31/12/1997 LIBEN Parts and accessories for machine-tools for working metal without removing material, n.e.s. 01/01/1988 31/12/1997 -84669400 01/01/2007 31/12/2016 LIBEN Parts and accessories for machine tools for working metal without removing material, n.e.s. 01/01/2007 31/12/2016 -84669400 01/01/2017 31/12/2500 LIBEN Parts and accessories for machine tools for working metal without removing material, n.e.s. 01/01/2017 31/12/2500 -84669410 01/01/1998 31/12/2006 LIBEN Parts and accessories for machine tools for working metal by bending, folding, straightening or flattening, incl. presses, of a kind used in the manufacture of semiconductor devices, n.e.s. 01/01/1998 31/12/2006 -84669490 01/01/1998 31/12/2006 LIBEN Parts and accessories for machine tools for working metal without removing material, n.e.s. (excl. by bending, folding, straightening or flattening, incl. presses, of a kind used in the manufacture of semiconductor devices) 01/01/1998 31/12/2006 -8467 01/01/1988 31/12/2500 LIBEN Tools for working in the hand, pneumatic, hydraulic or with self-contained electric or non-electric motor; parts thereof 01/01/1988 31/12/2500 -846711 01/01/1988 31/12/2500 LIBEN Tools for working in the hand, pneumatic, rotary type, incl. combined rotary-percussion 01/01/1988 31/12/2500 -84671110 01/01/1988 31/12/2500 LIBEN Tools for working in the hand, pneumatic, rotary type, for working metal 01/01/1988 31/12/2500 -84671190 01/01/1988 31/12/2500 LIBEN Tools for working in the hand, pneumatic, rotary type (other than for working metal) 01/01/1988 31/12/2500 -846719 01/01/1988 31/12/2500 LIBEN Pneumatic tools for working in the hand, non-rotary type 01/01/1988 31/12/2500 -84671900 01/01/1995 31/12/2500 LIBEN Pneumatic tools for working in the hand, non-rotary type 01/01/1995 31/12/2500 -84671910 01/01/1988 31/12/1994 LIBEN Concrete pneumatic vibrators, for working in the hand 01/01/1988 31/12/1994 -84671990 01/01/1988 31/12/1994 LIBEN Pneumatic tools, for working in the hand, other than rotary type (excl. concrete vibrators) 01/01/1988 31/12/1994 -846721 01/01/2002 31/12/2500 LIBEN Drills of all kinds for working in the hand, with self-contained electric motor 01/01/2002 31/12/2500 -84672110 01/01/2002 31/12/2500 LIBEN Drills of all kinds for working in the hand, with self-contained electric motor capable of operation without an external source of power 01/01/2002 31/12/2500 -84672191 01/01/2002 31/12/2500 LIBEN Electropneumatic drills of all kinds for working in the hand 01/01/2002 31/12/2500 -84672199 01/01/2002 31/12/2500 LIBEN Drills of all kinds for working in the hand, with self-contained electric motor operating with an external source of power (excl. electropneumatic drills) 01/01/2002 31/12/2500 -846722 01/01/2002 31/12/2500 LIBEN Saws for working in the hand, with self-contained electric motor 01/01/2002 31/12/2500 -84672210 01/01/2002 31/12/2500 LIBEN Chainsaws for working in the hand, with self-contained electric motor 01/01/2002 31/12/2500 -84672230 01/01/2002 31/12/2500 LIBEN Circular saws for working in the hand, with self-contained electric motor 01/01/2002 31/12/2500 -84672290 01/01/2002 31/12/2500 LIBEN Saws for working in the hand, with self-contained electric motor (excl. chainsaws and circular saws) 01/01/2002 31/12/2500 -846729 01/01/2002 31/12/2500 LIBEN Electromechanical tools for working in the hand, with self-contained electric motor (excl. saws and drills) 01/01/2002 31/12/2500 -84672910 01/01/2002 31/12/2011 LIBEN Electromechanical tools for working in the hand, with self-contained electric motor, for working textile materials 01/01/2002 31/12/2011 -84672920 01/01/2012 31/12/2500 LIBEN Electromechanical tools for working in the hand, with self-contained electric motor capable of operation without an external source of power (excl. saws and drills) 01/01/2012 31/12/2500 -84672930 01/01/2002 31/12/2011 LIBEN Electromechanical tools for working in the hand, with self-contained electric motor capable of operation without an external source of power (excl. those for working textile materials, saws and drills) 01/01/2002 31/12/2011 -84672951 01/01/2002 31/12/2500 LIBEN Angle grinders for working in the hand, with self-contained electric motor, operating with an external source of power 01/01/2002 31/12/2500 -84672953 01/01/2002 31/12/2500 LIBEN Belt sanders for working in the hand, with self-contained electric motor, operating with an external source of power 01/01/2002 31/12/2500 -84672959 01/01/2002 31/12/2500 LIBEN Grinders and sanders, for working in the hand, with self-contained electric motor, operating with an external source of power (excl. angle grinders and belt sanders) 01/01/2002 31/12/2500 -84672970 01/01/2002 31/12/2500 LIBEN Planers for working in the hand, with self-contained electric motor, operating with an external source of power 01/01/2002 31/12/2500 -84672980 01/01/2002 31/12/2500 LIBEN Hedge trimmers and lawn edge cutters, for working in the hand, with self-contained electric motor operating with an external source of power 01/01/2002 31/12/2500 -84672985 01/01/2012 31/12/2500 LIBEN Electromechanical tools for working in the hand, with self-contained electric motor operating with an external source of power (excl. saws, drills, grinders, sanders, planers, hedge trimmers and lawn edge cutters) 01/01/2012 31/12/2500 -84672990 01/01/2002 31/12/2011 LIBEN Electromechanical tools for working in the hand, with self-contained electric motor operating with an external source of power (excl. those for working textile materials, saws, drills, grinders, sanders, planers, hedge trimmers and lawn edge cutters) 01/01/2002 31/12/2011 -846781 01/01/1988 31/12/2500 LIBEN Chainsaws for working in the hand, with self-contained non-electric motor 01/01/1988 31/12/2500 -84678100 01/01/1988 31/12/2500 LIBEN Chainsaws for working in the hand, with self-contained non-electric motor 01/01/1988 31/12/2500 -846789 01/01/1988 31/12/2500 LIBEN Tools for working in the hand, hydraulic or with self-contained non-electric motor (excl. chainsaws and pneumatic tools) 01/01/1988 31/12/2500 -84678900 01/01/1988 31/12/1995 LIBEN Tools for working in the hand, with self-contained non-electric motor (excl. chain saws and pneumatic tools) 01/01/1988 31/12/1995 -84678900 01/01/1996 31/12/2500 LIBEN Tools for working in the hand, hydraulic or with self-contained non-electric motor (excl. chainsaws and pneumatic tools) 01/01/1996 31/12/2500 -846791 01/01/1988 31/12/2500 LIBEN Parts of chainsaws, for working in the hand, with self-contained electric or non-electric motor, n.e.s. 01/01/1988 31/12/2500 -84679100 01/01/1988 31/12/2001 LIBEN Parts of chain saws, for working in the hand, with self-contained non-electric motor, n.e.s. 01/01/1988 31/12/2001 -84679100 01/01/2002 31/12/2500 LIBEN Parts of chainsaws, for working in the hand, with self-contained electric or non-electric motor, n.e.s. 01/01/2002 31/12/2500 -846792 01/01/1988 31/12/2500 LIBEN Parts of pneumatic tools for working in the hand, n.e.s. 01/01/1988 31/12/2500 -84679200 01/01/1988 31/12/2500 LIBEN Parts of pneumatic tools for working in the hand, n.e.s. 01/01/1988 31/12/2500 -846799 01/01/1988 31/12/2500 LIBEN Parts of pneumatic tools for working in the hand, hydraulic or with self-contained electric or non-electric motor, n.e.s. 01/01/1988 31/12/2500 -84679900 01/01/1988 31/12/2001 LIBEN Parts of pneumatic tools for working in the hand, hydraulic or with self-contained non-electric motor, n.e.s. 01/01/1988 31/12/2001 -84679900 01/01/2002 31/12/2500 LIBEN Parts of pneumatic tools for working in the hand, hydraulic or with self-contained electric or non-electric motor, n.e.s. 01/01/2002 31/12/2500 -8467S7 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 8467 and SITC section 7 01/01/1998 31/12/2500 -8467S745 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 8467 and SITC group 745 01/01/1998 31/12/2500 -8468 01/01/1988 31/12/2500 LIBEN Machinery and apparatus for soldering, brazing or welding, whether or not capable of cutting (other than those of heading 8515); gas-operated surface tempering machines and appliances; parts thereof 01/01/1988 31/12/2500 -846810 01/01/1988 31/12/2500 LIBEN Hand-held blow pipes, gas-operated, for soldering, brazing or welding 01/01/1988 31/12/2500 -84681000 01/01/1988 31/12/2500 LIBEN Hand-held blow pipes, gas-operated, for soldering, brazing or welding 01/01/1988 31/12/2500 -846820 01/01/1988 31/12/2500 LIBEN Gas-operated machinery and apparatus for soldering, brazing, welding or surface tempering (excl. hand-held blow pipes) 01/01/1988 31/12/2500 -84682000 01/01/1988 31/12/2500 LIBEN Gas-operated machinery and apparatus for soldering, brazing, welding or surface tempering (excl. hand-held blow pipes) 01/01/1988 31/12/2500 -846880 01/01/1988 31/12/2500 LIBEN Machinery and apparatus for welding, not gas-operated (excl. electric machines and apparatus of heading 8515) 01/01/1988 31/12/2500 -84688000 01/01/1988 31/12/2500 LIBEN Machinery and apparatus for welding, not gas-operated (excl. electric machines and apparatus of heading 8515) 01/01/1988 31/12/2500 -846890 01/01/1988 31/12/2500 LIBEN Parts of machinery and apparatus for soldering, brazing, welding or surface tempering, non-electric, n.e.s. 01/01/1988 31/12/2500 -84689000 01/01/1988 31/12/2500 LIBEN Parts of machinery and apparatus for soldering, brazing, welding or surface tempering, non-electric, n.e.s. 01/01/1988 31/12/2500 -8469 01/01/1988 31/12/2016 LIBEN Typewriters and word-processing machines (excl. automatic data-processing machines and units thereof of heading 8443 and laser, thermal and electrosensitive printers) 01/01/1988 31/12/2016 -846900 01/01/2007 31/12/2016 LIBEN Typewriters and word-processing machines (excl. automatic data-processing machines and units thereof of heading 8443 and laser, thermal and electrosensitive printers) 01/01/2007 31/12/2016 -84690010 01/01/2007 31/12/2016 LIBEN Word-processing machines (excl. automatic data-processing machines and units thereof of heading 8443 and laser, thermal and electrosensitive printers) 01/01/2007 31/12/2016 -84690091 01/01/2007 31/12/2016 LIBEN Typewriters, electric (excl. units for automatic data-processing machines of heading 8443 and laser, thermal and electrosensitive printers) 01/01/2007 31/12/2016 -84690099 01/01/2007 31/12/2016 LIBEN Typewriters, non-electric 01/01/2007 31/12/2016 -846910 01/01/1988 31/12/1995 LIBEN Automatic typewriters and word-processing machines (excl. automatic data-processing machines and units thereof of heading 8471 and laser, thermal and electrosensitive printers) 01/01/1988 31/12/1995 -84691000 01/01/1988 31/12/1995 LIBEN Automatic typewriters and word-processing machines (excl. automatic data-processing machines and units thereof of heading 8471 and laser, thermal and electrosensitive printers) 01/01/1988 31/12/1995 -846911 01/01/1996 31/12/2006 LIBEN Word-processing machines (excl. automatic data-processing machines and units thereof of heading 8471 and laser, thermal and electrosensitive printers) 01/01/1996 31/12/2006 -84691100 01/01/1996 31/12/2006 LIBEN Word-processing machines (excl. automatic data-processing machines and units thereof of heading 8471 and laser, thermal and electrosensitive printers) 01/01/1996 31/12/2006 -846912 01/01/1996 31/12/2006 LIBEN Typewriters, automatic (excl. word-processing machines, automatic data-processing machines and units thereof of heading 8471 and laser, thermal and electrosensitive printers) 01/01/1996 31/12/2006 -84691200 01/01/1996 31/12/2006 LIBEN Typewriters, automatic (excl. word-processing machines, automatic data-processing machines and units thereof of heading 8471 and laser, thermal and electrosensitive printers) 01/01/1996 31/12/2006 -846920 01/01/1996 31/12/2006 LIBEN Typewriters, electric (excl. automatic typewriters, units for automatic data-processing machines of heading 8471 and laser, thermal and electrosensitive printers) 01/01/1996 31/12/2006 -84692000 01/01/1996 31/12/2006 LIBEN Typewriters, electric (excl. automatic typewriters, units for automatic data-processing machines of heading 8471 and laser, thermal and electrosensitive printers) 01/01/1996 31/12/2006 -846921 01/01/1988 31/12/1995 LIBEN Typewriters, electric, weighing <= 12 kg, excl. case (excl. automatic typewriters, units for automatic data-processing machines of heading 8471 and laser, thermal and electrosensitive printers) 01/01/1988 31/12/1995 -84692100 01/01/1988 31/12/1995 LIBEN Typewriters, electric, weighing <= 12 kg, excl. case (excl. automatic typewriters, units for automatic data-processing machines of heading 8471 and laser, thermal and electrosensitive printers) 01/01/1988 31/12/1995 -846929 01/01/1988 31/12/1995 LIBEN Typewriters, electric, weighing > 12 kg, excl. case (excl. automatic typewriters, units for automatic data-processing machines of heading 8471 and laser, thermal and electrosensitive printers) 01/01/1988 31/12/1995 -84692900 01/01/1988 31/12/1995 LIBEN Typewriters, electric, weighing > 12 kg, excl. case (excl. automatic typewriters, units for automatic data-processing machines of heading 8471 and laser, thermal and electrosensitive printers) 01/01/1988 31/12/1995 -846930 01/01/1996 31/12/2006 LIBEN Typewriters, non-electric 01/01/1996 31/12/2006 -84693000 01/01/1996 31/12/2006 LIBEN Typewriters, non-electric 01/01/1996 31/12/2006 -846931 01/01/1988 31/12/1995 LIBEN Typewriters, non-electric, weighing <= 12 kg excl. case 01/01/1988 31/12/1995 -84693100 01/01/1988 31/12/1995 LIBEN Typewriters, non-electric, weighing <= 12 kg excl. case 01/01/1988 31/12/1995 -846939 01/01/1988 31/12/1995 LIBEN Typewriters, non electric, weighing > 12 kg excl. case 01/01/1988 31/12/1995 -84693900 01/01/1988 31/12/1995 LIBEN Typewriters, non electric, weighing > 12 kg excl. case 01/01/1988 31/12/1995 -8470 01/01/1988 31/12/2500 LIBEN Calculating machines and pocket-size "dimensions <= 170 mm x 100 mm x 45 mm" data recording, reproducing and displaying machines with calculating functions; accounting machines, postage-franking machines, ticket-issuing machines and similar machines, incorporating a calculating device; cash registers (excl. data-processing machines of heading 8471 and automatic goods-vending machines) 01/01/1988 31/12/2500 -847010 01/01/1988 31/12/2500 LIBEN Electronic calculators capable of operation without an external source of electric power and pocket-size "dimensions <= 170 mm x 100 mm x 45 mm" data recording, reproducing and displaying machines with calculating functions 01/01/1988 31/12/2500 -84701000 01/01/1988 31/12/1995 LIBEN Electronic calculators capable of operation without an external source of power 01/01/1988 31/12/1995 -84701000 01/01/2000 31/12/2500 LIBEN Electronic calculators capable of operation without an external source of electric power and pocket-size "dimensions <= 170 mm x 100 mm x 45 mm" data recording, reproducing and displaying machines with calculating functions 01/01/2000 31/12/2500 -84701010 01/01/1996 31/12/1999 LIBEN Electronic calculators capable of operation without an external source of electric power 01/01/1996 31/12/1999 -84701090 01/01/1996 31/12/1999 LIBEN Pocket size "dimensions <= 170 mm x 100 mm x 45 mm" data recording, reproducing and displaying machines with calculating functions 01/01/1996 31/12/1999 -847021 01/01/1988 31/12/2500 LIBEN Electronic calculating machines incorporating a printing device, with mains connection (excl. data-processing machines of heading 8471) 01/01/1988 31/12/2500 -84702100 01/01/1988 31/12/2500 LIBEN Electronic calculating machines incorporating a printing device, with mains connection (excl. data-processing machines of heading 8471) 01/01/1988 31/12/2500 -847029 01/01/1988 31/12/2500 LIBEN Electronic calculating machines not incorporating a printing device, with mains connection (excl. data-processing machines of heading 8471) 01/01/1988 31/12/2500 -84702900 01/01/1988 31/12/1995 LIBEN Electronic calculating machines not incorporating a printing device, with mains connection (excl. data-processing machines of heading 8471) 01/01/1988 31/12/1995 -84702900 01/01/1996 31/12/2500 LIBEN Electronic calculating machines not incorporating a printing device, with mains connection (excl. data-processing machines of heading 8471) 01/01/1996 31/12/2500 -847030 01/01/1988 31/12/2500 LIBEN Calculating machines, non-electronic 01/01/1988 31/12/2500 -84703000 01/01/1988 31/12/2500 LIBEN Calculating machines, non-electronic 01/01/1988 31/12/2500 -847040 01/01/1988 31/12/2006 LIBEN Accounting machines incorporating a calculating device (excl. data-processing machines of heading 8471) 01/01/1988 31/12/2006 -84704000 01/01/1988 31/12/2006 LIBEN Accounting machines incorporating a calculating device (excl. data-processing machines of heading 8471) 01/01/1988 31/12/2006 -847050 01/01/1988 31/12/2500 LIBEN Cash registers incorporating a calculating device 01/01/1988 31/12/2500 -84705000 01/01/1988 31/12/2500 LIBEN Cash registers incorporating a calculating device 01/01/1988 31/12/2500 -847090 01/01/1988 31/12/2500 LIBEN Accounting machines, postage-franking machines, ticket-issuing machines and similar machines, incorporating a calculating device (excl. calculating machin, cash registers and automatic vending machines) 01/01/1988 31/12/2500 -84709000 01/01/1988 31/12/2006 LIBEN Postage-franking machines, ticket-issuing machines and similar machines, incorporating a calculating device (excl. accounting machines, cash registers and automatic vending machines) 01/01/1988 31/12/2006 -84709000 01/01/2007 31/12/2500 LIBEN Accounting machines, postage-franking machines, ticket-issuing machines and similar machines, incorporating a calculating device (excl. calculating machin, cash registers and automatic vending machines) 01/01/2007 31/12/2500 -8471 01/01/1988 31/12/2500 LIBEN Automatic data-processing machines and units thereof; magnetic or optical readers, machines for transcribing data onto data media in coded form and machines for processing such data, n.e.s. 01/01/1988 31/12/2500 -847110 01/01/1988 31/12/2006 LIBEN Analogue or hybrid automatic data-processing machines 01/01/1988 31/12/2006 -84711000 01/01/2006 31/12/2006 LIBEN Analogue or hybrid automatic data-processing machines 01/01/2006 31/12/2006 -84711010 01/01/1988 31/12/2005 LIBEN Analogue or hybrid automatic data-processing machines, for civil aircraft 01/01/1988 31/12/2005 -84711090 01/01/1988 31/12/2005 LIBEN Analogue or hybrid automatic data-processing machines (excl. those for civil aircraft of subheading 8471.10.10) 01/01/1988 31/12/2005 -847120 01/01/1988 31/12/1995 LIBEN Data-processing machines, automatic, digital, combined with an input and output unit (excl. peripheral units) 01/01/1988 31/12/1995 -84712010 01/01/1988 31/12/1995 LIBEN Data-processing machines, automatic, digital, combined with an input and output unit, for use in civil aircraft (excl. peripheral units) 01/01/1988 31/12/1995 -84712020 01/01/1993 31/12/1995 LIBEN Data-processing machines, automatic, digital, combined with an input and output unit, weighing <= 10 kg (excl. for use in civil aircraft of subheading 8471.20.10 and peripheral units) 01/01/1993 31/12/1995 -84712040 01/01/1988 31/12/1992 LIBEN Digital automatic data processing machines, combined with an input and output unit, with a random access memory of a capacity =< 64 kilobytes (excl. those for civil aircraft of subheading no 8471.20-10) 01/01/1988 31/12/1992 -84712050 01/01/1988 31/12/1992 LIBEN Digital automatic data processing machines, combined with an input and output unit, with a random access memory of a capacity > 64 kilobytes but =< 256 kilobytes (excl. those for civil aircraft of subheading no 8471.20-10) 01/01/1988 31/12/1992 -84712060 01/01/1988 31/12/1992 LIBEN Digital automatic data processing machines, combined with an input and output unit, with a random access memory of a capacity > 256 kilobytes but =< 512 kilobytes (excl. those for civil aircraft of subheading no 8471.20-10) 01/01/1988 31/12/1992 -84712080 01/01/1993 31/12/1995 LIBEN Data-processing machines, automatic, digital, combined with an input and output unit, weighing >= 10 kg (excl. for use in civil aircraft of subheading 8471.20.10 and peripheral units) 01/01/1993 31/12/1995 -84712090 01/01/1988 31/12/1992 LIBEN Digital automatic data processing machines, combined with an input and output unit, with a random access memory of a capacity > 512 kilobytes (excl. for civil aircraft of subheading no 8471.20-10) 01/01/1988 31/12/1992 -847130 01/01/1996 31/12/2500 LIBEN Data-processing machines, automatic, portable, weighing <= 10 kg, consisting of at least a central processing unit, a keyboard and a display (excl. peripheral units) 01/01/1996 31/12/2500 -84713000 01/01/1996 31/12/1997 LIBEN Data-processing machines, automatic, digital, portable, weighing <= 10 kg, consisting of at least a central processing unit, a keyboard and a display (excl. peripheral units) 01/01/1996 31/12/1997 -84713000 01/01/2000 31/12/2006 LIBEN Data-processing machines, automatic, digital, portable, weighing <= 10 kg, consisting of at least a central processing unit, a keyboard and a display (excl. peripheral units) 01/01/2000 31/12/2006 -84713000 01/01/2007 31/12/2500 LIBEN Data-processing machines, automatic, portable, weighing <= 10 kg, consisting of at least a central processing unit, a keyboard and a display (excl. peripheral units) 01/01/2007 31/12/2500 -84713010 01/01/1998 31/12/1999 LIBEN Data-processing machines, automatic, digital, portable, weighing <= 10 kg, consisting of at least a central processing unit, a keyboard and a display, capable of receiving and processing television, telecommunication, audio and video signals (excl. peripheral units) 01/01/1998 31/12/1999 -84713091 01/01/1998 31/12/1999 LIBEN Data-processing machines, automatic, digital, portable, weighing <= 10 kg, consisting of at least a central processing unit, a keyboard and a display, capable of receiving and processing television signals but having no other specific subsidiary functions (excl. peripheral units) 01/01/1998 31/12/1999 -84713099 01/01/1998 31/12/1999 LIBEN Data-processing machines, automatic, digital, portable, weighing <= 10 kg, consisting of at least a central processing unit, a keyboard and a display (not capable of receiving and processing television, telecommunication, audio or video signals and excl. peripheral units) 01/01/1998 31/12/1999 -847141 01/01/1996 31/12/2500 LIBEN Data-processing machines, automatic, comprising in the same housing at least a central processing unit, and one input unit and one output unit, whether or not combined (excl. portable weighing <= 10 kg and excl. those presented in the form of systems and peripheral units) 01/01/1996 31/12/2500 -84714100 01/01/2006 31/12/2006 LIBEN Data-processing machines, automatic, digital, comprising in the same housing at least a central processing unit, and one input unit and one output unit, whether or not combined (excl. portable weighing <= 10 kg and excl. those presented in the form of systems and peripheral units) 01/01/2006 31/12/2006 -84714100 01/01/2007 31/12/2500 LIBEN Data-processing machines, automatic, comprising in the same housing at least a central processing unit, and one input unit and one output unit, whether or not combined (excl. portable weighing <= 10 kg and excl. those presented in the form of systems and peripheral units) 01/01/2007 31/12/2500 -84714110 01/01/1996 31/12/2005 LIBEN Data-processing machines, automatic, digital, comprising in the same housing at least a central processing unit, and one input unit and one output unit, whether or not combined, for use in civil aircraft (excl. portable weighing <= 10 kg and excl. those presented in the form of systems and peripheral units) 01/01/1996 31/12/2005 -84714130 01/01/1998 31/12/1999 LIBEN Data-processing machines, automatic, digital, comprising in the same housing at least a central processing unit, plus one input unit and one output unit, whether or not combined, capable of receiving and processing television, telecommunication, audio and video signals (excl. for use in civil aircraft of subheading 8471.41.10, portable weighing <= 10 kg and not presented in the form of systems and peripheral units) 01/01/1998 31/12/1999 -84714190 01/01/1996 31/12/1997 LIBEN Data-processing machines, automatic, digital, comprising in the same housing at least a central processing unit, plus one input unit and one output unit, whether or not combined (excl. for use in civil aircraft of subheading 8471.41.10, portable weighing <= 10 kg and excl. presented in the form of systems and peripheral units) 01/01/1996 31/12/1997 -84714190 01/01/2000 31/12/2005 LIBEN Data-processing machines, automatic, digital, comprising in the same housing at least a central processing unit, and one input unit and one output unit, whether or not combined (excl. for use in civil aircraft of subheading 8471.41.10, portable weighing <= 10 kg, machines presented in the form of systems and peripheral units) 01/01/2000 31/12/2005 -84714191 01/01/1998 31/12/1999 LIBEN Data-processing machines, automatic, digital, comprising in the same housing at least a central processing unit, plus one input unit and one output unit, whether or not combined, capable of receiving and processing television signals but having no other specific subsidiary functions (excl. for use in civil aircraft of subheading 8471.41.10, portable weighing <= 10 kg and not presented in the form of systems and peripheral units) 01/01/1998 31/12/1999 -84714199 01/01/1998 31/12/1999 LIBEN Data-processing machines, automatic, digital, comprising in the same housing at least a central processing unit, plus one input unit and one output unit, whether or not combined (not capable of receiving and processing television, telecommunication, audio or video signals and excl. for use in civil aircraft of subheading 8471.41.10, portable weighing <= 10 kg and not presented in the form of systems and peripheral units) 01/01/1998 31/12/1999 -847149 01/01/1996 31/12/2500 LIBEN Data-processing machines, automatic, presented in the form of systems "comprising at least a central processing unit, one input unit and one output unit" (excl. portable weighing <= 10 kg and excl. peripheral units) 01/01/1996 31/12/2500 -84714900 01/01/2006 31/12/2006 LIBEN Data-processing machines, automatic, digital, presented in the form of systems "comprising at least a central processing unit, one input unit and one output unit" (excl. portable weighing <= 10 kg and excl. peripheral units) 01/01/2006 31/12/2006 -84714900 01/01/2007 31/12/2500 LIBEN Data-processing machines, automatic, presented in the form of systems "comprising at least a central processing unit, one input unit and one output unit" (excl. portable weighing <= 10 kg and excl. peripheral units) 01/01/2007 31/12/2500 -84714910 01/01/1996 31/12/2005 LIBEN Data-processing machines, automatic, digital, presented in the form of systems "comprising at least a central processing unit, one input unit and one output unit", for use in civil aircraft (excl. portable weighing <= 10 kg and excl. peripheral units) 01/01/1996 31/12/2005 -84714930 01/01/1998 31/12/1999 LIBEN Data-processing machines, automatic, digital, presented in the form of systems "comprising at least a central processing unit, one input unit and one output unit", capable of receiving and processing television, telecommunication, audio and video signals (excl. for use in civil aircraft of subheading 8471.49.10, portable weighing <= 10 kg and excl. peripheral units) 01/01/1998 31/12/1999 -84714990 01/01/1996 31/12/1997 LIBEN Data-processing machines, automatic, digital, presented in the form of systems "comprising at least a central processing unit, one input unit and one output unit" (excl. for use in civil aircraft of subheading 8471.49.10, portable weighing <= 10 kg and excl. peripheral units) 01/01/1996 31/12/1997 -84714990 01/01/2000 31/12/2005 LIBEN Data-processing machines, automatic, digital, presented in the form of systems "comprising at least a central processing unit, one input unit and one output unit" (excl. for use in civil aircraft of subheading 8471.49.10, portable weighing <= 10 kg and peripheral units) 01/01/2000 31/12/2005 -84714991 01/01/1998 31/12/1999 LIBEN Data-processing machines, automatic, digital, presented in the form of systems "comprising at least a central processing unit, one input unit and one output unit", capable of receiving and processing television signals but having no other specific subsidiary functions (excl. for use in civil aircraft of subheading 8471.49.10, portable weighing <= 10 kg and excl. peripheral units) 01/01/1998 31/12/1999 -84714999 01/01/1998 31/12/1999 LIBEN Data-processing machines, automatic, digital, presented in the form of systems "comprising at least a central processing unit, one input unit and one output unit" (not capable of receiving and processing television, telecommunication, audio or video signals, excl. for use in civil aircraft of subheading 8471.49.10, portable weighing <= 10 kg, and peripheral units) 01/01/1998 31/12/1999 -847150 01/01/1996 31/12/2500 LIBEN Processing units for automatic data-processing machines, whether or not containing in the same housing one or two of the following types of unit: storage units, input units, output units (excl. those of heading 8471.41 or 8471.49 and excl. peripheral units) 01/01/1996 31/12/2500 -84715000 01/01/2006 31/12/2006 LIBEN Processing units for automatic data-processing machines, digital, whether or not containing in the same housing one or two of the following types of unit: storage units, input units, output units (excl. those of heading 8471.41 or 8471.49 and excl. peripheral units) 01/01/2006 31/12/2006 -84715000 01/01/2007 31/12/2500 LIBEN Processing units for automatic data-processing machines, whether or not containing in the same housing one or two of the following types of unit: storage units, input units, output units (excl. those of heading 8471.41 or 8471.49 and excl. peripheral units) 01/01/2007 31/12/2500 -84715010 01/01/1996 31/12/2005 LIBEN Processing units for automatic data-processing machines, digital, whether or not containing in the same housing one or two of the following types of unit: storage units, input units, output units, for use in civil aircraft (excl. those of heading 8471.41 or 8471.49 and excl. peripheral units) 01/01/1996 31/12/2005 -84715030 01/01/1998 31/12/1999 LIBEN Processing units for automatic data-processing machines, digital, whether or not containing in the same housing one or two of the following types of unit: storage units, input units, output units, capable of receiving and processing television, telecommunication, audio and video signals (excl. for use in civil aircraft of subheading 8471.50.10, those of subheadings 8471,41 and 8471,49 and excl. peripheral units) 01/01/1998 31/12/1999 -84715090 01/01/1996 31/12/1997 LIBEN Processing units for automatic data-processing machines, digital, whether or not containing in the same housing one or two of the following types of unit: storage units, input units, output units (excl. for use in civil aircraft of subheading 8471.50.10, those of subheadings Nos 8471,41 and 8471,49 and excl. peripheral units) 01/01/1996 31/12/1997 -84715090 01/01/2000 31/12/2005 LIBEN Processing units for automatic data-processing machines, digital, whether or not containing in the same housing one or two of the following types of unit: storage units, input units, output units (excl. for use in civil aircraft of subheading 8471.50.10, those of subheading 8471.41 or 8471.49 and peripheral units) 01/01/2000 31/12/2005 -84715091 01/01/1998 31/12/1999 LIBEN Processing units for automatic data-processing machines, digital, whether or not containing in the same housing one or two of the following types of unit: storage units, input units, output units, capable of receiving and processing television signals but having no other specific subsidiary functions (excl. for use in civil aircraft of subheading 8471.50.10, those of subheadings 8471,41 and 8471,49 and excl. peripheral units) 01/01/1998 31/12/1999 -84715099 01/01/1998 31/12/1999 LIBEN Processing units for automatic data-processing machines, digital, whether or not containing in the same housing one or two of the following types of unit: storage units, input units, output units (not capable of receiving and processing television, telecommunication, audio or video signals, excl. for use in civil aircraft of subheading 8471.50.10, those of subheadings 8471,41 and 8471,49 and peripheral units) 01/01/1998 31/12/1999 -847150SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 8471 50 01/01/2006 31/12/2500 -847160 01/01/1996 31/12/2500 LIBEN Input or output units for automatic data-processing machines, whether or not containing storage units in the same housing 01/01/1996 31/12/2500 -84716010 01/01/1996 31/12/2005 LIBEN Input or output units for digital automatic data-processing machines, whether or not containing storage units in the same housing, for use in civil aircraft 01/01/1996 31/12/2005 -84716020 01/01/2006 31/12/2006 LIBEN Printers for digital automatic data-processing machines, whether or not containing storage units in the same housing 01/01/2006 31/12/2006 -84716040 01/01/1996 31/12/2005 LIBEN Printers, for digital automatic data-processing machines, whether or not containing storage units in the same housing (excl. for use in civil aircraft of subheading 8471.60.10) 01/01/1996 31/12/2005 -84716050 01/01/1996 31/12/2005 LIBEN Keyboards, for digital automatic data-processing machines (excl. for use in civil aircraft of subheading 8471.60.10) 01/01/1996 31/12/2005 -84716060 01/01/2006 31/12/2500 LIBEN Keyboards for automatic data-processing machines, whether or not containing storage units in the same housing 01/01/2006 31/12/2500 -84716070 01/01/2007 31/12/2500 LIBEN Input or output units for automatic data-processing machines, whether or not containing storage units in the same housing (excl. keyboards) 01/01/2007 31/12/2500 -84716080 01/01/2006 31/12/2006 LIBEN Input or output units for digital automatic data-processing machines, whether or not containing storage units in the same housing (excl. printers and keyboards) 01/01/2006 31/12/2006 -84716090 01/01/1996 31/12/2005 LIBEN Input or output units for digital automatic data-processing machines, whether or not containing storage units in the same housing (excl. for use in civil aircraft of subheading 8471.60.10, printers and keyboards) 01/01/1996 31/12/2005 -847170 01/01/1996 31/12/2500 LIBEN Storage units for automatic data-processing machines 01/01/1996 31/12/2500 -84717010 01/01/1996 31/12/2005 LIBEN Storage units for digital automatic data-processing machines, for civil aircraft 01/01/1996 31/12/2005 -84717020 01/01/2006 31/12/2500 LIBEN Central storage units for automatic data-processing machines 01/01/2006 31/12/2500 -84717030 01/01/2006 31/12/2500 LIBEN Disk storage units for automatic data-processing machines, optical, incl. magneto-optical "e.g. CD-ROM drives" (excl. central storage units) 01/01/2006 31/12/2500 -84717040 01/01/1996 31/12/2005 LIBEN Central storage units for digital automatic data-processing machines (excl. for use in civil aircraft of subheading 8471.70.10) 01/01/1996 31/12/2005 -84717050 01/01/2006 31/12/2500 LIBEN Hard disk storage drives for automatic data-processing machines, neither optical nor magneto-optical (excl. central storage units) 01/01/2006 31/12/2500 -84717051 01/01/1996 31/12/2005 LIBEN Disk storage units for digital automatic data-processing machines, optical, incl. magneto-optical "e.g. CD-ROM drives" (excl. for use in civil aircraft of subheading 8471.70.10 and central storage units) 01/01/1996 31/12/2005 -84717053 01/01/1996 31/12/2005 LIBEN Hard disk storage drives for digital automatic data-processing machines, neither optical nor magneto-optical (excl. for use in civil aircraft of subheading 8471.70.10 and central storage units) 01/01/1996 31/12/2005 -84717059 01/01/1996 31/12/2005 LIBEN Disk storage units for digital automatic data-processing machines, neither optical nor magneto-optical (excl. for use in civil aircraft of subheading 8471.70.10, hard disk storage drives and central storage units) 01/01/1996 31/12/2005 -84717060 01/01/1996 31/12/2005 LIBEN Magnetic tape storage units for digital automatic data-processing machines (excl. for use in civil aircraft of subheading 8471.70.10 and central storage units) 01/01/1996 31/12/2005 -84717070 01/01/2006 31/12/2500 LIBEN Disk storage units for automatic data-processing machines, neither optical nor magneto-optical (excl. hard disk storage drives and central storage units) 01/01/2006 31/12/2500 -84717080 01/01/2006 31/12/2500 LIBEN Magnetic tape storage units for automatic data-processing machines (excl. central storage units) 01/01/2006 31/12/2500 -84717090 01/01/1996 31/12/2005 LIBEN Storage units for digital automatic data-processing machines (excl. for civil aircraft of subheading 8471.70.10 and disk, magnetic tape and central storage units) 01/01/1996 31/12/2005 -84717098 01/01/2006 31/12/2500 LIBEN Storage units for automatic data-processing machines (excl. disk, magnetic tape and central storage units) 01/01/2006 31/12/2500 -847180 01/01/1996 31/12/2500 LIBEN Units for automatic data-processing machines (excl. processing units, input or output units and storage units) 01/01/1996 31/12/2500 -84718000 01/01/2000 31/12/2006 LIBEN Units for digital automatic data-processing machines (excl. processing units, input or output units and storage units) 01/01/2000 31/12/2006 -84718000 01/01/2007 31/12/2500 LIBEN Units for automatic data-processing machines (excl. processing units, input or output units and storage units) 01/01/2007 31/12/2500 -84718010 01/01/1996 31/12/1999 LIBEN Peripheral units for digital automatic data-processing machines (excl. processing units, input or output units and storage units) 01/01/1996 31/12/1999 -84718090 01/01/1996 31/12/1999 LIBEN Non-peripheral units for digital automatic data-processing machines (excl. processing units, input or output units and storage units) 01/01/1996 31/12/1999 -847190 01/01/1996 31/12/2500 LIBEN Magnetic or optical readers, machines for transcribing data onto data media in coded form and machines for processing such data, n.e.s. 01/01/1996 31/12/2500 -84719000 01/01/1996 31/12/2500 LIBEN Magnetic or optical readers, machines for transcribing data onto data media in coded form and machines for processing such data, n.e.s. 01/01/1996 31/12/2500 -847191 01/01/1988 31/12/1995 LIBEN Data-processing machines, automatic, digital, not combined with an input and output unit, weighing <= 10 kg (excl. for use in civil aircraft of subheading 8471.20.10 and peripheral units) 01/01/1988 31/12/1995 -84719110 01/01/1988 31/12/1995 LIBEN Data-processing machines, automatic, digital, not combined with an input and output unit, for use in civil aircraft (excl. peripheral units) 01/01/1988 31/12/1995 -84719140 01/01/1988 31/12/1992 LIBEN Digital automatic data processing machines, not combined with an input and output unit, with a random access memory of a capacity =< 64 kilobytes (excl. those for civil aircraft of subheading no 8471.91-10 and peripheral units) 01/01/1988 31/12/1992 -84719150 01/01/1988 31/12/1992 LIBEN Digital automatic data processing machines, not combined with an input and output unit, with a random access memory of a capacity > 64 kilobytes but =< 256 kilobytes (excl. those for civil aircraft of subheading no 8471.91-10 and peripheral units) 01/01/1988 31/12/1992 -84719160 01/01/1988 31/12/1992 LIBEN Digital automatic data processing machines, not combined with an input and output unit, with a random access memory of a capacity > 256 kilobytes but =< 512 kilobytes (excl. those for civil aircraft of subheading no 8471.91-10 and peripheral units) 01/01/1988 31/12/1992 -84719180 01/01/1993 31/12/1995 LIBEN Data-processing machines, automatic, digital, not combined with an input and output unit (excl. for use in civil aircraft of subheading 8471.91.10 and peripheral units) 01/01/1993 31/12/1995 -84719190 01/01/1988 31/12/1992 LIBEN Digital automatic data processing machines, not combined with an input and output unit, with a random access memory of a capacity > 512 kilobytes (excl. those for civil aircraft of subheading no 8471.91-10 and peripheral units) 01/01/1988 31/12/1992 -847192 01/01/1988 31/12/1995 LIBEN Input or output units for digital automatic data processing machines 01/01/1988 31/12/1995 -84719210 01/01/1988 31/12/1995 LIBEN Input or output units for digital automatic data processing machines, for civil aircraft 01/01/1988 31/12/1995 -84719220 01/01/1994 31/12/1995 LIBEN Printers, for digital automatic data processing machines (excl. such machines for use in civilian aircraft of subheading 8471.92.10) 01/01/1994 31/12/1995 -84719240 01/01/1994 31/12/1995 LIBEN Keyboards, for digital automatic data processing machines (excl. such machines for use in civilian aircraft of subheading 8471.92.10) 01/01/1994 31/12/1995 -84719280 01/01/1994 31/12/1995 LIBEN Input or output units for digital automatic data processing machines (excl. such machines for use in civilian aircraft of subheading 8471.92.10 and printers and keyboards) 01/01/1994 31/12/1995 -84719290 01/01/1988 31/12/1993 LIBEN Input or output units for digital automatic data processing machines (excl. those for civil aircraft of subheading no 8471.92-10) 01/01/1988 31/12/1993 -847193 01/01/1988 31/12/1995 LIBEN Storage units for digital automatic data processing machines 01/01/1988 31/12/1995 -84719310 01/01/1988 31/12/1995 LIBEN Storage units for digital automatic data processing machines, for civil aircraft 01/01/1988 31/12/1995 -84719340 01/01/1988 31/12/1995 LIBEN Central storage units for digital automatic data processing machines (excl. those for civil aircraft of subheading 8471.93.10) 01/01/1988 31/12/1995 -84719350 01/01/1988 31/12/1992 LIBEN Disc storage units for digital automatic data processing machines (excl. those for civil aircraft of subheading no 8471.93-10) 01/01/1988 31/12/1992 -84719351 01/01/1993 31/12/1995 LIBEN Disk storage units for digital automatic data-processing machines, optical, incl. magneto-optical (excl. for use in civil aircraft of subheading 8471.93.10 and central storage units) 01/01/1993 31/12/1995 -84719359 01/01/1993 31/12/1995 LIBEN Disk storage units for digital automatic data-processing machines, neither optical nor magneto-optical (excl. for use in civil aircraft of subheading 8471.93.10 and central storage units) 01/01/1993 31/12/1995 -84719360 01/01/1988 31/12/1995 LIBEN Magnetic storage units for digital automatic data processing machines (excl. those for civil aircraft of subheading 8471.93.10) 01/01/1988 31/12/1995 -84719390 01/01/1988 31/12/1995 LIBEN Storage units for digital automatic data processing machines (excl. those for civil aircraft of subheading 8471.93.10 and disc, magnetic and central storage units) 01/01/1988 31/12/1995 -847199 01/01/1988 31/12/1995 LIBEN Units for digital automatic data processing machines (excl. input, output and storage units); magnetic or optical readers, machines for transcribing data onto data media in coded form and machines for processing such data n.e.s. 01/01/1988 31/12/1995 -84719910 01/01/1988 31/12/1995 LIBEN Units for digital automatic data processing machines (excl. input, output and storage units) 01/01/1988 31/12/1995 -84719930 01/01/1988 31/12/1993 LIBEN Punches, verifiers and calculators for use in data processing 01/01/1988 31/12/1993 -84719980 01/01/1994 31/12/1995 LIBEN Readers, magnetic or optical, machines for transcribing data onto data media in coded form and machines for processing such information, n.e.s 01/01/1994 31/12/1995 -84719990 01/01/1988 31/12/1993 LIBEN Magnetic or optical readers, machines for transcribing data onto data media in coded form and machines for processing such information n.e.s 01/01/1988 31/12/1993 -8472 01/01/1988 31/12/2500 LIBEN Office machines, e.g. hectograph or stencil duplicating machines, addressing machines, automatic banknote dispensers, coin-sorting machines, coin-counting or coin-wrapping machines, pencil-sharpening machines, perforating or stapling machines, n.e.s. 01/01/1988 31/12/2500 -847210 01/01/1988 31/12/2500 LIBEN Duplicating machines "hectograph or stencil" (excl. printing machines and photocopying or thermo-copying machines) 01/01/1988 31/12/2500 -84721000 01/01/1988 31/12/2500 LIBEN Duplicating machines "hectograph or stencil" (excl. printing machines and photocopying or thermo-copying machines) 01/01/1988 31/12/2500 -847220 01/01/1988 31/12/2006 LIBEN Addressing machines and address plate embossing machines (excl. automatic typewriters, automatic data-processing machines and units therefor and laser, thermal or electrosensitive printers) 01/01/1988 31/12/2006 -84722000 01/01/1988 31/12/2006 LIBEN Addressing machines and address plate embossing machines (excl. automatic typewriters, automatic data-processing machines and units therefor and laser, thermal or electrosensitive printers) 01/01/1988 31/12/2006 -847230 01/01/1988 31/12/2500 LIBEN Machines for sorting or folding mail or for inserting mail in envelopes or bands, machines for opening, closing or sealing mail and machines for affixing or cancelling postage stamps 01/01/1988 31/12/2500 -84723000 01/01/1988 31/12/2500 LIBEN Machines for sorting or folding mail or for inserting mail in envelopes or bands, machines for opening, closing or sealing mail and machines for affixing or cancelling postage stamps 01/01/1988 31/12/2500 -847290 01/01/1988 31/12/2500 LIBEN Office machines, n.e.s. 01/01/1988 31/12/2500 -84729010 01/01/1988 31/12/2500 LIBEN Coin-sorting, coin-counting or coin-wrapping machines 01/01/1988 31/12/2500 -84729030 01/01/1998 31/12/2019 LIBEN Automatic teller machines 01/01/1998 31/12/2019 -84729040 01/01/2017 31/12/2019 LIBEN Word-processing machines 01/01/2017 31/12/2019 -84729070 01/01/2007 31/12/2016 LIBEN Office machines, n.e.s. 01/01/2007 31/12/2016 -84729080 01/01/1998 31/12/2006 LIBEN Office machines, n.e.s. 01/01/1998 31/12/2006 -84729080 01/01/2020 31/12/2500 LIBEN Office machines, n.e.s. 01/01/2020 31/12/2500 -84729090 01/01/1988 31/12/1995 LIBEN Office machines n.e.s. 01/01/1988 31/12/1995 -84729090 01/01/1996 31/12/1997 LIBEN Office machines n.e.s. 01/01/1996 31/12/1997 -84729090 01/01/2017 31/12/2019 LIBEN Office machines, n.e.s. 01/01/2017 31/12/2019 -8473 01/01/1988 31/12/2500 LIBEN Parts and accessories (other than covers, carrying cases and the like) suitable for use solely or principally with machines of heading 8469 to 8472, n.e.s. 01/01/1988 31/12/2500 -847310 01/01/1988 31/12/2016 LIBEN Parts and accessories for typewriters or word-processing machines of heading 8469, n.e.s. 01/01/1988 31/12/2016 -84731000 01/01/1988 31/12/1991 LIBEN Parts and accessories for typewriters and word processors of heading no 8469, n.e.s. 01/01/1988 31/12/1991 -84731010 01/01/1992 31/12/1995 LIBEN Electronic assemblies for typewriters or word-processing machines or word processing machines of heading 8469, n.e.s. 01/01/1992 31/12/1995 -84731010 01/01/1996 31/12/1997 LIBEN Electronic assemblies for typewriters or word-processing machines or word processing machines of heading 8469, n.e.s. 01/01/1996 31/12/1997 -84731011 01/01/1998 31/12/2006 LIBEN Electronic assemblies of word-processing machines of heading 8469, n.e.s. 01/01/1998 31/12/2006 -84731011 01/01/2007 31/12/2016 LIBEN Electronic assemblies of word-processing machines of subheading 8469 00 10, n.e.s. 01/01/2007 31/12/2016 -84731019 01/01/1998 31/12/2006 LIBEN Electronic assemblies of typewriters of heading 8469, n.e.s. 01/01/1998 31/12/2006 -84731019 01/01/2007 31/12/2016 LIBEN Electronic assemblies of typewriters of heading 8469, n.e.s. 01/01/2007 31/12/2016 -84731090 01/01/1992 31/12/1995 LIBEN Parts and accessories for typewriters or word-processing machines of heading 8469, n.e.s.(excl. electronic assemblies) 01/01/1992 31/12/1995 -84731090 01/01/1996 31/12/2016 LIBEN Parts and accessories of typewriters or word-processing machines of heading 8469, n.e.s.(excl. electronic assemblies) 01/01/1996 31/12/2016 -847310SS 01/01/2006 31/12/2016 LIBEN Confidential trade of heading 8473 10 01/01/2006 31/12/2016 -847321 01/01/1988 31/12/2500 LIBEN Parts and accessories of electronic calculating machines of subheading 8470.10, 8470.21 or 8470.29, n.e.s. 01/01/1988 31/12/2500 -84732100 01/01/1988 31/12/1991 LIBEN Parts and accessories for electronic calculating machines of subheading no 8470.10, 8470.21 or 8470.29, n.e.s. 01/01/1988 31/12/1991 -84732110 01/01/1992 31/12/1995 LIBEN Electronic assemblies for electronic calculators of subheadings 8470.10, 8470.21 or 8470.29, n.e.s. 01/01/1992 31/12/1995 -84732110 01/01/1996 31/12/2006 LIBEN Electronic assemblies of electronic calculators of subheading 8470.10, 8470.21 or 8470.29, n.e.s. 01/01/1996 31/12/2006 -84732110 01/01/2007 31/12/2500 LIBEN Electronic assemblies of electronic calculators of subheading 8470.10, 8470.21 or 8470.29, n.e.s. 01/01/2007 31/12/2500 -84732190 01/01/1992 31/12/1995 LIBEN Parts and accessories for electronic calculators of sub-headings 8470.10, 8470.21 or 8470.29, n.e.s. (excl. electronic assemblies) 01/01/1992 31/12/1995 -84732190 01/01/1996 31/12/2500 LIBEN Parts and accessories of electronic calculators of subheading 8470.10, 8470.21 or 8470.29, n.e.s. (excl. electronic assemblies) 01/01/1996 31/12/2500 -847329 01/01/1988 31/12/2500 LIBEN Parts and accessories of non-electronic calculators for accounting machines, cash registers or other machines, incorporating a calculating device, of heading 8470, n.e.s. 01/01/1988 31/12/2500 -84732900 01/01/1988 31/12/1991 LIBEN Parts and accessories for non-electronic calculating machines or for accounting machines, cash registers and other machines incorporating a calculating device of heading no 8470, n.e.s. 01/01/1988 31/12/1991 -84732910 01/01/1992 31/12/1995 LIBEN Electronic assemblies for accounting machines, cash registers or other machines, incorporating a calculating device, of heading 8470, n.e.s. 01/01/1992 31/12/1995 -84732910 01/01/1996 31/12/2006 LIBEN Electronic assemblies of accounting machines, cash registers or other machines, incorporating a calculating device, of heading 8470, n.e.s. 01/01/1996 31/12/2006 -84732910 01/01/2007 31/12/2500 LIBEN Electronic assemblies of accounting machines, cash registers or other machines, incorporating a calculating device, of heading 8470, n.e.s. 01/01/2007 31/12/2500 -84732990 01/01/1992 31/12/1995 LIBEN Parts and accessories for non-electronic calculators, for accounting machines, cash registers or other machines, incorporating a calculating device, of heading 8470, n.e.s. (excl. electronic assemblies) 01/01/1992 31/12/1995 -84732990 01/01/1996 31/12/2500 LIBEN Parts and accessories of non-electronic calculators, for accounting machines, cash registers or other machines, incorporating a calculating device, of heading 8470, n.e.s. (excl. electronic assemblies) 01/01/1996 31/12/2500 -847330 01/01/1988 31/12/2500 LIBEN Parts and accessories of automatic data-processing machines or for other machines of heading 8471, n.e.s. 01/01/1988 31/12/2500 -84733000 01/01/1988 31/12/1991 LIBEN Parts and accessories of the machines of 8471.10-10 to 8471.99-90, (other than covers, carrying cases and the like) 01/01/1988 31/12/1991 -84733010 01/01/1992 31/12/1995 LIBEN Electronic assemblies for automatic data-processing machines or for other machines of heading 8471, n.e.s. 01/01/1992 31/12/1995 -84733010 01/01/1996 31/12/2006 LIBEN Electronic assemblies of automatic data-processing machines or for other machines of heading 8471, n.e.s. 01/01/1996 31/12/2006 -84733020 01/01/2007 31/12/2500 LIBEN Electronic assemblies of automatic data-processing machines or for other machines of heading 8471, n.e.s. 01/01/2007 31/12/2500 -84733080 01/01/2007 31/12/2016 LIBEN Parts and accessories of automatic data-processing machines or for other machines of heading 8471, n.e.s. (excl. electronic assemblies) 01/01/2007 31/12/2016 -84733080 01/01/2017 31/12/2500 LIBEN Parts and accessories of automatic data-processing machines or for other machines of heading 8471, n.e.s. (excl. electronic assemblies) 01/01/2017 31/12/2500 -84733090 01/01/1992 31/12/1995 LIBEN Parts and accessories for automatic data-processing machines or for other machines of heading 8471, n.e.s. (excl. electronic assemblies) 01/01/1992 31/12/1995 -84733090 01/01/1996 31/12/2006 LIBEN Parts and accessories of automatic data-processing machines or for other machines of heading 8471, n.e.s. (excl. electronic assemblies) 01/01/1996 31/12/2006 -847340 01/01/1988 31/12/2500 LIBEN Parts and accessories of other office machines of heading 8472, n.e.s. 01/01/1988 31/12/2500 -84734000 01/01/1988 31/12/1991 LIBEN Parts and accessories of the machines of 8472.10-00 to 8472.90-90, (other than covers, carrying cases and the like) 01/01/1988 31/12/1991 -84734010 01/01/1992 31/12/1995 LIBEN Electronic assemblies for other office machines of heading 8472, n.e.s. 01/01/1992 31/12/1995 -84734010 01/01/1996 31/12/1997 LIBEN Electronic assemblies for other office machines of heading 8472, n.e.s. 01/01/1996 31/12/1997 -84734010 01/01/2017 31/12/2500 LIBEN Electronic assemblies for other office machines of heading 8472, n.e.s. 01/01/2017 31/12/2500 -84734011 01/01/1998 31/12/2006 LIBEN Electronic assemblies of automatic teller machines of subheading 8472.90.30, n.e.s. 01/01/1998 31/12/2006 -84734011 01/01/2007 31/12/2016 LIBEN Electronic assemblies of automatic teller machines of subheading 8472.90.30, n.e.s. 01/01/2007 31/12/2016 -84734018 01/01/2007 31/12/2016 LIBEN Electronic assemblies of other office machines of heading 8472, n.e.s. (excl. of automatic teller machines) 01/01/2007 31/12/2016 -84734019 01/01/1998 31/12/2006 LIBEN Electronic assemblies of other office machines of heading 8472, n.e.s. (excl. of automatic teller machines) 01/01/1998 31/12/2006 -84734080 01/01/2007 31/12/2016 LIBEN Parts and accessories of other office machines of heading 8472, n.e.s. (excl. electronic assemblies) 01/01/2007 31/12/2016 -84734080 01/01/2017 31/12/2500 LIBEN Parts and accessories of other office machines of heading 8472, n.e.s. (excl. electronic assemblies) 01/01/2017 31/12/2500 -84734090 01/01/1992 31/12/1995 LIBEN Parts and accessories for other office machines of heading 8472, n.e.s. (excl. electronic assemblies) 01/01/1992 31/12/1995 -84734090 01/01/1996 31/12/2006 LIBEN Parts and accessories of other office machines of heading 8472, n.e.s. (excl. electronic assemblies) 01/01/1996 31/12/2006 -847350 01/01/1996 31/12/2500 LIBEN Parts and accessories equally suitable for use with machines of two or more of the headings 8470 to 8472, n.e.s. 01/01/1996 31/12/2500 -84735010 01/01/1996 31/12/2006 LIBEN Electronic assemblies equally suitable for use with two or more electronic typewriters, word-processing machines, calculating machines or other machines, equipment or devices of heading 8469 to 8472, n.e.s. 01/01/1996 31/12/2006 -84735020 01/01/2007 31/12/2016 LIBEN Electronic assemblies equally suitable for use with two or more electronic typewriters, word-processing machines, calculating machines or other machines, equipment or devices of heading 8469 to 8472, n.e.s. 01/01/2007 31/12/2016 -84735020 01/01/2017 31/12/2500 LIBEN Electronic assemblies equally suitable for use with two or more electronic typewriters, word-processing machines, calculating machines or other machines, equipment or devices of heading 8470 to 8472, n.e.s. 01/01/2017 31/12/2500 -84735080 01/01/2007 31/12/2016 LIBEN Parts and accessories equally suitable for use with two or more typewriters, word-processing machines, calculating machines, automatic data-processing machines or other machines, equipment or devices of heading 8469 to 8472, n.e.s. (excl. electronic assemblies) 01/01/2007 31/12/2016 -84735080 01/01/2017 31/12/2500 LIBEN Parts and accessories equally suitable for use with machines of two or more of the headings 8470 to 8472, n.e.s. (excl. electronic assemblies) 01/01/2017 31/12/2500 -84735090 01/01/1996 31/12/2006 LIBEN Parts and accessories equally suitable for use with two or more typewriters, word-processing machines, calculating machines, automatic data-processing machines or other machines, equipment or devices of heading 8469 to 8472, n.e.s. (excl. electronic assemblies) 01/01/1996 31/12/2006 -8474 01/01/1988 31/12/2500 LIBEN Machinery for sorting, screening, separating, washing, crushing, grinding, mixing or kneading earth, stone, ores or other mineral substances, in solid, incl. powder or paste, form; machinery for agglomerating, shaping or moulding solid mineral fuels, ceramic paste, unhardened cements, plastering materials or other mineral products in powder or paste form; machines for forming foundry moulds of sand; parts thereof 01/01/1988 31/12/2500 -847410 01/01/1988 31/12/2500 LIBEN Sorting, screening, separating or washing machines for solid mineral substances, incl. those in powder or paste form (excl. centrifuges and filter presses) 01/01/1988 31/12/2500 -84741000 01/01/1988 31/12/2500 LIBEN Sorting, screening, separating or washing machines for solid mineral substances, incl. those in powder or paste form (excl. centrifuges and filter presses) 01/01/1988 31/12/2500 -847420 01/01/1988 31/12/2500 LIBEN Crushing or grinding machines for solid mineral substances 01/01/1988 31/12/2500 -84742000 01/01/1988 31/12/1997 LIBEN Crushing or grinding machines for solid mineral substances 01/01/1988 31/12/1997 -84742000 01/01/2010 31/12/2500 LIBEN Crushing or grinding machines for solid mineral substances 01/01/2010 31/12/2500 -84742010 01/01/1998 31/12/2009 LIBEN Crushing or grinding machines for mineral substances of a kind used in the ceramics industry 01/01/1998 31/12/2009 -84742090 01/01/1998 31/12/2009 LIBEN Crushing or grinding machines for solid mineral substances (other than for mineral substances of a kind used in the ceramics industry) 01/01/1998 31/12/2009 -847431 01/01/1988 31/12/2500 LIBEN Concrete or mortar mixers (excl. those mounted on railway wagons or lorry chassis) 01/01/1988 31/12/2500 -84743100 01/01/1988 31/12/2500 LIBEN Concrete or mortar mixers (excl. those mounted on railway wagons or lorry chassis) 01/01/1988 31/12/2500 -847432 01/01/1988 31/12/2500 LIBEN Machines for mixing mineral substances with bitumen 01/01/1988 31/12/2500 -84743200 01/01/1988 31/12/2500 LIBEN Machines for mixing mineral substances with bitumen 01/01/1988 31/12/2500 -847439 01/01/1988 31/12/2500 LIBEN Machinery for mixing or kneading solid mineral substances, incl. those in powder or paste form (excl. concrete and mortar mixers, machines for mixing mineral substances with bitumen and calenders) 01/01/1988 31/12/2500 -84743900 01/01/1988 31/12/1997 LIBEN Machinery for mixing or kneading solid mineral substances, incl. those in powder or paste form (excl. concrete and mortar mixers, machines for mixing mineral substances with bitumen and calenders) 01/01/1988 31/12/1997 -84743900 01/01/2010 31/12/2500 LIBEN Machinery for mixing or kneading solid mineral substances, incl. those in powder or paste form (excl. concrete and mortar mixers, machines for mixing mineral substances with bitumen and calenders) 01/01/2010 31/12/2500 -84743910 01/01/1998 31/12/2009 LIBEN Machinery for mixing or kneading mineral substances of a kind used in the ceramics industry 01/01/1998 31/12/2009 -84743990 01/01/1998 31/12/2009 LIBEN Machinery for mixing or kneading solid mineral substances, incl. those in powder or paste form (excl. concrete and mortar mixers, machines for mixing mineral substances with bitumen, machinery of a kind used in the ceramics industry, and calenders) 01/01/1998 31/12/2009 -847480 01/01/1988 31/12/2500 LIBEN Machinery for agglomerating, shaping or moulding solid mineral fuels, ceramic paste, unhardened cements, plastering materials and other mineral products in powder or paste form; machines for forming foundry moulds of sand (excl. those for the casting or pressing of glass) 01/01/1988 31/12/2500 -84748000 01/01/1988 31/12/1997 LIBEN Machinery for agglomerating, shaping or moulding solid mineral fuels, ceramic paste, unhardened cements, plastering materials and other mineral products in powder or paste form; machines for forming foundry moulds of sand (excl. those for the casting or pressing of glass) 01/01/1988 31/12/1997 -84748010 01/01/1998 31/12/2500 LIBEN Machinery for agglomerating, shaping or moulding ceramic paste 01/01/1998 31/12/2500 -84748090 01/01/1998 31/12/2500 LIBEN Machinery for agglomerating, shaping or moulding solid mineral fuels, unhardened cements, plastering materials and other mineral products in powder or paste form, and machines for forming foundry moulds of sand (excl. for ceramic paste and for the casting or pressing of glass) 01/01/1998 31/12/2500 -847490 01/01/1988 31/12/2500 LIBEN Parts of machinery for working mineral substances of heading 8474, n.e.s. 01/01/1988 31/12/2500 -84749000 01/01/1988 31/12/1989 LIBEN Parts of machinery for working mineral substances of heading no 8474, n.e.s. 01/01/1988 31/12/1989 -84749010 01/01/1990 31/12/2500 LIBEN Parts of machinery of heading 8474, of cast iron or cast steel 01/01/1990 31/12/2500 -84749090 01/01/1990 31/12/2500 LIBEN Parts of machinery of heading 8474 (excl. of cast iron or cast steel) 01/01/1990 31/12/2500 -8475 01/01/1988 31/12/2500 LIBEN Machines for assembling electric or electronic lamps, tubes or valves or flashbulbs, in glass envelopes; machines for manufacturing or hot working glass or glassware (excl. furnaces and heating apparatus for manufacturing toughened glass); parts thereof 01/01/1988 31/12/2500 -847510 01/01/1988 31/12/2500 LIBEN Machines for assembling electric or electronic lamps, tubes or valves or flashbulbs, in glass envelopes 01/01/1988 31/12/2500 -84751000 01/01/1988 31/12/2500 LIBEN Machines for assembling electric or electronic lamps, tubes or valves or flashbulbs, in glass envelopes 01/01/1988 31/12/2500 -847520 01/01/1988 31/12/1995 LIBEN Machines for manufacturing or hot working glass or glassware (excl. furnaces and heating apparatus for manufacturing toughened glass) 01/01/1988 31/12/1995 -84752000 01/01/1988 31/12/1995 LIBEN Machines for manufacturing or hot working glass or glassware (excl. furnaces and heating apparatus for manufacturing toughened glass) 01/01/1988 31/12/1995 -847521 01/01/1996 31/12/2500 LIBEN Machines for making optical fibres and preforms thereof 01/01/1996 31/12/2500 -84752100 01/01/1996 31/12/2500 LIBEN Machines for making optical fibres and preforms thereof 01/01/1996 31/12/2500 -847529 01/01/1996 31/12/2500 LIBEN Machines for manufacturing or hot working glass or glassware (excl. machines for making optical fibres and preforms thereof and furnaces and heating apparatus for manufacturing toughened glass) 01/01/1996 31/12/2500 -84752900 01/01/1996 31/12/2500 LIBEN Machines for manufacturing or hot working glass or glassware (excl. machines for making optical fibres and preforms thereof and furnaces and heating apparatus for manufacturing toughened glass) 01/01/1996 31/12/2500 -847590 01/01/1988 31/12/2500 LIBEN Parts of machines for assembling electric or electronic lamps, tubes or valves or flashbulbs, in glass envelopes and of machines for manufacturing or hot working glass or glassware, n.e.s. 01/01/1988 31/12/2500 -84759000 01/01/1988 31/12/2016 LIBEN Parts of machines for assembling electric or electronic lamps, tubes or valves or flashbulbs, in glass envelopes and of machines for manufacturing or hot working glass or glassware, n.e.s. 01/01/1988 31/12/2016 -84759010 01/01/2017 31/12/2500 LIBEN Parts of machines for making optical fibres and preforms thereof, n.e.s. 01/01/2017 31/12/2500 -84759090 01/01/2017 31/12/2500 LIBEN Parts of machines for assembling electric or electronic lamps, tubes or valves or flashbulbs, in glass envelopes and of machines for manufacturing or hot working glass or glassware, n.e.s. 01/01/2017 31/12/2500 -8475I1 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8475; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -8475I100 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8475; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -8476 01/01/1988 31/12/2500 LIBEN Automatic goods-vending machines, e.g. postage stamp, cigarette, food or beverage machines, incl. money-changing machines; parts thereof 01/01/1988 31/12/2500 -847611 01/01/1988 31/12/1995 LIBEN Automatic goods-vending machines with heating or refrigerating devices 01/01/1988 31/12/1995 -84761110 01/01/1988 31/12/1995 LIBEN Automatic goods-vending machines, with heating or refrigerating devices, for food or pre-packed drinks 01/01/1988 31/12/1995 -84761190 01/01/1988 31/12/1995 LIBEN Automatic goods-vending machines, with heating or refrigerating devices (excl. those for food or pre-packed drinks) 01/01/1988 31/12/1995 -847619 01/01/1988 31/12/1995 LIBEN Automatic goods-vending machines, without heating or refrigerating devices; money changing machines 01/01/1988 31/12/1995 -84761910 01/01/1988 31/12/1995 LIBEN Automatic cigarette vending machines 01/01/1988 31/12/1995 -84761990 01/01/1988 31/12/1995 LIBEN Automatic goods-vending machines, without heating or refrigerating devices; money changing machines (excl. automatic cigarette vending machines) 01/01/1988 31/12/1995 -847621 01/01/1996 31/12/2500 LIBEN Automatic beverage-vending machines incorporating heating or refrigerating devices 01/01/1996 31/12/2500 -84762100 01/01/1996 31/12/2500 LIBEN Automatic beverage-vending machines incorporating heating or refrigerating devices 01/01/1996 31/12/2500 -847629 01/01/1996 31/12/2500 LIBEN Automatic beverage-vending machines, without heating or refrigerating devices 01/01/1996 31/12/2500 -84762900 01/01/1996 31/12/2500 LIBEN Automatic beverage-vending machines, without heating or refrigerating devices 01/01/1996 31/12/2500 -847681 01/01/1996 31/12/2500 LIBEN Automatic goods-vending machines incorporating heating or refrigerating devices (excl. automatic beverage-vending machines) 01/01/1996 31/12/2500 -84768100 01/01/1996 31/12/2500 LIBEN Automatic goods-vending machines incorporating heating or refrigerating devices (excl. automatic beverage-vending machines) 01/01/1996 31/12/2500 -847689 01/01/1996 31/12/2500 LIBEN Automatic goods-vending machines, without heating or refrigerating devices; money changing machines (excl. automatic beverage-vending machines) 01/01/1996 31/12/2500 -84768900 01/01/1996 31/12/2016 LIBEN Automatic goods-vending machines, without heating or refrigerating devices; money changing machines (excl. automatic beverage-vending machines) 01/01/1996 31/12/2016 -84768910 01/01/2017 31/12/2500 LIBEN Money-changing machines 01/01/2017 31/12/2500 -84768990 01/01/2017 31/12/2500 LIBEN Automatic goods-vending machines, without heating or refrigerating devices (excl. automatic beverage-vending machines and money-changing machines) 01/01/2017 31/12/2500 -847690 01/01/1988 31/12/2500 LIBEN Parts of automatic goods-vending machines, incl. money changing machines, n.e.s. 01/01/1988 31/12/2500 -84769000 01/01/1988 31/12/2016 LIBEN Parts of automatic goods-vending machines, incl. money changing machines, n.e.s. 01/01/1988 31/12/2016 -84769010 01/01/2017 31/12/2500 LIBEN Parts of money-changing machines, n.e.s. 01/01/2017 31/12/2500 -84769090 01/01/2017 31/12/2500 LIBEN Parts of automatic goods-vending machines, n.e.s. (excl. of money-changing machines) 01/01/2017 31/12/2500 -8477 01/01/1988 31/12/2500 LIBEN Machinery for working rubber or plastics or for the manufacture of products from these materials, not specified or included elsewhere in this chapter, parts thereof 01/01/1988 31/12/2500 -847710 01/01/1988 31/12/2500 LIBEN Injection-moulding machines for working rubber or plastics 01/01/1988 31/12/2500 -84771000 01/01/1988 31/12/1997 LIBEN Injection-moulding machines for working rubber or plastics 01/01/1988 31/12/1997 -84771000 01/01/2007 31/12/2500 LIBEN Injection-moulding machines for working rubber or plastics 01/01/2007 31/12/2500 -84771010 01/01/1998 31/12/2006 LIBEN Encapsulation equipment for assembly of semiconductor devices, injection-moulding (other than electrical) 01/01/1998 31/12/2006 -84771090 01/01/1998 31/12/2006 LIBEN Injection-moulding machines for working rubber or plastics (excl. encapsulation equipment for assembly of semiconductor devices) 01/01/1998 31/12/2006 -847720 01/01/1988 31/12/2500 LIBEN Extruders for working rubber or plastics 01/01/1988 31/12/2500 -84772000 01/01/1988 31/12/2500 LIBEN Extruders for working rubber or plastics 01/01/1988 31/12/2500 -847730 01/01/1988 31/12/2500 LIBEN Blow-moulding machines for working rubber or plastics 01/01/1988 31/12/2500 -84773000 01/01/1988 31/12/2500 LIBEN Blow-moulding machines for working rubber or plastics 01/01/1988 31/12/2500 -847740 01/01/1988 31/12/2500 LIBEN Vacuum-moulding machines and other thermoforming machines for working rubber or plastics 01/01/1988 31/12/2500 -84774000 01/01/1988 31/12/2500 LIBEN Vacuum-moulding machines and other thermoforming machines for working rubber or plastics 01/01/1988 31/12/2500 -847751 01/01/1988 31/12/2500 LIBEN Machinery for moulding or retreading pneumatic tyres or for moulding or otherwise forming inner tubes of rubber or plastics 01/01/1988 31/12/2500 -84775100 01/01/1988 31/12/2500 LIBEN Machinery for moulding or retreading pneumatic tyres or for moulding or otherwise forming inner tubes of rubber or plastics 01/01/1988 31/12/2500 -847759 01/01/1988 31/12/2500 LIBEN Machinery for moulding or otherwise forming products from rubber or plastics (excl. injection-moulding machines, extruders, blow-moulding machines, vacuum-moulding and other thermoforming machines; machinery for moulding or retreading pneumatic tyres or for moulding or otherwise forming inner tubes) 01/01/1988 31/12/2500 -84775905 01/01/1998 31/12/2006 LIBEN Encapsulation equipment for assembly of semiconductor devices, moulding or otherwise forming (excl. injection-moulding or vacuum moulding and other than electrical) 01/01/1998 31/12/2006 -84775910 01/01/1988 31/12/2500 LIBEN Presses for moulding or otherwise forming products from rubber or plastics (excl. injection-moulding machines, extruders, thermoforming machines and machinery for moulding or retreading pneumatic tyres) 01/01/1988 31/12/2500 -84775980 01/01/1998 31/12/2500 LIBEN Machinery for moulding or otherwise forming products from rubber or plastics (excl. injection-moulding machines, extruders, blow-moulding machines, vacuum-moulding and other thermoforming machines; machinery for moulding or retreading pneumatic tyres or for moulding or otherwise forming inner tubes; other presses; machines for the manufacture of semiconductor devices or of electronic integrated circuits)) 01/01/1998 31/12/2500 -84775990 01/01/1988 31/12/1997 LIBEN Machinery for moulding or otherwise forming products from rubber or plastics (excl. injection-moulding machines, extruders, blow moulding machines, vacuum moulding and other thermoforming machines; machinery for moulding or retreading pneumatic tyres or for moulding or otherwise forming inner tubes; other presses) 01/01/1988 31/12/1997 -847780 01/01/1988 31/12/2500 LIBEN Machinery for working rubber or plastics or for the manufacture of products from these materials, not specified or included elsewhere in this chapter 01/01/1988 31/12/2500 -84778010 01/01/1988 31/12/2000 LIBEN Machines for the manufacture of foam products 01/01/1988 31/12/2000 -84778011 01/01/2001 31/12/2500 LIBEN Machines for processing reactive resins 01/01/2001 31/12/2500 -84778019 01/01/2001 31/12/2500 LIBEN Machines for the manufacture of foam products (excl. for processing reactive resins) 01/01/2001 31/12/2500 -84778090 01/01/1988 31/12/2001 LIBEN Machinery for working rubber or plastics or for the manufacture of products from these materials, not specified or included elsewhere in this chapter 01/01/1988 31/12/2001 -84778091 01/01/2002 31/12/2500 LIBEN Size reduction equipment for working rubber or plastics 01/01/2002 31/12/2500 -84778093 01/01/2002 31/12/2500 LIBEN Mixers, kneaders and agitators, for preparing rubber or plastics 01/01/2002 31/12/2500 -84778095 01/01/2002 31/12/2500 LIBEN Cutting, splitting and peeling machines for working rubber or plastics or for the manufacture of products from these materials 01/01/2002 31/12/2500 -84778099 01/01/2002 31/12/2500 LIBEN Machinery for working rubber or plastics or for the manufacture of products from these materials, n.e.s. 01/01/2002 31/12/2500 -847790 01/01/1988 31/12/2500 LIBEN Parts of machinery for working rubber or plastics or for the manufacture of products from these materials, n.e.s. 01/01/1988 31/12/2500 -84779000 01/01/1988 31/12/1989 LIBEN Parts of machinery for working rubber or plastics or for the manufacture of products from these materials, n.e.s. 01/01/1988 31/12/1989 -84779005 01/01/1998 31/12/2006 LIBEN Parts of encapsulation injection-moulding or forming equipment for assembly of semiconductor devices, n.e.s. 01/01/1998 31/12/2006 -84779010 01/01/1990 31/12/2500 LIBEN Parts of machinery for working rubber or plastics or for the manufacture of products from these materials of subheading 8477.10.00 to 8477.80.99, n.e.s., of cast iron or cast steel (excl. parts of machines for the manufacture of semiconductor devices or of electronic integrated circuits) 01/01/1990 31/12/2500 -84779080 01/01/1998 31/12/2500 LIBEN Parts of machinery for working rubber or plastics or for the manufacture of products from these materials of subheading 8477.10.00 to 8477.80.99, n.e.s. (excl. parts of machines for the manufacture of semiconductor devices or of electronic integrated circuits, and of cast iron or cast steel) 01/01/1998 31/12/2500 -84779090 01/01/1990 31/12/1997 LIBEN Parts of machinery of 8477.10.00 to 8477.80.90 (excl. of cast iron or cast steel) 01/01/1990 31/12/1997 -8478 01/01/1988 31/12/2500 LIBEN Machinery for preparing or making up tobacco, not specified or included elsewhere in this chapter; parts thereof 01/01/1988 31/12/2500 -847810 01/01/1988 31/12/2500 LIBEN Machinery for preparing or making up tobacco (excl. dryers and other heating equipment, centrifuges and filter presses) 01/01/1988 31/12/2500 -84781000 01/01/1988 31/12/2500 LIBEN Machinery for preparing or making up tobacco (excl. dryers and other heating equipment, centrifuges and filter presses) 01/01/1988 31/12/2500 -847890 01/01/1988 31/12/2500 LIBEN Parts of machinery for preparing or making up tobacco, n.e.s. 01/01/1988 31/12/2500 -84789000 01/01/1988 31/12/2500 LIBEN Parts of machinery for preparing or making up tobacco, n.e.s. 01/01/1988 31/12/2500 -8479 01/01/1988 31/12/2500 LIBEN Machines and mechanical appliances having individual functions, not specified or included elsewhere in this chapter; parts thereof 01/01/1988 31/12/2500 -847910 01/01/1988 31/12/2500 LIBEN Machinery for public works, building or the like, n.e.s. 01/01/1988 31/12/2500 -84791000 01/01/1988 31/12/1995 LIBEN Machinery for public works, building or the like n.e.s. 01/01/1988 31/12/1995 -84791000 01/01/1996 31/12/2500 LIBEN Machinery for public works, building or the like, n.e.s. 01/01/1996 31/12/2500 -847920 01/01/1988 31/12/2500 LIBEN Machinery for the extraction or preparation of animal or fixed vegetable fats or oils (other than centrifuges, filters and heating appliances) 01/01/1988 31/12/2500 -84792000 01/01/1995 31/12/2500 LIBEN Machinery for the extraction or preparation of animal or fixed vegetable fats or oils (other than centrifuges, filters and heating appliances) 01/01/1995 31/12/2500 -84792010 01/01/1988 31/12/1994 LIBEN Presses for the extraction or preparation of animal or fixed vegetable fats or oil (excl. filter presses) 01/01/1988 31/12/1994 -84792090 01/01/1988 31/12/1994 LIBEN Machinery for the extraction or preparation of animal or fixed vegetable fats or oil (excl. centrifuges, filtering or heating equipment and presses) 01/01/1988 31/12/1994 -847930 01/01/1988 31/12/2500 LIBEN Presses for the manufacture of particle board or fibre building board of wood or other ligneous materials and other machinery for treating wood or cork (excl. dryers, spray guns and the like and machine tools) 01/01/1988 31/12/2500 -84793010 01/01/1988 31/12/2500 LIBEN Presses for the manufacture of particle board or fibre building board of wood or other ligneous materials or for treating wood or cork (excl. machine tools of heading 8465) 01/01/1988 31/12/2500 -84793090 01/01/1988 31/12/2500 LIBEN Machinery for treating wood or cork (excl. dryers, spray guns and the like, machine tools and presses for the manufacture of particle board or fibre building board) 01/01/1988 31/12/2500 -847940 01/01/1988 31/12/2500 LIBEN Rope or cable-making machines (excl. twisting machines of the type used in spinning mills) 01/01/1988 31/12/2500 -84794000 01/01/1988 31/12/2500 LIBEN Rope or cable-making machines (excl. twisting machines of the type used in spinning mills) 01/01/1988 31/12/2500 -847950 01/01/1996 31/12/2500 LIBEN Industrial robots, n.e.s. 01/01/1996 31/12/2500 -84795000 01/01/1996 31/12/2500 LIBEN Industrial robots, n.e.s. 01/01/1996 31/12/2500 -847960 01/01/1996 31/12/2500 LIBEN Evaporative air coolers, n.e.s. 01/01/1996 31/12/2500 -84796000 01/01/1996 31/12/2500 LIBEN Evaporative air coolers, n.e.s. 01/01/1996 31/12/2500 -847971 01/01/2012 31/12/2500 LIBEN Passenger boarding bridges, of a kind used in airports 01/01/2012 31/12/2500 -84797100 01/01/2012 31/12/2500 LIBEN Passenger boarding bridges, of a kind used in airports 01/01/2012 31/12/2500 -847979 01/01/2012 31/12/2500 LIBEN Passenger boarding bridges (excl. of a kind used in airports) 01/01/2012 31/12/2500 -84797900 01/01/2012 31/12/2500 LIBEN Passenger boarding bridges (excl. of a kind used in airports) 01/01/2012 31/12/2500 -847981 01/01/1988 31/12/2500 LIBEN Machinery for treating metal, incl. electric wire coil-winders, n.e.s. (excl. industrial robots, furnaces, dryers, spray guns and the like, high-pressure cleaning equipment and other jet cleaners, rolling millls or machines, machine tools and rope or cable-making machines) 01/01/1988 31/12/2500 -84798100 01/01/1988 31/12/1995 LIBEN Machinery for treating metal, incl. electric wire coil-winders (excl. furnaces, dryers, spray guns and the like, high-pressure cleaning equipment and other jet cleaners, calenders, machine tools and rope or cable-making machines) 01/01/1988 31/12/1995 -84798100 01/01/1996 31/12/2500 LIBEN Machinery for treating metal, incl. electric wire coil-winders, n.e.s. (excl. industrial robots, furnaces, dryers, spray guns and the like, high-pressure cleaning equipment and other jet cleaners, rolling millls or machines, machine tools and rope or cable-making machines) 01/01/1996 31/12/2500 -847982 01/01/1988 31/12/2500 LIBEN Mixing, kneading, crushing, grinding, screening, sifting, homogenising, emulsifying or stirring machines, n.e.s. (excl. industrial robots) 01/01/1988 31/12/2500 -84798200 01/01/1988 31/12/1995 LIBEN Mixing, kneading, crushing, grinding, screening, sifting, homogenising, emulsifying or stirring machines n.e.s. 01/01/1988 31/12/1995 -84798200 01/01/1996 31/12/2500 LIBEN Mixing, kneading, crushing, grinding, screening, sifting, homogenising, emulsifying or stirring machines, n.e.s. (excl. industrial robots) 01/01/1996 31/12/2500 -847989 01/01/1988 31/12/2500 LIBEN Machines and mechanical appliances, n.e.s. 01/01/1988 31/12/2500 -84798910 01/01/1988 31/12/2005 LIBEN Hydropneumatic batteries, mechanical actuators for thrust reversers, toilet units specially designed, air humidifiers and dehumidifiers, non-electric servo-mechanisms, non-electric starter motors, pneumatic starters for turbojets, turbopropellers and other gas turbines, non-electric windscreen wipers, non-electric propeller regulators, for civil aircraft 01/01/1988 31/12/2005 -84798930 01/01/1988 31/12/2500 LIBEN Mobile hydraulic powered mine roof supports 01/01/1988 31/12/2500 -84798950 01/01/1988 31/12/1995 LIBEN Multi-use industrial robots 01/01/1988 31/12/1995 -84798960 01/01/1990 31/12/2500 LIBEN Central greasing systems 01/01/1990 31/12/2500 -84798965 01/01/1995 31/12/2006 LIBEN Apparatus for growing or pulling monocrystal semiconductor boules 01/01/1995 31/12/2006 -84798970 01/01/1995 31/12/2006 LIBEN Apparatus for epitaxial deposition on semiconductor wafers 01/01/1995 31/12/2006 -84798970 01/01/2017 31/12/2500 LIBEN Automated electronic component placement machines of a kind used solely or principally for the manufacture of printed circuit assemblies 01/01/2017 31/12/2500 -84798973 01/01/2000 31/12/2006 LIBEN Apparatus for wet etching, developing, stripping or cleaning semiconductor wafers or of flat panel display substrates, non-electrical 01/01/2000 31/12/2006 -84798975 01/01/1995 31/12/1999 LIBEN Apparatus for wet etching, developing, stripping or cleaning semiconductor wafers, n.e.s. 01/01/1995 31/12/1999 -84798976 01/01/1998 31/12/1999 LIBEN Apparatus for wet etching, developing, stripping or cleaning liquid crystal display substrates (other than electrical) 01/01/1998 31/12/1999 -84798977 01/01/1998 31/12/2006 LIBEN Die attach apparatus and tape automated bonders for assembly of semiconductor devices, n.e.s. 01/01/1998 31/12/2006 -84798979 01/01/1998 31/12/2006 LIBEN Encapsulation equipment for assembly of semiconductor devices, n.e.s. 01/01/1998 31/12/2006 -84798980 01/01/1990 31/12/1994 LIBEN Machines and mechanical appliances n.e.s. 01/01/1990 31/12/1994 -84798990 01/01/1988 31/12/1989 LIBEN Machines having individual functions, (not specified or included elsewhere in this chapter) (excl. 8479.10-00 to 8479.89-50) 01/01/1988 31/12/1989 -84798991 01/01/1998 31/12/2009 LIBEN Machines for glazing and decorating ceramic products 01/01/1998 31/12/2009 -84798995 01/01/1996 31/12/1997 LIBEN Machines, apparatus and mechanical appliances, n.e.s. 01/01/1996 31/12/1997 -84798997 01/01/2006 31/12/2006 LIBEN Machines, apparatus and mechanical appliances, n.e.s. 01/01/2006 31/12/2006 -84798997 01/01/2007 31/12/2009 LIBEN Machines, apparatus and mechanical appliances, n.e.s. 01/01/2007 31/12/2009 -84798997 01/01/2010 31/12/2011 LIBEN Machines, apparatus and mechanical appliances, n.e.s. 01/01/2010 31/12/2011 -84798997 01/01/2012 31/12/2016 LIBEN Machines, apparatus and mechanical appliances, n.e.s. 01/01/2012 31/12/2016 -84798997 01/01/2017 31/12/2500 LIBEN Machines, apparatus and mechanical appliances, n.e.s. 01/01/2017 31/12/2500 -84798998 01/01/1998 31/12/2005 LIBEN Machines, apparatus and mechanical appliances, n.e.s. 01/01/1998 31/12/2005 -84798999 01/01/1995 31/12/1995 LIBEN Machines, apparatus and mechanical appliances, n.e.s. 01/01/1995 31/12/1995 -847990 01/01/1988 31/12/2500 LIBEN Parts of machines and mechanical appliances, n.e.s. 01/01/1988 31/12/2500 -84799010 01/01/1988 31/12/2005 LIBEN Parts of machines and mechanical appliances, n.e.s., for civil aircraft 01/01/1988 31/12/2005 -84799015 01/01/2017 31/12/2500 LIBEN Parts of automated electronic component placement machines of a kind used solely or principally for the manufacture of printed circuit assemblies 01/01/2017 31/12/2500 -84799020 01/01/2007 31/12/2011 LIBEN Parts of machines and mechanical appliances having individual functions, of cast iron or cast steel, n.e.s. 01/01/2007 31/12/2011 -84799020 01/01/2012 31/12/2016 LIBEN Parts of machines and mechanical appliances having individual functions, of cast iron or cast steel, n.e.s. 01/01/2012 31/12/2016 -84799020 01/01/2017 31/12/2500 LIBEN Parts of machines and mechanical appliances having individual functions, of cast iron or cast steel, n.e.s. 01/01/2017 31/12/2500 -84799050 01/01/1998 31/12/2006 LIBEN Parts of apparatus for growing or pulling monocrystal semiconductor boules, apparatus for epitaxial deposition on semiconductor wafers, apparatus for wet etching, developing, stripping or cleaning semiconductor wafers or of flat panel display substrates, die attach apparatus and tape automated bonders for assembly of semiconductor devices and encapsulation equipment for assembly of semiconductor devices, n.e.s. 01/01/1998 31/12/2006 -84799070 01/01/2017 31/12/2500 LIBEN Parts of machines and mechanical appliances having individual functions, n.e.s. (excl. of cast iron or cast steel) 01/01/2017 31/12/2500 -84799080 01/01/2007 31/12/2011 LIBEN Parts of machines and mechanical appliances having individual functions, n.e.s. (excl. of cast iron or cast steel) 01/01/2007 31/12/2011 -84799080 01/01/2012 31/12/2016 LIBEN Parts of machines and mechanical appliances having individual functions, n.e.s. (excl. of cast iron or cast steel) 01/01/2012 31/12/2016 -84799091 01/01/1988 31/12/1988 LIBEN Parts of machines and mechanical appliances, of cast iron or cast steel, n.e.s. 01/01/1988 31/12/1988 -84799092 01/01/1989 31/12/2005 LIBEN Parts of machines and mechanical appliances having individual functions, of cast iron or cast steel, n.e.s. 01/01/1989 31/12/2005 -84799093 01/01/2006 31/12/2006 LIBEN Parts of machines and mechanical appliances having individual functions, of cast iron or cast steel, n.e.s. 01/01/2006 31/12/2006 -84799096 01/01/2006 31/12/2006 LIBEN Parts of machines and mechanical appliances having individual functions, n.e.s. (excl. of cast iron or cast steel) 01/01/2006 31/12/2006 -84799097 01/01/1998 31/12/2005 LIBEN Parts of machines and mechanical appliances having individual functions, n.e.s. 01/01/1998 31/12/2005 -84799098 01/01/1989 31/12/1997 LIBEN Parts of machines of 8479.10.00 to 8479.89-80 (excl. for civil aircraft) (excl. of cast iron or cast steel) 01/01/1989 31/12/1997 -84799099 01/01/1988 31/12/1988 LIBEN Parts of machines and mechanical appliances n.e.s. 01/01/1988 31/12/1988 -8479I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8479; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8479I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8479; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8479I1 01/01/1997 31/12/1999 LIBEN Components of complete industrial plants of heading 8479; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1997 31/12/1999 -8479I100 01/01/1997 31/12/1999 LIBEN Components of complete industrial plants of heading 8479; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1997 31/12/1999 -8479I2 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8479; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -8479I200 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8479; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -8479I3 01/01/1998 31/12/1999 LIBEN Components of complete industrial plants of heading 8479; mechanical engineering and construction of means of transport; instrument engineering 01/01/1998 31/12/1999 -8479I300 01/01/1998 31/12/1999 LIBEN Components of complete industrial plants of heading 8479; mechanical engineering and construction of means of transport; instrument engineering 01/01/1998 31/12/1999 -8479I4 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8479; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8479I400 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8479; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8479I7 01/01/2002 31/12/2005 LIBEN Components of complete industrial plants of heading 8479; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/2002 31/12/2005 -8479I700 01/01/2002 31/12/2005 LIBEN Components of complete industrial plants of heading 8479; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/2002 31/12/2005 -8479I9 01/01/2002 31/12/2005 LIBEN Components of complete industrial plants of heading 8479; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/2002 31/12/2005 -8479I900 01/01/2002 31/12/2005 LIBEN Components of complete industrial plants of heading 8479; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/2002 31/12/2005 -8480 01/01/1988 31/12/2500 LIBEN Moulding boxes for metal foundry; mould bases; moulding patterns; moulds for metal (other than ingot moulds), metal carbides, glass, mineral materials, rubber or plastics (excl. moulds of graphite or other carbons, ceramic or glass moulds and linotype moulds or matrices) 01/01/1988 31/12/2500 -848010 01/01/1988 31/12/2500 LIBEN Moulding boxes for metal foundry 01/01/1988 31/12/2500 -84801000 01/01/1988 31/12/2500 LIBEN Moulding boxes for metal foundry 01/01/1988 31/12/2500 -848020 01/01/1988 31/12/2500 LIBEN Mould bases (other than of graphite or other carbon, ceramic meterials or glass) 01/01/1988 31/12/2500 -84802000 01/01/1995 31/12/2500 LIBEN Mould bases (other than of graphite or other carbon, ceramic meterials or glass) 01/01/1995 31/12/2500 -84802010 01/01/1988 31/12/1994 LIBEN Mould bases of cast iron 01/01/1988 31/12/1994 -84802090 01/01/1988 31/12/1994 LIBEN Mould bases (excl. moulds of graphite or other carbons, ceramic, glass or cast iron moulds) 01/01/1988 31/12/1994 -848030 01/01/1988 31/12/2500 LIBEN Moulding patterns (excl. moulds of graphite or other carbons and ceramic or glass moulds) 01/01/1988 31/12/2500 -84803010 01/01/1988 31/12/2500 LIBEN Moulding patterns of wood 01/01/1988 31/12/2500 -84803090 01/01/1988 31/12/2500 LIBEN Moulding patterns (excl. moulding patterns of graphite or other carbons and ceramic, glass or wooden moulding patterns) 01/01/1988 31/12/2500 -848041 01/01/1988 31/12/2500 LIBEN Injection or compression-type moulds for metal or metal carbides (excl. moulds of graphite or other carbons and ceramic or glass moulds) 01/01/1988 31/12/2500 -84804100 01/01/1988 31/12/2500 LIBEN Injection or compression-type moulds for metal or metal carbides (excl. moulds of graphite or other carbons and ceramic or glass moulds) 01/01/1988 31/12/2500 -848049 01/01/1988 31/12/2500 LIBEN Moulds for metal or metal carbides (excl. moulds of graphite or other carbons, ceramic or glass moulds, linotype moulds or matrices, injection or compression-type moulds and ingot moulds) 01/01/1988 31/12/2500 -84804900 01/01/1988 31/12/2500 LIBEN Moulds for metal or metal carbides (excl. moulds of graphite or other carbons, ceramic or glass moulds, linotype moulds or matrices, injection or compression-type moulds and ingot moulds) 01/01/1988 31/12/2500 -848050 01/01/1988 31/12/2500 LIBEN Moulds for glass (excl. moulds of graphite or other carbons and ceramic moulds) 01/01/1988 31/12/2500 -84805000 01/01/1988 31/12/2500 LIBEN Moulds for glass (excl. moulds of graphite or other carbons and ceramic moulds) 01/01/1988 31/12/2500 -848060 01/01/1988 31/12/2500 LIBEN Moulds for mineral materials (excl. moulds of graphite or other carbons, ceramic or glass moulds) 01/01/1988 31/12/2500 -84806000 01/01/1988 31/12/1997 LIBEN Moulds for mineral materials (excl. moulds of graphite or other carbons and ceramic or glass moulds) 01/01/1988 31/12/1997 -84806000 01/01/2010 31/12/2500 LIBEN Moulds for mineral materials (excl. moulds of graphite or other carbons, ceramic or glass moulds) 01/01/2010 31/12/2500 -84806010 01/01/1998 31/12/2009 LIBEN Moulds for mineral materials, compression types (excl. moulds of graphite or other carbons and ceramic or glass moulds) 01/01/1998 31/12/2009 -84806090 01/01/1998 31/12/2009 LIBEN Moulds for mineral materials (excl. compression types, moulds of graphite or other carbons, ceramic or glass moulds) 01/01/1998 31/12/2009 -848071 01/01/1988 31/12/2500 LIBEN Injection or compression-type moulds for rubber or plastics 01/01/1988 31/12/2500 -84807100 01/01/1988 31/12/1997 LIBEN Injection or compression type moulds for rubber or plastics 01/01/1988 31/12/1997 -84807100 01/01/2007 31/12/2500 LIBEN Injection or compression-type moulds for rubber or plastics 01/01/2007 31/12/2500 -84807110 01/01/1998 31/12/2006 LIBEN Injection or compression-type moulds, of a kind used in the manufacture of semiconductor devices 01/01/1998 31/12/2006 -84807190 01/01/1998 31/12/2006 LIBEN Injection or compression-type moulds for rubber or plastics (other than of a kind used in the manufacture of semiconductor devices) 01/01/1998 31/12/2006 -848079 01/01/1988 31/12/2500 LIBEN Moulds for rubber or plastics (other than injection or compression types) 01/01/1988 31/12/2500 -84807900 01/01/1995 31/12/2500 LIBEN Moulds for rubber or plastics (other than injection or compression types) 01/01/1995 31/12/2500 -84807910 01/01/1988 31/12/1994 LIBEN Moulds for rubber or plastics, of cast iron (excl. injection or compression type moulds) 01/01/1988 31/12/1994 -84807990 01/01/1988 31/12/1994 LIBEN Moulds for rubber or plastics (excl. cast iron and injection or compression type moulds) 01/01/1988 31/12/1994 -8480I0 01/01/1998 31/12/1999 LIBEN Components of complete industrial plants of heading 8480; energy (including production and distribution of steam and hot water) 01/01/1998 31/12/1999 -8480I000 01/01/1998 31/12/1999 LIBEN Components of complete industrial plants of heading 8480; energy (including production and distribution of steam and hot water) 01/01/1998 31/12/1999 -8481 01/01/1988 31/12/2500 LIBEN Taps, cocks, valves and similar appliances for pipes, boiler shells, tanks, vats or the like, incl. pressure-reducing valves and thermostatically controlled valves; parts thereof 01/01/1988 31/12/2500 -848110 01/01/1988 31/12/2500 LIBEN Pressure-reducing valves 01/01/1988 31/12/2500 -84811005 01/01/1999 31/12/2500 LIBEN Pressure-reducing valves combined with filters or lubricators 01/01/1999 31/12/2500 -84811010 01/01/1988 31/12/1991 LIBEN Pressure-reducing valves of iron or steel 01/01/1988 31/12/1991 -84811011 01/01/1992 31/12/1998 LIBEN Pressure-reducing valves, of cast iron or steel, combined with filters or lubricators 01/01/1992 31/12/1998 -84811019 01/01/1992 31/12/2500 LIBEN Pressure-reducing valves of cast iron or of steel (not combined with filters or lubricators) 01/01/1992 31/12/2500 -84811090 01/01/1988 31/12/1991 LIBEN Pressure-reducing valves (excl. those of cast iron or steel) 01/01/1988 31/12/1991 -84811091 01/01/1992 31/12/1998 LIBEN Pressure-reducing valves, of base metal, combined with filters or lubricators 01/01/1992 31/12/1998 -84811099 01/01/1992 31/12/2500 LIBEN Pressure-reducing valves of base metal (not combined with filters or lubricators) 01/01/1992 31/12/2500 -848120 01/01/1988 31/12/2500 LIBEN Valves for oleohydraulic or pneumatic transmission 01/01/1988 31/12/2500 -84812010 01/01/1988 31/12/2500 LIBEN Valves for the control of oleohydraulic power transmission 01/01/1988 31/12/2500 -84812090 01/01/1988 31/12/2500 LIBEN Valves for the control of pneumatic power transmission 01/01/1988 31/12/2500 -848130 01/01/1988 31/12/2500 LIBEN Check "non-return" valves for pipes, boiler shells, tanks, vats or the like 01/01/1988 31/12/2500 -84813010 01/01/1988 31/12/2000 LIBEN Check valves for pneumatic tyres and inner-tubes 01/01/1988 31/12/2000 -84813091 01/01/1988 31/12/2500 LIBEN Check "non-return" valves for pipes, boiler shells, tanks, vats or the like, of cast iron or of steel 01/01/1988 31/12/2500 -84813099 01/01/1988 31/12/2500 LIBEN Check "non-return" valves for pipes, boiler shells, tanks, vats or the like (excl. those of cast iron or steel) 01/01/1988 31/12/2500 -848140 01/01/1988 31/12/2500 LIBEN Safety or relief valves 01/01/1988 31/12/2500 -84814010 01/01/1988 31/12/2500 LIBEN Safety or relief valves of cast iron or of steel 01/01/1988 31/12/2500 -84814090 01/01/1988 31/12/2500 LIBEN Safety or relief valves (excl. those of cast iron or steel) 01/01/1988 31/12/2500 -848180 01/01/1988 31/12/2500 LIBEN Appliances for pipes, boiler shells, tanks, vats or the like (excl. pressure-reducing valves, valves for the control of pneumatic power transmission, check "non-return" valves and safety or relief valves) 01/01/1988 31/12/2500 -84818011 01/01/1988 31/12/2500 LIBEN Mixing valves for sinks, washbasins, bidets, water cisterns, baths and similar fixtures 01/01/1988 31/12/2500 -84818019 01/01/1988 31/12/2500 LIBEN Taps, cocks and valves for sinks, washbasins, bidets, water cisterns, baths and similar fixtures (excl. mixing valves) 01/01/1988 31/12/2500 -84818031 01/01/1988 31/12/2500 LIBEN Thermostatic valves for central heating radiators 01/01/1988 31/12/2500 -84818039 01/01/1988 31/12/2500 LIBEN Central heating radiator valves (excl. thermostatic valves) 01/01/1988 31/12/2500 -84818040 01/01/2001 31/12/2500 LIBEN Valves for pneumatic tyres and inner-tubes 01/01/2001 31/12/2500 -84818051 01/01/1988 31/12/2500 LIBEN Temperature regulators (excl. thermostatic valves for central heating radiators) 01/01/1988 31/12/2500 -84818059 01/01/1988 31/12/2500 LIBEN Process control valves (excl. temperature regulators, pressure-reducing valves, valves for the control of oleohydraulic or pneumatic power transmission, check valves and safety or relief valves, taps, cocks and valves for sinks, washbasins, bidets, water cisterns, baths and similar fixtures and central heating radiator valves) 01/01/1988 31/12/2500 -84818061 01/01/1988 31/12/2500 LIBEN Gate valves of cast iron for pipes, boiler shells, tanks, vats or the like (excl. taps, cocks and valves for sinks, washbasins, bidets, water cisterns, baths and similar fixtures and central heating radiator valves) 01/01/1988 31/12/2500 -84818063 01/01/1988 31/12/2500 LIBEN Gate valves of steel for pipes, boiler shells, tanks, vats or the like (excl. taps, cocks and valves for sinks, washbasins, bidets, water cisterns, baths and similar fixtures and central heating radiator valves) 01/01/1988 31/12/2500 -84818069 01/01/1988 31/12/2500 LIBEN Gate valves for pipes, boiler shells, tanks, vats or the like (excl. of cast iron or steel, and taps, cocks and valves for sinks, washbasins, bidets, water cisterns, baths and similar fixtures and central heating radiator valves) 01/01/1988 31/12/2500 -84818071 01/01/1988 31/12/2500 LIBEN Globe valves of cast iron (excl. temperature regulators, pressure-reducing valves, valves for the control of oleohydraulic or pneumatic power transmission, check valves and safety or relief valves, process control valves, taps, cocks and valves for sinks, washbasins, bidets, water cisterns, baths and similar fixtures, and central heating radiator valves) 01/01/1988 31/12/2500 -84818073 01/01/1988 31/12/2500 LIBEN Globe valves of steel (excl. temperature regulators, pressure-reducing valves, valves for the control of oleohydraulic or pneumatic power transmission, check valves and safety or relief valves, process control valves, taps, cocks and valves for sinks, washbasins, bidets, water cisterns, baths and similar fixtures, and central heating radiator valves) 01/01/1988 31/12/2500 -84818079 01/01/1988 31/12/2500 LIBEN Globe valves (excl. valves of cast iron or steel, temperature regulators, pressure-reducing valves, valves for the control of oleohydraulic or pneumatic power transmission, check valves and safety or relief valves, process control valves, taps, cocks and valves for sinks, washbasins, bidets, water cisterns, baths and similar fixtures, and central heating radiator valves) 01/01/1988 31/12/2500 -84818081 01/01/1988 31/12/2500 LIBEN Ball and plug valves for pipes, boiler shells, tanks, vats or the like (excl. taps, cocks and valves for sinks, washbasins, bidets, water cisterns, baths and similar fixtures, and central heating radiator valves) 01/01/1988 31/12/2500 -84818085 01/01/1988 31/12/2500 LIBEN Butterfly valves for pipes, boiler shells, tanks, vats or the like (excl. check valves) 01/01/1988 31/12/2500 -84818087 01/01/1988 31/12/2500 LIBEN Diaphragm valves for pipes, boiler shells, tanks, vats or the like 01/01/1988 31/12/2500 -84818099 01/01/1988 31/12/2500 LIBEN Appliances for pipes, boiler shells, tanks, vats or the like (excl. pressure-reducing valves, valves for the control of pneumatic power transmission, check "non-return" valves, safety or relief valves, taps, cocks and valves for sinks, baths and similar fixtures, central heating radiator valves, valves for pneumatic tyres and inner-tubes, process control valves, globe valves, gate valves, ball and plug valves, butterfly valves and diaphragm valves) 01/01/1988 31/12/2500 -848190 01/01/1988 31/12/2500 LIBEN Parts of valves and similar articles for pipes, boiler shells, tanks, vats or the like, n.e.s. 01/01/1988 31/12/2500 -84819000 01/01/1988 31/12/2500 LIBEN Parts of valves and similar articles for pipes, boiler shells, tanks, vats or the like, n.e.s. 01/01/1988 31/12/2500 -8481I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8481; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8481I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8481; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8482 01/01/1988 31/12/2500 LIBEN Ball or roller bearings (excl. steel balls of heading 7326); parts thereof 01/01/1988 31/12/2500 -848210 01/01/1988 31/12/2500 LIBEN Ball bearings 01/01/1988 31/12/2500 -84821010 01/01/1988 31/12/2500 LIBEN Ball bearings with greatest external diameter <= 30 mm 01/01/1988 31/12/2500 -84821090 01/01/1988 31/12/2500 LIBEN Ball bearings with greatest external diameter > 30 mm 01/01/1988 31/12/2500 -848220 01/01/1988 31/12/2500 LIBEN Tapered roller bearings, incl. cone and tapered roller assemblies 01/01/1988 31/12/2500 -84822000 01/01/1988 31/12/2500 LIBEN Tapered roller bearings, incl. cone and tapered roller assemblies 01/01/1988 31/12/2500 -848230 01/01/1988 31/12/2500 LIBEN Spherical roller bearings 01/01/1988 31/12/2500 -84823000 01/01/1988 31/12/2500 LIBEN Spherical roller bearings 01/01/1988 31/12/2500 -848240 01/01/1988 31/12/2500 LIBEN Needle roller bearings 01/01/1988 31/12/2500 -84824000 01/01/1988 31/12/2500 LIBEN Needle roller bearings 01/01/1988 31/12/2500 -848250 01/01/1988 31/12/2500 LIBEN Cylindrical roller bearings (excl. needle roller bearings) 01/01/1988 31/12/2500 -84825000 01/01/1988 31/12/2500 LIBEN Cylindrical roller bearings (excl. needle roller bearings) 01/01/1988 31/12/2500 -848280 01/01/1988 31/12/2500 LIBEN Roller bearings, incl. combined ball-roller bearings (excl. ball bearings, tapered roller bearings, incl. cone and tapered roller assemblies, spherical roller bearings, needle and cylindrical roller bearings) 01/01/1988 31/12/2500 -84828000 01/01/1988 31/12/2500 LIBEN Roller bearings, incl. combined ball-roller bearings (excl. ball bearings, tapered roller bearings, incl. cone and tapered roller assemblies, spherical roller bearings, needle and cylindrical roller bearings) 01/01/1988 31/12/2500 -848291 01/01/1988 31/12/2500 LIBEN Balls, needles and rollers for bearings (excl. steel balls of heading 7326) 01/01/1988 31/12/2500 -84829110 01/01/1988 31/12/2500 LIBEN Tapered rollers for bearings 01/01/1988 31/12/2500 -84829190 01/01/1988 31/12/2500 LIBEN Balls, needles and rollers for bearings (excl. tapered rollers and steel balls of heading 7326) 01/01/1988 31/12/2500 -848299 01/01/1988 31/12/2500 LIBEN Parts of ball or roller bearings (excl. balls, needles and rollers), n.e.s. 01/01/1988 31/12/2500 -84829900 01/01/1988 31/12/2500 LIBEN Parts of ball or roller bearings (excl. balls, needles and rollers), n.e.s. 01/01/1988 31/12/2500 -8483 01/01/1988 31/12/2500 LIBEN Transmission shafts, incl. camshafts and crankshafts, and cranks; bearing housings and plain shaft bearings for machines; gears and gearing; ball or roller screws, gear boxes and other speed changers, incl. torque converters; flywheels and pulleys, incl. pulley blocks, clutches and shaft couplings, incl. universal joints; parts thereof 01/01/1988 31/12/2500 -848310 01/01/1988 31/12/2500 LIBEN Transmission shafts, incl. cam shafts and crank shafts, and cranks 01/01/1988 31/12/2500 -84831010 01/01/1988 31/12/2005 LIBEN Transmission shafts, incl. cam shafts and crank shafts, and cranks, for civil aircraft 01/01/1988 31/12/2005 -84831021 01/01/2006 31/12/2500 LIBEN Cranks and crank shafts, of cast iron or cast steel 01/01/2006 31/12/2500 -84831025 01/01/2006 31/12/2500 LIBEN Cranks and crank shafts, of open-die forged steel 01/01/2006 31/12/2500 -84831029 01/01/2006 31/12/2500 LIBEN Cranks and crank shafts (excl. of open-die forged steel or cast iron or cast steel) 01/01/2006 31/12/2500 -84831030 01/01/1988 31/12/1996 LIBEN Crank shafts built up from several parts -composite crank shafts- (excl. those for civil aircraft) 01/01/1988 31/12/1996 -84831041 01/01/1990 31/12/2005 LIBEN Cranks and crank shafts, of cast iron or cast steel (excl. for civil aircraft of subheading 8483.10.10) 01/01/1990 31/12/2005 -84831050 01/01/2006 31/12/2500 LIBEN Articulated shafts 01/01/2006 31/12/2500 -84831051 01/01/1988 31/12/2005 LIBEN Cranks and crank shafts of open-die forged steel (excl. those for civil aircraft of subheading 8483.10.10) 01/01/1988 31/12/2005 -84831053 01/01/1988 31/12/1996 LIBEN Cranks and crank shafts of closed-die forged steel (excl. those for civil aircraft of subheading 8483.10.10 and those built up from several parts) 01/01/1988 31/12/1996 -84831057 01/01/1997 31/12/2005 LIBEN Cranks and crank shafts (excl. for civil aircraft of subheading 8483.10.10 and of open-die forged steel or cast iron or cast steel) 01/01/1997 31/12/2005 -84831058 01/01/1990 31/12/1996 LIBEN Cranks and crank shafts (excl. 8483.10.30) (excl. of open-, close-die forged steel or cast iron or cast steel) (excl. for civil aircraft) 01/01/1990 31/12/1996 -84831059 01/01/1988 31/12/1989 LIBEN Cranks and crank shafts (excl. those for civil aircraft of subheading no 8483.10-10, those of open-die or closed-die forged steel and those built up from several parts) 01/01/1988 31/12/1989 -84831060 01/01/1997 31/12/2005 LIBEN Articulated shafts 01/01/1997 31/12/2005 -84831080 01/01/1997 31/12/2005 LIBEN Main shafts or driving shafts, counter shafts, cam shafts, eccentric shafts and other transmission shafts (excl. those for civil aircraft of subheading 8483.10.10 and other than cranks, crank shafts and articulated shafts) 01/01/1997 31/12/2005 -84831090 01/01/1988 31/12/1996 LIBEN Transmission shafts, incl. cam shafts (excl. those for civil aircraft of subheading 8483.10.10, cranks and crank shafts) 01/01/1988 31/12/1996 -84831095 01/01/2006 31/12/2500 LIBEN Main shafts or driving shafts, counter shafts, cam shafts, eccentric shafts and other transmission shafts (excl. cranks, crank shafts and articulated shafts) 01/01/2006 31/12/2500 -848320 01/01/1988 31/12/2500 LIBEN Bearing housings, incorporating ball or roller bearings, for machinery 01/01/1988 31/12/2500 -84832000 01/01/1988 31/12/1994 LIBEN Bearing housings, incorporating ball or roller bearings, for machinery 01/01/1988 31/12/1994 -84832000 01/01/2010 31/12/2500 LIBEN Bearing housings, incorporating ball or roller bearings, for machinery 01/01/2010 31/12/2500 -84832010 01/01/1995 31/12/2009 LIBEN Bearing housings, incorporating ball or roller bearings, for machines of a kind used in aircraft and spacecraft 01/01/1995 31/12/2009 -84832090 01/01/1995 31/12/2009 LIBEN Bearing housings, incorporating ball or roller bearings, for machines (excl. for use in aircraft and spacecraft) 01/01/1995 31/12/2009 -848330 01/01/1988 31/12/2500 LIBEN Bearing housings for machinery, not incorporating ball or roller bearings; plain shaft bearings for machinery 01/01/1988 31/12/2500 -84833010 01/01/1988 31/12/2005 LIBEN Bearing housings for machinery, not incorporating ball or roller bearings; plain shaft bearings for machinery, for civil aircraft 01/01/1988 31/12/2005 -84833031 01/01/1988 31/12/2005 LIBEN Bearing housings for machinery, for ball or roller bearings (excl. those for civil aircraft of subheading 8483.30.10) 01/01/1988 31/12/2005 -84833032 01/01/2006 31/12/2500 LIBEN Bearing housings for machinery, for ball or roller bearings 01/01/2006 31/12/2500 -84833038 01/01/2006 31/12/2500 LIBEN Bearing housings not incorporating ball or roller bearings, for machinery and plain shaft bearings (excl. those for ball or roller bearings) 01/01/2006 31/12/2500 -84833039 01/01/1988 31/12/1989 LIBEN Bearing housings for machinery, for plain shaft bearings (excl. those for civil aircraft of subheading 8483.30-10) 01/01/1988 31/12/1989 -84833039 01/01/1997 31/12/2005 LIBEN Bearing housings not incorporating ball or roller bearings, for machinery and plain shaft bearings (excl. those for civil aircraft of subheading 8483.30.10 and those for ball or roller bearings) 01/01/1997 31/12/2005 -84833051 01/01/1990 31/12/1996 LIBEN Bearing housings (excl. ball or roller bearings), of cast iron or cast steel (excl. 8483.30.31) (excl. for civil aircraft) 01/01/1990 31/12/1996 -84833059 01/01/1990 31/12/1996 LIBEN Bearing housings (excl. ball or roller bearings) (excl. 8483.10.10 to 8483.10.51) 01/01/1990 31/12/1996 -84833080 01/01/2006 31/12/2500 LIBEN Plain shaft bearings for machinery 01/01/2006 31/12/2500 -84833090 01/01/1988 31/12/2005 LIBEN Plain shaft bearings for machinery (excl. those for civil aircraft of subheading 8483.30.10) 01/01/1988 31/12/2005 -848340 01/01/1988 31/12/2500 LIBEN Gears and gearing for machinery (excl. toothed wheels, chain sprockets and other transmission elements presented separately); ball or roller screws; gear boxes and other speed changers, incl. torque converters 01/01/1988 31/12/2500 -84834010 01/01/1988 31/12/2005 LIBEN Gears and gearing for machinery (other than toothed wheels, chain sprockets and other transmission elements presented separately), ball screws, gear boxes and other speed changers, incl. torque converters, for civil aircraft 01/01/1988 31/12/2005 -84834021 01/01/2006 31/12/2500 LIBEN Spur and helical gears and gearing, for machinery (excl. friction gears, gear boxes and other speed changers) 01/01/2006 31/12/2500 -84834023 01/01/2006 31/12/2500 LIBEN Bevel and bevel-spur gears and gearing, for machinery (excl. friction gears, gear boxes and other speed changers) 01/01/2006 31/12/2500 -84834025 01/01/2006 31/12/2500 LIBEN Worm gear for machinery (excl. friction gears, gear boxes and other speed changers) 01/01/2006 31/12/2500 -84834029 01/01/2006 31/12/2500 LIBEN Gears and gearing, for machinery (excl. friction gears, spur, helical, bevel, bevel-spur gears and gearing and worm gear, gear boxes and other speed changers) 01/01/2006 31/12/2500 -84834030 01/01/2006 31/12/2500 LIBEN Ball or roller screws, for machinery 01/01/2006 31/12/2500 -84834051 01/01/2006 31/12/2500 LIBEN Gear boxes for machinery 01/01/2006 31/12/2500 -84834059 01/01/2006 31/12/2500 LIBEN Speed changers, incl. torque converters, for machinery (excl. gear boxes) 01/01/2006 31/12/2500 -84834082 01/01/1997 31/12/2005 LIBEN Spur and helical gears and gearing, for machinery (excl. those for civil aircraft of subheading 8483.40.10 and other than friction gears, gear boxes and other speed changers) 01/01/1997 31/12/2005 -84834083 01/01/1997 31/12/2005 LIBEN Bevel and bevel-spur gears and gearing, for machinery (excl. those for civil aircraft of subheading 8483.40.10 and other than friction gears, gear boxes and other speed changers) 01/01/1997 31/12/2005 -84834084 01/01/1997 31/12/2005 LIBEN Worm gear for machinery (excl. those for civil aircraft of subheading 8483.40.10 and other than friction gears, gear boxes and other speed changers) 01/01/1997 31/12/2005 -84834085 01/01/1997 31/12/2005 LIBEN Gears and gearing for machinery (excl. those for civil aircraft of subheading 8483.40.10 and other than friction gears, spur, helical, bevel, bevel-spur gears and gearing and worm gear, gear boxes and other speed changers) 01/01/1997 31/12/2005 -84834090 01/01/2006 31/12/2500 LIBEN Gears and gearing, for machinery (excl. ball or roller screws and gears and gearing in general, and toothed wheels, chain sprockets and other transmission elements presented separately) 01/01/2006 31/12/2500 -84834091 01/01/1988 31/12/1996 LIBEN Gears and gearing for machinery, other than gear boxes and other speed changers (excl. those for civil aircraft of subheading 8483.40.10) 01/01/1988 31/12/1996 -84834092 01/01/1996 31/12/2005 LIBEN Ball or roller screws, for machinery (excl. for civil aircraft of subheading 8483.40.10) 01/01/1996 31/12/2005 -84834093 01/01/1988 31/12/1996 LIBEN Gear boxes and other speed changers, incl. torque converters for machinery (excl. those for civil aircraft of subheading 8483.40.10) 01/01/1988 31/12/1996 -84834094 01/01/1997 31/12/2005 LIBEN Gear boxes for machinery (excl. those for civil aircraft of subheading 8483.40.10) 01/01/1997 31/12/2005 -84834096 01/01/1997 31/12/2005 LIBEN Speed changers, incl. torque converters, for machinery (excl. those for civil aircraft of subheading 8483.40.10 and gear boxes) 01/01/1997 31/12/2005 -84834098 01/01/1996 31/12/2005 LIBEN Gears and gearing for machinery (excl. for civil aircraft of subheading 8483.40.10, ball or roller screws and gears and gearing in general, and toothed wheels, chain sprockets and other transmission elements presented separately) 01/01/1996 31/12/2005 -84834099 01/01/1988 31/12/1995 LIBEN Gears and gearing for machinery (excl. those for civil aircraft of subheading 8483.40.10, gear boxes and other speed changers and gears and gearing in general) 01/01/1988 31/12/1995 -848350 01/01/1988 31/12/2500 LIBEN Flywheels and pulleys, incl. pulley blocks 01/01/1988 31/12/2500 -84835010 01/01/1988 31/12/2005 LIBEN Flywheels and pulleys, incl. pulley blocks, for civil aircraft 01/01/1988 31/12/2005 -84835020 01/01/2006 31/12/2500 LIBEN Flywheels and pulleys, incl. pulley blocks, of cast iron or cast steel 01/01/2006 31/12/2500 -84835080 01/01/2006 31/12/2500 LIBEN Flywheels and pulleys, incl. pulley blocks (excl. of cast iron or cast steel) 01/01/2006 31/12/2500 -84835090 01/01/1988 31/12/1989 LIBEN Flywheels and pulleys, including pulley blocks (excl. those for civil aircraft of subheading no 8483.5010) 01/01/1988 31/12/1989 -84835091 01/01/1990 31/12/2005 LIBEN Flywheels and pulleys, incl. pulley blocks, of cast iron or cast steel (excl. for civil aircraft) 01/01/1990 31/12/2005 -84835099 01/01/1990 31/12/2005 LIBEN Flywheels and pulleys, incl. pulley blocks (excl. of cast iron or cast steel and for civil aircraft) 01/01/1990 31/12/2005 -848360 01/01/1988 31/12/2500 LIBEN Clutches and shaft couplings, incl. universal joints, for machinery 01/01/1988 31/12/2500 -84836010 01/01/1988 31/12/2005 LIBEN Clutches and shaft couplings, incl. universal joints, for machinery, for civil aircraft 01/01/1988 31/12/2005 -84836020 01/01/2006 31/12/2500 LIBEN Clutches and shaft couplings, incl. universal joints, of cast iron or cast steel 01/01/2006 31/12/2500 -84836080 01/01/2006 31/12/2500 LIBEN Clutches and shaft couplings, incl. universal joints (excl. of cast iron or cast steel) 01/01/2006 31/12/2500 -84836090 01/01/1988 31/12/1989 LIBEN Clutches and shaft couplings, incl. universal joints, for machinery (excl. those for civil aircraft of subheading no 8483.60-10) 01/01/1988 31/12/1989 -84836091 01/01/1990 31/12/2005 LIBEN Clutches and shaft couplings, incl. universal joints, of cast iron or cast steel (excl. for civil aircraft) 01/01/1990 31/12/2005 -84836099 01/01/1990 31/12/2005 LIBEN Clutches and shaft couplings, incl. universal joints (excl. of cast iron or cast steel and for civil aircraft) 01/01/1990 31/12/2005 -848390 01/01/1988 31/12/2500 LIBEN Toothed wheels, chain sprockets and other transmission elements presented separately; parts of transmission shafts, ball screws, couplings and other articles of heading 8483, n.e.s. 01/01/1988 31/12/2500 -84839010 01/01/1988 31/12/2005 LIBEN Toothed wheels, chain sprockets and other transmission elements presented separately and parts of transmission shafts, ball screws, couplings and other articles of heading 8483, n.e.s., for civil aircraft 01/01/1988 31/12/2005 -84839020 01/01/2006 31/12/2500 LIBEN Parts of bearing housings, n.e.s. 01/01/2006 31/12/2500 -84839030 01/01/1988 31/12/2005 LIBEN Parts of bearing housings, n.e.s. 01/01/1988 31/12/2005 -84839081 01/01/2006 31/12/2500 LIBEN Toothed wheels, chain sprockets and other transmission elements presented separately and parts of transmission shafts and cranks; bearing housings and plain shaft bearings; gears and gearing, ball or roller screws, gear boxes and other speed changers, flywheels and pulleys, clutches and shaft couplings, of cast iron or cast steel, n.e.s. 01/01/2006 31/12/2500 -84839089 01/01/2006 31/12/2500 LIBEN Toothed wheels, chain sprockets and other transmission elements presented separately and parts of transmission shafts and cranks; bearing housings and plain shaft bearings; gears and gearing, ball or roller screws, gear boxes and other speed changers, flywheels and pulleys, clutches and shaft couplings, n.e.s. (excl. of cast iron or cast steel) 01/01/2006 31/12/2500 -84839091 01/01/1988 31/12/1988 LIBEN Parts of transmission shafts, ball screws, couplings and other articles of heading no 8483, of cast steel, n.e.s. 01/01/1988 31/12/1988 -84839092 01/01/1989 31/12/2005 LIBEN Toothed wheels, chain sprockets and other transmission elements presented separately and parts of transmission shafts and cranks; bearing housings and plain shaft bearings; gears and gearing, ball or roller screws, gear boxes and other speed changers, flywheels and pulleys, clutches and shaft couplings, of cast iron or cast steel, n.e.s. (excl. for civil aircraft) 01/01/1989 31/12/2005 -84839098 01/01/1989 31/12/2005 LIBEN Toothed wheels, chain sprockets and other transmission elements presented separately and parts of transmission shafts and cranks; bearing housings and plain shaft bearings; gears and gearing, ball or roller screws, gear boxes and other speed changers, flywheels and pulleys, clutches and shaft couplings, n.e.s. (excl. of cast iron or cast steel and for civil aircraft) 01/01/1989 31/12/2005 -84839099 01/01/1988 31/12/1988 LIBEN Parts of transmission shafts, ball screws, couplings and other articles of heading no 8483, n.e.s. 01/01/1988 31/12/1988 -8484 01/01/1988 31/12/2500 LIBEN Gaskets and similar joints of metal sheeting combined with other material or of two or more layers of metal; sets or assortments of gaskets and similar joints, dissimilar in composition, put up in pouches, envelopes or similar packings; mechanical seals 01/01/1988 31/12/2500 -848410 01/01/1988 31/12/2500 LIBEN Gaskets and similar joints of metal sheeting combined with other material or of two or more layers of metal 01/01/1988 31/12/2500 -84841000 01/01/2006 31/12/2500 LIBEN Gaskets and similar joints of metal sheeting combined with other material or of two or more layers of metal 01/01/2006 31/12/2500 -84841010 01/01/1988 31/12/2005 LIBEN Gaskets and similar joints of metal sheeting combined with other material or of two or more layers of metal, for civil aircraft 01/01/1988 31/12/2005 -84841090 01/01/1988 31/12/2005 LIBEN Gaskets and similar joints of metal sheeting combined with other material or of two or more layers of metal (excl. those for civil aircraft) 01/01/1988 31/12/2005 -848420 01/01/1996 31/12/2500 LIBEN Mechanical seals 01/01/1996 31/12/2500 -84842000 01/01/1996 31/12/2500 LIBEN Mechanical seals 01/01/1996 31/12/2500 -848490 01/01/1988 31/12/2500 LIBEN Sets or assortments of gaskets and similar joints, dissimilar in composition, put up in pouches, envelopes or similar packings 01/01/1988 31/12/2500 -84849000 01/01/2006 31/12/2500 LIBEN Sets or assortments of gaskets and similar joints, dissimilar in composition, put up in pouches, envelopes or similar packings 01/01/2006 31/12/2500 -84849010 01/01/1988 31/12/2005 LIBEN Sets or assortments of gaskets and similar joints, dissimilar in composition, put up in pouches, envelopes or similar packings, for civil aircraft 01/01/1988 31/12/2005 -84849090 01/01/1988 31/12/2005 LIBEN Sets or assortments of gaskets and similar joints, dissimilar in composition, put up in pouches, envelopes or similar packings (excl. those for civil aircraft of subheading 8484.90.10) 01/01/1988 31/12/2005 -8485 01/01/1988 31/12/2006 LIBEN Machinery parts not specified or included elsewhere in this chapter (excl. parts containing electrical connectors, insulators, coils, contacts or other electrical features) 01/01/1988 31/12/2006 -848510 01/01/1988 31/12/2006 LIBEN Ships' or boats' propellers and blades therefor 01/01/1988 31/12/2006 -84851010 01/01/1988 31/12/2006 LIBEN Ships' or boats' propellers and blades therefor, of bronze 01/01/1988 31/12/2006 -84851090 01/01/1988 31/12/2006 LIBEN Ships' or boats' propellers and blades therefor (excl. those of bronze) 01/01/1988 31/12/2006 -848590 01/01/1988 31/12/2006 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, n.e.s. 01/01/1988 31/12/2006 -84859010 01/01/1988 31/12/1995 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of non-malleable cast iron, n.e.s. 01/01/1988 31/12/1995 -84859010 01/01/1996 31/12/2006 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of non-malleable cast iron, n.e.s. 01/01/1996 31/12/2006 -84859030 01/01/1988 31/12/1995 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of malleable cast iron, n.e.s. 01/01/1988 31/12/1995 -84859030 01/01/1996 31/12/2006 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of malleable cast iron, n.e.s. 01/01/1996 31/12/2006 -84859051 01/01/1988 31/12/1995 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of cast steel, n.e.s. 01/01/1988 31/12/1995 -84859051 01/01/1996 31/12/2006 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of cast steel, n.e.s. 01/01/1996 31/12/2006 -84859053 01/01/1988 31/12/1995 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of open-die forged iron or steel, n.e.s. 01/01/1988 31/12/1995 -84859053 01/01/1996 31/12/2006 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of open-die forged iron or steel, n.e.s. 01/01/1996 31/12/2006 -84859055 01/01/1988 31/12/1995 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of closed-die forged iron or steel, n.e.s. 01/01/1988 31/12/1995 -84859055 01/01/1996 31/12/2006 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of closed-die forged iron or steel, n.e.s. 01/01/1996 31/12/2006 -84859059 01/01/1988 31/12/1995 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of iron or steel other than cast, open-die or closed-die forged, n.e.s. 01/01/1988 31/12/1995 -84859059 01/01/1996 31/12/2006 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of iron or steel, n.e.s. (other than cast, open-die or closed-die forged) 01/01/1996 31/12/2006 -84859070 01/01/1988 31/12/1994 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of copper, n.e.s. 01/01/1988 31/12/1994 -84859080 01/01/1995 31/12/1995 LIBEN Machinery parts of chapter 84, with no special use-related features, n.e.s. 01/01/1995 31/12/1995 -84859080 01/01/1996 31/12/2006 LIBEN Machinery parts of chapter 84, not intended for a specific purpose, n.e.s. 01/01/1996 31/12/2006 -84859090 01/01/1988 31/12/1994 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, n.e.s. 01/01/1988 31/12/1994 -8486 01/01/2007 31/12/2500 LIBEN Machines and apparatus of a kind used solely or principally for the manufacture of semiconductor boules or wafers, semiconductor devices, electronic integrated circuits or flat panel displays; machines and apparatus specified in note 9 C to chapter 84; parts and accessories, n.e.s. 01/01/2007 31/12/2500 -848610 01/01/2007 31/12/2500 LIBEN Machines and apparatus for the manufacture of boules or wafers 01/01/2007 31/12/2500 -84861000 01/01/2007 31/12/2500 LIBEN Machines and apparatus for the manufacture of boules or wafers 01/01/2007 31/12/2500 -848620 01/01/2007 31/12/2500 LIBEN Machines and apparatus for the manufacture of semiconductor devices or of electronic integrated circuits 01/01/2007 31/12/2500 -84862000 01/01/2017 31/12/2500 LIBEN Machines and apparatus for the manufacture of semiconductor devices or of electronic integrated circuits 01/01/2017 31/12/2500 -84862010 01/01/2007 31/12/2016 LIBEN Machine tools for working any material by removal of material, operated by ultrasonic processes, for the manufacture of semiconductor devices or of electronic integrated circuits 01/01/2007 31/12/2016 -84862090 01/01/2007 31/12/2016 LIBEN Machines and apparatus for the manufacture of semiconductor devices or of electronic integrated circuits (excl. machine tools for working any material by removal of material operated by ultrasonic processes) 01/01/2007 31/12/2016 -848630 01/01/2007 31/12/2500 LIBEN Machines and apparatus for the manufacture of flat panel displays 01/01/2007 31/12/2500 -84863000 01/01/2017 31/12/2500 LIBEN Machines and apparatus for the manufacture of flat panel displays 01/01/2017 31/12/2500 -84863010 01/01/2007 31/12/2016 LIBEN Apparatus for chemical vapour deposition on liquid crystal devices "LCD" substrates, for the manufacture of flat panel displays 01/01/2007 31/12/2016 -84863030 01/01/2007 31/12/2016 LIBEN Apparatus for dry-etching patterns on liquid cristal devices "LCD" substrates, for the manufacture of flat panel displays 01/01/2007 31/12/2016 -84863050 01/01/2007 31/12/2016 LIBEN Apparatus for physical deposition by sputtering on liquid cristal devices "LCD" substrates, for the manufacture of flat panel displays 01/01/2007 31/12/2016 -84863090 01/01/2007 31/12/2016 LIBEN Machines and apparatus for the manufacture of flat panel displays (excl. apparatus for chemical vapour deposition or for dry-etching patterns on LCD substrates and for physical deposition by sputtering on liquid cristal devices substrates) 01/01/2007 31/12/2016 -848640 01/01/2007 31/12/2500 LIBEN Machines and apparatus specified in Note 9 C to chapter 84 01/01/2007 31/12/2500 -84864000 01/01/2007 31/12/2500 LIBEN Machines and apparatus specified in Note 9 C to chapter 84 01/01/2007 31/12/2500 -848690 01/01/2007 31/12/2500 LIBEN Parts and accessories for machines and apparatus of a kind used solely or principally for the manufacture of semiconductor boules or wafers, semiconductor devices, electronic integrated circuits or flat panel displays, and for machines and apparatus specified in note 9 C to chapter 84, n.e.s. 01/01/2007 31/12/2500 -84869000 01/01/2017 31/12/2500 LIBEN Parts and accessories for machines and apparatus of a kind used solely or principally for the manufacture of semiconductor boules or wafers, semiconductor devices, electronic integrated circuits or flat panel displays, and for machines and apparatus specified in note 9 C to chapter 84, n.e.s. 01/01/2017 31/12/2500 -84869010 01/01/2007 31/12/2016 LIBEN Tool holders, self-opening dieheads and workholders of a kind used solely or principally for the manufacture of semiconductor boules or wafers, semiconductor devices, electronic integrated circuits or flat panel displays 01/01/2007 31/12/2016 -84869020 01/01/2007 31/12/2016 LIBEN Parts of spinners for coating photographic emulsions on liquid crystal devices "LCD" substrates, n.e.s. 01/01/2007 31/12/2016 -84869030 01/01/2007 31/12/2016 LIBEN Parts of deflash machines for cleaning the metal leads of semiconductor packages prior to the electroplating process, n.e.s. 01/01/2007 31/12/2016 -84869040 01/01/2007 31/12/2016 LIBEN Parts of apparatus for physical deposition by sputtering on liquid crystal devices "LCD" substrates, n.e.s. 01/01/2007 31/12/2016 -84869050 01/01/2007 31/12/2016 LIBEN Parts and accessories for apparatus for dry-etching patterns on liquid crystal devices "LCD" substrates, n.e.s. 01/01/2007 31/12/2016 -84869060 01/01/2007 31/12/2016 LIBEN Parts and accessories for apparatus for chemical vapour deposition on liquid crystal devices "LCD" substrates, n.e.s. 01/01/2007 31/12/2016 -84869070 01/01/2007 31/12/2016 LIBEN Parts and accessories for machine-tools operated by ultrasonic processes, n.e.s. 01/01/2007 31/12/2016 -84869090 01/01/2007 31/12/2016 LIBEN Parts and accessories for machines and apparatus of a kind used solely or principally for the manufacture of semiconductor boules or wafers, semiconductor devices, electronic integrated circuits or flat panel displays, and for machines and apparatus specified in note 9 C to chapter 84, n.e.s. (excl. tool holders, self-opening dieheads, workholders, those of spinners for coating photographic emulsions, for physical deposition by sputtering, for dry-etching patterns, for chemical vapour deposition, on liquid crystal devices "LCD" substrates, of deflash machines for cleaning the metal leads of semiconductor packages prior to the electroplating and for machine-tools operated by ultrasonic processes) 01/01/2007 31/12/2016 -8487 01/01/2007 31/12/2500 LIBEN Machinery parts, n.e.s. in chapter 84 (excl. parts containing electrical connectors, insulators, coils, contacts or other electrical features) 01/01/2007 31/12/2500 -848710 01/01/2007 31/12/2500 LIBEN Ships' or boats' propellers and blades therefor 01/01/2007 31/12/2500 -84871010 01/01/2007 31/12/2500 LIBEN Ships' or boats' propellers and blades therefor, of bronze 01/01/2007 31/12/2500 -84871090 01/01/2007 31/12/2500 LIBEN Ships' or boats' propellers and blades therefor (excl. those of bronze) 01/01/2007 31/12/2500 -848790 01/01/2007 31/12/2500 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, n.e.s. 01/01/2007 31/12/2500 -84879010 01/01/2007 31/12/2011 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of non-malleable cast iron, n.e.s. 01/01/2007 31/12/2011 -84879030 01/01/2007 31/12/2011 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of malleable cast iron, n.e.s. 01/01/2007 31/12/2011 -84879040 01/01/2012 31/12/2500 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of cast iron, n.e.s. 01/01/2012 31/12/2500 -84879051 01/01/2007 31/12/2500 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of cast steel, n.e.s. 01/01/2007 31/12/2500 -84879053 01/01/2007 31/12/2011 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of open-die forged iron or steel, n.e.s. 01/01/2007 31/12/2011 -84879055 01/01/2007 31/12/2011 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of closed-die forged iron or steel, n.e.s. 01/01/2007 31/12/2011 -84879057 01/01/2012 31/12/2500 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of open-die forged or closed-die forged iron or steel, n.e.s. 01/01/2012 31/12/2500 -84879059 01/01/2007 31/12/2500 LIBEN Parts of machinery of chapter 84, not intended for a specific purpose, of iron or steel, n.e.s. (other than cast, open-die or closed-die forged) 01/01/2007 31/12/2500 -84879090 01/01/2007 31/12/2016 LIBEN Machinery parts of chapter 84, not intended for a specific purpose, n.e.s. 01/01/2007 31/12/2016 -84879090 01/01/2017 31/12/2500 LIBEN Machinery parts of chapter 84, not intended for a specific purpose, n.e.s. 01/01/2017 31/12/2500 -84CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 84 01/01/2002 31/12/2500 -84CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 84 01/01/2002 31/12/2500 -84CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 84 01/01/2002 31/12/2500 -84II 01/01/1988 31/12/2500 LIBEN Components of complete industrial plants of chapter 84 01/01/1988 31/12/2500 -84III0 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/2005 -84III0 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 84 01/01/2006 31/12/2500 -84III000 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/2005 -84III000 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 84 01/01/2006 31/12/2500 -84III1 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/2005 -84III100 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/2005 -84III2 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 84; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -84III2 01/01/1998 31/12/2005 LIBEN Component of complete industrial plants of chapter 84; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1998 31/12/2005 -84III200 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 84; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -84III200 01/01/1998 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1998 31/12/2005 -84III3 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 84; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -84III3 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; mechanical engineering and construction of means of transport; instrument engineering 01/01/1997 31/12/2005 -84III300 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 84; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -84III300 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; mechanical engineering and construction of means of transport; instrument engineering 01/01/1997 31/12/2005 -84III4 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/2005 -84III400 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/2005 -84III5 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; food, drink and tobacco industry 01/01/1988 31/12/2005 -84III500 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; food, drink and tobacco industry 01/01/1988 31/12/2005 -84III6 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; textile, leather, footwear and clothing industry 01/01/1988 31/12/2005 -84III600 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; textile, leather, footwear and clothing industry 01/01/1988 31/12/2005 -84III7 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 84; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -84III7 01/01/2000 31/12/2005 LIBEN components of complete industrial plants of chapter 84; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/2000 31/12/2005 -84III700 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 84; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -84III700 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/2000 31/12/2005 -84III8 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -84III800 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -84III9 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -84III900 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 84; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -84MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -84MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -84MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -84PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 84 carried by post 01/01/1988 31/12/2500 -84PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 84 carried by post 01/01/1988 31/12/2500 -84PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 84 carried by post 01/01/1988 31/12/2500 -84SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 84 01/01/1988 31/12/2500 -84SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 84 and SITC section 0 01/01/1997 31/12/2001 -84SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 84 and SITC group 000 01/01/1997 31/12/2001 -84SSS7 01/01/1989 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC section 7 01/01/1989 31/12/2500 -84SSS711 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 711 01/01/1997 31/12/2500 -84SSS712 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 712 01/01/1997 31/12/2500 -84SSS713 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 713 01/01/1997 31/12/2500 -84SSS714 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 714 01/01/1997 31/12/2500 -84SSS718 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 718 01/01/1997 31/12/2500 -84SSS721 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 721 01/01/1997 31/12/2500 -84SSS723 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 723 01/01/1990 31/12/2500 -84SSS724 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 724 01/01/1992 31/12/2500 -84SSS725 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 725 01/01/1997 31/12/2500 -84SSS726 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 726 01/01/1997 31/12/2500 -84SSS727 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 727 01/01/1997 31/12/2500 -84SSS728 01/01/1989 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 728 01/01/1989 31/12/2500 -84SSS731 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 731 01/01/1997 31/12/2500 -84SSS733 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 733 01/01/1997 31/12/2500 -84SSS735 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 735 01/01/1997 31/12/2500 -84SSS737 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 737 01/01/1997 31/12/2500 -84SSS741 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 741 01/01/1997 31/12/2500 -84SSS742 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 742 01/01/1997 31/12/2500 -84SSS743 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 743 01/01/1992 31/12/2500 -84SSS744 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 744 01/01/1997 31/12/2500 -84SSS745 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 745 01/01/1997 31/12/2500 -84SSS746 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 746 01/01/1997 31/12/2500 -84SSS747 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 747 01/01/1997 31/12/2500 -84SSS748 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 748 01/01/1997 31/12/2500 -84SSS749 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 749 01/01/1997 31/12/2500 -84SSS751 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 751 01/01/1997 31/12/2500 -84SSS752 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 752 01/01/1997 31/12/2500 -84SSS759 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 759 01/01/1997 31/12/2500 -84SSS775 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 775 01/01/1992 31/12/2500 -84SSS778 01/01/2002 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 778 01/01/2002 31/12/2500 -84SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC section 8 01/01/1997 31/12/2500 -84SSS812 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 812 01/01/1997 31/12/2500 -84SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 84 and SITC section 9 01/01/1988 31/12/1996 -84SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC section 9 01/01/1997 31/12/2500 -84SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 84 and SITC group 999 01/01/1988 31/12/1996 -84SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 84 and SITC group 999 01/01/1997 31/12/2500 -84VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 84 for the assembly of motor vehicles 01/01/1988 31/12/2500 -84VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 84 for the assembly of motor vehicles 01/01/1988 31/12/2500 -84VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 84 for the assembly of motor vehicles 01/01/1988 31/12/2500 -85 01/01/1988 31/12/2500 LIBEN ELECTRICAL MACHINERY AND EQUIPMENT AND PARTS THEREOF; SOUND RECORDERS AND REPRODUCERS, TELEVISION IMAGE AND SOUND RECORDERS AND REPRODUCERS, AND PARTS AND ACCESSORIES OF SUCH ARTICLES 01/01/1988 31/12/2500 -8501 01/01/1988 31/12/2500 LIBEN Electric motors and generators (excl. generating sets) 01/01/1988 31/12/2500 -850110 01/01/1988 31/12/2500 LIBEN Motors of an output <= 37,5 W 01/01/1988 31/12/2500 -85011010 01/01/1988 31/12/2500 LIBEN Synchronous motors of an output <= 18 W 01/01/1988 31/12/2500 -85011091 01/01/1988 31/12/2500 LIBEN Universal AC-DC motors of an output <= 37,5 W 01/01/1988 31/12/2500 -85011093 01/01/1988 31/12/2500 LIBEN AC motors of an output <= 37,5 W (excl. synchronous motors of an output <= 18 W) 01/01/1988 31/12/2500 -85011099 01/01/1988 31/12/2500 LIBEN DC motors of an output <= 37,5 W 01/01/1988 31/12/2500 -850120 01/01/1988 31/12/2500 LIBEN Universal AC-DC motors of an output > 37,5 W 01/01/1988 31/12/2500 -85012000 01/01/2006 31/12/2500 LIBEN Universal AC-DC motors of an output > 37,5 W 01/01/2006 31/12/2500 -85012010 01/01/1988 31/12/2005 LIBEN Universal AC-DC motors, of an output > 735 W but <= 150 kW, for civil aircraft 01/01/1988 31/12/2005 -85012090 01/01/1988 31/12/2005 LIBEN Universal AC-DC motors, of an output > 37,5 W (excl. universal AC-DC motors, of an output > 735 W but <= 150 kW, for civil aircraft of subheading 8501.20.10) 01/01/1988 31/12/2005 -850131 01/01/1988 31/12/2500 LIBEN DC motors of an output > 37,5 W but <= 750 W and DC generators of an output <= 750 W 01/01/1988 31/12/2500 -85013100 01/01/2006 31/12/2500 LIBEN DC motors of an output > 37,5 W but <= 750 W and DC generators of an output <= 750 W 01/01/2006 31/12/2500 -85013110 01/01/1988 31/12/2005 LIBEN DC motors of an output > 735 W but <= 750 W and DC generators of an output <= 750 W, for civil aircraft 01/01/1988 31/12/2005 -85013190 01/01/1988 31/12/2005 LIBEN DC motors of an output > 37,5 W but <= 750 W and DC generators of an output <= 750 W (excl. DC motors of an output > 735 W and DC generators for civil aircraft of subheading 8501.31.10) 01/01/1988 31/12/2005 -850132 01/01/1988 31/12/2500 LIBEN DC motors and DC generators of an output > 750 W but <= 75 kW 01/01/1988 31/12/2500 -85013200 01/01/2011 31/12/2500 LIBEN DC motors and DC generators of an output > 750 W but <= 75 kW 01/01/2011 31/12/2500 -85013210 01/01/1988 31/12/2005 LIBEN DC motors and generators, of an output > 750 W but <= 75 kW, for civil aircraft 01/01/1988 31/12/2005 -85013220 01/01/2006 31/12/2010 LIBEN DC motors and generators, of an output > 750 W but <= 7,5 kW 01/01/2006 31/12/2010 -85013280 01/01/2006 31/12/2010 LIBEN DC motors and generators, of an output > 7,5 kW but <= 75 kW 01/01/2006 31/12/2010 -85013291 01/01/1988 31/12/2005 LIBEN DC motors and generators, of an output > 750 W but <= 7,5 kW (excl. those for civil aircraft of subheading 8501.32.10) 01/01/1988 31/12/2005 -85013299 01/01/1988 31/12/2005 LIBEN DC motors and generators, of an output > 7,5 kW but <= 75 kW (excl. those for civil aircraft of subheading 8501.32.10) 01/01/1988 31/12/2005 -850133 01/01/1988 31/12/2500 LIBEN DC motors and DC generators of an output > 75 kW but <= 375 kW 01/01/1988 31/12/2500 -85013300 01/01/2006 31/12/2500 LIBEN DC motors and DC generators of an output > 75 kW but <= 375 kW 01/01/2006 31/12/2500 -85013310 01/01/1988 31/12/2005 LIBEN DC motors of an output > 75 kW but <= 150 kW and DC generators, of an output > 75 kW but <= 375 kW, for civil aircraft 01/01/1988 31/12/2005 -85013390 01/01/1995 31/12/2005 LIBEN DC motors and generators, of an output of > 75 kW to 375 kW (other than motors of an output of <= 150 kW and generators, for civil aircraft of subheading 8501.33.10) 01/01/1995 31/12/2005 -85013391 01/01/1988 31/12/1994 LIBEN Traction motors of an output > 75 kw but =< 375 kw 01/01/1988 31/12/1994 -85013399 01/01/1988 31/12/1994 LIBEN Dc motors and generators of an output > 75 kw but =< 375 kw (excl. motors of an output =< 150 kw and generators for civil aircraft of subheading no 8501.33-10 and traction motors) 01/01/1988 31/12/1994 -850134 01/01/1988 31/12/2500 LIBEN DC motors and DC generators of an output > 375 kW 01/01/1988 31/12/2500 -85013400 01/01/2011 31/12/2500 LIBEN DC motors and DC generators of an output > 375 kW 01/01/2011 31/12/2500 -85013410 01/01/1988 31/12/2005 LIBEN DC generators of an output > 375 kW, for civil aircraft 01/01/1988 31/12/2005 -85013450 01/01/1988 31/12/2010 LIBEN DC traction motors of an output > 375 kW 01/01/1988 31/12/2010 -85013491 01/01/1988 31/12/2005 LIBEN DC motors and generators, of an output > 375 kW but <= 750 kW (excl. generators for civil aircraft of subheading 8501.34.10 and traction motors) 01/01/1988 31/12/2005 -85013492 01/01/2006 31/12/2010 LIBEN DC motors and generators, of an output > 375 kW but <= 750 kW (excl. traction motors) 01/01/2006 31/12/2010 -85013498 01/01/2006 31/12/2010 LIBEN DC motors and generators, of an output > 750 kW (excl. traction motors) 01/01/2006 31/12/2010 -85013499 01/01/1988 31/12/2005 LIBEN DC motors and generators, of an output > 750 kW (excl. generators for civil aircraft of subheading 8501.34.10 and traction motors) 01/01/1988 31/12/2005 -850140 01/01/1988 31/12/2500 LIBEN AC motors, single-phase, of an output > 37,5 W 01/01/1988 31/12/2500 -85014010 01/01/1988 31/12/2005 LIBEN AC motors, single-phase, of an output > 735 W but <= 150 kW, for civil aircraft 01/01/1988 31/12/2005 -85014020 01/01/2006 31/12/2500 LIBEN AC motors, single phase, of an output of > 37,5 W but <= 750 W 01/01/2006 31/12/2500 -85014080 01/01/2006 31/12/2500 LIBEN AC motors, single phase, of an output of > 750 W 01/01/2006 31/12/2500 -85014090 01/01/1988 31/12/1992 LIBEN Ac motors, single-phase, of an output > 37.5 w (excl. motors of an output > 735 w but =< 150 kw, for civil aircraft of subheading no 8501.40-10) 01/01/1988 31/12/1992 -85014091 01/01/1993 31/12/2005 LIBEN AC motors, single phase, of an output of > 37,5 W to <= 750 W (excl. with an output of > 735 W, for use in civil aircraft of subheading 8501.40.10) 01/01/1993 31/12/2005 -85014099 01/01/1993 31/12/2005 LIBEN AC motors, single phase, of an output of > 750 W (excl. with an output of > 735 W to 150 kW, for use in civil aircraft of subheading 8501.40.10) 01/01/1993 31/12/2005 -850151 01/01/1988 31/12/2500 LIBEN AC motors, multi-phase, of an output > 37,5 W but <= 750 W 01/01/1988 31/12/2500 -85015100 01/01/2006 31/12/2500 LIBEN AC motors, multi-phase, of an output > 37,5 W but <= 750 W 01/01/2006 31/12/2500 -85015110 01/01/1988 31/12/2005 LIBEN AC motors, multi-phase, of an output > 735 W but <= 750 W, for civil aircraft 01/01/1988 31/12/2005 -85015190 01/01/1988 31/12/2005 LIBEN AC motors, multi-phase, of an output > 37,5 W but <= 750 W (excl. AC motors, multi-phase, of an output > 735 W, for civil aircraft of subheading 8501.51.10) 01/01/1988 31/12/2005 -850152 01/01/1988 31/12/2500 LIBEN AC motors, multi-phase, of an output > 750 W but <= 75 kW 01/01/1988 31/12/2500 -85015210 01/01/1988 31/12/2005 LIBEN AC motors, multi-phase, of an output > 750 W but <= 75 kW, for civil aircraft 01/01/1988 31/12/2005 -85015220 01/01/2006 31/12/2500 LIBEN AC motors, multi-phase, of an output > 750 W but <= 7,5 kW 01/01/2006 31/12/2500 -85015230 01/01/2006 31/12/2500 LIBEN AC motors, multi-phase, of an output > 7,5 kW but <= 37 kW 01/01/2006 31/12/2500 -85015290 01/01/2006 31/12/2500 LIBEN AC motors, multi-phase, of an output > 37 kW but <= 75 kW 01/01/2006 31/12/2500 -85015291 01/01/1988 31/12/2005 LIBEN AC motors, multi-phase, of an output > 750 W but <= 7,5 kW (excl. those for civil aircraft of subheading 8501.52.10) 01/01/1988 31/12/2005 -85015293 01/01/1988 31/12/2005 LIBEN AC motors, multi-phase, of an output > 7,5 kW but <= 37 kW (excl. those for civil aircraft of subheading 8501.52.10) 01/01/1988 31/12/2005 -85015299 01/01/1988 31/12/2005 LIBEN AC motors, multi-phase, of an output > 37 kW but <= 75 kW (excl. those for civil aircraft of subheading 8501.52.10) 01/01/1988 31/12/2005 -850153 01/01/1988 31/12/2500 LIBEN AC motors, multi-phase, of an output > 75 kW 01/01/1988 31/12/2500 -85015310 01/01/1988 31/12/2005 LIBEN AC motors, multi-phase, of an output > 75 kW but <= 150 kW, for civil aircraft 01/01/1988 31/12/2005 -85015350 01/01/1988 31/12/2500 LIBEN AC traction motors, multi-phase, of an output > 75 kW 01/01/1988 31/12/2500 -85015381 01/01/2006 31/12/2500 LIBEN AC motors, multi-phase, of an output of > 75 kW but <= 375 kW (excl. traction motors) 01/01/2006 31/12/2500 -85015391 01/01/1988 31/12/1992 LIBEN Ac motors, multi-phase, of an output > 75 kw but =< 750 kw (excl. those of an output =< 150 for civil aircraft of subheading no 8501.53-10 and traction motors) 01/01/1988 31/12/1992 -85015392 01/01/1993 31/12/2005 LIBEN AC motors, multi-phase, of an output of > 75 kW to 375 kW (excl. with an output of <= 150 kW, for use in civil aircraft of subheading 8501.53.10 and traction motors) 01/01/1993 31/12/2005 -85015394 01/01/1993 31/12/2500 LIBEN AC motors, multi-phase, of an output of > 375 kW but <= 750 kW (excl. traction motors) 01/01/1993 31/12/2500 -85015399 01/01/1988 31/12/2500 LIBEN AC motors, multi-phase, of an output > 750 kW (excl. traction motors) 01/01/1988 31/12/2500 -850161 01/01/1988 31/12/2500 LIBEN AC generators "alternators", of an output <= 75 kVA 01/01/1988 31/12/2500 -85016110 01/01/1988 31/12/2005 LIBEN AC generators "alternators", of an output <= 75 kVA, for civil aircraft 01/01/1988 31/12/2005 -85016120 01/01/2006 31/12/2500 LIBEN AC generators "alternators", of an output <= 7,5 kVA 01/01/2006 31/12/2500 -85016180 01/01/2006 31/12/2500 LIBEN AC generators "alternators", of an output > 7,5 kVA but <= 75 kVA 01/01/2006 31/12/2500 -85016191 01/01/1988 31/12/2005 LIBEN AC generators "alternators", of an output <= 7,5 kVA (excl. those for civil aircraft of subheading 8501.61.10) 01/01/1988 31/12/2005 -85016199 01/01/1988 31/12/2005 LIBEN AC generators "alternators", of an output > 7,5 kVA but <= 75 kVA (excl. those for civil aircraft of subheading 8501.61.10) 01/01/1988 31/12/2005 -850162 01/01/1988 31/12/2500 LIBEN AC generators "alternators", of an output > 75 kVA but <= 375 kVA 01/01/1988 31/12/2500 -85016200 01/01/2006 31/12/2500 LIBEN AC generators "alternators", of an output > 75 kVA but <= 375 kVA 01/01/2006 31/12/2500 -85016210 01/01/1988 31/12/2005 LIBEN AC generators "alternators", of an output > 75 kVA but <= 375 kVA, for civil aircraft 01/01/1988 31/12/2005 -85016290 01/01/1988 31/12/2005 LIBEN AC generators "alternators", of an output > 75 kVA but <= 375 kVA (excl. those for civil aircraft of subheading 8501.62.10) 01/01/1988 31/12/2005 -850163 01/01/1988 31/12/2500 LIBEN AC generators "alternators", of an output > 375 kVA but <= 750 kVA 01/01/1988 31/12/2500 -85016300 01/01/2006 31/12/2500 LIBEN AC generators "alternators", of an output > 375 kVA but <= 750 kVA 01/01/2006 31/12/2500 -85016310 01/01/1988 31/12/2005 LIBEN AC generators "alternators", of an output > 375 kVA but <= 750 kVA, for civil aircraft 01/01/1988 31/12/2005 -85016390 01/01/1988 31/12/2005 LIBEN AC generators "alternators", of an output > 375 kVA but <= 750 kVA (excl. those for civil aircraft of subheading 8501.63.10) 01/01/1988 31/12/2005 -850164 01/01/1988 31/12/2500 LIBEN AC generators "alternators", of an output > 750 kVA 01/01/1988 31/12/2500 -85016400 01/01/1988 31/12/2500 LIBEN AC generators "alternators", of an output > 750 kVA 01/01/1988 31/12/2500 -8501I0 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8501; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -8501I000 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8501; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -8502 01/01/1988 31/12/2500 LIBEN Electric generating sets and rotary converters 01/01/1988 31/12/2500 -850211 01/01/1988 31/12/2500 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of an output <= 75 kVA 01/01/1988 31/12/2500 -85021110 01/01/1988 31/12/2005 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engines" of an output <= 75 kVA, for civil aircraft 01/01/1988 31/12/2005 -85021120 01/01/2006 31/12/2500 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of an output <= 7,5 kVA 01/01/2006 31/12/2500 -85021180 01/01/2006 31/12/2500 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of an output > 7,5 kVA but <= 75 kVA 01/01/2006 31/12/2500 -85021190 01/01/1988 31/12/1993 LIBEN Generating sets with compression-ignition internal combustion piston engines -diesel or semi-diesel engines- of an output =< 75 kva (excl. those for civil aircraft of subheading no 8502.11-10) 01/01/1988 31/12/1993 -85021191 01/01/1994 31/12/2005 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engines" of an output <= 7,5 kVA (excl. such sets for use in civil aircraft of subheading 8502.11.10) 01/01/1994 31/12/2005 -85021199 01/01/1994 31/12/2005 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engines" of an output > 7,5 kVA to 75 kVA (excl. such sets for use in civil aircraft of subheading 8502.11.10) 01/01/1994 31/12/2005 -850212 01/01/1988 31/12/2500 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of an output > 75 kVA but <= 375 kVA 01/01/1988 31/12/2500 -85021200 01/01/2006 31/12/2500 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of an output > 75 kVA but <= 375 kVA 01/01/2006 31/12/2500 -85021210 01/01/1988 31/12/2005 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engines" of an output > 75 kVA but <= 375 kVA, for civil aircraft 01/01/1988 31/12/2005 -85021290 01/01/1988 31/12/2005 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engines" of an output > 75 kVA but <= 375 kVA (excl. those for civil aircraft of subheading 8502.12.10) 01/01/1988 31/12/2005 -850213 01/01/1988 31/12/2500 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of an output > 375 kVA 01/01/1988 31/12/2500 -85021310 01/01/1988 31/12/2005 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engines" of an output > 375 kVA, for civil aircraft 01/01/1988 31/12/2005 -85021320 01/01/2006 31/12/2500 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of an output > 375 kVA but <= 750 kVA 01/01/2006 31/12/2500 -85021340 01/01/2006 31/12/2500 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of an output > 750 kVA but <= 2.000 kVA 01/01/2006 31/12/2500 -85021380 01/01/2006 31/12/2500 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of an output > 2.000 kVA 01/01/2006 31/12/2500 -85021391 01/01/1988 31/12/2005 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engines" of an output > 375 kVA but <= 750 kVA (excl. those for civil aircraft of subheading 8502.13.10) 01/01/1988 31/12/2005 -85021393 01/01/1999 31/12/2005 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engines" of an output > 750 kVA but <= 2 000 kVA (excl. those for civil aircraft of subheading 8502.13.10) 01/01/1999 31/12/2005 -85021398 01/01/1999 31/12/2005 LIBEN Generating sets with compression-ignition internal combustion piston engine "diesel or semi-diesel engines" of an output > 2 000 kVA (excl. those for civil aircraft of subheading 8502.13.10) 01/01/1999 31/12/2005 -85021399 01/01/1988 31/12/1998 LIBEN Generating sets with compression-ignition internal combustion piston engines -diesel or semi-diesel engines- of an output > 750 kVA (excl. those for civil aircraft of subheading 8502.13.10) 01/01/1988 31/12/1998 -850220 01/01/1988 31/12/2500 LIBEN Generating sets with spark-ignition internal combustion piston engine 01/01/1988 31/12/2500 -85022010 01/01/1988 31/12/2005 LIBEN Generating sets with spark-ignition internal combustion piston engine, for civil aircraft 01/01/1988 31/12/2005 -85022020 01/01/2006 31/12/2500 LIBEN Generating sets with spark-ignition internal combustion piston engine, of an output <= 7,5 kVA 01/01/2006 31/12/2500 -85022040 01/01/2006 31/12/2500 LIBEN Generating sets with spark-ignition internal combustion piston engine, of an output > 7,5 kVA but <= 375 kVA 01/01/2006 31/12/2500 -85022060 01/01/2006 31/12/2500 LIBEN Generating sets with spark-ignition internal combustion piston engine, of an output > 375 kVA but <= 750 kVA 01/01/2006 31/12/2500 -85022080 01/01/2006 31/12/2500 LIBEN Generating sets with spark-ignition internal combustion piston engine, of an output > 750 kVA 01/01/2006 31/12/2500 -85022091 01/01/1988 31/12/2005 LIBEN Generating sets with spark-ignition internal combustion piston engine, of an output <= 7,5 kVA (excl. those for civil aircraft of subheading 8502.20.10) 01/01/1988 31/12/2005 -85022092 01/01/1999 31/12/2005 LIBEN Generating sets with spark-ignition internal combustion piston engine, of an output > 7,5 kVA but <= 375 kVA (excl. those for civil aircraft of subheading 8502.20.10) 01/01/1999 31/12/2005 -85022094 01/01/1999 31/12/2005 LIBEN Generating sets with spark-ignition internal combustion piston engine, of an output > 375 kVA but <= 750 kVA (excl. those for civil aircraft of subheading 8502.20.10) 01/01/1999 31/12/2005 -85022098 01/01/1999 31/12/2005 LIBEN Generating sets with spark-ignition internal combustion piston engine, of an output > 750 kVA (excl. those for civil aircraft of subheading 8502.20.10) 01/01/1999 31/12/2005 -85022099 01/01/1988 31/12/1998 LIBEN Generating sets with spark-ignition internal combustion piston engines, of an output > 7,5 kVA (excl. those for civil aircraft of subheading 8502.20.10) 01/01/1988 31/12/1998 -850230 01/01/1988 31/12/1995 LIBEN Generating sets powered other than with spark-ignition internal combustion piston engines 01/01/1988 31/12/1995 -85023010 01/01/1988 31/12/1995 LIBEN Generating sets powered other than with spark-ignition internal combustion piston engines, for civil aircraft 01/01/1988 31/12/1995 -85023091 01/01/1988 31/12/1995 LIBEN Turbo-generators 01/01/1988 31/12/1995 -85023099 01/01/1988 31/12/1995 LIBEN Generating sets powered other than with spark-ignition internal combustion piston engines (excl. those for civil aircraft of subheading 8502.30.10 and turbo-generators) 01/01/1988 31/12/1995 -850231 01/01/1996 31/12/2001 LIBEN Generating sets, wind-powered 01/01/1996 31/12/2001 -850231 01/01/2002 31/12/2500 LIBEN Generating sets, wind-powered 01/01/2002 31/12/2500 -85023100 01/01/1996 31/12/2001 LIBEN Generating sets, wind-powered 01/01/1996 31/12/2001 -85023100 01/01/2006 31/12/2500 LIBEN Generating sets, wind-powered 01/01/2006 31/12/2500 -85023110 01/01/2002 31/12/2005 LIBEN Generating sets, wind-powered, for use in civil aircraft 01/01/2002 31/12/2005 -85023190 01/01/2002 31/12/2005 LIBEN Generating sets, wind-powered (excl. those for civil aircraft of subheading 8502.31.10) 01/01/2002 31/12/2005 -850239 01/01/1996 31/12/2500 LIBEN Generating sets (excl. wind-powered and powered by spark-ignition internal combustion piston engine) 01/01/1996 31/12/2500 -85023910 01/01/1996 31/12/2005 LIBEN Generating sets powered other than with spark-ignition internal combustion piston engine, for civil aircraft 01/01/1996 31/12/2005 -85023920 01/01/2006 31/12/2500 LIBEN Turbogenerators 01/01/2006 31/12/2500 -85023980 01/01/2006 31/12/2500 LIBEN Generating sets, non-wind-powered and non-powered by spark-ignition internal combustion piston engine (excl. turbogenerators) 01/01/2006 31/12/2500 -85023991 01/01/1996 31/12/2005 LIBEN Turbogenerators 01/01/1996 31/12/2005 -85023999 01/01/1996 31/12/2005 LIBEN Generating sets (excl. wind-powered and powered by spark-ignition internal combustion piston engine, and those for civil aircraft of subheading 8502.39.10 and turbogenerators) 01/01/1996 31/12/2005 -850240 01/01/1988 31/12/2500 LIBEN Electric rotary converters 01/01/1988 31/12/2500 -85024000 01/01/2006 31/12/2500 LIBEN Electric rotary converters 01/01/2006 31/12/2500 -85024010 01/01/1988 31/12/2005 LIBEN Electric rotary converters, for civil aircraft 01/01/1988 31/12/2005 -85024090 01/01/1988 31/12/2005 LIBEN Electric rotary converters (excl. those for civil aircraft of subheading 8502.40.10) 01/01/1988 31/12/2005 -8502I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8502; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8502I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8502; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8502I1 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8502; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -8502I100 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8502; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -8502I2 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8502; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -8502I200 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8502; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -8502I3 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8502; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -8502I300 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8502; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -8502I7 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8502; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -8502I700 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8502; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -8503 01/01/1988 31/12/2500 LIBEN Parts suitable for use solely or principally with electric motors and generators, electric generating sets and rotary converters, n.e.s. 01/01/1988 31/12/2500 -850300 01/01/1988 31/12/2500 LIBEN Parts suitable for use solely or principally with electric motors and generators, electric generating sets and rotary converters, n.e.s. 01/01/1988 31/12/2500 -85030010 01/01/1988 31/12/2500 LIBEN Non-magnetic retaining rings for electric motors and electric generating sets 01/01/1988 31/12/2500 -85030090 01/01/1988 31/12/1989 LIBEN Parts suitable for use solely or principally with electric motors and generators, electric generating sets and rotary converters, n.e.s. (excl. those of cast iron or cast steel) 01/01/1988 31/12/1989 -85030091 01/01/1990 31/12/2500 LIBEN Parts suitable for use solely or principally with electric motors and generators, electric generating sets and rotary converters, n.e.s., of cast iron or cast steel 01/01/1990 31/12/2500 -85030099 01/01/1990 31/12/2500 LIBEN Parts suitable for use solely or principally with electric motors and generators, electric generating sets and rotary converters, n.e.s. (excl. non-magnetic retaining rings and of cast iron or cast steel) 01/01/1990 31/12/2500 -8503I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8503; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8503I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8503; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8504 01/01/1988 31/12/2500 LIBEN Electrical transformers, static converters, e.g. rectifiers, and inductors; parts thereof 01/01/1988 31/12/2500 -850410 01/01/1988 31/12/2500 LIBEN Ballasts for discharge lamps or tubes 01/01/1988 31/12/2500 -85041010 01/01/1988 31/12/2005 LIBEN Ballasts for discharge lamps or tubes, for civil aircraft 01/01/1988 31/12/2005 -85041020 01/01/2006 31/12/2500 LIBEN Inductors, whether or not connected with a capacitor 01/01/2006 31/12/2500 -85041080 01/01/2006 31/12/2500 LIBEN Ballasts for discharge lamps or tubes (excl. inductors, whether or not connected with a capacitor) 01/01/2006 31/12/2500 -85041091 01/01/1988 31/12/2005 LIBEN Inductors, whether or not connected with a capacitor (excl. those for civil aircraft of subheading 8504.10.10) 01/01/1988 31/12/2005 -85041099 01/01/1988 31/12/2005 LIBEN Ballasts for discharge lamps or tubes (excl. those for civil aircraft of subheading 8504.10.10 and inductors, whether or not connected with a capacitor) 01/01/1988 31/12/2005 -850421 01/01/1988 31/12/2500 LIBEN Liquid dielectric transformers, having a power handling capacity <= 650 kVA 01/01/1988 31/12/2500 -85042100 01/01/1988 31/12/2500 LIBEN Liquid dielectric transformers, having a power handling capacity <= 650 kVA 01/01/1988 31/12/2500 -850422 01/01/1988 31/12/2500 LIBEN Liquid dielectric transformers, having a power handling capacity > 650 kVA but <= 10.000 kVA 01/01/1988 31/12/2500 -85042210 01/01/1988 31/12/2500 LIBEN Liquid dielectric transformers, having a power handling capacity > 650 kVA but <= 1.600 kVA 01/01/1988 31/12/2500 -85042290 01/01/1988 31/12/2500 LIBEN Liquid dielectric transformers, having a power handling capacity > 1.600 kVA but <= 10.000 kVA 01/01/1988 31/12/2500 -850423 01/01/1988 31/12/2500 LIBEN Liquid dielectric transformers, having a power handling capacity > 10.000 kVA 01/01/1988 31/12/2500 -85042300 01/01/1988 31/12/2500 LIBEN Liquid dielectric transformers, having a power handling capacity > 10.000 kVA 01/01/1988 31/12/2500 -850431 01/01/1988 31/12/2500 LIBEN Transformers having a power handling capacity <= 1 kVA (excl. liquid dielectric transformers) 01/01/1988 31/12/2500 -85043110 01/01/1988 31/12/2005 LIBEN Transformers having a power handling capacity <= 1 kVA, for civil aircraft (excl. liquid dielectric transformers) 01/01/1988 31/12/2005 -85043121 01/01/2006 31/12/2500 LIBEN Measuring transformers for voltage measurement, having a power handling capacity <= 1 kVA 01/01/2006 31/12/2500 -85043129 01/01/2006 31/12/2500 LIBEN Measuring transformers having a power handling capacity <= 1 kVA (other than for voltage measurement) 01/01/2006 31/12/2500 -85043131 01/01/1988 31/12/2005 LIBEN Measuring transformers for voltage measurement, having a power handling capacity <= 1 kVA (excl. those for civil aircraft of subheading 8504.31.10) 01/01/1988 31/12/2005 -85043139 01/01/1988 31/12/2005 LIBEN Measuring transformers having a power handling capacity <= 1 kVA (excl. those for civil aircraft of subheading 8504.31.10 and other than for voltage measurement) 01/01/1988 31/12/2005 -85043180 01/01/2006 31/12/2500 LIBEN Transformers having a power handling capacity <= 1 kVA (excl. liquid dielectric transformers) 01/01/2006 31/12/2500 -85043190 01/01/1988 31/12/2005 LIBEN Transformers having a power handling capacity <= 1 kVA (excl. those for civil aircraft of subheading 8504.31.10, measuring transformers and liquid dielectric transformers) 01/01/1988 31/12/2005 -850432 01/01/1988 31/12/2500 LIBEN Transformers, having a power handling capacity > 1 kVA but <= 16 kVA (excl. liquid dielectric transformers) 01/01/1988 31/12/2500 -85043200 01/01/2011 31/12/2500 LIBEN Transformers, having a power handling capacity > 1 kVA but <= 16 kVA (excl. liquid dielectric transformers) 01/01/2011 31/12/2500 -85043210 01/01/1988 31/12/2005 LIBEN Transformers having a power handling capacity > 1 kVA but <= 16 kVA, for civil aircraft (excl. liquid dielectric transformers) 01/01/1988 31/12/2005 -85043220 01/01/2006 31/12/2010 LIBEN Measuring transformers having a power handling capacity of > 1 kVA but <= 16 kVA 01/01/2006 31/12/2010 -85043230 01/01/1995 31/12/2005 LIBEN Measuring transformers having a power handling capacity of > 1 kVA to 16 kVA (other than for civil aircraft of subheading 8504.32.10) 01/01/1995 31/12/2005 -85043231 01/01/1988 31/12/1994 LIBEN Measuring transformers, for voltage measurement, having a power handling capacity > 1 kva but =< 16 kva (excl. those for civil aircraft of subheading no 8504.32-10) 01/01/1988 31/12/1994 -85043239 01/01/1988 31/12/1994 LIBEN Measuring transformers, other than for voltage measurement, having a power handling capacity > 1kva but =< 16 kva (excl. those for civil aircraft of subheading no 8504.32-10) 01/01/1988 31/12/1994 -85043280 01/01/2006 31/12/2010 LIBEN Transformers having a power handling capacity > 1 kVA but <= 16 kVA (excl. liquid dielectric transformers) 01/01/2006 31/12/2010 -85043290 01/01/1988 31/12/2005 LIBEN Transformers having a power handling capacity > 1 kVA but <= 16 kVA (excl. those for civil aircraft of subheading 8504.32.10, measuring transformers and liquid dielectric transformers) 01/01/1988 31/12/2005 -850433 01/01/1988 31/12/2500 LIBEN Transformers having a power handling capacity > 16 kVA but <= 500 kVA (excl. liquid dielectric transformers) 01/01/1988 31/12/2500 -85043300 01/01/2006 31/12/2500 LIBEN Transformers having a power handling capacity > 16 kVA but <= 500 kVA (excl. liquid dielectric transformers) 01/01/2006 31/12/2500 -85043310 01/01/1988 31/12/2005 LIBEN Transformers having a power handling capacity > 16 kVA but <= 500 kVA, for civil aircraft (excl. liquid dielectric transformers) 01/01/1988 31/12/2005 -85043390 01/01/1988 31/12/2005 LIBEN Transformers having a power handling capacity > 16 kVA but <= 500 kVA (excl. those for civil aircraft of subheading 8504.33.10 and liquid dielectric transformers) 01/01/1988 31/12/2005 -850434 01/01/1988 31/12/2500 LIBEN Transformers having a power handling capacity > 500 kVA (excl. liquid dielectric transformers) 01/01/1988 31/12/2500 -85043400 01/01/1988 31/12/2500 LIBEN Transformers having a power handling capacity > 500 kVA (excl. liquid dielectric transformers) 01/01/1988 31/12/2500 -850440 01/01/1988 31/12/2500 LIBEN Static converters 01/01/1988 31/12/2500 -85044010 01/01/1988 31/12/2005 LIBEN Static converters, for civil aircraft 01/01/1988 31/12/2005 -85044020 01/01/2000 31/12/2005 LIBEN Static converters of a kind used with telecommunication apparatus, automatic data-processing machines and units thereof (excl. for civil aircraft of subheading 8504.40.10) 01/01/2000 31/12/2005 -85044030 01/01/1996 31/12/1999 LIBEN Power supply units of a kind used with automatic data-processing machines (excl. for civil aircraft of subheading 8504.40.10) 01/01/1996 31/12/1999 -85044030 01/01/2006 31/12/2500 LIBEN Static converters of a kind used with telecommunication apparatus, automatic data-processing machines and units thereof 01/01/2006 31/12/2500 -85044035 01/01/1998 31/12/1999 LIBEN Static converters of a kind used with telecommunication apparatus, automatic data-processing machines and units thereof (excl. for civil aircraft of subheading 8504.40.10 and power supply units of a kind used with automatic data-processing machines) 01/01/1998 31/12/1999 -85044040 01/01/2006 31/12/2010 LIBEN Polycrystalline semiconductor rectifiers 01/01/2006 31/12/2010 -85044050 01/01/1988 31/12/2005 LIBEN Polycrystalline semiconductor rectifiers (excl. those for civil aircraft of subheading 8504.40.10) 01/01/1988 31/12/2005 -85044055 01/01/2006 31/12/2500 LIBEN Accumulator chargers (excl. of a kind used with telecommunication apparatus, automatic data-processing machines and units thereof, and polycrystalline semiconductor rectifiers) 01/01/2006 31/12/2500 -85044081 01/01/2006 31/12/2010 LIBEN Rectifiers (excl. polycrystalline semiconductor rectifiers and other than of a kind used with telecommunication apparatus, automatic data-processing machines and units thereof) 01/01/2006 31/12/2010 -85044082 01/01/2011 31/12/2500 LIBEN Rectifiers (excl. of a kind used with telecommunication apparatus, automatic data-processing machines and units thereof) 01/01/2011 31/12/2500 -85044084 01/01/2006 31/12/2500 LIBEN Inverters having power handling capacity <= 7,5 kVA (excl. of a kind used with telecommunication apparatus, automatic data-processing machines and units thereof) 01/01/2006 31/12/2500 -85044088 01/01/2006 31/12/2500 LIBEN Inverters having power handling capacity > 7,5 kVA (excl. of a kind used with telecommunication apparatus, automatic data-processing machines and units thereof) 01/01/2006 31/12/2500 -85044090 01/01/2006 31/12/2500 LIBEN Static converters (excl. of a kind used with telecommunication apparatus, automatic data-processing machines and units thereof, battery chargers, polycrystalline semiconductor and other rectifiers, and a.c. converters) 01/01/2006 31/12/2500 -85044091 01/01/1988 31/12/1995 LIBEN Converters specially designed for welding, without welding equipment (excl. those for civil aircraft of subheading 8504.40.10 and polycrystalline semiconductors) 01/01/1988 31/12/1995 -85044093 01/01/1988 31/12/2005 LIBEN Accumulator chargers (excl. those for civil aircraft of subheading 8504.40.10, of a kind used with telecommunication apparatus, automatic data-processing machines and units thereof, and polycrystalline semiconductor rectifiers) 01/01/1988 31/12/2005 -85044094 01/01/1991 31/12/2005 LIBEN Rectifiers (excl. polycrystalline semiconductor rectifiers and other than for civil aircraft of subheading 8504.40.10 and of a kind used with telecommunication apparatus, automatic data-processing machines and units thereof) 01/01/1991 31/12/2005 -85044096 01/01/1991 31/12/2005 LIBEN Inverters having power handling capacity <= 7,5 kVA (excl. for civil aircraft and of a kind used with telecommunication apparatus, automatic data-processing machines and units thereof) 01/01/1991 31/12/2005 -85044097 01/01/1991 31/12/2005 LIBEN Inverters having power handling capacity > 7,5 kVA (excl. for civil aircraft and of a kind used with telecommunication apparatus, automatic data-processing machines and units thereof) 01/01/1991 31/12/2005 -85044098 01/01/1991 31/12/1995 LIBEN Static converters (excl. 8504.40.10 to 8504.40.97) 01/01/1991 31/12/1995 -85044099 01/01/1988 31/12/1990 LIBEN Static converters (excl. those for civil aircraft of subheading no 8504.40-10, accumulator chargers, converters specially designed for welding and polycrystalline semiconductors) 01/01/1988 31/12/1990 -85044099 01/01/1996 31/12/1997 LIBEN Static converters (excl. for civil aircraft of subheading 8504.40.10, battery chargers, power supply units of a kind used with automatic data-processing machines, polycrystalline semiconductor and other rectifiers, and a.c. converters) 01/01/1996 31/12/1997 -85044099 01/01/1998 31/12/2005 LIBEN Static converters (excl. for civil aircraft of subheading 8504.40.10, of a kind used with telecommunication apparatus, automatic data-processing machines and units thereof, battery chargers, polycrystalline semiconductor and other rectifiers, and a.c. converters) 01/01/1998 31/12/2005 -850450 01/01/1988 31/12/2500 LIBEN Inductors (excl. inductors for discharge lamps or tubes) 01/01/1988 31/12/2500 -85045000 01/01/2020 31/12/2500 LIBEN Inductors (excl. inductors for discharge lamps or tubes) 01/01/2020 31/12/2500 -85045010 01/01/1988 31/12/2005 LIBEN Inductors, for civil aircraft (excl. inductors for discharge lamps or tubes) 01/01/1988 31/12/2005 -85045020 01/01/2006 31/12/2019 LIBEN Inductors of a kind used with telecommunication apparatus and for power supplies for automatic data-processing machines and units thereof (excl. those for discharge lamps or tubes) 01/01/2006 31/12/2019 -85045030 01/01/1998 31/12/2005 LIBEN Inductors of a kind used with telecommunication apparatus and for power supplies for automatic data-processing machines and units thereof (excl. for civil aircraft of subheading 8504.50.10 and those for discharge lamps or tubes) 01/01/1998 31/12/2005 -85045080 01/01/1998 31/12/2005 LIBEN Inductors (excl. for civil aircraft of subheading 8504.50.10, of a kind used with telecommunication apparatus and for power supplies for automatic data-processing machines and units thereof and those for discharge lamps or tubes) 01/01/1998 31/12/2005 -85045090 01/01/1988 31/12/1997 LIBEN Inductors (excl. inductors for civil aircraft of subheading 8504.50.10 and those for discharge lamps or tubes) 01/01/1988 31/12/1997 -85045095 01/01/2006 31/12/2019 LIBEN Inductors (excl. of a kind used with telecommunication apparatus and for power supplies for automatic data-processing machines and units thereof and those for discharge lamps or tubes) 01/01/2006 31/12/2019 -850450SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 8504 50 01/01/2006 31/12/2500 -850490 01/01/1988 31/12/2500 LIBEN Parts of electrical transformers and inductors, n.e.s. 01/01/1988 31/12/2500 -85049005 01/01/1998 31/12/2019 LIBEN Electronic assemblies of inductors of a kind used with telecommunication apparatus and for power supplies for automatic data-processing machines and units thereof, n.e.s. 01/01/1998 31/12/2019 -85049011 01/01/1988 31/12/2016 LIBEN Ferrite cores for transformers and inductors 01/01/1988 31/12/2016 -85049011 01/01/2017 31/12/2500 LIBEN Ferrite cores for transformers and inductors 01/01/2017 31/12/2500 -85049013 01/01/2021 31/12/2500 LIBEN Steel laminations and cores, whether or not stacked or wound, for transformers and inductors 01/01/2021 31/12/2500 -85049017 01/01/2021 31/12/2500 LIBEN Parts of transformers and inductors, n.e.s. (excl. ferrite cores and steel laminations and cores) 01/01/2021 31/12/2500 -85049018 01/01/1998 31/12/2016 LIBEN Parts of transformers and inductors, n.e.s. (excl. electronic assemblies of inductors of a kind used with telecommunication apparatus and for power supplies for automatic data-processing machines and units thereof, and ferrite cores) 01/01/1998 31/12/2016 -85049018 01/01/2017 31/12/2019 LIBEN Parts of transformers and inductors, n.e.s. (excl. electronic assemblies of inductors of a kind used with telecommunication apparatus and for power supplies for automatic data-processing machines and units thereof, and ferrite cores) 01/01/2017 31/12/2019 -85049019 01/01/1988 31/12/1997 LIBEN Parts of transformers and inductors n.e.s. (excl. ferrite cores) 01/01/1988 31/12/1997 -85049019 01/01/2020 31/12/2020 LIBEN Parts of transformers and inductors, n.e.s. (excl. ferrite cores) 01/01/2020 31/12/2020 -85049090 01/01/1988 31/12/1997 LIBEN Parts of static converters n.e.s. 01/01/1988 31/12/1997 -85049090 01/01/2020 31/12/2500 LIBEN Parts of static converters, n.e.s. 01/01/2020 31/12/2500 -85049091 01/01/1998 31/12/2019 LIBEN Electronic assemblies of static converters of a kind used with telecommunication apparatus, automatic data-processing machines and units thereof, n.e.s. 01/01/1998 31/12/2019 -85049099 01/01/1998 31/12/2016 LIBEN Parts of static converters, n.e.s. (excl. electronic assemblies of a kind used with telecommunication apparatus, automatic data-processing machines and units thereof) 01/01/1998 31/12/2016 -85049099 01/01/2017 31/12/2019 LIBEN Parts of static converters, n.e.s. (excl. electronic assemblies of a kind used with telecommunication apparatus, automatic data-processing machines and units thereof) 01/01/2017 31/12/2019 -8504I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8504; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8504I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8504; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8504I1 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8504; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -8504I100 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8504; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -8504I3 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8504; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -8504I300 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8504; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -8504I4 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8504; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8504I400 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8504; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8505 01/01/1988 31/12/2500 LIBEN Electromagnets (excl. magnets for medical use); permanent magnets and articles intended to become permanent magnets after magnetization; electromagnetic or permanent magnet chucks, clamps and similar holding devices; electromagnetic couplings, clutches and brakes; electromagnetic lifting heads; parts thereof 01/01/1988 31/12/2500 -850511 01/01/1988 31/12/2500 LIBEN Permanent magnets of metal and articles intended to become permanent magnets after magnetization (excl. chucks, clamps and similar holding devices) 01/01/1988 31/12/2500 -85051100 01/01/1988 31/12/2500 LIBEN Permanent magnets of metal and articles intended to become permanent magnets after magnetization (excl. chucks, clamps and similar holding devices) 01/01/1988 31/12/2500 -850519 01/01/1988 31/12/2500 LIBEN Permanent magnets and articles intended to become permanent magnets after magnetization, of materials other than metal 01/01/1988 31/12/2500 -85051910 01/01/1988 31/12/2500 LIBEN Permanent magnets of agglomerated ferrite 01/01/1988 31/12/2500 -85051990 01/01/1988 31/12/2500 LIBEN Permanent magnets and articles intended to become permanent magnets after magnetization, of materials other than metal or agglomerated ferrite 01/01/1988 31/12/2500 -850520 01/01/1988 31/12/2500 LIBEN Electromagnetic couplings, clutches and brakes 01/01/1988 31/12/2500 -85052000 01/01/1988 31/12/2500 LIBEN Electromagnetic couplings, clutches and brakes 01/01/1988 31/12/2500 -850530 01/01/1988 31/12/2006 LIBEN Electromagnetic lifting heads 01/01/1988 31/12/2006 -85053000 01/01/1988 31/12/2006 LIBEN Electromagnetic lifting heads 01/01/1988 31/12/2006 -850590 01/01/1988 31/12/2500 LIBEN Electromagnets and electromagnetic lifting heads, and their parts (excl. magnets for medical use); electromagnetic or permanent magnet chucks, clamps and similar holding devices and their parts, n.e.s. 01/01/1988 31/12/2500 -85059010 01/01/1988 31/12/2010 LIBEN Electromagnets (excl. magnets for medical use) 01/01/1988 31/12/2010 -85059020 01/01/2011 31/12/2016 LIBEN Electromagnets; electromagnetic or permanent magnet chucks, clamps and similar holding devices 01/01/2011 31/12/2016 -85059021 01/01/2017 31/12/2500 LIBEN Electromagnets of a kind used solely or principally for magnetic resonance imaging apparatus other than electromagnets of heading 9018 01/01/2017 31/12/2500 -85059029 01/01/2017 31/12/2500 LIBEN Electromagnets; electromagnetic or permanent magnet chucks, clamps and similar holding devices (excl. electromagnets used for magnetic resonance imaging apparatus) 01/01/2017 31/12/2500 -85059030 01/01/1988 31/12/2010 LIBEN Electromagnetic or permanent magnet chucks, clamps and similar holding devices 01/01/1988 31/12/2010 -85059050 01/01/2007 31/12/2500 LIBEN Electromagnetic lifting heads 01/01/2007 31/12/2500 -85059090 01/01/1988 31/12/2500 LIBEN Parts of permanent magnets, electromagnets, electromagnetic clutches, couplings, brakes and lifting heads, electromagnetic or permanent magnet holding devices, n.e.s. 01/01/1988 31/12/2500 -8506 01/01/1988 31/12/2500 LIBEN Primary cells and primary batteries, electrical; parts thereof (excl. spent) 01/01/1988 31/12/2500 -850610 01/01/1996 31/12/2500 LIBEN Manganese dioxide cells and batteries (excl. spent) 01/01/1996 31/12/2500 -85061011 01/01/1996 31/12/2500 LIBEN Manganese dioxide cells and batteries, alkaline, in the form of cylindrical cells (excl. spent) 01/01/1996 31/12/2500 -85061015 01/01/1996 31/12/2010 LIBEN Manganese dioxide cells and batteries, alkaline, in the form of button cells (excl. spent) 01/01/1996 31/12/2010 -85061018 01/01/2011 31/12/2500 LIBEN Manganese dioxide cells and batteries, alkaline (excl. spent, and cylindrical cells) 01/01/2011 31/12/2500 -85061019 01/01/1996 31/12/2010 LIBEN Manganese dioxide cells and batteries, alkaline (excl. spent, and in the form of cylindrical cells and button cells) 01/01/1996 31/12/2010 -85061091 01/01/1996 31/12/2500 LIBEN Manganese dioxide cells and batteries, non-alkaline, in the form of cylindrical cells (excl. spent) 01/01/1996 31/12/2500 -85061095 01/01/1996 31/12/2010 LIBEN Manganese dioxide cells and batteries, non-alkaline, in the form of button cells (excl. spent) 01/01/1996 31/12/2010 -85061098 01/01/2011 31/12/2500 LIBEN Manganese dioxide cells and batteries, non-alkaline (excl. spent, and cylindrical cells) 01/01/2011 31/12/2500 -85061099 01/01/1996 31/12/2010 LIBEN Manganese dioxide cells and batteries, non-alkaline (excl. spent, and in the form of cylindrical or button cells) 01/01/1996 31/12/2010 -850611 01/01/1988 31/12/1995 LIBEN Primary cells and primary batteries of manganese dioxide, external volume <= 300 cm³ 01/01/1988 31/12/1995 -85061110 01/01/1988 31/12/1991 LIBEN Primary cells and primary batteries of manganese dioxide, external volume =< 300 cm³, alkaline 01/01/1988 31/12/1991 -85061111 01/01/1992 31/12/1995 LIBEN Manganese dioxide cells and batteries, of an external volume of <= 300 cm³, alkaline, in the form of cylindrical cells 01/01/1992 31/12/1995 -85061115 01/01/1992 31/12/1995 LIBEN Manganese dioxide cells and batteries, of an external volume of <= 300 cm³, alkaline, in the form of button cells 01/01/1992 31/12/1995 -85061119 01/01/1992 31/12/1995 LIBEN Manganese dioxide cells and batteries, of an external volume of <= 300 cm³, alkaline (excl. cylindrical cells and button cells) 01/01/1992 31/12/1995 -85061190 01/01/1988 31/12/1991 LIBEN Primary cells and primary batteries of manganese dioxide, external volume =< 300 cm³, other than alkaline 01/01/1988 31/12/1991 -85061191 01/01/1992 31/12/1995 LIBEN Manganese dioxide cells and batteries, of an external volume of <= 300 cm³, non-alkaline, in the form of cylindrical cells 01/01/1992 31/12/1995 -85061195 01/01/1992 31/12/1995 LIBEN Manganese dioxide cells and batteries, of an external volume of <= 300 cm³, non-alkaline, in the form of button cells 01/01/1992 31/12/1995 -85061199 01/01/1992 31/12/1995 LIBEN Manganese dioxide cells and batteries, of an external volume of <= 300 cm³, non-alkaline (excl. cylindrical cells and button cells) 01/01/1992 31/12/1995 -850612 01/01/1988 31/12/1995 LIBEN Primary cells and primary batteries of mercuric oxide, external volume <= 300 cm³ 01/01/1988 31/12/1995 -85061200 01/01/1988 31/12/1991 LIBEN Primary cells and primary batteries of mercuric oxide, external volume =< 300 cm³ 01/01/1988 31/12/1991 -85061210 01/01/1992 31/12/1995 LIBEN Mercuric oxide cells and batteries, of an external volume of <= 300 cm³, in the form of cylindrical cells 01/01/1992 31/12/1995 -85061230 01/01/1992 31/12/1995 LIBEN Mercuric oxide cells and batteries, of an external volume of <= 300 cm³, in the form of button cells 01/01/1992 31/12/1995 -85061290 01/01/1992 31/12/1995 LIBEN Mercuric oxide cells and batteries, of an external volume of <= 300 cm³ (excl. cylindrical cells and button cells) 01/01/1992 31/12/1995 -850613 01/01/1988 31/12/1995 LIBEN Primary cells and primary batteries of silver oxide, external volume <= 300 cm³ 01/01/1988 31/12/1995 -85061300 01/01/1988 31/12/1991 LIBEN Primary cells and primary batteries of silver oxide, external volume =< 300 cm³ 01/01/1988 31/12/1991 -85061310 01/01/1992 31/12/1995 LIBEN Silver oxide cells and batteries, of an external volume of <= 300 cm³, in the form of cylindrical cells 01/01/1992 31/12/1995 -85061330 01/01/1992 31/12/1995 LIBEN Silver oxide cells and batteries, of an external volume of <= 300 cm³, in the form of button cells 01/01/1992 31/12/1995 -85061390 01/01/1992 31/12/1995 LIBEN Silver oxide cells and batteries, of an external volume of <= 300 cm³ (excl. cylindrical cells and button cells) 01/01/1992 31/12/1995 -850619 01/01/1988 31/12/1995 LIBEN Primary cells and primary batteries, external volume <= 300 cm³ (excl. those of silver oxide, mercuric oxide and manganese dioxide) 01/01/1988 31/12/1995 -85061910 01/01/1988 31/12/1991 LIBEN Primary cells and primary batteries of lithium, external volume =< 300 cm³ 01/01/1988 31/12/1991 -85061911 01/01/1992 31/12/1995 LIBEN Lithium cells and batteries, of an external volume of <= 300 cm³, in the form of cylindrical cells 01/01/1992 31/12/1995 -85061915 01/01/1992 31/12/1995 LIBEN Lithium cells and batteries, of an external volume of <= 300 cm³, in the form of button cells 01/01/1992 31/12/1995 -85061919 01/01/1992 31/12/1995 LIBEN Lithium cells and batteries, of an external volume of <= 300 cm³ (excl. cylindrical cells and button cells) 01/01/1992 31/12/1995 -85061931 01/01/1992 31/12/1995 LIBEN Air-zinc cells and batteries, of an external volume of <= 300 cm³, in the form of cylindrical cells 01/01/1992 31/12/1995 -85061935 01/01/1992 31/12/1995 LIBEN Air-zinc cells and batteries, of an external volume of <= 300 cm³, in the form of button cells 01/01/1992 31/12/1995 -85061939 01/01/1992 31/12/1995 LIBEN Air-zinc cells and batteries, of an external volume of <= 300 cm³ (excl. cylindrical cells and button cells) 01/01/1992 31/12/1995 -85061950 01/01/1995 31/12/1995 LIBEN Dry zinc-carbon batteries of a voltage of 5,5 V or more, but <= 6,5 V, of an external volume of < 300 cm³ 01/01/1995 31/12/1995 -85061990 01/01/1988 31/12/1991 LIBEN Primary cells and primary batteries, external volume =< 300 cm³ (excl. those of silver oxide, mercuric oxide, manganese dioxide and lithium) 01/01/1988 31/12/1991 -85061991 01/01/1992 31/12/1995 LIBEN Primary cells and primary batteries, electric, of an external volume of <= 300 cm³, in the form of cylindrical cells (excl. manganese dioxide, mercuric oxide, silver oxide, lithium and air-zinc cells and batteries) 01/01/1992 31/12/1995 -85061995 01/01/1992 31/12/1995 LIBEN Primary cells and primary batteries, electric, of an external volume of <= 300 cm³, in the form of button cells (excl. manganese dioxide, mercuric oxide, silver oxide, lithium and air-zinc cells and batteries) 01/01/1992 31/12/1995 -85061998 01/01/1995 31/12/1995 LIBEN Primary cells and primary batteries, electric, of an external volume of < 300 cm³ (excl. cylindrical and button cells, manganese dioxide, mercuric oxide, silver oxide, lithium-, air-zinc cells and batteries and dry zinc-carbon batteries of a voltage of 5,5 V or more, but <= 6,5 V) 01/01/1995 31/12/1995 -85061999 01/01/1992 31/12/1994 LIBEN Primary cells and primary batteries, electric, of an external volume of <= 300 cm³ (excl. cylindrical cells, button cells and manganese dioxide, mercuric oxide, silver oxide, lithium and air-zinc cells and batteries) 01/01/1992 31/12/1994 -850620 01/01/1988 31/12/1995 LIBEN Primary cells and primary batteries of an external volume > 300 cm³ 01/01/1988 31/12/1995 -85062000 01/01/1988 31/12/1991 LIBEN Primary cells and primary batteries of an external volume > 300 cm³ 01/01/1988 31/12/1991 -85062011 01/01/1992 31/12/1995 LIBEN Manganese dioxide cells and batteries, of an external volume of > 300 cm³, alkaline 01/01/1992 31/12/1995 -85062019 01/01/1992 31/12/1995 LIBEN Manganese dioxide cells and batteries, of an external volume of > 300 cm³, non-alkaline 01/01/1992 31/12/1995 -85062020 01/01/1992 31/12/1995 LIBEN Mercuric oxide cells and batteries, of an external volume of > 300 cm³ 01/01/1992 31/12/1995 -85062030 01/01/1992 31/12/1995 LIBEN Silver oxide cells and batteries, of an external volume of > 300 cm³ 01/01/1992 31/12/1995 -85062040 01/01/1992 31/12/1995 LIBEN Lithium cells and batteries, of an external volume of > 300 cm³ 01/01/1992 31/12/1995 -85062050 01/01/1992 31/12/1995 LIBEN Air-zinc cells and batteries, of an external volume of > 300 cm³ 01/01/1992 31/12/1995 -85062090 01/01/1992 31/12/1995 LIBEN Primary cells and primary batteries, electric, of an external volume of > 300 cm³ (excl. manganese dioxide, mercuric oxide, silver oxide, lithium and air-zinc cells and batteries) 01/01/1992 31/12/1995 -850630 01/01/1996 31/12/2500 LIBEN Mercuric oxide cells and batteries (excl. spent) 01/01/1996 31/12/2500 -85063000 01/01/2011 31/12/2500 LIBEN Mercuric oxide cells and batteries (excl. spent) 01/01/2011 31/12/2500 -85063010 01/01/1996 31/12/2010 LIBEN Mercuric oxide cells and batteries, in the form of cylindrical cells (excl. spent) 01/01/1996 31/12/2010 -85063030 01/01/1996 31/12/2010 LIBEN Mercuric oxide cells and batteries, in the form of button cells (excl. spent) 01/01/1996 31/12/2010 -85063090 01/01/1996 31/12/2010 LIBEN Mercuric oxide cells and batteries (excl. spent, and in the form of cylindrical or button cells) 01/01/1996 31/12/2010 -850640 01/01/1996 31/12/2500 LIBEN Silver oxide cells and batteries (excl. spent) 01/01/1996 31/12/2500 -85064000 01/01/2011 31/12/2500 LIBEN Silver oxide cells and batteries (excl. spent) 01/01/2011 31/12/2500 -85064010 01/01/1996 31/12/2010 LIBEN Silver oxide cells and batteries, in the form of cylindrical cells (excl. spent) 01/01/1996 31/12/2010 -85064030 01/01/1996 31/12/2010 LIBEN Silver oxide cells and batteries, in the form of button cells (excl. spent) 01/01/1996 31/12/2010 -85064090 01/01/1996 31/12/2010 LIBEN Silver oxide cells and batteries (excl. spent, and in the form of cylindrical or button cells) 01/01/1996 31/12/2010 -850650 01/01/1996 31/12/2500 LIBEN Lithium cells and batteries (excl. spent) 01/01/1996 31/12/2500 -85065010 01/01/1996 31/12/2500 LIBEN Lithium cells and batteries, in the form of cylindrical cells (excl. spent) 01/01/1996 31/12/2500 -85065030 01/01/1996 31/12/2500 LIBEN Lithium cells and batteries, in the form of button cells (excl. spent) 01/01/1996 31/12/2500 -85065090 01/01/1996 31/12/2500 LIBEN Lithium cells and batteries (excl. spent, and in the form of cylindrical or button cells) 01/01/1996 31/12/2500 -850660 01/01/1996 31/12/2500 LIBEN Air-zinc cells and batteries (excl. spent) 01/01/1996 31/12/2500 -85066000 01/01/2011 31/12/2500 LIBEN Air-zinc cells and batteries (excl. spent) 01/01/2011 31/12/2500 -85066010 01/01/1996 31/12/2010 LIBEN Air-zinc cells and batteries, in the form of cylindrical cells (excl. spent) 01/01/1996 31/12/2010 -85066030 01/01/1996 31/12/2010 LIBEN Air-zinc cells and batteries, in the form of button cells (excl. spent) 01/01/1996 31/12/2010 -85066090 01/01/1996 31/12/2010 LIBEN Air-zinc cells and batteries (excl. spent, and in the form of cylindrical or button cells) 01/01/1996 31/12/2010 -850680 01/01/1996 31/12/2500 LIBEN Primary cells and primary batteries, electric (excl. spent, and those of silver oxide, mercuric oxide, manganese dioxide, lithium and air-zinc) 01/01/1996 31/12/2500 -85068005 01/01/1996 31/12/2500 LIBEN Dry zinc-carbon batteries of a voltage of >= 5,5 V but <= 6,5 V (excl. spent) 01/01/1996 31/12/2500 -85068011 01/01/1996 31/12/2010 LIBEN Primary cells and primary batteries, electric, in the form of cylindrical cells (excl. spent, and those of manganese dioxide, mercuric oxide, silver oxide, lithium and air-zinc) 01/01/1996 31/12/2010 -85068015 01/01/1996 31/12/2010 LIBEN Primary cells and primary batteries, electric, in the form of button cells (excl. spent, and those of manganese dioxide, mercuric oxide, silver oxide, lithium and air-zinc) 01/01/1996 31/12/2010 -85068080 01/01/2011 31/12/2500 LIBEN Primary cells and primary batteries, electric (excl. spent, dry zinc-carbon batteries of a voltage of >= 5,5 V but <= 6,5 V, and those of manganese dioxide, mercuric oxide, silver oxide, lithium and air-zinc) 01/01/2011 31/12/2500 -85068090 01/01/1996 31/12/2010 LIBEN Primary cells and primary batteries, electric (excl. spent, and those in the form of cylindrical and button cells, dry zinc-carbon batteries of a voltage of >= 5,5 V but <= 6,5 V, and those of manganese dioxide, mercuric oxide, silver oxide, lithium and air-zinc) 01/01/1996 31/12/2010 -850690 01/01/1988 31/12/2500 LIBEN Parts of primary cells and primary batteries, n.e.s. 01/01/1988 31/12/2500 -85069000 01/01/1988 31/12/2500 LIBEN Parts of primary cells and primary batteries, n.e.s. 01/01/1988 31/12/2500 -8507 01/01/1988 31/12/2500 LIBEN Electric accumulators, incl. separators therefor, whether or not square or rectangular; parts thereof (excl. spent and those of unhardened rubber or textiles) 01/01/1988 31/12/2500 -850710 01/01/1988 31/12/2500 LIBEN Lead-acid accumulators of a kind used for starting piston engine "starter batteries" (excl. spent) 01/01/1988 31/12/2500 -85071010 01/01/1988 31/12/1995 LIBEN Lead-acid accumulators for starting piston engines, for civil aircraft 01/01/1988 31/12/1995 -85071010 01/01/1996 31/12/2005 LIBEN Lead-acid accumulators of a kind used for starting piston engine "starter batteries", for civil aircraft (excl. spent) 01/01/1996 31/12/2005 -85071020 01/01/2011 31/12/2500 LIBEN Lead-acid accumulators of a kind used for starting piston engines (starter batteries), working with liquid electrolyte (excl. spent) 01/01/2011 31/12/2500 -85071031 01/01/1992 31/12/1995 LIBEN Lead-acid accumulators, of a kind used for starting piston engines "starter batteries", of a weight of <= 5 kg, working with liquid electrolyte (excl. those of subheading 8507.10.10 for use in civil aircraft) 01/01/1992 31/12/1995 -85071031 01/01/1996 31/12/2005 LIBEN Lead-acid accumulators of a kind used for starting piston engine "starter batteries", of a weight of <= 5 kg, working with liquid electrolyte (excl. spent and those for use in civil aircraft of subheading 8507.10.10) 01/01/1996 31/12/2005 -85071039 01/01/1992 31/12/1995 LIBEN Lead-acid accumulators, of a kind used for starting piston engines "starter batteries", of a weight of <= 5 kg, working with non-liquid electrolyte (excl. those of subheading 8507.10.10 for use in civil aircraft) 01/01/1992 31/12/1995 -85071039 01/01/1996 31/12/2005 LIBEN Lead-acid accumulators of a kind used for starting piston engine "starter batteries", of a weight of <= 5 kg, working with non-liquid electrolyte (excl. spent and those for use in civil aircraft of subheading 8507.10.10) 01/01/1996 31/12/2005 -85071041 01/01/2006 31/12/2010 LIBEN Lead-acid accumulators of a kind used for starting piston engine "starter batteries", of a weight of <= 5 kg, working with liquid electrolyte (excl. spent) 01/01/2006 31/12/2010 -85071049 01/01/2006 31/12/2010 LIBEN Lead-acid accumulators of a kind used for starting piston engine "starter batteries", of a weight of <= 5 kg, working with non-liquid electrolyte (excl. spent) 01/01/2006 31/12/2010 -85071080 01/01/2011 31/12/2500 LIBEN Lead-acid accumulators of a kind used for starting piston engines (starter batteries), working with non-liquid electrolyte (excl. spent) 01/01/2011 31/12/2500 -85071081 01/01/1992 31/12/1995 LIBEN Lead-acid accumulators, of a kind used for starting piston engines "starter batteries", of a weight of > 5 kg, working with liquid electrolyte (excl. those of subheading 8507.10.10 for use in civil aircraft) 01/01/1992 31/12/1995 -85071081 01/01/1996 31/12/2005 LIBEN Lead-acid accumulators of a kind used for starting piston engine "starter batteries", of a weight of > 5 kg, working with liquid electrolyte (excl. spent and those for use in civil aircraft of subheading 8507.10.10) 01/01/1996 31/12/2005 -85071089 01/01/1992 31/12/1995 LIBEN Lead-acid accumulators, of a kind used for starting piston engines "starter batteries", of a weight of > 5 kg, working with non-liquid electrolyte (excl. those of subheading 8507.10.10 for use in civil aircraft) 01/01/1992 31/12/1995 -85071089 01/01/1996 31/12/2005 LIBEN Lead-acid accumulators of a kind used for starting piston engine "starter batteries", of a weight of > 5 kg, working with non-liquid electrolyte (excl. spent and those for use in civil aircraft of subheading 8507.10.10) 01/01/1996 31/12/2005 -85071091 01/01/1988 31/12/1991 LIBEN Lead-acid accumulators for starting piston engines, of a weight =< 5 kg (excl. those for civil aircraft of subheading no 8507.10-10) 01/01/1988 31/12/1991 -85071092 01/01/2006 31/12/2010 LIBEN Lead-acid accumulators of a kind used for starting piston engine "starter batteries", of a weight of > 5 kg, working with liquid electrolyte (excl. spent) 01/01/2006 31/12/2010 -85071098 01/01/2006 31/12/2010 LIBEN Lead-acid accumulators of a kind used for starting piston engine "starter batteries", of a weight of > 5 kg, working with non-liquid electrolyte (excl. spent) 01/01/2006 31/12/2010 -85071099 01/01/1988 31/12/1991 LIBEN Lead-acid accumulators for starting piston engines, of a weight > 5 kg, (excl. for civil aircraft) 01/01/1988 31/12/1991 -850720 01/01/1988 31/12/2500 LIBEN Lead acid accumulators (excl. spent and starter batteries) 01/01/1988 31/12/2500 -85072010 01/01/1988 31/12/1995 LIBEN Lead acid accumulators, for civil aircraft (excl. those for starting piston engines) 01/01/1988 31/12/1995 -85072010 01/01/1996 31/12/2005 LIBEN Lead acid accumulators, for use in civil aircraft (excl. spent and starter batteries) 01/01/1996 31/12/2005 -85072020 01/01/2011 31/12/2500 LIBEN Lead-acid accumulators, working with liquid electrolyte (excl. spent and starter batteries) 01/01/2011 31/12/2500 -85072031 01/01/1992 31/12/1995 LIBEN Lead-acid accumulators for vehicle traction, working with liquid electrolyte (excl. starter batteries) 01/01/1992 31/12/1995 -85072031 01/01/1996 31/12/2005 LIBEN Lead-acid accumulators for vehicle traction, working with liquid electrolyte (excl. spent and starter batteries) 01/01/1996 31/12/2005 -85072039 01/01/1992 31/12/1995 LIBEN Lead-acid accumulators for vehicle traction, working with non-liquid electrolyte (excl. starter batteries) 01/01/1992 31/12/1995 -85072039 01/01/1996 31/12/2005 LIBEN Lead-acid accumulators for vehicle traction, working with non-liquid electrolyte (excl. spent and starter batteries) 01/01/1996 31/12/2005 -85072041 01/01/2006 31/12/2010 LIBEN Lead-acid traction accumulators, working with liquid electrolyte (excl. spent and starter batteries) 01/01/2006 31/12/2010 -85072049 01/01/2006 31/12/2010 LIBEN Lead-acid traction accumulators, working with non-liquid electrolyte (excl. spent and starter batteries) 01/01/2006 31/12/2010 -85072080 01/01/2011 31/12/2500 LIBEN Lead-acid accumulators, working with non-liquid electrolyte (excl. spent and starter batteries) 01/01/2011 31/12/2500 -85072081 01/01/1992 31/12/1995 LIBEN Lead-acid accumulators, working with liquid electrolyte (excl. those of subheading 8507.20.10 for use in civil aircraft and excl. starter batteries and traction accumulators) 01/01/1992 31/12/1995 -85072081 01/01/1996 31/12/2005 LIBEN Lead-acid accumulators, working with liquid electrolyte (excl. spent, those for use in civil aircraft of subheading 8507.20.10, starter batteries and traction accumulators) 01/01/1996 31/12/2005 -85072089 01/01/1992 31/12/1995 LIBEN Lead-acid accumulators, working with non-liquid electrolyte (excl. those of subheading 8507.20.10 for use in civil aircraft and excl. starter batteries and traction accumulators) 01/01/1992 31/12/1995 -85072089 01/01/1996 31/12/2005 LIBEN Lead-acid accumulators, working with non-liquid electrolyte (excl. spent, those for use in civil aircraft of subheading 8507.20.10, starter batteries and traction accumulators) 01/01/1996 31/12/2005 -85072091 01/01/1988 31/12/1991 LIBEN Lead acid traction accumulators (excl. those for starting piston engines) 01/01/1988 31/12/1991 -85072092 01/01/2006 31/12/2010 LIBEN Lead-acid accumulators, working with liquid electrolyte (excl. spent, starter batteries and traction accumulators) 01/01/2006 31/12/2010 -85072098 01/01/2006 31/12/2010 LIBEN Lead-acid accumulators, working with non-liquid electrolyte (excl. spent, starter batteries and traction accumulators) 01/01/2006 31/12/2010 -85072099 01/01/1988 31/12/1991 LIBEN Lead acid accumulators (excl. those for civil aircraft of subheading no 8507.20-10 and those for starting piston engines or for traction) 01/01/1988 31/12/1991 -850730 01/01/1988 31/12/2500 LIBEN Nickel-cadmium accumulators (excl. spent) 01/01/1988 31/12/2500 -85073010 01/01/1988 31/12/1995 LIBEN Nickel-cadmium accumulators, for civil aircraft 01/01/1988 31/12/1995 -85073010 01/01/1996 31/12/2005 LIBEN Nickel-cadmium accumulators, for civil aircraft (excl. spent) 01/01/1996 31/12/2005 -85073020 01/01/2006 31/12/2500 LIBEN Hermetically sealed nickel-cadmium accumulators (excl. spent) 01/01/2006 31/12/2500 -85073080 01/01/2011 31/12/2500 LIBEN Nickel-cadmium accumulators, not hermetically sealed (excl. spent) 01/01/2011 31/12/2500 -85073081 01/01/2006 31/12/2010 LIBEN Nickel-cadmium traction accumulators, not hermetically sealed (excl. spent) 01/01/2006 31/12/2010 -85073089 01/01/2006 31/12/2010 LIBEN Nickel-cadmium accumulators, not hermetically sealed (excl. spent and traction accumulators) 01/01/2006 31/12/2010 -85073091 01/01/1988 31/12/1995 LIBEN Hermetically sealed nickel-cadmium accumulators (excl. those for civil aircraft of subheading 8507.30.10) 01/01/1988 31/12/1995 -85073091 01/01/1996 31/12/2005 LIBEN Hermetically sealed nickel-cadmium accumulators (excl. spent and those for civil aircraft of subheading 8507.30.10) 01/01/1996 31/12/2005 -85073093 01/01/1992 31/12/1995 LIBEN Nickel-cadmium accumulators, not hermetically sealed, for vehicle traction 01/01/1992 31/12/1995 -85073093 01/01/1996 31/12/2005 LIBEN Nickel-cadmium accumulators, not hermetically sealed, for vehicle traction (excl. spent) 01/01/1996 31/12/2005 -85073098 01/01/1992 31/12/1995 LIBEN Nickel-cadmium accumulators, not hermetically sealed (excl. those of subheading 8507.30.10 for use in civil aircraft and excl. traction accumulators) 01/01/1992 31/12/1995 -85073098 01/01/1996 31/12/2005 LIBEN Nickel-cadmium accumulators, not hermetically sealed (excl. spent, those for use in civil aircraft of subheading 8507.30.10 and traction accumulators) 01/01/1996 31/12/2005 -85073099 01/01/1988 31/12/1991 LIBEN Nickel-cadmium accumulators, not hermetically sealed (excl. those for civil aircraft of subheading no 8507.30-10) 01/01/1988 31/12/1991 -850740 01/01/1988 31/12/2500 LIBEN Nickel-iron accumulators (excl. spent) 01/01/1988 31/12/2500 -85074000 01/01/2006 31/12/2500 LIBEN Nickel-iron accumulators (excl. spent) 01/01/2006 31/12/2500 -85074010 01/01/1988 31/12/1995 LIBEN Nickel-iron accumulators, for civil aircraft 01/01/1988 31/12/1995 -85074010 01/01/1996 31/12/2005 LIBEN Nickel-iron accumulators, for civil aircraft (excl. spent) 01/01/1996 31/12/2005 -85074090 01/01/1988 31/12/1995 LIBEN Nickel-iron accumulators (excl. those for civil aircraft of subheading 8507.40.10) 01/01/1988 31/12/1995 -85074090 01/01/1996 31/12/2005 LIBEN Nickel-iron accumulators (excl. spent and those for civil aircraft of subheading 8507.40.10) 01/01/1996 31/12/2005 -850750 01/01/2012 31/12/2500 LIBEN Nickel-metal hydride accumulators (excl. spent) 01/01/2012 31/12/2500 -85075000 01/01/2012 31/12/2500 LIBEN Nickel-metal hydride accumulators (excl. spent) 01/01/2012 31/12/2500 -850760 01/01/2012 31/12/2500 LIBEN Lithium-ion accumulators (excl. spent) 01/01/2012 31/12/2500 -85076000 01/01/2012 31/12/2500 LIBEN Lithium-ion accumulators (excl. spent) 01/01/2012 31/12/2500 -850780 01/01/1988 31/12/2500 LIBEN Electric accumulators (excl. spent and lead-acid, nickel-cadmium, nickel-iron, nickel-metal hydride and lithium-ion accumulators) 01/01/1988 31/12/2500 -85078000 01/01/2012 31/12/2500 LIBEN Electric accumulators (excl. spent and lead-acid, nickel-cadmium, nickel-iron, nickel-metal hydride and lithium-ion accumulators) 01/01/2012 31/12/2500 -85078010 01/01/1988 31/12/1995 LIBEN Electric accumulators, for civil aircraft (excl. lead-acid, nickel-cadmium or nickel-iron accumulators) 01/01/1988 31/12/1995 -85078010 01/01/1996 31/12/2005 LIBEN Electric accumulators, for civil aircraft (excl. spent and lead-acid, nickel-cadmium or nickel-iron accumulators) 01/01/1996 31/12/2005 -85078020 01/01/2006 31/12/2011 LIBEN Nickel-hydride accumulators (excl. spent) 01/01/2006 31/12/2011 -85078030 01/01/2006 31/12/2011 LIBEN Lithium-ion accumulators (excl. spent) 01/01/2006 31/12/2011 -85078080 01/01/2006 31/12/2011 LIBEN Electric accumulators (excl. spent, lead-acid, nickel-cadmium, nickel-iron, nickel-hydride and lithium-ion accumulators) 01/01/2006 31/12/2011 -85078090 01/01/1988 31/12/1991 LIBEN Electric accumulators (excl. those for civil aircraft of subheading no 8507.80-10 and lead-acid, nickel-cadmium or nickel-iron accumulators) 01/01/1988 31/12/1991 -85078091 01/01/1992 31/12/1995 LIBEN Nickel-hydride accumulators (excl. those of subheading 8507.80.10 for use in civil aircraft) 01/01/1992 31/12/1995 -85078091 01/01/1996 31/12/2005 LIBEN Nickel-hydride accumulators (excl. spent and those for use in civil aircraft of subheading 8507.80.10) 01/01/1996 31/12/2005 -85078094 01/01/2003 31/12/2005 LIBEN Lithium-ion accumulators (excl. spent and those for use in civil aircraft of subheading 8507.80.10) 01/01/2003 31/12/2005 -85078098 01/01/2003 31/12/2005 LIBEN Electric accumulators (excl. spent, those for use in civil aircraft of subheading 8507.80.10 and lead-acid, nickel-cadmium, nickel-iron, nickel-hydride and lithium-ion accumulators) 01/01/2003 31/12/2005 -85078099 01/01/1992 31/12/1995 LIBEN Accumulators, electric (excl. those of subheading 8507.80.10 for use in civil aircraft and excl. lead-acid, nickel-cadmium, nickel-iron and nickel-hydride accumulators) 01/01/1992 31/12/1995 -85078099 01/01/1996 31/12/2002 LIBEN Akkumulatoren, elektrisch (ausg. ausgebrauchte, solche für zivile Luftfahrzeuge der Unterpos. 8507.80.10 sowie Blei-, Nickel-Cadmium-, Nickel- Eisen- und Nickelhydrid-Akkumulatoren) 01/01/1996 31/12/2002 -850790 01/01/1988 31/12/2500 LIBEN Plates, separators and other parts of electric accumulators, n.e.s. 01/01/1988 31/12/2500 -85079010 01/01/1988 31/12/2005 LIBEN Parts of electric accumulators, n.e.s., for civil aircraft 01/01/1988 31/12/2005 -85079020 01/01/2006 31/12/2010 LIBEN Plates for electric accumulators (excl. plates of vulcanised rubber other than hard rubber or of textiles) 01/01/2006 31/12/2010 -85079030 01/01/2006 31/12/2500 LIBEN Separators for electric accumulators (excl. separators of vulcanised rubber other than hard rubber or of textiles) 01/01/2006 31/12/2500 -85079080 01/01/2011 31/12/2500 LIBEN Parts of electric accumulators (excl. separators) 01/01/2011 31/12/2500 -85079090 01/01/2006 31/12/2010 LIBEN Parts of electric accumulators (excl. plates and separators) 01/01/2006 31/12/2010 -85079091 01/01/1988 31/12/2005 LIBEN Plates for electric accumulators (excl. those of subheading 8507.90.10 for use in civil aircraft and excl. plates of vulcanised rubber other than hard rubber or of textiles) 01/01/1988 31/12/2005 -85079093 01/01/1992 31/12/2005 LIBEN Separators for electric accumulators (excl. those of subheading 8507.90.10 for use in civil aircraft and excl. separators of vulcanised rubber other than hard rubber or of textiles) 01/01/1992 31/12/2005 -85079098 01/01/1992 31/12/2005 LIBEN Parts of electric accumulators (excl. those of subheading 8507.90.10 for use in civil aircraft and excl. plates and separators) 01/01/1992 31/12/2005 -85079099 01/01/1988 31/12/1991 LIBEN Parts of electric accumulators, n.e.s. 01/01/1988 31/12/1991 -8508 01/01/1988 31/12/2001 LIBEN Electro-mechanical tools for working in the hand, with self-contained electric motor; parts thereof 01/01/1988 31/12/2001 -8508 01/01/2007 31/12/2500 LIBEN Vacuum cleaners, incl. dry cleaners and wet vacuum cleaners 01/01/2007 31/12/2500 -850810 01/01/1988 31/12/2001 LIBEN Drills of all kinds for working in the hand, with self-contained electric motor 01/01/1988 31/12/2001 -85081010 01/01/1988 31/12/2001 LIBEN Drills of all kinds for working in the hand, with self-contained electric motor capable of operation without an external source of power 01/01/1988 31/12/2001 -85081091 01/01/1988 31/12/2001 LIBEN Electropneumatic drills of all kinds for working in the hand 01/01/1988 31/12/2001 -85081099 01/01/1988 31/12/2001 LIBEN Drills of all kinds for working in the hand, with self-contained electric motor operating with an external source of power (excl. electropneumatic drills) 01/01/1988 31/12/2001 -850811 01/01/2007 31/12/2500 LIBEN Vacuum cleaners, incl. dry cleaners and wet vacuum cleaners, with self-contained electric motor, power <= 1 500 W and having a dust bag or other receptacle capacity <= 20 l 01/01/2007 31/12/2500 -85081100 01/01/2007 31/12/2500 LIBEN Vacuum cleaners, incl. dry cleaners and wet vacuum cleaners, with self-contained electric motor, power <= 1 500 W and having a dust bag or other receptacle capacity <= 20 l 01/01/2007 31/12/2500 -850819 01/01/2007 31/12/2500 LIBEN Vacuum cleaners, incl. dry cleaners and wet vacuum cleaners, with self-contained electric motor ( excl. of a power <= 1 500 W and having a dust bag or other receptacle capacity <= 20 l) 01/01/2007 31/12/2500 -85081900 01/01/2007 31/12/2500 LIBEN Vacuum cleaners, incl. dry cleaners and wet vacuum cleaners, with self-contained electric motor ( excl. of a power <= 1 500 W and having a dust bag or other receptacle capacity <= 20 l) 01/01/2007 31/12/2500 -850820 01/01/1988 31/12/2001 LIBEN Saws for working in the hand, with self-contained electric motor 01/01/1988 31/12/2001 -85082010 01/01/1988 31/12/2001 LIBEN Chainsaws for working in the hand, with self-contained electric motor 01/01/1988 31/12/2001 -85082030 01/01/1988 31/12/2001 LIBEN Circular saws for working in the hand, with self-contained electric motor 01/01/1988 31/12/2001 -85082090 01/01/1988 31/12/2001 LIBEN Saws for working in the hand, with self-contained electric motor (excl. chainsaws and circular saws) 01/01/1988 31/12/2001 -850860 01/01/2007 31/12/2500 LIBEN Vacuum cleaners, incl. dry cleaners and wet vacuum cleaners (excl. with self-contained electric motor) 01/01/2007 31/12/2500 -85086000 01/01/2007 31/12/2500 LIBEN Vacuum cleaners, incl. dry cleaners and wet vacuum cleaners (excl. with self-contained electric motor) 01/01/2007 31/12/2500 -850870 01/01/2007 31/12/2500 LIBEN Parts of vacuum cleaners, dry cleaners and wet vacuum cleaners, n.e.s. 01/01/2007 31/12/2500 -85087000 01/01/2007 31/12/2500 LIBEN Parts of vacuum cleaners, dry cleaners and wet vacuum cleaners, n.e.s. 01/01/2007 31/12/2500 -850880 01/01/1988 31/12/2001 LIBEN Electro-mechanical tools for working in the hand, with self-contained electric motor (excl. saws and drills) 01/01/1988 31/12/2001 -85088010 01/01/1988 31/12/2001 LIBEN Electro-mechanical tools for working in the hand, with self-contained electric motor, for working textile materials 01/01/1988 31/12/2001 -85088030 01/01/1988 31/12/2001 LIBEN Electro-mechanical tools for working in the hand, with self-contained electric motor capable of operation without an external source of power (excl. those for working textile materials, saws and drills) 01/01/1988 31/12/2001 -85088051 01/01/1988 31/12/2001 LIBEN Angle grinders for working in the hand, with self-contained electric motor, operating with an external source of power 01/01/1988 31/12/2001 -85088053 01/01/1988 31/12/2001 LIBEN Belt sanders for working in the hand, with self-contained electric motor, operating with an external source of power 01/01/1988 31/12/2001 -85088059 01/01/1988 31/12/2001 LIBEN Grinders and sanders, for working in the hand, with self-contained electric motor, operating with an external source of power (excl. angle grinders and belt sanders) 01/01/1988 31/12/2001 -85088070 01/01/1988 31/12/2001 LIBEN Planers for working in the hand, with self-contained electric motor, operating with an external source of power 01/01/1988 31/12/2001 -85088080 01/01/1988 31/12/2001 LIBEN Hedge trimmers and lawn edge cutters, for working in the hand, with self-contained electric motor operating with an external source of power 01/01/1988 31/12/2001 -85088090 01/01/1988 31/12/2001 LIBEN Electro-mechanical tools for working in the hand, with self-contained electric motor operating with an external source of power (excl. those for working textile materials, saws, drills, grinders, sanders, planers, hedge trimmers and lawn edge cutters) 01/01/1988 31/12/2001 -850890 01/01/1988 31/12/2001 LIBEN Parts of electro-mechanical tools for working in the hand, with self-contained electric motor, n.e.s. 01/01/1988 31/12/2001 -85089000 01/01/1988 31/12/2001 LIBEN Parts of electro-mechanical tools for working in the hand, with self-contained electric motor, n.e.s. 01/01/1988 31/12/2001 -8509 01/01/1988 31/12/2500 LIBEN Electromechanical domestic appliances, with self-contained electric motor; parts thereof (excl. vacuum cleaners, dry and wet vacuum cleaners) 01/01/1988 31/12/2500 -850910 01/01/1988 31/12/2006 LIBEN Domestic vacuum cleaners, incl. dry cleaners and wet vacuum cleaners, with self-contained electric motor 01/01/1988 31/12/2006 -85091010 01/01/1988 31/12/2006 LIBEN Domestic vacuum cleaners, incl. dry cleaners and wet vacuum cleaners, with self-contained electric motor, for a voltage >= 110 V 01/01/1988 31/12/2006 -85091090 01/01/1988 31/12/2006 LIBEN Domestic vacuum cleaners, incl. dry cleaners and wet vacuum cleaners, with self-contained electric motor, for a voltage < 110 V 01/01/1988 31/12/2006 -850920 01/01/1988 31/12/2006 LIBEN Domestic floor polishers, with self-contained electric motor 01/01/1988 31/12/2006 -85092000 01/01/1988 31/12/2006 LIBEN Domestic floor polishers, with self-contained electric motor 01/01/1988 31/12/2006 -850930 01/01/1988 31/12/2006 LIBEN Domestic kitchen waste disposers, with self-contained electric motor 01/01/1988 31/12/2006 -85093000 01/01/1988 31/12/2006 LIBEN Domestic kitchen waste disposers, with self-contained electric motor 01/01/1988 31/12/2006 -850940 01/01/1988 31/12/2500 LIBEN Domestic food grinders and mixers and fruit or vegetable juice extractors, with self-contained electric motor 01/01/1988 31/12/2500 -85094000 01/01/1988 31/12/2500 LIBEN Domestic food grinders and mixers and fruit or vegetable juice extractors, with self-contained electric motor 01/01/1988 31/12/2500 -850980 01/01/1988 31/12/2500 LIBEN Electromechanical domestic appliances, with self-contained electric motor (excl. vacuum cleaners, dry and wet vacuum cleaners, food grinders and mixers, fruit or vegetable juice extractors, and hair-removing appliances) 01/01/1988 31/12/2500 -85098000 01/01/1988 31/12/1995 LIBEN Electro-mechanical appliances with self-contained electric motor (excl. vacuum cleaners, floor polishers, kitchen waste disposers, food grinders and mixers, and fruit or vegetable juice extractors) 01/01/1988 31/12/1995 -85098000 01/01/1996 31/12/2006 LIBEN Electromechanical household appliances, with self-contained electric motor (excl. vacuum cleaners, dry and wet vacuum cleaners, floor polishers, kitchen waste disposers, food grinders and mixers, fruit or vegetable juice extractors, and hair-removing appliances) 01/01/1996 31/12/2006 -85098000 01/01/2007 31/12/2500 LIBEN Electromechanical domestic appliances, with self-contained electric motor (excl. vacuum cleaners, dry and wet vacuum cleaners, food grinders and mixers, fruit or vegetable juice extractors, and hair-removing appliances) 01/01/2007 31/12/2500 -850990 01/01/1988 31/12/2500 LIBEN Parts of electromechanical domestic appliances, with self-contained electric motor, n.e.s. (excl. of vacuum cleaners, dry and wet vacuum cleaners) 01/01/1988 31/12/2500 -85099000 01/01/2007 31/12/2500 LIBEN Parts of electromechanical domestic appliances, with self-contained electric motor, n.e.s. (excl. of vacuum cleaners, dry and wet vacuum cleaners) 01/01/2007 31/12/2500 -85099010 01/01/1988 31/12/2006 LIBEN Parts of domestic vacuum cleaners, dry cleaners and wet vacuum cleaners or floor polishers, with self-contained electric motor, n.e.s. 01/01/1988 31/12/2006 -85099090 01/01/1988 31/12/2006 LIBEN Parts of electromechanical domestic appliances, with self-contained electric motor, n.e.s. 01/01/1988 31/12/2006 -8509I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8509; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8509I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8509; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8509I2 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8509; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -8509I200 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8509; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -8509I7 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8509; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -8509I700 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8509; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -8510 01/01/1988 31/12/2500 LIBEN Electric shavers, hair clippers and hair-removing appliances, with self-contained electric motor; parts thereof 01/01/1988 31/12/2500 -851010 01/01/1988 31/12/2500 LIBEN Shavers, electric 01/01/1988 31/12/2500 -85101000 01/01/1988 31/12/2500 LIBEN Shavers, electric 01/01/1988 31/12/2500 -851020 01/01/1988 31/12/2500 LIBEN Hair clippers with self-contained electric motor 01/01/1988 31/12/2500 -85102000 01/01/1988 31/12/2500 LIBEN Hair clippers with self-contained electric motor 01/01/1988 31/12/2500 -851030 01/01/1996 31/12/2500 LIBEN Hair-removing appliances with self-contained electric motor 01/01/1996 31/12/2500 -85103000 01/01/1996 31/12/2500 LIBEN Hair-removing appliances with self-contained electric motor 01/01/1996 31/12/2500 -851090 01/01/1988 31/12/2500 LIBEN Parts of electric shavers, hair clippers and hair-removing appliances, with self-contained electric motor, n.e.s. 01/01/1988 31/12/2500 -85109000 01/01/1988 31/12/2500 LIBEN Parts of electric shavers, hair clippers and hair-removing appliances, with self-contained electric motor, n.e.s. 01/01/1988 31/12/2500 -8511 01/01/1988 31/12/2500 LIBEN Electrical ignition or starting equipment of a kind used for spark-ignition or compression-ignition internal combustion engines, e.g. ignition magnetos, magneto-dynamos, ignition coils, sparking plugs, glow plugs and starter motors; generators, e.g. dynamos and alternators, and cut-outs of a kind used in conjunction with such engines; parts thereof 01/01/1988 31/12/2500 -851110 01/01/1988 31/12/2500 LIBEN Sparking plugs of a kind used for spark-ignition or compression-ignition internal combustion engines 01/01/1988 31/12/2500 -85111000 01/01/2006 31/12/2500 LIBEN Sparking plugs of a kind used for spark-ignition or compression-ignition internal combustion engines 01/01/2006 31/12/2500 -85111010 01/01/1988 31/12/2005 LIBEN Sparking plugs of a kind used for spark-ignition or compression-ignition internal combustion engines, for civil aircraft 01/01/1988 31/12/2005 -85111090 01/01/1988 31/12/2005 LIBEN Sparking plugs of a kind used for spark-ignition or compression-ignition internal combustion engines (excl. those for civil aircraft of subheading 8511.10.10) 01/01/1988 31/12/2005 -851120 01/01/1988 31/12/2500 LIBEN Ignition magnetos, magneto-dynamos and magnetic flywheels, for spark-ignition or compression-ignition internal combustion engines 01/01/1988 31/12/2500 -85112000 01/01/2006 31/12/2500 LIBEN Ignition magnetos, magneto-dynamos and magnetic flywheels, for spark-ignition or compression-ignition internal combustion engines 01/01/2006 31/12/2500 -85112010 01/01/1988 31/12/2005 LIBEN Ignition magnetos, magneto-dynamos and magnetic flywheels of a kind used for spark-ignition or compression-ignition internal combustion engines, for civil aircraft 01/01/1988 31/12/2005 -85112090 01/01/1988 31/12/2005 LIBEN Ignition magnetos, magneto-dynamos and magnetic flywheels of a kind used for spark-ignition or compression-ignition internal combustion engines (excl. those for civil aircraft of subheading 8511.20.10) 01/01/1988 31/12/2005 -851130 01/01/1988 31/12/2500 LIBEN Distributors and ignition coils of a kind used for spark-ignition or compression-ignition internal combustion engines 01/01/1988 31/12/2500 -85113000 01/01/2006 31/12/2500 LIBEN Distributors and ignition coils of a kind used for spark-ignition or compression-ignition internal combustion engines 01/01/2006 31/12/2500 -85113010 01/01/1988 31/12/2005 LIBEN Distributors and ignition coils of a kind used for spark-ignition or compression-ignition internal combustion engines, for civil aircraft 01/01/1988 31/12/2005 -85113090 01/01/1988 31/12/2005 LIBEN Distributors and ignition coils of a kind used for spark-ignition or compression-ignition internal combustion engines (excl. those for civil aircraft of subheading 8511.30.10) 01/01/1988 31/12/2005 -851130SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 8511 30 01/01/2006 31/12/2500 -851140 01/01/1988 31/12/2500 LIBEN Starter motors and dual purpose starter-generators of a kind used for spark-ignition or compression-ignition internal combustion engines 01/01/1988 31/12/2500 -85114000 01/01/2006 31/12/2500 LIBEN Starter motors and dual purpose starter-generators of a kind used for spark-ignition or compression-ignition internal combustion engines 01/01/2006 31/12/2500 -85114010 01/01/1988 31/12/2005 LIBEN Starter motors and dual purpose starter-generators of a kind used for spark-ignition or compression-ignition internal combustion engines, for civil aircraft 01/01/1988 31/12/2005 -85114090 01/01/1988 31/12/2005 LIBEN Starter motors and dual purpose starter-generators of a kind used for spark-ignition or compression-ignition internal combustion engines (excl. those for civil aircraft of subheading 8511.40.10) 01/01/1988 31/12/2005 -851150 01/01/1988 31/12/2500 LIBEN Generators of a kind used for internal combustion engines (excl. magneto dynamos and dual purpose starter-generators) 01/01/1988 31/12/2500 -85115000 01/01/2006 31/12/2500 LIBEN Generators of a kind used for internal combustion engines (excl. magneto dynamos and dual purpose starter-generators) 01/01/2006 31/12/2500 -85115010 01/01/1988 31/12/2005 LIBEN Generators of a kind used for internal combustion engines, for civil aircraft (excl. magneto dynamos and dual purpose starter-generators) 01/01/1988 31/12/2005 -85115090 01/01/1988 31/12/2005 LIBEN Generators of a kind used for internal combustion engines (excl. those for civil aircraft of subheading 8511.50.10, magneto dynamos and dual purpose starter-generators) 01/01/1988 31/12/2005 -851180 01/01/1988 31/12/2500 LIBEN Electrical ignition or starting equipment, incl. cut-outs, of a kind used for spark-ignition or compression-ignition internal combustion engines (excl. generators, starter motors, distributors, ignition coils, ignition magnetos, magnetic flywheels and sparking plugs) 01/01/1988 31/12/2500 -85118000 01/01/2006 31/12/2500 LIBEN Electrical ignition or starting equipment, incl. cut-outs, of a kind used for spark-ignition or compression-ignition internal combustion engines (excl. generators, starter motors, distributors, ignition coils, ignition magnetos, magnetic flywheels and sparking plugs) 01/01/2006 31/12/2500 -85118010 01/01/1988 31/12/2005 LIBEN Electrical ignition or starting equipment, incl. cut-outs, of a kind used for spark-ignition or compression-ignition internal combustion engines, for civil aircraft (excl. generators, starter motors, distributors, ignition coils, ignition magnetos, magnetic flywheels and sparking plugs) 01/01/1988 31/12/2005 -85118090 01/01/1988 31/12/2005 LIBEN Electrical ignition or starting equipment, incl. cut-outs, of a kind used for spark-ignition or compression-ignition internal combustion engines (excl. those for civil aircraft of subheading 8511.80.10, generators, starter motors, distributors, ignition coils, ignition magnetos, magnetic flywheels and sparking plugs) 01/01/1988 31/12/2005 -851190 01/01/1988 31/12/2500 LIBEN Parts of electrical ignition or starting equipment, generators, etc. of heading 8511, n.e.s. 01/01/1988 31/12/2500 -85119000 01/01/1988 31/12/2500 LIBEN Parts of electrical ignition or starting equipment, generators, etc. of heading 8511, n.e.s. 01/01/1988 31/12/2500 -8512 01/01/1988 31/12/2500 LIBEN Electrical lighting or signalling equipment (excl. lamps of heading 8539), windscreen wipers, defrosters and demisters, of a kind used for cycles or motor vehicles; parts thereof 01/01/1988 31/12/2500 -851210 01/01/1988 31/12/2500 LIBEN Electric lighting or visual signalling equipment of a kind used for bicycles (other than lamps of heading 8539) 01/01/1988 31/12/2500 -85121000 01/01/1995 31/12/2500 LIBEN Electric lighting or visual signalling equipment of a kind used for bicycles (other than lamps of heading 8539) 01/01/1995 31/12/2500 -85121010 01/01/1988 31/12/1994 LIBEN Sets comprising a dynamo and a headlamp, for bicycles 01/01/1988 31/12/1994 -85121091 01/01/1988 31/12/1994 LIBEN Dynamos for bicycles 01/01/1988 31/12/1994 -85121099 01/01/1988 31/12/1994 LIBEN Electrical lighting or visual signalling equipment for bicycles (excl. lamps of heading no 8539, dynamos and sets comprising a dynamo and a headlamp) 01/01/1988 31/12/1994 -851220 01/01/1988 31/12/2500 LIBEN Electrical lighting or visual signalling equipment for motor vehicles (excl. lamps of heading 8539) 01/01/1988 31/12/2500 -85122000 01/01/1988 31/12/2500 LIBEN Electrical lighting or visual signalling equipment for motor vehicles (excl. lamps of heading 8539) 01/01/1988 31/12/2500 -851230 01/01/1988 31/12/2500 LIBEN Electrical sound signalling equipment for cycles or motor vehicles 01/01/1988 31/12/2500 -85123000 01/01/1988 31/12/2006 LIBEN Electrical sound signalling equipment for cycles or motor vehicles 01/01/1988 31/12/2006 -85123010 01/01/2007 31/12/2500 LIBEN Sound signalling burglar alarms, electrical, of a kind used for motor vehicles 01/01/2007 31/12/2500 -85123090 01/01/2007 31/12/2500 LIBEN Electrical sound signalling equipment for cycles or motor vehicles (excl. burglar alarms for motor vehicles) 01/01/2007 31/12/2500 -851240 01/01/1988 31/12/2500 LIBEN Electrical windscreen wipers, defrosters and demisters, for motor vehicles 01/01/1988 31/12/2500 -85124000 01/01/1988 31/12/2500 LIBEN Electrical windscreen wipers, defrosters and demisters, for motor vehicles 01/01/1988 31/12/2500 -851290 01/01/1988 31/12/2500 LIBEN Parts of electrical lighting or signalling equipment, windscreen wipers, defrosters and demisters of a kind used for cycles and motor vehicles, n.e.s. 01/01/1988 31/12/2500 -85129000 01/01/1988 31/12/2006 LIBEN Parts of electrical lighting or signalling equipment, windscreen wipers, defrosters and demisters of a kind used for motor vehicles, n.e.s. 01/01/1988 31/12/2006 -85129010 01/01/2007 31/12/2500 LIBEN Parts of electrical burglar alarms of a kind used for motor vehicles, n.e.s. 01/01/2007 31/12/2500 -85129090 01/01/2007 31/12/2500 LIBEN Parts of electrical lighting or signalling equipment, windscreen wipers, defrosters and demisters of a kind used for motor vehicles, n.e.s. (excl. of burglar alarms for motor vehicles) 01/01/2007 31/12/2500 -8513 01/01/1988 31/12/2500 LIBEN Portable electric lamps designed to function by their own source of energy, e.g. dry batteries, accumulators and magnetos; parts thereof (excl. lighting equipment of heading 8512) 01/01/1988 31/12/2500 -851310 01/01/1988 31/12/2500 LIBEN Portable electrical lamps designed to function by their own source of energy 01/01/1988 31/12/2500 -85131000 01/01/1988 31/12/2500 LIBEN Portable electrical lamps designed to function by their own source of energy 01/01/1988 31/12/2500 -851390 01/01/1988 31/12/2500 LIBEN Parts of portable electrical lamps designed to function by their own source of energy, n.e.s. 01/01/1988 31/12/2500 -85139000 01/01/1988 31/12/2500 LIBEN Parts of portable electrical lamps designed to function by their own source of energy, n.e.s. 01/01/1988 31/12/2500 -8513S8 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 8513 and SITC section 8 01/01/1998 31/12/2500 -8513S813 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 8513 and SITC group 813 01/01/1998 31/12/2500 -8514 01/01/1988 31/12/2500 LIBEN Industrial or laboratory electric furnaces and ovens, incl. those functioning by induction or dielectric loss; other industrial or laboratory equipment for the heat treatment of materials by induction or dielectric loss; parts thereof 01/01/1988 31/12/2500 -851410 01/01/1988 31/12/2500 LIBEN Resistance heated industrial or laboratory furnaces and ovens (excl. drying ovens) 01/01/1988 31/12/2500 -85141005 01/01/1998 31/12/2006 LIBEN Industrial and laboratory furnaces and ovens, resistance heated, for the manufacture of semiconductor devices on semiconductor wafers 01/01/1998 31/12/2006 -85141010 01/01/1988 31/12/2500 LIBEN Resistance heated bakery and biscuit ovens 01/01/1988 31/12/2500 -85141080 01/01/1998 31/12/2500 LIBEN Industrial and laboratory furnaces and ovens, resistance heated (other than for the manufacture of semiconductor devices on semiconductor wafers) 01/01/1998 31/12/2500 -85141090 01/01/1995 31/12/1997 LIBEN Industrial and laboratory furnaces and ovens, resistance heated (other than drying ovens and baking ovens for bakeries, and biscuit ovens) 01/01/1995 31/12/1997 -85141091 01/01/1988 31/12/1994 LIBEN Resistance heated, industrial or laboratory furnaces and ovens, of a weight =< 50 kg (excl. drying ovens and bakery and biscuit ovens) 01/01/1988 31/12/1994 -85141099 01/01/1988 31/12/1994 LIBEN Resistance heated industrial or laboratory furnaces and ovens, of a weight > 50 kg (excl. drying ovens and bakery and biscuit ovens) 01/01/1988 31/12/1994 -851420 01/01/1988 31/12/2500 LIBEN Furnaces and ovens functioning by induction or dielectric loss 01/01/1988 31/12/2500 -85142005 01/01/1998 31/12/2006 LIBEN Furnaces and ovens functioning by induction or dielectric loss, for the manufacture of semiconductor devices on semiconductor wafers 01/01/1998 31/12/2006 -85142010 01/01/1988 31/12/2500 LIBEN Furnaces and ovens functioning by induction 01/01/1988 31/12/2500 -85142080 01/01/1998 31/12/2500 LIBEN Furnaces and ovens functioning by dielectric loss (other than for the manufacture of semiconductor devices on semiconductor wafers) 01/01/1998 31/12/2500 -85142090 01/01/1989 31/12/1997 LIBEN Dielectric industrial or laboratory furnaces and ovens 01/01/1989 31/12/1997 -85142091 01/01/1988 31/12/1988 LIBEN Microwave ovens of the kind used in canteen kitchens 01/01/1988 31/12/1988 -85142099 01/01/1988 31/12/1988 LIBEN Induction or dielectric furnaces and ovens (excl. microwave ovens of the kind used in canteen kitchens) 01/01/1988 31/12/1988 -851430 01/01/1988 31/12/2500 LIBEN Electric industrial or laboratory furnaces and ovens (excl. resistance heated, induction, dielectric and drying furnaces and ovens) 01/01/1988 31/12/2500 -85143000 01/01/2011 31/12/2016 LIBEN Electric industrial or laboratory furnaces and ovens (excl. resistance heated, induction, dielectric and drying furnaces and ovens) 01/01/2011 31/12/2016 -85143010 01/01/1988 31/12/1994 LIBEN Infra-red radiation ovens (excl. drying ovens, space heating apparatus, soil heating apparatus and the like) 01/01/1988 31/12/1994 -85143011 01/01/1995 31/12/2006 LIBEN Infra-red ovens for the manufacture of semiconductor devices on semiconductor wafers 01/01/1995 31/12/2006 -85143019 01/01/1995 31/12/2010 LIBEN Infra-red ovens (excl. dry ovens, devices for heating rooms or floors or for similar purposes, and for the manufacture of semiconductor devices on semiconductor wafers) 01/01/1995 31/12/2010 -85143020 01/01/2017 31/12/2500 LIBEN Furnaces and ovens of a kind used solely or principally for the manufacture of printed circuits or printed circuit assemblies 01/01/2017 31/12/2500 -85143080 01/01/2017 31/12/2500 LIBEN Electric industrial or laboratory furnaces and ovens (excl. resistance heated, induction, dielectric and drying furnaces and ovens, and ones used for manufacturing printed circuits) 01/01/2017 31/12/2500 -85143090 01/01/1988 31/12/1994 LIBEN Electric industrial or laboratory furnaces and ovens (excl. resistance heated, induction, dielectric, infra-red radiation and drying furnaces and ovens) 01/01/1988 31/12/1994 -85143091 01/01/1995 31/12/2006 LIBEN Industrial and laboratory furnaces and ovens for the manufacture of semiconductor devices on semiconductor wafers 01/01/1995 31/12/2006 -85143099 01/01/1995 31/12/2010 LIBEN Electric industrial and laboratory furnaces and ovens (excl. resistance heated furnaces and ovens with indirect heating induction ovens, ovens with dielectric heating, infra-red ovens, dry ovens and ovens for the manufacture of semiconductor devices on semiconductor wafers) 01/01/1995 31/12/2010 -851440 01/01/1988 31/12/2500 LIBEN Equipment for the heat treatment of materials by induction or dielectric loss (excl. ovens and furnaces) 01/01/1988 31/12/2500 -85144000 01/01/1988 31/12/2500 LIBEN Equipment for the heat treatment of materials by induction or dielectric loss (excl. ovens and furnaces) 01/01/1988 31/12/2500 -851490 01/01/1988 31/12/2500 LIBEN Parts of electric industrial or laboratory furnaces and ovens, incl. of those functioning by induction or dielectric loss, and of industrial or laboratory equipment for the heat treatment of materials by induction or dielectric loss, n.e.s. (other than for the manufacture of semiconductor devices on semiconductor wafers) 01/01/1988 31/12/2500 -85149000 01/01/1988 31/12/1989 LIBEN Parts of electric industrial or laboratory furnaces and ovens, incl. induction or dielectric heating equipment, n.e.s. 01/01/1988 31/12/1989 -85149000 01/01/1997 31/12/1997 LIBEN Parts of electric industrial or laboratory furnaces and ovens, incl. induction or dielectric heating equipment, n.e.s. 01/01/1997 31/12/1997 -85149000 01/01/2007 31/12/2016 LIBEN Parts of electric industrial or laboratory furnaces and ovens, incl. of those functioning by induction or dielectric loss, and of industrial or laboratory equipment for the heat treatment of materials by induction or dielectric loss, n.e.s. (other than for the manufacture of semiconductor devices on semiconductor wafers) 01/01/2007 31/12/2016 -85149010 01/01/1990 31/12/1996 LIBEN Parts of furnaces and ovens of 8514.10.10 to 8514.40.00, of cast iron or cast steel 01/01/1990 31/12/1996 -85149020 01/01/1998 31/12/2006 LIBEN Parts of electric industrial or laboratory furnaces and ovens, for the manufacture of semiconductor devices on semiconductor wafers, n.e.s. 01/01/1998 31/12/2006 -85149030 01/01/2017 31/12/2500 LIBEN Parts of furnaces and ovens of 8514 30 20 used in manufacturing printed circuits 01/01/2017 31/12/2500 -85149070 01/01/2017 31/12/2500 LIBEN Parts of electric industrial or laboratory furnaces and ovens, incl. of those functioning by induction or dielectric loss, and of industrial or laboratory equipment for the heat treatment of materials by induction or dielectric loss, n.e.s. 01/01/2017 31/12/2500 -85149080 01/01/1998 31/12/2006 LIBEN Parts of electric industrial or laboratory furnaces and ovens, incl. of those functioning by induction or dielectric loss, and of industrial or laboratory equipment for the heat treatment of materials by induction or dielectric loss, n.e.s. (other than for the manufacture of semiconductor devices on semiconductor wafers) 01/01/1998 31/12/2006 -85149090 01/01/1990 31/12/1996 LIBEN Parts of furnaces and ovens of 8514.10.10 to 8514.40.00 (excl. of cast iron or cast steel) 01/01/1990 31/12/1996 -8515 01/01/1988 31/12/2500 LIBEN Electric, incl. electrically heated gas, laser or other light or photon beam, ultrasonic, electron beam, magnetic pulse or plasma arc soldering, brazing or welding machines and apparatus, whether or not capable of cutting; electric machines and apparatus for hot spraying of metals, metal carbides or cermets; parts thereof (excl. guns for spraying hot materials of heading 8424) 01/01/1988 31/12/2500 -851511 01/01/1988 31/12/2500 LIBEN Soldering irons and guns, electric 01/01/1988 31/12/2500 -85151100 01/01/1988 31/12/2500 LIBEN Soldering irons and guns, electric 01/01/1988 31/12/2500 -851519 01/01/1988 31/12/2500 LIBEN Brazing or soldering machines (excl. soldering irons and guns) 01/01/1988 31/12/2500 -85151900 01/01/1988 31/12/2016 LIBEN Brazing or soldering machines (excl. soldering irons and guns) 01/01/1988 31/12/2016 -85151910 01/01/2017 31/12/2500 LIBEN Wave soldering machines of a kind used solely or principally for the manufacture of printed circuit assemblies 01/01/2017 31/12/2500 -85151990 01/01/2017 31/12/2500 LIBEN Brazing or soldering machines (excl. soldering irons and guns, and wave soldering machines used in manufacturing printed circuit assemblies) 01/01/2017 31/12/2500 -851521 01/01/1988 31/12/2500 LIBEN Fully or partly automatic machines for resistance welding of metals 01/01/1988 31/12/2500 -85152100 01/01/1988 31/12/2500 LIBEN Fully or partly automatic machines for resistance welding of metals 01/01/1988 31/12/2500 -851529 01/01/1988 31/12/2500 LIBEN Machines for resistance welding of metals, neither fully nor partly automatic 01/01/1988 31/12/2500 -85152900 01/01/2011 31/12/2500 LIBEN Machines for resistance welding of metals, neither fully nor partly automatic 01/01/2011 31/12/2500 -85152910 01/01/1988 31/12/2010 LIBEN Machines for butt welding of metals, neither fully nor partly automatic 01/01/1988 31/12/2010 -85152990 01/01/1988 31/12/2010 LIBEN Machines for resistance welding of metals, neither fully nor partly automatic (excl. machines for butt welding) 01/01/1988 31/12/2010 -851531 01/01/1988 31/12/2500 LIBEN Fully or partly automatic machines for arc welding of metals, incl. plasma arc welding 01/01/1988 31/12/2500 -85153100 01/01/1988 31/12/2500 LIBEN Fully or partly automatic machines for arc welding of metals, incl. plasma arc welding 01/01/1988 31/12/2500 -851539 01/01/1988 31/12/2500 LIBEN Machines for arc welding of metals, incl. plasma arc welding, neither fully nor partly automatic 01/01/1988 31/12/2500 -85153911 01/01/1988 31/12/1994 LIBEN Machines for manual arc welding of metals, with coated electrodes, complete with welding or cutting devices, and consigned with generators or rotary converters 01/01/1988 31/12/1994 -85153913 01/01/1988 31/12/2500 LIBEN Machines for manual arc welding of metals, with coated electrodes, complete with welding or cutting devices, and consigned with transformers 01/01/1988 31/12/2500 -85153918 01/01/1995 31/12/2500 LIBEN Machines and apparatus for manual arc welding of metals with coated electrodes, complete with welding or cutting devices, generators or rotary converters, static converters, rectifiers or rectifying apparatus 01/01/1995 31/12/2500 -85153919 01/01/1988 31/12/1994 LIBEN Machines for manual arc welding of metals, with coated electrodes, complete with welding or cutting devices, and consigned with static converters, rectifiers or rectifying apparatus 01/01/1988 31/12/1994 -85153990 01/01/1988 31/12/2500 LIBEN Machines for arc welding of metals, incl. plasma arc welding, neither fully nor partly automatic (excl. machines for manual welding with coated electrodes) 01/01/1988 31/12/2500 -851580 01/01/1988 31/12/2500 LIBEN Electric machines and apparatus for laser or other light or photon beam, ultrasonic, electron beam, magnetic pulse or plasma arc welding; electric machines and apparatus for hot spraying of metals, metal carbides or cermets (excl. metal spray guns specified elsewhere) 01/01/1988 31/12/2500 -85158005 01/01/1998 31/12/2006 LIBEN Wire bonders, electric, of a kind used for the manufacture of semiconductor devices 01/01/1998 31/12/2006 -85158010 01/01/1988 31/12/1993 LIBEN Electrical machines and apparatus for welding metals or for hot spraying of metals or sintered metal carbides (excl. machines and apparatus for resistance, arc or plasma arc welding and metal spray guns specified elsewhere) 01/01/1988 31/12/1993 -85158010 01/01/2011 31/12/2500 LIBEN Electrical machines and apparatus for welding or hot spraying of metals (excl. for resistance, arc or plasma arc welding and metal spray guns specified elsewhere) 01/01/2011 31/12/2500 -85158011 01/01/1994 31/12/2010 LIBEN Electrical machines and apparatus for welding metals (excl. machines and apparatus for resistance, arc or plasma arc welding) 01/01/1994 31/12/2010 -85158019 01/01/1994 31/12/2010 LIBEN Electrical machines and apparatus for hot spraying of metals or metal carbides (excl. metal spray guns specified elsewhere) 01/01/1994 31/12/2010 -85158090 01/01/1988 31/12/1993 LIBEN Electrical machines and apparatus for welding thermoplastic materials 01/01/1988 31/12/1993 -85158090 01/01/2010 31/12/2500 LIBEN Electrical machines and apparatus for welding thermoplastic materials (excl. wire bonders of a kind used for the manufacture of semiconductor devices) 01/01/2010 31/12/2500 -85158091 01/01/1994 31/12/2009 LIBEN Electrical machines and apparatus for resistance welding of plastics 01/01/1994 31/12/2009 -85158099 01/01/1994 31/12/1997 LIBEN Machines and apparatus, electrical, for welding thermoplastic materials (excl. machines and apparatus for resistance welding of plastics) 01/01/1994 31/12/1997 -85158099 01/01/1998 31/12/2009 LIBEN Electrical machines and apparatus for welding thermoplastic materials (excl. machines and apparatus for resistance welding of plastics, and wire bonders of a kind used for the manufacture of semiconductor devices) 01/01/1998 31/12/2009 -851590 01/01/1988 31/12/2500 LIBEN Parts of machines and apparatus for soldering or welding or for hot spraying of metals, metal carbides or cermets, n.e.s. (excl. wire bonders of a kind used for the manufacture of semiconductor devices) 01/01/1988 31/12/2500 -85159000 01/01/1988 31/12/1997 LIBEN Parts of machines and apparatus for soldering or welding or for hot spraying of metals, metal carbides or cermets, n.e.s. 01/01/1988 31/12/1997 -85159000 01/01/2007 31/12/2016 LIBEN Parts of machines and apparatus for soldering or welding or for hot spraying of metals, metal carbides or cermets, n.e.s. (excl. wire bonders of a kind used for the manufacture of semiconductor devices) 01/01/2007 31/12/2016 -85159010 01/01/1998 31/12/2006 LIBEN Parts of electric wire bonders of a kind used for the manufacture of semiconductor devices, n.e.s. 01/01/1998 31/12/2006 -85159020 01/01/2017 31/12/2500 LIBEN Parts of wave soldering machines used in manufacturing printed circuit assemblies 01/01/2017 31/12/2500 -85159080 01/01/2017 31/12/2500 LIBEN Parts of machines and apparatus for soldering or welding or for hot spraying of metals, metal carbides or cermets, n.e.s. 01/01/2017 31/12/2500 -85159090 01/01/1998 31/12/2006 LIBEN Parts of electric machines and apparatus for soldering or welding or for hot spraying of metals, metal carbides or cermets, n.e.s. (excl. wire bonders of a kind used for the manufacture of semiconductor devices) 01/01/1998 31/12/2006 -8516 01/01/1988 31/12/2500 LIBEN Electric instantaneous or storage water heaters and immersion heaters; electric space-heating apparatus and soil-heating apparatus; electro-thermic hairdressing apparatus, e.g. hairdryers, hair curlers and curling tong heaters, and hand dryers; electric smoothing irons; other electro-thermic appliances of a kind used for domestic purposes; electric heating resistors (other than those of heading 8545); parts thereof 01/01/1988 31/12/2500 -851610 01/01/1988 31/12/2500 LIBEN Electric instantaneous or storage water heaters and immersion heaters 01/01/1988 31/12/2500 -85161011 01/01/1988 31/12/2500 LIBEN Electric instantaneous water heaters 01/01/1988 31/12/2500 -85161019 01/01/1988 31/12/2010 LIBEN Electric water heaters (excl. instantaneous water heaters and immersion heaters) 01/01/1988 31/12/2010 -85161080 01/01/2011 31/12/2500 LIBEN Electric water heaters and immersion heaters (excl. instantaneous water heaters) 01/01/2011 31/12/2500 -85161090 01/01/1988 31/12/1996 LIBEN Electric immersion heaters 01/01/1988 31/12/1996 -85161090 01/01/2005 31/12/2010 LIBEN Electric immersion heaters 01/01/2005 31/12/2010 -85161091 01/01/1997 31/12/2004 LIBEN Electric immersion heaters of a kind used for domestic purposes 01/01/1997 31/12/2004 -85161099 01/01/1997 31/12/2004 LIBEN Electric immersion heaters (excl. those of a kind used for domestic purposes) 01/01/1997 31/12/2004 -851621 01/01/1988 31/12/2500 LIBEN Electric storage heating radiators, for space-heating 01/01/1988 31/12/2500 -85162100 01/01/1988 31/12/2500 LIBEN Electric storage heating radiators, for space-heating 01/01/1988 31/12/2500 -851629 01/01/1988 31/12/2500 LIBEN Electric space-heating and soil-heating apparatus (excl. storage heating radiators) 01/01/1988 31/12/2500 -85162910 01/01/1988 31/12/2500 LIBEN Liquid filled electric radiators, for space-heating and soil-heating 01/01/1988 31/12/2500 -85162950 01/01/1988 31/12/2500 LIBEN Electric convection heaters, for space-heating and soil-heating 01/01/1988 31/12/2500 -85162991 01/01/1988 31/12/2500 LIBEN Electric space-heating and soil-heating apparatus, with built-in fan (excl. storage heating radiators) 01/01/1988 31/12/2500 -85162999 01/01/1988 31/12/2500 LIBEN Electric space-heating and soil-heating apparatus, without built-in fan (excl. convection heaters and liquid-filled radiators) 01/01/1988 31/12/2500 -851631 01/01/1988 31/12/2500 LIBEN Electric hairdryers 01/01/1988 31/12/2500 -85163100 01/01/2011 31/12/2500 LIBEN Electric hairdryers 01/01/2011 31/12/2500 -85163110 01/01/1988 31/12/2010 LIBEN Electric drying hoods 01/01/1988 31/12/2010 -85163190 01/01/1988 31/12/2010 LIBEN Electric hairdryers (excl. drying hoods) 01/01/1988 31/12/2010 -851632 01/01/1988 31/12/2500 LIBEN Electro-thermic hairdressing apparatus (excl. hairdryers) 01/01/1988 31/12/2500 -85163200 01/01/1988 31/12/2500 LIBEN Electro-thermic hairdressing apparatus (excl. hairdryers) 01/01/1988 31/12/2500 -851633 01/01/1988 31/12/2500 LIBEN Electric hand-drying apparatus 01/01/1988 31/12/2500 -85163300 01/01/1988 31/12/2500 LIBEN Electric hand-drying apparatus 01/01/1988 31/12/2500 -851640 01/01/1988 31/12/2500 LIBEN Electric smoothing irons 01/01/1988 31/12/2500 -85164000 01/01/2011 31/12/2500 LIBEN Electric smoothing irons 01/01/2011 31/12/2500 -85164010 01/01/1988 31/12/2010 LIBEN Electric steam smoothing irons 01/01/1988 31/12/2010 -85164090 01/01/1988 31/12/2010 LIBEN Smoothing irons, electric (excl. steam smoothing irons) 01/01/1988 31/12/2010 -851650 01/01/1988 31/12/2500 LIBEN Microwave ovens 01/01/1988 31/12/2500 -85165000 01/01/1988 31/12/1988 LIBEN Microwave ovens, for domestic use 01/01/1988 31/12/1988 -85165000 01/01/1989 31/12/2500 LIBEN Microwave ovens 01/01/1989 31/12/2500 -851660 01/01/1988 31/12/2500 LIBEN Electric ovens, cookers, cooking plates and boiling rings, electric grillers and roasters, for domestic use (excl. space-heating stoves and microwave ovens) 01/01/1988 31/12/2500 -85166010 01/01/1988 31/12/2500 LIBEN Electric cookers incorporating at least an oven and a hob, for domestic use 01/01/1988 31/12/2500 -85166050 01/01/2011 31/12/2500 LIBEN Electric cooking plates, boiling rings and hobs, for domestic use 01/01/2011 31/12/2500 -85166051 01/01/1988 31/12/2010 LIBEN Electric cooking plates, boiling rings and hobs for building in, for domestic use 01/01/1988 31/12/2010 -85166059 01/01/1988 31/12/2010 LIBEN Electric cooking plates, boiling rings and hobs, for domestic use (excl. those for building in) 01/01/1988 31/12/2010 -85166070 01/01/1988 31/12/2500 LIBEN Electric grillers and roasters, for domestic use 01/01/1988 31/12/2500 -85166080 01/01/1988 31/12/2500 LIBEN Electric ovens for building in, for domestic use 01/01/1988 31/12/2500 -85166090 01/01/1988 31/12/2500 LIBEN Electric ovens, for domestic use (excl. space-heating stoves, electric cookers incorporating at least an oven and a hob, microwave ovens and electric ovens for building in) 01/01/1988 31/12/2500 -851671 01/01/1988 31/12/2500 LIBEN Electro-thermic coffee or tea makers, for domestic use 01/01/1988 31/12/2500 -85167100 01/01/1988 31/12/2500 LIBEN Electro-thermic coffee or tea makers, for domestic use 01/01/1988 31/12/2500 -851672 01/01/1988 31/12/2500 LIBEN Electric toasters, for domestic use 01/01/1988 31/12/2500 -85167200 01/01/1988 31/12/2500 LIBEN Electric toasters, for domestic use 01/01/1988 31/12/2500 -851679 01/01/1988 31/12/2500 LIBEN Electro-thermic appliances, for domestic use (excl. hairdressing appliances and hand dryers, space-heating and soil-heating apparatus, water heaters, immersion heaters, smoothing irons, microwave ovens, ovens, cookers, cooking plates, boiling rings, grillers, roasters, coffee makers, tea makers and toasters) 01/01/1988 31/12/2500 -85167910 01/01/1988 31/12/2003 LIBEN Electric plate warmers, for domestic use 01/01/1988 31/12/2003 -85167920 01/01/1994 31/12/2500 LIBEN Electric deep fat fryers, for domestic use 01/01/1994 31/12/2500 -85167970 01/01/2004 31/12/2500 LIBEN Electro-thermic appliances, for domestic use (excl. hairdressing appliances and hand dryers, space-heating and soil-heating apparatus, water heaters, immersion heaters, smoothing irons, microwave ovens, ovens, cookers, cooking plates, boiling rings, grillers, roasters, coffee makers, tea makers, toasters and deep fat fryers) 01/01/2004 31/12/2500 -85167980 01/01/1994 31/12/2003 LIBEN Electro-thermic appliances, for domestic use (excl. hair-dressing appliances and hand dryers, space heating and soil heating apparatus, water heaters, immersion heaters, smoothing irons, microwave ovens, ovens, cookers, cooking plates, boiling rings, grillers, roasters, coffee makers, tea makers, toasters, plate warmers and deep fat fryers) 01/01/1994 31/12/2003 -85167990 01/01/1988 31/12/1993 LIBEN Electro-thermic appliances, for domestic use (excl. hair-dressing appliances and hand dryers, space heating and soil heating apparatus and the like, water heaters, immersion heaters, smoothing irons, microwave ovens, ovens, cookers, cooking plates, boiling rings, grillers, roasters, coffee makers, tea makers, toasters and plate warmers) 01/01/1988 31/12/1993 -851680 01/01/1988 31/12/2500 LIBEN Electric heating resistors (excl. those of agglomerated coal and graphite) 01/01/1988 31/12/2500 -85168010 01/01/1988 31/12/2005 LIBEN Electric heating resistors, assembled only with a simple insulated former and electrical connections, for anti-icing or de-icing, for civil aircraft 01/01/1988 31/12/2005 -85168020 01/01/2006 31/12/2500 LIBEN Electric heating resistors, assembled with an insulated former 01/01/2006 31/12/2500 -85168080 01/01/2006 31/12/2500 LIBEN Electric heating resistors (excl. electric heating resistors assembled with an insulated former of agglomerated carbon or graphite) 01/01/2006 31/12/2500 -85168090 01/01/1988 31/12/1994 LIBEN Electric heating resistors (excl. those for civil aircraft of subheading no 8516.80-10 and those of agglomerated coal and graphite) 01/01/1988 31/12/1994 -85168091 01/01/1995 31/12/2005 LIBEN Electric heating resistors, assembled with an insulated former (other than for civil aircraft of subheading 8516.80.10) 01/01/1995 31/12/2005 -85168099 01/01/1995 31/12/2005 LIBEN Electric heating resistors (other than for civil aircraft of subheading 8516.80.10, electric heating resistors assembled with an insulated former of agglomerated carbon or graphite) 01/01/1995 31/12/2005 -851690 01/01/1988 31/12/2500 LIBEN Parts of electric water heaters, immersion heaters, space-heating apparatus and soil-heating apparatus, hairdressing apparatus and hand dryers, electro-thermic appliances of a kind used for domestic purposes and electric heating resistors, n.e.s. 01/01/1988 31/12/2500 -85169000 01/01/1988 31/12/2500 LIBEN Parts of electric water heaters, immersion heaters, space-heating apparatus and soil-heating apparatus, hairdressing apparatus and hand dryers, electro-thermic appliances of a kind used for domestic purposes and electric heating resistors, n.e.s. 01/01/1988 31/12/2500 -8516S7 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8516 and SITC section 7 01/01/1997 31/12/2500 -8516S775 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8516 and SITC group 775 01/01/1997 31/12/2500 -8517 01/01/1988 31/12/2500 LIBEN Telephone sets, incl. telephones for cellular networks or for other wireless networks; other apparatus for the transmission or reception of voice, images or other data, incl. apparatus for communication in a wired or wireless network [such as a local or wide area network]; parts thereof (excl. than transmission or reception apparatus of heading 8443, 8525, 8527 or 8528) 01/01/1988 31/12/2500 -851710 01/01/1988 31/12/1995 LIBEN Telephone sets for line telephony (excl. entry-phone systems) 01/01/1988 31/12/1995 -85171000 01/01/1988 31/12/1995 LIBEN Telephone sets for line telephony (excl. entry-phone systems) 01/01/1988 31/12/1995 -851711 01/01/1996 31/12/2500 LIBEN Line telephone sets with cordless handsets 01/01/1996 31/12/2500 -85171100 01/01/1996 31/12/2500 LIBEN Line telephone sets with cordless handsets 01/01/1996 31/12/2500 -851712 01/01/2007 31/12/2500 LIBEN Telephones for cellular networks "mobile telephones" or for other wireless networks 01/01/2007 31/12/2500 -85171200 01/01/2007 31/12/2500 LIBEN Telephones for cellular networks "mobile telephones" or for other wireless networks 01/01/2007 31/12/2500 -851718 01/01/2007 31/12/2500 LIBEN Telephone sets (excl. line telephone sets with cordless handsets and telephones for cellular networks or for other wireless networks) 01/01/2007 31/12/2500 -85171800 01/01/2007 31/12/2500 LIBEN Telephone sets (excl. line telephone sets with cordless handsets and telephones for cellular networks or for other wireless networks) 01/01/2007 31/12/2500 -851719 01/01/1996 31/12/2006 LIBEN Line telephone sets; videophones (excl. line telephone sets with cordless handsets and entry-phone systems) 01/01/1996 31/12/2006 -85171910 01/01/1996 31/12/2006 LIBEN Videophones 01/01/1996 31/12/2006 -85171990 01/01/1996 31/12/2006 LIBEN Line telephone sets (excl. videophones and line telephone sets with cordless handsets and entry-phone systems) 01/01/1996 31/12/2006 -851720 01/01/1988 31/12/1995 LIBEN Teleprinters for line telegraphy 01/01/1988 31/12/1995 -85172000 01/01/1988 31/12/1995 LIBEN Teleprinters for line telegraphy 01/01/1988 31/12/1995 -851721 01/01/1996 31/12/2006 LIBEN Fax machines for line telephony 01/01/1996 31/12/2006 -85172100 01/01/1996 31/12/2006 LIBEN Fax machines for line telephony 01/01/1996 31/12/2006 -851722 01/01/1996 31/12/2006 LIBEN Teleprinters for line telegraphy 01/01/1996 31/12/2006 -85172200 01/01/1996 31/12/2006 LIBEN Teleprinters for line telegraphy 01/01/1996 31/12/2006 -851730 01/01/1988 31/12/2006 LIBEN Telephonic or telegraphic switching apparatus 01/01/1988 31/12/2006 -85173000 01/01/1988 31/12/2006 LIBEN Telephonic or telegraphic switching apparatus 01/01/1988 31/12/2006 -851740 01/01/1988 31/12/1995 LIBEN Carrier-current line systems for line telephony or line telegraphy 01/01/1988 31/12/1995 -85174000 01/01/1988 31/12/1995 LIBEN Carrier-current line systems for line telephony or line telegraphy 01/01/1988 31/12/1995 -851750 01/01/1996 31/12/2006 LIBEN Apparatus for carrier-current line systems or digital line systems, for line telephony or line telegraphy (excl. telephone sets, videophones, fax machines, teleprinters and switching apparatus) 01/01/1996 31/12/2006 -85175010 01/01/1996 31/12/2006 LIBEN Apparatus for carrier-current line systems, for line telephony or line telegraphy (excl. telephone sets, videophones, fax machines, teleprinters and switching apparatus) 01/01/1996 31/12/2006 -85175090 01/01/1996 31/12/2006 LIBEN Apparatus for digital line systems, for line telephony or line telegraphy (excl. telephone sets, videophones, fax machines, teleprinters and switching apparatus) 01/01/1996 31/12/2006 -851761 01/01/2007 31/12/2500 LIBEN Base stations of apparatus for the transmission or reception of voice, images or other data 01/01/2007 31/12/2500 -85176100 01/01/2007 31/12/2500 LIBEN Base stations of apparatus for the transmission or reception of voice, images or other data 01/01/2007 31/12/2500 -851762 01/01/2007 31/12/2500 LIBEN Machines for the reception, conversion and transmission or regeneration of voice, images or other data, incl. switching and routing apparatus (excl. telephone sets, telephones for cellular networks or for other wireless networks) 01/01/2007 31/12/2500 -85176200 01/01/2007 31/12/2500 LIBEN Machines for the reception, conversion and transmission or regeneration of voice, images or other data, incl. switching and routing apparatus (excl. telephone sets, telephones for cellular networks or for other wireless networks) 01/01/2007 31/12/2500 -851769 01/01/2007 31/12/2500 LIBEN Apparatus for the transmission or reception of voice, images or other data, incl. apparatus for communication in a wired or wireless network [such as a local or wide area network] (excl. telephone sets, telephones for cellular networks or for other wireless networks, base stations, apparatus for the reception, conversion and transmission or regeneration of voice, images or other data, and transmission or reception apparatus of heading 8443, 8525, 8527 or 8528) 01/01/2007 31/12/2500 -85176910 01/01/2007 31/12/2500 LIBEN Videophones 01/01/2007 31/12/2500 -85176920 01/01/2007 31/12/2500 LIBEN Entry-phone systems 01/01/2007 31/12/2500 -85176930 01/01/2017 31/12/2500 LIBEN Reception apparatus for radio-telephony or radio-telegraphy 01/01/2017 31/12/2500 -85176931 01/01/2007 31/12/2016 LIBEN Portable receivers for calling, alerting or paging 01/01/2007 31/12/2016 -85176939 01/01/2007 31/12/2016 LIBEN Reception apparatus for radio-telephony or radio-telegraphy (excl. portable receivers for calling, alerting or paging) 01/01/2007 31/12/2016 -85176990 01/01/2007 31/12/2500 LIBEN Apparatus for the transmission or reception of voice, images or other data, incl. apparatus for communication in a wired or wireless network [such as a local or wide area network] (excl. telephone sets, telephones for cellular networks or for other wireless networks, base stations, apparatus for the reception, conversion and transmission or regeneration of voice, images or other data, videophones, entry-phone systems, reception apparatus for radio-telephony or radio-telegraphy and transmission or reception apparatus of heading 8443, 8525, 8527 or 8528) 01/01/2007 31/12/2500 -851770 01/01/2007 31/12/2500 LIBEN Parts of telephone sets, telephones for cellular networks or for other wireless networks and of other apparatus for the transmission or reception of voice, images or other data, n.e.s. 01/01/2007 31/12/2500 -85177000 01/01/2017 31/12/2500 LIBEN Parts of telephone sets, telephones for cellular networks or for other wireless networks and of other apparatus for the transmission or reception of voice, images or other data, n.e.s. 01/01/2017 31/12/2500 -85177011 01/01/2007 31/12/2016 LIBEN Aerials for radio-telegraphic or radio-telephonic apparatus 01/01/2007 31/12/2016 -85177015 01/01/2007 31/12/2016 LIBEN Telescopic and whip-type aerials for portable apparatus or for apparatus for fitting in motor vehicles (other than for apparatus of heading 8443, 8525, 8527 or 8528) 01/01/2007 31/12/2016 -85177019 01/01/2007 31/12/2016 LIBEN Aerials and aerial reflectors of all kinds and parts suitable for use with aerials or aerial reflectors, n.e.s. (excl. aerials for radio-telegraphic or radio-telephonic apparatus and telescopic and whip-type aerials for portable apparatus or for apparatus for fitting in motor vehicles) 01/01/2007 31/12/2016 -85177090 01/01/2007 31/12/2016 LIBEN Parts of telephone sets, telephones for cellular networks or for other wireless networks and of other apparatus for the transmission or reception of voice, images or other data, n.e.s. (excl. aerials and aerial reflectors of all kinds and parts suitable for use with aerials or aerial reflectors) 01/01/2007 31/12/2016 -851780 01/01/1996 31/12/2006 LIBEN Electrical apparatus for line telephony or line telegraphy (excl. telephone sets, videophones, fax machines, teleprinters, switching apparatus and carrier-current or digital line transmitting and receiving apparatus) 01/01/1996 31/12/2006 -85178010 01/01/1996 31/12/2006 LIBEN Entry-phone systems for line telephony 01/01/1996 31/12/2006 -85178090 01/01/1996 31/12/2006 LIBEN Electrical apparatus for line telephony or line telegraphy (excl. telephone sets, videophones, teleprinters, fax machines, switching apparatus, entry-phone systems and carrier-current or digital line transmitting and receiving apparatus) 01/01/1996 31/12/2006 -851781 01/01/1988 31/12/1995 LIBEN Electrical apparatus for line telephony (excl. telephone sets, switching apparatus and carrier-current line systems) 01/01/1988 31/12/1995 -85178110 01/01/1988 31/12/1995 LIBEN Entry phone systems for line telephony 01/01/1988 31/12/1995 -85178190 01/01/1988 31/12/1995 LIBEN Electrical apparatus for line telephony (excl. telephone sets, switching apparatus, entry-phone systems and carrier-current line systems) 01/01/1988 31/12/1995 -851782 01/01/1988 31/12/1995 LIBEN Electrical apparatus for line telegraphy (excl. teleprinters, switching apparatus, transmitters and receivers for carrier-current line systems) 01/01/1988 31/12/1995 -85178200 01/01/1988 31/12/1992 LIBEN Electrical apparatus for line telegraphy (excl. teleprinters, switching apparatus, transmitters and receivers for carrier-current line systems) 01/01/1988 31/12/1992 -85178210 01/01/1993 31/12/1995 LIBEN Facsimile machines for line telegraphy 01/01/1993 31/12/1995 -85178290 01/01/1993 31/12/1995 LIBEN Apparatus, electrical, for line telegraphy (excl. teleprinters, facsimile machines, switching apparatus and carrier-current transmitting and receiving apparatus) 01/01/1993 31/12/1995 -851790 01/01/1988 31/12/2006 LIBEN Parts of electrical apparatus for line telephony or line telegraphy, incl. line telephone sets with cordless handsets and telecommunication apparatus for carrier-current line systems or digital line systems and videophones, n.e.s. 01/01/1988 31/12/2006 -85179010 01/01/1988 31/12/1991 LIBEN Parts of transmitters and receivers for line telephony and line telegraphy, for carrier-current line systems, n.e.s. 01/01/1988 31/12/1991 -85179011 01/01/1992 31/12/2006 LIBEN Electronic assemblies for telephonic or telegraphic carrier-current line systems, n.e.s. 01/01/1992 31/12/2006 -85179019 01/01/1992 31/12/2006 LIBEN Parts of telephonic or telegraphic carrier-current line systems, n.e.s. (excl. electronic assemblies) 01/01/1992 31/12/2006 -85179081 01/01/1992 31/12/1995 LIBEN Electronic assemblies for electrical apparatus for line telephony, n.e.s. 01/01/1992 31/12/1995 -85179082 01/01/1996 31/12/2006 LIBEN Electronic assemblies for electrical apparatus for line telephony or line telegraphy, incl. for line telephones with cordless receivers, and for videophones, n.e.s. (excl. for telephonic or telegraphic carrier-current line systems) 01/01/1996 31/12/2006 -85179088 01/01/1996 31/12/2006 LIBEN Parts of electrical apparatus for line telephony or line telegraphy, incl. for line telephones with cordless receivers, and of videophones, n.e.s. (excl. electronic assemblies and parts of telephonic or telegraphic carrier-current line systems) 01/01/1996 31/12/2006 -85179089 01/01/1992 31/12/1995 LIBEN Parts of electrical apparatus for line telephony, n.e.s. (excl. electronic assemblies) 01/01/1992 31/12/1995 -85179091 01/01/1988 31/12/1991 LIBEN Parts of electrical apparatus for line telephony, n.e.s. 01/01/1988 31/12/1991 -85179092 01/01/1992 31/12/1995 LIBEN Electronic assemblies for electrical apparatus for line telegraphy, n.e.s. 01/01/1992 31/12/1995 -85179098 01/01/1992 31/12/1995 LIBEN Parts of electrical apparatus for line telegraphy, n.e.s. (excl. electronic assemblies) 01/01/1992 31/12/1995 -85179099 01/01/1988 31/12/1991 LIBEN Parts of electrical apparatus for line telegraphy, n.e.s. 01/01/1988 31/12/1991 -8517S7 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8517 and SITC section 7 01/01/1997 31/12/2500 -8517S764 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8517 and SITC group 764 01/01/1997 31/12/2500 -8517S9 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 8517 and SITC section 9 01/01/2001 31/12/2500 -8517S999 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 8517 and SITC group 999 01/01/2001 31/12/2500 -8518 01/01/1988 31/12/2500 LIBEN Microphones and stands therefor (excl. cordless microphones with built-in transmitter); loudspeakers, whether or not mounted in their enclosures; headphones and earphones, whether or not combined with a microphone, and sets consisting of a microphone and one or more loudspeakers (excl. telephone sets, hearing aids and helmets with built-in headphones, whether or not incorporating a microphone); audio-frequency electric amplifiers; electric sound amplifier sets; parts thereof 01/01/1988 31/12/2500 -851810 01/01/1988 31/12/2500 LIBEN Microphones and stands therefor (excl. cordless microphones with built-in transmitter) 01/01/1988 31/12/2500 -85181000 01/01/2020 31/12/2500 LIBEN Microphones and stands therefor (excl. cordless microphones with built-in transmitter) 01/01/2020 31/12/2500 -85181010 01/01/1988 31/12/2005 LIBEN Microphones and stands therefor, for civil aircraft (excl. cordless microphones with built-in transmitter) 01/01/1988 31/12/2005 -85181020 01/01/1998 31/12/2005 LIBEN Microphones having a frequency range of 300 Hz to 3,4 kHz, of a diameter <= 10 mm and a height <= 3 mm, of a kind used for telecommunications (excl. those for civil aircraft of subheading 8518.10.10) 01/01/1998 31/12/2005 -85181030 01/01/2006 31/12/2019 LIBEN Microphones having a frequency range of 300 Hz to 3,4 kHz, of a diameter <= 10 mm and a height <= 3 mm, of a kind used for telecommunications 01/01/2006 31/12/2019 -85181080 01/01/1998 31/12/2005 LIBEN Microphones and stands therefor (excl. those for civil aircraft of subheading 8518.10.10, microphones having a frequency range of 300 Hz to 3,4 kHz, of a diameter <= 10 mm and a height <= 3 mm, of a kind used for telecommunications, and cordless microphones with built-in transmitter) 01/01/1998 31/12/2005 -85181090 01/01/1988 31/12/1997 LIBEN Microphones and stands therefor (excl. those for civil aircraft of subheading 8518.10.10 and cordless microphones with built-in transmitter) 01/01/1988 31/12/1997 -85181095 01/01/2006 31/12/2019 LIBEN Microphones and stands therefor (excl. microphones having a frequency range of 300 Hz to 3,4 kHz, of a diameter <= 10 mm and a height <= 3 mm, of a kind used for telecommunications, and cordless microphones with built-in transmitter) 01/01/2006 31/12/2019 -851821 01/01/1988 31/12/2500 LIBEN Single loudspeakers, mounted in their enclosures 01/01/1988 31/12/2500 -85182100 01/01/2006 31/12/2500 LIBEN Single loudspeakers, mounted in their enclosures 01/01/2006 31/12/2500 -85182110 01/01/1988 31/12/2005 LIBEN Single loudspeakers, mounted in their enclosures, for civil aircraft 01/01/1988 31/12/2005 -85182190 01/01/1988 31/12/2005 LIBEN Single loudspeakers, mounted in their enclosures (excl. those for civil aircraft of subheading 8518.21.10) 01/01/1988 31/12/2005 -851822 01/01/1988 31/12/2500 LIBEN Multiple loudspeakers, mounted in the same enclosure 01/01/1988 31/12/2500 -85182200 01/01/2006 31/12/2500 LIBEN Multiple loudspeakers, mounted in the same enclosure 01/01/2006 31/12/2500 -85182210 01/01/1988 31/12/2005 LIBEN Multiple loudspeakers, mounted in the same enclosure, for civil aircraft 01/01/1988 31/12/2005 -85182290 01/01/1988 31/12/2005 LIBEN Multiple loudspeakers, mounted in the same enclosure (excl. those for civil aircraft of subheading 8518.22.10) 01/01/1988 31/12/2005 -851822SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 8518 22 01/01/2006 31/12/2500 -851829 01/01/1988 31/12/2500 LIBEN Loudspeakers, without enclosure 01/01/1988 31/12/2500 -85182900 01/01/2020 31/12/2500 LIBEN Loudspeakers, without enclosure 01/01/2020 31/12/2500 -85182910 01/01/1988 31/12/2005 LIBEN Loudspeakers, without enclosure, for civil aircraft 01/01/1988 31/12/2005 -85182920 01/01/1998 31/12/2005 LIBEN Loudspeakers, without enclosure, having a frequency range of 300 Hz to 3,4 kHz, of a diameter <= 50 mm, of a kind used for telecommunications (excl. those for civil aircraft of subheading 8518.29.10) 01/01/1998 31/12/2005 -85182930 01/01/2006 31/12/2019 LIBEN Loudspeakers, without enclosure, having a frequency range of 300 Hz to 3,4 kHz, of a diameter <= 50 mm, of a kind used for telecommunications 01/01/2006 31/12/2019 -85182980 01/01/1998 31/12/2005 LIBEN Loudspeakers, without enclosure (excl. those for civil aircraft of subheading 8518.29.10 and those having a frequency range of 300 Hz to 3,4 kHz, of a diameter <= 50 mm, of a kind used for telecommunications) 01/01/1998 31/12/2005 -85182990 01/01/1988 31/12/1997 LIBEN Loudspeakers, without enclosure (excl. those for civil aircraft of subheading 8518.29.10) 01/01/1988 31/12/1997 -85182995 01/01/2006 31/12/2019 LIBEN Loudspeakers, without enclosure (excl. those having a frequency range of 300 Hz to 3,4 kHz, of a diameter <= 50 mm, of a kind used for telecommunications) 01/01/2006 31/12/2019 -851829SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 8518 29 01/01/2006 31/12/2500 -851830 01/01/1988 31/12/2500 LIBEN Headphones and earphones, whether or not combined with microphone, and sets consisting of a microphone and one or more loudspeakers (excl. telephone sets, hearing aids and helmets with built-in headphones, whether or not incorporating a microphone) 01/01/1988 31/12/2500 -85183000 01/01/2020 31/12/2500 LIBEN Headphones and earphones, whether or not combined with microphone, and sets consisting of a microphone and one or more loudspeakers (excl. telephone sets, hearing aids and helmets with built-in headphones, whether or not incorporating a microphone) 01/01/2020 31/12/2500 -85183010 01/01/1988 31/12/2005 LIBEN Headphones and earphones, whether or not combined with microphone, and sets consisting of a microphone and one or more loudspeakers, for civil aircraft (excl. helmets with built-in headphones, whether or not incorporating a microphone) 01/01/1988 31/12/2005 -85183020 01/01/1998 31/12/2019 LIBEN Line telephone handsets, whether or not incorporating a microphone, and sets consisting of a microphone and one or more loudspeakers 01/01/1998 31/12/2019 -85183080 01/01/1998 31/12/2005 LIBEN Headphones and earphones, whether or not combined with microphone, and sets consisting of a microphone and one or more loudspeakers (excl. those for civil aircraft of subheading 8518.30.10, line telephone handsets, telephone sets, hearing aids and helmets with built-in headphones, whether or not incorporating a microphone) 01/01/1998 31/12/2005 -85183090 01/01/1988 31/12/1997 LIBEN Headphones, earphones and combined microphone/speaker sets (excl. those for civil aircraft of subheading 8518.30.10, telephone sets, hearing aids and helmets with built-in headphones, whether or not incorporating a microphone) 01/01/1988 31/12/1997 -85183095 01/01/2006 31/12/2019 LIBEN Headphones and earphones, whether or not combined with microphone, and sets consisting of a microphone and one or more loudspeakers (excl. line telephone handsets, telephone sets, hearing aids and helmets with built-in headphones, whether or not incorporating a microphone) 01/01/2006 31/12/2019 -851840 01/01/1988 31/12/2500 LIBEN Audio-frequency electric amplifiers 01/01/1988 31/12/2500 -85184000 01/01/2020 31/12/2500 LIBEN Audio-frequency electric amplifiers 01/01/2020 31/12/2500 -85184010 01/01/1988 31/12/2005 LIBEN Audio-frequency electric amplifiers, for civil aircraft 01/01/1988 31/12/2005 -85184030 01/01/1988 31/12/2019 LIBEN Audio-frequency electric telephonic and measurement amplifiers 01/01/1988 31/12/2019 -85184080 01/01/2011 31/12/2019 LIBEN Audio-frequency electric amplifiers (excl. telephonic or measurement amplifiers) 01/01/2011 31/12/2019 -85184081 01/01/2006 31/12/2010 LIBEN Audio-frequency electric amplifiers, with only one channel (excl. telephonic or measurement amplifiers) 01/01/2006 31/12/2010 -85184089 01/01/2006 31/12/2010 LIBEN Audio-frequency electric amplifiers, with more than one channel (excl. telephonic or measurement amplifiers) 01/01/2006 31/12/2010 -85184091 01/01/1988 31/12/2005 LIBEN Audio-frequency electric amplifiers, with only one channel (excl. those for civil aircraft of subheading 8518.40.10 and telephonic or measurement amplifiers) 01/01/1988 31/12/2005 -85184099 01/01/1988 31/12/2005 LIBEN Audio-frequency electric amplifiers, with > one channel (excl. those for civil aircraft of subheading 8518.40.10 and telephonic or measurement amplifiers) 01/01/1988 31/12/2005 -851850 01/01/1988 31/12/2500 LIBEN Electric sound amplifier sets 01/01/1988 31/12/2500 -85185000 01/01/2006 31/12/2500 LIBEN Electric sound amplifier sets 01/01/2006 31/12/2500 -85185010 01/01/1988 31/12/2005 LIBEN Electric sound amplifier sets, for civil aircraft 01/01/1988 31/12/2005 -85185090 01/01/1988 31/12/2005 LIBEN Electric sound amplifier sets (excl. those for civil aircraft of subheading 8518.50.10) 01/01/1988 31/12/2005 -851890 01/01/1988 31/12/2500 LIBEN Parts of microphones, loudspeakers, headphones and earphones, earphones, audio-frequency electric amplifiers or electric sound amplifier sets, n.e.s. 01/01/1988 31/12/2500 -85189000 01/01/1988 31/12/2006 LIBEN Parts of microphones, loudspeakers, headphones and earphones, earphones, audio-frequency electric amplifiers or electric sound amplifier sets, n.e.s. 01/01/1988 31/12/2006 -85189000 01/01/2007 31/12/2016 LIBEN Parts of microphones, loudspeakers, headphones and earphones, earphones, audio-frequency electric amplifiers or electric sound amplifier sets, n.e.s. 01/01/2007 31/12/2016 -85189000 01/01/2017 31/12/2500 LIBEN Parts of microphones, loudspeakers, headphones and earphones, earphones, audio-frequency electric amplifiers or electric sound amplifier sets, n.e.s. 01/01/2017 31/12/2500 -8518S7 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8518 and SITC section 7 01/01/1997 31/12/2500 -8518S764 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8518 and SITC group 764 01/01/1997 31/12/2500 -8518S9 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 8518 and SITC section 9 01/01/2001 31/12/2500 -8518S999 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 8518 and SITC group 999 01/01/2001 31/12/2500 -8519 01/01/1988 31/12/2500 LIBEN Sound recording or sound reproducing apparatus 01/01/1988 31/12/2500 -851910 01/01/1988 31/12/2006 LIBEN Coin-operated or disc-operated record-players 01/01/1988 31/12/2006 -85191000 01/01/1988 31/12/2006 LIBEN Coin-operated or disc-operated record-players 01/01/1988 31/12/2006 -851920 01/01/2007 31/12/2500 LIBEN Sound recording or sound reproducing apparatus, operated by coins, banknotes, bank cards, tokens or by other means of payment [juke boxes] 01/01/2007 31/12/2500 -85192010 01/01/2007 31/12/2500 LIBEN Coin-operated or disc-operated record-players 01/01/2007 31/12/2500 -85192091 01/01/2007 31/12/2500 LIBEN Sound recording or sound reproducing apparatus, operated by coins, banknotes, bank cards, tokens or by other means of payment, with laser reading system (excl. coin-operated or disc-operated record-players) 01/01/2007 31/12/2500 -85192099 01/01/2007 31/12/2500 LIBEN Sound recording or sound reproducing apparatus, operated by coins, banknotes, bank cards, tokens or by other means of payment, without laser reading system (excl. coin-operated or disc-operated record-players) 01/01/2007 31/12/2500 -851921 01/01/1988 31/12/2006 LIBEN Record players without loudspeaker 01/01/1988 31/12/2006 -85192100 01/01/1988 31/12/2006 LIBEN Record players without loudspeaker 01/01/1988 31/12/2006 -851929 01/01/1988 31/12/2006 LIBEN Record players with loudspeaker (excl. coin-operated or disc-operated record-players) 01/01/1988 31/12/2006 -85192900 01/01/1988 31/12/2006 LIBEN Record players with loudspeaker (excl. coin-operated or disc-operated record-players) 01/01/1988 31/12/2006 -851930 01/01/2007 31/12/2500 LIBEN Turntables "record-decks" 01/01/2007 31/12/2500 -85193000 01/01/2007 31/12/2500 LIBEN Turntables "record-decks" 01/01/2007 31/12/2500 -851931 01/01/1988 31/12/2006 LIBEN Turntables "record-decks", with automatic record-changing mechanism 01/01/1988 31/12/2006 -85193100 01/01/1988 31/12/2006 LIBEN Turntables "record-decks", with automatic record-changing mechanism 01/01/1988 31/12/2006 -851939 01/01/1988 31/12/2006 LIBEN Turntables "record-decks", without automatic record-changing mechanism 01/01/1988 31/12/2006 -85193900 01/01/1988 31/12/2006 LIBEN Turntables "record-decks", without automatic record-changing mechanism 01/01/1988 31/12/2006 -851940 01/01/1988 31/12/2006 LIBEN Transcribing machines 01/01/1988 31/12/2006 -85194000 01/01/1988 31/12/2006 LIBEN Transcribing machines 01/01/1988 31/12/2006 -851950 01/01/2007 31/12/2500 LIBEN Telephone answering machines 01/01/2007 31/12/2500 -85195000 01/01/2007 31/12/2500 LIBEN Telephone answering machines 01/01/2007 31/12/2500 -851981 01/01/2007 31/12/2500 LIBEN Sound recording or sound reproducing apparatus, using magnetic, optical or semiconductor media (excl. those operated by coins, banknotes, bank cards, tokens or by other means of payment, turntables and telephone answering machines) 01/01/2007 31/12/2500 -85198100 01/01/2020 31/12/2500 LIBEN Sound recording or sound reproducing apparatus, using magnetic, optical or semiconductor media (excl. those operated by coins, banknotes, bank cards, tokens or by other means of payment, turntables and telephone answering machines) 01/01/2020 31/12/2500 -85198111 01/01/2007 31/12/2019 LIBEN Transcribing machines "play only", incl. cassette-players, using magnetic, optical or semiconductor media, without sound recording device 01/01/2007 31/12/2019 -85198115 01/01/2007 31/12/2019 LIBEN Pocket-size cassette players "play only" [dimensions <= 170 mm x 100 mm x 45 mm], using magnetic, optical or semiconductor media, without sound recording device (excl. transcribing machines) 01/01/2007 31/12/2019 -85198121 01/01/2007 31/12/2019 LIBEN Cassette-tape players "play only" using magnetic, optical or semiconductor media, with an analogue and digital reading system, without sound recording device (excl. transcribing machines and pocket size) 01/01/2007 31/12/2019 -85198125 01/01/2007 31/12/2019 LIBEN Cassette-tape players "play only" using magnetic, optical or semiconductor media, without sound recording device (excl. players with an analogue and digital reading system, transcribing machines and pocket size) 01/01/2007 31/12/2019 -85198131 01/01/2007 31/12/2019 LIBEN Sound-reproducing apparatus with laser reading system "CD-players", of a kind used in motor vehicles, for discs of a diameter <= 6,5 cm, without sound recording device 01/01/2007 31/12/2019 -85198135 01/01/2007 31/12/2019 LIBEN Sound-reproducing apparatus with laser reading system "CD-players", without sound recording device (excl. of a kind used in motor vehicles for discs of a diameter <= 6,5 cm) 01/01/2007 31/12/2019 -85198145 01/01/2007 31/12/2019 LIBEN Sound-reproducing apparatus, using magnetic, optical or semiconductor media, without laser reading system, without sound recording device (excl. those operated by coins, banknotes, bank cards, tokens or by other means of payment, turntables, transcribing machines, telephone answering machines, cassette players and CD-players) 01/01/2007 31/12/2019 -85198151 01/01/2007 31/12/2019 LIBEN Dictating machines using magnetic, optical or semiconductor media, incorporating sound reproducing apparatus, not capable of operating without an external source of power (excl. transcribing machines [play only]) 01/01/2007 31/12/2019 -85198155 01/01/2007 31/12/2016 LIBEN Magnetic tape cassette recorders, with built-in amplifier and one or more built-in loudspeakers, capable of operating without an external source of power (excl. dictating machines) 01/01/2007 31/12/2016 -85198161 01/01/2007 31/12/2016 LIBEN Magnetic tape cassette recorders, with built-in amplifier and one or more built-in loudspeakers, operating only with an external source of power 01/01/2007 31/12/2016 -85198165 01/01/2007 31/12/2016 LIBEN Magnetic tape pocket size cassette recorders "dimensions <= 170 mm x 100 mm x 45 mm" incorporating sound reproducing apparatus (excl. those with built-in amplifier and one or more built-in loudspeakers) 01/01/2007 31/12/2016 -85198170 01/01/2017 31/12/2019 LIBEN Magnetic tape recorders incorporating sound reproducing apparatus (excl. those operated by coins, banknotes, bank cards, tokens or by other means of payment, telephone answering machines and dictating machines) 01/01/2017 31/12/2019 -85198175 01/01/2007 31/12/2016 LIBEN Magnetic tape cassette recorders incorporating sound reproducing apparatus (excl. those with built-in amplifier and one or more built-in loudspeakers and pocket-size) 01/01/2007 31/12/2016 -85198181 01/01/2007 31/12/2016 LIBEN Magnetic tape recorders using magnetic tapes on reels, allowing sound recording or reproducing either at a single speed of 19 cm per second or at several speeds if those comprise only 19 cm per second and lower speeds 01/01/2007 31/12/2016 -85198185 01/01/2007 31/12/2016 LIBEN Magnetic tape recorders incorporating sound reproducing apparatus (excl. those operated by coins, banknotes, bank cards, tokens or by other means of payment, telephone answering machines, dictating machines, cassette recorders and apparatus using magnetic tapes on reels, allowing sound recording or reproducing either at a single speed of 19 cm per second or at several speeds if those comprise only 19 cm per second and lower speeds) 01/01/2007 31/12/2016 -85198195 01/01/2007 31/12/2019 LIBEN Sound recording or sound reproducing apparatus, using magnetic, optical or semiconductor media (excl. those operated by coins, banknotes, bank cards, tokens or by other means of payment, turntables, telephone answering machines, dictating machines and magnetic tape recorders) 01/01/2007 31/12/2019 -851989 01/01/2007 31/12/2500 LIBEN Sound recording or sound reproducing apparatus (excl. using magnetic, optical or semiconductor media, those operated by coins, banknotes, bank cards, tokens or by other means of payment, turntables and telephone answering machines) 01/01/2007 31/12/2500 -85198900 01/01/2017 31/12/2500 LIBEN Sound recording or sound reproducing apparatus (excl. using magnetic, optical or semiconductor media, those operated by coins, banknotes, bank cards, tokens or by other means of payment, turntables and telephone answering machines) 01/01/2017 31/12/2500 -85198911 01/01/2007 31/12/2016 LIBEN Record players (excl. using magnetic, optical or semiconductor media record players operated by coins, banknotes, bank cards, tokens or by other means of payment) 01/01/2007 31/12/2016 -85198915 01/01/2007 31/12/2016 LIBEN Transcribing machines "play only", without sound recording device (excl. using magnetic, optical or semiconductor media) 01/01/2007 31/12/2016 -85198919 01/01/2007 31/12/2016 LIBEN Sound reproducing apparatus, without sound recording device (excl. using magnetic, optical or semiconductor media those operated by coins, banknotes, bank cards, tokens or by other means of payment, turntables, telephone answering machines, record players and transcribing machines) 01/01/2007 31/12/2016 -85198990 01/01/2007 31/12/2016 LIBEN Sound recording or sound reproducing apparatus (excl. using magnetic, optical or semiconductor media, those operated by coins, banknotes, bank cards, tokens or by other means of payment, turntables, telephone answering machines and sound reproducing apparatus without sound recording device) 01/01/2007 31/12/2016 -851991 01/01/1988 31/12/1995 LIBEN Cassette-players, not incorporating a sound recording device (excl. transcribing machines) 01/01/1988 31/12/1995 -85199110 01/01/1988 31/12/1995 LIBEN Cassette-players, with built-in amplifier, without built-in loudspeaker, capable of operating without an external source of power, of dimensions <= 170 mm x 100 mm x 45 mm 01/01/1988 31/12/1995 -85199131 01/01/1995 31/12/1995 LIBEN Cassette-tape players ("play only") of a kind used in motor vehicles, with an analog and digital reading system 01/01/1995 31/12/1995 -85199139 01/01/1995 31/12/1995 LIBEN Cassette-tape players ("play only") of a kind used in motor vehicles (excl. with an analog and digital reading system) 01/01/1995 31/12/1995 -85199181 01/01/1995 31/12/1995 LIBEN Cassette-tape players ("play only") with an analog and digital reading system (excl. of a kind used in motor vehicles, transcribing machines and apparatus of subheading 8519.91.10) 01/01/1995 31/12/1995 -85199189 01/01/1995 31/12/1995 LIBEN Cassette-tape players ("play only") (excl. players with an analog and digital reading system, players of a kind used in motor vehicles, transcribing machines and apparatus of subheading 8519.91.10) 01/01/1995 31/12/1995 -85199191 01/01/1988 31/12/1994 LIBEN Cassette-players, of a kind used in motor vehicles, not incorporating a sound recording device 01/01/1988 31/12/1994 -85199199 01/01/1988 31/12/1994 LIBEN Cassette-players, not incorporating a sound recording device (excl. the kind used in motor vehicles, transcribing machines and apparatus of subheading no 8519.91-10) 01/01/1988 31/12/1994 -851992 01/01/1996 31/12/2006 LIBEN Pocket-size cassette players "dimensions <= 170 mm x 100 mm x 45 mm", with built-in amplifier, without built-in loudspeaker, capable of operating without an external source of electric power 01/01/1996 31/12/2006 -85199200 01/01/1996 31/12/2006 LIBEN Pocket-size cassette players "dimensions <= 170 mm x 100 mm x 45 mm", with built-in amplifier, without built-in loudspeaker, capable of operating without an external source of electric power 01/01/1996 31/12/2006 -851993 01/01/1996 31/12/2006 LIBEN Cassette players "play only" (excl. pocket-size and dictating machines) 01/01/1996 31/12/2006 -85199331 01/01/1996 31/12/2006 LIBEN Cassette-tape players "play only" of a kind used in motor vehicles, with an analogue and digital reading system 01/01/1996 31/12/2006 -85199339 01/01/1996 31/12/2006 LIBEN Cassette-tape players "play only" of a kind used in motor vehicles (excl. with an analogue and digital reading system) 01/01/1996 31/12/2006 -85199381 01/01/1996 31/12/2006 LIBEN Cassette-tape players "play only" with an analogue and digital reading system (excl. of a kind used in motor vehicles, dictating machines, and pocket size) 01/01/1996 31/12/2006 -85199389 01/01/1996 31/12/2006 LIBEN Cassette-tape players "play only" (excl. players with an analogue and digital reading system, players of a kind used in motor vehicles, dictating machines, and pocket size) 01/01/1996 31/12/2006 -851999 01/01/1988 31/12/2006 LIBEN Sound-reproducing apparatus, not incorporating a sound recording device (excl. record players, coin- or disc-operated record-players, dictating machines and cassette players) 01/01/1988 31/12/2006 -85199910 01/01/1988 31/12/1994 LIBEN Sound reproducing apparatus, with laser optical reading system, 'cd-players' 01/01/1988 31/12/1994 -85199911 01/01/1995 31/12/1995 LIBEN Sound reproducing apparatus with a laser reading system CD players) for discs of a diameter <= 6,5 cm 01/01/1995 31/12/1995 -85199912 01/01/1996 31/12/2006 LIBEN Sound-reproducing apparatus with laser reading system "CD-players", of a kind used in motor vehicles, for discs of a diameter <= 6,5 cm 01/01/1996 31/12/2006 -85199918 01/01/1996 31/12/2006 LIBEN Sound-reproducing apparatus with laser reading system "CD-players" (excl. of a kind used in motor vehicles, for discs of a diameter <= 6,5 cm) 01/01/1996 31/12/2006 -85199919 01/01/1995 31/12/1995 LIBEN Sound reproducing apparatus with a laser reading system (CD players) for discs of a diameter of > 6,5 cm 01/01/1995 31/12/1995 -85199990 01/01/1988 31/12/2006 LIBEN Sound-reproducing apparatus, not incorporating a sound recording device (excl. record players, coin-operated or disc-operated record-players, transcribing machines, cassette players and CD-players) 01/01/1988 31/12/2006 -8520 01/01/1988 31/12/2006 LIBEN Magnetic tape recorders and other sound recording apparatus whether or not incorporating a sound-reproducing device 01/01/1988 31/12/2006 -852010 01/01/1988 31/12/2006 LIBEN Dictating machines not capable of operating without an external source of power 01/01/1988 31/12/2006 -85201000 01/01/1988 31/12/2006 LIBEN Dictating machines not capable of operating without an external source of power 01/01/1988 31/12/2006 -852020 01/01/1988 31/12/2006 LIBEN Telephone answering machines incorporating a sound-reproducing device 01/01/1988 31/12/2006 -85202000 01/01/1988 31/12/2006 LIBEN Telephone answering machines incorporating a sound-reproducing device 01/01/1988 31/12/2006 -852031 01/01/1988 31/12/1995 LIBEN Magnetic tape recorders incorporating sound reproducing apparatus, cassette type 01/01/1988 31/12/1995 -85203111 01/01/1988 31/12/1995 LIBEN Magnetic tape recorders incorporating sound reproducing apparatus, cassette type, with built-in amplifier and one or more built-in loudspeakers, capable of operating without an external source of power 01/01/1988 31/12/1995 -85203119 01/01/1988 31/12/1995 LIBEN Magnetic tape recorders incorporating sound reproducing apparatus, cassette type, with built-in amplifier and one or more built-in loudspeakers, operating only with an external source of power 01/01/1988 31/12/1995 -85203130 01/01/1988 31/12/1995 LIBEN Magnetic tape recorders incorporating sound reproducing apparatus, cassette type, with built-in amplifier, without built-in loudspeaker, capable of operating without an external source of power, of dimensions <= 170 mm x 100 mm x 45 mm 01/01/1988 31/12/1995 -85203190 01/01/1988 31/12/1995 LIBEN Magnetic tape recorders incorporating sound reproducing apparatus, cassette type, with built-in amplifier but without built-in loudspeakers (excl. apparatus of subheading 8520.31.30) 01/01/1988 31/12/1995 -852032 01/01/1996 31/12/2006 LIBEN Magnetic tape recorders incorporating sound-reproducing apparatus, digital audio type (excl. dictating machines operating only with an external source of power, and telephone answering machines) 01/01/1996 31/12/2006 -85203211 01/01/1996 31/12/2006 LIBEN Cassette recorders, digital audio type, incorporating sound-reproducing apparatus, with built-in amplifier and one or more built-in loudspeakers, capable of operating without an external source of power 01/01/1996 31/12/2006 -85203219 01/01/1996 31/12/2006 LIBEN Cassette recorders, digital audio type, with built-in amplifier and one or more built-in loudspeakers, operating only with an external source of power 01/01/1996 31/12/2006 -85203230 01/01/1996 31/12/2006 LIBEN Cassette recorders, digital audio type, pocket size "dimensions <= 170 mm x 100 mm x 45 mm", with built-in amplifier, without built-in loudspeaker, capable of operating without an external source of power 01/01/1996 31/12/2006 -85203250 01/01/1996 31/12/2006 LIBEN Cassette recorders, digital audio type, incorporating sound-reproducing apparatus, whether or not with built-in amplifier, but without built-in loudspeakers (excl. pocket size) 01/01/1996 31/12/2006 -85203291 01/01/1996 31/12/2006 LIBEN Magnetic tape recorders, digital audio type, using magnetic tapes on reels, allowing sound recording or reproducing either at a single speed of 19 cm per second or at several speeds if those comprise only 19 cm per second and lower speeds 01/01/1996 31/12/2006 -85203299 01/01/1996 31/12/2006 LIBEN Magnetic tape recorders, digital audio type, incorporating sound-reproducing apparatus (excl. dictating machines operating only with an external source of power, telephone answering machines, cassette recorders and apparatus using magnetic tapes on reels, allowing sound recording or reproducing either at a single speed of 19 cm per second or at several speeds if those comprise only 19 cm per second and lower speeds) 01/01/1996 31/12/2006 -852033 01/01/1996 31/12/2006 LIBEN Cassette recorders incorporating sound-reproducing apparatus (excl. digital audio type) 01/01/1996 31/12/2006 -85203311 01/01/1996 31/12/2006 LIBEN Cassette recorders, with built-in amplifier and one or more built-in loudspeakers, capable of operating without an external source of power (excl. digital audio type) 01/01/1996 31/12/2006 -85203319 01/01/1996 31/12/2006 LIBEN Cassette recorders, with built-in amplifier and one or more built-in loudspeakers, operating only with an external source of power (excl. digital audio type) 01/01/1996 31/12/2006 -85203330 01/01/1996 31/12/2006 LIBEN Cassette recorders, pocket size "dimensions <= 170 mm x 100 mm x 45 mm", with built-in amplifier, without built-in loudspeaker, capable of operating without an external source of power (excl. digital audio type) 01/01/1996 31/12/2006 -85203390 01/01/1996 31/12/2006 LIBEN Cassette recorders incorporating sound-reproducing apparatus, with built-in amplifier but without built-in loudspeakers (excl. digital audio type and pocket-size apparatus of subheading 8520.33.30) 01/01/1996 31/12/2006 -852039 01/01/1988 31/12/2006 LIBEN Magnetic tape recorders incorporating sound-reproducing apparatus (excl. digital audio type, dictating machines operating only with an external source of power, telephone answering machines and cassette recorders) 01/01/1988 31/12/2006 -85203910 01/01/1988 31/12/1995 LIBEN Magnetic tape recorders incorporating sound reproducing apparatus, using magnetic tapes on reels, functioning either at a single speed of 19 cm per second or at several speeds if those comprise only 19 cm per second and lower speeds (excl. dictating machines operating only with an external source of power, telephone answering machines and cassette recorders) 01/01/1988 31/12/1995 -85203910 01/01/1996 31/12/2006 LIBEN Magnetic tape recorders using magnetic tapes on reels, allowing sound recording or reproducing either at a single speed of 19 cm per second or at several speeds if those comprise only 19 cm per second and lower speeds (excl. digital audio type) 01/01/1996 31/12/2006 -85203990 01/01/1988 31/12/1995 LIBEN Magnetic tape recorders incorporating sound reproducing apparatus (excl. dictating machines operating only with an external source of power, telephone answering machines, cassette recorders and apparatus of subheading 8520.39.10) 01/01/1988 31/12/1995 -85203990 01/01/1996 31/12/2006 LIBEN Magnetic tape recorders incorporating sound-reproducing apparatus (excl. digital audio type, dictating machines operating only with an external source of power, telephone answering machines, cassette recorders and apparatus using magnetic tapes on reels, allowing sound recording or reproducing either at a single speed of 19 cm per second or at several speeds if those comprise only 19 cm per second and lower speeds) 01/01/1996 31/12/2006 -852090 01/01/1988 31/12/2006 LIBEN Sound recording equipment whether or not incorporating a sound reproducing device (excl. magnetic tape recorders incorporating sound-reproducing apparatus) 01/01/1988 31/12/2006 -85209000 01/01/2006 31/12/2006 LIBEN Sound recording equipment whether or not incorporating a sound reproducing device (excl. magnetic tape recorders incorporating sound-reproducing apparatus) 01/01/2006 31/12/2006 -85209010 01/01/1988 31/12/2005 LIBEN Sound recording equipment whether or not incorporating a sound reproducing device, for civil aircraft (excl. magnetic tape recorders incorporating sound-reproducing apparatus) 01/01/1988 31/12/2005 -85209090 01/01/1988 31/12/2005 LIBEN Sound recording equipment whether or not incorporating a sound reproducing device (excl. those for civil aircraft of subheading 8520.90.10 and magnetic tape recorders incorporating sound-reproducing apparatus) 01/01/1988 31/12/2005 -8521 01/01/1988 31/12/2500 LIBEN Video recording or reproducing apparatus, whether or not incorporating a video tuner (excl. video camera recorders) 01/01/1988 31/12/2500 -852110 01/01/1988 31/12/2500 LIBEN Magnetic tape-type video recording or reproducing apparatus, whether or not incorporating a video tuner (excl. video camera recorders) 01/01/1988 31/12/2500 -85211010 01/01/1988 31/12/2005 LIBEN Magnetic tape-type video recording or reproducing apparatus, whether or not incorporating a video tuner, for use in civil aircraft 01/01/1988 31/12/2005 -85211020 01/01/2006 31/12/2500 LIBEN Video recording or reproducing apparatus, whether or not incorporating a video tuner, for magnetic tape of a width of <= 1,3 cm and allowing recording or reproduction at a tape speed of <= 50 mm/s (excl. video camera recorders) 01/01/2006 31/12/2500 -85211030 01/01/1996 31/12/2005 LIBEN Video recording or reproducing apparatus, whether or not incorporating a video tuner, for magnetic tape of a width of <= 1,3 cm and allowing recording or reproduction at a tape speed of <= 50 mm/s (excl. those of subheading 8521.10.10 for use in civil aircraft, and video camera recorders) 01/01/1996 31/12/2005 -85211031 01/01/1988 31/12/1995 LIBEN Video recording or reproducing apparatus, whether or not incorporating a video tuner, for magnetic tape of a width of <= 1,3 cm and allowing recording or reproduction at a tape speed of <= 50 mm/s, with a built-in television camera in the same housing (excl. those of subheading 8521.10.10 for use in civil aircraft) 01/01/1988 31/12/1995 -85211038 01/01/1992 31/12/1995 LIBEN Video recording or reproducing apparatus, whether or not incorporating a video tuner, for magnetic tape of a width of <= 1,3 cm and allowing recording or reproduction at a tape speed of <= 50 mm/s (excl. those of subheading 8521.10.10 for use in civil aircraft and those with a built-in television camera in the same housing) 01/01/1992 31/12/1995 -85211039 01/01/1988 31/12/1991 LIBEN Video recording or reproducing apparatus, magnetic tape-type, width =< 1.3 cm, tape speed =< 50 mm/s (excl. those for civil aircraft of subheading no 8521.10-10 and those with a built-in television camera) 01/01/1988 31/12/1991 -85211080 01/01/1992 31/12/2005 LIBEN Magnetic tape-type video recording or reproducing apparatus, whether or not incorporating a video tuner (excl. for use in civil aircraft of subheading 8521.10.10, video camera recorders and those using magnetic tape of a width of <= 1,3 cm and allowing recording or reproduction at a tape speed of <= 50 mm/s) 01/01/1992 31/12/2005 -85211090 01/01/1988 31/12/1991 LIBEN Video recording or reproducing apparatus, magnetic tape-type (excl. such apparatus for civil aircraft of subheading no 8521.10-10 and apparatus, magnetic tape-type, width =< 1.3 cm and a tape speed =< 50 mm/s) 01/01/1988 31/12/1991 -85211095 01/01/2006 31/12/2500 LIBEN Magnetic tape-type video recording or reproducing apparatus, whether or not incorporating a video tuner (excl. video camera recorders and those using magnetic tape of a width of <= 1,3 cm and allowing recording or reproduction at a tape speed of <= 50 mm/s) 01/01/2006 31/12/2500 -852190 01/01/1988 31/12/2500 LIBEN Video recording or reproducing apparatus, whether or not incorporating a video tuner (excl. magnetic tape-type and video camera recorders) 01/01/1988 31/12/2500 -85219000 01/01/1988 31/12/1991 LIBEN Video recording or reproducing apparatus (excl. magnetic tape-type) 01/01/1988 31/12/1991 -85219000 01/01/1992 31/12/2500 LIBEN Video recording or reproducing apparatus, whether or not incorporating a video tuner (excl. magnetic tape-type and video camera recorders) 01/01/1992 31/12/2500 -8522 01/01/1988 31/12/2500 LIBEN Parts and accessories suitable for use solely or principally with sound reproducing and recording apparatus and with video equipment for recording and reproducing pictures and sound 01/01/1988 31/12/2500 -852210 01/01/1988 31/12/2500 LIBEN Pick-up cartridges 01/01/1988 31/12/2500 -85221000 01/01/1988 31/12/2500 LIBEN Pick-up cartridges 01/01/1988 31/12/2500 -852290 01/01/1988 31/12/2500 LIBEN Parts and accessories suitable for use solely or principally with sound reproducing and recording apparatus and with video equipment for recording and reproducing pictures and sound (excl. pick-up devices for grooved recording media) 01/01/1988 31/12/2500 -85229000 01/01/2020 31/12/2500 LIBEN Parts and accessories suitable for use solely or principally with sound reproducing and recording apparatus and with video equipment for recording and reproducing pictures and sound (excl. pick-up devices for grooved recording media) 01/01/2020 31/12/2500 -85229010 01/01/1988 31/12/2005 LIBEN Assemblies and sub-assemblies consisting of two or more parts or pieces fastened or joined together, for apparatus of subheading 8520.90, for civil aircraft 01/01/1988 31/12/2005 -85229020 01/01/2017 31/12/2019 LIBEN LED backlight modules for LCDs of sound/video recording/reproducing apparatus 01/01/2017 31/12/2019 -85229030 01/01/1988 31/12/2019 LIBEN Styli; diamonds, sapphires and other precious or semi-precious stones "natural, synthetic or reconstructed" for styli for sound-reproducing apparatus 01/01/1988 31/12/2019 -85229041 01/01/2006 31/12/2006 LIBEN Electronic assemblies of telephone answering machines, n.e.s. 01/01/2006 31/12/2006 -85229041 01/01/2007 31/12/2019 LIBEN Electronic assemblies of telephone answering machines, n.e.s. 01/01/2007 31/12/2019 -85229049 01/01/2006 31/12/2006 LIBEN Electronic assemblies for sound reproducing and recording apparatus and for video recording or reproducing apparatus, n.e.s. (excl. of telephone answering machines) 01/01/2006 31/12/2006 -85229049 01/01/2007 31/12/2016 LIBEN Electronic assemblies for sound reproducing and recording apparatus and for video recording or reproducing apparatus, n.e.s. (excl. of telephone answering machines) 01/01/2007 31/12/2016 -85229049 01/01/2017 31/12/2019 LIBEN Electronic assemblies for sound reproducing and recording apparatus and for video recording or reproducing apparatus, n.e.s. (excl. of telephone answering machines) 01/01/2017 31/12/2019 -85229051 01/01/1998 31/12/2005 LIBEN Electronic assemblies of telephone answering machines, n.e.s. 01/01/1998 31/12/2005 -85229059 01/01/1998 31/12/2005 LIBEN Electronic assemblies for sound reproducing and recording apparatus and for video recording or reproducing apparatus, n.e.s. (excl. of telephone answering machines) 01/01/1998 31/12/2005 -85229070 01/01/2006 31/12/2019 LIBEN Single cassette-deck assemblies with a total thickness <= 53 mm, of a kind used in the manufacture of sound recording and reproducing apparatus 01/01/2006 31/12/2019 -85229080 01/01/2006 31/12/2016 LIBEN Parts and accessories suitable for use solely or principally with sound reproducing and recording apparatus and with video equipment for recording and reproducing pictures and sound, n.e.s. 01/01/2006 31/12/2016 -85229080 01/01/2017 31/12/2019 LIBEN Parts and accessories suitable for use solely or principally with sound reproducing and recording apparatus and with video equipment for recording and reproducing pictures and sound, n.e.s. 01/01/2017 31/12/2019 -85229091 01/01/1988 31/12/1997 LIBEN Electronic assemblies for sound reproducing and recording apparatus and for video recording or reproducing apparatus, n.e.s. 01/01/1988 31/12/1997 -85229093 01/01/1995 31/12/2005 LIBEN Single cassette-deck assemblies with a total thickness <= 53 mm, of a kind used in the manufacture of sound recording and reproducing apparatus 01/01/1995 31/12/2005 -85229098 01/01/1995 31/12/2005 LIBEN Parts and accessories suitable for use solely or principally with sound reproducing and recording apparatus and with video equipment for recording and reproducing pictures and sound, n.e.s. 01/01/1995 31/12/2005 -85229099 01/01/1988 31/12/1994 LIBEN Parts and accessories for sound reproducing and recording apparatus and for video recording or reproducing apparatus, n.e.s. 01/01/1988 31/12/1994 -8523 01/01/1988 31/12/2500 LIBEN Discs, tapes, solid-state non-volatile storage devices, "smart cards" and other media for the recording of sound or of other phenomena, whether or not recorded, incl. matrices and masters for the production of discs (excl. products of chapter 37) 01/01/1988 31/12/2500 -852311 01/01/1988 31/12/2006 LIBEN Magnetic tapes, unrecorded, of a width <= 4 mm 01/01/1988 31/12/2006 -85231100 01/01/1988 31/12/2006 LIBEN Magnetic tapes, unrecorded, of a width <= 4 mm 01/01/1988 31/12/2006 -852312 01/01/1988 31/12/2006 LIBEN Magnetic tapes, unrecorded, of a width > 4 mm but <= 6,5 mm 01/01/1988 31/12/2006 -85231200 01/01/1988 31/12/2006 LIBEN Magnetic tapes, unrecorded, of a width > 4 mm but <= 6,5 mm 01/01/1988 31/12/2006 -852313 01/01/1988 31/12/2006 LIBEN Magnetic tapes, unrecorded, of a width > 6,5 mm 01/01/1988 31/12/2006 -85231300 01/01/1988 31/12/2006 LIBEN Magnetic tapes, unrecorded, of a width > 6,5 mm 01/01/1988 31/12/2006 -852320 01/01/1988 31/12/2006 LIBEN Magnetic discs, unrecorded 01/01/1988 31/12/2006 -85232010 01/01/1988 31/12/1994 LIBEN Magnetic discs, unrecorded, rigid 01/01/1988 31/12/1994 -85232010 01/01/2000 31/12/2006 LIBEN Magnetic tapes, rigid, unrecorded 01/01/2000 31/12/2006 -85232011 01/01/1995 31/12/1999 LIBEN Magnetic tapes, rigid, unrecorded, with a thin-film metallic coating, having a coercivity > 600 Oersted and an external diameter <= 231 mm 01/01/1995 31/12/1999 -85232019 01/01/1995 31/12/1999 LIBEN Magnetic tapes, rigid, unrecorded (excl. with a thin-film metallic coating, having a coercivity > 600 Oersted and an external diameter <= 231 mm) 01/01/1995 31/12/1999 -85232090 01/01/1988 31/12/2006 LIBEN Diskettes and other magnetic discs, not rigid, unrecorded 01/01/1988 31/12/2006 -852321 01/01/2007 31/12/2500 LIBEN Cards incorporating a magnetic stripe for the recording of sound or of other phenomena 01/01/2007 31/12/2500 -85232100 01/01/2007 31/12/2500 LIBEN Cards incorporating a magnetic stripe for the recording of sound or of other phenomena 01/01/2007 31/12/2500 -852329 01/01/2007 31/12/2500 LIBEN Magnetic media for the recording of sound or of other phenomena (excl. cards incorporating a magnetic stripe and goods of chapter 37) 01/01/2007 31/12/2500 -85232915 01/01/2007 31/12/2500 LIBEN Magnetic tapes and magnetic discs, unrecorded, for the recording of sound or of other phenomena 01/01/2007 31/12/2500 -85232919 01/01/2017 31/12/2500 LIBEN Magnetic tapes and magnetic discs, recorded 01/01/2017 31/12/2500 -85232931 01/01/2007 31/12/2016 LIBEN Magnetic tapes and magnetic discs, recorded, for reproducing phenomena (excl. those for reproducing sound or image, for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine, and goods of chapter 37) 01/01/2007 31/12/2016 -85232933 01/01/2007 31/12/2016 LIBEN Magnetic tapes and magnetic discs, recorded, for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine 01/01/2007 31/12/2016 -85232939 01/01/2007 31/12/2016 LIBEN Magnetic tapes and magnetic discs, recorded, for reproducing sound or image (excl. for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine and goods of chapter 37) 01/01/2007 31/12/2016 -85232990 01/01/2007 31/12/2500 LIBEN Magnetic media for the recording of sound or of other phenomena (excl. cards incorporating a magnetic stripe, tapes, discs and goods of chapter 37) 01/01/2007 31/12/2500 -852330 01/01/1996 31/12/2006 LIBEN Cards incorporating an unrecorded magnetic stripe 01/01/1996 31/12/2006 -85233000 01/01/1996 31/12/2006 LIBEN Cards incorporating an unrecorded magnetic stripe 01/01/1996 31/12/2006 -852340 01/01/2007 31/12/2011 LIBEN Optical media for the recording of sound or of other phenomena (excl. goods of chapter 37) 01/01/2007 31/12/2011 -85234011 01/01/2007 31/12/2011 LIBEN Optical discs for laser reading systems, unrecorded, of a recording capacity <= 900 megabytes, non-erasable "CD-Rs" 01/01/2007 31/12/2011 -85234013 01/01/2007 31/12/2011 LIBEN Optical discs for laser reading systems, unrecorded, of a recording capacity > 900 megabytes but <= 18 gigabytes, non-erasable "digital versatile discs" [DVD-/+Rs] 01/01/2007 31/12/2011 -85234019 01/01/2007 31/12/2011 LIBEN Optical media, unrecorded, for the recording of sound or of other phenomena "e.g. CD-RWs, DVD-/+RWs, DVD-RAMs, MiniDiscs" (excl. non-erasable discs for laser reading systems of a recording capacity <= 18 gigabytes [CD-Rs, DVD-/+Rs] and goods of chapter 37) 01/01/2007 31/12/2011 -85234025 01/01/2007 31/12/2011 LIBEN Optical discs for laser reading systems, recorded, for reproducing phenomena (excl. those for reproducing sound or image, for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine, and goods of chapter 37) 01/01/2007 31/12/2011 -85234031 01/01/2007 31/12/2011 LIBEN Optical discs for laser reading systems, recorded, for reproducing sound only, of a diameter <= 6,5 cm 01/01/2007 31/12/2011 -85234039 01/01/2007 31/12/2011 LIBEN Optical discs for laser reading systems, recorded, for reproducing sound only, of a diameter > 6,5 cm 01/01/2007 31/12/2011 -85234045 01/01/2007 31/12/2011 LIBEN Optical discs for laser reading systems, recorded, for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine 01/01/2007 31/12/2011 -85234051 01/01/2007 31/12/2011 LIBEN Digital versatile discs "DVD", recorded 01/01/2007 31/12/2011 -85234059 01/01/2007 31/12/2011 LIBEN Optical discs for laser reading systems, recorded, for reproducing sound and image or image only (excl. digital versatile discs "DVD" and discs for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine) 01/01/2007 31/12/2011 -85234091 01/01/2007 31/12/2011 LIBEN Optical media, recorded, for reproducing phenomena (excl. discs for laser reading systems, those for reproducing sound or image, for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine, and goods of chapter 37) 01/01/2007 31/12/2011 -85234093 01/01/2007 31/12/2011 LIBEN Optical media, recorded, for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine (excl. discs for laser reading systems) 01/01/2007 31/12/2011 -85234099 01/01/2007 31/12/2011 LIBEN Optical media, recorded, for reproducing sound or image (excl. discs for laser reading systems, those for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine and goods of chapter 37) 01/01/2007 31/12/2011 -852341 01/01/2012 31/12/2500 LIBEN Optical media for the recording of sound or of other phenomena, unrecorded (excl. goods of chapter 37) 01/01/2012 31/12/2500 -85234110 01/01/2012 31/12/2500 LIBEN Optical discs for laser reading systems, unrecorded, of a recording capacity <= 900 megabytes, non-erasable "CD-Rs" 01/01/2012 31/12/2500 -85234130 01/01/2012 31/12/2500 LIBEN Optical discs for laser reading systems, unrecorded, of a recording capacity > 900 megabytes but <= 18 gigabytes, non-erasable "DVD-/+Rs" 01/01/2012 31/12/2500 -85234190 01/01/2012 31/12/2500 LIBEN Optical media, unrecorded, for the recording of sound or of other phenomena "e.g. CD-RWs, DVD-/+RWs, DVD-RAMs, MiniDiscs" (excl. non-erasable discs for laser reading systems of a recording capacity <= 18 gigabytes [CD-Rs, DVD-/+Rs] and goods of chapter 37) 01/01/2012 31/12/2500 -852349 01/01/2012 31/12/2500 LIBEN Optical media for the recording of sound or of other phenomena (excl. unrecorded and goods of chapter 37) 01/01/2012 31/12/2500 -85234910 01/01/2017 31/12/2500 LIBEN Digital versatile discs "DVDs", recorded 01/01/2017 31/12/2500 -85234920 01/01/2017 31/12/2500 LIBEN Discs for laser reading systems, recorded (excl. DVDs) 01/01/2017 31/12/2500 -85234925 01/01/2012 31/12/2016 LIBEN Optical discs for laser reading systems, recorded, for reproducing phenomena (excl. those for reproducing sound or image, and goods of chapter 37) 01/01/2012 31/12/2016 -85234931 01/01/2012 31/12/2016 LIBEN Optical discs for laser reading systems, recorded, for reproducing sound only, of a diameter <= 6,5 cm 01/01/2012 31/12/2016 -85234939 01/01/2012 31/12/2016 LIBEN Optical discs for laser reading systems, recorded, for reproducing sound only, of a diameter > 6,5 cm 01/01/2012 31/12/2016 -85234945 01/01/2012 31/12/2016 LIBEN Optical discs for laser reading systems, recorded, for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine 01/01/2012 31/12/2016 -85234951 01/01/2012 31/12/2016 LIBEN Digital versatile discs "DVD", recorded, for reproducing sound and image or image only (excl. for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine) 01/01/2012 31/12/2016 -85234959 01/01/2012 31/12/2016 LIBEN Optical discs for laser reading systems, recorded, for reproducing sound and image or image only (excl. digital versatile discs "DVD" and discs for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine) 01/01/2012 31/12/2016 -85234990 01/01/2017 31/12/2500 LIBEN Optical media, recorded (excl. discs for laser reading systems) 01/01/2017 31/12/2500 -85234991 01/01/2012 31/12/2016 LIBEN Optical media, recorded, for reproducing phenomena (excl. discs for laser reading systems, those for reproducing sound or image, for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine, and goods of chapter 37) 01/01/2012 31/12/2016 -85234993 01/01/2012 31/12/2016 LIBEN Optical media, recorded, for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine (excl. discs for laser reading systems) 01/01/2012 31/12/2016 -85234999 01/01/2012 31/12/2016 LIBEN Optical media, recorded, for reproducing sound or image (excl. discs for laser reading systems, those for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine and goods of chapter 37) 01/01/2012 31/12/2016 -852351 01/01/2007 31/12/2500 LIBEN Solid-state, non-volatile data storage devices for recording data from an external source [flash memory cards or flash electronic storage cards] (excl. goods of chapter 37) 01/01/2007 31/12/2500 -85235110 01/01/2007 31/12/2500 LIBEN Solid-state, non-volatile data storage devices for recording data from an external source [flash memory cards or flash electronic storage cards], unrecorded 01/01/2007 31/12/2500 -85235190 01/01/2017 31/12/2500 LIBEN Solid-state, non-volatile data storage devices [flash memory cards or flash electronic storage cards], recorded 01/01/2017 31/12/2500 -85235191 01/01/2007 31/12/2016 LIBEN Solid-state, non-volatile data storage devices for recording data from an external source [flash memory cards or flash electronic storage cards], recorded, for reproducing phenomena (excl. those for reproducing sound or image, for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine, and goods of chapter 37) 01/01/2007 31/12/2016 -85235193 01/01/2007 31/12/2016 LIBEN Solid-state, non-volatile data storage devices for recording data from an external source [flash memory cards or flash electronic storage cards], recorded, for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine 01/01/2007 31/12/2016 -85235199 01/01/2007 31/12/2016 LIBEN Solid-state, non-volatile data storage devices for recording data from an external source [flash memory cards or flash electronic storage cards], recorded, for reproducing sound or image (excl. for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine and goods of chapter 37) 01/01/2007 31/12/2016 -852352 01/01/2007 31/12/2500 LIBEN Cards incorporating one or more electronic integrated circuits "smart cards" 01/01/2007 31/12/2500 -85235200 01/01/2017 31/12/2500 LIBEN Cards incorporating one or more electronic integrated circuits "smart cards" 01/01/2017 31/12/2500 -85235210 01/01/2007 31/12/2016 LIBEN Cards incorporating two or more electronic integrated circuits "smart cards" 01/01/2007 31/12/2016 -85235290 01/01/2007 31/12/2016 LIBEN Cards and tags incorporating only one electronic integrated circuit "smart cards" 01/01/2007 31/12/2016 -852359 01/01/2007 31/12/2500 LIBEN Semiconductor media, unrecorded, for the recording of sound or of other phenomena (excl. solid-state non-volatile data storage devices, smart cards and goods of chapter 37) 01/01/2007 31/12/2500 -85235910 01/01/2007 31/12/2500 LIBEN Semiconductor media, unrecorded, for the recording of sound or of other phenomena (excl. solid-state non-volatile data storage devices and smart cards) 01/01/2007 31/12/2500 -85235990 01/01/2017 31/12/2500 LIBEN Semiconductor media, recorded (excl. solid-state non-volatile data storage devices and smart cards) 01/01/2017 31/12/2500 -85235991 01/01/2007 31/12/2016 LIBEN Semiconductor media, recorded, for reproducing phenomena (excl. those for reproducing sound or image, for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine, solid-state non-volatile data storage devices, smart cards, and goods of chapter 37) 01/01/2007 31/12/2016 -85235993 01/01/2007 31/12/2016 LIBEN Semiconductor media, recorded, for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine (excl. solid-state non-volatile data storage devices, smart cards, and goods of chapter 37) 01/01/2007 31/12/2016 -85235999 01/01/2007 31/12/2016 LIBEN Semiconductor media, recorded, for reproducing sound or image (excl. for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine, solid-state non-volatile data storage devices, smart cards, and goods of chapter 37) 01/01/2007 31/12/2016 -852380 01/01/2007 31/12/2500 LIBEN Media for the recording of sound or of other phenomena, whether or not recorded, incl. matrices and masters for the production of discs (excl. magnetic, optical and semiconductor media, and products of chapter 37) 01/01/2007 31/12/2500 -85238010 01/01/2007 31/12/2500 LIBEN Media for the recording of sound or of other phenomena, unrecorded, incl. matrices and masters for the production of discs (excl. magnetic, optical and semiconductor media, and products of chapter 37) 01/01/2007 31/12/2500 -85238090 01/01/2017 31/12/2500 LIBEN Media, recorded, incl. matrices and masters for the production of discs (excl. magnetic, optical and semiconductor media, and products of chapter 37) 01/01/2017 31/12/2500 -85238091 01/01/2007 31/12/2016 LIBEN Recorded media for reproducing phenomena (excl. those for reproducing sound or image, for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine, magnetic, optical and semiconductor media, and products of chapter 37) 01/01/2007 31/12/2016 -85238093 01/01/2007 31/12/2016 LIBEN Recorded media for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine (excl. magnetic, optical and semiconductor media, and products of chapter 37) 01/01/2007 31/12/2016 -85238099 01/01/2007 31/12/2016 LIBEN Media, recorded, for reproducing sound or image, incl. matrices and masters for the production of discs (excl. for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine, magnetic, optical and semiconductor media, and products of chapter 37) 01/01/2007 31/12/2016 -852390 01/01/1988 31/12/2006 LIBEN Prepared unrecorded media for sound recording or similar recording of other phenomena (excl. magnetic tapes, magnetic discs, cards incorporating a magnetic stripe and goods of chapter 37) 01/01/1988 31/12/2006 -85239000 01/01/1988 31/12/1995 LIBEN Prepared unrecorded media for sound recording or similar recording of other phenomena (excl. magnetic tapes, magnetic discs and products of chapter 37) 01/01/1988 31/12/1995 -85239000 01/01/1996 31/12/2005 LIBEN Prepared unrecorded media for sound recording or similar recording of other phenomena (excl. magnetic tapes, magnetic discs, cards incorporating a magnetic stripe and goods of chapter 37) 01/01/1996 31/12/2005 -85239010 01/01/2006 31/12/2006 LIBEN Discs for laser reading systems of a recording capacity <= 900 megabytes (other than erasable) 01/01/2006 31/12/2006 -85239030 01/01/2006 31/12/2006 LIBEN Discs for laser reading systems of a recording capacity > 900 megabytes but <= 18 gigabytes (other than erasable) 01/01/2006 31/12/2006 -85239090 01/01/2006 31/12/2006 LIBEN Prepared unrecorded media for sound recording or similar recording of other phenomena (excl. magnetic tapes, magnetic discs, cards incorporating a magnetic stripe, non erasable discs for laser reading systems of a recording capacity <= 18 gigabytes and goods of chapter 37) 01/01/2006 31/12/2006 -8524 01/01/1988 31/12/2006 LIBEN Records, tapes and other recorded media for sound or other similarly recorded phenomena, incl. matrices and masters for the production of records (excl. products of chapter 37) 01/01/1988 31/12/2006 -852410 01/01/1988 31/12/2006 LIBEN Gramophone records 01/01/1988 31/12/2006 -85241000 01/01/1988 31/12/2006 LIBEN Gramophone records 01/01/1988 31/12/2006 -852421 01/01/1988 31/12/1995 LIBEN Magnetic tapes, recorded, for sound or other similarly recorded phenomena, of a width <= 4 mm 01/01/1988 31/12/1995 -85242110 01/01/1988 31/12/1995 LIBEN Magnetic tapes bearing data or instructions, other than sound or vision recordings, of a width <= 4 mm, used in automatic data-processing machines 01/01/1988 31/12/1995 -85242190 01/01/1988 31/12/1995 LIBEN Magnetic tapes, recorded, of a width <= 4 mm (excl. tapes bearing data or instructions, other than sound or vision recordings, used in automatic data-processing machines) 01/01/1988 31/12/1995 -852422 01/01/1988 31/12/1995 LIBEN Magnetic tapes, recorded, for sound or other similarly recorded phenomena, of a width > 4 mm but <= 6,5 mm 01/01/1988 31/12/1995 -85242210 01/01/1988 31/12/1995 LIBEN Magnetic tapes bearing data or instructions, other than sound or vision recordings, of a width > 4 mm but <= 6,5 mm, used in automatic data-processing machines 01/01/1988 31/12/1995 -85242290 01/01/1988 31/12/1995 LIBEN Magnetic tapes, recorded, of a width > 4 mm but <= 6,5 mm (excl. tapes bearing data or instructions, other than sound or vision recordings, used in automatic data-processing machines) 01/01/1988 31/12/1995 -852423 01/01/1988 31/12/1995 LIBEN Magnetic tapes, recorded, for sound or other similarly recorded phenomena of a width > 6,5 mm 01/01/1988 31/12/1995 -85242310 01/01/1988 31/12/1995 LIBEN Magnetic tapes bearing data or instructions, other than sound or vision recordings, of a width > 6,5 mm, used in automatic data-processing machines 01/01/1988 31/12/1995 -85242390 01/01/1988 31/12/1995 LIBEN Magnetic tapes, recorded, of a width > 6,5 mm (excl. tapes bearing data or instructions, other than sound or vision recordings, used in automatic data-processing machines) 01/01/1988 31/12/1995 -852431 01/01/1996 31/12/2006 LIBEN Discs, recorded, for laser reading systems, for reproducing phenomena other than sound or image 01/01/1996 31/12/2006 -85243100 01/01/1996 31/12/2006 LIBEN Discs, recorded, for laser reading systems, for reproducing phenomena other than sound or image 01/01/1996 31/12/2006 -852432 01/01/1996 31/12/2001 LIBEN Discs, recorded, for laser reading systems, for reproducing sound only 01/01/1996 31/12/2001 -852432 01/01/2002 31/12/2006 LIBEN Discs, recorded, for laser reading systems, for reproducing sound only 01/01/2002 31/12/2006 -85243200 01/01/1996 31/12/2001 LIBEN Discs, recorded, for laser reading systems, for reproducing sound only 01/01/1996 31/12/2001 -85243210 01/01/2002 31/12/2006 LIBEN Discs, recorded, for laser reading systems, for reproducing sound only, of a diameter <= 6,5 cm 01/01/2002 31/12/2006 -85243290 01/01/2002 31/12/2006 LIBEN Discs, recorded, for laser reading systems, for reproducing sound only, of a diameter > 6,5 cm 01/01/2002 31/12/2006 -852439 01/01/1996 31/12/2006 LIBEN Discs, recorded, for laser reading systems, for reproducing sound and image or image only 01/01/1996 31/12/2006 -85243900 01/01/1996 31/12/1997 LIBEN Discs, recorded, for laser reading systems, for reproducing sound and image or image only 01/01/1996 31/12/1997 -85243910 01/01/1998 31/12/2006 LIBEN Discs, recorded, for laser reading systems, for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine 01/01/1998 31/12/2006 -85243920 01/01/2002 31/12/2006 LIBEN Digital versatile discs "DVD" 01/01/2002 31/12/2006 -85243980 01/01/2002 31/12/2006 LIBEN Discs, recorded, for laser reading systems, for reproducing sound and image or image only (excl. digital versatile discs "DVD" and discs for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine) 01/01/2002 31/12/2006 -85243990 01/01/1998 31/12/2001 LIBEN Discs, recorded, for laser reading systems, for reproducing sound and image or image only (excl. for reproducing representations of instructions, data, sound, and image recorded in a machine readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data processing machine) 01/01/1998 31/12/2001 -852440 01/01/1996 31/12/2006 LIBEN Magnetic tapes, recorded, for reproducing phenomena other than sound or image 01/01/1996 31/12/2006 -85244000 01/01/2000 31/12/2006 LIBEN Magnetic tapes, recorded, for reproducing phenomena other than sound or image 01/01/2000 31/12/2006 -85244010 01/01/1996 31/12/1999 LIBEN Magnetic tapes bearing data or instructions other than sound or image recordings, of a kind used in automatic data-processing machines 01/01/1996 31/12/1999 -85244091 01/01/1996 31/12/1999 LIBEN Magnetic tapes, recorded, of a width > 4 mm but <= 6,5 mm (excl. tapes bearing data or instructions, sound or image recordings, and of a kind used in automatic data-processing machines) 01/01/1996 31/12/1999 -85244099 01/01/1996 31/12/1999 LIBEN Magnetic tapes, recorded, of a width <= 4 mm or > 6,5 mm (excl. tapes bearing data or instructions, sound or image recordings, and of a type used in automatic data-processing machines) 01/01/1996 31/12/1999 -852451 01/01/1996 31/12/2006 LIBEN Magnetic tapes for reproducing sound or image, recorded, of a width <= 4 mm 01/01/1996 31/12/2006 -85245100 01/01/1996 31/12/2006 LIBEN Magnetic tapes for reproducing sound or image, recorded, of a width <= 4 mm 01/01/1996 31/12/2006 -852452 01/01/1996 31/12/2006 LIBEN Magnetic tapes for reproducing sound or image, recorded, of a width > 4 mm but <= 6,5 mm 01/01/1996 31/12/2006 -85245200 01/01/1996 31/12/2006 LIBEN Magnetic tapes for reproducing sound or image, recorded, of a width > 4 mm but <= 6,5 mm 01/01/1996 31/12/2006 -852453 01/01/1996 31/12/2006 LIBEN Magnetic tapes for reproducing sound or image, recorded, of a width > 6,5 mm 01/01/1996 31/12/2006 -85245300 01/01/1996 31/12/2006 LIBEN Magnetic tapes for reproducing sound or image, recorded, of a width > 6,5 mm 01/01/1996 31/12/2006 -852460 01/01/1996 31/12/2006 LIBEN Cards incorporating a recorded magnetic stripe 01/01/1996 31/12/2006 -85246000 01/01/1996 31/12/2006 LIBEN Cards incorporating a recorded magnetic stripe 01/01/1996 31/12/2006 -852490 01/01/1988 31/12/1995 LIBEN Prepared recorded media for sound or other similar recorded phenomena, incl. matrices and masters for the production of records (excl. records, magnetic tapes and goods of chapter 37) 01/01/1988 31/12/1995 -85249010 01/01/1988 31/12/1995 LIBEN Compact discs 01/01/1988 31/12/1995 -85249091 01/01/1988 31/12/1995 LIBEN Magnetic discs and other recorded media, for data or instructions, other than those for sound or image recording, used for automatic data processing equipment (excl. magnetic tapes) 01/01/1988 31/12/1995 -85249099 01/01/1988 31/12/1995 LIBEN Prepared recorded media for sound or other similar recorded phenomena, incl. matrices and masters for the production of records (excl. those bearing data or instructions, other than sound or vision recordings, used in automatic data-processing machines, magnetic tapes and goods of chapter 37) 01/01/1988 31/12/1995 -852491 01/01/1996 31/12/2006 LIBEN Recording media (excl. those for sound or image recordings, discs for laser reading systems, magnetic tapes, cards incorporating a magnetic stripe and goods of chapter 37) 01/01/1996 31/12/2006 -85249100 01/01/2000 31/12/2006 LIBEN Recording media (excl. those for sound or image recordings, discs for laser reading systems, magnetic tapes, cards incorporating a magnetic stripe and goods of chapter 37) 01/01/2000 31/12/2006 -85249110 01/01/1996 31/12/1999 LIBEN Magnetic discs and other recorded media, for data or instructions, of a kind used for automatic data processing equipment (excl. those for sound or image recordings and magnetic tapes) 01/01/1996 31/12/1999 -85249190 01/01/1996 31/12/1999 LIBEN Recording media, with recordings (excl. those for sound or image recordings, data or instructions of a kind used in automatic data-processing machines, disks for laser reading systems, magnetic tapes and goods of chapter 37) 01/01/1996 31/12/1999 -852499 01/01/1996 31/12/2006 LIBEN Recorded media for sound or image reproducing phenomena, incl. matrices and masters for the production of records (excl. gramophone records, discs for laser reading systems, magnetic tapes, cards incorporating a magnetic stripe and goods of chapter 37) 01/01/1996 31/12/2006 -85249900 01/01/1996 31/12/1997 LIBEN Recorded media for sound or image reproducing phenomena, incl. matrices and masters for the production of records (excl. gramophone records, discs for laser reading systems, magnetic tapes, cards incorporating a magnetic stripe and goods of chapter 37) 01/01/1996 31/12/1997 -85249910 01/01/1998 31/12/2006 LIBEN Recorded media for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine (excl. discs for laser reading systems, magnetic tapes and cards incorporating a magnetic stripe) 01/01/1998 31/12/2006 -85249990 01/01/1998 31/12/2006 LIBEN Recorded media for sound or image reproducing phenomena, incl. matrices and masters for the production of records (excl. for reproducing representations of instructions, data, sound, and image recorded in a machine-readable binary form, and capable of being manipulated or providing interactivity to a user, by means of an automatic data-processing machine, gramophone records, discs for laser reading systems, magnetic tapes, cards incorporating a magnetic stripe and goods of chapter 37) 01/01/1998 31/12/2006 -8525 01/01/1988 31/12/2500 LIBEN Transmission apparatus for radio-broadcasting or television, whether or not incorporating reception apparatus or sound recording or reproducing apparatus; television cameras, digital cameras and video camera recorders 01/01/1988 31/12/2500 -852510 01/01/1988 31/12/2006 LIBEN Transmission apparatus for radio-telephony, radio-telegraphy, radio-broadcasting or television 01/01/1988 31/12/2006 -85251010 01/01/1988 31/12/2005 LIBEN Radio-telegraphic and radio-telephonic transmission apparatus, for civil aircraft 01/01/1988 31/12/2005 -85251020 01/01/2006 31/12/2006 LIBEN Radio-telegraphic or radio-telephonic transmission apparatus 01/01/2006 31/12/2006 -85251050 01/01/1998 31/12/2005 LIBEN Radio-telegraphic or radio-telephonic transmission apparatus (excl. for civil aircraft of subheading 8525.10.10) 01/01/1998 31/12/2005 -85251080 01/01/1998 31/12/2006 LIBEN Transmission apparatus for radio-broadcasting or television 01/01/1998 31/12/2006 -85251090 01/01/1988 31/12/1997 LIBEN Transmission apparatus for radio-telephony, radio-telegraphy, radio-broadcasting or television (excl. that for radio-telephony and radio-telegraphy for civil aircraft of subheading 8525.10.10) 01/01/1988 31/12/1997 -852520 01/01/1988 31/12/2006 LIBEN Transmission apparatus incorporating reception apparatus, for radio-telephony, radio-telegraphy, radio-broadcasting or television 01/01/1988 31/12/2006 -85252010 01/01/1988 31/12/2005 LIBEN Radio-telegraphic and radio-telephonic transmission apparatus, incorporating reception apparatus, for civil aircraft 01/01/1988 31/12/2005 -85252020 01/01/2006 31/12/2006 LIBEN Transmission apparatus, incorporating reception apparatus, for cellular networks "mobile telephones" 01/01/2006 31/12/2006 -85252080 01/01/2006 31/12/2006 LIBEN Transmission apparatus for radio-telephony, radio-telegraphy, radio-broadcasting or television, incorporating reception apparatus (excl. for cellular networks "mobile telephones") 01/01/2006 31/12/2006 -85252090 01/01/1988 31/12/1995 LIBEN Transmission apparatus for radio-telephony, radio-telegraphy, radio-broadcasting or television, incorporating reception apparatus (excl. that for radio-telephony and radio-telegraphy for civil aircraft of subheading 8525.20.10) 01/01/1988 31/12/1995 -85252091 01/01/1996 31/12/2005 LIBEN Transmission apparatus, incorporating reception apparatus, for cellular networks "mobile telephones" (excl. that for radio-telephony and radio-telegraphy for civil aircraft of subheading 8525.20.10) 01/01/1996 31/12/2005 -85252099 01/01/1996 31/12/2005 LIBEN Transmission apparatus for radio-telephony, radio-telegraphy, radio-broadcasting or television, incorporating reception apparatus (excl. that for radio-telephony and radio-telegraphy for civil aircraft of subheading 8525.20.10 and for cellular networks "mobile telephones") 01/01/1996 31/12/2005 -852530 01/01/1988 31/12/2006 LIBEN Television cameras (excl. video camera recorders) 01/01/1988 31/12/2006 -85253010 01/01/1988 31/12/2006 LIBEN Television cameras, with 3 or more camera tubes 01/01/1988 31/12/2006 -85253090 01/01/1996 31/12/2006 LIBEN Television cameras (excl. those with 3 or more camera tubes and video recorders) 01/01/1996 31/12/2006 -85253091 01/01/1988 31/12/1995 LIBEN Television cameras incorporating in the same housing video recording or reproducing apparatus (excl. camcorders capable of recording television programmes using an external video tuner) 01/01/1988 31/12/1995 -85253099 01/01/1988 31/12/1995 LIBEN Television cameras (excl. cameras with 3 or more camera tubes and those incorporating in the same housing video recording or reproducing apparatus) 01/01/1988 31/12/1995 -852540 01/01/1996 31/12/2006 LIBEN Still image video cameras and other video camera recorders; digital cameras 01/01/1996 31/12/2006 -85254010 01/01/1996 31/12/1997 LIBEN Still-image video cameras 01/01/1996 31/12/1997 -85254011 01/01/1998 31/12/2006 LIBEN Still image digital video cameras and digital cameras 01/01/1998 31/12/2006 -85254019 01/01/1998 31/12/2006 LIBEN Still image video cameras (other than digital) 01/01/1998 31/12/2006 -85254091 01/01/1996 31/12/2006 LIBEN Video camera recorders only able to record sound and images taken by the television camera 01/01/1996 31/12/2006 -85254099 01/01/1996 31/12/2006 LIBEN Video camera recorders able to record television programmes and sound and images taken by the television camera 01/01/1996 31/12/2006 -852550 01/01/2007 31/12/2500 LIBEN Transmission apparatus for radio-broadcasting or television, not incorporating reception apparatus 01/01/2007 31/12/2500 -85255000 01/01/2007 31/12/2500 LIBEN Transmission apparatus for radio-broadcasting or television, not incorporating reception apparatus 01/01/2007 31/12/2500 -852560 01/01/2007 31/12/2500 LIBEN Transmission apparatus for radio-broadcasting or television, incorporating reception apparatus 01/01/2007 31/12/2500 -85256000 01/01/2007 31/12/2500 LIBEN Transmission apparatus for radio-broadcasting or television, incorporating reception apparatus 01/01/2007 31/12/2500 -852580 01/01/2007 31/12/2500 LIBEN Television cameras, digital cameras and video camera recorders 01/01/2007 31/12/2500 -85258011 01/01/2007 31/12/2500 LIBEN Television cameras, with 3 or more camera tubes 01/01/2007 31/12/2500 -85258019 01/01/2007 31/12/2500 LIBEN Television cameras (excl. those with 3 or more camera tubes and video recorders) 01/01/2007 31/12/2500 -85258030 01/01/2007 31/12/2500 LIBEN Digital cameras 01/01/2007 31/12/2500 -85258091 01/01/2007 31/12/2500 LIBEN Video camera recorders only able to record sound and images taken by the television camera 01/01/2007 31/12/2500 -85258099 01/01/2007 31/12/2500 LIBEN Video camera recorders able to record television programmes and sound and images taken by the television camera 01/01/2007 31/12/2500 -8526 01/01/1988 31/12/2500 LIBEN Radar apparatus, radio navigational aid apparatus and radio remote control apparatus 01/01/1988 31/12/2500 -852610 01/01/1988 31/12/2500 LIBEN Radar apparatus 01/01/1988 31/12/2500 -85261000 01/01/2006 31/12/2500 LIBEN Radar apparatus 01/01/2006 31/12/2500 -85261010 01/01/1995 31/12/2005 LIBEN Radar apparatus for civil aircraft 01/01/1995 31/12/2005 -85261011 01/01/1988 31/12/1994 LIBEN Radio altimeters, for civil aircraft 01/01/1988 31/12/1994 -85261013 01/01/1988 31/12/1994 LIBEN Meteorological radars, for civil aircraft 01/01/1988 31/12/1994 -85261019 01/01/1988 31/12/1994 LIBEN Radar apparatus, for civil aircraft (excl. radio altimeters and meteorological radars) 01/01/1988 31/12/1994 -85261090 01/01/1988 31/12/2005 LIBEN Radar apparatus (other than for civil aircraft of subheading 8526.10.10) 01/01/1988 31/12/2005 -852691 01/01/1988 31/12/2500 LIBEN Radio navigational aid apparatus 01/01/1988 31/12/2500 -85269111 01/01/1988 31/12/2005 LIBEN Radio navigational receivers, for civil aircraft 01/01/1988 31/12/2005 -85269119 01/01/1988 31/12/2005 LIBEN Radio navigational transmitters, for civil aircraft 01/01/1988 31/12/2005 -85269120 01/01/2006 31/12/2500 LIBEN Radio navigational receivers (excl. radar apparatus) 01/01/2006 31/12/2500 -85269180 01/01/2006 31/12/2500 LIBEN Radio navigational aid apparatus (excl. receivers and radar apparatus) 01/01/2006 31/12/2500 -85269190 01/01/1988 31/12/2005 LIBEN Radio navigational aid apparatus (excl. those for civil aircraft of subheading 8526.91.11 or 8526.91.19) 01/01/1988 31/12/2005 -852692 01/01/1988 31/12/2500 LIBEN Radio remote control apparatus 01/01/1988 31/12/2500 -85269200 01/01/2006 31/12/2500 LIBEN Radio remote control apparatus 01/01/2006 31/12/2500 -85269210 01/01/1988 31/12/2005 LIBEN Radio remote control apparatus, for civil aircraft 01/01/1988 31/12/2005 -85269290 01/01/1988 31/12/2005 LIBEN Radio remote control apparatus (excl. those for civil aircraft of subheading 8526.92.10) 01/01/1988 31/12/2005 -8527 01/01/1988 31/12/2500 LIBEN Reception apparatus for radio-broadcasting, whether or not combined, in the same housing, with sound recording or reproducing apparatus or a clock 01/01/1988 31/12/2500 -852711 01/01/1988 31/12/1995 LIBEN Radio-broadcast receivers capable of operating without an external source of power, incl. apparatus capable of also receiving radio-telephony or radio-telegraphy, combined with sound recording or reproducing apparatus 01/01/1988 31/12/1995 -85271110 01/01/1988 31/12/1995 LIBEN Radio-broadcast receivers capable of operating without an external source of power, incl. apparatus capable of also receiving radio-telephony or radio-telegraphy, combined with sound reproducing apparatus with laser optical reading system 01/01/1988 31/12/1995 -85271190 01/01/1988 31/12/1994 LIBEN Radio-broadcast receivers capable of operating without an external source of power, incl. apparatus capable of also receiving radio-telephony or radio-telegraphy, combined with sound recording or reproducing apparatus (excl. those with laser optical reading system) 01/01/1988 31/12/1994 -85271191 01/01/1995 31/12/1995 LIBEN Cassette radios, capable of being operated without an external source of power, incl. those also capable of receiving radio-telephonic and radio-telegraphic signals, combined with sound recording or reproducing apparatus, with an analog and digital reading system 01/01/1995 31/12/1995 -85271199 01/01/1995 31/12/1995 LIBEN Radio receivers capable of being operated without an external source of power, incl. those also capable of receiving radio-telephonic and radio-telegraphic signals, combined with sound recording or reproducing apparatus (excl. with laser optical reading system and cassette decks with an analog and digital reading system) 01/01/1995 31/12/1995 -852712 01/01/1996 31/12/2500 LIBEN Pocket-size radiocassette players [dimensions <= 170 mm x 100 mm x 45 mm], with built-in amplifier, without built-in loudspeakers, capable of operating without an external source of electric power 01/01/1996 31/12/2500 -85271200 01/01/2020 31/12/2500 LIBEN Pocket-size radiocassette players [dimensions <= 170 mm x 100 mm x 45 mm], with built-in amplifier, without built-in loudspeakers, capable of operating without an external source of electric power 01/01/2020 31/12/2500 -85271210 01/01/1996 31/12/2019 LIBEN Pocket-size radiocassette players [dimensions <= 170 mm x 100 mm x 45 mm], with an analogue and digital reading system, with built-in amplifier, without built-in loudspeakers, capable of being operated without an external source of power 01/01/1996 31/12/2019 -85271290 01/01/1996 31/12/2019 LIBEN Pocket-size radiocassette players [dimensions <= 170 mm x 100 mm x 45 mm], with built-in amplifier, without built-in loudspeakers, capable of being operated without an external source of power (excl. with analogue and digital reading system) 01/01/1996 31/12/2019 -852713 01/01/1996 31/12/2500 LIBEN Radio-broadcast receivers capable of operating without an external source of power, combined with sound recording or reproducing apparatus (excl. pocket-size radiocassette players) 01/01/1996 31/12/2500 -85271300 01/01/2020 31/12/2500 LIBEN Radio-broadcast receivers capable of operating without an external source of power, combined with sound recording or reproducing apparatus (excl. pocket-size radiocassette players) 01/01/2020 31/12/2500 -85271310 01/01/1996 31/12/2019 LIBEN Radio-broadcast receivers capable of operating without an external source of power, combined with sound-reproducing apparatus with laser reading system (excl. pocket-size radiocassette players) 01/01/1996 31/12/2019 -85271391 01/01/1996 31/12/2019 LIBEN Cassette radios, capable of operating without an external source of power, combined with sound recording or reproducing apparatus, with an analogue and digital reading system (excl. pocket-size radiocassette players) 01/01/1996 31/12/2019 -85271399 01/01/1996 31/12/2019 LIBEN Radio-broadcast receivers capable of operating without an external source of power, combined with sound recording or reproducing apparatus (excl. pocket-size radiocassette players, with laser reading system and cassette decks with an analogue and digital reading system) 01/01/1996 31/12/2019 -852719 01/01/1988 31/12/2500 LIBEN Radio-broadcast receivers capable of operating without an external source of power, not combined with sound-reproducing apparatus 01/01/1988 31/12/2500 -85271900 01/01/1988 31/12/2500 LIBEN Radio-broadcast receivers capable of operating without an external source of power, not combined with sound-reproducing apparatus 01/01/1988 31/12/2500 -852721 01/01/1988 31/12/2500 LIBEN Radio-broadcast receivers not capable of operating without an external source of power, of a kind used in motor vehicles, combined with sound recording or reproducing apparatus 01/01/1988 31/12/2500 -85272110 01/01/1988 31/12/1995 LIBEN Radio-broadcast receivers not capable of operating without an external source of power, of a kind used in motor vehicles, incl. apparatus capable of also receiving radio-telephony or radio-telegraphy, combined with sound reproducing apparatus with laser optical reading system 01/01/1988 31/12/1995 -85272120 01/01/1996 31/12/2500 LIBEN Radio-broadcast receivers capable of receiving and decoding digital Radio Data System signals, of a kind used in motor vehicles, only capable of being operated with an external source of power, combined with sound recording or reproducing apparatus incorporating a laser reading system 01/01/1996 31/12/2500 -85272152 01/01/1996 31/12/2500 LIBEN Cassette-radio-broadcast receivers capable of receiving and decoding digital Radio Data System signals, of a kind used in motor vehicles, only capable of being operated with an external source of power, combined with sound recording or reproducing apparatus incorporating an analogue and digital reading system 01/01/1996 31/12/2500 -85272159 01/01/1996 31/12/2500 LIBEN Radio-broadcast receivers capable of receiving and decoding digital Radio Data System signals, of a kind used in motor vehicles, only capable of being operated with an external source of power, combined with sound recording or reproducing apparatus (excl. those with sound-reproducing apparatus or a laser reading system and cassette decks with an analogue and digital reading system) 01/01/1996 31/12/2500 -85272170 01/01/1996 31/12/2500 LIBEN Radio-broadcast receivers of a type used in motor vehicles, only capable of being operated with an external source of power, combined with sound recording or reproducing apparatus incorporating a laser reading system (excl. those capable of receiving and decoding digital Radio Data System signals) 01/01/1996 31/12/2500 -85272190 01/01/1988 31/12/1994 LIBEN Radio-broadcast receivers not capable of operating without an external source of power, of a kind used in motor vehicles, incl. apparatus capable of also receiving radio-telephony or radio-telegraphy, combined with sound recording or reproducing apparatus (excl. those with sound reproducing apparatus with laser optical reading system) 01/01/1988 31/12/1994 -85272191 01/01/1995 31/12/1995 LIBEN Cassette-radios of a kind used in motor vehicles, only capable of being operated with an external source of energy, incl. those also capable of receiving radio-telephonic and radio-telegraphic signals, combined with sound recording or reproducing apparatus with an analog and digital reading system 01/01/1995 31/12/1995 -85272192 01/01/1996 31/12/2500 LIBEN Cassette-radio-broadcast receivers of a kind used in motor vehicles, only capable of being operated with an external source of power, combined with sound recording or reproducing apparatus incorporating an analogue and digital reading system (excl. those capable of receiving and decoding digital Radio Data System signals) 01/01/1996 31/12/2500 -85272198 01/01/1996 31/12/2500 LIBEN Radio-broadcast receivers of a kind used in motor vehicles, only capable of being operated with an external source of power, combined with sound recording or reproducing apparatus (excl. sound-reproducing apparatus incorporating a laser reading system, those capable of receiving and decoding digital Radio Data System signals and cassette decks with an analogue and digital reading system) 01/01/1996 31/12/2500 -85272199 01/01/1995 31/12/1995 LIBEN Radio receivers of a kind used in motor vehicles, only capable of being operated with an external source of energy, incl. those also capable of receiving radio-telephonic and radio-telegraphic signals, combined with sound recording or reproducing apparatus (excl. with sound reproducing apparatus with laser optical reading system and cassette decks with an analog and digital reading system) 01/01/1995 31/12/1995 -852729 01/01/1988 31/12/2500 LIBEN Radio-broadcast receivers not capable of operating without an external source of power, of a kind used in motor vehicles, not combined with sound recording or reproducing apparatus 01/01/1988 31/12/2500 -85272900 01/01/1988 31/12/2500 LIBEN Radio-broadcast receivers not capable of operating without an external source of power, of a kind used in motor vehicles, not combined with sound recording or reproducing apparatus 01/01/1988 31/12/2500 -852731 01/01/1988 31/12/2006 LIBEN Radio-broadcast receivers, for mains operation only, incl. apparatus capable of also receiving radio-telephony or radio-telegraphy, combined with sound recording or reproducing apparatus (excl. those of a kind used in motor vehicles) 01/01/1988 31/12/2006 -85273110 01/01/1988 31/12/1994 LIBEN Radio-broadcast receivers, for mains operation only, incl. apparatus capable of also receiving radio-telephony or radio-telegraphy, with one or more built-in loudspeakers in the same housing, combined with sound recording or reproducing apparatus 01/01/1988 31/12/1994 -85273111 01/01/1995 31/12/2006 LIBEN Cassette radios, only mains-operated, with, in the same housing, one or more loudspeakers, incl. those also capable of receiving radio-telephonic or radio-telegraphic signals, combined with sound recording or reproducing apparatus with an analogue and digital reading system 01/01/1995 31/12/2006 -85273119 01/01/1995 31/12/2006 LIBEN Radio receivers, only mains-operated, incl. those also capable of receiving radio-telephonic or radio-telegraphic signals, with, in the same housing, one or more loudspeakers, combined with sound recording or reproducing apparatus (excl. cassette decks with an analogue and digital reading system) 01/01/1995 31/12/2006 -85273191 01/01/1988 31/12/2006 LIBEN Radio-broadcast receivers, for mains operation only, incl. apparatus capable of also receiving radio-telephony or radio-telegraphy, without built-in loudspeaker, combined with sound-reproducing apparatus with laser reading system (excl. those of a kind used in motor vehicles) 01/01/1988 31/12/2006 -85273193 01/01/1995 31/12/2006 LIBEN Cassette radios, only mains-operated, without built-in loudspeakers, incl. those also capable of receiving radio-telephonic or radio-telegraphic signals, combined with sound recording or reproducing apparatus with an analogue and digital reading system (excl. of a kind used in motor vehicles) 01/01/1995 31/12/2006 -85273198 01/01/1995 31/12/2006 LIBEN Radio receivers, only mains-operated, incl. those also capable of receiving radio-telephonic or radio-telegraphic signals, without built-in loudspeakers, combined with sound recording or reproducing apparatus (excl. with laser reading system, cassette decks with an analogue and digital reading system and equipment of a kind used in motor vehicles) 01/01/1995 31/12/2006 -85273199 01/01/1988 31/12/1994 LIBEN Radio-broadcast receivers, for mains operation only, incl. apparatus capable of also receiving radio-telephony or radio-telegraphy, without built-in loudspeaker, combined with sound recording or reproducing apparatus (excl. those with laser optical reading system and those of a kind used in motor vehicles) 01/01/1988 31/12/1994 -852732 01/01/1988 31/12/2006 LIBEN Radio-broadcast receivers, for mains operation only, incl. apparatus capable of also receiving radio-telephony or radio-telegraphy, not combined with sound recording or reproducing apparatus but combined with a clock (excl. those of a kind used in motor vehicles) 01/01/1988 31/12/2006 -85273200 01/01/1988 31/12/1988 LIBEN Radio-broadcast receivers not capable of operating without an external source of power, not combined with sound recording or reproducing apparatus, but combined with a clock (excl. those for motor vehicles) 01/01/1988 31/12/1988 -85273210 01/01/1989 31/12/2006 LIBEN Alarm clock radios, for mains operation only, not combined with sound recording or reproducing apparatus 01/01/1989 31/12/2006 -85273290 01/01/1989 31/12/2006 LIBEN Radio-broadcast receivers, for mains operation only, incl. apparatus capable of also receiving radio-telephony or radio-telegraphy, not combined with sound recording or reproducing apparatus but combined with a clock (excl. those of a kind used in motor vehicles and alarm clock radios) 01/01/1989 31/12/2006 -852739 01/01/1988 31/12/2006 LIBEN Radio-broadcast receivers, for mains operation only, incl. apparatus capable of also receiving radio-telephony or radio-telegraphy, not combined with sound recording or reproducing apparatus and not combined with a clock (excl. those of a kind used in motor vehicles) 01/01/1988 31/12/2006 -85273910 01/01/1988 31/12/1999 LIBEN Radio-broadcast receivers, for mains operation only, incl. apparatus capable of also receiving radio-telephony or radio-telegraphy, not combined with sound recording or reproducing apparatus and not combined with a clock, with one or more loudspeakers in the same housing 01/01/1988 31/12/1999 -85273920 01/01/2000 31/12/2006 LIBEN Radio-broadcast receivers, for mains operation only, incl. apparatus capable of also receiving radio-telephony or radio-telegraphy, not combined with sound recording or reproducing apparatus and not combined with a clock, without built-in amplifier (excl. those of a kind used in motor vehicles) 01/01/2000 31/12/2006 -85273980 01/01/2000 31/12/2006 LIBEN Radio-broadcast receivers, for mains operation only, incl. apparatus capable of also receiving radio-telephony or radio-telegraphy, not combined with sound recording or reproducing apparatus and not combined with a clock, with built-in amplifier (excl. those of a kind used in motor vehicles) 01/01/2000 31/12/2006 -85273991 01/01/1988 31/12/1999 LIBEN Radio-broadcast receivers, for mains operation only, incl. apparatus capable of also receiving radio-telephony or radio-telegraphy, not combined with sound recording or reproducing apparatus and not combined with a clock, without built-in loudspeaker and without built-in amplifier (excl. those of a kind used in motor vehicles) 01/01/1988 31/12/1999 -85273999 01/01/1988 31/12/1999 LIBEN Radio-broadcast receivers, for mains operation only, incl. apparatus capable of also receiving radio-telephony or radio-telegraphy, not combined with sound recording or reproducing apparatus and not combined with a clock, without built-in loudspeaker but with built-in amplifier (excl. those of a kind used in motor vehicles) 01/01/1988 31/12/1999 -852790 01/01/1988 31/12/2006 LIBEN Receivers for radio-telephony, radio-telegraphy or commercial radio 01/01/1988 31/12/2006 -85279010 01/01/1988 31/12/2005 LIBEN Reception apparatus for radio-telephony or radio-telegraphy, for civil aircraft 01/01/1988 31/12/2005 -85279020 01/01/2006 31/12/2006 LIBEN Portable receivers for calling, alerting or paging 01/01/2006 31/12/2006 -85279080 01/01/2006 31/12/2006 LIBEN Reception apparatus for radio-telephony or radio-telegraphy (excl. portable receivers for calling, alerting or paging) 01/01/2006 31/12/2006 -85279091 01/01/1988 31/12/1997 LIBEN Portable receivers for calling or paging 01/01/1988 31/12/1997 -85279092 01/01/1998 31/12/2005 LIBEN Portable receivers for calling, alerting or paging 01/01/1998 31/12/2005 -85279098 01/01/1998 31/12/2005 LIBEN Reception apparatus for radio-telephony or radio-telegraphy (excl. apparatus for radio-telephony or radio-telegraphy for civil aircraft of subheading 8527.90.10 and portable receivers for calling, alerting or paging) 01/01/1998 31/12/2005 -85279099 01/01/1988 31/12/1997 LIBEN Reception apparatus for radio-telephony, radio-telegraphy or commercial radio (excl. apparatus for radio-telephony or radio-telegraphy for civil aircraft of subheading 8527.90.10 and portable receivers for calling or paging) 01/01/1988 31/12/1997 -852791 01/01/2007 31/12/2500 LIBEN Radio-broadcast receivers, for mains operation only, combined with sound recording or reproducing apparatus (excl. those of a kind used in motor vehicles) 01/01/2007 31/12/2500 -85279100 01/01/2020 31/12/2500 LIBEN Radio-broadcast receivers, for mains operation only, combined with sound recording or reproducing apparatus (excl. those of a kind used in motor vehicles) 01/01/2020 31/12/2500 -85279111 01/01/2007 31/12/2019 LIBEN Cassette radios, only mains-operated, with, in the same housing, one or more loudspeakers, combined with sound recording or reproducing apparatus with an analogue and digital reading system 01/01/2007 31/12/2019 -85279119 01/01/2007 31/12/2019 LIBEN Radio receivers, only mains-operated, with, in the same housing, one or more loudspeakers, combined with sound recording or reproducing apparatus (excl. cassette decks with an analogue and digital reading system) 01/01/2007 31/12/2019 -85279135 01/01/2007 31/12/2019 LIBEN Radio-broadcast receivers, for mains operation only, without built-in loudspeaker, combined with sound-reproducing apparatus with laser reading system (excl. those of a kind used in motor vehicles) 01/01/2007 31/12/2019 -85279191 01/01/2007 31/12/2019 LIBEN Cassette radios, only mains-operated, without built-in loudspeakers, combined with sound recording or reproducing apparatus with an analogue and digital reading system (excl. of a kind used in motor vehicles) 01/01/2007 31/12/2019 -85279199 01/01/2007 31/12/2019 LIBEN Radio receivers, only mains-operated, without built-in loudspeakers, combined with sound recording or reproducing apparatus (excl. with laser reading system, cassette decks with an analogue and digital reading system and equipment of a kind used in motor vehicles) 01/01/2007 31/12/2019 -852792 01/01/2007 31/12/2500 LIBEN Radio-broadcast receivers, for mains operation only, not combined with sound recording or reproducing apparatus but combined with a clock (excl. those of a kind used in motor vehicles) 01/01/2007 31/12/2500 -85279200 01/01/2020 31/12/2500 LIBEN Radio-broadcast receivers, for mains operation only, not combined with sound recording or reproducing apparatus but combined with a clock (excl. those of a kind used in motor vehicles) 01/01/2020 31/12/2500 -85279210 01/01/2007 31/12/2019 LIBEN Alarm clock radios, for mains operation only, not combined with sound recording or reproducing apparatus 01/01/2007 31/12/2019 -85279290 01/01/2007 31/12/2019 LIBEN Radio-broadcast receivers, for mains operation only, not combined with sound recording or reproducing apparatus but combined with a clock (excl. those of a kind used in motor vehicles and alarm clock radios) 01/01/2007 31/12/2019 -852799 01/01/2007 31/12/2500 LIBEN Radio-broadcast receivers, for mains operation only, not combined with sound recording or reproducing apparatus and not combined with a clock (excl. those of a kind used in motor vehicles) 01/01/2007 31/12/2500 -85279900 01/01/2007 31/12/2500 LIBEN Radio-broadcast receivers, for mains operation only, not combined with sound recording or reproducing apparatus and not combined with a clock (excl. those of a kind used in motor vehicles) 01/01/2007 31/12/2500 -8528 01/01/1988 31/12/2500 LIBEN Monitors and projectors, not incorporating television reception apparatus; reception apparatus for television, whether or not incorporating radio-broadcast receivers or sound or video recording or reproducing apparatus 01/01/1988 31/12/2500 -852810 01/01/1988 31/12/1995 LIBEN Television receivers, incl. video monitors and video projectors, whether or not incorporating radio-broadcast receivers or sound or video recording or reproducing apparatus, for colour picture 01/01/1988 31/12/1995 -85281011 01/01/1988 31/12/1991 LIBEN Video recording or reproducing apparatus incorporating a video tuner, colour, using magnetic tape on reels or in cassettes, of a width =< 1.3 cm and allowing recording or reproduction at a tape speed =< 50 mm per second 01/01/1988 31/12/1991 -85281014 01/01/1993 31/12/1995 LIBEN Television projection equipment, colour, with scanning parameters of <= 625 lines 01/01/1993 31/12/1995 -85281016 01/01/1993 31/12/1995 LIBEN Television projection equipment, colour, with scanning parameters of > 625 lines, with a vertical resolution of < 700 lines 01/01/1993 31/12/1995 -85281018 01/01/1993 31/12/1995 LIBEN Television projection equipment, colour, with scanning parameters of > 625 lines, with a vertical resolution of >= 700 lines 01/01/1993 31/12/1995 -85281019 01/01/1988 31/12/1991 LIBEN Video recording or reproducing apparatus incorporating a video tuner, colour, using magnetic tape on reels or in cassettes (excl. apparatus for tape of a width =< 1.3 cm and allowing recording or reproduction at a tape speed =< 50 mm per second) 01/01/1988 31/12/1991 -85281022 01/01/1993 31/12/1995 LIBEN Television receivers, colour, incorporating a video recorder or reproducer, with a screen width/height ratio of < 1,5 01/01/1993 31/12/1995 -85281028 01/01/1993 31/12/1995 LIBEN Television receivers, colour, incorporating a video recorder or reproducer, with a screen width/height ratio of >= 1,5 01/01/1993 31/12/1995 -85281030 01/01/1988 31/12/1991 LIBEN Video recording or reproducing apparatus incorporating a video tuner, colour, using magnetic discs 01/01/1988 31/12/1991 -85281031 01/01/1993 31/12/1995 LIBEN Video monitors, colour, with cathode-ray tube with a screen width/height ratio < 1,5 01/01/1993 31/12/1995 -85281040 01/01/1988 31/12/1992 LIBEN Television projection equipment, colour 01/01/1988 31/12/1992 -85281041 01/01/1993 31/12/1995 LIBEN Video monitors, colour, with cathode-ray tube with a screen width/height ratio >= 1,5, with scanning parameters of <= 625 lines 01/01/1993 31/12/1995 -85281043 01/01/1993 31/12/1995 LIBEN Video monitors, colour, with cathode-ray tube with a screen width/height ratio >= 1,5, with scanning parameters of > 625 lines 01/01/1993 31/12/1995 -85281049 01/01/1993 31/12/1995 LIBEN Video monitors, colour (excl. with cathode-ray tube) 01/01/1993 31/12/1995 -85281050 01/01/1988 31/12/1992 LIBEN Colour television receivers, incorporating a videophonic recorder or reproducer (excl. video recorders) 01/01/1988 31/12/1992 -85281052 01/01/1993 31/12/1995 LIBEN Television receivers, colour, with integral tube, with a screen width/height ratio < 1,5, with a diagonal measurement of the screen of <= 42 cm (excl. incorporating video recording or reproducing apparatus and video monitors) 01/01/1993 31/12/1995 -85281054 01/01/1993 31/12/1995 LIBEN Television receivers, colour, with integral tube, with a screen width/height ratio < 1,5, with a diagonal measurement of the screen of > 42 cm to 52 cm (excl. incorporating video recording or reproducing apparatus and video monitors) 01/01/1993 31/12/1995 -85281056 01/01/1993 31/12/1995 LIBEN Television receivers, colour, with integral tube, with a screen width/height ratio < 1,5, with a diagonal measurement of the screen of > 52 cm to 72 cm (excl. incorporating video recording or reproducing apparatus and video monitors) 01/01/1993 31/12/1995 -85281058 01/01/1993 31/12/1995 LIBEN Television receivers, colour, with integral tube, with a screen width/height ratio < 1,5, with a diagonal measurement of the screen of > 72 cm (excl. incorporating video recording or reproducing apparatus and video monitors) 01/01/1993 31/12/1995 -85281060 01/01/1988 31/12/1988 LIBEN Colour video monitors 01/01/1988 31/12/1988 -85281061 01/01/1989 31/12/1992 LIBEN Colour video monitors with cathode-ray tube 01/01/1989 31/12/1992 -85281062 01/01/1993 31/12/1995 LIBEN Television receivers, colour, with integral tube, with a screen width/height ratio >= 1,5, with scanning parameters of <= 625 lines and a diagonal measurement of the screen of <= 75 cm (excl. incorporating video recording or reproducing apparatus and video monitors) 01/01/1993 31/12/1995 -85281066 01/01/1993 31/12/1995 LIBEN Television receivers, colour, with integral tube, with a screen width/height ratio >= 1,5, with scanning parameters of <= 625 lines and a diagonal measurement of the screen of >= 75 cm (excl. incorporating video recording or reproducing apparatus and video monitors) 01/01/1993 31/12/1995 -85281069 01/01/1989 31/12/1992 LIBEN Colour video monitors (excl. with cathode-ray tube) 01/01/1989 31/12/1992 -85281071 01/01/1988 31/12/1992 LIBEN Colour television receivers, with integral tube, with a diagonal measurement of the screen =< 42 cm, (excl. those incorporating a videophonic recorder or reproducer and video monitors) 01/01/1988 31/12/1992 -85281072 01/01/1993 31/12/1995 LIBEN Television receivers, colour, with integral tube, with a screen width/height ratio >= 1,5, with scanning parameters of > 625 lines, with a vertical resolution of < 700 lines (excl. incorporating video recording or reproducing apparatus and video monitors) 01/01/1993 31/12/1995 -85281073 01/01/1988 31/12/1992 LIBEN Colour television receivers, with integral tube, with a diagonal measurement of the screen > 42 cm but =< 52 cm (excl. those incorporating a videophonic recorder or reproducer and video monitors) 01/01/1988 31/12/1992 -85281075 01/01/1990 31/12/1992 LIBEN Colour television receivers, with integral tube, with a diagonal measurement of the screen > 52 cm but =< 72 cm, (excl. 8528.10-50) 01/01/1990 31/12/1992 -85281076 01/01/1993 31/12/1995 LIBEN Television receivers, colour, with integral tube, with a screen width/height ratio >= 1,5, with scanning parameters of > 625 lines, with a vertical resolution of >= 700 lines (excl. incorporating video recording or reproducing apparatus and video monitors) 01/01/1993 31/12/1995 -85281078 01/01/1990 31/12/1992 LIBEN Colour television receivers, with integral tube, with a diagonal measurement of the screen > 72 cm, (excl. 8528.10-50) 01/01/1990 31/12/1992 -85281079 01/01/1988 31/12/1989 LIBEN Colour television receivers, with integral tube, with a diagonal measurement of the screen > 52 cm (excl. those incorporating a videophonic recorder or reproducer and video monitors) 01/01/1988 31/12/1989 -85281080 01/01/1989 31/12/1992 LIBEN Colour television receivers with screen (excl. 8528.10-40 to 8528.10-78) 01/01/1989 31/12/1992 -85281081 01/01/1993 31/12/1995 LIBEN Television receivers, colour, with screen, with a screen width/height ratio < 1,5 (excl. with integral tube or incorporating video recording or reproducing apparatus and video monitors) 01/01/1993 31/12/1995 -85281089 01/01/1993 31/12/1995 LIBEN Television receivers, colour, with screen, with a screen width/height ratio >= 1,5 (excl. with integral tube or incorporating video recording or reproducing apparatus and video monitors) 01/01/1993 31/12/1995 -85281091 01/01/1988 31/12/1995 LIBEN Video tuners 01/01/1988 31/12/1995 -85281098 01/01/1989 31/12/1995 LIBEN Television receivers, colour, without screen (excl. television projection equipment and video tuners) 01/01/1989 31/12/1995 -85281099 01/01/1988 31/12/1988 LIBEN Colour television receivers (excl. those with integral tube, video tuners, receivers incorporating a videophonic recorder or reproducer, television projection equipment, recording or reproducing apparatus incorporating a video tuner and camcorders) 01/01/1988 31/12/1988 -852812 01/01/1996 31/12/2006 LIBEN Television receivers, colour, whether or not incorporating radio-broadcast receivers or sound or video recording or reproducing apparatus 01/01/1996 31/12/2006 -85281210 01/01/2000 31/12/2006 LIBEN Television projection equipment, colour 01/01/2000 31/12/2006 -85281214 01/01/1996 31/12/1999 LIBEN Television projection equipment, colour, with scanning parameters of <= 625 lines 01/01/1996 31/12/1999 -85281216 01/01/1996 31/12/1999 LIBEN Television projection equipment, colour, with scanning parameters of > 625 lines, with a vertical resolution of < 700 lines 01/01/1996 31/12/1999 -85281218 01/01/1996 31/12/1999 LIBEN Television projection equipment, colour, with scanning parameters of > 625 lines, with a vertical resolution of >= 700 lines 01/01/1996 31/12/1999 -85281220 01/01/2000 31/12/2006 LIBEN Television receivers, colour, incorporating a video recorder or reproducer 01/01/2000 31/12/2006 -85281222 01/01/1996 31/12/1999 LIBEN Television receivers, colour, incorporating a video recorder or reproducer, with a screen width/height ratio of < 1,5 01/01/1996 31/12/1999 -85281228 01/01/1996 31/12/1999 LIBEN Television receivers, colour, incorporating a video recorder or reproducer, with a screen width/height ratio of >= 1,5 01/01/1996 31/12/1999 -85281252 01/01/1996 31/12/2006 LIBEN Television receivers, colour, with integral tube, with a screen width/height ratio < 1,5, with a diagonal measurement of the screen of <= 42 cm (excl. incorporating video recording or reproducing apparatus and video monitors) 01/01/1996 31/12/2006 -85281254 01/01/1996 31/12/2006 LIBEN Television receivers, colour, with integral tube, with a screen width/height ratio < 1,5, with a diagonal measurement of the screen of > 42 cm to 52 cm (excl. incorporating video recording or reproducing apparatus and video monitors) 01/01/1996 31/12/2006 -85281256 01/01/1996 31/12/2006 LIBEN Television receivers, colour, with integral tube, with a screen width/height ratio < 1,5, with a diagonal measurement of the screen of > 52 cm to 72 cm (excl. incorporating video recording or reproducing apparatus and video monitors) 01/01/1996 31/12/2006 -85281258 01/01/1996 31/12/2006 LIBEN Television receivers, colour, with integral tube, with a screen width/height ratio < 1,5, with a diagonal measurement of the screen of > 72 cm (excl. incorporating video recording or reproducing apparatus and video monitors) 01/01/1996 31/12/2006 -85281262 01/01/1996 31/12/2006 LIBEN Television receivers, colour, with integral tube, with a screen width/height ratio >= 1,5, with scanning parameters of <= 625 lines and a diagonal measurement of the screen of <= 75 cm (excl. incorporating video recording or reproducing apparatus and video monitors) 01/01/1996 31/12/2006 -85281266 01/01/1996 31/12/2006 LIBEN Television receivers, colour, with integral tube, with a screen width/height ratio >= 1,5, with scanning parameters of <= 625 lines and a diagonal measurement of the screen of > 75 cm (excl. incorporating video recording or reproducing apparatus and video monitors) 01/01/1996 31/12/2006 -85281270 01/01/2004 31/12/2006 LIBEN Television receivers, colour, with integral tube, with a screen width/height ratio >= 1,5, with scanning parameters of > 625 lines (excl. incorporating video recording or reproducing apparatus and video monitors) 01/01/2004 31/12/2006 -85281272 01/01/1996 31/12/2003 LIBEN Television receivers, colour, with integral tube, with a screen width/height ratio >= 1,5, with scanning parameters of > 625 lines, with a vertical resolution of < 700 lines (excl. incorporating video recording or reproducing apparatus and video monitors) 01/01/1996 31/12/2003 -85281276 01/01/1996 31/12/2003 LIBEN Television receivers, colour, with integral tube, with a screen width/height ratio >= 1,5, with scanning parameters of > 625 lines, with a vertical resolution of >= 700 lines (excl. incorporating video recording or reproducing apparatus and video monitors) 01/01/1996 31/12/2003 -85281281 01/01/1996 31/12/2006 LIBEN Television receivers, colour, with screen, with a screen width/height ratio < 1,5 (excl. with integral tube or incorporating video recording or reproducing apparatus and video monitors) 01/01/1996 31/12/2006 -85281289 01/01/1996 31/12/2006 LIBEN Television receivers, colour, with screen, with a screen width/height ratio >= 1,5 (excl. with integral tube or incorporating video recording or reproducing apparatus and video monitors) 01/01/1996 31/12/2006 -85281290 01/01/1998 31/12/2006 LIBEN Video tuners electronic assemblies for incorporation into automatic data-processing machines 01/01/1998 31/12/2006 -85281291 01/01/1996 31/12/1996 LIBEN Video tuners 01/01/1996 31/12/1996 -85281291 01/01/2002 31/12/2006 LIBEN Apparatus with a microprocessor-based device incorporating a modem for gaining access to the Internet, and having a function of interactive information exchange, capable of receiving television signals "set-top boxes with communication function" 01/01/2002 31/12/2006 -85281292 01/01/1997 31/12/1997 LIBEN Video tuners, digital, incl. mixed digital and analogue 01/01/1997 31/12/1997 -85281293 01/01/1998 31/12/2001 LIBEN Video tuners, digital, incl. mixed digital and analogue (excl. video tuners electronic assemblies for incorporation into automatic data processing machines) 01/01/1998 31/12/2001 -85281294 01/01/1997 31/12/1997 LIBEN Video tuners (excl. digital and mixed digital and analogue) 01/01/1997 31/12/1997 -85281294 01/01/2002 31/12/2006 LIBEN Video tuners, digital, incl. mixed digital-analogue (excl. video tuners electronic assemblies for incorporation into automatic data-processing machines and apparatus with a microprocessor-based device incorporating a modem for gaining access to the Internet, and having a function of interactive information exchange, capable of receiving television signals "set-top boxes with communication function") 01/01/2002 31/12/2006 -85281295 01/01/1998 31/12/2006 LIBEN Video tuners (excl. digital and mixed digital-analogue, and video tuners electronic assemblies for incorporation into automatic data-processing machines) 01/01/1998 31/12/2006 -85281298 01/01/1996 31/12/2006 LIBEN Television receivers, colour, without screen (excl. television projection equipment and video tuners) 01/01/1996 31/12/2006 -852813 01/01/1996 31/12/2006 LIBEN Television receivers, black and white or other monochrome, whether or not incorporating radio-broadcast receivers or sound or video recording or reproducing apparatus 01/01/1996 31/12/2006 -85281300 01/01/1996 31/12/2006 LIBEN Television receivers, black and white or other monochrome, whether or not incorporating radio-broadcast receivers or sound or video recording or reproducing apparatus 01/01/1996 31/12/2006 -852820 01/01/1988 31/12/1995 LIBEN Television receivers, incl. video monitors and video projectors, whether or not incorporating radio-broadcast receivers or sound or video recording or reproducing apparatus, for black-and-white or other monochrome picture 01/01/1988 31/12/1995 -85282010 01/01/1988 31/12/1988 LIBEN Black and white or other monochrome video monitors with integral tube 01/01/1988 31/12/1988 -85282020 01/01/1989 31/12/1995 LIBEN Black and white or other monochrome video monitors 01/01/1989 31/12/1995 -85282071 01/01/1988 31/12/1995 LIBEN Television receivers, black and white and other monochrome, with integral tube, with a diagonal measurement of the screen of <= 42 cm (excl. video monitors) 01/01/1988 31/12/1995 -85282073 01/01/1988 31/12/1995 LIBEN Television receivers, black and white and other monochrome, with integral tube, with a diagonal measurement of the screen of > 42 cm to 52 cm (excl. video monitors) 01/01/1988 31/12/1995 -85282079 01/01/1988 31/12/1995 LIBEN Television receivers, black and white and other monochrome, with integral tube, with a diagonal measurement of the screen of > 52 cm (excl. video monitors) 01/01/1988 31/12/1995 -85282090 01/01/1988 31/12/1988 LIBEN Black and white or other monochrome television receivers (excl. those with integral tube and video monitors) 01/01/1988 31/12/1988 -85282091 01/01/1989 31/12/1995 LIBEN Television receivers, black and white and other monochrome, with screen (excl. with integral tube and video monitors) 01/01/1989 31/12/1995 -85282099 01/01/1989 31/12/1995 LIBEN Television receivers, black and white and other monochrome, without screen 01/01/1989 31/12/1995 -852821 01/01/1996 31/12/2006 LIBEN Video monitors, colour 01/01/1996 31/12/2006 -85282114 01/01/1996 31/12/2006 LIBEN Video monitors, colour, with cathode ray tube with a screen width/height ratio < 1,5 01/01/1996 31/12/2006 -85282116 01/01/1996 31/12/2006 LIBEN Video monitors, colour, with cathode ray tube with a screen width/height ratio >= 1,5, with scanning parameters of <= 625 lines 01/01/1996 31/12/2006 -85282118 01/01/1996 31/12/2006 LIBEN Video monitors, colour, with cathode ray tube with a screen width/height ratio >= 1,5, with scanning parameters of > 625 lines 01/01/1996 31/12/2006 -85282190 01/01/1996 31/12/2006 LIBEN Video monitors, colour (excl. with cathode ray tube) 01/01/1996 31/12/2006 -852822 01/01/1996 31/12/2006 LIBEN Video monitors, black and white or other monochrome 01/01/1996 31/12/2006 -85282200 01/01/1996 31/12/2006 LIBEN Video monitors, black and white or other monochrome 01/01/1996 31/12/2006 -852830 01/01/1996 31/12/2006 LIBEN Video projectors 01/01/1996 31/12/2006 -85283005 01/01/1998 31/12/2006 LIBEN Video projectors, operating by means of flat panel display [e.g. a liquid crystal device], capable of displaying digital information generated by an automatic data-processing machine 01/01/1998 31/12/2006 -85283010 01/01/1996 31/12/1997 LIBEN Video projectors, colour 01/01/1996 31/12/1997 -85283020 01/01/1998 31/12/2006 LIBEN Video projectors, colour (excl. operating by means of flat panel display, capable of displaying digital information generated by an automatic data-processing machine) 01/01/1998 31/12/2006 -85283090 01/01/1996 31/12/2006 LIBEN Video projectors, black and white or other monochrome 01/01/1996 31/12/2006 -852841 01/01/2007 31/12/2016 LIBEN Cathode-ray tube monitors of a kind solely or principally used in an automatic data-processing machine of heading 8471 01/01/2007 31/12/2016 -85284100 01/01/2007 31/12/2016 LIBEN Cathode-ray tube monitors of a kind solely or principally used in an automatic data-processing machine of heading 8471 01/01/2007 31/12/2016 -852842 01/01/2017 31/12/2500 LIBEN Cathode-ray tube monitors "CRT" capable of directly connecting to and designed for use with an automatic data processing machine of heading 8471 (excl. with TV receiver) 01/01/2017 31/12/2500 -85284200 01/01/2017 31/12/2500 LIBEN Cathode-ray tube monitors "CRT" capable of directly connecting to and designed for use with an automatic data processing machine of heading 8471 (excl. with TV receiver) 01/01/2017 31/12/2500 -852849 01/01/2007 31/12/2500 LIBEN Cathode-ray tube monitors "CRT" (excl. computer monitors, with TV receiver) 01/01/2007 31/12/2500 -85284900 01/01/2017 31/12/2500 LIBEN Cathode-ray tube monitors "CRT" (excl. computer monitors, with TV receiver) 01/01/2017 31/12/2500 -85284910 01/01/2007 31/12/2016 LIBEN Cathode-ray tube monitors, black and white or other monochrome, not incorporating television reception apparatus (excl. of a kind solely or principally used in an automatic data-processing machine of heading 8471) 01/01/2007 31/12/2016 -85284935 01/01/2007 31/12/2010 LIBEN Cathode-ray tube monitors, colour, with cathode ray tube with a screen width/height ratio < 1,5, not incorporating television reception apparatus (excl. of a kind solely or principally used in an automatic data-processing machine of heading 8471) 01/01/2007 31/12/2010 -85284980 01/01/2011 31/12/2016 LIBEN Cathode-ray tube monitors, colour, not incorporating television reception apparatus (excl. of a kind solely or principally used in an automatic data-processing system of heading 8471) 01/01/2011 31/12/2016 -85284991 01/01/2007 31/12/2010 LIBEN Cathode-ray tube monitors, colour, with cathode ray tube with a screen width/height ratio >= 1,5, with scanning parameters of <= 625 lines, not incorporating television reception apparatus (excl. of a kind solely or principally used in an automatic data-processing machine of heading 8471) 01/01/2007 31/12/2010 -85284999 01/01/2007 31/12/2010 LIBEN Cathode-ray tube monitors, colour, with cathode ray tube with a screen width/height ratio >= 1,5, with scanning parameters of > 625 lines, not incorporating television reception apparatus (excl. of a kind solely or principally used in an automatic data-processing machine of heading 8471) 01/01/2007 31/12/2010 -852851 01/01/2007 31/12/2016 LIBEN Monitors of a kind solely or principally used in an automatic data-processing machine of heading 8471 (excl. with cathode ray tube) 01/01/2007 31/12/2016 -85285100 01/01/2007 31/12/2016 LIBEN Monitors of a kind solely or principally used in an automatic data-processing machine of heading 8471 (excl. with cathode ray tube) 01/01/2007 31/12/2016 -852852 01/01/2017 31/12/2500 LIBEN Monitors capable of directly connecting to and designed for use with an automatic data processing machine of heading 8471 (excl. CRT, with TV receiver) 01/01/2017 31/12/2500 -85285210 01/01/2017 31/12/2500 LIBEN Monitors of a kind solely or principally used in an automatic data-processing system of heading 8471 (excl. CRT, with TV receiver) 01/01/2017 31/12/2500 -85285291 01/01/2017 31/12/2500 LIBEN LCD monitors designed for computer use but of a kind not used principally with a computer (excl. with TV receiver) 01/01/2017 31/12/2500 -85285299 01/01/2017 31/12/2500 LIBEN Monitors designed for computer use but of a kind not used principally with a computer (excl. CRT, LCD, with TV receiver) 01/01/2017 31/12/2500 -852859 01/01/2007 31/12/2500 LIBEN Monitors (excl. with TV receiver, CRT and those designed for computer use) 01/01/2007 31/12/2500 -85285900 01/01/2017 31/12/2500 LIBEN Monitors (excl. with TV receiver, CRT and those designed for computer use) 01/01/2017 31/12/2500 -85285910 01/01/2007 31/12/2013 LIBEN Monitors, black and white or other monochrome, not incorporating television reception apparatus (excl. with cathode ray tube and those of a kind solely or principally used in an automatic data-processing machine of heading 8471) 01/01/2007 31/12/2013 -85285920 01/01/2014 31/12/2016 LIBEN Monochrome flat panel displays, not incorporating television reception apparatus, able to display signals from automatic data-processing machines with an acceptable level of functionality (excl. those of a kind solely or principally used in an automatic data-processing system of heading 8471) 01/01/2014 31/12/2016 -85285931 01/01/2014 31/12/2016 LIBEN Colour LCD monitors, not incorporating television reception apparatus, able to display signals from automatic data-processing machines with an acceptable level of functionality (excl. those of a kind solely or principally used in an automatic data-processing system of heading 8471) 01/01/2014 31/12/2016 -85285939 01/01/2014 31/12/2016 LIBEN Colour flat panel displays, not incorporating television reception apparatus, able to display signals from automatic data-processing machines with an acceptable level of functionality (excl. LCD monitors and those of a kind solely or principally used in an automatic data-processing system of heading 8471) 01/01/2014 31/12/2016 -85285940 01/01/2011 31/12/2013 LIBEN Monitors, colour, not incorporating television reception apparatus, with LCD screen (excl. those of a kind solely or principally used in an automatic data-processing system of heading 8471) 01/01/2011 31/12/2013 -85285970 01/01/2014 31/12/2016 LIBEN Monitors, not incorporating television reception apparatus (excl. with cathode ray tube, and flat panel displays able to display signals from automatic data-processing machines with an acceptable level of functionality) 01/01/2014 31/12/2016 -85285980 01/01/2011 31/12/2013 LIBEN Monitors, colour, not incorporating television reception apparatus (excl. with LCD screen or cathode ray tube and those of a kind solely or principally used in an automatic data-processing system of heading 8471) 01/01/2011 31/12/2013 -85285990 01/01/2007 31/12/2010 LIBEN Monitors, colour, not incorporating television reception apparatus (excl. with cathode ray tube and those of a kind solely or principally used in an automatic data-processing machine of heading 8471) 01/01/2007 31/12/2010 -852861 01/01/2007 31/12/2016 LIBEN Projectors of a kind solely or principally used in an automatic data-processing machine of heading 8471 01/01/2007 31/12/2016 -85286100 01/01/2007 31/12/2016 LIBEN Projectors of a kind solely or principally used in an automatic data-processing machine of heading 8471 01/01/2007 31/12/2016 -852862 01/01/2017 31/12/2500 LIBEN Projectors capable of directly connecting to and designed for use with an automatic data processing machine of heading 8471 (excl. with TV receiver) 01/01/2017 31/12/2500 -85286200 01/01/2017 31/12/2500 LIBEN Projectors capable of directly connecting to and designed for use with an automatic data processing machine of heading 8471 (excl. with TV receiver) 01/01/2017 31/12/2500 -852869 01/01/2007 31/12/2500 LIBEN Projectors (excl. with TV receiver, designed for computer use) 01/01/2007 31/12/2500 -85286910 01/01/2007 31/12/2016 LIBEN Projectors, operating by means of flat panel display [e.g. a liquid crystal device], capable of displaying digital information generated by an automatic data-processing machine 01/01/2007 31/12/2016 -85286920 01/01/2017 31/12/2500 LIBEN Monochrome projectors (excl. with TV receiver, designed for computer use) 01/01/2017 31/12/2500 -85286980 01/01/2017 31/12/2500 LIBEN Colour projectors (excl. with TV receiver, designed for computer use) 01/01/2017 31/12/2500 -85286991 01/01/2007 31/12/2016 LIBEN Projectors, black and white or other monochrome, not incorporating television reception apparatus (excl. of a kind solely or principally used in an automatic data-processing machine of heading 8471 and those operating by means of flat panel display [e.g. a liquid crystal device] capable of displaying digital information generated by an automatic data-processing machine) 01/01/2007 31/12/2016 -85286999 01/01/2007 31/12/2016 LIBEN Projectors, colour, not incorporating television reception apparatus (excl. of a kind solely or principally used in an automatic data-processing machine of heading 8471 and those operating by means of flat panel display [e.g. a liquid crystal device] capable of displaying digital information generated by an automatic data-processing machine) 01/01/2007 31/12/2016 -852871 01/01/2007 31/12/2500 LIBEN Reception apparatus for television, whether or not incorporating radio-broadcast receivers or sound or video recording or reproducing apparatus, not designed to incorporate a video display or screen 01/01/2007 31/12/2500 -85287111 01/01/2007 31/12/2500 LIBEN Video tuners electronic assemblies for incorporation into automatic data-processing machines 01/01/2007 31/12/2500 -85287113 01/01/2007 30/06/2011 LIBEN Apparatus with a microprocessor-based device incorporating a modem for gaining access to the Internet, and having a function of interactive information exchange, capable of receiving television signals "set-top boxes with communication function" 01/01/2007 30/06/2011 -85287115 01/07/2011 31/12/2500 LIBEN Video tuners with a microprocessor-based device incorporating a modem for gaining access to the Internet, and having a function of interactive information exchange, capable of receiving television signals (set-top boxes with a communication function) 01/07/2011 31/12/2500 -85287119 01/01/2007 31/12/2500 LIBEN Video tuners (excl. electronic assemblies for incorporation into automatic data-processing machines and apparatus with a microprocessor-based device incorporating a modem for gaining access to the Internet and having a function of interactive information exchange capable of receiving television signals "set-top boxes with communication function") 01/01/2007 31/12/2500 -85287190 01/01/2007 30/06/2011 LIBEN Reception apparatus for television, whether or not incorporating radio-broadcast receivers or sound or video recording or reproducing apparatus, not designed to incorporate a video display or screen (excl. video tuners) 01/01/2007 30/06/2011 -85287191 01/07/2011 31/12/2500 LIBEN Apparatus with a microprocessor-based device incorporating a modem for gaining access to the Internet, and having a function of interactive information exchange, capable of receiving television signals (set-top boxes with a communication function, excl. video tuners) 01/07/2011 31/12/2500 -85287199 01/07/2011 31/12/2500 LIBEN Reception apparatus for television, whether or not incorporating radio-broadcast receivers or sound or video recording or reproducing apparatus, not designed to incorporate a video display or screen (excl. video tuners, set-top boxes with a communication function) 01/07/2011 31/12/2500 -852872 01/01/2007 31/12/2500 LIBEN Reception apparatus for television, colour, whether or not incorporating radio-broadcast receivers or sound or video recording or reproducing apparatus, designed to incorporate a video display or screen 01/01/2007 31/12/2500 -85287210 01/01/2007 31/12/2500 LIBEN Television projection equipment, colour, designed to incorporate a video display or screen 01/01/2007 31/12/2500 -85287220 01/01/2007 31/12/2500 LIBEN Reception apparatus for television, colour, incorporating a video recorder or reproducer 01/01/2007 31/12/2500 -85287230 01/01/2011 31/12/2500 LIBEN Reception apparatus for television, colour, with integral tube (excl. incorporating video recording or reproducing apparatus, and monitors) 01/01/2011 31/12/2500 -85287231 01/01/2007 31/12/2010 LIBEN Reception apparatus for television, colour, with integral tube, with a screen width/height ratio < 1,5, with a diagonal measurement of the screen of <= 42 cm (excl. incorporating video recording or reproducing apparatus and monitors) 01/01/2007 31/12/2010 -85287233 01/01/2007 31/12/2010 LIBEN Reception apparatus for television, colour, with integral tube, with a screen width/height ratio < 1,5, with a diagonal measurement of the screen of > 42 cm to 52 cm (excl. incorporating video recording or reproducing apparatus and monitors) 01/01/2007 31/12/2010 -85287235 01/01/2007 31/12/2010 LIBEN Reception apparatus for television, colour, with integral tube, with a screen width/height ratio < 1,5, with a diagonal measurement of the screen of > 52 cm to 72 cm (excl. incorporating video recording or reproducing apparatus and monitors) 01/01/2007 31/12/2010 -85287239 01/01/2007 31/12/2010 LIBEN Reception apparatus for television, colour, with integral tube, with a screen width/height ratio < 1,5, with a diagonal measurement of the screen of > 72 cm (excl. incorporating video recording or reproducing apparatus and monitors) 01/01/2007 31/12/2010 -85287240 01/01/2011 31/12/2500 LIBEN Reception apparatus for television, colour, with LCD screen (excl. incorporating video recording or reproducing apparatus, and monitors, and television projection equipment) 01/01/2011 31/12/2500 -85287251 01/01/2007 31/12/2010 LIBEN Reception apparatus for televisions, colour, with integral tube, with a screen width/height ratio >= 1,5, with scanning parameters of <= 625 lines and a diagonal measurement of the screen of <= 75 cm (excl. incorporating video recording or reproducing apparatus and monitors) 01/01/2007 31/12/2010 -85287259 01/01/2007 31/12/2010 LIBEN Reception apparatus for television, colour, with integral tube, with a screen width/height ratio >= 1,5, with scanning parameters of <= 625 lines and a diagonal measurement of the screen of > 75 cm (excl. incorporating video recording or reproducing apparatus and monitors) 01/01/2007 31/12/2010 -85287260 01/01/2011 31/12/2500 LIBEN Reception apparatus for television, colour, with a plasma display (excl. incorporating video recording or reproducing apparatus, and monitors, and television projection equipment) 01/01/2011 31/12/2500 -85287275 01/01/2007 31/12/2010 LIBEN Reception apparatus for television, colour, with integral tube, with a screen width/height ratio >= 1,5, with scanning parameters of > 625 lines (excl. incorporating video recording or reproducing apparatus and monitors) 01/01/2007 31/12/2010 -85287280 01/01/2011 31/12/2500 LIBEN Reception apparatus for television, colour (excl. with integral tube or LCD or plasma display, or incorporating video recording or reproducing apparatus, and monitors and television projection equipment) 01/01/2011 31/12/2500 -85287291 01/01/2007 31/12/2010 LIBEN Reception apparatus for television, colour, with a screen width/height ratio < 1,5 (excl. with integral tube or incorporating video recording or reproducing apparatus and monitors, and television projection equipment) 01/01/2007 31/12/2010 -85287299 01/01/2007 31/12/2010 LIBEN Reception apparatus for television, colour, with a screen width/height ratio >= 1,5 (excl. with integral tube or incorporating video recording or reproducing apparatus and monitors, and television projection equipment) 01/01/2007 31/12/2010 -852873 01/01/2007 31/12/2500 LIBEN Reception apparatus for television, black and white or other monochrome, whether or not incorporating radio-broadcast receivers or sound or video recording or reproducing apparatus, designed to incorporate a video display or screen 01/01/2007 31/12/2500 -85287300 01/01/2007 31/12/2500 LIBEN Reception apparatus for television, black and white or other monochrome, whether or not incorporating radio-broadcast receivers or sound or video recording or reproducing apparatus, designed to incorporate a video display or screen 01/01/2007 31/12/2500 -8529 01/01/1988 31/12/2500 LIBEN Parts suitable for use solely or principally with transmission and reception apparatus for radio-telephony, radio-telegraphy, radio-broadcasting, television, television cameras, still image video cameras and other video camera recorders, radar apparatus, radio navigational aid apparatus or radio remote control apparatus, n.e.s. 01/01/1988 31/12/2500 -852910 01/01/1988 31/12/2500 LIBEN Aerials and aerial reflectors of all kinds; parts suitable for use therewith, n.e.s. 01/01/1988 31/12/2500 -85291010 01/01/1988 31/12/2005 LIBEN Aerials and aerial reflectors of all kinds; parts suitable for use therewith, n.e.s. for civil aircraft 01/01/1988 31/12/2005 -85291011 01/01/2007 31/12/2016 LIBEN Telescopic and whip-type aerials for portable apparatus or for apparatus for fitting in motor vehicles (only for apparatus of headings 8525 to 8528) 01/01/2007 31/12/2016 -85291011 01/01/2017 31/12/2500 LIBEN Telescopic and whip-type aerials for portable apparatus or for apparatus for fitting in motor vehicles (only for apparatus of headings 8525 to 8528) 01/01/2017 31/12/2500 -85291013 01/01/2006 31/12/2006 LIBEN Aerials for radio-telegraphic or radio-telephonic apparatus 01/01/2006 31/12/2006 -85291015 01/01/1998 31/12/2005 LIBEN Aerials for radio-telegraphic or radio-telephonic apparatus 01/01/1998 31/12/2005 -85291020 01/01/1988 31/12/2006 LIBEN Telescopic and whip-type aerials for portable apparatus or for apparatus for fitting in motor vehicles 01/01/1988 31/12/2006 -85291030 01/01/2020 31/12/2500 LIBEN Outside aerials for radio or television broadcast receivers 01/01/2020 31/12/2500 -85291031 01/01/1988 31/12/2016 LIBEN Outside aerials for radio or television broadcast receivers, for reception via satellite 01/01/1988 31/12/2016 -85291031 01/01/2017 31/12/2019 LIBEN Outside aerials for radio or television broadcast receivers, for reception via satellite 01/01/2017 31/12/2019 -85291039 01/01/1988 31/12/2016 LIBEN Outside aerials for radio or television broadcast receivers (excl. those for satellite reception) 01/01/1988 31/12/2016 -85291039 01/01/2017 31/12/2019 LIBEN Outside aerials for radio or television broadcast receivers (excl. those for satellite reception) 01/01/2017 31/12/2019 -85291040 01/01/1988 31/12/2005 LIBEN Inside aerials for radio or television broadcast receivers, incl. built-in types (excl. telescopic and whip-type aerials for portable apparatus or for apparatus for fitting in motor vehicles) 01/01/1988 31/12/2005 -85291045 01/01/1998 31/12/2005 LIBEN Aerials (excl. those for civil aircraft of subheading 8529.10.10, aerials for radio-telegraphic or radio-telephonic apparatus, inside and outside aerials for radio or television broadcast receivers and telescopic and whip-type aerials for portable apparatus or for apparatus for fitting in motor vehicles) 01/01/1998 31/12/2005 -85291050 01/01/1988 31/12/1997 LIBEN Aerials (excl. those for civil aircraft of subheading 8529.10.10, inside and outside aerials for radio or television broadcast receivers and telescopic and whip-type aerials for portable apparatus or for apparatus for fitting in motor vehicles) 01/01/1988 31/12/1997 -85291065 01/01/2006 31/12/2016 LIBEN Inside aerials for radio or television broadcast receivers, incl. built-in types (excl. telescopic and whip-type aerials for portable apparatus or for apparatus for fitting in motor vehicles) 01/01/2006 31/12/2016 -85291065 01/01/2017 31/12/2500 LIBEN Inside aerials for radio or television broadcast receivers, incl. built-in types (excl. telescopic and whip-type aerials for portable apparatus or for apparatus for fitting in motor vehicles) 01/01/2017 31/12/2500 -85291069 01/01/2007 31/12/2500 LIBEN Aerials (excl. inside and outside aerials for radio or television broadcast receivers and telescopic and whip-type aerials for portable apparatus or for apparatus for fitting in motor vehicles) 01/01/2007 31/12/2500 -85291070 01/01/1988 31/12/2005 LIBEN Aerial filters and separators 01/01/1988 31/12/2005 -85291075 01/01/2006 31/12/2006 LIBEN Aerials (excl. aerials for radio-telegraphic or radio-telephonic apparatus, inside and outside aerials for radio or television broadcast receivers and telescopic and whip-type aerials for portable apparatus or for apparatus for fitting in motor vehicles) 01/01/2006 31/12/2006 -85291080 01/01/2007 31/12/2016 LIBEN Aerial filters and separators 01/01/2007 31/12/2016 -85291080 01/01/2017 31/12/2500 LIBEN Aerial filters and separators 01/01/2017 31/12/2500 -85291085 01/01/2006 31/12/2006 LIBEN Aerial filters and separators 01/01/2006 31/12/2006 -85291090 01/01/1988 31/12/2005 LIBEN Aerial reflectors and parts suitable for use with aerials or aerial reflectors, n.e.s. 01/01/1988 31/12/2005 -85291095 01/01/2007 31/12/2500 LIBEN Aerial reflectors and parts suitable for use with aerials or aerial reflectors, n.e.s. (excl. aerial filters and separators) 01/01/2007 31/12/2500 -85291099 01/01/2006 31/12/2006 LIBEN Aerial reflectors and parts suitable for use with aerials or aerial reflectors, n.e.s. 01/01/2006 31/12/2006 -852990 01/01/1988 31/12/2500 LIBEN Parts suitable for use solely or principally with transmission and reception apparatus for radio-broadcasting or television, television cameras,digital cameras, video camera recorders, radar apparatus, radio navigational aid apparatus or radio remote control apparatus, monitors and projectors, n.e.s. (excl. for aerials and aerial reflectors of all kinds) 01/01/1988 31/12/2500 -85299010 01/01/1988 31/12/2005 LIBEN Assemblies and sub-assemblies consisting of two or more parts or pieces fastened or joined together, for radar apparatus, radio navigational aid apparatus or radio remote control apparatus, n.e.s., for civil aircraft 01/01/1988 31/12/2005 -85299015 01/01/2017 31/12/2500 LIBEN Organic light-emitting diode "OLED" modules and OLED panels for television reception apparatus 01/01/2017 31/12/2500 -85299020 01/01/2007 31/12/2500 LIBEN Parts suitable for use solely or principally with transmission apparatus incorporating reception apparatus for radio-broadcasting or television, digital cameras, computer monitors and computer projectors, n.e.s. 01/01/2007 31/12/2500 -85299040 01/01/1998 31/12/2006 LIBEN Parts of radio-telegraphic or radio-telephonic transmission apparatus, transmission apparatus incorporating reception apparatus, still image digital video cameras and portable receivers for calling, alerting or paging, n.e.s. 01/01/1998 31/12/2006 -85299041 01/01/2007 31/12/2500 LIBEN Cabinets and cases of wood, for transmission and reception apparatus for radio-broadcasting or television, television cameras, digital cameras, video camera recorders, radar apparatus, radio navigational aid apparatus or radio remote control apparatus, monitors and projectors, n.e.s. 01/01/2007 31/12/2500 -85299049 01/01/2007 31/12/2500 LIBEN Cabinets and cases other than of wood, for transmission and reception apparatus for radio-broadcasting or television, television cameras, digital cameras, video camera recorders, radar apparatus, radio navigational aid apparatus or radio remote control apparatus, monitors and projectors, n.e.s. 01/01/2007 31/12/2500 -85299051 01/01/1988 31/12/2006 LIBEN Cabinets and cases of wood, for transmission and reception apparatus for radio-telephony, radio-telegraphy, radio-broadcasting, television, television cameras, still image video cameras and other video camera recorders, radar apparatus, radio navigational aid apparatus or radio remote control apparatus, n.e.s. 01/01/1988 31/12/2006 -85299059 01/01/1988 31/12/2006 LIBEN Cabinets and cases other than of wood, for transmission and reception apparatus for radio-telephony, radio-telegraphy, radio-broadcasting, television, television cameras, still image video cameras and other video camera recorders, radar apparatus, radio navigational aid apparatus or radio remote control apparatus, n.e.s. 01/01/1988 31/12/2006 -85299060 01/01/2006 31/12/2006 LIBEN Electronic assemblies suitable for use solely or principally with transmission and reception apparatus for radio-telephony, radio-telegraphy, radio-broadcasting, television, television cameras, still image video cameras and other video camera recorders, radar apparatus, radio navigational aid apparatus or radio remote control apparatus, n.e.s. (excl. such of subheading 8529.90.40) 01/01/2006 31/12/2006 -85299065 01/01/2007 31/12/2016 LIBEN Electronic assemblies suitable for use solely or principally with transmission and reception apparatus for radio-broadcasting or television, television cameras, digital cameras, video camera recorders, radar apparatus, radio navigational aid apparatus or radio remote control apparatus, monitors and projectors, n.e.s. 01/01/2007 31/12/2016 -85299065 01/01/2017 31/12/2500 LIBEN Electronic assemblies suitable for use solely or principally with transmission and reception apparatus for radio-broadcasting or television, television cameras, digital cameras, video camera recorders, radar apparatus, radio navigational aid apparatus or radio remote control apparatus, monitors and projectors, n.e.s. 01/01/2017 31/12/2500 -85299070 01/01/1992 31/12/1997 LIBEN Electronic assemblies suitable for use solely or principally with transmission and reception apparatus for radio-telephony, radio-telegraphy, radio-broadcasting or television and with radar apparatus, radio navigational aid apparatus and radio remote control apparatus, n.e.s. 01/01/1992 31/12/1997 -85299072 01/01/1998 31/12/2005 LIBEN Electronic assemblies suitable for use solely or principally with transmission and reception apparatus for radio-telephony, radio-telegraphy, radio-broadcasting, television, television cameras, still image video cameras and other video camera recorders, radar apparatus, radio navigational aid apparatus or radio remote control apparatus, n.e.s. (excl. those for civil aircraft of subheading 8529.90.10 and such of subheading 8529.90.40) 01/01/1998 31/12/2005 -85299081 01/01/1995 31/12/1997 LIBEN Parts suitable for use solely or principally with television cameras of subheading 8525.30, receivers of radio-telephonic or radio-telegraphic signals, or for radio or television (excl. aerials, cabinets and casings and assembled electronic circuits) 01/01/1995 31/12/1997 -85299081 01/01/1998 31/12/2006 LIBEN Parts suitable for use solely or principally with television cameras of subheading 8525.30, receivers of radio-telephonic or radio-telegraphic signals, or for radio or television, n.e.s. (excl. aerials, cabinets and casings, electronic assemblies and parts for portable receivers for calling, alerting or paging) 01/01/1998 31/12/2006 -85299088 01/01/1998 31/12/2005 LIBEN Parts suitable for use solely or principally with transmission apparatus for radio-telephony or radio-telegraphy for civil aircraft, radio-broadcasting or television, video camera recorders, radar apparatus, radio navigational aid apparatus and remote control apparatus, n.e.s. (excl. assemblies and sub-assemblies for civil aircraft of subheading 8529.90.10, parts for digital still image video cameras, aerials and aerial reflectors, and electronic assemblies) 01/01/1998 31/12/2005 -85299089 01/01/1995 31/12/1997 LIBEN Parts suitable for use solely or principally with radio-telephonic or radio-telegraphic transmitters, or for radio or television or radar, navigation and remote-control equipment, n.e.s. 01/01/1995 31/12/1997 -85299091 01/01/2017 31/12/2500 LIBEN LED backlight modules for LCDs of headings 8525 to 8528 (excl. for computer monitors) 01/01/2017 31/12/2500 -85299092 01/01/2007 31/12/2016 LIBEN Parts suitable for use solely or principally with television cameras, reception apparatus for radio-broadcasting or television, and monitors and projectors, n.e.s. (excl. aerials, cabinets and casings, electronic assemblies and parts for monitors and projectors of a kind solely or principally used in an automatic data-processing machine) 01/01/2007 31/12/2016 -85299092 01/01/2017 31/12/2500 LIBEN Parts suitable for use solely or principally with television cameras, reception apparatus for radio-broadcasting or television, and monitors and projectors, n.e.s. (excl. aerials, cabinets and casings, electronic assemblies and parts for monitors and projectors of a kind solely or principally used in an automatic data-processing machine) 01/01/2017 31/12/2500 -85299095 01/01/2006 31/12/2006 LIBEN Parts suitable for use solely or principally with transmission apparatus for radio-telephony or radio-telegraphy, radio-broadcasting or television, video camera recorders, radar apparatus, radio navigational aid apparatus and remote control apparatus, n.e.s. (excl. assemblies and sub-assemblies, parts for digital still image video cameras, aerials and aerial reflectors, and electronic assemblies) 01/01/2006 31/12/2006 -85299097 01/01/2007 31/12/2016 LIBEN Parts suitable for use solely or principally with transmission apparatus not incorporating reception apparatus for radio-broadcasting or television, video camera recorders, radar apparatus, radio navigational aid apparatus and remote control apparatus, n.e.s. (excl. assemblies and sub-assemblies, parts for digital cameras, aerials and aerial reflectors, and electronic assemblies) 01/01/2007 31/12/2016 -85299097 01/01/2017 31/12/2500 LIBEN Parts suitable for use solely or principally with transmission apparatus not incorporating reception apparatus for radio-broadcasting or television, video camera recorders, radar apparatus, radio navigational aid apparatus and remote control apparatus, n.e.s. 01/01/2017 31/12/2500 -85299098 01/01/1992 31/12/1994 LIBEN Parts suitable for use solely or principally with transmission and reception apparatus for radio-telephony, radio-telegraphy, radio-broadcasting or television and with radar apparatus, radio navigational aid apparatus and radio remote control apparatus, n.e.s. 01/01/1992 31/12/1994 -85299099 01/01/1988 31/12/1991 LIBEN Parts suitable for use solely or principally with transmission and reception apparatus for radio-telephony, radio-telegraphy, radio-broadcasting, television, radar apparatus, radio navigational aid apparatus or radio remote control apparatus, n.e.s. 01/01/1988 31/12/1991 -8530 01/01/1988 31/12/2500 LIBEN Electrical signalling, safety or traffic control equipment for railways, tramways, roads, inland waterways, parking facilities, port installations or airfields (excl. mechanical or electromechanical equipment of heading 8608); parts thereof 01/01/1988 31/12/2500 -853010 01/01/1988 31/12/2500 LIBEN Electrical signalling, safety or traffic control equipment for railways or tramways (excl. mechanical or electromechanical equipment of heading 8608) 01/01/1988 31/12/2500 -85301000 01/01/1988 31/12/2500 LIBEN Electrical signalling, safety or traffic control equipment for railways or tramways (excl. mechanical or electromechanical equipment of heading 8608) 01/01/1988 31/12/2500 -853080 01/01/1988 31/12/2500 LIBEN Electrical signalling, safety or traffic control equipment (excl. that for railways or tramways and mechanical or electromechanical equipment of heading 8608) 01/01/1988 31/12/2500 -85308000 01/01/1988 31/12/2500 LIBEN Electrical signalling, safety or traffic control equipment (excl. that for railways or tramways and mechanical or electromechanical equipment of heading 8608) 01/01/1988 31/12/2500 -853090 01/01/1988 31/12/2500 LIBEN Parts of electrical signalling, safety or traffic control equipment, n.e.s. 01/01/1988 31/12/2500 -85309000 01/01/1988 31/12/2006 LIBEN Parts of electrical signalling, safety or traffic control equipment, n.e.s. 01/01/1988 31/12/2006 -85309000 01/01/2007 31/12/2016 LIBEN Parts of electrical signalling, safety or traffic control equipment, n.e.s. 01/01/2007 31/12/2016 -85309000 01/01/2017 31/12/2500 LIBEN Parts of electrical signalling, safety or traffic control equipment, n.e.s. 01/01/2017 31/12/2500 -8531 01/01/1988 31/12/2500 LIBEN Electric sound or visual signalling apparatus, e.g. bells, sirens, indicator panels, burglar or fire alarms (excl. those for cycles, motor vehicles and traffic signalling); parts thereof 01/01/1988 31/12/2500 -853110 01/01/1988 31/12/2500 LIBEN Burglar or fire alarms and similar apparatus 01/01/1988 31/12/2500 -85311010 01/01/1988 31/12/2005 LIBEN Burglar or fire alarms and similar apparatus, for civil aircraft 01/01/1988 31/12/2005 -85311020 01/01/1994 31/12/2006 LIBEN Burglar alarms for use in motor vehicles 01/01/1994 31/12/2006 -85311030 01/01/1994 31/12/2500 LIBEN Burglar or fire alarms and similar apparatus, for use in buildings 01/01/1994 31/12/2500 -85311080 01/01/1994 31/12/2005 LIBEN Burglar or fire alarms and similar apparatus (excl. those for civil aircraft of subheading 8531.10.10 and those for use in motor vehicles or buildings) 01/01/1994 31/12/2005 -85311090 01/01/1988 31/12/1993 LIBEN Burglar or fire alarms and similar apparatus, (excl. those for civil aircraft of subheading no 8531.10-10) 01/01/1988 31/12/1993 -85311095 01/01/2006 31/12/2500 LIBEN Burglar or fire alarms and similar apparatus (excl. those for use in motor vehicles or buildings) 01/01/2006 31/12/2500 -853120 01/01/1988 31/12/2500 LIBEN Indicator panels with liquid crystal devices "LCD" or light emitting diodes "LED" (excl. those for cycles, motor vehicles and traffic signalling) 01/01/1988 31/12/2500 -85312010 01/01/1988 31/12/2005 LIBEN Indicator panels with liquid crystal devices [LCD] or light emitting diodes [LED], for civil aircraft 01/01/1988 31/12/2005 -85312020 01/01/2006 31/12/2500 LIBEN Indicator panels with light emitting diodes "LED" (excl. those of a kind used for motor vehicles, cycles or traffic signalling) 01/01/2006 31/12/2500 -85312030 01/01/1994 31/12/2005 LIBEN Indicator panels with light emitting diodes "LED" (excl. those of a kind used for civil aircraft of subheading 8531.20.10 and those of a kind used for motor vehicles, cycles or traffic signalling) 01/01/1994 31/12/2005 -85312040 01/01/2006 31/12/2500 LIBEN Indicator panels with matrix liquid crystal devices "LCD", active (excl. those of a kind used for motor vehicles, cycles or traffic signalling) 01/01/2006 31/12/2500 -85312050 01/01/1999 31/12/2005 LIBEN Matrix liquid crystal devices "LCD", active (excl. those of a kind used for civil aircraft of subheading 8531.20.10 and those of a kind used for motor vehicles, cycles or traffic signalling) 01/01/1999 31/12/2005 -85312051 01/01/1994 31/12/1998 LIBEN Indicator panels incorporating active matrix liquid crystal devices "LCD" for coloured images (excl. those of a kind used for civil aircraft of subheading 8531.20.10 and those of a kind used for motor vehicles, cycles or traffic signalling) 01/01/1994 31/12/1998 -85312059 01/01/1994 31/12/1998 LIBEN Matrix liquid crystal devices, active, colour 01/01/1994 31/12/1998 -85312080 01/01/1994 31/12/2005 LIBEN Indicator panels with liquid crystal devices "LCD" (excl. those for civil aircraft of subheading 8531.20.10, active matrix liquid crystal devices and those of a kind used for motor vehicles, cycles or traffic signalling) 01/01/1994 31/12/2005 -85312090 01/01/1988 31/12/1993 LIBEN Indicator panels with liquid crystal devices or light emitting diodes (excl. those for civil aircraft of subheading no 8531.20-10 and those for cycles, motor vehicles and traffic signalling) 01/01/1988 31/12/1993 -85312095 01/01/2006 31/12/2500 LIBEN Indicator panels with liquid crystal devices "LCD" (excl. active matrix liquid crystal devices and those of a kind used for motor vehicles, cycles or traffic signalling) 01/01/2006 31/12/2500 -853120SS 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 8531 20 01/01/2006 31/12/2500 -853180 01/01/1988 31/12/2500 LIBEN Electric sound or visual signalling apparatus (excl. indicator panels with liquid crystal devices or light emitting diodes, burglar or fire alarms and similar apparatus and apparatus for cycles, motor vehicles and traffic signalling) 01/01/1988 31/12/2500 -85318010 01/01/1988 31/12/2005 LIBEN Electric sound or visual signalling apparatus, for civil aircraft (excl. indicator panels with liquid crystal devices or light emitting diodes, burglar or fire alarms and similar apparatus and apparatus for cycles, motor vehicles and traffic signalling) 01/01/1988 31/12/2005 -85318020 01/01/2006 31/12/2016 LIBEN Electric sound or visual signalling apparatus, with flat panel display devices (excl. indicator panels with liquid crystal devices or light emitting diodes, burglar or fire alarms and similar apparatus and apparatus for cycles, motor vehicles and traffic signalling) 01/01/2006 31/12/2016 -85318030 01/01/1998 31/12/2005 LIBEN Electric sound or visual signalling apparatus, with flat panel display devices (excl. that for civil aircraft of subheading 8531.80.10, indicator panels with liquid crystal devices or light emitting diodes, burglar or fire alarms and similar apparatus and apparatus for cycles, motor vehicles and traffic signalling) 01/01/1998 31/12/2005 -85318040 01/01/2017 31/12/2500 LIBEN Electric bells, buzzers, door chimes and similar (excl. burglar or fire alarms and similar apparatus and apparatus for cycles, motor vehicles and traffic signalling) 01/01/2017 31/12/2500 -85318070 01/01/2017 31/12/2500 LIBEN Electric sound or visual signalling apparatus (excl. indicator panels with LCDs or LEDs, burglar or fire alarms and similar apparatus, apparatus for cycles, motor vehicles and traffic signalling, and bells, buzzers, door chimes and similar) 01/01/2017 31/12/2500 -85318080 01/01/1998 31/12/2005 LIBEN Electric sound or visual signalling apparatus (excl. with flat panel display devices and excl. that for civil aircraft of subheading 8531.80.10, indicator panels with liquid crystal devices or light emitting diodes, burglar or fire alarms and similar apparatus and apparatus for cycles, motor vehicles and traffic signalling) 01/01/1998 31/12/2005 -85318090 01/01/1988 31/12/1997 LIBEN Electric sound or visual signalling apparatus (excl. that for civil aircraft of subheading 8531.80.10, indicator panels with liquid crystal devices or light emitting diodes, burglar or fire alarms and similar apparatus and apparatus for cycles, motor vehicles and traffic signalling) 01/01/1988 31/12/1997 -85318095 01/01/2006 31/12/2016 LIBEN Electric sound or visual signalling apparatus (excl. with flat panel display devices, indicator panels with liquid crystal devices or light emitting diodes, burglar or fire alarms and similar apparatus and apparatus for cycles, motor vehicles and traffic signalling) 01/01/2006 31/12/2016 -853190 01/01/1988 31/12/2500 LIBEN Parts of electric sound or visual signalling apparatus, n.e.s. 01/01/1988 31/12/2500 -85319000 01/01/1988 31/12/1994 LIBEN Parts of electric sound or visual signalling apparatus, n.e.s. 01/01/1988 31/12/1994 -85319000 01/01/2017 31/12/2500 LIBEN Parts of electric sound or visual signalling apparatus, n.e.s. 01/01/2017 31/12/2500 -85319010 01/01/1995 31/12/1999 LIBEN Parts of display panels with liquid crystal displays "LCDs" or light-emitting diodes "LEDs" 01/01/1995 31/12/1999 -85319020 01/01/2000 31/12/2006 LIBEN Parts of display panels with liquid crystal displays "LCD" or light-emitting diodes "LED" and of electric sound or visual signalling equipment with flat panel display devices, n.e.s. 01/01/2000 31/12/2006 -85319020 01/01/2007 31/12/2016 LIBEN Parts of indicator panels with liquid crystal displays "LCD" or light-emitting diodes "LED" and of electric sound or visual signalling equipment with flat panel display devices, n.e.s. (excl. of multichip integrated circuits) 01/01/2007 31/12/2016 -85319030 01/01/1998 31/12/1999 LIBEN Parts of electric sound or visual signalling equipment with flat panel display devices, n.e.s. 01/01/1998 31/12/1999 -85319080 01/01/1998 31/12/2006 LIBEN Parts of electric sound or visual signalling equipment, n.e.s. (excl. of indicator panels with liquid crystal devices or light emitting diodes and of electric sound or visual signalling apparatus with flat panel display devices) 01/01/1998 31/12/2006 -85319085 01/01/2007 31/12/2016 LIBEN Parts of electric sound or visual signalling equipment, n.e.s. (excl. of indicator panels with liquid crystal devices or light emitting diodes, of electric sound or visual signalling apparatus with flat panel display devices and of multichip integrated circuits) 01/01/2007 31/12/2016 -85319090 01/01/1995 31/12/1997 LIBEN Parts of electric sound or visual signalling equipment, n.e.s. 01/01/1995 31/12/1997 -8532 01/01/1988 31/12/2500 LIBEN Electrical capacitors, fixed, variable or adjustable "pre-set"; parts thereof 01/01/1988 31/12/2500 -853210 01/01/1988 31/12/2500 LIBEN Fixed capacitors designed for use in 50/60 Hz circuits and having a reactive power-handling capacity of >= 0,5 kvar "power capacitors" 01/01/1988 31/12/2500 -85321000 01/01/1988 31/12/2500 LIBEN Fixed capacitors designed for use in 50/60 Hz circuits and having a reactive power-handling capacity of >= 0,5 kvar "power capacitors" 01/01/1988 31/12/2500 -853221 01/01/1988 31/12/2500 LIBEN Fixed electrical capacitors, tantalum (excl. power capacitors) 01/01/1988 31/12/2500 -85322100 01/01/1988 31/12/2500 LIBEN Fixed electrical capacitors, tantalum (excl. power capacitors) 01/01/1988 31/12/2500 -853222 01/01/1988 31/12/2500 LIBEN Fixed electrical capacitors, aluminium electrolytic (excl. power capacitors) 01/01/1988 31/12/2500 -85322200 01/01/1988 31/12/2500 LIBEN Fixed electrical capacitors, aluminium electrolytic (excl. power capacitors) 01/01/1988 31/12/2500 -853223 01/01/1988 31/12/2500 LIBEN Fixed electrical capacitors, ceramic dielectric, single layer (excl. power capacitors) 01/01/1988 31/12/2500 -85322300 01/01/1988 31/12/2500 LIBEN Fixed electrical capacitors, ceramic dielectric, single layer (excl. power capacitors) 01/01/1988 31/12/2500 -853224 01/01/1988 31/12/2500 LIBEN Fixed electrical capacitors, ceramic dielectric, multilayer (excl. power capacitors) 01/01/1988 31/12/2500 -85322400 01/01/1999 31/12/2500 LIBEN Fixed electrical capacitors, ceramic dielectric, multilayer (excl. power capacitors) 01/01/1999 31/12/2500 -85322410 01/01/1988 31/12/1998 LIBEN Fixed electrical capacitors, ceramic dielectric, multilayer, with connecting leads (excl. power capacitors) 01/01/1988 31/12/1998 -85322490 01/01/1988 31/12/1998 LIBEN Fixed electrical capacitors, ceramic dielectric, multilayer (excl. those with connecting leads and power capacitors) 01/01/1988 31/12/1998 -853225 01/01/1988 31/12/2500 LIBEN Fixed electrical capacitors, dielectric of paper or plastics (excl. power capacitors) 01/01/1988 31/12/2500 -85322500 01/01/1988 31/12/2500 LIBEN Fixed electrical capacitors, dielectric of paper or plastics (excl. power capacitors) 01/01/1988 31/12/2500 -853229 01/01/1988 31/12/2500 LIBEN Fixed electrical capacitors (excl. tantalum, aluminium electrolytic, ceramic, paper, plastic and power capacitors) 01/01/1988 31/12/2500 -85322900 01/01/1988 31/12/2500 LIBEN Fixed electrical capacitors (excl. tantalum, aluminium electrolytic, ceramic, paper, plastic and power capacitors) 01/01/1988 31/12/2500 -853230 01/01/1988 31/12/2500 LIBEN Variable or adjustable "pre-set" electrical capacitors 01/01/1988 31/12/2500 -85323000 01/01/1997 31/12/2500 LIBEN Variable or adjustable "pre-set" electrical capacitors 01/01/1997 31/12/2500 -85323010 01/01/1988 31/12/1996 LIBEN Variable electrical capacitors 01/01/1988 31/12/1996 -85323090 01/01/1988 31/12/1996 LIBEN Adjustable electrical capacitors (excl. variable capacitors) 01/01/1988 31/12/1996 -853290 01/01/1988 31/12/2500 LIBEN Parts of electrical "pre-set" capacitors, fixed, variable or adjustable, n.e.s. 01/01/1988 31/12/2500 -85329000 01/01/1988 31/12/2500 LIBEN Parts of electrical "pre-set" capacitors, fixed, variable or adjustable, n.e.s. 01/01/1988 31/12/2500 -8533 01/01/1988 31/12/2500 LIBEN Electrical resistors, incl. rheostats and potentiometers (excl. heating resistors); parts thereof 01/01/1988 31/12/2500 -853310 01/01/1988 31/12/2500 LIBEN Fixed carbon resistors, composition or film types (excl. heating resistors) 01/01/1988 31/12/2500 -85331000 01/01/1988 31/12/2500 LIBEN Fixed carbon resistors, composition or film types (excl. heating resistors) 01/01/1988 31/12/2500 -853321 01/01/1988 31/12/2500 LIBEN Fixed electrical resistors for a power handling capacity <= 20 W (excl. heating resistors) 01/01/1988 31/12/2500 -85332100 01/01/1988 31/12/2500 LIBEN Fixed electrical resistors for a power handling capacity <= 20 W (excl. heating resistors) 01/01/1988 31/12/2500 -853329 01/01/1988 31/12/2500 LIBEN Fixed electrical resistors for a power handling capacity > 20 W (excl. heating resistors) 01/01/1988 31/12/2500 -85332900 01/01/1988 31/12/2500 LIBEN Fixed electrical resistors for a power handling capacity > 20 W (excl. heating resistors) 01/01/1988 31/12/2500 -853331 01/01/1988 31/12/2500 LIBEN Wirewound variable electrical resistors, incl. rheostats and potentiometers, for a power handling capacity <= 20 W (excl. heating resistors) 01/01/1988 31/12/2500 -85333100 01/01/1988 31/12/2500 LIBEN Wirewound variable electrical resistors, incl. rheostats and potentiometers, for a power handling capacity <= 20 W (excl. heating resistors) 01/01/1988 31/12/2500 -853339 01/01/1988 31/12/2500 LIBEN Wirewound variable electrical resistors, incl. rheostats and potentiometers, for a power handling capacity > 20 W (excl. heating resistors) 01/01/1988 31/12/2500 -85333900 01/01/1988 31/12/2500 LIBEN Wirewound variable electrical resistors, incl. rheostats and potentiometers, for a power handling capacity > 20 W (excl. heating resistors) 01/01/1988 31/12/2500 -853340 01/01/1988 31/12/2500 LIBEN Electrical variable resistors, incl. rheostats and potentiometers (excl. wirewound variable resistors and heating resistors) 01/01/1988 31/12/2500 -85334010 01/01/1988 31/12/2500 LIBEN Electrical variable resistors, incl. rheostats and potentiometers, for a power handling capacity <= 20 W (excl. wirewound variable resistors and heating resistors) 01/01/1988 31/12/2500 -85334090 01/01/1988 31/12/2500 LIBEN Electrical variable resistors, incl. rheostats and potentiometers, for a power handling capacity > 20 W (excl. wirewound variable resistors and heating resistors) 01/01/1988 31/12/2500 -853390 01/01/1988 31/12/2500 LIBEN Parts of electrical resistors, incl. rheostats and potentiometers, n.e.s. 01/01/1988 31/12/2500 -85339000 01/01/1988 31/12/2500 LIBEN Parts of electrical resistors, incl. rheostats and potentiometers, n.e.s. 01/01/1988 31/12/2500 -8534 01/01/1988 31/12/2500 LIBEN Printed circuits 01/01/1988 31/12/2500 -853400 01/01/1988 31/12/2500 LIBEN Printed circuits 01/01/1988 31/12/2500 -85340011 01/01/1988 31/12/2500 LIBEN Multilayer printed circuits, consisting only of conductor elements and contacts 01/01/1988 31/12/2500 -85340019 01/01/1988 31/12/2500 LIBEN Printed circuits consisting only of conductor elements and contacts (excl. multiple printed circuits) 01/01/1988 31/12/2500 -85340090 01/01/1988 31/12/2500 LIBEN Printed circuits consisting of conductor elements, contacts and other passive elements (excl. those with passive and active elements) 01/01/1988 31/12/2500 -8535 01/01/1988 31/12/2500 LIBEN Electrical apparatus for switching or protecting electrical circuits, or for making connections to or in electrical circuits, e.g., switches, fuses, lightning arresters, voltage limiters, surge suppressors, plugs and other connectors, junction boxes, for a voltage > 1.000 V (excl. control desks, cabinets, panels etc. of heading 8537) 01/01/1988 31/12/2500 -853510 01/01/1988 31/12/2500 LIBEN Fuses for a voltage > 1.000 V 01/01/1988 31/12/2500 -85351000 01/01/1988 31/12/2016 LIBEN Fuses for a voltage > 1.000 V 01/01/1988 31/12/2016 -85351000 01/01/2017 31/12/2500 LIBEN Fuses for a voltage > 1.000 V 01/01/2017 31/12/2500 -853521 01/01/1988 31/12/2500 LIBEN Automatic circuit breakers for a voltage > 1.000 V but < 72,5 kV 01/01/1988 31/12/2500 -85352100 01/01/1988 31/12/2016 LIBEN Automatic circuit breakers for a voltage > 1.000 V but < 72,5 kV 01/01/1988 31/12/2016 -85352100 01/01/2017 31/12/2500 LIBEN Automatic circuit breakers for a voltage > 1.000 V but < 72,5 kV 01/01/2017 31/12/2500 -853529 01/01/1988 31/12/2500 LIBEN Automatic circuit breakers for a voltage >= 72,5 kV 01/01/1988 31/12/2500 -85352900 01/01/1988 31/12/2016 LIBEN Automatic circuit breakers for a voltage >= 72,5 kV 01/01/1988 31/12/2016 -85352900 01/01/2017 31/12/2500 LIBEN Automatic circuit breakers for a voltage >= 72,5 kV 01/01/2017 31/12/2500 -853530 01/01/1988 31/12/2500 LIBEN Isolating switches and make-and-break switches, for a voltage > 1.000 V 01/01/1988 31/12/2500 -85353010 01/01/1988 31/12/2016 LIBEN Isolating switches and make-and-break switches, for a voltage > 1.000 V but < 72,5 kV 01/01/1988 31/12/2016 -85353010 01/01/2017 31/12/2500 LIBEN Isolating switches and make-and-break switches, for a voltage > 1.000 V but < 72,5 kV 01/01/2017 31/12/2500 -85353090 01/01/1988 31/12/2016 LIBEN Isolating switches and make-and-break switches, for a voltage >= 72,5 kV 01/01/1988 31/12/2016 -85353090 01/01/2017 31/12/2500 LIBEN Isolating switches and make-and-break switches, for a voltage >= 72,5 kV 01/01/2017 31/12/2500 -853540 01/01/1988 31/12/2500 LIBEN Lightning arresters, voltage limiters and surge suppressors, for a voltage > 1.000 V 01/01/1988 31/12/2500 -85354000 01/01/1988 31/12/2016 LIBEN Lightning arresters, voltage limiters and surge suppressors, for a voltage > 1.000 V 01/01/1988 31/12/2016 -85354000 01/01/2017 31/12/2500 LIBEN Lightning arresters, voltage limiters and surge suppressors, for a voltage > 1.000 V 01/01/2017 31/12/2500 -853590 01/01/1988 31/12/2500 LIBEN Electrical apparatus for switching or protecting electrical circuits, or for making connections to or in electrical circuits, for a voltage > 1.000 V (excl. fuses, automatic circuit breakers, isolating switches, make-and-break switches, lightning arresters, voltage limiters, surge suppressors and control desks, cabinets, panels etc. of heading 8537) 01/01/1988 31/12/2500 -85359000 01/01/1988 31/12/2016 LIBEN Electrical apparatus for switching or protecting electrical circuits, or for making connections to or in electrical circuits, for a voltage > 1.000 V (excl. fuses, automatic circuit breakers, isolating switches, make-and-break switches, lightning arresters, voltage limiters, surge suppressors and control desks, cabinets, panels etc. of heading 8537) 01/01/1988 31/12/2016 -85359000 01/01/2017 31/12/2500 LIBEN Electrical apparatus for switching or protecting electrical circuits, or for making connections to or in electrical circuits, for a voltage > 1.000 V (excl. fuses, automatic circuit breakers, isolating switches, make-and-break switches, lightning arresters, voltage limiters, surge suppressors and control desks, cabinets, panels etc. of heading 8537) 01/01/2017 31/12/2500 -8535I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8535; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8535I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8535; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8536 01/01/1988 31/12/2500 LIBEN Electrical apparatus for switching or protecting electrical circuits, or for making connections to or in electrical circuits, e.g., switches, relays, fuses, surge suppressors, plugs, sockets, lamp holders and junction boxes, for a voltage <= 1.000 V (excl. control desks, cabinets, panels etc. of heading 8537) 01/01/1988 31/12/2500 -853610 01/01/1988 31/12/2500 LIBEN Fuses for a voltage <= 1.000 V 01/01/1988 31/12/2500 -85361000 01/01/1988 31/12/1988 LIBEN Fuses, for a voltage =< 1.000 volts 01/01/1988 31/12/1988 -85361010 01/01/1989 31/12/2016 LIBEN Fuses for a current <= 10 A, for a voltage <= 1.000 V 01/01/1989 31/12/2016 -85361010 01/01/2017 31/12/2500 LIBEN Fuses for a current <= 10 A, for a voltage <= 1.000 V 01/01/2017 31/12/2500 -85361050 01/01/1989 31/12/2016 LIBEN Fuses for a current > 10 A but <= 63 A, for a voltage <= 1.000 V 01/01/1989 31/12/2016 -85361050 01/01/2017 31/12/2500 LIBEN Fuses for a current > 10 A but <= 63 A, for a voltage <= 1.000 V 01/01/2017 31/12/2500 -85361090 01/01/1989 31/12/2016 LIBEN Fuses for a current > 63 A, for a voltage <= 1.000 V 01/01/1989 31/12/2016 -85361090 01/01/2017 31/12/2500 LIBEN Fuses for a current > 63 A, for a voltage <= 1.000 V 01/01/2017 31/12/2500 -853620 01/01/1988 31/12/2500 LIBEN Automatic circuit breakers for a voltage <= 1.000 V 01/01/1988 31/12/2500 -85362010 01/01/1988 31/12/2016 LIBEN Automatic circuit breakers for a voltage <= 1.000 V, for a current <= 63 A 01/01/1988 31/12/2016 -85362010 01/01/2017 31/12/2500 LIBEN Automatic circuit breakers for a voltage <= 1.000 V, for a current <= 63 A 01/01/2017 31/12/2500 -85362090 01/01/1988 31/12/2016 LIBEN Automatic circuit breakers for a voltage <= 1.000 V, for a current > 63 A 01/01/1988 31/12/2016 -85362090 01/01/2017 31/12/2500 LIBEN Automatic circuit breakers for a voltage <= 1.000 V, for a current > 63 A 01/01/2017 31/12/2500 -853630 01/01/1988 31/12/2500 LIBEN Apparatus for protecting electrical circuits for a voltage <= 1.000 V (excl. fuses and automatic circuit breakers) 01/01/1988 31/12/2500 -85363010 01/01/1988 31/12/2016 LIBEN Apparatus for protecting electrical circuits for a voltage <= 1.000 V, for a current <= 16 A (excl. fuses and automatic circuit breakers) 01/01/1988 31/12/2016 -85363010 01/01/2017 31/12/2500 LIBEN Apparatus for protecting electrical circuits for a voltage <= 1.000 V, for a current <= 16 A (excl. fuses and automatic circuit breakers) 01/01/2017 31/12/2500 -85363030 01/01/1988 31/12/2016 LIBEN Apparatus for protecting electrical circuits for a voltage <= 1.000 V, for a current > 16 A but <= 125 A (excl. fuses and automatic circuit breakers) 01/01/1988 31/12/2016 -85363030 01/01/2017 31/12/2500 LIBEN Apparatus for protecting electrical circuits for a voltage <= 1.000 V, for a current > 16 A but <= 125 A (excl. fuses and automatic circuit breakers) 01/01/2017 31/12/2500 -85363090 01/01/1988 31/12/2016 LIBEN Apparatus for protecting electrical circuits for a voltage <= 1.000 V, for a current > 125 A (excl. fuses and automatic circuit breakers) 01/01/1988 31/12/2016 -85363090 01/01/2017 31/12/2500 LIBEN Apparatus for protecting electrical circuits for a voltage <= 1.000 V, for a current > 125 A (excl. fuses and automatic circuit breakers) 01/01/2017 31/12/2500 -853641 01/01/1988 31/12/2500 LIBEN Relays for a voltage <= 60 V 01/01/1988 31/12/2500 -85364110 01/01/1988 31/12/2016 LIBEN Relays for a voltage <= 60 V, for a current <= 2 A 01/01/1988 31/12/2016 -85364110 01/01/2017 31/12/2500 LIBEN Relays for a voltage <= 60 V, for a current <= 2 A 01/01/2017 31/12/2500 -85364190 01/01/1988 31/12/2016 LIBEN Relays for a voltage <= 60 V, for a current > 2 A 01/01/1988 31/12/2016 -85364190 01/01/2017 31/12/2500 LIBEN Relays for a voltage <= 60 V, for a current > 2 A 01/01/2017 31/12/2500 -853649 01/01/1988 31/12/2500 LIBEN Relays for a voltage > 60 V but <= 1.000 V 01/01/1988 31/12/2500 -85364900 01/01/1988 31/12/2016 LIBEN Relays for a voltage > 60 V but <= 1.000 V 01/01/1988 31/12/2016 -85364900 01/01/2017 31/12/2500 LIBEN Relays for a voltage > 60 V but <= 1.000 V 01/01/2017 31/12/2500 -853650 01/01/1988 31/12/2500 LIBEN Switches for a voltage <= 1.000 V (excl. relays and automatic circuit breakers) 01/01/1988 31/12/2500 -85365000 01/01/1988 31/12/1991 LIBEN Switches for a voltage =< 1 000 v (excl. relays and automatic circuit breakers) [01/01/1988-31/12/1988: switches (excl. 8536.10-10 to 8536.49-00), for a voltage =< 1 000 v] 01/01/1988 31/12/1991 -85365003 01/01/1998 31/12/2500 LIBEN Electronic AC switches consisting of optically coupled input and output circuits "insulated thyristor AC switches" (excl. relays and automatic circuit breakers) 01/01/1998 31/12/2500 -85365005 01/01/1998 31/12/2500 LIBEN Electronic switches, incl. temperature protected electronic switches, consisting of a transistor and a logic chip "chip-on-chip technology" (excl. relays and automatic circuit breakers) 01/01/1998 31/12/2500 -85365007 01/01/1998 31/12/2500 LIBEN Electromechanical snap-action switches for a current <= 11 A (excl. relays and automatic circuit breakers) 01/01/1998 31/12/2500 -85365011 01/01/1992 31/12/2016 LIBEN Push-button switches for a voltage of <= 60 V 01/01/1992 31/12/2016 -85365011 01/01/2017 31/12/2500 LIBEN Push-button switches for a voltage of <= 60 V 01/01/2017 31/12/2500 -85365015 01/01/1992 31/12/2016 LIBEN Rotary switches for a voltage of <= 60 V 01/01/1992 31/12/2016 -85365015 01/01/2017 31/12/2500 LIBEN Rotary switches for a voltage of <= 60 V 01/01/2017 31/12/2500 -85365019 01/01/1992 31/12/2016 LIBEN Switches for a voltage of <= 60 V (excl. relays, push-button switches and rotary switches) 01/01/1992 31/12/2016 -85365019 01/01/2017 31/12/2500 LIBEN Switches for a voltage of <= 60 V (excl. relays, push-button switches and rotary switches) 01/01/2017 31/12/2500 -85365080 01/01/1998 31/12/2016 LIBEN Switches for a voltage of > 60 V and <= 1.000 V (excl. relays, automatic circuit breakers, electronic AC switches consisting of optically coupled input and output circuits "insulated thyristor AC switches", electronic switches, incl. temperature protected electronic switches, consisting of a transistor and a logic chip [chip-on-chip technology] and electromechanical snap-action switches for a current <= 11 A) 01/01/1998 31/12/2016 -85365080 01/01/2017 31/12/2500 LIBEN Switches for a voltage of > 60 V and <= 1.000 V (excl. relays, automatic circuit breakers, electronic AC switches consisting of optically coupled input and output circuits "insulated thyristor AC switches", electronic switches, incl. temperature protected electronic switches, consisting of a transistor and a logic chip [chip-on-chip technology] and electromechanical snap-action switches for a current <= 11 A) 01/01/2017 31/12/2500 -85365090 01/01/1992 31/12/1997 LIBEN Switches for a voltage of > 60 V and <= 1000 V (excl. relays and automatic circuit breakers) 01/01/1992 31/12/1997 -853661 01/01/1988 31/12/2500 LIBEN Lamp holders for a voltage <= 1.000 V 01/01/1988 31/12/2500 -85366110 01/01/1988 31/12/2016 LIBEN Edison lamp holders, electric 01/01/1988 31/12/2016 -85366110 01/01/2017 31/12/2500 LIBEN Edison lamp holders, electric 01/01/2017 31/12/2500 -85366190 01/01/1988 31/12/2016 LIBEN Lamp holders for a voltage <= 1.000 V (excl. Edison lamp holders) 01/01/1988 31/12/2016 -85366190 01/01/2017 31/12/2500 LIBEN Lamp holders for a voltage <= 1.000 V (excl. Edison lamp holders) 01/01/2017 31/12/2500 -853669 01/01/1988 31/12/2500 LIBEN Plugs and sockets for a voltage <= 1.000 V (excl. lamp holders) 01/01/1988 31/12/2500 -85366900 01/01/1988 31/12/1991 LIBEN Plugs and sockets for a voltage =< 1000 v (excl. lamp-holders) 01/01/1988 31/12/1991 -85366910 01/01/1992 31/12/2500 LIBEN Plugs and sockets for a voltage of <= 1.000 V, for coaxial cables 01/01/1992 31/12/2500 -85366930 01/01/1992 31/12/2500 LIBEN Plugs and sockets for a voltage of <= 1.000 V, for printed circuits 01/01/1992 31/12/2500 -85366990 01/01/1992 31/12/2016 LIBEN Plugs and sockets for a voltage of <= 1.000 V (excl. those for coaxial cables and printed circuits) 01/01/1992 31/12/2016 -85366990 01/01/2017 31/12/2500 LIBEN Plugs and sockets for a voltage of <= 1.000 V (excl. those for coaxial cables and printed circuits) 01/01/2017 31/12/2500 -853670 01/01/2007 31/12/2500 LIBEN Connectors for optical fibres, optical fibre bundles or cables 01/01/2007 31/12/2500 -85367000 01/01/2007 31/12/2016 LIBEN Connectors for optical fibres, optical fibre bundles or cables 01/01/2007 31/12/2016 -85367000 01/01/2017 31/12/2500 LIBEN Connectors for optical fibres, optical fibre bundles or cables 01/01/2017 31/12/2500 -853690 01/01/1988 31/12/2500 LIBEN Electrical apparatus for switching electrical circuits, or for making connections to or in electrical circuits, for a voltage <= 1.000 V (excl. fuses, automatic circuit breakers and other apparatus for protecting electrical circuits, relays and other switches, lamp holders, plugs and sockets) 01/01/1988 31/12/2500 -85369001 01/01/1989 31/12/2016 LIBEN Prefabricated elements for electrical circuits, for a voltage of <= 1.000 V 01/01/1989 31/12/2016 -85369001 01/01/2017 31/12/2500 LIBEN Prefabricated elements for electrical circuits, for a voltage of <= 1.000 V 01/01/2017 31/12/2500 -85369010 01/01/1992 31/12/2500 LIBEN Connections and contact elements, for wire and cables, for a voltage of <= 1.000 V (excl. plugs, sockets and prefabricated elements) 01/01/1992 31/12/2500 -85369011 01/01/1988 31/12/1991 LIBEN Connections and contact elements for coaxial cables, for a voltage =< 1 000 v 01/01/1988 31/12/1991 -85369019 01/01/1988 31/12/1991 LIBEN Connections and contact elements for wire and cables, for a voltage =< 1 000 v (excl. those for coaxial cables) 01/01/1988 31/12/1991 -85369020 01/01/1995 31/12/2019 LIBEN Wafer probers 01/01/1995 31/12/2019 -85369040 01/01/2017 31/12/2500 LIBEN Battery clamps of a kind used for motor vehicles of heading 8702, 8703, 8704, or 8711 01/01/2017 31/12/2500 -85369080 01/01/1989 31/12/1994 LIBEN Electrical apparatus for switching or protecting electrical circuits, or for making connections to or in electrical circuits, for a voltage of <= 1000 v (excl. fuses, automatic circuit breakers and other apparatus for protecting electrical circuits, relays and other switches, lamp-holders, plugs and sockets, prefabricated elements for electrical circuits and other connections and contact elements for wire and cables) 01/01/1989 31/12/1994 -85369085 01/01/1995 31/12/2016 LIBEN Electrical apparatus for making connections to or in electrical circuits, for a voltage <= 1.000 V (excl. fuses, circuit breakers and other apparatus for protecting electrical circuits, relays and other switches, lamp holders, plugs and sockets, prefabricated elements for electrical circuits and other connections and contact elements for wire and cables and for wafer probers) 01/01/1995 31/12/2016 -85369090 01/01/1988 31/12/1988 LIBEN Electrical apparatus for switching electrical circuits, or for making connections to or in electrical circuits, for a voltage =< 1 000 v (excl. fuses, automatic circuit breakers and other apparatus for protecting electrical circuits, relays and other switches, lamp-holders, plugs, sockets and connections and contact elements for wire and cables) 01/01/1988 31/12/1988 -85369095 01/01/2017 31/12/2019 LIBEN Electrical apparatus for making connections to or in electrical circuits, for a voltage <= 1.000 V (excl. fuses, circuit breakers and other apparatus for protecting electrical circuits, relays and other switches, lamp holders, plugs and sockets, prefabricated elements for electrical circuits, connections and contact elements for wire and cables, wafer probers and car battery clamps) 01/01/2017 31/12/2019 -85369095 01/01/2020 31/12/2500 LIBEN Electrical apparatus for making connections to or in electrical circuits, for a voltage <= 1.000 V (excl. fuses, circuit breakers and other apparatus for protecting electrical circuits, relays and other switches, lamp holders, plugs and sockets, prefabricated elements for electrical circuits, connections and contact elements for wire and cables, and car battery clamps) 01/01/2020 31/12/2500 -8537 01/01/1988 31/12/2500 LIBEN Boards, panels, consoles, desks, cabinets and other bases, equipped with two or more apparatus of heading 8535 or 8536, for electric control or the distribution of electricity, incl. those incorporating instruments or apparatus of chapter 90, and numerical control apparatus (excl. switching apparatus for line telephony or line telegraphy) 01/01/1988 31/12/2500 -853710 01/01/1988 31/12/2500 LIBEN Boards, cabinets and similar combinations of apparatus for electric control or the distribution of electricity, for a voltage <= 1.000 V 01/01/1988 31/12/2500 -85371010 01/01/1988 31/12/2016 LIBEN Numerical control panels with built-in automatic data-processing machines 01/01/1988 31/12/2016 -85371010 01/01/2017 31/12/2500 LIBEN Numerical control panels with built-in automatic data-processing machines 01/01/2017 31/12/2500 -85371091 01/01/1988 31/12/2016 LIBEN Programmable memory controllers (excl. numerical control panels with built-in automatic data-processing machines) 01/01/1988 31/12/2016 -85371091 01/01/2017 31/12/2500 LIBEN Programmable memory controllers (excl. numerical control panels with built-in automatic data-processing machines) 01/01/2017 31/12/2500 -85371095 01/01/2017 31/12/2500 LIBEN Touch screens for electric control, without display capabilities, for incorporation into apparatus having a display 01/01/2017 31/12/2500 -85371098 01/01/2017 31/12/2500 LIBEN Boards, cabinets and similar combinations of apparatus for electric control or the distribution of electricity, for a voltage <= 1.000 V (excl. switching apparatus for line telephony or line telegraphy, numerical control panels with built-in automatic data-processing machines, programmable memory controllers and touch screens) 01/01/2017 31/12/2500 -85371099 01/01/1988 31/12/2016 LIBEN Boards, cabinets and similar combinations of apparatus for electric control or the distribution of electricity, for a voltage <= 1.000 V (excl. switching apparatus for line telephony or line telegraphy, numerical control panels with built-in automatic data-processing machines and programmable memory controllers) 01/01/1988 31/12/2016 -853720 01/01/1988 31/12/2500 LIBEN Boards, cabinets and similar combinations of apparatus for electric control or the distribution of electricity, for a voltage > 1.000 V 01/01/1988 31/12/2500 -85372010 01/01/1988 31/12/1988 LIBEN Heading not applicable 01/01/1988 31/12/1988 -85372091 01/01/1988 31/12/1988 LIBEN Boards, panels, consoles, desks and other bases (excl. 8537.20-10), equipped with two or more apparatus of heading 85.35 or 85.36, for electric control or the distribution of electricity, including those incorporating instruments or apparatus of chapter 90, (other than switching apparatus of heading 85.17), for a voltage > 1.000 v but =< 72.5 kv 01/01/1988 31/12/1988 -85372091 01/01/1989 31/12/2016 LIBEN Boards, cabinets and similar combinations of apparatus for electric control or the distribution of electricity, for a voltage > 1.000 V but <= 72,5 kV 01/01/1989 31/12/2016 -85372091 01/01/2017 31/12/2500 LIBEN Boards, cabinets and similar combinations of apparatus for electric control or the distribution of electricity, for a voltage > 1.000 V but <= 72,5 kV 01/01/2017 31/12/2500 -85372099 01/01/1988 31/12/2016 LIBEN Boards, cabinets and similar combinations of apparatus for electric control or the distribution of electricity, for a voltage > 72,5 kV 01/01/1988 31/12/2016 -85372099 01/01/2017 31/12/2500 LIBEN Boards, cabinets and similar combinations of apparatus for electric control or the distribution of electricity, for a voltage > 72,5 kV 01/01/2017 31/12/2500 -8537I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8537; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8537I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8537; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8537I4 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8537; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8537I400 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8537; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8538 01/01/1988 31/12/2500 LIBEN Parts suitable for use solely or principally with the apparatus of heading 8535, 8536 or 8537, n.e.s. 01/01/1988 31/12/2500 -853810 01/01/1988 31/12/2500 LIBEN Boards, panels, consoles, desks, cabinets and other bases for the goods of heading 8537, not equipped with their apparatus 01/01/1988 31/12/2500 -85381000 01/01/1988 31/12/2016 LIBEN Boards, panels, consoles, desks, cabinets and other bases for the goods of heading 8537, not equipped with their apparatus 01/01/1988 31/12/2016 -85381000 01/01/2017 31/12/2500 LIBEN Boards, panels, consoles, desks, cabinets and other bases for the goods of heading 8537, not equipped with their apparatus 01/01/2017 31/12/2500 -853890 01/01/1988 31/12/2500 LIBEN Parts suitable for use solely or principally with the apparatus of heading 8535, 8536 or 8537, n.e.s. (excl. boards, panels, consoles, desks, cabinets and other bases for the goods of heading 8537, not equipped with their apparatus) 01/01/1988 31/12/2500 -85389010 01/01/1988 31/12/1997 LIBEN Electronic assemblies for control desks, cabinets and similar combinations of apparatus of heading 8537 01/01/1988 31/12/1997 -85389011 01/01/1998 31/12/2016 LIBEN Electronic assemblies for wafer probers of subheading 8536.90.20 01/01/1998 31/12/2016 -85389011 01/01/2017 31/12/2500 LIBEN Electronic assemblies for wafer probers of subheading 8536.90.20 01/01/2017 31/12/2500 -85389019 01/01/1998 31/12/2016 LIBEN Parts for wafer probers of subheading 8536.90.20, n.e.s. (excl. electronic assemblies) 01/01/1998 31/12/2016 -85389019 01/01/2017 31/12/2500 LIBEN Parts for wafer probers of subheading 8536.90.20, n.e.s. (excl. electronic assemblies) 01/01/2017 31/12/2500 -85389090 01/01/1988 31/12/1997 LIBEN Parts suitable for use soley or principally with the apparatus of headings 8535, 8536 or 8537, n.e.s. 01/01/1988 31/12/1997 -85389091 01/01/1998 31/12/2006 LIBEN Electronic assemblies for electrical apparatus for switching or protecting electrical circuits, or for making connections to or in electrical circuits of heading 8535 or 8536 and for control desks, cabinets and similar combinations of apparatus of heading 8537 (excl. for wafer probers of subheading 8536.90.20) 01/01/1998 31/12/2006 -85389091 01/01/2007 31/12/2016 LIBEN Electronic assemblies for electrical apparatus for switching or protecting electrical circuits, or for making connections to or in electrical circuits of heading 8535 or 8536 and for control desks, cabinets and similar combinations of apparatus of heading 8537 (excl. for wafer probers of subheading 8536.90.20) 01/01/2007 31/12/2016 -85389091 01/01/2017 31/12/2500 LIBEN Electronic assemblies for electrical apparatus for switching or protecting electrical circuits, or for making connections to or in electrical circuits of heading 8535 or 8536 and for control desks, cabinets and similar combinations of apparatus of heading 8537 (excl. for wafer probers of subheading 8536.90.20) 01/01/2017 31/12/2500 -85389099 01/01/1998 31/12/2016 LIBEN Parts suitable for use solely or principally with the apparatus of heading 8535, 8536 or 8537, n.e.s. (excl. electronic assemblies, and boards, panels, consoles, desks, cabinets and other bases for the goods of heading 8537, not equipped with their apparatus, and for wafer probers of subheading 8536.90.20) 01/01/1998 31/12/2016 -85389099 01/01/2017 31/12/2500 LIBEN Parts suitable for use solely or principally with the apparatus of heading 8535, 8536 or 8537, n.e.s. (excl. electronic assemblies, and boards, panels, consoles, desks, cabinets and other bases for the goods of heading 8537, not equipped with their apparatus, and for wafer probers of subheading 8536.90.20) 01/01/2017 31/12/2500 -8539 01/01/1988 31/12/2500 LIBEN Electric filament or discharge lamps, incl. sealed beam lamp units and ultraviolet or infra-red lamps; arc lamps; light-emitting diode "LED" lamps; parts thereof 01/01/1988 31/12/2500 -853910 01/01/1988 31/12/2500 LIBEN Sealed beam lamp units 01/01/1988 31/12/2500 -85391000 01/01/2006 31/12/2500 LIBEN Sealed beam lamp units 01/01/2006 31/12/2500 -85391010 01/01/1988 31/12/2005 LIBEN Sealed beam lamp units, for civil aircraft 01/01/1988 31/12/2005 -85391090 01/01/1988 31/12/2005 LIBEN Sealed beam lamp units (excl. those for civil aircraft of subheading 8539.10.10) 01/01/1988 31/12/2005 -853921 01/01/1988 31/12/2500 LIBEN Tungsten halogen filament lamps (excl. sealed beam lamp units) 01/01/1988 31/12/2500 -85392110 01/01/1988 31/12/1995 LIBEN Tungsten halogen filament lamps for projectors 01/01/1988 31/12/1995 -85392130 01/01/1988 31/12/2500 LIBEN Tungsten halogen filament lamps for motorcycles or other motor vehicles (excl. sealed beam lamp units) 01/01/1988 31/12/2500 -85392191 01/01/1988 31/12/1995 LIBEN Tungsten halogen filament lamps for a voltage > 100 V (excl. those for projectors) 01/01/1988 31/12/1995 -85392192 01/01/1996 31/12/2500 LIBEN Tungsten halogen filament lamps for a voltage > 100 V 01/01/1996 31/12/2500 -85392198 01/01/1996 31/12/2500 LIBEN Tungsten halogen filament lamps for a voltage <= 100 V (excl. those for motorcycles or other motor vehicles) 01/01/1996 31/12/2500 -85392199 01/01/1988 31/12/1995 LIBEN Tungsten halogen filament lamps for a voltage <= 100 V (excl. those for motor-cycles or other motor vehicles) 01/01/1988 31/12/1995 -853922 01/01/1988 31/12/2500 LIBEN Filament lamps of a power <= 200 W and for a voltage > 100 V (excl. tungsten halogen filament lamps and ultraviolet or infra-red lamps) 01/01/1988 31/12/2500 -85392210 01/01/1988 31/12/2500 LIBEN Reflector filament lamps of a power <= 200 W and for a voltage > 100 V (excl. tungsten halogen filament lamps) 01/01/1988 31/12/2500 -85392290 01/01/1988 31/12/2500 LIBEN Filament lamps of a power <= 200 W and for a voltage > 100 V (excl. tungsten halogen lamps, reflector lamps and ultraviolet or infra-red lamps) 01/01/1988 31/12/2500 -853929 01/01/1988 31/12/2500 LIBEN Filament lamps, electric (excl. tungsten halogen lamps, lamps of a power <= 200 W and for a voltage > 100 V and ultraiolet or infra-red lamps) 01/01/1988 31/12/2500 -85392910 01/01/1988 31/12/1995 LIBEN Filament or discharge lamps, for projection (excl. tungsten halogen filament lamps and lamps of a power <= 200 W and for a voltage > 100 V) 01/01/1988 31/12/1995 -85392930 01/01/1996 31/12/2500 LIBEN Filament lamps for motorcycles or other motor vehicles (excl. tungsten halogen lamps) 01/01/1996 31/12/2500 -85392931 01/01/1988 31/12/1995 LIBEN Filament or discharge lamps, for headlights for motor-cycles and other motor vehicles (excl. tungsten halogen filament lamps) 01/01/1988 31/12/1995 -85392939 01/01/1988 31/12/1995 LIBEN Filament or discharge lamps, for motor-cycles and other motor vehicles (excl. those for headlights and tungsten halogen filament lamps) 01/01/1988 31/12/1995 -85392991 01/01/1988 31/12/1995 LIBEN Filament or discharge lamps, for a voltage > 100 V (excl. tungsten halogen filament lamps, lamps of a power <= 200 W, lamps for headlights and ultra-violet or infra-red lamps) 01/01/1988 31/12/1995 -85392992 01/01/1996 31/12/2500 LIBEN Filament lamps for a voltage > 100 V (excl. tungsten halogen lamps, lamps of a power <= 200 W, and ultraviolet or infra-red lamps) 01/01/1996 31/12/2500 -85392998 01/01/1996 31/12/2500 LIBEN Filament lamps for a voltage <= 100 V (excl. tungsten halogen lamps and lamps for motorcycles and other motor vehicles) 01/01/1996 31/12/2500 -85392999 01/01/1988 31/12/1995 LIBEN Filament or discharge lamps, for a voltage <= 100 V (excl. tungsten halogen filament lamps and lamps for motor-cycles and other motor vehicles) 01/01/1988 31/12/1995 -853931 01/01/1988 31/12/2500 LIBEN Discharge lamps, fluorescent, hot cathode 01/01/1988 31/12/2500 -85393110 01/01/1988 31/12/2500 LIBEN Discharge lamps, fluorescent, hot cathode, with double ended cap 01/01/1988 31/12/2500 -85393190 01/01/1988 31/12/2500 LIBEN Discharge lamps, fluorescent, hot cathode (excl. with double ended cap) 01/01/1988 31/12/2500 -853932 01/01/1996 31/12/2500 LIBEN Mercury or sodium vapour lamps; metal halide lamps 01/01/1996 31/12/2500 -85393210 01/01/1996 31/12/2010 LIBEN Mercury vapour lamps 01/01/1996 31/12/2010 -85393220 01/01/2011 31/12/2500 LIBEN Mercury or sodium vapour lamps 01/01/2011 31/12/2500 -85393250 01/01/1996 31/12/2010 LIBEN Sodium vapour lamps 01/01/1996 31/12/2010 -85393290 01/01/1996 31/12/2500 LIBEN Metal halide lamps 01/01/1996 31/12/2500 -853939 01/01/1988 31/12/2500 LIBEN Discharge lamps (excl. hot-cathode fluorescent lamps, mercury or sodium vapour lamps, metal halide lamps and ultraviolet lamps) 01/01/1988 31/12/2500 -85393900 01/01/1996 31/12/2016 LIBEN Discharge lamps (excl. flourescent, hot cathode lamps, mercury or sodium vapour lamps, metal halide lamps and ultraviolet lamps) 01/01/1996 31/12/2016 -85393910 01/01/1988 31/12/1995 LIBEN Dual lamps 01/01/1988 31/12/1995 -85393920 01/01/2017 31/12/2500 LIBEN Cold-cathode fluorescent lamps "CCFLs" for backlighting of flat panel displays 01/01/2017 31/12/2500 -85393930 01/01/1988 31/12/1995 LIBEN Mercury vapour lamps 01/01/1988 31/12/1995 -85393951 01/01/1988 31/12/1995 LIBEN Sodium lamps, with a U-shaped discharge tube 01/01/1988 31/12/1995 -85393959 01/01/1988 31/12/1995 LIBEN Sodium lamps (excl. those with U-shaped discharge tube) 01/01/1988 31/12/1995 -85393980 01/01/2017 31/12/2500 LIBEN Discharge lamps (excl. hot-cathode fluorescent lamps, mercury or sodium vapour lamps, metal halide lamps, ultraviolet lamps, and cold-cathode fluorescent lamps "CCFLs" for backlighting of flat panel displays) 01/01/2017 31/12/2500 -85393990 01/01/1988 31/12/1995 LIBEN Discharge lamps (excl. sodium and mercury lamps, dual lamps, fluorescent, hot-cathode lamps and ultra-voilet lamps) 01/01/1988 31/12/1995 -853940 01/01/1988 31/12/1995 LIBEN Ultra-violet or infra-red lamps; arc lamps 01/01/1988 31/12/1995 -85394010 01/01/1988 31/12/1995 LIBEN Ultra-violet lamps 01/01/1988 31/12/1995 -85394030 01/01/1988 31/12/1995 LIBEN Infra-red lamps 01/01/1988 31/12/1995 -85394090 01/01/1988 31/12/1995 LIBEN Arc lamps 01/01/1988 31/12/1995 -853941 01/01/1996 31/12/2500 LIBEN Arc lamps 01/01/1996 31/12/2500 -85394100 01/01/1996 31/12/2500 LIBEN Arc lamps 01/01/1996 31/12/2500 -853949 01/01/1996 31/12/2500 LIBEN Ultraviolet or infra-red lamps 01/01/1996 31/12/2500 -85394900 01/01/2011 31/12/2500 LIBEN Ultraviolet or infra-red lamps 01/01/2011 31/12/2500 -85394910 01/01/1996 31/12/2010 LIBEN Ultraviolet lamps 01/01/1996 31/12/2010 -85394930 01/01/1996 31/12/2010 LIBEN Infra-red lamps 01/01/1996 31/12/2010 -853950 01/01/2017 31/12/2500 LIBEN Light-emitting diode "LED" lamps 01/01/2017 31/12/2500 -85395000 01/01/2017 31/12/2500 LIBEN Light-emitting diode "LED" lamps 01/01/2017 31/12/2500 -853990 01/01/1988 31/12/2500 LIBEN Parts of electric filament or discharge lamps, sealed beam lamp units, ultraviolet or infra-red lamps, arc lamps and LED lamps, n.e.s. 01/01/1988 31/12/2500 -85399010 01/01/1988 31/12/2500 LIBEN Lamp bases for filament or discharge lamps and other lamps of heading 8539, n.e.s. 01/01/1988 31/12/2500 -85399090 01/01/1988 31/12/2500 LIBEN Parts of electric filament or discharge lamps, sealed beam lamp units, ultraviolet or infra-red lamps, arc lamps and LED lamps, n.e.s. 01/01/1988 31/12/2500 -8539S7 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 8539 and SITC section 7 01/01/1998 31/12/2500 -8539S778 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 8539 and SITC group 778 01/01/1998 31/12/2500 -8540 01/01/1988 31/12/2500 LIBEN Thermionic, cold cathode or photo-cathode valves and tubes, e.g. vacuum or vapour or gas filled valves and tubes, mercury arc rectifying valves and tubes, cathode ray tubes and television camera tubes; parts thereof 01/01/1988 31/12/2500 -854011 01/01/1988 31/12/2500 LIBEN Cathode ray television picture tubes, incl. video monitor cathode ray tubes, colour 01/01/1988 31/12/2500 -85401100 01/01/2011 31/12/2500 LIBEN Cathode ray television picture tubes, incl. video monitor cathode ray tubes, colour 01/01/2011 31/12/2500 -85401110 01/01/1988 31/12/1993 LIBEN Cathode-ray television picture tubes including video monitor cathode-ray tubes, colour, diagonal measurement of the screen =< 42 cm 01/01/1988 31/12/1993 -85401111 01/01/1994 31/12/2010 LIBEN Cathode ray television picture tubes, incl. video monitor cathode ray tubes, colour, with a screen width-to-height ratio of < 1,5 and a diagonal measurement of the screen <= 42 cm 01/01/1994 31/12/2010 -85401113 01/01/1994 31/12/2010 LIBEN Cathode ray television picture tubes, incl. video monitor cathode ray tubes, colour, with a screen width-to-height ratio of < 1,5 and a diagonal measurement of the screen > 42 cm to 52 cm 01/01/1994 31/12/2010 -85401115 01/01/1994 31/12/2010 LIBEN Cathode ray television picture tubes, incl. video monitor cathode ray tubes, colour, with a screen width-to-height ratio of < 1,5 and a diagonal measurement of the screen > 52 cm to 72 cm 01/01/1994 31/12/2010 -85401119 01/01/1994 31/12/2010 LIBEN Cathode ray television picture tubes, incl. video monitor cathode ray tubes, colour, with a screen width-to-height ratio of < 1,5 and a diagonal measurement of the screen > 72 cm 01/01/1994 31/12/2010 -85401130 01/01/1988 31/12/1993 LIBEN Cathode-ray television picture tubes including video monitor cathode-ray tubes, colour, diagonal measurement of the screen > 42 cm but =< 52 cm 01/01/1988 31/12/1993 -85401150 01/01/1990 31/12/1993 LIBEN Cathode-ray television picture tubes including video monitor cathode-ray tubes, colour, diagonal measurement of the screen > 52 cm but =< 72 cm 01/01/1990 31/12/1993 -85401170 01/01/1999 31/12/1999 LIBEN Cathode-ray television picture tubes incl. video monitor cathode-ray tubes, colour, with a screen width-to-height ratio of >= 1,5 01/01/1999 31/12/1999 -85401180 01/01/1990 31/12/1993 LIBEN Cathode-ray television picture tubes including video monitor cathode-ray tubes, colour, diagonal measurement of the screen > 72 cm 01/01/1990 31/12/1993 -85401190 01/01/1988 31/12/1989 LIBEN Cathode-ray television picture tubes including video monitor cathode-ray tubes, colour, diagonal measurement of the screen > 52 cm 01/01/1988 31/12/1989 -85401191 01/01/1994 31/12/1998 LIBEN Cathode-ray television picture tubes incl. video monitor cathode-ray tubes, colour, with a screen width-to-height ratio of >= 1,5 and a diagonal measurement of the screen <= 75 cm 01/01/1994 31/12/1998 -85401191 01/01/2000 31/12/2010 LIBEN Cathode ray television picture tubes, incl. video monitor cathode ray tubes, colour, with a screen width-to-height ratio of >= 1,5 and a diagonal measurement of the screen <= 75 cm 01/01/2000 31/12/2010 -85401199 01/01/1994 31/12/1998 LIBEN Cathode-ray television picture tubes incl. video monitor cathode-ray tubes, colour, with a screen width-to-height ratio of >= 1,5 and a diagonal measurement of the screen > 75 cm 01/01/1994 31/12/1998 -85401199 01/01/2000 31/12/2010 LIBEN Cathode ray television picture tubes, incl. video monitor cathode ray tubes, colour, with a screen width-to-height ratio of >= 1,5 and a diagonal measurement of the screen > 75 cm 01/01/2000 31/12/2010 -854012 01/01/1988 31/12/2500 LIBEN Cathode ray television picture tubes, incl. video monitor cathode ray tubes, black and white or other monochrome, with a screen width-to-height ratio of < 1,5 and a diagonal measurement of the screen > 72 cm 01/01/1988 31/12/2500 -85401200 01/01/1994 31/12/2500 LIBEN Cathode ray television picture tubes, incl. video monitor cathode ray tubes, black and white or other monochrome, with a screen width-to-height ratio of < 1,5 and a diagonal measurement of the screen > 72 cm 01/01/1994 31/12/2500 -85401210 01/01/1988 31/12/1993 LIBEN Cathode-ray television picture tubes including video monitor cathode-ray tubes, monochrome, diagonal measurement of the screen =< 42 cm 01/01/1988 31/12/1993 -85401230 01/01/1988 31/12/1993 LIBEN Cathode-ray television picture tubes including video monitor cathode-ray tubes, monochrome, diagonal measurement of the screen > 42 cm but =< 52 cm 01/01/1988 31/12/1993 -85401290 01/01/1988 31/12/1993 LIBEN Cathode-ray television picture tubes including video monitor cathode-ray tubes, monochrome, diagonal measurement of the screen > 52 cm 01/01/1988 31/12/1993 -854020 01/01/1988 31/12/2500 LIBEN Television camera tubes; image converters and intensifiers; other photo cathode tubes (excl. cathode ray television picture tubes incl. video monitor cathode ray tubes) 01/01/1988 31/12/2500 -85402010 01/01/1988 31/12/2500 LIBEN Television camera tubes 01/01/1988 31/12/2500 -85402030 01/01/1988 31/12/1998 LIBEN Image converters or intensifiers 01/01/1988 31/12/1998 -85402080 01/01/1999 31/12/2500 LIBEN Image converters and intensifiers and other photo cathode tubes (excl. television camera tubes and cathode ray television picture tubes, incl. video monitor cathode ray tubes) 01/01/1999 31/12/2500 -85402090 01/01/1988 31/12/1998 LIBEN Photo-cathode tubes (excl. television camera tubes, image converters or intensifiers and cathode-ray television picture tubes incl. video monitor cathode-ray tubes) 01/01/1988 31/12/1998 -854030 01/01/1988 31/12/1995 LIBEN Cathode-ray tubes (excl. cathode-ray television picture tubes incl. video monitor cathode-ray tubes, television camera tubes, image converters or intensifiers and other photo-cathode tubes) 01/01/1988 31/12/1995 -85403000 01/01/1988 31/12/1989 LIBEN Cathode-ray tubes (excl. cathode-ray television picture tubes incl. video monitor cathode-ray tubes, television camera tubes, image converters or intensifiers and other photo-cathode tubes) 01/01/1988 31/12/1989 -85403010 01/01/1990 31/12/1995 LIBEN Cathode-ray tubes (excl. 8540.20.10 to 8540.20.90), colour 01/01/1990 31/12/1995 -85403090 01/01/1990 31/12/1995 LIBEN Cathode-ray tubes (excl. 8540.20.10 to 8540.20.90), monochrome 01/01/1990 31/12/1995 -854040 01/01/1996 31/12/2500 LIBEN Data/graphic display tubes, monochrome; data/graphic display tubes, colour, with a phosphor dot screen pitch of < 0,4 mm (excl. photo cathode tubes and cathode ray tubes) 01/01/1996 31/12/2500 -85404000 01/01/1996 31/12/2011 LIBEN Data-graphic display tubes, colour, with a phosphor dot screen pitch of < 0,4 mm (excl. photo cathode tubes and cathode ray tubes) 01/01/1996 31/12/2011 -85404000 01/01/2012 31/12/2500 LIBEN Data/graphic display tubes, monochrome; data/graphic display tubes, colour, with a phosphor dot screen pitch of < 0,4 mm (excl. photo cathode tubes and cathode ray tubes) 01/01/2012 31/12/2500 -854041 01/01/1988 31/12/1995 LIBEN Magnetrons 01/01/1988 31/12/1995 -85404100 01/01/1988 31/12/1995 LIBEN Magnetrons 01/01/1988 31/12/1995 -854042 01/01/1988 31/12/1995 LIBEN Klystrons 01/01/1988 31/12/1995 -85404200 01/01/1988 31/12/1995 LIBEN Klystrons 01/01/1988 31/12/1995 -854049 01/01/1988 31/12/1995 LIBEN Microwave tubes, e.g. travelling wave tubes and carcinotrons (excl. magnetrons, klystrons and grid-controlled tubes) 01/01/1988 31/12/1995 -85404900 01/01/1988 31/12/1995 LIBEN Microwave tubes, e.g. travelling wave tubes and carcinotrons (excl. magnetrons, klystrons and grid-controlled tubes) 01/01/1988 31/12/1995 -854050 01/01/1996 31/12/2011 LIBEN Data-graphic display tubes, black and white or other monochrome (excl. photo cathode tubes and cathode ray tubes) 01/01/1996 31/12/2011 -85405000 01/01/1996 31/12/2011 LIBEN Data-graphic display tubes, black and white or other monochrome (excl. photo cathode tubes and cathode ray tubes) 01/01/1996 31/12/2011 -854060 01/01/1996 31/12/2500 LIBEN Cathoderay tubes (excl. television and video-monitor cathoderay tubes, television camera tubes, image converters or intensifiers, other photo-cathode tubes, black and white or other monochrome data-graphic display tubes and colour data-graphic display tubes with a phosphor dot screen pitch of < 0,4 mm) 01/01/1996 31/12/2500 -85406000 01/01/1996 31/12/2500 LIBEN Cathoderay tubes (excl. television and video-monitor cathoderay tubes, television camera tubes, image converters or intensifiers, other photo-cathode tubes, black and white or other monochrome data-graphic display tubes and colour data-graphic display tubes with a phosphor dot screen pitch of < 0,4 mm) 01/01/1996 31/12/2500 -854071 01/01/1996 31/12/2500 LIBEN Magnetrons 01/01/1996 31/12/2500 -85407100 01/01/1996 31/12/2500 LIBEN Magnetrons 01/01/1996 31/12/2500 -854072 01/01/1996 31/12/2011 LIBEN Klystrons 01/01/1996 31/12/2011 -85407200 01/01/1996 31/12/2011 LIBEN Klystrons 01/01/1996 31/12/2011 -854079 01/01/1996 31/12/2500 LIBEN Microwave tubes, e.g. travelling wave tubes and carcinotrons (excl. magnetrons and grid-controlled tubes) 01/01/1996 31/12/2500 -85407900 01/01/1996 31/12/2011 LIBEN Microwave tubes, e.g. travelling wave tubes and carcinotrons (excl. magnetrons, klystrons and grid-controlled tubes) 01/01/1996 31/12/2011 -85407900 01/01/2012 31/12/2500 LIBEN Microwave tubes, e.g. travelling wave tubes and carcinotrons (excl. magnetrons and grid-controlled tubes) 01/01/2012 31/12/2500 -854081 01/01/1988 31/12/2500 LIBEN Receiver or amplifier valves and tubes (excl. microwave tubes, photo-cathode tubes and cathode ray tubes) 01/01/1988 31/12/2500 -85408100 01/01/1988 31/12/2500 LIBEN Receiver or amplifier valves and tubes (excl. microwave tubes, photo-cathode tubes and cathode ray tubes) 01/01/1988 31/12/2500 -854089 01/01/1988 31/12/2500 LIBEN Electronic valves and tubes (excl. receiver or amplifier valves and tubes, microwave tubes, photo-cathode tubes, cathode ray tubes, black and white or other monochrome data-graphic display tubes and colour data-graphic display tubes with a phosphor dot screen pitch of < 0,4 mm) 01/01/1988 31/12/2500 -85408900 01/01/1999 31/12/2500 LIBEN Electronic valves and tubes (excl. receiver or amplifier valves and tubes, microwave tubes, photo-cathode tubes, cathode ray tubes, black and white or other monochrome data-graphic display tubes and colour data-graphic display tubes with a phosphor dot screen pitch of < 0,4 mm) 01/01/1999 31/12/2500 -85408911 01/01/1988 31/12/1998 LIBEN Vacuum fluorescent display tubes (excl. photo-cathode tubes and cathode-ray tubes) 01/01/1988 31/12/1998 -85408919 01/01/1988 31/12/1998 LIBEN Display tubes (excl. vacuum fluorescent, photo-cathode tubes and cathode-ray tubes) 01/01/1988 31/12/1998 -85408990 01/01/1988 31/12/1998 LIBEN Electronic lamps, tubes and valves (excl. display tubes, receiver or amplifier valves and tubes, microwave tubes, photo-cathode tubes and cathode-ray tubes) 01/01/1988 31/12/1998 -854091 01/01/1988 31/12/2500 LIBEN Parts of cathode ray tubes, n.e.s. 01/01/1988 31/12/2500 -85409100 01/01/1988 31/12/2500 LIBEN Parts of cathode ray tubes, n.e.s. 01/01/1988 31/12/2500 -854099 01/01/1988 31/12/2500 LIBEN Parts of thermionic, cold cathode or photo cathode valves and tubes, n.e.s. (excl. parts of cathode ray tubes) 01/01/1988 31/12/2500 -85409900 01/01/1988 31/12/2500 LIBEN Parts of thermionic, cold cathode or photo cathode valves and tubes, n.e.s. (excl. parts of cathode ray tubes) 01/01/1988 31/12/2500 -8541 01/01/1988 31/12/2500 LIBEN Diodes, transistors and similar semiconductor devices; photosensitive semiconductor devices, incl. photovoltaic cells whether or not assembled in modules or made up into panels (excl. photovotaic generators); light emitting diodes "LED"; mounted piezoelectric crystals; parts thereof 01/01/1988 31/12/2500 -854110 01/01/1988 31/12/2500 LIBEN Diodes (excl. photosensitive or light emitting diodes "LED") 01/01/1988 31/12/2500 -85411000 01/01/1999 31/12/2500 LIBEN Diodes (excl. photosensitive or light emitting diodes "LED") 01/01/1999 31/12/2500 -85411010 01/01/1988 31/12/1998 LIBEN Diodes other than photosensitive or light emitting diodes in wafers not yet cut into chips 01/01/1988 31/12/1998 -85411091 01/01/1988 31/12/1998 LIBEN Power rectifier diodes (excl. diodes in wafers not yet cut into chips) 01/01/1988 31/12/1998 -85411099 01/01/1988 31/12/1998 LIBEN Diodes other than photosensitive or light emitting diodes (excl. diodes in wafers not yet cut into chips and power rectifier diodes) 01/01/1988 31/12/1998 -854121 01/01/1988 31/12/2500 LIBEN Transistors with a dissipation rate < 1 W (excl. photosensitive transistors) 01/01/1988 31/12/2500 -85412100 01/01/1999 31/12/2500 LIBEN Transistors with a dissipation rate < 1 W (excl. photosensitive transistors) 01/01/1999 31/12/2500 -85412110 01/01/1988 31/12/1998 LIBEN Transistors other than photosensitive transistors, with a dissipation rate < 1 W, in wafers not yet cut into chips 01/01/1988 31/12/1998 -85412190 01/01/1988 31/12/1998 LIBEN Transistors other than photosensitive transistors, with a dissipation rate < 1 W (excl. those in wafers not yet cut into chips) 01/01/1988 31/12/1998 -854129 01/01/1988 31/12/2500 LIBEN Transistors with a dissipation rate >= 1 W (excl. photosensitive transistors) 01/01/1988 31/12/2500 -85412900 01/01/1999 31/12/2500 LIBEN Transistors with a dissipation rate >= 1 W (excl. photosensitive transistors) 01/01/1999 31/12/2500 -85412910 01/01/1988 31/12/1998 LIBEN Transistors other than photosensitive transistors, with a dissipation rate >= 1 W, in wafers not yet cut into chips 01/01/1988 31/12/1998 -85412920 01/01/1995 31/12/1998 LIBEN Power MOS field effective transistors with a dissipation rate of 1 W or more 01/01/1995 31/12/1998 -85412930 01/01/1995 31/12/1998 LIBEN Insulated gate bipolar transistors (IGBTs) with a dissipation rate of 1 W or more 01/01/1995 31/12/1998 -85412980 01/01/1995 31/12/1998 LIBEN Transistors (excl. photosensitive transistors) with a dissipation rate of 1 W or more (excl. those in wafer form, not yet cut into chips, power MOS field effective transistors and insulated gate bipolar transistors IGBTs)) 01/01/1995 31/12/1998 -85412990 01/01/1988 31/12/1994 LIBEN Transistors other than photosensitive transistors, with a dissipation rate >= 1 w (excl. those in wafers not yet cut into chips) 01/01/1988 31/12/1994 -854130 01/01/1988 31/12/2500 LIBEN Thyristors, diacs and triacs (excl. photosensitive semiconductor devices) 01/01/1988 31/12/2500 -85413000 01/01/1999 31/12/2500 LIBEN Thyristors, diacs and triacs (excl. photosensitive semiconductor devices) 01/01/1999 31/12/2500 -85413010 01/01/1988 31/12/1998 LIBEN Thyristors, diacs and triacs, in wafers not yet cut into chips (excl. photosensitive semiconductor devices) 01/01/1988 31/12/1998 -85413090 01/01/1988 31/12/1998 LIBEN Thyristors, diacs and triacs (excl. those in wafers not yet cut into chips and photosensitive semiconductor devices) 01/01/1988 31/12/1998 -854140 01/01/1988 31/12/2500 LIBEN Photosensitive semiconductor devices, incl. photovoltaic cells whether or not assembled in modules or made up into panels; light emitting diodes (excl. photovoltaic generators) 01/01/1988 31/12/2500 -85414010 01/01/1988 31/12/1994 LIBEN Light emitting diodes 01/01/1988 31/12/1994 -85414010 01/01/1999 31/12/2500 LIBEN Light-emitting diodes, incl. laser diodes 01/01/1999 31/12/2500 -85414011 01/01/1995 31/12/1998 LIBEN Laser diodes 01/01/1995 31/12/1998 -85414019 01/01/1995 31/12/1998 LIBEN Light-emitting diodes (excl. laser diodes) 01/01/1995 31/12/1998 -85414090 01/01/1999 31/12/2500 LIBEN Photosensitive semiconductor devices, incl. photovoltaic cells 01/01/1999 31/12/2500 -85414091 01/01/1988 31/12/1998 LIBEN Solar cells whether or not assembled in modules or made up into panels (excl. photovoltaic generators) 01/01/1988 31/12/1998 -85414093 01/01/1988 31/12/1998 LIBEN Photodiodes, phototransistors, photothyristors or photocouples (excl. solar cells) 01/01/1988 31/12/1998 -85414099 01/01/1988 31/12/1998 LIBEN Photosensitive semiconductor devices (excl. photodiodes, phototransistors, photothyristors, photocouples and solar cells) 01/01/1988 31/12/1998 -854150 01/01/1988 31/12/2500 LIBEN Semiconductor devices, n.e.s. 01/01/1988 31/12/2500 -85415000 01/01/1999 31/12/2500 LIBEN Semiconductor devices, n.e.s. 01/01/1999 31/12/2500 -85415010 01/01/1988 31/12/1998 LIBEN Semiconductor devices n.e.s., in wafers not yet cut into chips 01/01/1988 31/12/1998 -85415090 01/01/1988 31/12/1998 LIBEN Semiconductor devices n.e.s. 01/01/1988 31/12/1998 -854160 01/01/1988 31/12/2500 LIBEN Mounted piezoelectric crystals 01/01/1988 31/12/2500 -85416000 01/01/1988 31/12/2500 LIBEN Mounted piezoelectric crystals 01/01/1988 31/12/2500 -854190 01/01/1988 31/12/2500 LIBEN Parts of diodes, transistors and similar semiconductor devices; photosensitive semiconductor devices, light emitting diodes and mounted piezoelectric crystals, n.e.s. 01/01/1988 31/12/2500 -85419000 01/01/1988 31/12/2500 LIBEN Parts of diodes, transistors and similar semiconductor devices; photosensitive semiconductor devices, light emitting diodes and mounted piezoelectric crystals, n.e.s. 01/01/1988 31/12/2500 -8541S7 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 8541 and SITC section 7 01/01/2001 31/12/2500 -8541S776 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 8541 and SITC group 776 01/01/2001 31/12/2500 -8542 01/01/1988 31/12/2500 LIBEN Electronic integrated circuits; parts thereof 01/01/1988 31/12/2500 -854210 01/01/2002 31/12/2006 LIBEN Cards incorporating an electronic integrated circuit "smart cards", whether or not with a magnetic stripe 01/01/2002 31/12/2006 -85421000 01/01/2002 31/12/2006 LIBEN Cards incorporating an electronic integrated circuit "smart cards", whether or not with a magnetic stripe 01/01/2002 31/12/2006 -854211 01/01/1988 31/12/1995 LIBEN Electronic integrated circuits, monolithic, digital 01/01/1988 31/12/1995 -85421101 01/01/1992 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, incl. BIMOS, in wafers not yet cut into chips 01/01/1992 31/12/1995 -85421105 01/01/1992 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, incl. BIMOS, in the form of chips 01/01/1992 31/12/1995 -85421110 01/01/1988 31/12/1991 LIBEN Electronic integrated circuits, monolithic, digital, in wafers not yet cut into chips 01/01/1988 31/12/1991 -85421112 01/01/1992 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, incl. BIMOS, as dynamic random-access memories "D-RAMs", with a storage capacity of <= 256 Kbit (excl. wafers or chips) 01/01/1992 31/12/1995 -85421114 01/01/1992 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, incl. BIMOS, as dynamic random-access memories "D-RAMs", with a storage capacity of > 256 Kbit and <= 1 Mbit (excl. wafers or chips) 01/01/1992 31/12/1995 -85421116 01/01/1992 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, incl. BIMOS, as dynamic random-access memories "D-RAMs", with a storage capacity of > 1 Mbit and <= 4 Mbit (excl. wafers or chips) 01/01/1992 31/12/1995 -85421118 01/01/1992 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, incl. BIMOS, as dynamic random-access memories "D-RAMs", with a storage capacity of > 4 Mbit (excl. wafers or chips) 01/01/1992 31/12/1995 -85421121 01/01/1992 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as static random access memories (static RAM) incl. cache random-access memories (cache-RAMs) with a storage capacity <= 64 Kbit (excl. in wafer or chip form) 01/01/1992 31/12/1995 -85421123 01/01/1992 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as static random access memories (static RAM) incl. cache random-access memories (cache-RAMs) with a storage capacity > 64 Kbit but <= 256 Kbit (excl. in wafer or chip form) 01/01/1992 31/12/1995 -85421125 01/01/1992 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as static random access memories (static RAM) incl. cache random-access memories (cache-RAMs) with a storage capacity > 256 Kbit but <= 1 Mbit (excl. in wafer or chip form) 01/01/1992 31/12/1995 -85421127 01/01/1992 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as static random access memories (static RAM) incl. cache random-access memories (cache-RAMs) with a storage capacity > 1 Mbit (excl. in wafer or chip form) 01/01/1992 31/12/1995 -85421130 01/01/1988 31/12/1991 LIBEN Electronic integrated circuits, monolithic, digital, in the form of chips 01/01/1988 31/12/1991 -85421131 01/01/1992 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, incl. BIMOS, with read-only memories, non-programmable "ROMs" (excl. wafers or chips) 01/01/1992 31/12/1995 -85421133 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as UV erasable, programmable, read-only memories (EPROMs) with a storage capacity <= 256 Kbit (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421134 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as UV erasable, programmable, read-only memories (EPROMs), with a storage capacity > 256 Kbit but <= 1 Mbit (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421135 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as UV erasable, programmable, read-only memories (EPROMs), with a storage capacity > 1 Mbit but <= 4 Mbit (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421136 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as UV erasable, programmable read-only memories (EPROMs), with a storage capacity > 4 Mbit (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421138 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as electrically erasable, programmable read-only memories (E2PROMs) or FLASH E2PROMs (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421140 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, content addressable memories (CAMs), first-in/first-out read/write memories (FIFOs), last-in/first-out read/write memories (LIFOs) and ferroelectric memories (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421141 01/01/1990 31/12/1991 LIBEN Dynamic random-access memories 'd-rams', storage capacity =< 256 kbits 01/01/1990 31/12/1991 -85421141 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuis, digital, of MOS type, as memories (excl. in wafer or chip form), RAMs, cache-RAMs, ROMs, EPROMs, FLASH E2PROMs, E2PROMS, CAMs, FIFOs, LIFOs and ferroelectric memories) 01/01/1995 31/12/1995 -85421142 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, uv-erasable, programmable, read-only memories 'e²proms', or flash e²proms, with a storage capacity of <= 256 kbit (excl. wafers or chips) 01/01/1992 31/12/1994 -85421143 01/01/1990 31/12/1991 LIBEN Dynamic random-access memories 'd-rams', storage capacity > 256 kbits but =< 4 mbits 01/01/1990 31/12/1991 -85421143 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as microprocessors, with a processing capacity <= 8 bits (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421144 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, uv-erasable, programmable, read-only memories 'e²proms', or flash e²proms, with a storage capacity of > 256 kbit and <= 1 mbit (excl. wafers or chips) 01/01/1992 31/12/1994 -85421145 01/01/1990 31/12/1991 LIBEN Dynamic random-access memories 'd-rams', storage capacity > 4 mbits 01/01/1990 31/12/1991 -85421145 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as microprocessors, with a processing capacity > 8 bits but <= 16 bits (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421146 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, uv-erasable, programmable, read-only memories 'e²proms', or flash e²proms, with a storage capacity of > 1 mbit and <= 4 mbit (excl. wafers or chips) 01/01/1992 31/12/1994 -85421147 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as microprocessors, with a processing capacity > 16 bits but <= 32 bits (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421148 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, uv-erasable, programmable, read-only memories 'e²proms', or flash e²proms, with a storage capacity of > 4 mbit (excl. wafers or chips) 01/01/1992 31/12/1994 -85421149 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as microprocessors, with a processing capacity > 32 bits (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421150 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, electrically erasable, programmable, read-only memories 'e²proms', or flash e²proms (excl. wafers or chips and flash e²proms) 01/01/1992 31/12/1994 -85421151 01/01/1990 31/12/1991 LIBEN Static random-access memories 's-rams', storage capacity =< 64 kbits 01/01/1990 31/12/1991 -85421151 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as microcontrollers and microcomputers, with a processing capacity <= 4 bits (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421152 01/01/1990 31/12/1991 LIBEN Static random-access memories 's-rams', storage capacity > 64 kbits but =< 256 kbits 01/01/1990 31/12/1991 -85421152 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as microcontrollers and microcomputers, with a processing capacity > 4 bits but <= 8 bits (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421153 01/01/1990 31/12/1991 LIBEN Static random-access memories 's-rams', storage capacity > 256 kbits =< 1 mbit 01/01/1990 31/12/1991 -85421153 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as microcontrollers and microcomputers, with a processing capacity > 8 bits but <= 16 bits (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421154 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as microcontrollers and microcomputers, with a processing capacity > 16 bits but <= 32 bits (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421155 01/01/1990 31/12/1991 LIBEN Static random-access memories 's-rams', storage capacity > 1 mbit 01/01/1990 31/12/1991 -85421155 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as microcontrollers and microcomputers, with a processing capacity > 32 bits (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421156 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as microperipherals (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421157 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as full custom logic circuits (excl. in wafer or chip form and microperipherals) 01/01/1995 31/12/1995 -85421158 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as gate arrays (excl. in wafer or chip form and microperipherals) 01/01/1995 31/12/1995 -85421159 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, memories (excl. wafers or chips, rams, roms, e²proms, flash e²proms and e²proms) 01/01/1992 31/12/1994 -85421160 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as standard cells (excl. in wafer or chip form and microperipherals) 01/01/1995 31/12/1995 -85421161 01/01/1990 31/12/1991 LIBEN Read only memories, non-programmable 'roms' 01/01/1990 31/12/1991 -85421161 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as programmable logic circuits (excl. in wafer or chip form and microperipherals) 01/01/1995 31/12/1995 -85421162 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, microprocessors, with a processing capacity of <= 8 bit (excl. wafers or chips) 01/01/1992 31/12/1994 -85421163 01/01/1990 31/12/1991 LIBEN Uv erasable, programmable, read only memories 'e²proms', storage capacity =< 256 kbits 01/01/1990 31/12/1991 -85421163 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as standard logic circuits (excl. in wafer or chip form and microperipherals) 01/01/1995 31/12/1995 -85421164 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, microprocessors, with a processing capacity of > 8 bit and <= 16 bit (excl. wafers or chips) 01/01/1992 31/12/1994 -85421165 01/01/1990 31/12/1991 LIBEN Uv erasable, programmable, read only memories 'e²proms', storage capacity > 256 kbits but =< 1 mbit 01/01/1990 31/12/1991 -85421165 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as control circuits (excl. in wafers or in the form of chips, microprocessors, microcontrollers, microcomputers, microperipherals and full custom logic circuits) 01/01/1995 31/12/1995 -85421166 01/01/1990 31/12/1991 LIBEN Uv erasable, programmable, read only memories 'e²proms', storage capacity > 1 mbit 01/01/1990 31/12/1991 -85421166 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as interface circuits or interface circuits capable of performing control functions (excl. in wafers or in the form of chips, microprocessors, microcontrollers, microcomputers, microperipherals, full custom logic circuits and circuits only capable of performing control functions) 01/01/1995 31/12/1995 -85421167 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, microprocessors, with a processing capacity of > 18 bit and <= 32 bit (excl. wafers or chips) 01/01/1992 31/12/1994 -85421168 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, microprocessors, with a processing capacity of > 32 bit (excl. wafers or chips) 01/01/1992 31/12/1994 -85421169 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, of MOS type, as interface circuits or interface circuits capable of performing control functions (excl. in wafers or in the form of chips, memories, microprocessors, microcontrollers, microcomputers, microperipherals, full custom logic circuits, gate arrays, standard cells, programmable logic circuits, standard logic circuits, control circuits and interface circuits) 01/01/1995 31/12/1995 -85421170 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type, in wafers, not yet cut into chips 01/01/1995 31/12/1995 -85421171 01/01/1988 31/12/1989 LIBEN Electronic memories, monolithic, digital (excl. those in the form of chips or in wafers) 01/01/1988 31/12/1989 -85421171 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, microprocessors, with a processing capacity of <= 8 bit (excl. wafers or chips) 01/01/1992 31/12/1994 -85421171 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type, in chip form 01/01/1995 31/12/1995 -85421172 01/01/1990 31/12/1991 LIBEN Electrically erasable, programmable, read only memories 'ee²proms' 01/01/1990 31/12/1991 -85421172 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type, as dynamic random access memories (dynamic RAMs) (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421173 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, microcontrollers, incl. microcomputers, with a processing capacity of > 8 bit and <= 16 bit (excl. wafers or chips) 01/01/1992 31/12/1994 -85421173 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type, as static random access memories (static RAMs), incl. static cache-RAMs, non-programmable read-only memories (ROMs), content addressable memories (CAMs), first-in/first-out random-access memories (FIFOs) or last-in/first-out random-access memories (LIFOs) or ferroelectric memories 01/01/1995 31/12/1995 -85421174 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, microcontrollers, incl. microcomputers, with a processing capacity of > 16 bit and <= 32 bit (excl. wafers or chips) 01/01/1992 31/12/1994 -85421175 01/01/1988 31/12/1989 LIBEN Electronic microprocessors and single chip micro-computers, monolithic, digital (excl. those in the form of chips or in wafers) 01/01/1988 31/12/1989 -85421175 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, microcontrollers, incl. microcomputers, with a processing capacity of > 32 bit (excl. wafers or chips) 01/01/1992 31/12/1994 -85421175 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type, as electrically erasable, programmable read-only memories (E2PROMs), incl. FLASH E2PROMs (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421176 01/01/1990 31/12/1991 LIBEN Electronic memories, monolithic, digital (excl. 8542.11-41 to 8542.11-72) 01/01/1990 31/12/1991 -85421176 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type, as memories (excl. in wafer or chip form, RAMs, cache-RAMs, FIFOs, LIFOs, ferroelectric memories, E2PROMS and FLASH E2PROMs) 01/01/1995 31/12/1995 -85421177 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, gate arrays (excl. wafers or chips) 01/01/1992 31/12/1994 -85421177 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type, as microprocessors (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421178 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type, as microcontrollers and microcomputers, with a processing capacity <= 4 bits (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421179 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, standard cells (excl. wafers or chips) 01/01/1992 31/12/1994 -85421180 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, programmable logic devices (excl. wafers or chips) 01/01/1992 31/12/1994 -85421181 01/01/1990 31/12/1991 LIBEN Microcomputers and microprocessors, monolithic, digital, processing capacity =< 8 bits 01/01/1990 31/12/1991 -85421181 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type, as microcontrollers and microcomputers, with a processing capacity > 4 bits (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421182 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, control circuits (excl. wafers, chips, microprocessors, microcontrollers and microcomputers) 01/01/1992 31/12/1994 -85421183 01/01/1990 31/12/1991 LIBEN Microcomputers and microprocessors, monolithic, digital, processing capacity > 8 bits but =< 16 bits 01/01/1990 31/12/1991 -85421183 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type, as microperipherals (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421184 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos, interface circuits or interface circuits capable of performing control functions (excl. wafers, chips, microprocessors, microcontrollers, microcomputers and control circuits) 01/01/1992 31/12/1994 -85421185 01/01/1990 31/12/1991 LIBEN Microcomputers and microprocessors, monolithic, digital, processing capacity > 16 bits but =< 32 bits 01/01/1990 31/12/1991 -85421185 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type, as full custom logic circuits (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421186 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, of mos type, incl. bimos (excl. wafers, chips, microprocessors, microcontrollers, microcomputers, gate arrays, standard cells, programmable logic devices, control circuits and interface circuits, incl. interface circuits capable of performing control functions) 01/01/1992 31/12/1994 -85421187 01/01/1990 31/12/1991 LIBEN Microcomputers and microprocessors, monolithic, digital, processing capacity > 32 bits 01/01/1990 31/12/1991 -85421187 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type, as gate arrays (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421188 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, not mos or bimos type, in wafers, not yet cut into chips 01/01/1992 31/12/1994 -85421189 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, not mos or bimos type, in the form of chips 01/01/1992 31/12/1994 -85421190 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, not mos or bimos type, memories (excl. wafers or chips) 01/01/1992 31/12/1994 -85421191 01/01/1988 31/12/1990 LIBEN Electronic logic circuits, control circuits and interface circuits, monolithic, digital (excl. those in the form of chips or in wafers) 01/01/1988 31/12/1990 -85421191 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, not mos or bimos type, microprocessors, microcontrollers or microcomputers (excl. wafers or chips) 01/01/1992 31/12/1994 -85421192 01/01/1991 31/12/1991 LIBEN Electronic control circuits, monolithic, digital 01/01/1991 31/12/1991 -85421192 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type, as standard cells (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421193 01/01/1991 31/12/1991 LIBEN Electronic interface circuits and interface circuits capable of performing control functions, monolithic, digital 01/01/1991 31/12/1991 -85421193 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type, as programmable logic circuits (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421194 01/01/1991 31/12/1991 LIBEN Electronic logic circuits, (excl. control circuits and interface circuits), monolithic, digital 01/01/1991 31/12/1991 -85421194 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type, as standard logic circuits (excl. in wafer or chip form and microperipherals) 01/01/1995 31/12/1995 -85421195 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, not mos or bimos type, logic circuits, control circuits or interface circuits (excl. wafers, chips, microprocessors, microcontrollers and microcomputers) 01/01/1992 31/12/1994 -85421196 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type, as control circuits (excl. in wafer or chip form, microprocessors, microcontrollers, microcomputers, microperipherals and full custom logic circuits) 01/01/1995 31/12/1995 -85421197 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type, as interface circuits or interface circuits capable of performing control functions (excl. in wafer or chip form, microprocessors, microcontrollers, microcomputers, microperipherals, full custom logic circuits and circuits only capable of performing control functions) 01/01/1995 31/12/1995 -85421198 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, digital, not mos or bimos type (excl. wafers, chips, memories, microprocessors, microcontrollers, microcomputers, logic circuits, control circuits and interface circuits) 01/01/1992 31/12/1994 -85421199 01/01/1988 31/12/1991 LIBEN Electronic integrated circuits, monolithic, digital (excl. those in the form of chips or in wafers, memories, microprocessors, single chip micro-computers, logic circuits, control circuits and interface circuits) 01/01/1988 31/12/1991 -85421199 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital, not of MOS type (excl. in wafer or chip form, memories, microprocessors, microcontrollers, microcomputers, microperipherals, full custom logic circuits, gate arrays, standard cells, programmable logic circuits, standard logic circuits, control circuits and interface circuits) 01/01/1995 31/12/1995 -854212 01/01/1996 31/12/2001 LIBEN Cards incorporating an electronic monolithic digital integrated circuit "smart cards" 01/01/1996 31/12/2001 -85421200 01/01/1996 31/12/2001 LIBEN Cards incorporating an electronic monolithic digital integrated circuit "smart cards" 01/01/1996 31/12/2001 -854213 01/01/1996 31/12/2001 LIBEN Monolithic digital integrated circuits as metal oxide semiconductor circuits, of MOS type (excl. cards incorporating an electronic integrated circuit [smart cards]) 01/01/1996 31/12/2001 -85421301 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type, in wafers not yet cut into chips 01/01/1996 31/12/2001 -85421305 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type, in the form of chips 01/01/1996 31/12/2001 -85421311 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type, as dynamic random-access memories "D-RAMs", with a storage capacity of <= 4 Mbit (excl. in wafer or chip form) 01/01/1996 31/12/2001 -85421313 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type, as dynamic random-access memories "D-RAMs", with a storage capacity of > 4 Mbit but <= 16 Mbit (excl. in wafer or chip form) 01/01/1996 31/12/2001 -85421315 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type, as dynamic random-access memories "D-RAMs", with a storage capacity of > 16 Mbit but <= 64 Mbit (excl. in wafer or chip form) 01/01/1996 31/12/2001 -85421317 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type, as dynamic random-access memories "D-RAMs", with a storage capacity of > 64 Mbit (excl. in wafer or chip form) 01/01/1996 31/12/2001 -85421320 01/01/1999 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type, as static random access memories "static RAMs", incl. cache random-access memories "cache-RAMs" (excl. in wafer or chip form) 01/01/1999 31/12/2001 -85421322 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as static random access memories "static RAMs", incl. cache random-access memories "cache-RAMs" with a storage capacity <= <= 256 Kbit (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421325 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as static random access memories "static RAMs", incl. cache random-access memories "cache-RAMs" with a storage capacity of > 256 Kbit but <= 1 Mbit (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421327 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as static random access memories "static RAMs", incl. cache random-access memories "cache-RAMs" with a storage capacity of > 1 Mbit (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421330 01/01/1999 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type, as UV erasable, programmable read-only memories "EPROMs" (excl. in wafer or chip form) 01/01/1999 31/12/2001 -85421332 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as UV erasable, programmable, read-only memories "EPROMs" with a storage capacity of <= 1 Mbit (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421335 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as UV erasable, programmable, read-only memories "EPROMs", with a storage capacity of 1 Mbit but <= 4 Mbit (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421337 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as UV erasable, programmable read-only memories "EPROMs", with a storage capacity of > 4 Mbit (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421341 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as electrically erasable, programmable read-only memories "FLASH E2PROMs", with a storage capcity of <= 1 Mbit (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421342 01/01/1999 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type, as electrically erasable, programmable read-only memories "FLASH E²PROMs", with a storage capacity of <= 4 Mbit (excl. in wafer or chip form) 01/01/1999 31/12/2001 -85421343 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as electrically erasable, programmable read-only memories "FLASH E2PROMs", with a storage capacity of > 1 Mbit but <= 4 Mbit (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421345 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type, as electrically erasable, programmable read-only memories "FLASH E²PROMs", with a storage capacity of > 4 Mbit but <= 16 Mbit (excl. in wafer or chip form) 01/01/1996 31/12/2001 -85421346 01/01/1999 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type, as electrically erasable, programmable read-only memories "FLASH E²PROMs", with a storage capacity of > 16 Mbit but <= 32 Mbit (excl. in wafer or chip form) 01/01/1999 31/12/2001 -85421347 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as electrically erasable, programmable read-only memories "FLASH E2PROMs", with a storage capacity of > 16 Mbit (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421348 01/01/1999 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type, as electrically erasable, programmable read-only memories "FLASH E²PROMs", with a storage capacity of > 32 Mbit (excl. in wafer or chip form) 01/01/1999 31/12/2001 -85421349 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type, as electrically erasable, programmable read-only memories "E2PROMs" (excl. FLASH E²PROMs and in wafer or chip form) 01/01/1996 31/12/2001 -85421351 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as read-only memories, non-programmable ROMs, content addressable memories (CAMs), first-in/first-out read/write memories (FIFOs), last-in/first-out read/write memories (LIFOs) and ferroelectric memories (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421353 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as memories (excl. in wafer or chip form, RAMs, cache-RAMs, ROMs, EPROMs, FLASH E2PROMs, E2PROMS, CAMs, FIFOs, LIFOs and ferroelectric memories) 01/01/1996 31/12/1998 -85421354 01/01/1999 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type, as memories (excl. in wafer or chip form, RAMs, cache-RAMs, EPROMs, FLASH E²PROMs and E²PROMS) 01/01/1999 31/12/2001 -85421355 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type, as microprocessors (excl. in wafer or chip form) 01/01/1996 31/12/2001 -85421360 01/01/1999 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type, as microcontrollers and microcomputers (excl. in wafer or chip form) 01/01/1999 31/12/2001 -85421361 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as microcontrollers and microcomputers, with a processing capacity of <= 4 bits (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421363 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as microcontrollers and microcomputers, with a processing capacity of > 4 bits but <= 8 bits (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421365 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as microcontrollers and microcomputers, with a processing capacity of > 8 bits but <= 16 bits (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421367 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as microcontrollers and microcomputers, with a processing capacity of > 16 bits but <= 32 bits (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421369 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as microcontrollers and microcomputers, with a processing capacity of > 32 bits (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421370 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type, as microperipherals (excl. in wafer or chip form) 01/01/1996 31/12/2001 -85421372 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as full custom logic circuits (excl. in wafer or chip form and microperipherals) 01/01/1996 31/12/1998 -85421374 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as gate arrays (excl. in wafer or chip form and microperipherals) 01/01/1996 31/12/1998 -85421376 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as standard cells (excl. in wafer or chip form and microperipherals) 01/01/1996 31/12/1998 -85421380 01/01/1999 31/12/2001 LIBEN Monolithic integrated circuits, digital, of MOS type (excl. in wafer or chip form, cards incorporating electronic integrated circuits, memories, microprocessors, microcontrollers, microcomputers and microperipherals) 01/01/1999 31/12/2001 -85421382 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as programmable logic circuits (excl. in wafer or chip form and microperipherals) 01/01/1996 31/12/1998 -85421384 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as standard logic circuits (excl. in wafer or chip form and microperipherals) 01/01/1996 31/12/1998 -85421391 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type, as control circuits, interface circuits capable of performing control functions (excl. in wafer or chip form, microprocessors, microcontrollers, microcomputers, microperipherals and full custom logic circuits) 01/01/1996 31/12/1998 -85421399 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, of MOS type (excl. in wafer or chip form, cards incorporating electronic integrated circuits, memories, microprocessors, microcontrollers, microcomputers, microperipherals, full custom logic circuits, gate arrays, standard cells, programmable logic circuits, standard logic circuits, control circuits and interface circuits) 01/01/1996 31/12/1998 -854214 01/01/1996 31/12/2001 LIBEN Monolithic digital integrated circuits obtained by bipolar technology (excl. cards incorporating an electronic integrated circuit "smart cards") 01/01/1996 31/12/2001 -85421401 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, in wafers, not yet cut into chips 01/01/1996 31/12/2001 -85421405 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, in chip form 01/01/1996 31/12/2001 -85421410 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as dynamic random access memories "dynamic RAMs" (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421411 01/01/1999 31/12/2001 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as memories (excl. in wafer or chip form) 01/01/1999 31/12/2001 -85421415 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as static random access memories "static RAMs", incl. static cache-RAMs, non-programmable read-only memories "ROMs", content addressable memories "CAMs", first-in/first-out random-access memories (FIFOs) or last-in/first-out random-access memories (LIFOs) or ferroelectric memories (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421420 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as electrically erasable, programmable read-only memories "E2PROMs", incl. FLASH E2PROMs (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421422 01/01/1997 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as UV erasable, programmable, read only memories "Eproms" (excl. in wafer or chip form, RAMs, cache-RAMs, FIFOs, LIFOs, ferroelectric memories, E2PROMS and FLASH E2PROMs) 01/01/1997 31/12/1998 -85421425 01/01/1996 31/12/1996 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as memories (excl. in wafer or chip form, RAMs, cache-RAMs, FIFOs, LIFOs, ferroelectric memories, E2PROMS and FLASH E2PROMs) 01/01/1996 31/12/1996 -85421429 01/01/1997 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as memories (excl. in wafer or chip form, RAMs, cache-RAMs, ROMs, CAMs, FIFOs, LIFOs, ferroelectric memories, EPROMs,E2PROMs and FLASH E2PROMs) 01/01/1997 31/12/1998 -85421430 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as microprocessors (excl. in wafer or chip form) 01/01/1996 31/12/2001 -85421440 01/01/1999 31/12/2001 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as microcontrollers and microcomputers (excl. in wafer or chip form) 01/01/1999 31/12/2001 -85421442 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as microcontrollers and microcomputers, with a processing capacity of <= 4 bits (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421444 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as microcontrollers and microcomputers, with a processing capacity of > 4 bits (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421450 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as microperipherals (excl. in wafer or chip form) 01/01/1996 31/12/2001 -85421460 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as full custom logic circuits (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421465 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as gate arrays (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421470 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as standard cells (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421475 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as programmable logic circuits (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421480 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as standard logic circuits (excl. in wafer or chip form and microperipherals) 01/01/1996 31/12/1998 -85421490 01/01/1999 31/12/2001 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology (excl. in wafer or chip form, cards incorporating an electronic integrated circuit, memories, microprocessors, microcontrollers, microcomputers and microperipherals) 01/01/1999 31/12/2001 -85421491 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, as control circuits, interface circuits, incl. those capable of performing control functions (excl. in wafer or chip form, microprocessors, microcontrollers, microcomputers, microperipherals and full custom logic circuits) 01/01/1996 31/12/1998 -85421499 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology (excl. in wafer or chip form, cards incorporating an electronic integrated circuit, memories, microprocessors, microcontrollers, microcomputers, microperipherals, full custom logic circuits, gate arrays, standard cells, programmable logic circuits, standard logic circuits, control circuits and interface circuits) 01/01/1996 31/12/1998 -854219 01/01/1988 31/12/2001 LIBEN Monolithic digital integrated circuits, incl. circuits obtained by a combination of bipolar and MOS technologies "BIMOS technology" (excl. cards incorporating an electronic integrated circuit "smart cards", circuits composed of metal oxide semiconductors [MOS technology] and circuits obtained by bipolar technology) 01/01/1988 31/12/2001 -85421901 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technologies (excl. MOS and bipolar), in wafers not yet cut into chips 01/01/1996 31/12/2001 -85421905 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technologies (excl. MOS and bipolar) in the form of chips 01/01/1996 31/12/2001 -85421910 01/01/1988 31/12/1995 LIBEN Electronic integrated circuits, monolithic, analog or analog/digital, in wafers not yet cut into chips 01/01/1988 31/12/1995 -85421915 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technologies (excl. MOS and bipolar), as dynamic random-access memories "D-RAMs" (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421920 01/01/1988 31/12/1995 LIBEN Electronic integrated circuits, monolithic, analog or analog/digital, in the form of chips 01/01/1988 31/12/1995 -85421922 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technologies (excl. MOS or bipolar), as static random access memories (static RAMs) incl. cache random-access memories (cache-RAMs) with a storage capacity of <= 256 Kbit (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421925 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technologies (excl. MOS or bipolar), as static random access memories (static RAMs) incl. cache random-access memories (cache-RAMs) with a storage capacity of > 256 Kbit but not <= 1 Mbit (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421927 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technologies (excl. MOS or bipolar), as static random access memories (static RAMs) incl. cache random-access memories (cache-RAMs) with a storage capacity of > 1 Mbit (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421930 01/01/1988 31/12/1995 LIBEN Monolithic integrated circuits, analogue or analogue/digital, amplifiers (excl. wafers or chips) 01/01/1988 31/12/1995 -85421931 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technologies (excl. MOS or bipolar), as UV erasable, programmable, read-only memories (EPROMs) (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421935 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technologies (excl. MOS or bipolar), as electrically erasable, programmable read-only memories (E2PROMs) or FLASH E2PROMs (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421940 01/01/1999 31/12/2001 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technology (excl. MOS or bipolar), as memories (excl. in wafer or chip form) 01/01/1999 31/12/2001 -85421941 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technologies (excl. MOS or bipolar), as read only memories, non-programmable RAMs, content addressable memories (CAMs), first-in/first-out read/write memories (FIFOs), last-in/first-out read/write memories (LIFOs) and ferroelectric memories (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421949 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technology (excl. MOS or bipolar), as memories (excl. in wafer or chip form, RAMs, cache-RAMs, ROMs, EPROMs, FLASH E2PROMs, E2PROMS, CAMs, FIFOs, LIFOs and ferroelectric memories) 01/01/1996 31/12/1998 -85421950 01/01/1988 31/12/1995 LIBEN Monolithic integrated circuits, analogue or analogue/digital, voltage and current regulators (excl. wafers or chips) 01/01/1988 31/12/1995 -85421955 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technology (excl. MOS or bipolar), as microprocessors (excl. in wafer or chip form) 01/01/1996 31/12/2001 -85421960 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, analogue or analogue/digital, control circuits (excl. wafers or chips) 01/01/1992 31/12/1994 -85421961 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, analog or mixed analog-digital, as control circuits in the form of smartpower circuits (excl. in wafer or chip form) 01/01/1995 31/12/1995 -85421962 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technology (excl. MOS or bipolar), as microcontrollers and microcomputers, with a processing capacity of <= 4 bits (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421965 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, mixed analog-digital control circuits (excl. in wafer or chip form and control circuits in the form of smartpower circuits) 01/01/1995 31/12/1995 -85421966 01/01/1999 31/12/2001 LIBEN Monolithic integrated circuits, obtained by BIMOS or other technology (excl. MOS or bipolar), as microcontrollers and microcomputers (excl. in wafer or chip form) 01/01/1999 31/12/2001 -85421968 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, obtained by BIMOS or other technology (excl. MOS or bipolar), as microcontrollers and microcomputers, with a processing capacity of > 4 bits (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85421969 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, analog, as control circuits (excl. in wafer or chip form, smart power circuits) 01/01/1995 31/12/1995 -85421970 01/01/1988 31/12/1995 LIBEN Monolithic integrated circuits, analogue or analogue/digital, interface circuits or interface circuits capable of performing control functions (excl. wafers, chips and control circuits) 01/01/1988 31/12/1995 -85421971 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technology (excl. MOS or bipolar), as microperipherals (excl. in wafer or chip form) 01/01/1996 31/12/2001 -85421972 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technology (excl. MOS or bipolar), as full custom logic circuits (excl. in wafer or chip form and microperipherals) 01/01/1996 31/12/1998 -85421974 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technology (excl. MOS or bipolar), as gate arrays (excl. in wafer or chip form and microperipherals) 01/01/1996 31/12/1998 -85421976 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technology (excl. MOS or bipolar), as standard cells (excl. in wafer or chip form and microperipherals) 01/01/1996 31/12/1998 -85421980 01/01/1992 31/12/1994 LIBEN Monolithic integrated circuits, analogue or analogue/digital (excl. wafers, chips, amplifiers, voltage and current regulators, control circuits and interface circuits, incl. interface circuits capable of performing control functions ) 01/01/1992 31/12/1994 -85421982 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technology (excl. MOS or bipolar), as programmable logic circuits (excl. in wafer or chip form and microperipherals) 01/01/1996 31/12/1998 -85421984 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technology (excl. MOS or bipolar), as standard logic circuits (excl. in wafer or chip form and microperipherals) 01/01/1996 31/12/1998 -85421985 01/01/1999 31/12/2001 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technology (exc. MOS or bipolar, or in wafer or chip form, memories, cards incorporating electronic integrated circuits, memories, microprocessors, microcontrollers, microcomputers and microperipherals) 01/01/1999 31/12/2001 -85421990 01/01/1988 31/12/1991 LIBEN Electronic interface circuits, monolithic, analog or analog/digital (excl. those in the form of chips or wafers, amplifiers, voltage and current regulators and interface circuits) 01/01/1988 31/12/1991 -85421991 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, analog or mixed analog-digital, as smartpower circuits (excl. in wafer or chip form, amplifiers, voltage and current regulators, control circuits and interface circuits) 01/01/1995 31/12/1995 -85421992 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technology (excl. MOS or bipolar), as control circuits or interface circuits, incl. those capable of performing a control function (excl. in wafer or chip form, microprocessors, microcontrollers, microcomputers, microperipherals and full custom logic circuits) 01/01/1996 31/12/1998 -85421995 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, digital/analog (excl. in wafer or chip form, amplifiers, voltage and current regulators, control circuits and interface circuits) 01/01/1995 31/12/1995 -85421998 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital, obtained by BIMOS or other technology (exc. MOS or bipolar, or in wafer or chip form, memories, cards incorporating electronic integrated circuits, memories, microprocessors, microcontrollers, microcomputers, microperipherals, full custom logic circuits, gate arrays, standard cells, programmable logic circuits, standard logic circuits, control circuits and interface circuits) 01/01/1996 31/12/1998 -85421999 01/01/1995 31/12/1995 LIBEN Monolithic integrated circuits, analog (excl. in wafer or chip form, amplifiers, voltage and current regulators, control circuits, interface circuits smartpower circuits) 01/01/1995 31/12/1995 -854220 01/01/1988 31/12/1995 LIBEN Hybrid integrated circuits 01/01/1988 31/12/1995 -85422000 01/01/1988 31/12/1989 LIBEN Hybrid integrated circuits 01/01/1988 31/12/1989 -85422010 01/01/1990 31/12/1995 LIBEN Hybrid integrated circuits, as microprocessors, microcontrollers and microcomputers 01/01/1990 31/12/1995 -85422030 01/01/1992 31/12/1995 LIBEN Hybrid integrated circuits, converters 01/01/1992 31/12/1995 -85422050 01/01/1990 31/12/1995 LIBEN Hybrid integrated circuits, amplifiers 01/01/1990 31/12/1995 -85422080 01/01/1992 31/12/1995 LIBEN Hybrid integrated circuits (excl. microprocessors, microcontrollers, microcomputers, converters and amplifiers) 01/01/1992 31/12/1995 -85422090 01/01/1990 31/12/1991 LIBEN Electronic hybrid integrated circuits (excl. microcomputers, microprocessors and amplifiers) 01/01/1990 31/12/1991 -854221 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital (excl. cards incorporating an electronic monolithic digital integrated circuit "smart cards") 01/01/2002 31/12/2006 -85422101 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type, in wafers not yet cut into chips 01/01/2002 31/12/2006 -85422105 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type, in the form of chips 01/01/2002 31/12/2006 -85422111 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type, as dynamic random-access memories "D-RAMs", with a storage capacity of <= 4 Mbit (excl. in wafer or chip form) 01/01/2002 31/12/2006 -85422113 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type, as dynamic random-access memories "D-RAMs", with a storage capacity of > 4 Mbit but <= 16 Mbit (excl. in wafer or chip form) 01/01/2002 31/12/2006 -85422115 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type, as dynamic random-access memories "D-RAMs", with a storage capacity of > 16 Mbit but <= 64 Mbit (excl. in wafer or chip form) 01/01/2002 31/12/2006 -85422117 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type, as dynamic random-access memories "D-RAMs", with a storage capacity of > 64 Mbit (excl. in wafer or chip form) 01/01/2002 31/12/2006 -85422120 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type, as static random access memories "static RAMs", incl. cache random-access memories "cache-RAMs" (excl. in wafer or chip form) 01/01/2002 31/12/2006 -85422125 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type, as UV erasable, programmable read-only memories "EPROMs" (excl. in wafer or chip form) 01/01/2002 31/12/2006 -85422131 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type, as electrically erasable, programmable read-only memories "flash E²PROMs", with a storage capacity of <= 4 Mbit (excl. in wafer or chip form) 01/01/2002 31/12/2006 -85422133 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type, as electrically erasable, programmable read-only memories "flash E²PROMs", with a storage capacity of > 4 Mbit but <= 16 Mbit (excl. in wafer or chip form) 01/01/2002 31/12/2006 -85422135 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type, as electrically erasable, programmable read-only memories "flash E²PROMs", with a storage capacity of > 16 Mbit but <= 32 Mbit (excl. in wafer or chip form) 01/01/2002 31/12/2006 -85422137 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type, as electrically erasable, programmable read-only memories "flash E²PROMs", with a storage capacity of > 32 Mbit (excl. in wafer or chip form) 01/01/2002 31/12/2006 -85422139 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type, as electrically erasable, programmable read-only memories "E2PROMs" (excl. flash E²PROMs and in wafer or chip form) 01/01/2002 31/12/2006 -85422141 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type, as memories (excl. in wafer or chip form, RAMs, cache-RAMs, EPROMs, flash E²PROMs and E²PROMS) 01/01/2002 31/12/2006 -85422145 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type, as microprocessors (excl. in wafer or chip form) 01/01/2002 31/12/2006 -85422150 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type, as microcontrollers and microcomputers (excl. in wafer or chip form) 01/01/2002 31/12/2006 -85422161 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type, as microperipherals (excl. in wafer or chip form) 01/01/2002 31/12/2006 -85422169 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, of MOS type (excl. in wafer or chip form, cards incorporating electronic integrated circuits, memories, microprocessors, microcontrollers, microcomputers and microperipherals) 01/01/2002 31/12/2006 -85422171 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, BIMOS technology or other technologies, in wafers not yet cut into chips (excl. only MOS type) 01/01/2002 31/12/2006 -85422173 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, BIMOS technology or other technologies, in the form of chips (excl. only MOS type) 01/01/2002 31/12/2006 -85422181 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, BIMOS technology or other technologies, as memories (excl. in wafer or chip form, and only MOS type) 01/01/2002 31/12/2006 -85422183 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, BIMOS technology or other technologies, as microprocessors (excl. in wafer or chip form, and only MOS type) 01/01/2002 31/12/2006 -85422185 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, obtained by bipolar technology, BIMOS technology or other technologies, as microcontrollers and microcomputers (excl. in wafer or chip form, and only MOS type) 01/01/2002 31/12/2006 -85422191 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, BIMOS technology or other technologies, as microperipherals (excl. in wafer or chip form, and only MOS type) 01/01/2002 31/12/2006 -85422199 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, digital, obtained by bipolar technology, BIMOS technology or other technologies (excl. in wafer or chip form, memories, cards incorporating electronic integrated circuits, memories, microprocessors, microcontrollers, microcomputers, microperipherals, and only MOS type) 01/01/2002 31/12/2006 -854229 01/01/2002 31/12/2006 LIBEN Electronic integrated circuits, monolithic, analogue or analogue-digital 01/01/2002 31/12/2006 -85422910 01/01/2002 31/12/2006 LIBEN Electronic integrated circuits, monolithic, analogue or analogue-digital, in wafers not yet cut into chips 01/01/2002 31/12/2006 -85422920 01/01/2002 31/12/2006 LIBEN Electronic integrated circuits, monolithic, analogue or analogue-digital, in the form of chips 01/01/2002 31/12/2006 -85422930 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, analogue or analogue-digital, as amplifiers (excl. wafers or chips) 01/01/2002 31/12/2006 -85422950 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, analogue or analogue-digital, as voltage and current regulators (excl. wafers or chips) 01/01/2002 31/12/2006 -85422960 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, analogue, as control circuits (excl. in wafer or chip form) 01/01/2002 31/12/2006 -85422970 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, analogue or analogue-digital, as interface circuits or interface circuits capable of performing control functions (excl. wafers, chips, and control circuits and cards incorporating an electronic integrated circuit "smart cards") 01/01/2002 31/12/2006 -85422990 01/01/2002 31/12/2006 LIBEN Monolithic integrated circuits, analogue (excl. in wafer or chip form, amplifiers, voltage and current regulators, control circuits, interface circuits and cards incorporating an electronic integrated circuit "smart cards") 01/01/2002 31/12/2006 -854230 01/01/1996 31/12/2001 LIBEN Electronic integrated circuits, monolithic, analog or analog/digital 01/01/1996 31/12/2001 -85423010 01/01/1996 31/12/2001 LIBEN Electronic integrated circuits, monolithic, analog or analog/digital, in wafers not yet cut into chips 01/01/1996 31/12/2001 -85423020 01/01/1996 31/12/2001 LIBEN Electronic integrated circuits, monolithic, analog or analog/digital, in the form of chips 01/01/1996 31/12/2001 -85423030 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, analogue or analogue/digital, as amplifiers (excl. wafers or chips) 01/01/1996 31/12/2001 -85423050 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, analogue or analogue/digital, as voltage and current regulators (excl. wafers or chips) 01/01/1996 31/12/2001 -85423060 01/01/1999 31/12/2001 LIBEN Monolithic integrated circuits, analog, as control circuits (excl. in wafer or chip form) 01/01/1999 31/12/2001 -85423061 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, analog or mixed analog-digital, as control circuits in the form of smartpower circuits (excl. in wafer or chip form) 01/01/1996 31/12/1998 -85423065 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, mixed analog-digital control circuits (excl. in wafer or chip form and control circuits in the form of smartpower circuits) 01/01/1996 31/12/1998 -85423069 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, analog, as control circuits (excl. in wafer or chip form, smart power circuits) 01/01/1996 31/12/1998 -85423070 01/01/1996 31/12/2001 LIBEN Monolithic integrated circuits, analogue or analogue/digital, as interface circuits or interface circuits capable of performing control functions (excl. wafers, chips and control circuits) 01/01/1996 31/12/2001 -85423090 01/01/1999 31/12/2001 LIBEN Monolithic integrated circuits, analog (excl. in wafer or chip form, amplifiers, voltage and current regulators, control circuits, interface circuits) 01/01/1999 31/12/2001 -85423091 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, analog or mixed analog-digital, as smartpower circuits (excl. in wafer or chip form, amplifiers, voltage and current regulators, control circuits and interface circuits) 01/01/1996 31/12/1998 -85423095 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, digital/analog (excl. in wafer or chip form, amplifiers, voltage and current regulators, control circuits and interface circuits) 01/01/1996 31/12/1998 -85423099 01/01/1996 31/12/1998 LIBEN Monolithic integrated circuits, analog (excl. in wafer or chip form, amplifiers, voltage and current regulators, control circuits, interface circuits smartpower circuits) 01/01/1996 31/12/1998 -854231 01/01/2007 31/12/2500 LIBEN Electronic integrated circuits as processors and controllers, whether or not combined with memories, converters, logic circuits, amplifiers, clock and timing circuits, or other circuits 01/01/2007 31/12/2500 -85423110 01/01/2007 31/12/2016 LIBEN Electronic integrated circuits as processors and controllers, whether or not combined with memories, converters, logic circuits, amplifiers, clock and timing circuits, or other circuits in the form of multichip integrated circuits consisting of two or more interconnected monolithic integrated circuits as specified in note 8 (b) (3) to chapter 85 01/01/2007 31/12/2016 -85423111 01/01/2017 31/12/2500 LIBEN Electronic multi-component integrated circuits "MCOs" as processors and controllers as specified in note 9 (b) (4) to chapter 85, whether or not combined with memories, converters, logic circuits, amplifiers, clock and timing circuits, or other circuits 01/01/2017 31/12/2500 -85423119 01/01/2017 31/12/2500 LIBEN Electronic integrated circuits as processors and controllers, whether or not combined with memories, converters, logic circuits, amplifiers, clock and timing circuits, or other circuits in the form of multichip integrated circuits consisting of two or more interconnected monolithic integrated circuits as specified in note 9 (b) (3) to chapter 85 01/01/2017 31/12/2500 -85423190 01/01/2007 31/12/2500 LIBEN Electronic integrated circuits as processors and controllers, whether or not combined with memories, converters, logic circuits, amplifiers, clock and timing circuits, or other circuits (excl. in the form of multichip or multi-component integrated circuits) 01/01/2007 31/12/2500 -854232 01/01/2007 31/12/2500 LIBEN Electronic integrated circuits as memories 01/01/2007 31/12/2500 -85423210 01/01/2007 31/12/2016 LIBEN Electronic integrated circuits as memories in the form of multichip integrated circuits consisting of two or more interconnected monolithic integrated circuits as specified in note 8 (b) (3) to chapter 85 01/01/2007 31/12/2016 -85423211 01/01/2017 31/12/2500 LIBEN Electronic multi-component integrated circuits "MCOs" as memories as specified in note 9 (b) (4) to chapter 85 01/01/2017 31/12/2500 -85423219 01/01/2017 31/12/2500 LIBEN Electronic integrated circuits as memories in the form of multichip integrated circuits consisting of two or more interconnected monolithic integrated circuits as specified in note 9 (b) (3) to chapter 85 01/01/2017 31/12/2500 -85423231 01/01/2007 31/12/2500 LIBEN Electronic integrated circuits as dynamic random-access memories "D-RAMs", with a storage capacity of <= 512 Mbit (excl. in the form of multichip or multi-component integrated circuits) 01/01/2007 31/12/2500 -85423239 01/01/2007 31/12/2500 LIBEN Electronic integrated circuits as dynamic random-access memories "D-RAMs", with a storage capacity of > 512 Mbit (excl. in the form of multichip or multi-component integrated circuits) 01/01/2007 31/12/2500 -85423245 01/01/2007 31/12/2500 LIBEN Electronic integrated circuits as static random access memories "static RAMs", incl. cache random-access memories "cache-RAMs" (excl. in the form of multichip or multi-component integrated circuits) 01/01/2007 31/12/2500 -85423255 01/01/2007 31/12/2500 LIBEN Electronic integrated circuits as UV erasable, programmable read-only memories "EPROMs" (excl. in the form of multichip or multi-component integrated circuits) 01/01/2007 31/12/2500 -85423261 01/01/2007 31/12/2500 LIBEN Electronic integrated circuits as electrically erasable, programmable read-only memories "flash E²PROMs", with a storage capacity of <= 512 Mbit (excl. in the form of multichip or multi-component integrated circuits) 01/01/2007 31/12/2500 -85423269 01/01/2007 31/12/2500 LIBEN Electronic integrated circuits as electrically erasable, programmable read-only memories "flash E²PROMs", with a storage capacity of > 512 Mbit (excl. in the form of multichip or multi-component integrated circuits) 01/01/2007 31/12/2500 -85423275 01/01/2007 31/12/2500 LIBEN Electronic integrated circuits as electrically erasable, programmable read-only memories "E2PROMs" (excl. flash E²PROMs and in the form of multichip or multi-component integrated circuits) 01/01/2007 31/12/2500 -85423290 01/01/2007 31/12/2500 LIBEN Memories in multicombinational forms such as stack D-RAMs and modules (excl. in the form of multichip or multi-component integrated circuits, and D-RAMs, S-Rams, cache-RAMs, EPROMs and flash E²PROMs) 01/01/2007 31/12/2500 -854233 01/01/2007 31/12/2500 LIBEN Electronic integrated circuits as amplifiers 01/01/2007 31/12/2500 -85423300 01/01/2007 31/12/2016 LIBEN Electronic integrated circuits as amplifiers 01/01/2007 31/12/2016 -85423310 01/01/2017 31/12/2500 LIBEN Electronic multi-component integrated circuits "MCOs" as amplifiers as specified in note 9 (b) (4) to chapter 85 01/01/2017 31/12/2500 -85423390 01/01/2017 31/12/2500 LIBEN Electronic integrated circuits as amplifiers (excl. multi-component integrated circuits) 01/01/2017 31/12/2500 -854239 01/01/2007 31/12/2500 LIBEN Electronic integrated circuits (excl. such as processors, controllers, memories and amplifiers) 01/01/2007 31/12/2500 -85423910 01/01/2007 31/12/2016 LIBEN Electronic integrated circuits in the form of multichip integrated circuits consisting of two or more interconnected monolithic integrated circuits as specified in note 8 (b) (3) to chapter 85 (excl. such as processors, controllers, memories and amplifiers) 01/01/2007 31/12/2016 -85423911 01/01/2017 31/12/2500 LIBEN Electronic multi-component integrated circuits "MCOs" as specified in note 9 (b) (4) to chapter 85 (excl. such as processors, controllers, memories and amplifiers) 01/01/2017 31/12/2500 -85423919 01/01/2017 31/12/2500 LIBEN Electronic integrated circuits in the form of multichip integrated circuits consisting of two or more interconnected monolithic integrated circuits as specified in note 9 (b) (3) to chapter 85 (excl. such as processors, controllers, memories and amplifiers) 01/01/2017 31/12/2500 -85423990 01/01/2007 31/12/2500 LIBEN Electronic integrated circuits (excl. in the form of multichip or multi-component integrated circuits and such as processors, controllers, memories and amplifiers) 01/01/2007 31/12/2500 -854240 01/01/1996 31/12/2001 LIBEN Hybrid integrated circuits 01/01/1996 31/12/2001 -85424000 01/01/1999 31/12/2001 LIBEN Hybrid integrated circuits 01/01/1999 31/12/2001 -85424010 01/01/1996 31/12/1998 LIBEN Hybrid integrated circuits, as microprocessors, microcontrollers and microcomputers 01/01/1996 31/12/1998 -85424030 01/01/1996 31/12/1998 LIBEN Hybrid integrated circuits, converters 01/01/1996 31/12/1998 -85424050 01/01/1996 31/12/1998 LIBEN Hybrid integrated circuits, amplifiers 01/01/1996 31/12/1998 -85424090 01/01/1996 31/12/1998 LIBEN Hybrid integrated circuits (excl. microprocessors, microcontrollers, microcomputers, converters and amplifiers) 01/01/1996 31/12/1998 -854250 01/01/1996 31/12/2001 LIBEN Electronic microassemblies made from discrete, active or both active and passive components, combined and interconnected 01/01/1996 31/12/2001 -85425000 01/01/1996 31/12/2001 LIBEN Electronic microassemblies made from discrete, active or both active and passive components, combined and interconnected 01/01/1996 31/12/2001 -854260 01/01/2002 31/12/2006 LIBEN Hybrid integrated circuits 01/01/2002 31/12/2006 -85426000 01/01/2002 31/12/2006 LIBEN Hybrid integrated circuits 01/01/2002 31/12/2006 -854270 01/01/2002 31/12/2006 LIBEN Electronic microassemblies made from discrete, active or both active and passive components, combined and interconnected 01/01/2002 31/12/2006 -85427000 01/01/2002 31/12/2006 LIBEN Electronic microassemblies made from discrete, active or both active and passive components, combined and interconnected 01/01/2002 31/12/2006 -854280 01/01/1988 31/12/1995 LIBEN Electronic microassemblies consisting of discrete active or both active and passive components indivisibly combined 01/01/1988 31/12/1995 -85428000 01/01/1988 31/12/1995 LIBEN Electronic microassemblies consisting of discrete active or both active and passive components indivisibly combined 01/01/1988 31/12/1995 -854290 01/01/1988 31/12/2500 LIBEN Parts of electronic integrated circuits, n.e.s. 01/01/1988 31/12/2500 -85429000 01/01/1988 31/12/2500 LIBEN Parts of electronic integrated circuits, n.e.s. 01/01/1988 31/12/2500 -8543 01/01/1988 31/12/2500 LIBEN Electrical machines and apparatus, having individual functions, n.e.s. in chapter 85 and parts thereof 01/01/1988 31/12/2500 -854310 01/01/1988 31/12/1995 LIBEN Particle accelerators for electrons, protons, etc. 01/01/1988 31/12/1995 -854310 01/01/2007 31/12/2500 LIBEN Electrical particle accelerators for electrons, protons, etc. (excl. ion implanters for doping semiconductor materials) 01/01/2007 31/12/2500 -85431000 01/01/1988 31/12/1994 LIBEN Particle accelerators for electrons, protons, etc. 01/01/1988 31/12/1994 -85431000 01/01/2007 31/12/2500 LIBEN Electrical particle accelerators for electrons, protons, etc. (excl. ion implanters for doping semiconductor materials) 01/01/2007 31/12/2500 -85431010 01/01/1995 31/12/1995 LIBEN Electrical ion implanters 01/01/1995 31/12/1995 -85431090 01/01/1995 31/12/1995 LIBEN Electrical particle accelerators for electrons, protons, etc. (excl. ion implanters) 01/01/1995 31/12/1995 -854311 01/01/1996 31/12/2006 LIBEN Ion implanters for doping semiconductor materials 01/01/1996 31/12/2006 -85431100 01/01/1996 31/12/2006 LIBEN Ion implanters for doping semiconductor materials 01/01/1996 31/12/2006 -854319 01/01/1996 31/12/2006 LIBEN Electrical particle accelerators for electrons, protons, etc. (excl. ion implanters for doping semiconductor materials) 01/01/1996 31/12/2006 -85431900 01/01/1996 31/12/2006 LIBEN Electrical particle accelerators for electrons, protons, etc. (excl. ion implanters for doping semiconductor materials) 01/01/1996 31/12/2006 -854320 01/01/1988 31/12/2500 LIBEN Signal generators, electrical 01/01/1988 31/12/2500 -85432000 01/01/1988 31/12/2500 LIBEN Signal generators, electrical 01/01/1988 31/12/2500 -854330 01/01/1988 31/12/2500 LIBEN Machines and apparatus for electroplating, electrolysis or electrophoresis 01/01/1988 31/12/2500 -85433000 01/01/1988 31/12/1994 LIBEN Machines and apparatus for electroplating, electrolysis or electrophoresis 01/01/1988 31/12/1994 -85433000 01/01/2007 31/12/2016 LIBEN Machines and apparatus for electroplating, electrolysis or electrophoresis 01/01/2007 31/12/2016 -85433010 01/01/1995 31/12/1999 LIBEN Electrical apparatus for wet etching, developing, stripping or cleaning semiconductor wafers 01/01/1995 31/12/1999 -85433020 01/01/2000 31/12/2006 LIBEN Electrical apparatus for wet etching, developing, stripping or cleaning semiconductor wafers or of flat panel display substrates 01/01/2000 31/12/2006 -85433030 01/01/1998 31/12/1999 LIBEN Electrical apparatus for wet etching, developing, stripping or cleaning liquid crystal display substrates 01/01/1998 31/12/1999 -85433040 01/01/2017 31/12/2500 LIBEN Electroplating and electrolysis machines of a kind used solely or principally for the manufacture of printed circuits 01/01/2017 31/12/2500 -85433070 01/01/2017 31/12/2500 LIBEN Machines and apparatus for electroplating, electrolysis or electrophoresis (excl. electroplating and electrolysis machines of a kind used solely or principally for the manufacture of printed circuits) 01/01/2017 31/12/2500 -85433080 01/01/1998 31/12/2006 LIBEN Electrical machines and apparatus for electroplating, electrolysis or electrophoresis (excl. apparatus for wet etching, developing, stripping or cleaning semiconductor wafers and liquid crystal display substrates) 01/01/1998 31/12/2006 -85433090 01/01/1995 31/12/1997 LIBEN Electrical machines and apparatus for electroplating, electrolysis or electrophoresis (excl. apparatus for wet etching, developing, stripping or cleaning semiconductor wafers) 01/01/1995 31/12/1997 -854340 01/01/1996 31/12/2006 LIBEN Electric fence energisers 01/01/1996 31/12/2006 -85434000 01/01/1996 31/12/2006 LIBEN Electric fence energisers 01/01/1996 31/12/2006 -854370 01/01/2007 31/12/2500 LIBEN Electrical machines and apparatus, having individual functions, n.e.s. in chapter 85 01/01/2007 31/12/2500 -85437001 01/01/2017 31/12/2500 LIBEN Articles specifically designed for connection to telegraphic or telephonic apparatus or instruments or to telegraphic or telephonic networks 01/01/2017 31/12/2500 -85437002 01/01/2017 31/12/2500 LIBEN Microwave amplifiers 01/01/2017 31/12/2500 -85437003 01/01/2017 31/12/2500 LIBEN Cordless infrared remote control devices for video game consoles 01/01/2017 31/12/2500 -85437004 01/01/2017 31/12/2500 LIBEN Digital flight-data recorders 01/01/2017 31/12/2500 -85437005 01/01/2017 31/12/2500 LIBEN Portable battery operated electronic readers for recording and reproducing text, still image or audio file 01/01/2017 31/12/2500 -85437006 01/01/2017 31/12/2500 LIBEN Digital signal processing apparatus capable of connecting to a wired or wireless network for the mixing of sound 01/01/2017 31/12/2500 -85437007 01/01/2017 31/12/2500 LIBEN Portable interactive electronic education devices primarily designed for children (excl. toys of 9503 00 87) 01/01/2017 31/12/2500 -85437008 01/01/2017 31/12/2500 LIBEN Plasma cleaner machines that remove organic contaminants from electron microscopy specimens and specimen holders 01/01/2017 31/12/2500 -85437009 01/01/2017 31/12/2500 LIBEN Touch screens without display capabilities, for incorporation into apparatus having a display (excl. those for electric control of subheading 8537 10 95) 01/01/2017 31/12/2500 -85437010 01/01/2007 31/12/2500 LIBEN Electrical machines with translation or dictionary functions 01/01/2007 31/12/2500 -85437030 01/01/2007 31/12/2500 LIBEN Aerial amplifiers 01/01/2007 31/12/2500 -85437050 01/01/2011 31/12/2500 LIBEN Sunbeds, sunlamps and similar suntanning equipment 01/01/2011 31/12/2500 -85437051 01/01/2007 31/12/2010 LIBEN Sunbeds, sunlamps and similar suntanning equipment, for fluorescent tubes using ultraviolet A-rays, the tubes having a maximum length of <= 100 cm 01/01/2007 31/12/2010 -85437055 01/01/2007 31/12/2010 LIBEN Sunbeds, sunlamps and similar suntanning equipment, for fluorescent tubes using ultraviolet A-rays, the tubes having a maximum length of > 100 cm 01/01/2007 31/12/2010 -85437059 01/01/2007 31/12/2010 LIBEN Sunbeds, sunlamps and similar suntanning equipment (other than for fluorescent tubes using ultraviolet A-rays) 01/01/2007 31/12/2010 -85437060 01/01/2007 31/12/2500 LIBEN Electric fence energisers 01/01/2007 31/12/2500 -85437070 01/01/2018 31/12/2500 LIBEN Electronic cigarettes 01/01/2018 31/12/2500 -85437090 01/01/2007 31/12/2016 LIBEN Electrical machines and apparatus, having individual functions, n.e.s. in chap. 85 01/01/2007 31/12/2016 -85437090 01/01/2017 31/12/2017 LIBEN Indicator panels with liquid crystal devices "LCD" (excl. active matrix liquid crystal devices and those of a kind used for motor vehicles, cycles or traffic signalling) 01/01/2017 31/12/2017 -85437090 01/01/2018 31/12/2500 LIBEN Electrical machines and apparatus, having individual functions, n.e.s. in chap. 85 01/01/2018 31/12/2500 -85437090 01/01/2018 31/12/2500 LIBEN ELECTRICAL MACHINES AND APPARATUS, HAVING INDIVIDUAL FUNCTIONS, N.E.S. IN CHAP. 85 01/01/2018 31/12/2500 -854380 01/01/1988 31/12/1995 LIBEN Electrical machines and apparatus, having individual functions, not specified or included elsewhere in this chapter 01/01/1988 31/12/1995 -85438010 01/01/1988 31/12/1995 LIBEN Flight recorders for civil aircraft 01/01/1988 31/12/1995 -85438020 01/01/1991 31/12/1995 LIBEN Aerial amplifiers 01/01/1991 31/12/1995 -85438051 01/01/1995 31/12/1995 LIBEN Solaria and similar devices designed to produce a sun-tan effect on skin, designed for fluorescent lamps for ultraviolet A-rays, the lamps having a maximum length of <= 100 cm 01/01/1995 31/12/1995 -85438055 01/01/1995 31/12/1995 LIBEN Solaria and similar devices designed to produce a sun-tan effect on skin, designed for fluorescent lamps for ultraviolet A-rays, the lamps having a maximum length of > 100 cm 01/01/1995 31/12/1995 -85438059 01/01/1995 31/12/1995 LIBEN Solaria and similar devices designed to produce a sun-tan effect on skin (other than designed for fluorescent lamps for ultraviolet A-rays) 01/01/1995 31/12/1995 -85438070 01/01/1995 31/12/1995 LIBEN Electrical apparatus for physical deposition by sputtering on semiconductor wafers 01/01/1995 31/12/1995 -85438080 01/01/1991 31/12/1994 LIBEN Electrical machines and apparatus with individual functions (excl. 8543.10-00 to 8543.80-20 and n.e.s. in chapter 85) 01/01/1991 31/12/1994 -85438090 01/01/1988 31/12/1990 LIBEN Electrical machines and apparatus with individual functions, not specified or included elsewhere in this chapter 01/01/1988 31/12/1990 -85438095 01/01/1995 31/12/1995 LIBEN Electrical machines and apparatus, having individual functions, not specified or included elsewhere in chapter 85 01/01/1995 31/12/1995 -854381 01/01/1996 31/12/2006 LIBEN Proximity cards and tags, generally consisting of an integrated circuit with a read only memory attached to a printed antenna 01/01/1996 31/12/2006 -85438100 01/01/1996 31/12/2006 LIBEN Proximity cards and tags, generally consisting of an integrated circuit with a read only memory attached to a printed antenna 01/01/1996 31/12/2006 -854389 01/01/1996 31/12/2006 LIBEN Electrical machines and apparatus, having individual functions, not specified or included elsewhere in chapter 85 01/01/1996 31/12/2006 -85438910 01/01/1996 31/12/2001 LIBEN Flight recorders for civil aircraft 01/01/1996 31/12/2001 -85438910 01/01/2002 31/12/2005 LIBEN Flight recorders, electric synchros and transducers, defrosters and demisters with electric resistors, for use in civil aircraft 01/01/2002 31/12/2005 -85438915 01/01/1998 31/12/2006 LIBEN Electrical machines with translation or dictionary functions 01/01/1998 31/12/2006 -85438920 01/01/1996 31/12/2006 LIBEN Aerial amplifiers 01/01/1996 31/12/2006 -85438951 01/01/1996 31/12/2006 LIBEN Sunbeds, sunlamps and similar suntanning equipment, for fluorescent tubes using ultraviolet A-rays, the tubes having a maximum length of <= 100 cm 01/01/1996 31/12/2006 -85438955 01/01/1996 31/12/2006 LIBEN Sunbeds, sunlamps and similar suntanning equipment, for fluorescent tubes using ultraviolet A-rays, the tubes having a maximum length of > 100 cm 01/01/1996 31/12/2006 -85438959 01/01/1996 31/12/2006 LIBEN Sunbeds, sunlamps and similar suntanning equipment (other than for fluorescent tubes using ultraviolet A-rays) 01/01/1996 31/12/2006 -85438965 01/01/2000 31/12/2006 LIBEN Electrical apparatus for physical deposition on semiconductor wafers 01/01/2000 31/12/2006 -85438970 01/01/1996 31/12/1999 LIBEN Electrical apparatus for physical deposition by sputtering on semiconductor wafers 01/01/1996 31/12/1999 -85438972 01/01/1998 31/12/1999 LIBEN Electrical apparatus for physical deposition on semiconductor wafers (other than by sputtering) 01/01/1998 31/12/1999 -85438973 01/01/1998 31/12/2006 LIBEN Electrical encapsulation equipment for assembly of semiconductor devices 01/01/1998 31/12/2006 -85438975 01/01/1998 31/12/2006 LIBEN Electrical apparatus for physical deposition by sputtering on LCD substrates 01/01/1998 31/12/2006 -85438979 01/01/1998 31/12/2006 LIBEN Electrical upgrade kits for automatic data-processing machines and units thereof, put up for retail sale, consisting of, at least, speakers and/or microphone, and an electronic assembly that enables the automatic data-processing machine and units thereof to process audio signals "sound cards" 01/01/1998 31/12/2006 -85438990 01/01/1996 31/12/1997 LIBEN Electrical machines and apparatus, having individual functions, not specified or included elsewhere in chapter 85 01/01/1996 31/12/1997 -85438995 01/01/1998 31/12/2001 LIBEN Electrical machines and apparatus, having individual functions, not specified or included elsewhere in chapter 85 01/01/1998 31/12/2001 -85438995 01/01/2002 31/12/2005 LIBEN Electrical machines and apparatus, having individual functions, not specified or included elsewhere in chapter 85 01/01/2002 31/12/2005 -85438997 01/01/2006 31/12/2006 LIBEN Electrical machines and apparatus, having individual functions, n.e.s. in chap. 85 01/01/2006 31/12/2006 -854390 01/01/1988 31/12/2500 LIBEN Parts of electrical machines and apparatus, having individual functions, n.e.s. in chapter 85 01/01/1988 31/12/2500 -85439000 01/01/2007 31/12/2500 LIBEN Parts of electrical machines and apparatus, having individual functions, n.e.s. in chapter 85 01/01/2007 31/12/2500 -85439010 01/01/1988 31/12/2005 LIBEN Assemblies and sub-assemblies consisting of two or more parts or pieces fastened or joined together, for flight recorders, n.e.s., for use in civil aircraft 01/01/1988 31/12/2005 -85439020 01/01/1998 31/12/2006 LIBEN Electronic assemblies for incorporation into automatic data-processing machines, not specified or included elsewhere in chapter 85 01/01/1998 31/12/2006 -85439030 01/01/1998 31/12/2006 LIBEN Parts of electrical ion implanters for doping semiconductor materials, electrical apparatus for wet etching, developing, stripping or cleaning semiconductor wafers or of flat panel display substrates, electrical apparatus for physical deposition on semiconductor wafers and encapsulation equipment for assembly of semiconductor devices, n.e.s. 01/01/1998 31/12/2006 -85439040 01/01/1998 31/12/2006 LIBEN Parts of electrical apparatus for physical deposition by sputtering on LCD substrates, n.e.s. 01/01/1998 31/12/2006 -85439080 01/01/1998 31/12/2005 LIBEN Parts of electrical machines and apparatus with individual functions, not specified or included elsewhere in this chapter 01/01/1998 31/12/2005 -85439090 01/01/1988 31/12/1997 LIBEN Electrical machines and apparatus with individual functions, not specified or included elsewhere in this chapter 01/01/1988 31/12/1997 -85439095 01/01/2006 31/12/2006 LIBEN Parts of electrical machines and apparatus with individual functions, n.e.s. in chap. 85 01/01/2006 31/12/2006 -8543I0 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8543; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -8543I000 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 8543; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -8543I4 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8543; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8543I400 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8543; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1993 31/12/2005 -8544 01/01/1988 31/12/2500 LIBEN Insulated "incl. enamelled or anodised" wire, cable "incl. coaxial cable" and other insulated electric conductors, whether or not fitted with connectors; optical fibre cables, made up of individually sheathed fibres, whether or not assembled with electric conductors or fitted with connectors 01/01/1988 31/12/2500 -854411 01/01/1988 31/12/2500 LIBEN Winding wire for electrical purposes, of copper, insulated 01/01/1988 31/12/2500 -85441110 01/01/1988 31/12/2500 LIBEN Winding wire for electrical purposes, of copper, lacquered or enamelled 01/01/1988 31/12/2500 -85441190 01/01/1988 31/12/2500 LIBEN Winding wire for electrical purposes, of copper, insulated (excl. lacquered or enamelled) 01/01/1988 31/12/2500 -854419 01/01/1988 31/12/2500 LIBEN Winding wire for electrical purposes, of material other than copper, insulated 01/01/1988 31/12/2500 -85441900 01/01/2011 31/12/2500 LIBEN Winding wire for electrical purposes, of material other than copper, insulated 01/01/2011 31/12/2500 -85441910 01/01/1988 31/12/2010 LIBEN Winding wire for electrical purposes, of material other than copper, lacquered or enamelled 01/01/1988 31/12/2010 -85441990 01/01/1988 31/12/2010 LIBEN Winding wire for electrical purposes, of material other than copper, insulated (excl. lacquered or enamelled) 01/01/1988 31/12/2010 -854420 01/01/1988 31/12/2500 LIBEN Coaxial cable and other coaxial electric conductors, insulated 01/01/1988 31/12/2500 -85442000 01/01/1994 31/12/2500 LIBEN Coaxial cable and other coaxial electric conductors, insulated 01/01/1994 31/12/2500 -85442010 01/01/1988 31/12/1993 LIBEN Co-axial cable and other co-axial electric conductors, ready for connectors to be fitted or already provided with connectors 01/01/1988 31/12/1993 -85442091 01/01/1988 31/12/1993 LIBEN Co-axial cable, for high frequency, insulated, neither ready for connectors to be fitted nor already provided with connectors 01/01/1988 31/12/1993 -85442099 01/01/1988 31/12/1993 LIBEN Co-axial cable and other co-axial electric conductors, insulated, neither ready for connectors to be fitted nor already provided with connectors (excl. high frequency cable) 01/01/1988 31/12/1993 -854430 01/01/1988 31/12/2500 LIBEN Ignition wiring sets and other wiring sets for vehicles, aircraft or ships 01/01/1988 31/12/2500 -85443000 01/01/2006 31/12/2500 LIBEN Ignition wiring sets and other wiring sets for vehicles, aircraft or ships 01/01/2006 31/12/2500 -85443010 01/01/1988 31/12/2005 LIBEN Ignition wiring sets and other wiring sets for civil aircraft 01/01/1988 31/12/2005 -85443090 01/01/1988 31/12/2005 LIBEN Ignition wiring sets and other wiring sets for vehicles, aircraft or ships (excl. those for civil aircraft of subheading 8544.30.10) 01/01/1988 31/12/2005 -854441 01/01/1988 31/12/2006 LIBEN Electric conductors for a voltage <= 80 V, insulated, fitted with connectors, n.e.s. 01/01/1988 31/12/2006 -85444100 01/01/1988 31/12/1989 LIBEN Electric conductors, for a voltage =< 80 v, insulated, fitted with connectors, n.e.s. 01/01/1988 31/12/1989 -85444110 01/01/1990 31/12/2006 LIBEN Electric conductors of a kind used for telecommunications, for a voltage <= 80 V, insulated, with connectors (excl. coaxial) 01/01/1990 31/12/2006 -85444190 01/01/1990 31/12/2006 LIBEN Electric conductors for a voltage <= 80 V, insulated, fitted with connectors, n.e.s. 01/01/1990 31/12/2006 -854442 01/01/2007 31/12/2500 LIBEN Electric conductors for a voltage <= 1.000 V, insulated, fitted with connectors, n.e.s. 01/01/2007 31/12/2500 -85444210 01/01/2007 31/12/2500 LIBEN Electric conductors of a kind used for telecommunications, for a voltage <= 1.000 V, insulated, fitted with connectors, n.e.s. 01/01/2007 31/12/2500 -85444290 01/01/2007 31/12/2500 LIBEN Electric conductors, for a voltage <= 1.000 V, insulated, fitted with connectors, n.e.s. (other than of a kind used for telecommunications) 01/01/2007 31/12/2500 -854449 01/01/1988 31/12/2500 LIBEN Electric conductors, for a voltage <= 1.000 V, insulated, not fitted with connectors, n.e.s. 01/01/1988 31/12/2500 -85444910 01/01/1988 31/12/1989 LIBEN Electric conductors, for a voltage =< 80 v, not fitted with connectors, insulated with plastic material, n.e.s. 01/01/1988 31/12/1989 -85444911 01/01/1990 31/12/1993 LIBEN Electric conductors for telecommunications, for a voltage =< 80 volts, insulated with plastic material, (excl. with connectors and coaxial) 01/01/1990 31/12/1993 -85444919 01/01/1990 31/12/1993 LIBEN Electric conductors (excl. for telecommunications), for a voltage =< 80 volts, insulated with plastic material, (excl. with connectors, excl. 8544.11-10 to 8544.30-90) 01/01/1990 31/12/1993 -85444920 01/01/1994 31/12/2500 LIBEN Conductors, electric, for a voltage <= 80 V, insulated, not fitted with connectors, of a kind used for telecommunications, n.e.s. 01/01/1994 31/12/2500 -85444980 01/01/1994 31/12/2006 LIBEN Conductors, electric, for a voltage <= 80 V, insulated, not fitted with connectors, n.e.s. 01/01/1994 31/12/2006 -85444990 01/01/1988 31/12/1989 LIBEN Electric conductors, for a voltage =< 80 v, not fitted with connectors, insulated with materials other than plastic, n.e.s. 01/01/1988 31/12/1989 -85444991 01/01/1990 31/12/1993 LIBEN Electric conductors for telecommunications, for a voltage =< 80 volts, insulated with materials (excl. plastic), (excl. with connectors and coaxial) 01/01/1990 31/12/1993 -85444991 01/01/2007 31/12/2500 LIBEN Electric wire and cables, for a voltage <= 1.000 V, insulated, not fitted with connectors, with individual conductor wires of a diameter > 0,51 mm, n.e.s. 01/01/2007 31/12/2500 -85444993 01/01/2007 31/12/2500 LIBEN Conductors, electric, for a voltage <= 80 V, insulated, not fitted with connectors, n.e.s. (excl. winding wire, coaxial conductors, wiring sets for vehicles, aircraft or ships, and wire and cables with individual conductor wires of a diameter > 0,51 mm) 01/01/2007 31/12/2500 -85444995 01/01/2007 31/12/2500 LIBEN Electric conductors for a voltage > 80 V but < 1.000 V, insulated, not fitted with connectors, n.e.s. (excl. winding wire, coaxial conductors, wiring sets for vehicles, aircraft or ships, and wire and cables with individual conductor wires of a diameter > 0,51 mm) 01/01/2007 31/12/2500 -85444999 01/01/1990 31/12/1993 LIBEN Electric conductors (excl. for telecommunications), for a voltage =< 80 volts, insulated with materials (excl. plastic), (excl. with connectors, excl. 8544.11-10 to 8544.30-90) 01/01/1990 31/12/1993 -85444999 01/01/2007 31/12/2500 LIBEN Electric conductors for a voltage 1.000 V, insulated, not fitted with connectors, n.e.s. (excl. winding wire, coaxial conductors, wiring sets for vehicles, aircraft or ships, and wire and cables with individual conductor wires of a diameter > 0,51 mm) 01/01/2007 31/12/2500 -854451 01/01/1988 31/12/2006 LIBEN Electric conductors, for a voltage > 80 V but <= 1.000 V, insulated, fitted with connectors, n.e.s. 01/01/1988 31/12/2006 -85445100 01/01/1988 31/12/1997 LIBEN Electric conductors, for a voltage > 80 V but <= 1.000 V fitted with connectors, n.e.s. 01/01/1988 31/12/1997 -85445110 01/01/1998 31/12/2006 LIBEN Electric conductors of a kind used for telecommunications, for a voltage > 80 V but <= 1.000 V, insulated, fitted with connectors, n.e.s. 01/01/1998 31/12/2006 -85445190 01/01/1998 31/12/2006 LIBEN Electric conductors, for a voltage > 80 V but <= 1.000 V, insulated, fitted with connectors, n.e.s. (other than of a kind used for telecommunications) 01/01/1998 31/12/2006 -854459 01/01/1988 31/12/2006 LIBEN Electric conductors, for a voltage > 80 V but <= 1.000 V, insulated, not fitted with connectors, n.e.s. 01/01/1988 31/12/2006 -85445910 01/01/1988 31/12/2006 LIBEN Electric wire and cable, for a voltage > 80 V but <= 1.000 V, insulated, not fitted with connectors, with individual conductor wires of a diameter > 0,51 mm, n.e.s. 01/01/1988 31/12/2006 -85445920 01/01/1994 31/12/2006 LIBEN Electric conductors for a voltage <= 80 V, insulated, not fitted with connectors, with individual conductor wires of a diameter <= 0,51 mm, n.e.s. 01/01/1994 31/12/2006 -85445980 01/01/1994 31/12/2006 LIBEN Electric conductors for a voltage > 80 V but < 1.000 V, insulated, not fitted with connectors, with individual conductor wires of a diameter <= 0,51 mm, n.e.s. 01/01/1994 31/12/2006 -85445991 01/01/1988 31/12/1993 LIBEN Electric conductors, for a voltage > 80 v but =< 1 000 v, not fitted with connectors, with individual conductor wires of a diameter =< 0.51 mm, insulated with rubber or other elastomers, incl. cross-linked materials, n.e.s. 01/01/1988 31/12/1993 -85445993 01/01/1988 31/12/1993 LIBEN Electric conductors, for a voltage > 80 v but =< 1 000 v, not fitted with connectors, with individual conductor wires of a diameter =< 0.51 mm, insulated with plastics other than elastomers or cross-linked materials, n.e.s. 01/01/1988 31/12/1993 -85445999 01/01/1988 31/12/1993 LIBEN Electric conductors, for a voltage > 80 v but =< 1 000 v, not fitted with connectors, with individual conductor wires of a diameter =< 0.51 mm, insulated with materials other than plastics or rubber, n.e.s. 01/01/1988 31/12/1993 -854460 01/01/1988 31/12/2500 LIBEN Electric conductors, for a voltage > 1.000 V, insulated, n.e.s. 01/01/1988 31/12/2500 -85446010 01/01/1994 31/12/2500 LIBEN Electric conductors for a voltage > 1.000 V, insulated, with copper conductors, n.e.s. 01/01/1994 31/12/2500 -85446011 01/01/1988 31/12/1993 LIBEN Electric conductors, for a voltage > 1 000 v, with copper conductors, insulated with rubber or other elastomers, incl. cross-linked materials, n.e.s. 01/01/1988 31/12/1993 -85446013 01/01/1988 31/12/1993 LIBEN Electric conductors, for a voltage > 1 000 v, with copper conductors, insulated with plastics other than elastomers, incl. cross-linked materials, n.e.s. 01/01/1988 31/12/1993 -85446019 01/01/1988 31/12/1993 LIBEN Electric conductors, for a voltage > 1 000 v, with copper conductors, insulated with materials other than plastics or rubber, n.e.s. 01/01/1988 31/12/1993 -85446090 01/01/1994 31/12/2500 LIBEN Electric conductors for a voltage > 1.000 V, insulated, not with copper conductors, n.e.s. 01/01/1994 31/12/2500 -85446091 01/01/1988 31/12/1993 LIBEN Electric conductors, for a voltage > 1 000 v, with conductors other than of copper, insulated with rubber or other elastomers, incl. cross-linked materials, n.e.s. 01/01/1988 31/12/1993 -85446093 01/01/1988 31/12/1993 LIBEN Electric conductors, for a voltage > 1 000 v, with conductors other than of copper, insulated with plastics other than elastomers, incl. cross-linked materials, n.e.s. 01/01/1988 31/12/1993 -85446099 01/01/1988 31/12/1993 LIBEN Electric conductors, for a voltage > 1 000 v, with conductors other than of copper, insulated with materials other than plastics or rubber, n.e.s. 01/01/1988 31/12/1993 -854470 01/01/1988 31/12/2500 LIBEN Optical fibre cables made up of individually sheathed fibres, whether or not containing electric conductors or fitted with connectors 01/01/1988 31/12/2500 -85447000 01/01/1988 31/12/2500 LIBEN Optical fibre cables made up of individually sheathed fibres, whether or not containing electric conductors or fitted with connectors 01/01/1988 31/12/2500 -8544I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8544; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8544I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8544; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8545 01/01/1988 31/12/2500 LIBEN Carbon electrodes, carbon brushes, lamp carbons, battery carbons and other articles of graphite or other carbon, with or without metal, of a kind used for electrical purposes 01/01/1988 31/12/2500 -854511 01/01/1988 31/12/2500 LIBEN Electrodes of graphite or other carbon, for electric furnaces 01/01/1988 31/12/2500 -85451100 01/01/1988 31/12/2500 LIBEN Electrodes of graphite or other carbon, for electric furnaces 01/01/1988 31/12/2500 -854519 01/01/1988 31/12/2500 LIBEN Electrodes of graphite or other carbon, for electrical purposes (excl. those used for furnaces) 01/01/1988 31/12/2500 -85451900 01/01/2011 31/12/2500 LIBEN Electrodes of graphite or other carbon, for electrical purposes (excl. those used for furnaces) 01/01/2011 31/12/2500 -85451910 01/01/1988 31/12/2010 LIBEN Electrodes of graphite or other carbon, for electrolysis installations 01/01/1988 31/12/2010 -85451990 01/01/1988 31/12/2010 LIBEN Electrodes of graphite or other carbon, for electrical purposes (excl. those for electrolysis installations or furnaces) 01/01/1988 31/12/2010 -854520 01/01/1988 31/12/2500 LIBEN Carbon brushes for electrical purposes 01/01/1988 31/12/2500 -85452000 01/01/1988 31/12/2500 LIBEN Carbon brushes for electrical purposes 01/01/1988 31/12/2500 -854590 01/01/1988 31/12/2500 LIBEN Articles of graphite or other carbon, for electrical purposes (excl. electrodes and carbon brushes) 01/01/1988 31/12/2500 -85459010 01/01/1988 31/12/2500 LIBEN Heating resistors for electrical purposes, of graphite or other carbon 01/01/1988 31/12/2500 -85459090 01/01/1988 31/12/2500 LIBEN Articles of graphite or other carbon, for electrical purposes (excl. electrodes, carbon brushes and heating resistors) 01/01/1988 31/12/2500 -8546 01/01/1988 31/12/2500 LIBEN Electrical insulators of any material (excl. insulating fittings) 01/01/1988 31/12/2500 -854610 01/01/1988 31/12/2500 LIBEN Electrical insulators of glass (excl. insulating fittings) 01/01/1988 31/12/2500 -85461000 01/01/1988 31/12/2500 LIBEN Electrical insulators of glass (excl. insulating fittings) 01/01/1988 31/12/2500 -854620 01/01/1988 31/12/2500 LIBEN Electrical insulators of ceramics (excl. insulating fittings) 01/01/1988 31/12/2500 -85462000 01/01/2011 31/12/2500 LIBEN Electrical insulators of ceramics (excl. insulating fittings) 01/01/2011 31/12/2500 -85462010 01/01/1988 31/12/2010 LIBEN Electrical insulators of ceramics, with no metal parts (excl. insulating fittings) 01/01/1988 31/12/2010 -85462091 01/01/1988 31/12/2010 LIBEN Electrical insulators of ceramics, with metal parts, for overhead power transmission or traction lines 01/01/1988 31/12/2010 -85462099 01/01/1988 31/12/2010 LIBEN Electrical insulators of ceramics, with metal parts (excl. those for overhead power transmission or traction lines and insulating fittings) 01/01/1988 31/12/2010 -854690 01/01/1988 31/12/2500 LIBEN Electrical insulators (excl. those of glass or ceramics and insulating fittings) 01/01/1988 31/12/2500 -85469010 01/01/1988 31/12/2500 LIBEN Electrical insulators of plastics (excl. insulating fittings) 01/01/1988 31/12/2500 -85469090 01/01/1988 31/12/2500 LIBEN Electrical insulators (excl. those of glass, ceramics or plastics and insulating fittings) 01/01/1988 31/12/2500 -8547 01/01/1988 31/12/2500 LIBEN Insulating fittings for electrical machines, appliances or equipment, being fittings wholly of insulating material apart from any minor components of metal, e.g., threaded sockets, incorporated during moulding solely for purposes of assembly (other than insulators of heading 8546); electrical conduit tubing and joints therefor, of base metal lined with insulating material 01/01/1988 31/12/2500 -854710 01/01/1988 31/12/2500 LIBEN Insulating fittings for electrical purposes, of ceramics 01/01/1988 31/12/2500 -85471000 01/01/2011 31/12/2500 LIBEN Insulating fittings for electrical purposes, of ceramics 01/01/2011 31/12/2500 -85471010 01/01/1988 31/12/2010 LIBEN Insulating fittings for electrical purposes, of ceramics, containing >= 80% by weight of metallic oxides 01/01/1988 31/12/2010 -85471090 01/01/1988 31/12/2010 LIBEN Insulating fittings for electrical purposes, of ceramics, containing < 80% by weight of metallic oxides 01/01/1988 31/12/2010 -854720 01/01/1988 31/12/2500 LIBEN Insulating fittings for electrical purposes, of plastics 01/01/1988 31/12/2500 -85472000 01/01/1988 31/12/2500 LIBEN Insulating fittings for electrical purposes, of plastics 01/01/1988 31/12/2500 -854790 01/01/1988 31/12/2500 LIBEN Insulating fittings for electrical purposes, of materials other than ceramics or plastics; electrical conduit tubing and joints therefor, of base metal lined with insulating material 01/01/1988 31/12/2500 -85479000 01/01/1988 31/12/2500 LIBEN Insulating fittings for electrical purposes, of materials other than ceramics or plastics; electrical conduit tubing and joints therefor, of base metal lined with insulating material 01/01/1988 31/12/2500 -8548 01/01/1988 31/12/2500 LIBEN Waste and scrap of primary cells, primary batteries and electric accumulators; spent primary cells, spent primary batteries and spent electric accumulators; electrical parts of machinery or apparatus, not specified or included elsewhere in chapter 85 01/01/1988 31/12/2500 -854800 01/01/1988 31/12/1995 LIBEN Electrical parts of machinery or apparatus not specified or included elsewhere in this chapter 01/01/1988 31/12/1995 -85480000 01/01/1988 31/12/1995 LIBEN Electrical parts of machinery or apparatus not specified or included elsewhere in this chapter 01/01/1988 31/12/1995 -854810 01/01/1996 31/12/2500 LIBEN Waste and scrap of primary cells, primary batteries and electric accumulators; spent primary cells, spent primary batteries and spent electric accumulators 01/01/1996 31/12/2500 -85481010 01/01/1996 31/12/2500 LIBEN Spent primary cells and spent primary batteries, electrical 01/01/1996 31/12/2500 -85481020 01/01/1996 31/12/1996 LIBEN Spent electric accumulators 01/01/1996 31/12/1996 -85481021 01/01/1997 31/12/2500 LIBEN Spent electric lead-acid accumulators 01/01/1997 31/12/2500 -85481029 01/01/1997 31/12/2500 LIBEN Spent electric accumulators (excl. lead-acid accumulators) 01/01/1997 31/12/2500 -85481090 01/01/1996 31/12/1996 LIBEN Waste and scrap of electric primary cells, primary batteries and accumulators 01/01/1996 31/12/1996 -85481091 01/01/1997 31/12/2500 LIBEN Waste and scrap of electric primary cells, primary batteries and accumulators, containing lead 01/01/1997 31/12/2500 -85481099 01/01/1997 31/12/2500 LIBEN Waste and scrap of electric primary cells, primary batteries and accumulators (excl. those containing lead) 01/01/1997 31/12/2500 -854890 01/01/1996 31/12/2500 LIBEN Electrical parts of machinery or apparatus, not specified or included elsewhere in chapter 85 01/01/1996 31/12/2500 -85489000 01/01/1996 31/12/1997 LIBEN Electrical parts of machinery or apparatus, not specified or included elsewhere in chapter 85 01/01/1996 31/12/1997 -85489010 01/01/1998 31/12/2006 LIBEN Memories in multicombinational forms such as stack D-RAMs and modules 01/01/1998 31/12/2006 -85489020 01/01/2007 31/12/2500 LIBEN Memories in multicombinational forms such as stack D-RAMs and modules 01/01/2007 31/12/2500 -85489030 01/01/2017 31/12/2500 LIBEN LED backlight modules, which are lighting sources that consist of one or more LEDs, and one or more connectors and are mounted on a printed circuit or other similar substrate, and other passive components, whether or not combined with optical components or protective diodes, and used as backlight illumination for LCDs, n.e.s. 01/01/2017 31/12/2500 -85489090 01/01/1998 31/12/2006 LIBEN Electrical parts of machinery or apparatus, not specified or included elsewhere in chapter 85 01/01/1998 31/12/2006 -85489090 01/01/2007 31/12/2016 LIBEN Electrical parts of machinery or apparatus, n.e.s. in chapter 85 01/01/2007 31/12/2016 -85489090 01/01/2017 31/12/2500 LIBEN Electrical parts of machinery or apparatus, n.e.s. in chapter 85 01/01/2017 31/12/2500 -8548I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8548; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -8548I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8548; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -85CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 85 01/01/2002 31/12/2500 -85CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 85 01/01/2002 31/12/2500 -85CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 85 01/01/2002 31/12/2500 -85II 01/01/1988 31/12/2500 LIBEN Components of complete industrial plants of chapter 85 01/01/1988 31/12/2500 -85III0 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 85; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -85III0 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -85III0 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 85 01/01/2006 31/12/2500 -85III000 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 85; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -85III000 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -85III000 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 85 01/01/2006 31/12/2500 -85III1 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 85; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -85III100 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 85; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -85III2 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 85; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -85III2 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/2000 31/12/2005 -85III200 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 85; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -85III200 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/2000 31/12/2005 -85III3 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 85; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -85III3 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; mechanical engineering and construction of means of transport; instrument engineering 01/01/2001 31/12/2005 -85III300 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 85; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -85III300 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; mechanical engineering and construction of means of transport; instrument engineering 01/01/2001 31/12/2005 -85III4 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/2005 -85III400 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/2005 -85III5 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; food, drink and tobacco industry 01/01/1988 31/12/2005 -85III500 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; food, drink and tobacco industry 01/01/1988 31/12/2005 -85III6 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; textile, leather, footwear and clothing industry 01/01/1988 31/12/2005 -85III600 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; textile, leather, footwear and clothing industry 01/01/1988 31/12/2005 -85III7 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 85; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -85III7 01/01/2002 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/2002 31/12/2005 -85III700 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 85; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -85III700 01/01/2002 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/2002 31/12/2005 -85III8 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -85III800 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -85III9 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -85III900 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 85; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -85MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -85MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -85MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -85PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 85 carried by post 01/01/1988 31/12/2500 -85PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 85 carried by post 01/01/1988 31/12/2500 -85PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 85 carried by post 01/01/1988 31/12/2500 -85SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 85 01/01/1988 31/12/2500 -85SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 85 and SITC section 0 01/01/1997 31/12/2001 -85SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 85 and SITC group 000 01/01/1997 31/12/2001 -85SSS7 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC section 7 01/01/1990 31/12/2500 -85SSS716 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC group 716 01/01/1997 31/12/2500 -85SSS737 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC group 737 01/01/1997 31/12/2500 -85SSS741 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC group 741 01/01/1997 31/12/2500 -85SSS761 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC group 761 01/01/1997 31/12/2500 -85SSS762 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC group 762 01/01/1997 31/12/2500 -85SSS763 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC group 763 01/01/1997 31/12/2500 -85SSS764 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC group 764 01/01/1990 31/12/2500 -85SSS771 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC group 771 01/01/1997 31/12/2500 -85SSS772 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC group 772 01/01/1997 31/12/2500 -85SSS773 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC group 773 01/01/1997 31/12/2500 -85SSS775 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC group 775 01/01/1997 31/12/2500 -85SSS776 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC group 776 01/01/1990 31/12/2500 -85SSS778 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC group 778 01/01/1990 31/12/2500 -85SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC section 8 01/01/1997 31/12/2500 -85SSS813 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC group 813 01/01/1997 31/12/2500 -85SSS898 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC group 898 01/01/1997 31/12/2500 -85SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 85 and SITC section 9 01/01/1988 31/12/1996 -85SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC section 9 01/01/1997 31/12/2500 -85SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 85 and SITC group 999 01/01/1988 31/12/1996 -85SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 85 and SITC group 999 01/01/1997 31/12/2500 -85VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 85 for the assembly of motor vehicles 01/01/1988 31/12/2500 -85VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 85 for the assembly of motor vehicles 01/01/1988 31/12/2500 -85VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 85 for the assembly of motor vehicles 01/01/1988 31/12/2500 -86 01/01/1988 31/12/2500 LIBEN RAILWAY OR TRAMWAY LOCOMOTIVES, ROLLING STOCK AND PARTS THEREOF; RAILWAY OR TRAMWAY TRACK FIXTURES AND FITTINGS AND PARTS THEREOF; MECHANICAL (INCLUDING ELECTROMECHANICAL) TRAFFIC SIGNALLING EQUIPMENT OF ALL KINDS 01/01/1988 31/12/2500 -8601 01/01/1988 31/12/2500 LIBEN Rail locomotives powered from an external source of electricity or by electric accumulators 01/01/1988 31/12/2500 -860110 01/01/1988 31/12/2500 LIBEN Rail locomotives powered from an external source of electricity 01/01/1988 31/12/2500 -86011000 01/01/1988 31/12/2500 LIBEN Rail locomotives powered from an external source of electricity 01/01/1988 31/12/2500 -860120 01/01/1988 31/12/2500 LIBEN Rail locomotives powered by electric accumulators 01/01/1988 31/12/2500 -86012000 01/01/1988 31/12/2500 LIBEN Rail locomotives powered by electric accumulators 01/01/1988 31/12/2500 -8602 01/01/1988 31/12/2500 LIBEN Rail locomotives (excl. those powered from an external source of electricity or by accumulators); locomotive tenders 01/01/1988 31/12/2500 -860210 01/01/1988 31/12/2500 LIBEN Diesel-electric locomotives 01/01/1988 31/12/2500 -86021000 01/01/1988 31/12/2500 LIBEN Diesel-electric locomotives 01/01/1988 31/12/2500 -860290 01/01/1988 31/12/2500 LIBEN Rail locomotives (excl. those powered from an external source of electricity or by accumulators and diesel-electric locomotives) 01/01/1988 31/12/2500 -86029000 01/01/1988 31/12/2500 LIBEN Rail locomotives (excl. those powered from an external source of electricity or by accumulators and diesel-electric locomotives) 01/01/1988 31/12/2500 -8603 01/01/1988 31/12/2500 LIBEN Self-propelled railway or tramway coaches, vans and trucks (excl. those of heading 8604) 01/01/1988 31/12/2500 -860310 01/01/1988 31/12/2500 LIBEN Self-propelled railway or tramway coaches, vans and trucks, powered from an external source of electricity (excl. those of heading 8604) 01/01/1988 31/12/2500 -86031000 01/01/1988 31/12/2500 LIBEN Self-propelled railway or tramway coaches, vans and trucks, powered from an external source of electricity (excl. those of heading 8604) 01/01/1988 31/12/2500 -860390 01/01/1988 31/12/2500 LIBEN Self-propelled railway or tramway coaches, vans and trucks (excl. those powered from an external source of electricity and those of heading 8604) 01/01/1988 31/12/2500 -86039000 01/01/1988 31/12/2500 LIBEN Self-propelled railway or tramway coaches, vans and trucks (excl. those powered from an external source of electricity and those of heading 8604) 01/01/1988 31/12/2500 -8603S7 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 8603 and SITC section 7 01/01/2006 31/12/2500 -8603S791 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 8603 and SITC group 791 01/01/2006 31/12/2500 -8604 01/01/1988 31/12/2500 LIBEN Railway or tramway maintenance or service vehicles, whether or not self-propelled, e.g., workshops, cranes, ballast tampers, trackliners, testing coaches and track inspection vehicles 01/01/1988 31/12/2500 -860400 01/01/1988 31/12/2500 LIBEN Railway or tramway maintenance or service vehicles, whether or not self-propelled, e.g., workshops, cranes, ballast tampers, trackliners, testing coaches and track inspection vehicles 01/01/1988 31/12/2500 -86040000 01/01/1988 31/12/2500 LIBEN Railway or tramway maintenance or service vehicles, whether or not self-propelled, e.g., workshops, cranes, ballast tampers, trackliners, testing coaches and track inspection vehicles 01/01/1988 31/12/2500 -8605 01/01/1988 31/12/2500 LIBEN Railway or tramway passenger coaches, luggage vans, post office coaches and other special purpose railway or tramway coaches (excl. self-propelled railway or tramway coaches, vans and trucks, railway or tramway maintenance or service vehicles and goods vans and wagons) 01/01/1988 31/12/2500 -860500 01/01/1988 31/12/2500 LIBEN Railway or tramway passenger coaches, luggage vans, post office coaches and other special purpose railway or tramway coaches (excl. self-propelled railway or tramway coaches, vans and trucks, railway or tramway maintenance or service vehicles and goods vans and wagons) 01/01/1988 31/12/2500 -86050000 01/01/1988 31/12/2500 LIBEN Railway or tramway passenger coaches, luggage vans, post office coaches and other special purpose railway or tramway coaches (excl. self-propelled railway or tramway coaches, vans and trucks, railway or tramway maintenance or service vehicles and goods vans and wagons) 01/01/1988 31/12/2500 -8605I3 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8605; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -8605I300 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 8605; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -8606 01/01/1988 31/12/2500 LIBEN Railway or tramway goods vans and wagons (excl. self-propelled and luggage vans and post office coaches) 01/01/1988 31/12/2500 -860610 01/01/1988 31/12/2500 LIBEN Railway or tramway tank wagons and the like (excl. self-propelled) 01/01/1988 31/12/2500 -86061000 01/01/1988 31/12/2500 LIBEN Railway or tramway tank wagons and the like (excl. self-propelled) 01/01/1988 31/12/2500 -860620 01/01/1988 31/12/2006 LIBEN Railway or tramway insulated or refrigerated goods vans and wagons (excl. tank wagons and the like of subheading 8606.10) 01/01/1988 31/12/2006 -86062000 01/01/1988 31/12/2006 LIBEN Railway or tramway insulated or refrigerated goods vans and wagons (excl. tank wagons and the like of subheading 8606.10) 01/01/1988 31/12/2006 -860630 01/01/1988 31/12/2500 LIBEN Railway or tramway self-discharging goods vans and wagons (excl. tank wagons and the like and insulated or refrigerated goods vans and wagons) 01/01/1988 31/12/2500 -86063000 01/01/1988 31/12/2500 LIBEN Railway or tramway self-discharging goods vans and wagons (excl. tank wagons and the like and insulated or refrigerated goods vans and wagons) 01/01/1988 31/12/2500 -860691 01/01/1988 31/12/2500 LIBEN Railway or tramway goods vans and wagons, covered and closed (excl. self-discharging goods vans and wagons and tank wagons and the like) 01/01/1988 31/12/2500 -86069110 01/01/1988 31/12/2500 LIBEN Railway or tramway goods vans and wagons, covered and closed, specially designed for the transport of highly radioactive materials [Euratom] (excl. tank wagons and the like and insulated, refrigerated or self-discharging goods vans and wagons) 01/01/1988 31/12/2500 -86069180 01/01/2007 31/12/2500 LIBEN Railway or tramway goods vans and wagons, covered and closed (excl. those specially designed for the transport of highly radioactive materials, tank wagons and the like and self-discharging goods vans and wagons) 01/01/2007 31/12/2500 -86069190 01/01/1988 31/12/2006 LIBEN Railway or tramway goods vans and wagons, covered and closed (excl. those specially designed for the transport of highly radioactive materials, tank wagons and the like and insulated, refrigerated or self-discharging goods vans and wagons) 01/01/1988 31/12/2006 -860692 01/01/1988 31/12/2500 LIBEN Railway or tramway goods vans and wagons, open, with non-removable sides of a height > 60 cm (excl. self-discharging wagons) 01/01/1988 31/12/2500 -86069200 01/01/1988 31/12/2500 LIBEN Railway or tramway goods vans and wagons, open, with non-removable sides of a height > 60 cm (excl. self-discharging wagons) 01/01/1988 31/12/2500 -860699 01/01/1988 31/12/2500 LIBEN Railway or tramway goods vans and wagons (excl. those specially designed for the transport of highly radioactive materials, tank wagons and the like, insulated, refrigerated or self-discharging goods vans and wagons and open goods vans and wagons with non-removable sides of a height > 60 cm) 01/01/1988 31/12/2500 -86069900 01/01/1988 31/12/2500 LIBEN Railway or tramway goods vans and wagons (excl. those specially designed for the transport of highly radioactive materials, tank wagons and the like, insulated, refrigerated or self-discharging goods vans and wagons and open goods vans and wagons with non-removable sides of a height > 60 cm) 01/01/1988 31/12/2500 -8606S7 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8606 and SITC section 7 01/01/1997 31/12/2500 -8606S791 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8606 and SITC group 791 01/01/1997 31/12/2500 -8607 01/01/1988 31/12/2500 LIBEN Parts of railway or tramway locomotives or rolling stock, n.e.s. 01/01/1988 31/12/2500 -860711 01/01/1988 31/12/2500 LIBEN Driving bogies and bissel-bogies for railway or tramway locomotives or rolling stock 01/01/1988 31/12/2500 -86071100 01/01/1988 31/12/2500 LIBEN Driving bogies and bissel-bogies for railway or tramway locomotives or rolling stock 01/01/1988 31/12/2500 -860712 01/01/1988 31/12/2500 LIBEN Bogies and driving bissel-bogies for railway or tramway locomotives or rolling stock (excl. driving bogies) 01/01/1988 31/12/2500 -86071200 01/01/1988 31/12/2500 LIBEN Bogies and driving bissel-bogies for railway or tramway locomotives or rolling stock (excl. driving bogies) 01/01/1988 31/12/2500 -860719 01/01/1988 31/12/2500 LIBEN Axles, for electrical purposes, and wheels and parts thereof for railway or tramway locomotives or rolling stock; parts of bogies and bissel-bogies, n.e.s. 01/01/1988 31/12/2500 -86071901 01/01/1990 31/12/2010 LIBEN Axles, assembled or not; wheels and parts thereof, of cast iron or cast steel, of railway or tramway locomotives or rolling stock 01/01/1990 31/12/2010 -86071910 01/01/2011 31/12/2500 LIBEN Axles, wheels and wheel parts, of railway or tramway locomotives or rolling stock, n.e.s. 01/01/2011 31/12/2500 -86071911 01/01/1988 31/12/2010 LIBEN Axles, assembled or not, wheels and parts thereof, of closed-die forged steel, for railway or tramway locomotives or rolling stock 01/01/1988 31/12/2010 -86071918 01/01/1990 31/12/2010 LIBEN Axles, assembled or not; wheels and parts thereof (excl. 8607.19.01 and 8607.19.11), of railway or tramway locomotives or rolling stock 01/01/1990 31/12/2010 -86071919 01/01/1988 31/12/1989 LIBEN Axles, assembled or not, wheels and parts thereof, for railway or tramway locomotives or rolling-stock n.e.s. 01/01/1988 31/12/1989 -86071990 01/01/1988 31/12/1989 LIBEN Parts of bogies and bissel-bogies for railway or tramway locomotives or rolling-stock 01/01/1988 31/12/1989 -86071990 01/01/2011 31/12/2500 LIBEN Parts of bogies, bissel-bogies and the like, of railway or tramway locomotives or rolling stock, n.e.s. 01/01/2011 31/12/2500 -86071991 01/01/1990 31/12/2010 LIBEN Parts of bogies, bissel-bogies and the like, of railway or tramway locomotives or rolling stock, of cast iron or cast steel, n.e.s. 01/01/1990 31/12/2010 -86071999 01/01/1990 31/12/2010 LIBEN Parts of bogies, bissel-bogies and the like, of railway or tramway locomotives or rolling stock (excl. of cast iron or cast steel) 01/01/1990 31/12/2010 -860721 01/01/1988 31/12/2500 LIBEN Air brakes and parts thereof for railway or tramway locomotives or rolling stock, n.e.s. 01/01/1988 31/12/2500 -86072100 01/01/1988 31/12/1989 LIBEN Air brakes and parts thereof for railway or tramway locomotives or rolling-stock n.e.s. 01/01/1988 31/12/1989 -86072110 01/01/1990 31/12/2500 LIBEN Air brakes and parts thereof, of railway or tramway locomotives or rolling stock, of cast iron or cast steel 01/01/1990 31/12/2500 -86072190 01/01/1990 31/12/2500 LIBEN Air brakes and parts thereof, of railway or tramway locomotives or rolling stock (excl. of cast iron or cast steel) 01/01/1990 31/12/2500 -860729 01/01/1988 31/12/2500 LIBEN Brakes (other than air brakes), and parts thereof, for railway or tramway locomotives or rolling stock, n.e.s. 01/01/1988 31/12/2500 -86072900 01/01/1988 31/12/1989 LIBEN Brakes, other than air brakes, and parts thereof, for railway or tramway locomotives or rolling-stock n.e.s. 01/01/1988 31/12/1989 -86072900 01/01/2011 31/12/2500 LIBEN Brakes (other than air brakes), and parts thereof, for railway or tramway locomotives or rolling stock, n.e.s. 01/01/2011 31/12/2500 -86072910 01/01/1990 31/12/2010 LIBEN Brakes and parts thereof, of cast iron or cast steel (excl. air brakes), of railway or tramway locomotives or rolling stock 01/01/1990 31/12/2010 -86072990 01/01/1990 31/12/2010 LIBEN Brakes and parts thereof (excl. air brakes and of cast iron or cast steel), of railway or tramway locomotives or rolling stock, n.e.s. 01/01/1990 31/12/2010 -860730 01/01/1988 31/12/2500 LIBEN Hooks and other coupling devices, buffers, and parts thereof, for railway or tramway locomotives or rolling stock, n.e.s. 01/01/1988 31/12/2500 -86073000 01/01/2011 31/12/2500 LIBEN Hooks and other coupling devices, buffers, and parts thereof, for railway or tramway locomotives or rolling stock, n.e.s. 01/01/2011 31/12/2500 -86073001 01/01/1990 31/12/2010 LIBEN Hooks and other coupling devices, buffers, and parts thereof, of cast iron or cast steel, of railway or tramway locomotives or rolling stock, n.e.s. 01/01/1990 31/12/2010 -86073010 01/01/1988 31/12/1994 LIBEN Hooks and other coupling devices, buffers, and parts thereof, of closed-die forged steel, for railway or tramway locomotives or rolling-stock n.e.s. 01/01/1988 31/12/1994 -86073080 01/01/1990 31/12/1994 LIBEN Hooks and other coupling devices, buffers, and parts thereof, (excl. 8607.30-01 and 8607.30-10), of railway or tramway locomotives or rolling-stock 01/01/1990 31/12/1994 -86073090 01/01/1988 31/12/1989 LIBEN Hooks and other coupling devices, buffers, and parts thereof, for railway or tramway locomotives or rolling-stock n.e.s. 01/01/1988 31/12/1989 -86073099 01/01/1995 31/12/2010 LIBEN Hooks and other coupling devices, buffers and parts thereof, for railway or tramway locomotives or rolling stock, n.e.s. 01/01/1995 31/12/2010 -860791 01/01/1988 31/12/2500 LIBEN Parts of railway or tramway locomotives, n.e.s. 01/01/1988 31/12/2500 -86079110 01/01/1988 31/12/1989 LIBEN Axle-boxes and parts thereof for railway or tramway locomotives n.e.s. 01/01/1988 31/12/1989 -86079110 01/01/1995 31/12/2500 LIBEN Axle-boxes and parts thereof, for locomotives, n.e.s. 01/01/1995 31/12/2500 -86079111 01/01/1990 31/12/1994 LIBEN Axle-boxes and parts thereof of cast iron or cast steel, of railway or tramway locomotives 01/01/1990 31/12/1994 -86079119 01/01/1990 31/12/1994 LIBEN Axle-boxes and parts thereof (excl. of cast iron or cast steel), of railway or tramway locomotives 01/01/1990 31/12/1994 -86079190 01/01/1988 31/12/1989 LIBEN Parts of railway or tramway locomotives n.e.s. 01/01/1988 31/12/1989 -86079190 01/01/2011 31/12/2500 LIBEN Parts of railway or tramway locomotives, n.e.s. 01/01/2011 31/12/2500 -86079191 01/01/1990 31/12/2010 LIBEN Parts of railway or tramway locomotives, of cast iron or cast steel, n.e.s. 01/01/1990 31/12/2010 -86079199 01/01/1990 31/12/2010 LIBEN Parts of railway or tramway locomotives, n.e.s. 01/01/1990 31/12/2010 -860799 01/01/1988 31/12/2500 LIBEN Parts of rolling stock of heading 8603, 8604, 8605 or 8606, n.e.s. 01/01/1988 31/12/2500 -86079910 01/01/1988 31/12/1989 LIBEN Axle-boxes and parts thereof for rolling-stock of headings 8603, 8604, 8605 or 8606, n.e.s. 01/01/1988 31/12/1989 -86079910 01/01/1995 31/12/2500 LIBEN Axle-boxes and parts thereof, of railway or tramway locomotives or rolling stock of heading 8603, 8604, 8605 or 8606, n.e.s. 01/01/1995 31/12/2500 -86079911 01/01/1990 31/12/1994 LIBEN Axle-boxes and parts thereof of cast iron or cast steel, of rolling-stock, (excl. locomotives) 01/01/1990 31/12/1994 -86079919 01/01/1990 31/12/1994 LIBEN Axle-boxes and parts thereof (excl. of cast iron or cast steel), of rolling-stock, (excl. locomotives) 01/01/1990 31/12/1994 -86079930 01/01/1988 31/12/2010 LIBEN Bodies and parts thereof, for rolling stock of heading 8603, 8604, 8605 or 8606, n.e.s. 01/01/1988 31/12/2010 -86079950 01/01/1988 31/12/1989 LIBEN Chassis and parts thereof for rolling-stock of headings 8603, 8604, 8605 or 8606, n.e.s. 01/01/1988 31/12/1989 -86079950 01/01/1995 31/12/2010 LIBEN Chassis and parts thereof, of railway or tramway locomotives or rolling stock of heading 8603, 8604, 8605 or 8606, n.e.s. 01/01/1995 31/12/2010 -86079951 01/01/1990 31/12/1994 LIBEN Chassis and parts thereof of cast iron or cast steel, of rolling-stock 01/01/1990 31/12/1994 -86079959 01/01/1990 31/12/1994 LIBEN Chassis and parts thereof (excl. of cast iron or cast steel), of rolling-stock 01/01/1990 31/12/1994 -86079980 01/01/2011 31/12/2500 LIBEN Parts of rolling stock of heading 8603, 8604, 8605 or 8606, n.e.s. 01/01/2011 31/12/2500 -86079990 01/01/1988 31/12/2010 LIBEN Parts of rolling stock of heading 8603, 8604, 8605 or 8606, n.e.s. 01/01/1988 31/12/2010 -8608 01/01/1988 31/12/2500 LIBEN Railway or tramway track fixtures and fittings (excl. sleepers of wood, concrete or steel, sections of track and other track fixtures not yet assembled and railway or tramway track construction material); mechanical, incl. electromechanical, signalling, safety or traffic control equipment for railways, tramways, roads, inland waterways, parking facilities, port installations or airfields; parts of the foregoing 01/01/1988 31/12/2500 -860800 01/01/1988 31/12/2500 LIBEN Railway or tramway track fixtures and fittings (excl. sleepers of wood, concrete or steel, sections of track and other track fixtures not yet assembled and railway or tramway track construction material); mechanical, incl. electromechanical, signalling, safety or traffic control equipment for railways, tramways, roads, inland waterways, parking facilities, port installations or airfields; parts of the foregoing 01/01/1988 31/12/2500 -86080000 01/01/2011 31/12/2500 LIBEN Railway or tramway track fixtures and fittings (excl. sleepers of wood, concrete or steel, sections of track and other track fixtures not yet assembled and railway or tramway track construction material); mechanical, incl. electromechanical, signalling, safety or traffic control equipment for railways, tramways, roads, inland waterways, parking facilities, port installations or airfields; parts of the foregoing 01/01/2011 31/12/2500 -86080010 01/01/1988 31/12/2010 LIBEN Track fixtures and fittings and mechanical , including electromechanical, signalling, safety or traffic control equipment for railways or tramways (excl. sleepers of wood, concrete or steel, sections of track and other track fixtures not yet assembled and track construction material) 01/01/1988 31/12/2010 -86080030 01/01/1988 31/12/2010 LIBEN Mechanical, incl. electromechanical, traffic signalling, safety or control equipment for roads, inland waterways, parking facilities, port installations or airfields 01/01/1988 31/12/2010 -86080090 01/01/1988 31/12/1989 LIBEN Parts of track fixtures and fittings and mechanical signalling, safety or traffic control equipment of all kinds n.e.s. 01/01/1988 31/12/1989 -86080090 01/01/1997 31/12/2010 LIBEN Parts of railway or tramway track fixtures and fittings, mechanical, incl. electromechanical, signalling, safety or traffic control equipment for railways, tramways, roads, inland waterways, parking facilities, port installations or airfields 01/01/1997 31/12/2010 -86080091 01/01/1990 31/12/1996 LIBEN Parts of cast iron or cast steel, of railway or tramway track fixtures and fittings; mechanical -including electromechanical- signalling, safety or traffic control equipment for railways, tramways, roads, inland waterways, parking facilities, port installations or airfields 01/01/1990 31/12/1996 -86080099 01/01/1990 31/12/1996 LIBEN Parts (excl. of cast iron or cast steel), of railway or tramway track fixtures and fittings; mechanical -including electromechanical- signalling, safety or traffic control equipment for railways, tramways, roads, inland waterways, parking facilities, port installations or airfields 01/01/1990 31/12/1996 -8609 01/01/1988 31/12/2500 LIBEN Containers, incl. containers for the transport of fluids, specially designed and equipped for carriage by one or more modes of transport 01/01/1988 31/12/2500 -860900 01/01/1988 31/12/2500 LIBEN Containers, incl. containers for the transport of fluids, specially designed and equipped for carriage by one or more modes of transport 01/01/1988 31/12/2500 -86090010 01/01/1988 31/12/2500 LIBEN Containers with an anti-radiation lead covering, for the transport of radioactive materials [Euratom] 01/01/1988 31/12/2500 -86090090 01/01/1988 31/12/2500 LIBEN Containers specially designed and equipped for carriage by one or more modes of transport (excl. those with an anti-radiation lead covering for the transport of radioactive materials) 01/01/1988 31/12/2500 -86CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 86 01/01/2002 31/12/2500 -86CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 86 01/01/2002 31/12/2500 -86CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 86 01/01/2002 31/12/2500 -86II 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86 01/01/1988 31/12/1992 -86II 01/01/1997 31/12/2500 LIBEN Components of complete industrial plants of chapter 86 01/01/1997 31/12/2500 -86III0 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -86III0 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 86 01/01/2006 31/12/2500 -86III000 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -86III000 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 86 01/01/2006 31/12/2500 -86III1 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -86III100 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -86III2 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -86III200 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -86III3 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -86III3 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 86; mechanical engineering and construction of means of transport; instrument engineering 01/01/1997 31/12/2005 -86III300 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -86III300 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 86; mechanical engineering and construction of means of transport; instrument engineering 01/01/1997 31/12/2005 -86III4 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -86III400 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -86III5 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; food, drink and tobacco industry 01/01/1988 31/12/1992 -86III500 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; food, drink and tobacco industry 01/01/1988 31/12/1992 -86III6 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -86III600 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -86III7 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -86III700 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -86III8 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/1992 -86III8 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 86; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers and goods, storage and warehousing) and communications 01/01/1997 31/12/2005 -86III800 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/1992 -86III800 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 86; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers and goods, storage and warehousing) and communications 01/01/1997 31/12/2005 -86III9 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/1992 -86III9 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of chapter 86; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/2000 31/12/2005 -86III900 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 86; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/1992 -86III900 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of chapter 86; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/2000 31/12/2005 -86MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -86MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -86MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -86SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 86 01/01/1988 31/12/2500 -86SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 86 and SITC section 0 01/01/1997 31/12/2001 -86SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 86 and SITC group 000 01/01/1997 31/12/2001 -86SSS7 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 86 and SITC section 7 01/01/1997 31/12/2500 -86SSS786 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 86 and SITC group 786 01/01/1997 31/12/2500 -86SSS791 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 86 and SITC group 791 01/01/1997 31/12/2500 -86SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 86 and SITC section 9 01/01/1988 31/12/1996 -86SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 86 and SITC section 9 01/01/1997 31/12/2500 -86SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 86 and SITC group 999 01/01/1988 31/12/1996 -86SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 86 and SITC group 999 01/01/1997 31/12/2500 -87 01/01/1988 31/12/2500 LIBEN VEHICLES OTHER THAN RAILWAY OR TRAMWAY ROLLING STOCK, AND PARTS AND ACCESSORIES THEREOF 01/01/1988 31/12/2500 -8701 01/01/1988 31/12/2500 LIBEN Tractors (other than tractors of heading 8709) 01/01/1988 31/12/2500 -870110 01/01/1988 31/12/2500 LIBEN Pedestrian-controlled agricultural tractors and similar tractors for industry (excl. tractor units for articulated lorries) 01/01/1988 31/12/2500 -87011000 01/01/2000 31/12/2500 LIBEN Pedestrian-controlled agricultural tractors and similar tractors for industry (excl. tractor units for articulated lorries) 01/01/2000 31/12/2500 -87011010 01/01/1988 31/12/1999 LIBEN Pedestrian-controlled agricultural tractors and similar tractors for industry, of a power <= 4 kW 01/01/1988 31/12/1999 -87011090 01/01/1988 31/12/1999 LIBEN Pedestrian-controlled tractors, of a power > 4 kW 01/01/1988 31/12/1999 -870120 01/01/1988 31/12/2500 LIBEN Road tractors for semi-trailers 01/01/1988 31/12/2500 -87012010 01/01/1988 31/12/2500 LIBEN Road tractors for semi-trailers, new 01/01/1988 31/12/2500 -87012090 01/01/1988 31/12/2500 LIBEN Road tractors for semi-trailers, used 01/01/1988 31/12/2500 -870130 01/01/1988 31/12/2500 LIBEN Track-laying tractors (excl. pedestrian-controlled) 01/01/1988 31/12/2500 -87013000 01/01/1988 31/12/1996 LIBEN Track-laying tractors (excl. pedestrian-controlled) 01/01/1988 31/12/1996 -87013000 01/01/2009 31/12/2500 LIBEN Track-laying tractors (excl. pedestrian-controlled) 01/01/2009 31/12/2500 -87013010 01/01/1997 31/12/2008 LIBEN Snowgroomers 01/01/1997 31/12/2008 -87013090 01/01/1997 31/12/2008 LIBEN Track-laying tractors (excl. pedestrian-controlled and snowgroomers) 01/01/1997 31/12/2008 -870190 01/01/1988 31/12/2016 LIBEN Tractors (excl. those of heading 8709, pedestrian-controlled tractors, road tractors for semi-trailers and track-laying tractors) 01/01/1988 31/12/2016 -87019011 01/01/1988 31/12/2016 LIBEN Agricultural tractors and forestry tractors, wheeled, new, of an engine power <= 18 kW (excl. pedestrian-controlled tractors) 01/01/1988 31/12/2016 -87019015 01/01/1988 31/12/1998 LIBEN Agricultural tractors and forestry tractors, wheeled, new, of an engine power > 18 kW but <= 25 kW (excl. pedestrian-controlled tractors) 01/01/1988 31/12/1998 -87019020 01/01/1999 31/12/2016 LIBEN Agricultural tractors and forestry tractors, wheeled, new, of an engine power > 18 kW but <= 37 kW (excl. pedestrian-controlled tractors) 01/01/1999 31/12/2016 -87019021 01/01/1988 31/12/1998 LIBEN Agricultural tractors and forestry tractors, wheeled, new, of an engine power > 25 kW but <= 37 kW (excl. pedestrian-controlled tractors) 01/01/1988 31/12/1998 -87019025 01/01/1988 31/12/2016 LIBEN Agricultural tractors and forestry tractors, wheeled, new, of an engine power > 37 kW but <= 59 kW (excl. pedestrian-controlled tractors) 01/01/1988 31/12/2016 -87019031 01/01/1988 31/12/2016 LIBEN Agricultural tractors and forestry tractors, wheeled, new, of an engine power > 59 kW but <= 75 kW (excl. tractor units for articulated lorries) 01/01/1988 31/12/2016 -87019035 01/01/1988 31/12/2016 LIBEN Agricultural tractors and forestry tractors, wheeled, new, of an engine power > 75 kW but <= 90 kW (excl. tractor units for articulated lorries) 01/01/1988 31/12/2016 -87019039 01/01/1988 31/12/2016 LIBEN Agricultural tractors and forestry tractors, wheeled, new, of an engine power > 90 kW (excl. tractor units for articulated lorries) 01/01/1988 31/12/2016 -87019050 01/01/1988 31/12/2016 LIBEN Agricultural tractors and forestry tractors, wheeled, used (excl. tractor units for articulated lorries and pedestrian-controlled tractors) 01/01/1988 31/12/2016 -87019090 01/01/1988 31/12/2016 LIBEN Tractors, incl. tractor units for articulated lorries (excl. tractors of heading 8709, pedestrian-controlled tractors, road tractors for semi-trailers, track-laying tractors and agricultural and forestry tractors) 01/01/1988 31/12/2016 -870191 01/01/2017 31/12/2500 LIBEN Tractors, of an engine power <= 18 kW (excl. those of heading 8709, pedestrian-controlled tractors, road tractors for semi-trailers and track-laying tractors) 01/01/2017 31/12/2500 -87019110 01/01/2017 31/12/2500 LIBEN Agricultural tractors and forestry tractors, wheeled, of an engine power <= 18 kW (excl. pedestrian-controlled tractors) 01/01/2017 31/12/2500 -87019190 01/01/2017 31/12/2500 LIBEN Tractors, of an engine power <= 18 kW (excl. those of heading 8709, pedestrian-controlled tractors, road tractors for semi-trailers, track-laying tractors and wheeled agricultural/forestry tractors) 01/01/2017 31/12/2500 -870192 01/01/2017 31/12/2500 LIBEN Tractors, of an engine power > 18 kW but <= 37 kW (excl. those of heading 8709, pedestrian-controlled tractors, road tractors for semi-trailers and track-laying tractors) 01/01/2017 31/12/2500 -87019210 01/01/2017 31/12/2500 LIBEN Agricultural tractors and forestry tractors, wheeled, of an engine power > 18 kW but <= 37 kW (excl. pedestrian-controlled tractors) 01/01/2017 31/12/2500 -87019290 01/01/2017 31/12/2500 LIBEN Tractors, of an engine power > 18 kW but <= 37 kW (excl. those of heading 8709, pedestrian-controlled tractors, road tractors for semi-trailers, track-laying tractors and wheeled agricultural/forestry tractors) 01/01/2017 31/12/2500 -870193 01/01/2017 31/12/2500 LIBEN Tractors, of an engine power > 37 kW but <= 75 kW (excl. those of heading 8709, pedestrian-controlled tractors, road tractors for semi-trailers and track-laying tractors) 01/01/2017 31/12/2500 -87019310 01/01/2017 31/12/2500 LIBEN Agricultural tractors and forestry tractors, wheeled, of an engine power > 37 kW but <= 75 kW (excl. pedestrian-controlled tractors) 01/01/2017 31/12/2500 -87019390 01/01/2017 31/12/2500 LIBEN Tractors, of an engine power > 37 kW but <= 75 kW (excl. those of heading 8709, pedestrian-controlled tractors, road tractors for semi-trailers, track-laying tractors and wheeled agricultural/forestry tractors) 01/01/2017 31/12/2500 -870194 01/01/2017 31/12/2500 LIBEN Tractors, of an engine power > 75 kW but <= 130 kW (excl. those of heading 8709, pedestrian-controlled tractors, road tractors for semi-trailers and track-laying tractors) 01/01/2017 31/12/2500 -87019410 01/01/2017 31/12/2500 LIBEN Agricultural tractors and forestry tractors, wheeled, of an engine power > 75 kW but <= 130 kW (excl. pedestrian-controlled tractors) 01/01/2017 31/12/2500 -87019490 01/01/2017 31/12/2500 LIBEN Tractors, of an engine power > 75 kW but <= 130 kW (excl. those of heading 8709, pedestrian-controlled tractors, road tractors for semi-trailers, track-laying tractors and wheeled agricultural/forestry tractors) 01/01/2017 31/12/2500 -870195 01/01/2017 31/12/2500 LIBEN Tractors, of an engine power > 130 kW (excl. those of heading 8709, pedestrian-controlled tractors, road tractors for semi-trailers and track-laying tractors) 01/01/2017 31/12/2500 -87019510 01/01/2017 31/12/2500 LIBEN Agricultural tractors and forestry tractors, wheeled, of an engine power > 130 kW (excl. pedestrian-controlled tractors) 01/01/2017 31/12/2500 -87019590 01/01/2017 31/12/2500 LIBEN Tractors, of an engine power > 130 kW (excl. those of heading 8709, pedestrian-controlled tractors, road tractors for semi-trailers, track-laying tractors and wheeled agricultural/forestry tractors) 01/01/2017 31/12/2500 -8702 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver 01/01/1988 31/12/2500 -870210 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with only diesel engine 01/01/1988 31/12/2500 -87021011 01/01/1988 31/12/2016 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine", of a cylinder capacity of > 2.500 cm³, new 01/01/1988 31/12/2016 -87021011 01/01/2017 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with only diesel engine, of a cylinder capacity of > 2.500 cm³, new 01/01/2017 31/12/2500 -87021019 01/01/1988 31/12/2016 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine", of a cylinder capacity of > 2.500 cm³, used 01/01/1988 31/12/2016 -87021019 01/01/2017 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with only diesel engine, of a cylinder capacity of > 2.500 cm³, used 01/01/2017 31/12/2500 -87021091 01/01/1988 31/12/2016 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine", of a cylinder capacity of <= 2.500 cm³, new 01/01/1988 31/12/2016 -87021091 01/01/2017 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with only diesel engine, of a cylinder capacity of <= 2.500 cm³, new 01/01/2017 31/12/2500 -87021099 01/01/1988 31/12/2016 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine", of a cylinder capacity of <= 2.500 cm³, used 01/01/1988 31/12/2016 -87021099 01/01/2017 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with only diesel engine, of a cylinder capacity of <= 2.500 cm³, used 01/01/2017 31/12/2500 -870220 01/01/2017 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with both diesel engine and electric motor as motors for propulsion 01/01/2017 31/12/2500 -87022010 01/01/2017 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with both diesel engine and electric motor as motors for propulsion, of a cylinder capacity of > 2.500 cm³ 01/01/2017 31/12/2500 -87022090 01/01/2017 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with both diesel engine and electric motor as motors for propulsion, of a cylinder capacity of <= 2.500 cm³ 01/01/2017 31/12/2500 -870230 01/01/2017 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with both spark-ignition internal combustion reciprocating piston engine and electric motor as motors for propulsion 01/01/2017 31/12/2500 -87023010 01/01/2017 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with both spark-ignition internal combustion reciprocating piston engine and electric motor as motors for propulsion, of a cylinder capacity of > 2.800 cm³ 01/01/2017 31/12/2500 -87023090 01/01/2017 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with both spark-ignition internal combustion reciprocating piston engine and electric motor as motors for propulsion, of a cylinder capacity of <= 2.800 cm³ 01/01/2017 31/12/2500 -870240 01/01/2017 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with only electric motor for propulsion 01/01/2017 31/12/2500 -87024000 01/01/2017 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with only electric motor for propulsion 01/01/2017 31/12/2500 -870290 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver (excl. with diesel engine or electric motor for propulsion) 01/01/1988 31/12/2500 -87029011 01/01/1988 31/12/2016 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with spark-ignition internal combustion piston engine, of a cylinder capacity of > 2.800 cm³, new 01/01/1988 31/12/2016 -87029011 01/01/2017 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with spark-ignition internal combustion piston engine, of a cylinder capacity of > 2.800 cm³, new (excl. with electric motor for propulsion) 01/01/2017 31/12/2500 -87029019 01/01/1988 31/12/2016 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with spark-ignition internal combustion piston engine, of a cylinder capacity of > 2.800 cm³, used 01/01/1988 31/12/2016 -87029019 01/01/2017 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with spark-ignition internal combustion piston engine, of a cylinder capacity of > 2.800 cm³, used (excl. with electric motor for propulsion) 01/01/2017 31/12/2500 -87029031 01/01/1988 31/12/2016 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with spark-ignition internal combustion piston engine, of a cylinder capacity of <= 2.800 cm³, new 01/01/1988 31/12/2016 -87029031 01/01/2017 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with spark-ignition internal combustion piston engine, of a cylinder capacity of <= 2.800 cm³, new (excl. with electric motor for propulsion) 01/01/2017 31/12/2500 -87029039 01/01/1988 31/12/2016 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with spark-ignition internal combustion piston engine, of a cylinder capacity of <= 2.800 cm³, used 01/01/1988 31/12/2016 -87029039 01/01/2017 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, with spark-ignition internal combustion piston engine, of a cylinder capacity of <= 2.800 cm³, used (excl. with electric motor for propulsion) 01/01/2017 31/12/2500 -87029090 01/01/1988 31/12/2016 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, not with internal combustion piston engine 01/01/1988 31/12/2016 -87029090 01/01/2017 31/12/2500 LIBEN Motor vehicles for the transport of >= 10 persons, incl. driver, not with internal combustion piston engine or electric motor for propulsion 01/01/2017 31/12/2500 -8702I2 01/01/2003 31/12/2005 LIBEN Components of complete industrial plants of heading 8702; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/2003 31/12/2005 -8702I200 01/01/2003 31/12/2005 LIBEN Components of complete industrial plants of heading 8702; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/2003 31/12/2005 -8703 01/01/1988 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars (excl. motor vehicles of heading 8702) 01/01/1988 31/12/2500 -870310 01/01/1988 31/12/2500 LIBEN Vehicles for the transport of <10 persons on snow; golf cars and similar vehicles 01/01/1988 31/12/2500 -87031010 01/01/1988 31/12/1996 LIBEN Vehicles for the transport of persons on snow; golf cars and similar vehicles, with internal combustion piston engine 01/01/1988 31/12/1996 -87031011 01/01/1997 31/12/2500 LIBEN Vehicles specially designed for travelling on snow, for the transport of <10 persons, with internal combustion piston engine 01/01/1997 31/12/2500 -87031018 01/01/2000 31/12/2500 LIBEN Vehicles for the transport of <10 persons on snow, not with internal combustion piston engine; golf cars and similar vehicles 01/01/2000 31/12/2500 -87031019 01/01/1997 31/12/1999 LIBEN Golf cars and similar vehicles, with internal combustion piston engine 01/01/1997 31/12/1999 -87031090 01/01/1988 31/12/1999 LIBEN Vehicles for the transport of persons on snow; golf cars and similar vehicles, with an engine other than an internal combustion piston engine 01/01/1988 31/12/1999 -870321 01/01/1988 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only spark-ignition internal combustion reciprocating piston engine of a cylinder capacity <= 1.000 cm³ (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2500 -87032110 01/01/1988 31/12/2016 LIBEN Motor cars and other motor vehicles principally designed for the transport of persons, incl. station wagons and racing cars, with spark-ignition internal combustion reciprocating piston engine of a cylinder capacity <= 1.000 cm³, new (excl. vehicles for the transport of persons on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2016 -87032110 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only spark-ignition internal combustion reciprocating piston engine of a cylinder capacity <= 1.000 cm³, new (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -87032190 01/01/1988 31/12/2016 LIBEN Motor cars and other motor vehicles principally designed for the transport of persons, incl. station wagons and racing cars, with spark-ignition internal combustion reciprocating piston engine of a cylinder capacity <= 1.000 cm³, used (excl. vehicles for the transport of persons on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2016 -87032190 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only spark-ignition internal combustion reciprocating piston engine of a cylinder capacity <= 1.000 cm³, used (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -870322 01/01/1988 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only spark-ignition internal combustion reciprocating piston engine of a cylinder capacity > 1.000 cm³ but <= 1.500 cm³ (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2500 -87032210 01/01/1988 31/12/1988 LIBEN Motor cars and other motor vehicles principally designed for the transport of persons, including station wagons and racing cars, with spark-ignition internal combustion reciprocating piston engine of a cylinder capacity > 1 000 cc but =< 1.500 cc, new (excl. vehicles for the transport of persons on snow and other specially designed vehicles of subheading no 8703.10) 01/01/1988 31/12/1988 -87032210 01/01/2000 31/12/2016 LIBEN Motor cars and other motor vehicles principally designed for the transport of persons, incl. station wagons and racing cars, with spark-ignition internal combustion reciprocating piston engine, of a cylinder capacity > 1.000 cm³ but <= 1.500 cm³, new (excl. those of heading 8702 and vehicles for the transport of persons on snow and similar vehicles of subheading 8703.10) 01/01/2000 31/12/2016 -87032210 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only spark-ignition internal combustion reciprocating piston engine, of a cylinder capacity > 1.000 cm³ but <= 1.500 cm³, new (excl. vehicles for travelling on snow and similar vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -87032211 01/01/1989 31/12/1999 LIBEN Motor caravans with spark-ignition internal combustion reciprocating piston engine, of a cylinder capacity > 1.000 cm³ but <= 1.500 cm³, new 01/01/1989 31/12/1999 -87032219 01/01/1989 31/12/1999 LIBEN Motor cars and other motor vehicles principally designed for the transport of persons (other than those of heading Nr. 8702), incl. station wagons and racing cars, with spark-ignition internal combustion reciprocating piston engine, of a cylinder capacity > 1.000 cm³ but <= 1.500 cm³, new (excl. 8703.10-10 and 8703.22.11) 01/01/1989 31/12/1999 -87032290 01/01/1988 31/12/2016 LIBEN Motor cars and other motor vehicles principally designed for the transport of persons, incl. station wagons and racing cars, with spark-ignition internal combustion reciprocating piston engine of a cylinder capacity > 1.000 cm³ but <= 1.500 cm³, used (excl. vehicles for the transport of persons on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2016 -87032290 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only spark-ignition internal combustion reciprocating piston engine of a cylinder capacity > 1.000 cm³ but <= 1.500 cm³, used (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -870322SS 01/01/2007 31/12/2500 LIBEN Confidential trade of heading 8703 22 01/01/2007 31/12/2500 -870323 01/01/1988 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only spark-ignition internal combustion reciprocating piston engine of a cylinder capacity > 1.500 cm³ but <= 3.000 cm³ (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2500 -87032310 01/01/1988 31/12/1988 LIBEN Motor cars and other motor vehicles principally designed for the transport of persons, including station wagons and racing cars, with spark-ignition internal combustion reciprocating piston engine of a cylinder capacity > 1 500 cc but =< 3 000 cc, new (excl. vehicles for the transport of persons on snow and other specially designed vehicles of subheading no 8703.10) 01/01/1988 31/12/1988 -87032311 01/01/1989 31/12/2016 LIBEN Motors caravans with spark-ignition internal combustion reciprocating piston engine, of a cylinder capacity > 1.500 cm³ but <= 3.000 cm³, new 01/01/1989 31/12/2016 -87032311 01/01/2017 31/12/2500 LIBEN Motor caravans with only spark-ignition internal combustion reciprocating piston engine, of a cylinder capacity > 1.500 cm³ but <= 3.000 cm³, new 01/01/2017 31/12/2500 -87032319 01/01/1989 31/12/2016 LIBEN Motor cars and other motor vehicles principally designed for the transport of 1 to 9 persons, incl. station wagons and racing cars, with spark-ignition internal combustion reciprocating piston engine, of a cylinder capacity > 1.500 cm³ but <= 3.000 cm³, new (excl. those of subheading 8703 10 and motor caravans) 01/01/1989 31/12/2016 -87032319 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only spark-ignition internal combustion reciprocating piston engine, of a cylinder capacity > 1.500 cm³ but <= 3.000 cm³, new (excl. those of subheading 8703.10 and motor caravans) 01/01/2017 31/12/2500 -87032390 01/01/1988 31/12/2016 LIBEN Motor cars and other motor vehicles principally designed for the transport of persons, incl. station wagons and racing cars, with spark-ignition internal combustion reciprocating piston engine of a cylinder capacity > 1.500 cm³ but <= 3.000 cm³, used (excl. vehicles for the transport of persons on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2016 -87032390 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only spark-ignition internal combustion reciprocating piston engine of a cylinder capacity > 1.500 cm³ but <= 3.000 cm³, used (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -870324 01/01/1988 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only spark-ignition internal combustion reciprocating piston engine of a cylinder capacity > 3.000 cm³ (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2500 -87032410 01/01/1988 31/12/2016 LIBEN Motor cars and other motor vehicles principally designed for the transport of persons, incl. station wagons and racing cars, with spark-ignition internal combustion reciprocating piston engine of a cylinder capacity > 3.000 cm³, new (excl. vehicles for the transport of persons on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2016 -87032410 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only spark-ignition internal combustion reciprocating piston engine of a cylinder capacity > 3.000 cm³, new (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -87032490 01/01/1988 31/12/2016 LIBEN Motor cars and other motor vehicles principally designed for the transport of persons, incl. station wagons and racing cars, with spark-ignition internal combustion reciprocating piston engine of a cylinder capacity > 3.000 cm³, used (excl. vehicles for the transport of persons on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2016 -87032490 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only spark-ignition internal combustion reciprocating piston engine of a cylinder capacity > 3.000 cm³, used (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -870331 01/01/1988 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only diesel engine of a cylinder capacity <= 1.500 cm³ (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2500 -87033110 01/01/1988 31/12/2016 LIBEN Motor cars and other motor vehicles principally designed for the transport of persons, incl. station wagons and racing cars, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity <= 1.500 cm³, new (excl. vehicles for the transport of persons on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2016 -87033110 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only diesel engine of a cylinder capacity <= 1.500 cm³, new (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -87033190 01/01/1988 31/12/2016 LIBEN Motor cars and other motor vehicles principally designed for the transport of persons, incl. station wagons and racing cars, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity <= 1.500 cm³, used (excl. vehicles for the transport of persons on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2016 -87033190 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only diesel engine of a cylinder capacity <= 1.500 cm³, used (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -870332 01/01/1988 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only diesel engine of a cylinder capacity > 1.500 cm³ but <= 2.500 cm³ (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2500 -87033210 01/01/1988 31/12/1988 LIBEN Motor cars and other motor vehicles principally designed for the transport of persons, including station wagons and racing cars, with compression-ignition internal combustion piston engines of a cylinder capacity > 1 500 cc but =< 2 500 cc, new (excl. vehicles for the transport of persons on snow and other specially designed vehicles of subheading no 8703.10) 01/01/1988 31/12/1988 -87033211 01/01/1989 31/12/2016 LIBEN Motor caravans with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity > 1.500 cm³ but <= 2.500 cm³, new 01/01/1989 31/12/2016 -87033211 01/01/2017 31/12/2500 LIBEN Motor caravans with only diesel engine of a cylinder capacity > 1.500 cm³ but <= 2.500 cm³, new 01/01/2017 31/12/2500 -87033219 01/01/1989 31/12/2016 LIBEN Motor cars and other motor vehicles, principally designed for the transport of persons, incl. station wagons, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity > 1.500 cm³ but <= 2.500 cm³, new (excl. motor caravans and vehicles specially designed for travelling on snow and other special purpose vehicles of subheading 8703.10) 01/01/1989 31/12/2016 -87033219 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles, principally designed for the transport of <10 persons, incl. station wagons, with only diesel engine of a cylinder capacity > 1.500 cm³ but <= 2.500 cm³, new (excl. motor caravans and vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -87033290 01/01/1988 31/12/2016 LIBEN Motor cars and other motor vehicles principally designed for the transport of persons, incl. station wagons and racing cars, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity > 1.500 cm³ but <= 2.500 cm³, used (excl. vehicles for the transport of persons on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2016 -87033290 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only diesel engine of a cylinder capacity > 1.500 cm³ but <= 2.500 cm³, used (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -870333 01/01/1988 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only diesel engine of a cylinder capacity > 2.500 cm³ (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2500 -87033310 01/01/1988 31/12/1988 LIBEN Motor cars and other motor vehicles principally designed for the transport of persons, including station wagons and racing cars, with compression-ignition internal combustion piston engines of a cylinder capacity > 2 500 cc, new (excl. vehicles for the transport of persons on snow and other specially designed vehicles of subheading no 8703.10) 01/01/1988 31/12/1988 -87033311 01/01/1989 31/12/2016 LIBEN Motor caravans with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity > 2.500 cm³, new 01/01/1989 31/12/2016 -87033311 01/01/2017 31/12/2500 LIBEN Motor caravans with only diesel engine of a cylinder capacity > 2.500 cm³, new 01/01/2017 31/12/2500 -87033319 01/01/1989 31/12/2016 LIBEN Motor cars and other motor vehicles, principally designed for the transport of persons, incl. station wagons, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity > 2.500 cm³, new (excl. motor caravans and vehicles specially designed for travelling on snow and other special purpose vehicles of subheading 8703.10) 01/01/1989 31/12/2016 -87033319 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles, principally designed for the transport of <10 persons, incl. station wagons, with only diesel engine of a cylinder capacity > 2.500 cm³, new (excl. motor caravans and vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -87033390 01/01/1988 31/12/2016 LIBEN Motor cars and other motor vehicles principally designed for the transport of persons, incl. station wagons and racing cars, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity > 2.500 cm³, used (excl. vehicles for the transport of persons on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2016 -87033390 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only diesel engine of a cylinder capacity > 2.500 cm³, used (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -870340 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with both spark-ignition internal combustion reciprocating piston engine and electric motor as motors for propulsion (excl. vehicles for travelling on snow, other specially designed vehicles of subheading 8703.10 and plug-in hybrids) 01/01/2017 31/12/2500 -87034010 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with both spark-ignition internal combustion reciprocating piston engine and electric motor as motors for propulsion, new (excl. vehicles for travelling on snow, other specially designed vehicles of subheading 8703.10 and plug-in hybrids) 01/01/2017 31/12/2500 -87034090 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with both spark-ignition internal combustion reciprocating piston engine and electric motor as motors for propulsion, used (excl. vehicles for travelling on snow, other specially designed vehicles of subheading 8703.10 and plug-in hybrids) 01/01/2017 31/12/2500 -870350 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with both diesel engine and electric motor as motors for propulsion (excl. vehicles for travelling on snow, other specially designed vehicles of subheading 8703.10 and plug-in hybrids) 01/01/2017 31/12/2500 -87035000 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with both diesel engine and electric motor as motors for propulsion (excl. vehicles for travelling on snow, other specially designed vehicles of subheading 8703.10 and plug-in hybrids) 01/01/2017 31/12/2500 -870360 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with both spark-ignition internal combustion reciprocating piston engine and electric motor as motors for propulsion, capable of being charged by plugging to external source of electric power (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -87036010 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with both spark-ignition internal combustion reciprocating piston engine and electric motor as motors for propulsion, capable of being charged by plugging to external source of electric power, new (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -87036090 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with both spark-ignition internal combustion reciprocating piston engine and electric motor as motors for propulsion, capable of being charged by plugging to external source of electric power, used (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -870370 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with both diesel engine and electric motor as motors for propulsion, capable of being charged by plugging to external source of electric power (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -87037000 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with both diesel engine and electric motor as motors for propulsion, capable of being charged by plugging to external source of electric power (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -870380 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only electric motor for propulsion (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -87038010 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only electric motor for propulsion, new (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -87038090 01/01/2017 31/12/2500 LIBEN Motor cars and other motor vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with only electric motor for propulsion, used (excl. vehicles for travelling on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -870390 01/01/1988 31/12/2500 LIBEN Motor cars and other vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with engines other than internal combustion piston engine or electric motor (excl. vehicles for the transport of persons on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2500 -87039000 01/01/2017 31/12/2500 LIBEN Motor cars and other vehicles principally designed for the transport of <10 persons, incl. station wagons and racing cars, with engines other than internal combustion piston engine or electric motor (excl. vehicles for the transport of persons on snow and other specially designed vehicles of subheading 8703.10) 01/01/2017 31/12/2500 -87039010 01/01/1988 31/12/2016 LIBEN Motor cars and other vehicles principally designed for the transport of persons, with electric motors (excl. motor vehicles of heading 8702, vehicles for the transport of persons on snow and other specially designed vehicles of subheading 8703.10) 01/01/1988 31/12/2016 -87039090 01/01/1988 31/12/2016 LIBEN Motor cars and other motor vehicles principally designed for the transport of persons, incl. station wagons and racing cars, with engines other than spark-ignition internal combustion reciprocating piston engine or electric motors (excl. vehicles for the transport of persons on snow and other specially designed vehicles of subheading 8703,10) 01/01/1988 31/12/2016 -8704 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, incl. chassis with engine and cab 01/01/1988 31/12/2500 -870410 01/01/1988 31/12/2500 LIBEN Dumpers for off-highway use 01/01/1988 31/12/2500 -87041010 01/01/2000 31/12/2500 LIBEN Dumpers for off-highway use, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" or with spark-ignition internal combustion piston engine 01/01/2000 31/12/2500 -87041011 01/01/1988 31/12/1999 LIBEN Dumpers for off-highway use, with compression-ignition internal combustion piston engines of a cylinder capacity > 2.500 cm³, or with spark-ignition internal combustion piston engines of a cylinder capacity > 2.800 cm³ 01/01/1988 31/12/1999 -87041019 01/01/1988 31/12/1999 LIBEN Dumpers for off-highway use, with compression-ignition internal combustion piston engines of a cylinder capacity <= 2.500 cm³, or with spark-ignition internal combustion piston engines of a cylinder capacity <= 2.800 cm³ 01/01/1988 31/12/1999 -87041090 01/01/1988 31/12/2500 LIBEN Dumpers for off-highway use with engines other than internal combustion piston engine 01/01/1988 31/12/2500 -870421 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a gross vehicle weight <= 5 t (excl. dumpers for off-highway use of subheading 8704.10 and special purpose motor vehicles of heading 8705) 01/01/1988 31/12/2500 -87042110 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of highly radioactive materials [Euratom], with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a gross vehicle weight <= 5 t 01/01/1988 31/12/2500 -87042131 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a gross vehicle weight <= 5 t, of a cylinder capacity > 2.500 cm³, new (excl. dumpers for off-highway use of subheading 8704.10, special purpose motor vehicles of heading 8705 and special motor vehicles for the transport of highly radioactive materials) 01/01/1988 31/12/2500 -87042139 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a gross vehicle weight <= 5 t, of a cylinder capacity > 2.500 cm³, used (excl. dumpers for off-highway use of subheading 8704.10, special purpose motor vehicles of heading 8705 and special motor vehicles for the transport of highly radioactive materials) 01/01/1988 31/12/2500 -87042191 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a gross vehicle weight <= 5 t, of a cylinder capacity <= 2.500 cm³, new (excl. dumpers for off-highway use of subheading 8704.10, special purpose motor vehicles of heading 8705 and special motor vehicles for the transport of highly radioactive materials) 01/01/1988 31/12/2500 -87042199 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a gross vehicle weight <= 5 t, of a cylinder capacity <= 2.500 cm³, used (excl. dumpers for off-highway use of subheading 8704.10, special purpose motor vehicles of heading 8705 and special motor vehicles for the transport of highly radioactive materials) 01/01/1988 31/12/2500 -870422 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a gross vehicle weight > 5 t but <= 20 t (excl. dumpers for off-highway use of subheading 8704.10 and special purpose motor vehicles of heading 8705) 01/01/1988 31/12/2500 -87042210 01/01/1988 31/12/2500 LIBEN Motor vehicles, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a gross vehicle weight > 5 t but <= 20 t, for the transport of highly radioactive materials [Euratom] 01/01/1988 31/12/2500 -87042291 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a gross vehicle weight > 5 t but <= 20 t, new (excl. dumpers for off-highway use of subheading 8704.10, special purpose motor vehicles of heading 8705 and special motor vehicles for the transport of highly radioactive materials) 01/01/1988 31/12/2500 -87042299 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a gross vehicle weight > 5 t but <= 20 t, used (excl. dumpers for off-highway use of subheading 8704.10, special purpose motor vehicles of heading 8705 and special motor vehicles for the transport of highly radioactive materials) 01/01/1988 31/12/2500 -870423 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a gross vehicle weight > 20 t (excl. dumpers for off-highway use of subheading 8704.10 and special purpose motor vehicles of heading 8705) 01/01/1988 31/12/2500 -87042310 01/01/1988 31/12/2500 LIBEN Motor vehicles with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a gross vehicle weight > 20 t, for the transport of highly radioactive materials [Euratom] 01/01/1988 31/12/2500 -87042391 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a gross vehicle weight > 20 t, new (excl. dumpers for off-highway use of subheading 8704.10, special purpose motor vehicles of heading 8705 and special motor vehicles for the transport of highly radioactive materials) 01/01/1988 31/12/2500 -87042399 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a gross vehicle weight > 20 t, used (excl. dumpers for off-highway use of subheading 8704.10, special purpose motor vehicles of heading 8705 and special motor vehicles for the transport of highly radioactive materials) 01/01/1988 31/12/2500 -870431 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with spark-ignition internal combustion piston engine, of a gross vehicle weight <= 5 t (excl. dumpers for off-highway use of subheading 8704.10 and special purpose motor vehicles of heading 8705) 01/01/1988 31/12/2500 -87043110 01/01/1988 31/12/2500 LIBEN Motor vehicles, with spark-ignition internal combustion piston engine, of a gross vehicle weight <= 5 t, for the transport of highly radioactive materials [Euratom] 01/01/1988 31/12/2500 -87043131 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with spark-ignition internal combustion piston engine, of a gross vehicle weight <= 5 t, of a cylinder capacity > 2.800 cm³, new (excl. dumpers for off-highway use of subheading 8704.10, special purpose motor vehicles of heading 8705 and special motor vehicles for the transport of highly radioactive materials) 01/01/1988 31/12/2500 -87043139 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with spark-ignition internal combustion piston engine, of a gross vehicle weight <= 5 t, of a cylinder capacity > 2.800 cm³, used (excl. dumpers for off-highway use of subheading 8704.10, special purpose motor vehicles of heading 8705 and special motor vehicles for the transport of highly radioactive materials) 01/01/1988 31/12/2500 -87043191 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with spark-ignition internal combustion piston engine, of a gross vehicle weight <= 5 t, of a cylinder capacity <= 2.800 cm³, new (excl. dumpers for off-highway use of subheading 8704.10, special purpose motor vehicles of heading 8705 and special motor vehicles for the transport of highly radioactive materials) 01/01/1988 31/12/2500 -87043199 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with spark-ignition internal combustion piston engine, of a gross vehicle weight <= 5 t, of a cylinder capacity <= 2.800 cm³, used (excl. dumpers for off-highway use of subheading 8704.10, special purpose motor vehicles of heading 8705 and special motor vehicles for the transport of highly radioactive materials) 01/01/1988 31/12/2500 -870432 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with spark-ignition internal combustion piston engine, of a gross vehicle weight > 5 t (excl. dumpers for off-highway use of subheading 8704.10 and special purpose motor vehicles of heading 8705) 01/01/1988 31/12/2500 -87043210 01/01/1988 31/12/2500 LIBEN Motor vehicles, with spark-ignition internal combustion piston engine, of a gross vehicle weight > 5 t, for the transport of highly radioactive materials [Euratom] 01/01/1988 31/12/2500 -87043291 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with spark-ignition internal combustion piston engine, of a gross vehicle weight > 5 t, new (excl. dumpers for off-highway use of subheading 8704.10, special purpose motor vehicles of heading 8705 and special motor vehicles for the transport of highly radioactive materials) 01/01/1988 31/12/2500 -87043299 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with spark-ignition internal combustion piston engine, of a gross vehicle weight > 5 t, used (excl. dumpers for off-highway use of subheading 8704.10, special purpose motor vehicles of heading 8705 and special motor vehicles for the transport of highly radioactive materials) 01/01/1988 31/12/2500 -870490 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with engines other than internal combustion piston engine (excl. dumpers for off-highway use of subheading 8704.10 and special purpose motor vehicles of heading 8705) 01/01/1988 31/12/2500 -87049000 01/01/1988 31/12/2500 LIBEN Motor vehicles for the transport of goods, with engines other than internal combustion piston engine (excl. dumpers for off-highway use of subheading 8704.10 and special purpose motor vehicles of heading 8705) 01/01/1988 31/12/2500 -8704I0 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of heading 8704 01/01/2000 31/12/2005 -8704I000 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of heading 8704 01/01/2000 31/12/2005 -8705 01/01/1988 31/12/2500 LIBEN Special purpose motor vehicles (other than those principally designed for the transport of persons or goods), e.g. breakdown lorries, crane lorries, fire fighting vehicles, concrete-mixer lorries, road sweeper lorries, spraying lorries, mobile workshops and mobile radiological units 01/01/1988 31/12/2500 -870510 01/01/1988 31/12/2500 LIBEN Crane lorries (excl. breakdown lorries) 01/01/1988 31/12/2500 -87051000 01/01/1988 31/12/2500 LIBEN Crane lorries (excl. breakdown lorries) 01/01/1988 31/12/2500 -870520 01/01/1988 31/12/2500 LIBEN Mobile drilling derricks 01/01/1988 31/12/2500 -87052000 01/01/1988 31/12/2500 LIBEN Mobile drilling derricks 01/01/1988 31/12/2500 -870530 01/01/1988 31/12/2500 LIBEN Fire fighting vehicles (excl. vehicles for transporting persons) 01/01/1988 31/12/2500 -87053000 01/01/1988 31/12/2500 LIBEN Fire fighting vehicles (excl. vehicles for transporting persons) 01/01/1988 31/12/2500 -870540 01/01/1988 31/12/2500 LIBEN Concrete-mixer lorries 01/01/1988 31/12/2500 -87054000 01/01/1988 31/12/2500 LIBEN Concrete-mixer lorries 01/01/1988 31/12/2500 -870590 01/01/1988 31/12/2500 LIBEN Special purpose motor vehicles (other than those principally designed for the transport of persons or goods and excl. concrete-mixer lorries, fire fighting vehicles, mobile drilling derricks and crane lorries) 01/01/1988 31/12/2500 -87059010 01/01/1988 31/12/2011 LIBEN Breakdown lorries 01/01/1988 31/12/2011 -87059030 01/01/1988 31/12/2500 LIBEN Concrete-pumping vehicles 01/01/1988 31/12/2500 -87059080 01/01/2012 31/12/2500 LIBEN Special purpose motor vehicles (excl. those principally designed for the transport of persons or goods, and concrete-mixer lorries, fire fighting vehicles, mobile drilling derricks, crane lorries and concrete-pumping vehicles) 01/01/2012 31/12/2500 -87059090 01/01/1988 31/12/2011 LIBEN Special purpose motor vehicles (other than those principally designed for the transport of persons or goods and excl. concrete-mixer lorries, fire fighting vehicles, mobile drilling derricks, crane lorries, concrete-pumping vehicles and breakdown lorries) 01/01/1988 31/12/2011 -8706 01/01/1988 31/12/2500 LIBEN Chassis fitted with engines, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles of heading 8701 to 8705 (excl. those with engines and cabs) 01/01/1988 31/12/2500 -870600 01/01/1988 31/12/2500 LIBEN Chassis fitted with engines, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles of heading 8701 to 8705 (excl. those with engines and cabs) 01/01/1988 31/12/2500 -87060011 01/01/1988 31/12/2500 LIBEN Chassis with compression ignition internal combustion engines, of cylinder capacity > 2.500 cm³ or with spark-ignition internal combustion engines of cylinder capacity > 2.800 cm³, for motor vehicles for the transport of ten or more persons and motor vehicles for the transport of goods 01/01/1988 31/12/2500 -87060019 01/01/1988 31/12/2500 LIBEN Chassis with compression ignition internal combustion engines, of cylinder capacity > 2.500 cm³ or with spark-ignition internal combustion engines of cylinder capacity > 2.800 cm³, for motor cars and other motor vehicles principally designed for the transport of persons; chassis with engines for tractors of heading 8701 01/01/1988 31/12/2500 -87060091 01/01/1988 31/12/2500 LIBEN Chassis with compression ignition internal combustion engines, of cylinder capacity <= 2.500 cm³ or with spark-ignition internal combustion engines of cylinder capacity <= 2.800 cm³, for motor cars and other motor vehicles principally designed for the transport of persons 01/01/1988 31/12/2500 -87060099 01/01/1988 31/12/2500 LIBEN Chassis with compression ignition internal combustion engines, of cylinder capacity <= 2.500 cm³ or with spark-ignition internal combustion engines of cylinder capacity <= 2.800 cm³, for motor vehicles for the transport of ten or more persons and motor vehicles for the transport of goods; chassis for special purpose motor vehicles of heading 8705 01/01/1988 31/12/2500 -8707 01/01/1988 31/12/2500 LIBEN Bodies, incl. cabs, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles of heading 8701 to 8705 01/01/1988 31/12/2500 -870710 01/01/1988 31/12/2500 LIBEN Bodies for motor cars and other motor vehicles principally designed for the transport of persons 01/01/1988 31/12/2500 -87071010 01/01/1988 31/12/2500 LIBEN Bodies for the industrial assembly of motor cars and other motor vehicles principally designed for the transport of persons 01/01/1988 31/12/2500 -87071090 01/01/1988 31/12/2500 LIBEN Bodies for motor cars and other motor vehicles principally designed for the transport of persons (excl. those for industrial assembly of subheading 8707.10.10) 01/01/1988 31/12/2500 -870790 01/01/1988 31/12/2500 LIBEN Bodies for tractors, motor vehicles for the transport of ten or more persons, motor vehicles for the transport of goods and special purpose motor vehicles of heading 8705 01/01/1988 31/12/2500 -87079010 01/01/1988 31/12/2500 LIBEN Bodies for the industrial assembly of pedestrian controlled tractors of subheading 8701.10, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity <= 2.500 cm³ or with spark-ignition internal piston engine of a cylinder capacity <= 2.800 cm³ and special purpose motor vehicles of heading 8705 01/01/1988 31/12/2500 -87079090 01/01/1988 31/12/2500 LIBEN Bodies for tractors, motor vehicles for the transport of ten or more persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8707.90.10) 01/01/1988 31/12/2500 -8708 01/01/1988 31/12/2500 LIBEN Parts and accessories for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles of heading 8701 to 8705, n.e.s. 01/01/1988 31/12/2500 -870810 01/01/1988 31/12/2500 LIBEN Bumpers and parts thereof for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. 01/01/1988 31/12/2500 -87081010 01/01/1988 31/12/2500 LIBEN Bumpers and parts thereof, for the industrial assembly of motor cars and other motor vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity <= 2.500 cm³ or with spark-ignition internal piston engine of a cylinder capacity <= 2.800 cm³ and special purpose motor vehicles of heading 8705, n.e.s. 01/01/1988 31/12/2500 -87081090 01/01/1988 31/12/2500 LIBEN Bumpers and parts thereof for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.10.10) 01/01/1988 31/12/2500 -870821 01/01/1988 31/12/2500 LIBEN Safety seat belts for motor vehicles 01/01/1988 31/12/2500 -87082110 01/01/1988 31/12/2500 LIBEN Safety seat belts for the industrial assembly of : motor cars and other motor vehicles principally designed for the transport of persons, vehicles for the transport of goods, with compression-ignition internal combustion piston engine "diesel or semi-diesel" of a cylinder capacity <= 2.500 cm³ or with spark-ignition internal piston engine of a cylinder capacity <= 2.800 cm³ and special purpose motor vehicles of heading 8705 01/01/1988 31/12/2500 -87082190 01/01/1988 31/12/2500 LIBEN Safety seat belts for motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.21.10) 01/01/1988 31/12/2500 -870829 01/01/1988 31/12/2500 LIBEN Parts and accessories of bodies for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. bumpers and parts thereof and safety seat belts) 01/01/1988 31/12/2500 -87082910 01/01/1988 31/12/2500 LIBEN Parts and accessories for the industrial assembly of bodies of: pedestrian-controlled tractors, motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" <= 2500 cm³ or spark-ignition internal piston engine <= 2800 cm³; special purpose motor vehicles of No 8705 (excl. bumpers and safety seat belts) 01/01/1988 31/12/2500 -87082990 01/01/1988 31/12/2500 LIBEN Parts and accessories for the industrial assembly of bodies of: tractors, motor vehicles for the transport of >= 10 persons, motor cars and vehicles principally designed for the transport of persons, motor vehicles for the transport of goods, special purpose motor vehicles (excl. bumpers and parts thereof, safety seat belts and parts and accessories for the industrial assembly of motor vehicles of subheading 8708.29.10) 01/01/1988 31/12/2500 -870830 01/01/2007 31/12/2500 LIBEN Brakes and servo-brakes and their parts, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. 01/01/2007 31/12/2500 -87083010 01/01/2007 31/12/2500 LIBEN Brakes and servo-brakes and their parts, for the industrial assembly of: pedestrian-controlled tractors, motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" <= 2500 cm³ or with spark-ignition internal piston engine <= 2800 cm³, special purpose motor vehicles of heading 8705, n.e.s. 01/01/2007 31/12/2500 -87083091 01/01/2007 31/12/2500 LIBEN Parts for disc brakes, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.30.10) 01/01/2007 31/12/2500 -87083099 01/01/2007 31/12/2500 LIBEN Brakes and servo-brakes and their parts, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.30.10 and for disc brakes) 01/01/2007 31/12/2500 -870831 01/01/1988 31/12/2006 LIBEN Mounted brake linings for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles 01/01/1988 31/12/2006 -87083110 01/01/1988 31/12/2006 LIBEN Mounted brake linings for the industrial assembly of: pedestrian-controlled tractors, motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" <= 2500 cm³ or with spark-ignition internal piston engine <= 2800 cm³; special purpose motor vehicles of heading 8705 01/01/1988 31/12/2006 -87083191 01/01/1988 31/12/2006 LIBEN Mounted brake linings for disc brakes, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.31.10) 01/01/1988 31/12/2006 -87083199 01/01/1988 31/12/2006 LIBEN Mounted brake linings for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.31.10 and mounted brake linings for disc brakes) 01/01/1988 31/12/2006 -870839 01/01/1988 31/12/2006 LIBEN Brakes and servo-brakes and parts thereof for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. 01/01/1988 31/12/2006 -87083910 01/01/1988 31/12/2006 LIBEN Brakes and servo-brakes and their parts for the industrial assembly of: pedestrian-controlled tractors, motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" <= 2500 cm³ or with spark-ignition internal piston engine <= 2800 cm³, special purpose motor vehicles of heading 8705, n.e.s. 01/01/1988 31/12/2006 -87083990 01/01/1988 31/12/2006 LIBEN Brakes and servo-brakes and their parts for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.39.10) 01/01/1988 31/12/2006 -870840 01/01/1988 31/12/2500 LIBEN Gear boxes and parts thereof, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. 01/01/1988 31/12/2500 -87084010 01/01/1988 31/12/2006 LIBEN Gear boxes for the industrial assembly of: pedestrian-controlled tractors, motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity <= 2500 cm³ or with spark-ignition internal piston engine of a cylinder capacity <= 2800 cm³, special purpose motor vehicles of heading 8705 01/01/1988 31/12/2006 -87084020 01/01/2007 31/12/2500 LIBEN Gear boxes and parts thereof, for the industrial assembly of: pedestrian-controlled tractors, motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity <= 2500 cm³ or with spark-ignition internal piston engine of a cylinder capacity <= 2800 cm³, special purpose motor vehicles of heading 8705, n.e.s 01/01/2007 31/12/2500 -87084050 01/01/2007 31/12/2500 LIBEN Gear boxes for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.40.20) 01/01/2007 31/12/2500 -87084090 01/01/1988 31/12/2006 LIBEN Gear boxes for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.40.10) 01/01/1988 31/12/2006 -87084091 01/01/2007 31/12/2500 LIBEN Parts for gear boxes of closed-die forged steel, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.40.20) 01/01/2007 31/12/2500 -87084099 01/01/2007 31/12/2500 LIBEN Parts for gear boxes for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.40.20 and of closed-die forged steel) 01/01/2007 31/12/2500 -870850 01/01/1988 31/12/2500 LIBEN Drive-axles with differential, whether or not provided with other transmission components, and non-driving axles, and parts thereof, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. 01/01/1988 31/12/2500 -87085010 01/01/1988 31/12/2006 LIBEN Drive-axles with differential, whether or not provided with other transmission components, for the industrial assembly of: motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" <= 2500 cm³ or with spark-ignition internal piston engine <= 2800 cm³, special purpose motor vehicles of heading 8705 01/01/1988 31/12/2006 -87085020 01/01/2007 31/12/2500 LIBEN Drive-axles with differential, whether or not provided with other transmission components, and non-driving axles, and parts thereof, for the industrial assembly of: pedestrian-controlled tractors, motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" <= 2500 cm³ or with spark-ignition internal piston engine <= 2800 cm³, special purpose motor vehicles of heading 8705, n.e.s 01/01/2007 31/12/2500 -87085035 01/01/2007 31/12/2500 LIBEN Drive-axles with differential, whether or not provided with other transmission components, and non-driving axles, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.50.20) 01/01/2007 31/12/2500 -87085055 01/01/2007 31/12/2500 LIBEN Parts for drive-axles with differential, whether or not provided with other transmission components, and for non-driving axles, of closed-die forged steel, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.50.20) 01/01/2007 31/12/2500 -87085090 01/01/1988 31/12/2006 LIBEN Drive-axles with differential, whether or not provided with other transmission components, for motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.50.10) 01/01/1988 31/12/2006 -87085091 01/01/2007 31/12/2500 LIBEN Parts for non-driving axles, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.50.20 and of closed-die forged steel) 01/01/2007 31/12/2500 -87085099 01/01/2007 31/12/2500 LIBEN Parts for drive-axles with differential, whether or not provided with other transmission components, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.50.20, for non-driving axles and of closed-die forged steel) 01/01/2007 31/12/2500 -870860 01/01/1988 31/12/2006 LIBEN Non-driving axles and parts thereof for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. 01/01/1988 31/12/2006 -87086010 01/01/1988 31/12/2006 LIBEN Non-driving axles and parts thereof for the industrial assembly of: motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity <= 2500 cm³ or with spark-ignition internal piston engine of a cylinder capacity <= 2800 cm³, special purpose motor vehicles of heading 8705, n.e.s. 01/01/1988 31/12/2006 -87086091 01/01/1988 31/12/2006 LIBEN Non-driving axles and parts thereof, of closed-die forged steel, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.60.10) 01/01/1988 31/12/2006 -87086099 01/01/1988 31/12/2006 LIBEN Non-driving axles and parts thereof, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.60.10) 01/01/1988 31/12/2006 -870870 01/01/1988 31/12/2500 LIBEN Road wheels and parts and accessories thereof, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. 01/01/1988 31/12/2500 -87087010 01/01/1988 31/12/2500 LIBEN Road wheels and parts and accessories thereof, for the industrial assembly of: pedestrian-controlled tractors, motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" <= 2500 cm³ or with spark-ignition internal piston engine <= 2800 cm³, and special purpose motor vehicles of heading 8705, n.e.s. 01/01/1988 31/12/2500 -87087050 01/01/1988 31/12/2500 LIBEN Aluminium road wheels, aluminium parts and accessories thereof, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.70.10) 01/01/1988 31/12/2500 -87087091 01/01/1988 31/12/2500 LIBEN Wheel centres in star form, cast in one piece, of iron or steel, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.70.10) 01/01/1988 31/12/2500 -87087099 01/01/1988 31/12/2500 LIBEN Road wheels and parts and accessories thereof, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.70.10, those of aluminium and wheel centres in star form, cast in one piece, of iron or steel) 01/01/1988 31/12/2500 -870880 01/01/1988 31/12/2500 LIBEN Suspension systems and parts thereof, incl. shock-absorbers, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. 01/01/1988 31/12/2500 -87088010 01/01/1988 31/12/2006 LIBEN Suspension shock-absorbers, for the industrial assembly of : motor cars and other motor vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity <= 2.500 cm³ or with spark-ignition internal piston engine of a cylinder capacity <= 2.800 cm³ and special purpose motor vehicles of heading 8705 01/01/1988 31/12/2006 -87088020 01/01/2007 31/12/2500 LIBEN Suspension systems and parts thereof, incl. shock-absorbers, for the industrial assembly of: motor cars and other motor vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity <= 2.500 cm³ or with spark-ignition internal piston engine of a cylinder capacity <= 2.800 cm³ and special purpose motor vehicles of heading 8705, n.e.s 01/01/2007 31/12/2500 -87088035 01/01/2007 31/12/2500 LIBEN Suspension shock-absorbers for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.80.20) 01/01/2007 31/12/2500 -87088055 01/01/2007 31/12/2500 LIBEN Anti roll bars and torsion bars, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.80.20) 01/01/2007 31/12/2500 -87088090 01/01/1988 31/12/2006 LIBEN Suspension shock-absorbers for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.80.10) 01/01/1988 31/12/2006 -87088091 01/01/2007 31/12/2500 LIBEN Suspension systems and parts thereof, of closed-die forged steel, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.80.20, shock-absorbers, anti roll bars and torsion bars) 01/01/2007 31/12/2500 -87088099 01/01/2007 31/12/2500 LIBEN Suspension systems and parts thereof, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.80.20, shock-absorbers, anti roll bars, torsion bars and those of closed-die forged steel) 01/01/2007 31/12/2500 -870891 01/01/1988 31/12/2500 LIBEN Radiators and parts thereof, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. 01/01/1988 31/12/2500 -87089110 01/01/1988 31/12/2006 LIBEN Radiators for the industrial assembly of: pedestrian-controlled tractors, motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity <= 2500 cm³ or with spark-ignition internal piston engine of a cylinder capacity <= 2800 cm³, special purpose motor vehicles of heading 8705 01/01/1988 31/12/2006 -87089120 01/01/2007 31/12/2500 LIBEN Radiators and parts thereof, for the industrial assembly of: pedestrian-controlled tractors, motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity <= 2500 cm³ or with spark-ignition internal piston engine of a cylinder capacity <= 2800 cm³, special purpose motor vehicles of heading 8705, n.e.s 01/01/2007 31/12/2500 -87089135 01/01/2007 31/12/2500 LIBEN Radiators for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.91.20) 01/01/2007 31/12/2500 -87089190 01/01/1988 31/12/2006 LIBEN Radiators for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.91.10) 01/01/1988 31/12/2006 -87089191 01/01/2007 31/12/2500 LIBEN Parts for radiators, of closed-die forged steel, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.91.20) 01/01/2007 31/12/2500 -87089199 01/01/2007 31/12/2500 LIBEN Parts for radiators, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.91.20 and those of closed-die forged steel) 01/01/2007 31/12/2500 -870892 01/01/1988 31/12/2500 LIBEN Silencers "mufflers" and exhaust pipes, and parts thereof, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. 01/01/1988 31/12/2500 -87089210 01/01/1988 31/12/2006 LIBEN Silencers and exhaust pipes, for the industrial assembly of: pedestrian-controlled tractors, motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" of a cylinder capacity <= 2500 cm³ or with spark-ignition internal piston engine of a cylinder capacity <= 2800 cm³, special purpose motor vehicles of heading 8705 01/01/1988 31/12/2006 -87089220 01/01/2007 31/12/2500 LIBEN Silencers "mufflers" and exhaust pipes, and parts thereof, for the industrial assembly of: pedestrian-controlled tractors, motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" <= 2500 cm³ or with spark-ignition internal piston engine <= 2800 cm³, special purpose motor vehicles of heading 8705, n.e.s 01/01/2007 31/12/2500 -87089235 01/01/2007 31/12/2500 LIBEN Silencers "mufflers" and exhaust pipes, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.92.20) 01/01/2007 31/12/2500 -87089290 01/01/1988 31/12/2006 LIBEN Silencers and exhaust pipes, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.92.10) 01/01/1988 31/12/2006 -87089291 01/01/2007 31/12/2500 LIBEN Parts for silencers "mufflers" and exhaust pipes, of closed-die forged steel, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.92.20) 01/01/2007 31/12/2500 -87089299 01/01/2007 31/12/2500 LIBEN Parts for silencers "mufflers" and exhaust pipes, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.92.20 and of closed-die forged steel) 01/01/2007 31/12/2500 -870893 01/01/1988 31/12/2500 LIBEN Clutches and parts thereof, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. 01/01/1988 31/12/2500 -87089310 01/01/1988 31/12/2500 LIBEN Clutches and parts thereof, for the industrial assembly of: pedestrian-controlled tractors, motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" <= 2500 cm³ or with spark-ignition internal piston engine <= 2800 cm³, special purpose motor vehicles of heading 8705, n.e.s. 01/01/1988 31/12/2500 -87089390 01/01/1988 31/12/2500 LIBEN Clutches and parts thereof, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.93.10) 01/01/1988 31/12/2500 -870894 01/01/1988 31/12/2500 LIBEN Steering wheels, steering columns and steering boxes, and parts thereof, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. 01/01/1988 31/12/2500 -87089410 01/01/1988 31/12/2006 LIBEN Steering wheels, steering columns and steering boxes for the industrial assembly of: motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" <= 2500 cm³ or with spark-ignition internal piston engine <= 2800 cm³, special purpose motor vehicles of heading 8705 01/01/1988 31/12/2006 -87089420 01/01/2007 31/12/2500 LIBEN Steering wheels, steering columns and steering boxes, and parts thereof, for the industrial assembly of: motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" <= 2500 cm³ or with spark-ignition internal piston engine <= 2800 cm³, special purpose motor vehicles of heading 8705, n.e.s 01/01/2007 31/12/2500 -87089435 01/01/2007 31/12/2500 LIBEN Steering wheels, columns and boxes, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.94.20) 01/01/2007 31/12/2500 -87089490 01/01/1988 31/12/2006 LIBEN Steering wheels, columns and boxes, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.94.10) 01/01/1988 31/12/2006 -87089491 01/01/2007 31/12/2500 LIBEN Parts for steering wheels, steering columns and steering boxes, of closed-die forged steel, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.94.20) 01/01/2007 31/12/2500 -87089499 01/01/2007 31/12/2500 LIBEN Parts for steering wheels, steering columns and steering boxes, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.94.20 and of closed-die forged steel) 01/01/2007 31/12/2500 -870895 01/01/2007 31/12/2500 LIBEN Safety airbags with inflator system and parts thereof, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. 01/01/2007 31/12/2500 -87089510 01/01/2007 31/12/2500 LIBEN Safety airbags with inflator system and parts thereof, for the industrial assembly of: pedestrian-controlled tractors, motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" <= 2500 cm³ or with spark-ignition internal piston engine <= 2800 cm³, special purpose motor vehicles of heading 8705, n.e.s 01/01/2007 31/12/2500 -87089591 01/01/2007 31/12/2500 LIBEN Safety airbags with inflator system and parts thereof, of closed-die forged steel, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.95.10) 01/01/2007 31/12/2500 -87089599 01/01/2007 31/12/2500 LIBEN Safety airbags with inflator system and parts thereof, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.95.10 and of closed-die forged steel) 01/01/2007 31/12/2500 -870899 01/01/1988 31/12/2500 LIBEN Parts and accessories, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. 01/01/1988 31/12/2500 -87089910 01/01/1988 31/12/2000 LIBEN Parts and accessories for the industrial assembly of: pedestrian-controlled tractors, motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel" <= 2500 cm³ or with spark-ignition internal piston engine <= 2800 cm³, special purpose motor vehicles of heading 8705, n.e.s 01/01/1988 31/12/2000 -87089910 01/01/2007 31/12/2500 LIBEN Parts and accessories for the industrial assembly of: pedestrian-controlled tractors, motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" <= 2500 cm³ or with spark-ignition internal piston engine <= 2800 cm³, special purpose motor vehicles of heading 8705, n.e.s. 01/01/2007 31/12/2500 -87089911 01/01/2001 31/12/2006 LIBEN Airbags with inflator system for the industrial assembly of motor vehicles 01/01/2001 31/12/2006 -87089919 01/01/2001 31/12/2006 LIBEN Parts and accessories for the industrial assembly of: pedestrian-controlled tractors, motor cars and vehicles principally designed for the transport of persons, vehicles for the transport of goods with compression-ignition internal combustion piston engine "diesel or semi-diesel engine" <= 2500 cm³ or with spark-ignition internal piston engine <= 2800 cm³, special purpose motor vehicles of heading 8705, n.e.s 01/01/2001 31/12/2006 -87089930 01/01/1991 31/12/2006 LIBEN Anti roll bars for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.99.19) 01/01/1991 31/12/2006 -87089950 01/01/1991 31/12/2006 LIBEN Torsion bars for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.99.19) 01/01/1991 31/12/2006 -87089991 01/01/1988 31/12/1990 LIBEN Parts and accessories of closed-die forged steel for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading no 8708.99-10) 01/01/1988 31/12/1990 -87089992 01/01/1991 31/12/2006 LIBEN Parts and accessories for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, of closed-die forged steel, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.99.19) 01/01/1991 31/12/2006 -87089993 01/01/2007 31/12/2500 LIBEN Parts and accessories of closed-die forged steel, for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. 01/01/2007 31/12/2500 -87089997 01/01/2007 31/12/2500 LIBEN Parts and accessories for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. of closed-die forged steel) 01/01/2007 31/12/2500 -87089998 01/01/1991 31/12/2006 LIBEN Parts and accessories for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading 8708.99.19 and of closed-die forged steel) 01/01/1991 31/12/2006 -87089999 01/01/1988 31/12/1990 LIBEN Parts and accessories for tractors, motor vehicles for the transport of ten or more persons, motor cars and other motor vehicles principally designed for the transport of persons, motor vehicles for the transport of goods and special purpose motor vehicles, n.e.s. (excl. those for the industrial assembly of certain motor vehicles of subheading no 8708.99-10) 01/01/1988 31/12/1990 -8708S7 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8708 and SITC section 7 01/01/1997 31/12/2500 -8708S784 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8708 and SITC group 784 01/01/1997 31/12/2500 -8709 01/01/1988 31/12/2500 LIBEN Works trucks, self-propelled, not fitted with lifting or handling equipment, of the type used in factories, warehouses, dock areas or airports for short distance transport of goods; tractors of the type used on railway station platforms; parts of the foregoing vehicles, n.e.s. 01/01/1988 31/12/2500 -870911 01/01/1988 31/12/2500 LIBEN Electrical vehicles not fitted with lifting or handling equipment, of the type used in factories, warehouses, dock areas or airports for short distance transport of goods; tractors of the type used on railway station platforms 01/01/1988 31/12/2500 -87091110 01/01/1988 31/12/2500 LIBEN Electrical vehicles, not fitted with lifting or handling equipment, for the transport of highly radioactive materials [Euratom] 01/01/1988 31/12/2500 -87091190 01/01/1988 31/12/2500 LIBEN Electrical vehicles, not fitted with lifting or handling equipment, of the type used in factories, warehouses, dock areas or airports for short distance transport of goods, incl. tractors for railways station platforms (excl. vehicles specially designed for the transport of highly radioactive materials) 01/01/1988 31/12/2500 -870919 01/01/1988 31/12/2500 LIBEN Works trucks, self-propelled, not fitted with lifting or handling equipment, of the type used in factories, warehouses, dock areas or airports for short distance transport of goods; tractors of the type used on railway station platforms (excl. electrical trucks) 01/01/1988 31/12/2500 -87091910 01/01/1988 31/12/2500 LIBEN Works trucks, self-propelled, not fitted with lifting or handling equipment, for the transport of highly radioactive materials [Euratom] (excl. electrical trucks) 01/01/1988 31/12/2500 -87091990 01/01/1988 31/12/2500 LIBEN Works trucks, self-propelled, not fitted with lifting or handling equipment, of the type used in factories, warehouses, dock areas or airports for short distance transport of goods, incl. tractors for railways station platforms (excl. vehicles specially designed for the transport of highly radioactive materials and electrical trucks) 01/01/1988 31/12/2500 -870990 01/01/1988 31/12/2500 LIBEN Parts of self-propelled works trucks, not fitted with lifting or handling equipment, of the type used in factories, warehouses, dock areas or airports for short distance transport of goods, incl. tractors for railways station platforms, n.e.s. 01/01/1988 31/12/2500 -87099000 01/01/1988 31/12/1989 LIBEN Parts of self-propelled works trucks, not fitted with lifting or handling equipment, of the type used in factories, warehouses, dock areas or airports for short distance transport of goods, including tractors for railways station platforms, n.e.s. 01/01/1988 31/12/1989 -87099000 01/01/1997 31/12/2500 LIBEN Parts of self-propelled works trucks, not fitted with lifting or handling equipment, of the type used in factories, warehouses, dock areas or airports for short distance transport of goods, incl. tractors for railways station platforms, n.e.s. 01/01/1997 31/12/2500 -87099010 01/01/1990 31/12/1996 LIBEN Parts of cast iron or cast steel, of works trucks, self-propelled, of 8709.11.10 to 8709.19.90 01/01/1990 31/12/1996 -87099090 01/01/1990 31/12/1996 LIBEN Parts (excl. of cast iron or cast steel) of works trucks, self-propelled, of 8709.11.10 to 8709.19.90 01/01/1990 31/12/1996 -8709I7 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of heading 8709; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/2001 31/12/2005 -8709I700 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of heading 8709; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/2001 31/12/2005 -8710 01/01/1988 31/12/2500 LIBEN Tanks and other armoured fighting vehicles, motorised, whether or not fitted with weapons, and parts of such vehicles, n.e.s. 01/01/1988 31/12/2500 -871000 01/01/1988 31/12/2500 LIBEN Tanks and other armoured fighting vehicles, motorised, whether or not fitted with weapons, and parts of such vehicles, n.e.s. 01/01/1988 31/12/2500 -87100000 01/01/1988 31/12/2500 LIBEN Tanks and other armoured fighting vehicles, motorised, whether or not fitted with weapons, and parts of such vehicles, n.e.s. 01/01/1988 31/12/2500 -8710S8 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8710 and SITC section 8 01/01/1997 31/12/2500 -8710S891 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8710 and SITC group 891 01/01/1997 31/12/2500 -8711 01/01/1988 31/12/2500 LIBEN Motorcycles, incl. mopeds, and cycles fitted with an auxiliary motor, with or without side-cars; side-cars 01/01/1988 31/12/2500 -871110 01/01/1988 31/12/2500 LIBEN Motorcycles, incl. mopeds, with reciprocating internal combustion piston engine of a cylinder capacity <= 50 cm³ 01/01/1988 31/12/2500 -87111000 01/01/1988 31/12/2500 LIBEN Motorcycles, incl. mopeds, with reciprocating internal combustion piston engine of a cylinder capacity <= 50 cm³ 01/01/1988 31/12/2500 -871120 01/01/1988 31/12/2500 LIBEN Motorcycles, incl. mopeds, with reciprocating internal combustion piston engine of a cylinder capacity > 50 cm³ but <= 250 cm³ 01/01/1988 31/12/2500 -87112010 01/01/1988 31/12/2500 LIBEN Scooters of cylinder capacity > 50 cm³ but <= 250 cm³ 01/01/1988 31/12/2500 -87112091 01/01/1988 31/12/2011 LIBEN Motorcycles, incl. mopeds, with reciprocating internal combustion piston engine of a cylinder capacity > 50 cm³ but <= 80 cm³ (excl. scooters) 01/01/1988 31/12/2011 -87112092 01/01/2012 31/12/2500 LIBEN Motorcycles, incl. mopeds, with reciprocating internal combustion piston engine of a cylinder capacity > 50 cm³ but <= 125 cm³ (excl. scooters) 01/01/2012 31/12/2500 -87112093 01/01/1994 31/12/2011 LIBEN Motorcycles, incl. mopeds, with reciprocating internal combustion piston engine of a cylinder capacity > 80 cm³ to 125 cm³ (excl. scooters) 01/01/1994 31/12/2011 -87112098 01/01/1994 31/12/2500 LIBEN Motorcycles, incl. mopeds, with reciprocating internal combustion piston engine of a cylinder capacity > 125 cm³ to 250 cm³ (excl. scooters) 01/01/1994 31/12/2500 -87112099 01/01/1988 31/12/1993 LIBEN Motor-cycles, with reciprocating internal combustion piston engine, of a cylinder capacity > 80 cc but =< 250 cc (excl. scooters) 01/01/1988 31/12/1993 -871130 01/01/1988 31/12/2500 LIBEN Motorcycles, incl. mopeds, with reciprocating internal combustion piston engine of a cylinder capacity > 250 cm³ but <= 500 cm³ 01/01/1988 31/12/2500 -87113000 01/01/1988 31/12/1993 LIBEN Motor-cycles with reciprocating internal combustion piston engine of a cylinder capacity > 250 cc but =< 500 cc 01/01/1988 31/12/1993 -87113010 01/01/1994 31/12/2500 LIBEN Motorcycles, incl. mopeds, with reciprocating internal combustion piston engine of a cylinder capacity > 250 cm³ to 380 cm³ 01/01/1994 31/12/2500 -87113090 01/01/1994 31/12/2500 LIBEN Motorcycles, incl. mopeds, with reciprocating internal combustion piston engine of a cylinder capacity > 380 cm³ to 500 cm³ 01/01/1994 31/12/2500 -871140 01/01/1988 31/12/2500 LIBEN Motorcycles, incl. mopeds, with reciprocating internal combustion piston engine of a cylinder capacity > 500 cm³ but <= 800 cm³ 01/01/1988 31/12/2500 -87114000 01/01/1988 31/12/2500 LIBEN Motorcycles, incl. mopeds, with reciprocating internal combustion piston engine of a cylinder capacity > 500 cm³ but <= 800 cm³ 01/01/1988 31/12/2500 -871150 01/01/1988 31/12/2500 LIBEN Motorcycles, incl. mopeds, with reciprocating internal combustion piston engine of a cylinder capacity > 800 cm³ 01/01/1988 31/12/2500 -87115000 01/01/1988 31/12/2500 LIBEN Motorcycles, incl. mopeds, with reciprocating internal combustion piston engine of a cylinder capacity > 800 cm³ 01/01/1988 31/12/2500 -871160 01/01/2017 31/12/2500 LIBEN Motorcycles, incl. mopeds, and cycles fitted with an auxiliary motor, with electric motor for propulsion 01/01/2017 31/12/2500 -87116010 01/01/2017 31/12/2500 LIBEN Bicycles, tricycles and quadricycles, with pedal assistance, with an auxiliary electric motor with a continuous rated power <= 250 W 01/01/2017 31/12/2500 -87116090 01/01/2017 31/12/2500 LIBEN Motorcycles, incl. mopeds, and cycles fitted with an auxiliary motor, with electric motor for propulsion (excl. bicycles, tricycles and quadricycles, with pedal assistance, with a continuous rated power <= 250 W) 01/01/2017 31/12/2500 -871190 01/01/1988 31/12/2500 LIBEN Motorcycles, incl. mopeds, and cycles fitted with an auxiliary motor and side cars for motorcycles (excl. electric or with reciprocating internal combustion piston engine) 01/01/1988 31/12/2500 -87119000 01/01/1988 31/12/2011 LIBEN Motorcycles, incl. mopeds, and cycles fitted with an auxiliary motor and side cars for motorcycles (excl. with reciprocating internal combustion piston engine) 01/01/1988 31/12/2011 -87119000 01/01/2017 31/12/2500 LIBEN Motorcycles, incl. mopeds, and cycles fitted with an auxiliary motor and side cars for motorcycles (excl. electric or with reciprocating internal combustion piston engine) 01/01/2017 31/12/2500 -87119010 01/01/2012 31/12/2016 LIBEN Cycles, with an auxiliary electric motor with a continuous rated power <= 250 W 01/01/2012 31/12/2016 -87119090 01/01/2012 31/12/2016 LIBEN Motorcycles, incl. mopeds, and cycles fitted with an auxiliary motor and side cars for motorcycles (excl. with reciprocating internal combustion piston engine, and cycles with continuous rated power <= 250 W)) 01/01/2012 31/12/2016 -8712 01/01/1988 31/12/2500 LIBEN Bicycles and other cycles, incl. delivery tricycles, not motorised 01/01/1988 31/12/2500 -871200 01/01/1988 31/12/2500 LIBEN Bicycles and other cycles, incl. delivery tricycles, not motorised 01/01/1988 31/12/2500 -87120010 01/01/1988 31/12/2011 LIBEN Bicycles without ball bearings 01/01/1988 31/12/2011 -87120030 01/01/1994 31/12/2500 LIBEN Bicycles, not motorised, with ball bearings 01/01/1994 31/12/2500 -87120070 01/01/2012 31/12/2500 LIBEN Cycles, incl. delivery tricycles, not motorised (excl. bicycles with ball bearings) 01/01/2012 31/12/2500 -87120080 01/01/1994 31/12/2011 LIBEN Cycles, incl. delivery tricycles, not motorised, with ball bearings (excl. bicycles) 01/01/1994 31/12/2011 -87120090 01/01/1988 31/12/1993 LIBEN Bicycles and other cycles -including delivery tricycles- not motorized, with ballbearings 01/01/1988 31/12/1993 -8713 01/01/1988 31/12/2500 LIBEN Carriages for disabled persons, whether or not motorised or otherwise mechanically propelled (excl. specially designed motor vehicles and bicycles) 01/01/1988 31/12/2500 -871310 01/01/1988 31/12/2500 LIBEN Carriages for disabled persons, not mechanically propelled 01/01/1988 31/12/2500 -87131000 01/01/1988 31/12/2500 LIBEN Carriages for disabled persons, not mechanically propelled 01/01/1988 31/12/2500 -871390 01/01/1988 31/12/2500 LIBEN Carriages for disabled persons, motorised or otherwise mechanically propelled (excl. specially designed motor vehicles and bicycles) 01/01/1988 31/12/2500 -87139000 01/01/1988 31/12/2500 LIBEN Carriages for disabled persons, motorised or otherwise mechanically propelled (excl. specially designed motor vehicles and bicycles) 01/01/1988 31/12/2500 -8714 01/01/1988 31/12/2500 LIBEN Parts and accessories for motorcycles and bicycles and for carriages for disabled persons, n.e.s. 01/01/1988 31/12/2500 -871410 01/01/2012 31/12/2500 LIBEN Parts and accessories of motorcycles, incl. mopeds, n.e.s. 01/01/2012 31/12/2500 -87141000 01/01/2012 31/12/2013 LIBEN Parts and accessories of motorcycles, incl. mopeds, n.e.s. 01/01/2012 31/12/2013 -87141010 01/01/2014 31/12/2500 LIBEN Brakes and parts thereof, of motorcycles "incl. mopeds" 01/01/2014 31/12/2500 -87141020 01/01/2014 31/12/2500 LIBEN Gear boxes and parts thereof, of motorcycles "incl. mopeds" 01/01/2014 31/12/2500 -87141030 01/01/2014 31/12/2500 LIBEN Road wheels and parts and accessories thereof, of motorcycles "incl. mopeds" 01/01/2014 31/12/2500 -87141040 01/01/2014 31/12/2500 LIBEN Silencers "mufflers" and exhaust pipes, and their parts, of motorcycles "incl. mopeds" 01/01/2014 31/12/2500 -87141050 01/01/2014 31/12/2500 LIBEN Clutches and parts thereof, of motorcycles "incl. mopeds" 01/01/2014 31/12/2500 -87141090 01/01/2014 31/12/2500 LIBEN Parts and accessories of motorcycles, incl. mopeds, n.e.s. (excl. brakes, gear boxes, road wheels, silencers, exhaust pipes, clutches, and their parts) 01/01/2014 31/12/2500 -871411 01/01/1988 31/12/2011 LIBEN Saddles for motorcycles, incl. mopeds 01/01/1988 31/12/2011 -87141100 01/01/1988 31/12/2011 LIBEN Saddles for motorcycles, incl. mopeds 01/01/1988 31/12/2011 -871419 01/01/1988 31/12/2011 LIBEN Parts and accessories for motorcycles, incl. mopeds, n.e.s. 01/01/1988 31/12/2011 -87141900 01/01/1988 31/12/2011 LIBEN Parts and accessories for motorcycles, incl. mopeds, n.e.s. 01/01/1988 31/12/2011 -871420 01/01/1988 31/12/2500 LIBEN Parts and accessories for carriages for disabled persons, n.e.s. 01/01/1988 31/12/2500 -87142000 01/01/1988 31/12/2500 LIBEN Parts and accessories for carriages for disabled persons, n.e.s. 01/01/1988 31/12/2500 -871491 01/01/1988 31/12/2500 LIBEN Frames and forks, and parts thereof, for cycles, n.e.s. (excl. for motorcycles) 01/01/1988 31/12/2500 -87149110 01/01/1988 31/12/2500 LIBEN Frames for cycles (excl. for motorcycles) 01/01/1988 31/12/2500 -87149130 01/01/1988 31/12/2500 LIBEN Front forks for cycles (excl. for motorcycles) 01/01/1988 31/12/2500 -87149190 01/01/1988 31/12/2500 LIBEN Parts of front forks, for cycles (excl. for motorcycles) 01/01/1988 31/12/2500 -871492 01/01/1988 31/12/2500 LIBEN Wheel rims and spokes, for cycles (excl. for motorcycles) 01/01/1988 31/12/2500 -87149210 01/01/1988 31/12/2500 LIBEN Rims for cycles (excl. for motorcycles) 01/01/1988 31/12/2500 -87149290 01/01/1988 31/12/2500 LIBEN Spokes for cycles (excl. for motorcycles) 01/01/1988 31/12/2500 -871493 01/01/1988 31/12/2500 LIBEN Hubs and free-wheel sprocket-wheels for cycles (excl. for motorcycles and coaster braking hubs and hub brakes) 01/01/1988 31/12/2500 -87149300 01/01/2012 31/12/2500 LIBEN Hubs and free-wheel sprocket-wheels for cycles (excl. for motorcycles and coaster braking hubs and hub brakes) 01/01/2012 31/12/2500 -87149310 01/01/1988 31/12/2011 LIBEN Hubs without free-wheel or braking device, for bicycles 01/01/1988 31/12/2011 -87149390 01/01/1988 31/12/2011 LIBEN Free-wheel sprocket-wheels, for bicycles 01/01/1988 31/12/2011 -871494 01/01/1988 31/12/2500 LIBEN Brakes, incl. coaster braking hubs and hub brakes, and parts thereof, for cycles (excl. for motorcycles) 01/01/1988 31/12/2500 -87149410 01/01/1988 31/12/2011 LIBEN Coaster braking hubs and hub brakes, for bicycles 01/01/1988 31/12/2011 -87149420 01/01/2012 31/12/2500 LIBEN Brakes, incl. coaster braking hubs and hub brakes, for cycles (excl. for motorcycles) 01/01/2012 31/12/2500 -87149430 01/01/1988 31/12/2011 LIBEN Brakes (other than coaster braking hubs) and hub brakes, for bicycles 01/01/1988 31/12/2011 -87149490 01/01/1988 31/12/2500 LIBEN Parts of brakes, incl. coaster braking hubs and hub-brakes, for cycles, n.e.s. (excl. for motorcycles) 01/01/1988 31/12/2500 -871495 01/01/1988 31/12/2500 LIBEN Saddles for cycles (excl. for motorcycles) 01/01/1988 31/12/2500 -87149500 01/01/1988 31/12/2500 LIBEN Saddles for cycles (excl. for motorcycles) 01/01/1988 31/12/2500 -871496 01/01/1988 31/12/2500 LIBEN Pedals and crank-gear, and parts thereof, for bicycles, n.e.s. 01/01/1988 31/12/2500 -87149610 01/01/1988 31/12/2500 LIBEN Pedals for bicycles 01/01/1988 31/12/2500 -87149630 01/01/1988 31/12/2500 LIBEN Crank-gear for bicycles 01/01/1988 31/12/2500 -87149690 01/01/1988 31/12/2500 LIBEN Parts of pedals and crank-gear for bicycles, n.e.s. 01/01/1988 31/12/2500 -871499 01/01/1988 31/12/2500 LIBEN Parts and accessories, for bicycles, n.e.s. 01/01/1988 31/12/2500 -87149910 01/01/1988 31/12/2500 LIBEN Handlebars for bicycles 01/01/1988 31/12/2500 -87149930 01/01/1988 31/12/2500 LIBEN Luggage carriers for bicycles 01/01/1988 31/12/2500 -87149950 01/01/1988 31/12/2500 LIBEN Derailleur gears for bicycles 01/01/1988 31/12/2500 -87149990 01/01/1988 31/12/2500 LIBEN Parts and accessories for bicycles, and parts thereof, n.e.s. 01/01/1988 31/12/2500 -8715 01/01/1988 31/12/2500 LIBEN Baby carriages and parts thereof, n.e.s. 01/01/1988 31/12/2500 -871500 01/01/1988 31/12/2500 LIBEN Baby carriages and parts thereof, n.e.s. 01/01/1988 31/12/2500 -87150010 01/01/1988 31/12/2500 LIBEN Baby carriages 01/01/1988 31/12/2500 -87150090 01/01/1988 31/12/2500 LIBEN Parts of baby carriages, n.e.s. 01/01/1988 31/12/2500 -8716 01/01/1988 31/12/2500 LIBEN Trailers and semi-trailers; other vehicles, not mechanically propelled (excl. railway and tramway vehicles); parts thereof, n.e.s. 01/01/1988 31/12/2500 -871610 01/01/1988 31/12/2500 LIBEN Trailers and semi-trailers of the caravan type, for housing or camping 01/01/1988 31/12/2500 -87161010 01/01/1988 31/12/2011 LIBEN Trailers and semi-trailers of the caravan type, for housing or camping, folding 01/01/1988 31/12/2011 -87161091 01/01/1988 31/12/2011 LIBEN Trailers and semi-trailers of the caravan type, for housing or camping, not folding, of a weight <= 750 kg 01/01/1988 31/12/2011 -87161092 01/01/2012 31/12/2500 LIBEN Trailers and semi-trailers of the caravan type, for housing or camping, of a weight <= 1600 kg 01/01/2012 31/12/2500 -87161093 01/01/1988 31/12/1994 LIBEN Trailers and semi-trailers of the caravan type, for housing or camping, not folding, of a weight > 750 kg but =< 3 500 kg 01/01/1988 31/12/1994 -87161094 01/01/1995 31/12/2011 LIBEN Trailers and semi-trailers of the caravan type, for housing or camping, of a weight of > 750 kg but <= 1.600 kg 01/01/1995 31/12/2011 -87161096 01/01/1995 31/12/2011 LIBEN Trailers and semi-trailers of the caravan type, for housing or camping, of a weight of > 1.600 kg but <= 3.500 kg 01/01/1995 31/12/2011 -87161098 01/01/2012 31/12/2500 LIBEN Trailers and semi-trailers of the caravan type, for housing or camping, of a weight > 1600 kg 01/01/2012 31/12/2500 -87161099 01/01/1988 31/12/2011 LIBEN Trailers and semi-trailers of the caravan type, for housing or camping, not folding, of a weight > 3.500 kg 01/01/1988 31/12/2011 -871620 01/01/1988 31/12/2500 LIBEN Self-loading or self-unloading trailers and semi-trailers for agricultural purposes 01/01/1988 31/12/2500 -87162000 01/01/2000 31/12/2500 LIBEN Self-loading or self-unloading trailers and semi-trailers for agricultural purposes 01/01/2000 31/12/2500 -87162010 01/01/1988 31/12/1999 LIBEN Manure spreaders 01/01/1988 31/12/1999 -87162090 01/01/1988 31/12/1999 LIBEN Self-loading of self-unloading trailers and semi-trailers for agricultural purposes (excl. manure spreaders) 01/01/1988 31/12/1999 -871631 01/01/1988 31/12/2500 LIBEN Tanker trailers and tanker semi-trailers, not designed for running on rails 01/01/1988 31/12/2500 -87163100 01/01/1988 31/12/2500 LIBEN Tanker trailers and tanker semi-trailers, not designed for running on rails 01/01/1988 31/12/2500 -871639 01/01/1988 31/12/2500 LIBEN Trailers and semi-trailers for the transport of goods, not designed for running on rails (excl. self-loading or self-unloading trailers and semi-trailers for agricultural purposes and tanker trailers and tanker semi-trailers) 01/01/1988 31/12/2500 -87163910 01/01/1988 31/12/2500 LIBEN Trailers and semi-trailers, not designed for running on rails, for the transport of highly radioactive materials [Euratom] 01/01/1988 31/12/2500 -87163930 01/01/1989 31/12/2500 LIBEN Semi-trailers for the transport of goods, new (excl. self-loading or self-unloading semi-trailers for agricultural purposes, tanker semi-trailers, and semi-trailers not designed for running on rails for the transport of highly radioactive materials [Euratom]) 01/01/1989 31/12/2500 -87163950 01/01/2012 31/12/2500 LIBEN Trailers for the transport of goods, new (excl. self-loading or self-unloading trailers for agricultural purposes, tanker trailers, and trailers designed for the transport of highly radioactive materials) 01/01/2012 31/12/2500 -87163951 01/01/1989 31/12/2011 LIBEN Trailers for the transport of goods, with a single axle, new (excl. self-loading or self-unloading trailers for agricultural purposes, tanker trailers, and trailers not designed for running on rails for the transport of highly radioactive materials [Euratom]) 01/01/1989 31/12/2011 -87163959 01/01/1989 31/12/2011 LIBEN Trailers for the transport of goods, with multiple-axle, new (excl. self-loading or self-unloading trailers for agricultural purposes, tanker trailers, and trailers not designed for running on rails for the transport of highly radioactive materials [Euratom]) 01/01/1989 31/12/2011 -87163980 01/01/1989 31/12/2500 LIBEN Trailers and semi-trailers for the transport of goods, used (excl. self-loading or self-unloading trailers and semi-trailers for agricultural purposes, tanker trailers and semi-trailers, and trailers and semi-trailers not designed for running on rails for the transport of highly radioactive materials [Euratom]) 01/01/1989 31/12/2500 -87163990 01/01/1988 31/12/1988 LIBEN Trailers, not designed for running on rails, for the transport of goods (excl. self-loading of self-unloading trailers and semi-trailers for agricultural purposes, trailers for the transport of highly radioactive materials and tanker trailers and tanker semi-trailers) 01/01/1988 31/12/1988 -871640 01/01/1988 31/12/2500 LIBEN Trailers and semi-trailers, not designed for running on rails (excl. trailers and semi-trailers for the transport of goods and those of the caravan type for housing or camping) 01/01/1988 31/12/2500 -87164000 01/01/1988 31/12/2500 LIBEN Trailers and semi-trailers, not designed for running on rails (excl. trailers and semi-trailers for the transport of goods and those of the caravan type for housing or camping) 01/01/1988 31/12/2500 -871680 01/01/1988 31/12/2500 LIBEN Vehicles pushed or drawn by hand and other vehicles not mechanically propelled (excl. trailers and semi-trailers) 01/01/1988 31/12/2500 -87168000 01/01/1988 31/12/2500 LIBEN Vehicles pushed or drawn by hand and other vehicles not mechanically propelled (excl. trailers and semi-trailers) 01/01/1988 31/12/2500 -871690 01/01/1988 31/12/2500 LIBEN Parts of trailers and semi-trailers and other vehicles not mechanically propelled, n.e.s. 01/01/1988 31/12/2500 -87169000 01/01/1988 31/12/1988 LIBEN Parts of trailers and semi-trailers and other vehicles not mechanically propelled, n.e.s. 01/01/1988 31/12/1988 -87169010 01/01/1989 31/12/2500 LIBEN Chassis of trailers, semi-trailers and other vehicles not mechanically propelled, n.e.s. 01/01/1989 31/12/2500 -87169030 01/01/1989 31/12/2500 LIBEN Bodies of trailers, semi-trailers and other vehicles not mechanically propelled, n.e.s. 01/01/1989 31/12/2500 -87169050 01/01/1989 31/12/2500 LIBEN Axles of trailers, semi-trailers and other vehicles not mechanically propelled, n.e.s. 01/01/1989 31/12/2500 -87169090 01/01/1989 31/12/2500 LIBEN Parts of trailers, semi-trailers and other vehicles not mechanically propelled, n.e.s. (excl. chassis, bodies and axles) 01/01/1989 31/12/2500 -87CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 87 01/01/2002 31/12/2500 -87CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 87 01/01/2002 31/12/2500 -87CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 87 01/01/2002 31/12/2500 -87EE 01/01/1988 31/12/2004 LIBEN Sets of goods of chapter 87 01/01/1988 31/12/2004 -87EEE0 01/01/1988 31/12/2004 LIBEN Sets of goods of chapter 87 01/01/1988 31/12/2004 -87EEE000 01/01/1988 31/12/2004 LIBEN Sets of goods of chapter 87 01/01/1988 31/12/2004 -87EEE002 01/01/1993 31/12/2004 LIBEN Sets of goods of chapter 87 01/01/1993 31/12/2004 -87EEE004 01/01/1993 31/12/2004 LIBEN Sets of goods of chapter 87 01/01/1993 31/12/2004 -87II 01/01/1988 31/12/2500 LIBEN Components of complete industrial plants of chapter 87 01/01/1988 31/12/2500 -87III0 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -87III0 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 87 01/01/2006 31/12/2500 -87III000 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -87III000 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 87 01/01/2006 31/12/2500 -87III1 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -87III100 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -87III2 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -87III200 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -87III3 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -87III3 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of chapter 87; mechanical engineering and construction of means of transport; instrument engineering 01/01/2000 31/12/2005 -87III300 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -87III300 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of chapter 87; mechanical engineering and construction of means of transport; instrument engineering 01/01/2000 31/12/2005 -87III4 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -87III400 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -87III5 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; food, drink and tobacco industry 01/01/1988 31/12/1992 -87III500 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; food, drink and tobacco industry 01/01/1988 31/12/1992 -87III6 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -87III600 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -87III7 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -87III700 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -87III8 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/1992 -87III800 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 87; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/1992 -87III9 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 87; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -87III900 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 87; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -87MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -87MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -87MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -87SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 87 01/01/1988 31/12/2500 -87SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 87 and SITC section 0 01/01/1997 31/12/2001 -87SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 87 and SITC group 000 01/01/1997 31/12/2001 -87SSS7 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 87 and SITC section 7 01/01/1990 31/12/2500 -87SSS722 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 87 and SITC group 722 01/01/1997 31/12/2500 -87SSS744 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 87 and SITC group 744 01/01/1997 31/12/2500 -87SSS781 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 87 and SITC group 781 01/01/1997 31/12/2500 -87SSS782 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 87 and SITC group 782 01/01/1990 31/12/2500 -87SSS783 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 87 and SITC group 783 01/01/1997 31/12/2500 -87SSS784 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 87 and SITC group 784 01/01/1997 31/12/2500 -87SSS785 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 87 and SITC group 785 01/01/1992 31/12/2500 -87SSS786 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 87 and SITC group 786 01/01/1997 31/12/2500 -87SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 87 and SITC section 8 01/01/1997 31/12/2500 -87SSS891 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 87 and SITC group 891 01/01/1997 31/12/2500 -87SSS894 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 87 and SITC group 894 01/01/1997 31/12/2500 -87SSS9 01/01/1988 31/12/1989 LIBEN Confidential trade of chapter 87 and SITC section 9 01/01/1988 31/12/1989 -87SSS9 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 87 and SITC section 9 01/01/1990 31/12/2500 -87SSS951 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 87 and SITC group 951 01/01/1997 31/12/2500 -87SSS981 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 87 and SITC group 981 01/01/1990 31/12/2500 -87SSS992 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 87 and SITC group 992 01/01/1992 31/12/2500 -87SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 87 and SITC group 999 01/01/1988 31/12/1996 -87SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 87 and SITC group 999 01/01/1997 31/12/2500 -87VV 01/01/1988 31/12/2500 LIBEN Parts for motor vehicle for which simplified national provision apply 01/01/1988 31/12/2500 -87VVV0 01/01/1988 31/12/2500 LIBEN Parts for motor vehicle for which simplified national provision apply 01/01/1988 31/12/2500 -87VVV000 01/01/1988 31/12/2500 LIBEN Parts for motor vehicle for which simplified national provision apply 01/01/1988 31/12/2500 -88 01/01/1988 31/12/2500 LIBEN AIRCRAFT, SPACECRAFT, AND PARTS THEREOF 01/01/1988 31/12/2500 -8801 01/01/1988 31/12/2500 LIBEN Balloons and dirigibles; gliders, hang gliders and other non-powered aircraft 01/01/1988 31/12/2500 -880100 01/01/2007 31/12/2500 LIBEN Balloons and dirigibles; gliders, hang gliders and other non-powered aircraft 01/01/2007 31/12/2500 -88010010 01/01/2007 31/12/2500 LIBEN Gliders, without motor and not capable of being fitted with a motor, and hang gliders; balloons and dirigibles (excl. party balloons) 01/01/2007 31/12/2500 -88010090 01/01/2007 31/12/2500 LIBEN Kites and other non-powered aircraft (excl. gliders, hang gliders, balloons and children's kites) 01/01/2007 31/12/2500 -880110 01/01/1988 31/12/2006 LIBEN Gliders, without motor and not capable of being fitted with a motor, and hang gliders 01/01/1988 31/12/2006 -88011000 01/01/2006 31/12/2006 LIBEN Gliders, without motor and not capable of being fitted with a motor, and hang gliders 01/01/2006 31/12/2006 -88011010 01/01/1988 31/12/2005 LIBEN Gliders, without motor and not capable of being fitted with a motor, and hang gliders, for civil use 01/01/1988 31/12/2005 -88011090 01/01/1988 31/12/2005 LIBEN Gliders, without motor and not capable of being fitted with a motor, and hang gliders (excl. those for civil use of subheading 8801.10.10) 01/01/1988 31/12/2005 -880190 01/01/1988 31/12/2006 LIBEN Kites and other non-powered aircraft, balloons and dirigibles (excl. gliders, hang gliders, children's kites and party balloons) 01/01/1988 31/12/2006 -88019010 01/01/1988 31/12/2005 LIBEN Kites and other non-powered aircraft, balloons and dirigibles, for civil use (excl. gliders, hang gliders, children's kites and party balloons) 01/01/1988 31/12/2005 -88019020 01/01/2006 31/12/2006 LIBEN Balloons and dirigibles (excl. party balloons) 01/01/2006 31/12/2006 -88019080 01/01/2006 31/12/2006 LIBEN Kites and other non-powered aircraft (excl. gliders, hang gliders, balloons and children's kites) 01/01/2006 31/12/2006 -88019091 01/01/1988 31/12/2005 LIBEN Balloons and dirigibles (excl. those for civil use of subheading 8801.90.10, and party balloons) 01/01/1988 31/12/2005 -88019099 01/01/1988 31/12/2005 LIBEN Kites and other non-powered aircraft (excl. those for civil use of subheading 8801.90.10, gliders, hang gliders, balloons and children's kites) 01/01/1988 31/12/2005 -8802 01/01/1988 31/12/2500 LIBEN Powered aircraft "e.g. helicopters and aeroplanes"; spacecraft, incl. satellites, and suborbital and spacecraft launch vehicles 01/01/1988 31/12/2500 -880211 01/01/1988 31/12/2500 LIBEN Helicopters of an unladen weight <= 2.000 kg 01/01/1988 31/12/2500 -88021100 01/01/2006 31/12/2500 LIBEN Helicopters of an unladen weight <= 2.000 kg 01/01/2006 31/12/2500 -88021110 01/01/1988 31/12/2005 LIBEN Civil helicopters of an unladen weight <= 2.000 kg 01/01/1988 31/12/2005 -88021190 01/01/1988 31/12/2005 LIBEN Helicopters of an unladen weight <= 2.000 kg (excl. civil helicopters of subheading 8802.11.10) 01/01/1988 31/12/2005 -880212 01/01/1988 31/12/2500 LIBEN Helicopters of an unladen weight > 2.000 kg 01/01/1988 31/12/2500 -88021200 01/01/2006 31/12/2500 LIBEN Helicopters of an unladen weight > 2.000 kg 01/01/2006 31/12/2500 -88021210 01/01/1988 31/12/2005 LIBEN Civil helicopters of an unladen weight > 2.000 kg 01/01/1988 31/12/2005 -88021290 01/01/1988 31/12/2005 LIBEN Helicopters of an unladen weight > 2.000 kg (excl. civil helicopters of subheading 8802.12.10) 01/01/1988 31/12/2005 -880220 01/01/1988 31/12/2500 LIBEN Aeroplanes and other powered aircraft of an unladen weight <= 2.000 kg (excl. helicopters and dirigibles) 01/01/1988 31/12/2500 -88022000 01/01/2006 31/12/2500 LIBEN Aeroplanes and other powered aircraft of an unladen weight <= 2.000 kg (excl. helicopters and dirigibles) 01/01/2006 31/12/2500 -88022010 01/01/1988 31/12/2005 LIBEN Aeroplanes and other powered aircraft of an unladen weight <= 2.000 kg, for civil use (excl. helicopters and dirigibles) 01/01/1988 31/12/2005 -88022090 01/01/1988 31/12/2005 LIBEN Aeroplanes and other powered aircraft of an unladen weight <= 2.000 kg (excl. civil aircraft of subheading 8802.20.10, helicopters and dirigibles) 01/01/1988 31/12/2005 -880230 01/01/1988 31/12/2500 LIBEN Aeroplanes and other powered aircraft of an unladen weight > 2.000 kg but <= 15.000 kg (excl. helicopters and dirigibles) 01/01/1988 31/12/2500 -88023000 01/01/2006 31/12/2500 LIBEN Aeroplanes and other powered aircraft of an unladen weight > 2.000 kg but <= 15.000 kg (excl. helicopters and dirigibles) 01/01/2006 31/12/2500 -88023010 01/01/1988 31/12/2005 LIBEN Aeroplanes and other powered aircraft of an unladen weight > 2.000 kg but <= 15.000 kg, for civil use (excl. helicopters and dirigibles) 01/01/1988 31/12/2005 -88023090 01/01/1988 31/12/2005 LIBEN Aeroplanes and other powered aircraft of an unladen weight > 2.000 kg but <= 15.000 kg (excl. aircraft for civil use of subheading 8802.30.10, helicopters and dirigibles) 01/01/1988 31/12/2005 -880240 01/01/1988 31/12/2500 LIBEN Aeroplanes and other powered aircraft of an of an unladen weight > 15.000 kg (excl. helicopters and dirigibles) 01/01/1988 31/12/2500 -88024000 01/01/2006 31/12/2500 LIBEN Aeroplanes and other powered aircraft of an of an unladen weight > 15.000 kg (excl. helicopters and dirigibles) 01/01/2006 31/12/2500 -88024010 01/01/1988 31/12/2005 LIBEN Aeroplanes and other powered aircraft of an of an unladen weight > 15.000 kg, for civil use (excl. helicopters and dirigibles) 01/01/1988 31/12/2005 -88024090 01/01/1988 31/12/2005 LIBEN Aeroplanes and other powered aircraft of an of an unladen weight > 15.000 kg (excl. civil aircraft for cicil use of subheading 8802.40.10, helicopters and dirigibles) 01/01/1988 31/12/2005 -880250 01/01/1988 31/12/1995 LIBEN Spacecraft -incl. satellites- and spacecraft launch vehicles 01/01/1988 31/12/1995 -88025000 01/01/1988 31/12/1995 LIBEN Spacecraft -incl. satellites- and spacecraft launch vehicles 01/01/1988 31/12/1995 -880260 01/01/1996 31/12/2500 LIBEN Spacecraft, incl. satellites, and suborbital and spacecraft launch vehicles 01/01/1996 31/12/2500 -88026000 01/01/1996 31/12/1998 LIBEN Spacecraft, incl. satellites, and suborbital and spacecraft launch vehicles 01/01/1996 31/12/1998 -88026010 01/01/1999 31/12/2016 LIBEN Spacecraft, incl. satellites 01/01/1999 31/12/2016 -88026011 01/01/2017 31/12/2500 LIBEN Telecommunication satellites 01/01/2017 31/12/2500 -88026019 01/01/2017 31/12/2500 LIBEN Spacecraft (excl. telecommunication satellites) 01/01/2017 31/12/2500 -88026090 01/01/1999 31/12/2500 LIBEN Suborbital and spacecraft launch vehicles 01/01/1999 31/12/2500 -8802S7 01/01/2007 31/12/2500 LIBEN Confidential trade of heading 8802 and SITC section 7 01/01/2007 31/12/2500 -8802S792 01/01/2007 31/12/2500 LIBEN Confidential trade of heading 8802 and SITC group 792 01/01/2007 31/12/2500 -8803 01/01/1988 31/12/2500 LIBEN Parts of aircraft and spacecraft of heading 8801 or 8802, n.e.s. 01/01/1988 31/12/2500 -880310 01/01/1988 31/12/2500 LIBEN Propellers and rotors and parts thereof, for aircraft, n.e.s. 01/01/1988 31/12/2500 -88031000 01/01/2006 31/12/2500 LIBEN Propellers and rotors and parts thereof, for aircraft, n.e.s. 01/01/2006 31/12/2500 -88031010 01/01/1988 31/12/2005 LIBEN Propellers and rotors and parts thereof, for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -88031090 01/01/1988 31/12/2005 LIBEN Propellers and rotors and parts thereof, for aircraft, n.e.s. (excl. those for civil aircraft of subheading 8803.10.10) 01/01/1988 31/12/2005 -880320 01/01/1988 31/12/2500 LIBEN Under-carriages and parts thereof, for aircraft, n.e.s. 01/01/1988 31/12/2500 -88032000 01/01/2006 31/12/2500 LIBEN Under-carriages and parts thereof, for aircraft, n.e.s. 01/01/2006 31/12/2500 -88032010 01/01/1988 31/12/2005 LIBEN Under-carriages and parts thereof, for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -88032090 01/01/1988 31/12/2005 LIBEN Under-carriages and parts thereof, for aircraft, n.e.s. (excl. those for civil aircraft of subheading 8803.20.10) 01/01/1988 31/12/2005 -880330 01/01/1988 31/12/2500 LIBEN Parts of aeroplanes or helicopters, n.e.s. (excl. those for gliders) 01/01/1988 31/12/2500 -88033000 01/01/2006 31/12/2500 LIBEN Parts of aeroplanes or helicopters, n.e.s. (excl. those for gliders) 01/01/2006 31/12/2500 -88033010 01/01/1988 31/12/2005 LIBEN Parts of aeroplanes or helicopters, for civil aircraft, n.e.s. (excl. those for gliders) 01/01/1988 31/12/2005 -88033090 01/01/1988 31/12/2005 LIBEN Parts of aeroplanes or helicopters, n.e.s. (excl. those for gliders and civil aircraft of subheading 8803.30.10) 01/01/1988 31/12/2005 -880390 01/01/1988 31/12/2500 LIBEN Parts of aircraft and spacecraft, n.e.s. 01/01/1988 31/12/2500 -88039010 01/01/1988 31/12/2500 LIBEN Parts of kites 01/01/1988 31/12/2500 -88039020 01/01/1999 31/12/2016 LIBEN Parts of spacecraft, incl. satellites, n.e.s. 01/01/1999 31/12/2016 -88039021 01/01/2017 31/12/2500 LIBEN Parts of telecommunication satellites, n.e.s. 01/01/2017 31/12/2500 -88039029 01/01/2017 31/12/2500 LIBEN Parts of spacecraft, incl. satellites, n.e.s. 01/01/2017 31/12/2500 -88039030 01/01/1999 31/12/2500 LIBEN Parts of suborbital and spacecraft launch vehicles, n.e.s. 01/01/1999 31/12/2500 -88039090 01/01/2006 31/12/2500 LIBEN Parts of aircraft, n.e.s. (excl. of spacecraft, incl. satellites, and suborbital and spacecraft launch vehicles) 01/01/2006 31/12/2500 -88039091 01/01/1988 31/12/2005 LIBEN Parts for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -88039098 01/01/1999 31/12/2005 LIBEN Parts of aircraft, n.e.s. (excl. those for civil aircraft and gliders of subheading 8803.90.91, of spacecraft, incl. satellites, and suborbital and spacecraft launch vehicles) 01/01/1999 31/12/2005 -88039099 01/01/1988 31/12/1998 LIBEN Parts of aircraft and spacecraft, n.e.s. (excl. those for civil aircraft of subheading 8803.90.91) 01/01/1988 31/12/1998 -8804 01/01/1988 31/12/2500 LIBEN Parachutes, incl. dirigible parachutes and paragliders, and rotochutes; parts thereof and accessories thereto, n.e.s. 01/01/1988 31/12/2500 -880400 01/01/1988 31/12/2500 LIBEN Parachutes, incl. dirigible parachutes and paragliders, and rotochutes; parts thereof and accessories thereto, n.e.s. 01/01/1988 31/12/2500 -88040000 01/01/1988 31/12/2500 LIBEN Parachutes, incl. dirigible parachutes and paragliders, and rotochutes; parts thereof and accessories thereto, n.e.s. 01/01/1988 31/12/2500 -8805 01/01/1988 31/12/2500 LIBEN Aircraft launching gear (excl. motor winches for launching gliders); deck-arrestor or similar gear; ground flying trainers; parts of the foregoing articles, n.e.s. 01/01/1988 31/12/2500 -880510 01/01/1988 31/12/2500 LIBEN Aircraft launching gear and parts thereof, n.e.s. (excl. motor winches for launching gliders); deck-arrestor or similar gear and parts thereof, n.e.s. 01/01/1988 31/12/2500 -88051010 01/01/1988 31/12/2500 LIBEN Aircraft launching gear and parts thereof, n.e.s. (excl. motor winches for launching gliders) 01/01/1988 31/12/2500 -88051090 01/01/1988 31/12/2500 LIBEN Deck-arrestor or similar gear for aircraft and parts thereof, n.e.s. 01/01/1988 31/12/2500 -880520 01/01/1988 31/12/2001 LIBEN Ground flying trainers and parts thereof, n.e.s. 01/01/1988 31/12/2001 -88052010 01/01/1988 31/12/2001 LIBEN Ground flying trainers and parts thereof, for civil use, n.e.s. 01/01/1988 31/12/2001 -88052090 01/01/1988 31/12/2001 LIBEN Ground flying trainers and parts thereof, n.e.s. (excl. those for civil use of subheading 8805.20.10) 01/01/1988 31/12/2001 -880521 01/01/2002 31/12/2500 LIBEN Air combat simulators and parts thereof 01/01/2002 31/12/2500 -88052100 01/01/2002 31/12/2500 LIBEN Air combat simulators and parts thereof 01/01/2002 31/12/2500 -880529 01/01/2002 31/12/2500 LIBEN Ground flying trainers and parts thereof, n.e.s. (excl. air combat simulators and parts thereof) 01/01/2002 31/12/2500 -88052900 01/01/2006 31/12/2500 LIBEN Ground flying trainers and parts thereof, n.e.s. (excl. air combat simulators and parts thereof) 01/01/2006 31/12/2500 -88052910 01/01/2002 31/12/2005 LIBEN Ground flying trainers and parts thereof, for civil use, n.e.s. 01/01/2002 31/12/2005 -88052990 01/01/2002 31/12/2005 LIBEN Ground flying trainers and parts thereof, n.e.s. (excl. those for civil use of subheading 8805.29.10 and air combat simulators and parts thereof) 01/01/2002 31/12/2005 -88CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 88 01/01/2002 31/12/2500 -88CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 88 01/01/2002 31/12/2500 -88CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 88 01/01/2002 31/12/2500 -88EE 01/01/1988 31/12/2004 LIBEN Sets of goods of chapter 88 01/01/1988 31/12/2004 -88EEE0 01/01/1988 31/12/2004 LIBEN Sets of goods of chapter 88 01/01/1988 31/12/2004 -88EEE000 01/01/1988 31/12/2004 LIBEN Sets of goods of chapter 88 01/01/1988 31/12/2004 -88EEE002 01/01/1993 31/12/2004 LIBEN Sets of goods of chapter 88 01/01/1993 31/12/2004 -88EEE009 01/01/1993 31/12/2004 LIBEN Sets of goods of chapter 88 01/01/1993 31/12/2004 -88MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -88MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -88MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -88SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 88 01/01/1988 31/12/2500 -88SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 88 and SITC section 0 01/01/1997 31/12/2001 -88SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 88 and SITC group 000 01/01/1997 31/12/2001 -88SSS7 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 88 and SITC section 7 01/01/1990 31/12/2500 -88SSS792 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 88 and SITC group 792 01/01/1990 31/12/2500 -88SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 88 and SITC section 8 01/01/1997 31/12/2500 -88SSS899 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 88 and SITC group 899 01/01/1997 31/12/2500 -88SSS9 01/01/1988 31/12/1991 LIBEN Confidential trade of chapter 88 and SITC section 9 01/01/1988 31/12/1991 -88SSS9 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 88 and SITC section 9 01/01/1992 31/12/2500 -88SSS999 01/01/1988 31/12/1991 LIBEN Confidential trade of chapter 88 and SITC group 999 01/01/1988 31/12/1991 -88SSS999 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 88 and SITC group 999 01/01/1992 31/12/2500 -88WW 01/01/2005 31/12/2500 LIBEN Parts for aircraft for which simplified national provision apply 01/01/2005 31/12/2500 -88WWW0 01/01/2005 31/12/2500 LIBEN Parts for aircraft for which simplified national provision apply 01/01/2005 31/12/2500 -88WWW000 01/01/2005 31/12/2500 LIBEN Parts for aircraft for which simplified national provision apply 01/01/2005 31/12/2500 -89 01/01/1988 31/12/2500 LIBEN SHIPS, BOATS AND FLOATING STRUCTURES 01/01/1988 31/12/2500 -8901 01/01/1988 31/12/2500 LIBEN Cruise ships, excursion boats, ferry-boats, cargo ships, barges and similar vessels for the transport of persons or goods 01/01/1988 31/12/2500 -890110 01/01/1988 31/12/2500 LIBEN Cruise ships, excursion boats and similar vessels principally designed for the transport of persons; ferry-boats of all kinds 01/01/1988 31/12/2500 -89011010 01/01/1988 31/12/2500 LIBEN Sea-going cruise ships, excursion boats and similar vessels principally designed for the transport of persons, and seagoing ferry-boats of all kinds 01/01/1988 31/12/2500 -89011090 01/01/1988 31/12/2500 LIBEN Cruise ships, excursion boats and similar vessels principally designed for the transport of persons and ferry-boats of all kinds (excl. seagoing vessels) 01/01/1988 31/12/2500 -890120 01/01/1988 31/12/2500 LIBEN Tankers 01/01/1988 31/12/2500 -89012010 01/01/1988 31/12/2500 LIBEN Sea-going tankers 01/01/1988 31/12/2500 -89012090 01/01/1988 31/12/2500 LIBEN Tankers (excl. seagoing tankers) 01/01/1988 31/12/2500 -890130 01/01/1988 31/12/2500 LIBEN Refrigerated vessels (excl. tankers) 01/01/1988 31/12/2500 -89013010 01/01/1988 31/12/2500 LIBEN Sea-going refrigerated vessels (excl. tankers) 01/01/1988 31/12/2500 -89013090 01/01/1988 31/12/2500 LIBEN Refrigerated vessels (excl. seagoing vessels and tankers) 01/01/1988 31/12/2500 -890190 01/01/1988 31/12/2500 LIBEN Vessels for the transport of goods and vessels for the transport of both persons and goods (excl. refrigerated vessels, tankers, ferry-boats and vessels principally designed for the transport of persons) 01/01/1988 31/12/2500 -89019010 01/01/1988 31/12/2500 LIBEN Sea-going vessels for the transport of goods and seagoing vessels for the transport of both persons and goods (excl. refrigerated vessels, tankers, ferry-boats and vessels principally designed for the transport of persons) 01/01/1988 31/12/2500 -89019090 01/01/2011 31/12/2500 LIBEN Vessels for the transport of goods and vessels for the transport of both persons and goods, whether or not mechanically propelled (excl. seagoing vessels, refrigerated vessels, tankers, ferry-boats and vessels principally designed for the transport of persons) 01/01/2011 31/12/2500 -89019091 01/01/1988 31/12/2010 LIBEN Vessels for the transport of goods and vessels for the transport of both persons and goods, not mechanically propelled (excl. seagoing vessels, refrigerated vessels, tankers, ferry-boats and vessels principally designed for the transport of persons) 01/01/1988 31/12/2010 -89019099 01/01/1988 31/12/2010 LIBEN Vessels for the transport of goods and vessels for the transport of both persons and goods, mechanically propelled (excl. seagoing vessels, refrigerated vessels, tankers, ferry-boats and vessels principally designed for the transport of persons) 01/01/1988 31/12/2010 -8902 01/01/1988 31/12/2500 LIBEN Fishing vessels; factory ships and other vessels for processing or preserving fishery products (excl. fishing boats for sport) 01/01/1988 31/12/2500 -890200 01/01/1988 31/12/2500 LIBEN Fishing vessels; factory ships and other vessels for processing or preserving fishery products (excl. fishing boats for sport) 01/01/1988 31/12/2500 -89020010 01/01/2011 31/12/2500 LIBEN Fishing vessels, factory ships and other vessels for processing or preserving fishery products, seagoing 01/01/2011 31/12/2500 -89020011 01/01/1988 31/12/1996 LIBEN Sea-going fishing vessels; factory ships and other vessels for processing or preserving fishery products, of a gross tonnage > 250 tonnes GRT 01/01/1988 31/12/1996 -89020012 01/01/1997 31/12/2010 LIBEN Sea-going fishing vessels, factory ships and other vessels for processing or preserving fishery products, of a gross tonnage > 250 01/01/1997 31/12/2010 -89020018 01/01/1997 31/12/2010 LIBEN Sea-going fishing vessels, factory ships and other vessels for processing or preserving fishery products, of a gross tonnage <= 250 01/01/1997 31/12/2010 -89020019 01/01/1988 31/12/1996 LIBEN Sea-going fishing vessels; factory ships and other vessels for processing or preserving fishery products, of a gross tonnage <= 250 tonnes GRT (excl. fishing boats for sport) 01/01/1988 31/12/1996 -89020090 01/01/1988 31/12/2500 LIBEN Fishing vessels; factory ships and other vessels for processing or preserving fishery products (excl. seagoing vessels and fishing boats for sport) 01/01/1988 31/12/2500 -8903 01/01/1988 31/12/2500 LIBEN Yachts and other vessels for pleasure or sports; rowing boats and canoes 01/01/1988 31/12/2500 -890310 01/01/1988 31/12/2500 LIBEN Inflatable vessels for pleasure or sports 01/01/1988 31/12/2500 -89031010 01/01/2001 31/12/2500 LIBEN Inflatable vessels for pleasure or sports, of a weight <= 100 kg each 01/01/2001 31/12/2500 -89031011 01/01/1988 31/12/2000 LIBEN Inflatable vessels, for pleasure or sports, of a weight <= 20 kg each or of a length <= 2,5 m 01/01/1988 31/12/2000 -89031019 01/01/1988 31/12/2000 LIBEN Inflatable vessels, for pleasure or sports, of a weight <= 100 kg each (excl. those of a weight <= 20 kg each or of a length <= 2,5 m) 01/01/1988 31/12/2000 -89031090 01/01/1988 31/12/2500 LIBEN Inflatable vessels, for pleasure or sports, of a weight > 100 kg each 01/01/1988 31/12/2500 -890391 01/01/1988 31/12/2500 LIBEN Sailboats and yachts, with or without auxiliary motor, for pleasure or sports 01/01/1988 31/12/2500 -89039110 01/01/1988 31/12/2500 LIBEN Sea-going sailboats and yachts, with or without auxiliary motor, for pleasure or sports 01/01/1988 31/12/2500 -89039190 01/01/2011 31/12/2500 LIBEN Sailboats and yachts, with or without auxiliary motor, for pleasure or sports (excl. seagoing vessels) 01/01/2011 31/12/2500 -89039191 01/01/1988 31/12/2003 LIBEN Sailboats, with or without auxiliary motor, of a weight <= 100 kg each 01/01/1988 31/12/2003 -89039192 01/01/2004 31/12/2010 LIBEN Sailboats, with or without auxiliary motor, of a length <= 7,5 m 01/01/2004 31/12/2010 -89039193 01/01/1988 31/12/2003 LIBEN Sailboats, with or without auxiliary motor, of a weight > 100 kg, of a length <= 7,5 m 01/01/1988 31/12/2003 -89039199 01/01/1988 31/12/2010 LIBEN Sailboats and yachts, with or without auxiliary motor, for pleasure or sports, of a length > 7,5 m (excl. seagoing vessels) 01/01/1988 31/12/2010 -890392 01/01/1988 31/12/2500 LIBEN Motor boats and motor yachts, for pleasure or sports (other than outboard motor boats) 01/01/1988 31/12/2500 -89039210 01/01/1988 31/12/2500 LIBEN Sea-going motor boats and motor yachts, for pleasure or sports (other than outboard motor boats) 01/01/1988 31/12/2500 -89039291 01/01/1988 31/12/2500 LIBEN Motor boats for pleasure or sports, of a length <= 7,5 m (other than outboard motor boats) 01/01/1988 31/12/2500 -89039299 01/01/1988 31/12/2500 LIBEN Motor boats for pleasure or sports, of a length > 7,5 m (other than outboard motor boats and excl. seagoing motor boats) 01/01/1988 31/12/2500 -890399 01/01/1988 31/12/2500 LIBEN Vessels for pleasure or sports; rowing boats (excl. motor boats and motor yachts powered other than by outboard motors, sailboats and yachts with or without auxiliary motor and inflatable boats) 01/01/1988 31/12/2500 -89039910 01/01/1988 31/12/2500 LIBEN Vessels for pleasure or sports, rowing boats and canoes, of a weight <= 100 kg each (excl. motor boats powered other than by outboard motors, sailboats with or without auxiliary motor and inflatable boats) 01/01/1988 31/12/2500 -89039991 01/01/1988 31/12/2500 LIBEN Vessels for pleasure or sports, rowing boats and canoes, of a weight > 100 kg, of a length <= 7,5 m (excl. motor boats powered other than by outboard motors, sailboats with or without auxiliary motor and inflatable boats) 01/01/1988 31/12/2500 -89039999 01/01/1988 31/12/2500 LIBEN Vessels for pleasure or sports , rowing boats and canoes, of a weight > 100 kg, of a length > 7,5 m (excl. motor boats and motor yachts powered other than by outboard motors, sailboats and yachts with or without auxiliary motor and inflatable boats) 01/01/1988 31/12/2500 -8904 01/01/1988 31/12/2500 LIBEN Tugs and pusher craft 01/01/1988 31/12/2500 -890400 01/01/1988 31/12/2500 LIBEN Tugs and pusher craft 01/01/1988 31/12/2500 -89040010 01/01/1988 31/12/2500 LIBEN Tugs, seagoing and for inland waterways 01/01/1988 31/12/2500 -89040091 01/01/1988 31/12/2500 LIBEN Sea-going pusher craft 01/01/1988 31/12/2500 -89040099 01/01/1988 31/12/2500 LIBEN Pusher craft (excl. seagoing) 01/01/1988 31/12/2500 -8905 01/01/1988 31/12/2500 LIBEN Light-vessels, fire-floats, dredgers, floating cranes, and other vessels the navigability of which is subsidiary to their main function; floating docks, floating or submersible drilling or production platforms (excl. fishing vessels and warships) 01/01/1988 31/12/2500 -890510 01/01/1988 31/12/2500 LIBEN Dredgers 01/01/1988 31/12/2500 -89051010 01/01/1988 31/12/2500 LIBEN Sea-going dredgers 01/01/1988 31/12/2500 -89051090 01/01/1988 31/12/2500 LIBEN Dredgers (excl. seagoing) 01/01/1988 31/12/2500 -890520 01/01/1988 31/12/2500 LIBEN Floating or submersible drilling or production platforms 01/01/1988 31/12/2500 -89052000 01/01/1988 31/12/2500 LIBEN Floating or submersible drilling or production platforms 01/01/1988 31/12/2500 -890590 01/01/1988 31/12/2500 LIBEN Light-vessels, fire-floats, floating cranes and other vessels, the navigability of which is subsidiary to their main function (excl. dredgers, floating or submersible drilling or production platforms; fishing vessels and warships) 01/01/1988 31/12/2500 -89059010 01/01/1988 31/12/2500 LIBEN Sea-going light vessels, fire-floats, floating cranes and other vessels, the navigability of which is subsidiary to their main function (excl. dredgers, floating or submersible drilling or production platforms; fishing vessels and warships) 01/01/1988 31/12/2500 -89059090 01/01/1988 31/12/2500 LIBEN Light vessels, fire-floats, floating cranes and other vessels, the navigability of which is subsidiary to their main function (excl. seagoing vessels, dredgers, floating or submersible drilling or production platforms; fishing vessels and warships) 01/01/1988 31/12/2500 -8906 01/01/1988 31/12/2001 LIBEN Vessels, incl. warships and lifeboats (excl. rowing boats and other vessels of heading 8901 to 8905 and vessels for breaking up) 01/01/1988 31/12/2001 -8906 01/01/2002 31/12/2500 LIBEN Vessels, incl. warships and lifeboats (excl. rowing boats and other vessels of heading 8901 to 8905 and vessels for breaking up) 01/01/2002 31/12/2500 -890600 01/01/1988 31/12/2001 LIBEN Vessels, incl. warships and lifeboats (excl. rowing boats and other vessels of heading 8901 to 8905 and vessels for breaking up) 01/01/1988 31/12/2001 -89060010 01/01/1988 31/12/2001 LIBEN Warships of all kinds 01/01/1988 31/12/2001 -89060091 01/01/1988 31/12/2001 LIBEN Sea-going vessels, incl. lifeboats (excl. warships, rowing boats and other vessels of heading 8901 to 8905 and vessels for breaking up) 01/01/1988 31/12/2001 -89060093 01/01/1988 31/12/2001 LIBEN Vessels of a weight <= 100 kg each, n.e.s. 01/01/1988 31/12/2001 -89060099 01/01/1988 31/12/2001 LIBEN Vessels, incl. lifeboats, of a weight > 100 kg each (excl. sea-going vessels, warships, rowing boats and other vessels of heading 8901 to 8905 and floating structures for breaking up) 01/01/1988 31/12/2001 -890610 01/01/2002 31/12/2500 LIBEN Warships of all kinds 01/01/2002 31/12/2500 -89061000 01/01/2002 31/12/2500 LIBEN Warships of all kinds 01/01/2002 31/12/2500 -890690 01/01/2002 31/12/2500 LIBEN Vessels, incl. lifeboats (excl. warships, rowing boats and other vessels of heading 8901 to 8905 and vessels for breaking up) 01/01/2002 31/12/2500 -89069010 01/01/2002 31/12/2500 LIBEN Sea-going vessels, incl. lifeboats (excl. warships, rowing boats and other vessels of heading 8901 to 8905 and vessels for breaking up) 01/01/2002 31/12/2500 -89069091 01/01/2002 31/12/2500 LIBEN Vessels, incl. lifeboats, of a weight <= 100 kg each (excl. rowing boats and other vessels of heading 8901 to 8905 and vessels for breaking up) 01/01/2002 31/12/2500 -89069099 01/01/2002 31/12/2500 LIBEN Vessels, incl. lifeboats, of a weight > 100 kg each (excl. seagoing vessels, warships, rowing boats and other vessels of heading 8901 to 8905 and floating structures for breaking up) 01/01/2002 31/12/2500 -8907 01/01/1988 31/12/2500 LIBEN Rafts, tanks, coffer-dams, landing stages, buoys, beacons and other floating structures (excl. vessels of heading 8901 to 8906 and floating structures for breaking up) 01/01/1988 31/12/2500 -890710 01/01/1988 31/12/2500 LIBEN Inflatable rafts 01/01/1988 31/12/2500 -89071000 01/01/1988 31/12/2500 LIBEN Inflatable rafts 01/01/1988 31/12/2500 -890790 01/01/1988 31/12/2500 LIBEN Rafts, tanks, coffer-dams, landing stages, buoys, beacons and other floating structures (excl. inflatable rafts, vessels of heading 8901 to 8906 and floating structures for breaking up) 01/01/1988 31/12/2500 -89079000 01/01/1988 31/12/2500 LIBEN Rafts, tanks, coffer-dams, landing stages, buoys, beacons and other floating structures (excl. inflatable rafts, vessels of heading 8901 to 8906 and floating structures for breaking up) 01/01/1988 31/12/2500 -8907S7 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8907 and SITC section 7 01/01/1997 31/12/2500 -8907S793 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 8907 and SITC group 793 01/01/1997 31/12/2500 -8908 01/01/1988 31/12/2500 LIBEN Vessels and other floating structures for breaking up 01/01/1988 31/12/2500 -890800 01/01/1988 31/12/2500 LIBEN Vessels and other floating structures for breaking up 01/01/1988 31/12/2500 -89080000 01/01/1988 31/12/2500 LIBEN Vessels and other floating structures for breaking up 01/01/1988 31/12/2500 -89CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 89 01/01/2002 31/12/2500 -89CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 89 01/01/2002 31/12/2500 -89CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 89 01/01/2002 31/12/2500 -89II 01/01/1997 31/12/1999 LIBEN Components of complete industrial plants of chapter 89 01/01/1997 31/12/1999 -89III3 01/01/1997 31/12/1999 LIBEN Components of complete industrial plants of chapter 89; mechanical engineering and construction of means of transport; instrument engineering 01/01/1997 31/12/1999 -89III300 01/01/1997 31/12/1999 LIBEN Components of complete industrial plants of chapter 89; mechanical engineering and construction of means of transport; instrument engineering 01/01/1997 31/12/1999 -89MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -89MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -89MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -89SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 89 01/01/1988 31/12/2500 -89SSS7 01/01/1991 31/12/2500 LIBEN Confidential trade of chapter 89 and SITC section 7 01/01/1991 31/12/2500 -89SSS793 01/01/1991 31/12/2500 LIBEN Confidential trade of chapter 89 and SITC group 793 01/01/1991 31/12/2500 -89SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 89 and SITC section 9 01/01/1988 31/12/1996 -89SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 89 and SITC section 9 01/01/1997 31/12/2500 -89SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 89 and SITC group 999 01/01/1988 31/12/1996 -89SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 89 and SITC group 999 01/01/1997 31/12/2500 -90 01/01/1988 31/12/2500 LIBEN OPTICAL, PHOTOGRAPHIC, CINEMATOGRAPHIC, MEASURING, CHECKING, PRECISION, MEDICAL OR SURGICAL INSTRUMENTS AND APPARATUS; PARTS AND ACCESSORIES THEREOF 01/01/1988 31/12/2500 -9001 01/01/1988 31/12/2500 LIBEN Optical fibres and optical fibre bundles; optical fibre cables (excl. made up of individually sheathed fibres of heading 8544); sheets and plates of polarising material; lenses, incl. contact lenses, prisms, mirrors and other optical elements of any material, unmounted (excl. such elements of glass not optically worked) 01/01/1988 31/12/2500 -900110 01/01/1988 31/12/2500 LIBEN Optical fibres, optical fibre bundles and cables (excl. made up of individually sheathed fibres of heading 8544) 01/01/1988 31/12/2500 -90011010 01/01/1988 31/12/2500 LIBEN Image conductor cables of optical fibres (excl. cables made up of individually sheathed fibres of heading 8544) 01/01/1988 31/12/2500 -90011090 01/01/1988 31/12/2500 LIBEN Optical fibres, optical fibre bundles and cables (excl. made up of individually sheathed fibres of heading 8544 and image conductor cables) 01/01/1988 31/12/2500 -900120 01/01/1988 31/12/2500 LIBEN Sheets and plates of polarising material 01/01/1988 31/12/2500 -90012000 01/01/1988 31/12/2500 LIBEN Sheets and plates of polarising material 01/01/1988 31/12/2500 -900130 01/01/1988 31/12/2500 LIBEN Contact lenses 01/01/1988 31/12/2500 -90013000 01/01/1988 31/12/2500 LIBEN Contact lenses 01/01/1988 31/12/2500 -900140 01/01/1988 31/12/2500 LIBEN Spectacle lenses of glass 01/01/1988 31/12/2500 -90014010 01/01/1988 31/12/1990 LIBEN Spectacle lenses of glass, both sides finished, not for the correction of vision 01/01/1988 31/12/1990 -90014020 01/01/1991 31/12/2500 LIBEN Spectacle lenses of glass, not for the correction of vision 01/01/1991 31/12/2500 -90014031 01/01/1988 31/12/1990 LIBEN Spectacle lenses of glass, both sides finished, for the correction of vision, single focal 01/01/1988 31/12/1990 -90014039 01/01/1988 31/12/1990 LIBEN Spectacle lenses of glass, both sides finished, for the correction of vision, bi- or multi-focal 01/01/1988 31/12/1990 -90014041 01/01/1991 31/12/2500 LIBEN Spectacle lenses of glass, both sides finished, for the correction of vision, single focal 01/01/1991 31/12/2500 -90014049 01/01/1991 31/12/2500 LIBEN Spectacle lenses of glass, both sides finished, for the correction of vision, bi-focal or multi focal 01/01/1991 31/12/2500 -90014080 01/01/1991 31/12/2500 LIBEN Spectacle lenses of glass (excl. both sides finished) 01/01/1991 31/12/2500 -90014090 01/01/1988 31/12/1990 LIBEN Spectacle lenses of glass, optically worked (excl. both sides finished) 01/01/1988 31/12/1990 -900150 01/01/1988 31/12/2500 LIBEN Spectacle lenses of materials other than glass 01/01/1988 31/12/2500 -90015010 01/01/1988 31/12/1990 LIBEN Spectacle lenses of materials other than glass, both sides finished, not for the correction of vision 01/01/1988 31/12/1990 -90015020 01/01/1991 31/12/2500 LIBEN Spectacle lenses of materials other than glass, not for the correction of vision 01/01/1991 31/12/2500 -90015031 01/01/1988 31/12/1990 LIBEN Spectacle lenses of materials other than glass, both sides finished, for the correction of vision, single focal 01/01/1988 31/12/1990 -90015039 01/01/1988 31/12/1990 LIBEN Spectacle lenses of materials other than glass, both sides finished, for the correction of vision, bi- or multi-focal 01/01/1988 31/12/1990 -90015041 01/01/1991 31/12/2500 LIBEN Spectacle lenses of materials other than glass, both sides finished, for the correction of vision, single focal 01/01/1991 31/12/2500 -90015049 01/01/1991 31/12/2500 LIBEN Spectacle lenses of materials other than glass, both sides finished, for the correction of vision (excl. bi-focal or multi focal) 01/01/1991 31/12/2500 -90015080 01/01/1991 31/12/2500 LIBEN Spectacle lenses of materials (excl. glass), partly finished 01/01/1991 31/12/2500 -90015090 01/01/1988 31/12/1990 LIBEN Spectacle lenses of materials other than glass (excl. both sides finished) 01/01/1988 31/12/1990 -900190 01/01/1988 31/12/2500 LIBEN Lenses, prisms, mirrors and other optical elements, of any material, unmounted (excl. such elements of glass not optically worked, contact lenses and spectacle lenses) 01/01/1988 31/12/2500 -90019000 01/01/2006 31/12/2500 LIBEN Lenses, prisms, mirrors and other optical elements, of any material, unmounted (excl. such elements of glass not optically worked, contact lenses and spectacle lenses) 01/01/2006 31/12/2500 -90019010 01/01/1988 31/12/2005 LIBEN Lenses, prisms, mirrors and other optical elements, of any material, unmounted, for civil aircraft (excl. such elements of glass not optically worked) 01/01/1988 31/12/2005 -90019090 01/01/1988 31/12/2005 LIBEN Lenses, prisms, mirrors and other optical elements, of any material, unmounted (excl. for civil aircraft, elements of glass not optically worked, contact lenses and spectacle lenses) 01/01/1988 31/12/2005 -9001S8 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 9001 and SITC section 8 01/01/1997 31/12/2500 -9001S884 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 9001 and SITC group 884 01/01/1997 31/12/2500 -9002 01/01/1988 31/12/2500 LIBEN Lenses, prisms, mirrors and other optical elements, of any material, mounted, being parts of or fittings for instruments or apparatus (excl. such elements of glass not optically worked) 01/01/1988 31/12/2500 -900211 01/01/1988 31/12/2500 LIBEN Objective lenses for cameras, projectors or photographic enlargers or reducers 01/01/1988 31/12/2500 -90021100 01/01/1988 31/12/2500 LIBEN Objective lenses for cameras, projectors or photographic enlargers or reducers 01/01/1988 31/12/2500 -900219 01/01/1988 31/12/2500 LIBEN Objective lenses (excl. for cameras, projectors or photographic enlargers or reducers) 01/01/1988 31/12/2500 -90021900 01/01/1988 31/12/2500 LIBEN Objective lenses (excl. for cameras, projectors or photographic enlargers or reducers) 01/01/1988 31/12/2500 -900220 01/01/1988 31/12/2500 LIBEN Filters, optical, being parts of or fittings for instruments, apparatus and appliances, framed or mounted 01/01/1988 31/12/2500 -90022000 01/01/1995 31/12/2500 LIBEN Filters, optical, being parts of or fittings for instruments, apparatus and appliances, framed or mounted 01/01/1995 31/12/2500 -90022010 01/01/1988 31/12/1994 LIBEN Optical filters, mounted, for cameras, projectors or photographic enlargers or reducers 01/01/1988 31/12/1994 -90022090 01/01/1988 31/12/1994 LIBEN Optical filters, mounted, for instruments or apparatus (excl. for cameras, projectors or photographic enlargers or reducers) 01/01/1988 31/12/1994 -900290 01/01/1988 31/12/2500 LIBEN Lenses, prisms, mirrors and other optical elements, mounted, of any material, being parts of or fittings for instruments or apparatus (excl. objective lenses for cameras, projectors or photographic enlargers or reducers, such elements of glass not optically worked, and filters) 01/01/1988 31/12/2500 -90029000 01/01/2006 31/12/2500 LIBEN Lenses, prisms, mirrors and other optical elements, mounted, of any material, being parts of or fittings for instruments or apparatus (excl. objective lenses for cameras, projectors or photographic enlargers or reducers, such elements of glass not optically worked, and filters) 01/01/2006 31/12/2500 -90029010 01/01/1988 31/12/2005 LIBEN Lenses, prisms, mirrors and other optical elements, mounted, of any material, being parts of or fittings for instruments or apparatus, for civil aircraft (excl. such elements of glass not optically worked, filters and objective lenses) 01/01/1988 31/12/2005 -90029090 01/01/1997 31/12/2005 LIBEN Lenses, prisms, mirrors and other optical elements, mounted, of any material, for instruments or apparatus (excl. for civil aircraft of subheading 9002.90.10, elements of glass not optically worked, filters and objective lenses) 01/01/1997 31/12/2005 -90029091 01/01/1988 31/12/1996 LIBEN Lenses, prisms, mirrors and other optical elements of any material, mounted, for cameras, projectors or photographic enlargers or reducers (excl. for civil aircraft, elements of glass not optically worked, filters and objective lenses) 01/01/1988 31/12/1996 -90029099 01/01/1988 31/12/1996 LIBEN Lenses, prisms, mirrors and other optical elements, mounted, of any material, for instruments or apparatus (excl. for civil aircraft of subheading 9002.90.10, elements of glass not optically worked, filters and objective lenses) 01/01/1988 31/12/1996 -9002I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9002; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -9002I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9002; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -9002I1 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9002; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -9002I100 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9002; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -9002I2 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9002; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -9002I200 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9002; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -9002I3 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9002; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -9002I300 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9002; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -9002I7 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9002; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -9002I700 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9002; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -9003 01/01/1988 31/12/2500 LIBEN Frames and mountings for spectacles, goggles or the like, and parts thereof, n.e.s. 01/01/1988 31/12/2500 -900311 01/01/1988 31/12/2500 LIBEN Frames and mountings for spectacles, goggles or the like, of plastics 01/01/1988 31/12/2500 -90031100 01/01/1988 31/12/2500 LIBEN Frames and mountings for spectacles, goggles or the like, of plastics 01/01/1988 31/12/2500 -900319 01/01/1988 31/12/2500 LIBEN Frames and mountings for spectacles, goggles or the like (excl. of plastics) 01/01/1988 31/12/2500 -90031900 01/01/2011 31/12/2500 LIBEN Frames and mountings for spectacles, goggles or the like (excl. of plastics) 01/01/2011 31/12/2500 -90031910 01/01/1988 31/12/2010 LIBEN Frames and mountings for spectacles, goggles or the like, of precious metal or rolled precious metal 01/01/1988 31/12/2010 -90031930 01/01/1988 31/12/2010 LIBEN Frames and mountings for spectacles, goggles or the like, of base metal 01/01/1988 31/12/2010 -90031990 01/01/1988 31/12/2010 LIBEN Frames and mountings for spectacles, goggles or the like (excl. of metal or plastics) 01/01/1988 31/12/2010 -900390 01/01/1988 31/12/2500 LIBEN Parts of frames and mountings for spectacles, goggles or the like, n.e.s. 01/01/1988 31/12/2500 -90039000 01/01/1988 31/12/2500 LIBEN Parts of frames and mountings for spectacles, goggles or the like, n.e.s. 01/01/1988 31/12/2500 -9004 01/01/1988 31/12/2500 LIBEN Spectacles, goggles and the like, corrective, protective or other (excl. spectacles for testing eyesight, contact lenses, spectacle lenses and frames and mountings for spectacles) 01/01/1988 31/12/2500 -900410 01/01/1988 31/12/2500 LIBEN Sunglasses 01/01/1988 31/12/2500 -90041010 01/01/1988 31/12/2500 LIBEN Sunglasses with optically worked lenses 01/01/1988 31/12/2500 -90041090 01/01/1988 31/12/1994 LIBEN Sunglasses with glasses (excl. optically worked) 01/01/1988 31/12/1994 -90041091 01/01/1995 31/12/2500 LIBEN Sunglasses with lenses of plastics, not optically worked 01/01/1995 31/12/2500 -90041099 01/01/1995 31/12/2500 LIBEN Sunglasses with lenses of glass, not optically worked 01/01/1995 31/12/2500 -900490 01/01/1988 31/12/2500 LIBEN Spectacles, goggles and the like, corrective, protective or other (excl. spectacles for testing eyesight, sunglasses, contact lenses, spectacle lenses and frames and mountings for spectacles) 01/01/1988 31/12/2500 -90049000 01/01/1988 31/12/1994 LIBEN Spectacles, goggles and the like, corrective, protective or other (excl. spectacles for testing eyesight, sunglasses, contact lenses, spectacle lenses and frames and mountings for spectacles) 01/01/1988 31/12/1994 -90049010 01/01/1995 31/12/2500 LIBEN Spectacles, goggles and the like, corrective, protective or other, with lenses of plastics (excl. spectacles for testing eyesight, sunglasses, contact lenses, spectacle lenses and frames and mountings for spectacles) 01/01/1995 31/12/2500 -90049090 01/01/1995 31/12/2500 LIBEN Spectacles, goggles and the like, corrective, protective or other (other than with lenses of plastics and excl. spectacles for testing eyesight, sunglasses, contact lenses, spectacle lenses and frames and mountings for spectacles) 01/01/1995 31/12/2500 -9004I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9004; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -9004I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9004; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -9004I1 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9004; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -9004I100 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9004; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -9004I3 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9004; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -9004I300 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9004; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -9005 01/01/1988 31/12/2500 LIBEN Binoculars, monoculars, astronomical and other optical telescopes, and mountings therefor; other astronomical instruments and mountings therefor (excl. instruments for radio-astronomy and other instruments or apparatus specified elsewhere) 01/01/1988 31/12/2500 -900510 01/01/1988 31/12/2500 LIBEN Binoculars 01/01/1988 31/12/2500 -90051000 01/01/1995 31/12/2500 LIBEN Binoculars 01/01/1995 31/12/2500 -90051010 01/01/1988 31/12/1994 LIBEN Prismatic binoculars 01/01/1988 31/12/1994 -90051090 01/01/1988 31/12/1994 LIBEN Non-prismatic binoculars 01/01/1988 31/12/1994 -900580 01/01/1988 31/12/2500 LIBEN Monoculars, astronomical and other optical telescopes and other astronomical instruments (excl. binoculars, instruments for radio-astronomy and other instruments or apparatus specified elsewhere) 01/01/1988 31/12/2500 -90058000 01/01/1988 31/12/2500 LIBEN Monoculars, astronomical and other optical telescopes and other astronomical instruments (excl. binoculars, instruments for radio-astronomy and other instruments or apparatus specified elsewhere) 01/01/1988 31/12/2500 -900590 01/01/1988 31/12/2500 LIBEN Parts and accessories, incl. mountings, for binoculars, monoculars, astronomical and other optical telescopes, and other astronomical instruments, n.e.s. 01/01/1988 31/12/2500 -90059000 01/01/1988 31/12/2016 LIBEN Parts and accessories, incl. mountings, for binoculars, monoculars, astronomical and other optical telescopes, and other astronomical instruments, n.e.s. 01/01/1988 31/12/2016 -90059000 01/01/2017 31/12/2500 LIBEN Parts and accessories, incl. mountings, for binoculars, monoculars, astronomical and other optical telescopes, and other astronomical instruments, n.e.s. 01/01/2017 31/12/2500 -9006 01/01/1988 31/12/2500 LIBEN Photographic cameras, photographic flashlight apparatus and flashbulbs (excl. discharge lamps of heading 8539) 01/01/1988 31/12/2500 -900610 01/01/1988 31/12/2016 LIBEN Cameras of a kind used for preparing printing plates or cylinders 01/01/1988 31/12/2016 -90061000 01/01/1988 31/12/1994 LIBEN Cameras of a kind used for preparing printing plates or cylinders 01/01/1988 31/12/1994 -90061000 01/01/2007 31/12/2016 LIBEN Cameras of a kind used for preparing printing plates or cylinders 01/01/2007 31/12/2016 -90061010 01/01/1995 31/12/2006 LIBEN Photographic cameras as pattern generating apparatus of a kind used for producing masks and reticles from photoresist coated substrates 01/01/1995 31/12/2006 -90061090 01/01/1995 31/12/2006 LIBEN Photographic cameras of a kind used for preparing printing plates or cylinders (excl. pattern generators for producing masks or reticles from photoresist coated substrates) 01/01/1995 31/12/2006 -900620 01/01/1988 31/12/2006 LIBEN Cameras of a kind used for recording documents on microfilm, microfiche or other microforms 01/01/1988 31/12/2006 -90062000 01/01/1988 31/12/2006 LIBEN Cameras of a kind used for recording documents on microfilm, microfiche or other microforms 01/01/1988 31/12/2006 -900630 01/01/1988 31/12/2500 LIBEN Cameras specially designed for underwater use, for aerial survey or for medical or surgical examination of internal organs; comparison cameras for forensic or criminological laboratories 01/01/1988 31/12/2500 -90063000 01/01/1988 31/12/2500 LIBEN Cameras specially designed for underwater use, for aerial survey or for medical or surgical examination of internal organs; comparison cameras for forensic or criminological laboratories 01/01/1988 31/12/2500 -900640 01/01/1988 31/12/2500 LIBEN Instant print cameras (excl. special cameras of subheading 9006.10 or 9006.30) 01/01/1988 31/12/2500 -90064000 01/01/1988 31/12/2500 LIBEN Instant print cameras (excl. special cameras of subheading 9006.10 or 9006.30) 01/01/1988 31/12/2500 -900651 01/01/1988 31/12/2500 LIBEN Cameras with a through-the-lens viewfinder [single lens reflex "SLR"] for roll film of a width of <= 35 mm (excl. instant print cameras and special camereas of subheading 9006.10 or 9006.30) 01/01/1988 31/12/2500 -90065100 01/01/1988 31/12/2500 LIBEN Cameras with a through-the-lens viewfinder [single lens reflex "SLR"] for roll film of a width of <= 35 mm (excl. instant print cameras and special camereas of subheading 9006.10 or 9006.30) 01/01/1988 31/12/2500 -900652 01/01/1988 31/12/2500 LIBEN Cameras for roll film of a width of < 35 mm (excl. instant print cameras, single lens reflex "SLR" cameras and special cameras of subheading 9006.10 or 9006.30) 01/01/1988 31/12/2500 -90065200 01/01/1988 31/12/2006 LIBEN Cameras for roll film of a width of < 35 mm (excl. instant print cameras, single lens reflex "SLR" cameras and special cameras of subheading 9006.10, 9006.20 or 9006.30) 01/01/1988 31/12/2006 -90065200 01/01/2007 31/12/2500 LIBEN Cameras for roll film of a width of < 35 mm (excl. instant print cameras, single lens reflex "SLR" cameras and special cameras of subheading 9006.10 or 9006.30) 01/01/2007 31/12/2500 -900653 01/01/1988 31/12/2500 LIBEN Cameras for roll film of a width of 35 mm (excl. instant print cameras, single lens reflex cameras and special cameras of subheading 9006.10 or 9006.30) 01/01/1988 31/12/2500 -90065300 01/01/1988 31/12/1992 LIBEN Cameras for roll film of a width of 35 mm (excl. instant print cameras, single lens reflex cameras and special cameras of headings 9006.10, 9006.20 or 9006.30) 01/01/1988 31/12/1992 -90065310 01/01/1993 31/12/2500 LIBEN Disposable cameras for roll film of a width of 35 mm 01/01/1993 31/12/2500 -90065380 01/01/2007 31/12/2500 LIBEN Cameras for roll film of a width of 35 mm (excl. instant print cameras, single lens reflex cameras, specially designed cameras of subheading 9006.10 or 9006.30 and disposable cameras) 01/01/2007 31/12/2500 -90065390 01/01/1993 31/12/2006 LIBEN Cameras for roll film of a width of 35 mm (excl. instant print cameras, single lens reflex cameras, specially designed cameras of subheading 9006.10, 9006.20 or 9006.30 and disposable cameras) 01/01/1993 31/12/2006 -900659 01/01/1988 31/12/2500 LIBEN Cameras for roll film of a width of > 35 mm or for film in the flat (excl. instant print cameras and cameras specially designed for underwater use, for aerial survey or for medical or surgical examination of internal organs, and comparison cameras for forensic or criminological laboratories) 01/01/1988 31/12/2500 -90065900 01/01/1988 31/12/2006 LIBEN Cameras for roll film of a width of > 35 mm or for film in the flat (excl. instant print cameras and special cameras of subheading 9006.10, 9006.20 or 9006.30) 01/01/1988 31/12/2006 -90065900 01/01/2007 31/12/2016 LIBEN Cameras for roll film of a width of > 35 mm or for film in the flat (excl. instant print cameras and special cameras of subheading 9006.10 or 9006.30) 01/01/2007 31/12/2016 -90065900 01/01/2017 31/12/2500 LIBEN Cameras for roll film of a width of > 35 mm or for film in the flat (excl. instant print cameras and cameras specially designed for underwater use, for aerial survey or for medical or surgical examination of internal organs, and comparison cameras for forensic or criminological laboratories) 01/01/2017 31/12/2500 -900661 01/01/1988 31/12/2500 LIBEN Electronic discharge lamp flashlight apparatus for photographic purposes 01/01/1988 31/12/2500 -90066100 01/01/1988 31/12/2500 LIBEN Electronic discharge lamp flashlight apparatus for photographic purposes 01/01/1988 31/12/2500 -900662 01/01/1988 31/12/2006 LIBEN Flashbulbs, flashcubes and the like, for photographic purposes (other than discharge lamps of heading 8539) 01/01/1988 31/12/2006 -90066200 01/01/1995 31/12/2006 LIBEN Flashbulbs, flashcubes and the like, for photographic purposes (other than discharge lamps of heading 8539) 01/01/1995 31/12/2006 -90066210 01/01/1988 31/12/1994 LIBEN Flashcubes for photographic purposes 01/01/1988 31/12/1994 -90066290 01/01/1988 31/12/1994 LIBEN Flashbulbs and the like for photographic purposes (excl. discharge lamps of heading 8539 and flashcubes) 01/01/1988 31/12/1994 -900669 01/01/1988 31/12/2500 LIBEN Photographic flashlights and flashlight apparatus (excl. with electronic discharge lamps) 01/01/1988 31/12/2500 -90066900 01/01/1988 31/12/2006 LIBEN Photographic flashlights and flashlight apparatus (excl. with electronic discharge lamps, and flashbulbs, flashcubes and the like) 01/01/1988 31/12/2006 -90066900 01/01/2007 31/12/2500 LIBEN Photographic flashlights and flashlight apparatus (excl. with electronic discharge lamps) 01/01/2007 31/12/2500 -900691 01/01/1988 31/12/2500 LIBEN Parts and accessories for photographic cameras, n.e.s. 01/01/1988 31/12/2500 -90069100 01/01/1995 31/12/1998 LIBEN Parts and accessories for photographic cameras, n.e.s. 01/01/1995 31/12/1998 -90069100 01/01/2007 31/12/2016 LIBEN Parts and accessories for photographic cameras, n.e.s. 01/01/2007 31/12/2016 -90069100 01/01/2017 31/12/2500 LIBEN Parts and accessories for photographic cameras, n.e.s. 01/01/2017 31/12/2500 -90069110 01/01/1988 31/12/1994 LIBEN Tripods for cameras 01/01/1988 31/12/1994 -90069110 01/01/1999 31/12/2006 LIBEN Parts and accessories of photographic cameras as pattern generating apparatus of a kind used for producing masks and reticles from photoresist coated substrates, n.e.s. 01/01/1999 31/12/2006 -90069190 01/01/1988 31/12/1994 LIBEN Parts and accessories for cameras n.e.s. (excl. tripods) 01/01/1988 31/12/1994 -90069190 01/01/1999 31/12/2006 LIBEN Parts and accessories for photographic cameras, n.e.s. 01/01/1999 31/12/2006 -900699 01/01/1988 31/12/2500 LIBEN Parts and accessories for photographic flashlights and flashlight apparatus, n.e.s. 01/01/1988 31/12/2500 -90069900 01/01/1988 31/12/1997 LIBEN Parts and accessories for photographic flashlights and flashlight apparatus n.e.s. 01/01/1988 31/12/1997 -90069900 01/01/1999 31/12/2500 LIBEN Parts and accessories for photographic flashlights and flashlight apparatus, n.e.s. 01/01/1999 31/12/2500 -90069910 01/01/1998 31/12/1998 LIBEN Parts and accessories of photographic cameras as pattern generating apparatus of a kind used for producing masks and reticles from photoresist coated substrates, n.e.s. 01/01/1998 31/12/1998 -90069990 01/01/1998 31/12/1998 LIBEN Parts and accessories for photographic flashlights and flashlight apparatus, n.e.s. 01/01/1998 31/12/1998 -9007 01/01/1988 31/12/2500 LIBEN Cinematographic cameras and projectors, whether or not incorporating sound recording or reproducing apparatus (excl. video equipment) 01/01/1988 31/12/2500 -900710 01/01/2012 31/12/2500 LIBEN Cinematographic cameras 01/01/2012 31/12/2500 -90071000 01/01/2012 31/12/2500 LIBEN Cinematographic cameras 01/01/2012 31/12/2500 -900711 01/01/1988 31/12/2011 LIBEN Cinematographic cameras for film of < 16 mm width or for double-8 mm film 01/01/1988 31/12/2011 -90071100 01/01/1988 31/12/2011 LIBEN Cinematographic cameras for film of < 16 mm width or for double-8 mm film 01/01/1988 31/12/2011 -900719 01/01/1988 31/12/2011 LIBEN Cinematographic cameras for film of >= 16 mm width (excl. for double-8 mm film) 01/01/1988 31/12/2011 -90071900 01/01/1988 31/12/2011 LIBEN Cinematographic cameras for film of >= 16 mm width (excl. for double-8 mm film) 01/01/1988 31/12/2011 -900720 01/01/1996 31/12/2500 LIBEN Cinematographic projectors 01/01/1996 31/12/2500 -90072000 01/01/1996 31/12/2500 LIBEN Cinematographic projectors 01/01/1996 31/12/2500 -900721 01/01/1988 31/12/1995 LIBEN Cinematographic projectors for film of < 16 mm in width 01/01/1988 31/12/1995 -90072100 01/01/1988 31/12/1995 LIBEN Cinematographic projectors for film of < 16 mm in width 01/01/1988 31/12/1995 -900729 01/01/1988 31/12/1995 LIBEN Cinematographic projectors for film of >= 16 mm in width 01/01/1988 31/12/1995 -90072900 01/01/1988 31/12/1995 LIBEN Cinematographic projectors for film of >= 16 mm in width 01/01/1988 31/12/1995 -900791 01/01/1988 31/12/2500 LIBEN Parts and accessories for cinematographic cameras, n.e.s. 01/01/1988 31/12/2500 -90079100 01/01/1995 31/12/2016 LIBEN Parts and accessories for cinematographic cameras, n.e.s. 01/01/1995 31/12/2016 -90079100 01/01/2017 31/12/2500 LIBEN Parts and accessories for cinematographic cameras, n.e.s. 01/01/2017 31/12/2500 -90079110 01/01/1988 31/12/1994 LIBEN Tripods for cinematographic cameras 01/01/1988 31/12/1994 -90079190 01/01/1988 31/12/1994 LIBEN Parts and accessories for cinematographic cameras n.e.s. (excl. tripods) 01/01/1988 31/12/1994 -900792 01/01/1988 31/12/2500 LIBEN Parts and accessories for cinematographic projectors, n.e.s. 01/01/1988 31/12/2500 -90079200 01/01/1988 31/12/2500 LIBEN Parts and accessories for cinematographic projectors, n.e.s. 01/01/1988 31/12/2500 -9008 01/01/1988 31/12/2500 LIBEN Image projectors, and photographic enlargers and reducers (excl. cinematographic) 01/01/1988 31/12/2500 -900810 01/01/1988 31/12/2011 LIBEN Slide projectors 01/01/1988 31/12/2011 -90081000 01/01/1988 31/12/2011 LIBEN Slide projectors 01/01/1988 31/12/2011 -900820 01/01/1988 31/12/2011 LIBEN Microfilm, microfiche or other microform readers, whether or not capable of producing copies 01/01/1988 31/12/2011 -90082000 01/01/1988 31/12/2011 LIBEN Microfilm, microfiche or other microform readers, whether or not capable of producing copies 01/01/1988 31/12/2011 -900830 01/01/1988 31/12/2011 LIBEN Image projectors (excl. slide projectors and microfilm, microfiche or other microform readers) 01/01/1988 31/12/2011 -90083000 01/01/1988 31/12/2011 LIBEN Image projectors (excl. slide projectors and microfilm, microfiche or other microform readers) 01/01/1988 31/12/2011 -900840 01/01/1988 31/12/2011 LIBEN Photographic enlargers and reducers 01/01/1988 31/12/2011 -90084000 01/01/1988 31/12/2011 LIBEN Photographic enlargers and reducers 01/01/1988 31/12/2011 -900850 01/01/2012 31/12/2500 LIBEN Image projectors, and photographic enlargers and reducers (excl. cinematographic and parts) 01/01/2012 31/12/2500 -90085000 01/01/2012 31/12/2500 LIBEN Image projectors, and photographic enlargers and reducers (excl. cinematographic and parts) 01/01/2012 31/12/2500 -900890 01/01/1988 31/12/2500 LIBEN Parts and accessories for image projectors, photographic enlargers and reducers, n.e.s. 01/01/1988 31/12/2500 -90089000 01/01/1988 31/12/2500 LIBEN Parts and accessories for image projectors, photographic enlargers and reducers, n.e.s. 01/01/1988 31/12/2500 -9009 01/01/1988 31/12/2006 LIBEN Photocopying apparatus incorporating an optical system or of the contact type and thermo-copying apparatus 01/01/1988 31/12/2006 -900911 01/01/1988 31/12/2006 LIBEN Electrostatic photocopying apparatus, operating by reproducing the original image directly onto the copy [direct process] 01/01/1988 31/12/2006 -90091100 01/01/1988 31/12/2006 LIBEN Electrostatic photocopying apparatus, operating by reproducing the original image directly onto the copy [direct process] 01/01/1988 31/12/2006 -900912 01/01/1988 31/12/2006 LIBEN Electrostatic photocopying apparatus, operating by reproducing the original image via an intermediate onto the copy [indirect process] 01/01/1988 31/12/2006 -90091200 01/01/1988 31/12/2006 LIBEN Electrostatic photocopying apparatus, operating by reproducing the original image via an intermediate onto the copy [indirect process] 01/01/1988 31/12/2006 -900921 01/01/1988 31/12/2006 LIBEN Photocopying apparatus, incorporating an optical system (excl. electrostatic) 01/01/1988 31/12/2006 -90092100 01/01/1988 31/12/2006 LIBEN Photocopying apparatus, incorporating an optical system (excl. electrostatic) 01/01/1988 31/12/2006 -900922 01/01/1988 31/12/2006 LIBEN Photocopying apparatus of the contact type 01/01/1988 31/12/2006 -90092200 01/01/2001 31/12/2006 LIBEN Photocopying apparatus of the contact type 01/01/2001 31/12/2006 -90092210 01/01/1988 31/12/2000 LIBEN Blueprinters and diazocopiers 01/01/1988 31/12/2000 -90092290 01/01/1988 31/12/2000 LIBEN Photocopying apparatus of the contact type (excl. blueprinters and diazocopiers) 01/01/1988 31/12/2000 -900930 01/01/1988 31/12/2006 LIBEN Thermo-copying apparatus (excl. thermo-printers) 01/01/1988 31/12/2006 -90093000 01/01/1988 31/12/2006 LIBEN Thermo-copying apparatus (excl. thermo-printers) 01/01/1988 31/12/2006 -900990 01/01/1988 31/12/2001 LIBEN Parts and accessories for photocopying and thermo-copying apparatus, n.e.s. 01/01/1988 31/12/2001 -90099000 01/01/2000 31/12/2001 LIBEN Parts and accessories for photocopying and thermo-copying apparatus, n.e.s. 01/01/2000 31/12/2001 -90099010 01/01/1988 31/12/1999 LIBEN Parts and accessories for electrostatic photocopying apparatus or other photocopying apparatus incorporating an optical system n.e.s. 01/01/1988 31/12/1999 -90099090 01/01/1988 31/12/1999 LIBEN Parts and accessories for photocopying apparatus of the contact type and thermo-copying apparatus n.e.s. 01/01/1988 31/12/1999 -900991 01/01/2002 31/12/2006 LIBEN Automatic document feeders for photocopying and thermo-copying apparatus 01/01/2002 31/12/2006 -90099100 01/01/2002 31/12/2006 LIBEN Automatic document feeders for photocopying and thermo-copying apparatus 01/01/2002 31/12/2006 -900992 01/01/2002 31/12/2006 LIBEN Paper feeders for photocopying and thermo-copying apparatus 01/01/2002 31/12/2006 -90099200 01/01/2002 31/12/2006 LIBEN Paper feeders for photocopying and thermo-copying apparatus 01/01/2002 31/12/2006 -900993 01/01/2002 31/12/2006 LIBEN Sorters for photocopying and thermo-copying apparatus 01/01/2002 31/12/2006 -90099300 01/01/2002 31/12/2006 LIBEN Sorters for photocopying and thermo-copying apparatus 01/01/2002 31/12/2006 -900999 01/01/2002 31/12/2006 LIBEN Parts and accessories for photocopying and thermo-copying apparatus, n.e.s. (excl. automatic document feeders, paper feeders and sorters) 01/01/2002 31/12/2006 -90099900 01/01/2002 31/12/2006 LIBEN Parts and accessories for photocopying and thermo-copying apparatus, n.e.s. (excl. automatic document feeders, paper feeders and sorters) 01/01/2002 31/12/2006 -9009I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9009; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -9009I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9009; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -9009I2 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9009; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -9009I200 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9009; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1993 31/12/2005 -9009I7 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9009; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -9009I700 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9009; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -9010 01/01/1988 31/12/2500 LIBEN Apparatus and equipment for photographic or cinematographic laboratories, not elsewhere specified in chapter 90; negatoscopes; projection screens 01/01/1988 31/12/2500 -901010 01/01/1988 31/12/2500 LIBEN Apparatus and equipment for automatically developing photographic or cinematographic film or paper in rolls or for automatically exposing developed film to rolls of photographic paper 01/01/1988 31/12/2500 -90101000 01/01/1988 31/12/2500 LIBEN Apparatus and equipment for automatically developing photographic or cinematographic film or paper in rolls or for automatically exposing developed film to rolls of photographic paper 01/01/1988 31/12/2500 -901020 01/01/1988 31/12/1995 LIBEN Apparatus and equipment for photographic or cinematographic laboratories n.e.s; negatoscopes 01/01/1988 31/12/1995 -90102000 01/01/1988 31/12/1994 LIBEN Apparatus and equipment for photographic or cinematographic laboratories n.e.s; negatoscopes 01/01/1988 31/12/1994 -90102010 01/01/1995 31/12/1995 LIBEN Electron beam direct write-on wafer apparatus 01/01/1995 31/12/1995 -90102020 01/01/1995 31/12/1995 LIBEN Step and repeat aligners 01/01/1995 31/12/1995 -90102030 01/01/1995 31/12/1995 LIBEN Apparatus for the projection or drawing of circuit patterns on sensitized conductor material (excl. electron beam direct write-on wafer apparatus and step and repeat aligners) 01/01/1995 31/12/1995 -90102090 01/01/1995 31/12/1995 LIBEN Apparatus and equipment for photographic (including cinematographic) laboratories, n.e.s.; negatoscopes 01/01/1995 31/12/1995 -901030 01/01/1988 31/12/1995 LIBEN Projection screens 01/01/1988 31/12/1995 -90103000 01/01/1988 31/12/1995 LIBEN Projection screens 01/01/1988 31/12/1995 -901041 01/01/1996 31/12/2006 LIBEN Direct write-on wafer apparatus 01/01/1996 31/12/2006 -90104100 01/01/1996 31/12/2006 LIBEN Direct write-on wafer apparatus 01/01/1996 31/12/2006 -901042 01/01/1996 31/12/2006 LIBEN Step and repeat aligners 01/01/1996 31/12/2006 -90104200 01/01/1996 31/12/2006 LIBEN Step and repeat aligners 01/01/1996 31/12/2006 -901049 01/01/1996 31/12/2006 LIBEN Apparatus for the projection or drawing of circuit patterns on sensitised semiconductor materials (excl. direct write-on wafer apparatus and step and repeat aligners) 01/01/1996 31/12/2006 -90104900 01/01/1996 31/12/2006 LIBEN Apparatus for the projection or drawing of circuit patterns on sensitised semiconductor materials (excl. direct write-on wafer apparatus and step and repeat aligners) 01/01/1996 31/12/2006 -901050 01/01/1996 31/12/2500 LIBEN Apparatus and equipment for photographic or cinematographic laboratories, n.e.s.; negatoscopes 01/01/1996 31/12/2500 -90105000 01/01/1996 31/12/1997 LIBEN Apparatus and equipment for photographic or cinematographic laboratories, n.e.s.; negatoscopes 01/01/1996 31/12/1997 -90105000 01/01/2007 31/12/2500 LIBEN Apparatus and equipment for photographic or cinematographic laboratories, n.e.s.; negatoscopes 01/01/2007 31/12/2500 -90105010 01/01/1998 31/12/2006 LIBEN Apparatus for the projection or drawing of circuit patterns on sensitised flat panel display substrates 01/01/1998 31/12/2006 -90105090 01/01/1998 31/12/2006 LIBEN Apparatus and equipment for photographic or cinematographic laboratories, n.e.s.; negatoscopes 01/01/1998 31/12/2006 -901060 01/01/1996 31/12/2500 LIBEN Projection screens 01/01/1996 31/12/2500 -90106000 01/01/1996 31/12/2500 LIBEN Projection screens 01/01/1996 31/12/2500 -901090 01/01/1988 31/12/2500 LIBEN Parts and accessories for apparatus and equipment for photographic or cinematographic laboratories, negatoscopes and projection screens, n.e.s. 01/01/1988 31/12/2500 -90109000 01/01/1988 31/12/1997 LIBEN Parts and accessories for apparatus and equipment for photographic or cinematographic laboratories, negatoscopes and projection screens n.e.s. 01/01/1988 31/12/1997 -90109000 01/01/2007 31/12/2016 LIBEN Parts and accessories for apparatus and equipment for photographic or cinematographic laboratories, negatoscopes and projection screens, n.e.s. 01/01/2007 31/12/2016 -90109010 01/01/1998 31/12/2006 LIBEN Parts and accessories of apparatus for the projection or drawing of circuit patterns on sensitised semiconductor materials or on sensitised flat panel display substrates, n.e.s. 01/01/1998 31/12/2006 -90109020 01/01/2017 31/12/2500 LIBEN Parts and accessories of apparatus and equipment of subheadings 9010 50 00 or 9010 60 00, n.e.s. 01/01/2017 31/12/2500 -90109080 01/01/2017 31/12/2500 LIBEN Parts and accessories for apparatus and equipment for automatically developing photographic or cinematographic film or paper in rolls or for automatically exposing developed film to rolls of photographic paper, n.e.s. 01/01/2017 31/12/2500 -90109090 01/01/1998 31/12/2006 LIBEN Parts and accessories for apparatus and equipment for photographic or cinematographic laboratories, negatoscopes and projection screens, n.e.s. (excl. of apparatus for the projection or drawing of circuit patterns on sensitised semiconductor materials or on sensitised flat panel display substrates) 01/01/1998 31/12/2006 -9010I9 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9010; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1993 31/12/2005 -9010I900 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9010; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1993 31/12/2005 -9011 01/01/1988 31/12/2500 LIBEN Optical microscopes, incl. those for photomicrography, cinephotomicrography or microprojection (excl. binocular microscopes for ophthalmology and instruments, appliances and machines of heading 9031) 01/01/1988 31/12/2500 -901110 01/01/1988 31/12/2500 LIBEN Stereoscopic optical microscopes 01/01/1988 31/12/2500 -90111000 01/01/1988 31/12/1997 LIBEN Stereoscopic microscopes 01/01/1988 31/12/1997 -90111000 01/01/2020 31/12/2500 LIBEN Stereoscopic optical microscopes 01/01/2020 31/12/2500 -90111010 01/01/1998 31/12/2019 LIBEN Stereoscopic optical microscopes fitted with equipment specifically designed for the handling and transport of semiconductor wafers or reticles 01/01/1998 31/12/2019 -90111090 01/01/1998 31/12/2019 LIBEN Stereoscopic optical microscopes (excl. fitted with equipment specifically designed for the handling and transport of semiconductor wafers or reticles) 01/01/1998 31/12/2019 -901120 01/01/1988 31/12/2500 LIBEN Optical microscopes, for photomicrography, cinephotomicrography or microprojection (excl. stereoscopic microscopes) 01/01/1988 31/12/2500 -90112000 01/01/1988 31/12/1997 LIBEN Optical microscopes, for photomicrography, cinephotomicrography or microprojection (excl. stereoscopic microscopes) 01/01/1988 31/12/1997 -90112010 01/01/1998 31/12/2500 LIBEN Photomicrographic optical microscopes fitted with equipment specifically designed for the handling and transport of semiconductor wafers or reticles (excl. stereoscopic microscopes) 01/01/1998 31/12/2500 -90112090 01/01/1998 31/12/2500 LIBEN Optical microscopes for photomicrography, cinephotomicrography or microprojection (excl. fitted with equipment specifically designed for the handling and transport of semiconductor wafers or reticles, and stereoscopic microscopes) 01/01/1998 31/12/2500 -901180 01/01/1988 31/12/2500 LIBEN Optical microscopes (excl. for photomicrography, cinephotomicrography or microprojection, stereoscopic microscopes, binocular microscopes for ophthalmology and instruments, appliances and machines of heading 9031) 01/01/1988 31/12/2500 -90118000 01/01/1988 31/12/2500 LIBEN Optical microscopes (excl. for photomicrography, cinephotomicrography or microprojection, stereoscopic microscopes, binocular microscopes for ophthalmology and instruments, appliances and machines of heading 9031) 01/01/1988 31/12/2500 -901190 01/01/1988 31/12/2500 LIBEN Parts and accessories for compound optical microscopes, n.e.s. 01/01/1988 31/12/2500 -90119000 01/01/1988 31/12/1997 LIBEN Parts and accessories for optical microscopes n.e.s. 01/01/1988 31/12/1997 -90119000 01/01/2020 31/12/2500 LIBEN Parts and accessories for compound optical microscopes, n.e.s. 01/01/2020 31/12/2500 -90119010 01/01/1998 31/12/2019 LIBEN Parts and accessories of stereoscopic optical microscopes and photomicrographic optical microscopes, fitted with equipment specifically designed for the handling and transport of semiconductor wafers or reticles, n.e.s. 01/01/1998 31/12/2019 -90119090 01/01/1998 31/12/2019 LIBEN Parts and accessories for compound optical microscopes, n.e.s. (excl. of stereoscopic optical microscopes and photomicrographic optical microscopes, fitted with equipment specifically designed for the handling and transport of semiconductor wafers or reticles) 01/01/1998 31/12/2019 -9012 01/01/1988 31/12/2500 LIBEN Electron microscopes, proton microscopes and diffraction apparatus 01/01/1988 31/12/2500 -901210 01/01/1988 31/12/2500 LIBEN Electron microscopes, proton microscopes and diffraction apparatus 01/01/1988 31/12/2500 -90121000 01/01/1988 31/12/1997 LIBEN Electron microscopes, proton microscopes and diffraction apparatus 01/01/1988 31/12/1997 -90121000 01/01/2020 31/12/2500 LIBEN Electron microscopes, proton microscopes and diffraction apparatus 01/01/2020 31/12/2500 -90121010 01/01/1998 31/12/2019 LIBEN Electron microscopes fitted with equipment specifically designed for the handling and transport of semiconductor wafers or reticles 01/01/1998 31/12/2019 -90121090 01/01/1998 31/12/2019 LIBEN Electron microscopes, proton microscopes and diffraction apparatus (excl. electron microscopes fitted with equipment specifically designed for the handling and transport of semiconductor wafers or reticles) 01/01/1998 31/12/2019 -901290 01/01/1988 31/12/2500 LIBEN Parts and accessories for electron microscopes, proton microscopes and diffraction apparatus, n.e.s. 01/01/1988 31/12/2500 -90129000 01/01/1988 31/12/1997 LIBEN Parts and accessories for electron microscopes, proton microscopes and diffraction apparatus n.e.s. 01/01/1988 31/12/1997 -90129000 01/01/2020 31/12/2500 LIBEN Parts and accessories for electron microscopes, proton microscopes and diffraction apparatus, n.e.s. 01/01/2020 31/12/2500 -90129010 01/01/1998 31/12/2019 LIBEN Parts and accessories of electron microscopes fitted with equipment specifically designed for the handling and transport of semiconductor wafers or reticles, n.e.s. 01/01/1998 31/12/2019 -90129090 01/01/1998 31/12/2019 LIBEN Parts and accessories for electron microscopes, proton microscopes and diffraction apparatus, n.e.s. (excl. of electron microscopes fitted with equipment specifically designed for the handling and transport of semiconductor wafers or reticles) 01/01/1998 31/12/2019 -9013 01/01/1988 31/12/2500 LIBEN Liquid crystal devices not constituting articles provided for more specifically in other heading; lasers (excl. laser diodes); other optical appliances and instruments not elsewhere specified in chapter 90 01/01/1988 31/12/2500 -901310 01/01/1988 31/12/2500 LIBEN Telescopic sights for fitting to arms; periscopes; telescopes designed to form parts of machines, appliances, instruments or apparatus of chapter 90 or Section 16, chapters 84 and 85 01/01/1988 31/12/2500 -90131000 01/01/1988 31/12/2016 LIBEN Telescopic sights for fitting to arms; periscopes; telescopes designed to form parts of machines, appliances, instruments or apparatus of chapter 90 or Section 16, chapters 84 and 85 01/01/1988 31/12/2016 -90131010 01/01/2017 31/12/2500 LIBEN Telescopes designed to form parts of machines, appliances, instruments or apparatus of Ch 84, 85 or 90 01/01/2017 31/12/2500 -90131090 01/01/2017 31/12/2500 LIBEN Telescopic sights for fitting to arms; periscopes 01/01/2017 31/12/2500 -901320 01/01/1988 31/12/2500 LIBEN Lasers (excl. laser diodes) 01/01/1988 31/12/2500 -90132000 01/01/1988 31/12/2500 LIBEN Lasers (excl. laser diodes) 01/01/1988 31/12/2500 -901380 01/01/1988 31/12/2500 LIBEN Liquid crystal devices, n.e.s. and other optical appliances and instruments not elsewhere specified in chapter 90 01/01/1988 31/12/2500 -90138000 01/01/1988 31/12/1991 LIBEN Liquid crystal devices n.e.s. and other optical appliances and instruments not elsewhere specified in chapter 90 01/01/1988 31/12/1991 -90138010 01/01/1992 31/12/1993 LIBEN Liquid crystal devices, n.e.s. 01/01/1992 31/12/1993 -90138011 01/01/1994 31/12/1998 LIBEN Matrix liquid crystal devices, active, colour (excl. those of a kind used for civil aircraft of subheading 5231.20-10 and those of a kind used for motor vehicles, cycles or traffic signalling) 01/01/1994 31/12/1998 -90138019 01/01/1994 31/12/1998 LIBEN Matrix liquid crystal devices, active, black and white or other monochrome 01/01/1994 31/12/1998 -90138020 01/01/1999 31/12/2500 LIBEN Matrix liquid crystal devices, active 01/01/1999 31/12/2500 -90138030 01/01/1994 31/12/2500 LIBEN Liquid crystal devices, n.e.s. 01/01/1994 31/12/2500 -90138090 01/01/1992 31/12/2500 LIBEN Magnifying glasses, thread counters, stereoscopes, kaleidoscopes and other optical instruments and apparatus not specified or included elsewhere in chapter 90 01/01/1992 31/12/2500 -901390 01/01/1988 31/12/2500 LIBEN Parts and accessories for liquid crystal devices "LCD", lasers and other appliances and instruments not elsewhere specified in chapter 90, n.e.s. 01/01/1988 31/12/2500 -90139000 01/01/1988 31/12/1994 LIBEN Parts and accessories for liquid crystal devices, lasers and other appliances and instruments not elsewhere specified in chapter 90 n.e.s. 01/01/1988 31/12/1994 -90139005 01/01/2017 31/12/2500 LIBEN Parts and accessories for telescopic sights for fitting to arms or for periscopes 01/01/2017 31/12/2500 -90139010 01/01/1995 31/12/2500 LIBEN Parts and accessories for liquid crystal displays "LCD" 01/01/1995 31/12/2500 -90139080 01/01/2017 31/12/2500 LIBEN Parts and accessories for lasers and other instruments, apparatus and appliances not specified or included elsewhere in chapter 90, n.e.s. 01/01/2017 31/12/2500 -90139090 01/01/1995 31/12/2016 LIBEN Parts and accessories for lasers and other instruments, apparatus and appliances not specified or included elsewhere in chapter 90, n.e.s. 01/01/1995 31/12/2016 -9013S8 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 9013 and SITC section 8 01/01/2006 31/12/2500 -9013S871 01/01/2006 31/12/2500 LIBEN Confidential trade of heading 9013 and SITC group 871 01/01/2006 31/12/2500 -9014 01/01/1988 31/12/2500 LIBEN Direction finding compasses; other navigational instruments and appliances (excl. radio navigational equipment) 01/01/1988 31/12/2500 -901410 01/01/1988 31/12/2500 LIBEN Direction finding compasses 01/01/1988 31/12/2500 -90141000 01/01/2006 31/12/2500 LIBEN Direction finding compasses 01/01/2006 31/12/2500 -90141010 01/01/1988 31/12/2005 LIBEN Direction finding compasses, for civil aircraft 01/01/1988 31/12/2005 -90141090 01/01/1988 31/12/2005 LIBEN Direction finding compasses (excl. for civil aircraft of subheading 9014.10.10) 01/01/1988 31/12/2005 -901420 01/01/1988 31/12/2500 LIBEN Instruments and appliances for aeronautical or space navigation (excl. compasses and radio navigational equipment) 01/01/1988 31/12/2500 -90142011 01/01/1988 31/12/1994 LIBEN Stall warning calculators, for civil aircraft 01/01/1988 31/12/1994 -90142013 01/01/1988 31/12/2005 LIBEN Inertial navigation systems, for civil aircraft 01/01/1988 31/12/2005 -90142015 01/01/1988 31/12/1994 LIBEN Ground proximity warning systems, for civil aircraft 01/01/1988 31/12/1994 -90142018 01/01/1995 31/12/2005 LIBEN Navigational instruments and appliances for use in civil aircraft (excl. compasses, inertial navigation systems and radio navigation instruments) 01/01/1995 31/12/2005 -90142019 01/01/1988 31/12/1994 LIBEN Navigational instruments and appliances for civil aircraft (excl. compasses, stall warning calculators, inertial navigation systems, ground warning proximity systems and radio navigational equipment) 01/01/1988 31/12/1994 -90142020 01/01/2006 31/12/2500 LIBEN Inertial navigation systems for aeronautical or space navigation (excl. compasses and radio navigational equipment) 01/01/2006 31/12/2500 -90142080 01/01/2006 31/12/2500 LIBEN Instruments and appliances for aeronautical or space navigation (excl. inertial navigation systems, compasses and radio navigational equipment) 01/01/2006 31/12/2500 -90142090 01/01/1988 31/12/2005 LIBEN Navigational instruments and apparatus (excl. for civil aircraft of subheading 9014.20.11 to 9014.20.19, compasses and radio navigational equipment) 01/01/1988 31/12/2005 -901480 01/01/1988 31/12/2500 LIBEN Navigational instruments and apparatus (excl. for aeronautical or space navigation, compasses and radio navigational equipment) 01/01/1988 31/12/2500 -90148000 01/01/1988 31/12/2500 LIBEN Navigational instruments and apparatus (excl. for aeronautical or space navigation, compasses and radio navigational equipment) 01/01/1988 31/12/2500 -901490 01/01/1988 31/12/2500 LIBEN Parts and accessories for compasses and other navigational instruments and appliances, n.e.s. 01/01/1988 31/12/2500 -90149000 01/01/2006 31/12/2500 LIBEN Parts and accessories for compasses and other navigational instruments and appliances, n.e.s. 01/01/2006 31/12/2500 -90149010 01/01/1988 31/12/2005 LIBEN Parts and accessories for direction finding compasses and other aeronautical navigation instruments and appliances, for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -90149090 01/01/1988 31/12/2005 LIBEN Parts and accessories for direction finding compasses and other navigational instruments and appliances, n.e.s. (excl. for civil aircraft of subheading 9014.90.10) 01/01/1988 31/12/2005 -9015 01/01/1988 31/12/2500 LIBEN Surveying, incl. photogrammetrical surveying, hydrographic, oceanographic, hydrological, meteorological or geophysical instruments and appliances (excl. compasses); rangefinders 01/01/1988 31/12/2500 -901510 01/01/1988 31/12/2500 LIBEN Rangefinders 01/01/1988 31/12/2500 -90151000 01/01/2020 31/12/2500 LIBEN Rangefinders 01/01/2020 31/12/2500 -90151010 01/01/1988 31/12/2019 LIBEN Electronic rangefinders 01/01/1988 31/12/2019 -90151090 01/01/1988 31/12/2019 LIBEN Non-electronic rangefinders 01/01/1988 31/12/2019 -901520 01/01/1988 31/12/2500 LIBEN Theodolites and tachymeters "tacheometers" 01/01/1988 31/12/2500 -90152000 01/01/2020 31/12/2500 LIBEN Theodolites and tachymeters "tacheometers" 01/01/2020 31/12/2500 -90152010 01/01/1988 31/12/2019 LIBEN Electronic theodolites and tachymeters "tacheometers" 01/01/1988 31/12/2019 -90152090 01/01/1988 31/12/2019 LIBEN Non-electronic theodolites and tachymeters "tacheometers" 01/01/1988 31/12/2019 -901530 01/01/1988 31/12/2500 LIBEN Levels 01/01/1988 31/12/2500 -90153010 01/01/1988 31/12/2500 LIBEN Electronic levels 01/01/1988 31/12/2500 -90153090 01/01/1988 31/12/2500 LIBEN Non-electronic levels 01/01/1988 31/12/2500 -901540 01/01/1988 31/12/2500 LIBEN Photogrammetrical surveying instruments and appliances 01/01/1988 31/12/2500 -90154000 01/01/2020 31/12/2500 LIBEN Photogrammetrical surveying instruments and appliances 01/01/2020 31/12/2500 -90154010 01/01/1988 31/12/2019 LIBEN Electronic photogrammetrical surveying instruments and appliances 01/01/1988 31/12/2019 -90154090 01/01/1988 31/12/2019 LIBEN Non-electronic photogrammetrical surveying instruments and appliances 01/01/1988 31/12/2019 -901580 01/01/1988 31/12/2500 LIBEN Instruments and appliances used in geodesy, topography, hydrography, oceanography, hydrology, meteorology or geophysics (excl. compasses, rangefinders, theodolites, tachymeters "tacheometers", levels and photogrammetrical surveying instruments and appliances) 01/01/1988 31/12/2500 -90158011 01/01/1988 31/12/2016 LIBEN Electronic meteorological, hydrological and geophysical instruments and apparatus (excl. compasses, rangefinders, theodolites, tachymeters "tacheometers", levels and photogrammetrical surveying instruments and appliances) 01/01/1988 31/12/2016 -90158019 01/01/1988 31/12/2016 LIBEN Electronic instruments and appliances used in geodesy, topography, hydrography or oceanography (excl. compasses, rangefinders, theodolites, tachymeters "tacheometers", levels and photogrammetrical surveying instruments and appliances) 01/01/1988 31/12/2016 -90158020 01/01/2017 31/12/2500 LIBEN Meteorological, hydrological and geophysical instruments and apparatus (excl. compasses, rangefinders, theodolites, tachymeters "tacheometers", levels and photogrammetrical surveying instruments and appliances) 01/01/2017 31/12/2500 -90158040 01/01/2017 31/12/2500 LIBEN Instruments and appliances used in geodesy, topography surveying or levelling and hydrographic instruments (excl. compasses, rangefinders, theodolites, tachymeters "tacheometers", levels and photogrammetrical surveying instruments and appliances) 01/01/2017 31/12/2500 -90158080 01/01/2017 31/12/2500 LIBEN Instruments and appliances used in oceanography (excl. compasses, rangefinders, theodolites, tachymeters "tacheometers", levels and photogrammetrical surveying instruments and appliances) 01/01/2017 31/12/2500 -90158091 01/01/1988 31/12/2016 LIBEN Non-electronic instruments and appliances used in geodesy, topography surveying or levelling and hydrographic instruments (excl. compasses, rangefinders, theodolites, tachymeters "tacheometers", levels and photogrammetrical surveying instruments and appliances) 01/01/1988 31/12/2016 -90158093 01/01/1988 31/12/2016 LIBEN Non-electronic meteorological, hydrological and geophysical instruments and apparatus (excl. compasses, rangefinders, theodolites, tachymeters "tacheometers", levels and photogrammetrical surveying instruments and appliances) 01/01/1988 31/12/2016 -90158099 01/01/1988 31/12/2016 LIBEN Non-electronic instruments and appliances used in oceanography (excl. compasses, rangefinders, theodolites, tachymeters "tacheometers", levels and photogrammetrical surveying instruments and appliances) 01/01/1988 31/12/2016 -901590 01/01/1988 31/12/2500 LIBEN Parts and accessories for instruments and appliances used in geodesy, topography, photogrammetrical surveying, hydrography, oceanography, hydrology, meteorology or geophysics, and for rangefinders, n.e.s. 01/01/1988 31/12/2500 -90159000 01/01/1988 31/12/2016 LIBEN Parts and accessories for instruments and appliances used in geodesy, topography, photogrammetrical surveying, hydrography, oceanography, hydrology, meteorology or geophysics, and for rangefinders, n.e.s. 01/01/1988 31/12/2016 -90159000 01/01/2017 31/12/2500 LIBEN Parts and accessories for instruments and appliances used in geodesy, topography, photogrammetrical surveying, hydrography, oceanography, hydrology, meteorology or geophysics, and for rangefinders, n.e.s. 01/01/2017 31/12/2500 -9016 01/01/1988 31/12/2500 LIBEN Balances of a sensitivity of 50 mg or better, with or without weights 01/01/1988 31/12/2500 -901600 01/01/1988 31/12/2500 LIBEN Balances of a sensitivity of 50 mg or better, with or without weights 01/01/1988 31/12/2500 -90160010 01/01/1988 31/12/2500 LIBEN Balances of a sensitivity of 50 mg or better, with or without weights 01/01/1988 31/12/2500 -90160090 01/01/1988 31/12/2500 LIBEN Parts and accessories for balances of a sensitivity of 50 mg or better, n.e.s. 01/01/1988 31/12/2500 -9017 01/01/1988 31/12/2500 LIBEN Drawing, marking-out or mathematical calculating instruments, e.g. drafting machines, pantographs, protractors, drawing sets, slide rules, disc calculators; instruments for measuring length, for use in the hand, e.g. measuring rods and tapes, micrometres, callipers and other gauges, not elsewhere specified in chapter 90 01/01/1988 31/12/2500 -901710 01/01/1988 31/12/2500 LIBEN Drafting tables and machines, whether or not automatic (excl. units for automatic data-processing equipment) 01/01/1988 31/12/2500 -90171000 01/01/1997 31/12/1997 LIBEN Drafting tables and machines, whether or not automatic (excl. units for automatic data processing equipment) 01/01/1997 31/12/1997 -90171010 01/01/1988 31/12/1996 LIBEN Parallelogram and track type drafting machines 01/01/1988 31/12/1996 -90171010 01/01/1998 31/12/2500 LIBEN Plotters as drafting machines 01/01/1998 31/12/2500 -90171090 01/01/1988 31/12/1996 LIBEN Drafting tables and machines, whether or not automatic (excl. units for automatic data processing equipment and parallelogram and track type drafting machines) 01/01/1988 31/12/1996 -90171090 01/01/1998 31/12/2500 LIBEN Drafting tables and machines, whether or not automatic (excl. plotters) 01/01/1998 31/12/2500 -901720 01/01/1988 31/12/2500 LIBEN Drawing, marking-out and mathematical calculating instruments (excl. drafting tables and machines and calculating machines) 01/01/1988 31/12/2500 -90172005 01/01/1998 31/12/2500 LIBEN Plotters as drawing or marking-out instruments 01/01/1998 31/12/2500 -90172010 01/01/2011 31/12/2500 LIBEN Drawing instruments (excl. drafting tables and machines, plotters) 01/01/2011 31/12/2500 -90172011 01/01/1988 31/12/2010 LIBEN Drawing sets 01/01/1988 31/12/2010 -90172019 01/01/1988 31/12/1997 LIBEN Drawing instruments (excl. drafting tables and machines and drawing sets) 01/01/1988 31/12/1997 -90172019 01/01/1998 31/12/2010 LIBEN Drawing instruments (excl. drafting tables and machines, plotters and drawing sets) 01/01/1998 31/12/2010 -90172030 01/01/1988 31/12/1994 LIBEN Marking-out instruments 01/01/1988 31/12/1994 -90172031 01/01/1995 31/12/2006 LIBEN Marking-out instruments as pattern generating apparatus of a kind used for producing masks or reticles from photoresist coated substrates 01/01/1995 31/12/2006 -90172039 01/01/1995 31/12/1997 LIBEN Marking-out instruments (excl. pattern generators for producing masks and reticles from photoresist-coated substrates) 01/01/1995 31/12/1997 -90172039 01/01/1998 31/12/2500 LIBEN Marking-out instruments 01/01/1998 31/12/2500 -90172090 01/01/1988 31/12/2500 LIBEN Mathematical calculating instruments, incl. slide rules, disc calculators and the like (excl. calculating machines) 01/01/1988 31/12/2500 -901730 01/01/1988 31/12/2500 LIBEN Micrometers, callipers and gauges (excl. gauges without adjustable devices of subheading 9031.80) 01/01/1988 31/12/2500 -90173000 01/01/2011 31/12/2500 LIBEN Micrometers, callipers and gauges (excl. gauges without adjustable devices of subheading 9031.80) 01/01/2011 31/12/2500 -90173010 01/01/1988 31/12/2010 LIBEN Micrometers and callipers 01/01/1988 31/12/2010 -90173090 01/01/1988 31/12/2010 LIBEN Gauges (excl. gauges without adjustable devices) 01/01/1988 31/12/2010 -901780 01/01/1988 31/12/2500 LIBEN Instruments for measuring length, for use in the hand, n.e.s. 01/01/1988 31/12/2500 -90178010 01/01/1988 31/12/2500 LIBEN Measuring rods and tapes and divided scales 01/01/1988 31/12/2500 -90178090 01/01/1988 31/12/2500 LIBEN Hand-held instruments for measuring length, n.e.s. 01/01/1988 31/12/2500 -901790 01/01/1988 31/12/2500 LIBEN Parts and accessories for drawing, marking-out or mathematical calculating instruments and instruments for measuring length for use in the hand, n.e.s. 01/01/1988 31/12/2500 -90179000 01/01/1988 31/12/1997 LIBEN Parts and accessories for drawing, marking-out, and mathematical calculating instruments and instruments for measuring length of heading 9017 n.e.s. 01/01/1988 31/12/1997 -90179000 01/01/2007 31/12/2500 LIBEN Parts and accessories for drawing, marking-out or mathematical calculating instruments and instruments for measuring length for use in the hand, n.e.s. 01/01/2007 31/12/2500 -90179010 01/01/1998 31/12/2006 LIBEN Parts and accessories for marking-out instruments as pattern generating apparatus of a kind used for producing masks or reticles from photoresist coated substrates, n.e.s. 01/01/1998 31/12/2006 -90179090 01/01/1998 31/12/2006 LIBEN Parts and accessories for drawing, marking-out or mathematical calculating instruments and instruments for measuring length for use in the hand, n.e.s. (excl. for marking-out instruments as pattern generating apparatus of a kind used for producing masks or reticles from photoresist coated substrates) 01/01/1998 31/12/2006 -9018 01/01/1988 31/12/2500 LIBEN Instruments and appliances used in medical, surgical, dental or veterinary sciences, incl. scintigraphic apparatus, other electro-medical apparatus and sight-testing instruments, n.e.s. 01/01/1988 31/12/2500 -901811 01/01/1988 31/12/2500 LIBEN Electro-cardiographs 01/01/1988 31/12/2500 -90181100 01/01/1988 31/12/2500 LIBEN Electro-cardiographs 01/01/1988 31/12/2500 -901812 01/01/1996 31/12/2500 LIBEN Ultrasonic scanning apparatus 01/01/1996 31/12/2500 -90181200 01/01/1996 31/12/2500 LIBEN Ultrasonic scanning apparatus 01/01/1996 31/12/2500 -901813 01/01/1996 31/12/2500 LIBEN Magnetic resonance imaging apparatus 01/01/1996 31/12/2500 -90181300 01/01/1996 31/12/2500 LIBEN Magnetic resonance imaging apparatus 01/01/1996 31/12/2500 -901814 01/01/1996 31/12/2500 LIBEN Scintigraphic apparatus 01/01/1996 31/12/2500 -90181400 01/01/1996 31/12/2500 LIBEN Scintigraphic apparatus 01/01/1996 31/12/2500 -901819 01/01/1988 31/12/2500 LIBEN Electro-diagnostic apparatus, incl. apparatus for functional exploratory examination or for checking physiological parameters (excl. electro-cardiographs, ultrasonic scanning apparatus, magnetic resonance imaging apparatus and scintigraphic apparatus) 01/01/1988 31/12/2500 -90181900 01/01/1988 31/12/1995 LIBEN Electro-diagnostic apparatus, incl. apparatus for functional exploratory examination or for checking physiological parameters (excl. electro-cardiographs) 01/01/1988 31/12/1995 -90181900 01/01/1996 31/12/1996 LIBEN Electro-diagnostic apparatus, incl. apparatus for functional exploratory examination or for checking physiological parameters (excl. electro-cardiographs, ultrasonic scanning apparatus, magnetic resonance imaging apparatus and scintigraphic apparatus) 01/01/1996 31/12/1996 -90181910 01/01/1997 31/12/2500 LIBEN Electro-diagnostic monitoring apparatus for simultaneous monitoring of two or more physiological parameters 01/01/1997 31/12/2500 -90181990 01/01/1997 31/12/2500 LIBEN Electro-diagnostic apparatus, incl. apparatus for functional exploratory examination or for checking physiological parameters (excl. electro-cardiographs, ultrasonic scanning apparatus, magnetic resonance imaging apparatus, scintigraphic apparatus and monitoring apparatus for simultaneous monitoring of two or more physiological parameters) 01/01/1997 31/12/2500 -901820 01/01/1988 31/12/2500 LIBEN Ultraviolet or infra-red ray apparatus used in medical, surgical, dental or veterinary sciences 01/01/1988 31/12/2500 -90182000 01/01/1988 31/12/2500 LIBEN Ultraviolet or infra-red ray apparatus used in medical, surgical, dental or veterinary sciences 01/01/1988 31/12/2500 -901831 01/01/1988 31/12/2500 LIBEN Syringes, with or without needles, used in medical, surgical, dental or veterinary sciences 01/01/1988 31/12/2500 -90183110 01/01/1988 31/12/2001 LIBEN Syringes of plastic, with or without needles, used in medical, surgical, dental or veterinary sciences 01/01/1988 31/12/2001 -90183110 01/01/2002 31/12/2500 LIBEN Syringes of plastics, with or without needles, used in medical, surgical, dental or veterinary sciences 01/01/2002 31/12/2500 -90183190 01/01/1988 31/12/2001 LIBEN Syringes, with or without needles, used in medical, surgical, dental or veterinary sciences (excl. of plastic) 01/01/1988 31/12/2001 -90183190 01/01/2002 31/12/2500 LIBEN Syringes, with or without needles, used in medical, surgical, dental or veterinary sciences (excl. of plastic) 01/01/2002 31/12/2500 -901832 01/01/1988 31/12/2500 LIBEN Tubular metal needles and needles for sutures, used in medical, surgical, dental or veterinary sciences 01/01/1988 31/12/2500 -90183210 01/01/1988 31/12/2001 LIBEN Tubular metal needles, used in medical, surgical, dental or veterinary sciences 01/01/1988 31/12/2001 -90183210 01/01/2002 31/12/2500 LIBEN Tubular metal needles, used in medical, surgical, dental or veterinary sciences 01/01/2002 31/12/2500 -90183290 01/01/1988 31/12/2001 LIBEN Needles for sutures, used in medical, surgical, dental or veterinary sciences 01/01/1988 31/12/2001 -90183290 01/01/2002 31/12/2500 LIBEN Needles for sutures, used in medical, surgical, dental or veterinary sciences 01/01/2002 31/12/2500 -901839 01/01/1988 31/12/2500 LIBEN Needles, catheters, cannulae and the like, used in medical, surgical, dental or veterinary sciences (excl. syringes, tubular metal needles and needles for sutures) 01/01/1988 31/12/2500 -90183900 01/01/1988 31/12/2001 LIBEN Needles, catheters, cannulae and the like, used in medical, surgical, dental or veterinary sciences (excl. syringes, tubular metal needles and needles for sutures) 01/01/1988 31/12/2001 -90183900 01/01/2002 31/12/2500 LIBEN Needles, catheters, cannulae and the like, used in medical, surgical, dental or veterinary sciences (excl. syringes, tubular metal needles and needles for sutures) 01/01/2002 31/12/2500 -901841 01/01/1988 31/12/2500 LIBEN Dental drill engines, whether or not combined on a single base with other dental equipment 01/01/1988 31/12/2500 -90184100 01/01/1988 31/12/2500 LIBEN Dental drill engines, whether or not combined on a single base with other dental equipment 01/01/1988 31/12/2500 -901849 01/01/1988 31/12/2500 LIBEN Instruments and appliances used in dental sciences, n.e.s. 01/01/1988 31/12/2500 -90184900 01/01/1988 31/12/1994 LIBEN Instruments and appliances used in dental sciences n.e.s. 01/01/1988 31/12/1994 -90184910 01/01/1995 31/12/2500 LIBEN Burrs, discs, drills and brushes, for use in dental drills 01/01/1995 31/12/2500 -90184990 01/01/1995 31/12/2500 LIBEN Instruments and appliances used in dental sciences, n.e.s. 01/01/1995 31/12/2500 -901850 01/01/1988 31/12/2500 LIBEN Ophthalmic instruments and appliances, n.e.s. 01/01/1988 31/12/2500 -90185010 01/01/1988 31/12/2500 LIBEN Ophthalmic instruments and appliances, non-optical, n.e.s. 01/01/1988 31/12/2500 -90185090 01/01/1988 31/12/2500 LIBEN Ophthalmic instruments and appliances, optical, n.e.s. 01/01/1988 31/12/2500 -901890 01/01/1988 31/12/2500 LIBEN Instruments and appliances used in medical, surgical or veterinary sciences, n.e.s. 01/01/1988 31/12/2500 -90189010 01/01/1988 31/12/2500 LIBEN Instruments and apparatus for measuring blood-pressure 01/01/1988 31/12/2500 -90189020 01/01/1988 31/12/2500 LIBEN Endoscopes used in medical, surgical or veterinary sciences 01/01/1988 31/12/2500 -90189030 01/01/1988 31/12/2500 LIBEN Renal dialysis equipment "artificial kidneys, kidney machines and dialysers" 01/01/1988 31/12/2500 -90189040 01/01/2011 31/12/2500 LIBEN Diathermic apparatus (excl. ultraviolet or infra-red apparatus) 01/01/2011 31/12/2500 -90189041 01/01/1988 31/12/2010 LIBEN Ultrasonic diathermic apparatus 01/01/1988 31/12/2010 -90189049 01/01/1988 31/12/2010 LIBEN Diathermic apparatus (excl. ultrasonic and ultraviolet or infra-red apparatus) 01/01/1988 31/12/2010 -90189050 01/01/1988 31/12/2500 LIBEN Transfusion and infusion apparatus used in medical sciences 01/01/1988 31/12/2500 -90189060 01/01/1988 31/12/2500 LIBEN Anaesthetic apparatus and instruments 01/01/1988 31/12/2500 -90189070 01/01/1994 31/12/2010 LIBEN Ultrasonic lithotripsy instruments 01/01/1994 31/12/2010 -90189075 01/01/1995 31/12/2500 LIBEN Apparatus for nerve stimulation 01/01/1995 31/12/2500 -90189080 01/01/1994 31/12/1994 LIBEN Instruments and appliances used in medical, surgical or veterinary sciences, n.e.s. 01/01/1994 31/12/1994 -90189084 01/01/2011 31/12/2500 LIBEN Instruments and appliances used in medical, surgical or veterinary sciences, n.e.s. 01/01/2011 31/12/2500 -90189085 01/01/1995 31/12/2010 LIBEN Instruments and appliances used in medical, surgical or veterinary sciences, n.e.s. 01/01/1995 31/12/2010 -90189090 01/01/1988 31/12/1993 LIBEN Instruments and apparatus used in medical, surgical, dental or veterinary sciences n.e.s. 01/01/1988 31/12/1993 -9019 01/01/1988 31/12/2500 LIBEN Mechano-therapy appliances; massage apparatus; psychological aptitude-testing apparatus; ozone therapy, oxygen therapy, aerosol therapy, artificial respiration or other therapeutic respiration apparatus 01/01/1988 31/12/2500 -901910 01/01/1988 31/12/2500 LIBEN Mechano-therapy appliances; massage apparatus; psychological aptitude-testing apparatus 01/01/1988 31/12/2500 -90191010 01/01/1988 31/12/2500 LIBEN Electrical vibratory-massage apparatus 01/01/1988 31/12/2500 -90191090 01/01/1988 31/12/2500 LIBEN Mechano-therapy appliances; massage apparatus; psychological aptitude-testing apparatus (excl. electrical vibratory-massage apparatus) 01/01/1988 31/12/2500 -901920 01/01/1988 31/12/2500 LIBEN Ozone therapy, oxygen therapy, aerosol therapy, artificial respiration or other therapeutic respiration apparatus, incl. parts and accessories 01/01/1988 31/12/2500 -90192000 01/01/1988 31/12/2020 LIBEN Ozone therapy, oxygen therapy, aerosol therapy, artificial respiration or other therapeutic respiration apparatus, incl. parts and accessories 01/01/1988 31/12/2020 -90192010 01/01/2021 31/12/2500 LIBEN Mechanical ventilation apparatus, capable of providing invasive ventilation 01/01/2021 31/12/2500 -90192020 01/01/2021 31/12/2500 LIBEN Mechanical ventilation apparatus, non-invasive 01/01/2021 31/12/2500 -90192090 01/01/2021 31/12/2500 LIBEN Ozone therapy, oxygen therapy, aerosol therapy, artificial respiration or other therapeutic respiration apparatus, incl. parts and accessories (excl. mechanical ventilation apparatus) 01/01/2021 31/12/2500 -9020 01/01/1988 31/12/2500 LIBEN Breathing appliances and gas masks, incl. parts and accessories (excl. protective masks having neither mechanical parts nor replaceable filters, and artificial respiration or other therapeutic respiration apparatus) 01/01/1988 31/12/2500 -902000 01/01/1988 31/12/2500 LIBEN Breathing appliances and gas masks, incl. parts and accessories (excl. protective masks having neither mechanical parts nor replaceable filters, and artificial respiration or other therapeutic respiration apparatus) 01/01/1988 31/12/2500 -90200000 01/01/2006 31/12/2020 LIBEN Breathing appliances and gas masks, incl. parts and accessories (excl. protective masks having neither mechanical parts nor replaceable filters, and artificial respiration or other therapeutic respiration apparatus) 01/01/2006 31/12/2020 -90200010 01/01/1988 31/12/2005 LIBEN Full breathing appliances and gas masks, for civil aircraft (excl. protective masks having neither mechanical parts nor replaceable filters, and artificial respiration or other therapeutic respiration apparatus) 01/01/1988 31/12/2005 -90200010 01/01/2021 31/12/2500 LIBEN Gas masks (excl. protective masks having neither mechanical parts nor replaceable filters) 01/01/2021 31/12/2500 -90200090 01/01/1988 31/12/2005 LIBEN Breathing appliances and gas masks (excl. full breathing appliances and gas masks for civil aircraft of subheading 9020.00.10, protective masks having neither mechanical parts nor replaceable filters, and artificial respiration or other therapeutic respiration apparatus) 01/01/1988 31/12/2005 -90200090 01/01/2021 31/12/2500 LIBEN Breathing appliances, incl. parts and accessories (excl. artificial respiration or other therapeutic respiration apparatus) 01/01/2021 31/12/2500 -9021 01/01/1988 31/12/2500 LIBEN Orthopaedic appliances, incl. crutches, surgical belts and trusses; splints and other fracture appliances; artificial parts of the body; hearing aids and other appliances which are worn or carried, or implanted in the body, to compensate for a defect or disability 01/01/1988 31/12/2500 -902110 01/01/2002 31/12/2500 LIBEN Orthopaedic or fracture appliances 01/01/2002 31/12/2500 -90211010 01/01/2002 31/12/2500 LIBEN Orthopaedic appliances 01/01/2002 31/12/2500 -90211090 01/01/2002 31/12/2500 LIBEN Splints and other fracture appliances 01/01/2002 31/12/2500 -902111 01/01/1988 31/12/2001 LIBEN Artificial joints for orthopaedic purposes 01/01/1988 31/12/2001 -90211100 01/01/1988 31/12/2001 LIBEN Artificial joints for orthopaedic purposes 01/01/1988 31/12/2001 -902119 01/01/1988 31/12/2001 LIBEN Orthopaedic or fracture appliances (excl. artificial joints) 01/01/1988 31/12/2001 -90211910 01/01/1988 31/12/2001 LIBEN Orthopaedic appliances (excl. artificial joints) 01/01/1988 31/12/2001 -90211990 01/01/1988 31/12/2001 LIBEN Splints and other fracture appliances 01/01/1988 31/12/2001 -902121 01/01/1988 31/12/2500 LIBEN Artificial teeth 01/01/1988 31/12/2500 -90212110 01/01/1988 31/12/2500 LIBEN Artificial teeth of plastics 01/01/1988 31/12/2500 -90212190 01/01/1988 31/12/2500 LIBEN Artificial teeth of materials other than plastics 01/01/1988 31/12/2500 -902129 01/01/1988 31/12/2500 LIBEN Dental fittings (excl. artificial teeth) 01/01/1988 31/12/2500 -90212900 01/01/1997 31/12/2500 LIBEN Dental fittings (excl. artificial teeth) 01/01/1997 31/12/2500 -90212910 01/01/1988 31/12/1996 LIBEN Dental fittings, of precious metals or rolled metals (excl. artificial teeth) 01/01/1988 31/12/1996 -90212990 01/01/1988 31/12/1996 LIBEN Dental fittings (excl. of precious metals or rolled metals, and artificial teeth) 01/01/1988 31/12/1996 -902130 01/01/1988 31/12/2001 LIBEN Artificial parts of the body (excl. artificial teeth) 01/01/1988 31/12/2001 -90213010 01/01/1988 31/12/2001 LIBEN Ocular protheses 01/01/1988 31/12/2001 -90213090 01/01/1988 31/12/2001 LIBEN Artificial parts of the body (excl. artificial teeth and ocular protheses) 01/01/1988 31/12/2001 -902131 01/01/2002 31/12/2500 LIBEN Artificial joints for orthopaedic purposes 01/01/2002 31/12/2500 -90213100 01/01/2002 31/12/2500 LIBEN Artificial joints for orthopaedic purposes 01/01/2002 31/12/2500 -902139 01/01/2002 31/12/2500 LIBEN Artificial parts of the body (excl. artificial teeth and dental fittings and artificial joints) 01/01/2002 31/12/2500 -90213910 01/01/2002 31/12/2500 LIBEN Ocular protheses 01/01/2002 31/12/2500 -90213990 01/01/2002 31/12/2500 LIBEN Artificial parts of the body (excl. artificial teeth and dental fittings, artificial joints and ocular protheses) 01/01/2002 31/12/2500 -902140 01/01/1988 31/12/2500 LIBEN Hearing aids (excl. parts and accessories) 01/01/1988 31/12/2500 -90214000 01/01/1988 31/12/2500 LIBEN Hearing aids (excl. parts and accessories) 01/01/1988 31/12/2500 -902150 01/01/1988 31/12/2500 LIBEN Pacemakers for stimulating heart muscles (excl. parts and accessories) 01/01/1988 31/12/2500 -90215000 01/01/1988 31/12/2500 LIBEN Pacemakers for stimulating heart muscles (excl. parts and accessories) 01/01/1988 31/12/2500 -902190 01/01/1988 31/12/2500 LIBEN Articles and appliances, which are worn or carried, or implanted in the body, to compensate for a defect or disability (excl. artificial parts of the body, complete hearing aids and complete pacemakers for stimulating heart muscles) 01/01/1988 31/12/2500 -90219010 01/01/1988 31/12/2500 LIBEN Parts and accessories of hearing aids, n.e.s. 01/01/1988 31/12/2500 -90219090 01/01/1988 31/12/2500 LIBEN Articles and appliances, which are worn or carried, or implanted in the body, to compensate for a defect or disability (excl. artificial parts of the body, hearing aids, incl. parts and accessories, and complete pacemakers for stimulating heart muscles) 01/01/1988 31/12/2500 -9022 01/01/1988 31/12/2500 LIBEN Apparatus based on the use of X-rays or of alpha, beta or gamma radiations, whether or not for medical, surgical, dental or veterinary uses, incl. radiography or radiotherapy apparatus, X-ray tubes and other X-ray generators, high tension generators, control panels and desks, screens, examination or treatment tables, chairs and the like 01/01/1988 31/12/2500 -902211 01/01/1988 31/12/1995 LIBEN Apparatus based on the use of X-rays, for medical, surgical, dental or veterinary uses 01/01/1988 31/12/1995 -90221100 01/01/1988 31/12/1995 LIBEN Apparatus based on the use of X-rays, for medical, surgical, dental or veterinary uses 01/01/1988 31/12/1995 -902212 01/01/1996 31/12/2500 LIBEN Computer tomography apparatus 01/01/1996 31/12/2500 -90221200 01/01/1996 31/12/2500 LIBEN Computer tomography apparatus 01/01/1996 31/12/2500 -902213 01/01/1996 31/12/2500 LIBEN Apparatus based on the use of X-rays for dental uses 01/01/1996 31/12/2500 -90221300 01/01/1996 31/12/2500 LIBEN Apparatus based on the use of X-rays for dental uses 01/01/1996 31/12/2500 -902214 01/01/1996 31/12/2500 LIBEN Apparatus based on the use of X-rays, for medical, surgical or veterinary uses (excl. for dental purposes and computer tomography apparatus) 01/01/1996 31/12/2500 -90221400 01/01/1996 31/12/2500 LIBEN Apparatus based on the use of X-rays, for medical, surgical or veterinary uses (excl. for dental purposes and computer tomography apparatus) 01/01/1996 31/12/2500 -902219 01/01/1988 31/12/2500 LIBEN Apparatus based on the use of X-rays (other than for medical, surgical, dental or veterinary uses) 01/01/1988 31/12/2500 -90221900 01/01/1988 31/12/2500 LIBEN Apparatus based on the use of X-rays (other than for medical, surgical, dental or veterinary uses) 01/01/1988 31/12/2500 -902221 01/01/1988 31/12/2500 LIBEN Apparatus based on the use of alpha, beta or gamma radiations, for medical, surgical, dental or veterinary uses 01/01/1988 31/12/2500 -90222100 01/01/1988 31/12/2500 LIBEN Apparatus based on the use of alpha, beta or gamma radiations, for medical, surgical, dental or veterinary uses 01/01/1988 31/12/2500 -902229 01/01/1988 31/12/2500 LIBEN Apparatus based on the use of alpha, beta or gamma radiations (other than for medical, surgical, dental or veterinary uses) 01/01/1988 31/12/2500 -90222900 01/01/1988 31/12/2500 LIBEN Apparatus based on the use of alpha, beta or gamma radiations (other than for medical, surgical, dental or veterinary uses) 01/01/1988 31/12/2500 -902230 01/01/1988 31/12/2500 LIBEN X-ray tubes 01/01/1988 31/12/2500 -90223000 01/01/1988 31/12/2500 LIBEN X-ray tubes 01/01/1988 31/12/2500 -902290 01/01/1988 31/12/2500 LIBEN X-ray generators other than X-ray tubes, high tension generators, control panels and desks, screens, examination or treatment tables, chairs and the like, and general parts and accessories for apparatus of heading 9022, n.e.s. 01/01/1988 31/12/2500 -90229000 01/01/2011 31/12/2016 LIBEN X-ray generators other than X-ray tubes, high tension generators, control panels and desks, screens, examination or treatment tables, chairs and the like, and general parts and accessories for apparatus of heading 9022, n.e.s. 01/01/2011 31/12/2016 -90229010 01/01/1988 31/12/2010 LIBEN X-ray fluorescent screens and X-ray intensifying screens; anti-scatter shields and grids 01/01/1988 31/12/2010 -90229020 01/01/2017 31/12/2500 LIBEN Parts and accessories of apparatus based on the use of X-rays 01/01/2017 31/12/2500 -90229080 01/01/2017 31/12/2500 LIBEN X-ray generators other than X-ray tubes, high tension generators, control panels and desks, screens, examination or treatment tables, chairs and the like, and general parts and accessories for apparatus of heading 9022, n.e.s. 01/01/2017 31/12/2500 -90229090 01/01/1988 31/12/2010 LIBEN X-ray generators other than X-ray tubes, high tension generators, control panels and desks, examination or treatment tables, chairs and the like, and general parts and accessories for apparatus of heading 9022, n.e.s. 01/01/1988 31/12/2010 -9022S7 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 9022 and SITC section 7 01/01/1997 31/12/2500 -9022S774 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 9022 and SITC group 774 01/01/1997 31/12/2500 -9023 01/01/1988 31/12/2500 LIBEN Instruments, apparatus and models designed for demonstrational purposes, e.g. in education or exhibitions, unsuitable for other uses (excl. ground flying trainers of heading 8805, collectors' pieces of heading 9705 and antiques of an age > 100 years of heading 9706) 01/01/1988 31/12/2500 -902300 01/01/1988 31/12/2500 LIBEN Instruments, apparatus and models designed for demonstrational purposes, e.g. in education or exhibitions, unsuitable for other uses (excl. ground flying trainers of heading 8805, collectors' pieces of heading 9705 and antiques of an age > 100 years of heading 9706) 01/01/1988 31/12/2500 -90230010 01/01/1988 31/12/2500 LIBEN Instruments, apparatus and models for teaching physics, chemistry or technical subjects 01/01/1988 31/12/2500 -90230030 01/01/1988 31/12/1994 LIBEN Models of human or animal anatomies 01/01/1988 31/12/1994 -90230080 01/01/1995 31/12/2500 LIBEN Instruments, apparatus and models designed for demonstrational purposes, e.g. in education or exhibitions, unsuitable for other uses (excl. ground flying trainers of heading 8805, collectors' pieces of heading 9705, antiques of an age > 100 years of heading 9706 and of the type used for teaching physics, chemistry and technical subjects) 01/01/1995 31/12/2500 -90230090 01/01/1988 31/12/1994 LIBEN Instruments, apparatus and models designed for demonstrational purposes, e.g. in education or exhibitions, unsuitable for other uses (excl. ground flying trainers of heading 8805, collectors' pieces of heading 9705, antiques of an age exceeding 100 years under heading 9706, models of human or animal anatomies, and of a type for teaching physics, chemistry or technical subjects) 01/01/1988 31/12/1994 -9024 01/01/1988 31/12/2500 LIBEN Machines and appliances for testing the hardness, strength, compressibility, elasticity or other mechanical properties of materials, e.g. metals, wood, textiles, paper or plastics 01/01/1988 31/12/2500 -902410 01/01/1988 31/12/2500 LIBEN Machines and appliances for testing metals 01/01/1988 31/12/2500 -90241010 01/01/1988 31/12/2007 LIBEN Electronic machines and appliances for testing the mechanical properties of metals 01/01/1988 31/12/2007 -90241011 01/01/2008 31/12/2016 LIBEN Electronic machines and appliances for universal testing of mechanical properties of metals or for tensile testing of metals 01/01/2008 31/12/2016 -90241013 01/01/2008 31/12/2016 LIBEN Electronic machines and appliances for testing the hardness of metals 01/01/2008 31/12/2016 -90241019 01/01/2008 31/12/2016 LIBEN Electronic machines and appliances for testing the mechanical properties of metals (excl. for universal, tensile or hardness testing) 01/01/2008 31/12/2016 -90241020 01/01/2017 31/12/2500 LIBEN Machines and appliances for universal testing of mechanical properties of metals or for tensile testing of metals 01/01/2017 31/12/2500 -90241040 01/01/2017 31/12/2500 LIBEN Machines and appliances for testing the hardness of metals 01/01/2017 31/12/2500 -90241080 01/01/2017 31/12/2500 LIBEN Machines and appliances for testing the mechanical properties of metals (excl. for universal, tensile or hardness testing) 01/01/2017 31/12/2500 -90241090 01/01/2008 31/12/2016 LIBEN Machines and appliances for testing the mechanical properties of metals, non-electronic 01/01/2008 31/12/2016 -90241091 01/01/1988 31/12/2007 LIBEN Machines and appliances for testing the mechanical properties of metals, universal or for tensile tests, non-electronic 01/01/1988 31/12/2007 -90241093 01/01/1988 31/12/2007 LIBEN Machines and appliances, for hardness tests on metals, non-electronic 01/01/1988 31/12/2007 -90241099 01/01/1988 31/12/2007 LIBEN Machines and appliances for testing the mechanical properties of metals, non-electronic (excl. universal or for tensile tests, and for hardness tests) 01/01/1988 31/12/2007 -902480 01/01/1988 31/12/2500 LIBEN Machines and appliances for testing the mechanical properties of materials (excl. metals) 01/01/1988 31/12/2500 -90248000 01/01/2020 31/12/2500 LIBEN Machines and appliances for testing the mechanical properties of materials (excl. metals) 01/01/2020 31/12/2500 -90248010 01/01/1988 31/12/2007 LIBEN Electronic machines and appliances for testing the mechanical properties of materials (excl. metals) 01/01/1988 31/12/2007 -90248011 01/01/2008 31/12/2019 LIBEN Electronic machines and appliances for testing the mechanical properties of textiles, paper or paperboard 01/01/2008 31/12/2019 -90248019 01/01/2008 31/12/2019 LIBEN Electronic machines and appliances for testing the mechanical properties of materials (excl. metals, textiles, paper or paperboard) 01/01/2008 31/12/2019 -90248090 01/01/2008 31/12/2019 LIBEN Machines and appliances for testing the mechanical properties of materials, non-electronic (excl. metals) 01/01/2008 31/12/2019 -90248091 01/01/1988 31/12/2007 LIBEN Machines and appliances for testing the mechanical properties of textiles, paper and paperboard, non-electronic 01/01/1988 31/12/2007 -90248099 01/01/1988 31/12/2007 LIBEN Machines and appliances for testing the mechanical properties of materials, non-electronic (excl. metals, textiles, paper or paperboard) 01/01/1988 31/12/2007 -902490 01/01/1988 31/12/2500 LIBEN Parts and accessories for machines and appliances for testing the mechanical properties of materials, n.e.s. 01/01/1988 31/12/2500 -90249000 01/01/1988 31/12/2500 LIBEN Parts and accessories for machines and appliances for testing the mechanical properties of materials, n.e.s. 01/01/1988 31/12/2500 -9025 01/01/1988 31/12/2500 LIBEN Hydrometers, areometers and similar floating instruments, thermometers, pyrometers, barometers, hygrometers and psychrometers, recording or not, and any combination of these instruments 01/01/1988 31/12/2500 -902511 01/01/1988 31/12/2500 LIBEN Thermometers, liquid-filled, for direct reading, not combined with other instruments 01/01/1988 31/12/2500 -90251110 01/01/1988 31/12/2005 LIBEN Thermometers, liquid-filled, for direct reading, not combined with other instruments, for civil aircraft 01/01/1988 31/12/2005 -90251120 01/01/2006 31/12/2500 LIBEN Clinical or veterinary thermometers, liquid-filled, for direct reading 01/01/2006 31/12/2500 -90251180 01/01/2006 31/12/2500 LIBEN Thermometers, liquid-filled, for direct reading, not combined with other instruments (excl. clinical or veterinary thermometers) 01/01/2006 31/12/2500 -90251191 01/01/1988 31/12/2005 LIBEN Clinical or veterinary thermometers, liquid-filled, for direct reading 01/01/1988 31/12/2005 -90251199 01/01/1988 31/12/2005 LIBEN Thermometers, liquid-filled, for direct reading, not combined with other instruments (excl. for civil aircraft and clinical or veterinary thermometers) 01/01/1988 31/12/2005 -902519 01/01/1988 31/12/2500 LIBEN Thermometers and pyrometers, not combined with other instruments (excl. liquid-filled thermometers for direct reading) 01/01/1988 31/12/2500 -90251900 01/01/2020 31/12/2500 LIBEN Thermometers and pyrometers, not combined with other instruments (excl. liquid-filled thermometers for direct reading) 01/01/2020 31/12/2500 -90251910 01/01/1988 31/12/1991 LIBEN Thermometers, not combined with other instruments, for civil aircraft (excl. liquid-filled and for direct reading) 01/01/1988 31/12/1991 -90251910 01/01/1992 31/12/2005 LIBEN Thermometers and pyrometers, not combined with other instruments, for use in civil aircraft (excl. liquid-filled thermometers for direct reading) 01/01/1992 31/12/2005 -90251920 01/01/2006 31/12/2019 LIBEN Thermometers and pyrometers, not combined with other instruments, electronic 01/01/2006 31/12/2019 -90251980 01/01/2006 31/12/2019 LIBEN Thermometers and pyrometers, not combined with other instruments, non-electronic (excl. liquid-filled thermometers for direct reading) 01/01/2006 31/12/2019 -90251991 01/01/1988 31/12/1991 LIBEN Electronic thermometers, not combined with other instruments (excl. for civil aircraft) 01/01/1988 31/12/1991 -90251991 01/01/1992 31/12/2005 LIBEN Thermometers and pyrometers, not combined with other instruments, electronic (excl. those of subheading 9025.19.10 for use in civil aircraft) 01/01/1992 31/12/2005 -90251999 01/01/1988 31/12/1991 LIBEN Thermometers, not combined with other instruments (excl. electronic, for civil aircraft, liquid-filled and for direct reading) 01/01/1988 31/12/1991 -90251999 01/01/1992 31/12/2005 LIBEN Thermometers and pyrometers, not combined with other instruments, non-electronic (excl. those of subheading 9025.19.10 for use in civil aircraft and liquid-filled thermometers for direct reading) 01/01/1992 31/12/2005 -902520 01/01/1988 31/12/1995 LIBEN Barometers, not combined with other instruments 01/01/1988 31/12/1995 -90252010 01/01/1988 31/12/1995 LIBEN Barometers, not combined with other instruments, for civil aircraft 01/01/1988 31/12/1995 -90252090 01/01/1988 31/12/1995 LIBEN Barometers, not combined with other instruments (excl. for civil aircraft) 01/01/1988 31/12/1995 -902580 01/01/1988 31/12/2500 LIBEN Hydrometers, areometers and similar floating instruments, barometers, hygrometers and psychrometers, whether or not combined with each other or with thermometers 01/01/1988 31/12/2500 -90258010 01/01/1988 31/12/1991 LIBEN Hydrometers, areometers and similar floating instruments, pyrometers, hygrometers and psychrometers, any combination of these instruments, or combined with thermometers or barometers, for civil aircraft 01/01/1988 31/12/1991 -90258010 01/01/1992 31/12/1995 LIBEN Hydrometers and similar floating instruments, hygrometers and psychrometers, whether or not combined with each other or with thermometers or barometers, for use in civil aircraft 01/01/1992 31/12/1995 -90258015 01/01/1996 31/12/2005 LIBEN Hydrometers, areometers and similar floating instruments, barometers, hygrometers and psychrometers, whether or not combined with each other or with thermometers, for use in civil aircraft 01/01/1996 31/12/2005 -90258020 01/01/1996 31/12/2500 LIBEN Barometers, not combined with other instruments 01/01/1996 31/12/2500 -90258040 01/01/2006 31/12/2500 LIBEN Hydrometers, areometers and similar floating instruments, hygrometers and psychrometers, whether or not combined with each other or with thermometers or barometers, electronic 01/01/2006 31/12/2500 -90258080 01/01/2006 31/12/2500 LIBEN Hydrometers, areometers and similar floating instruments, hygrometers and psychrometers, whether or not combined with each other or with thermometers or barometers, non-electronic 01/01/2006 31/12/2500 -90258091 01/01/1988 31/12/1991 LIBEN Electronic hydrometers, areometers and similar floating instruments, pyrometers, hygrometers and psychrometers, any combination of these instruments, or combined with thermometers or barometers (excl. for civil aircraft) 01/01/1988 31/12/1991 -90258091 01/01/1992 31/12/2005 LIBEN Hydrometers, areometers and similar floating instruments, hygrometers and psychrometers, whether or not combined with each other or with thermometers or barometers, electronic (excl. those of subheading 9025.80.15 for use in civil aircraft) 01/01/1992 31/12/2005 -90258099 01/01/1988 31/12/1991 LIBEN Hydrometers, areometers and similar floating instruments, pyrometers, hygrometers and psychrometers, any combination of these instruments, or combined with thermometers or barometers (excl. electronic and for civil aircraft) 01/01/1988 31/12/1991 -90258099 01/01/1992 31/12/2005 LIBEN Hydrometers, areometers and similar floating instruments, hygrometers and psychrometers, whether or not combined with each other or with thermometers or barometers, non-electronic (excl. those of subheading 9025.80.15 for use in civil aircraft) 01/01/1992 31/12/2005 -902590 01/01/1988 31/12/2500 LIBEN Parts and accessories for hydrometers, areometers and similar floating instruments, thermometers, pyrometers, barometers, hygrometers and psychrometers, n.e.s. 01/01/1988 31/12/2500 -90259000 01/01/2006 31/12/2016 LIBEN Parts and accessories for hydrometers, areometers and similar floating instruments, thermometers, pyrometers, barometers, hygrometers and psychrometers, n.e.s. 01/01/2006 31/12/2016 -90259000 01/01/2017 31/12/2500 LIBEN Parts and accessories for hydrometers, areometers and similar floating instruments, thermometers, pyrometers, barometers, hygrometers and psychrometers, n.e.s. 01/01/2017 31/12/2500 -90259010 01/01/1988 31/12/2005 LIBEN Parts and accessories for hydrometers, areometers and similar floating instruments, thermometers, pyrometers, barometers, hygrometers and psychrometers, for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -90259090 01/01/1988 31/12/2005 LIBEN Parts and accessories for hydrometers, areometers and similar floating instruments, thermometers, pyrometers, barometers, hygrometers and psychrometers, n.e.s. (excl. for civil aircraft) 01/01/1988 31/12/2005 -9026 01/01/1988 31/12/2500 LIBEN Instruments and apparatus for measuring or checking the flow, level, pressure or other variables of liquids or gases, e.g. flow meters, level gauges, manometers, heat meters (excl. instruments and apparatus of heading 9014, 9015, 9028 or 9032) 01/01/1988 31/12/2500 -902610 01/01/1988 31/12/2500 LIBEN Instruments and apparatus for measuring or checking the flow or level of liquids (excl. meters and regulators) 01/01/1988 31/12/2500 -90261010 01/01/1988 31/12/2005 LIBEN Instruments and apparatus for measuring or checking the flow or level of liquids, for civil aircraft (excl. meters and regulators) 01/01/1988 31/12/2005 -90261021 01/01/2006 31/12/2500 LIBEN Electronic flow meters for measuring or checking the flow or level of liquids (excl. meters and regulators) 01/01/2006 31/12/2500 -90261029 01/01/2006 31/12/2500 LIBEN Electronic instruments and apparatus for measuring or checking the flow or level of liquids (excl. flow meters, meters and regulators) 01/01/2006 31/12/2500 -90261051 01/01/1988 31/12/2005 LIBEN Electronic flow meters for measuring or checking the flow or level of liquids (excl. for civil aircraft, meters and regulators) 01/01/1988 31/12/2005 -90261059 01/01/1988 31/12/2005 LIBEN Electronic instruments and apparatus for measuring or checking the flow or level of liquids (excl. for civil aircraft, flow meters, meters and regulators) 01/01/1988 31/12/2005 -90261081 01/01/2006 31/12/2500 LIBEN Flow meters for measuring or checking the flow or level of liquids, non-electronic (excl. meters and regulators) 01/01/2006 31/12/2500 -90261089 01/01/2006 31/12/2500 LIBEN Instruments and apparatus for measuring or checking the flow or level of liquids, non-electronic (excl. flow meters, meters and regulators) 01/01/2006 31/12/2500 -90261091 01/01/1988 31/12/2005 LIBEN Flow meters for measuring or checking the flow or level of liquids, non-electronic (excl. for civil aircraft, meters and regulators) 01/01/1988 31/12/2005 -90261099 01/01/1988 31/12/2005 LIBEN Instruments and apparatus for measuring or checking the flow or level of liquids, non-electronic (excl. for civil aircraft, flow meters, meters and regulators) 01/01/1988 31/12/2005 -902620 01/01/1988 31/12/2500 LIBEN Instruments and apparatus for measuring or checking pressure of liquids or gases (excl. regulators) 01/01/1988 31/12/2500 -90262010 01/01/1988 31/12/2005 LIBEN Instruments and apparatus for measuring or checking pressure of liquids or gases, for civil aircraft (excl. regulators) 01/01/1988 31/12/2005 -90262020 01/01/2006 31/12/2500 LIBEN Electronic instruments and apparatus for measuring or checking pressure of liquids or gases (excl. regulators) 01/01/2006 31/12/2500 -90262030 01/01/1988 31/12/2005 LIBEN Electronic instruments and apparatus for measuring or checking pressure of liquids or gases (excl. for civil aircraft and regulators) 01/01/1988 31/12/2005 -90262040 01/01/2006 31/12/2500 LIBEN Spiral or metal diaphragm type pressure gauges 01/01/2006 31/12/2500 -90262050 01/01/2001 31/12/2005 LIBEN Spiral or metal diaphragm type pressure gauges (excl. for civil aircraft) 01/01/2001 31/12/2005 -90262051 01/01/1988 31/12/2000 LIBEN Spiral or metal diaphragm tyre pressure gauges, for measuring and non-automatically regulating tyre pressure (excl. for civil aircraft) 01/01/1988 31/12/2000 -90262059 01/01/1988 31/12/2000 LIBEN Spiral or metal diaphragm tyre pressure gauges (excl. for civil aircraft and for measuring and non-automatically regulating tyre pressure) 01/01/1988 31/12/2000 -90262080 01/01/2006 31/12/2500 LIBEN Instruments and apparatus for measuring or checking pressure of liquids or gases, non-electronic (excl. spiral or metal diaphragm type pressure gauges, and regulators) 01/01/2006 31/12/2500 -90262090 01/01/1988 31/12/2005 LIBEN Instruments and apparatus for measuring or checking pressure of liquids or gases, non-electronic (excl. for civil aircraft, spiral or metal diaphragm type pressure gauges, and regulators) 01/01/1988 31/12/2005 -902680 01/01/1988 31/12/2500 LIBEN Instruments or apparatus for measuring or checking variables of liquids or gases, n.e.s. 01/01/1988 31/12/2500 -90268010 01/01/1988 31/12/2005 LIBEN Instruments or apparatus for measuring or checking variables of liquids or gases, for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -90268020 01/01/2006 31/12/2500 LIBEN Electronic instruments or apparatus for measuring or checking variables of liquids or gases, n.e.s. 01/01/2006 31/12/2500 -90268080 01/01/2006 31/12/2500 LIBEN Non-electronic instruments or apparatus for measuring or checking variables of liquids or gases, n.e.s. 01/01/2006 31/12/2500 -90268091 01/01/1988 31/12/2005 LIBEN Electronic instruments or apparatus for measuring or checking variables of liquids or gases, n.e.s. 01/01/1988 31/12/2005 -90268099 01/01/1988 31/12/2005 LIBEN Non-electronic instruments or apparatus for measuring or checking variables of liquids or gases, n.e.s. 01/01/1988 31/12/2005 -902690 01/01/1988 31/12/2500 LIBEN Parts and accessories for instruments and apparatus for measuring or checking the flow, level, pressure or other variables of liquids or gases, n.e.s. 01/01/1988 31/12/2500 -90269000 01/01/2006 31/12/2006 LIBEN Parts and accessories for instruments and apparatus for measuring or checking the flow, level, pressure or other variables of liquids or gases, n.e.s. 01/01/2006 31/12/2006 -90269000 01/01/2007 31/12/2500 LIBEN Parts and accessories for instruments and apparatus for measuring or checking the flow, level, pressure or other variables of liquids or gases, n.e.s. 01/01/2007 31/12/2500 -90269010 01/01/1988 31/12/2005 LIBEN Parts and accessories for instruments and apparatus for measuring or checking the flow, level, pressure or other variables of liquids or gases, for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -90269090 01/01/1988 31/12/2005 LIBEN Parts and accessories for instruments and apparatus for measuring or checking the flow, level, pressure or other variables of liquids or gases, n.e.s. (excl. for civil aircraft) 01/01/1988 31/12/2005 -9027 01/01/1988 31/12/2500 LIBEN Instruments and apparatus for physical or chemical analysis, e.g. polarimeters, refractometers, spectrometers, gas or smoke analysis apparatus; instruments and apparatus for measuring or checking viscosity, porosity, expansion, surface tension or the like; instruments and apparatus for measuring or checking quantities of heat, sound or light, incl. exposure meters; microtomes 01/01/1988 31/12/2500 -902710 01/01/1988 31/12/2500 LIBEN Gas or smoke analysis apparatus 01/01/1988 31/12/2500 -90271010 01/01/1988 31/12/2500 LIBEN Electronic gas or smoke analysis apparatus 01/01/1988 31/12/2500 -90271090 01/01/1988 31/12/2500 LIBEN Non-electronic gas or smoke analysis apparatus 01/01/1988 31/12/2500 -902720 01/01/1988 31/12/2500 LIBEN Chromatographs and electrophoresis instruments 01/01/1988 31/12/2500 -90272000 01/01/2000 31/12/2500 LIBEN Chromatographs and electrophoresis instruments 01/01/2000 31/12/2500 -90272010 01/01/1988 31/12/1999 LIBEN Chromatographs 01/01/1988 31/12/1999 -90272090 01/01/1988 31/12/1999 LIBEN Electrophoresis instruments 01/01/1988 31/12/1999 -902730 01/01/1988 31/12/2500 LIBEN Spectrometers, spectrophotometers and spectrographs using optical radiations, such as UV, visible, IR 01/01/1988 31/12/2500 -90273000 01/01/1988 31/12/2500 LIBEN Spectrometers, spectrophotometers and spectrographs using optical radiations, such as UV, visible, IR 01/01/1988 31/12/2500 -902740 01/01/1988 31/12/2006 LIBEN Exposure meters 01/01/1988 31/12/2006 -90274000 01/01/1988 31/12/2006 LIBEN Exposure meters 01/01/1988 31/12/2006 -902750 01/01/1988 31/12/2500 LIBEN Instruments and apparatus for physical or chemical analysis, using UV, visible or IR optical radiations (excl. spectrometers, spectrophotometers, spectrographs, and gas or smoke analysis apparatus) 01/01/1988 31/12/2500 -90275000 01/01/1988 31/12/2500 LIBEN Instruments and apparatus for physical or chemical analysis, using UV, visible or IR optical radiations (excl. spectrometers, spectrophotometers, spectrographs, and gas or smoke analysis apparatus) 01/01/1988 31/12/2500 -902780 01/01/1988 31/12/2500 LIBEN Instruments and apparatus for physical or chemical analysis, or for measuring or checking viscosity, porosity, expansion, surface tension or the like, or for measuring or checking quantities of heat, sound or light, n.e.s. 01/01/1988 31/12/2500 -90278005 01/01/2007 31/12/2500 LIBEN Exposure meters 01/01/2007 31/12/2500 -90278011 01/01/1988 31/12/2019 LIBEN Electronic pH meters, rH meters and other apparatus for measuring conductivity 01/01/1988 31/12/2019 -90278013 01/01/2000 31/12/2019 LIBEN Electronic apparatus and equipment for performing measurements of the physical properties of semiconductor materials or of LCD substrates or associated insulating or conductive layers during the semiconductor wafer production process or the LCD production process 01/01/2000 31/12/2019 -90278015 01/01/1995 31/12/1999 LIBEN Electronic apparatus and equipment for performing measurements of the physical properties of semiconductor materials or associated insulating or conductive layers during the semiconductor wafer production process 01/01/1995 31/12/1999 -90278016 01/01/1998 31/12/1999 LIBEN Electronic apparatus for performing measurements of the physical properties of LCD substrates or associated insulating or conducting layers during the LCD production process 01/01/1998 31/12/1999 -90278017 01/01/1998 31/12/2019 LIBEN Electronic instruments and apparatus for physical or chemical analysis or for measuring viscosity, porosity, expansion, surface tension or the like, or for measuring heat, sound or light, n.e.s. 01/01/1998 31/12/2019 -90278018 01/01/1995 31/12/1997 LIBEN Electronic instruments and apparatus for physical or chemical analysis or for measuring viscosity, porosity, expansion, surface tension or the like, or for measuring heat, sound or light, n.e.s. 01/01/1995 31/12/1997 -90278019 01/01/1988 31/12/1994 LIBEN Electronic instruments and apparatus for physical or chemical analysis, or for measuring or checking viscosity, porosity, expansion, surface tension or the like, or for measuring or checking quantities of heat, sound or light, n.e.s. 01/01/1988 31/12/1994 -90278020 01/01/2020 31/12/2500 LIBEN pH meters, rH meters and other apparatus for measuring conductivity 01/01/2020 31/12/2500 -90278080 01/01/2020 31/12/2500 LIBEN Instruments and apparatus for physical or chemical analysis or for determining surface tension or the like, or for measuring heat or sound, n.e.s. 01/01/2020 31/12/2500 -90278091 01/01/1988 31/12/2019 LIBEN Non-electronic viscometers, porosimeters and expansion meters 01/01/1988 31/12/2019 -90278093 01/01/2000 31/12/2010 LIBEN Apparatus and equipment for performing measurements of the physical properties of semiconductor materials or of LCD substrates or associated insulating or conductive layers during the semiconductor wafer production process or the LCD production process, non-electronic 01/01/2000 31/12/2010 -90278095 01/01/1995 31/12/1999 LIBEN Non-electronic apparatus and equipment for performing measurements of the physical properties of semiconductor materials or associated insulating or conductive layers during the semiconductor wafer production process 01/01/1995 31/12/1999 -90278096 01/01/1998 31/12/1999 LIBEN Apparatus for performing measurements of the physical properties of LCD substrates or associated insulating or conducting layers during the LCD production process, non-electronic 01/01/1998 31/12/1999 -90278097 01/01/1998 31/12/2010 LIBEN Non-electronic instruments and apparatus for physical or chemical analysis or for determining surface tension or the like, or for measuring heat or sound, n.e.s. 01/01/1998 31/12/2010 -90278098 01/01/1995 31/12/1997 LIBEN Instruments and apparatus, other than electronic, for physical or chemical analysis or for determining surface tension or the like, or for measuring heat or sound, n.e.s. 01/01/1995 31/12/1997 -90278099 01/01/1988 31/12/1994 LIBEN Instruments and apparatus for physical or chemical analysis, or for measuring or checking surface tension or the like, or for measuring or checking quantities of heat or sound, n.e.s. (excl. electronic) 01/01/1988 31/12/1994 -90278099 01/01/2011 31/12/2019 LIBEN Non-electronic instruments and apparatus for physical or chemical analysis or for determining surface tension or the like, or for measuring heat or sound, n.e.s. 01/01/2011 31/12/2019 -902790 01/01/1988 31/12/2500 LIBEN Microtomes; parts and accessories of instruments and apparatus for physical or chemical analysis, instruments and apparatus for measuring or checking viscosity, porosity, expansion, surface tension or the like, instruments and apparatus for measuring or checking quantities of heat, sound or light, and of microtomes, n.e.s. 01/01/1988 31/12/2500 -90279000 01/01/2020 31/12/2500 LIBEN Microtomes; parts and accessories of instruments and apparatus for physical or chemical analysis, instruments and apparatus for measuring or checking viscosity, porosity, expansion, surface tension or the like, instruments and apparatus for measuring or checking quantities of heat, sound or light, and of microtomes, n.e.s. 01/01/2020 31/12/2500 -90279010 01/01/1988 31/12/2016 LIBEN Microtomes 01/01/1988 31/12/2016 -90279010 01/01/2017 31/12/2019 LIBEN Microtomes 01/01/2017 31/12/2019 -90279050 01/01/1998 31/12/2019 LIBEN Parts and accessories of instruments and apparatus for physical or chemical analysis, e.g. polarimeters, refractometers, spectrometers, of instruments and apparatus for measuring or checking viscosity, porosity, expansion, surface tension or the like and of instruments and apparatus for measuring or checking quantities of heat, sound or light, incl. exposure meters, n.e.s. (excl. of gas or smoke analysis apparatus) 01/01/1998 31/12/2019 -90279080 01/01/1998 31/12/2016 LIBEN Parts and accessories of microtomes or of gas or smoke analysis apparatus, n.e.s. 01/01/1998 31/12/2016 -90279080 01/01/2017 31/12/2019 LIBEN Parts and accessories of microtomes or of gas or smoke analysis apparatus, n.e.s. 01/01/2017 31/12/2019 -90279090 01/01/1988 31/12/1997 LIBEN Parts and accessories for microtomes, n.e.s. 01/01/1988 31/12/1997 -9027I0 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 9027; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -9027I000 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 9027; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -9028 01/01/1988 31/12/2500 LIBEN Gas, liquid or electricity supply or production meters, incl. calibrating meters therefor 01/01/1988 31/12/2500 -902810 01/01/1988 31/12/2500 LIBEN Gas meters, incl. calibrating meters therefor 01/01/1988 31/12/2500 -90281000 01/01/1988 31/12/2500 LIBEN Gas meters, incl. calibrating meters therefor 01/01/1988 31/12/2500 -902820 01/01/1988 31/12/2500 LIBEN Liquid meters, incl. calibrating meters therefor 01/01/1988 31/12/2500 -90282000 01/01/1988 31/12/2500 LIBEN Liquid meters, incl. calibrating meters therefor 01/01/1988 31/12/2500 -902830 01/01/1988 31/12/2500 LIBEN Electricity supply or production meters, incl. calibrating meters therefor 01/01/1988 31/12/2500 -90283011 01/01/1988 31/12/2500 LIBEN Electricity supply or production meters for alternating current, single-phase, incl. calibrating meters therefor 01/01/1988 31/12/2500 -90283019 01/01/1988 31/12/2500 LIBEN Electricity supply or production meters for alternating current, multi-phase, incl. calibrating meters therefor 01/01/1988 31/12/2500 -90283090 01/01/1988 31/12/2500 LIBEN Electricity supply or production meters for continuous current, incl. calibrating meters therefor 01/01/1988 31/12/2500 -902890 01/01/1988 31/12/2500 LIBEN Parts and accessories for gas, liquid or electricity supply or production meters, n.e.s. 01/01/1988 31/12/2500 -90289010 01/01/1988 31/12/2500 LIBEN Parts and accessories for electricity meters, n.e.s. 01/01/1988 31/12/2500 -90289090 01/01/1988 31/12/2500 LIBEN Parts and accessories for gas or liquid meters, n.e.s. 01/01/1988 31/12/2500 -9029 01/01/1988 31/12/2500 LIBEN Revolution counters, production counters, taximeters, milometers, pedometers and the like (excl. gas, liquid and electricity meters); speed indicators and tachometers (excl. those of heading 9014 and 9015); stroboscopes 01/01/1988 31/12/2500 -902910 01/01/1988 31/12/2500 LIBEN Revolution counters, production counters, taximeters, milometers, pedometers and the like (excl. gas, liquid and electricity meters) 01/01/1988 31/12/2500 -90291000 01/01/2006 31/12/2500 LIBEN Revolution counters, production counters, taximeters, milometers, pedometers and the like (excl. gas, liquid and electricity meters) 01/01/2006 31/12/2500 -90291010 01/01/1988 31/12/2005 LIBEN Revolution counters, electric or electronic, for civil aircraft 01/01/1988 31/12/2005 -90291090 01/01/1988 31/12/2005 LIBEN Revolution counters, production counters, taximeters, milometers, pedometers and the like (excl. electric or electronic revolution counters for civil aircraft of subheading 9029.10.10, and gas, liquid and electricity meters) 01/01/1988 31/12/2005 -902920 01/01/1988 31/12/2500 LIBEN Speed indicators and tachometers, stroboscopes 01/01/1988 31/12/2500 -90292010 01/01/1988 31/12/2005 LIBEN Speed indicators and tachometers, for civil aircraft 01/01/1988 31/12/2005 -90292031 01/01/1988 31/12/2500 LIBEN Speed indicators for land vehicles 01/01/1988 31/12/2500 -90292038 01/01/2006 31/12/2500 LIBEN Speed indicators and tachometers (excl. for land vehicles) 01/01/2006 31/12/2500 -90292039 01/01/1988 31/12/2005 LIBEN Speed indicators and tachometers (excl. for civil aircraft and for land vehicles) 01/01/1988 31/12/2005 -90292090 01/01/1988 31/12/2500 LIBEN Stroboscopes 01/01/1988 31/12/2500 -902990 01/01/1988 31/12/2500 LIBEN Parts and accessories for revolution counters, production counters, taximeters, milometers, pedometers and the like, speed indicators and tachometers, and stroboscopes, n.e.s. 01/01/1988 31/12/2500 -90299000 01/01/2006 31/12/2500 LIBEN Parts and accessories for revolution counters, production counters, taximeters, milometers, pedometers and the like, speed indicators and tachometers, and stroboscopes, n.e.s. 01/01/2006 31/12/2500 -90299010 01/01/1988 31/12/2005 LIBEN Parts and accessories for revolution counters, speed indicators and tachometers, for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -90299090 01/01/1988 31/12/2005 LIBEN Parts and accessories for revolution counters, production counters, taximeters, milometers, pedometers and the like, speed indicators and tachometers, and stroboscopes, n.e.s. (excl. for civil aircraft) 01/01/1988 31/12/2005 -9030 01/01/1988 31/12/2500 LIBEN Oscilloscopes, spectrum analysers and other instruments and apparatus for measuring or checking electrical quantities (excl. meters of heading 9028); instruments and apparatus for measuring or detecting alpha, beta, gamma, X-ray, cosmic or other ionising radiations 01/01/1988 31/12/2500 -903010 01/01/1988 31/12/2500 LIBEN Instruments and apparatus for measuring or detecting ionising radiations 01/01/1988 31/12/2500 -90301000 01/01/2006 31/12/2500 LIBEN Instruments and apparatus for measuring or detecting ionising radiations 01/01/2006 31/12/2500 -90301010 01/01/1988 31/12/2005 LIBEN Instruments and apparatus for measuring or detecting ionising radiations, for civil aircraft 01/01/1988 31/12/2005 -90301090 01/01/1988 31/12/2005 LIBEN Instruments and apparatus for measuring or detecting ionising radiations (excl. for civil aircraft) 01/01/1988 31/12/2005 -903020 01/01/1988 31/12/2500 LIBEN Oscilloscopes and oscillographs 01/01/1988 31/12/2500 -90302000 01/01/2006 31/12/2006 LIBEN Cathode ray oscilloscopes and cathode ray oscillographs 01/01/2006 31/12/2006 -90302000 01/01/2017 31/12/2500 LIBEN Oscilloscopes and oscillographs 01/01/2017 31/12/2500 -90302010 01/01/1988 31/12/2005 LIBEN Cathode ray oscilloscopes and cathode ray oscillographs, for civil aircraft 01/01/1988 31/12/2005 -90302010 01/01/2007 31/12/2016 LIBEN Cathode ray oscilloscopes and cathode ray oscillographs 01/01/2007 31/12/2016 -90302030 01/01/2007 31/12/2016 LIBEN Oscilloscopes and oscillographs, with recording device (excl. cathode ray oscilloscopes and oscillographs) 01/01/2007 31/12/2016 -90302090 01/01/1988 31/12/2005 LIBEN Cathode ray oscilloscopes and cathode ray oscillographs (excl. for civil aircraft) 01/01/1988 31/12/2005 -90302091 01/01/2007 31/12/2016 LIBEN Electronic oscilloscopes and oscillographs, without recording device (excl. cathode ray oscilloscopes and oscillographs) 01/01/2007 31/12/2016 -90302099 01/01/2007 31/12/2016 LIBEN Oscilloscopes and oscillographs, non-electronic, without recording device (excl. cathode ray oscilloscopes and oscillographs) 01/01/2007 31/12/2016 -903031 01/01/1988 31/12/2500 LIBEN Multimeters for voltage, current, resistance or electrical power, without recording device 01/01/1988 31/12/2500 -90303100 01/01/2006 31/12/2500 LIBEN Multimeters for voltage, current, resistance or electrical power, without recording device 01/01/2006 31/12/2500 -90303110 01/01/1988 31/12/2005 LIBEN Multimeters for voltage, current, resistance or electrical power, for civil aircraft (excl. recording device) 01/01/1988 31/12/2005 -90303190 01/01/1988 31/12/2005 LIBEN Multimeters for voltage, current, resistance or electrical power (excl. recording device and for civil aircraft) 01/01/1988 31/12/2005 -903032 01/01/2007 31/12/2500 LIBEN Multimeters with recording device 01/01/2007 31/12/2500 -90303200 01/01/2007 31/12/2500 LIBEN Multimeters with recording device 01/01/2007 31/12/2500 -903033 01/01/2007 31/12/2500 LIBEN Instruments and apparatus for measuring or checking voltage, current, resistance or electrical power, without recording device (excl. multimeters, and oscilloscopes and oscillographs) 01/01/2007 31/12/2500 -90303310 01/01/2007 31/12/2016 LIBEN Electronic instruments and apparatus for measuring or checking voltage, current, resistance or electrical power, without recording device (excl. multimeters, and oscilloscopes and oscillographs) 01/01/2007 31/12/2016 -90303320 01/01/2017 31/12/2500 LIBEN Resistance measuring instruments without recording device 01/01/2017 31/12/2500 -90303330 01/01/2017 31/12/2019 LIBEN Electronic instruments and apparatus for measuring or checking voltage, current or electrical power, without recording device (excl. multimeters, oscilloscopes and oscillographs) 01/01/2017 31/12/2019 -90303370 01/01/2020 31/12/2500 LIBEN Instruments and apparatus for measuring or checking voltage, current or electrical power, without recording device (excl. multimeters, oscilloscopes and oscillographs) 01/01/2020 31/12/2500 -90303380 01/01/2017 31/12/2019 LIBEN Non-electronic instruments and apparatus for measuring or checking voltage, current or electrical power, without recording device (excl. multimeters, oscilloscopes and oscillographs) 01/01/2017 31/12/2019 -90303391 01/01/2007 31/12/2016 LIBEN Voltmeters without recording device 01/01/2007 31/12/2016 -90303399 01/01/2007 31/12/2016 LIBEN Instruments and apparatus for measuring or checking voltage, current, resistance or electrical power, non-electronic, without recording device (excl. multimeters, voltmeters and oscilloscopes and oscillographs) 01/01/2007 31/12/2016 -903039 01/01/1988 31/12/2500 LIBEN Instruments and apparatus for measuring or checking voltage, current, resistance or electrical power, with recording device (excl. multimeters, and oscilloscopes and oscillographs) 01/01/1988 31/12/2500 -90303900 01/01/2007 31/12/2500 LIBEN Instruments and apparatus for measuring or checking voltage, current, resistance or electrical power, with recording device (excl. multimeters, and oscilloscopes and oscillographs) 01/01/2007 31/12/2500 -90303910 01/01/1988 31/12/2005 LIBEN Instruments and apparatus for measuring or checking voltage, current, resistance or electrical power, for civil aircraft (excl. recording device, multimeters, and cathode ray oscilloscopes and oscillographs) 01/01/1988 31/12/2005 -90303920 01/01/2006 31/12/2006 LIBEN Electronic instruments and apparatus for measuring or checking voltage, current, resistance or electrical power, without recording device (excl. multimeters, and cathode ray oscilloscopes and oscillographs) 01/01/2006 31/12/2006 -90303930 01/01/1988 31/12/2005 LIBEN Electronic instruments and apparatus for measuring or checking voltage, current, resistance or electrical power (excl. for civil aircraft, recording device, multimeters, and cathode ray oscilloscopes and oscillographs) 01/01/1988 31/12/2005 -90303981 01/01/2006 31/12/2006 LIBEN Voltmeters without recording device 01/01/2006 31/12/2006 -90303989 01/01/2006 31/12/2006 LIBEN Instruments and apparatus for measuring or checking voltage, current, resistance or electrical power, non-electronic, without recording device (excl. multimeters, voltmeters and cathode ray oscilloscopes and oscillographs) 01/01/2006 31/12/2006 -90303991 01/01/1988 31/12/2005 LIBEN Voltmeters (excl. recording device) 01/01/1988 31/12/2005 -90303999 01/01/1988 31/12/2005 LIBEN Instruments and apparatus for measuring or checking voltage, current, resistance or electrical power, non-electronic (excl. for civil aircraft, recording device, multimeters, voltmeters, and cathode ray oscilloscopes and oscillographs) 01/01/1988 31/12/2005 -903040 01/01/1988 31/12/2500 LIBEN Instruments and apparatus for measuring or checking electrical quantities, specifically for telecommunications, e.g. cross-talk meters, gain measuring instruments, distortion factor meters, psophometers 01/01/1988 31/12/2500 -90304000 01/01/2006 31/12/2500 LIBEN Instruments and apparatus for measuring or checking electrical quantities, specifically for telecommunications, e.g. cross-talk meters, gain measuring instruments, distortion factor meters, psophometers 01/01/2006 31/12/2500 -90304010 01/01/1988 31/12/2005 LIBEN Instruments and apparatus for measuring or checking electrical quantities, specifically for telecommunications, e.g. cross-talk meters, gain measuring instruments, distortion factor meters, psophometers, for civil aircraft 01/01/1988 31/12/2005 -90304090 01/01/1988 31/12/2005 LIBEN Instruments and apparatus for measuring or checking electrical quantities, specifically for telecommunications, e.g. cross-talk meters, gain measuring instruments, distortion factor meters, psophometers (excl. for civil aircraft) 01/01/1988 31/12/2005 -903081 01/01/1988 31/12/1995 LIBEN Instruments and apparatus for measuring or checking electrical quantities, with recording device (excl. instruments specifically for telecommunications, and cathode-ray oscillographs) 01/01/1988 31/12/1995 -90308110 01/01/1988 31/12/1995 LIBEN Instruments and apparatus for measuring or checking electrical quantities, with recording device, for civil aircraft (excl. instruments specifically for telecommunications, and cathode-ray oscillographs) 01/01/1988 31/12/1995 -90308120 01/01/1995 31/12/1995 LIBEN Edge-connected semiconductor production test apparatus, capable of testing the embedded functions in integrated circuits, of a type specified in Additional Note 2 to chapter 90, with recording device 01/01/1995 31/12/1995 -90308181 01/01/1995 31/12/1995 LIBEN Semiconductor production test apparatus, capable of testing the embedded functions in digital integrated circuits, of a type specified in Additional Note 3 to chapter 90, with recording device (excl. edge-connected) 01/01/1995 31/12/1995 -90308183 01/01/1995 31/12/1995 LIBEN Semiconductor production test apparatus, capable of testing the embedded functions in analog/digital integrated circuits, of a type specified in Additional Note 4 to chapter 90, with recording device (excl. edge-connected) 01/01/1995 31/12/1995 -90308185 01/01/1995 31/12/1995 LIBEN Semiconductor production test apparatus, capable of testing the embedded functions in analog integrated circuits, of a type specified in Additional Note 5 to chapter 90, with recording device (excl. edge-connected) 01/01/1995 31/12/1995 -90308189 01/01/1995 31/12/1995 LIBEN Instruments and appliances for measuring or checking electrical quantities, with recording device (excl. those used in civil aircraft of subheading 9030.81.10, and appliances specially designed for telecommunications, cathode-ray oscillographs and semiconductor production test apparatus of subheadings 9030.81.20 to 9030.81.85) 01/01/1995 31/12/1995 -90308190 01/01/1988 31/12/1994 LIBEN Instruments and apparatus for measuring or checking electrical quantities, with recording device (excl. for civil aircraft, instruments specifically for telecommunications, and cathode-ray oscillographs) 01/01/1988 31/12/1994 -903082 01/01/1996 31/12/2500 LIBEN Instruments and apparatus for measuring or checking semiconductor wafers or devices 01/01/1996 31/12/2500 -90308200 01/01/1996 31/12/2500 LIBEN Instruments and apparatus for measuring or checking semiconductor wafers or devices 01/01/1996 31/12/2500 -903083 01/01/1996 31/12/2006 LIBEN Instruments and appliances for measuring or checking electrical quantities, with recording device (excl. appliances specially designed for telecommunications, cathode ray oscillographs and apparatus for measuring or checking semiconductor wafers or devices) 01/01/1996 31/12/2006 -90308300 01/01/2006 31/12/2006 LIBEN Instruments and appliances for measuring or checking electrical quantities, with recording device (excl. appliances specially designed for telecommunications, cathode ray oscillographs and apparatus for measuring or checking semiconductor wafers or devices) 01/01/2006 31/12/2006 -90308310 01/01/1996 31/12/2005 LIBEN Instruments and apparatus for measuring or checking electrical quantities, with recording device, for civil aircraft (excl. instruments specifically designed for measuring semiconductor wafers or devices, those specifically designed for telecommunications, and cathode ray oscillographs) 01/01/1996 31/12/2005 -90308390 01/01/1996 31/12/2005 LIBEN Instruments and appliances for measuring or checking electrical quantities, with recording device, n.e.s. (excl. those used in civil aircraft of subheading 9030.83.10, those for measuring semiconductor wafers or devices, appliances specially designed for telecommunications, and cathode ray oscillographs) 01/01/1996 31/12/2005 -903084 01/01/2007 31/12/2500 LIBEN Instruments and apparatus for measuring or checking electrical quantities, with recording device (excl. appliances specially designed for telecommunications, multimeters, oscilloscopes and oscillographs, and apparatus for measuring or checking semiconductor wafers or devices) 01/01/2007 31/12/2500 -90308400 01/01/2007 31/12/2500 LIBEN Instruments and apparatus for measuring or checking electrical quantities, with recording device (excl. appliances specially designed for telecommunications, multimeters, oscilloscopes and oscillographs, and apparatus for measuring or checking semiconductor wafers or devices) 01/01/2007 31/12/2500 -903089 01/01/1988 31/12/2500 LIBEN Instruments and apparatus for measuring or checking electrical quantities, without recording device, n.e.s. 01/01/1988 31/12/2500 -90308900 01/01/2020 31/12/2500 LIBEN Instruments and apparatus for measuring or checking electrical quantities, without recording device, n.e.s. 01/01/2020 31/12/2500 -90308910 01/01/1988 31/12/2005 LIBEN Instruments and apparatus for measuring or checking electrical quantities, for civil aircraft, n.e.s. (excl. recording device) 01/01/1988 31/12/2005 -90308920 01/01/1995 31/12/1995 LIBEN Edge-connected semiconductor production test apparatus, capable of testing the embedded functions in integrated circuits, of a type specified in Additional Note 2 to chapter 90, without recording device 01/01/1995 31/12/1995 -90308920 01/01/2006 31/12/2006 LIBEN Electronic instruments and appliances for measuring or checking electrical quantities, without recording device, n.e.s. 01/01/2006 31/12/2006 -90308930 01/01/2007 31/12/2019 LIBEN Electronic instruments and appliances for measuring or checking electrical quantities, without recording device, n.e.s. 01/01/2007 31/12/2019 -90308980 01/01/2006 31/12/2006 LIBEN Instruments and apparatus for measuring or checking electrical quantities, without recording device, non-electronic, n.e.s. 01/01/2006 31/12/2006 -90308981 01/01/1995 31/12/1995 LIBEN Semiconductor production test apparatus, capable of testing the embedded functions in digital integrated circuits, of a type specified in Additional Note 3 to chapter 90, without recording device (excl. edge-connected) 01/01/1995 31/12/1995 -90308983 01/01/1995 31/12/1995 LIBEN Semiconductor production test apparatus, capable of testing the embedded functions in analog/digital integrated circuits, of a type specified in Additional Note 4 to chapter 90, without recording device (excl. edge-connected) 01/01/1995 31/12/1995 -90308985 01/01/1995 31/12/1995 LIBEN Semiconductor production test apparatus, capable of testing the embedded functions in analog integrated circuits, of a type specified in Additional Note 5 to chapter 90, without recording device (excl. edge-connected) 01/01/1995 31/12/1995 -90308989 01/01/1995 31/12/1995 LIBEN Electronic instruments and appliances for measuring or checking electrical quantities, without recording device, n.e.s. 01/01/1995 31/12/1995 -90308990 01/01/2007 31/12/2019 LIBEN Instruments and apparatus for measuring or checking electrical quantities, without recording device, non-electronic, n.e.s. 01/01/2007 31/12/2019 -90308991 01/01/1988 31/12/1994 LIBEN Electronic instruments and apparatus for measuring or checking electrical quantities n.e.s. (excl. recording device) 01/01/1988 31/12/1994 -90308992 01/01/1996 31/12/2005 LIBEN Electronic instruments and appliances for measuring or checking electrical quantities, without recording device, n.e.s. 01/01/1996 31/12/2005 -90308999 01/01/1988 31/12/2005 LIBEN Instruments and apparatus for measuring or checking electrical quantities, non-electronic, n.e.s. (excl. recording device) 01/01/1988 31/12/2005 -903090 01/01/1988 31/12/2500 LIBEN Parts and accessories for instruments and apparatus for measuring or checking electrical quantities or for detecting ionising radiations, n.e.s. 01/01/1988 31/12/2500 -90309000 01/01/2017 31/12/2500 LIBEN Parts and accessories for instruments and apparatus for measuring or checking electrical quantities or for detecting ionising radiations, n.e.s. 01/01/2017 31/12/2500 -90309010 01/01/1988 31/12/2005 LIBEN Parts and accessories for instruments and apparatus for measuring or checking electrical quantities or for detecting ionising radiations, for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -90309020 01/01/1998 31/12/2016 LIBEN Parts and accessories for instruments and apparatus for measuring or checking semiconductor wafers or devices, n.e.s. 01/01/1998 31/12/2016 -90309080 01/01/1998 31/12/2005 LIBEN Parts and accessories for instruments and apparatus for measuring or checking electrical quantities or for detecting ionising radiations, n.e.s. (excl. for civil aircraft of subheading 9030.90.10 and other than for instruments and apparatus for measuring or checking semiconductor wafers or devices) 01/01/1998 31/12/2005 -90309085 01/01/2006 31/12/2016 LIBEN Parts and accessories for instruments and apparatus for measuring or checking electrical quantities or for detecting ionising radiations, n.e.s. (excl. for instruments and apparatus for measuring or checking semiconductor wafers or devices) 01/01/2006 31/12/2016 -90309090 01/01/1988 31/12/1997 LIBEN Parts and accessories for instruments and apparatus for measuring or checking electrical quantities or for detecting ionizing radiations, n.e.s. (excl. for civil aircraft) 01/01/1988 31/12/1997 -9031 01/01/1988 31/12/2500 LIBEN Measuring or checking instruments, appliances and machines not elsewhere specified in chapter 90; profile projectors 01/01/1988 31/12/2500 -903110 01/01/1988 31/12/2500 LIBEN Machines for balancing mechanical parts 01/01/1988 31/12/2500 -90311000 01/01/1988 31/12/2500 LIBEN Machines for balancing mechanical parts 01/01/1988 31/12/2500 -903120 01/01/1988 31/12/2500 LIBEN Test benches for motors, generators, pumps, etc. 01/01/1988 31/12/2500 -90312000 01/01/1988 31/12/2500 LIBEN Test benches for motors, generators, pumps, etc. 01/01/1988 31/12/2500 -903130 01/01/1988 31/12/2006 LIBEN Profile projectors 01/01/1988 31/12/2006 -90313000 01/01/1988 31/12/2006 LIBEN Profile projectors 01/01/1988 31/12/2006 -903140 01/01/1988 31/12/1995 LIBEN Optical instruments, appliances and machines for measuring or checking, not elsewhere specified in chapter 90 01/01/1988 31/12/1995 -90314000 01/01/1988 31/12/1994 LIBEN Optical instruments, appliances and machines for measuring or checking, not elsewhere specified in chapter 90 01/01/1988 31/12/1994 -90314010 01/01/1995 31/12/1995 LIBEN Optical instruments and appliances for automatically inspecting patterns on masks or reticles for semiconductor devices 01/01/1995 31/12/1995 -90314020 01/01/1995 31/12/1995 LIBEN Optical instruments and appliances for inspecting photomasks for semiconductor devices 01/01/1995 31/12/1995 -90314030 01/01/1995 31/12/1995 LIBEN Optical instruments and appliances for measuring surface particulate contamination on semiconductor wafers 01/01/1995 31/12/1995 -90314090 01/01/1995 31/12/1995 LIBEN Optical instruments and appliances for measuring or checking, not specified or included elsewhere in chapter 90 01/01/1995 31/12/1995 -903141 01/01/1996 31/12/2500 LIBEN Optical instruments and appliances for inspecting semiconductor wafers or devices or for inspecting photomasks or reticles used in manufacturing semiconductor devices 01/01/1996 31/12/2500 -90314100 01/01/1996 31/12/2500 LIBEN Optical instruments and appliances for inspecting semiconductor wafers or devices or for inspecting photomasks or reticles used in manufacturing semiconductor devices 01/01/1996 31/12/2500 -903149 01/01/1996 31/12/2500 LIBEN Optical instruments, appliances and machines for measuring or checking, not elsewhere specified or included in chapter 90 01/01/1996 31/12/2500 -90314900 01/01/1999 31/12/2006 LIBEN Optical instruments, appliances and machines for measuring or checking, not elsewhere specified or included in chapter 90 01/01/1999 31/12/2006 -90314910 01/01/1996 31/12/1998 LIBEN Optical instruments and appliances for measuring surface particulate contamination on semiconductor wafers 01/01/1996 31/12/1998 -90314910 01/01/2007 31/12/2500 LIBEN Profile projectors 01/01/2007 31/12/2500 -90314990 01/01/1996 31/12/1998 LIBEN Optical instruments and appliances for measuring or checking, not specified or included elsewhere in chapter 90 01/01/1996 31/12/1998 -90314990 01/01/2007 31/12/2500 LIBEN Optical instruments, appliances and machines for measuring or checking, not elsewhere specified or included in chapter 90 01/01/2007 31/12/2500 -903180 01/01/1988 31/12/2500 LIBEN Instruments, appliances and machines for measuring or checking, not elsewhere specified in chapter 90 (excl. optical) 01/01/1988 31/12/2500 -90318010 01/01/1988 31/12/2005 LIBEN Instruments, appliances and machines for measuring or checking, not elsewhere specified in chapter 90, for civil aircraft (excl. optical) 01/01/1988 31/12/2005 -90318020 01/01/2017 31/12/2500 LIBEN Instruments, appliances and machines for measuring or checking geometrical quantities, n.e.s. in Ch 90 01/01/2017 31/12/2500 -90318031 01/01/1988 31/12/1997 LIBEN Electronic instruments, apparatus and machines for measuring or checking geometrical quantities 01/01/1988 31/12/1997 -90318032 01/01/1998 31/12/2016 LIBEN Electronic instruments, apparatus and machines for inspecting semiconductor wafers or devices or for inspecting photomasks or reticles used in manufacturing semiconductor devices 01/01/1998 31/12/2016 -90318034 01/01/1998 31/12/2016 LIBEN Electronic instruments, apparatus and machines for measuring or checking geometrical quantities (excl. for inspecting semiconductor wafers or devices or for inspecting photomasks or reticles used in manufacturing semiconductor devices) 01/01/1998 31/12/2016 -90318038 01/01/2006 31/12/2016 LIBEN Electronic instruments, apparatus and machines for measuring or checking, n.e.s. in chapter 90 01/01/2006 31/12/2016 -90318039 01/01/1988 31/12/2005 LIBEN Electronic instruments, apparatus and machines for measuring or checking, not elsewhere specified in chapter 90 01/01/1988 31/12/2005 -90318051 01/01/1991 31/12/1996 LIBEN Non-electronic gauges (excl. for civil aircraft) 01/01/1991 31/12/1996 -90318059 01/01/1991 31/12/1996 LIBEN Instruments, apparatus and machines, for measuring or checking (not specified or included elsewhere in this chapter) non-electronic, for measuring or checking geometrical quantities (excl. for civil aircraft and gauges) 01/01/1991 31/12/1996 -90318080 01/01/2017 31/12/2500 LIBEN Non-optical instruments, appliances and machines for measuring or checking, n.e.s. in Ch 90 01/01/2017 31/12/2500 -90318091 01/01/1988 31/12/1990 LIBEN Non-electronic instruments, apparatus and machines for measuring or checking geometrical quantities (excl. optical and hand-held instruments for measuring length) 01/01/1988 31/12/1990 -90318091 01/01/1997 31/12/2016 LIBEN Instruments, appliances and machines for measuring or checking geometrical quantities, non-optical, non-electronic (excl. hand-held instruments for measuring length) 01/01/1997 31/12/2016 -90318098 01/01/2006 31/12/2016 LIBEN Non-electronic and non-optical instruments, apparatus and machines for measuring or checking, n.e.s. in chapter 90 01/01/2006 31/12/2016 -90318099 01/01/1988 31/12/2005 LIBEN Non-electronic and non-optical instruments, apparatus and machines for measuring or checking, not elsewhere specified in chapter 90 01/01/1988 31/12/2005 -903190 01/01/1988 31/12/2500 LIBEN Parts and accessories for instruments, appliances and machines for measuring and checking, n.e.s. 01/01/1988 31/12/2500 -90319000 01/01/2017 31/12/2500 LIBEN Parts and accessories for instruments, appliances and machines for measuring and checking, n.e.s. 01/01/2017 31/12/2500 -90319010 01/01/1988 31/12/2005 LIBEN Parts and accessories for instruments, appliances and machines of subheading 9031.80, for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -90319020 01/01/1998 31/12/2016 LIBEN Parts and accessories for optical instruments and appliances for inspecting semiconductor wafers or devices or for inspecting photomasks or reticles used in manufacturing semiconductor devices or for measuring surface particulate contamination on semiconductor wafers, n.e.s. 01/01/1998 31/12/2016 -90319030 01/01/1998 31/12/2016 LIBEN Parts and accessories for electronic instruments, apparatus and machines for inspecting semiconductor wafers or devices or for inspecting photomasks or reticles used in manufacturing semiconductor devices, n.e.s. 01/01/1998 31/12/2016 -90319080 01/01/1998 31/12/2005 LIBEN Parts and accessories for instruments, appliances and machines for measuring and checking, n.e.s. 01/01/1998 31/12/2005 -90319085 01/01/2006 31/12/2006 LIBEN Parts and accessories for instruments, appliances and machines for measuring and checking, n.e.s. 01/01/2006 31/12/2006 -90319085 01/01/2007 31/12/2016 LIBEN Parts and accessories for instruments, appliances and machines for measuring and checking, n.e.s. 01/01/2007 31/12/2016 -90319090 01/01/1988 31/12/1997 LIBEN Parts and accessories for instruments, appliances and machines for measuring and checking, n.e.s. (excl. for civil aircraft) 01/01/1988 31/12/1997 -9032 01/01/1988 31/12/2500 LIBEN Regulating or controlling instruments and apparatus (excl. taps, cocks and valves of heading 8481) 01/01/1988 31/12/2500 -903210 01/01/1988 31/12/2500 LIBEN Thermostats 01/01/1988 31/12/2500 -90321010 01/01/1988 31/12/2005 LIBEN Thermostats, for civil aircraft 01/01/1988 31/12/2005 -90321020 01/01/2006 31/12/2016 LIBEN Electronic thermostats 01/01/2006 31/12/2016 -90321020 01/01/2017 31/12/2500 LIBEN Electronic thermostats 01/01/2017 31/12/2500 -90321030 01/01/1988 31/12/2005 LIBEN Electronic thermostats (excl. for civil aircraft) 01/01/1988 31/12/2005 -90321080 01/01/2017 31/12/2500 LIBEN Thermostats (excl. electronic) 01/01/2017 31/12/2500 -90321081 01/01/2006 31/12/2016 LIBEN Non-electronic thermostats, automatic regulating or controlling, with electrical triggering device 01/01/2006 31/12/2016 -90321089 01/01/2006 31/12/2016 LIBEN Non-electronic thermostats, without electrical triggering device 01/01/2006 31/12/2016 -90321091 01/01/1988 31/12/2005 LIBEN Non-electronic thermostats, automatic regulating or controlling, with electrical triggering device (excl. for civil aircraft of subheading 9032.10.10) 01/01/1988 31/12/2005 -90321099 01/01/1988 31/12/2005 LIBEN Non-electronic thermostats, without electrical triggering device (excl. for civil aircraft) 01/01/1988 31/12/2005 -903220 01/01/1988 31/12/2500 LIBEN Manostats (excl. taps, cocks and valves of heading 8481) 01/01/1988 31/12/2500 -90322000 01/01/2006 31/12/2016 LIBEN Manostats (excl. taps, cocks and valves of heading 8481) 01/01/2006 31/12/2016 -90322000 01/01/2017 31/12/2500 LIBEN Manostats (excl. taps, cocks and valves of heading 8481) 01/01/2017 31/12/2500 -90322010 01/01/1988 31/12/2005 LIBEN Manostats, for civil aircraft (excl. taps, cocks and valves of heading 8481) 01/01/1988 31/12/2005 -90322090 01/01/1988 31/12/2005 LIBEN Manostats (excl. for civil aircraft and taps, cocks and valves of heading 8481) 01/01/1988 31/12/2005 -903281 01/01/1988 31/12/2500 LIBEN Hydraulic or pneumatic regulating or controlling instruments and apparatus (excl. manostats and taps, cocks and valves of heading 8481) 01/01/1988 31/12/2500 -90328100 01/01/2006 31/12/2500 LIBEN Hydraulic or pneumatic regulating or controlling instruments and apparatus (excl. manostats and taps, cocks and valves of heading 8481) 01/01/2006 31/12/2500 -90328110 01/01/1988 31/12/2005 LIBEN Hydraulic or pneumatic regulating or controlling instruments and apparatus, for civil aircraft (excl. manostats and taps, cocks and valves of heading 8481) 01/01/1988 31/12/2005 -90328190 01/01/1988 31/12/2005 LIBEN Hydraulic or pneumatic regulating or controlling instruments and apparatus (excl. for civil aircraft, manostats and taps, cocks and valves of heading 8481) 01/01/1988 31/12/2005 -903289 01/01/1988 31/12/2500 LIBEN Regulating or controlling instruments and apparatus (excl. hydraulic or pneumatic, manostats, thermostats, and taps, cocks and valves of heading 8481) 01/01/1988 31/12/2500 -90328900 01/01/2006 31/12/2016 LIBEN Regulating or controlling instruments and apparatus (excl. hydraulic or pneumatic, manostats, thermostats, and taps, cocks and valves of heading 8481) 01/01/2006 31/12/2016 -90328900 01/01/2017 31/12/2500 LIBEN Regulating or controlling instruments and apparatus (excl. hydraulic or pneumatic, manostats, thermostats, and taps, cocks and valves of heading 8481) 01/01/2017 31/12/2500 -90328910 01/01/1988 31/12/2005 LIBEN Regulating or controlling instruments and apparatus for civil aircraft (excl. hydraulic or pneumatic, manostats, thermostats, and taps, cocks and valves of heading 8481) 01/01/1988 31/12/2005 -90328990 01/01/1988 31/12/2005 LIBEN Regulating or controlling instruments and apparatus (excl. for civil aircraft, hydraulic or pneumatic, manostats, thermostats, and taps, cocks and valves of heading 8481) 01/01/1988 31/12/2005 -903290 01/01/1988 31/12/2500 LIBEN Parts and accessories for regulating or controlling instruments and apparatus, n.e.s. 01/01/1988 31/12/2500 -90329000 01/01/2006 31/12/2016 LIBEN Parts and accessories for regulating or controlling instruments and apparatus, n.e.s. 01/01/2006 31/12/2016 -90329000 01/01/2017 31/12/2500 LIBEN Parts and accessories for regulating or controlling instruments and apparatus, n.e.s. 01/01/2017 31/12/2500 -90329010 01/01/1988 31/12/2005 LIBEN Parts and accessories for regulating or controlling instruments and apparatus, for civil aircraft 01/01/1988 31/12/2005 -90329090 01/01/1988 31/12/2005 LIBEN Parts and accessories for regulating or controlling instruments and apparatus, n.e.s. (excl. for civil aircraft) 01/01/1988 31/12/2005 -9032I0 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9032; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -9032I000 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9032; energy (including production and distribution of steam and hot water) 01/01/1993 31/12/2005 -9032I4 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 9032; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1997 31/12/2005 -9032I400 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 9032; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1997 31/12/2005 -9033 01/01/1988 31/12/2500 LIBEN Parts and accessories for machines, appliances, instruments or other apparatus in chapter 90, specified neither in this chapter nor elsewhere 01/01/1988 31/12/2500 -903300 01/01/1988 31/12/2500 LIBEN Parts and accessories for machines, appliances, instruments or other apparatus in chapter 90, specified neither in this chapter nor elsewhere 01/01/1988 31/12/2500 -90330000 01/01/1988 31/12/2016 LIBEN Parts and accessories for machines, appliances, instruments or other apparatus in chapter 90, specified neither in this chapter nor elsewhere 01/01/1988 31/12/2016 -90330010 01/01/2017 31/12/2500 LIBEN Light-emitting diode "LED" backlight modules, which are lighting sources that consist of one or more LEDs, and one or more connectors and are mounted on a printed circuit or other similar substrate, and other passive components, whether or not combined with optical components or protective diodes, and used as backlight illumination for liquid crystal displays "LCDs" of apparatus of Ch 90 01/01/2017 31/12/2500 -90330090 01/01/2017 31/12/2500 LIBEN Parts and accessories for machines, appliances, instruments or other apparatus in Ch 90, n.e.s. 01/01/2017 31/12/2500 -9033I9 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9033; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1993 31/12/2005 -9033I900 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9033; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1993 31/12/2005 -90CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 90 01/01/2002 31/12/2500 -90CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 90 01/01/2002 31/12/2500 -90CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 90 01/01/2002 31/12/2500 -90II 01/01/1988 31/12/2500 LIBEN Components of complete industrial plants of chapter 90 01/01/1988 31/12/2500 -90III0 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 90; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -90III0 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -90III0 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 90 01/01/2006 31/12/2500 -90III000 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 90; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -90III000 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -90III000 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 90 01/01/2006 31/12/2500 -90III1 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 90; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -90III100 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 90; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -90III2 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 90; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -90III2 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/2000 31/12/2005 -90III200 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 90; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -90III200 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/2000 31/12/2005 -90III3 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 90; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -90III3 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; mechanical engineering and construction of means of transport; instrument engineering 01/01/1997 31/12/2005 -90III300 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 90; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -90III300 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; mechanical engineering and construction of means of transport; instrument engineering 01/01/1997 31/12/2005 -90III4 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/2005 -90III400 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/2005 -90III5 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; food, drink and tobacco industry 01/01/1988 31/12/2005 -90III500 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; food, drink and tobacco industry 01/01/1988 31/12/2005 -90III6 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; textile, leather, footwear and clothing industry 01/01/1988 31/12/2005 -90III600 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; textile, leather, footwear and clothing industry 01/01/1988 31/12/2005 -90III7 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 90; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -90III7 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1997 31/12/2005 -90III700 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 90; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -90III700 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1997 31/12/2005 -90III8 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -90III800 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -90III9 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -90III900 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 90; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -90MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -90MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -90MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -90PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 90 carried by post 01/01/1988 31/12/2500 -90PPP1 01/01/1988 31/12/2500 LIBEN Goods of chapter 90 carried by post 01/01/1988 31/12/2500 -90PPP100 01/01/1988 31/12/2500 LIBEN Goods of chapter 90 carried by post 01/01/1988 31/12/2500 -90PPP2 01/01/1988 31/12/2500 LIBEN Goods of chapter 90 carried by post 01/01/1988 31/12/2500 -90PPP200 01/01/1988 31/12/2500 LIBEN Goods of chapter 90 carried by post 01/01/1988 31/12/2500 -90SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 90 01/01/1988 31/12/2500 -90SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 90 and SITC section 0 01/01/1997 31/12/2001 -90SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 90 and SITC group 000 01/01/1997 31/12/2001 -90SSS7 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 90 and SITC section 7 01/01/1997 31/12/2500 -90SSS751 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 90 and SITC group 751 01/01/1997 31/12/2500 -90SSS759 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 90 and SITC group 759 01/01/1997 31/12/2500 -90SSS774 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 90 and SITC group 774 01/01/1997 31/12/2500 -90SSS8 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 90 and SITC section 8 01/01/1990 31/12/2500 -90SSS871 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 90 and SITC group 871 01/01/1990 31/12/2500 -90SSS872 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 90 and SITC group 872 01/01/1997 31/12/2500 -90SSS873 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 90 and SITC group 873 01/01/1997 31/12/2500 -90SSS874 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 90 and SITC group 874 01/01/1992 31/12/2500 -90SSS881 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 90 and SITC group 881 01/01/1997 31/12/2500 -90SSS884 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 90 and SITC group 884 01/01/1997 31/12/2500 -90SSS899 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 90 and SITC group 899 01/01/1997 31/12/2500 -90SSS9 01/01/1988 31/12/1991 LIBEN Confidential trade of chapter 90 and SITC section 9 01/01/1988 31/12/1991 -90SSS9 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 90 and SITC section 9 01/01/1992 31/12/2500 -90SSS999 01/01/1988 31/12/1991 LIBEN Confidential trade of chapter 90 and SITC group 999 01/01/1988 31/12/1991 -90SSS999 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 90 and SITC group 999 01/01/1992 31/12/2500 -90VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 90 for the assembly of motor vehicles 01/01/1988 31/12/2500 -90VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 90 for the assembly of motor vehicles 01/01/1988 31/12/2500 -90VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 90 for the assembly of motor vehicles 01/01/1988 31/12/2500 -91 01/01/1988 31/12/2500 LIBEN CLOCKS AND WATCHES AND PARTS THEREOF 01/01/1988 31/12/2500 -9101 01/01/1988 31/12/2500 LIBEN Wrist-watches, pocket-watches and other watches, incl. stop-watches, with case of precious metal or of metal clad with precious metal (excl. with backs made of steel) 01/01/1988 31/12/2500 -910111 01/01/1988 31/12/2500 LIBEN Wrist-watches of precious metal or of metal clad with precious metal, whether or not incorporating a stop-watch facility, electrically operated, with mechanical display only (excl. with backs made of steel) 01/01/1988 31/12/2500 -91011100 01/01/1988 31/12/1995 LIBEN Wrist-watches of precious metal or of metal clad with precious metal, whether or not incorporating a stop-watch facility, battery or accumulator powered, with mechanical display only (excl. with backs made of steel) 01/01/1988 31/12/1995 -91011100 01/01/1996 31/12/2500 LIBEN Wrist-watches of precious metal or of metal clad with precious metal, whether or not incorporating a stop-watch facility, electrically operated, with mechanical display only (excl. with backs made of steel) 01/01/1996 31/12/2500 -910112 01/01/1988 31/12/2006 LIBEN Wrist-watches of precious metal or of metal clad with precious metal, whether or not incorporating a stop-watch facility, electrically operated, with opto-electronic display only (excl. with backs made of steel) 01/01/1988 31/12/2006 -91011200 01/01/1988 31/12/1995 LIBEN Wrist-watches of precious metal or of metal clad with precious metal, whether or not incorporating a stop-watch facility, battery or accumulator powered, with opto-electronic display only (excl. with backs made of steel) 01/01/1988 31/12/1995 -91011200 01/01/1996 31/12/2006 LIBEN Wrist-watches of precious metal or of metal clad with precious metal, whether or not incorporating a stop-watch facility, electrically operated, with opto-electronic display only (excl. with backs made of steel) 01/01/1996 31/12/2006 -910119 01/01/1988 31/12/2500 LIBEN Wrist-watches of precious metal or of metal clad with precious metal, whether or not incorporating a stop-watch facility, electrically operated, with opto-electronic display and with combined mechanical and opto-electronic display (excl. with backs made of steel) 01/01/1988 31/12/2500 -91011900 01/01/1988 31/12/1995 LIBEN Wrist-watches of precious metal or of metal clad with precious metal, whether or not incorporating a stop-watch facility, battery or accumulator powered, with combined mechanical and opto-electronic display (excl. with backs made of steel) 01/01/1988 31/12/1995 -91011900 01/01/1996 31/12/2006 LIBEN Wrist-watches of precious metal or of metal clad with precious metal, whether or not incorporating a stop-watch facility, electrically operated, with combined mechanical and opto-electronic display (excl. with backs made of steel) 01/01/1996 31/12/2006 -91011900 01/01/2007 31/12/2500 LIBEN Wrist-watches of precious metal or of metal clad with precious metal, whether or not incorporating a stop-watch facility, electrically operated, with opto-electronic display and with combined mechanical and opto-electronic display (excl. with backs made of steel) 01/01/2007 31/12/2500 -910121 01/01/1988 31/12/2500 LIBEN Wrist-watches of precious metal or of metal clad with precious metal, whether or not incorporating a stop-watch facility, with automatic winding (excl. with backs made of steel) 01/01/1988 31/12/2500 -91012100 01/01/1988 31/12/2500 LIBEN Wrist-watches of precious metal or of metal clad with precious metal, whether or not incorporating a stop-watch facility, with automatic winding (excl. with backs made of steel) 01/01/1988 31/12/2500 -910129 01/01/1988 31/12/2500 LIBEN Wrist-watches of precious metal or of metal clad with precious metal, whether or not incorporating a stop-watch facility, with hand winding only (excl. with backs made of steel) 01/01/1988 31/12/2500 -91012900 01/01/1988 31/12/1995 LIBEN Wrist-watches of precious metal or of metal clad with precious metal, whether or not incorporating a stop-watch facility, with hand winding only (excl. with backs made of steel) 01/01/1988 31/12/1995 -91012900 01/01/1996 31/12/2500 LIBEN Wrist-watches of precious metal or of metal clad with precious metal, whether or not incorporating a stop-watch facility, with hand winding only (excl. with backs made of steel) 01/01/1996 31/12/2500 -910191 01/01/1988 31/12/2500 LIBEN Pocket-watches and the like, incl. stop-watches, of precious metal or of metal clad with precious metal, electrically operated (excl. with backs made of steel and wrist-watches) 01/01/1988 31/12/2500 -91019100 01/01/1988 31/12/1995 LIBEN Battery or accumulator powered pocket-watches and the like, incl. stop-watches, of precious metal or of metal clad with precious metal (excl. with backs made of steel and wrist-watches) 01/01/1988 31/12/1995 -91019100 01/01/1996 31/12/2500 LIBEN Pocket-watches and the like, incl. stop-watches, of precious metal or of metal clad with precious metal, electrically operated (excl. with backs made of steel and wrist-watches) 01/01/1996 31/12/2500 -910199 01/01/1988 31/12/2500 LIBEN Pocket-watches and the like, incl. stop-watches, of precious metal or of metal clad with precious metal, with hand or automatic winding (excl. with backs made of steel and wrist-watches) 01/01/1988 31/12/2500 -91019900 01/01/1988 31/12/1995 LIBEN Pocket-watches and the like, incl. stop-watches, of precious metal or of metal clad with precious metal, with hand or automatic winding (excl. with backs made of steel and wrist-watches) 01/01/1988 31/12/1995 -91019900 01/01/1996 31/12/2500 LIBEN Pocket-watches and the like, incl. stop-watches, of precious metal or of metal clad with precious metal, with hand or automatic winding (excl. with backs made of steel and wrist-watches) 01/01/1996 31/12/2500 -9102 01/01/1988 31/12/2500 LIBEN Wrist-watches, pocket-watches and other watches, incl. stop-watches (excl. of precious metal or of metal clad with precious metal) 01/01/1988 31/12/2500 -910211 01/01/1988 31/12/2500 LIBEN Wrist-watches, whether or not incorporating a stop-watch facility, electrically operated, with mechanical display only (excl. of precious metal or of metal clad with precious metal) 01/01/1988 31/12/2500 -91021100 01/01/1988 31/12/1995 LIBEN Wrist-watches, whether or not incorporating a stop-watch facility, battery or accumulator powered, with mechanical display only (excl. of precious metal or of metal clad with precious metal) 01/01/1988 31/12/1995 -91021100 01/01/1996 31/12/2500 LIBEN Wrist-watches, whether or not incorporating a stop-watch facility, electrically operated, with mechanical display only (excl. of precious metal or of metal clad with precious metal) 01/01/1996 31/12/2500 -910212 01/01/1988 31/12/2500 LIBEN Wrist-watches, whether or not incorporating a stop-watch facility, electrically operated, with opto-electronic display only (excl. of precious metal or of metal clad with precious metal) 01/01/1988 31/12/2500 -91021200 01/01/1988 31/12/1995 LIBEN Wrist-watches, whether nor not incorporating a stop-watch facility, battery or accumulator powered, with opto-electronic display only (excl. of precious metal or of metal clad with precious metal) 01/01/1988 31/12/1995 -91021200 01/01/1996 31/12/2500 LIBEN Wrist-watches, whether or not incorporating a stop-watch facility, electrically operated, with opto-electronic display only (excl. of precious metal or of metal clad with precious metal) 01/01/1996 31/12/2500 -910219 01/01/1988 31/12/2500 LIBEN Wrist-watches, whether or not incorporating a stop-watch facility, electrically operated, with combined mechanical and opto-electronic display (excl. of precious metal or of metal clad with precious metal) 01/01/1988 31/12/2500 -91021900 01/01/1988 31/12/1995 LIBEN Wrist-watches, whether or not incorporating a stop-watch facility, battery or accumulator powered, with combined mechanical and opto-electronic display (excl. of precious metal or of metal clad with precious metal) 01/01/1988 31/12/1995 -91021900 01/01/1996 31/12/2500 LIBEN Wrist-watches, whether or not incorporating a stop-watch facility, electrically operated, with combined mechanical and opto-electronic display (excl. of precious metal or of metal clad with precious metal) 01/01/1996 31/12/2500 -910221 01/01/1988 31/12/2500 LIBEN Wrist-watches, whether or not incorporating a stop-watch facility, with automatic winding (excl. of precious metal or of metal clad with precious metal) 01/01/1988 31/12/2500 -91022100 01/01/1988 31/12/2500 LIBEN Wrist-watches, whether or not incorporating a stop-watch facility, with automatic winding (excl. of precious metal or of metal clad with precious metal) 01/01/1988 31/12/2500 -910229 01/01/1988 31/12/2500 LIBEN Wrist-watches, whether or not incorporating a stop-watch facility, with hand winding only (excl. of precious metal or of metal clad with precious metal) 01/01/1988 31/12/2500 -91022900 01/01/1988 31/12/1995 LIBEN Wrist-watches, whether or not incorporating a stop-watch facility, with hand winding only (excl. of precious metal or of metal clad with precious metal) 01/01/1988 31/12/1995 -91022900 01/01/1996 31/12/2500 LIBEN Wrist-watches, whether or not incorporating a stop-watch facility, with hand winding only (excl. of precious metal or of metal clad with precious metal) 01/01/1996 31/12/2500 -910291 01/01/1988 31/12/2500 LIBEN Pocket-watches and the like, incl. stop-watches, electrically operated (excl. of precious metal or of metal clad with precious metal) 01/01/1988 31/12/2500 -91029100 01/01/1988 31/12/1995 LIBEN Battery or accumulator powered pocket-watches and the like, incl. stop-watches (excl. of precious metal or of metal clad with precious metal) 01/01/1988 31/12/1995 -91029100 01/01/1996 31/12/2500 LIBEN Pocket-watches and the like, incl. stop-watches, electrically operated (excl. of precious metal or of metal clad with precious metal) 01/01/1996 31/12/2500 -910299 01/01/1988 31/12/2500 LIBEN Pocket-watches and the like, incl. stop-watches, with hand or automatic winding (excl. of precious metal or of metal clad with precious metal) 01/01/1988 31/12/2500 -91029900 01/01/1988 31/12/1995 LIBEN Pocket-watches and the like, incl. stop-watches, with hand or automatic winding (excl. of precious metal or of metal clad with precious metal) 01/01/1988 31/12/1995 -91029900 01/01/1996 31/12/2500 LIBEN Pocket-watches and the like, incl. stop-watches, with hand or automatic winding (excl. of precious metal or of metal clad with precious metal) 01/01/1996 31/12/2500 -9103 01/01/1988 31/12/2500 LIBEN Clocks with watch movements (excl. wrist-watches, pocket-watches and other watches of heading 9101 or 9102, and instrument panel clocks and the like of heading 9104) 01/01/1988 31/12/2500 -910310 01/01/1988 31/12/2500 LIBEN Clocks with watch movements, electrically operated (excl. wrist-watches, pocket-watches and other watches of heading 9101 or 9102, and instrument panel clocks and the like of heading 9104) 01/01/1988 31/12/2500 -91031000 01/01/1988 31/12/1995 LIBEN Battery or accumulator powered clocks with watch movements (excl. wrist-watches, pocket-watches and other watches of headings 9101 or 9102, and instrument panel clocks and the like of heading 9104) 01/01/1988 31/12/1995 -91031000 01/01/1996 31/12/2500 LIBEN Clocks with watch movements, electrically operated (excl. wrist-watches, pocket-watches and other watches of heading 9101 or 9102, and instrument panel clocks and the like of heading 9104) 01/01/1996 31/12/2500 -910390 01/01/1988 31/12/2500 LIBEN Clocks with watch movements (excl. electrically operated, wrist-watches, pocket-watches and other watches of heading 9101 or 9102, and instrument panel clocks and the like of heading 9104) 01/01/1988 31/12/2500 -91039000 01/01/1988 31/12/1995 LIBEN Clocks with watch movements (excl. battery or accumulator powered, wrist-watches, pocket-watches and other watches of headings 9101 or 9102, and instrument panel clocks and the like of heading 9104) 01/01/1988 31/12/1995 -91039000 01/01/1996 31/12/2500 LIBEN Clocks with watch movements (excl. electrically operated, wrist-watches, pocket-watches and other watches of heading 9101 or 9102, and instrument panel clocks and the like of heading 9104) 01/01/1996 31/12/2500 -9104 01/01/1988 31/12/2500 LIBEN Instrument panel clocks and clocks of a similar type for vehicles, aircraft, vessels and other vehicles 01/01/1988 31/12/2500 -910400 01/01/1988 31/12/2500 LIBEN Instrument panel clocks and clocks of a similar type for vehicles, aircraft, vessels and other vehicles 01/01/1988 31/12/2500 -91040000 01/01/2006 31/12/2500 LIBEN Instrument panel clocks and clocks of a similar type for vehicles, aircraft, vessels and other vehicles 01/01/2006 31/12/2500 -91040010 01/01/1988 31/12/2005 LIBEN Instrument panel clocks and the like for civil aircraft 01/01/1988 31/12/2005 -91040090 01/01/1988 31/12/2005 LIBEN Instrument panel clocks and the like for motor vehicles, aircraft, vessels or other vehicles (excl. for civil aircraft) 01/01/1988 31/12/2005 -9105 01/01/1988 31/12/2500 LIBEN Clocks (excl. wrist-watches, pocket-watches and other watches of heading 9101 or 9102, clocks with watch movements of heading 9103, and instrument panel clocks and the like of heading 9104) 01/01/1988 31/12/2500 -910511 01/01/1988 31/12/2500 LIBEN Alarm clocks, electrically operated 01/01/1988 31/12/2500 -91051100 01/01/1996 31/12/2500 LIBEN Alarm clocks, electrically operated 01/01/1996 31/12/2500 -91051110 01/01/1988 31/12/1995 LIBEN Alarm clocks, battery or accumulator powered only 01/01/1988 31/12/1995 -91051190 01/01/1988 31/12/1995 LIBEN Alarm clocks, mains powered only, or mains and battery or accumulator powered 01/01/1988 31/12/1995 -910519 01/01/1988 31/12/2500 LIBEN Alarm clocks (excl. electrically operated) 01/01/1988 31/12/2500 -91051900 01/01/1995 31/12/2500 LIBEN Alarm clocks (excl. electrically operated) 01/01/1995 31/12/2500 -91051910 01/01/1988 31/12/1994 LIBEN Alarm clocks, with dials whose maximum diameter or diagonal measurement is >= 7 cm (excl. battery, accumulator or mains powered) 01/01/1988 31/12/1994 -91051990 01/01/1988 31/12/1994 LIBEN Alarm clocks (excl. with dials whose maximum diameter or diagonal measurement is >= 7 cm, battery, accumulator or mains powered) 01/01/1988 31/12/1994 -910521 01/01/1988 31/12/2500 LIBEN Wall clocks, electrically operated 01/01/1988 31/12/2500 -91052100 01/01/1995 31/12/2500 LIBEN Wall clocks, electrically operated 01/01/1995 31/12/2500 -91052110 01/01/1988 31/12/1994 LIBEN Wall clocks, battery, accumulator or mains powered, with piezo-electric quartz crystal regulating device 01/01/1988 31/12/1994 -91052190 01/01/1988 31/12/1994 LIBEN Wall clocks, battery, accumulator or mains powered (excl. with piezo-electric quartz crystal regulating device) 01/01/1988 31/12/1994 -910529 01/01/1988 31/12/2500 LIBEN Wall clocks (excl. electrically operated) 01/01/1988 31/12/2500 -91052900 01/01/1996 31/12/2500 LIBEN Wall clocks (excl. electrically operated) 01/01/1996 31/12/2500 -91052910 01/01/1988 31/12/1995 LIBEN Cuckoo clocks (excl. battery, accumulator or mains powered) 01/01/1988 31/12/1995 -91052990 01/01/1988 31/12/1995 LIBEN Wall clocks (excl. battery, accumulator or mains powered, and cuckoo clocks) 01/01/1988 31/12/1995 -910591 01/01/1988 31/12/2500 LIBEN Clocks, electrically operated (excl. wrist-watches, pocket-watches and other watches of heading 9101 or 9102, clocks with watch movements of heading 9103, instrument panel clocks and the like of heading 9104, alarm clocks and wall clocks) 01/01/1988 31/12/2500 -91059100 01/01/1996 31/12/2500 LIBEN Clocks, electrically operated (excl. wrist-watches, pocket-watches and other watches of heading 9101 or 9102, clocks with watch movements of heading 9103, instrument panel clocks and the like of heading 9104, alarm clocks and wall clocks) 01/01/1996 31/12/2500 -91059110 01/01/1988 31/12/1995 LIBEN Master and secondary clock systems 01/01/1988 31/12/1995 -91059190 01/01/1995 31/12/1995 LIBEN Clocks, battery, accumulator or mains powered (other than wrist-watches, pocket-watches and other watches of headings 9101 or 9102, clocks with watch movements of heading 9103, instrument panel clocks and other clocks of heading 9104, alarm clocks, wall clocks and clock sets [main and auxiliary clocks]) 01/01/1995 31/12/1995 -91059191 01/01/1988 31/12/1994 LIBEN Battery, accumulator or mains powered clocks, with piezo-electric quartz crystal regulating device (excl. wrist-watches, pocket-watches and other watches of headings 9101 or 9102, clocks with watch movements of heading 9103, instrument panel clocks and the like of heading 9104, alarm clocks, wall clocks and master and secondary clock systems) 01/01/1988 31/12/1994 -91059199 01/01/1988 31/12/1994 LIBEN Battery, accumulator or mains powered clocks (excl. with piezo-electric quartz crystal regulating device, wrist-watches, pocket-watches and other watches of headings 9101 or 9102, clocks with watch movements of heading 9103, instrument panel clocks and the like of heading 9104, alarm clocks, wall clocks and master and secondary clock systems) 01/01/1988 31/12/1994 -910599 01/01/1988 31/12/2500 LIBEN Clocks (excl. electrically operated, wrist-watches, pocket-watches and other watches of heading 9101 or 9102, clocks with watch movements of heading 9103, instrument panel clocks and the like of heading 9104, alarm clocks and wall clocks) 01/01/1988 31/12/2500 -91059900 01/01/2011 31/12/2500 LIBEN Clocks (excl. electrically operated, wrist-watches, pocket-watches and other watches of heading 9101 or 9102, clocks with watch movements of heading 9103, instrument panel clocks and the like of heading 9104, alarm clocks and wall clocks) 01/01/2011 31/12/2500 -91059910 01/01/1988 31/12/2010 LIBEN Table-top or mantelpiece clocks, non-electrically operated (excl. alarm clocks) 01/01/1988 31/12/2010 -91059990 01/01/1988 31/12/2010 LIBEN Clocks, non-electrically operated (excl. wrist-watches, pocket-watches and other watches of heading 9101 or 9102, clocks with watch movements of heading 9103, instrument panel clocks and the like of heading 9104, alarm clocks, wall clocks and table-top or mantelpiece clocks) 01/01/1988 31/12/2010 -9106 01/01/1988 31/12/2500 LIBEN Time of day recording apparatus and apparatus for measuring, recording or otherwise indicating intervals of time, with clock or watch movement or with synchronous motor, e.g. time-registers and time recorders (excl. clocks of heading 9101 to 9105) 01/01/1988 31/12/2500 -910610 01/01/1988 31/12/2500 LIBEN Time registers and time recorders 01/01/1988 31/12/2500 -91061000 01/01/1995 31/12/2500 LIBEN Time registers and time recorders 01/01/1995 31/12/2500 -91061010 01/01/1988 31/12/1994 LIBEN Time registers 01/01/1988 31/12/1994 -91061090 01/01/1988 31/12/1994 LIBEN Time recorders 01/01/1988 31/12/1994 -910620 01/01/1988 31/12/2006 LIBEN Parking meters 01/01/1988 31/12/2006 -91062000 01/01/1988 31/12/2006 LIBEN Parking meters 01/01/1988 31/12/2006 -910690 01/01/1988 31/12/2500 LIBEN Time of day recording apparatus and apparatus for measuring, recording or otherwise indicating intervals of time, with clock or watch movement or with synchronous motor (excl. clocks of heading 9101 to 9105, time registers and time recorders) 01/01/1988 31/12/2500 -91069000 01/01/2011 31/12/2500 LIBEN Time of day recording apparatus and apparatus for measuring, recording or otherwise indicating intervals of time, with clock or watch movement or with synchronous motor (excl. clocks of heading 9101 to 9105, time registers and time recorders) 01/01/2011 31/12/2500 -91069010 01/01/1988 31/12/2010 LIBEN Process-timers, stop-clocks and the like 01/01/1988 31/12/2010 -91069080 01/01/2007 31/12/2010 LIBEN Time of day recording apparatus and apparatus for measuring, recording or otherwise indicating intervals of time, with clock or watch movement or with synchronous motor (excl. clocks of heading 9101 to 9105, time registers, time recorders, process-timers, stop-clocks and the like) 01/01/2007 31/12/2010 -91069090 01/01/1988 31/12/2006 LIBEN Time of day recording apparatus and apparatus for measuring, recording or otherwise indicating intervals of time, with clock or watch movement or with synchronous motor (excl. clocks of heading 9101 to 9105, time registers, time recorders, parking meters, process-timers, stop-clocks and the like) 01/01/1988 31/12/2006 -9107 01/01/1988 31/12/2500 LIBEN Time switches with clock or watch movement or with synchronous motor 01/01/1988 31/12/2500 -910700 01/01/1988 31/12/2500 LIBEN Time switches with clock or watch movement or with synchronous motor 01/01/1988 31/12/2500 -91070000 01/01/1988 31/12/2500 LIBEN Time switches with clock or watch movement or with synchronous motor 01/01/1988 31/12/2500 -9108 01/01/1988 31/12/2500 LIBEN Watch movements, complete and assembled 01/01/1988 31/12/2500 -910811 01/01/1988 31/12/2500 LIBEN Watch movements, complete and assembled, electrically operated, with mechanical display only or with a device to which a mechanical display can be incorporated 01/01/1988 31/12/2500 -91081100 01/01/1988 31/12/1995 LIBEN Watch movements, complete and assembled, battery or accumulator powered, with mechanical display only or with a device to which a mechanical display can be incorporated 01/01/1988 31/12/1995 -91081100 01/01/1996 31/12/2500 LIBEN Watch movements, complete and assembled, electrically operated, with mechanical display only or with a device to which a mechanical display can be incorporated 01/01/1996 31/12/2500 -910812 01/01/1988 31/12/2500 LIBEN Watch movements, complete and assembled, electrically operated, with opto-electronic display only 01/01/1988 31/12/2500 -91081200 01/01/1988 31/12/1995 LIBEN Watch movements, complete and assembled, battery or accumulator powered, with opto-electronic display only 01/01/1988 31/12/1995 -91081200 01/01/1996 31/12/2500 LIBEN Watch movements, complete and assembled, electrically operated, with opto-electronic display only 01/01/1996 31/12/2500 -910819 01/01/1988 31/12/2500 LIBEN Watch movements, complete and assembled, electrically operated, with combined opto-electronic and mechanical display, whether or not with dial and hands 01/01/1988 31/12/2500 -91081900 01/01/1988 31/12/1995 LIBEN Watch movements, complete and assembled, battery or accumulator powered, with combined opto-electronic and mechanical display, whether or not with dial and hands 01/01/1988 31/12/1995 -91081900 01/01/1996 31/12/2500 LIBEN Watch movements, complete and assembled, electrically operated, with combined opto-electronic and mechanical display, whether or not with dial and hands 01/01/1996 31/12/2500 -910820 01/01/1988 31/12/2500 LIBEN Watch movements, complete and assembled, with automatic winding 01/01/1988 31/12/2500 -91082000 01/01/1988 31/12/2500 LIBEN Watch movements, complete and assembled, with automatic winding 01/01/1988 31/12/2500 -910890 01/01/2002 31/12/2500 LIBEN Watch movements, complete and assembled, with hand winding only 01/01/2002 31/12/2500 -91089000 01/01/2002 31/12/2500 LIBEN Watch movements, complete and assembled, with hand winding only 01/01/2002 31/12/2500 -910891 01/01/1988 31/12/2001 LIBEN Watch movements, complete and assembled, with hand winding only, measuring <= 33,8 mm 01/01/1988 31/12/2001 -91089100 01/01/1988 31/12/1995 LIBEN Watch movements, complete and assembled, with hand winding only, measuring <= 33,8 mm 01/01/1988 31/12/1995 -91089100 01/01/1996 31/12/2001 LIBEN Watch movements, complete and assembled, with hand winding only, measuring <= 33,8 mm 01/01/1996 31/12/2001 -910899 01/01/1988 31/12/2001 LIBEN Watch movements, complete and assembled, with hand winding only, measuring > 33,8 mm but <= 50 mm 01/01/1988 31/12/2001 -91089900 01/01/1988 31/12/1995 LIBEN Watch movements, complete and assembled, with hand winding only, measuring > 33,8 mm but <= 50 mm 01/01/1988 31/12/1995 -91089900 01/01/1996 31/12/2001 LIBEN Watch movements, complete and assembled, with hand winding only, measuring > 33,8 mm but <= 50 mm 01/01/1996 31/12/2001 -9109 01/01/1988 31/12/2500 LIBEN Clock movements, complete and assembled (excl. watch movements) 01/01/1988 31/12/2500 -910910 01/01/2012 31/12/2500 LIBEN Clock movements, complete and assembled, electrically operated (excl. watch movements) 01/01/2012 31/12/2500 -91091000 01/01/2012 31/12/2500 LIBEN Clock movements, complete and assembled, electrically operated (excl. watch movements) 01/01/2012 31/12/2500 -910911 01/01/1988 31/12/2011 LIBEN Clock movements of alarm clocks, complete and assembled, electrically operated, for alarm clocks (excl. watch movements) 01/01/1988 31/12/2011 -91091100 01/01/1988 31/12/1995 LIBEN Clock movements of alarm clocks, complete and assembled, battery, accumulator or mains powered (excl. watch movements) 01/01/1988 31/12/1995 -91091100 01/01/1996 31/12/2011 LIBEN Clock movements of alarm clocks, complete and assembled, electrically operated, for alarm clocks (excl. watch movements) 01/01/1996 31/12/2011 -910919 01/01/1988 31/12/2011 LIBEN Clock movements, complete and assembled, electrically operated (excl. alarm clocks and watch movements) 01/01/1988 31/12/2011 -91091900 01/01/2006 31/12/2011 LIBEN Clock movements, complete and assembled, electrically operated (excl. alarm clocks and watch movements) 01/01/2006 31/12/2011 -91091910 01/01/1988 31/12/1995 LIBEN Clock movements, complete and assembled, battery, accumulator or mains powered, with diameter or width of <= 50 mm, for civil aircraft (excl. watch movements) 01/01/1988 31/12/1995 -91091910 01/01/1996 31/12/2005 LIBEN Clock movements, complete and assembled, electrically operated, with diameter or width of <= 50 mm, for civil aircraft (excl. watch movements) 01/01/1996 31/12/2005 -91091990 01/01/1988 31/12/1995 LIBEN Clock movements, complete and assembled, battery, accumulator or mains powered (excl. with diameter or width of <= 50 mm for civil aircraft, watch movements and alarm clocks) 01/01/1988 31/12/1995 -91091990 01/01/1996 31/12/2005 LIBEN Clock movements, complete and assembled, electrically operated (excl. with diameter or width of <= 50 mm for civil aircraft of subheading 9109.19.10, watch movements and clock movements for alarm clocks) 01/01/1996 31/12/2005 -910990 01/01/1988 31/12/2500 LIBEN Clock movements, complete and assembled (excl. electrically operated and watch movements) 01/01/1988 31/12/2500 -91099000 01/01/2006 31/12/2500 LIBEN Clock movements, complete and assembled (excl. electrically operated and watch movements) 01/01/2006 31/12/2500 -91099010 01/01/1988 31/12/1995 LIBEN Clock movements, complete and assembled, not battery, accumulator or mains powered, with diameter or width of <= 50 mm, for civil aircraft (excl. watch movements) 01/01/1988 31/12/1995 -91099010 01/01/1996 31/12/2005 LIBEN Clock movements, complete and assembled, not battery, accumulator or mains powered, with diameter or width of <= 50 mm, for civil aircraft (excl. watch movements) 01/01/1996 31/12/2005 -91099090 01/01/1988 31/12/1995 LIBEN Clock movements, complete and assembled, not battery, accumulator or mains powered (excl. with diameter or width of <= 50 mm for civil aircraft and watch movements) 01/01/1988 31/12/1995 -91099090 01/01/1996 31/12/2005 LIBEN Clock movements, complete and assembled, not battery, accumulator or mains powered (excl. with diameter or width of <= 50 mm for civil aircraft and watch movements) 01/01/1996 31/12/2005 -9110 01/01/1988 31/12/2500 LIBEN Complete, unassembled or partly assembled watch or clock movements or movement sets; incomplete watch or clock movements, assembled; rough watch or clock movements 01/01/1988 31/12/2500 -911011 01/01/1988 31/12/2500 LIBEN Complete watch movements, unassembled or partly assembled movement sets 01/01/1988 31/12/2500 -91101110 01/01/1988 31/12/2500 LIBEN Complete watch movements, unassembled or partly assembled "movement sets", with balance wheel and hairspring 01/01/1988 31/12/2500 -91101190 01/01/1988 31/12/2500 LIBEN Complete watch movements, unassembled or partly assembled "movement sets" (excl. with balance wheel and hairspring) 01/01/1988 31/12/2500 -911012 01/01/1988 31/12/2500 LIBEN Incomplete watch movements, assembled 01/01/1988 31/12/2500 -91101200 01/01/1988 31/12/2500 LIBEN Incomplete watch movements, assembled 01/01/1988 31/12/2500 -911019 01/01/1988 31/12/2500 LIBEN Rough clock movements 01/01/1988 31/12/2500 -91101900 01/01/1988 31/12/2500 LIBEN Rough clock movements 01/01/1988 31/12/2500 -911090 01/01/1988 31/12/2500 LIBEN Complete, unassembled or partly assembled clock movements "movement sets"; incomplete clock movements, assembled (excl. rough clock movements and watch movements) 01/01/1988 31/12/2500 -91109000 01/01/1988 31/12/2500 LIBEN Complete, unassembled or partly assembled clock movements "movement sets"; incomplete clock movements, assembled (excl. rough clock movements and watch movements) 01/01/1988 31/12/2500 -9111 01/01/1988 31/12/2500 LIBEN Cases for wrist-watches, pocket-watches and other watches, incl. stop-watches, of heading 9101 or 9102, and parts thereof, n.e.s. 01/01/1988 31/12/2500 -911110 01/01/1988 31/12/2500 LIBEN Cases for wrist-watches, pocket-watches and other watches of heading 9101 or 9102, of precious metal or of metal clad with precious metal 01/01/1988 31/12/2500 -91111000 01/01/1988 31/12/2500 LIBEN Cases for wrist-watches, pocket-watches and other watches of heading 9101 or 9102, of precious metal or of metal clad with precious metal 01/01/1988 31/12/2500 -911120 01/01/1988 31/12/2500 LIBEN Cases for wrist-watches, pocket-watches and other watches of heading 9101 or 9102, of base metal, whether or not gold- or silver-plated 01/01/1988 31/12/2500 -91112000 01/01/2004 31/12/2500 LIBEN Cases for wrist-watches, pocket-watches and other watches of heading 9101 or 9102, of base metal, whether or not gold- or silver-plated 01/01/2004 31/12/2500 -91112010 01/01/1988 31/12/2003 LIBEN Cases for wrist-watches, pocket-watches and other watches of heading 9101 or 9102, of base metal, gold- or silver-plated 01/01/1988 31/12/2003 -91112090 01/01/1988 31/12/2003 LIBEN Cases for wrist-watches, pocket-watches and other watches of heading 9101 or 9102, of base metal, neither gold- nor silver-plated 01/01/1988 31/12/2003 -911180 01/01/1988 31/12/2500 LIBEN Cases for wrist-watches, pocket-watches and other watches of heading 9101 or 9102, of materials other than precious metal, clad with precious metal or base metal 01/01/1988 31/12/2500 -91118000 01/01/1988 31/12/2500 LIBEN Cases for wrist-watches, pocket-watches and other watches of heading 9101 or 9102, of materials other than precious metal, clad with precious metal or base metal 01/01/1988 31/12/2500 -911190 01/01/1988 31/12/2500 LIBEN Parts of cases for wrist-watches, pocket-watches and other watches of heading 9101 or 9102, n.e.s. 01/01/1988 31/12/2500 -91119000 01/01/1988 31/12/2500 LIBEN Parts of cases for wrist-watches, pocket-watches and other watches of heading 9101 or 9102, n.e.s. 01/01/1988 31/12/2500 -9112 01/01/1988 31/12/2500 LIBEN Clock and watch cases and parts thereof, n.e.s. (excl. for wrist-watches, pocket-watches and other watches of heading 9101 or 9102) 01/01/1988 31/12/2500 -911210 01/01/1988 31/12/2001 LIBEN Clock and watch cases of metal (excl. for wrist-watches, pocket-watches and other watches of heading 9101 or 9102) 01/01/1988 31/12/2001 -91121000 01/01/1988 31/12/2001 LIBEN Clock and watch cases of metal (excl. for wrist-watches, pocket-watches and other watches of heading 9101 or 9102) 01/01/1988 31/12/2001 -911220 01/01/2002 31/12/2500 LIBEN Clock and watch cases (excl. for wrist-watches, pocket-watches and other watches of heading 9101 or 9102) 01/01/2002 31/12/2500 -91122000 01/01/2002 31/12/2500 LIBEN Clock and watch cases (excl. for wrist-watches, pocket-watches and other watches of heading 9101 or 9102) 01/01/2002 31/12/2500 -911280 01/01/1988 31/12/2001 LIBEN Clock and watch cases of materials other than metal (excl. for wrist-watches, pocket-watches and other watches of heading 9101 or 9102) 01/01/1988 31/12/2001 -91128000 01/01/1988 31/12/2001 LIBEN Clock and watch cases of materials other than metal (excl. for wrist-watches, pocket-watches and other watches of heading 9101 or 9102) 01/01/1988 31/12/2001 -911290 01/01/1988 31/12/2500 LIBEN Parts of clock and watch cases, n.e.s. (excl. for wrist-watches, pocket-watches and other watches of heading 9101 or 9102) 01/01/1988 31/12/2500 -91129000 01/01/1988 31/12/2500 LIBEN Parts of clock and watch cases, n.e.s. (excl. for wrist-watches, pocket-watches and other watches of heading 9101 or 9102) 01/01/1988 31/12/2500 -9113 01/01/1988 31/12/2500 LIBEN Watch straps, watch bands and watch bracelets, and parts thereof, n.e.s. 01/01/1988 31/12/2500 -911310 01/01/1988 31/12/2500 LIBEN Watch straps, watch bands and watch bracelets, and parts thereof, of precious metal or of metal clad with precious metal, n.e.s. 01/01/1988 31/12/2500 -91131010 01/01/1988 31/12/2500 LIBEN Watch straps, watch bands and watch bracelets, and parts thereof, of precious metal, n.e.s. 01/01/1988 31/12/2500 -91131090 01/01/1988 31/12/2500 LIBEN Watch straps, watch bands and watch bracelets, and parts thereof, of metal clad with precious metal, n.e.s. 01/01/1988 31/12/2500 -911320 01/01/1988 31/12/2500 LIBEN Watch straps, watch bands and watch bracelets, and parts thereof, of base metal, whether or not gold- or silver-plated, n.e.s. 01/01/1988 31/12/2500 -91132000 01/01/1988 31/12/2500 LIBEN Watch straps, watch bands and watch bracelets, and parts thereof, of base metal, whether or not gold- or silver-plated, n.e.s. 01/01/1988 31/12/2500 -911390 01/01/1988 31/12/2500 LIBEN Watch straps, watch bands and watch bracelets, and parts thereof, n.e.s. 01/01/1988 31/12/2500 -91139000 01/01/2011 31/12/2500 LIBEN Watch straps, watch bands and watch bracelets, and parts thereof, n.e.s. 01/01/2011 31/12/2500 -91139010 01/01/1988 31/12/2010 LIBEN Watch straps, watch bands and watch bracelets, and parts thereof, of leather or of composition leather 01/01/1988 31/12/2010 -91139030 01/01/1988 31/12/2003 LIBEN Watch straps, watch bands and watch bracelets, and parts thereof, of plastic materials, n.e.s. 01/01/1988 31/12/2003 -91139080 01/01/2004 31/12/2010 LIBEN Watch straps, watch bands and watch bracelets, and parts thereof, n.e.s. 01/01/2004 31/12/2010 -91139090 01/01/1988 31/12/2003 LIBEN Watch straps, watch bands and watch bracelets, and parts thereof, n.e.s. 01/01/1988 31/12/2003 -9114 01/01/1988 31/12/2500 LIBEN Clock or watch parts, n.e.s. 01/01/1988 31/12/2500 -911410 01/01/1988 31/12/2500 LIBEN Springs for clocks or watches, incl. hairsprings 01/01/1988 31/12/2500 -91141000 01/01/1988 31/12/2500 LIBEN Springs for clocks or watches, incl. hairsprings 01/01/1988 31/12/2500 -911420 01/01/1988 31/12/2011 LIBEN Jewels for clocks or watches (excl. gems for clock and watch cases) 01/01/1988 31/12/2011 -91142000 01/01/1988 31/12/2011 LIBEN Jewels for clocks or watches (excl. gems for clock and watch cases) 01/01/1988 31/12/2011 -911430 01/01/1988 31/12/2500 LIBEN Dials for clocks or watches 01/01/1988 31/12/2500 -91143000 01/01/1988 31/12/2500 LIBEN Dials for clocks or watches 01/01/1988 31/12/2500 -911440 01/01/1988 31/12/2500 LIBEN Plates and bridges for clocks or watches 01/01/1988 31/12/2500 -91144000 01/01/1988 31/12/2500 LIBEN Plates and bridges for clocks or watches 01/01/1988 31/12/2500 -911490 01/01/1988 31/12/2500 LIBEN Clock or watch parts, n.e.s. 01/01/1988 31/12/2500 -91149000 01/01/1988 31/12/2011 LIBEN Clock or watch parts, n.e.s. 01/01/1988 31/12/2011 -91149000 01/01/2012 31/12/2500 LIBEN Clock or watch parts, n.e.s. 01/01/2012 31/12/2500 -91CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 91 01/01/2002 31/12/2500 -91CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 91 01/01/2002 31/12/2500 -91CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 91 01/01/2002 31/12/2500 -91MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -91MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -91MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -91PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 91 carried by post 01/01/1988 31/12/2500 -91PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 91 carried by post 01/01/1988 31/12/2500 -91PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 91 carried by post 01/01/1988 31/12/2500 -91SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 91 01/01/1988 31/12/2500 -91SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 91 and SITC section 8 01/01/1997 31/12/2500 -91SSS885 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 91 and SITC group 885 01/01/1997 31/12/2500 -91SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 91 and SITC section 9 01/01/1988 31/12/1996 -91SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 91 and SITC section 9 01/01/1997 31/12/2500 -91SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 91 and SITC group 999 01/01/1988 31/12/1996 -91SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 91 and SITC group 999 01/01/1997 31/12/2500 -91VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 91 for the assembly of motor vehicles 01/01/1988 31/12/2500 -91VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 91 for the assembly of motor vehicles 01/01/1988 31/12/2500 -91VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 91 for the assembly of motor vehicles 01/01/1988 31/12/2500 -92 01/01/1988 31/12/2500 LIBEN MUSICAL INSTRUMENTS; PARTS AND ACCESSORIES OF SUCH ARTICLES 01/01/1988 31/12/2500 -9201 01/01/1988 31/12/2500 LIBEN Pianos, incl. automatic; harpsichords and other keyboard stringed instruments 01/01/1988 31/12/2500 -920110 01/01/1988 31/12/2500 LIBEN Upright pianos 01/01/1988 31/12/2500 -92011010 01/01/1988 31/12/2500 LIBEN New upright pianos 01/01/1988 31/12/2500 -92011090 01/01/1988 31/12/2500 LIBEN Used upright pianos 01/01/1988 31/12/2500 -920120 01/01/1988 31/12/2500 LIBEN Grand pianos 01/01/1988 31/12/2500 -92012000 01/01/1988 31/12/2500 LIBEN Grand pianos 01/01/1988 31/12/2500 -920190 01/01/1988 31/12/2500 LIBEN Harpsichords and other keyboard stringed instruments (excl. pianos) 01/01/1988 31/12/2500 -92019000 01/01/1988 31/12/2500 LIBEN Harpsichords and other keyboard stringed instruments (excl. pianos) 01/01/1988 31/12/2500 -9202 01/01/1988 31/12/2500 LIBEN String musical instruments, e.g. guitars, violins, and harps (excl. with keyboard) 01/01/1988 31/12/2500 -920210 01/01/1988 31/12/2500 LIBEN Violins and other string instruments 01/01/1988 31/12/2500 -92021000 01/01/1988 31/12/1992 LIBEN Violins and other string musical instruments played with a bow [01/01/1988-31/12/1988: string musical instruments -for example, guitars, violins, played with a bow] 01/01/1988 31/12/1992 -92021010 01/01/1993 31/12/2500 LIBEN Violins 01/01/1993 31/12/2500 -92021090 01/01/1993 31/12/2500 LIBEN String musical instruments played with a bow (excl. violins) 01/01/1993 31/12/2500 -920290 01/01/1988 31/12/2500 LIBEN Guitars, harps and other string musical instruments (excl. with keyboard and those played with a bow) 01/01/1988 31/12/2500 -92029010 01/01/1988 31/12/2003 LIBEN Harps 01/01/1988 31/12/2003 -92029030 01/01/1988 31/12/2500 LIBEN Guitars 01/01/1988 31/12/2500 -92029080 01/01/2004 31/12/2500 LIBEN Mandolins, zithers and other string musical instruments (excl. with keyboard, those played with a bow and guitars) 01/01/2004 31/12/2500 -92029090 01/01/1988 31/12/2003 LIBEN Mandolins, zithers and other string musical instruments (excl. with keyboard, those played with a bow, harps and guitars) 01/01/1988 31/12/2003 -9203 01/01/1988 31/12/2006 LIBEN Keyboard pipe organs; harmoniums and similar keyboard instruments with free metal reeds (excl. string musical instruments) 01/01/1988 31/12/2006 -920300 01/01/1988 31/12/2006 LIBEN Keyboard pipe organs; harmoniums and similar keyboard instruments with free metal reeds (excl. string musical instruments) 01/01/1988 31/12/2006 -92030000 01/01/2004 31/12/2006 LIBEN Keyboard pipe organs; harmoniums and similar keyboard instruments with free metal reeds (excl. string musical instruments) 01/01/2004 31/12/2006 -92030010 01/01/1988 31/12/2003 LIBEN Keyboard pipe organs 01/01/1988 31/12/2003 -92030090 01/01/1988 31/12/2003 LIBEN Harmoniums and similar keyboard instruments with free metal reeds (excl. keyboard pipe organs and string musical instruments) 01/01/1988 31/12/2003 -9204 01/01/1988 31/12/2006 LIBEN Accordions and similar instruments; mouth organs 01/01/1988 31/12/2006 -920410 01/01/1988 31/12/2006 LIBEN Accordions and similar instruments 01/01/1988 31/12/2006 -92041000 01/01/1988 31/12/1994 LIBEN Accordions and similar instruments 01/01/1988 31/12/1994 -92041000 01/01/2001 31/12/2006 LIBEN Accordions and similar instruments 01/01/2001 31/12/2006 -92041010 01/01/1995 31/12/2000 LIBEN Accordions and similar musical instruments, having < 80 bass notes 01/01/1995 31/12/2000 -92041090 01/01/1995 31/12/2000 LIBEN Accordions and similar musical instruments, having >= 80 bass notes 01/01/1995 31/12/2000 -920420 01/01/1988 31/12/2006 LIBEN Mouth organs 01/01/1988 31/12/2006 -92042000 01/01/1988 31/12/2006 LIBEN Mouth organs 01/01/1988 31/12/2006 -9205 01/01/1988 31/12/2500 LIBEN Wind musical instruments "e.g. clarinets, trumpets, bagpipes, keyboard pipe organs, harmoniums and similar keyboard instruments with free metal reeds, accordions and similar instruments, mouth organs" 01/01/1988 31/12/2500 -920510 01/01/1988 31/12/2500 LIBEN Brass-wind instruments 01/01/1988 31/12/2500 -92051000 01/01/1988 31/12/2500 LIBEN Brass-wind instruments 01/01/1988 31/12/2500 -920590 01/01/1988 31/12/2500 LIBEN Wind musical instruments (excl. brass-wind instruments) 01/01/1988 31/12/2500 -92059000 01/01/1994 31/12/2006 LIBEN Wind musical instruments (excl. organs and brass-wind instruments) 01/01/1994 31/12/2006 -92059010 01/01/1988 31/12/1993 LIBEN Recorders 01/01/1988 31/12/1993 -92059010 01/01/2007 31/12/2500 LIBEN Accordions and similar instruments 01/01/2007 31/12/2500 -92059030 01/01/2007 31/12/2500 LIBEN Mouth organs 01/01/2007 31/12/2500 -92059050 01/01/2007 31/12/2500 LIBEN Keyboard pipe organs; harmoniums and similar keyboard instruments with free metal reeds (excl. string musical instruments) 01/01/2007 31/12/2500 -92059090 01/01/1988 31/12/1993 LIBEN Wind musical instruments (excl. organs, brass-wind instruments and recorders) 01/01/1988 31/12/1993 -92059090 01/01/2007 31/12/2500 LIBEN Wind musical instruments (excl. brass-wind instruments, accordions and similar instruments, mouth organs, keyboard pipe organs, and harmoniums and similar keyboard instruments with free metal reeds) 01/01/2007 31/12/2500 -9206 01/01/1988 31/12/2500 LIBEN Percussion musical instruments, e.g. drums, xylophones, cymbals, castanets, maracas 01/01/1988 31/12/2500 -920600 01/01/1988 31/12/2500 LIBEN Percussion musical instruments, e.g. drums, xylophones, cymbals, castanets, maracas 01/01/1988 31/12/2500 -92060000 01/01/1995 31/12/2500 LIBEN Percussion musical instruments, e.g. drums, xylophones, cymbals, castanets, maracas 01/01/1995 31/12/2500 -92060010 01/01/1988 31/12/1994 LIBEN Timpani and drums 01/01/1988 31/12/1994 -92060090 01/01/1988 31/12/1994 LIBEN Percussion musical instruments (excl. timpani and drums) 01/01/1988 31/12/1994 -9207 01/01/1988 31/12/2500 LIBEN Musical instruments, the sound of which is produced, or must be amplified, electrically, e.g. organs, guitars, accordions 01/01/1988 31/12/2500 -920710 01/01/1988 31/12/2500 LIBEN Keyboard instruments, the sound of which is produced, or must be amplified, electrically (excl. accordions) 01/01/1988 31/12/2500 -92071010 01/01/1988 31/12/2500 LIBEN Keyboard organs, the sound of which is produced, or must be amplified, electrically 01/01/1988 31/12/2500 -92071030 01/01/1993 31/12/2500 LIBEN Digital pianos, with keyboard 01/01/1993 31/12/2500 -92071050 01/01/1993 31/12/2500 LIBEN Synthesisers with keyboard 01/01/1993 31/12/2500 -92071080 01/01/1993 31/12/2500 LIBEN Musical instruments, the sound of which is produced, or must be amplified, electrically, with keyboard (excl. organs, digital pianos, synthesisers and accordions) 01/01/1993 31/12/2500 -92071090 01/01/1988 31/12/1992 LIBEN Keyboard instruments, the sound of which is produced, or must be amplified, electrically (excl. accordions and organs) 01/01/1988 31/12/1992 -920790 01/01/1988 31/12/2500 LIBEN Accordions and musical instruments without keyboards, the sound of which is produced, or must be amplified, electrically 01/01/1988 31/12/2500 -92079010 01/01/1988 31/12/2500 LIBEN Guitars, the sound of which is produced, or must be amplified, electrically 01/01/1988 31/12/2500 -92079090 01/01/1988 31/12/2500 LIBEN Accordions and musical instruments without keyboards, the sound of which is produced, or must be amplified, electrically (excl. guitars) 01/01/1988 31/12/2500 -9208 01/01/1988 31/12/2500 LIBEN Musical boxes, fairground organs, mechanical street organs, mechanical singing birds, musical saws and other musical instruments not falling within any other heading in chapter 92; decoy calls of all kinds; whistles, call horns and other mouth-blown sound signalling instruments 01/01/1988 31/12/2500 -920810 01/01/1988 31/12/2500 LIBEN Musical boxes 01/01/1988 31/12/2500 -92081000 01/01/1988 31/12/2500 LIBEN Musical boxes 01/01/1988 31/12/2500 -920890 01/01/1988 31/12/2500 LIBEN Fairground organs, mechanical street organs, mechanical singing birds, musical saws and other musical instruments not falling within any other heading in chapter 92; decoy calls of all kinds; whistles, call horns and other mouth-blown sound signalling instruments 01/01/1988 31/12/2500 -92089000 01/01/1988 31/12/2500 LIBEN Fairground organs, mechanical street organs, mechanical singing birds, musical saws and other musical instruments not falling within any other heading in chapter 92; decoy calls of all kinds; whistles, call horns and other mouth-blown sound signalling instruments 01/01/1988 31/12/2500 -9209 01/01/1988 31/12/2500 LIBEN Parts and accessories for musical instruments, e.g. mechanisms for musical boxes, cards, discs and rolls for mechanical instruments, n.e.s; metronomes, tuning forks and pitch pipes of all kinds 01/01/1988 31/12/2500 -920910 01/01/1988 31/12/2006 LIBEN Metronomes, tuning forks and pitch pipes 01/01/1988 31/12/2006 -92091000 01/01/1988 31/12/2006 LIBEN Metronomes, tuning forks and pitch pipes 01/01/1988 31/12/2006 -920920 01/01/1988 31/12/2006 LIBEN Mechanisms for musical boxes 01/01/1988 31/12/2006 -92092000 01/01/1988 31/12/2006 LIBEN Mechanisms for musical boxes 01/01/1988 31/12/2006 -920930 01/01/1988 31/12/2500 LIBEN Musical instrument strings 01/01/1988 31/12/2500 -92093000 01/01/1988 31/12/2500 LIBEN Musical instrument strings 01/01/1988 31/12/2500 -920991 01/01/1988 31/12/2500 LIBEN Parts and accessories for pianos, n.e.s. 01/01/1988 31/12/2500 -92099100 01/01/1988 31/12/2500 LIBEN Parts and accessories for pianos, n.e.s. 01/01/1988 31/12/2500 -920992 01/01/1988 31/12/2500 LIBEN Parts and accessories for string musical instruments without keyboards, n.e.s. (excl. strings and those for musical instruments, the sound of which is produced, or must be amplified, electrically) 01/01/1988 31/12/2500 -92099200 01/01/1988 31/12/2500 LIBEN Parts and accessories for string musical instruments without keyboards, n.e.s. (excl. strings and those for musical instruments, the sound of which is produced, or must be amplified, electrically) 01/01/1988 31/12/2500 -920993 01/01/1988 31/12/2006 LIBEN Parts and accessories for keyboard pipe organs, harmoniums and similar keyboard instruments with free metal reeds, n.e.s. 01/01/1988 31/12/2006 -92099300 01/01/1988 31/12/2006 LIBEN Parts and accessories for keyboard pipe organs, harmoniums and similar keyboard instruments with free metal reeds, n.e.s. 01/01/1988 31/12/2006 -920994 01/01/1988 31/12/2500 LIBEN Parts and accessories for musical instruments, the sound of which is produced, or must be amplified, electrically, n.e.s. 01/01/1988 31/12/2500 -92099400 01/01/1988 31/12/2500 LIBEN Parts and accessories for musical instruments, the sound of which is produced, or must be amplified, electrically, n.e.s. 01/01/1988 31/12/2500 -920999 01/01/1988 31/12/2500 LIBEN Parts and accessories for musical instruments "e.g. mechanisms for musical boxes, cards, discs and rolls for mechanical instruments" n.e.s.; metronomes, tuning forks and pitch pipes of all kinds (excl. musical instrument strings and arts and accessories for pianos and for string musical instruments without keyboards) 01/01/1988 31/12/2500 -92099910 01/01/1988 31/12/2000 LIBEN Parts and accessories for accordions and similar instruments and mouth organs, n.e.s. 01/01/1988 31/12/2000 -92099920 01/01/2007 31/12/2500 LIBEN Parts and accessories for clarinets, trumpets, bagpipes, keyboard pipe organs, harmoniums and similar keyboard instruments with free metal reeds, accordions and similar instruments, mouth organs and other brass-wind instruments of heading 9205, n.e.s. 01/01/2007 31/12/2500 -92099930 01/01/1993 31/12/2006 LIBEN Parts and accessories for clarinets, trumpets and other brass-wind instruments of heading 9205, n.e.s. 01/01/1993 31/12/2006 -92099940 01/01/2007 31/12/2500 LIBEN Metronomes, tuning forks and pitch pipes 01/01/2007 31/12/2500 -92099950 01/01/2007 31/12/2500 LIBEN Mechanisms for musical boxes 01/01/2007 31/12/2500 -92099970 01/01/2001 31/12/2500 LIBEN Parts and accessories for musical instruments "e.g. cards, discs and rolls for mechanical instruments", for fairground organs, mechanical street organs and other musical instruments, n.e.s. (excl. metronomes, tuning forks, pitch pipes, mechanisms for musical boxes, musical instrument strings, and those for pianos, string musical instruments without keyboards, keyboard pipe organs, harmoniums and similar keyboard instruments and wind musical instruments) 01/01/2001 31/12/2500 -92099980 01/01/1993 31/12/2000 LIBEN Parts and accessories for musical instruments, n.e.s. 01/01/1993 31/12/2000 -92099990 01/01/1988 31/12/1992 LIBEN Parts and accessories for musical instruments n.e.s. 01/01/1988 31/12/1992 -9209S8 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 9209 and SITC section 8 01/01/1998 31/12/2500 -9209S898 01/01/1998 31/12/2500 LIBEN Confidential trade of heading 9209 and SITC group 898 01/01/1998 31/12/2500 -92CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 92 01/01/2002 31/12/2500 -92CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 92 01/01/2002 31/12/2500 -92CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 92 01/01/2002 31/12/2500 -92MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -92MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -92MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -92PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 92 carried by post 01/01/1988 31/12/2500 -92PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 92 carried by post 01/01/1988 31/12/2500 -92PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 92 carried by post 01/01/1988 31/12/2500 -92SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 92 01/01/1988 31/12/2500 -92SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 92 and SITC section 8 01/01/1997 31/12/2500 -92SSS898 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 92 and SITC group 898 01/01/1997 31/12/2500 -92SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 92 and SITC section 9 01/01/1988 31/12/1996 -92SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 92 and SITC section 9 01/01/1997 31/12/2500 -92SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 92 and SITC group 999 01/01/1988 31/12/1996 -92SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 92 and SITC group 999 01/01/1997 31/12/2500 -93 01/01/1988 31/12/2500 LIBEN ARMS AND AMMUNITION; PARTS AND ACCESSORIES THEREOF 01/01/1988 31/12/2500 -9301 01/01/1988 31/12/2001 LIBEN Military weapons, incl. sub-machine guns (excl. revolvers and pistols of heading 9302 and cutting and thrusting weapons of heading 9307) 01/01/1988 31/12/2001 -9301 01/01/2002 31/12/2500 LIBEN Military weapons, incl. sub-machine guns (excl. revolvers and pistols of heading 9302 and cutting and thrusting weapons of heading 9307) 01/01/2002 31/12/2500 -930100 01/01/1988 31/12/2001 LIBEN Military weapons, incl. sub-machine guns (excl. revolvers and pistols of heading 9302 and cutting and thrusting weapons of heading 9307) 01/01/1988 31/12/2001 -93010000 01/01/1988 31/12/2001 LIBEN Military weapons, incl. sub-machine guns (excl. revolvers and pistols of heading 9302 and cutting and thrusting weapons of heading 9307) 01/01/1988 31/12/2001 -930110 01/01/2012 31/12/2500 LIBEN Artillery weapons "e.g. guns, howitzers and mortars" 01/01/2012 31/12/2500 -93011000 01/01/2012 31/12/2500 LIBEN Artillery weapons "e.g. guns, howitzers and mortars" 01/01/2012 31/12/2500 -930111 01/01/2002 31/12/2011 LIBEN Artillery weapons "e.g. guns, howitzers and mortars", self-propelled 01/01/2002 31/12/2011 -93011100 01/01/2002 31/12/2011 LIBEN Artillery weapons "e.g. guns, howitzers and mortars", self-propelled 01/01/2002 31/12/2011 -930119 01/01/2002 31/12/2011 LIBEN Artillery weapons "e.g. guns, howitzers and mortars", not self-propelled 01/01/2002 31/12/2011 -93011900 01/01/2002 31/12/2011 LIBEN Artillery weapons "e.g. guns, howitzers and mortars", not self-propelled 01/01/2002 31/12/2011 -930120 01/01/2002 31/12/2500 LIBEN Rocket launchers; flame-throwers; grenade launchers; torpedo tubes and similar projectors 01/01/2002 31/12/2500 -93012000 01/01/2002 31/12/2500 LIBEN Rocket launchers; flame-throwers; grenade launchers; torpedo tubes and similar projectors 01/01/2002 31/12/2500 -930190 01/01/2002 31/12/2500 LIBEN Military weapons, incl. sub-machine guns (excl. artillery weapons, rocket launchers, flame-throwers, grenade launchers, torpedo tubes and similar projectors, revolvers and pistols of heading 9302 and cutting and thrusting weapons of heading 9307) 01/01/2002 31/12/2500 -93019000 01/01/2002 31/12/2500 LIBEN Military weapons, incl. sub-machine guns (excl. artillery weapons, rocket launchers, flame-throwers, grenade launchers, torpedo tubes and similar projectors, revolvers and pistols of heading 9302 and cutting and thrusting weapons of heading 9307) 01/01/2002 31/12/2500 -9301S8 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 9301 and SITC section 8 01/01/1997 31/12/2500 -9301S891 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 9301 and SITC group 891 01/01/1997 31/12/2500 -9302 01/01/1988 31/12/2500 LIBEN Revolvers and pistols (excl. those of heading 9303 or 9304 and sub-machine guns for military purposes) 01/01/1988 31/12/2500 -930200 01/01/1988 31/12/2500 LIBEN Revolvers and pistols (excl. those of heading 9303 or 9304 and sub-machine guns for military purposes) 01/01/1988 31/12/2500 -93020000 01/01/2004 31/12/2500 LIBEN Revolvers and pistols (excl. those of heading 9303 or 9304 and sub-machine guns for military purposes) 01/01/2004 31/12/2500 -93020010 01/01/1988 31/12/2003 LIBEN Revolvers and pistols, of >= 9 mm calibre (excl. those of heading 9303 or 9304 and sub-machine guns for military purposes of heading 9301) 01/01/1988 31/12/2003 -93020090 01/01/1988 31/12/2003 LIBEN Revolvers and pistols, of < 9 mm calibre (excl. those of heading 9303 or 9304 and sub-machine guns for military purposes of heading 9301) 01/01/1988 31/12/2003 -9302S8 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 9302 and SITC section 8 01/01/2001 31/12/2500 -9302S891 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 9302 and SITC group 891 01/01/2001 31/12/2500 -9303 01/01/1988 31/12/2500 LIBEN Firearms and similar devices which operate by the firing of an explosive charge, e.g. sporting shotguns and rifles, muzzle-loading firearms, Very pistols and other devices designed to project signal flares only, pistols and revolvers for firing blank ammunition, captive-bolt humane killers and line-throwing guns (excl. revolvers and pistols of heading 9302 and military weapons) 01/01/1988 31/12/2500 -930310 01/01/1988 31/12/2500 LIBEN Muzzle-loading firearms, neither designed nor suitable for projecting cartridges 01/01/1988 31/12/2500 -93031000 01/01/1988 31/12/2500 LIBEN Muzzle-loading firearms, neither designed nor suitable for projecting cartridges 01/01/1988 31/12/2500 -930320 01/01/1988 31/12/2500 LIBEN Sporting, hunting or target-shooting shotguns, with at least one smooth barrel (excl. muzzle-loading firearms and spring, air or gas guns) 01/01/1988 31/12/2500 -93032010 01/01/1988 31/12/1994 LIBEN Sporting, hunting or target-shooting shotguns, with one smooth barrel (excl. muzzle-loading firearms and spring, air or gas guns) 01/01/1988 31/12/1994 -93032010 01/01/1998 31/12/2500 LIBEN Sporting, hunting or target-shooting shotguns, single-barrelled, smooth bore (excl. muzzle-loading firearms and spring, air or gas guns) 01/01/1998 31/12/2500 -93032030 01/01/1988 31/12/1997 LIBEN Double-barrelled sporting, hunting or target-shooting shotguns, with at least one smooth barrel 01/01/1988 31/12/1997 -93032080 01/01/1995 31/12/1997 LIBEN Sporting, hunting or target-shooting shotguns, with a smooth bore or with a smooth and rifled bore (other than double-barrelled) 01/01/1995 31/12/1997 -93032090 01/01/1988 31/12/1994 LIBEN Sporting, hunting or target-shooting shotguns, with at least one smooth barrel (excl. double-barrelled) 01/01/1988 31/12/1994 -93032095 01/01/1998 31/12/2500 LIBEN Sporting, hunting or target-shooting shotguns, with one or two smooth bore combined with a rifled bore and double-barrelled smooth bore shotguns 01/01/1998 31/12/2500 -930330 01/01/1988 31/12/2500 LIBEN Sporting, hunting and target-shooting shotguns with one or more rifled bores (other than spring, air or gas guns) 01/01/1988 31/12/2500 -93033000 01/01/1995 31/12/2500 LIBEN Sporting, hunting and target-shooting shotguns with one or more rifled bores (other than spring, air or gas guns) 01/01/1995 31/12/2500 -93033011 01/01/1988 31/12/1994 LIBEN Rimfire sporting, hunting or target-shooting rifles with a single rifled barrel 01/01/1988 31/12/1994 -93033019 01/01/1988 31/12/1994 LIBEN Sporting, hunting or target-shooting rifles with a single rifled barrel (excl. rimfire) 01/01/1988 31/12/1994 -93033090 01/01/1988 31/12/1994 LIBEN Sporting, hunting or target-shooting rifles with more than one rifled barrel (excl. spring, air or gas guns) 01/01/1988 31/12/1994 -930390 01/01/1988 31/12/2500 LIBEN Firearms and similar devices which operate by the firing of an explosive charge (excl. sporting, hunting or target-shooting rifles, revolvers and pistols of heading 9302 and military weapons) 01/01/1988 31/12/2500 -93039000 01/01/1988 31/12/2500 LIBEN Firearms and similar devices which operate by the firing of an explosive charge (excl. sporting, hunting or target-shooting rifles, revolvers and pistols of heading 9302 and military weapons) 01/01/1988 31/12/2500 -9303S8 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 9303 and SITC section 8 01/01/2001 31/12/2500 -9303S891 01/01/2001 31/12/2500 LIBEN Confidential trade of heading 9303 and SITC group 891 01/01/2001 31/12/2500 -9304 01/01/1988 31/12/2500 LIBEN Spring, air or gas guns and pistols, truncheons and other non-firearms (excl. swords, cutlasses, bayonettes and similar arms of heading 9307) 01/01/1988 31/12/2500 -930400 01/01/1988 31/12/2500 LIBEN Spring, air or gas guns and pistols, truncheons and other non-firearms (excl. swords, cutlasses, bayonettes and similar arms of heading 9307) 01/01/1988 31/12/2500 -93040000 01/01/1988 31/12/2500 LIBEN Spring, air or gas guns and pistols, truncheons and other non-firearms (excl. swords, cutlasses, bayonettes and similar arms of heading 9307) 01/01/1988 31/12/2500 -9305 01/01/1988 31/12/2500 LIBEN Parts and accessories for weapons and the like of heading 9301 to 9304, n.e.s. 01/01/1988 31/12/2500 -930510 01/01/1988 31/12/2500 LIBEN Parts and accessories for revolvers or pistols, n.e.s. 01/01/1988 31/12/2500 -93051000 01/01/1988 31/12/2016 LIBEN Parts and accessories for revolvers or pistols, n.e.s. 01/01/1988 31/12/2016 -93051000 01/01/2017 31/12/2500 LIBEN Parts and accessories for revolvers or pistols, n.e.s. 01/01/2017 31/12/2500 -930520 01/01/2012 31/12/2500 LIBEN Parts and accessories of shotguns or rifles of heading 9303, n.e.s. 01/01/2012 31/12/2500 -93052000 01/01/2012 31/12/2016 LIBEN Parts and accessories of shotguns or rifles of heading 9303, n.e.s. 01/01/2012 31/12/2016 -93052000 01/01/2017 31/12/2500 LIBEN Parts and accessories of shotguns or rifles of heading 9303, n.e.s. 01/01/2017 31/12/2500 -930521 01/01/1988 31/12/2011 LIBEN Smooth barrels for sporting, hunting and target-shooting rifles of heading 9303 01/01/1988 31/12/2011 -93052100 01/01/1988 31/12/2011 LIBEN Smooth barrels for sporting, hunting and target-shooting rifles of heading 9303 01/01/1988 31/12/2011 -930529 01/01/1988 31/12/2011 LIBEN Parts and accessories for sporting, hunting and target-shooting rifles of heading 9303, n.e.s. (excl. shotgun barrels) 01/01/1988 31/12/2011 -93052900 01/01/2004 31/12/2011 LIBEN Parts and accessories for sporting, hunting and target-shooting rifles of heading 9303, n.e.s. (excl. shotgun barrels) 01/01/2004 31/12/2011 -93052910 01/01/1988 31/12/1996 LIBEN Rifled barrels for sporting, hunting and target-shooting rifles of heading 9303 01/01/1988 31/12/1996 -93052930 01/01/1988 31/12/2003 LIBEN Roughly shaped gun stock blocks for sporting, hunting and target-shooting rifles of heading 9303 01/01/1988 31/12/2003 -93052950 01/01/1988 31/12/1994 LIBEN Butt stocks for sporting, hunting and target-shooting rifles of heading 9303 01/01/1988 31/12/1994 -93052980 01/01/1995 31/12/1996 LIBEN Parts and accessories for sporting, hunting or target-shooting shotguns of heading 9303, n.e.s. 01/01/1995 31/12/1996 -93052990 01/01/1988 31/12/1994 LIBEN Parts and accessories for sporting, hunting and target-shooting rifles of heading 9303, n.e.s. 01/01/1988 31/12/1994 -93052995 01/01/1997 31/12/2003 LIBEN Rifled barrels and other parts and accessories for sporting, hunting or target-shooting shotguns of heading 9303, n.e.s. (excl. shotgun barrels and roughly shaped gun stock blocks) 01/01/1997 31/12/2003 -930590 01/01/1988 31/12/2001 LIBEN Parts and accessories for weapons and the like of heading 9301, 9303 or 9304, n.e.s. 01/01/1988 31/12/2001 -93059010 01/01/1988 31/12/2001 LIBEN Parts and accessories for military weapons of heading 9301, n.e.s. 01/01/1988 31/12/2001 -93059090 01/01/1988 31/12/2001 LIBEN Parts and accessories for weapons and the like of heading 9303 or 9304, n.e.s. 01/01/1988 31/12/2001 -930591 01/01/2002 31/12/2500 LIBEN Parts and accessories of military weapons of heading 9301, n.e.s. 01/01/2002 31/12/2500 -93059100 01/01/2002 31/12/2500 LIBEN Parts and accessories of military weapons of heading 9301, n.e.s. 01/01/2002 31/12/2500 -930599 01/01/2002 31/12/2500 LIBEN Parts and accessories for weapons and the like of heading 9303 or 9304, n.e.s. (excl. of shotguns or rifles of heading 9303) 01/01/2002 31/12/2500 -93059900 01/01/2002 31/12/2016 LIBEN Parts and accessories for weapons and the like of heading 9303 or 9304, n.e.s. (excl. of shotguns or rifles of heading 9303) 01/01/2002 31/12/2016 -93059900 01/01/2017 31/12/2500 LIBEN Parts and accessories for weapons and the like of heading 9303 or 9304, n.e.s. (excl. of shotguns or rifles of heading 9303) 01/01/2017 31/12/2500 -9305S8 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 9305 and SITC section 8 01/01/1997 31/12/2500 -9305S891 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 9305 and SITC group 891 01/01/1997 31/12/2500 -9306 01/01/1988 31/12/2500 LIBEN Bombs, grenades, torpedos, mines, missiles, cartridges and other ammunition and projectiles and parts thereof, incl. buckshot, shot and cartridge wads, n.e.s. 01/01/1988 31/12/2500 -930610 01/01/1988 31/12/2006 LIBEN Cartridges for riveting or similar tools or for captive-bolt humane killers and parts thereof, n.e.s. 01/01/1988 31/12/2006 -93061000 01/01/1988 31/12/2006 LIBEN Cartridges for riveting or similar tools or for captive-bolt humane killers and parts thereof, n.e.s. 01/01/1988 31/12/2006 -930621 01/01/1988 31/12/2500 LIBEN Cartridges for smooth-barrelled shotguns 01/01/1988 31/12/2500 -93062100 01/01/1988 31/12/2016 LIBEN Cartridges for smooth-barrelled shotguns 01/01/1988 31/12/2016 -93062100 01/01/2017 31/12/2500 LIBEN Cartridges for smooth-barrelled shotguns 01/01/2017 31/12/2500 -930629 01/01/1988 31/12/2500 LIBEN Parts of cartridges for smooth-barrelled shotguns; lead shot for air rifles and pistols 01/01/1988 31/12/2500 -93062900 01/01/2011 31/12/2016 LIBEN Parts of cartridges for smooth-barrelled shotguns; lead shot for air rifles and pistols 01/01/2011 31/12/2016 -93062900 01/01/2017 31/12/2500 LIBEN Parts of cartridges for smooth-barrelled shotguns; lead shot for air rifles and pistols 01/01/2017 31/12/2500 -93062910 01/01/1988 31/12/1988 LIBEN Bullets and lead shot for sporting, hunting or target-shooting cartridges 01/01/1988 31/12/1988 -93062910 01/01/1990 31/12/1994 LIBEN Lead shot for air rifles and pistols 01/01/1990 31/12/1994 -93062920 01/01/1989 31/12/1994 LIBEN Bullets and lead shot for shotgun cartridges (excl. airgun pellets) 01/01/1989 31/12/1994 -93062930 01/01/1988 31/12/1988 LIBEN Cases for cartridges for smooth-barrelled shotguns 01/01/1988 31/12/1988 -93062940 01/01/1989 31/12/2010 LIBEN Cases for shotgun cartridges 01/01/1989 31/12/2010 -93062950 01/01/1988 31/12/1989 LIBEN Lead shot for air rifles and pistols 01/01/1988 31/12/1989 -93062970 01/01/1995 31/12/2010 LIBEN Parts of cartridges for smooth-bore shotguns or rifles, n.e.s.; lead pellets for airguns 01/01/1995 31/12/2010 -93062980 01/01/1989 31/12/1994 LIBEN Parts of shotgun cartridges (excl. 9306.29-20 to 9306.29-40), incl. cartridge wads 01/01/1989 31/12/1994 -93062990 01/01/1988 31/12/1988 LIBEN Parts of cartridges for smooth-barrelled shotguns n.e.s. 01/01/1988 31/12/1988 -930630 01/01/1988 31/12/2500 LIBEN Cartridges for smooth-barrelled shotguns, revolvers and pistols and cartridges for riveting or similar tools or for captive-bolt humane killers, and parts thereof 01/01/1988 31/12/2500 -93063010 01/01/1988 31/12/2016 LIBEN Cartridges and parts thereof for revolvers and pistols of heading 9302 and for sub-machine-guns of heading 9301 01/01/1988 31/12/2016 -93063010 01/01/2017 31/12/2500 LIBEN Cartridges and parts thereof for revolvers and pistols of heading 9302 and for sub-machine-guns of heading 9301 01/01/2017 31/12/2500 -93063030 01/01/1988 31/12/2016 LIBEN Cartridges and parts thereof for military weapons 01/01/1988 31/12/2016 -93063030 01/01/2017 31/12/2500 LIBEN Cartridges and parts thereof for military weapons 01/01/2017 31/12/2500 -93063090 01/01/2011 31/12/2016 LIBEN Cartridges and parts thereof, n.e.s. 01/01/2011 31/12/2016 -93063090 01/01/2017 31/12/2500 LIBEN Cartridges and parts thereof, n.e.s. 01/01/2017 31/12/2500 -93063091 01/01/1988 31/12/2010 LIBEN Centrefire cartridges for rifle-barrelled shotguns 01/01/1988 31/12/2010 -93063093 01/01/1988 31/12/2010 LIBEN Rimfire cartridges for rifle-barrelled shotguns 01/01/1988 31/12/2010 -93063095 01/01/1988 31/12/1994 LIBEN Cases for cartridges for rifle-barrelled shotguns [01/01/1988-31/12/1988: cases for cartridges (excl. 9306.10-00, 9306.29-40, 9306.30-10 and 9306.30-30)] 01/01/1988 31/12/1994 -93063097 01/01/2007 31/12/2010 LIBEN Cartridges and parts thereof, n.e.s. 01/01/2007 31/12/2010 -93063098 01/01/1995 31/12/2006 LIBEN Cartridges and parts thereof, n.e.s. 01/01/1995 31/12/2006 -93063099 01/01/1988 31/12/1994 LIBEN Cartridges and parts thereof n.e.s. 01/01/1988 31/12/1994 -930690 01/01/1988 31/12/2500 LIBEN Bombs, grenades, torpedos, mines, missiles, and other ammunition and projectiles, and parts thereof, n.e.s. (excl. cartridges) 01/01/1988 31/12/2500 -93069010 01/01/1988 31/12/2016 LIBEN Bombs, grenades, torpedos, mines, missiles and other ammunition and projectiles, and parts thereof for military purposes, n.e.s. (excl. cartridges) 01/01/1988 31/12/2016 -93069010 01/01/2017 31/12/2500 LIBEN Bombs, grenades, torpedos, mines, missiles and other ammunition and projectiles, and parts thereof for military purposes, n.e.s. (excl. cartridges) 01/01/2017 31/12/2500 -93069090 01/01/1988 31/12/2016 LIBEN Ammunition and projectiles and parts thereof, n.e.s. (excl. for military purposes) 01/01/1988 31/12/2016 -93069090 01/01/2017 31/12/2500 LIBEN Ammunition and projectiles and parts thereof, n.e.s. (excl. for military purposes) 01/01/2017 31/12/2500 -9306S8 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 9306 and SITC section 8 01/01/1997 31/12/2500 -9306S891 01/01/1997 31/12/2500 LIBEN Confidential trade of heading 9306 and SITC group 891 01/01/1997 31/12/2500 -9307 01/01/1988 31/12/2500 LIBEN Swords, cutlasses, bayonets, lances and similar arms and parts thereof, and scabbards and sheaths therefor (excl. of precious metal or of metal clad with precious metal, blunt weapons for fencing, hunting knives and daggers, camping knives and other knives of heading 8211, sword belts and the like of leather or textile materials, and sword knots) 01/01/1988 31/12/2500 -930700 01/01/1988 31/12/2500 LIBEN Swords, cutlasses, bayonets, lances and similar arms and parts thereof, and scabbards and sheaths therefor (excl. of precious metal or of metal clad with precious metal, blunt weapons for fencing, hunting knives and daggers, camping knives and other knives of heading 8211, sword belts and the like of leather or textile materials, and sword knots) 01/01/1988 31/12/2500 -93070000 01/01/1988 31/12/2500 LIBEN Swords, cutlasses, bayonets, lances and similar arms and parts thereof, and scabbards and sheaths therefor (excl. of precious metal or of metal clad with precious metal, blunt weapons for fencing, hunting knives and daggers, camping knives and other knives of heading 8211, sword belts and the like of leather or textile materials, and sword knots) 01/01/1988 31/12/2500 -93CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 93 01/01/2002 31/12/2500 -93CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 93 01/01/2002 31/12/2500 -93CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 93 01/01/2002 31/12/2500 -93MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -93MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -93MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -93SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 93 01/01/1988 31/12/2500 -93SSS8 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 93 and SITC section 8 01/01/1988 31/12/2500 -93SSS891 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 93 and SITC group 891 01/01/1988 31/12/2500 -93SSS894 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 93 and SITC group 894 01/01/1997 31/12/2500 -93SSS9 01/01/1988 31/12/1989 LIBEN Confidential trade of chapter 93 and SITC section 9 01/01/1988 31/12/1989 -93SSS9 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 93 and SITC section 9 01/01/1990 31/12/2500 -93SSS951 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 93 and SITC group 951 01/01/1997 31/12/2500 -93SSS981 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 93 and SITC group 981 01/01/1990 31/12/2500 -93SSS999 01/01/1988 31/12/1991 LIBEN Confidential trade of chapter 93 and SITC group 999 01/01/1988 31/12/1991 -93SSS999 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 93 and SITC group 999 01/01/1992 31/12/2500 -94 01/01/1988 31/12/2500 LIBEN FURNITURE; BEDDING, MATTRESSES, MATTRESS SUPPORTS, CUSHIONS AND SIMILAR STUFFED FURNISHINGS; LAMPS AND LIGHTING FITTINGS, NOT ELSEWHERE SPECIFIED OR INCLUDED; ILLUMINATED SIGNS, ILLUMINATED NAMEPLATES AND THE LIKE; PREFABRICATED BUILDINGS 01/01/1988 31/12/2500 -9401 01/01/1988 31/12/2500 LIBEN Seats, whether or not convertible into beds, and parts thereof, n.e.s. (excl. medical, surgical, dental or veterinary of heading 9402) 01/01/1988 31/12/2500 -940110 01/01/1988 31/12/2500 LIBEN Seats for aircraft 01/01/1988 31/12/2500 -94011000 01/01/2006 31/12/2500 LIBEN Seats for aircraft 01/01/2006 31/12/2500 -94011010 01/01/1988 31/12/2005 LIBEN Seats for civil aircraft (excl. leather-covered) 01/01/1988 31/12/2005 -94011090 01/01/1988 31/12/2005 LIBEN Seats for aircraft (excl. leather-covered and for civil aircraft) 01/01/1988 31/12/2005 -940120 01/01/1988 31/12/2500 LIBEN Seats for motor vehicles 01/01/1988 31/12/2500 -94012000 01/01/1988 31/12/2500 LIBEN Seats for motor vehicles 01/01/1988 31/12/2500 -940130 01/01/1988 31/12/2500 LIBEN Swivel seats with variable height adjustments (excl. medical, surgical, dental or veterinary, and barbers' chairs) 01/01/1988 31/12/2500 -94013000 01/01/2011 31/12/2500 LIBEN Swivel seats with variable height adjustments (excl. medical, surgical, dental or veterinary, and barbers' chairs) 01/01/2011 31/12/2500 -94013010 01/01/1988 31/12/2010 LIBEN Swivel seats with variable height adjustments, upholstered, with backrest and fitted with castors or glides (excl. medical, surgical and dental) 01/01/1988 31/12/2010 -94013090 01/01/1988 31/12/2010 LIBEN Swivel seats with variable height adjustments (excl. upholstered, with backrest and fitted with castors or glides, medical, surgical, dental or veterinary, and hairdressers' chairs) 01/01/1988 31/12/2010 -940140 01/01/1988 31/12/2500 LIBEN Seats, convertible into beds (excl. garden seats and camping equipment, and medical, dental or surgical furniture) 01/01/1988 31/12/2500 -94014000 01/01/1988 31/12/2500 LIBEN Seats, convertible into beds (excl. garden seats and camping equipment, and medical, dental or surgical furniture) 01/01/1988 31/12/2500 -940150 01/01/1988 31/12/2006 LIBEN Seats of cane, osier, bamboo or similar materials 01/01/1988 31/12/2006 -94015000 01/01/1988 31/12/2006 LIBEN Seats of cane, osier, bamboo or similar materials 01/01/1988 31/12/2006 -940151 01/01/2007 31/12/2016 LIBEN Seats of bamboo or rattan 01/01/2007 31/12/2016 -94015100 01/01/2007 31/12/2016 LIBEN Seats of bamboo or rattan 01/01/2007 31/12/2016 -940152 01/01/2017 31/12/2500 LIBEN Seats of bamboo 01/01/2017 31/12/2500 -94015200 01/01/2017 31/12/2500 LIBEN Seats of bamboo 01/01/2017 31/12/2500 -940153 01/01/2017 31/12/2500 LIBEN Seats of rattan 01/01/2017 31/12/2500 -94015300 01/01/2017 31/12/2500 LIBEN Seats of rattan 01/01/2017 31/12/2500 -940159 01/01/2007 31/12/2500 LIBEN Seats of cane, osier or similar materials (excl. of bamboo or rattan) 01/01/2007 31/12/2500 -94015900 01/01/2007 31/12/2500 LIBEN Seats of cane, osier or similar materials (excl. of bamboo or rattan) 01/01/2007 31/12/2500 -940161 01/01/1988 31/12/2500 LIBEN Upholstered seats, with wooden frames (excl. convertible into beds) 01/01/1988 31/12/2500 -94016100 01/01/1988 31/12/2500 LIBEN Upholstered seats, with wooden frames (excl. convertible into beds) 01/01/1988 31/12/2500 -940169 01/01/1988 31/12/2500 LIBEN Seats, with wooden frames (excl. upholstered) 01/01/1988 31/12/2500 -94016900 01/01/1988 31/12/2500 LIBEN Seats, with wooden frames (excl. upholstered) 01/01/1988 31/12/2500 -940171 01/01/1988 31/12/2500 LIBEN Upholstered seats, with metal frames (excl. seats for aircraft or motor vehicles, swivel seats with variable height adjustments and medical, dental or surgical furniture) 01/01/1988 31/12/2500 -94017100 01/01/1988 31/12/2500 LIBEN Upholstered seats, with metal frames (excl. seats for aircraft or motor vehicles, swivel seats with variable height adjustments and medical, dental or surgical furniture) 01/01/1988 31/12/2500 -940179 01/01/1988 31/12/2500 LIBEN Seats, with metal frames (excl. upholstered, swivel seats with variable height adjustments and medical, dental or surgical furniture) 01/01/1988 31/12/2500 -94017900 01/01/1988 31/12/2500 LIBEN Seats, with metal frames (excl. upholstered, swivel seats with variable height adjustments and medical, dental or surgical furniture) 01/01/1988 31/12/2500 -940180 01/01/1988 31/12/2500 LIBEN Seats, n.e.s. 01/01/1988 31/12/2500 -94018000 01/01/1988 31/12/2500 LIBEN Seats, n.e.s. 01/01/1988 31/12/2500 -940190 01/01/1988 31/12/2500 LIBEN Parts of seats, n.e.s. 01/01/1988 31/12/2500 -94019010 01/01/1988 31/12/2500 LIBEN Parts of seats used for aircraft, n.e.s. 01/01/1988 31/12/2500 -94019030 01/01/1994 31/12/2500 LIBEN Parts of seats, of wood, n.e.s. 01/01/1994 31/12/2500 -94019080 01/01/1994 31/12/2500 LIBEN Parts of seats, not of wood, n.e.s. 01/01/1994 31/12/2500 -94019090 01/01/1988 31/12/1993 LIBEN Parts of seats n.e.s. 01/01/1988 31/12/1993 -9402 01/01/1988 31/12/2500 LIBEN Medical, surgical, dental or veterinary furniture, e.g. operating tables, examination tables, hospital beds with mechanical fittings and dentists' chairs; barbers' chairs and similar chairs having rotating as well as both reclining and elevating movement; parts thereof 01/01/1988 31/12/2500 -940210 01/01/1988 31/12/2500 LIBEN Dentists', barbers' or similar chairs having rotating as well as both reclining and elevating movement, and parts thereof, n.e.s. 01/01/1988 31/12/2500 -94021000 01/01/1988 31/12/2500 LIBEN Dentists', barbers' or similar chairs having rotating as well as both reclining and elevating movement, and parts thereof, n.e.s. 01/01/1988 31/12/2500 -940290 01/01/1988 31/12/2500 LIBEN Operating tables, examination tables, and other medical, dental, surgical or veterinary furniture (excl. dentists' or similar chairs, special tables for X-ray examination, and stretchers and litters, incl. trolley-stretchers) 01/01/1988 31/12/2500 -94029000 01/01/1988 31/12/2500 LIBEN Operating tables, examination tables, and other medical, dental, surgical or veterinary furniture (excl. dentists' or similar chairs, special tables for X-ray examination, and stretchers and litters, incl. trolley-stretchers) 01/01/1988 31/12/2500 -9402I1 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 9402; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1997 31/12/2005 -9402I100 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 9402; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1997 31/12/2005 -9402I3 01/01/1998 31/12/2005 LIBEN Components of complete industrial plants of heading 9402; mechanical engineering and construction of means of transport; instrument engineering 01/01/1998 31/12/2005 -9402I300 01/01/1998 31/12/2005 LIBEN Components of complete industrial plants of heading 9402; mechanical engineering and construction of means of transport; instrument engineering 01/01/1998 31/12/2005 -9402I7 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9402; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -9402I700 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9402; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1993 31/12/2005 -9403 01/01/1988 31/12/2500 LIBEN Furniture and parts thereof, n.e.s. (excl. seats and medical, surgical, dental or veterinary furniture) 01/01/1988 31/12/2500 -940310 01/01/1988 31/12/2500 LIBEN Metal furniture for offices (excl. seats) 01/01/1988 31/12/2500 -94031010 01/01/1988 31/12/2010 LIBEN Drawing tables for offices, with metal frames (excl. tables with special fittings for drafting of heading 9017) 01/01/1988 31/12/2010 -94031051 01/01/1988 31/12/2500 LIBEN Office desks, with metal frames 01/01/1988 31/12/2500 -94031058 01/01/2011 31/12/2500 LIBEN Metal furniture for offices, of <= 80 cm in height (excl. desks, and tables with special fittings for drafting of heading 9017) 01/01/2011 31/12/2500 -94031059 01/01/1988 31/12/2010 LIBEN Metal furniture for offices, of <= 80 cm in height (excl. desks and drawing tables) 01/01/1988 31/12/2010 -94031091 01/01/1988 31/12/2500 LIBEN Metal cupboards with doors, shutters or flaps, for offices, of > 80 cm in height 01/01/1988 31/12/2500 -94031093 01/01/1988 31/12/2500 LIBEN Metal filing, card-index and other cabinets, for offices, of > 80 cm in height 01/01/1988 31/12/2500 -94031098 01/01/2011 31/12/2500 LIBEN Metal furniture for offices, of > 80 cm in height (excl. tables with special fittings for drawing of heading 9017, cupboards with doors, shutters or flaps, and seats) 01/01/2011 31/12/2500 -94031099 01/01/1988 31/12/2010 LIBEN Metal furniture for offices, of > 80 cm in height (excl. drawing tables, cupboards with doors, shutters or flaps, and seats) 01/01/1988 31/12/2010 -940320 01/01/1988 31/12/2500 LIBEN Metal furniture (excl. for offices, seats and medical, surgical, dental or veterinary furniture) 01/01/1988 31/12/2500 -94032010 01/01/1988 31/12/2005 LIBEN Metal furniture, for civil aircraft (excl. for offices, seats and medical, surgical, dental or veterinary furniture) 01/01/1988 31/12/2005 -94032020 01/01/2006 31/12/2500 LIBEN Metal beds (excl. hospital beds with mechanical fittings) 01/01/2006 31/12/2500 -94032080 01/01/2006 31/12/2500 LIBEN Metal furniture (excl. for offices, medical, surgical, dental or veterinary furniture, beds and seats) 01/01/2006 31/12/2500 -94032091 01/01/1988 31/12/2005 LIBEN Metal beds (excl. for civil aircraft and hospital beds with mechanical fittings) 01/01/1988 31/12/2005 -94032099 01/01/1988 31/12/2005 LIBEN Metal furniture (excl. for civil aircraft, for offices, medical, surgical, dental or veterinary furniture, beds and seats) 01/01/1988 31/12/2005 -940330 01/01/1988 31/12/2500 LIBEN Wooden furniture for offices (excl. seats) 01/01/1988 31/12/2500 -94033011 01/01/1988 31/12/2500 LIBEN Desks for offices, with wooden frames 01/01/1988 31/12/2500 -94033019 01/01/1988 31/12/2500 LIBEN Wooden furniture for offices, of <= 80 cm in height (excl. desks and seats) 01/01/1988 31/12/2500 -94033091 01/01/1988 31/12/2500 LIBEN Wooden cupboards for offices, of > 80 cm in height 01/01/1988 31/12/2500 -94033099 01/01/1988 31/12/2500 LIBEN Wooden furniture for offices, of > 80 cm in height (excl. cupboards) 01/01/1988 31/12/2500 -940340 01/01/1988 31/12/2500 LIBEN Wooden furniture for kitchens (excl. seats) 01/01/1988 31/12/2500 -94034000 01/01/1988 31/12/1993 LIBEN Wooden furniture for kitchens (excl. seats) 01/01/1988 31/12/1993 -94034010 01/01/1994 31/12/2500 LIBEN Fitted kitchen units 01/01/1994 31/12/2500 -94034090 01/01/1994 31/12/2500 LIBEN Wooden furniture of a kind used in kitchens (excl. seats and fitted kitchen units) 01/01/1994 31/12/2500 -940350 01/01/1988 31/12/2500 LIBEN Wooden furniture for bedrooms (excl. seats) 01/01/1988 31/12/2500 -94035000 01/01/1988 31/12/2500 LIBEN Wooden furniture for bedrooms (excl. seats) 01/01/1988 31/12/2500 -940360 01/01/1988 31/12/2500 LIBEN Wooden furniture (excl. for offices, kitchens and bedrooms, and seats) 01/01/1988 31/12/2500 -94036010 01/01/1988 31/12/2500 LIBEN Wooden furniture for dining rooms and living rooms (excl. seats) 01/01/1988 31/12/2500 -94036030 01/01/1988 31/12/2500 LIBEN Wooden furniture for shops (excl. seats) 01/01/1988 31/12/2500 -94036090 01/01/1988 31/12/2500 LIBEN Wooden furniture (excl. for offices or shops, kitchens, dining rooms, living rooms and bedrooms, and seats) 01/01/1988 31/12/2500 -940370 01/01/1988 31/12/2500 LIBEN Furniture of plastics (excl. medical, dental, surgical or veterinary, and seats) 01/01/1988 31/12/2500 -94037000 01/01/2006 31/12/2500 LIBEN Furniture of plastics (excl. medical, dental, surgical or veterinary, and seats) 01/01/2006 31/12/2500 -94037010 01/01/1988 31/12/2005 LIBEN Furniture of plastics, for civil aircraft (excl. medical, dental, surgical or veterinary, and seats) 01/01/1988 31/12/2005 -94037090 01/01/1988 31/12/2005 LIBEN Furniture of plastics (excl. for civil aircraft, medical, dental, surgical or veterinary, and seats) 01/01/1988 31/12/2005 -940380 01/01/1988 31/12/2006 LIBEN Furniture of cane, osier, bamboo or similar materials (excl. of metal, wood and plastics) 01/01/1988 31/12/2006 -94038000 01/01/1988 31/12/2006 LIBEN Furniture of cane, osier, bamboo or similar materials (excl. of metal, wood and plastics) 01/01/1988 31/12/2006 -940381 01/01/2007 31/12/2016 LIBEN Furniture of bamboo or rattan (excl. seats and medical, surgical, dental or veterinary furniture) 01/01/2007 31/12/2016 -94038100 01/01/2007 31/12/2016 LIBEN Furniture of bamboo or rattan (excl. seats and medical, surgical, dental or veterinary furniture) 01/01/2007 31/12/2016 -940382 01/01/2017 31/12/2500 LIBEN Furniture of bamboo (excl. seats and medical, surgical, dental or veterinary furniture) 01/01/2017 31/12/2500 -94038200 01/01/2017 31/12/2500 LIBEN Furniture of bamboo (excl. seats and medical, surgical, dental or veterinary furniture) 01/01/2017 31/12/2500 -940383 01/01/2017 31/12/2500 LIBEN Furniture of rattan (excl. seats and medical, surgical, dental or veterinary furniture) 01/01/2017 31/12/2500 -94038300 01/01/2017 31/12/2500 LIBEN Furniture of rattan (excl. seats and medical, surgical, dental or veterinary furniture) 01/01/2017 31/12/2500 -940389 01/01/2007 31/12/2500 LIBEN Furniture of other materials, including cane, osier or similar materials (excl. of bamboo, rattan, metal, wood and plastics, and seats and medical, surgical, dental or veterinary furniture) 01/01/2007 31/12/2500 -94038900 01/01/2007 31/12/2500 LIBEN Furniture of other materials, including cane, osier or similar materials (excl. of bamboo, rattan, metal, wood and plastics, and seats and medical, surgical, dental or veterinary furniture) 01/01/2007 31/12/2500 -940390 01/01/1988 31/12/2500 LIBEN Parts of furniture, n.e.s. (excl. of seats and medical, surgical, dental or veterinary furniture) 01/01/1988 31/12/2500 -94039010 01/01/1988 31/12/2500 LIBEN Parts of furniture, of metal, n.e.s. (excl. of seats and medical, surgical, dental or veterinary furniture) 01/01/1988 31/12/2500 -94039030 01/01/1988 31/12/2500 LIBEN Parts of furniture, of wood, n.e.s. (excl. seats) 01/01/1988 31/12/2500 -94039090 01/01/1988 31/12/2500 LIBEN Parts of furniture, n.e.s. (excl. of metal or wood, and of seats and medical, surgical, dental or veterinary furniture) 01/01/1988 31/12/2500 -9404 01/01/1988 31/12/2500 LIBEN Mattress supports (excl. spring interiors for seats); articles of bedding and similar furnishing, e.g. mattresses, quilts, eiderdowns, cushions, pouffes and pillows, fitted with springs or stuffed or internally filled with any material or of cellular rubber or plastics, whether or not covered (excl. pneumatic or water mattresses and pillows, blankets and covers) 01/01/1988 31/12/2500 -940410 01/01/1988 31/12/2500 LIBEN Mattress supports for bed frames (excl. spring interiors for seats) 01/01/1988 31/12/2500 -94041000 01/01/1988 31/12/2500 LIBEN Mattress supports for bed frames (excl. spring interiors for seats) 01/01/1988 31/12/2500 -940421 01/01/1988 31/12/2500 LIBEN Mattresses of cellular rubber or plastics, whether or not covered 01/01/1988 31/12/2500 -94042100 01/01/1988 31/12/1988 LIBEN Mattresses of cellular rubber or plastics, whether or not covered 01/01/1988 31/12/1988 -94042110 01/01/1989 31/12/2500 LIBEN Mattresses of cellular rubber 01/01/1989 31/12/2500 -94042190 01/01/1989 31/12/2500 LIBEN Mattresses of cellular plastics 01/01/1989 31/12/2500 -940429 01/01/1988 31/12/2500 LIBEN Mattresses, fitted with springs or stuffed or internally filled with any material (excl. cellular rubber or plastics, pneumatic or water mattresses and pillows) 01/01/1988 31/12/2500 -94042910 01/01/1988 31/12/2500 LIBEN Mattresses with spring interiors 01/01/1988 31/12/2500 -94042990 01/01/1988 31/12/2500 LIBEN Mattresses, stuffed or internally filled with any material (excl. cellular rubber or plastics, with spring interior, and pneumatic or water mattresses and pillows) 01/01/1988 31/12/2500 -940430 01/01/1988 31/12/2500 LIBEN Sleeping bags, whether or non-electrically heated 01/01/1988 31/12/2500 -94043000 01/01/2001 31/12/2500 LIBEN Sleeping bags, whether or non-electrically heated 01/01/2001 31/12/2500 -94043010 01/01/1988 31/12/2000 LIBEN Sleeping bags, whether or non-electrically heated, filled with feathers or down 01/01/1988 31/12/2000 -94043090 01/01/1988 31/12/2000 LIBEN Sleeping bags, whether or non-electrically heated (excl. filled with feathers or down) 01/01/1988 31/12/2000 -940490 01/01/1988 31/12/2500 LIBEN Articles of bedding and similar furnishing, fitted with springs or stuffed or internally filled with any material or of cellular rubber or plastics (excl. mattress supports, mattresses, sleeping bags, pneumatic or water mattresses and pillows, blankets and covers) 01/01/1988 31/12/2500 -94049010 01/01/1988 31/12/2500 LIBEN Articles of bedding and similar furnishing, filled with feather or down (excl. mattresses and sleeping bags) 01/01/1988 31/12/2500 -94049090 01/01/1988 31/12/2500 LIBEN Articles of bedding and similar furnishing, fitted with springs or stuffed or internally filled with any material or of cellular rubber or plastics (excl. filled with feather or down, mattress supports, mattresses, sleeping bags, pneumatic or water mattresses and pillows, blankets and covers) 01/01/1988 31/12/2500 -9404I0 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 9404; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -9404I000 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of heading 9404; energy (including production and distribution of steam and hot water) 01/01/1997 31/12/2005 -9404I1 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9404; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -9404I100 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9404; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1993 31/12/2005 -9404I3 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9404; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -9404I300 01/01/1993 31/12/2005 LIBEN Components of complete industrial plants of heading 9404; mechanical engineering and construction of means of transport; instrument engineering 01/01/1993 31/12/2005 -9405 01/01/1988 31/12/2500 LIBEN Lamps and lighting fittings, incl. searchlights and spotlights, and parts thereof, n.e.s; illuminated signs, illuminated nameplates and the like having a permanently fixed light source, and parts thereof, n.e.s. 01/01/1988 31/12/2500 -940510 01/01/1988 31/12/2500 LIBEN Chandeliers and other electric ceiling or wall lighting fittings (excl. for lighting public open spaces or thoroughfares) 01/01/1988 31/12/2500 -94051010 01/01/1988 31/12/2005 LIBEN Electric ceiling or wall lighting fittings, of base metal or of plastics, for civil aircraft 01/01/1988 31/12/2005 -94051021 01/01/1988 31/12/2500 LIBEN Electric ceiling or wall lighting fittings, of plastics, used with filament lamps 01/01/1988 31/12/2500 -94051028 01/01/2006 31/12/2010 LIBEN Electric ceiling or wall lighting fittings, of plastics, used with discharge lamps 01/01/2006 31/12/2010 -94051029 01/01/1988 31/12/2005 LIBEN Electric ceiling or wall lighting fittings, of plastics, used with discharge lamps (excl. for civil aircraft) 01/01/1988 31/12/2005 -94051030 01/01/1988 31/12/2010 LIBEN Electric ceiling or wall lighting fittings, of ceramic materials 01/01/1988 31/12/2010 -94051040 01/01/2011 31/12/2500 LIBEN Electric ceiling or wall lighting fittings, of plastics or of ceramics (excl. of plastics if used with filament lamps) 01/01/2011 31/12/2500 -94051050 01/01/1988 31/12/2500 LIBEN Chandeliers and other electric ceiling or wall lighting fittings, of glass 01/01/1988 31/12/2500 -94051091 01/01/1988 31/12/2500 LIBEN Electric ceiling or wall lighting fittings, used with filament lamps (excl. lights of plastics, ceramics or glass) 01/01/1988 31/12/2500 -94051098 01/01/2006 31/12/2500 LIBEN Electric ceiling or wall lighting fittings, used with discharge lamps (excl. lights of plastics, ceramics or glass) 01/01/2006 31/12/2500 -94051099 01/01/1988 31/12/2005 LIBEN Electric ceiling or wall lighting fittings, used with discharge lamps (excl. of base metals, for civil aircraft, and lights of plastics, ceramics or glass) 01/01/1988 31/12/2005 -940520 01/01/1988 31/12/2500 LIBEN Electric table, desk, bedside or floor-standing lamps 01/01/1988 31/12/2500 -94052011 01/01/1988 31/12/2500 LIBEN Electric table, desk, bedside or floor-standing lamps, of plastics, used for filament lamps 01/01/1988 31/12/2500 -94052019 01/01/1988 31/12/2010 LIBEN Electric table, desk, bedside or floor-standing lamps, of plastics, used with discharge lamps 01/01/1988 31/12/2010 -94052030 01/01/1988 31/12/2010 LIBEN Electric table, desk, bedside or floor-standing lamps, of ceramic materials 01/01/1988 31/12/2010 -94052040 01/01/2011 31/12/2500 LIBEN Electric table, desk, bedside or floor-standing lamps, of plastics or ceramic materials, used for discharge lamps 01/01/2011 31/12/2500 -94052050 01/01/1988 31/12/2500 LIBEN Electric table, desk, bedside or floor-standing lamps, of glass 01/01/1988 31/12/2500 -94052091 01/01/1988 31/12/2500 LIBEN Electric table, desk, bedside or floor-standing lamps, used with filament lamps (excl. of plastics, ceramics and glass) 01/01/1988 31/12/2500 -94052099 01/01/1988 31/12/2500 LIBEN Electric table, desk, bedside or floor-standing lamps, used with discharge lamps (excl. of plastics, ceramics and glass) 01/01/1988 31/12/2500 -940530 01/01/1988 31/12/2500 LIBEN Electric lighting sets of a kind used for Christmas trees 01/01/1988 31/12/2500 -94053000 01/01/1988 31/12/2500 LIBEN Electric lighting sets of a kind used for Christmas trees 01/01/1988 31/12/2500 -940540 01/01/1988 31/12/2500 LIBEN Electric lamps and lighting fittings, n.e.s. 01/01/1988 31/12/2500 -94054010 01/01/1988 31/12/2500 LIBEN Electric searchlights and spotlights (excl. for aircraft, motor vehicles or bicycles, and searchlight lamps) 01/01/1988 31/12/2500 -94054031 01/01/1988 31/12/2500 LIBEN Electric lamps and lighting fittings, of plastics, used with filament lamps, n.e.s. 01/01/1988 31/12/2500 -94054035 01/01/1988 31/12/2500 LIBEN Electric lamps and lighting fittings, of plastics, used with tubular fluorescent lamps, n.e.s. 01/01/1988 31/12/2500 -94054039 01/01/1988 31/12/2500 LIBEN Electric lamps and lighting fittings, of plastics, n.e.s. 01/01/1988 31/12/2500 -94054091 01/01/1988 31/12/2500 LIBEN Electric lamps and lighting fittings, used with filament lamps, n.e.s. (excl. of plastics) 01/01/1988 31/12/2500 -94054095 01/01/1988 31/12/2500 LIBEN Electric lamps and lighting fittings, used with tubular fluorescent lamps, n.e.s. (excl. of plastics) 01/01/1988 31/12/2500 -94054099 01/01/1988 31/12/2500 LIBEN Electric lamps and lighting fittings, n.e.s. (excl. of plastics) 01/01/1988 31/12/2500 -940550 01/01/1988 31/12/2500 LIBEN Non-electrical lamps and lighting fittings, n.e.s. 01/01/1988 31/12/2500 -94055000 01/01/1988 31/12/2500 LIBEN Non-electrical lamps and lighting fittings, n.e.s. 01/01/1988 31/12/2500 -940560 01/01/1988 31/12/2500 LIBEN Illuminated signs, illuminated nameplates and the like, with a permanently fixed light source 01/01/1988 31/12/2500 -94056010 01/01/1988 31/12/2005 LIBEN Illuminated signs, illuminated nameplates and the like, with a permanently fixed light source, of base metals or plastics, for civil aircraft 01/01/1988 31/12/2005 -94056020 01/01/2006 31/12/2500 LIBEN Illuminated signs, illuminated nameplates and the like, with a permanently fixed light source, of plastics 01/01/2006 31/12/2500 -94056080 01/01/2006 31/12/2500 LIBEN Illuminated signs, illuminated nameplates and the like, with a permanently fixed light source, of other materials than plastics 01/01/2006 31/12/2500 -94056091 01/01/1988 31/12/2005 LIBEN Illuminated signs, illuminated nameplates and the like, with a permanently fixed light source, of plastics (excl. illuminated signs, illuminated nameplates and the like for civil aircraft) 01/01/1988 31/12/2005 -94056099 01/01/1988 31/12/2005 LIBEN Illuminated signs, illuminated nameplates and the like, with a permanently fixed light source (excl. of plastics, illuminated signs, illuminated nameplates and the like of base metals, for civil aircraft) 01/01/1988 31/12/2005 -940591 01/01/1988 31/12/2500 LIBEN Parts of lamps and lighting fittings, illuminated signs and nameplates and the like, of glass, n.e.s. 01/01/1988 31/12/2500 -94059110 01/01/2011 31/12/2500 LIBEN Glass parts for electrical lighting fittings (excl. searchlights and spotlights) 01/01/2011 31/12/2500 -94059111 01/01/1988 31/12/2010 LIBEN Facetted glass, plates, balls, pear-shaped drops, flower-shaped pieces, pendants and similar articles for trimming chandeliers 01/01/1988 31/12/2010 -94059119 01/01/1988 31/12/2010 LIBEN Diffusers, ceiling lights, bowls, cups, lamp shades, globes, tulip-shaped pieces and similar glass articles for electrical lighting fittings (excl. chandeliers, searchlights and spotlights) 01/01/1988 31/12/2010 -94059190 01/01/1988 31/12/2500 LIBEN Parts of lamps and lighting fittings, illuminated signs and nameplates and the like, of glass, n.e.s. 01/01/1988 31/12/2500 -940592 01/01/1988 31/12/2500 LIBEN Parts of lamps and lighting fittings, illuminated signs and nameplates and the like, of plastics, n.e.s. 01/01/1988 31/12/2500 -94059200 01/01/2006 31/12/2500 LIBEN Parts of lamps and lighting fittings, illuminated signs and nameplates and the like, of plastics, n.e.s. 01/01/2006 31/12/2500 -94059210 01/01/1988 31/12/2005 LIBEN Parts of electric ceiling or wall lighting fittings, illuminated signs and nameplates and the like, of plastics, for civil aircraft, n.e.s. 01/01/1988 31/12/2005 -94059290 01/01/1988 31/12/2005 LIBEN Parts of lamps and lighting fittings, illuminated signs and nameplates and the like, of plastics, n.e.s. 01/01/1988 31/12/2005 -940599 01/01/1988 31/12/2500 LIBEN Parts of lamps and lighting fittings, illuminated signs and nameplates and the like, n.e.s. 01/01/1988 31/12/2500 -94059900 01/01/2006 31/12/2500 LIBEN Parts of lamps and lighting fittings, illuminated signs and nameplates and the like, n.e.s. 01/01/2006 31/12/2500 -94059910 01/01/1988 31/12/2005 LIBEN Parts of electric ceiling or wall lighting fittings, illuminated signs and nameplates and the like, for civil aircraft, n.e.s. (excl. of glass or plastics) 01/01/1988 31/12/2005 -94059990 01/01/1988 31/12/2005 LIBEN Parts of lamps and lighting fittings, illuminated signs and nameplates and the like, n.e.s. 01/01/1988 31/12/2005 -9406 01/01/1988 31/12/2500 LIBEN Prefabricated buildings, whether or not complete or already assembled 01/01/1988 31/12/2500 -940600 01/01/1988 31/12/2016 LIBEN Prefabricated buildings, whether or not complete or already assembled 01/01/1988 31/12/2016 -94060010 01/01/1988 31/12/2003 LIBEN Prefabricated buildings made entirely or mainly of wood, whether or not complete or already assembled 01/01/1988 31/12/2003 -94060011 01/01/2004 31/12/2016 LIBEN Mobile homes 01/01/2004 31/12/2016 -94060020 01/01/2004 31/12/2016 LIBEN Prefabricated buildings made entirely or mainly of wood, whether or not complete or already assembled (excl. mobile homes) 01/01/2004 31/12/2016 -94060030 01/01/1988 31/12/1993 LIBEN Prefabricated buildings made entirely or mainly of iron or steel, whether or not complete or already assembled 01/01/1988 31/12/1993 -94060031 01/01/1994 31/12/2016 LIBEN Greenhouses, prefabricated, whether or not complete or already assembled, made entirely or mainly of iron or steel 01/01/1994 31/12/2016 -94060038 01/01/2004 31/12/2016 LIBEN Buildings, prefabricated, whether or not complete or already assembled, made entirely or mainly of iron or steel (excl. mobile homes and greenhouses) 01/01/2004 31/12/2016 -94060039 01/01/1994 31/12/2003 LIBEN Buildings, prefabricated, whether or not complete or already assembled, made entirely or mainly of iron or steel (excl. greenhouses) 01/01/1994 31/12/2003 -94060080 01/01/2004 31/12/2016 LIBEN Prefabricated buildings, whether or not complete or already assembled (excl. mobile homes and those made entirely or mainly of wood, iron or steel) 01/01/2004 31/12/2016 -94060090 01/01/1988 31/12/2003 LIBEN Prefabricated buildings, whether or not complete or already assembled (excl. made entirely or mainly of wood, iron or steel) 01/01/1988 31/12/2003 -940610 01/01/2017 31/12/2500 LIBEN Prefabricated buildings of wood, whether or not complete or already assembled 01/01/2017 31/12/2500 -94061000 01/01/2017 31/12/2500 LIBEN Prefabricated buildings of wood, whether or not complete or already assembled 01/01/2017 31/12/2500 -940690 01/01/2017 31/12/2500 LIBEN Prefabricated buildings, whether or not complete or already assembled (excl. of wood) 01/01/2017 31/12/2500 -94069010 01/01/2017 31/12/2500 LIBEN Mobile homes 01/01/2017 31/12/2500 -94069031 01/01/2017 31/12/2500 LIBEN Greenhouses, prefabricated, whether or not complete or already assembled, made entirely or mainly of iron or steel 01/01/2017 31/12/2500 -94069038 01/01/2017 31/12/2500 LIBEN Buildings, prefabricated, whether or not complete or already assembled, made entirely or mainly of iron or steel (excl. mobile homes and greenhouses) 01/01/2017 31/12/2500 -94069090 01/01/2017 31/12/2500 LIBEN Prefabricated buildings, whether or not complete or already assembled (excl. mobile homes and those made entirely or mainly of wood, iron or steel) 01/01/2017 31/12/2500 -94CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 94 01/01/2002 31/12/2500 -94CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 94 01/01/2002 31/12/2500 -94CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 94 01/01/2002 31/12/2500 -94II 01/01/1988 31/12/2500 LIBEN Components of complete industrial plants of chapter 94 01/01/1988 31/12/2500 -94III0 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 94; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -94III0 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of chapter 94 01/01/2001 31/12/2005 -94III0 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 94 01/01/2006 31/12/2500 -94III000 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 94; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/1992 -94III000 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of chapter 94 01/01/2001 31/12/2005 -94III000 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants of chapter 94; energy (including production and distribution of steam and hot water) 01/01/2006 31/12/2500 -94III1 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 94; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -94III100 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 94; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/1992 -94III2 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 94; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -94III200 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 94; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/1992 -94III3 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 94; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -94III3 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of chapter 94; mechanical engineering and construction of means of transport; instrument engineering 01/01/2001 31/12/2005 -94III300 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 94; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/1992 -94III300 01/01/2001 31/12/2005 LIBEN Components of complete industrial plants of chapter 94; mechanical engineering and construction of means of transport; instrument engineering 01/01/2001 31/12/2005 -94III4 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 94; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -94III4 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 94; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1997 31/12/2005 -94III400 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 94; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/1992 -94III400 01/01/1997 31/12/2005 LIBEN Components of complete industrial plants of chapter 94; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1997 31/12/2005 -94III5 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 94; food, drink and tobacco industry 01/01/1988 31/12/2005 -94III500 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 94; food, drink and tobacco industry 01/01/1988 31/12/2005 -94III6 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 94; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -94III600 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 94; textile, leather, footwear and clothing industry 01/01/1988 31/12/1992 -94III7 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 94; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -94III700 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 94; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/1992 -94III8 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 94; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/1992 -94III8 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of chapter 94; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/2000 31/12/2005 -94III800 01/01/1988 31/12/1992 LIBEN Components of complete industrial plants of chapter 94; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/1992 -94III800 01/01/2000 31/12/2005 LIBEN Components of complete industrial plants of chapter 94; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/2000 31/12/2005 -94III9 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 94; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -94III900 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants of chapter 94; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -94MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -94MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -94MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -94SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 94 01/01/1988 31/12/2500 -94SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 94 and SITC section 0 01/01/1997 31/12/2001 -94SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 94 and SITC group 000 01/01/1997 31/12/2001 -94SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 94 and SITC section 8 01/01/1997 31/12/2500 -94SSS811 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 94 and SITC group 811 01/01/1997 31/12/2500 -94SSS813 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 94 and SITC group 813 01/01/1997 31/12/2500 -94SSS821 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 94 and SITC group 821 01/01/1997 31/12/2500 -94SSS872 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 94 and SITC group 872 01/01/1997 31/12/2500 -94SSS894 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 94 and SITC group 894 01/01/1997 31/12/2500 -94SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 94 and SITC section 9 01/01/1988 31/12/1996 -94SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 94 and SITC section 9 01/01/1997 31/12/2500 -94SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 94 and SITC group 999 01/01/1988 31/12/1996 -94SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 94 and SITC group 999 01/01/1997 31/12/2500 -94VV 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 94 for the assembly of motor vehicles 01/01/1988 31/12/2500 -94VVV0 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 94 for the assembly of motor vehicles 01/01/1988 31/12/2500 -94VVV000 01/01/1988 31/12/2500 LIBEN Imported goods of chapter 94 for the assembly of motor vehicles 01/01/1988 31/12/2500 -95 01/01/1988 31/12/2500 LIBEN TOYS, GAMES AND SPORTS REQUISITES; PARTS AND ACCESSORIES THEREOF 01/01/1988 31/12/2500 -9501 01/01/1988 31/12/2006 LIBEN Wheeled toys designed to be ridden by children, e.g. tricycles, scooters, pedal cars (excl. normal bicycles with ball bearings); dolls' carriages 01/01/1988 31/12/2006 -950100 01/01/1988 31/12/2006 LIBEN Wheeled toys designed to be ridden by children, e.g. tricycles, scooters, pedal cars (excl. normal bicycles with ball bearings); dolls' carriages 01/01/1988 31/12/2006 -95010010 01/01/1988 31/12/2006 LIBEN Dolls' carriages 01/01/1988 31/12/2006 -95010090 01/01/1988 31/12/2006 LIBEN Wheeled toys designed to be ridden by children (excl. normal bicycles with ball bearings) 01/01/1988 31/12/2006 -9502 01/01/1988 31/12/2006 LIBEN Dolls representing only human beings 01/01/1988 31/12/2006 -950210 01/01/1988 31/12/2006 LIBEN Dolls representing only human beings, whether or not clothed 01/01/1988 31/12/2006 -95021010 01/01/1988 31/12/2006 LIBEN Plastic dolls representing only human beings, whether or not clothed 01/01/1988 31/12/2006 -95021090 01/01/1988 31/12/2006 LIBEN Dolls representing only human beings, whether or not clothed (excl. of plastic) 01/01/1988 31/12/2006 -950291 01/01/1988 31/12/2006 LIBEN Garments and accessories, footwear and headgear for dolls representing only human beings 01/01/1988 31/12/2006 -95029100 01/01/1988 31/12/2006 LIBEN Garments and accessories, footwear and headgear for dolls representing only human beings 01/01/1988 31/12/2006 -950299 01/01/1988 31/12/2006 LIBEN Parts and accessories for dolls representing only human beings, n.e.s. 01/01/1988 31/12/2006 -95029900 01/01/1988 31/12/2006 LIBEN Parts and accessories for dolls representing only human beings, n.e.s. 01/01/1988 31/12/2006 -9503 01/01/1988 31/12/2500 LIBEN Tricycles, scooters, pedal cars and similar wheeled toys; dolls' carriages; dolls; other toys; reduced-size "scale" recreational models, working or not; puzzles of all kinds 01/01/1988 31/12/2500 -950300 01/01/2007 31/12/2500 LIBEN Tricycles, scooters, pedal cars and similar wheeled toys; dolls' carriages; dolls; other toys; reduced-size "scale" recreational models, working or not; puzzles of all kinds 01/01/2007 31/12/2500 -95030010 01/01/2007 31/12/2500 LIBEN Tricycles, scooters, pedal cars and similar wheeled toys, and dolls' carriages (excl. normal bicycles with ball bearings) 01/01/2007 31/12/2500 -95030021 01/01/2007 31/12/2500 LIBEN Dolls representing only human beings, whether or not clothed 01/01/2007 31/12/2500 -95030029 01/01/2007 31/12/2500 LIBEN Parts and accessories for dolls representing only human beings, n.e.s. 01/01/2007 31/12/2500 -95030030 01/01/2007 31/12/2500 LIBEN Electric trains, incl. tracks, signals and other accessories therefor; reduced-size "scale" model assembly kits 01/01/2007 31/12/2500 -95030035 01/01/2007 31/12/2500 LIBEN Construction sets and constructional toys, of plastics (excl. scale model assembly kits) 01/01/2007 31/12/2500 -95030039 01/01/2007 31/12/2500 LIBEN Construction sets and constructional toys (excl. of plastic and scale model assembly kits) 01/01/2007 31/12/2500 -95030041 01/01/2007 31/12/2500 LIBEN Stuffed toys representing animals or non-human creatures 01/01/2007 31/12/2500 -95030049 01/01/2007 31/12/2500 LIBEN Toys representing animals or non-human creatures (excl. stuffed) 01/01/2007 31/12/2500 -95030055 01/01/2007 31/12/2500 LIBEN Toy musical instruments and apparatus 01/01/2007 31/12/2500 -95030061 01/01/2007 31/12/2500 LIBEN Wooden puzzles 01/01/2007 31/12/2500 -95030069 01/01/2007 31/12/2500 LIBEN Puzzles (excl. of wood) 01/01/2007 31/12/2500 -95030070 01/01/2007 31/12/2500 LIBEN Toys, put up in sets or outfits (excl. electric trains, incl. accessories, scale model assembly kits, construction sets and constructional toys, and puzzles) 01/01/2007 31/12/2500 -95030075 01/01/2007 31/12/2500 LIBEN Plastic toys and models, incorporating a motor (excl. electric trains, scale model assembly kits, and toys representing animals, human or non-human creatures) 01/01/2007 31/12/2500 -95030079 01/01/2007 31/12/2500 LIBEN Toys and models, incorporating a motor (excl. plastic, electric trains, scale model assembly kits, and toys representing animals, human or non-human creatures) 01/01/2007 31/12/2500 -95030081 01/01/2007 31/12/2500 LIBEN Toy weapons 01/01/2007 31/12/2500 -95030085 01/01/2007 31/12/2500 LIBEN Die-cast metal miniature models 01/01/2007 31/12/2500 -95030087 01/01/2017 31/12/2500 LIBEN Portable interactive electronic education toy devices primarily designed for children 01/01/2017 31/12/2500 -95030095 01/01/2007 31/12/2016 LIBEN Plastic toys, n.e.s. 01/01/2007 31/12/2016 -95030095 01/01/2017 31/12/2500 LIBEN Plastic toys, n.e.s. 01/01/2017 31/12/2500 -95030099 01/01/2007 31/12/2016 LIBEN Toys, n.e.s. 01/01/2007 31/12/2016 -95030099 01/01/2017 31/12/2500 LIBEN Toys, n.e.s. 01/01/2017 31/12/2500 -950310 01/01/1988 31/12/2006 LIBEN Electric trains, incl. tracks, signals and other accessories therefor 01/01/1988 31/12/2006 -95031010 01/01/1988 31/12/2006 LIBEN Scale models of electric trains, incl. tracks, signals and other accessories therefor 01/01/1988 31/12/2006 -95031090 01/01/1988 31/12/2006 LIBEN Electric trains, incl. tracks, signals and other accessories therefor (excl. scale models) 01/01/1988 31/12/2006 -950320 01/01/1988 31/12/2006 LIBEN Scale model assembly kits, whether or not working models (excl. electric trains, incl. tracks, signals and other accessories therefor) 01/01/1988 31/12/2006 -95032010 01/01/1988 31/12/2006 LIBEN Scale model assembly kits, whether or not working models, of plastics (excl. electric trains, incl. tracks, signals and other accessories therefor) 01/01/1988 31/12/2006 -95032090 01/01/1988 31/12/2006 LIBEN Scale model assembly kits, whether or not working models (excl. of plastics, and electric trains, incl. tracks, signals and other accessories therefor) 01/01/1988 31/12/2006 -950330 01/01/1988 31/12/2006 LIBEN Construction sets and constructional toys (excl. scale model assembly kits) 01/01/1988 31/12/2006 -95033010 01/01/1988 31/12/2006 LIBEN Construction sets and constructional toys, of wood (excl. scale model assembly kits) 01/01/1988 31/12/2006 -95033030 01/01/1988 31/12/2006 LIBEN Construction sets and constructional toys, of plastics (excl. scale model assembly kits) 01/01/1988 31/12/2006 -95033090 01/01/1988 31/12/2006 LIBEN Construction sets and constructional toys (excl. of wood and plastic, and scale model assembly kits) 01/01/1988 31/12/2006 -950341 01/01/1988 31/12/2006 LIBEN Stuffed toys representing animals or non-human creatures 01/01/1988 31/12/2006 -95034100 01/01/1988 31/12/2006 LIBEN Stuffed toys representing animals or non-human creatures 01/01/1988 31/12/2006 -950349 01/01/1988 31/12/2006 LIBEN Toys representing animals or non-human creatures (excl. stuffed) 01/01/1988 31/12/2006 -95034910 01/01/1988 31/12/2006 LIBEN Wooden toys representing animals or non-human creatures 01/01/1988 31/12/2006 -95034930 01/01/1988 31/12/2006 LIBEN Plastic toys representing animals or non-human creatures (excl. stuffed) 01/01/1988 31/12/2006 -95034990 01/01/1988 31/12/2006 LIBEN Toys representing animals or non-human creatures (excl. of wood and plastics, and stuffed) 01/01/1988 31/12/2006 -950350 01/01/1988 31/12/2006 LIBEN Toy musical instruments and apparatus 01/01/1988 31/12/2006 -95035000 01/01/1988 31/12/2006 LIBEN Toy musical instruments and apparatus 01/01/1988 31/12/2006 -950360 01/01/1988 31/12/2006 LIBEN Puzzles 01/01/1988 31/12/2006 -95036010 01/01/1988 31/12/2006 LIBEN Wooden puzzles 01/01/1988 31/12/2006 -95036090 01/01/1988 31/12/2006 LIBEN Puzzles (excl. of wood) 01/01/1988 31/12/2006 -950370 01/01/1988 31/12/2006 LIBEN Toys, put up in sets or outfits (excl. electric trains, incl. accessories, scale model assembly kits, construction sets and constructional toys, and puzzles) 01/01/1988 31/12/2006 -95037000 01/01/1988 31/12/2006 LIBEN Toys, put up in sets or outfits (excl. electric trains, incl. accessories, scale model assembly kits, construction sets and constructional toys, and puzzles) 01/01/1988 31/12/2006 -950380 01/01/1988 31/12/2006 LIBEN Toys and models, incorporating a motor (excl. electric trains, scale model assembly kits, and toys representing animals, human or non-human creatures) 01/01/1988 31/12/2006 -95038010 01/01/1988 31/12/2006 LIBEN Plastic toys and models, incorporating a motor (excl. electric trains, scale model assembly kits, and toys representing animals, human or non-human creatures) 01/01/1988 31/12/2006 -95038090 01/01/1988 31/12/2006 LIBEN Toys and models, incorporating a motor (excl. plastic, electric trains, scale model assembly kits, and toys representing animals, human or non-human creatures) 01/01/1988 31/12/2006 -950390 01/01/1988 31/12/2006 LIBEN Toys, n.e.s. 01/01/1988 31/12/2006 -95039010 01/01/1988 31/12/2006 LIBEN Toy weapons 01/01/1988 31/12/2006 -95039031 01/01/1988 31/12/1994 LIBEN Plastic toys n.e.s. 01/01/1988 31/12/1994 -95039032 01/01/1995 31/12/2006 LIBEN Toys, of plastics, without mechanical parts, n.e.s. 01/01/1995 31/12/2006 -95039034 01/01/1995 31/12/2006 LIBEN Toys, of plastics, with mechanical parts, n.e.s. 01/01/1995 31/12/2006 -95039035 01/01/1988 31/12/2006 LIBEN Rubber toys, n.e.s. 01/01/1988 31/12/2006 -95039037 01/01/1988 31/12/2006 LIBEN Toys of textile materials, n.e.s. 01/01/1988 31/12/2006 -95039051 01/01/1988 31/12/2006 LIBEN Die-cast metal miniature models 01/01/1988 31/12/2006 -95039055 01/01/1988 31/12/2006 LIBEN Metal toys, n.e.s. 01/01/1988 31/12/2006 -95039099 01/01/1988 31/12/2006 LIBEN Toys, n.e.s. 01/01/1988 31/12/2006 -9504 01/01/1988 31/12/2500 LIBEN Video game consoles and machines, articles for funfair, table or parlour games, incl. pintables, billiards, special tables for casino games and automatic bowling alley equipment 01/01/1988 31/12/2500 -950410 01/01/1988 31/12/2011 LIBEN Video games for use with a television receiver 01/01/1988 31/12/2011 -95041000 01/01/1988 31/12/2006 LIBEN Video games for use with a television receiver 01/01/1988 31/12/2006 -95041000 01/01/2007 31/12/2011 LIBEN Video games for use with a television receiver 01/01/2007 31/12/2011 -950420 01/01/1988 31/12/2500 LIBEN Billiards of all kinds and accessories 01/01/1988 31/12/2500 -95042000 01/01/2011 31/12/2500 LIBEN Billiards of all kinds and accessories 01/01/2011 31/12/2500 -95042010 01/01/1988 31/12/2010 LIBEN Billiard tables 01/01/1988 31/12/2010 -95042090 01/01/1988 31/12/2010 LIBEN Billiards of all kinds and accessories (excl. tables) 01/01/1988 31/12/2010 -950430 01/01/1988 31/12/2500 LIBEN Games with screens, flipper and other games, operated by coins, banknotes, bank cards, tokens or by other means of payment (excl. bowling alley equipment) 01/01/1988 31/12/2500 -95043000 01/01/1988 31/12/1988 LIBEN Games with screens, flipper and other coin-operated or disc-operated games (excl. bowling alley equipment) 01/01/1988 31/12/1988 -95043010 01/01/1989 31/12/2500 LIBEN Games with screen, operated by coins, banknotes, bank cards, tokens or by other means of payment 01/01/1989 31/12/2500 -95043020 01/01/2011 31/12/2500 LIBEN Games without screen, operated by coins, banknotes, bank cards, tokens or by other means of payment (excl. bowling alley equipment) 01/01/2011 31/12/2500 -95043030 01/01/1989 31/12/2010 LIBEN Flipper operated by coins, banknotes, bank cards, tokens or by other means of payment 01/01/1989 31/12/2010 -95043050 01/01/1989 31/12/2010 LIBEN Games without screen, operated by coins, banknotes, bank cards, tokens or by other means of payment (excl. games with screen, flipper and bowling alley equipment) 01/01/1989 31/12/2010 -95043090 01/01/1989 31/12/2006 LIBEN Parts of games operated by coins, banknotes "paper currency", discs or other similar articles (excl. of bowling alley equipment) 01/01/1989 31/12/2006 -95043090 01/01/2007 31/12/2500 LIBEN Parts of games, operated by coins, banknotes, bank cards, tokens or by other means of payment (excl. of bowling alley equipment) 01/01/2007 31/12/2500 -950440 01/01/1988 31/12/2500 LIBEN Playing cards 01/01/1988 31/12/2500 -95044000 01/01/1988 31/12/2500 LIBEN Playing cards 01/01/1988 31/12/2500 -950450 01/01/2012 31/12/2500 LIBEN Video game consoles and machines (excl. operated by any means of payment) 01/01/2012 31/12/2500 -95045000 01/01/2012 31/12/2500 LIBEN Video game consoles and machines (excl. operated by any means of payment) 01/01/2012 31/12/2500 -950490 01/01/1988 31/12/2500 LIBEN Tables for casino games, automatic bowling alley equipment, and other funfair, table or parlour games, incl. pintables (excl. operated by any means of payment, billiards, video game consoles and machines, and playing cards) 01/01/1988 31/12/2500 -95049010 01/01/1988 31/12/2500 LIBEN Electric car racing sets, having the character of competitive games 01/01/1988 31/12/2500 -95049080 01/01/2012 31/12/2500 LIBEN Tables for casino games, automatic bowling alley equipment, and other funfair, table or parlour games, incl. pintables (excl. operated by any means of payment, billiards, video game consoles and machines, playing cards and electric car racing sets having the character of competitive games) 01/01/2012 31/12/2500 -95049090 01/01/1988 31/12/2006 LIBEN Tables for casino games, automatic bowling alley equipment, and other funfair, table or parlour games, incl. pintables (excl. operated by coins, banknotes "paper currency", discs or other similar articles, billiards, video games for use with a television receiver, playing cards and electric car racing sets, having the character of competitive games) 01/01/1988 31/12/2006 -95049090 01/01/2007 31/12/2011 LIBEN Tables for casino games, automatic bowling alley equipment, and other funfair, table or parlour games, incl. pintables (excl. operated by coins, banknotes "paper currency", discs or other similar articles, billiards, video games for use with a television receiver, playing cards and electric car racing sets, having the character of competitive games) 01/01/2007 31/12/2011 -9505 01/01/1988 31/12/2500 LIBEN Festival, carnival or other entertainment articles, incl. conjuring tricks and novelty jokes, n.e.s. 01/01/1988 31/12/2500 -950510 01/01/1988 31/12/2500 LIBEN Christmas articles (excl. candles and electric lighting sets, natural Christmas trees and Christmas tree stands) 01/01/1988 31/12/2500 -95051010 01/01/1988 31/12/2500 LIBEN Christmas articles, of glass (excl. electric lighting sets) 01/01/1988 31/12/2500 -95051090 01/01/1988 31/12/2500 LIBEN Christmas articles (excl. of glass, candles and electric lighting sets, natural Christmas trees and Christmas tree stands) 01/01/1988 31/12/2500 -950590 01/01/1988 31/12/2500 LIBEN Festival, carnival or other entertainment articles, incl. conjuring tricks and novelty jokes, n.e.s. 01/01/1988 31/12/2500 -95059000 01/01/1988 31/12/2500 LIBEN Festival, carnival or other entertainment articles, incl. conjuring tricks and novelty jokes, n.e.s. 01/01/1988 31/12/2500 -9506 01/01/1988 31/12/2500 LIBEN Articles and equipment for general physical exercise, gymnastics, athletics, other sports, incl. table-tennis, or outdoor games, not specified or included in this chapter or elsewhere; swimming pools and paddling pools. 01/01/1988 31/12/2500 -950611 01/01/1988 31/12/2500 LIBEN Skis, for winter sports 01/01/1988 31/12/2500 -95061110 01/01/1988 31/12/2500 LIBEN Cross-country skis 01/01/1988 31/12/2500 -95061120 01/01/1999 31/12/2000 LIBEN Downhill skis, incl. monoskis 01/01/1999 31/12/2000 -95061121 01/01/2001 31/12/2500 LIBEN Monoskis and snowboards 01/01/2001 31/12/2500 -95061129 01/01/2001 31/12/2500 LIBEN Downhill skis (excl. monoskis and snowboards) 01/01/2001 31/12/2500 -95061180 01/01/1999 31/12/2500 LIBEN Snow-skis (excl. cross-country and downhill skis) 01/01/1999 31/12/2500 -95061190 01/01/1988 31/12/1998 LIBEN Skis for ski-jumping and alpine skiing 01/01/1988 31/12/1998 -950612 01/01/1988 31/12/2500 LIBEN Ski bindings 01/01/1988 31/12/2500 -95061200 01/01/1988 31/12/2500 LIBEN Ski bindings 01/01/1988 31/12/2500 -950619 01/01/1988 31/12/2500 LIBEN Ski equipment for winter sports (other than skis and ski-fastenings [ski-bindings]) 01/01/1988 31/12/2500 -95061900 01/01/1995 31/12/2500 LIBEN Ski equipment for winter sports (other than skis and ski-fastenings [ski-bindings]) 01/01/1995 31/12/2500 -95061910 01/01/1988 31/12/1994 LIBEN Ski-sticks 01/01/1988 31/12/1994 -95061990 01/01/1988 31/12/1994 LIBEN Ski equipment for winter sports (excl. skis, bindings and ski-sticks) 01/01/1988 31/12/1994 -950621 01/01/1988 31/12/2500 LIBEN Sailboards 01/01/1988 31/12/2500 -95062100 01/01/1988 31/12/2500 LIBEN Sailboards 01/01/1988 31/12/2500 -950629 01/01/1988 31/12/2500 LIBEN Water-skis, surfboards and other water-sport equipment (other than sailboards) 01/01/1988 31/12/2500 -95062900 01/01/1995 31/12/2500 LIBEN Water-skis, surfboards and other water-sport equipment (other than sailboards) 01/01/1995 31/12/2500 -95062910 01/01/1988 31/12/1994 LIBEN Water-skis 01/01/1988 31/12/1994 -95062990 01/01/1988 31/12/1994 LIBEN Surf-boards and other water sports equipment (excl. sailboards and water-skis) 01/01/1988 31/12/1994 -950631 01/01/1988 31/12/2500 LIBEN Golf clubs, complete 01/01/1988 31/12/2500 -95063100 01/01/1988 31/12/2500 LIBEN Golf clubs, complete 01/01/1988 31/12/2500 -950632 01/01/1988 31/12/2500 LIBEN Golf balls 01/01/1988 31/12/2500 -95063200 01/01/1988 31/12/2500 LIBEN Golf balls 01/01/1988 31/12/2500 -950639 01/01/1988 31/12/2500 LIBEN Golf equipment (excl. balls and complete clubs) 01/01/1988 31/12/2500 -95063910 01/01/1988 31/12/2500 LIBEN Parts of golf clubs 01/01/1988 31/12/2500 -95063990 01/01/1988 31/12/2500 LIBEN Golf equipment (excl. balls, clubs and parts thereof) 01/01/1988 31/12/2500 -950640 01/01/1988 31/12/2500 LIBEN Articles and equipment for table-tennis 01/01/1988 31/12/2500 -95064000 01/01/2011 31/12/2500 LIBEN Articles and equipment for table-tennis 01/01/2011 31/12/2500 -95064010 01/01/1988 31/12/2010 LIBEN Bats, balls and nets for table-tennis 01/01/1988 31/12/2010 -95064090 01/01/1988 31/12/2010 LIBEN Articles and equipment for table-tennis (excl. bats, balls and nets) 01/01/1988 31/12/2010 -950651 01/01/1988 31/12/2500 LIBEN Tennis rackets, whether or not strung (excl. table-tennis bats) 01/01/1988 31/12/2500 -95065100 01/01/1988 31/12/2500 LIBEN Tennis rackets, whether or not strung (excl. table-tennis bats) 01/01/1988 31/12/2500 -950659 01/01/1988 31/12/2500 LIBEN Badminton and similar rackets, whether or not strung (other than tennis rackets and table-tennis bats) 01/01/1988 31/12/2500 -95065900 01/01/1995 31/12/2500 LIBEN Badminton and similar rackets, whether or not strung (other than tennis rackets and table-tennis bats) 01/01/1995 31/12/2500 -95065910 01/01/1988 31/12/1994 LIBEN Badminton rackets, whether or not strung 01/01/1988 31/12/1994 -95065990 01/01/1988 31/12/1994 LIBEN Squash or similar rackets, whether or not strung (excl. tennis rackets, table-tennis bats and badminton rackets) 01/01/1988 31/12/1994 -950661 01/01/1988 31/12/2500 LIBEN Tennis balls (excl. table tennis balls) 01/01/1988 31/12/2500 -95066100 01/01/1988 31/12/2500 LIBEN Tennis balls (excl. table tennis balls) 01/01/1988 31/12/2500 -950662 01/01/1988 31/12/2500 LIBEN Inflatable balls 01/01/1988 31/12/2500 -95066200 01/01/2011 31/12/2500 LIBEN Inflatable balls 01/01/2011 31/12/2500 -95066210 01/01/1988 31/12/2010 LIBEN Inflatable leather balls 01/01/1988 31/12/2010 -95066290 01/01/1988 31/12/2010 LIBEN Inflatable balls (excl. of leather) 01/01/1988 31/12/2010 -950669 01/01/1988 31/12/2500 LIBEN Balls (excl. inflatable, tennis balls, golf balls, and table-tennis balls) 01/01/1988 31/12/2500 -95066910 01/01/1988 31/12/2500 LIBEN Cricket and polo balls 01/01/1988 31/12/2500 -95066990 01/01/1988 31/12/2500 LIBEN Balls (excl. inflatable, golf, table-tennis, tennis, cricket and polo balls) 01/01/1988 31/12/2500 -950670 01/01/1988 31/12/2500 LIBEN Ice skates and roller skates, incl. skating boots with skates or rollers attached 01/01/1988 31/12/2500 -95067010 01/01/1988 31/12/2500 LIBEN Ice skates, incl. skating boots with skates attached 01/01/1988 31/12/2500 -95067030 01/01/1988 31/12/2500 LIBEN Roller skates, incl. skating boots with rollers attached 01/01/1988 31/12/2500 -95067090 01/01/1988 31/12/2500 LIBEN Parts and accessories for ice skates and roller skates, n.e.s. 01/01/1988 31/12/2500 -950691 01/01/1988 31/12/2500 LIBEN Articles and equipment for general physical exercise, gymnastics or athletics 01/01/1988 31/12/2500 -95069100 01/01/1988 31/12/2000 LIBEN Articles and equipment for general physical exercise, gymnastics, athletics, other sports, incl. table-tennis, or outdoor games, not specified or included in this chapter or elsewhere; swimming pools and paddling pools. 01/01/1988 31/12/2000 -95069110 01/01/2001 31/12/2500 LIBEN Exercising apparatus with adjustable resistance mechanisms 01/01/2001 31/12/2500 -95069190 01/01/2001 31/12/2500 LIBEN Articles and equipment for general physical exercise, gymnastics or athletics (excl. exercising apparatus with adjustable resistance mechanisms) 01/01/2001 31/12/2500 -950699 01/01/1988 31/12/2500 LIBEN Articles and equipment for sport and outdoor games n.e.s; swimming and paddling pools 01/01/1988 31/12/2500 -95069910 01/01/1988 31/12/2500 LIBEN Cricket and polo equipment (excl. balls) 01/01/1988 31/12/2500 -95069990 01/01/1988 31/12/2500 LIBEN Articles and equipment for sport and outdoor games n.e.s; swimming and paddling pools 01/01/1988 31/12/2500 -9507 01/01/1988 31/12/2500 LIBEN Fishing rods, fish-hooks and other line fishing tackle n.e.s; fish landing nets, butterfly nets and similar nets; decoys and similar hunting or shooting requisites (excl. those of heading 9208 and 9705) 01/01/1988 31/12/2500 -950710 01/01/1988 31/12/2500 LIBEN Fishing rods 01/01/1988 31/12/2500 -95071000 01/01/1988 31/12/2500 LIBEN Fishing rods 01/01/1988 31/12/2500 -950720 01/01/1988 31/12/2500 LIBEN Fish-hooks, whether or not snelled 01/01/1988 31/12/2500 -95072010 01/01/1988 31/12/2500 LIBEN Fish-hooks, whether or not snelled, unmounted 01/01/1988 31/12/2500 -95072090 01/01/1988 31/12/2500 LIBEN Fish-hooks, whether or not snelled, mounted 01/01/1988 31/12/2500 -950730 01/01/1988 31/12/2500 LIBEN Fishing reels 01/01/1988 31/12/2500 -95073000 01/01/1988 31/12/2500 LIBEN Fishing reels 01/01/1988 31/12/2500 -950790 01/01/1988 31/12/2500 LIBEN Line fishing tackle n.e.s; fish landing nets, butterfly nets and similar nets; decoys and similar hunting or shooting requisites (excl. decoy calls of all kinds and stuffed birds of heading 9705) 01/01/1988 31/12/2500 -95079000 01/01/1988 31/12/2500 LIBEN Line fishing tackle n.e.s; fish landing nets, butterfly nets and similar nets; decoys and similar hunting or shooting requisites (excl. decoy calls of all kinds and stuffed birds of heading 9705) 01/01/1988 31/12/2500 -9508 01/01/1988 31/12/2001 LIBEN Roundabouts, swings, shooting galleries and other fairground amusements; travelling circuses, travelling menageries and travelling theatres (excl. booths, incl. the goods on sale, goods for distribution as prizes, gaming machines accepting coins or tokens, and tractors and other transport vehicles, incl. normal trailers) 01/01/1988 31/12/2001 -9508 01/01/2002 31/12/2500 LIBEN Roundabouts, swings, shooting galleries and other fairground amusements; travelling circuses and travelling menageries; travelling theatres (excl. booths, incl. the goods on sale, goods for distribution as prizes, gaming machines accepting coins or tokens, and tractors and other transport vehicles, incl. normal trailers) 01/01/2002 31/12/2500 -950800 01/01/1988 31/12/2001 LIBEN Roundabouts, swings, shooting galleries and other fairground amusements; travelling circuses, travelling menageries and travelling theatres (excl. booths, incl. the goods on sale, goods for distribution as prizes, gaming machines accepting coins or tokens, and tractors and other transport vehicles, incl. normal trailers) 01/01/1988 31/12/2001 -95080000 01/01/1988 31/12/2001 LIBEN Roundabouts, swings, shooting galleries and other fairground amusements; travelling circuses, travelling menageries and travelling theatres (excl. booths, incl. the goods on sale, goods for distribution as prizes, gaming machines accepting coins or tokens, and tractors and other transport vehicles, incl. normal trailers) 01/01/1988 31/12/2001 -950810 01/01/2002 31/12/2500 LIBEN Travelling circuses and travelling menageries 01/01/2002 31/12/2500 -95081000 01/01/2002 31/12/2500 LIBEN Travelling circuses and travelling menageries 01/01/2002 31/12/2500 -950890 01/01/2002 31/12/2500 LIBEN Roundabouts, swings, shooting galleries and other fairground amusements; travelling theatres (excl. travelling circuses and travelling menageries, booths, incl. the goods on sale, goods for distribution as prizes, gaming machines accepting coins or tokens, and tractors and other transport vehicles, incl. normal trailers) 01/01/2002 31/12/2500 -95089000 01/01/2002 31/12/2500 LIBEN Roundabouts, swings, shooting galleries and other fairground amusements; travelling theatres (excl. travelling circuses and travelling menageries, booths, incl. the goods on sale, goods for distribution as prizes, gaming machines accepting coins or tokens, and tractors and other transport vehicles, incl. normal trailers) 01/01/2002 31/12/2500 -95CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 95 01/01/2002 31/12/2500 -95CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 95 01/01/2002 31/12/2500 -95CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 95 01/01/2002 31/12/2500 -95MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -95MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -95MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -95PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 95 carried by post 01/01/1988 31/12/2500 -95PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 95 carried by post 01/01/1988 31/12/2500 -95PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 95 carried by post 01/01/1988 31/12/2500 -95SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 95 01/01/1988 31/12/2500 -95SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 95 and SITC section 8 01/01/1997 31/12/2500 -95SSS894 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 95 and SITC group 894 01/01/1997 31/12/2500 -95SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 95 and SITC section 9 01/01/1988 31/12/1996 -95SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 95 and SITC section 9 01/01/1997 31/12/2500 -95SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 95 and SITC group 999 01/01/1988 31/12/1996 -95SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 95 and SITC group 999 01/01/1997 31/12/2500 -96 01/01/1988 31/12/2500 LIBEN MISCELLANEOUS MANUFACTURED ARTICLES 01/01/1988 31/12/2500 -9601 01/01/1988 31/12/2500 LIBEN Worked ivory, bone, tortoiseshell, horn, antlers, coral, mother-of-pearl and other animal carving material, and articles of these material, incl. articles obtained by moulding, n.e.s. 01/01/1988 31/12/2500 -960110 01/01/1988 31/12/2500 LIBEN Worked ivory and articles of ivory, n.e.s. 01/01/1988 31/12/2500 -96011000 01/01/1988 31/12/2500 LIBEN Worked ivory and articles of ivory, n.e.s. 01/01/1988 31/12/2500 -960190 01/01/1988 31/12/2500 LIBEN Worked bone, tortoiseshell, horn, antlers, coral, mother-of-pearl and other animal carving material, and articles of these materials, n.e.s. (excl. ivory) 01/01/1988 31/12/2500 -96019000 01/01/2011 31/12/2500 LIBEN Worked bone, tortoiseshell, horn, antlers, coral, mother-of-pearl and other animal carving material, and articles of these materials, n.e.s. (excl. ivory) 01/01/2011 31/12/2500 -96019010 01/01/1988 31/12/2010 LIBEN Worked coral, natural or agglomerated, and articles of coral, n.e.s. 01/01/1988 31/12/2010 -96019090 01/01/1988 31/12/2010 LIBEN Worked bone, tortoiseshell, horn, antlers, mother-of-pearl and other animal carving material and articles of these materials, n.e.s. (excl. ivory or coral) 01/01/1988 31/12/2010 -9602 01/01/1988 31/12/2500 LIBEN Worked vegetable or mineral carving material and articles of these materials n.e.s; moulded or carved articles of wax, of paraffin, of stearin, of natural gums or natural resins or of modelling pastes, and other moulded or carved articles n.e.s; worked, unhardened gelatin, and articles of unhardened gelatin, n.e.s. 01/01/1988 31/12/2500 -960200 01/01/1988 31/12/2500 LIBEN Worked vegetable or mineral carving material and articles of these materials n.e.s; moulded or carved articles of wax, of paraffin, of stearin, of natural gums or natural resins or of modelling pastes, and other moulded or carved articles n.e.s; worked, unhardened gelatin, and articles of unhardened gelatin, n.e.s. 01/01/1988 31/12/2500 -96020000 01/01/1988 31/12/2500 LIBEN Worked vegetable or mineral carving material and articles of these materials n.e.s; moulded or carved articles of wax, of paraffin, of stearin, of natural gums or natural resins or of modelling pastes, and other moulded or carved articles n.e.s; worked, unhardened gelatin, and articles of unhardened gelatin, n.e.s. 01/01/1988 31/12/2500 -9603 01/01/1988 31/12/2500 LIBEN Brooms, brushes, incl. brushes constituting parts of machines, appliances or vehicles, hand-operated mechanical floor sweepers, not motorised, mops and leather dusters; prepared knots and tufts for broom or brush making; paint pads and rollers; squeegees of rubber or similar flexible materials 01/01/1988 31/12/2500 -960310 01/01/1988 31/12/2500 LIBEN Brooms and brushes, consisting of twigs or other vegetable materials bound together, with or without handles 01/01/1988 31/12/2500 -96031000 01/01/1988 31/12/2500 LIBEN Brooms and brushes, consisting of twigs or other vegetable materials bound together, with or without handles 01/01/1988 31/12/2500 -960321 01/01/1988 31/12/2500 LIBEN Tooth brushes, incl. dental-plate brushes 01/01/1988 31/12/2500 -96032100 01/01/1988 31/12/2500 LIBEN Tooth brushes, incl. dental-plate brushes 01/01/1988 31/12/2500 -960329 01/01/1988 31/12/2500 LIBEN Shaving brushes, hair brushes, nail brushes, eyelash brushes and other brushes for use on the person (excl. tooth brushes) 01/01/1988 31/12/2500 -96032910 01/01/1988 31/12/2000 LIBEN Shaving brushes 01/01/1988 31/12/2000 -96032930 01/01/1988 31/12/2500 LIBEN Hair brushes 01/01/1988 31/12/2500 -96032980 01/01/2001 31/12/2500 LIBEN Shaving brushes, nail brushes, eyelash brushes and other brushes for use on the person (excl. tooth brushes, dental-plate brushes and hair brushes) 01/01/2001 31/12/2500 -96032990 01/01/1988 31/12/2000 LIBEN Nail brushes, eyelash brushes and other brushes for use on the person (excl. tooth brushes, shaving brushes and hair brushes) 01/01/1988 31/12/2000 -960330 01/01/1988 31/12/2500 LIBEN Artists' brushes, writing brushes and similar brushes for the application of cosmetics 01/01/1988 31/12/2500 -96033010 01/01/1988 31/12/2500 LIBEN Artists' and writing brushes 01/01/1988 31/12/2500 -96033090 01/01/1988 31/12/2500 LIBEN Brushes for the application of cosmetics 01/01/1988 31/12/2500 -960340 01/01/1988 31/12/2500 LIBEN Paint, distemper, varnish or similar brushes, paint pads and rollers (excl. artists' and similar brushes of subheading 9603.30) 01/01/1988 31/12/2500 -96034010 01/01/1988 31/12/2500 LIBEN Paint, distemper, varnish or similar brushes (excl. artists' and similar brushes of subheading 9603.30) 01/01/1988 31/12/2500 -96034090 01/01/1988 31/12/2500 LIBEN Paint pads and rollers 01/01/1988 31/12/2500 -960350 01/01/1988 31/12/2500 LIBEN Brushes constituting parts of machines, appliances or vehicles 01/01/1988 31/12/2500 -96035000 01/01/1988 31/12/2500 LIBEN Brushes constituting parts of machines, appliances or vehicles 01/01/1988 31/12/2500 -960390 01/01/1988 31/12/2500 LIBEN Mops and leather dusters; prepared knots and tufts for broom or brush making; squeegees of rubber or other flexible materials; brooms and brushes, n.e.s. 01/01/1988 31/12/2500 -96039010 01/01/1988 31/12/2500 LIBEN Hand-operated mechanical floor sweepers, not motorised 01/01/1988 31/12/2500 -96039091 01/01/1988 31/12/2500 LIBEN Road-sweeping brushes; household type brooms and brushes, incl. shoe brushes and clothes brushes; brushes for grooming animals (excl. brushes constituting parts of machines, appliances or vehicles, and brooms or brushes consisting of twigs or other vegetable materials) 01/01/1988 31/12/2500 -96039099 01/01/1988 31/12/2500 LIBEN Mops and leather dusters; prepared knots and tufts for broom or brush making; squeegees of rubber or similar flexible materials; brooms and brushes, n.e.s. 01/01/1988 31/12/2500 -9604 01/01/1988 31/12/2500 LIBEN Hand sieves and hand riddles (excl. colanders) 01/01/1988 31/12/2500 -960400 01/01/1988 31/12/2500 LIBEN Hand sieves and hand riddles (excl. colanders) 01/01/1988 31/12/2500 -96040000 01/01/1988 31/12/2500 LIBEN Hand sieves and hand riddles (excl. colanders) 01/01/1988 31/12/2500 -9605 01/01/1988 31/12/2500 LIBEN Travel sets for personal toilet, sewing or shoe or clothes cleaning (excl. manicure sets) 01/01/1988 31/12/2500 -960500 01/01/1988 31/12/2500 LIBEN Travel sets for personal toilet, sewing or shoe or clothes cleaning (excl. manicure sets) 01/01/1988 31/12/2500 -96050000 01/01/1988 31/12/2500 LIBEN Travel sets for personal toilet, sewing or shoe or clothes cleaning (excl. manicure sets) 01/01/1988 31/12/2500 -9606 01/01/1988 31/12/2500 LIBEN Buttons, press-fasteners, snap-fasteners and press studs, button moulds and other parts of these articles; button blanks (excl. cuff links) 01/01/1988 31/12/2500 -960610 01/01/1988 31/12/2500 LIBEN Press-fasteners, snap-fasteners and press studs and parts therefor 01/01/1988 31/12/2500 -96061000 01/01/1988 31/12/2500 LIBEN Press-fasteners, snap-fasteners and press studs and parts therefor 01/01/1988 31/12/2500 -960621 01/01/1988 31/12/2500 LIBEN Buttons of plastics, not covered with textile material (excl. press-fasteners, snap-fasteners, press studs and cuff links) 01/01/1988 31/12/2500 -96062100 01/01/1988 31/12/2500 LIBEN Buttons of plastics, not covered with textile material (excl. press-fasteners, snap-fasteners, press studs and cuff links) 01/01/1988 31/12/2500 -960622 01/01/1988 31/12/2500 LIBEN Buttons of base metal, not covered with textile material (excl. press-fasteners, snap-fasteners, press studs and cuff links) 01/01/1988 31/12/2500 -96062200 01/01/1988 31/12/2500 LIBEN Buttons of base metal, not covered with textile material (excl. press-fasteners, snap-fasteners, press studs and cuff links) 01/01/1988 31/12/2500 -960629 01/01/1988 31/12/2500 LIBEN Buttons (excl. of plastics or base metal, not covered with textile material, press-fasteners, snap-fasteners, press studs and cuff links) 01/01/1988 31/12/2500 -96062900 01/01/1988 31/12/2500 LIBEN Buttons (excl. of plastics or base metal, not covered with textile material, press-fasteners, snap-fasteners, press studs and cuff links) 01/01/1988 31/12/2500 -960630 01/01/1988 31/12/2500 LIBEN Button moulds and other parts of buttons; button blanks 01/01/1988 31/12/2500 -96063000 01/01/1988 31/12/2500 LIBEN Button moulds and other parts of buttons; button blanks 01/01/1988 31/12/2500 -9607 01/01/1988 31/12/2500 LIBEN Slide fasteners and parts thereof 01/01/1988 31/12/2500 -960711 01/01/1988 31/12/2500 LIBEN Slide fasteners fitted with chain scoops of base metal 01/01/1988 31/12/2500 -96071100 01/01/1988 31/12/2500 LIBEN Slide fasteners fitted with chain scoops of base metal 01/01/1988 31/12/2500 -960719 01/01/1988 31/12/2500 LIBEN Slide fasteners (excl. fitted with chain scoops of base metal) 01/01/1988 31/12/2500 -96071900 01/01/1988 31/12/2500 LIBEN Slide fasteners (excl. fitted with chain scoops of base metal) 01/01/1988 31/12/2500 -960720 01/01/1988 31/12/2500 LIBEN Parts of slide fasteners 01/01/1988 31/12/2500 -96072010 01/01/1995 31/12/2500 LIBEN Parts of slide fasteners of base metal 01/01/1995 31/12/2500 -96072011 01/01/1988 31/12/1994 LIBEN Narrow strips mounted with chain scoops of base metal 01/01/1988 31/12/1994 -96072019 01/01/1988 31/12/1994 LIBEN Slide fastener parts of base metal (excl. narrow strips mounted with chain scoops) 01/01/1988 31/12/1994 -96072090 01/01/1995 31/12/2500 LIBEN Parts of slide fasteners (other than of base metal) 01/01/1995 31/12/2500 -96072091 01/01/1988 31/12/1994 LIBEN Narrow strips mounted with chain scoops (excl. of base metal) 01/01/1988 31/12/1994 -96072099 01/01/1988 31/12/1994 LIBEN Slide fastener parts (excl. of base metal and narrow strips mounted with chain scoops) 01/01/1988 31/12/1994 -9608 01/01/1988 31/12/2500 LIBEN Ball-point pens; felt tipped and other porous-tipped pens and markers; fountain pens, stylograph pens and other pens; duplicating stylos; propelling or sliding pencils; pen-holders, pencil-holders and similar holders; parts thereof, incl. caps and clips (excl. articles of heading 9609) 01/01/1988 31/12/2500 -960810 01/01/1988 31/12/2500 LIBEN Ball-point pens 01/01/1988 31/12/2500 -96081010 01/01/1988 31/12/2500 LIBEN Ball-point pens with liquid ink 01/01/1988 31/12/2500 -96081030 01/01/1988 31/12/2010 LIBEN Ball-point pens with body or cap of precious metal or rolled precious metal (excl. ball-point pens with liquid ink) 01/01/1988 31/12/2010 -96081091 01/01/1988 31/12/2010 LIBEN Ball-point pens with replaceable refill (excl. with body or cap of precious metal or rolled precious metal, and ball-point pens with liquid ink) 01/01/1988 31/12/2010 -96081092 01/01/2011 31/12/2500 LIBEN Ball-point pens with replaceable refill (excl. with liquid ink) 01/01/2011 31/12/2500 -96081099 01/01/1988 31/12/2010 LIBEN Ball-point pens (excl. with replaceable refill, and with liquid ink) 01/01/1988 31/12/2010 -96081099 01/01/2011 31/12/2500 LIBEN Ball-point pens (excl. with replaceable refill, and with liquid ink) 01/01/2011 31/12/2500 -960820 01/01/1988 31/12/2500 LIBEN Felt-tipped and other porous-tipped pens and markers 01/01/1988 31/12/2500 -96082000 01/01/1988 31/12/2500 LIBEN Felt-tipped and other porous-tipped pens and markers 01/01/1988 31/12/2500 -960830 01/01/2012 31/12/2500 LIBEN Fountain pens, stylograph pens and other pens 01/01/2012 31/12/2500 -96083000 01/01/2012 31/12/2500 LIBEN Fountain pens, stylograph pens and other pens 01/01/2012 31/12/2500 -960831 01/01/1988 31/12/2011 LIBEN Indian ink drawing pens 01/01/1988 31/12/2011 -96083100 01/01/1988 31/12/2011 LIBEN Indian ink drawing pens 01/01/1988 31/12/2011 -960839 01/01/1988 31/12/2011 LIBEN Fountain pens, stylograph pens and other pens (excl. indian ink drawing pens) 01/01/1988 31/12/2011 -96083910 01/01/1988 31/12/2011 LIBEN Fountain pens, stylograph pens and other pens, with body or cap of precious metal or rolled precious metal (excl. indian ink drawing pens) 01/01/1988 31/12/2011 -96083990 01/01/1988 31/12/2011 LIBEN Fountain pens, stylograph pens and other pens (excl. with body or cap of precious metal or rolled precious metal, and indian ink drawing pens) 01/01/1988 31/12/2011 -960840 01/01/1988 31/12/2500 LIBEN Propelling or sliding pencils 01/01/1988 31/12/2500 -96084000 01/01/1988 31/12/2500 LIBEN Propelling or sliding pencils 01/01/1988 31/12/2500 -960850 01/01/1988 31/12/2500 LIBEN Sets of articles from two or more of the following: ball-point pens, felt or fibre-tipped pens and markers, fountain pens and propelling pencils 01/01/1988 31/12/2500 -96085000 01/01/1988 31/12/2500 LIBEN Sets of articles from two or more of the following: ball-point pens, felt or fibre-tipped pens and markers, fountain pens and propelling pencils 01/01/1988 31/12/2500 -960860 01/01/1988 31/12/2500 LIBEN Refills for ball-point pens, comprising the ball-point and ink-reservoir 01/01/1988 31/12/2500 -96086000 01/01/2012 31/12/2500 LIBEN Refills for ball-point pens, comprising the ball-point and ink-reservoir 01/01/2012 31/12/2500 -96086010 01/01/1988 31/12/2011 LIBEN Refills for ball-point pens, comprising the ball-point and ink-reservoir, with liquid ink 01/01/1988 31/12/2011 -96086090 01/01/1988 31/12/2011 LIBEN Refills for ball-point pens, comprising the ball-point and ink-reservoir (excl. with liquid ink) 01/01/1988 31/12/2011 -960891 01/01/1988 31/12/2500 LIBEN Pen nibs and nib points 01/01/1988 31/12/2500 -96089100 01/01/1988 31/12/2500 LIBEN Pen nibs and nib points 01/01/1988 31/12/2500 -960899 01/01/1988 31/12/2500 LIBEN Parts of ball-point pens, felt-tipped and other porous-tipped pens and markers, fountain pens and propelling pencils n.e.s, pencil-holders, pen-holders and the like, and duplicating stylos 01/01/1988 31/12/2500 -96089900 01/01/2011 31/12/2500 LIBEN Parts of ball-point pens, felt-tipped and other porous-tipped pens and markers, fountain pens and propelling pencils n.e.s, pencil-holders, pen-holders and the like, and duplicating stylos 01/01/2011 31/12/2500 -96089910 01/01/1988 31/12/2003 LIBEN Pen-holders, pencil-holders and the like 01/01/1988 31/12/2003 -96089920 01/01/2004 31/12/2010 LIBEN Parts of ball point pens, felt-tipped and other porous-tipped pens and markers, fountain pens, stylograph pens and other pens and propelling or sliding pencils, of metal, n.e.s; duplicating stylos, pen-holders, pencil-holders and the like, of metal 01/01/2004 31/12/2010 -96089930 01/01/1988 31/12/1996 LIBEN Refills for felt-tipped and fibre-tipped pens and pencils 01/01/1988 31/12/1996 -96089980 01/01/2004 31/12/2010 LIBEN Parts of ball point pens, felt-tipped and other porous-tipped pens and markers, fountain pens, stylograph pens and other pens and propelling or sliding pencils, of non-metal materials, n.e.s; duplicating stylos, pen-holders, pencil-holders and the like, of non-metal materials 01/01/2004 31/12/2010 -96089991 01/01/1988 31/12/1996 LIBEN Parts of ball-point pens, felt-tipped and other porous-tipped pens and markers, fountain pens and propelling pencils, of metal, n.e.s, and duplicating stylos of metal 01/01/1988 31/12/1996 -96089992 01/01/1997 31/12/2003 LIBEN Parts of ball point pens, felt-tipped and other porous-tipped pens and markers, fountain pens, stylograph pens and other pens and propelling or sliding pencils, of metal, n.e.s; duplicating stylos of metal 01/01/1997 31/12/2003 -96089998 01/01/1997 31/12/2003 LIBEN Parts of ball point pens, felt-tipped and other porous-tipped pens and markers, fountain pens, stylograph pens and other pens and propelling or sliding pencils, of non-metal materials, n.e.s; duplicating stylos of non-metal materials 01/01/1997 31/12/2003 -96089999 01/01/1988 31/12/1996 LIBEN Parts of ball-point pens, felt-tipped and other porous-tipped pens and markers, fountain pens and propelling pencils n.e.s, and duplicating stylos (excl. of metal) 01/01/1988 31/12/1996 -9609 01/01/1988 31/12/2500 LIBEN Pencils, crayons, pencil leads, pastels, drawing charcoals, writing or drawing chalks and tailors' chalks (excl. articles of heading 9608) 01/01/1988 31/12/2500 -960910 01/01/1988 31/12/2500 LIBEN Pencils and crayons, with leads encased in a rigid sheath 01/01/1988 31/12/2500 -96091010 01/01/1988 31/12/2500 LIBEN Pencils, with leads of graphite encased in a rigid sheath 01/01/1988 31/12/2500 -96091090 01/01/1988 31/12/2500 LIBEN Pencils and crayons, with leads encased in a rigid sheath (excl. with leads of graphite) 01/01/1988 31/12/2500 -960920 01/01/1988 31/12/2500 LIBEN Pencil leads, black or coloured 01/01/1988 31/12/2500 -96092000 01/01/1988 31/12/2500 LIBEN Pencil leads, black or coloured 01/01/1988 31/12/2500 -960990 01/01/1988 31/12/2500 LIBEN Pencils, pastels, drawing charcoals, writing or drawing chalks and tailors' chalks 01/01/1988 31/12/2500 -96099010 01/01/1988 31/12/2500 LIBEN Pastels and drawing charcoals 01/01/1988 31/12/2500 -96099090 01/01/1988 31/12/2500 LIBEN Pencils, writing or drawing chalks and tailors' chalks 01/01/1988 31/12/2500 -9610 01/01/1988 31/12/2500 LIBEN Slates and boards, with writing or drawing surfaces, whether or not framed 01/01/1988 31/12/2500 -961000 01/01/1988 31/12/2500 LIBEN Slates and boards, with writing or drawing surfaces, whether or not framed 01/01/1988 31/12/2500 -96100000 01/01/1988 31/12/2500 LIBEN Slates and boards, with writing or drawing surfaces, whether or not framed 01/01/1988 31/12/2500 -9611 01/01/1988 31/12/2500 LIBEN Hand-operated date, sealing or numbering stamps, and the like; hand-operated composing sticks and hand printing sets 01/01/1988 31/12/2500 -961100 01/01/1988 31/12/2500 LIBEN Hand-operated date, sealing or numbering stamps, and the like; hand-operated composing sticks and hand printing sets 01/01/1988 31/12/2500 -96110000 01/01/1988 31/12/2500 LIBEN Hand-operated date, sealing or numbering stamps, and the like; hand-operated composing sticks and hand printing sets 01/01/1988 31/12/2500 -9612 01/01/1988 31/12/2500 LIBEN Typewriter or similar ribbons, inked or otherwise prepared for giving impressions, whether or not on spools or in cartridges; ink-pads, whether or not inked, with or without boxes 01/01/1988 31/12/2500 -961210 01/01/1988 31/12/2500 LIBEN Typewriter or similar ribbons, inked or otherwise prepared for giving impressions, whether or not on spools or in cartridges 01/01/1988 31/12/2500 -96121010 01/01/1988 31/12/2500 LIBEN Typewriter or similar ribbons, inked or otherwise prepared for giving impressions, whether or not on spools or in cartridges, of plastics (excl. woven of textile materials) 01/01/1988 31/12/2500 -96121020 01/01/1995 31/12/2500 LIBEN Ribbons made from man-made fibres, of a width of < 30 mm, permanently enclosed in plastic or metal cartridges, of a kind used in automatic typewriters, automatic data-processing equipment and other equipment 01/01/1995 31/12/2500 -96121080 01/01/1995 31/12/2500 LIBEN Typewriter or similar ribbons, inked or otherwise prepared for giving impressions, whether or not in spools or cartridges, made from fibres or paper (excl. those made from man-made fibres of subheading 9612.10.20) 01/01/1995 31/12/2500 -96121090 01/01/1988 31/12/1994 LIBEN Typewriter or similar ribbons, inked or otherwise prepared for giving impressions, whether or not on spools or in cartridges, woven of textile materials or of paper 01/01/1988 31/12/1994 -961220 01/01/1988 31/12/2500 LIBEN Ink-pads, whether or not inked, with or without boxes 01/01/1988 31/12/2500 -96122000 01/01/1988 31/12/2500 LIBEN Ink-pads, whether or not inked, with or without boxes 01/01/1988 31/12/2500 -9613 01/01/1988 31/12/2500 LIBEN Cigarette lighters and other lighters, whether or not mechanical or electrical and parts thereof, n.e.s. (excl. fuses and primers for propellent powders and explosives of heading 3603) 01/01/1988 31/12/2500 -961310 01/01/1988 31/12/2500 LIBEN Pocket lighters, gas fuelled, non-refillable 01/01/1988 31/12/2500 -96131000 01/01/1988 31/12/2500 LIBEN Pocket lighters, gas fuelled, non-refillable 01/01/1988 31/12/2500 -961320 01/01/1988 31/12/2500 LIBEN Pocket lighters, gas fuelled, refillable 01/01/1988 31/12/2500 -96132000 01/01/2011 31/12/2500 LIBEN Pocket lighters, gas fuelled, refillable 01/01/2011 31/12/2500 -96132010 01/01/1988 31/12/2010 LIBEN Pocket lighters, gas fuelled, refillable, with electrical ignition system 01/01/1988 31/12/2010 -96132090 01/01/1988 31/12/2010 LIBEN Pocket lighters, gas fuelled, refillable, with mechanical ignition system 01/01/1988 31/12/2010 -961330 01/01/1988 31/12/2001 LIBEN Table lighters 01/01/1988 31/12/2001 -96133000 01/01/1988 31/12/2001 LIBEN Table lighters 01/01/1988 31/12/2001 -961380 01/01/1988 31/12/2500 LIBEN Lighters (excl. gas fuelled pocket lighters, and fuses and primers for propellent powders and explosives) 01/01/1988 31/12/2500 -96138000 01/01/1988 31/12/2001 LIBEN Lighters (excl. table and pocket lighters, and fuses and primers for propellent powders and explosives) 01/01/1988 31/12/2001 -96138000 01/01/2002 31/12/2500 LIBEN Lighters (excl. gas fuelled pocket lighters, and fuses and primers for propellent powders and explosives) 01/01/2002 31/12/2500 -961390 01/01/1988 31/12/2500 LIBEN Parts of lighters, n.e.s. 01/01/1988 31/12/2500 -96139000 01/01/1988 31/12/2500 LIBEN Parts of lighters, n.e.s. 01/01/1988 31/12/2500 -9614 01/01/1988 31/12/2500 LIBEN Smoking pipes, incl. pipe bowls, cigar or cigarette holders, and parts thereof, n.e.s. 01/01/1988 31/12/2500 -961400 01/01/2007 31/12/2500 LIBEN Smoking pipes, incl. pipe bowls, cigar or cigarette holders, and parts thereof, n.e.s. 01/01/2007 31/12/2500 -96140010 01/01/2007 31/12/2500 LIBEN Roughly shaped blocks of wood or root, for the manufacture of pipes 01/01/2007 31/12/2500 -96140090 01/01/2007 31/12/2500 LIBEN Smoking pipes, incl. pipe bowls, cigar or cigarette holders, and parts thereof, n.e.s. (excl. roughly shaped blocks of wood for the manufacture of pipes) 01/01/2007 31/12/2500 -961410 01/01/1988 31/12/1995 LIBEN Roughly shaped blocks of wood or root, for the manufacture of pipes 01/01/1988 31/12/1995 -96141000 01/01/1988 31/12/1995 LIBEN Roughly shaped blocks of wood or root, for the manufacture of pipes 01/01/1988 31/12/1995 -961420 01/01/1988 31/12/2006 LIBEN Smoking pipes and pipe bowls 01/01/1988 31/12/2006 -96142010 01/01/1988 31/12/1995 LIBEN Smoking pipes and pipe bowls of wood or root (excl. roughly shaped blocks) 01/01/1988 31/12/1995 -96142020 01/01/1996 31/12/2006 LIBEN Roughly shaped blocks of wood or root, for the manufacture of pipes 01/01/1996 31/12/2006 -96142080 01/01/1996 31/12/2006 LIBEN Smoking pipes and pipe bowls (excl. roughly shaped blocks of wood for the manufacture of pipes) 01/01/1996 31/12/2006 -96142090 01/01/1988 31/12/1995 LIBEN Smoking pipes and pipe bowls (excl. of wood or root) 01/01/1988 31/12/1995 -961490 01/01/1988 31/12/2006 LIBEN Parts of smoking pipes, n.e.s.; cigar or cigarette holders, and parts thereof, n.e.s. 01/01/1988 31/12/2006 -96149000 01/01/1988 31/12/2006 LIBEN Parts of smoking pipes, n.e.s.; cigar or cigarette holders, and parts thereof, n.e.s. 01/01/1988 31/12/2006 -9615 01/01/1988 31/12/2500 LIBEN Combs, hair-slides and the like; hairpins; curling pins, curling grips, hair-curlers and the like, and parts thereof, n.e.s. (excl. electro-thermic appliances of heading 8516) 01/01/1988 31/12/2500 -961511 01/01/1988 31/12/2500 LIBEN Combs, hair-slides and the like of hard rubber or plastics 01/01/1988 31/12/2500 -96151100 01/01/1988 31/12/2500 LIBEN Combs, hair-slides and the like of hard rubber or plastics 01/01/1988 31/12/2500 -961519 01/01/1988 31/12/2500 LIBEN Combs, hair-slides and the like (excl. of hard rubber or plastics) 01/01/1988 31/12/2500 -96151900 01/01/1988 31/12/2500 LIBEN Combs, hair-slides and the like (excl. of hard rubber or plastics) 01/01/1988 31/12/2500 -961590 01/01/1988 31/12/2500 LIBEN Hairpins, curling pins, curling grips, hair-curlers and the like, and parts thereof, n.e.s. (excl. electro-thermic appliances of heading 8516) 01/01/1988 31/12/2500 -96159000 01/01/1988 31/12/2500 LIBEN Hairpins, curling pins, curling grips, hair-curlers and the like, and parts thereof, n.e.s. (excl. electro-thermic appliances of heading 8516) 01/01/1988 31/12/2500 -9616 01/01/1988 31/12/2500 LIBEN Scent sprays and similar toilet sprays, and mounts and heads therefor; powder puffs and pads for the application of cosmetics or toilet preparations 01/01/1988 31/12/2500 -961610 01/01/1988 31/12/2500 LIBEN Scent sprays and similar toilet sprays, and mounts and heads therefor 01/01/1988 31/12/2500 -96161010 01/01/1988 31/12/2500 LIBEN Scent sprays and similar toilet sprays 01/01/1988 31/12/2500 -96161090 01/01/1988 31/12/2500 LIBEN Mounts and heads for scent sprays and similar toilet sprays 01/01/1988 31/12/2500 -961620 01/01/1988 31/12/2500 LIBEN Powder puffs and pads for the application of cosmetics or toilet preparations 01/01/1988 31/12/2500 -96162000 01/01/1988 31/12/2500 LIBEN Powder puffs and pads for the application of cosmetics or toilet preparations 01/01/1988 31/12/2500 -9617 01/01/1988 31/12/2500 LIBEN Vacuum flasks and other vacuum vessels, and parts thereof (excl. glass inners) 01/01/1988 31/12/2500 -961700 01/01/1988 31/12/2500 LIBEN Vacuum flasks and other vacuum vessels, and parts thereof (excl. glass inners) 01/01/1988 31/12/2500 -96170000 01/01/2011 31/12/2500 LIBEN Vacuum flasks and other vacuum vessels, and parts thereof (excl. glass inners) 01/01/2011 31/12/2500 -96170011 01/01/1988 31/12/2010 LIBEN Vacuum flasks and other vacuum vessels, having a capacity of <= 0,75 l 01/01/1988 31/12/2010 -96170019 01/01/1988 31/12/2010 LIBEN Vacuum flasks and other vacuum vessels, having a capacity of > 0,75 l 01/01/1988 31/12/2010 -96170090 01/01/1988 31/12/2010 LIBEN Parts of vacuum flasks and other vacuum vessels (excl. glass inners) 01/01/1988 31/12/2010 -9618 01/01/1988 31/12/2500 LIBEN Tailors' dummies and other lay figures, automata and other animated displays used for shop window dressing (excl. the articles actually on display, educational models and toy dolls) 01/01/1988 31/12/2500 -961800 01/01/1988 31/12/2500 LIBEN Tailors' dummies and other lay figures, automata and other animated displays used for shop window dressing (excl. the articles actually on display, educational models and toy dolls) 01/01/1988 31/12/2500 -96180000 01/01/1988 31/12/2500 LIBEN Tailors' dummies and other lay figures, automata and other animated displays used for shop window dressing (excl. the articles actually on display, educational models and toy dolls) 01/01/1988 31/12/2500 -9619 01/01/2012 31/12/2500 LIBEN Sanitary towels (pads) and tampons, napkins and napkin liners for babies, and similar articles, of any material 01/01/2012 31/12/2500 -961900 01/01/2012 31/12/2500 LIBEN Sanitary towels (pads) and tampons, napkins and napkin liners for babies, and similar articles, of any material 01/01/2012 31/12/2500 -96190011 01/01/2012 31/12/2013 LIBEN Sanitary towels of paper pulp, paper, cellulose wadding or webs of cellulose fibres 01/01/2012 31/12/2013 -96190013 01/01/2012 31/12/2013 LIBEN Tampons of paper pulp, paper, cellulose wadding or webs of cellulose fibres 01/01/2012 31/12/2013 -96190019 01/01/2012 31/12/2013 LIBEN Feminine hygiene products of paper pulp, paper, cellulose wadding or webs of cellulose fibres (excl. sanitary towels and tampons) 01/01/2012 31/12/2013 -96190021 01/01/2012 31/12/2013 LIBEN Napkins and napkin liners for babies, of paper pulp, paper, cellulose wadding or webs of cellulose fibres 01/01/2012 31/12/2013 -96190029 01/01/2012 31/12/2013 LIBEN Sanitary articles, of paper pulp, paper, cellulose wadding or webs of cellulose fibres, for example, incontinence care articles (excl. sanitary towels, tampons, napkins and napkin liners for babies) 01/01/2012 31/12/2013 -96190030 01/01/2014 31/12/2500 LIBEN Sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles, of wadding of textile materials 01/01/2014 31/12/2500 -96190031 01/01/2012 31/12/2013 LIBEN Sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles, of wadding of man-made fibres 01/01/2012 31/12/2013 -96190039 01/01/2012 31/12/2013 LIBEN Sanitary towels and tampons, napkins and napkin liners for babies and similar sanitary articles, of wadding of vegetable textile materials 01/01/2012 31/12/2013 -96190040 01/01/2014 31/12/2500 LIBEN Sanitary towels, tampons and similar articles, of textile materials (excl. of wadding) 01/01/2014 31/12/2500 -96190041 01/01/2012 31/12/2013 LIBEN Sanitary towels, tampons and similar articles, knitted or crocheted, of textile materials (excl. of wadding) 01/01/2012 31/12/2013 -96190049 01/01/2012 31/12/2013 LIBEN Sanitary towels, tampons and similar articles, of textile materials (excl. of wadding, and knitted or crocheted) 01/01/2012 31/12/2013 -96190050 01/01/2014 31/12/2500 LIBEN Napkins and napkin liners for babies, and similar articles, of textile materials (excl. of wadding) 01/01/2014 31/12/2500 -96190051 01/01/2012 31/12/2013 LIBEN Napkins and napkin liners for babies, and similar articles, knitted or crocheted, of textile materials (excl. of wadding) 01/01/2012 31/12/2013 -96190059 01/01/2012 31/12/2013 LIBEN Napkins and napkin liners for babies, and similar articles, of textile materials (excl. of wadding, and knitted or crocheted) 01/01/2012 31/12/2013 -96190071 01/01/2014 31/12/2500 LIBEN Sanitary towels (excl. of textile materials) 01/01/2014 31/12/2500 -96190075 01/01/2014 31/12/2500 LIBEN Tampons (excl. of textile materials) 01/01/2014 31/12/2500 -96190079 01/01/2014 31/12/2500 LIBEN Feminine hygiene products (excl. of textile materials, and sanitary towels and tampons) 01/01/2014 31/12/2500 -96190081 01/01/2014 31/12/2500 LIBEN Napkins and napkin liners for babies (excl. of textile materials) 01/01/2014 31/12/2500 -96190089 01/01/2014 31/12/2500 LIBEN Sanitary articles, e.g. incontinence care articles (excl. of textile materials, and sanitary towels, tampons, napkins and napkin liners for babies) 01/01/2014 31/12/2500 -96190090 01/01/2012 31/12/2013 LIBEN Sanitary towels and tampons, napkins and napkin liners for babies, and similar articles (excl. of paper pulp, paper, cellulose or textile materials) 01/01/2012 31/12/2013 -9620 01/01/2017 31/12/2500 LIBEN Monopods, bipods, tripods and similar articles 01/01/2017 31/12/2500 -962000 01/01/2017 31/12/2500 LIBEN Monopods, bipods, tripods and similar articles 01/01/2017 31/12/2500 -96200010 01/01/2017 31/12/2500 LIBEN Monopods, bipods, tripods and similar articles of a kind used for digital, photographic or video cameras, cinematographic cameras and projectors, and of a kind used for other apparatus of Ch 90 01/01/2017 31/12/2500 -96200091 01/01/2017 31/12/2500 LIBEN Monopods, bipods, tripods and similar articles of plastics or of aluminium (excl. of a kind used for digital, photographic or video cameras, cinematographic cameras and projectors, and of a kind used for other apparatus of Ch 90) 01/01/2017 31/12/2500 -96200099 01/01/2017 31/12/2500 LIBEN Monopods, bipods, tripods and similar articles (excl. of a kind used for digital, photographic or video cameras, cinematographic cameras and projectors, of a kind used for other apparatus of Ch 90, and of plastics or of aluminium) 01/01/2017 31/12/2500 -96CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 96 01/01/2002 31/12/2500 -96CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 96 01/01/2002 31/12/2500 -96CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 96 01/01/2002 31/12/2500 -96MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -96MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -96MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -96PP 01/01/1988 31/12/2500 LIBEN Goods of chapter 96 carried by post 01/01/1988 31/12/2500 -96PPP0 01/01/1988 31/12/2500 LIBEN Goods of chapter 96 carried by post 01/01/1988 31/12/2500 -96PPP000 01/01/1988 31/12/2500 LIBEN Goods of chapter 96 carried by post 01/01/1988 31/12/2500 -96SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 96 01/01/1988 31/12/2500 -96SSS0 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 96 and SITC section 0 01/01/1997 31/12/2001 -96SSS000 01/01/1997 31/12/2001 LIBEN Confidential trade of chapter 96 and SITC group 000 01/01/1997 31/12/2001 -96SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 96 and SITC section 8 01/01/1997 31/12/2500 -96SSS831 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 96 and SITC group 831 01/01/1997 31/12/2500 -96SSS895 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 96 and SITC group 895 01/01/1997 31/12/2500 -96SSS899 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 96 and SITC group 899 01/01/1997 31/12/2500 -96SSS9 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 96 and SITC section 9 01/01/1988 31/12/1996 -96SSS9 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 96 and SITC section 9 01/01/1997 31/12/2500 -96SSS999 01/01/1988 31/12/1996 LIBEN Confidential trade of chapter 96 and SITC group 999 01/01/1988 31/12/1996 -96SSS999 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 96 and SITC group 999 01/01/1997 31/12/2500 -97 01/01/1988 31/12/2500 LIBEN WORKS OF ART, COLLECTORS' PIECES AND ANTIQUES 01/01/1988 31/12/2500 -9701 01/01/1988 31/12/2500 LIBEN Paintings, e.g. oil paintings, watercolours and pastels, and drawings executed entirely by hand (excl. technical drawings and the like of heading 4906, and hand-painted or hand-decorated manufactured articles); collages and similar decorative plaques 01/01/1988 31/12/2500 -970110 01/01/1988 31/12/2500 LIBEN Paintings, e.g. oil paintings, watercolours and pastels, and drawings executed entirely by hand (excl. technical drawings and the like of heading 4906, and hand-painted or hand-decorated manufactured articles) 01/01/1988 31/12/2500 -97011000 01/01/1988 31/12/2500 LIBEN Paintings, e.g. oil paintings, watercolours and pastels, and drawings executed entirely by hand (excl. technical drawings and the like of heading 4906, and hand-painted or hand-decorated manufactured articles) 01/01/1988 31/12/2500 -970190 01/01/1988 31/12/2500 LIBEN Collages and similar decorative plaques 01/01/1988 31/12/2500 -97019000 01/01/1988 31/12/2500 LIBEN Collages and similar decorative plaques 01/01/1988 31/12/2500 -9702 01/01/1988 31/12/2500 LIBEN Original engravings, prints and lithographs 01/01/1988 31/12/2500 -970200 01/01/1988 31/12/2500 LIBEN Original engravings, prints and lithographs 01/01/1988 31/12/2500 -97020000 01/01/1988 31/12/2500 LIBEN Original engravings, prints and lithographs 01/01/1988 31/12/2500 -9703 01/01/1988 31/12/2500 LIBEN Original sculptures and statuary, in any material 01/01/1988 31/12/2500 -970300 01/01/1988 31/12/2500 LIBEN Original sculptures and statuary, in any material 01/01/1988 31/12/2500 -97030000 01/01/1988 31/12/2500 LIBEN Original sculptures and statuary, in any material 01/01/1988 31/12/2500 -9704 01/01/1988 31/12/2500 LIBEN Postage or revenue stamps, stamp-postmarks, first-day covers, postal stationery, stamped paper and the like, used, or if unused, not of current or new issue in which they have, or will have, a recognised face value 01/01/1988 31/12/2500 -970400 01/01/1988 31/12/2500 LIBEN Postage or revenue stamps, stamp-postmarks, first-day covers, postal stationery, stamped paper and the like, used, or if unused, not of current or new issue in which they have, or will have, a recognised face value 01/01/1988 31/12/2500 -97040000 01/01/1988 31/12/2500 LIBEN Postage or revenue stamps, stamp-postmarks, first-day covers, postal stationery, stamped paper and the like, used, or if unused, not of current or new issue in which they have, or will have, a recognised face value 01/01/1988 31/12/2500 -9705 01/01/1988 31/12/2500 LIBEN Collections and collector's pieces of zoological, botanical, mineralogical, anatomical, historical, archaeological, palaeontological, ethnographic or numismatic interest 01/01/1988 31/12/2500 -970500 01/01/1988 31/12/2500 LIBEN Collections and collector's pieces of zoological, botanical, mineralogical, anatomical, historical, archaeological, palaeontological, ethnographic or numismatic interest 01/01/1988 31/12/2500 -97050000 01/01/1988 31/12/2500 LIBEN Collections and collector's pieces of zoological, botanical, mineralogical, anatomical, historical, archaeological, palaeontological, ethnographic or numismatic interest 01/01/1988 31/12/2500 -9706 01/01/1988 31/12/2500 LIBEN Antiques of > 100 years old 01/01/1988 31/12/2500 -970600 01/01/1988 31/12/2500 LIBEN Antiques of > 100 years old 01/01/1988 31/12/2500 -97060000 01/01/1988 31/12/2500 LIBEN Antiques of > 100 years old 01/01/1988 31/12/2500 -97CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 97 01/01/2002 31/12/2500 -97CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 97 01/01/2002 31/12/2500 -97CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 97 01/01/2002 31/12/2500 -97MM 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -97MMM0 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -97MMM000 01/01/1993 31/12/2500 LIBEN Trade broken down at chapter level only 01/01/1993 31/12/2500 -97SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 97 01/01/1988 31/12/2500 -97SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 97 and SITC section 8 01/01/1997 31/12/2500 -97SSS896 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 97 and SITC group 896 01/01/1997 31/12/2500 -97SSS9 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 97 and SITC section 9 01/01/1988 31/12/2500 -97SSS999 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 97 and SITC group 999 01/01/1988 31/12/2500 -99 01/01/1988 31/12/2500 LIBEN Other products 01/01/1988 31/12/2500 -9905 01/01/2011 31/12/2500 LIBEN Personal property belonging to natural persons transfering their normal place of residence 01/01/2011 31/12/2500 -990500 01/01/2011 31/12/2500 LIBEN Personal property belonging to natural persons transfering their normal place of residence 01/01/2011 31/12/2500 -99050000 01/01/2011 31/12/2500 LIBEN Personal property belonging to natural persons transfering their normal place of residence 01/01/2011 31/12/2500 -9919 01/01/2011 31/12/2500 LIBEN The following goods, other than those mentioned above: -- trousseaux and household effects belonging to a person transferring his or her normal place of residence on the occasion of his or her marriage; personal property acquired by inheritance -- school outfits, educational materials and related household effects -- coffins containing bodies, funerary urns containing the ashes of deceased persons, and ornamental funerary articles -- goods for charitable or philanthropic organisations and goods for the benefit of disaster victims 01/01/2011 31/12/2500 -991900 01/01/2011 31/12/2500 LIBEN The following goods, other than those mentioned above: -- trousseaux and household effects belonging to a person transferring his or her normal place of residence on the occasion of his or her marriage; personal property acquired by inheritance -- school outfits, educational materials and related household effects -- coffins containing bodies, funerary urns containing the ashes of deceased persons, and ornamental funerary articles -- goods for charitable or philanthropic organisations and goods for the benefit of disaster victims 01/01/2011 31/12/2500 -99190000 01/01/2011 31/12/2500 LIBEN The following goods, other than those mentioned above: -- trousseaux and household effects belonging to a person transferring his or her normal place of residence on the occasion of his or her marriage; personal property acquired by inheritance -- school outfits, educational materials and related household effects -- coffins containing bodies, funerary urns containing the ashes of deceased persons, and ornamental funerary articles -- goods for charitable or philanthropic organisations and goods for the benefit of disaster victims 01/01/2011 31/12/2500 -9951 01/01/2017 31/12/2500 LIBEN Unspecified goods code (as a result of art. 177 union customs code) 01/01/2017 31/12/2500 -995100 01/01/2017 31/12/2500 LIBEN Unspecified goods code (as a result of art. 177 union customs code) 01/01/2017 31/12/2500 -99510000 01/01/2017 31/12/2500 LIBEN Unspecified goods code (as a result of art. 177 union customs code) 01/01/2017 31/12/2500 -99AA 01/01/1993 31/12/2500 LIBEN Intra-community trade, assimilation class 01/01/1993 31/12/2500 -99AAA0 01/01/1993 31/12/2500 LIBEN Intra-community trade, assimilation class 01/01/1993 31/12/2500 -99AAA000 01/01/1993 31/12/2500 LIBEN Intra-community trade, assimilation class 01/01/1993 31/12/2500 -99BB 01/01/1988 31/12/2500 LIBEN Articles declared as supplies or services for ships and aircrafts, not elsewhere classified 01/01/1988 31/12/2500 -99BBB0 01/01/1988 31/12/2500 LIBEN Articles declared as supplies or services for ships and aircrafts, not elsewhere classified 01/01/1988 31/12/2500 -99BBB000 01/01/1988 31/12/2500 LIBEN Articles declared as supplies or services for ships and aircrafts, not elsewhere classified 01/01/1988 31/12/2500 -99CC 01/01/1999 31/12/2001 LIBEN Temporary corrections due to erroneous codes 01/01/1999 31/12/2001 -99CC 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 99 or any chapter non identified 01/01/2002 31/12/2500 -99CCC0 01/01/1999 31/12/2001 LIBEN Temporary corrections due to erroneous codes 01/01/1999 31/12/2001 -99CCC0 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 99 or any chapter non identified 01/01/2002 31/12/2500 -99CCC000 01/01/1999 31/12/2001 LIBEN Temporary corrections due to erroneous codes 01/01/1999 31/12/2001 -99CCC000 01/01/2002 31/12/2500 LIBEN Corrections due to erroneous codes belonging to chapter 99 or any chapter non identified 01/01/2002 31/12/2500 -99EE 01/01/1993 31/12/2004 LIBEN Sets of goods, not elsewhere classified 01/01/1993 31/12/2004 -99EEE0 01/01/1993 31/12/2004 LIBEN Sets of goods, not elsewhere classified 01/01/1993 31/12/2004 -99EEE010 01/01/1993 31/12/2004 LIBEN Sets of goods, not elsewhere classified 01/01/1993 31/12/2004 -99EEE020 01/01/1993 31/12/2004 LIBEN Sets of goods, not elsewhere classified 01/01/1993 31/12/2004 -99EEE021 01/01/1993 31/12/2004 LIBEN Sets of goods, not elsewhere classified 01/01/1993 31/12/2004 -99EEE022 01/01/1993 31/12/2004 LIBEN Sets of goods, not elsewhere classified 01/01/1993 31/12/2004 -99EEE023 01/01/1993 31/12/2004 LIBEN Sets of goods, not elsewhere classified 01/01/1993 31/12/2004 -99EEE024 01/01/1993 31/12/2004 LIBEN Sets of goods, not elsewhere classified 01/01/1993 31/12/2004 -99EEE025 01/01/1993 31/12/2004 LIBEN Sets of goods, not elsewhere classified 01/01/1993 31/12/2004 -99EEE026 01/01/1993 31/12/2004 LIBEN Sets of goods, not elsewhere classified 01/01/1993 31/12/2004 -99EEE028 01/01/1993 31/12/2004 LIBEN Sets of goods, not elsewhere classified 01/01/1993 31/12/2004 -99EEE029 01/01/1993 31/12/2004 LIBEN Sets of goods, not elsewhere classified 01/01/1993 31/12/2004 -99FF 01/01/2005 31/12/2500 LIBEN Goods destined for the operators of the offshore installation or for the operation of the engines, machines and other equipment of the offshore installation, not elsewhere classified 01/01/2005 31/12/2500 -99FFF0 01/01/2005 31/12/2500 LIBEN Goods destined for the operators of the offshore installation or for the operation of the engines, machines and other equipment of the offshore installation, not elsewhere classified 01/01/2005 31/12/2500 -99FFF000 01/01/2005 31/12/2500 LIBEN Goods destined for the operators of the offshore installation or for the operation of the engines, machines and other equipment of the offshore installation, not elsewhere classified 01/01/2005 31/12/2500 -99II 01/01/1988 31/12/2500 LIBEN Components of complete industrial plants, not elsewhere classified 01/01/1988 31/12/2500 -99III0 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/2005 -99III0 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants, not elsewhere classified 01/01/2006 31/12/2500 -99III000 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; energy (including production and distribution of steam and hot water) 01/01/1988 31/12/2005 -99III000 01/01/2006 31/12/2500 LIBEN Components of complete industrial plants, not elsewhere classified 01/01/2006 31/12/2500 -99III1 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/2005 -99III100 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; extraction of non-energy-producing minerals (including preparation of metalliferous ores and peat extraction); manufacture of non-metallic mineral products (including manufacture of glass and glassware) 01/01/1988 31/12/2005 -99III2 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/2005 -99III200 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; iron and steel industry; manufacture of metal articles excluding mechanical engineering and construction of means of transport 01/01/1988 31/12/2005 -99III3 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/2005 -99III300 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; mechanical engineering and construction of means of transport; instrument engineering 01/01/1988 31/12/2005 -99III4 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/2005 -99III400 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; chemical industry (including man-made fibres industry); rubber and plastics industry 01/01/1988 31/12/2005 -99III5 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; food, drink and tobacco industry 01/01/1988 31/12/2005 -99III500 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; food, drink and tobacco industry 01/01/1988 31/12/2005 -99III6 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; textile, leather, footwear and clothing industry 01/01/1988 31/12/2005 -99III600 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; textile, leather, footwear and clothing industry 01/01/1988 31/12/2005 -99III7 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/2005 -99III700 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; timber and paper industry (including printing and publishing); manufacturing industries not classified elsewhere 01/01/1988 31/12/2005 -99III8 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -99III800 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; transport (excluding services connected with transport, services of travel agents, freight brokers and other agents facilitating the transport of passengers or goods, storage and warehousing) and communications 01/01/1988 31/12/2005 -99III9 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -99III900 01/01/1988 31/12/2005 LIBEN Components of complete industrial plants, not elsewhere classified; collection, purification and distribution of water; services connected with transport; economic activities not classified elsewhere 01/01/1988 31/12/2005 -99PP 01/01/1988 31/12/2500 LIBEN Goods carried by post, not elsewhere classified 01/01/1988 31/12/2500 -99PPP0 01/01/1988 31/12/2500 LIBEN Goods carried by post, not elsewhere classified 01/01/1988 31/12/2500 -99PPP000 01/01/1988 31/12/2500 LIBEN Goods carried by post, not elsewhere classified 01/01/1988 31/12/2500 -99RR 01/01/1988 31/12/2500 LIBEN Goods not elsewhere classified 01/01/1988 31/12/2500 -99RRR0 01/01/1988 31/12/2000 LIBEN Goods not elsewhere classified 01/01/1988 31/12/2000 -99RRR000 01/01/1988 31/12/2000 LIBEN Goods not elsewhere classified 01/01/1988 31/12/2000 -99RRR1 01/01/1988 31/12/2500 LIBEN Returned goods, not elsewhere classified 01/01/1988 31/12/2500 -99RRR100 01/01/1988 31/12/2500 LIBEN Returned goods, not elsewhere classified 01/01/1988 31/12/2500 -99RRR2 01/01/1988 31/12/2500 LIBEN Imported and exported goods not elsewhere classified 01/01/1988 31/12/2500 -99RRR200 01/01/1988 31/12/2500 LIBEN Imported and exported goods not elsewhere classified 01/01/1988 31/12/2500 -99SS 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 99 01/01/1988 31/12/2500 -99SSS0 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC section 0 01/01/1997 31/12/2500 -99SSS012 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 012 01/01/1997 31/12/2500 -99SSS017 01/01/2002 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 017 01/01/2002 31/12/2500 -99SSS022 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 022 01/01/1997 31/12/2500 -99SSS025 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 025 01/01/1997 31/12/2500 -99SSS034 01/01/2002 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 034 01/01/2002 31/12/2500 -99SSS042 01/01/2002 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 042 01/01/2002 31/12/2500 -99SSS047 01/01/2002 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 047 01/01/2002 31/12/2500 -99SSS048 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 048 01/01/1997 31/12/2500 -99SSS054 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 054 01/01/1997 31/12/2500 -99SSS056 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 056 01/01/1997 31/12/2500 -99SSS058 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 058 01/01/1997 31/12/2500 -99SSS059 01/01/2002 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 059 01/01/2002 31/12/2500 -99SSS061 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 061 01/01/1997 31/12/2500 -99SSS062 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 062 01/01/1997 31/12/2500 -99SSS071 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 071 01/01/1997 31/12/2500 -99SSS072 01/01/2002 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 072 01/01/2002 31/12/2500 -99SSS074 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 074 01/01/1997 31/12/2500 -99SSS081 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 081 01/01/1997 31/12/2500 -99SSS098 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 098 01/01/1997 31/12/2500 -99SSS1 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC section 1 01/01/1997 31/12/2500 -99SSS112 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 112 01/01/1997 31/12/2500 -99SSS2 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC section 2 01/01/1990 31/12/2500 -99SSS232 01/01/2002 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 232 01/01/2002 31/12/2500 -99SSS263 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 263 01/01/1997 31/12/2500 -99SSS266 01/01/2003 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 266 01/01/2003 31/12/2500 -99SSS267 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 267 01/01/1997 31/12/2500 -99SSS268 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 268 01/01/1997 31/12/2500 -99SSS272 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 272 01/01/1997 31/12/2500 -99SSS273 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 273 01/01/1997 31/12/2500 -99SSS277 01/01/1990 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 277 01/01/1990 31/12/2500 -99SSS278 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 278 01/01/1997 31/12/2500 -99SSS283 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 283 01/01/1997 31/12/2500 -99SSS284 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 284 01/01/1997 31/12/2500 -99SSS285 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 285 01/01/1997 31/12/2500 -99SSS288 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 288 01/01/1997 31/12/2500 -99SSS289 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 289 01/01/1997 31/12/2500 -99SSS292 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 292 01/01/1997 31/12/2500 -99SSS3 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC section 3 01/01/1997 31/12/2500 -99SSS335 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 335 01/01/1997 31/12/2500 -99SSS343 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 343 01/01/1997 31/12/2500 -99SSS4 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC section 4 01/01/1997 31/12/2500 -99SSS411 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 411 01/01/1997 31/12/2500 -99SSS431 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 431 01/01/1997 31/12/2500 -99SSS5 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC section 5 01/01/1988 31/12/2500 -99SSS512 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 512 01/01/1988 31/12/2500 -99SSS516 01/01/1992 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 516 01/01/1992 31/12/2500 -99SSS522 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 522 01/01/1997 31/12/2500 -99SSS523 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 523 01/01/1997 31/12/2500 -99SSS525 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 525 01/01/1997 31/12/2500 -99SSS532 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 532 01/01/1997 31/12/2500 -99SSS533 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 533 01/01/1997 31/12/2500 -99SSS541 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 541 01/01/1997 31/12/2500 -99SSS562 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 562 01/01/1997 31/12/2500 -99SSS572 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 572 01/01/1997 31/12/2500 -99SSS574 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 574 01/01/1997 31/12/2500 -99SSS575 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 575 01/01/1997 31/12/2500 -99SSS581 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 581 01/01/1997 31/12/2500 -99SSS582 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 582 01/01/1997 31/12/2500 -99SSS592 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 592 01/01/1997 31/12/2500 -99SSS597 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 597 01/01/1997 31/12/2500 -99SSS598 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 598 01/01/1997 31/12/2500 -99SSS6 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC section 6 01/01/1988 31/12/2500 -99SSS641 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 641 01/01/1997 31/12/2500 -99SSS651 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 651 01/01/1997 31/12/2500 -99SSS652 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 652 01/01/1997 31/12/2500 -99SSS653 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 653 01/01/1997 31/12/2500 -99SSS654 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 654 01/01/1997 31/12/2500 -99SSS656 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 656 01/01/1997 31/12/2500 -99SSS657 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 657 01/01/1997 31/12/2500 -99SSS658 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 658 01/01/1997 31/12/2500 -99SSS659 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 659 01/01/1997 31/12/2500 -99SSS661 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 661 01/01/1997 31/12/2500 -99SSS662 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 662 01/01/1997 31/12/2500 -99SSS663 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 663 01/01/1997 31/12/2500 -99SSS664 01/01/2002 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 664 01/01/2002 31/12/2500 -99SSS665 01/01/2002 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 665 01/01/2002 31/12/2500 -99SSS666 01/01/2002 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 666 01/01/2002 31/12/2500 -99SSS671 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 671 01/01/1997 31/12/2500 -99SSS676 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 676 01/01/1997 31/12/2500 -99SSS682 01/01/2002 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 682 01/01/2002 31/12/2500 -99SSS684 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 684 01/01/1997 31/12/2500 -99SSS685 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 685 01/01/1988 31/12/2500 -99SSS686 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 686 01/01/1997 31/12/2500 -99SSS689 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 689 01/01/1997 31/12/2500 -99SSS691 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 691 01/01/1997 31/12/2500 -99SSS692 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 692 01/01/1997 31/12/2500 -99SSS693 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 693 01/01/1997 31/12/2500 -99SSS694 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 694 01/01/1997 31/12/2500 -99SSS695 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 695 01/01/1997 31/12/2500 -99SSS697 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 697 01/01/1997 31/12/2500 -99SSS699 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 699 01/01/1997 31/12/2500 -99SSS7 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC section 7 01/01/1997 31/12/2500 -99SSS713 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 713 01/01/1997 31/12/2500 -99SSS718 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 718 01/01/1997 31/12/2500 -99SSS724 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 724 01/01/1997 31/12/2500 -99SSS737 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 737 01/01/1997 31/12/2500 -99SSS741 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 741 01/01/1997 31/12/2500 -99SSS743 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 743 01/01/1997 31/12/2500 -99SSS744 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 744 01/01/1997 31/12/2500 -99SSS748 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 748 01/01/1997 31/12/2500 -99SSS751 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 751 01/01/1997 31/12/2500 -99SSS759 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 759 01/01/1997 31/12/2500 -99SSS775 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 775 01/01/1997 31/12/2500 -99SSS776 01/01/2003 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 776 01/01/2003 31/12/2500 -99SSS778 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 778 01/01/1997 31/12/2500 -99SSS785 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 785 01/01/1997 31/12/2500 -99SSS786 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 786 01/01/1997 31/12/2500 -99SSS791 01/01/2003 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 791 01/01/2003 31/12/2500 -99SSS8 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC section 8 01/01/1997 31/12/2500 -99SSS812 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 812 01/01/1997 31/12/2500 -99SSS813 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 813 01/01/1997 31/12/2500 -99SSS831 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 831 01/01/1997 31/12/2500 -99SSS845 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 845 01/01/1997 31/12/2500 -99SSS846 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 846 01/01/1997 31/12/2500 -99SSS848 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 848 01/01/1997 31/12/2500 -99SSS851 01/01/2003 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 851 01/01/2003 31/12/2500 -99SSS872 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 872 01/01/1997 31/12/2500 -99SSS873 01/01/2002 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 873 01/01/2002 31/12/2500 -99SSS882 01/01/2002 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 882 01/01/2002 31/12/2500 -99SSS891 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 891 01/01/1997 31/12/2500 -99SSS892 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 892 01/01/1997 31/12/2500 -99SSS893 01/01/2003 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 893 01/01/2003 31/12/2500 -99SSS894 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 894 01/01/1997 31/12/2500 -99SSS895 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 895 01/01/1997 31/12/2500 -99SSS898 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 898 01/01/1997 31/12/2500 -99SSS899 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 899 01/01/1997 31/12/2500 -99SSS89S 01/01/2005 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC division 89 01/01/2005 31/12/2500 -99SSS9 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC section 9 01/01/1988 31/12/2500 -99SSS931 01/01/1997 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 931 01/01/1997 31/12/2500 -99SSS999 01/01/1988 31/12/2500 LIBEN Confidential trade of chapter 99 and SITC group 999 01/01/1988 31/12/2500 -99VV 01/01/1988 31/12/2500 LIBEN Imported goods not elsewhere classified for the assembly of motor vehicles 01/01/1988 31/12/2500 -99VVV0 01/01/1988 31/12/2500 LIBEN Imported goods not elsewhere classified for the assembly of motor vehicles 01/01/1988 31/12/2500 -99VVV000 01/01/1988 31/12/2500 LIBEN Imported goods not elsewhere classified for the assembly of motor vehicles 01/01/1988 31/12/2500 -99YY 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit 01/01/1993 31/12/2500 -99YYY0 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit 01/01/1993 31/12/2500 -99YYY000 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit 01/01/1993 31/12/2500 -99YYY010 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 01 01/01/1993 31/12/2500 -99YYY020 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 02 01/01/1993 31/12/2500 -99YYY030 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 03 01/01/1993 31/12/2500 -99YYY040 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 04 01/01/1993 31/12/2500 -99YYY050 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 05 01/01/1993 31/12/2500 -99YYY060 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 06 01/01/1993 31/12/2500 -99YYY070 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 07 01/01/1993 31/12/2500 -99YYY080 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 08 01/01/1993 31/12/2500 -99YYY090 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 09 01/01/1993 31/12/2500 -99YYY1 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 1 01/01/1993 31/12/2500 -99YYY110 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 11 01/01/1993 31/12/2500 -99YYY120 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 12 01/01/1993 31/12/2500 -99YYY2 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 2 01/01/1993 31/12/2500 -99YYY210 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 21 01/01/1993 31/12/2500 -99YYY220 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 22 01/01/1993 31/12/2500 -99YYY230 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 23 01/01/1993 31/12/2500 -99YYY240 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 24 01/01/1993 31/12/2500 -99YYY250 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 25 01/01/1993 31/12/2500 -99YYY260 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 26 01/01/1993 31/12/2500 -99YYY270 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 27 01/01/1993 31/12/2500 -99YYY280 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 28 01/01/1993 31/12/2500 -99YYY290 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 29 01/01/1993 31/12/2500 -99YYY3 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 3 01/01/1993 31/12/2500 -99YYY320 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 32 01/01/1993 31/12/2500 -99YYY330 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 33 01/01/1993 31/12/2500 -99YYY340 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 34 01/01/1993 31/12/2500 -99YYY350 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 35 01/01/1993 31/12/2500 -99YYY4 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 4 01/01/1993 31/12/2500 -99YYY410 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 41 01/01/1993 31/12/2500 -99YYY420 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 42 01/01/1993 31/12/2500 -99YYY430 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 43 01/01/1993 31/12/2500 -99YYY5 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 5 01/01/1993 31/12/2500 -99YYY510 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 51 01/01/1993 31/12/2500 -99YYY520 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 52 01/01/1993 31/12/2500 -99YYY530 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 53 01/01/1993 31/12/2500 -99YYY540 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 54 01/01/1993 31/12/2500 -99YYY550 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 55 01/01/1993 31/12/2500 -99YYY560 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 56 01/01/1993 31/12/2500 -99YYY570 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 57 01/01/1993 31/12/2500 -99YYY580 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 58 01/01/1993 31/12/2500 -99YYY590 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 59 01/01/1993 31/12/2500 -99YYY6 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 6 01/01/1993 31/12/2500 -99YYY600 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 60 01/01/1993 31/12/2500 -99YYY610 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 61 01/01/1993 31/12/2500 -99YYY620 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 62 01/01/1993 31/12/2500 -99YYY630 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 63 01/01/1993 31/12/2500 -99YYY640 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 64 01/01/1993 31/12/2500 -99YYY650 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 65 01/01/1993 31/12/2500 -99YYY660 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 66 01/01/1993 31/12/2500 -99YYY670 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 67 01/01/1993 31/12/2500 -99YYY680 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 68 01/01/1993 31/12/2500 -99YYY690 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 69 01/01/1993 31/12/2500 -99YYY7 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 7 01/01/1993 31/12/2500 -99YYY700 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 70 01/01/1993 31/12/2500 -99YYY710 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 71 01/01/1993 31/12/2500 -99YYY720 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 72 01/01/1993 31/12/2500 -99YYY730 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 73 01/01/1993 31/12/2500 -99YYY740 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 74 01/01/1993 31/12/2500 -99YYY750 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 75 01/01/1993 31/12/2500 -99YYY760 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 76 01/01/1993 31/12/2500 -99YYY770 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 77 01/01/1993 31/12/2500 -99YYY780 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 78 01/01/1993 31/12/2500 -99YYY790 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 79 01/01/1993 31/12/2500 -99YYY8 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 8 01/01/1993 31/12/2500 -99YYY800 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 80 01/01/1993 31/12/2500 -99YYY810 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 81 01/01/1993 31/12/2500 -99YYY820 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 82 01/01/1993 31/12/2500 -99YYY830 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 83 01/01/1993 31/12/2500 -99YYY840 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 84 01/01/1993 31/12/2500 -99YYY850 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 85 01/01/1993 31/12/2500 -99YYY870 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 87 01/01/1993 31/12/2500 -99YYY880 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 88 01/01/1993 31/12/2500 -99YYY890 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 89 01/01/1993 31/12/2500 -99YYY9 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 9 01/01/1993 31/12/2500 -99YYY910 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 91 01/01/1993 31/12/2500 -99YYY930 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 93 01/01/1993 31/12/2500 -99YYY940 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 94 01/01/1993 31/12/2500 -99YYY960 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 96 01/01/1993 31/12/2500 -99YYY970 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 97 01/01/1993 31/12/2500 -99YYY980 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 98 01/01/1993 31/12/2500 -99YYY990 01/01/1993 31/12/2500 LIBEN Trade under the declaration limit, SITC 99 01/01/1993 31/12/2500 -TOTAL 01/01/1988 31/12/2500 LIBEN Total 01/01/1988 31/12/2500 diff --git a/terra-backend/python-server/data/NSTR.txt b/terra-backend/python-server/data/NSTR.txt deleted file mode 100644 index 0ed9814..0000000 --- a/terra-backend/python-server/data/NSTR.txt +++ /dev/null @@ -1,239 +0,0 @@ -0 AGRICULTURAL PRODUCTS AND LIVE ANIMALS -00 LIVE ANIMALS -001 LIVE ANIMALS -01 CEREALS -011 WHEAT, SPELT AND MESLIN -012 BARLEY -013 RYE -014 OATS -015 MAIZE -016 RICE -019 OTHER CEREALS N.E.S. -02 POTATOES -020 POTATOES -03 OTHERS VEGETABLES, FRESH OR FROZEN, FRESH FRUIT -031 CITRUS FRUIT -035 OTHER FRUIT AND NUTS, FRESH -039 OTHER VEGETABLES, FRESH OR FROZEN -04 TEXTILES, TEXTILE ARTICLES AND MAN-MADE FIBRES -041 WOOL AND OTHER ANIMAL HAIR -042 COTTON -043 MAN-MADE FIBRES -045 SILK, FLAX, JUTE, TRUE HEMP AND OTHER VEGETABLE TEXTILE MATERIALS -049 RAGS AND WASTE OF TEXTILE MATERIALS -05 WOOD AND CORK -051 PAPER PULP WOOD -052 PIT PROPS -055 OTHER WOOD IN THE ROUND -056 RAILWAY OR TRAMWAY SLEEPERS OF WOOD AND OTHER WOOD ROUGHLY SQUARED, HALF SQUARED, OR SAWN -057 FUEL WOOD, WOOD CHARCOAL, WOOD WASTE, CORK UNWORKED, WASTE CORK -06 SUGAR BEETS -060 SUGAR BEETS -09 OTHER RAW ANIMAL AND VEGETABLE MATERIALS -090 OTHER RAW ANIMAL AND VEGETABLE MATERIALS -091 RAW HIDES AND SKINS, RAW FURSKINS, WASTE -092 RUBBER, NATURAL AND SYNTHETIC, RAW OR RECLAIMED -099 OTHER NON-EDIBLE RAW VEGETABLE AND ANIMAL MATERIALS N.E.S. -1 FOODSTUFFS AND ANIMAL FODDER -11 SUGARS -111 RAW SUGAR -112 REFINED SUGAR -113 MOLASSES -12 BEVERAGES -121 WINE OF FRESH GRAPES, GRAPE MUST -122 BEER MADE FROM MALT -125 OTHER ALCOHOLIC BEVERAGES -128 NON-ALCOHOLIC BEVERAGES -13 STIMULANTS AND SPICES -131 COFFEE -132 COCOA AND CHOCOLATE -133 TEA, MAT+, SPICES -134 UNMANUFACTURED TOBACCO AND TOBACCO REFUSE -135 MANUFACTURED TOBACCO -136 GLUCOSE, DEXTROSE; OTHER SUGARS; SUGAR CONFECTIONERY; HONEY -139 FOOD PREPARATIONS N.E.S. -14 PERISHABLE FOODSTUFFS -141 MEAT, FRESH, CHILLED OR FROZEN -142 FISH, CRUSTACEANS AND MOLLUSCS, FRESH, FROZEN, DRIED, SALTED OR SMOKED -143 MILK AND CREAM, FRESH -144 BUTTER, CHEESE, OTHER DAIRY PRODUCE -145 MARGARINE, LARD AND EDIBLE FATS -146 EGGS -147 MEAT, DRIED, SALTED, SMOKED; PREPARED OR PRESERVED MEAT -148 FISH, CRUSTACEANS AND MOLLUSCS, PREPARED OR PRESERVED -16 NON-PERISHABLE FOODSTUFFS AND HOPS -161 FLOUR, CEREAL MEAL AND GROATS -162 MALT -163 OTHER CEREAL PREPARATIONS -164 FRUIT, FROZEN, DRIED, DEHYDRATED; PREPARED AND PRESERVED FRUIT -165 DRIED VEGETABLES -166 PREPARED AND PRESERVED VEGETABLES -167 HOPS -17 ANIMAL FEEDINGSTUFFS AND FOODSTUFF WASTE -171 CEREAL STRAW, HAY AND HUSKS -172 OIL-CAKE AND RESIDUES RESULTING FROM THE EXTRACTION OF VEGETABLE OILS -179 BRAN, CEREAL BY-PRODUCTS AND OTHER ANIMAL FEEDINGSTUFFS N.E.S.; WASTE FROM FOOD INDUSTRIES -18 OIL SEEDS AND OLEAGINOUS FRUIT AND FATS -181 OIL-SEED FATS, OILNUTS AND OIL KERNELS -182 ANIMAL AND VEGETABLE FATS AND OILS, AND PRODUCTS DERIVED THEREFROM -2 SOLID MINERAL FUELS -21 COAL -211 COAL (ECSC) -213 COAL BRIQUETTES (ECSC) -22 LIGNITE AND PEAT -221 LIGNITE (ECSC) -223 LIGNITE BRIQUETTES (ECSC) -224 PEAT -23 COKE -231 COKE AND SEMI-COKE OF COAL (ECSC) -233 COKE AND SEMI-COKE OF LIGNITE (ECSC) -3 PETROLEUM PRODUCTS -31 CRUDE PETROLEUM -310 CRUDE PETROLEUM -32 FUEL DERIVATIVES -321 MOTOR SPIRIT -323 KEROSENE, JET FUEL AND WHITE SPIRIT -325 DISTILLATE FUELS -327 RESIDUAL FUEL OILS -33 GASEOUS HYDROCARBONS, LIQUID OR COMPRESSED -330 GASEOUS HYDROCARBONS, LIQUID OR COMPRESSED -34 NON-FUEL DERIVATIVES -341 LUBRICATING OILS AND GREASES -343 PETROLEUM BITUMEN AND BITUMINOUS MIXTURES -349 OTHER NON-FUEL PETROLEUM DERIVATIVES -4 ORES AND METAL WASTE -41 IRON ORE -410 IRON ORE AND CONCENTRATES; EXCEPT ROASTED IRON PYRITES (ECSC) -45 NON-FERROUS ORES AND WASTE -451 NON-FERROUS METAL WASTE -452 COPPER ORE AND CONCENTRATES; COPPER MATTE -453 BAUXITE AND CONCENTRATES -455 MANGANESE ORE AND CONCENTRATES (ECSC) -459 OTHER NON-FERROUS ORES AND CONCENTRATES -46 IRON AND STEEL WASTE AND BLAST-FURNACE DUST -462 IRON AND STEEL WASTE FOR REMELTING (ECSC) -463 IRON AND STEEL WASTE NOT FOR REMELTING (NON-ECSC) -465 IRON SLAG FOR REMELTING (NON-ECSC) -466 BLAST-FURNACE DUST (ECSC) -467 ROASTED IRON PYRITES (NON-ECSC) -5 METAL PRODUCTS -51 PIG IRON AND CRUDE STEEL; FERRO-ALLOYS -512 PIG IRON, SPIEGELEISEN AND CARBURIZED FERRO-MANGANESE (ECSC) -513 FERRO-ALLOYS OTHER THAN CARBURIZED FERRO-MANGANESE (NON-ECSC) -515 CRUDE STEEL (ECSC) -52 SEMI-FINISHED ROLLED STEEL PRODUCTS -522 SEMI-FINISHED ROLLED STEEL PRODUCTS (BLOOMS, BILLETS, SLABS, SHEET BARS, COILS) (ECSC) -523 OTHER SEMI-FINISHED STEEL PRODUCTS (NON-ECSC) -53 BARS, SECTIONS, WIRE ROD, RAILWAY AND TRAMWAY TRACK CONSTRUCTION MATERIAL OF IRON OR STEEL -532 HOT-ROLLED OR -SHAPED STEEL (ECSC) -533 COLD-ROLLED OR -SHAPED OR FORGED STEEL (NON-ECSC) -535 WIRE ROD (ECSC) -536 STEEL IRON AND STEEL WIRE (NON-ECSC) -537 STEEL RAILS AND RAILWAY AND TRAMWAY TRACK-CONSTRUCTION MATERIAL (ECSC) -54 STEEL SHEETS, PLATES, HOOP AND STRIP -542 SHEETS AND PLATES OF STEEL FOR RE-ROLLING; UNIVERSAL PLATES (ECSC) -543 OTHER STEEL PLATES AND SHEETS (NON-ECSC) -545 STEEL HOOP AND STRIP, TINPLATE (ECSC) -546 OTHER STEEL HOOP AND STRIP (NON-ECSC) -55 TUBES, PIPES, IRON AND STEEL CASTINGS AND FORGINGS -551 TUBES, PIPES AND FITTINGS -552 IRON AND STEEL CASTINGS AND FORGINGS -56 NON-FERROUS METALS -561 COPPER AND COPPER ALLOYS, UNWROUGHT -562 ALUMINIUM AND ALUMINIUM ALLOYS, UNWROUGHT -563 LEAD AND LEAD ALLOYS, UNWROUGHT -564 ZINC AND ZINC ALLOYS, UNWROUGHT -565 OTHER NON-FERROUS METALS AND ALLOYS THEREOF, UNWROUGHT -568 FINISHED AND SEMI-FINISHED PRODUCTS OF NON-FERROUS METALS (EXCEPT MANUFACTURES) -6 CRUDE AND MANUFACTURED MINERALS, BUILDING MATERIALS -61 SAND, GRAVEL, CLAY AND SLAG -611 SAND FOR INDUSTRIAL USE -612 ORDINARY SAND AND GRAVEL -613 PUMICE STONE, INCLUDING PUMICEOUS SAND AND GRAVEL -614 CLAY AND CLAY EARTH -615 SLAG NOT FOR RECOVERY OF METALS; ASH; DROSS -62 SALT, IRON PYRITES, SULPHUR -621 SALT, CRUDE OR REFINED -622 UNROASTED IRON PYRITES -623 SULPHUR -63 OTHER STONE, EARTHS AND MINERALS -631 CRUSHED OR BROKEN STONE; PEBBLES, MACADAM, TARRED MACADAM -632 BUILDING AND MONUMENTAL STONE, UNWORKED -633 CALCAREOUS STONE FOR INDUSTRIAL PURPOSES -634 CHALK -639 OTHER CRUDE MINERALS -64 CEMENT, LIME -641 CEMENT -642 LIME -65 PLASTERS -650 PLASTERS -69 OTHER MANUFACTURED BUILDING MATERIALS -691 PUMICE STONE AGGLOMERATES; CONCRETE, CEMENT AND SIMILAR BUILDING MATERIALS -692 BRICKS, ROOFING TILES AND OTHER CERAMIC BUILDING MATERIALS, REFRACTORY BUILDING MATERIALS -7 FERTILIZERS -71 NATURAL FERTILIZERS -711 SODIUM NITRATE, NATURAL -712 PHOSPHATES, CRUDE, NATURAL -713 POTASSIUM SALTS, CRUDE, NATURAL -719 OTHER NATURAL FERTILIZERS -72 CHEMICAL FERTILIZERS -721 BASIC SLAG (THOMAS SLAG) -722 OTHER PHOSPHATIC FERTILIZERS -723 POTASSIC FERTILIZERS -724 NITROGENOUS FERTILIZERS -729 COMPOSITE AND OTHER MANUFACTURED FERTILIZERS -8 CHEMICALS -81 BASIC CHEMICALS -811 SULPHURIC ACID; OLEUM -812 CAUSTIC SODA AND SODA LYE -813 SODIUM CARBONATE (SODA ASH) -814 CALCIUM CARBIDE -819 OTHER BASIC CHEMICALS -82 ALUMINIUM OXIDE AND HYDROXIDE -820 ALUMINIUM OXIDE AND HYDROXIDE -83 COAL CHEMICALS -831 BENZOLE -839 PITCH, MINERAL TAR AND OTHER CRUDE MINERAL CHEMICAL DERIVATIVES FROM COAL AND NATURAL GAS -84 PAPER PULP AND WASTE PAPER -841 PAPER PULP -842 WASTE PAPER AND SCRAP ARTICLES OF PAPER -89 OTHER CHEMICAL PRODUCTS -891 PLASTIC MATERIALS, UNWORKED -892 DYEING, TANNING AND COLOURING MATERIALS -893 MEDICINAL AND PHARMACEUTICAL PRODUCTS; PERFUMERY AND CLEANSING PREPARATIONS -894 MANUFACTURED EXPLOSIVES, FIREWORKS AND OTHER PYROTECHNIC ARTICLES, SPORTING AMMUNITION -895 STARCHES AND GLUTEN -896 OTHER CHEMICAL PRODUCTS AND PREPARATIONS -9 MACHINERY, TRANSPORT EQUIPMENT, MANUFACTURED ARTICLES AND MISCELLANEOUS ARTICLES -91 TRANSPORT EQUIPMENT -910 TRANSPORT EQUIPMENT, WHETHER OR NOT ASSEMBLED, PARTS THEREOF -92 TRACTORS, AGRICULTURAL MACHINERY AND EQUIPMENT -920 TRACTORS; AGRICULTURAL MACHINERY AND EQUIPMENT, WHETHER OR NOT ASSEMBLED; PARTS THEREOF -93 OTHER MACHINERY APPARATUS AND APPLIANCES, ENGINES, PARTS THEREOF -931 ELECTRICAL MACHINERY, APPARATUS, APPLIANCES AND ENGINES; PARTS THEREOF -939 NON-ELECTRICAL MACHINERY, APPARATUS, APPLIANCES AND ENGINES; PARTS THEREOF -94 MANUFACTURES OF MATERIAL -941 FINISHED STRUCTURAL PARTS AND STRUCTURES -949 OTHER MANUFACTURES OF METAL -95 GLASS, GLASSWARE, CERAMIC PRODUCTS -951 GLASS -952 GLASSWARE, POTTERY AND OTHER MANUFACTURES OF MINERALS -96 LEATHER, TEXTILES AND CLOTHING -961 LEATHER, MANUFACTURES OF LEATHER, OF RAW HIDE AND SKINS -962 TEXTILE YARN, FABRICS, MADE-UP ARTICLES AND RELATED PRODUCTS -963 TRAVEL GOODS, CLOTHING, KNITTED AND CROCHETED GOODS, FOOTWEAR -97 OTHER MANUFACTURED ARTICLES -971 SEMI-FINISHED PRODUCTS AND MANUFACTURED ARTICLES OF RUBBER -972 PAPER AND PAPERBOARD, UNWORKED -973 PAPER AND PAPERBOARD MANUFACTURES -974 PAPER MATTER -975 FURNITURE, NEW -976 WOOD AND CORK MANUFACTURES, EXCLUDING FURNITURE -979 OTHER MANUFACTURED ARTICLES N.E.S. -99 MISCELLANEOUS ARTICLES -991 PACKING CONTAINERS, USED -992 CONSTRUCTION MATERIALS, FAIRGROUND VEHICLES AND EQUIPMENT, USED -993 REMOVAL EQUIPMENT -994 GOLD, COINS, MEDALS -999 OTHER MANUFACTURED GOODS NOT CLASSIFIED ACCORDING TO KIND -TOT TOTAL diff --git a/terra-backend/python-server/data/cpa_intra.csv b/terra-backend/python-server/data/cpa_intra.csv deleted file mode 100644 index b22e962..0000000 --- a/terra-backend/python-server/data/cpa_intra.csv +++ /dev/null @@ -1,65534 +0,0 @@ -DECLARANT_ISO,PARTNER_ISO,FLOW,PRODUCT,PERIOD,VALUE_IN_EUROS -AT,AD,1,152,201912,323 -AT,AD,2,139,201912,2379 -AT,AD,2,141,201912,9571 -AT,AD,2,143,201912,3061 -AT,AD,2,151,201912,444 -AT,AD,2,172,201912,6100 -AT,AD,2,17S,201912,3697 -AT,AD,2,202,201912,239 -AT,AD,2,205,201912,360 -AT,AD,2,221,201912,21 -AT,AD,2,222,201912,1048 -AT,AD,2,231,201912,130 -AT,AD,2,239,201912,354 -AT,AD,2,257,201912,37 -AT,AD,2,259,201912,1001 -AT,AD,2,261,201912,146776 -AT,AD,2,264,201912,6729 -AT,AD,2,265,201912,424 -AT,AD,2,267,201912,45748 -AT,AD,2,271,201912,450 -AT,AD,2,279,201912,13622 -AT,AD,2,281,201912,681 -AT,AD,2,282,201912,32611 -AT,AD,2,293,201912,67 -AT,AD,2,309,201912,27044 -AT,AD,2,323,201912,43742 -AT,AD,2,324,201912,109 -AT,AD,2,325,201912,2566 -AT,AD,2,329,201912,549 -AT,AE,1,012,201912,43448 -AT,AE,1,014,201912,2680 -AT,AE,1,103,201912,1400 -AT,AE,1,105,201912,7335 -AT,AE,1,108,201912,195 -AT,AE,1,110,201912,159 -AT,AE,1,139,201912,1259 -AT,AE,1,141,201912,16654 -AT,AE,1,143,201912,1677 -AT,AE,1,151,201912,1182 -AT,AE,1,152,201912,3603 -AT,AE,1,171,201912,15 -AT,AE,1,172,201912,110 -AT,AE,1,201,201912,6840 -AT,AE,1,204,201912,55373 -AT,AE,1,205,201912,2826 -AT,AE,1,221,201912,2514 -AT,AE,1,222,201912,15660 -AT,AE,1,231,201912,2570 -AT,AE,1,234,201912,325 -AT,AE,1,239,201912,4991 -AT,AE,1,244,201912,935873 -AT,AE,1,251,201912,342627 -AT,AE,1,257,201912,68 -AT,AE,1,259,201912,20634 -AT,AE,1,261,201912,3741 -AT,AE,1,262,201912,18852 -AT,AE,1,263,201912,1151 -AT,AE,1,264,201912,291 -AT,AE,1,265,201912,15517 -AT,AE,1,266,201912,14239 -AT,AE,1,267,201912,175 -AT,AE,1,271,201912,6222 -AT,AE,1,272,201912,195146 -AT,AE,1,273,201912,1095 -AT,AE,1,279,201912,6503 -AT,AE,1,281,201912,17782 -AT,AE,1,284,201912,490 -AT,AE,1,293,201912,2656270 -AT,AE,1,303,201912,20 -AT,AE,1,309,201912,35 -AT,AE,1,321,201912,5434 -AT,AE,1,323,201912,223 -AT,AE,1,324,201912,984 -AT,AE,1,325,201912,5109 -AT,AE,1,329,201912,46047 -AT,AE,2,012,201912,2429 -AT,AE,2,101,201912,66647 -AT,AE,2,103,201912,277030 -AT,AE,2,105,201912,175691 -AT,AE,2,106,201912,47368 -AT,AE,2,107,201912,32972 -AT,AE,2,108,201912,526139 -AT,AE,2,109,201912,34900 -AT,AE,2,110,201912,196298 -AT,AE,2,131,201912,124567 -AT,AE,2,132,201912,93094 -AT,AE,2,139,201912,122848 -AT,AE,2,141,201912,133540 -AT,AE,2,142,201912,1056 -AT,AE,2,143,201912,3824 -AT,AE,2,151,201912,8174 -AT,AE,2,152,201912,28001 -AT,AE,2,161,201912,537209 -AT,AE,2,162,201912,1541876 -AT,AE,2,171,201912,243223 -AT,AE,2,172,201912,10105 -AT,AE,2,17S,201912,766215 -AT,AE,2,192,201912,5120 -AT,AE,2,201,201912,64923 -AT,AE,2,203,201912,27315 -AT,AE,2,204,201912,325631 -AT,AE,2,205,201912,65376 -AT,AE,2,212,201912,2483144 -AT,AE,2,221,201912,48641 -AT,AE,2,222,201912,775268 -AT,AE,2,231,201912,135448 -AT,AE,2,232,201912,499766 -AT,AE,2,234,201912,21394 -AT,AE,2,236,201912,1535 -AT,AE,2,239,201912,74253 -AT,AE,2,241,201912,65951 -AT,AE,2,242,201912,103919 -AT,AE,2,243,201912,703 -AT,AE,2,244,201912,816572 -AT,AE,2,245,201912,283 -AT,AE,2,251,201912,398925 -AT,AE,2,252,201912,39110 -AT,AE,2,254,201912,42567 -AT,AE,2,257,201912,376243 -AT,AE,2,259,201912,312469 -AT,AE,2,261,201912,26267 -AT,AE,2,262,201912,571558 -AT,AE,2,263,201912,2767217 -AT,AE,2,264,201912,228120 -AT,AE,2,265,201912,1634809 -AT,AE,2,266,201912,204050 -AT,AE,2,267,201912,623123 -AT,AE,2,268,201912,46 -AT,AE,2,271,201912,3476086 -AT,AE,2,272,201912,91259 -AT,AE,2,273,201912,342727 -AT,AE,2,274,201912,991956 -AT,AE,2,275,201912,20378 -AT,AE,2,279,201912,863191 -AT,AE,2,281,201912,1168300 -AT,AE,2,282,201912,2959873 -AT,AE,2,284,201912,107911 -AT,AE,2,289,201912,1063895 -AT,AE,2,291,201912,12817951 -AT,AE,2,292,201912,174200 -AT,AE,2,293,201912,28711 -AT,AE,2,303,201912,1110620 -AT,AE,2,309,201912,125413 -AT,AE,2,310,201912,415182 -AT,AE,2,321,201912,55333 -AT,AE,2,323,201912,36448 -AT,AE,2,324,201912,1445 -AT,AE,2,325,201912,1069752 -AT,AE,2,329,201912,114964 -AT,AF,1,139,201912,34298 -AT,AF,1,141,201912,191 -AT,AF,1,321,201912,332 -AT,AF,2,108,201912,38547 -AT,AF,2,172,201912,165 -AT,AF,2,201,201912,1 -AT,AF,2,204,201912,23526 -AT,AF,2,205,201912,20876 -AT,AF,2,265,201912,3159 -AT,AF,2,281,201912,173 -AT,AF,2,282,201912,241 -AT,AF,2,291,201912,132160 -AT,AF,2,292,201912,38790 -AT,AF,2,293,201912,4934 -AT,AG,2,262,201912,25076 -AT,AG,2,264,201912,7000 -AT,AL,1,011,201912,72087 -AT,AL,1,012,201912,170907 -AT,AL,1,101,201912,48645 -AT,AL,1,108,201912,2908 -AT,AL,1,141,201912,346 -AT,AL,1,152,201912,60091 -AT,AL,1,221,201912,22 -AT,AL,1,241,201912,339855 -AT,AL,1,244,201912,86792 -AT,AL,1,293,201912,134 -AT,AL,2,011,201912,212 -AT,AL,2,014,201912,50800 -AT,AL,2,101,201912,22556 -AT,AL,2,103,201912,1682 -AT,AL,2,105,201912,180498 -AT,AL,2,106,201912,559 -AT,AL,2,107,201912,3379 -AT,AL,2,108,201912,72964 -AT,AL,2,109,201912,90291 -AT,AL,2,110,201912,888413 -AT,AL,2,139,201912,13690 -AT,AL,2,141,201912,6979 -AT,AL,2,143,201912,192 -AT,AL,2,151,201912,17 -AT,AL,2,161,201912,66143 -AT,AL,2,162,201912,133384 -AT,AL,2,171,201912,62666 -AT,AL,2,172,201912,2837 -AT,AL,2,192,201912,15830 -AT,AL,2,201,201912,1758 -AT,AL,2,202,201912,2489 -AT,AL,2,203,201912,6527 -AT,AL,2,204,201912,3708 -AT,AL,2,205,201912,34285 -AT,AL,2,212,201912,284664 -AT,AL,2,221,201912,121 -AT,AL,2,222,201912,215167 -AT,AL,2,231,201912,2649 -AT,AL,2,234,201912,7387 -AT,AL,2,239,201912,13268 -AT,AL,2,244,201912,9563 -AT,AL,2,251,201912,775 -AT,AL,2,257,201912,58096 -AT,AL,2,259,201912,37479 -AT,AL,2,261,201912,47444 -AT,AL,2,262,201912,45970 -AT,AL,2,263,201912,840238 -AT,AL,2,264,201912,15368 -AT,AL,2,265,201912,77503 -AT,AL,2,266,201912,130925 -AT,AL,2,267,201912,7935 -AT,AL,2,271,201912,3141 -AT,AL,2,272,201912,22057 -AT,AL,2,273,201912,1957 -AT,AL,2,274,201912,60806 -AT,AL,2,275,201912,2045 -AT,AL,2,279,201912,126882 -AT,AL,2,281,201912,323331 -AT,AL,2,282,201912,19655 -AT,AL,2,284,201912,850 -AT,AL,2,289,201912,16952 -AT,AL,2,291,201912,39555 -AT,AL,2,292,201912,7109 -AT,AL,2,293,201912,6 -AT,AL,2,302,201912,4306 -AT,AL,2,310,201912,14113 -AT,AL,2,325,201912,75255 -AT,AL,2,329,201912,10546 -AT,AM,2,103,201912,7792 -AT,AM,2,106,201912,167 -AT,AM,2,107,201912,1943 -AT,AM,2,108,201912,251832 -AT,AM,2,10S,201912,3002 -AT,AM,2,110,201912,1363 -AT,AM,2,151,201912,2330 -AT,AM,2,172,201912,2607 -AT,AM,2,17S,201912,158477 -AT,AM,2,201,201912,1860 -AT,AM,2,204,201912,13420 -AT,AM,2,205,201912,14811 -AT,AM,2,212,201912,99811 -AT,AM,2,221,201912,1698 -AT,AM,2,222,201912,2483 -AT,AM,2,231,201912,9727 -AT,AM,2,234,201912,1164 -AT,AM,2,257,201912,4191 -AT,AM,2,259,201912,953 -AT,AM,2,265,201912,15305 -AT,AM,2,271,201912,26080 -AT,AM,2,274,201912,10642 -AT,AM,2,279,201912,73547 -AT,AM,2,281,201912,126993 -AT,AM,2,282,201912,30 -AT,AM,2,289,201912,17997 -AT,AM,2,321,201912,43400 -AT,AM,2,325,201912,53586 -AT,AM,2,329,201912,300 -AT,AO,2,110,201912,161046 -AT,AO,2,172,201912,156 -AT,AO,2,221,201912,755 -AT,AO,2,222,201912,7322 -AT,AO,2,259,201912,4038 -AT,AO,2,265,201912,11954 -AT,AO,2,271,201912,553 -AT,AO,2,272,201912,85 -AT,AO,2,282,201912,5434 -AT,AO,2,289,201912,2980 -AT,AR,1,011,201912,11438 -AT,AR,1,014,201912,76387 -AT,AR,1,103,201912,604 -AT,AR,1,110,201912,115256 -AT,AR,1,141,201912,605 -AT,AR,1,151,201912,2119732 -AT,AR,1,152,201912,344 -AT,AR,1,211,201912,261648 -AT,AR,1,222,201912,67 -AT,AR,1,257,201912,930 -AT,AR,1,259,201912,2707 -AT,AR,1,271,201912,14 -AT,AR,1,279,201912,2047 -AT,AR,1,281,201912,8312 -AT,AR,1,292,201912,4283 -AT,AR,1,321,201912,54 -AT,AR,1,324,201912,74130 -AT,AR,1,325,201912,13585 -AT,AR,1,329,201912,5435 -AT,AR,2,108,201912,1 -AT,AR,2,110,201912,200151 -AT,AR,2,139,201912,341 -AT,AR,2,141,201912,31149 -AT,AR,2,151,201912,578 -AT,AR,2,152,201912,7988 -AT,AR,2,162,201912,393168 -AT,AR,2,171,201912,275070 -AT,AR,2,172,201912,97 -AT,AR,2,17S,201912,34232 -AT,AR,2,192,201912,1307 -AT,AR,2,201,201912,245569 -AT,AR,2,203,201912,74240 -AT,AR,2,204,201912,372 -AT,AR,2,205,201912,288368 -AT,AR,2,212,201912,207848 -AT,AR,2,221,201912,132122 -AT,AR,2,222,201912,116060 -AT,AR,2,231,201912,48799 -AT,AR,2,232,201912,130889 -AT,AR,2,239,201912,68800 -AT,AR,2,242,201912,16316 -AT,AR,2,243,201912,50117 -AT,AR,2,244,201912,52470 -AT,AR,2,245,201912,200 -AT,AR,2,251,201912,8097 -AT,AR,2,257,201912,586794 -AT,AR,2,259,201912,69225 -AT,AR,2,261,201912,2708 -AT,AR,2,262,201912,220 -AT,AR,2,263,201912,3901 -AT,AR,2,265,201912,433204 -AT,AR,2,267,201912,2065 -AT,AR,2,271,201912,1870227 -AT,AR,2,272,201912,34601 -AT,AR,2,273,201912,36671 -AT,AR,2,274,201912,177033 -AT,AR,2,275,201912,21239 -AT,AR,2,279,201912,243132 -AT,AR,2,281,201912,396855 -AT,AR,2,282,201912,1094835 -AT,AR,2,283,201912,23348 -AT,AR,2,284,201912,2389075 -AT,AR,2,289,201912,333160 -AT,AR,2,293,201912,203858 -AT,AR,2,309,201912,198111 -AT,AR,2,321,201912,328 -AT,AR,2,323,201912,5 -AT,AR,2,324,201912,21638 -AT,AR,2,325,201912,521228 -AT,AR,2,329,201912,35146 -AT,AU,1,030,201912,13481 -AT,AU,1,089,201912,775 -AT,AU,1,101,201912,25028 -AT,AU,1,108,201912,1214 -AT,AU,1,110,201912,90235 -AT,AU,1,139,201912,480 -AT,AU,1,141,201912,45846 -AT,AU,1,142,201912,2573 -AT,AU,1,143,201912,2844 -AT,AU,1,151,201912,27356 -AT,AU,1,152,201912,4105 -AT,AU,1,162,201912,133 -AT,AU,1,172,201912,5180 -AT,AU,1,201,201912,4030 -AT,AU,1,203,201912,30877 -AT,AU,1,204,201912,1826 -AT,AU,1,205,201912,2111 -AT,AU,1,211,201912,762 -AT,AU,1,221,201912,1738 -AT,AU,1,222,201912,25255 -AT,AU,1,231,201912,441 -AT,AU,1,234,201912,807 -AT,AU,1,239,201912,263 -AT,AU,1,244,201912,154333 -AT,AU,1,257,201912,19715 -AT,AU,1,259,201912,5536 -AT,AU,1,261,201912,80579 -AT,AU,1,262,201912,41621 -AT,AU,1,263,201912,127078 -AT,AU,1,264,201912,150470 -AT,AU,1,265,201912,108847 -AT,AU,1,266,201912,15172 -AT,AU,1,267,201912,154922 -AT,AU,1,271,201912,118451 -AT,AU,1,272,201912,889 -AT,AU,1,273,201912,6467 -AT,AU,1,274,201912,33085 -AT,AU,1,279,201912,97359 -AT,AU,1,281,201912,201163 -AT,AU,1,282,201912,10704 -AT,AU,1,284,201912,65798 -AT,AU,1,289,201912,120149 -AT,AU,1,293,201912,7374 -AT,AU,1,303,201912,8027 -AT,AU,1,309,201912,1738 -AT,AU,1,310,201912,1 -AT,AU,1,321,201912,202196 -AT,AU,1,322,201912,2381 -AT,AU,1,323,201912,8627 -AT,AU,1,324,201912,149121 -AT,AU,1,325,201912,54396 -AT,AU,1,329,201912,5040 -AT,AU,2,012,201912,999 -AT,AU,2,089,201912,53 -AT,AU,2,103,201912,12551 -AT,AU,2,104,201912,116950 -AT,AU,2,105,201912,3027085 -AT,AU,2,106,201912,21380 -AT,AU,2,107,201912,21914 -AT,AU,2,108,201912,202437 -AT,AU,2,109,201912,486105 -AT,AU,2,110,201912,3138503 -AT,AU,2,131,201912,186743 -AT,AU,2,132,201912,65034 -AT,AU,2,139,201912,157278 -AT,AU,2,141,201912,205366 -AT,AU,2,143,201912,7676 -AT,AU,2,151,201912,11775 -AT,AU,2,152,201912,103923 -AT,AU,2,161,201912,1683166 -AT,AU,2,162,201912,1862940 -AT,AU,2,171,201912,1622882 -AT,AU,2,172,201912,147514 -AT,AU,2,192,201912,512 -AT,AU,2,201,201912,486425 -AT,AU,2,202,201912,85964 -AT,AU,2,203,201912,124253 -AT,AU,2,204,201912,384121 -AT,AU,2,205,201912,522964 -AT,AU,2,212,201912,4113590 -AT,AU,2,221,201912,73772 -AT,AU,2,222,201912,1270188 -AT,AU,2,231,201912,352830 -AT,AU,2,232,201912,1070316 -AT,AU,2,234,201912,9101 -AT,AU,2,239,201912,320864 -AT,AU,2,241,201912,393637 -AT,AU,2,242,201912,18946 -AT,AU,2,243,201912,18631 -AT,AU,2,244,201912,170277 -AT,AU,2,245,201912,179791 -AT,AU,2,251,201912,507346 -AT,AU,2,252,201912,301083 -AT,AU,2,257,201912,4833468 -AT,AU,2,259,201912,774639 -AT,AU,2,25S,201912,31031 -AT,AU,2,261,201912,155253 -AT,AU,2,262,201912,250656 -AT,AU,2,263,201912,292869 -AT,AU,2,264,201912,244040 -AT,AU,2,265,201912,1085728 -AT,AU,2,266,201912,147562 -AT,AU,2,267,201912,192203 -AT,AU,2,268,201912,1188 -AT,AU,2,271,201912,1926604 -AT,AU,2,272,201912,10199 -AT,AU,2,273,201912,161192 -AT,AU,2,274,201912,571832 -AT,AU,2,275,201912,99294 -AT,AU,2,279,201912,10169195 -AT,AU,2,281,201912,1110516 -AT,AU,2,282,201912,4329383 -AT,AU,2,283,201912,2028105 -AT,AU,2,284,201912,1075512 -AT,AU,2,289,201912,5555598 -AT,AU,2,291,201912,14058727 -AT,AU,2,292,201912,1057 -AT,AU,2,293,201912,315641 -AT,AU,2,302,201912,302701 -AT,AU,2,303,201912,30731 -AT,AU,2,309,201912,3839144 -AT,AU,2,310,201912,268813 -AT,AU,2,321,201912,100611 -AT,AU,2,322,201912,610 -AT,AU,2,323,201912,32245 -AT,AU,2,324,201912,367071 -AT,AU,2,325,201912,909151 -AT,AU,2,329,201912,65039 -AT,AZ,2,104,201912,54 -AT,AZ,2,108,201912,55708 -AT,AZ,2,110,201912,35318 -AT,AZ,2,139,201912,4705 -AT,AZ,2,141,201912,2564 -AT,AZ,2,143,201912,1753 -AT,AZ,2,151,201912,1025 -AT,AZ,2,152,201912,460 -AT,AZ,2,172,201912,163 -AT,AZ,2,201,201912,4291 -AT,AZ,2,204,201912,3300 -AT,AZ,2,205,201912,90624 -AT,AZ,2,211,201912,3 -AT,AZ,2,212,201912,1198853 -AT,AZ,2,221,201912,3698 -AT,AZ,2,222,201912,53272 -AT,AZ,2,231,201912,79 -AT,AZ,2,232,201912,85637 -AT,AZ,2,251,201912,758 -AT,AZ,2,257,201912,44110 -AT,AZ,2,259,201912,7919 -AT,AZ,2,261,201912,50481 -AT,AZ,2,262,201912,412 -AT,AZ,2,263,201912,2040 -AT,AZ,2,265,201912,49050 -AT,AZ,2,267,201912,17003 -AT,AZ,2,271,201912,261910 -AT,AZ,2,273,201912,64706 -AT,AZ,2,274,201912,6670 -AT,AZ,2,279,201912,5682 -AT,AZ,2,281,201912,62512 -AT,AZ,2,282,201912,38556 -AT,AZ,2,289,201912,53298 -AT,AZ,2,291,201912,5200 -AT,AZ,2,310,201912,2561 -AT,AZ,2,325,201912,2000 -AT,AZ,2,329,201912,27866 -AT,BA,1,022,201912,149493 -AT,BA,1,089,201912,10780 -AT,BA,1,103,201912,345413 -AT,BA,1,104,201912,159299 -AT,BA,1,105,201912,27462 -AT,BA,1,106,201912,22256 -AT,BA,1,107,201912,44462 -AT,BA,1,108,201912,89438 -AT,BA,1,110,201912,6948 -AT,BA,1,131,201912,796 -AT,BA,1,132,201912,21099 -AT,BA,1,139,201912,313216 -AT,BA,1,141,201912,1032631 -AT,BA,1,151,201912,111493 -AT,BA,1,152,201912,2153958 -AT,BA,1,161,201912,718366 -AT,BA,1,162,201912,894543 -AT,BA,1,171,201912,2199 -AT,BA,1,172,201912,29630 -AT,BA,1,191,201912,23037 -AT,BA,1,201,201912,1890562 -AT,BA,1,203,201912,663 -AT,BA,1,204,201912,1428 -AT,BA,1,205,201912,9587 -AT,BA,1,221,201912,78449 -AT,BA,1,222,201912,2908168 -AT,BA,1,231,201912,246875 -AT,BA,1,233,201912,13391 -AT,BA,1,234,201912,4596 -AT,BA,1,236,201912,16441 -AT,BA,1,237,201912,38673 -AT,BA,1,239,201912,5510 -AT,BA,1,241,201912,182748 -AT,BA,1,242,201912,146159 -AT,BA,1,243,201912,1295 -AT,BA,1,244,201912,337008 -AT,BA,1,245,201912,378 -AT,BA,1,251,201912,3349831 -AT,BA,1,252,201912,498827 -AT,BA,1,257,201912,371979 -AT,BA,1,259,201912,2251125 -AT,BA,1,261,201912,242222 -AT,BA,1,262,201912,29490 -AT,BA,1,263,201912,1505 -AT,BA,1,264,201912,1274 -AT,BA,1,265,201912,484265 -AT,BA,1,271,201912,7197202 -AT,BA,1,272,201912,11841 -AT,BA,1,273,201912,2905610 -AT,BA,1,274,201912,97275 -AT,BA,1,275,201912,47381 -AT,BA,1,279,201912,858747 -AT,BA,1,281,201912,1707679 -AT,BA,1,282,201912,819231 -AT,BA,1,284,201912,1052200 -AT,BA,1,289,201912,900649 -AT,BA,1,291,201912,14160 -AT,BA,1,293,201912,3394470 -AT,BA,1,301,201912,30121 -AT,BA,1,302,201912,248512 -AT,BA,1,303,201912,89229 -AT,BA,1,309,201912,203295 -AT,BA,1,310,201912,2401349 -AT,BA,1,321,201912,175 -AT,BA,1,323,201912,366648 -AT,BA,1,324,201912,581692 -AT,BA,1,329,201912,41057 -AT,BA,2,011,201912,30300 -AT,BA,2,012,201912,27095 -AT,BA,2,013,201912,8110 -AT,BA,2,014,201912,230400 -AT,BA,2,023,201912,6 -AT,BA,2,081,201912,5206 -AT,BA,2,101,201912,1153193 -AT,BA,2,103,201912,82237 -AT,BA,2,104,201912,2346 -AT,BA,2,105,201912,133326 -AT,BA,2,106,201912,50516 -AT,BA,2,107,201912,59319 -AT,BA,2,108,201912,590440 -AT,BA,2,109,201912,181027 -AT,BA,2,10S,201912,86 -AT,BA,2,110,201912,391274 -AT,BA,2,131,201912,11367 -AT,BA,2,132,201912,280672 -AT,BA,2,139,201912,283264 -AT,BA,2,141,201912,101366 -AT,BA,2,143,201912,284 -AT,BA,2,151,201912,3341007 -AT,BA,2,152,201912,251159 -AT,BA,2,161,201912,123356 -AT,BA,2,162,201912,802136 -AT,BA,2,171,201912,571514 -AT,BA,2,172,201912,360340 -AT,BA,2,17S,201912,38012 -AT,BA,2,192,201912,218468 -AT,BA,2,201,201912,1231225 -AT,BA,2,202,201912,19659 -AT,BA,2,203,201912,224086 -AT,BA,2,204,201912,100900 -AT,BA,2,205,201912,405399 -AT,BA,2,206,201912,196 -AT,BA,2,20S,201912,4702 -AT,BA,2,211,201912,6683 -AT,BA,2,212,201912,1028854 -AT,BA,2,221,201912,574655 -AT,BA,2,222,201912,1793510 -AT,BA,2,231,201912,168136 -AT,BA,2,232,201912,212645 -AT,BA,2,233,201912,61943 -AT,BA,2,234,201912,34637 -AT,BA,2,235,201912,1493 -AT,BA,2,236,201912,110025 -AT,BA,2,239,201912,122015 -AT,BA,2,241,201912,695819 -AT,BA,2,242,201912,451628 -AT,BA,2,243,201912,205500 -AT,BA,2,244,201912,1085384 -AT,BA,2,245,201912,217 -AT,BA,2,251,201912,278278 -AT,BA,2,252,201912,24250 -AT,BA,2,254,201912,45139 -AT,BA,2,257,201912,831601 -AT,BA,2,259,201912,2219182 -AT,BA,2,25S,201912,26823 -AT,BA,2,261,201912,316074 -AT,BA,2,262,201912,123503 -AT,BA,2,263,201912,202090 -AT,BA,2,264,201912,12099 -AT,BA,2,265,201912,321290 -AT,BA,2,266,201912,75973 -AT,BA,2,267,201912,136561 -AT,BA,2,271,201912,3120336 -AT,BA,2,272,201912,92701 -AT,BA,2,273,201912,1241635 -AT,BA,2,274,201912,265708 -AT,BA,2,275,201912,70733 -AT,BA,2,279,201912,574877 -AT,BA,2,281,201912,595558 -AT,BA,2,282,201912,1082350 -AT,BA,2,283,201912,1810 -AT,BA,2,284,201912,884198 -AT,BA,2,289,201912,399447 -AT,BA,2,291,201912,821880 -AT,BA,2,292,201912,31688 -AT,BA,2,293,201912,277096 -AT,BA,2,302,201912,87 -AT,BA,2,309,201912,16918 -AT,BA,2,310,201912,73892 -AT,BA,2,321,201912,40538 -AT,BA,2,323,201912,9843 -AT,BA,2,324,201912,1175028 -AT,BA,2,325,201912,59684 -AT,BA,2,329,201912,146190 -AT,BD,1,139,201912,199999 -AT,BD,1,141,201912,14827532 -AT,BD,1,143,201912,1470056 -AT,BD,1,151,201912,1881 -AT,BD,1,222,201912,194540 -AT,BD,1,234,201912,7777 -AT,BD,2,139,201912,5695 -AT,BD,2,201,201912,5830 -AT,BD,2,205,201912,60236 -AT,BD,2,212,201912,14837 -AT,BD,2,221,201912,33561 -AT,BD,2,222,201912,1477 -AT,BD,2,241,201912,1267 -AT,BD,2,242,201912,216 -AT,BD,2,257,201912,1425 -AT,BD,2,259,201912,452 -AT,BD,2,262,201912,24865 -AT,BD,2,265,201912,656030 -AT,BD,2,266,201912,20529 -AT,BD,2,267,201912,5492 -AT,BD,2,271,201912,25887 -AT,BD,2,273,201912,6567 -AT,BD,2,274,201912,4339 -AT,BD,2,279,201912,10383 -AT,BD,2,281,201912,178928 -AT,BD,2,282,201912,342576 -AT,BD,2,289,201912,1109083 -AT,BD,2,329,201912,62196 -AT,BE,1,011,201912,537793 -AT,BE,1,012,201912,4120865 -AT,BE,1,013,201912,217075 -AT,BE,1,014,201912,129527 -AT,BE,1,023,201912,891 -AT,BE,1,030,201912,11505 -AT,BE,1,081,201912,121707 -AT,BE,1,089,201912,286844 -AT,BE,1,101,201912,1782689 -AT,BE,1,102,201912,509798 -AT,BE,1,103,201912,3606682 -AT,BE,1,104,201912,1101464 -AT,BE,1,105,201912,1556475 -AT,BE,1,106,201912,1207182 -AT,BE,1,107,201912,1104229 -AT,BE,1,108,201912,6640693 -AT,BE,1,109,201912,376144 -AT,BE,1,110,201912,2193917 -AT,BE,1,120,201912,2801 -AT,BE,1,131,201912,29425 -AT,BE,1,132,201912,873424 -AT,BE,1,139,201912,2345772 -AT,BE,1,141,201912,4924604 -AT,BE,1,142,201912,1694 -AT,BE,1,143,201912,852775 -AT,BE,1,151,201912,1454831 -AT,BE,1,152,201912,1839332 -AT,BE,1,161,201912,215234 -AT,BE,1,162,201912,786781 -AT,BE,1,171,201912,957012 -AT,BE,1,172,201912,437626 -AT,BE,1,181,201912,26425 -AT,BE,1,192,201912,1633721 -AT,BE,1,201,201912,30380875 -AT,BE,1,202,201912,396662 -AT,BE,1,203,201912,1402775 -AT,BE,1,204,201912,1841351 -AT,BE,1,205,201912,3971252 -AT,BE,1,206,201912,1168020 -AT,BE,1,211,201912,201011 -AT,BE,1,212,201912,26415424 -AT,BE,1,221,201912,1511538 -AT,BE,1,222,201912,7098455 -AT,BE,1,231,201912,711997 -AT,BE,1,233,201912,1701 -AT,BE,1,234,201912,175656 -AT,BE,1,236,201912,26484 -AT,BE,1,239,201912,201134 -AT,BE,1,241,201912,1329940 -AT,BE,1,242,201912,272864 -AT,BE,1,243,201912,88215 -AT,BE,1,244,201912,9899662 -AT,BE,1,245,201912,2086 -AT,BE,1,251,201912,864244 -AT,BE,1,252,201912,138056 -AT,BE,1,254,201912,49091 -AT,BE,1,257,201912,1272904 -AT,BE,1,259,201912,7449807 -AT,BE,1,261,201912,3643802 -AT,BE,1,262,201912,2879022 -AT,BE,1,263,201912,562563 -AT,BE,1,264,201912,2271298 -AT,BE,1,265,201912,2460410 -AT,BE,1,266,201912,1109886 -AT,BE,1,267,201912,949492 -AT,BE,1,268,201912,24711 -AT,BE,1,271,201912,1433368 -AT,BE,1,272,201912,1858647 -AT,BE,1,273,201912,1020688 -AT,BE,1,274,201912,481256 -AT,BE,1,275,201912,715190 -AT,BE,1,279,201912,1089552 -AT,BE,1,281,201912,6227720 -AT,BE,1,282,201912,6775605 -AT,BE,1,283,201912,1024302 -AT,BE,1,284,201912,1353473 -AT,BE,1,289,201912,2268585 -AT,BE,1,291,201912,46436148 -AT,BE,1,292,201912,162007 -AT,BE,1,293,201912,15992577 -AT,BE,1,302,201912,396178 -AT,BE,1,303,201912,6837 -AT,BE,1,309,201912,932690 -AT,BE,1,310,201912,838810 -AT,BE,1,321,201912,956377 -AT,BE,1,322,201912,86986 -AT,BE,1,323,201912,649535 -AT,BE,1,324,201912,562136 -AT,BE,1,325,201912,12040839 -AT,BE,1,329,201912,242219 -AT,BE,2,011,201912,408665 -AT,BE,2,012,201912,10162 -AT,BE,2,013,201912,30452 -AT,BE,2,030,201912,6 -AT,BE,2,081,201912,23102 -AT,BE,2,089,201912,569422 -AT,BE,2,101,201912,524932 -AT,BE,2,103,201912,1274407 -AT,BE,2,104,201912,268008 -AT,BE,2,105,201912,570229 -AT,BE,2,106,201912,180341 -AT,BE,2,107,201912,829250 -AT,BE,2,108,201912,1938062 -AT,BE,2,109,201912,263693 -AT,BE,2,10S,201912,326483 -AT,BE,2,110,201912,11933580 -AT,BE,2,131,201912,269945 -AT,BE,2,132,201912,583481 -AT,BE,2,139,201912,662192 -AT,BE,2,141,201912,620748 -AT,BE,2,142,201912,6444 -AT,BE,2,143,201912,213491 -AT,BE,2,151,201912,112909 -AT,BE,2,152,201912,394523 -AT,BE,2,161,201912,342823 -AT,BE,2,162,201912,1430910 -AT,BE,2,171,201912,7822242 -AT,BE,2,172,201912,510613 -AT,BE,2,17S,201912,2344 -AT,BE,2,192,201912,60830 -AT,BE,2,201,201912,6926325 -AT,BE,2,202,201912,934399 -AT,BE,2,203,201912,1406132 -AT,BE,2,204,201912,648970 -AT,BE,2,205,201912,2980730 -AT,BE,2,206,201912,114533 -AT,BE,2,20S,201912,63392 -AT,BE,2,211,201912,2055478 -AT,BE,2,212,201912,12410766 -AT,BE,2,221,201912,400645 -AT,BE,2,222,201912,4983971 -AT,BE,2,231,201912,370150 -AT,BE,2,232,201912,426307 -AT,BE,2,234,201912,65809 -AT,BE,2,236,201912,103052 -AT,BE,2,237,201912,449 -AT,BE,2,239,201912,369167 -AT,BE,2,241,201912,1902425 -AT,BE,2,242,201912,211362 -AT,BE,2,243,201912,348206 -AT,BE,2,244,201912,10860349 -AT,BE,2,245,201912,482281 -AT,BE,2,251,201912,1061704 -AT,BE,2,252,201912,637814 -AT,BE,2,253,201912,5571 -AT,BE,2,254,201912,60629 -AT,BE,2,257,201912,3588299 -AT,BE,2,259,201912,2057328 -AT,BE,2,25S,201912,48263 -AT,BE,2,261,201912,456552 -AT,BE,2,262,201912,2875890 -AT,BE,2,263,201912,1338718 -AT,BE,2,264,201912,686696 -AT,BE,2,265,201912,1529689 -AT,BE,2,266,201912,396218 -AT,BE,2,267,201912,533657 -AT,BE,2,268,201912,95608 -AT,BE,2,271,201912,2053926 -AT,BE,2,272,201912,146777 -AT,BE,2,273,201912,570600 -AT,BE,2,274,201912,2086643 -AT,BE,2,275,201912,586144 -AT,BE,2,279,201912,4503942 -AT,BE,2,281,201912,4953175 -AT,BE,2,282,201912,7580931 -AT,BE,2,283,201912,4084725 -AT,BE,2,284,201912,1876723 -AT,BE,2,289,201912,8106175 -AT,BE,2,291,201912,46196365 -AT,BE,2,292,201912,193322 -AT,BE,2,293,201912,1819635 -AT,BE,2,302,201912,208583 -AT,BE,2,303,201912,474390 -AT,BE,2,309,201912,4276065 -AT,BE,2,310,201912,1051999 -AT,BE,2,321,201912,1346715 -AT,BE,2,322,201912,1142 -AT,BE,2,323,201912,485404 -AT,BE,2,324,201912,171850 -AT,BE,2,325,201912,8690189 -AT,BE,2,329,201912,152889 -AT,BE,2,32S,201912,19091 -AT,BF,2,110,201912,16878 -AT,BF,2,205,201912,7004 -AT,BF,2,325,201912,3920 -AT,BG,1,011,201912,961938 -AT,BG,1,014,201912,213138 -AT,BG,1,101,201912,23835 -AT,BG,1,103,201912,1519156 -AT,BG,1,104,201912,264933 -AT,BG,1,105,201912,48107 -AT,BG,1,106,201912,171915 -AT,BG,1,107,201912,114782 -AT,BG,1,108,201912,408935 -AT,BG,1,131,201912,279766 -AT,BG,1,132,201912,167324 -AT,BG,1,139,201912,236296 -AT,BG,1,141,201912,3048123 -AT,BG,1,143,201912,172145 -AT,BG,1,151,201912,3967 -AT,BG,1,152,201912,53038 -AT,BG,1,162,201912,93653 -AT,BG,1,172,201912,330074 -AT,BG,1,192,201912,25073 -AT,BG,1,201,201912,29908 -AT,BG,1,203,201912,2043 -AT,BG,1,204,201912,74129 -AT,BG,1,205,201912,12441 -AT,BG,1,212,201912,751096 -AT,BG,1,221,201912,104408 -AT,BG,1,222,201912,546804 -AT,BG,1,231,201912,238820 -AT,BG,1,236,201912,78403 -AT,BG,1,239,201912,19805 -AT,BG,1,241,201912,114928 -AT,BG,1,242,201912,276712 -AT,BG,1,243,201912,32534 -AT,BG,1,244,201912,1383259 -AT,BG,1,251,201912,663643 -AT,BG,1,252,201912,3022 -AT,BG,1,254,201912,15153 -AT,BG,1,257,201912,51333 -AT,BG,1,259,201912,330819 -AT,BG,1,261,201912,78121 -AT,BG,1,262,201912,3607 -AT,BG,1,263,201912,2570336 -AT,BG,1,264,201912,25691 -AT,BG,1,265,201912,277787 -AT,BG,1,266,201912,2595127 -AT,BG,1,267,201912,171082 -AT,BG,1,271,201912,209725 -AT,BG,1,272,201912,9917 -AT,BG,1,273,201912,25348 -AT,BG,1,274,201912,68370 -AT,BG,1,275,201912,454224 -AT,BG,1,279,201912,149288 -AT,BG,1,281,201912,3274720 -AT,BG,1,282,201912,1926215 -AT,BG,1,283,201912,7505 -AT,BG,1,284,201912,60972 -AT,BG,1,289,201912,737205 -AT,BG,1,291,201912,654417 -AT,BG,1,292,201912,392030 -AT,BG,1,293,201912,281464 -AT,BG,1,302,201912,930047 -AT,BG,1,309,201912,233017 -AT,BG,1,310,201912,430715 -AT,BG,1,321,201912,6533 -AT,BG,1,323,201912,1810115 -AT,BG,1,324,201912,142035 -AT,BG,1,325,201912,24259 -AT,BG,1,329,201912,1074 -AT,BG,2,011,201912,784212 -AT,BG,2,012,201912,58013 -AT,BG,2,030,201912,12 -AT,BG,2,081,201912,12830 -AT,BG,2,089,201912,11261 -AT,BG,2,101,201912,258586 -AT,BG,2,102,201912,48 -AT,BG,2,103,201912,271495 -AT,BG,2,104,201912,3006 -AT,BG,2,105,201912,221890 -AT,BG,2,106,201912,85519 -AT,BG,2,107,201912,338907 -AT,BG,2,108,201912,1551333 -AT,BG,2,109,201912,313358 -AT,BG,2,10S,201912,50 -AT,BG,2,110,201912,963361 -AT,BG,2,131,201912,47698 -AT,BG,2,132,201912,402619 -AT,BG,2,139,201912,742997 -AT,BG,2,141,201912,2852239 -AT,BG,2,142,201912,1385 -AT,BG,2,143,201912,263296 -AT,BG,2,151,201912,263593 -AT,BG,2,152,201912,96713 -AT,BG,2,161,201912,281101 -AT,BG,2,162,201912,477505 -AT,BG,2,171,201912,1541116 -AT,BG,2,172,201912,259633 -AT,BG,2,17S,201912,378944 -AT,BG,2,181,201912,2910 -AT,BG,2,192,201912,58211 -AT,BG,2,201,201912,521137 -AT,BG,2,202,201912,32212 -AT,BG,2,203,201912,338992 -AT,BG,2,204,201912,793689 -AT,BG,2,205,201912,556515 -AT,BG,2,206,201912,2916 -AT,BG,2,20S,201912,441205 -AT,BG,2,211,201912,4465 -AT,BG,2,212,201912,2026282 -AT,BG,2,221,201912,155204 -AT,BG,2,222,201912,1547319 -AT,BG,2,231,201912,161601 -AT,BG,2,232,201912,277054 -AT,BG,2,233,201912,40183 -AT,BG,2,234,201912,30115 -AT,BG,2,236,201912,44246 -AT,BG,2,239,201912,223219 -AT,BG,2,241,201912,695099 -AT,BG,2,242,201912,172334 -AT,BG,2,243,201912,150622 -AT,BG,2,244,201912,8701964 -AT,BG,2,245,201912,761 -AT,BG,2,251,201912,186127 -AT,BG,2,252,201912,9578 -AT,BG,2,254,201912,17476 -AT,BG,2,257,201912,948223 -AT,BG,2,259,201912,687892 -AT,BG,2,25S,201912,7990 -AT,BG,2,261,201912,488230 -AT,BG,2,262,201912,505864 -AT,BG,2,263,201912,1291012 -AT,BG,2,264,201912,51295 -AT,BG,2,265,201912,654432 -AT,BG,2,266,201912,2373102 -AT,BG,2,267,201912,109597 -AT,BG,2,268,201912,17480 -AT,BG,2,271,201912,547752 -AT,BG,2,272,201912,377873 -AT,BG,2,273,201912,431292 -AT,BG,2,274,201912,218002 -AT,BG,2,275,201912,462164 -AT,BG,2,279,201912,4826389 -AT,BG,2,281,201912,471958 -AT,BG,2,282,201912,1570630 -AT,BG,2,283,201912,2423400 -AT,BG,2,284,201912,1406004 -AT,BG,2,289,201912,1476475 -AT,BG,2,291,201912,7459888 -AT,BG,2,292,201912,595598 -AT,BG,2,293,201912,294095 -AT,BG,2,302,201912,2517 -AT,BG,2,303,201912,61612 -AT,BG,2,309,201912,325558 -AT,BG,2,310,201912,104737 -AT,BG,2,321,201912,293223 -AT,BG,2,322,201912,367 -AT,BG,2,323,201912,278960 -AT,BG,2,324,201912,2021791 -AT,BG,2,325,201912,461494 -AT,BG,2,329,201912,159638 -AT,BG,2,32S,201912,113 -AT,BH,1,141,201912,363 -AT,BH,1,231,201912,13537 -AT,BH,1,239,201912,30167 -AT,BH,1,244,201912,1799983 -AT,BH,1,263,201912,122 -AT,BH,1,279,201912,6804 -AT,BH,1,293,201912,209013 -AT,BH,2,103,201912,2360 -AT,BH,2,107,201912,32 -AT,BH,2,108,201912,3051 -AT,BH,2,139,201912,343 -AT,BH,2,161,201912,20 -AT,BH,2,162,201912,191220 -AT,BH,2,172,201912,219 -AT,BH,2,204,201912,10088 -AT,BH,2,205,201912,47146 -AT,BH,2,212,201912,5927 -AT,BH,2,221,201912,1865 -AT,BH,2,222,201912,42028 -AT,BH,2,231,201912,24615 -AT,BH,2,232,201912,53391 -AT,BH,2,234,201912,95 -AT,BH,2,239,201912,18481 -AT,BH,2,244,201912,1086 -AT,BH,2,251,201912,1575 -AT,BH,2,257,201912,13331 -AT,BH,2,259,201912,2562 -AT,BH,2,261,201912,5883 -AT,BH,2,264,201912,32733 -AT,BH,2,265,201912,105369 -AT,BH,2,271,201912,10866 -AT,BH,2,274,201912,100651 -AT,BH,2,275,201912,660 -AT,BH,2,279,201912,562 -AT,BH,2,281,201912,108388 -AT,BH,2,282,201912,4632 -AT,BH,2,289,201912,14416 -AT,BH,2,291,201912,1391410 -AT,BH,2,293,201912,20500 -AT,BH,2,309,201912,37297 -AT,BH,2,325,201912,11274 -AT,BH,2,329,201912,29315 -AT,BI,2,201,201912,89 -AT,BI,2,221,201912,502 -AT,BI,2,222,201912,11070 -AT,BI,2,259,201912,1293 -AT,BI,2,265,201912,78123 -AT,BI,2,282,201912,391 -AT,BI,2,289,201912,4943 -AT,BJ,2,132,201912,999579 -AT,BJ,2,139,201912,4550 -AT,BJ,2,151,201912,1465 -AT,BJ,2,222,201912,249 -AT,BJ,2,259,201912,26 -AT,BJ,2,265,201912,51131 -AT,BJ,2,309,201912,145 -AT,BJ,2,329,201912,2221 -AT,BM,2,259,201912,42 -AT,BM,2,281,201912,27 -AT,BN,2,291,201912,94786 -AT,BO,1,012,201912,7844 -AT,BO,1,143,201912,471 -AT,BO,1,259,201912,8757 -AT,BO,2,151,201912,946 -AT,BO,2,171,201912,87850 -AT,BO,2,192,201912,5536 -AT,BO,2,201,201912,712480 -AT,BO,2,205,201912,59463 -AT,BO,2,212,201912,28 -AT,BO,2,221,201912,3092 -AT,BO,2,222,201912,1454 -AT,BO,2,231,201912,539 -AT,BO,2,251,201912,3529 -AT,BO,2,257,201912,25933 -AT,BO,2,259,201912,55510 -AT,BO,2,261,201912,69 -AT,BO,2,262,201912,1980 -AT,BO,2,263,201912,8574 -AT,BO,2,265,201912,74196 -AT,BO,2,267,201912,5014 -AT,BO,2,271,201912,34662 -AT,BO,2,273,201912,1918 -AT,BO,2,279,201912,1286 -AT,BO,2,281,201912,270674 -AT,BO,2,282,201912,162041 -AT,BO,2,284,201912,522 -AT,BO,2,289,201912,239291 -AT,BO,2,309,201912,13590 -AT,BO,2,321,201912,3521 -AT,BO,2,329,201912,6358 -AT,BQ,2,323,201912,1080 -AT,BR,1,012,201912,326736 -AT,BR,1,030,201912,8598 -AT,BR,1,081,201912,118688 -AT,BR,1,089,201912,36 -AT,BR,1,108,201912,258510 -AT,BR,1,110,201912,243 -AT,BR,1,139,201912,439 -AT,BR,1,141,201912,6333 -AT,BR,1,151,201912,6483 -AT,BR,1,152,201912,87558 -AT,BR,1,162,201912,1412 -AT,BR,1,171,201912,60716 -AT,BR,1,172,201912,249 -AT,BR,1,201,201912,4115 -AT,BR,1,204,201912,23710 -AT,BR,1,205,201912,2537 -AT,BR,1,212,201912,5272 -AT,BR,1,221,201912,39329 -AT,BR,1,222,201912,26232 -AT,BR,1,232,201912,132 -AT,BR,1,237,201912,10850 -AT,BR,1,239,201912,62874 -AT,BR,1,241,201912,109549 -AT,BR,1,244,201912,474 -AT,BR,1,257,201912,1395 -AT,BR,1,259,201912,842 -AT,BR,1,263,201912,6804 -AT,BR,1,264,201912,2147 -AT,BR,1,265,201912,138592 -AT,BR,1,267,201912,87 -AT,BR,1,271,201912,363523 -AT,BR,1,273,201912,779 -AT,BR,1,279,201912,5688 -AT,BR,1,281,201912,412365 -AT,BR,1,282,201912,37689 -AT,BR,1,289,201912,134666 -AT,BR,1,293,201912,3293 -AT,BR,1,303,201912,114825 -AT,BR,1,321,201912,2485 -AT,BR,1,325,201912,11282 -AT,BR,1,329,201912,32 -AT,BR,2,012,201912,24934 -AT,BR,2,089,201912,112812 -AT,BR,2,106,201912,185420 -AT,BR,2,108,201912,104976 -AT,BR,2,109,201912,550086 -AT,BR,2,110,201912,4705635 -AT,BR,2,132,201912,1666 -AT,BR,2,139,201912,26898 -AT,BR,2,141,201912,1563 -AT,BR,2,151,201912,5743 -AT,BR,2,162,201912,3401 -AT,BR,2,171,201912,812102 -AT,BR,2,172,201912,5981 -AT,BR,2,17S,201912,32194 -AT,BR,2,201,201912,882009 -AT,BR,2,203,201912,82898 -AT,BR,2,204,201912,3361696 -AT,BR,2,205,201912,325805 -AT,BR,2,211,201912,28000 -AT,BR,2,212,201912,1933950 -AT,BR,2,221,201912,88469 -AT,BR,2,222,201912,1555592 -AT,BR,2,231,201912,104457 -AT,BR,2,232,201912,1034612 -AT,BR,2,234,201912,111418 -AT,BR,2,239,201912,316327 -AT,BR,2,241,201912,4640064 -AT,BR,2,242,201912,128054 -AT,BR,2,243,201912,2252164 -AT,BR,2,244,201912,2519800 -AT,BR,2,245,201912,2830 -AT,BR,2,251,201912,51255 -AT,BR,2,257,201912,1192360 -AT,BR,2,259,201912,410624 -AT,BR,2,25S,201912,118577 -AT,BR,2,261,201912,84230 -AT,BR,2,262,201912,311602 -AT,BR,2,263,201912,39546 -AT,BR,2,264,201912,2324 -AT,BR,2,265,201912,2146398 -AT,BR,2,266,201912,99898 -AT,BR,2,267,201912,4777 -AT,BR,2,271,201912,1264907 -AT,BR,2,272,201912,79000 -AT,BR,2,273,201912,196814 -AT,BR,2,274,201912,112647 -AT,BR,2,275,201912,107809 -AT,BR,2,279,201912,4254771 -AT,BR,2,281,201912,2654859 -AT,BR,2,282,201912,1523595 -AT,BR,2,283,201912,50474 -AT,BR,2,284,201912,225530 -AT,BR,2,289,201912,7876943 -AT,BR,2,291,201912,1109228 -AT,BR,2,293,201912,810615 -AT,BR,2,302,201912,147854 -AT,BR,2,303,201912,937140 -AT,BR,2,309,201912,1053843 -AT,BR,2,310,201912,26936 -AT,BR,2,321,201912,3012 -AT,BR,2,324,201912,7966 -AT,BR,2,325,201912,1314711 -AT,BR,2,329,201912,376646 -AT,BS,1,281,201912,60 -AT,BS,2,110,201912,21390 -AT,BS,2,172,201912,95 -AT,BS,2,205,201912,14 -AT,BS,2,221,201912,4481 -AT,BS,2,222,201912,5590 -AT,BS,2,244,201912,154 -AT,BS,2,257,201912,348 -AT,BS,2,259,201912,3301 -AT,BS,2,261,201912,10927 -AT,BS,2,262,201912,2664 -AT,BS,2,265,201912,5084 -AT,BS,2,271,201912,977 -AT,BS,2,273,201912,418 -AT,BS,2,279,201912,3018 -AT,BS,2,281,201912,15242 -AT,BS,2,282,201912,879 -AT,BS,2,293,201912,5393 -AT,BS,2,303,201912,13540 -AT,BW,2,265,201912,79040 -AT,BY,1,103,201912,55528 -AT,BY,1,161,201912,89853 -AT,BY,1,162,201912,99096 -AT,BY,1,172,201912,88 -AT,BY,1,239,201912,48491 -AT,BY,1,241,201912,78212 -AT,BY,1,242,201912,43023 -AT,BY,1,243,201912,264567 -AT,BY,1,259,201912,144132 -AT,BY,1,265,201912,5108 -AT,BY,1,267,201912,21476 -AT,BY,1,273,201912,28635 -AT,BY,1,310,201912,72323 -AT,BY,2,101,201912,45008 -AT,BY,2,103,201912,15726 -AT,BY,2,106,201912,182548 -AT,BY,2,107,201912,971 -AT,BY,2,108,201912,373368 -AT,BY,2,109,201912,126038 -AT,BY,2,10S,201912,2654 -AT,BY,2,110,201912,1527 -AT,BY,2,132,201912,929 -AT,BY,2,139,201912,618 -AT,BY,2,141,201912,29904 -AT,BY,2,142,201912,641 -AT,BY,2,143,201912,6818 -AT,BY,2,151,201912,666 -AT,BY,2,162,201912,282180 -AT,BY,2,171,201912,120850 -AT,BY,2,172,201912,257 -AT,BY,2,17S,201912,283736 -AT,BY,2,192,201912,9647 -AT,BY,2,201,201912,306063 -AT,BY,2,203,201912,942 -AT,BY,2,204,201912,36857 -AT,BY,2,205,201912,167581 -AT,BY,2,211,201912,10123 -AT,BY,2,212,201912,1846603 -AT,BY,2,221,201912,56801 -AT,BY,2,222,201912,181280 -AT,BY,2,231,201912,45853 -AT,BY,2,234,201912,662 -AT,BY,2,239,201912,1658 -AT,BY,2,241,201912,71 -AT,BY,2,242,201912,128 -AT,BY,2,243,201912,114723 -AT,BY,2,244,201912,42 -AT,BY,2,245,201912,4422 -AT,BY,2,251,201912,64117 -AT,BY,2,257,201912,442951 -AT,BY,2,259,201912,22186 -AT,BY,2,261,201912,31 -AT,BY,2,262,201912,197 -AT,BY,2,263,201912,37799 -AT,BY,2,265,201912,579136 -AT,BY,2,267,201912,3442 -AT,BY,2,271,201912,34671 -AT,BY,2,273,201912,4805 -AT,BY,2,274,201912,9024 -AT,BY,2,275,201912,4421 -AT,BY,2,279,201912,2117935 -AT,BY,2,281,201912,98858 -AT,BY,2,282,201912,143366 -AT,BY,2,283,201912,246980 -AT,BY,2,284,201912,430017 -AT,BY,2,289,201912,144290 -AT,BY,2,291,201912,164240 -AT,BY,2,293,201912,44666 -AT,BY,2,310,201912,4247 -AT,BY,2,321,201912,10602 -AT,BY,2,323,201912,26212 -AT,BY,2,325,201912,25963 -AT,BY,2,329,201912,36938 -AT,BZ,2,105,201912,342052 -AT,CA,1,011,201912,288162 -AT,CA,1,103,201912,149721 -AT,CA,1,108,201912,76646 -AT,CA,1,110,201912,121601 -AT,CA,1,131,201912,1534 -AT,CA,1,132,201912,184 -AT,CA,1,139,201912,12653 -AT,CA,1,141,201912,51283 -AT,CA,1,142,201912,7657 -AT,CA,1,143,201912,20454 -AT,CA,1,151,201912,19084 -AT,CA,1,152,201912,8176 -AT,CA,1,162,201912,96330 -AT,CA,1,171,201912,65512 -AT,CA,1,172,201912,4699 -AT,CA,1,192,201912,189 -AT,CA,1,201,201912,38810 -AT,CA,1,203,201912,3748 -AT,CA,1,204,201912,38373 -AT,CA,1,205,201912,37866 -AT,CA,1,211,201912,495 -AT,CA,1,212,201912,77197 -AT,CA,1,221,201912,90533 -AT,CA,1,222,201912,114074 -AT,CA,1,231,201912,4492 -AT,CA,1,234,201912,541 -AT,CA,1,239,201912,3041 -AT,CA,1,242,201912,7658 -AT,CA,1,244,201912,6886 -AT,CA,1,252,201912,22649 -AT,CA,1,254,201912,4524 -AT,CA,1,257,201912,119854 -AT,CA,1,259,201912,213914 -AT,CA,1,261,201912,4019 -AT,CA,1,262,201912,75210 -AT,CA,1,263,201912,350571 -AT,CA,1,264,201912,46294 -AT,CA,1,265,201912,1794480 -AT,CA,1,266,201912,7455 -AT,CA,1,267,201912,94682 -AT,CA,1,271,201912,32076 -AT,CA,1,272,201912,42 -AT,CA,1,273,201912,55378 -AT,CA,1,274,201912,23911 -AT,CA,1,275,201912,73628 -AT,CA,1,279,201912,104721 -AT,CA,1,281,201912,388838 -AT,CA,1,282,201912,580949 -AT,CA,1,283,201912,174739 -AT,CA,1,284,201912,15044 -AT,CA,1,289,201912,63061 -AT,CA,1,293,201912,309701 -AT,CA,1,303,201912,1337248 -AT,CA,1,309,201912,1513 -AT,CA,1,310,201912,415 -AT,CA,1,321,201912,4425509 -AT,CA,1,322,201912,66026 -AT,CA,1,323,201912,21067 -AT,CA,1,324,201912,4665 -AT,CA,1,325,201912,306109 -AT,CA,1,329,201912,20672 -AT,CA,2,014,201912,4532 -AT,CA,2,101,201912,90567 -AT,CA,2,103,201912,270412 -AT,CA,2,104,201912,32897 -AT,CA,2,107,201912,97254 -AT,CA,2,108,201912,105079 -AT,CA,2,109,201912,162499 -AT,CA,2,110,201912,904391 -AT,CA,2,131,201912,1892 -AT,CA,2,132,201912,79536 -AT,CA,2,139,201912,177920 -AT,CA,2,141,201912,380065 -AT,CA,2,143,201912,65268 -AT,CA,2,151,201912,12702 -AT,CA,2,152,201912,86166 -AT,CA,2,161,201912,5157 -AT,CA,2,162,201912,2137223 -AT,CA,2,171,201912,481391 -AT,CA,2,172,201912,113673 -AT,CA,2,17S,201912,273524 -AT,CA,2,192,201912,57 -AT,CA,2,201,201912,941432 -AT,CA,2,203,201912,127758 -AT,CA,2,204,201912,222652 -AT,CA,2,205,201912,159020 -AT,CA,2,20S,201912,12974 -AT,CA,2,212,201912,9070641 -AT,CA,2,221,201912,218435 -AT,CA,2,222,201912,2267680 -AT,CA,2,231,201912,190202 -AT,CA,2,232,201912,402899 -AT,CA,2,234,201912,24070 -AT,CA,2,236,201912,4556 -AT,CA,2,239,201912,213134 -AT,CA,2,241,201912,571461 -AT,CA,2,242,201912,4707163 -AT,CA,2,243,201912,259173 -AT,CA,2,244,201912,422334 -AT,CA,2,245,201912,239 -AT,CA,2,251,201912,256986 -AT,CA,2,252,201912,238999 -AT,CA,2,257,201912,7179114 -AT,CA,2,259,201912,1538041 -AT,CA,2,25S,201912,55231 -AT,CA,2,261,201912,87053 -AT,CA,2,262,201912,286850 -AT,CA,2,263,201912,993240 -AT,CA,2,264,201912,267119 -AT,CA,2,265,201912,1272453 -AT,CA,2,266,201912,28042 -AT,CA,2,267,201912,82971 -AT,CA,2,268,201912,10790 -AT,CA,2,271,201912,11093062 -AT,CA,2,272,201912,191678 -AT,CA,2,273,201912,237065 -AT,CA,2,274,201912,231994 -AT,CA,2,275,201912,194682 -AT,CA,2,279,201912,819919 -AT,CA,2,281,201912,2628329 -AT,CA,2,282,201912,3149067 -AT,CA,2,283,201912,876659 -AT,CA,2,284,201912,2270885 -AT,CA,2,289,201912,4203853 -AT,CA,2,291,201912,19504474 -AT,CA,2,292,201912,73917 -AT,CA,2,293,201912,593495 -AT,CA,2,301,201912,4643 -AT,CA,2,302,201912,61095 -AT,CA,2,303,201912,8873024 -AT,CA,2,309,201912,1018956 -AT,CA,2,310,201912,1462700 -AT,CA,2,321,201912,30485 -AT,CA,2,322,201912,3610 -AT,CA,2,323,201912,851697 -AT,CA,2,324,201912,785 -AT,CA,2,325,201912,1215345 -AT,CA,2,329,201912,302365 -AT,CA,2,32S,201912,32162 -AT,CD,2,205,201912,281 -AT,CD,2,212,201912,1236 -AT,CD,2,221,201912,15 -AT,CD,2,222,201912,93910 -AT,CD,2,265,201912,349 -AT,CD,2,271,201912,3646 -AT,CD,2,273,201912,4250 -AT,CD,2,279,201912,18159 -AT,CD,2,281,201912,10671 -AT,CD,2,282,201912,103414 -AT,CD,2,289,201912,21070 -AT,CF,2,222,201912,12215 -AT,CF,2,329,201912,250 -AT,CG,2,103,201912,5834 -AT,CG,2,110,201912,36055 -AT,CG,2,141,201912,602 -AT,CG,2,222,201912,875 -AT,CG,2,259,201912,212 -AT,CG,2,282,201912,566 -AT,CG,2,329,201912,86 -AT,CH,1,011,201912,365144 -AT,CH,1,012,201912,49082 -AT,CH,1,013,201912,67345 -AT,CH,1,014,201912,68493 -AT,CH,1,022,201912,708117 -AT,CH,1,081,201912,77661 -AT,CH,1,089,201912,21772 -AT,CH,1,101,201912,796283 -AT,CH,1,103,201912,365372 -AT,CH,1,104,201912,156588 -AT,CH,1,105,201912,2644048 -AT,CH,1,106,201912,1175483 -AT,CH,1,107,201912,432663 -AT,CH,1,108,201912,16635731 -AT,CH,1,109,201912,40137 -AT,CH,1,110,201912,34158851 -AT,CH,1,120,201912,71 -AT,CH,1,131,201912,27190 -AT,CH,1,132,201912,3138581 -AT,CH,1,139,201912,1683654 -AT,CH,1,141,201912,1587239 -AT,CH,1,142,201912,18470 -AT,CH,1,143,201912,193361 -AT,CH,1,151,201912,918968 -AT,CH,1,152,201912,173017 -AT,CH,1,161,201912,112775 -AT,CH,1,162,201912,2043719 -AT,CH,1,171,201912,1831018 -AT,CH,1,172,201912,2298285 -AT,CH,1,181,201912,24445 -AT,CH,1,192,201912,189079 -AT,CH,1,201,201912,5707394 -AT,CH,1,202,201912,256369 -AT,CH,1,203,201912,3149076 -AT,CH,1,204,201912,6264400 -AT,CH,1,205,201912,2940785 -AT,CH,1,206,201912,437542 -AT,CH,1,211,201912,118660115 -AT,CH,1,212,201912,17683154 -AT,CH,1,221,201912,888788 -AT,CH,1,222,201912,15413681 -AT,CH,1,231,201912,1605616 -AT,CH,1,232,201912,5845 -AT,CH,1,233,201912,67346 -AT,CH,1,234,201912,110685 -AT,CH,1,235,201912,253988 -AT,CH,1,236,201912,364537 -AT,CH,1,237,201912,228101 -AT,CH,1,239,201912,1532116 -AT,CH,1,241,201912,1198956 -AT,CH,1,242,201912,1058448 -AT,CH,1,243,201912,792946 -AT,CH,1,244,201912,26684940 -AT,CH,1,245,201912,44072 -AT,CH,1,251,201912,2949342 -AT,CH,1,252,201912,185897 -AT,CH,1,253,201912,23938 -AT,CH,1,254,201912,645060 -AT,CH,1,257,201912,11818339 -AT,CH,1,259,201912,13914517 -AT,CH,1,25S,201912,138011 -AT,CH,1,261,201912,756639 -AT,CH,1,262,201912,1401119 -AT,CH,1,263,201912,486017 -AT,CH,1,264,201912,134109 -AT,CH,1,265,201912,16906184 -AT,CH,1,266,201912,921472 -AT,CH,1,267,201912,958606 -AT,CH,1,268,201912,701 -AT,CH,1,271,201912,6139745 -AT,CH,1,272,201912,424719 -AT,CH,1,273,201912,1100926 -AT,CH,1,274,201912,462409 -AT,CH,1,275,201912,1049261 -AT,CH,1,279,201912,4447024 -AT,CH,1,281,201912,14495305 -AT,CH,1,282,201912,10406593 -AT,CH,1,283,201912,725687 -AT,CH,1,284,201912,6316955 -AT,CH,1,289,201912,16908687 -AT,CH,1,291,201912,6668294 -AT,CH,1,292,201912,134212 -AT,CH,1,293,201912,1410485 -AT,CH,1,302,201912,185648 -AT,CH,1,303,201912,379444 -AT,CH,1,309,201912,792501 -AT,CH,1,310,201912,1071600 -AT,CH,1,321,201912,988405 -AT,CH,1,322,201912,30260 -AT,CH,1,323,201912,525568 -AT,CH,1,324,201912,61039 -AT,CH,1,325,201912,5552000 -AT,CH,1,329,201912,733445 -AT,CH,1,351,201912,5362363 -AT,CH,2,011,201912,3001002 -AT,CH,2,012,201912,314567 -AT,CH,2,013,201912,138378 -AT,CH,2,014,201912,611596 -AT,CH,2,022,201912,54379 -AT,CH,2,023,201912,24401 -AT,CH,2,030,201912,21285 -AT,CH,2,081,201912,931682 -AT,CH,2,089,201912,187528 -AT,CH,2,101,201912,2843342 -AT,CH,2,102,201912,670024 -AT,CH,2,103,201912,2002549 -AT,CH,2,104,201912,2202460 -AT,CH,2,105,201912,1251031 -AT,CH,2,106,201912,919085 -AT,CH,2,107,201912,4420830 -AT,CH,2,108,201912,7962947 -AT,CH,2,109,201912,1658031 -AT,CH,2,10S,201912,664752 -AT,CH,2,110,201912,4046950 -AT,CH,2,131,201912,617711 -AT,CH,2,132,201912,1216578 -AT,CH,2,139,201912,3518025 -AT,CH,2,141,201912,3904586 -AT,CH,2,142,201912,15115 -AT,CH,2,143,201912,782867 -AT,CH,2,151,201912,752317 -AT,CH,2,152,201912,1702199 -AT,CH,2,161,201912,2990619 -AT,CH,2,162,201912,12768508 -AT,CH,2,171,201912,5870566 -AT,CH,2,172,201912,12155965 -AT,CH,2,17S,201912,146816 -AT,CH,2,181,201912,86654 -AT,CH,2,192,201912,4052918 -AT,CH,2,201,201912,5308430 -AT,CH,2,202,201912,1405738 -AT,CH,2,203,201912,1335519 -AT,CH,2,204,201912,3366475 -AT,CH,2,205,201912,8323317 -AT,CH,2,206,201912,338118 -AT,CH,2,20S,201912,82144 -AT,CH,2,211,201912,502048 -AT,CH,2,212,201912,167149875 -AT,CH,2,221,201912,1168110 -AT,CH,2,222,201912,14063952 -AT,CH,2,231,201912,4915929 -AT,CH,2,232,201912,303002 -AT,CH,2,233,201912,70452 -AT,CH,2,234,201912,711235 -AT,CH,2,235,201912,109573 -AT,CH,2,236,201912,1415512 -AT,CH,2,237,201912,248190 -AT,CH,2,239,201912,1706347 -AT,CH,2,241,201912,5703136 -AT,CH,2,242,201912,1446590 -AT,CH,2,243,201912,3117086 -AT,CH,2,244,201912,5451013 -AT,CH,2,245,201912,452984 -AT,CH,2,251,201912,8320042 -AT,CH,2,252,201912,2745993 -AT,CH,2,253,201912,161510 -AT,CH,2,254,201912,87100 -AT,CH,2,257,201912,7597910 -AT,CH,2,259,201912,9339488 -AT,CH,2,25S,201912,238751 -AT,CH,2,261,201912,5824540 -AT,CH,2,262,201912,1987995 -AT,CH,2,263,201912,3240965 -AT,CH,2,264,201912,717757 -AT,CH,2,265,201912,5968571 -AT,CH,2,266,201912,1383275 -AT,CH,2,267,201912,1551340 -AT,CH,2,268,201912,15788 -AT,CH,2,271,201912,5458560 -AT,CH,2,272,201912,1136914 -AT,CH,2,273,201912,1411077 -AT,CH,2,274,201912,6944858 -AT,CH,2,275,201912,5215812 -AT,CH,2,279,201912,6278134 -AT,CH,2,281,201912,9081306 -AT,CH,2,282,201912,15171620 -AT,CH,2,283,201912,5003974 -AT,CH,2,284,201912,4757101 -AT,CH,2,289,201912,18201664 -AT,CH,2,291,201912,20952779 -AT,CH,2,292,201912,2133912 -AT,CH,2,293,201912,1589070 -AT,CH,2,301,201912,41917 -AT,CH,2,302,201912,2773289 -AT,CH,2,303,201912,7064823 -AT,CH,2,309,201912,2885258 -AT,CH,2,310,201912,8608452 -AT,CH,2,321,201912,1812464 -AT,CH,2,322,201912,133242 -AT,CH,2,323,201912,4146010 -AT,CH,2,324,201912,533472 -AT,CH,2,325,201912,2218561 -AT,CH,2,329,201912,998002 -AT,CH,2,32S,201912,292 -AT,CH,2,351,201912,27848718 -AT,CI,2,108,201912,6 -AT,CI,2,109,201912,20000 -AT,CI,2,132,201912,846675 -AT,CI,2,139,201912,12 -AT,CI,2,151,201912,1374 -AT,CI,2,171,201912,75116 -AT,CI,2,212,201912,5 -AT,CI,2,221,201912,1609 -AT,CI,2,222,201912,5732 -AT,CI,2,257,201912,368 -AT,CI,2,259,201912,2742 -AT,CI,2,271,201912,325 -AT,CI,2,273,201912,2578 -AT,CI,2,279,201912,6974 -AT,CI,2,281,201912,1928 -AT,CI,2,282,201912,15455 -AT,CI,2,289,201912,57927 -AT,CI,2,291,201912,32479 -AT,CI,2,329,201912,19214 -AT,CL,1,012,201912,118127 -AT,CL,1,103,201912,419266 -AT,CL,1,110,201912,2390 -AT,CL,1,141,201912,242 -AT,CL,1,171,201912,509150 -AT,CL,1,172,201912,22 -AT,CL,1,201,201912,375747 -AT,CL,1,265,201912,30 -AT,CL,1,267,201912,388 -AT,CL,1,289,201912,1044 -AT,CL,2,108,201912,250713 -AT,CL,2,110,201912,1285938 -AT,CL,2,139,201912,19104 -AT,CL,2,141,201912,50806 -AT,CL,2,143,201912,1030 -AT,CL,2,151,201912,72742 -AT,CL,2,152,201912,9456 -AT,CL,2,162,201912,1280436 -AT,CL,2,171,201912,346216 -AT,CL,2,172,201912,137535 -AT,CL,2,17S,201912,151416 -AT,CL,2,201,201912,1172799 -AT,CL,2,203,201912,58359 -AT,CL,2,204,201912,34122 -AT,CL,2,205,201912,212337 -AT,CL,2,212,201912,275524 -AT,CL,2,221,201912,140132 -AT,CL,2,222,201912,63637 -AT,CL,2,231,201912,395 -AT,CL,2,232,201912,859565 -AT,CL,2,239,201912,36060 -AT,CL,2,241,201912,21901 -AT,CL,2,242,201912,4270 -AT,CL,2,244,201912,2479 -AT,CL,2,251,201912,31482 -AT,CL,2,252,201912,3813 -AT,CL,2,257,201912,651140 -AT,CL,2,259,201912,311084 -AT,CL,2,25S,201912,220589 -AT,CL,2,261,201912,3487 -AT,CL,2,262,201912,125619 -AT,CL,2,263,201912,17293 -AT,CL,2,264,201912,59242 -AT,CL,2,265,201912,173094 -AT,CL,2,266,201912,35833 -AT,CL,2,267,201912,4565 -AT,CL,2,271,201912,129084 -AT,CL,2,272,201912,50706 -AT,CL,2,273,201912,64419 -AT,CL,2,274,201912,205437 -AT,CL,2,275,201912,42620 -AT,CL,2,279,201912,89112 -AT,CL,2,281,201912,425728 -AT,CL,2,282,201912,2870602 -AT,CL,2,283,201912,18692 -AT,CL,2,284,201912,352084 -AT,CL,2,289,201912,1575703 -AT,CL,2,293,201912,11629 -AT,CL,2,302,201912,424868 -AT,CL,2,309,201912,484077 -AT,CL,2,310,201912,131 -AT,CL,2,321,201912,8193 -AT,CL,2,325,201912,256431 -AT,CL,2,329,201912,67901 -AT,CM,2,171,201912,52155 -AT,CM,2,201,201912,1191 -AT,CM,2,205,201912,14591 -AT,CM,2,212,201912,4028 -AT,CM,2,221,201912,19 -AT,CM,2,222,201912,3916 -AT,CM,2,259,201912,1106 -AT,CM,2,274,201912,2298 -AT,CM,2,275,201912,1625 -AT,CM,2,281,201912,3373 -AT,CM,2,282,201912,879 -AT,CN,1,011,201912,183880 -AT,CN,1,012,201912,280235 -AT,CN,1,023,201912,6954 -AT,CN,1,030,201912,168210 -AT,CN,1,081,201912,18174 -AT,CN,1,089,201912,563081 -AT,CN,1,101,201912,1414821 -AT,CN,1,103,201912,2602089 -AT,CN,1,106,201912,10053 -AT,CN,1,107,201912,141678 -AT,CN,1,108,201912,405795 -AT,CN,1,110,201912,34720 -AT,CN,1,131,201912,7087 -AT,CN,1,132,201912,1062924 -AT,CN,1,139,201912,7519299 -AT,CN,1,141,201912,12126297 -AT,CN,1,142,201912,146916 -AT,CN,1,143,201912,1898814 -AT,CN,1,151,201912,4747115 -AT,CN,1,152,201912,2320272 -AT,CN,1,161,201912,20952 -AT,CN,1,162,201912,1758847 -AT,CN,1,171,201912,246866 -AT,CN,1,172,201912,1452140 -AT,CN,1,201,201912,9309628 -AT,CN,1,202,201912,298533 -AT,CN,1,203,201912,199670 -AT,CN,1,204,201912,219853 -AT,CN,1,205,201912,1555790 -AT,CN,1,206,201912,412109 -AT,CN,1,211,201912,1652787 -AT,CN,1,212,201912,1673741 -AT,CN,1,221,201912,712259 -AT,CN,1,222,201912,12018143 -AT,CN,1,231,201912,2101267 -AT,CN,1,232,201912,117548 -AT,CN,1,234,201912,1871841 -AT,CN,1,236,201912,249402 -AT,CN,1,237,201912,781733 -AT,CN,1,239,201912,1299963 -AT,CN,1,241,201912,783916 -AT,CN,1,242,201912,271500 -AT,CN,1,243,201912,199207 -AT,CN,1,244,201912,1411090 -AT,CN,1,245,201912,82388 -AT,CN,1,251,201912,2176512 -AT,CN,1,252,201912,61411 -AT,CN,1,253,201912,23253 -AT,CN,1,254,201912,314088 -AT,CN,1,257,201912,10388132 -AT,CN,1,259,201912,13664862 -AT,CN,1,261,201912,14012937 -AT,CN,1,262,201912,19228083 -AT,CN,1,263,201912,46441880 -AT,CN,1,264,201912,6182796 -AT,CN,1,265,201912,7223777 -AT,CN,1,266,201912,4832696 -AT,CN,1,267,201912,1659971 -AT,CN,1,268,201912,43562 -AT,CN,1,271,201912,13297909 -AT,CN,1,272,201912,4062679 -AT,CN,1,273,201912,2261726 -AT,CN,1,274,201912,15950879 -AT,CN,1,275,201912,17332642 -AT,CN,1,279,201912,12524538 -AT,CN,1,281,201912,11548826 -AT,CN,1,282,201912,27709781 -AT,CN,1,283,201912,1253989 -AT,CN,1,284,201912,4147592 -AT,CN,1,289,201912,7081144 -AT,CN,1,291,201912,382311 -AT,CN,1,292,201912,178637 -AT,CN,1,293,201912,2393309 -AT,CN,1,301,201912,192489 -AT,CN,1,302,201912,338230 -AT,CN,1,303,201912,155693 -AT,CN,1,309,201912,6827151 -AT,CN,1,310,201912,13509562 -AT,CN,1,321,201912,7240693 -AT,CN,1,322,201912,161768 -AT,CN,1,323,201912,7558771 -AT,CN,1,324,201912,4091166 -AT,CN,1,325,201912,5358326 -AT,CN,1,329,201912,6370361 -AT,CN,2,012,201912,251363 -AT,CN,2,014,201912,717 -AT,CN,2,081,201912,1533 -AT,CN,2,089,201912,294033 -AT,CN,2,101,201912,7932780 -AT,CN,2,103,201912,204785 -AT,CN,2,105,201912,1835581 -AT,CN,2,106,201912,84 -AT,CN,2,107,201912,378 -AT,CN,2,108,201912,762415 -AT,CN,2,109,201912,13157 -AT,CN,2,110,201912,734007 -AT,CN,2,131,201912,50787 -AT,CN,2,132,201912,113086 -AT,CN,2,139,201912,772988 -AT,CN,2,141,201912,396683 -AT,CN,2,142,201912,14550 -AT,CN,2,143,201912,100931 -AT,CN,2,151,201912,1286797 -AT,CN,2,152,201912,369631 -AT,CN,2,161,201912,2815956 -AT,CN,2,162,201912,5435268 -AT,CN,2,171,201912,540511 -AT,CN,2,172,201912,246652 -AT,CN,2,17S,201912,3227609 -AT,CN,2,192,201912,466354 -AT,CN,2,201,201912,5364844 -AT,CN,2,202,201912,222228 -AT,CN,2,203,201912,802282 -AT,CN,2,204,201912,396756 -AT,CN,2,205,201912,1699166 -AT,CN,2,206,201912,486268 -AT,CN,2,211,201912,132568 -AT,CN,2,212,201912,23277972 -AT,CN,2,221,201912,890905 -AT,CN,2,222,201912,8300043 -AT,CN,2,231,201912,1775067 -AT,CN,2,232,201912,328773 -AT,CN,2,234,201912,144484 -AT,CN,2,239,201912,1640821 -AT,CN,2,241,201912,7381733 -AT,CN,2,242,201912,1276443 -AT,CN,2,243,201912,4046977 -AT,CN,2,244,201912,2585981 -AT,CN,2,245,201912,4841 -AT,CN,2,251,201912,499257 -AT,CN,2,252,201912,10988 -AT,CN,2,253,201912,104094 -AT,CN,2,257,201912,13818114 -AT,CN,2,259,201912,4630322 -AT,CN,2,261,201912,23874604 -AT,CN,2,262,201912,1684234 -AT,CN,2,263,201912,1591908 -AT,CN,2,264,201912,198419 -AT,CN,2,265,201912,65583013 -AT,CN,2,266,201912,12592580 -AT,CN,2,267,201912,1737276 -AT,CN,2,268,201912,2090 -AT,CN,2,271,201912,13252653 -AT,CN,2,272,201912,202619 -AT,CN,2,273,201912,2848320 -AT,CN,2,274,201912,203309 -AT,CN,2,275,201912,805793 -AT,CN,2,279,201912,7253887 -AT,CN,2,281,201912,16099872 -AT,CN,2,282,201912,8070701 -AT,CN,2,283,201912,885846 -AT,CN,2,284,201912,5505610 -AT,CN,2,289,201912,54284829 -AT,CN,2,291,201912,36615656 -AT,CN,2,293,201912,2506494 -AT,CN,2,302,201912,1339526 -AT,CN,2,303,201912,5601904 -AT,CN,2,309,201912,1161471 -AT,CN,2,310,201912,487856 -AT,CN,2,321,201912,389160 -AT,CN,2,322,201912,700681 -AT,CN,2,323,201912,510401 -AT,CN,2,324,201912,26078 -AT,CN,2,325,201912,2320119 -AT,CN,2,329,201912,240799 -AT,CN,2,32S,201912,144010 -AT,CO,1,012,201912,38468 -AT,CO,1,141,201912,2427 -AT,CO,1,151,201912,4054 -AT,CO,1,152,201912,38 -AT,CO,1,201,201912,310274 -AT,CO,1,222,201912,178 -AT,CO,1,257,201912,136 -AT,CO,1,265,201912,442 -AT,CO,1,266,201912,1017 -AT,CO,1,279,201912,386 -AT,CO,1,281,201912,76 -AT,CO,1,282,201912,697 -AT,CO,1,289,201912,2790 -AT,CO,1,293,201912,513 -AT,CO,1,309,201912,562 -AT,CO,1,321,201912,30397 -AT,CO,2,089,201912,17 -AT,CO,2,106,201912,9198 -AT,CO,2,108,201912,50782 -AT,CO,2,110,201912,65482 -AT,CO,2,139,201912,49905 -AT,CO,2,151,201912,4377 -AT,CO,2,152,201912,268 -AT,CO,2,162,201912,95166 -AT,CO,2,171,201912,956450 -AT,CO,2,172,201912,142 -AT,CO,2,17S,201912,88302 -AT,CO,2,201,201912,607894 -AT,CO,2,203,201912,102338 -AT,CO,2,205,201912,10260 -AT,CO,2,212,201912,1590744 -AT,CO,2,221,201912,24922 -AT,CO,2,222,201912,74697 -AT,CO,2,231,201912,1136 -AT,CO,2,232,201912,98472 -AT,CO,2,239,201912,14476 -AT,CO,2,241,201912,117717 -AT,CO,2,242,201912,1163 -AT,CO,2,243,201912,15940 -AT,CO,2,244,201912,566 -AT,CO,2,251,201912,421146 -AT,CO,2,257,201912,212609 -AT,CO,2,259,201912,141275 -AT,CO,2,262,201912,9151 -AT,CO,2,263,201912,28350 -AT,CO,2,265,201912,253833 -AT,CO,2,266,201912,46948 -AT,CO,2,271,201912,292801 -AT,CO,2,273,201912,22548 -AT,CO,2,274,201912,186 -AT,CO,2,279,201912,121429 -AT,CO,2,281,201912,78408 -AT,CO,2,282,201912,7044657 -AT,CO,2,283,201912,7181 -AT,CO,2,284,201912,45157 -AT,CO,2,289,201912,374821 -AT,CO,2,291,201912,449892 -AT,CO,2,293,201912,8209 -AT,CO,2,302,201912,14107 -AT,CO,2,309,201912,477325 -AT,CO,2,310,201912,2795 -AT,CO,2,321,201912,2289 -AT,CO,2,324,201912,190031 -AT,CO,2,325,201912,83877 -AT,CO,2,329,201912,105043 -AT,CR,1,108,201912,186 -AT,CR,1,222,201912,2345 -AT,CR,1,261,201912,33089 -AT,CR,1,273,201912,3525 -AT,CR,1,279,201912,1228 -AT,CR,2,103,201912,7771 -AT,CR,2,108,201912,13044 -AT,CR,2,139,201912,1208 -AT,CR,2,141,201912,300 -AT,CR,2,151,201912,1180 -AT,CR,2,162,201912,55398 -AT,CR,2,171,201912,24534 -AT,CR,2,172,201912,57 -AT,CR,2,205,201912,4279 -AT,CR,2,221,201912,1222 -AT,CR,2,222,201912,4546 -AT,CR,2,231,201912,8444 -AT,CR,2,239,201912,294 -AT,CR,2,242,201912,4 -AT,CR,2,251,201912,1530 -AT,CR,2,257,201912,66692 -AT,CR,2,259,201912,3521 -AT,CR,2,25S,201912,2734 -AT,CR,2,261,201912,658 -AT,CR,2,262,201912,4577 -AT,CR,2,265,201912,10861 -AT,CR,2,266,201912,4340 -AT,CR,2,271,201912,766 -AT,CR,2,272,201912,838 -AT,CR,2,273,201912,997 -AT,CR,2,274,201912,3396 -AT,CR,2,279,201912,1024 -AT,CR,2,281,201912,26470 -AT,CR,2,282,201912,23401 -AT,CR,2,289,201912,53724 -AT,CR,2,293,201912,2990 -AT,CR,2,309,201912,35574 -AT,CR,2,325,201912,57717 -AT,CR,2,329,201912,10075 -AT,CU,1,110,201912,57039 -AT,CU,1,120,201912,82 -AT,CU,2,110,201912,129840 -AT,CU,2,139,201912,4 -AT,CU,2,151,201912,2 -AT,CU,2,162,201912,20904 -AT,CU,2,172,201912,2 -AT,CU,2,17S,201912,163770 -AT,CU,2,204,201912,1 -AT,CU,2,205,201912,19856 -AT,CU,2,222,201912,20546 -AT,CU,2,259,201912,59 -AT,CU,2,265,201912,2550 -AT,CU,2,267,201912,2537 -AT,CU,2,281,201912,18596 -AT,CU,2,282,201912,23798 -AT,CU,2,289,201912,956814 -AT,CU,2,325,201912,5 -AT,CU,2,329,201912,5 -AT,CW,2,107,201912,29 -AT,CW,2,110,201912,21497 -AT,CW,2,265,201912,3915 -AT,CY,1,011,201912,26494 -AT,CY,1,012,201912,406949 -AT,CY,1,103,201912,121688 -AT,CY,1,105,201912,835533 -AT,CY,1,108,201912,8520 -AT,CY,1,110,201912,144935 -AT,CY,1,212,201912,71460 -AT,CY,1,222,201912,3701 -AT,CY,1,244,201912,41 -AT,CY,1,271,201912,440 -AT,CY,1,274,201912,93932 -AT,CY,1,279,201912,63488 -AT,CY,2,012,201912,45861 -AT,CY,2,014,201912,61 -AT,CY,2,101,201912,1721 -AT,CY,2,102,201912,98582 -AT,CY,2,103,201912,62830 -AT,CY,2,104,201912,184 -AT,CY,2,105,201912,85505 -AT,CY,2,106,201912,105 -AT,CY,2,107,201912,29607 -AT,CY,2,108,201912,228855 -AT,CY,2,110,201912,164267 -AT,CY,2,139,201912,81078 -AT,CY,2,141,201912,336484 -AT,CY,2,143,201912,85979 -AT,CY,2,151,201912,2924 -AT,CY,2,152,201912,47812 -AT,CY,2,162,201912,89836 -AT,CY,2,172,201912,1629 -AT,CY,2,201,201912,89133 -AT,CY,2,202,201912,1002 -AT,CY,2,203,201912,2470 -AT,CY,2,204,201912,50375 -AT,CY,2,205,201912,30162 -AT,CY,2,212,201912,30196 -AT,CY,2,221,201912,8376 -AT,CY,2,222,201912,46576 -AT,CY,2,231,201912,12846 -AT,CY,2,234,201912,2004 -AT,CY,2,239,201912,5943 -AT,CY,2,241,201912,387 -AT,CY,2,243,201912,37293 -AT,CY,2,244,201912,472 -AT,CY,2,245,201912,2668 -AT,CY,2,251,201912,3126 -AT,CY,2,253,201912,43351 -AT,CY,2,254,201912,2029 -AT,CY,2,257,201912,34478 -AT,CY,2,259,201912,40333 -AT,CY,2,261,201912,41572 -AT,CY,2,262,201912,335128 -AT,CY,2,263,201912,114552 -AT,CY,2,264,201912,37721 -AT,CY,2,265,201912,48442 -AT,CY,2,266,201912,214065 -AT,CY,2,267,201912,196 -AT,CY,2,268,201912,4247 -AT,CY,2,271,201912,88245 -AT,CY,2,272,201912,2609 -AT,CY,2,273,201912,5409 -AT,CY,2,274,201912,47479 -AT,CY,2,275,201912,191652 -AT,CY,2,279,201912,205573 -AT,CY,2,281,201912,21070 -AT,CY,2,282,201912,110742 -AT,CY,2,284,201912,963 -AT,CY,2,289,201912,9660 -AT,CY,2,291,201912,217369 -AT,CY,2,293,201912,30680 -AT,CY,2,309,201912,58 -AT,CY,2,310,201912,18422 -AT,CY,2,321,201912,18259 -AT,CY,2,322,201912,2839 -AT,CY,2,323,201912,15452 -AT,CY,2,324,201912,13325 -AT,CY,2,325,201912,91537 -AT,CY,2,329,201912,32331 -AT,CY,2,32S,201912,3914 -AT,CZ,1,011,201912,11233036 -AT,CZ,1,012,201912,81398 -AT,CZ,1,013,201912,7414 -AT,CZ,1,014,201912,4309126 -AT,CZ,1,022,201912,20709122 -AT,CZ,1,023,201912,32969 -AT,CZ,1,030,201912,739220 -AT,CZ,1,051,201912,3153891 -AT,CZ,1,052,201912,50151 -AT,CZ,1,081,201912,617384 -AT,CZ,1,089,201912,292447 -AT,CZ,1,101,201912,1218367 -AT,CZ,1,102,201912,1568380 -AT,CZ,1,103,201912,1073353 -AT,CZ,1,104,201912,7752147 -AT,CZ,1,105,201912,112340 -AT,CZ,1,106,201912,234499 -AT,CZ,1,107,201912,688971 -AT,CZ,1,108,201912,6555083 -AT,CZ,1,109,201912,616068 -AT,CZ,1,110,201912,1481634 -AT,CZ,1,120,201912,519 -AT,CZ,1,131,201912,902451 -AT,CZ,1,132,201912,598356 -AT,CZ,1,139,201912,2206448 -AT,CZ,1,141,201912,9978516 -AT,CZ,1,142,201912,109 -AT,CZ,1,143,201912,2602183 -AT,CZ,1,151,201912,1600582 -AT,CZ,1,152,201912,4470020 -AT,CZ,1,161,201912,8046141 -AT,CZ,1,162,201912,9075201 -AT,CZ,1,171,201912,3485510 -AT,CZ,1,172,201912,4402725 -AT,CZ,1,181,201912,6024 -AT,CZ,1,191,201912,414445 -AT,CZ,1,192,201912,5034661 -AT,CZ,1,201,201912,6230524 -AT,CZ,1,202,201912,90569 -AT,CZ,1,203,201912,79060 -AT,CZ,1,204,201912,6036390 -AT,CZ,1,205,201912,5800411 -AT,CZ,1,206,201912,191684 -AT,CZ,1,211,201912,148698 -AT,CZ,1,212,201912,11801364 -AT,CZ,1,221,201912,3662274 -AT,CZ,1,222,201912,9321892 -AT,CZ,1,231,201912,2446662 -AT,CZ,1,232,201912,443856 -AT,CZ,1,233,201912,780027 -AT,CZ,1,234,201912,705421 -AT,CZ,1,235,201912,365224 -AT,CZ,1,236,201912,1144884 -AT,CZ,1,237,201912,25484 -AT,CZ,1,239,201912,762030 -AT,CZ,1,241,201912,3124317 -AT,CZ,1,242,201912,1372496 -AT,CZ,1,243,201912,1736603 -AT,CZ,1,244,201912,5027351 -AT,CZ,1,245,201912,136803 -AT,CZ,1,251,201912,8189693 -AT,CZ,1,252,201912,760517 -AT,CZ,1,253,201912,23247 -AT,CZ,1,254,201912,545009 -AT,CZ,1,257,201912,4588085 -AT,CZ,1,259,201912,9595915 -AT,CZ,1,25S,201912,19188 -AT,CZ,1,261,201912,917111 -AT,CZ,1,262,201912,47903066 -AT,CZ,1,263,201912,30432413 -AT,CZ,1,264,201912,9544102 -AT,CZ,1,265,201912,8903622 -AT,CZ,1,266,201912,6265 -AT,CZ,1,267,201912,946575 -AT,CZ,1,268,201912,34503 -AT,CZ,1,271,201912,18064612 -AT,CZ,1,272,201912,2471880 -AT,CZ,1,273,201912,3965936 -AT,CZ,1,274,201912,2998928 -AT,CZ,1,275,201912,5135980 -AT,CZ,1,279,201912,6228191 -AT,CZ,1,281,201912,11862874 -AT,CZ,1,282,201912,13243652 -AT,CZ,1,283,201912,4069911 -AT,CZ,1,284,201912,9540331 -AT,CZ,1,289,201912,16948438 -AT,CZ,1,291,201912,26826336 -AT,CZ,1,292,201912,1600878 -AT,CZ,1,293,201912,30469618 -AT,CZ,1,302,201912,2676245 -AT,CZ,1,303,201912,464926 -AT,CZ,1,309,201912,2018180 -AT,CZ,1,310,201912,4205023 -AT,CZ,1,321,201912,565394 -AT,CZ,1,322,201912,532611 -AT,CZ,1,323,201912,4367566 -AT,CZ,1,324,201912,8431956 -AT,CZ,1,325,201912,6179631 -AT,CZ,1,329,201912,2790132 -AT,CZ,1,351,201912,37813906 -AT,CZ,2,011,201912,3034914 -AT,CZ,2,012,201912,854515 -AT,CZ,2,013,201912,71894 -AT,CZ,2,014,201912,114606 -AT,CZ,2,022,201912,50445 -AT,CZ,2,023,201912,543 -AT,CZ,2,030,201912,27792 -AT,CZ,2,081,201912,73761 -AT,CZ,2,089,201912,742647 -AT,CZ,2,101,201912,3811285 -AT,CZ,2,102,201912,182931 -AT,CZ,2,103,201912,1742380 -AT,CZ,2,104,201912,1929898 -AT,CZ,2,105,201912,198801 -AT,CZ,2,106,201912,1320344 -AT,CZ,2,107,201912,1683389 -AT,CZ,2,108,201912,4602534 -AT,CZ,2,109,201912,754123 -AT,CZ,2,10S,201912,125472 -AT,CZ,2,110,201912,2628188 -AT,CZ,2,131,201912,1459982 -AT,CZ,2,132,201912,1065724 -AT,CZ,2,139,201912,2876822 -AT,CZ,2,141,201912,8309086 -AT,CZ,2,142,201912,8834 -AT,CZ,2,143,201912,1280456 -AT,CZ,2,151,201912,1490404 -AT,CZ,2,152,201912,3324004 -AT,CZ,2,161,201912,1615302 -AT,CZ,2,162,201912,5314776 -AT,CZ,2,171,201912,8392367 -AT,CZ,2,172,201912,3892733 -AT,CZ,2,17S,201912,1650251 -AT,CZ,2,181,201912,8199 -AT,CZ,2,192,201912,13771157 -AT,CZ,2,201,201912,4100333 -AT,CZ,2,202,201912,125874 -AT,CZ,2,203,201912,2838566 -AT,CZ,2,204,201912,4895845 -AT,CZ,2,205,201912,3823007 -AT,CZ,2,206,201912,369914 -AT,CZ,2,20S,201912,2197222 -AT,CZ,2,211,201912,34492 -AT,CZ,2,212,201912,12253936 -AT,CZ,2,221,201912,2097366 -AT,CZ,2,222,201912,11067879 -AT,CZ,2,231,201912,1202158 -AT,CZ,2,232,201912,185408 -AT,CZ,2,233,201912,92589 -AT,CZ,2,234,201912,717395 -AT,CZ,2,235,201912,172612 -AT,CZ,2,236,201912,156137 -AT,CZ,2,237,201912,163798 -AT,CZ,2,239,201912,1341997 -AT,CZ,2,241,201912,12419422 -AT,CZ,2,242,201912,2427812 -AT,CZ,2,243,201912,3325917 -AT,CZ,2,244,201912,17893886 -AT,CZ,2,245,201912,84675 -AT,CZ,2,251,201912,6359521 -AT,CZ,2,252,201912,207419 -AT,CZ,2,253,201912,78660 -AT,CZ,2,254,201912,57283 -AT,CZ,2,257,201912,5404200 -AT,CZ,2,259,201912,7994920 -AT,CZ,2,25S,201912,28487 -AT,CZ,2,261,201912,2117877 -AT,CZ,2,262,201912,2285440 -AT,CZ,2,263,201912,5511812 -AT,CZ,2,264,201912,443563 -AT,CZ,2,265,201912,4380114 -AT,CZ,2,266,201912,279521 -AT,CZ,2,267,201912,586128 -AT,CZ,2,268,201912,2048 -AT,CZ,2,271,201912,14668308 -AT,CZ,2,272,201912,956965 -AT,CZ,2,273,201912,7136407 -AT,CZ,2,274,201912,1686765 -AT,CZ,2,275,201912,1640607 -AT,CZ,2,279,201912,5348977 -AT,CZ,2,281,201912,7078106 -AT,CZ,2,282,201912,10581781 -AT,CZ,2,283,201912,6714618 -AT,CZ,2,284,201912,4892556 -AT,CZ,2,289,201912,27489129 -AT,CZ,2,291,201912,37619864 -AT,CZ,2,292,201912,811058 -AT,CZ,2,293,201912,10354399 -AT,CZ,2,302,201912,21149259 -AT,CZ,2,303,201912,729473 -AT,CZ,2,309,201912,1061029 -AT,CZ,2,310,201912,2599813 -AT,CZ,2,321,201912,2262646 -AT,CZ,2,322,201912,12275 -AT,CZ,2,323,201912,2829311 -AT,CZ,2,324,201912,2045694 -AT,CZ,2,325,201912,4743679 -AT,CZ,2,329,201912,916419 -AT,CZ,2,32S,201912,23168 -AT,CZ,2,351,201912,172973 -AT,DE,1,011,201912,26878905 -AT,DE,1,012,201912,32251795 -AT,DE,1,013,201912,3507290 -AT,DE,1,014,201912,12390982 -AT,DE,1,021,201912,50460 -AT,DE,1,022,201912,11486926 -AT,DE,1,023,201912,615995 -AT,DE,1,030,201912,2617051 -AT,DE,1,051,201912,3586290 -AT,DE,1,052,201912,524911 -AT,DE,1,061,201912,69811 -AT,DE,1,072,201912,242852 -AT,DE,1,081,201912,3727378 -AT,DE,1,089,201912,4362423 -AT,DE,1,101,201912,67902734 -AT,DE,1,102,201912,30996890 -AT,DE,1,103,201912,35166948 -AT,DE,1,104,201912,14145101 -AT,DE,1,105,201912,46934000 -AT,DE,1,106,201912,14364621 -AT,DE,1,107,201912,40615747 -AT,DE,1,108,201912,85247049 -AT,DE,1,109,201912,23119390 -AT,DE,1,110,201912,25683662 -AT,DE,1,120,201912,3990132 -AT,DE,1,131,201912,3078314 -AT,DE,1,132,201912,9018100 -AT,DE,1,139,201912,50077560 -AT,DE,1,141,201912,159621217 -AT,DE,1,142,201912,332571 -AT,DE,1,143,201912,36054168 -AT,DE,1,151,201912,15747796 -AT,DE,1,152,201912,28855702 -AT,DE,1,161,201912,16583404 -AT,DE,1,162,201912,33591304 -AT,DE,1,171,201912,47560815 -AT,DE,1,172,201912,51060015 -AT,DE,1,181,201912,1037885 -AT,DE,1,191,201912,372130 -AT,DE,1,192,201912,176029636 -AT,DE,1,201,201912,140254674 -AT,DE,1,202,201912,6478423 -AT,DE,1,203,201912,24888074 -AT,DE,1,204,201912,72386932 -AT,DE,1,205,201912,71960283 -AT,DE,1,206,201912,1171945 -AT,DE,1,211,201912,7062227 -AT,DE,1,212,201912,166605297 -AT,DE,1,221,201912,42056095 -AT,DE,1,222,201912,136943226 -AT,DE,1,231,201912,29263798 -AT,DE,1,232,201912,17092322 -AT,DE,1,233,201912,3296770 -AT,DE,1,234,201912,10919388 -AT,DE,1,235,201912,3578935 -AT,DE,1,236,201912,10504270 -AT,DE,1,237,201912,923712 -AT,DE,1,239,201912,15656612 -AT,DE,1,241,201912,56839312 -AT,DE,1,242,201912,16164201 -AT,DE,1,243,201912,21162804 -AT,DE,1,244,201912,120665430 -AT,DE,1,245,201912,1742309 -AT,DE,1,251,201912,33673792 -AT,DE,1,252,201912,9334358 -AT,DE,1,253,201912,850080 -AT,DE,1,254,201912,2848077 -AT,DE,1,257,201912,71760153 -AT,DE,1,259,201912,97244914 -AT,DE,1,25S,201912,767472 -AT,DE,1,261,201912,65600449 -AT,DE,1,262,201912,112710628 -AT,DE,1,263,201912,76521350 -AT,DE,1,264,201912,42045325 -AT,DE,1,265,201912,83686110 -AT,DE,1,266,201912,17283455 -AT,DE,1,267,201912,16661799 -AT,DE,1,268,201912,1390430 -AT,DE,1,271,201912,92319813 -AT,DE,1,272,201912,11778165 -AT,DE,1,273,201912,37516863 -AT,DE,1,274,201912,30722705 -AT,DE,1,275,201912,69709479 -AT,DE,1,279,201912,58224719 -AT,DE,1,281,201912,210567071 -AT,DE,1,282,201912,196455509 -AT,DE,1,283,201912,30100697 -AT,DE,1,284,201912,92664032 -AT,DE,1,289,201912,135906400 -AT,DE,1,291,201912,427790342 -AT,DE,1,292,201912,20746831 -AT,DE,1,293,201912,173161274 -AT,DE,1,301,201912,160623 -AT,DE,1,302,201912,36016636 -AT,DE,1,303,201912,11270183 -AT,DE,1,309,201912,26501504 -AT,DE,1,310,201912,79893109 -AT,DE,1,321,201912,17200313 -AT,DE,1,322,201912,8219036 -AT,DE,1,323,201912,12041826 -AT,DE,1,324,201912,33468467 -AT,DE,1,325,201912,58018067 -AT,DE,1,329,201912,25339265 -AT,DE,1,351,201912,59580346 -AT,DE,2,011,201912,21469368 -AT,DE,2,012,201912,7512333 -AT,DE,2,013,201912,279203 -AT,DE,2,014,201912,2913699 -AT,DE,2,021,201912,1097 -AT,DE,2,022,201912,692063 -AT,DE,2,023,201912,44577 -AT,DE,2,030,201912,165023 -AT,DE,2,081,201912,3633683 -AT,DE,2,089,201912,2512285 -AT,DE,2,101,201912,70128291 -AT,DE,2,102,201912,3518525 -AT,DE,2,103,201912,23708406 -AT,DE,2,104,201912,8657404 -AT,DE,2,105,201912,52106425 -AT,DE,2,106,201912,10457868 -AT,DE,2,107,201912,23893608 -AT,DE,2,108,201912,50838166 -AT,DE,2,109,201912,20616230 -AT,DE,2,10S,201912,4211498 -AT,DE,2,110,201912,51247285 -AT,DE,2,131,201912,1614304 -AT,DE,2,132,201912,6519866 -AT,DE,2,139,201912,26204802 -AT,DE,2,141,201912,64649143 -AT,DE,2,142,201912,179043 -AT,DE,2,143,201912,11402561 -AT,DE,2,151,201912,6363849 -AT,DE,2,152,201912,18240104 -AT,DE,2,161,201912,12301301 -AT,DE,2,162,201912,51039865 -AT,DE,2,171,201912,52890675 -AT,DE,2,172,201912,31050195 -AT,DE,2,17S,201912,1575741 -AT,DE,2,181,201912,233393 -AT,DE,2,191,201912,695858 -AT,DE,2,192,201912,10619795 -AT,DE,2,201,201912,44382625 -AT,DE,2,202,201912,2362069 -AT,DE,2,203,201912,8343933 -AT,DE,2,204,201912,22269055 -AT,DE,2,205,201912,26888937 -AT,DE,2,206,201912,688950 -AT,DE,2,20S,201912,5079562 -AT,DE,2,211,201912,881574 -AT,DE,2,212,201912,81774118 -AT,DE,2,221,201912,14314780 -AT,DE,2,222,201912,90549184 -AT,DE,2,231,201912,9612801 -AT,DE,2,232,201912,2138159 -AT,DE,2,233,201912,1226116 -AT,DE,2,234,201912,4215855 -AT,DE,2,235,201912,1135489 -AT,DE,2,236,201912,7005830 -AT,DE,2,237,201912,1604979 -AT,DE,2,239,201912,10140431 -AT,DE,2,241,201912,78503537 -AT,DE,2,242,201912,13718856 -AT,DE,2,243,201912,23930866 -AT,DE,2,244,201912,133402146 -AT,DE,2,245,201912,1278706 -AT,DE,2,251,201912,32535734 -AT,DE,2,252,201912,23794345 -AT,DE,2,253,201912,2442363 -AT,DE,2,254,201912,3747224 -AT,DE,2,257,201912,50175955 -AT,DE,2,259,201912,81708199 -AT,DE,2,25S,201912,788668 -AT,DE,2,261,201912,43367761 -AT,DE,2,262,201912,29677218 -AT,DE,2,263,201912,46362072 -AT,DE,2,264,201912,10595377 -AT,DE,2,265,201912,45349430 -AT,DE,2,266,201912,11657471 -AT,DE,2,267,201912,6659525 -AT,DE,2,268,201912,576525 -AT,DE,2,271,201912,74131403 -AT,DE,2,272,201912,16416882 -AT,DE,2,273,201912,23491244 -AT,DE,2,274,201912,41285108 -AT,DE,2,275,201912,30724559 -AT,DE,2,279,201912,41291653 -AT,DE,2,281,201912,110823023 -AT,DE,2,282,201912,152836062 -AT,DE,2,283,201912,23034268 -AT,DE,2,284,201912,55113509 -AT,DE,2,289,201912,103744338 -AT,DE,2,291,201912,326500974 -AT,DE,2,292,201912,13054236 -AT,DE,2,293,201912,117183533 -AT,DE,2,301,201912,187216 -AT,DE,2,302,201912,39415771 -AT,DE,2,303,201912,24070592 -AT,DE,2,309,201912,31292359 -AT,DE,2,310,201912,35582062 -AT,DE,2,321,201912,61674229 -AT,DE,2,322,201912,1025002 -AT,DE,2,323,201912,10934212 -AT,DE,2,324,201912,7492357 -AT,DE,2,325,201912,26444281 -AT,DE,2,329,201912,10162163 -AT,DE,2,32S,201912,688000 -AT,DE,2,351,201912,16173013 -AT,DJ,2,132,201912,3920 -AT,DK,1,011,201912,353969 -AT,DK,1,012,201912,688593 -AT,DK,1,013,201912,173259 -AT,DK,1,014,201912,5659 -AT,DK,1,023,201912,40509 -AT,DK,1,030,201912,599567 -AT,DK,1,081,201912,521 -AT,DK,1,089,201912,154573 -AT,DK,1,101,201912,569767 -AT,DK,1,102,201912,1963012 -AT,DK,1,103,201912,102227 -AT,DK,1,104,201912,30187 -AT,DK,1,105,201912,1370837 -AT,DK,1,106,201912,61021 -AT,DK,1,107,201912,190649 -AT,DK,1,108,201912,855952 -AT,DK,1,109,201912,80581 -AT,DK,1,110,201912,218638 -AT,DK,1,120,201912,61661 -AT,DK,1,131,201912,11626 -AT,DK,1,132,201912,42750 -AT,DK,1,139,201912,268095 -AT,DK,1,141,201912,3908009 -AT,DK,1,142,201912,1308 -AT,DK,1,143,201912,879289 -AT,DK,1,151,201912,159522 -AT,DK,1,152,201912,169732 -AT,DK,1,162,201912,85344 -AT,DK,1,171,201912,8374 -AT,DK,1,172,201912,613538 -AT,DK,1,192,201912,1124 -AT,DK,1,201,201912,836157 -AT,DK,1,203,201912,101528 -AT,DK,1,204,201912,389932 -AT,DK,1,205,201912,758388 -AT,DK,1,206,201912,9 -AT,DK,1,211,201912,211047 -AT,DK,1,212,201912,7650311 -AT,DK,1,221,201912,104161 -AT,DK,1,222,201912,872398 -AT,DK,1,231,201912,52148 -AT,DK,1,232,201912,32931 -AT,DK,1,233,201912,3808 -AT,DK,1,234,201912,87554 -AT,DK,1,236,201912,9932 -AT,DK,1,239,201912,113139 -AT,DK,1,241,201912,16152 -AT,DK,1,242,201912,542281 -AT,DK,1,243,201912,42260 -AT,DK,1,244,201912,129653 -AT,DK,1,245,201912,19 -AT,DK,1,251,201912,277675 -AT,DK,1,252,201912,24005 -AT,DK,1,254,201912,3879 -AT,DK,1,257,201912,197946 -AT,DK,1,259,201912,601833 -AT,DK,1,25S,201912,58907 -AT,DK,1,261,201912,1104989 -AT,DK,1,262,201912,1642994 -AT,DK,1,263,201912,177998 -AT,DK,1,264,201912,1623256 -AT,DK,1,265,201912,1796294 -AT,DK,1,266,201912,848181 -AT,DK,1,267,201912,155274 -AT,DK,1,268,201912,8811 -AT,DK,1,271,201912,223837 -AT,DK,1,272,201912,18757 -AT,DK,1,273,201912,60774 -AT,DK,1,274,201912,213914 -AT,DK,1,275,201912,678373 -AT,DK,1,279,201912,475391 -AT,DK,1,281,201912,4807832 -AT,DK,1,282,201912,2318130 -AT,DK,1,283,201912,257059 -AT,DK,1,284,201912,61866 -AT,DK,1,289,201912,3480394 -AT,DK,1,291,201912,3797216 -AT,DK,1,292,201912,32426 -AT,DK,1,293,201912,1321274 -AT,DK,1,302,201912,25997 -AT,DK,1,303,201912,21249 -AT,DK,1,309,201912,116864 -AT,DK,1,310,201912,1046331 -AT,DK,1,321,201912,160669 -AT,DK,1,322,201912,337 -AT,DK,1,323,201912,21730 -AT,DK,1,324,201912,115813 -AT,DK,1,325,201912,272451 -AT,DK,1,329,201912,118211 -AT,DK,2,011,201912,143781 -AT,DK,2,012,201912,28163 -AT,DK,2,014,201912,39231 -AT,DK,2,022,201912,9521 -AT,DK,2,081,201912,10104 -AT,DK,2,089,201912,4511 -AT,DK,2,101,201912,1242967 -AT,DK,2,102,201912,111 -AT,DK,2,103,201912,430057 -AT,DK,2,104,201912,58633 -AT,DK,2,105,201912,967993 -AT,DK,2,106,201912,431987 -AT,DK,2,107,201912,14468 -AT,DK,2,108,201912,638546 -AT,DK,2,109,201912,102865 -AT,DK,2,10S,201912,178530 -AT,DK,2,110,201912,1996901 -AT,DK,2,131,201912,314 -AT,DK,2,132,201912,129820 -AT,DK,2,139,201912,199360 -AT,DK,2,141,201912,543885 -AT,DK,2,142,201912,54 -AT,DK,2,143,201912,319224 -AT,DK,2,151,201912,30552 -AT,DK,2,152,201912,30189 -AT,DK,2,161,201912,128233 -AT,DK,2,162,201912,687684 -AT,DK,2,171,201912,499981 -AT,DK,2,172,201912,72922 -AT,DK,2,192,201912,184033 -AT,DK,2,201,201912,1167989 -AT,DK,2,202,201912,15225 -AT,DK,2,203,201912,97978 -AT,DK,2,204,201912,675558 -AT,DK,2,205,201912,249675 -AT,DK,2,206,201912,276013 -AT,DK,2,212,201912,5179535 -AT,DK,2,221,201912,182063 -AT,DK,2,222,201912,1427665 -AT,DK,2,231,201912,319843 -AT,DK,2,232,201912,452 -AT,DK,2,233,201912,1272 -AT,DK,2,234,201912,12531 -AT,DK,2,236,201912,111501 -AT,DK,2,239,201912,88304 -AT,DK,2,241,201912,3643286 -AT,DK,2,242,201912,777994 -AT,DK,2,243,201912,258750 -AT,DK,2,244,201912,233643 -AT,DK,2,245,201912,209226 -AT,DK,2,251,201912,676141 -AT,DK,2,252,201912,174139 -AT,DK,2,254,201912,11107056 -AT,DK,2,257,201912,1710361 -AT,DK,2,259,201912,715993 -AT,DK,2,25S,201912,6987 -AT,DK,2,261,201912,122790 -AT,DK,2,262,201912,697428 -AT,DK,2,263,201912,780044 -AT,DK,2,264,201912,109358 -AT,DK,2,265,201912,1531885 -AT,DK,2,266,201912,294067 -AT,DK,2,267,201912,175491 -AT,DK,2,268,201912,35072 -AT,DK,2,271,201912,1752489 -AT,DK,2,272,201912,117545 -AT,DK,2,273,201912,169294 -AT,DK,2,274,201912,342295 -AT,DK,2,275,201912,193069 -AT,DK,2,279,201912,721420 -AT,DK,2,281,201912,1014003 -AT,DK,2,282,201912,2803676 -AT,DK,2,283,201912,2041451 -AT,DK,2,284,201912,483284 -AT,DK,2,289,201912,4406713 -AT,DK,2,291,201912,925093 -AT,DK,2,292,201912,240014 -AT,DK,2,293,201912,75288 -AT,DK,2,302,201912,6573 -AT,DK,2,303,201912,835 -AT,DK,2,309,201912,398158 -AT,DK,2,310,201912,414074 -AT,DK,2,321,201912,49415 -AT,DK,2,323,201912,284691 -AT,DK,2,324,201912,79826 -AT,DK,2,325,201912,501809 -AT,DK,2,329,201912,120937 -AT,DK,2,32S,201912,6455 -AT,DO,1,110,201912,2133 -AT,DO,1,120,201912,13308 -AT,DO,1,141,201912,716 -AT,DO,1,293,201912,142 -AT,DO,1,321,201912,99 -AT,DO,2,110,201912,143705 -AT,DO,2,139,201912,189 -AT,DO,2,141,201912,1844 -AT,DO,2,151,201912,64 -AT,DO,2,171,201912,53278 -AT,DO,2,205,201912,575 -AT,DO,2,212,201912,153502 -AT,DO,2,221,201912,31401 -AT,DO,2,222,201912,9513 -AT,DO,2,257,201912,36154 -AT,DO,2,259,201912,29610 -AT,DO,2,261,201912,52 -AT,DO,2,265,201912,957 -AT,DO,2,271,201912,1877 -AT,DO,2,273,201912,415 -AT,DO,2,279,201912,3916 -AT,DO,2,281,201912,55258 -AT,DO,2,282,201912,39652 -AT,DO,2,284,201912,1164 -AT,DO,2,289,201912,232658 -AT,DO,2,293,201912,1099 -AT,DO,2,309,201912,211891 -AT,DO,2,329,201912,485 -AT,DZ,2,104,201912,38708 -AT,DZ,2,106,201912,54000 -AT,DZ,2,108,201912,200680 -AT,DZ,2,109,201912,189019 -AT,DZ,2,162,201912,89746 -AT,DZ,2,171,201912,35528 -AT,DZ,2,172,201912,36769 -AT,DZ,2,201,201912,409073 -AT,DZ,2,204,201912,3480 -AT,DZ,2,205,201912,30107 -AT,DZ,2,212,201912,5949943 -AT,DZ,2,221,201912,7614 -AT,DZ,2,222,201912,194001 -AT,DZ,2,231,201912,21488 -AT,DZ,2,232,201912,700732 -AT,DZ,2,242,201912,31752 -AT,DZ,2,244,201912,636 -AT,DZ,2,257,201912,174850 -AT,DZ,2,259,201912,30438 -AT,DZ,2,262,201912,83355 -AT,DZ,2,263,201912,1098538 -AT,DZ,2,265,201912,126485 -AT,DZ,2,266,201912,23049 -AT,DZ,2,267,201912,2517 -AT,DZ,2,271,201912,143613 -AT,DZ,2,273,201912,106093 -AT,DZ,2,274,201912,159 -AT,DZ,2,279,201912,1163642 -AT,DZ,2,281,201912,187284 -AT,DZ,2,282,201912,478435 -AT,DZ,2,284,201912,115134 -AT,DZ,2,289,201912,1093881 -AT,DZ,2,291,201912,13054495 -AT,DZ,2,293,201912,104118 -AT,DZ,2,310,201912,2646 -AT,DZ,2,329,201912,157453 -AT,EC,1,141,201912,806 -AT,EC,1,321,201912,354 -AT,EC,2,109,201912,136400 -AT,EC,2,139,201912,15 -AT,EC,2,141,201912,25 -AT,EC,2,151,201912,3254 -AT,EC,2,171,201912,661496 -AT,EC,2,172,201912,1188 -AT,EC,2,201,201912,88430 -AT,EC,2,204,201912,10243 -AT,EC,2,205,201912,12147 -AT,EC,2,212,201912,1116653 -AT,EC,2,221,201912,8017 -AT,EC,2,222,201912,35184 -AT,EC,2,231,201912,71 -AT,EC,2,241,201912,42575 -AT,EC,2,243,201912,4502 -AT,EC,2,251,201912,3105 -AT,EC,2,257,201912,97268 -AT,EC,2,259,201912,23583 -AT,EC,2,263,201912,1621 -AT,EC,2,265,201912,135504 -AT,EC,2,266,201912,24143 -AT,EC,2,271,201912,9300 -AT,EC,2,273,201912,5349 -AT,EC,2,274,201912,696 -AT,EC,2,279,201912,49921 -AT,EC,2,281,201912,28011 -AT,EC,2,282,201912,39380 -AT,EC,2,289,201912,1244853 -AT,EC,2,293,201912,207 -AT,EC,2,302,201912,2744 -AT,EC,2,309,201912,114259 -AT,EC,2,310,201912,9934 -AT,EC,2,325,201912,80540 -AT,EC,2,329,201912,5752 -AT,EE,1,102,201912,4542 -AT,EE,1,108,201912,38969 -AT,EE,1,132,201912,55893 -AT,EE,1,139,201912,363972 -AT,EE,1,141,201912,130013 -AT,EE,1,143,201912,33371 -AT,EE,1,151,201912,33501 -AT,EE,1,161,201912,168935 -AT,EE,1,162,201912,192220 -AT,EE,1,171,201912,100062 -AT,EE,1,172,201912,33127 -AT,EE,1,201,201912,99004 -AT,EE,1,203,201912,1379 -AT,EE,1,205,201912,34674 -AT,EE,1,212,201912,362703 -AT,EE,1,221,201912,4477 -AT,EE,1,222,201912,8731 -AT,EE,1,242,201912,406 -AT,EE,1,244,201912,567572 -AT,EE,1,251,201912,153849 -AT,EE,1,259,201912,5194 -AT,EE,1,263,201912,3321 -AT,EE,1,265,201912,2536 -AT,EE,1,267,201912,478 -AT,EE,1,271,201912,113175 -AT,EE,1,273,201912,3048 -AT,EE,1,274,201912,2573 -AT,EE,1,275,201912,21917 -AT,EE,1,279,201912,727 -AT,EE,1,281,201912,1931 -AT,EE,1,282,201912,203472 -AT,EE,1,283,201912,554465 -AT,EE,1,289,201912,3949 -AT,EE,1,292,201912,2483 -AT,EE,1,293,201912,63306 -AT,EE,1,310,201912,42152 -AT,EE,1,325,201912,35497 -AT,EE,1,329,201912,21901 -AT,EE,2,011,201912,4239 -AT,EE,2,012,201912,1098 -AT,EE,2,101,201912,7194 -AT,EE,2,103,201912,22375 -AT,EE,2,104,201912,18700 -AT,EE,2,105,201912,27460 -AT,EE,2,106,201912,3718 -AT,EE,2,107,201912,23741 -AT,EE,2,108,201912,171677 -AT,EE,2,10S,201912,7736 -AT,EE,2,110,201912,192352 -AT,EE,2,131,201912,11504 -AT,EE,2,132,201912,31731 -AT,EE,2,139,201912,142007 -AT,EE,2,141,201912,119278 -AT,EE,2,142,201912,198 -AT,EE,2,143,201912,9178 -AT,EE,2,151,201912,18342 -AT,EE,2,152,201912,137344 -AT,EE,2,161,201912,74934 -AT,EE,2,162,201912,70277 -AT,EE,2,171,201912,13891 -AT,EE,2,172,201912,27833 -AT,EE,2,192,201912,68531 -AT,EE,2,201,201912,145433 -AT,EE,2,202,201912,2298 -AT,EE,2,203,201912,23957 -AT,EE,2,204,201912,423176 -AT,EE,2,205,201912,126023 -AT,EE,2,211,201912,500 -AT,EE,2,212,201912,581079 -AT,EE,2,221,201912,20935 -AT,EE,2,222,201912,185664 -AT,EE,2,231,201912,36914 -AT,EE,2,234,201912,3469 -AT,EE,2,239,201912,78036 -AT,EE,2,241,201912,87820 -AT,EE,2,242,201912,36051 -AT,EE,2,243,201912,21440 -AT,EE,2,244,201912,36898 -AT,EE,2,245,201912,3603 -AT,EE,2,251,201912,85959 -AT,EE,2,253,201912,59073 -AT,EE,2,254,201912,20983 -AT,EE,2,257,201912,188842 -AT,EE,2,259,201912,74831 -AT,EE,2,25S,201912,15812 -AT,EE,2,261,201912,119623 -AT,EE,2,262,201912,33577 -AT,EE,2,263,201912,722288 -AT,EE,2,264,201912,6331 -AT,EE,2,265,201912,223349 -AT,EE,2,266,201912,692095 -AT,EE,2,267,201912,22570 -AT,EE,2,268,201912,1272 -AT,EE,2,271,201912,1322013 -AT,EE,2,272,201912,39534 -AT,EE,2,273,201912,190496 -AT,EE,2,274,201912,57740 -AT,EE,2,275,201912,80564 -AT,EE,2,279,201912,271586 -AT,EE,2,281,201912,164583 -AT,EE,2,282,201912,1383802 -AT,EE,2,283,201912,64629 -AT,EE,2,284,201912,1338792 -AT,EE,2,289,201912,738282 -AT,EE,2,291,201912,47120 -AT,EE,2,292,201912,4846 -AT,EE,2,293,201912,311057 -AT,EE,2,309,201912,1179 -AT,EE,2,310,201912,2260 -AT,EE,2,321,201912,1808540 -AT,EE,2,323,201912,15598 -AT,EE,2,324,201912,216395 -AT,EE,2,325,201912,252993 -AT,EE,2,329,201912,19145 -AT,EE,2,32S,201912,2001 -AT,EG,1,011,201912,76934 -AT,EG,1,012,201912,124382 -AT,EG,1,089,201912,488499 -AT,EG,1,103,201912,405825 -AT,EG,1,131,201912,37802 -AT,EG,1,139,201912,52071 -AT,EG,1,141,201912,1304 -AT,EG,1,205,201912,604 -AT,EG,1,222,201912,92023 -AT,EG,1,231,201912,37406 -AT,EG,1,234,201912,2136 -AT,EG,1,259,201912,7129 -AT,EG,1,266,201912,9654 -AT,EG,1,271,201912,226 -AT,EG,1,273,201912,20176 -AT,EG,1,279,201912,6497 -AT,EG,1,282,201912,8821 -AT,EG,1,310,201912,14099 -AT,EG,1,325,201912,5455 -AT,EG,2,011,201912,4300 -AT,EG,2,012,201912,300236 -AT,EG,2,103,201912,255128 -AT,EG,2,108,201912,57454 -AT,EG,2,109,201912,91797 -AT,EG,2,110,201912,137437 -AT,EG,2,131,201912,125311 -AT,EG,2,139,201912,52299 -AT,EG,2,141,201912,69795 -AT,EG,2,151,201912,931 -AT,EG,2,162,201912,160706 -AT,EG,2,171,201912,492125 -AT,EG,2,172,201912,41290 -AT,EG,2,17S,201912,30026 -AT,EG,2,192,201912,201 -AT,EG,2,201,201912,160473 -AT,EG,2,202,201912,1391 -AT,EG,2,203,201912,76562 -AT,EG,2,204,201912,148291 -AT,EG,2,205,201912,190504 -AT,EG,2,212,201912,2897370 -AT,EG,2,221,201912,73443 -AT,EG,2,222,201912,470985 -AT,EG,2,231,201912,37302 -AT,EG,2,232,201912,1112739 -AT,EG,2,234,201912,152009 -AT,EG,2,239,201912,1225823 -AT,EG,2,241,201912,70173 -AT,EG,2,242,201912,395718 -AT,EG,2,243,201912,213361 -AT,EG,2,244,201912,77189 -AT,EG,2,245,201912,24582 -AT,EG,2,251,201912,290995 -AT,EG,2,252,201912,122 -AT,EG,2,257,201912,260785 -AT,EG,2,259,201912,117523 -AT,EG,2,261,201912,12932 -AT,EG,2,262,201912,72369 -AT,EG,2,263,201912,144995 -AT,EG,2,265,201912,741064 -AT,EG,2,266,201912,11406 -AT,EG,2,267,201912,78851 -AT,EG,2,271,201912,389554 -AT,EG,2,272,201912,1383 -AT,EG,2,273,201912,170980 -AT,EG,2,274,201912,88136 -AT,EG,2,279,201912,23718 -AT,EG,2,281,201912,783017 -AT,EG,2,282,201912,1945061 -AT,EG,2,284,201912,5948 -AT,EG,2,289,201912,2243530 -AT,EG,2,291,201912,1132627 -AT,EG,2,293,201912,13282 -AT,EG,2,302,201912,12592 -AT,EG,2,310,201912,74392 -AT,EG,2,323,201912,9553 -AT,EG,2,324,201912,10169 -AT,EG,2,325,201912,845247 -AT,EG,2,329,201912,42240 -AT,ES,1,011,201912,9709575 -AT,ES,1,012,201912,11881360 -AT,ES,1,013,201912,3476 -AT,ES,1,014,201912,111396 -AT,ES,1,030,201912,63979 -AT,ES,1,081,201912,92237 -AT,ES,1,089,201912,9 -AT,ES,1,101,201912,1860513 -AT,ES,1,102,201912,680044 -AT,ES,1,103,201912,2369385 -AT,ES,1,104,201912,1070061 -AT,ES,1,105,201912,188286 -AT,ES,1,106,201912,234756 -AT,ES,1,107,201912,391305 -AT,ES,1,108,201912,2415895 -AT,ES,1,109,201912,191766 -AT,ES,1,110,201912,826644 -AT,ES,1,120,201912,177460 -AT,ES,1,131,201912,364026 -AT,ES,1,132,201912,356585 -AT,ES,1,139,201912,685523 -AT,ES,1,141,201912,3265799 -AT,ES,1,142,201912,15341 -AT,ES,1,143,201912,711508 -AT,ES,1,151,201912,518398 -AT,ES,1,152,201912,1625535 -AT,ES,1,161,201912,41030 -AT,ES,1,162,201912,260033 -AT,ES,1,171,201912,2295182 -AT,ES,1,172,201912,299534 -AT,ES,1,192,201912,126172 -AT,ES,1,201,201912,3657417 -AT,ES,1,202,201912,1201770 -AT,ES,1,203,201912,632045 -AT,ES,1,204,201912,1495681 -AT,ES,1,205,201912,768602 -AT,ES,1,206,201912,134757 -AT,ES,1,211,201912,50792 -AT,ES,1,212,201912,17486188 -AT,ES,1,221,201912,717069 -AT,ES,1,222,201912,3342351 -AT,ES,1,231,201912,202493 -AT,ES,1,232,201912,27029 -AT,ES,1,233,201912,605597 -AT,ES,1,234,201912,271897 -AT,ES,1,236,201912,301422 -AT,ES,1,237,201912,21609 -AT,ES,1,239,201912,34343 -AT,ES,1,241,201912,3587359 -AT,ES,1,242,201912,468347 -AT,ES,1,243,201912,59813 -AT,ES,1,244,201912,2213299 -AT,ES,1,245,201912,2666 -AT,ES,1,251,201912,583928 -AT,ES,1,252,201912,1295 -AT,ES,1,254,201912,314 -AT,ES,1,257,201912,686742 -AT,ES,1,259,201912,3601209 -AT,ES,1,261,201912,337906 -AT,ES,1,262,201912,606643 -AT,ES,1,263,201912,1162361 -AT,ES,1,264,201912,411781 -AT,ES,1,265,201912,742830 -AT,ES,1,266,201912,176181 -AT,ES,1,267,201912,58830 -AT,ES,1,268,201912,10598 -AT,ES,1,271,201912,1990293 -AT,ES,1,272,201912,32410 -AT,ES,1,273,201912,212301 -AT,ES,1,274,201912,750224 -AT,ES,1,275,201912,283818 -AT,ES,1,279,201912,790635 -AT,ES,1,281,201912,3552525 -AT,ES,1,282,201912,4548586 -AT,ES,1,283,201912,76961 -AT,ES,1,284,201912,777272 -AT,ES,1,289,201912,1962773 -AT,ES,1,291,201912,32084199 -AT,ES,1,292,201912,78318 -AT,ES,1,293,201912,10921107 -AT,ES,1,302,201912,504248 -AT,ES,1,303,201912,133022 -AT,ES,1,309,201912,1194101 -AT,ES,1,310,201912,675752 -AT,ES,1,321,201912,165529 -AT,ES,1,322,201912,14580 -AT,ES,1,323,201912,99557 -AT,ES,1,324,201912,594432 -AT,ES,1,325,201912,824871 -AT,ES,1,329,201912,569754 -AT,ES,2,011,201912,78998 -AT,ES,2,012,201912,295780 -AT,ES,2,014,201912,325607 -AT,ES,2,030,201912,28 -AT,ES,2,081,201912,1232 -AT,ES,2,089,201912,39455 -AT,ES,2,101,201912,1697380 -AT,ES,2,102,201912,47 -AT,ES,2,103,201912,797399 -AT,ES,2,104,201912,66563 -AT,ES,2,105,201912,982141 -AT,ES,2,106,201912,554463 -AT,ES,2,107,201912,242138 -AT,ES,2,108,201912,2246787 -AT,ES,2,109,201912,880789 -AT,ES,2,10S,201912,62834 -AT,ES,2,110,201912,3152080 -AT,ES,2,131,201912,56537 -AT,ES,2,132,201912,283939 -AT,ES,2,139,201912,601530 -AT,ES,2,141,201912,1356130 -AT,ES,2,142,201912,5230 -AT,ES,2,143,201912,184716 -AT,ES,2,151,201912,642071 -AT,ES,2,152,201912,283243 -AT,ES,2,161,201912,313713 -AT,ES,2,162,201912,2175040 -AT,ES,2,171,201912,4920090 -AT,ES,2,172,201912,428386 -AT,ES,2,17S,201912,22697 -AT,ES,2,192,201912,36643 -AT,ES,2,201,201912,3453984 -AT,ES,2,202,201912,523418 -AT,ES,2,203,201912,594877 -AT,ES,2,204,201912,243180 -AT,ES,2,205,201912,900295 -AT,ES,2,206,201912,64756 -AT,ES,2,211,201912,120679 -AT,ES,2,212,201912,3865927 -AT,ES,2,221,201912,662623 -AT,ES,2,222,201912,3691967 -AT,ES,2,231,201912,754476 -AT,ES,2,232,201912,507881 -AT,ES,2,234,201912,130249 -AT,ES,2,235,201912,5054 -AT,ES,2,236,201912,78995 -AT,ES,2,237,201912,962 -AT,ES,2,239,201912,515080 -AT,ES,2,241,201912,4027969 -AT,ES,2,242,201912,4889989 -AT,ES,2,243,201912,717306 -AT,ES,2,244,201912,839321 -AT,ES,2,245,201912,24550 -AT,ES,2,251,201912,514019 -AT,ES,2,252,201912,1680246 -AT,ES,2,253,201912,27801 -AT,ES,2,254,201912,71776 -AT,ES,2,257,201912,4053932 -AT,ES,2,259,201912,3486774 -AT,ES,2,25S,201912,254246 -AT,ES,2,261,201912,779009 -AT,ES,2,262,201912,443314 -AT,ES,2,263,201912,4876981 -AT,ES,2,264,201912,263239 -AT,ES,2,265,201912,2801688 -AT,ES,2,266,201912,1918451 -AT,ES,2,267,201912,485427 -AT,ES,2,268,201912,77303 -AT,ES,2,271,201912,5507650 -AT,ES,2,272,201912,485478 -AT,ES,2,273,201912,1339488 -AT,ES,2,274,201912,627744 -AT,ES,2,275,201912,448823 -AT,ES,2,279,201912,4494900 -AT,ES,2,281,201912,4615475 -AT,ES,2,282,201912,8506003 -AT,ES,2,283,201912,3299452 -AT,ES,2,284,201912,1746517 -AT,ES,2,289,201912,10381312 -AT,ES,2,291,201912,7172695 -AT,ES,2,292,201912,137303 -AT,ES,2,293,201912,4769749 -AT,ES,2,302,201912,924795 -AT,ES,2,303,201912,733605 -AT,ES,2,309,201912,8090274 -AT,ES,2,310,201912,375297 -AT,ES,2,321,201912,2876573 -AT,ES,2,322,201912,25141 -AT,ES,2,323,201912,1093642 -AT,ES,2,324,201912,3494095 -AT,ES,2,325,201912,1989349 -AT,ES,2,329,201912,752120 -AT,ES,2,32S,201912,93736 -AT,ET,1,012,201912,5807 -AT,ET,2,107,201912,167 -AT,ET,2,171,201912,78878 -AT,ET,2,201,201912,555 -AT,ET,2,205,201912,33221 -AT,ET,2,221,201912,2583 -AT,ET,2,222,201912,4840 -AT,ET,2,232,201912,3716 -AT,ET,2,244,201912,33 -AT,ET,2,251,201912,6097 -AT,ET,2,257,201912,75 -AT,ET,2,259,201912,473 -AT,ET,2,265,201912,52681 -AT,ET,2,271,201912,2882 -AT,ET,2,273,201912,2997 -AT,ET,2,279,201912,59 -AT,ET,2,281,201912,37103 -AT,ET,2,282,201912,859 -AT,ET,2,289,201912,419422 -AT,ET,2,303,201912,832616 -AT,ET,2,329,201912,8871 -AT,FI,1,081,201912,8143 -AT,FI,1,101,201912,67501 -AT,FI,1,103,201912,178950 -AT,FI,1,107,201912,30882 -AT,FI,1,108,201912,17002 -AT,FI,1,109,201912,199 -AT,FI,1,139,201912,317330 -AT,FI,1,141,201912,368045 -AT,FI,1,143,201912,12855 -AT,FI,1,151,201912,25801 -AT,FI,1,152,201912,7105 -AT,FI,1,161,201912,3253355 -AT,FI,1,162,201912,495733 -AT,FI,1,171,201912,5238544 -AT,FI,1,172,201912,79425 -AT,FI,1,192,201912,48884 -AT,FI,1,201,201912,1606428 -AT,FI,1,202,201912,21905 -AT,FI,1,203,201912,21105 -AT,FI,1,204,201912,354118 -AT,FI,1,205,201912,495239 -AT,FI,1,212,201912,2436007 -AT,FI,1,221,201912,257928 -AT,FI,1,222,201912,584972 -AT,FI,1,231,201912,119117 -AT,FI,1,234,201912,386 -AT,FI,1,236,201912,55252 -AT,FI,1,239,201912,2718 -AT,FI,1,241,201912,36646 -AT,FI,1,242,201912,190568 -AT,FI,1,243,201912,23124 -AT,FI,1,244,201912,2447021 -AT,FI,1,251,201912,210575 -AT,FI,1,253,201912,468125 -AT,FI,1,257,201912,242028 -AT,FI,1,259,201912,340577 -AT,FI,1,261,201912,105411 -AT,FI,1,262,201912,5528 -AT,FI,1,263,201912,7264781 -AT,FI,1,264,201912,258594 -AT,FI,1,265,201912,2185451 -AT,FI,1,266,201912,414111 -AT,FI,1,267,201912,458068 -AT,FI,1,268,201912,14799 -AT,FI,1,271,201912,366651 -AT,FI,1,273,201912,1310244 -AT,FI,1,274,201912,115552 -AT,FI,1,275,201912,109181 -AT,FI,1,279,201912,937727 -AT,FI,1,281,201912,1140481 -AT,FI,1,282,201912,3237662 -AT,FI,1,283,201912,2319931 -AT,FI,1,284,201912,58175 -AT,FI,1,289,201912,2483011 -AT,FI,1,291,201912,24660 -AT,FI,1,292,201912,20988 -AT,FI,1,293,201912,368422 -AT,FI,1,302,201912,19414 -AT,FI,1,309,201912,23993 -AT,FI,1,310,201912,32774 -AT,FI,1,323,201912,11756 -AT,FI,1,325,201912,411645 -AT,FI,1,329,201912,8582 -AT,FI,2,011,201912,27825 -AT,FI,2,012,201912,28753 -AT,FI,2,030,201912,6 -AT,FI,2,081,201912,30 -AT,FI,2,089,201912,5728 -AT,FI,2,101,201912,610137 -AT,FI,2,103,201912,195147 -AT,FI,2,104,201912,7246 -AT,FI,2,105,201912,426592 -AT,FI,2,106,201912,191170 -AT,FI,2,107,201912,27085 -AT,FI,2,108,201912,507482 -AT,FI,2,109,201912,138157 -AT,FI,2,110,201912,1125962 -AT,FI,2,131,201912,35003 -AT,FI,2,132,201912,83129 -AT,FI,2,139,201912,293184 -AT,FI,2,141,201912,320199 -AT,FI,2,143,201912,86695 -AT,FI,2,151,201912,34011 -AT,FI,2,152,201912,87475 -AT,FI,2,161,201912,211 -AT,FI,2,162,201912,246799 -AT,FI,2,171,201912,294053 -AT,FI,2,172,201912,7440 -AT,FI,2,192,201912,38892 -AT,FI,2,201,201912,1036220 -AT,FI,2,202,201912,442404 -AT,FI,2,203,201912,70201 -AT,FI,2,204,201912,166249 -AT,FI,2,205,201912,545608 -AT,FI,2,206,201912,37610 -AT,FI,2,211,201912,3896442 -AT,FI,2,212,201912,1106560 -AT,FI,2,221,201912,171290 -AT,FI,2,222,201912,1116090 -AT,FI,2,231,201912,184728 -AT,FI,2,232,201912,126983 -AT,FI,2,234,201912,14355 -AT,FI,2,236,201912,18449 -AT,FI,2,239,201912,424529 -AT,FI,2,241,201912,486486 -AT,FI,2,242,201912,60479 -AT,FI,2,243,201912,46872 -AT,FI,2,244,201912,136007 -AT,FI,2,245,201912,214577 -AT,FI,2,251,201912,288971 -AT,FI,2,252,201912,327826 -AT,FI,2,253,201912,168600 -AT,FI,2,254,201912,1410 -AT,FI,2,257,201912,1215329 -AT,FI,2,259,201912,674286 -AT,FI,2,261,201912,268631 -AT,FI,2,262,201912,483973 -AT,FI,2,263,201912,1115557 -AT,FI,2,264,201912,467374 -AT,FI,2,265,201912,295106 -AT,FI,2,266,201912,61644 -AT,FI,2,267,201912,343221 -AT,FI,2,268,201912,15706 -AT,FI,2,271,201912,438637 -AT,FI,2,272,201912,206072 -AT,FI,2,273,201912,347603 -AT,FI,2,274,201912,1177899 -AT,FI,2,275,201912,25817 -AT,FI,2,279,201912,1103765 -AT,FI,2,281,201912,1818050 -AT,FI,2,282,201912,18244186 -AT,FI,2,283,201912,653396 -AT,FI,2,284,201912,687719 -AT,FI,2,289,201912,2760820 -AT,FI,2,291,201912,8681835 -AT,FI,2,292,201912,14506 -AT,FI,2,293,201912,618161 -AT,FI,2,302,201912,38707 -AT,FI,2,303,201912,238404 -AT,FI,2,309,201912,1281078 -AT,FI,2,310,201912,102396 -AT,FI,2,321,201912,68339 -AT,FI,2,322,201912,10384 -AT,FI,2,323,201912,1023945 -AT,FI,2,324,201912,64003 -AT,FI,2,325,201912,303421 -AT,FI,2,329,201912,75218 -AT,FI,2,32S,201912,9762 -AT,FJ,1,143,201912,163 -AT,FO,2,139,201912,111 -AT,FO,2,141,201912,35 -AT,FO,2,143,201912,448 -AT,FO,2,222,201912,24 -AT,FO,2,259,201912,988 -AT,FO,2,265,201912,676 -AT,FO,2,274,201912,28 -AT,FO,2,279,201912,122 -AT,FO,2,281,201912,3607 -AT,FO,2,282,201912,5322 -AT,FO,2,289,201912,2721 -AT,FO,2,325,201912,3206 -AT,FR,1,011,201912,5694971 -AT,FR,1,012,201912,5015817 -AT,FR,1,013,201912,15405 -AT,FR,1,014,201912,57750 -AT,FR,1,022,201912,301204 -AT,FR,1,023,201912,17881 -AT,FR,1,030,201912,397901 -AT,FR,1,081,201912,92844 -AT,FR,1,089,201912,482279 -AT,FR,1,101,201912,2769237 -AT,FR,1,102,201912,1821180 -AT,FR,1,103,201912,1591086 -AT,FR,1,104,201912,292637 -AT,FR,1,105,201912,2478376 -AT,FR,1,106,201912,2844094 -AT,FR,1,107,201912,2139342 -AT,FR,1,108,201912,4826799 -AT,FR,1,109,201912,1676105 -AT,FR,1,110,201912,8299223 -AT,FR,1,131,201912,64862 -AT,FR,1,132,201912,1513422 -AT,FR,1,139,201912,1549953 -AT,FR,1,141,201912,6506548 -AT,FR,1,142,201912,118816 -AT,FR,1,143,201912,1092294 -AT,FR,1,151,201912,9506203 -AT,FR,1,152,201912,3285794 -AT,FR,1,161,201912,67351 -AT,FR,1,162,201912,1444528 -AT,FR,1,171,201912,4567614 -AT,FR,1,172,201912,1746512 -AT,FR,1,181,201912,198 -AT,FR,1,192,201912,790321 -AT,FR,1,201,201912,13012153 -AT,FR,1,202,201912,1104141 -AT,FR,1,203,201912,422419 -AT,FR,1,204,201912,6476223 -AT,FR,1,205,201912,4748172 -AT,FR,1,206,201912,198959 -AT,FR,1,211,201912,5977387 -AT,FR,1,212,201912,27699187 -AT,FR,1,221,201912,2401854 -AT,FR,1,222,201912,5070660 -AT,FR,1,231,201912,1710673 -AT,FR,1,232,201912,318830 -AT,FR,1,233,201912,10238 -AT,FR,1,234,201912,170664 -AT,FR,1,235,201912,123493 -AT,FR,1,236,201912,28896 -AT,FR,1,237,201912,37323 -AT,FR,1,239,201912,832756 -AT,FR,1,241,201912,4133407 -AT,FR,1,242,201912,269413 -AT,FR,1,243,201912,484485 -AT,FR,1,244,201912,27603432 -AT,FR,1,245,201912,121944 -AT,FR,1,251,201912,1367349 -AT,FR,1,252,201912,193120 -AT,FR,1,254,201912,56686 -AT,FR,1,257,201912,769613 -AT,FR,1,259,201912,11868721 -AT,FR,1,25S,201912,6827 -AT,FR,1,261,201912,890052 -AT,FR,1,262,201912,1056910 -AT,FR,1,263,201912,1400439 -AT,FR,1,264,201912,892185 -AT,FR,1,265,201912,5204026 -AT,FR,1,266,201912,1605046 -AT,FR,1,267,201912,248758 -AT,FR,1,268,201912,48199 -AT,FR,1,271,201912,2510493 -AT,FR,1,272,201912,539995 -AT,FR,1,273,201912,1245587 -AT,FR,1,274,201912,3462331 -AT,FR,1,275,201912,1173630 -AT,FR,1,279,201912,2064723 -AT,FR,1,281,201912,10003975 -AT,FR,1,282,201912,6954281 -AT,FR,1,283,201912,7353351 -AT,FR,1,284,201912,1034618 -AT,FR,1,289,201912,4361661 -AT,FR,1,291,201912,24101615 -AT,FR,1,292,201912,287987 -AT,FR,1,293,201912,8303938 -AT,FR,1,301,201912,8648 -AT,FR,1,302,201912,272340 -AT,FR,1,303,201912,1448550 -AT,FR,1,309,201912,1390453 -AT,FR,1,310,201912,1767112 -AT,FR,1,321,201912,2078494 -AT,FR,1,322,201912,196064 -AT,FR,1,323,201912,724638 -AT,FR,1,324,201912,685338 -AT,FR,1,325,201912,8449013 -AT,FR,1,329,201912,871818 -AT,FR,2,011,201912,3330929 -AT,FR,2,012,201912,544701 -AT,FR,2,013,201912,83744 -AT,FR,2,014,201912,7344 -AT,FR,2,030,201912,1069 -AT,FR,2,081,201912,3487 -AT,FR,2,089,201912,213766 -AT,FR,2,101,201912,3504595 -AT,FR,2,102,201912,12144 -AT,FR,2,103,201912,2647182 -AT,FR,2,104,201912,403419 -AT,FR,2,105,201912,836245 -AT,FR,2,106,201912,649736 -AT,FR,2,107,201912,2272912 -AT,FR,2,108,201912,3961919 -AT,FR,2,109,201912,1219603 -AT,FR,2,10S,201912,841727 -AT,FR,2,110,201912,2572867 -AT,FR,2,131,201912,121342 -AT,FR,2,132,201912,1652337 -AT,FR,2,139,201912,2024367 -AT,FR,2,141,201912,2269508 -AT,FR,2,142,201912,7496 -AT,FR,2,143,201912,497434 -AT,FR,2,151,201912,736574 -AT,FR,2,152,201912,538946 -AT,FR,2,161,201912,1419004 -AT,FR,2,162,201912,11845067 -AT,FR,2,171,201912,8135078 -AT,FR,2,172,201912,2249556 -AT,FR,2,17S,201912,261684 -AT,FR,2,192,201912,39270 -AT,FR,2,201,201912,10899215 -AT,FR,2,202,201912,5657330 -AT,FR,2,203,201912,706927 -AT,FR,2,204,201912,1478586 -AT,FR,2,205,201912,2331221 -AT,FR,2,206,201912,161911 -AT,FR,2,20S,201912,427838 -AT,FR,2,211,201912,9238007 -AT,FR,2,212,201912,15981702 -AT,FR,2,221,201912,2048188 -AT,FR,2,222,201912,18601967 -AT,FR,2,231,201912,2410330 -AT,FR,2,232,201912,270160 -AT,FR,2,233,201912,25000 -AT,FR,2,234,201912,80451 -AT,FR,2,235,201912,297 -AT,FR,2,236,201912,140872 -AT,FR,2,237,201912,3442 -AT,FR,2,239,201912,2717433 -AT,FR,2,241,201912,11093518 -AT,FR,2,242,201912,2487485 -AT,FR,2,243,201912,2843873 -AT,FR,2,244,201912,26143698 -AT,FR,2,245,201912,194400 -AT,FR,2,251,201912,2530828 -AT,FR,2,252,201912,7720735 -AT,FR,2,253,201912,125261 -AT,FR,2,254,201912,584628 -AT,FR,2,257,201912,6931346 -AT,FR,2,259,201912,7182751 -AT,FR,2,25S,201912,403846 -AT,FR,2,261,201912,2918276 -AT,FR,2,262,201912,867348 -AT,FR,2,263,201912,3024324 -AT,FR,2,264,201912,725448 -AT,FR,2,265,201912,7158570 -AT,FR,2,266,201912,3443801 -AT,FR,2,267,201912,934715 -AT,FR,2,268,201912,18408 -AT,FR,2,271,201912,9381202 -AT,FR,2,272,201912,3387499 -AT,FR,2,273,201912,2149380 -AT,FR,2,274,201912,3488183 -AT,FR,2,275,201912,5581116 -AT,FR,2,279,201912,8583750 -AT,FR,2,281,201912,11230516 -AT,FR,2,282,201912,32003882 -AT,FR,2,283,201912,24189587 -AT,FR,2,284,201912,4523021 -AT,FR,2,289,201912,15175820 -AT,FR,2,291,201912,18937162 -AT,FR,2,292,201912,3137938 -AT,FR,2,293,201912,14091807 -AT,FR,2,301,201912,251558 -AT,FR,2,302,201912,1129173 -AT,FR,2,303,201912,14669731 -AT,FR,2,309,201912,11266804 -AT,FR,2,310,201912,3059222 -AT,FR,2,321,201912,5884376 -AT,FR,2,322,201912,7887 -AT,FR,2,323,201912,9479478 -AT,FR,2,324,201912,573781 -AT,FR,2,325,201912,2593191 -AT,FR,2,329,201912,1193531 -AT,FR,2,32S,201912,59007 -AT,GA,2,110,201912,2260 -AT,GA,2,205,201912,7289 -AT,GA,2,221,201912,66 -AT,GA,2,222,201912,2945 -AT,GA,2,259,201912,1576 -AT,GB,1,011,201912,208114 -AT,GB,1,012,201912,1818865 -AT,GB,1,013,201912,16472 -AT,GB,1,014,201912,1559 -AT,GB,1,030,201912,95104 -AT,GB,1,072,201912,65351 -AT,GB,1,081,201912,35775 -AT,GB,1,089,201912,125604 -AT,GB,1,101,201912,783083 -AT,GB,1,102,201912,352739 -AT,GB,1,103,201912,710237 -AT,GB,1,104,201912,47733 -AT,GB,1,105,201912,800511 -AT,GB,1,106,201912,615105 -AT,GB,1,107,201912,312047 -AT,GB,1,108,201912,1470976 -AT,GB,1,109,201912,348408 -AT,GB,1,110,201912,1377777 -AT,GB,1,131,201912,7794 -AT,GB,1,132,201912,613178 -AT,GB,1,139,201912,1985564 -AT,GB,1,141,201912,5325019 -AT,GB,1,142,201912,19692 -AT,GB,1,143,201912,1088835 -AT,GB,1,151,201912,1043148 -AT,GB,1,152,201912,1710811 -AT,GB,1,161,201912,2950 -AT,GB,1,162,201912,176023 -AT,GB,1,171,201912,278969 -AT,GB,1,172,201912,680733 -AT,GB,1,192,201912,303244 -AT,GB,1,201,201912,4660783 -AT,GB,1,202,201912,207532 -AT,GB,1,203,201912,2793187 -AT,GB,1,204,201912,2058859 -AT,GB,1,205,201912,2478278 -AT,GB,1,206,201912,81903 -AT,GB,1,211,201912,1305361 -AT,GB,1,212,201912,5022700 -AT,GB,1,221,201912,647945 -AT,GB,1,222,201912,3166379 -AT,GB,1,231,201912,691674 -AT,GB,1,232,201912,103865 -AT,GB,1,233,201912,1253 -AT,GB,1,234,201912,256638 -AT,GB,1,236,201912,39423 -AT,GB,1,237,201912,85 -AT,GB,1,239,201912,1908985 -AT,GB,1,241,201912,1463874 -AT,GB,1,242,201912,142505 -AT,GB,1,243,201912,225229 -AT,GB,1,244,201912,6417652 -AT,GB,1,245,201912,69 -AT,GB,1,251,201912,105730 -AT,GB,1,252,201912,4345 -AT,GB,1,254,201912,10144 -AT,GB,1,257,201912,619679 -AT,GB,1,259,201912,1465805 -AT,GB,1,261,201912,1428882 -AT,GB,1,262,201912,3890539 -AT,GB,1,263,201912,6893376 -AT,GB,1,264,201912,2291883 -AT,GB,1,265,201912,3386627 -AT,GB,1,266,201912,1007206 -AT,GB,1,267,201912,2029905 -AT,GB,1,268,201912,810725 -AT,GB,1,271,201912,1845531 -AT,GB,1,272,201912,775155 -AT,GB,1,273,201912,674512 -AT,GB,1,274,201912,4054159 -AT,GB,1,275,201912,156955 -AT,GB,1,279,201912,5810261 -AT,GB,1,281,201912,3970101 -AT,GB,1,282,201912,5546192 -AT,GB,1,283,201912,776551 -AT,GB,1,284,201912,142964 -AT,GB,1,289,201912,5983794 -AT,GB,1,291,201912,25203304 -AT,GB,1,292,201912,69146 -AT,GB,1,293,201912,6575806 -AT,GB,1,301,201912,140885 -AT,GB,1,302,201912,186797 -AT,GB,1,303,201912,890813 -AT,GB,1,309,201912,885220 -AT,GB,1,310,201912,1048744 -AT,GB,1,321,201912,265190 -AT,GB,1,322,201912,70176 -AT,GB,1,323,201912,429767 -AT,GB,1,324,201912,9649859 -AT,GB,1,325,201912,1574758 -AT,GB,1,329,201912,485876 -AT,GB,2,011,201912,93264 -AT,GB,2,012,201912,687708 -AT,GB,2,014,201912,236056 -AT,GB,2,030,201912,81 -AT,GB,2,081,201912,1494 -AT,GB,2,089,201912,13325 -AT,GB,2,101,201912,1667546 -AT,GB,2,102,201912,27 -AT,GB,2,103,201912,882791 -AT,GB,2,104,201912,34570 -AT,GB,2,105,201912,1313995 -AT,GB,2,106,201912,549605 -AT,GB,2,107,201912,2351379 -AT,GB,2,108,201912,3248099 -AT,GB,2,109,201912,1039608 -AT,GB,2,10S,201912,153064 -AT,GB,2,110,201912,7830867 -AT,GB,2,131,201912,89217 -AT,GB,2,132,201912,1880177 -AT,GB,2,139,201912,819655 -AT,GB,2,141,201912,1889201 -AT,GB,2,142,201912,22691 -AT,GB,2,143,201912,421686 -AT,GB,2,151,201912,420673 -AT,GB,2,152,201912,767609 -AT,GB,2,161,201912,313628 -AT,GB,2,162,201912,2129946 -AT,GB,2,171,201912,10223781 -AT,GB,2,172,201912,1716027 -AT,GB,2,17S,201912,538146 -AT,GB,2,192,201912,72948 -AT,GB,2,201,201912,2652551 -AT,GB,2,202,201912,1472013 -AT,GB,2,203,201912,722888 -AT,GB,2,204,201912,960895 -AT,GB,2,205,201912,1115228 -AT,GB,2,206,201912,2328 -AT,GB,2,20S,201912,38565 -AT,GB,2,211,201912,37853 -AT,GB,2,212,201912,8912276 -AT,GB,2,221,201912,950185 -AT,GB,2,222,201912,6408685 -AT,GB,2,231,201912,2569492 -AT,GB,2,232,201912,326780 -AT,GB,2,234,201912,97575 -AT,GB,2,236,201912,98842 -AT,GB,2,239,201912,932744 -AT,GB,2,241,201912,7144920 -AT,GB,2,242,201912,435868 -AT,GB,2,243,201912,2498261 -AT,GB,2,244,201912,8208888 -AT,GB,2,245,201912,525511 -AT,GB,2,251,201912,1641497 -AT,GB,2,252,201912,1654288 -AT,GB,2,253,201912,182643 -AT,GB,2,254,201912,164435 -AT,GB,2,257,201912,5542951 -AT,GB,2,259,201912,4788558 -AT,GB,2,25S,201912,2339961 -AT,GB,2,261,201912,2052985 -AT,GB,2,262,201912,2281369 -AT,GB,2,263,201912,1675869 -AT,GB,2,264,201912,684379 -AT,GB,2,265,201912,6045466 -AT,GB,2,266,201912,1704912 -AT,GB,2,267,201912,1439154 -AT,GB,2,268,201912,50751 -AT,GB,2,271,201912,10592893 -AT,GB,2,272,201912,1804279 -AT,GB,2,273,201912,1750764 -AT,GB,2,274,201912,3097522 -AT,GB,2,275,201912,439665 -AT,GB,2,279,201912,3961876 -AT,GB,2,281,201912,8849396 -AT,GB,2,282,201912,12000512 -AT,GB,2,283,201912,3229576 -AT,GB,2,284,201912,1992266 -AT,GB,2,289,201912,9307320 -AT,GB,2,291,201912,44683313 -AT,GB,2,292,201912,51600 -AT,GB,2,293,201912,11394759 -AT,GB,2,302,201912,6811045 -AT,GB,2,303,201912,5912498 -AT,GB,2,309,201912,8870154 -AT,GB,2,310,201912,1408734 -AT,GB,2,321,201912,3989932 -AT,GB,2,323,201912,944063 -AT,GB,2,324,201912,1377140 -AT,GB,2,325,201912,4503299 -AT,GB,2,329,201912,766503 -AT,GB,2,32S,201912,108562 -AT,GE,1,110,201912,46944 -AT,GE,1,141,201912,396 -AT,GE,2,012,201912,810 -AT,GE,2,101,201912,292930 -AT,GE,2,103,201912,30984 -AT,GE,2,106,201912,25139 -AT,GE,2,107,201912,6884 -AT,GE,2,108,201912,441902 -AT,GE,2,109,201912,50163 -AT,GE,2,10S,201912,694 -AT,GE,2,110,201912,40503 -AT,GE,2,139,201912,6942 -AT,GE,2,141,201912,14137 -AT,GE,2,151,201912,3673 -AT,GE,2,152,201912,1426 -AT,GE,2,161,201912,7277 -AT,GE,2,162,201912,163086 -AT,GE,2,171,201912,1693 -AT,GE,2,172,201912,17457 -AT,GE,2,192,201912,56 -AT,GE,2,201,201912,1826 -AT,GE,2,204,201912,10066 -AT,GE,2,205,201912,36765 -AT,GE,2,212,201912,389505 -AT,GE,2,221,201912,3570 -AT,GE,2,222,201912,31362 -AT,GE,2,231,201912,5277 -AT,GE,2,234,201912,440 -AT,GE,2,239,201912,5802 -AT,GE,2,242,201912,608 -AT,GE,2,244,201912,2339 -AT,GE,2,251,201912,412797 -AT,GE,2,257,201912,5432 -AT,GE,2,259,201912,3137 -AT,GE,2,261,201912,146910 -AT,GE,2,262,201912,2779 -AT,GE,2,263,201912,6469 -AT,GE,2,265,201912,20080 -AT,GE,2,267,201912,9574 -AT,GE,2,271,201912,110401 -AT,GE,2,272,201912,8 -AT,GE,2,273,201912,16350 -AT,GE,2,274,201912,59304 -AT,GE,2,275,201912,6216 -AT,GE,2,279,201912,37630 -AT,GE,2,281,201912,92985 -AT,GE,2,282,201912,6246 -AT,GE,2,284,201912,2720 -AT,GE,2,289,201912,179272 -AT,GE,2,293,201912,8976 -AT,GE,2,309,201912,90862 -AT,GE,2,310,201912,110659 -AT,GE,2,321,201912,24127 -AT,GE,2,323,201912,31184 -AT,GE,2,324,201912,11827 -AT,GE,2,325,201912,21647 -AT,GE,2,329,201912,20617 -AT,GH,1,012,201912,185 -AT,GH,1,162,201912,617 -AT,GH,1,204,201912,577 -AT,GH,1,282,201912,8632 -AT,GH,2,109,201912,16189 -AT,GH,2,139,201912,18082 -AT,GH,2,162,201912,29337 -AT,GH,2,171,201912,21022 -AT,GH,2,172,201912,130 -AT,GH,2,201,201912,738 -AT,GH,2,205,201912,86215 -AT,GH,2,221,201912,8974 -AT,GH,2,222,201912,13423 -AT,GH,2,245,201912,1544 -AT,GH,2,257,201912,36941 -AT,GH,2,259,201912,17859 -AT,GH,2,262,201912,6989 -AT,GH,2,265,201912,12945 -AT,GH,2,271,201912,20418 -AT,GH,2,273,201912,457 -AT,GH,2,281,201912,58249 -AT,GH,2,282,201912,27669 -AT,GH,2,289,201912,1735 -AT,GH,2,291,201912,15300 -AT,GH,2,310,201912,1602 -AT,GH,2,325,201912,2167 -AT,GH,2,329,201912,327 -AT,GI,2,107,201912,174 -AT,GI,2,141,201912,636 -AT,GI,2,204,201912,44 -AT,GI,2,263,201912,1117 -AT,GI,2,291,201912,1228966 -AT,GI,2,323,201912,381 -AT,GI,2,329,201912,432 -AT,GL,2,141,201912,1682 -AT,GL,2,151,201912,8 -AT,GL,2,323,201912,1055 -AT,GL,2,325,201912,394 -AT,GM,1,329,201912,55 -AT,GM,2,289,201912,284 -AT,GN,2,132,201912,54795 -AT,GN,2,139,201912,15675 -AT,GN,2,222,201912,5 -AT,GN,2,259,201912,80 -AT,GR,1,011,201912,515943 -AT,GR,1,012,201912,474252 -AT,GR,1,014,201912,13972 -AT,GR,1,030,201912,36073 -AT,GR,1,089,201912,76278 -AT,GR,1,102,201912,23653 -AT,GR,1,103,201912,1540580 -AT,GR,1,104,201912,848511 -AT,GR,1,105,201912,1873312 -AT,GR,1,106,201912,66146 -AT,GR,1,107,201912,160818 -AT,GR,1,108,201912,305160 -AT,GR,1,110,201912,94184 -AT,GR,1,131,201912,210737 -AT,GR,1,132,201912,14369 -AT,GR,1,139,201912,75015 -AT,GR,1,141,201912,387708 -AT,GR,1,143,201912,7697 -AT,GR,1,151,201912,915 -AT,GR,1,162,201912,1792 -AT,GR,1,171,201912,106923 -AT,GR,1,172,201912,49665 -AT,GR,1,192,201912,1121 -AT,GR,1,201,201912,36434 -AT,GR,1,204,201912,91989 -AT,GR,1,205,201912,5935 -AT,GR,1,212,201912,236439 -AT,GR,1,221,201912,59 -AT,GR,1,222,201912,513411 -AT,GR,1,231,201912,21890 -AT,GR,1,239,201912,51 -AT,GR,1,241,201912,95573 -AT,GR,1,242,201912,16080 -AT,GR,1,244,201912,787320 -AT,GR,1,251,201912,85237 -AT,GR,1,252,201912,34433 -AT,GR,1,259,201912,28620 -AT,GR,1,262,201912,14163 -AT,GR,1,263,201912,71513 -AT,GR,1,265,201912,181022 -AT,GR,1,271,201912,66787 -AT,GR,1,273,201912,102769 -AT,GR,1,274,201912,109840 -AT,GR,1,275,201912,3159 -AT,GR,1,279,201912,516299 -AT,GR,1,281,201912,8938 -AT,GR,1,282,201912,164608 -AT,GR,1,283,201912,84072 -AT,GR,1,289,201912,4143 -AT,GR,1,293,201912,44939 -AT,GR,1,310,201912,49742 -AT,GR,1,321,201912,122050 -AT,GR,1,322,201912,1622 -AT,GR,1,324,201912,76502 -AT,GR,1,325,201912,57256 -AT,GR,1,329,201912,844 -AT,GR,2,011,201912,261696 -AT,GR,2,012,201912,5459 -AT,GR,2,022,201912,30262 -AT,GR,2,101,201912,60461 -AT,GR,2,102,201912,397548 -AT,GR,2,103,201912,208711 -AT,GR,2,104,201912,28414 -AT,GR,2,105,201912,3006634 -AT,GR,2,106,201912,194407 -AT,GR,2,107,201912,380439 -AT,GR,2,108,201912,922177 -AT,GR,2,109,201912,99631 -AT,GR,2,10S,201912,35459 -AT,GR,2,110,201912,340939 -AT,GR,2,131,201912,71234 -AT,GR,2,132,201912,14428 -AT,GR,2,139,201912,761936 -AT,GR,2,141,201912,3462550 -AT,GR,2,143,201912,503640 -AT,GR,2,151,201912,43079 -AT,GR,2,152,201912,361414 -AT,GR,2,161,201912,363680 -AT,GR,2,162,201912,340136 -AT,GR,2,171,201912,1531620 -AT,GR,2,172,201912,643952 -AT,GR,2,17S,201912,252196 -AT,GR,2,192,201912,44597 -AT,GR,2,201,201912,944163 -AT,GR,2,202,201912,141654 -AT,GR,2,203,201912,160877 -AT,GR,2,204,201912,67229 -AT,GR,2,205,201912,287769 -AT,GR,2,211,201912,20218 -AT,GR,2,212,201912,1512204 -AT,GR,2,221,201912,238919 -AT,GR,2,222,201912,743094 -AT,GR,2,231,201912,115682 -AT,GR,2,232,201912,31912 -AT,GR,2,234,201912,21895 -AT,GR,2,236,201912,8845 -AT,GR,2,239,201912,67105 -AT,GR,2,241,201912,9938705 -AT,GR,2,242,201912,23219 -AT,GR,2,243,201912,170814 -AT,GR,2,244,201912,138175 -AT,GR,2,251,201912,68447 -AT,GR,2,252,201912,42525 -AT,GR,2,254,201912,14486 -AT,GR,2,257,201912,523405 -AT,GR,2,259,201912,356676 -AT,GR,2,25S,201912,66980 -AT,GR,2,261,201912,62868 -AT,GR,2,262,201912,15874 -AT,GR,2,263,201912,1190316 -AT,GR,2,264,201912,57182 -AT,GR,2,265,201912,438364 -AT,GR,2,266,201912,239507 -AT,GR,2,267,201912,7251 -AT,GR,2,268,201912,145 -AT,GR,2,271,201912,207416 -AT,GR,2,272,201912,269547 -AT,GR,2,273,201912,112906 -AT,GR,2,274,201912,235761 -AT,GR,2,275,201912,816327 -AT,GR,2,279,201912,607743 -AT,GR,2,281,201912,256118 -AT,GR,2,282,201912,1154743 -AT,GR,2,283,201912,535106 -AT,GR,2,284,201912,853736 -AT,GR,2,289,201912,2189816 -AT,GR,2,291,201912,980988 -AT,GR,2,292,201912,27423 -AT,GR,2,293,201912,120718 -AT,GR,2,303,201912,12145 -AT,GR,2,309,201912,173375 -AT,GR,2,310,201912,184990 -AT,GR,2,321,201912,588680 -AT,GR,2,322,201912,1332 -AT,GR,2,323,201912,226665 -AT,GR,2,324,201912,15476 -AT,GR,2,325,201912,457171 -AT,GR,2,329,201912,102820 -AT,GR,2,32S,201912,733 -AT,GT,1,012,201912,20445 -AT,GT,1,108,201912,12 -AT,GT,1,141,201912,5957 -AT,GT,1,143,201912,14 -AT,GT,1,265,201912,2097 -AT,GT,2,109,201912,71621 -AT,GT,2,162,201912,107277 -AT,GT,2,205,201912,4785 -AT,GT,2,212,201912,43230 -AT,GT,2,221,201912,180 -AT,GT,2,222,201912,36354 -AT,GT,2,231,201912,134 -AT,GT,2,232,201912,66307 -AT,GT,2,257,201912,16209 -AT,GT,2,259,201912,3129 -AT,GT,2,265,201912,35931 -AT,GT,2,267,201912,6646 -AT,GT,2,281,201912,8270 -AT,GT,2,282,201912,6382 -AT,GT,2,289,201912,81068 -AT,GT,2,293,201912,30883 -AT,GT,2,310,201912,403 -AT,GT,2,324,201912,240 -AT,GT,2,325,201912,120337 -AT,GT,2,329,201912,2484 -AT,HK,1,108,201912,43 -AT,HK,1,110,201912,34477 -AT,HK,1,132,201912,2835 -AT,HK,1,139,201912,491 -AT,HK,1,141,201912,67848 -AT,HK,1,142,201912,23006 -AT,HK,1,143,201912,8428 -AT,HK,1,151,201912,272433 -AT,HK,1,152,201912,10074 -AT,HK,1,162,201912,587 -AT,HK,1,172,201912,1908 -AT,HK,1,201,201912,41226 -AT,HK,1,204,201912,10663 -AT,HK,1,205,201912,34831 -AT,HK,1,221,201912,14969 -AT,HK,1,222,201912,22024 -AT,HK,1,231,201912,12451 -AT,HK,1,239,201912,2534 -AT,HK,1,244,201912,393071 -AT,HK,1,254,201912,3384 -AT,HK,1,257,201912,3523 -AT,HK,1,259,201912,62078 -AT,HK,1,261,201912,136097 -AT,HK,1,262,201912,10229 -AT,HK,1,263,201912,430425 -AT,HK,1,264,201912,124057 -AT,HK,1,265,201912,152249 -AT,HK,1,266,201912,92299 -AT,HK,1,267,201912,48576 -AT,HK,1,271,201912,57150 -AT,HK,1,272,201912,19989 -AT,HK,1,273,201912,15111 -AT,HK,1,274,201912,31203 -AT,HK,1,275,201912,10919 -AT,HK,1,279,201912,49896 -AT,HK,1,281,201912,159 -AT,HK,1,282,201912,54474 -AT,HK,1,284,201912,4688 -AT,HK,1,289,201912,667 -AT,HK,1,309,201912,4748 -AT,HK,1,321,201912,903549 -AT,HK,1,322,201912,1225 -AT,HK,1,323,201912,669 -AT,HK,1,324,201912,28375 -AT,HK,1,325,201912,29277 -AT,HK,1,329,201912,26020 -AT,HK,2,012,201912,483 -AT,HK,2,014,201912,6803 -AT,HK,2,101,201912,287771 -AT,HK,2,103,201912,45687 -AT,HK,2,106,201912,22863 -AT,HK,2,107,201912,3999 -AT,HK,2,108,201912,399431 -AT,HK,2,109,201912,28461 -AT,HK,2,110,201912,510024 -AT,HK,2,131,201912,518 -AT,HK,2,132,201912,56277 -AT,HK,2,139,201912,420391 -AT,HK,2,141,201912,304759 -AT,HK,2,142,201912,24191 -AT,HK,2,143,201912,44989 -AT,HK,2,151,201912,94140 -AT,HK,2,152,201912,28793 -AT,HK,2,161,201912,28221 -AT,HK,2,162,201912,34365 -AT,HK,2,171,201912,228418 -AT,HK,2,172,201912,25925 -AT,HK,2,17S,201912,75555 -AT,HK,2,192,201912,1288 -AT,HK,2,201,201912,396676 -AT,HK,2,203,201912,26661 -AT,HK,2,204,201912,1055689 -AT,HK,2,205,201912,398889 -AT,HK,2,206,201912,2169 -AT,HK,2,212,201912,1212365 -AT,HK,2,221,201912,59054 -AT,HK,2,222,201912,637783 -AT,HK,2,231,201912,379869 -AT,HK,2,234,201912,2434 -AT,HK,2,239,201912,13261 -AT,HK,2,241,201912,42583 -AT,HK,2,242,201912,6767 -AT,HK,2,243,201912,171316 -AT,HK,2,244,201912,603285 -AT,HK,2,251,201912,154499 -AT,HK,2,252,201912,120 -AT,HK,2,257,201912,665208 -AT,HK,2,259,201912,287717 -AT,HK,2,261,201912,2090742 -AT,HK,2,262,201912,235232 -AT,HK,2,263,201912,1978767 -AT,HK,2,264,201912,302015 -AT,HK,2,265,201912,10123062 -AT,HK,2,266,201912,442878 -AT,HK,2,267,201912,1739776 -AT,HK,2,268,201912,30 -AT,HK,2,271,201912,2291682 -AT,HK,2,272,201912,95666 -AT,HK,2,273,201912,170329 -AT,HK,2,274,201912,128583 -AT,HK,2,275,201912,90114 -AT,HK,2,279,201912,2890925 -AT,HK,2,281,201912,425595 -AT,HK,2,282,201912,1332970 -AT,HK,2,284,201912,668232 -AT,HK,2,289,201912,518773 -AT,HK,2,291,201912,334812 -AT,HK,2,293,201912,113231 -AT,HK,2,302,201912,106396 -AT,HK,2,303,201912,93150 -AT,HK,2,309,201912,9819 -AT,HK,2,310,201912,51125 -AT,HK,2,321,201912,1023844 -AT,HK,2,322,201912,35006 -AT,HK,2,323,201912,67310 -AT,HK,2,324,201912,107464 -AT,HK,2,325,201912,812969 -AT,HK,2,329,201912,27592 -AT,HK,2,32S,201912,16593 -AT,HN,1,012,201912,45446 -AT,HN,1,120,201912,8908 -AT,HN,1,141,201912,3112 -AT,HN,1,143,201912,1114 -AT,HN,1,271,201912,12833 -AT,HN,2,17S,201912,41156 -AT,HN,2,205,201912,2038 -AT,HN,2,221,201912,2193 -AT,HN,2,222,201912,4937 -AT,HN,2,257,201912,1654 -AT,HN,2,259,201912,618 -AT,HN,2,262,201912,130 -AT,HN,2,265,201912,25758 -AT,HN,2,273,201912,27 -AT,HN,2,281,201912,14807 -AT,HN,2,282,201912,2218 -AT,HN,2,289,201912,989435 -AT,HN,2,325,201912,16666 -AT,HR,1,011,201912,294129 -AT,HR,1,012,201912,83496 -AT,HR,1,014,201912,825635 -AT,HR,1,022,201912,886025 -AT,HR,1,023,201912,70 -AT,HR,1,030,201912,402910 -AT,HR,1,081,201912,30107 -AT,HR,1,101,201912,1650045 -AT,HR,1,102,201912,52307 -AT,HR,1,103,201912,25718 -AT,HR,1,104,201912,322090 -AT,HR,1,105,201912,11956 -AT,HR,1,106,201912,40475 -AT,HR,1,107,201912,78799 -AT,HR,1,108,201912,699921 -AT,HR,1,110,201912,165196 -AT,HR,1,131,201912,11 -AT,HR,1,132,201912,60873 -AT,HR,1,139,201912,153428 -AT,HR,1,141,201912,400592 -AT,HR,1,143,201912,113654 -AT,HR,1,151,201912,518997 -AT,HR,1,152,201912,1561189 -AT,HR,1,161,201912,2050166 -AT,HR,1,162,201912,355148 -AT,HR,1,171,201912,182271 -AT,HR,1,172,201912,539501 -AT,HR,1,192,201912,95796 -AT,HR,1,201,201912,2020940 -AT,HR,1,203,201912,12445 -AT,HR,1,204,201912,414608 -AT,HR,1,205,201912,505140 -AT,HR,1,206,201912,1297861 -AT,HR,1,212,201912,208382 -AT,HR,1,221,201912,27729 -AT,HR,1,222,201912,1214835 -AT,HR,1,231,201912,729024 -AT,HR,1,233,201912,7103 -AT,HR,1,234,201912,10359 -AT,HR,1,235,201912,22638 -AT,HR,1,236,201912,575057 -AT,HR,1,237,201912,108448 -AT,HR,1,239,201912,181236 -AT,HR,1,241,201912,54637 -AT,HR,1,242,201912,76773 -AT,HR,1,243,201912,24282 -AT,HR,1,244,201912,173308 -AT,HR,1,245,201912,567917 -AT,HR,1,251,201912,1920057 -AT,HR,1,252,201912,421372 -AT,HR,1,254,201912,85 -AT,HR,1,257,201912,649378 -AT,HR,1,259,201912,2512486 -AT,HR,1,261,201912,480462 -AT,HR,1,262,201912,7068 -AT,HR,1,263,201912,980192 -AT,HR,1,264,201912,65777 -AT,HR,1,265,201912,179528 -AT,HR,1,267,201912,189937 -AT,HR,1,271,201912,1264438 -AT,HR,1,272,201912,2098 -AT,HR,1,273,201912,3336307 -AT,HR,1,274,201912,125182 -AT,HR,1,275,201912,103072 -AT,HR,1,279,201912,3725719 -AT,HR,1,281,201912,1008114 -AT,HR,1,282,201912,1733232 -AT,HR,1,283,201912,41470 -AT,HR,1,284,201912,183600 -AT,HR,1,289,201912,1529407 -AT,HR,1,291,201912,578868 -AT,HR,1,292,201912,241854 -AT,HR,1,293,201912,784692 -AT,HR,1,302,201912,74737 -AT,HR,1,303,201912,648278 -AT,HR,1,309,201912,10676 -AT,HR,1,310,201912,995655 -AT,HR,1,321,201912,17795 -AT,HR,1,323,201912,708 -AT,HR,1,324,201912,111730 -AT,HR,1,325,201912,31975 -AT,HR,1,329,201912,240975 -AT,HR,2,011,201912,327069 -AT,HR,2,012,201912,130177 -AT,HR,2,013,201912,161929 -AT,HR,2,014,201912,350928 -AT,HR,2,022,201912,3500 -AT,HR,2,023,201912,40 -AT,HR,2,030,201912,394 -AT,HR,2,081,201912,39597 -AT,HR,2,089,201912,129169 -AT,HR,2,101,201912,2500278 -AT,HR,2,102,201912,19399 -AT,HR,2,103,201912,1181247 -AT,HR,2,104,201912,96917 -AT,HR,2,105,201912,446313 -AT,HR,2,106,201912,628262 -AT,HR,2,107,201912,703088 -AT,HR,2,108,201912,3383201 -AT,HR,2,109,201912,707448 -AT,HR,2,10S,201912,27884 -AT,HR,2,110,201912,887194 -AT,HR,2,131,201912,2155 -AT,HR,2,132,201912,84185 -AT,HR,2,139,201912,848116 -AT,HR,2,141,201912,5526448 -AT,HR,2,143,201912,971076 -AT,HR,2,151,201912,9013568 -AT,HR,2,152,201912,235646 -AT,HR,2,161,201912,2076930 -AT,HR,2,162,201912,2102802 -AT,HR,2,171,201912,4731821 -AT,HR,2,172,201912,1046182 -AT,HR,2,17S,201912,159852 -AT,HR,2,192,201912,546333 -AT,HR,2,201,201912,1288660 -AT,HR,2,202,201912,147752 -AT,HR,2,203,201912,700972 -AT,HR,2,204,201912,921368 -AT,HR,2,205,201912,1370028 -AT,HR,2,206,201912,1848 -AT,HR,2,20S,201912,247325 -AT,HR,2,211,201912,10520 -AT,HR,2,212,201912,2157969 -AT,HR,2,221,201912,662475 -AT,HR,2,222,201912,3024473 -AT,HR,2,231,201912,309317 -AT,HR,2,232,201912,197 -AT,HR,2,233,201912,118248 -AT,HR,2,234,201912,50661 -AT,HR,2,235,201912,93198 -AT,HR,2,236,201912,254697 -AT,HR,2,237,201912,1966 -AT,HR,2,239,201912,373643 -AT,HR,2,241,201912,1887908 -AT,HR,2,242,201912,319829 -AT,HR,2,243,201912,300333 -AT,HR,2,244,201912,2056339 -AT,HR,2,245,201912,89580 -AT,HR,2,251,201912,909849 -AT,HR,2,252,201912,153767 -AT,HR,2,253,201912,4736 -AT,HR,2,254,201912,10351 -AT,HR,2,257,201912,1251938 -AT,HR,2,259,201912,1287511 -AT,HR,2,25S,201912,1775 -AT,HR,2,261,201912,452227 -AT,HR,2,262,201912,332728 -AT,HR,2,263,201912,2930210 -AT,HR,2,264,201912,43146 -AT,HR,2,265,201912,1170096 -AT,HR,2,266,201912,106915 -AT,HR,2,267,201912,168334 -AT,HR,2,268,201912,2861 -AT,HR,2,271,201912,3627329 -AT,HR,2,272,201912,339501 -AT,HR,2,273,201912,1502215 -AT,HR,2,274,201912,1176949 -AT,HR,2,275,201912,520886 -AT,HR,2,279,201912,636085 -AT,HR,2,281,201912,1969942 -AT,HR,2,282,201912,2962246 -AT,HR,2,283,201912,846500 -AT,HR,2,284,201912,227395 -AT,HR,2,289,201912,1649910 -AT,HR,2,291,201912,2193105 -AT,HR,2,292,201912,149357 -AT,HR,2,293,201912,1852043 -AT,HR,2,302,201912,41430 -AT,HR,2,303,201912,1052628 -AT,HR,2,309,201912,34191 -AT,HR,2,310,201912,1068954 -AT,HR,2,321,201912,417430 -AT,HR,2,322,201912,1254 -AT,HR,2,323,201912,129739 -AT,HR,2,324,201912,745886 -AT,HR,2,325,201912,828156 -AT,HR,2,329,201912,202478 -AT,HR,2,32S,201912,78289 -AT,HT,1,110,201912,312 -AT,HT,2,205,201912,50 -AT,HT,2,221,201912,373 -AT,HT,2,329,201912,5974 -AT,HU,1,011,201912,21092278 -AT,HU,1,012,201912,65594 -AT,HU,1,013,201912,168084 -AT,HU,1,014,201912,4282008 -AT,HU,1,022,201912,2141716 -AT,HU,1,023,201912,63846 -AT,HU,1,030,201912,94448 -AT,HU,1,051,201912,21073 -AT,HU,1,081,201912,451950 -AT,HU,1,089,201912,66626 -AT,HU,1,101,201912,12535126 -AT,HU,1,102,201912,61068 -AT,HU,1,103,201912,4600338 -AT,HU,1,104,201912,3007750 -AT,HU,1,105,201912,122471 -AT,HU,1,106,201912,2211648 -AT,HU,1,107,201912,580839 -AT,HU,1,108,201912,3932685 -AT,HU,1,109,201912,546213 -AT,HU,1,110,201912,868104 -AT,HU,1,131,201912,172442 -AT,HU,1,132,201912,197514 -AT,HU,1,139,201912,701382 -AT,HU,1,141,201912,4318857 -AT,HU,1,143,201912,230227 -AT,HU,1,151,201912,58147 -AT,HU,1,152,201912,4823678 -AT,HU,1,161,201912,2515098 -AT,HU,1,162,201912,3330292 -AT,HU,1,171,201912,2539226 -AT,HU,1,172,201912,1579380 -AT,HU,1,181,201912,127698 -AT,HU,1,191,201912,602082 -AT,HU,1,192,201912,3348952 -AT,HU,1,201,201912,7518552 -AT,HU,1,202,201912,141505 -AT,HU,1,203,201912,314294 -AT,HU,1,204,201912,4777901 -AT,HU,1,205,201912,1654761 -AT,HU,1,206,201912,43280 -AT,HU,1,211,201912,630 -AT,HU,1,212,201912,4597272 -AT,HU,1,221,201912,6588099 -AT,HU,1,222,201912,10924181 -AT,HU,1,231,201912,1142841 -AT,HU,1,232,201912,140963 -AT,HU,1,233,201912,191318 -AT,HU,1,234,201912,155806 -AT,HU,1,235,201912,114569 -AT,HU,1,236,201912,1930632 -AT,HU,1,237,201912,5798 -AT,HU,1,239,201912,1170675 -AT,HU,1,241,201912,7416058 -AT,HU,1,242,201912,330057 -AT,HU,1,243,201912,641322 -AT,HU,1,244,201912,3780136 -AT,HU,1,245,201912,36 -AT,HU,1,251,201912,5378942 -AT,HU,1,252,201912,1374328 -AT,HU,1,253,201912,467944 -AT,HU,1,254,201912,54 -AT,HU,1,257,201912,2026848 -AT,HU,1,259,201912,5522204 -AT,HU,1,261,201912,2193064 -AT,HU,1,262,201912,5636745 -AT,HU,1,263,201912,5152235 -AT,HU,1,264,201912,5498061 -AT,HU,1,265,201912,4744337 -AT,HU,1,267,201912,269223 -AT,HU,1,268,201912,16279 -AT,HU,1,271,201912,9421200 -AT,HU,1,272,201912,965857 -AT,HU,1,273,201912,3387146 -AT,HU,1,274,201912,823385 -AT,HU,1,275,201912,1418724 -AT,HU,1,279,201912,7977023 -AT,HU,1,281,201912,12243372 -AT,HU,1,282,201912,12738683 -AT,HU,1,283,201912,792655 -AT,HU,1,284,201912,197141 -AT,HU,1,289,201912,7498533 -AT,HU,1,291,201912,15368593 -AT,HU,1,292,201912,2520407 -AT,HU,1,293,201912,14462111 -AT,HU,1,302,201912,1339665 -AT,HU,1,303,201912,209705 -AT,HU,1,309,201912,202914 -AT,HU,1,310,201912,3859182 -AT,HU,1,321,201912,264495 -AT,HU,1,322,201912,23 -AT,HU,1,323,201912,85133 -AT,HU,1,324,201912,388810 -AT,HU,1,325,201912,4064966 -AT,HU,1,329,201912,205087 -AT,HU,1,351,201912,250948 -AT,HU,2,011,201912,4570690 -AT,HU,2,012,201912,1528006 -AT,HU,2,013,201912,387351 -AT,HU,2,014,201912,835154 -AT,HU,2,022,201912,206118 -AT,HU,2,023,201912,10671 -AT,HU,2,030,201912,33103 -AT,HU,2,081,201912,204804 -AT,HU,2,089,201912,161303 -AT,HU,2,101,201912,9684360 -AT,HU,2,102,201912,331862 -AT,HU,2,103,201912,1944740 -AT,HU,2,104,201912,771698 -AT,HU,2,105,201912,1596993 -AT,HU,2,106,201912,1271198 -AT,HU,2,107,201912,1808035 -AT,HU,2,108,201912,5505546 -AT,HU,2,109,201912,2946770 -AT,HU,2,10S,201912,666793 -AT,HU,2,110,201912,3839897 -AT,HU,2,131,201912,12768 -AT,HU,2,132,201912,538727 -AT,HU,2,139,201912,2233546 -AT,HU,2,141,201912,7895201 -AT,HU,2,142,201912,45 -AT,HU,2,143,201912,812868 -AT,HU,2,151,201912,1068356 -AT,HU,2,152,201912,4599643 -AT,HU,2,161,201912,876281 -AT,HU,2,162,201912,2955234 -AT,HU,2,171,201912,6043255 -AT,HU,2,172,201912,6652537 -AT,HU,2,17S,201912,265568 -AT,HU,2,192,201912,47384064 -AT,HU,2,201,201912,5371856 -AT,HU,2,202,201912,495484 -AT,HU,2,203,201912,1507492 -AT,HU,2,204,201912,4833969 -AT,HU,2,205,201912,6403332 -AT,HU,2,206,201912,2377 -AT,HU,2,20S,201912,3584623 -AT,HU,2,211,201912,54180 -AT,HU,2,212,201912,5598276 -AT,HU,2,221,201912,2563146 -AT,HU,2,222,201912,10509340 -AT,HU,2,231,201912,1772094 -AT,HU,2,232,201912,163758 -AT,HU,2,233,201912,137546 -AT,HU,2,234,201912,152516 -AT,HU,2,235,201912,445914 -AT,HU,2,236,201912,928024 -AT,HU,2,237,201912,11037 -AT,HU,2,239,201912,2848730 -AT,HU,2,241,201912,7875758 -AT,HU,2,242,201912,924305 -AT,HU,2,243,201912,2040506 -AT,HU,2,244,201912,4194392 -AT,HU,2,245,201912,85983 -AT,HU,2,251,201912,2276820 -AT,HU,2,252,201912,768136 -AT,HU,2,254,201912,89891 -AT,HU,2,257,201912,3812994 -AT,HU,2,259,201912,7413782 -AT,HU,2,25S,201912,29194 -AT,HU,2,261,201912,6404835 -AT,HU,2,262,201912,1373396 -AT,HU,2,263,201912,3231786 -AT,HU,2,264,201912,712703 -AT,HU,2,265,201912,3613609 -AT,HU,2,266,201912,358808 -AT,HU,2,267,201912,260703 -AT,HU,2,268,201912,6436 -AT,HU,2,271,201912,8716747 -AT,HU,2,272,201912,870818 -AT,HU,2,273,201912,6773923 -AT,HU,2,274,201912,7542369 -AT,HU,2,275,201912,1538533 -AT,HU,2,279,201912,9656657 -AT,HU,2,281,201912,7305090 -AT,HU,2,282,201912,8094814 -AT,HU,2,283,201912,3414091 -AT,HU,2,284,201912,2590005 -AT,HU,2,289,201912,6823215 -AT,HU,2,291,201912,21003840 -AT,HU,2,292,201912,1570705 -AT,HU,2,293,201912,19027517 -AT,HU,2,302,201912,3721861 -AT,HU,2,303,201912,2042454 -AT,HU,2,309,201912,316322 -AT,HU,2,310,201912,2044870 -AT,HU,2,321,201912,1040416 -AT,HU,2,322,201912,11616 -AT,HU,2,323,201912,474109 -AT,HU,2,324,201912,361369 -AT,HU,2,325,201912,5142235 -AT,HU,2,329,201912,934832 -AT,HU,2,32S,201912,12900 -AT,HU,2,351,201912,25634659 -AT,ID,1,012,201912,291397 -AT,ID,1,030,201912,2819 -AT,ID,1,103,201912,164534 -AT,ID,1,104,201912,44 -AT,ID,1,106,201912,772 -AT,ID,1,107,201912,574 -AT,ID,1,108,201912,111423 -AT,ID,1,110,201912,58 -AT,ID,1,139,201912,28552 -AT,ID,1,141,201912,1279696 -AT,ID,1,143,201912,292415 -AT,ID,1,151,201912,1761 -AT,ID,1,152,201912,564906 -AT,ID,1,162,201912,43354 -AT,ID,1,172,201912,9941 -AT,ID,1,201,201912,149029 -AT,ID,1,204,201912,161 -AT,ID,1,205,201912,6371 -AT,ID,1,221,201912,10959 -AT,ID,1,222,201912,21822 -AT,ID,1,231,201912,8542 -AT,ID,1,234,201912,136 -AT,ID,1,237,201912,9359 -AT,ID,1,239,201912,8943 -AT,ID,1,244,201912,1148239 -AT,ID,1,257,201912,1511 -AT,ID,1,259,201912,1668 -AT,ID,1,261,201912,10848 -AT,ID,1,262,201912,170 -AT,ID,1,263,201912,8155 -AT,ID,1,265,201912,10590 -AT,ID,1,271,201912,199461 -AT,ID,1,273,201912,790 -AT,ID,1,274,201912,10995 -AT,ID,1,279,201912,673754 -AT,ID,1,281,201912,94557 -AT,ID,1,282,201912,86483 -AT,ID,1,289,201912,566 -AT,ID,1,293,201912,290 -AT,ID,1,309,201912,9673 -AT,ID,1,310,201912,440879 -AT,ID,1,321,201912,4545 -AT,ID,1,323,201912,136917 -AT,ID,1,324,201912,72151 -AT,ID,1,329,201912,86037 -AT,ID,2,103,201912,72780 -AT,ID,2,109,201912,73407 -AT,ID,2,110,201912,111114 -AT,ID,2,132,201912,8865 -AT,ID,2,139,201912,3221 -AT,ID,2,151,201912,14472 -AT,ID,2,162,201912,35543 -AT,ID,2,171,201912,630867 -AT,ID,2,172,201912,2649 -AT,ID,2,17S,201912,1579061 -AT,ID,2,192,201912,398 -AT,ID,2,201,201912,64656 -AT,ID,2,203,201912,9966 -AT,ID,2,204,201912,46866 -AT,ID,2,205,201912,49257 -AT,ID,2,212,201912,511694 -AT,ID,2,221,201912,52903 -AT,ID,2,222,201912,739577 -AT,ID,2,231,201912,17529 -AT,ID,2,232,201912,65356 -AT,ID,2,234,201912,11788 -AT,ID,2,239,201912,28823 -AT,ID,2,241,201912,1841588 -AT,ID,2,242,201912,50482 -AT,ID,2,244,201912,216722 -AT,ID,2,251,201912,662 -AT,ID,2,257,201912,105697 -AT,ID,2,259,201912,37676 -AT,ID,2,261,201912,1297632 -AT,ID,2,262,201912,42155 -AT,ID,2,263,201912,2332 -AT,ID,2,265,201912,614413 -AT,ID,2,267,201912,9375 -AT,ID,2,271,201912,205728 -AT,ID,2,272,201912,304 -AT,ID,2,273,201912,9164 -AT,ID,2,274,201912,4374 -AT,ID,2,275,201912,29119 -AT,ID,2,279,201912,522084 -AT,ID,2,281,201912,1747870 -AT,ID,2,282,201912,102429 -AT,ID,2,284,201912,94033 -AT,ID,2,289,201912,2883264 -AT,ID,2,303,201912,12409 -AT,ID,2,321,201912,4956 -AT,ID,2,325,201912,204362 -AT,ID,2,329,201912,22578 -AT,IE,1,011,201912,569 -AT,IE,1,014,201912,113901 -AT,IE,1,101,201912,287408 -AT,IE,1,102,201912,16702 -AT,IE,1,103,201912,16523 -AT,IE,1,105,201912,453540 -AT,IE,1,106,201912,26026 -AT,IE,1,107,201912,59649 -AT,IE,1,108,201912,8434319 -AT,IE,1,109,201912,34270 -AT,IE,1,110,201912,1223799 -AT,IE,1,132,201912,35422 -AT,IE,1,139,201912,754554 -AT,IE,1,141,201912,63539 -AT,IE,1,143,201912,6457 -AT,IE,1,151,201912,24346 -AT,IE,1,152,201912,16394 -AT,IE,1,162,201912,61127 -AT,IE,1,172,201912,53914 -AT,IE,1,201,201912,93457 -AT,IE,1,203,201912,50991 -AT,IE,1,204,201912,9010 -AT,IE,1,205,201912,585853 -AT,IE,1,211,201912,16507 -AT,IE,1,212,201912,9523896 -AT,IE,1,221,201912,5766 -AT,IE,1,222,201912,207680 -AT,IE,1,231,201912,25076 -AT,IE,1,239,201912,4911 -AT,IE,1,241,201912,21500 -AT,IE,1,242,201912,4013 -AT,IE,1,244,201912,22307 -AT,IE,1,251,201912,9387 -AT,IE,1,257,201912,55448 -AT,IE,1,259,201912,288395 -AT,IE,1,261,201912,281591 -AT,IE,1,262,201912,2319612 -AT,IE,1,263,201912,31453988 -AT,IE,1,264,201912,20440 -AT,IE,1,265,201912,233555 -AT,IE,1,267,201912,75252 -AT,IE,1,268,201912,231 -AT,IE,1,271,201912,93003 -AT,IE,1,272,201912,18376 -AT,IE,1,273,201912,36066 -AT,IE,1,274,201912,620 -AT,IE,1,275,201912,969 -AT,IE,1,279,201912,121827 -AT,IE,1,281,201912,413602 -AT,IE,1,282,201912,769287 -AT,IE,1,283,201912,115615 -AT,IE,1,284,201912,4122753 -AT,IE,1,289,201912,736012 -AT,IE,1,293,201912,8837 -AT,IE,1,303,201912,2952 -AT,IE,1,310,201912,15367 -AT,IE,1,321,201912,44140 -AT,IE,1,324,201912,15838 -AT,IE,1,325,201912,575795 -AT,IE,1,329,201912,18624 -AT,IE,2,012,201912,456 -AT,IE,2,081,201912,1819 -AT,IE,2,101,201912,379910 -AT,IE,2,103,201912,54115 -AT,IE,2,104,201912,120061 -AT,IE,2,105,201912,200834 -AT,IE,2,106,201912,23610 -AT,IE,2,107,201912,101846 -AT,IE,2,108,201912,173807 -AT,IE,2,10S,201912,40301 -AT,IE,2,110,201912,353714 -AT,IE,2,132,201912,1918 -AT,IE,2,139,201912,26845 -AT,IE,2,141,201912,110305 -AT,IE,2,143,201912,50968 -AT,IE,2,151,201912,17204 -AT,IE,2,152,201912,46415 -AT,IE,2,162,201912,35086 -AT,IE,2,171,201912,35464 -AT,IE,2,172,201912,54464 -AT,IE,2,192,201912,14 -AT,IE,2,201,201912,319628 -AT,IE,2,203,201912,564 -AT,IE,2,204,201912,36903 -AT,IE,2,205,201912,74306 -AT,IE,2,206,201912,83292 -AT,IE,2,212,201912,4681426 -AT,IE,2,221,201912,51054 -AT,IE,2,222,201912,1269010 -AT,IE,2,231,201912,42954 -AT,IE,2,232,201912,6556 -AT,IE,2,234,201912,1496 -AT,IE,2,239,201912,58164 -AT,IE,2,241,201912,18350 -AT,IE,2,242,201912,2703 -AT,IE,2,243,201912,162592 -AT,IE,2,244,201912,413598 -AT,IE,2,245,201912,7943 -AT,IE,2,251,201912,145669 -AT,IE,2,252,201912,10038 -AT,IE,2,254,201912,134852 -AT,IE,2,257,201912,258599 -AT,IE,2,259,201912,339801 -AT,IE,2,25S,201912,19673 -AT,IE,2,261,201912,46006 -AT,IE,2,262,201912,684705 -AT,IE,2,263,201912,2066673 -AT,IE,2,264,201912,110583 -AT,IE,2,265,201912,187530 -AT,IE,2,266,201912,358674 -AT,IE,2,267,201912,81403 -AT,IE,2,268,201912,717 -AT,IE,2,271,201912,312488 -AT,IE,2,272,201912,69276 -AT,IE,2,273,201912,67285 -AT,IE,2,274,201912,179034 -AT,IE,2,275,201912,24390 -AT,IE,2,279,201912,528086 -AT,IE,2,281,201912,127585 -AT,IE,2,282,201912,1039036 -AT,IE,2,283,201912,196537 -AT,IE,2,284,201912,230743 -AT,IE,2,289,201912,1216665 -AT,IE,2,291,201912,328018 -AT,IE,2,292,201912,228 -AT,IE,2,293,201912,3305 -AT,IE,2,303,201912,2575880 -AT,IE,2,309,201912,122317 -AT,IE,2,310,201912,48724 -AT,IE,2,321,201912,258052 -AT,IE,2,322,201912,1091 -AT,IE,2,323,201912,6460 -AT,IE,2,324,201912,173114 -AT,IE,2,325,201912,2494463 -AT,IE,2,329,201912,30080 -AT,IE,2,32S,201912,8020 -AT,IL,1,012,201912,167164 -AT,IL,1,030,201912,1594 -AT,IL,1,103,201912,7707 -AT,IL,1,108,201912,102632 -AT,IL,1,110,201912,30380 -AT,IL,1,139,201912,34037 -AT,IL,1,141,201912,9608 -AT,IL,1,143,201912,901 -AT,IL,1,151,201912,2736 -AT,IL,1,152,201912,593 -AT,IL,1,162,201912,1694 -AT,IL,1,172,201912,12325 -AT,IL,1,201,201912,349503 -AT,IL,1,204,201912,140986 -AT,IL,1,205,201912,43715 -AT,IL,1,212,201912,914477 -AT,IL,1,221,201912,45384 -AT,IL,1,222,201912,701950 -AT,IL,1,234,201912,3469 -AT,IL,1,242,201912,21374 -AT,IL,1,244,201912,61085 -AT,IL,1,245,201912,111880 -AT,IL,1,251,201912,16872 -AT,IL,1,254,201912,286520 -AT,IL,1,257,201912,41010 -AT,IL,1,259,201912,21602 -AT,IL,1,261,201912,21022 -AT,IL,1,262,201912,148222 -AT,IL,1,263,201912,724329 -AT,IL,1,264,201912,26960 -AT,IL,1,265,201912,128026 -AT,IL,1,266,201912,53518 -AT,IL,1,267,201912,4764 -AT,IL,1,268,201912,557 -AT,IL,1,271,201912,97734 -AT,IL,1,272,201912,3459 -AT,IL,1,273,201912,13461 -AT,IL,1,274,201912,14756 -AT,IL,1,275,201912,73239 -AT,IL,1,279,201912,49652 -AT,IL,1,281,201912,116371 -AT,IL,1,282,201912,495301 -AT,IL,1,283,201912,475 -AT,IL,1,289,201912,6170 -AT,IL,1,293,201912,325 -AT,IL,1,303,201912,47272 -AT,IL,1,321,201912,179235 -AT,IL,1,322,201912,1205 -AT,IL,1,324,201912,383 -AT,IL,1,325,201912,668435 -AT,IL,1,329,201912,13299 -AT,IL,2,081,201912,49875 -AT,IL,2,089,201912,17280 -AT,IL,2,106,201912,14890 -AT,IL,2,108,201912,179608 -AT,IL,2,109,201912,74240 -AT,IL,2,110,201912,436950 -AT,IL,2,132,201912,5887 -AT,IL,2,139,201912,44680 -AT,IL,2,141,201912,249341 -AT,IL,2,143,201912,1893 -AT,IL,2,151,201912,4224 -AT,IL,2,152,201912,42918 -AT,IL,2,161,201912,150555 -AT,IL,2,162,201912,361133 -AT,IL,2,171,201912,1732085 -AT,IL,2,172,201912,54214 -AT,IL,2,192,201912,75 -AT,IL,2,201,201912,581232 -AT,IL,2,203,201912,29183 -AT,IL,2,204,201912,249301 -AT,IL,2,205,201912,446487 -AT,IL,2,20S,201912,19400 -AT,IL,2,212,201912,3477465 -AT,IL,2,221,201912,46091 -AT,IL,2,222,201912,423750 -AT,IL,2,231,201912,18054 -AT,IL,2,232,201912,107658 -AT,IL,2,234,201912,6752 -AT,IL,2,239,201912,194509 -AT,IL,2,241,201912,106251 -AT,IL,2,242,201912,4116 -AT,IL,2,243,201912,1296 -AT,IL,2,244,201912,310414 -AT,IL,2,245,201912,81 -AT,IL,2,251,201912,190156 -AT,IL,2,257,201912,2473899 -AT,IL,2,259,201912,177907 -AT,IL,2,25S,201912,122530 -AT,IL,2,261,201912,172870 -AT,IL,2,262,201912,174729 -AT,IL,2,263,201912,336810 -AT,IL,2,264,201912,56178 -AT,IL,2,265,201912,600053 -AT,IL,2,266,201912,1899199 -AT,IL,2,267,201912,92515 -AT,IL,2,268,201912,7824 -AT,IL,2,271,201912,939847 -AT,IL,2,272,201912,201378 -AT,IL,2,273,201912,56980 -AT,IL,2,274,201912,158110 -AT,IL,2,275,201912,5203 -AT,IL,2,279,201912,317863 -AT,IL,2,281,201912,239776 -AT,IL,2,282,201912,481373 -AT,IL,2,283,201912,13308 -AT,IL,2,284,201912,20701 -AT,IL,2,289,201912,2909930 -AT,IL,2,291,201912,1369952 -AT,IL,2,293,201912,113189 -AT,IL,2,302,201912,3699 -AT,IL,2,303,201912,104316 -AT,IL,2,309,201912,337033 -AT,IL,2,310,201912,87714 -AT,IL,2,321,201912,21171 -AT,IL,2,323,201912,18032 -AT,IL,2,325,201912,363381 -AT,IL,2,329,201912,86694 -AT,IL,2,32S,201912,12309 -AT,IN,1,011,201912,146760 -AT,IN,1,012,201912,628214 -AT,IN,1,081,201912,22835 -AT,IN,1,089,201912,4923 -AT,IN,1,102,201912,88003 -AT,IN,1,103,201912,246788 -AT,IN,1,104,201912,11042 -AT,IN,1,106,201912,30865 -AT,IN,1,108,201912,367173 -AT,IN,1,110,201912,39 -AT,IN,1,131,201912,59743 -AT,IN,1,132,201912,153764 -AT,IN,1,139,201912,2162741 -AT,IN,1,141,201912,2546622 -AT,IN,1,143,201912,37259 -AT,IN,1,151,201912,918410 -AT,IN,1,152,201912,3736784 -AT,IN,1,162,201912,56126 -AT,IN,1,172,201912,43655 -AT,IN,1,201,201912,3672131 -AT,IN,1,203,201912,5946 -AT,IN,1,204,201912,74790 -AT,IN,1,205,201912,306630 -AT,IN,1,206,201912,103725 -AT,IN,1,211,201912,806353 -AT,IN,1,212,201912,1127339 -AT,IN,1,221,201912,784109 -AT,IN,1,222,201912,251835 -AT,IN,1,231,201912,687705 -AT,IN,1,232,201912,27957 -AT,IN,1,234,201912,131250 -AT,IN,1,237,201912,330798 -AT,IN,1,239,201912,984772 -AT,IN,1,241,201912,380790 -AT,IN,1,242,201912,186545 -AT,IN,1,243,201912,81894 -AT,IN,1,244,201912,640401 -AT,IN,1,251,201912,52658 -AT,IN,1,252,201912,33 -AT,IN,1,257,201912,592357 -AT,IN,1,259,201912,932218 -AT,IN,1,261,201912,2767095 -AT,IN,1,262,201912,18341 -AT,IN,1,263,201912,186201 -AT,IN,1,264,201912,280 -AT,IN,1,265,201912,443664 -AT,IN,1,266,201912,433234 -AT,IN,1,267,201912,28490 -AT,IN,1,271,201912,462877 -AT,IN,1,273,201912,432688 -AT,IN,1,274,201912,510275 -AT,IN,1,275,201912,153907 -AT,IN,1,279,201912,236431 -AT,IN,1,281,201912,3054392 -AT,IN,1,282,201912,1404291 -AT,IN,1,284,201912,7077 -AT,IN,1,289,201912,53198 -AT,IN,1,291,201912,3029 -AT,IN,1,292,201912,55921 -AT,IN,1,293,201912,997860 -AT,IN,1,302,201912,153 -AT,IN,1,303,201912,460528 -AT,IN,1,309,201912,1394784 -AT,IN,1,310,201912,536619 -AT,IN,1,321,201912,471043 -AT,IN,1,322,201912,2498 -AT,IN,1,323,201912,1295 -AT,IN,1,324,201912,1608 -AT,IN,1,325,201912,25135 -AT,IN,1,329,201912,219332 -AT,IN,2,089,201912,18223 -AT,IN,2,106,201912,365926 -AT,IN,2,109,201912,132400 -AT,IN,2,110,201912,88740 -AT,IN,2,131,201912,85 -AT,IN,2,132,201912,34702 -AT,IN,2,139,201912,4520822 -AT,IN,2,141,201912,4723 -AT,IN,2,143,201912,137 -AT,IN,2,151,201912,124640 -AT,IN,2,152,201912,16208 -AT,IN,2,161,201912,1032493 -AT,IN,2,162,201912,264170 -AT,IN,2,171,201912,1548168 -AT,IN,2,172,201912,227795 -AT,IN,2,17S,201912,831641 -AT,IN,2,192,201912,5322 -AT,IN,2,201,201912,1174429 -AT,IN,2,203,201912,132757 -AT,IN,2,204,201912,41436 -AT,IN,2,205,201912,1847104 -AT,IN,2,206,201912,115 -AT,IN,2,211,201912,85000 -AT,IN,2,212,201912,917957 -AT,IN,2,221,201912,320149 -AT,IN,2,222,201912,1603401 -AT,IN,2,231,201912,751961 -AT,IN,2,232,201912,858360 -AT,IN,2,234,201912,74300 -AT,IN,2,235,201912,905 -AT,IN,2,236,201912,6 -AT,IN,2,239,201912,589001 -AT,IN,2,241,201912,3392228 -AT,IN,2,242,201912,180729 -AT,IN,2,243,201912,1162203 -AT,IN,2,244,201912,1353081 -AT,IN,2,245,201912,7185 -AT,IN,2,251,201912,280323 -AT,IN,2,252,201912,3061 -AT,IN,2,257,201912,1335650 -AT,IN,2,259,201912,1178675 -AT,IN,2,261,201912,292604 -AT,IN,2,262,201912,270652 -AT,IN,2,263,201912,412867 -AT,IN,2,264,201912,32336 -AT,IN,2,265,201912,6269244 -AT,IN,2,266,201912,1101344 -AT,IN,2,267,201912,98329 -AT,IN,2,268,201912,81309 -AT,IN,2,271,201912,5094932 -AT,IN,2,272,201912,116821 -AT,IN,2,273,201912,401872 -AT,IN,2,274,201912,231302 -AT,IN,2,275,201912,40654 -AT,IN,2,279,201912,2103036 -AT,IN,2,281,201912,4495885 -AT,IN,2,282,201912,3319392 -AT,IN,2,283,201912,243967 -AT,IN,2,284,201912,1724010 -AT,IN,2,289,201912,5320376 -AT,IN,2,293,201912,592808 -AT,IN,2,302,201912,7845532 -AT,IN,2,303,201912,39881 -AT,IN,2,309,201912,19923 -AT,IN,2,310,201912,65908 -AT,IN,2,321,201912,18662 -AT,IN,2,323,201912,3509 -AT,IN,2,325,201912,627546 -AT,IN,2,329,201912,169411 -AT,IQ,1,061,201912,35492175 -AT,IQ,1,139,201912,97 -AT,IQ,1,141,201912,1043 -AT,IQ,1,143,201912,130 -AT,IQ,1,204,201912,18 -AT,IQ,2,105,201912,1093224 -AT,IQ,2,108,201912,334985 -AT,IQ,2,151,201912,605 -AT,IQ,2,162,201912,37172 -AT,IQ,2,172,201912,100 -AT,IQ,2,205,201912,25521 -AT,IQ,2,212,201912,165135 -AT,IQ,2,221,201912,6778 -AT,IQ,2,222,201912,1243 -AT,IQ,2,231,201912,34369 -AT,IQ,2,259,201912,1973 -AT,IQ,2,261,201912,92077 -AT,IQ,2,262,201912,238248 -AT,IQ,2,265,201912,1196691 -AT,IQ,2,266,201912,60131 -AT,IQ,2,271,201912,889350 -AT,IQ,2,272,201912,3255 -AT,IQ,2,279,201912,19596 -AT,IQ,2,281,201912,5500 -AT,IQ,2,282,201912,147209 -AT,IQ,2,289,201912,70360 -AT,IQ,2,310,201912,307 -AT,IQ,2,325,201912,28348 -AT,IQ,2,329,201912,14081 -AT,IR,1,011,201912,157 -AT,IR,1,012,201912,58461 -AT,IR,1,103,201912,511880 -AT,IR,1,106,201912,5650 -AT,IR,1,107,201912,4567 -AT,IR,1,108,201912,4902 -AT,IR,1,139,201912,23122 -AT,IR,1,141,201912,409 -AT,IR,1,151,201912,274 -AT,IR,1,152,201912,2261 -AT,IR,1,172,201912,27 -AT,IR,1,205,201912,4475 -AT,IR,1,222,201912,269 -AT,IR,1,231,201912,153 -AT,IR,1,234,201912,576 -AT,IR,1,237,201912,8469 -AT,IR,1,257,201912,393 -AT,IR,1,259,201912,5491 -AT,IR,1,265,201912,106 -AT,IR,1,274,201912,376 -AT,IR,1,275,201912,1422 -AT,IR,1,289,201912,1150 -AT,IR,1,309,201912,651 -AT,IR,1,310,201912,6311 -AT,IR,2,108,201912,661906 -AT,IR,2,109,201912,77450 -AT,IR,2,139,201912,3510 -AT,IR,2,151,201912,2279 -AT,IR,2,162,201912,110 -AT,IR,2,171,201912,2233 -AT,IR,2,172,201912,513336 -AT,IR,2,17S,201912,136550 -AT,IR,2,201,201912,114296 -AT,IR,2,202,201912,97246 -AT,IR,2,204,201912,115517 -AT,IR,2,205,201912,158725 -AT,IR,2,211,201912,245472 -AT,IR,2,212,201912,7740897 -AT,IR,2,221,201912,21194 -AT,IR,2,222,201912,102211 -AT,IR,2,232,201912,401086 -AT,IR,2,239,201912,19862 -AT,IR,2,242,201912,95 -AT,IR,2,257,201912,69627 -AT,IR,2,259,201912,117 -AT,IR,2,262,201912,109941 -AT,IR,2,263,201912,4751 -AT,IR,2,265,201912,131513 -AT,IR,2,268,201912,3600 -AT,IR,2,271,201912,863449 -AT,IR,2,273,201912,3049 -AT,IR,2,279,201912,602012 -AT,IR,2,281,201912,874616 -AT,IR,2,282,201912,484091 -AT,IR,2,284,201912,3076 -AT,IR,2,289,201912,128691 -AT,IR,2,293,201912,33 -AT,IR,2,325,201912,208655 -AT,IS,1,101,201912,465 -AT,IS,1,102,201912,1619 -AT,IS,1,103,201912,14 -AT,IS,1,108,201912,252 -AT,IS,1,139,201912,617 -AT,IS,1,141,201912,4204 -AT,IS,1,143,201912,5269 -AT,IS,1,204,201912,2045 -AT,IS,1,264,201912,3772 -AT,IS,1,265,201912,326 -AT,IS,1,266,201912,16519 -AT,IS,1,321,201912,223 -AT,IS,2,103,201912,29931 -AT,IS,2,106,201912,19897 -AT,IS,2,107,201912,277 -AT,IS,2,108,201912,26350 -AT,IS,2,110,201912,111331 -AT,IS,2,132,201912,2058 -AT,IS,2,139,201912,17710 -AT,IS,2,141,201912,10570 -AT,IS,2,143,201912,1659 -AT,IS,2,151,201912,5512 -AT,IS,2,152,201912,303 -AT,IS,2,162,201912,229971 -AT,IS,2,172,201912,441 -AT,IS,2,201,201912,6174 -AT,IS,2,205,201912,847526 -AT,IS,2,212,201912,4 -AT,IS,2,221,201912,2362 -AT,IS,2,222,201912,41182 -AT,IS,2,234,201912,194 -AT,IS,2,239,201912,3033 -AT,IS,2,242,201912,46 -AT,IS,2,244,201912,12 -AT,IS,2,245,201912,16084 -AT,IS,2,251,201912,42021 -AT,IS,2,257,201912,32788 -AT,IS,2,259,201912,9083 -AT,IS,2,25S,201912,1320 -AT,IS,2,261,201912,5494 -AT,IS,2,262,201912,21743 -AT,IS,2,263,201912,19325 -AT,IS,2,264,201912,4122 -AT,IS,2,265,201912,7535 -AT,IS,2,267,201912,967 -AT,IS,2,271,201912,27808 -AT,IS,2,272,201912,220 -AT,IS,2,273,201912,34154 -AT,IS,2,274,201912,56387 -AT,IS,2,275,201912,5053 -AT,IS,2,279,201912,28731 -AT,IS,2,281,201912,61269 -AT,IS,2,282,201912,13652 -AT,IS,2,283,201912,149002 -AT,IS,2,284,201912,7260 -AT,IS,2,289,201912,14066 -AT,IS,2,291,201912,137797 -AT,IS,2,293,201912,3714 -AT,IS,2,303,201912,468 -AT,IS,2,309,201912,984 -AT,IS,2,310,201912,2833 -AT,IS,2,323,201912,151438 -AT,IS,2,325,201912,26286 -AT,IS,2,329,201912,10532 -AT,IT,1,011,201912,14122793 -AT,IT,1,012,201912,9767167 -AT,IT,1,013,201912,151139 -AT,IT,1,014,201912,708422 -AT,IT,1,022,201912,3282950 -AT,IT,1,023,201912,292474 -AT,IT,1,030,201912,1632714 -AT,IT,1,051,201912,113133 -AT,IT,1,081,201912,110721 -AT,IT,1,089,201912,656740 -AT,IT,1,101,201912,12677043 -AT,IT,1,102,201912,1455031 -AT,IT,1,103,201912,11117042 -AT,IT,1,104,201912,6335966 -AT,IT,1,105,201912,9052148 -AT,IT,1,106,201912,2599119 -AT,IT,1,107,201912,8264855 -AT,IT,1,108,201912,13517967 -AT,IT,1,109,201912,976813 -AT,IT,1,110,201912,14441850 -AT,IT,1,120,201912,21606 -AT,IT,1,131,201912,1122038 -AT,IT,1,132,201912,4468269 -AT,IT,1,139,201912,3943511 -AT,IT,1,141,201912,43589913 -AT,IT,1,142,201912,320960 -AT,IT,1,143,201912,6445677 -AT,IT,1,151,201912,8138302 -AT,IT,1,152,201912,8951389 -AT,IT,1,161,201912,1461912 -AT,IT,1,162,201912,4274384 -AT,IT,1,171,201912,5035738 -AT,IT,1,172,201912,8640110 -AT,IT,1,181,201912,89864 -AT,IT,1,191,201912,419845 -AT,IT,1,192,201912,53879088 -AT,IT,1,201,201912,13528159 -AT,IT,1,202,201912,460754 -AT,IT,1,203,201912,1266219 -AT,IT,1,204,201912,3858522 -AT,IT,1,205,201912,10475572 -AT,IT,1,206,201912,1993562 -AT,IT,1,211,201912,260965 -AT,IT,1,212,201912,80413676 -AT,IT,1,221,201912,5187428 -AT,IT,1,222,201912,17378955 -AT,IT,1,231,201912,3083490 -AT,IT,1,232,201912,162564 -AT,IT,1,233,201912,6224639 -AT,IT,1,234,201912,939715 -AT,IT,1,235,201912,560887 -AT,IT,1,236,201912,834148 -AT,IT,1,237,201912,2522069 -AT,IT,1,239,201912,706902 -AT,IT,1,241,201912,18743978 -AT,IT,1,242,201912,6165575 -AT,IT,1,243,201912,7589605 -AT,IT,1,244,201912,12758319 -AT,IT,1,245,201912,111440 -AT,IT,1,251,201912,7074810 -AT,IT,1,252,201912,2101099 -AT,IT,1,253,201912,17728 -AT,IT,1,254,201912,215049 -AT,IT,1,257,201912,8849882 -AT,IT,1,259,201912,15876259 -AT,IT,1,261,201912,1863695 -AT,IT,1,262,201912,4610824 -AT,IT,1,263,201912,3709613 -AT,IT,1,264,201912,1467833 -AT,IT,1,265,201912,8455196 -AT,IT,1,266,201912,761564 -AT,IT,1,267,201912,342856 -AT,IT,1,268,201912,21668 -AT,IT,1,271,201912,9505785 -AT,IT,1,272,201912,1881353 -AT,IT,1,273,201912,4175654 -AT,IT,1,274,201912,5491986 -AT,IT,1,275,201912,6817235 -AT,IT,1,279,201912,5106061 -AT,IT,1,281,201912,35759553 -AT,IT,1,282,201912,29939838 -AT,IT,1,283,201912,11568306 -AT,IT,1,284,201912,11757156 -AT,IT,1,289,201912,25643615 -AT,IT,1,291,201912,32550265 -AT,IT,1,292,201912,1040499 -AT,IT,1,293,201912,37334121 -AT,IT,1,302,201912,1492640 -AT,IT,1,303,201912,951819 -AT,IT,1,309,201912,9322851 -AT,IT,1,310,201912,11383143 -AT,IT,1,321,201912,4113487 -AT,IT,1,322,201912,229807 -AT,IT,1,323,201912,4597854 -AT,IT,1,324,201912,1508798 -AT,IT,1,325,201912,3969485 -AT,IT,1,329,201912,1568992 -AT,IT,2,011,201912,17189812 -AT,IT,2,012,201912,962549 -AT,IT,2,013,201912,104087 -AT,IT,2,014,201912,2654806 -AT,IT,2,022,201912,2144689 -AT,IT,2,023,201912,7414 -AT,IT,2,030,201912,40883 -AT,IT,2,081,201912,901109 -AT,IT,2,089,201912,792417 -AT,IT,2,101,201912,18092115 -AT,IT,2,102,201912,296168 -AT,IT,2,103,201912,6439718 -AT,IT,2,104,201912,665586 -AT,IT,2,105,201912,14977349 -AT,IT,2,106,201912,4130054 -AT,IT,2,107,201912,10261632 -AT,IT,2,108,201912,8282891 -AT,IT,2,109,201912,3779288 -AT,IT,2,10S,201912,626457 -AT,IT,2,110,201912,6239185 -AT,IT,2,131,201912,297827 -AT,IT,2,132,201912,3558749 -AT,IT,2,139,201912,3377016 -AT,IT,2,141,201912,8035823 -AT,IT,2,142,201912,49628 -AT,IT,2,143,201912,1935824 -AT,IT,2,151,201912,926187 -AT,IT,2,152,201912,1478128 -AT,IT,2,161,201912,26383929 -AT,IT,2,162,201912,31171105 -AT,IT,2,171,201912,27691457 -AT,IT,2,172,201912,2267473 -AT,IT,2,17S,201912,466314 -AT,IT,2,181,201912,6906 -AT,IT,2,192,201912,3021180 -AT,IT,2,201,201912,17175601 -AT,IT,2,202,201912,502350 -AT,IT,2,203,201912,2249751 -AT,IT,2,204,201912,3528640 -AT,IT,2,205,201912,12105977 -AT,IT,2,206,201912,380354 -AT,IT,2,20S,201912,1532713 -AT,IT,2,211,201912,164476 -AT,IT,2,212,201912,39454062 -AT,IT,2,221,201912,3025178 -AT,IT,2,222,201912,15992116 -AT,IT,2,231,201912,3251603 -AT,IT,2,232,201912,2836527 -AT,IT,2,233,201912,160134 -AT,IT,2,234,201912,266113 -AT,IT,2,235,201912,280907 -AT,IT,2,236,201912,508522 -AT,IT,2,237,201912,14196 -AT,IT,2,239,201912,4711430 -AT,IT,2,241,201912,37409822 -AT,IT,2,242,201912,1910704 -AT,IT,2,243,201912,2822591 -AT,IT,2,244,201912,43287387 -AT,IT,2,245,201912,1087069 -AT,IT,2,251,201912,4115009 -AT,IT,2,252,201912,2086537 -AT,IT,2,253,201912,66043 -AT,IT,2,254,201912,167445 -AT,IT,2,257,201912,11724526 -AT,IT,2,259,201912,6745002 -AT,IT,2,25S,201912,925450 -AT,IT,2,261,201912,1689297 -AT,IT,2,262,201912,6451941 -AT,IT,2,263,201912,2595489 -AT,IT,2,264,201912,1015327 -AT,IT,2,265,201912,10519320 -AT,IT,2,266,201912,3350993 -AT,IT,2,267,201912,645760 -AT,IT,2,268,201912,1710 -AT,IT,2,271,201912,11473965 -AT,IT,2,272,201912,1616867 -AT,IT,2,273,201912,2119030 -AT,IT,2,274,201912,4053799 -AT,IT,2,275,201912,4469343 -AT,IT,2,279,201912,9237030 -AT,IT,2,281,201912,11233058 -AT,IT,2,282,201912,23052453 -AT,IT,2,283,201912,2530235 -AT,IT,2,284,201912,9506880 -AT,IT,2,289,201912,21720637 -AT,IT,2,291,201912,21500082 -AT,IT,2,292,201912,1259739 -AT,IT,2,293,201912,9483888 -AT,IT,2,301,201912,1122 -AT,IT,2,302,201912,298128 -AT,IT,2,303,201912,995289 -AT,IT,2,309,201912,9633198 -AT,IT,2,310,201912,5438396 -AT,IT,2,321,201912,3175092 -AT,IT,2,322,201912,230865 -AT,IT,2,323,201912,5455325 -AT,IT,2,324,201912,1355459 -AT,IT,2,325,201912,4723871 -AT,IT,2,329,201912,1807769 -AT,IT,2,32S,201912,42953 -AT,IT,2,351,201912,5441593 -AT,JM,1,110,201912,655 -AT,JM,2,110,201912,108358 -AT,JM,2,171,201912,33148 -AT,JO,1,104,201912,334 -AT,JO,1,107,201912,104 -AT,JO,1,141,201912,244 -AT,JO,1,143,201912,243 -AT,JO,1,204,201912,253 -AT,JO,1,266,201912,298 -AT,JO,1,321,201912,201877 -AT,JO,1,325,201912,866 -AT,JO,2,012,201912,14851 -AT,JO,2,108,201912,37162 -AT,JO,2,109,201912,49945 -AT,JO,2,110,201912,20666 -AT,JO,2,139,201912,122 -AT,JO,2,141,201912,20 -AT,JO,2,162,201912,84331 -AT,JO,2,171,201912,317053 -AT,JO,2,172,201912,292 -AT,JO,2,17S,201912,50538 -AT,JO,2,201,201912,95285 -AT,JO,2,202,201912,24986 -AT,JO,2,204,201912,37266 -AT,JO,2,205,201912,136969 -AT,JO,2,212,201912,275242 -AT,JO,2,221,201912,715 -AT,JO,2,222,201912,58263 -AT,JO,2,231,201912,1 -AT,JO,2,232,201912,17462 -AT,JO,2,244,201912,1032 -AT,JO,2,257,201912,47929 -AT,JO,2,259,201912,2856 -AT,JO,2,25S,201912,1410 -AT,JO,2,261,201912,7763 -AT,JO,2,265,201912,121882 -AT,JO,2,266,201912,2433 -AT,JO,2,271,201912,23037 -AT,JO,2,272,201912,87647 -AT,JO,2,273,201912,1653 -AT,JO,2,274,201912,35607 -AT,JO,2,275,201912,5910 -AT,JO,2,279,201912,339736 -AT,JO,2,281,201912,1255347 -AT,JO,2,282,201912,27419 -AT,JO,2,289,201912,24667 -AT,JO,2,291,201912,1068923 -AT,JO,2,292,201912,9000 -AT,JO,2,310,201912,646 -AT,JO,2,325,201912,105968 -AT,JO,2,329,201912,10905 -AT,JP,1,030,201912,26608 -AT,JP,1,089,201912,5676 -AT,JP,1,103,201912,11180 -AT,JP,1,106,201912,1088 -AT,JP,1,107,201912,242 -AT,JP,1,108,201912,275788 -AT,JP,1,110,201912,120720 -AT,JP,1,132,201912,40763 -AT,JP,1,139,201912,59613 -AT,JP,1,141,201912,53866 -AT,JP,1,143,201912,5194 -AT,JP,1,151,201912,6586 -AT,JP,1,152,201912,2648 -AT,JP,1,162,201912,7483 -AT,JP,1,171,201912,100440 -AT,JP,1,172,201912,4248 -AT,JP,1,192,201912,1858 -AT,JP,1,201,201912,942957 -AT,JP,1,203,201912,1261757 -AT,JP,1,204,201912,59134 -AT,JP,1,205,201912,2284470 -AT,JP,1,206,201912,240095 -AT,JP,1,211,201912,13723 -AT,JP,1,212,201912,42813 -AT,JP,1,221,201912,274802 -AT,JP,1,222,201912,1272445 -AT,JP,1,231,201912,159786 -AT,JP,1,234,201912,142641 -AT,JP,1,239,201912,536486 -AT,JP,1,241,201912,609519 -AT,JP,1,242,201912,17472 -AT,JP,1,243,201912,114676 -AT,JP,1,244,201912,1747968 -AT,JP,1,252,201912,347 -AT,JP,1,254,201912,64266 -AT,JP,1,257,201912,729828 -AT,JP,1,259,201912,421150 -AT,JP,1,261,201912,1818652 -AT,JP,1,262,201912,251513 -AT,JP,1,263,201912,1730144 -AT,JP,1,264,201912,128110 -AT,JP,1,265,201912,1621271 -AT,JP,1,266,201912,1694212 -AT,JP,1,267,201912,1203051 -AT,JP,1,268,201912,17949 -AT,JP,1,271,201912,630945 -AT,JP,1,272,201912,236942 -AT,JP,1,273,201912,609839 -AT,JP,1,274,201912,44656 -AT,JP,1,275,201912,23918 -AT,JP,1,279,201912,2080136 -AT,JP,1,281,201912,4764377 -AT,JP,1,282,201912,3531373 -AT,JP,1,283,201912,620 -AT,JP,1,284,201912,379883 -AT,JP,1,289,201912,13663675 -AT,JP,1,291,201912,6228699 -AT,JP,1,293,201912,1574620 -AT,JP,1,302,201912,5499 -AT,JP,1,303,201912,13476 -AT,JP,1,309,201912,2801554 -AT,JP,1,310,201912,5576 -AT,JP,1,321,201912,44820 -AT,JP,1,322,201912,45600 -AT,JP,1,323,201912,45674 -AT,JP,1,324,201912,49622 -AT,JP,1,325,201912,720925 -AT,JP,1,329,201912,127398 -AT,JP,2,012,201912,367 -AT,JP,2,081,201912,109 -AT,JP,2,089,201912,239460 -AT,JP,2,101,201912,3041208 -AT,JP,2,103,201912,2025084 -AT,JP,2,105,201912,19440 -AT,JP,2,107,201912,19158 -AT,JP,2,108,201912,33169 -AT,JP,2,109,201912,554347 -AT,JP,2,110,201912,871362 -AT,JP,2,132,201912,67230 -AT,JP,2,139,201912,247325 -AT,JP,2,141,201912,130087 -AT,JP,2,142,201912,9206 -AT,JP,2,143,201912,3430 -AT,JP,2,151,201912,77999 -AT,JP,2,152,201912,88842 -AT,JP,2,161,201912,5506530 -AT,JP,2,162,201912,9349871 -AT,JP,2,171,201912,577903 -AT,JP,2,172,201912,171396 -AT,JP,2,17S,201912,603951 -AT,JP,2,192,201912,1448 -AT,JP,2,201,201912,782935 -AT,JP,2,203,201912,90921 -AT,JP,2,204,201912,36401 -AT,JP,2,205,201912,201553 -AT,JP,2,206,201912,8767 -AT,JP,2,211,201912,427643 -AT,JP,2,212,201912,3280539 -AT,JP,2,221,201912,92313 -AT,JP,2,222,201912,1204920 -AT,JP,2,231,201912,378414 -AT,JP,2,232,201912,5845 -AT,JP,2,234,201912,52046 -AT,JP,2,236,201912,119542 -AT,JP,2,239,201912,195119 -AT,JP,2,241,201912,224945 -AT,JP,2,242,201912,131386 -AT,JP,2,243,201912,695361 -AT,JP,2,244,201912,632247 -AT,JP,2,245,201912,191571 -AT,JP,2,251,201912,159505 -AT,JP,2,252,201912,295360 -AT,JP,2,257,201912,6217536 -AT,JP,2,259,201912,986436 -AT,JP,2,25S,201912,577 -AT,JP,2,261,201912,166193 -AT,JP,2,262,201912,375500 -AT,JP,2,263,201912,558394 -AT,JP,2,264,201912,155504 -AT,JP,2,265,201912,6407573 -AT,JP,2,266,201912,885459 -AT,JP,2,267,201912,1149778 -AT,JP,2,268,201912,437 -AT,JP,2,271,201912,1013234 -AT,JP,2,272,201912,74053 -AT,JP,2,273,201912,173219 -AT,JP,2,274,201912,87983 -AT,JP,2,275,201912,162708 -AT,JP,2,279,201912,1997837 -AT,JP,2,281,201912,7792307 -AT,JP,2,282,201912,2684139 -AT,JP,2,283,201912,1517400 -AT,JP,2,284,201912,2003442 -AT,JP,2,289,201912,10872502 -AT,JP,2,291,201912,12874766 -AT,JP,2,293,201912,814082 -AT,JP,2,302,201912,4771648 -AT,JP,2,303,201912,1915526 -AT,JP,2,309,201912,879788 -AT,JP,2,310,201912,685981 -AT,JP,2,321,201912,584629 -AT,JP,2,322,201912,179224 -AT,JP,2,323,201912,1404195 -AT,JP,2,324,201912,33219 -AT,JP,2,325,201912,2965130 -AT,JP,2,329,201912,85240 -AT,JP,2,32S,201912,313899 -AT,KE,1,012,201912,64400 -AT,KE,1,131,201912,53642 -AT,KE,1,139,201912,271 -AT,KE,1,151,201912,475 -AT,KE,1,323,201912,140 -AT,KE,2,109,201912,104315 -AT,KE,2,110,201912,28188 -AT,KE,2,171,201912,120435 -AT,KE,2,172,201912,76 -AT,KE,2,17S,201912,18656 -AT,KE,2,203,201912,7189 -AT,KE,2,204,201912,89486 -AT,KE,2,205,201912,14256 -AT,KE,2,221,201912,1502 -AT,KE,2,222,201912,56851 -AT,KE,2,231,201912,25322 -AT,KE,2,257,201912,55187 -AT,KE,2,259,201912,16 -AT,KE,2,262,201912,200 -AT,KE,2,265,201912,30899 -AT,KE,2,271,201912,36 -AT,KE,2,273,201912,404 -AT,KE,2,274,201912,1396 -AT,KE,2,275,201912,29 -AT,KE,2,279,201912,59180 -AT,KE,2,281,201912,85164 -AT,KE,2,282,201912,440 -AT,KE,2,284,201912,4384 -AT,KE,2,289,201912,47147 -AT,KE,2,309,201912,11743 -AT,KE,2,310,201912,7013 -AT,KE,2,325,201912,3458 -AT,KE,2,329,201912,5659 -AT,KG,1,011,201912,1424 -AT,KG,2,108,201912,1163 -AT,KG,2,139,201912,750 -AT,KG,2,162,201912,8048 -AT,KG,2,201,201912,403 -AT,KG,2,205,201912,14095 -AT,KG,2,212,201912,72169 -AT,KG,2,221,201912,50 -AT,KG,2,222,201912,2013 -AT,KG,2,266,201912,72229 -AT,KG,2,267,201912,2295 -AT,KG,2,323,201912,18039 -AT,KG,2,329,201912,11250 -AT,KH,1,106,201912,56109 -AT,KH,1,139,201912,42840 -AT,KH,1,141,201912,7635985 -AT,KH,1,142,201912,7414 -AT,KH,1,143,201912,216077 -AT,KH,1,151,201912,30 -AT,KH,1,152,201912,1141448 -AT,KH,1,279,201912,5057 -AT,KH,1,309,201912,720400 -AT,KH,1,323,201912,255069 -AT,KH,1,324,201912,53451 -AT,KH,1,329,201912,436 -AT,KH,2,142,201912,10521 -AT,KH,2,151,201912,4500 -AT,KH,2,245,201912,8666 -AT,KH,2,259,201912,1889 -AT,KH,2,274,201912,126 -AT,KH,2,281,201912,2133 -AT,KH,2,293,201912,98 -AT,KH,2,309,201912,5276 -AT,KR,1,013,201912,7205 -AT,KR,1,030,201912,86 -AT,KR,1,103,201912,18646 -AT,KR,1,104,201912,1269 -AT,KR,1,106,201912,31129 -AT,KR,1,107,201912,29369 -AT,KR,1,108,201912,211206 -AT,KR,1,110,201912,56558 -AT,KR,1,131,201912,1026 -AT,KR,1,132,201912,56368 -AT,KR,1,139,201912,617640 -AT,KR,1,141,201912,23178 -AT,KR,1,143,201912,3532 -AT,KR,1,151,201912,145359 -AT,KR,1,152,201912,8552 -AT,KR,1,162,201912,2506 -AT,KR,1,171,201912,182 -AT,KR,1,172,201912,4824 -AT,KR,1,192,201912,251 -AT,KR,1,201,201912,1577875 -AT,KR,1,203,201912,58251 -AT,KR,1,204,201912,142138 -AT,KR,1,205,201912,878995 -AT,KR,1,206,201912,92675 -AT,KR,1,211,201912,627 -AT,KR,1,212,201912,235069 -AT,KR,1,221,201912,203013 -AT,KR,1,222,201912,1048387 -AT,KR,1,231,201912,17411 -AT,KR,1,234,201912,10572 -AT,KR,1,236,201912,25 -AT,KR,1,239,201912,344287 -AT,KR,1,241,201912,16665 -AT,KR,1,242,201912,73872 -AT,KR,1,244,201912,373228 -AT,KR,1,251,201912,16720 -AT,KR,1,257,201912,1038718 -AT,KR,1,259,201912,578138 -AT,KR,1,261,201912,4960079 -AT,KR,1,262,201912,7355391 -AT,KR,1,263,201912,4543347 -AT,KR,1,264,201912,190670 -AT,KR,1,265,201912,804728 -AT,KR,1,266,201912,1561554 -AT,KR,1,267,201912,373292 -AT,KR,1,271,201912,509432 -AT,KR,1,272,201912,2647367 -AT,KR,1,273,201912,637434 -AT,KR,1,274,201912,489367 -AT,KR,1,275,201912,127101 -AT,KR,1,279,201912,2349076 -AT,KR,1,281,201912,2481975 -AT,KR,1,282,201912,1028897 -AT,KR,1,284,201912,264529 -AT,KR,1,289,201912,2508255 -AT,KR,1,291,201912,4321807 -AT,KR,1,292,201912,5531 -AT,KR,1,293,201912,2414658 -AT,KR,1,309,201912,3639 -AT,KR,1,310,201912,332601 -AT,KR,1,321,201912,43488 -AT,KR,1,322,201912,1251 -AT,KR,1,323,201912,24582 -AT,KR,1,324,201912,117769 -AT,KR,1,325,201912,759135 -AT,KR,1,329,201912,18892 -AT,KR,2,101,201912,3628994 -AT,KR,2,103,201912,121952 -AT,KR,2,104,201912,9812 -AT,KR,2,105,201912,571799 -AT,KR,2,106,201912,1705 -AT,KR,2,107,201912,15177 -AT,KR,2,108,201912,666288 -AT,KR,2,109,201912,120267 -AT,KR,2,10S,201912,68260 -AT,KR,2,110,201912,364722 -AT,KR,2,132,201912,7236 -AT,KR,2,139,201912,148126 -AT,KR,2,141,201912,320468 -AT,KR,2,142,201912,20285 -AT,KR,2,143,201912,18440 -AT,KR,2,151,201912,28022 -AT,KR,2,152,201912,6026 -AT,KR,2,161,201912,1232416 -AT,KR,2,162,201912,288713 -AT,KR,2,171,201912,156043 -AT,KR,2,172,201912,44409 -AT,KR,2,17S,201912,1390606 -AT,KR,2,201,201912,771611 -AT,KR,2,203,201912,226547 -AT,KR,2,204,201912,281838 -AT,KR,2,205,201912,1086093 -AT,KR,2,206,201912,9495 -AT,KR,2,212,201912,3728928 -AT,KR,2,221,201912,68781 -AT,KR,2,222,201912,2960576 -AT,KR,2,231,201912,161730 -AT,KR,2,232,201912,1890698 -AT,KR,2,234,201912,235374 -AT,KR,2,239,201912,264888 -AT,KR,2,241,201912,4056525 -AT,KR,2,242,201912,358073 -AT,KR,2,243,201912,166045 -AT,KR,2,244,201912,1495405 -AT,KR,2,245,201912,5620 -AT,KR,2,251,201912,100787 -AT,KR,2,252,201912,46 -AT,KR,2,257,201912,1255708 -AT,KR,2,259,201912,531614 -AT,KR,2,261,201912,1024379 -AT,KR,2,262,201912,409570 -AT,KR,2,263,201912,26741 -AT,KR,2,264,201912,23873 -AT,KR,2,265,201912,6391076 -AT,KR,2,266,201912,990336 -AT,KR,2,267,201912,164740 -AT,KR,2,271,201912,1860463 -AT,KR,2,272,201912,129414 -AT,KR,2,273,201912,168404 -AT,KR,2,274,201912,133622 -AT,KR,2,275,201912,26559 -AT,KR,2,279,201912,1752925 -AT,KR,2,281,201912,5853718 -AT,KR,2,282,201912,14468013 -AT,KR,2,283,201912,375081 -AT,KR,2,284,201912,431532 -AT,KR,2,289,201912,10651571 -AT,KR,2,291,201912,15611162 -AT,KR,2,292,201912,395 -AT,KR,2,293,201912,2842695 -AT,KR,2,302,201912,17134630 -AT,KR,2,303,201912,508705 -AT,KR,2,309,201912,534836 -AT,KR,2,310,201912,102769 -AT,KR,2,321,201912,85245 -AT,KR,2,322,201912,79114 -AT,KR,2,323,201912,171537 -AT,KR,2,324,201912,7468 -AT,KR,2,325,201912,2639517 -AT,KR,2,329,201912,39752 -AT,KR,2,32S,201912,216558 -AT,KW,1,141,201912,2344 -AT,KW,1,151,201912,2132 -AT,KW,1,152,201912,1033 -AT,KW,1,204,201912,185 -AT,KW,1,257,201912,1523 -AT,KW,1,282,201912,2975 -AT,KW,2,103,201912,193864 -AT,KW,2,107,201912,49 -AT,KW,2,108,201912,52451 -AT,KW,2,110,201912,15196 -AT,KW,2,139,201912,1666 -AT,KW,2,141,201912,96133 -AT,KW,2,151,201912,4901 -AT,KW,2,152,201912,200852 -AT,KW,2,161,201912,7532 -AT,KW,2,162,201912,258157 -AT,KW,2,172,201912,77763 -AT,KW,2,181,201912,4448 -AT,KW,2,201,201912,1571 -AT,KW,2,202,201912,4273 -AT,KW,2,204,201912,71534 -AT,KW,2,205,201912,34415 -AT,KW,2,212,201912,4129 -AT,KW,2,221,201912,43197 -AT,KW,2,222,201912,25969 -AT,KW,2,231,201912,1160 -AT,KW,2,251,201912,419 -AT,KW,2,257,201912,25750 -AT,KW,2,259,201912,118593 -AT,KW,2,25S,201912,197750 -AT,KW,2,261,201912,250 -AT,KW,2,262,201912,34950 -AT,KW,2,263,201912,115988 -AT,KW,2,264,201912,135 -AT,KW,2,265,201912,29577 -AT,KW,2,271,201912,11039 -AT,KW,2,272,201912,5925 -AT,KW,2,273,201912,6865 -AT,KW,2,274,201912,43747 -AT,KW,2,275,201912,15035 -AT,KW,2,279,201912,8669 -AT,KW,2,281,201912,323090 -AT,KW,2,282,201912,809906 -AT,KW,2,284,201912,14908 -AT,KW,2,289,201912,133343 -AT,KW,2,291,201912,14052091 -AT,KW,2,293,201912,14246 -AT,KW,2,309,201912,184940 -AT,KW,2,325,201912,88236 -AT,KW,2,329,201912,26320 -AT,KY,2,103,201912,2193 -AT,KY,2,110,201912,10760 -AT,KY,2,222,201912,1359 -AT,KY,2,257,201912,35506 -AT,KY,2,310,201912,2044 -AT,KZ,1,061,201912,175927677 -AT,KZ,1,265,201912,1007 -AT,KZ,2,106,201912,51000 -AT,KZ,2,108,201912,150401 -AT,KZ,2,109,201912,50789 -AT,KZ,2,110,201912,22554 -AT,KZ,2,132,201912,14705 -AT,KZ,2,141,201912,69401 -AT,KZ,2,152,201912,24091 -AT,KZ,2,161,201912,10945 -AT,KZ,2,162,201912,42955 -AT,KZ,2,171,201912,197970 -AT,KZ,2,172,201912,137 -AT,KZ,2,17S,201912,5035 -AT,KZ,2,201,201912,5318 -AT,KZ,2,204,201912,12902 -AT,KZ,2,205,201912,41535 -AT,KZ,2,211,201912,12869 -AT,KZ,2,212,201912,11025785 -AT,KZ,2,221,201912,12381 -AT,KZ,2,222,201912,31738 -AT,KZ,2,231,201912,671 -AT,KZ,2,234,201912,231 -AT,KZ,2,239,201912,4865 -AT,KZ,2,242,201912,15571 -AT,KZ,2,243,201912,13800 -AT,KZ,2,244,201912,25395 -AT,KZ,2,251,201912,251613 -AT,KZ,2,257,201912,92190 -AT,KZ,2,259,201912,195856 -AT,KZ,2,261,201912,2741 -AT,KZ,2,262,201912,3333 -AT,KZ,2,263,201912,31580 -AT,KZ,2,264,201912,50590 -AT,KZ,2,265,201912,152757 -AT,KZ,2,266,201912,19688 -AT,KZ,2,267,201912,8241 -AT,KZ,2,271,201912,24244 -AT,KZ,2,272,201912,74511 -AT,KZ,2,273,201912,1034 -AT,KZ,2,274,201912,13 -AT,KZ,2,275,201912,4456 -AT,KZ,2,279,201912,3013 -AT,KZ,2,281,201912,431651 -AT,KZ,2,282,201912,304375 -AT,KZ,2,289,201912,1295915 -AT,KZ,2,309,201912,717 -AT,KZ,2,310,201912,4864 -AT,KZ,2,321,201912,7690 -AT,KZ,2,323,201912,775 -AT,KZ,2,325,201912,370991 -AT,KZ,2,329,201912,31879 -AT,LA,1,141,201912,190 -AT,LA,2,222,201912,1709 -AT,LA,2,257,201912,850 -AT,LA,2,259,201912,1799 -AT,LA,2,265,201912,6284 -AT,LA,2,271,201912,127647 -AT,LA,2,279,201912,290 -AT,LA,2,281,201912,39419 -AT,LA,2,282,201912,22398 -AT,LA,2,289,201912,1975 -AT,LB,1,141,201912,975 -AT,LB,1,162,201912,262 -AT,LB,1,204,201912,31 -AT,LB,1,222,201912,36 -AT,LB,1,257,201912,98 -AT,LB,1,259,201912,2160 -AT,LB,1,274,201912,3030 -AT,LB,1,279,201912,776 -AT,LB,1,289,201912,1411 -AT,LB,1,329,201912,710 -AT,LB,2,103,201912,28733 -AT,LB,2,106,201912,359 -AT,LB,2,107,201912,1759 -AT,LB,2,108,201912,65314 -AT,LB,2,10S,201912,1070 -AT,LB,2,110,201912,1047 -AT,LB,2,139,201912,7738 -AT,LB,2,141,201912,270 -AT,LB,2,151,201912,783 -AT,LB,2,171,201912,27600 -AT,LB,2,201,201912,5444 -AT,LB,2,205,201912,144903 -AT,LB,2,212,201912,210555 -AT,LB,2,221,201912,201 -AT,LB,2,222,201912,22222 -AT,LB,2,231,201912,5550 -AT,LB,2,232,201912,283339 -AT,LB,2,239,201912,1282 -AT,LB,2,245,201912,1053 -AT,LB,2,257,201912,5526 -AT,LB,2,259,201912,591 -AT,LB,2,261,201912,3212 -AT,LB,2,262,201912,11019 -AT,LB,2,263,201912,334 -AT,LB,2,265,201912,25011 -AT,LB,2,271,201912,9971 -AT,LB,2,272,201912,723 -AT,LB,2,273,201912,52381 -AT,LB,2,274,201912,61171 -AT,LB,2,279,201912,29037 -AT,LB,2,281,201912,27919 -AT,LB,2,282,201912,106779 -AT,LB,2,289,201912,89281 -AT,LB,2,291,201912,16300 -AT,LB,2,293,201912,456 -AT,LB,2,302,201912,2042 -AT,LB,2,309,201912,6277 -AT,LB,2,310,201912,147 -AT,LB,2,323,201912,21004 -AT,LB,2,325,201912,151569 -AT,LC,2,25S,201912,11383 -AT,LI,1,101,201912,86100 -AT,LI,1,107,201912,543 -AT,LI,1,108,201912,3057 -AT,LI,1,109,201912,11954362 -AT,LI,1,139,201912,51050 -AT,LI,1,141,201912,1762 -AT,LI,1,151,201912,7326 -AT,LI,1,152,201912,218 -AT,LI,1,162,201912,11816 -AT,LI,1,171,201912,1881 -AT,LI,1,172,201912,127716 -AT,LI,1,192,201912,158332 -AT,LI,1,201,201912,246248 -AT,LI,1,203,201912,151365 -AT,LI,1,204,201912,252651 -AT,LI,1,205,201912,944325 -AT,LI,1,221,201912,263137 -AT,LI,1,222,201912,645897 -AT,LI,1,231,201912,1043550 -AT,LI,1,232,201912,6398 -AT,LI,1,234,201912,9333 -AT,LI,1,236,201912,9737 -AT,LI,1,239,201912,206863 -AT,LI,1,241,201912,21253 -AT,LI,1,242,201912,5800 -AT,LI,1,243,201912,12098 -AT,LI,1,244,201912,244310 -AT,LI,1,245,201912,68 -AT,LI,1,251,201912,71783 -AT,LI,1,252,201912,1485938 -AT,LI,1,257,201912,1076613 -AT,LI,1,259,201912,5845601 -AT,LI,1,261,201912,848 -AT,LI,1,262,201912,6081 -AT,LI,1,263,201912,51004 -AT,LI,1,264,201912,671 -AT,LI,1,265,201912,278512 -AT,LI,1,267,201912,37585 -AT,LI,1,268,201912,15678 -AT,LI,1,271,201912,197011 -AT,LI,1,272,201912,4733 -AT,LI,1,273,201912,1551480 -AT,LI,1,274,201912,11743 -AT,LI,1,275,201912,65893 -AT,LI,1,279,201912,1613632 -AT,LI,1,281,201912,1415174 -AT,LI,1,282,201912,1480601 -AT,LI,1,284,201912,338382 -AT,LI,1,289,201912,184255 -AT,LI,1,291,201912,3726665 -AT,LI,1,293,201912,603604 -AT,LI,1,310,201912,77537 -AT,LI,1,321,201912,55345 -AT,LI,1,324,201912,17619 -AT,LI,1,325,201912,3497574 -AT,LI,1,329,201912,91162 -AT,LI,2,011,201912,38003 -AT,LI,2,012,201912,27524 -AT,LI,2,013,201912,1228 -AT,LI,2,014,201912,294 -AT,LI,2,030,201912,2380 -AT,LI,2,081,201912,28433 -AT,LI,2,101,201912,151900 -AT,LI,2,103,201912,2193 -AT,LI,2,104,201912,70 -AT,LI,2,105,201912,4297 -AT,LI,2,106,201912,10948 -AT,LI,2,107,201912,9329 -AT,LI,2,108,201912,90779 -AT,LI,2,109,201912,7835 -AT,LI,2,110,201912,175044 -AT,LI,2,132,201912,29638 -AT,LI,2,139,201912,223402 -AT,LI,2,141,201912,176709 -AT,LI,2,143,201912,11375 -AT,LI,2,151,201912,40753 -AT,LI,2,152,201912,7036 -AT,LI,2,161,201912,28624 -AT,LI,2,162,201912,393708 -AT,LI,2,171,201912,4579 -AT,LI,2,172,201912,1226460 -AT,LI,2,17S,201912,15 -AT,LI,2,201,201912,15565 -AT,LI,2,202,201912,788 -AT,LI,2,203,201912,11402 -AT,LI,2,204,201912,8913 -AT,LI,2,205,201912,13487 -AT,LI,2,211,201912,2300 -AT,LI,2,221,201912,121979 -AT,LI,2,222,201912,965618 -AT,LI,2,231,201912,653993 -AT,LI,2,232,201912,2910 -AT,LI,2,233,201912,10759 -AT,LI,2,234,201912,31807 -AT,LI,2,236,201912,47744 -AT,LI,2,237,201912,13447 -AT,LI,2,239,201912,82875 -AT,LI,2,241,201912,1155397 -AT,LI,2,242,201912,43115 -AT,LI,2,243,201912,30988 -AT,LI,2,244,201912,1580328 -AT,LI,2,245,201912,27176 -AT,LI,2,251,201912,363843 -AT,LI,2,252,201912,50684 -AT,LI,2,254,201912,3996 -AT,LI,2,257,201912,1345446 -AT,LI,2,259,201912,1321168 -AT,LI,2,25S,201912,121 -AT,LI,2,261,201912,249316 -AT,LI,2,262,201912,551309 -AT,LI,2,263,201912,97720 -AT,LI,2,264,201912,137152 -AT,LI,2,265,201912,420009 -AT,LI,2,267,201912,65656 -AT,LI,2,271,201912,763440 -AT,LI,2,272,201912,162990 -AT,LI,2,273,201912,50702 -AT,LI,2,274,201912,97131 -AT,LI,2,275,201912,961152 -AT,LI,2,279,201912,500772 -AT,LI,2,281,201912,1273073 -AT,LI,2,282,201912,4392937 -AT,LI,2,283,201912,7230 -AT,LI,2,284,201912,2101448 -AT,LI,2,289,201912,930966 -AT,LI,2,291,201912,2605867 -AT,LI,2,292,201912,82861 -AT,LI,2,293,201912,172113 -AT,LI,2,310,201912,734846 -AT,LI,2,321,201912,326603 -AT,LI,2,322,201912,8830 -AT,LI,2,323,201912,4712 -AT,LI,2,324,201912,25982 -AT,LI,2,325,201912,1960995 -AT,LI,2,329,201912,26515 -AT,LI,2,32S,201912,676 -AT,LI,2,351,201912,1355996 -AT,LK,1,012,201912,60726 -AT,LK,1,030,201912,1656 -AT,LK,1,108,201912,191417 -AT,LK,1,132,201912,4778 -AT,LK,1,139,201912,336597 -AT,LK,1,141,201912,7931066 -AT,LK,1,143,201912,51 -AT,LK,1,151,201912,130 -AT,LK,1,162,201912,87 -AT,LK,1,204,201912,112 -AT,LK,1,221,201912,38121 -AT,LK,1,222,201912,1574 -AT,LK,1,261,201912,1167 -AT,LK,1,262,201912,25961 -AT,LK,1,263,201912,985 -AT,LK,1,265,201912,5958 -AT,LK,1,271,201912,93182 -AT,LK,1,273,201912,57757 -AT,LK,1,279,201912,2871 -AT,LK,1,293,201912,80226 -AT,LK,1,321,201912,5249 -AT,LK,1,323,201912,122545 -AT,LK,1,324,201912,954477 -AT,LK,1,329,201912,15225 -AT,LK,2,103,201912,11044 -AT,LK,2,105,201912,282213 -AT,LK,2,107,201912,111 -AT,LK,2,110,201912,53133 -AT,LK,2,131,201912,8876 -AT,LK,2,139,201912,4879 -AT,LK,2,141,201912,715 -AT,LK,2,151,201912,250 -AT,LK,2,162,201912,1991 -AT,LK,2,172,201912,3745 -AT,LK,2,17S,201912,2946 -AT,LK,2,201,201912,3132 -AT,LK,2,205,201912,40939 -AT,LK,2,222,201912,7861 -AT,LK,2,231,201912,25812 -AT,LK,2,239,201912,264 -AT,LK,2,241,201912,961301 -AT,LK,2,242,201912,2270 -AT,LK,2,244,201912,1622 -AT,LK,2,257,201912,44457 -AT,LK,2,259,201912,9511 -AT,LK,2,265,201912,26489 -AT,LK,2,267,201912,6479 -AT,LK,2,271,201912,114333 -AT,LK,2,273,201912,28565 -AT,LK,2,275,201912,5075 -AT,LK,2,279,201912,6730 -AT,LK,2,281,201912,57690 -AT,LK,2,282,201912,15424 -AT,LK,2,284,201912,14475 -AT,LK,2,289,201912,13172 -AT,LK,2,310,201912,8734 -AT,LK,2,323,201912,4609 -AT,LK,2,324,201912,55 -AT,LK,2,325,201912,695928 -AT,LK,2,329,201912,14860 -AT,LR,2,281,201912,4 -AT,LT,1,011,201912,155190 -AT,LT,1,012,201912,23760 -AT,LT,1,103,201912,223472 -AT,LT,1,104,201912,38459 -AT,LT,1,106,201912,45844 -AT,LT,1,107,201912,22684 -AT,LT,1,108,201912,29534 -AT,LT,1,109,201912,254601 -AT,LT,1,131,201912,5315 -AT,LT,1,132,201912,325 -AT,LT,1,139,201912,51964 -AT,LT,1,141,201912,441771 -AT,LT,1,143,201912,60450 -AT,LT,1,151,201912,88 -AT,LT,1,152,201912,12632 -AT,LT,1,161,201912,103487 -AT,LT,1,162,201912,76975 -AT,LT,1,171,201912,16815 -AT,LT,1,172,201912,82714 -AT,LT,1,201,201912,876303 -AT,LT,1,204,201912,1534 -AT,LT,1,205,201912,448038 -AT,LT,1,211,201912,84680 -AT,LT,1,221,201912,16323 -AT,LT,1,222,201912,1363210 -AT,LT,1,231,201912,8721 -AT,LT,1,239,201912,13372 -AT,LT,1,241,201912,7476 -AT,LT,1,243,201912,3726 -AT,LT,1,244,201912,495612 -AT,LT,1,251,201912,193818 -AT,LT,1,257,201912,10654 -AT,LT,1,259,201912,48321 -AT,LT,1,261,201912,6658 -AT,LT,1,262,201912,294 -AT,LT,1,263,201912,939153 -AT,LT,1,265,201912,63269 -AT,LT,1,267,201912,353981 -AT,LT,1,273,201912,920 -AT,LT,1,274,201912,29069 -AT,LT,1,275,201912,5225 -AT,LT,1,279,201912,664049 -AT,LT,1,281,201912,24027 -AT,LT,1,282,201912,586618 -AT,LT,1,283,201912,7718 -AT,LT,1,289,201912,21439 -AT,LT,1,291,201912,22124 -AT,LT,1,292,201912,133487 -AT,LT,1,293,201912,77914 -AT,LT,1,303,201912,277 -AT,LT,1,310,201912,973530 -AT,LT,1,321,201912,6878 -AT,LT,1,323,201912,882 -AT,LT,1,324,201912,5950 -AT,LT,1,325,201912,16686 -AT,LT,1,329,201912,3808 -AT,LT,2,011,201912,6687 -AT,LT,2,012,201912,13536 -AT,LT,2,081,201912,4852 -AT,LT,2,101,201912,60222 -AT,LT,2,102,201912,28838 -AT,LT,2,103,201912,88960 -AT,LT,2,104,201912,4355 -AT,LT,2,105,201912,10788 -AT,LT,2,106,201912,25676 -AT,LT,2,107,201912,121606 -AT,LT,2,108,201912,473636 -AT,LT,2,109,201912,190412 -AT,LT,2,10S,201912,983 -AT,LT,2,110,201912,178158 -AT,LT,2,131,201912,42793 -AT,LT,2,132,201912,133259 -AT,LT,2,139,201912,87461 -AT,LT,2,141,201912,597878 -AT,LT,2,143,201912,23291 -AT,LT,2,151,201912,49721 -AT,LT,2,152,201912,56753 -AT,LT,2,161,201912,27900 -AT,LT,2,162,201912,112711 -AT,LT,2,171,201912,88934 -AT,LT,2,172,201912,144081 -AT,LT,2,17S,201912,445113 -AT,LT,2,192,201912,99939 -AT,LT,2,201,201912,768907 -AT,LT,2,202,201912,12729 -AT,LT,2,203,201912,50422 -AT,LT,2,204,201912,162317 -AT,LT,2,205,201912,223118 -AT,LT,2,211,201912,3098 -AT,LT,2,212,201912,3580060 -AT,LT,2,221,201912,150179 -AT,LT,2,222,201912,1300680 -AT,LT,2,231,201912,190415 -AT,LT,2,232,201912,510 -AT,LT,2,234,201912,1873 -AT,LT,2,236,201912,141975 -AT,LT,2,239,201912,3941 -AT,LT,2,241,201912,41503 -AT,LT,2,242,201912,253285 -AT,LT,2,243,201912,1774 -AT,LT,2,244,201912,31694 -AT,LT,2,245,201912,8578 -AT,LT,2,251,201912,97471 -AT,LT,2,252,201912,4211 -AT,LT,2,254,201912,6490 -AT,LT,2,257,201912,501800 -AT,LT,2,259,201912,110142 -AT,LT,2,25S,201912,20695 -AT,LT,2,261,201912,107656 -AT,LT,2,262,201912,23159 -AT,LT,2,263,201912,35628 -AT,LT,2,264,201912,71 -AT,LT,2,265,201912,186927 -AT,LT,2,266,201912,42207 -AT,LT,2,267,201912,82803 -AT,LT,2,268,201912,279 -AT,LT,2,271,201912,1164729 -AT,LT,2,272,201912,262646 -AT,LT,2,273,201912,438643 -AT,LT,2,274,201912,272688 -AT,LT,2,275,201912,27159 -AT,LT,2,279,201912,327019 -AT,LT,2,281,201912,272909 -AT,LT,2,282,201912,505458 -AT,LT,2,283,201912,925274 -AT,LT,2,284,201912,308962 -AT,LT,2,289,201912,173325 -AT,LT,2,291,201912,1024224 -AT,LT,2,292,201912,151543 -AT,LT,2,293,201912,151627 -AT,LT,2,302,201912,494 -AT,LT,2,309,201912,225101 -AT,LT,2,310,201912,88330 -AT,LT,2,321,201912,98957 -AT,LT,2,323,201912,30109 -AT,LT,2,324,201912,228472 -AT,LT,2,325,201912,175409 -AT,LT,2,329,201912,680435 -AT,LT,2,32S,201912,1811 -AT,LU,1,011,201912,33980 -AT,LU,1,012,201912,297627 -AT,LU,1,014,201912,1008 -AT,LU,1,101,201912,3546 -AT,LU,1,103,201912,661499 -AT,LU,1,104,201912,210 -AT,LU,1,105,201912,142 -AT,LU,1,106,201912,2169 -AT,LU,1,107,201912,40231 -AT,LU,1,108,201912,1201512 -AT,LU,1,110,201912,52145 -AT,LU,1,132,201912,17165 -AT,LU,1,139,201912,191166 -AT,LU,1,141,201912,103775 -AT,LU,1,143,201912,596 -AT,LU,1,151,201912,2664 -AT,LU,1,152,201912,181728 -AT,LU,1,161,201912,10961 -AT,LU,1,162,201912,415609 -AT,LU,1,171,201912,75331 -AT,LU,1,172,201912,11140 -AT,LU,1,192,201912,153 -AT,LU,1,201,201912,1896420 -AT,LU,1,203,201912,185985 -AT,LU,1,204,201912,284533 -AT,LU,1,205,201912,86272 -AT,LU,1,212,201912,442078 -AT,LU,1,221,201912,437389 -AT,LU,1,222,201912,1534606 -AT,LU,1,231,201912,1175100 -AT,LU,1,232,201912,16170 -AT,LU,1,234,201912,450123 -AT,LU,1,241,201912,2735528 -AT,LU,1,242,201912,18283 -AT,LU,1,243,201912,88334 -AT,LU,1,244,201912,6520364 -AT,LU,1,251,201912,99528 -AT,LU,1,257,201912,680966 -AT,LU,1,259,201912,295401 -AT,LU,1,261,201912,11259 -AT,LU,1,262,201912,28283 -AT,LU,1,263,201912,189100 -AT,LU,1,264,201912,24038 -AT,LU,1,265,201912,98939 -AT,LU,1,267,201912,4494 -AT,LU,1,271,201912,302654 -AT,LU,1,272,201912,353340 -AT,LU,1,273,201912,38126 -AT,LU,1,274,201912,21836 -AT,LU,1,275,201912,15423 -AT,LU,1,279,201912,132573 -AT,LU,1,281,201912,287458 -AT,LU,1,282,201912,262514 -AT,LU,1,283,201912,57228 -AT,LU,1,284,201912,8745 -AT,LU,1,289,201912,394284 -AT,LU,1,291,201912,168919 -AT,LU,1,292,201912,2103659 -AT,LU,1,293,201912,875965 -AT,LU,1,302,201912,1526 -AT,LU,1,303,201912,21821 -AT,LU,1,309,201912,16703 -AT,LU,1,310,201912,5558 -AT,LU,1,321,201912,8778 -AT,LU,1,324,201912,1764 -AT,LU,1,325,201912,389330 -AT,LU,1,329,201912,9865 -AT,LU,2,011,201912,9167 -AT,LU,2,012,201912,17807 -AT,LU,2,014,201912,556 -AT,LU,2,101,201912,74170 -AT,LU,2,103,201912,57923 -AT,LU,2,104,201912,159 -AT,LU,2,107,201912,4486 -AT,LU,2,108,201912,43306 -AT,LU,2,110,201912,129457 -AT,LU,2,132,201912,78736 -AT,LU,2,139,201912,54019 -AT,LU,2,141,201912,64847 -AT,LU,2,143,201912,29564 -AT,LU,2,151,201912,10739 -AT,LU,2,152,201912,294694 -AT,LU,2,161,201912,4731 -AT,LU,2,162,201912,151945 -AT,LU,2,171,201912,42926 -AT,LU,2,172,201912,321100 -AT,LU,2,17S,201912,70441 -AT,LU,2,192,201912,2326 -AT,LU,2,201,201912,349751 -AT,LU,2,202,201912,1340 -AT,LU,2,203,201912,33051 -AT,LU,2,204,201912,213877 -AT,LU,2,205,201912,242807 -AT,LU,2,211,201912,16 -AT,LU,2,212,201912,671318 -AT,LU,2,221,201912,11126 -AT,LU,2,222,201912,199208 -AT,LU,2,231,201912,68389 -AT,LU,2,232,201912,55325 -AT,LU,2,234,201912,7188 -AT,LU,2,236,201912,12841 -AT,LU,2,239,201912,39922 -AT,LU,2,241,201912,165779 -AT,LU,2,242,201912,1870 -AT,LU,2,243,201912,3651 -AT,LU,2,244,201912,260957 -AT,LU,2,245,201912,3807 -AT,LU,2,251,201912,188531 -AT,LU,2,252,201912,370018 -AT,LU,2,254,201912,21799 -AT,LU,2,257,201912,2987079 -AT,LU,2,259,201912,56192 -AT,LU,2,25S,201912,7437 -AT,LU,2,261,201912,27347 -AT,LU,2,262,201912,4391 -AT,LU,2,263,201912,1112679 -AT,LU,2,264,201912,12275 -AT,LU,2,265,201912,342455 -AT,LU,2,267,201912,33517 -AT,LU,2,268,201912,43 -AT,LU,2,271,201912,661784 -AT,LU,2,272,201912,4265 -AT,LU,2,273,201912,162083 -AT,LU,2,274,201912,360811 -AT,LU,2,275,201912,33629 -AT,LU,2,279,201912,376782 -AT,LU,2,281,201912,436293 -AT,LU,2,282,201912,739903 -AT,LU,2,283,201912,317112 -AT,LU,2,284,201912,48287 -AT,LU,2,289,201912,207936 -AT,LU,2,291,201912,4255545 -AT,LU,2,292,201912,59361 -AT,LU,2,293,201912,33793 -AT,LU,2,302,201912,2082 -AT,LU,2,309,201912,63959 -AT,LU,2,310,201912,620233 -AT,LU,2,321,201912,330700 -AT,LU,2,323,201912,5331 -AT,LU,2,324,201912,17479 -AT,LU,2,325,201912,36071 -AT,LU,2,329,201912,30533 -AT,LV,1,089,201912,76736 -AT,LV,1,102,201912,129545 -AT,LV,1,110,201912,48861 -AT,LV,1,132,201912,58285 -AT,LV,1,139,201912,7316 -AT,LV,1,141,201912,40771 -AT,LV,1,161,201912,427101 -AT,LV,1,162,201912,104166 -AT,LV,1,192,201912,90532 -AT,LV,1,201,201912,131473 -AT,LV,1,204,201912,51906 -AT,LV,1,205,201912,14892 -AT,LV,1,212,201912,366963 -AT,LV,1,221,201912,5692 -AT,LV,1,222,201912,32028 -AT,LV,1,231,201912,1437 -AT,LV,1,251,201912,65353 -AT,LV,1,257,201912,108451 -AT,LV,1,259,201912,301 -AT,LV,1,261,201912,135450 -AT,LV,1,262,201912,621665 -AT,LV,1,263,201912,311422 -AT,LV,1,265,201912,10218 -AT,LV,1,267,201912,165 -AT,LV,1,273,201912,14879 -AT,LV,1,279,201912,623 -AT,LV,1,281,201912,37831 -AT,LV,1,282,201912,14894 -AT,LV,1,284,201912,871 -AT,LV,1,289,201912,21085 -AT,LV,1,293,201912,32938 -AT,LV,1,310,201912,16925 -AT,LV,1,321,201912,3144 -AT,LV,1,323,201912,37470 -AT,LV,1,324,201912,2094 -AT,LV,1,329,201912,35391 -AT,LV,2,011,201912,11 -AT,LV,2,012,201912,11 -AT,LV,2,081,201912,3100 -AT,LV,2,101,201912,56922 -AT,LV,2,103,201912,32846 -AT,LV,2,104,201912,9278 -AT,LV,2,106,201912,9708 -AT,LV,2,107,201912,8553 -AT,LV,2,108,201912,284544 -AT,LV,2,109,201912,67635 -AT,LV,2,110,201912,160675 -AT,LV,2,131,201912,3377 -AT,LV,2,132,201912,5819 -AT,LV,2,139,201912,98182 -AT,LV,2,141,201912,110266 -AT,LV,2,143,201912,14508 -AT,LV,2,151,201912,9987 -AT,LV,2,152,201912,50116 -AT,LV,2,162,201912,64869 -AT,LV,2,171,201912,218892 -AT,LV,2,172,201912,74408 -AT,LV,2,192,201912,1170 -AT,LV,2,201,201912,27247 -AT,LV,2,202,201912,5769 -AT,LV,2,203,201912,21814 -AT,LV,2,204,201912,87211 -AT,LV,2,205,201912,54582 -AT,LV,2,206,201912,144 -AT,LV,2,211,201912,3677 -AT,LV,2,212,201912,2170718 -AT,LV,2,221,201912,56247 -AT,LV,2,222,201912,190889 -AT,LV,2,231,201912,47645 -AT,LV,2,234,201912,9197 -AT,LV,2,235,201912,25586 -AT,LV,2,236,201912,1251 -AT,LV,2,239,201912,17926 -AT,LV,2,241,201912,11865 -AT,LV,2,242,201912,265221 -AT,LV,2,243,201912,8926 -AT,LV,2,244,201912,322145 -AT,LV,2,245,201912,5176 -AT,LV,2,251,201912,46530 -AT,LV,2,252,201912,982591 -AT,LV,2,254,201912,44117 -AT,LV,2,257,201912,135183 -AT,LV,2,259,201912,112176 -AT,LV,2,25S,201912,49416 -AT,LV,2,261,201912,114834 -AT,LV,2,262,201912,98138 -AT,LV,2,263,201912,519462 -AT,LV,2,264,201912,22518 -AT,LV,2,265,201912,359598 -AT,LV,2,267,201912,15889 -AT,LV,2,268,201912,693 -AT,LV,2,271,201912,459601 -AT,LV,2,272,201912,5019 -AT,LV,2,273,201912,41108 -AT,LV,2,274,201912,155350 -AT,LV,2,275,201912,25125 -AT,LV,2,279,201912,113361 -AT,LV,2,281,201912,118326 -AT,LV,2,282,201912,600862 -AT,LV,2,283,201912,72496 -AT,LV,2,284,201912,71956 -AT,LV,2,289,201912,1476265 -AT,LV,2,291,201912,538958 -AT,LV,2,293,201912,30015 -AT,LV,2,302,201912,5289 -AT,LV,2,309,201912,267128 -AT,LV,2,310,201912,71209 -AT,LV,2,321,201912,139212 -AT,LV,2,323,201912,80983 -AT,LV,2,324,201912,10020 -AT,LV,2,325,201912,62799 -AT,LV,2,329,201912,38046 -AT,LY,1,061,201912,82406817 -AT,LY,2,103,201912,130634 -AT,LY,2,105,201912,928768 -AT,LY,2,108,201912,57342 -AT,LY,2,110,201912,542952 -AT,LY,2,172,201912,226 -AT,LY,2,205,201912,60337 -AT,LY,2,222,201912,4247 -AT,LY,2,232,201912,161932 -AT,LY,2,265,201912,52431 -AT,LY,2,266,201912,2641 -AT,LY,2,272,201912,596 -AT,LY,2,273,201912,646 -AT,LY,2,281,201912,1549 -AT,LY,2,282,201912,2534 -AT,LY,2,289,201912,14562 -AT,MA,1,103,201912,28043 -AT,MA,1,104,201912,4145 -AT,MA,1,108,201912,97 -AT,MA,1,139,201912,18895 -AT,MA,1,141,201912,3090886 -AT,MA,1,151,201912,2315 -AT,MA,1,152,201912,39601 -AT,MA,1,162,201912,1335 -AT,MA,1,201,201912,34 -AT,MA,1,204,201912,2549 -AT,MA,1,222,201912,10498 -AT,MA,1,251,201912,2772 -AT,MA,1,259,201912,6009 -AT,MA,1,261,201912,26 -AT,MA,1,265,201912,26413 -AT,MA,1,271,201912,1421504 -AT,MA,1,273,201912,20668 -AT,MA,1,279,201912,17640 -AT,MA,1,289,201912,6864 -AT,MA,1,293,201912,1918665 -AT,MA,1,310,201912,448 -AT,MA,2,101,201912,5904 -AT,MA,2,105,201912,58334 -AT,MA,2,108,201912,9214 -AT,MA,2,110,201912,170676 -AT,MA,2,132,201912,41086 -AT,MA,2,139,201912,720987 -AT,MA,2,141,201912,25596 -AT,MA,2,151,201912,58444 -AT,MA,2,161,201912,19886 -AT,MA,2,162,201912,321559 -AT,MA,2,171,201912,53455 -AT,MA,2,172,201912,175127 -AT,MA,2,17S,201912,55381 -AT,MA,2,201,201912,1300195 -AT,MA,2,202,201912,378224 -AT,MA,2,203,201912,74813 -AT,MA,2,204,201912,159 -AT,MA,2,205,201912,173344 -AT,MA,2,212,201912,164303 -AT,MA,2,221,201912,11479 -AT,MA,2,222,201912,567668 -AT,MA,2,231,201912,19176 -AT,MA,2,232,201912,222723 -AT,MA,2,239,201912,1438 -AT,MA,2,242,201912,352 -AT,MA,2,244,201912,8399 -AT,MA,2,251,201912,18017 -AT,MA,2,257,201912,99094 -AT,MA,2,259,201912,23025 -AT,MA,2,261,201912,979 -AT,MA,2,262,201912,287770 -AT,MA,2,263,201912,1908 -AT,MA,2,265,201912,298746 -AT,MA,2,271,201912,948078 -AT,MA,2,272,201912,36932 -AT,MA,2,273,201912,1083761 -AT,MA,2,274,201912,8815 -AT,MA,2,275,201912,15059 -AT,MA,2,279,201912,306886 -AT,MA,2,281,201912,155921 -AT,MA,2,282,201912,146968 -AT,MA,2,284,201912,2418 -AT,MA,2,289,201912,620085 -AT,MA,2,291,201912,70450 -AT,MA,2,293,201912,7776 -AT,MA,2,309,201912,165563 -AT,MA,2,310,201912,10053 -AT,MA,2,321,201912,282 -AT,MA,2,324,201912,1457 -AT,MA,2,325,201912,126046 -AT,MA,2,329,201912,51303 -AT,MD,1,011,201912,60028 -AT,MD,1,103,201912,1094120 -AT,MD,1,141,201912,46525 -AT,MD,1,161,201912,10320 -AT,MD,1,162,201912,3693 -AT,MD,1,222,201912,179250 -AT,MD,1,259,201912,31220 -AT,MD,1,273,201912,667728 -AT,MD,1,281,201912,3008 -AT,MD,1,282,201912,14726 -AT,MD,1,289,201912,15000 -AT,MD,1,293,201912,2171 -AT,MD,1,325,201912,890 -AT,MD,2,011,201912,13 -AT,MD,2,012,201912,69001 -AT,MD,2,101,201912,64932 -AT,MD,2,103,201912,7513 -AT,MD,2,106,201912,7724 -AT,MD,2,107,201912,9952 -AT,MD,2,108,201912,231439 -AT,MD,2,110,201912,65495 -AT,MD,2,132,201912,21212 -AT,MD,2,139,201912,12499 -AT,MD,2,141,201912,1854 -AT,MD,2,143,201912,302 -AT,MD,2,151,201912,1800 -AT,MD,2,162,201912,488842 -AT,MD,2,171,201912,18 -AT,MD,2,172,201912,36560 -AT,MD,2,192,201912,1691 -AT,MD,2,201,201912,225602 -AT,MD,2,202,201912,6790 -AT,MD,2,203,201912,15128 -AT,MD,2,204,201912,7671 -AT,MD,2,205,201912,56528 -AT,MD,2,20S,201912,532 -AT,MD,2,211,201912,654 -AT,MD,2,212,201912,591775 -AT,MD,2,221,201912,24579 -AT,MD,2,222,201912,176177 -AT,MD,2,231,201912,8590 -AT,MD,2,232,201912,109850 -AT,MD,2,234,201912,2923 -AT,MD,2,239,201912,5170 -AT,MD,2,244,201912,823450 -AT,MD,2,257,201912,150428 -AT,MD,2,259,201912,45750 -AT,MD,2,261,201912,12041 -AT,MD,2,262,201912,13196 -AT,MD,2,263,201912,64800 -AT,MD,2,264,201912,17 -AT,MD,2,265,201912,98261 -AT,MD,2,266,201912,47831 -AT,MD,2,267,201912,17886 -AT,MD,2,271,201912,38777 -AT,MD,2,272,201912,56614 -AT,MD,2,273,201912,466632 -AT,MD,2,274,201912,7604 -AT,MD,2,275,201912,483 -AT,MD,2,279,201912,3350 -AT,MD,2,281,201912,25076 -AT,MD,2,282,201912,48590 -AT,MD,2,283,201912,802933 -AT,MD,2,284,201912,12764 -AT,MD,2,289,201912,444517 -AT,MD,2,291,201912,808727 -AT,MD,2,292,201912,28600 -AT,MD,2,293,201912,60482 -AT,MD,2,310,201912,2130 -AT,MD,2,321,201912,217 -AT,MD,2,323,201912,379 -AT,MD,2,324,201912,317 -AT,MD,2,325,201912,57712 -AT,MD,2,329,201912,1270 -AT,ME,1,103,201912,179154 -AT,ME,1,162,201912,1349 -AT,ME,1,222,201912,3600 -AT,ME,1,243,201912,18574 -AT,ME,1,272,201912,336 -AT,ME,1,289,201912,38840 -AT,ME,1,310,201912,6454 -AT,ME,2,012,201912,1544 -AT,ME,2,089,201912,22 -AT,ME,2,101,201912,521026 -AT,ME,2,103,201912,2690 -AT,ME,2,104,201912,36 -AT,ME,2,107,201912,44 -AT,ME,2,108,201912,99357 -AT,ME,2,10S,201912,589 -AT,ME,2,110,201912,76017 -AT,ME,2,131,201912,159 -AT,ME,2,132,201912,9878 -AT,ME,2,139,201912,6957 -AT,ME,2,141,201912,11141 -AT,ME,2,143,201912,149 -AT,ME,2,151,201912,1534 -AT,ME,2,152,201912,35075 -AT,ME,2,161,201912,32340 -AT,ME,2,162,201912,110997 -AT,ME,2,172,201912,17301 -AT,ME,2,192,201912,55659 -AT,ME,2,201,201912,1494 -AT,ME,2,202,201912,4594 -AT,ME,2,203,201912,41059 -AT,ME,2,204,201912,134442 -AT,ME,2,205,201912,37795 -AT,ME,2,212,201912,357245 -AT,ME,2,221,201912,3539 -AT,ME,2,222,201912,60750 -AT,ME,2,231,201912,8010 -AT,ME,2,234,201912,24902 -AT,ME,2,236,201912,7679 -AT,ME,2,239,201912,22255 -AT,ME,2,242,201912,59697 -AT,ME,2,243,201912,15012 -AT,ME,2,244,201912,12883 -AT,ME,2,251,201912,9073 -AT,ME,2,257,201912,64334 -AT,ME,2,259,201912,26174 -AT,ME,2,261,201912,12358 -AT,ME,2,262,201912,4704 -AT,ME,2,263,201912,240942 -AT,ME,2,264,201912,861 -AT,ME,2,265,201912,14350 -AT,ME,2,267,201912,10542 -AT,ME,2,271,201912,14448 -AT,ME,2,272,201912,64592 -AT,ME,2,273,201912,13650 -AT,ME,2,274,201912,91259 -AT,ME,2,275,201912,37618 -AT,ME,2,279,201912,11708 -AT,ME,2,281,201912,6589 -AT,ME,2,282,201912,118289 -AT,ME,2,284,201912,53540 -AT,ME,2,289,201912,231201 -AT,ME,2,291,201912,702890 -AT,ME,2,292,201912,14724 -AT,ME,2,293,201912,6146 -AT,ME,2,309,201912,744 -AT,ME,2,310,201912,27276 -AT,ME,2,324,201912,122260 -AT,ME,2,325,201912,11217 -AT,ME,2,329,201912,19462 -AT,MG,1,139,201912,3631 -AT,MG,2,162,201912,28 -AT,MG,2,171,201912,86094 -AT,MG,2,205,201912,4090 -AT,MG,2,221,201912,129 -AT,MG,2,222,201912,1979 -AT,MG,2,257,201912,56 -AT,MG,2,259,201912,35 -AT,MG,2,265,201912,233 -AT,MG,2,273,201912,12 -AT,MG,2,274,201912,264 -AT,MG,2,279,201912,33 -AT,MG,2,281,201912,844 -AT,MG,2,282,201912,5206 -AT,MG,2,293,201912,240 -AT,MG,2,309,201912,1604 -AT,MK,1,081,201912,100 -AT,MK,1,103,201912,84154 -AT,MK,1,105,201912,41478 -AT,MK,1,107,201912,25262 -AT,MK,1,108,201912,43307 -AT,MK,1,110,201912,8775 -AT,MK,1,139,201912,436002 -AT,MK,1,141,201912,1789058 -AT,MK,1,162,201912,942 -AT,MK,1,172,201912,6171 -AT,MK,1,205,201912,89855 -AT,MK,1,221,201912,163 -AT,MK,1,222,201912,45890 -AT,MK,1,231,201912,11686 -AT,MK,1,232,201912,16698 -AT,MK,1,237,201912,1761 -AT,MK,1,242,201912,25082 -AT,MK,1,251,201912,16790 -AT,MK,1,259,201912,9180 -AT,MK,1,261,201912,16577 -AT,MK,1,264,201912,36436 -AT,MK,1,265,201912,3040 -AT,MK,1,271,201912,1105 -AT,MK,1,273,201912,1329 -AT,MK,1,275,201912,118406 -AT,MK,1,279,201912,10529 -AT,MK,1,291,201912,56706 -AT,MK,1,293,201912,161789 -AT,MK,1,310,201912,20531 -AT,MK,1,324,201912,207 -AT,MK,1,325,201912,569 -AT,MK,2,012,201912,768 -AT,MK,2,014,201912,7250 -AT,MK,2,101,201912,1474502 -AT,MK,2,103,201912,37399 -AT,MK,2,104,201912,14890 -AT,MK,2,105,201912,469483 -AT,MK,2,106,201912,5946 -AT,MK,2,107,201912,15731 -AT,MK,2,108,201912,485367 -AT,MK,2,109,201912,61567 -AT,MK,2,10S,201912,2008 -AT,MK,2,110,201912,256390 -AT,MK,2,131,201912,11691 -AT,MK,2,132,201912,194410 -AT,MK,2,139,201912,187683 -AT,MK,2,141,201912,142064 -AT,MK,2,143,201912,141 -AT,MK,2,151,201912,6429 -AT,MK,2,152,201912,66442 -AT,MK,2,161,201912,23749 -AT,MK,2,162,201912,153380 -AT,MK,2,171,201912,51286 -AT,MK,2,172,201912,139824 -AT,MK,2,17S,201912,1959 -AT,MK,2,192,201912,20841 -AT,MK,2,201,201912,119349 -AT,MK,2,202,201912,178620 -AT,MK,2,203,201912,49139 -AT,MK,2,204,201912,51003 -AT,MK,2,205,201912,100093 -AT,MK,2,211,201912,3440 -AT,MK,2,212,201912,716828 -AT,MK,2,221,201912,31429 -AT,MK,2,222,201912,445043 -AT,MK,2,231,201912,3654 -AT,MK,2,232,201912,77515 -AT,MK,2,234,201912,3387 -AT,MK,2,239,201912,78012 -AT,MK,2,241,201912,36888 -AT,MK,2,242,201912,33626 -AT,MK,2,243,201912,24291 -AT,MK,2,244,201912,503502 -AT,MK,2,251,201912,71612 -AT,MK,2,257,201912,250210 -AT,MK,2,259,201912,44283 -AT,MK,2,261,201912,5463 -AT,MK,2,262,201912,7568 -AT,MK,2,263,201912,61457 -AT,MK,2,264,201912,4784 -AT,MK,2,265,201912,79445 -AT,MK,2,267,201912,19022 -AT,MK,2,271,201912,76252 -AT,MK,2,272,201912,190220 -AT,MK,2,273,201912,35016 -AT,MK,2,274,201912,16253 -AT,MK,2,275,201912,9798 -AT,MK,2,279,201912,83322 -AT,MK,2,281,201912,36391 -AT,MK,2,282,201912,184263 -AT,MK,2,284,201912,18331 -AT,MK,2,289,201912,567019 -AT,MK,2,291,201912,143387 -AT,MK,2,292,201912,7600 -AT,MK,2,293,201912,41546 -AT,MK,2,309,201912,345 -AT,MK,2,310,201912,3750 -AT,MK,2,321,201912,904 -AT,MK,2,323,201912,49417 -AT,MK,2,324,201912,461515 -AT,MK,2,325,201912,25183 -AT,MK,2,329,201912,24916 -AT,ML,2,132,201912,7068810 -AT,ML,2,139,201912,30664 -AT,ML,2,141,201912,3595 -AT,ML,2,151,201912,6581 -AT,ML,2,172,201912,71 -AT,ML,2,222,201912,99 -AT,ML,2,265,201912,886 -AT,ML,2,267,201912,4738 -AT,ML,2,281,201912,3617 -AT,ML,2,282,201912,11500 -AT,ML,2,291,201912,25500 -AT,ML,2,329,201912,6787 -AT,MM,1,139,201912,14129 -AT,MM,1,141,201912,2365493 -AT,MM,1,152,201912,925 -AT,MM,1,263,201912,4 -AT,MM,1,264,201912,79 -AT,MM,2,141,201912,267737 -AT,MM,2,162,201912,22183 -AT,MM,2,201,201912,3222 -AT,MM,2,205,201912,26783 -AT,MM,2,212,201912,153219 -AT,MM,2,251,201912,174166 -AT,MM,2,259,201912,7062 -AT,MM,2,282,201912,941 -AT,MM,2,289,201912,17541 -AT,MN,1,101,201912,287412 -AT,MN,1,141,201912,19356 -AT,MN,1,143,201912,79834 -AT,MN,1,151,201912,1 -AT,MN,1,152,201912,37 -AT,MN,2,108,201912,67295 -AT,MN,2,139,201912,87 -AT,MN,2,141,201912,12192 -AT,MN,2,172,201912,86 -AT,MN,2,205,201912,5222 -AT,MN,2,212,201912,404831 -AT,MN,2,222,201912,38068 -AT,MN,2,245,201912,7500 -AT,MN,2,257,201912,12763 -AT,MN,2,259,201912,1134 -AT,MN,2,263,201912,3915 -AT,MN,2,265,201912,33098 -AT,MN,2,266,201912,3030111 -AT,MN,2,273,201912,77 -AT,MN,2,279,201912,1889 -AT,MN,2,281,201912,84966 -AT,MN,2,282,201912,15930 -AT,MN,2,289,201912,5668 -AT,MN,2,291,201912,152793 -AT,MN,2,309,201912,86912 -AT,MN,2,321,201912,9569 -AT,MO,1,141,201912,1018 -AT,MO,1,143,201912,282 -AT,MO,2,141,201912,44207 -AT,MO,2,143,201912,21864 -AT,MO,2,151,201912,8689 -AT,MO,2,152,201912,1476 -AT,MO,2,221,201912,44 -AT,MO,2,222,201912,4842 -AT,MO,2,242,201912,21 -AT,MO,2,244,201912,9 -AT,MO,2,259,201912,562 -AT,MO,2,261,201912,6 -AT,MO,2,264,201912,3191 -AT,MO,2,265,201912,111818 -AT,MO,2,267,201912,9283 -AT,MO,2,273,201912,647 -AT,MO,2,274,201912,57382 -AT,MO,2,279,201912,11 -AT,MO,2,281,201912,5293 -AT,MO,2,282,201912,234 -AT,MO,2,324,201912,17359 -AT,MR,2,132,201912,867684 -AT,MR,2,151,201912,792 -AT,MR,2,171,201912,17654 -AT,MR,2,329,201912,297 -AT,MT,1,139,201912,23763 -AT,MT,1,141,201912,123756 -AT,MT,1,143,201912,159496 -AT,MT,1,212,201912,232277 -AT,MT,1,221,201912,127 -AT,MT,1,222,201912,35941 -AT,MT,1,231,201912,520 -AT,MT,1,257,201912,5 -AT,MT,1,259,201912,7013 -AT,MT,1,265,201912,4941 -AT,MT,1,271,201912,1131 -AT,MT,1,272,201912,48942 -AT,MT,1,273,201912,5920 -AT,MT,1,279,201912,2065 -AT,MT,1,282,201912,91433 -AT,MT,1,289,201912,46 -AT,MT,1,321,201912,2053 -AT,MT,1,329,201912,70 -AT,MT,2,012,201912,15849 -AT,MT,2,101,201912,23148 -AT,MT,2,102,201912,874 -AT,MT,2,103,201912,24458 -AT,MT,2,105,201912,62414 -AT,MT,2,106,201912,6 -AT,MT,2,107,201912,60 -AT,MT,2,108,201912,39925 -AT,MT,2,110,201912,16865 -AT,MT,2,132,201912,1103 -AT,MT,2,139,201912,1022 -AT,MT,2,141,201912,20221 -AT,MT,2,151,201912,34943 -AT,MT,2,161,201912,358610 -AT,MT,2,162,201912,7743 -AT,MT,2,171,201912,4736 -AT,MT,2,172,201912,5597 -AT,MT,2,192,201912,90 -AT,MT,2,201,201912,58 -AT,MT,2,203,201912,106 -AT,MT,2,204,201912,139208 -AT,MT,2,205,201912,3758 -AT,MT,2,212,201912,304160 -AT,MT,2,221,201912,1848 -AT,MT,2,222,201912,178062 -AT,MT,2,231,201912,50506 -AT,MT,2,239,201912,4309 -AT,MT,2,241,201912,5372 -AT,MT,2,244,201912,14395 -AT,MT,2,251,201912,7471 -AT,MT,2,257,201912,21529 -AT,MT,2,259,201912,34462 -AT,MT,2,261,201912,3542 -AT,MT,2,263,201912,320762 -AT,MT,2,264,201912,3614 -AT,MT,2,265,201912,41074 -AT,MT,2,267,201912,117973 -AT,MT,2,271,201912,15074 -AT,MT,2,272,201912,81921 -AT,MT,2,273,201912,5081 -AT,MT,2,274,201912,16413 -AT,MT,2,275,201912,4427 -AT,MT,2,279,201912,6445 -AT,MT,2,281,201912,47681 -AT,MT,2,282,201912,295510 -AT,MT,2,284,201912,3159 -AT,MT,2,289,201912,9504 -AT,MT,2,293,201912,31973 -AT,MT,2,309,201912,876 -AT,MT,2,310,201912,312 -AT,MT,2,321,201912,126252 -AT,MT,2,324,201912,14753 -AT,MT,2,325,201912,66836 -AT,MT,2,329,201912,6752 -AT,MU,1,108,201912,131259 -AT,MU,1,131,201912,75221 -AT,MU,1,141,201912,375 -AT,MU,1,151,201912,311 -AT,MU,1,222,201912,24 -AT,MU,1,265,201912,68304 -AT,MU,1,321,201912,202 -AT,MU,2,110,201912,82516 -AT,MU,2,139,201912,3499 -AT,MU,2,141,201912,15117 -AT,MU,2,151,201912,1297 -AT,MU,2,152,201912,1499 -AT,MU,2,162,201912,2 -AT,MU,2,172,201912,226 -AT,MU,2,205,201912,1348 -AT,MU,2,221,201912,9 -AT,MU,2,222,201912,2615 -AT,MU,2,231,201912,9 -AT,MU,2,234,201912,759 -AT,MU,2,244,201912,12 -AT,MU,2,257,201912,10732 -AT,MU,2,259,201912,1417 -AT,MU,2,262,201912,2641 -AT,MU,2,265,201912,409 -AT,MU,2,271,201912,1233 -AT,MU,2,272,201912,115 -AT,MU,2,273,201912,114 -AT,MU,2,274,201912,10384 -AT,MU,2,279,201912,87 -AT,MU,2,281,201912,662 -AT,MU,2,282,201912,1187 -AT,MU,2,293,201912,813 -AT,MU,2,309,201912,13242 -AT,MU,2,321,201912,9893 -AT,MU,2,323,201912,6213 -AT,MU,2,324,201912,5023 -AT,MU,2,325,201912,56569 -AT,MU,2,329,201912,6615 -AT,MV,2,011,201912,1235 -AT,MV,2,103,201912,5103 -AT,MV,2,106,201912,10013 -AT,MV,2,110,201912,186368 -AT,MV,2,139,201912,284 -AT,MV,2,141,201912,2022 -AT,MV,2,162,201912,11207 -AT,MV,2,231,201912,1567 -AT,MV,2,273,201912,310 -AT,MV,2,274,201912,100 -AT,MV,2,281,201912,1154 -AT,MV,2,282,201912,52 -AT,MV,2,284,201912,2670 -AT,MV,2,323,201912,1518 -AT,MV,2,324,201912,2307 -AT,MW,2,222,201912,1658 -AT,MW,2,265,201912,90682 -AT,MW,2,281,201912,82208 -AT,MX,1,011,201912,57 -AT,MX,1,089,201912,300 -AT,MX,1,106,201912,3 -AT,MX,1,108,201912,7536 -AT,MX,1,110,201912,1490738 -AT,MX,1,132,201912,8809 -AT,MX,1,139,201912,8425 -AT,MX,1,141,201912,36843 -AT,MX,1,143,201912,4502 -AT,MX,1,151,201912,1747387 -AT,MX,1,152,201912,7855 -AT,MX,1,162,201912,41 -AT,MX,1,172,201912,26 -AT,MX,1,201,201912,12638 -AT,MX,1,204,201912,2686 -AT,MX,1,205,201912,285274 -AT,MX,1,212,201912,137643 -AT,MX,1,221,201912,6300 -AT,MX,1,222,201912,13189 -AT,MX,1,231,201912,6038 -AT,MX,1,234,201912,6 -AT,MX,1,239,201912,46920 -AT,MX,1,244,201912,2965 -AT,MX,1,257,201912,19034 -AT,MX,1,259,201912,286423 -AT,MX,1,261,201912,97421 -AT,MX,1,262,201912,696542 -AT,MX,1,263,201912,754967 -AT,MX,1,264,201912,8563 -AT,MX,1,265,201912,116799 -AT,MX,1,266,201912,156754 -AT,MX,1,271,201912,1300162 -AT,MX,1,273,201912,202364 -AT,MX,1,274,201912,26546 -AT,MX,1,275,201912,15361 -AT,MX,1,279,201912,122404 -AT,MX,1,281,201912,640030 -AT,MX,1,282,201912,12648 -AT,MX,1,289,201912,520892 -AT,MX,1,291,201912,21118 -AT,MX,1,293,201912,948520 -AT,MX,1,303,201912,31303 -AT,MX,1,310,201912,247821 -AT,MX,1,321,201912,3229 -AT,MX,1,323,201912,8483 -AT,MX,1,324,201912,311 -AT,MX,1,325,201912,951667 -AT,MX,1,329,201912,1441 -AT,MX,2,089,201912,184706 -AT,MX,2,104,201912,7408 -AT,MX,2,106,201912,20280 -AT,MX,2,108,201912,116665 -AT,MX,2,110,201912,240 -AT,MX,2,132,201912,35930 -AT,MX,2,139,201912,1482146 -AT,MX,2,141,201912,11601 -AT,MX,2,143,201912,546 -AT,MX,2,151,201912,149454 -AT,MX,2,161,201912,52032 -AT,MX,2,162,201912,725079 -AT,MX,2,171,201912,1669673 -AT,MX,2,172,201912,87880 -AT,MX,2,17S,201912,391209 -AT,MX,2,192,201912,111346 -AT,MX,2,201,201912,1401312 -AT,MX,2,203,201912,268543 -AT,MX,2,204,201912,113194 -AT,MX,2,205,201912,274610 -AT,MX,2,206,201912,232130 -AT,MX,2,212,201912,2499127 -AT,MX,2,221,201912,457814 -AT,MX,2,222,201912,1471587 -AT,MX,2,231,201912,212905 -AT,MX,2,232,201912,2381848 -AT,MX,2,234,201912,23176 -AT,MX,2,239,201912,458293 -AT,MX,2,241,201912,8901981 -AT,MX,2,242,201912,222759 -AT,MX,2,243,201912,452856 -AT,MX,2,244,201912,944466 -AT,MX,2,251,201912,47696 -AT,MX,2,252,201912,32690 -AT,MX,2,257,201912,1519022 -AT,MX,2,259,201912,3127043 -AT,MX,2,25S,201912,46314 -AT,MX,2,261,201912,575365 -AT,MX,2,262,201912,160419 -AT,MX,2,263,201912,431294 -AT,MX,2,264,201912,326960 -AT,MX,2,265,201912,936495 -AT,MX,2,266,201912,1402 -AT,MX,2,267,201912,49267 -AT,MX,2,271,201912,2437451 -AT,MX,2,272,201912,51334 -AT,MX,2,273,201912,1942105 -AT,MX,2,274,201912,577466 -AT,MX,2,275,201912,12327 -AT,MX,2,279,201912,1822935 -AT,MX,2,281,201912,17400468 -AT,MX,2,282,201912,2779288 -AT,MX,2,283,201912,10515 -AT,MX,2,284,201912,2408228 -AT,MX,2,289,201912,8097108 -AT,MX,2,291,201912,10105196 -AT,MX,2,292,201912,319 -AT,MX,2,293,201912,6118665 -AT,MX,2,302,201912,49144 -AT,MX,2,309,201912,817184 -AT,MX,2,310,201912,321229 -AT,MX,2,321,201912,23816 -AT,MX,2,324,201912,13831 -AT,MX,2,325,201912,297805 -AT,MX,2,329,201912,237334 -AT,MY,1,108,201912,56298 -AT,MY,1,139,201912,211 -AT,MY,1,141,201912,4906 -AT,MY,1,143,201912,568 -AT,MY,1,151,201912,301 -AT,MY,1,152,201912,13421 -AT,MY,1,172,201912,335 -AT,MY,1,201,201912,13973 -AT,MY,1,204,201912,7721 -AT,MY,1,205,201912,36943 -AT,MY,1,221,201912,450496 -AT,MY,1,222,201912,70114 -AT,MY,1,231,201912,176824 -AT,MY,1,239,201912,57646 -AT,MY,1,242,201912,5 -AT,MY,1,244,201912,2267513 -AT,MY,1,257,201912,9113 -AT,MY,1,259,201912,247042 -AT,MY,1,261,201912,4605830 -AT,MY,1,262,201912,166116 -AT,MY,1,263,201912,37033 -AT,MY,1,264,201912,48097 -AT,MY,1,265,201912,423482 -AT,MY,1,266,201912,9019 -AT,MY,1,267,201912,16976 -AT,MY,1,271,201912,164438 -AT,MY,1,273,201912,550487 -AT,MY,1,274,201912,1764 -AT,MY,1,275,201912,2178 -AT,MY,1,279,201912,94290 -AT,MY,1,281,201912,52957 -AT,MY,1,282,201912,125218 -AT,MY,1,284,201912,2655 -AT,MY,1,289,201912,283519 -AT,MY,1,293,201912,728 -AT,MY,1,309,201912,450575 -AT,MY,1,310,201912,141419 -AT,MY,1,323,201912,11948 -AT,MY,1,324,201912,13900 -AT,MY,1,325,201912,3254 -AT,MY,2,081,201912,3215 -AT,MY,2,103,201912,143592 -AT,MY,2,105,201912,3639 -AT,MY,2,106,201912,46312 -AT,MY,2,108,201912,43230 -AT,MY,2,109,201912,73539 -AT,MY,2,110,201912,72269 -AT,MY,2,132,201912,47 -AT,MY,2,139,201912,74948 -AT,MY,2,141,201912,27664 -AT,MY,2,143,201912,11 -AT,MY,2,151,201912,4797 -AT,MY,2,152,201912,8468 -AT,MY,2,161,201912,41508 -AT,MY,2,162,201912,5378 -AT,MY,2,171,201912,85104 -AT,MY,2,172,201912,5282 -AT,MY,2,17S,201912,149623 -AT,MY,2,192,201912,4267 -AT,MY,2,201,201912,1484674 -AT,MY,2,203,201912,157675 -AT,MY,2,204,201912,39544 -AT,MY,2,205,201912,119967 -AT,MY,2,206,201912,3739 -AT,MY,2,212,201912,1271201 -AT,MY,2,221,201912,20528 -AT,MY,2,222,201912,209634 -AT,MY,2,231,201912,10827 -AT,MY,2,232,201912,407407 -AT,MY,2,234,201912,1074 -AT,MY,2,239,201912,53623 -AT,MY,2,241,201912,414137 -AT,MY,2,242,201912,13015 -AT,MY,2,243,201912,10308 -AT,MY,2,244,201912,102032 -AT,MY,2,251,201912,53413 -AT,MY,2,254,201912,50091 -AT,MY,2,257,201912,67057 -AT,MY,2,259,201912,72566 -AT,MY,2,261,201912,24483846 -AT,MY,2,262,201912,98751 -AT,MY,2,263,201912,1263582 -AT,MY,2,264,201912,40124 -AT,MY,2,265,201912,2607758 -AT,MY,2,266,201912,49037 -AT,MY,2,267,201912,123902 -AT,MY,2,271,201912,386819 -AT,MY,2,272,201912,68486 -AT,MY,2,273,201912,147309 -AT,MY,2,274,201912,11062 -AT,MY,2,275,201912,39890 -AT,MY,2,279,201912,793937 -AT,MY,2,281,201912,539572 -AT,MY,2,282,201912,259267 -AT,MY,2,283,201912,69 -AT,MY,2,284,201912,8417 -AT,MY,2,289,201912,1217984 -AT,MY,2,293,201912,3224 -AT,MY,2,302,201912,44742 -AT,MY,2,303,201912,2065765 -AT,MY,2,309,201912,6576 -AT,MY,2,310,201912,8649 -AT,MY,2,323,201912,4307 -AT,MY,2,325,201912,283964 -AT,MY,2,329,201912,98148 -AT,MZ,1,120,201912,113 -AT,MZ,2,262,201912,10110 -AT,NC,2,103,201912,14902 -AT,NC,2,110,201912,12628 -AT,NC,2,139,201912,11 -AT,NC,2,141,201912,110 -AT,NC,2,151,201912,43 -AT,NC,2,152,201912,23 -AT,NC,2,205,201912,233 -AT,NC,2,222,201912,147 -AT,NC,2,239,201912,525 -AT,NC,2,259,201912,1252 -AT,NC,2,263,201912,9029 -AT,NC,2,274,201912,6222 -AT,NC,2,282,201912,4659 -AT,NC,2,289,201912,3775 -AT,NC,2,291,201912,35735 -AT,NC,2,323,201912,4490 -AT,NC,2,324,201912,285 -AT,NC,2,329,201912,2043 -AT,NE,2,132,201912,4698 -AT,NE,2,172,201912,497 -AT,NE,2,205,201912,1968 -AT,NG,1,011,201912,1489 -AT,NG,1,012,201912,4584 -AT,NG,1,061,201912,13353154 -AT,NG,1,102,201912,22 -AT,NG,1,103,201912,310 -AT,NG,1,104,201912,726 -AT,NG,1,106,201912,315 -AT,NG,1,108,201912,1608 -AT,NG,1,110,201912,184 -AT,NG,1,141,201912,469 -AT,NG,1,204,201912,111 -AT,NG,1,222,201912,793 -AT,NG,1,281,201912,124190 -AT,NG,1,282,201912,4780 -AT,NG,1,329,201912,859 -AT,NG,2,108,201912,1970 -AT,NG,2,110,201912,439361 -AT,NG,2,132,201912,1302846 -AT,NG,2,139,201912,1164300 -AT,NG,2,141,201912,3484 -AT,NG,2,151,201912,198 -AT,NG,2,152,201912,718 -AT,NG,2,162,201912,309856 -AT,NG,2,171,201912,524677 -AT,NG,2,172,201912,6674 -AT,NG,2,17S,201912,142680 -AT,NG,2,192,201912,108 -AT,NG,2,201,201912,1707 -AT,NG,2,204,201912,719 -AT,NG,2,205,201912,182038 -AT,NG,2,212,201912,17 -AT,NG,2,221,201912,3208 -AT,NG,2,222,201912,13006 -AT,NG,2,231,201912,17450 -AT,NG,2,232,201912,539960 -AT,NG,2,239,201912,22 -AT,NG,2,242,201912,15252 -AT,NG,2,251,201912,223282 -AT,NG,2,257,201912,14480 -AT,NG,2,259,201912,31321 -AT,NG,2,261,201912,1953 -AT,NG,2,263,201912,6367 -AT,NG,2,265,201912,196498 -AT,NG,2,271,201912,439744 -AT,NG,2,273,201912,9782 -AT,NG,2,274,201912,20437 -AT,NG,2,275,201912,238 -AT,NG,2,279,201912,101175 -AT,NG,2,281,201912,421547 -AT,NG,2,282,201912,203983 -AT,NG,2,289,201912,784137 -AT,NG,2,291,201912,383405 -AT,NG,2,303,201912,239108 -AT,NG,2,310,201912,1909 -AT,NG,2,324,201912,820 -AT,NG,2,325,201912,6211 -AT,NG,2,329,201912,28774 -AT,NI,1,141,201912,627 -AT,NI,2,139,201912,3516 -AT,NI,2,205,201912,21004 -AT,NI,2,222,201912,1885 -AT,NI,2,259,201912,909 -AT,NI,2,262,201912,1900 -AT,NI,2,265,201912,52286 -AT,NI,2,271,201912,1942 -AT,NI,2,281,201912,147 -AT,NI,2,284,201912,13518 -AT,NI,2,289,201912,5451 -AT,NI,2,329,201912,65 -AT,NL,1,011,201912,12691768 -AT,NL,1,012,201912,14649144 -AT,NL,1,013,201912,7408891 -AT,NL,1,014,201912,766235 -AT,NL,1,021,201912,23916 -AT,NL,1,022,201912,11186 -AT,NL,1,023,201912,610064 -AT,NL,1,030,201912,774707 -AT,NL,1,081,201912,97610 -AT,NL,1,089,201912,334573 -AT,NL,1,101,201912,12639693 -AT,NL,1,102,201912,4766722 -AT,NL,1,103,201912,12091837 -AT,NL,1,104,201912,4906273 -AT,NL,1,105,201912,6147090 -AT,NL,1,106,201912,1867793 -AT,NL,1,107,201912,1566730 -AT,NL,1,108,201912,10702954 -AT,NL,1,109,201912,1592347 -AT,NL,1,110,201912,1564640 -AT,NL,1,120,201912,47305 -AT,NL,1,131,201912,35026 -AT,NL,1,132,201912,213418 -AT,NL,1,139,201912,3158288 -AT,NL,1,141,201912,15683371 -AT,NL,1,142,201912,7368 -AT,NL,1,143,201912,3193531 -AT,NL,1,151,201912,4186394 -AT,NL,1,152,201912,3260913 -AT,NL,1,161,201912,77195 -AT,NL,1,162,201912,283494 -AT,NL,1,171,201912,3750470 -AT,NL,1,172,201912,1670821 -AT,NL,1,192,201912,698366 -AT,NL,1,201,201912,36265684 -AT,NL,1,202,201912,143963 -AT,NL,1,203,201912,1035350 -AT,NL,1,204,201912,6346759 -AT,NL,1,205,201912,20852088 -AT,NL,1,206,201912,227340 -AT,NL,1,211,201912,4014881 -AT,NL,1,212,201912,47411869 -AT,NL,1,221,201912,1807437 -AT,NL,1,222,201912,6510019 -AT,NL,1,231,201912,615307 -AT,NL,1,232,201912,46949 -AT,NL,1,233,201912,67809 -AT,NL,1,234,201912,739785 -AT,NL,1,235,201912,16665 -AT,NL,1,236,201912,43821 -AT,NL,1,237,201912,14371 -AT,NL,1,239,201912,907168 -AT,NL,1,241,201912,6703076 -AT,NL,1,242,201912,422460 -AT,NL,1,243,201912,2889605 -AT,NL,1,244,201912,31706306 -AT,NL,1,245,201912,377749 -AT,NL,1,251,201912,1260430 -AT,NL,1,252,201912,1135987 -AT,NL,1,254,201912,1634 -AT,NL,1,257,201912,2722438 -AT,NL,1,259,201912,4150028 -AT,NL,1,261,201912,7387297 -AT,NL,1,262,201912,31194941 -AT,NL,1,263,201912,25816496 -AT,NL,1,264,201912,5250727 -AT,NL,1,265,201912,4858489 -AT,NL,1,266,201912,7055732 -AT,NL,1,267,201912,2769647 -AT,NL,1,268,201912,33179 -AT,NL,1,271,201912,2708154 -AT,NL,1,272,201912,462045 -AT,NL,1,273,201912,2236054 -AT,NL,1,274,201912,1661836 -AT,NL,1,275,201912,4155040 -AT,NL,1,279,201912,2537852 -AT,NL,1,281,201912,5451062 -AT,NL,1,282,201912,14048277 -AT,NL,1,283,201912,2001264 -AT,NL,1,284,201912,1980850 -AT,NL,1,289,201912,8556242 -AT,NL,1,291,201912,39637271 -AT,NL,1,292,201912,2122265 -AT,NL,1,293,201912,5184282 -AT,NL,1,302,201912,9520 -AT,NL,1,303,201912,137918 -AT,NL,1,309,201912,3777957 -AT,NL,1,310,201912,2324850 -AT,NL,1,321,201912,335274 -AT,NL,1,322,201912,82221 -AT,NL,1,323,201912,1115421 -AT,NL,1,324,201912,1285135 -AT,NL,1,325,201912,25891813 -AT,NL,1,329,201912,1602555 -AT,NL,2,011,201912,1070117 -AT,NL,2,012,201912,966387 -AT,NL,2,013,201912,485924 -AT,NL,2,014,201912,247274 -AT,NL,2,030,201912,34 -AT,NL,2,081,201912,39502 -AT,NL,2,089,201912,277104 -AT,NL,2,101,201912,7129643 -AT,NL,2,103,201912,1450432 -AT,NL,2,104,201912,684372 -AT,NL,2,105,201912,3739828 -AT,NL,2,106,201912,704601 -AT,NL,2,107,201912,2934929 -AT,NL,2,108,201912,2936952 -AT,NL,2,109,201912,846260 -AT,NL,2,10S,201912,374369 -AT,NL,2,110,201912,10320908 -AT,NL,2,131,201912,72249 -AT,NL,2,132,201912,368163 -AT,NL,2,139,201912,719185 -AT,NL,2,141,201912,3082779 -AT,NL,2,142,201912,2352 -AT,NL,2,143,201912,677258 -AT,NL,2,151,201912,222827 -AT,NL,2,152,201912,974678 -AT,NL,2,161,201912,208567 -AT,NL,2,162,201912,1141837 -AT,NL,2,171,201912,4251504 -AT,NL,2,172,201912,1743397 -AT,NL,2,17S,201912,296270 -AT,NL,2,192,201912,85214 -AT,NL,2,201,201912,6782805 -AT,NL,2,202,201912,251929 -AT,NL,2,203,201912,496245 -AT,NL,2,204,201912,2347721 -AT,NL,2,205,201912,2143765 -AT,NL,2,206,201912,439406 -AT,NL,2,20S,201912,79459 -AT,NL,2,211,201912,242196 -AT,NL,2,212,201912,11830916 -AT,NL,2,221,201912,1231192 -AT,NL,2,222,201912,5626943 -AT,NL,2,231,201912,1356755 -AT,NL,2,232,201912,376198 -AT,NL,2,233,201912,16528 -AT,NL,2,234,201912,169006 -AT,NL,2,236,201912,198991 -AT,NL,2,237,201912,122 -AT,NL,2,239,201912,422246 -AT,NL,2,241,201912,2795624 -AT,NL,2,242,201912,1005928 -AT,NL,2,243,201912,1599298 -AT,NL,2,244,201912,1912453 -AT,NL,2,245,201912,243104 -AT,NL,2,251,201912,4198169 -AT,NL,2,252,201912,952088 -AT,NL,2,253,201912,4317 -AT,NL,2,254,201912,67504 -AT,NL,2,257,201912,4042546 -AT,NL,2,259,201912,2811109 -AT,NL,2,25S,201912,8711450 -AT,NL,2,261,201912,821759 -AT,NL,2,262,201912,3283124 -AT,NL,2,263,201912,2787287 -AT,NL,2,264,201912,1338180 -AT,NL,2,265,201912,2295726 -AT,NL,2,266,201912,6237406 -AT,NL,2,267,201912,397712 -AT,NL,2,268,201912,5547 -AT,NL,2,271,201912,3819070 -AT,NL,2,272,201912,720987 -AT,NL,2,273,201912,1034872 -AT,NL,2,274,201912,965259 -AT,NL,2,275,201912,752711 -AT,NL,2,279,201912,3493334 -AT,NL,2,281,201912,6386108 -AT,NL,2,282,201912,7103633 -AT,NL,2,283,201912,3929870 -AT,NL,2,284,201912,1421849 -AT,NL,2,289,201912,5618419 -AT,NL,2,291,201912,42648591 -AT,NL,2,292,201912,384918 -AT,NL,2,293,201912,1815168 -AT,NL,2,302,201912,256520 -AT,NL,2,303,201912,320581 -AT,NL,2,309,201912,2917529 -AT,NL,2,310,201912,1578699 -AT,NL,2,321,201912,803676 -AT,NL,2,322,201912,524 -AT,NL,2,323,201912,1435629 -AT,NL,2,324,201912,262763 -AT,NL,2,325,201912,3657857 -AT,NL,2,329,201912,509002 -AT,NL,2,32S,201912,40102 -AT,NO,1,030,201912,5980 -AT,NO,1,089,201912,3574116 -AT,NO,1,101,201912,135 -AT,NO,1,102,201912,22371 -AT,NO,1,105,201912,49 -AT,NO,1,108,201912,2387 -AT,NO,1,110,201912,7178 -AT,NO,1,139,201912,2537 -AT,NO,1,141,201912,25189 -AT,NO,1,143,201912,5515 -AT,NO,1,151,201912,1401 -AT,NO,1,162,201912,40 -AT,NO,1,171,201912,67349 -AT,NO,1,172,201912,9 -AT,NO,1,201,201912,107593 -AT,NO,1,203,201912,188 -AT,NO,1,204,201912,10571 -AT,NO,1,205,201912,18393 -AT,NO,1,212,201912,658337 -AT,NO,1,221,201912,6083 -AT,NO,1,222,201912,64737 -AT,NO,1,231,201912,4233 -AT,NO,1,234,201912,4273 -AT,NO,1,241,201912,3101 -AT,NO,1,242,201912,49 -AT,NO,1,244,201912,56453 -AT,NO,1,251,201912,5873 -AT,NO,1,254,201912,795 -AT,NO,1,257,201912,33028 -AT,NO,1,259,201912,365582 -AT,NO,1,261,201912,3896 -AT,NO,1,262,201912,27471 -AT,NO,1,263,201912,250923 -AT,NO,1,264,201912,62351 -AT,NO,1,265,201912,29631 -AT,NO,1,266,201912,412989 -AT,NO,1,267,201912,15938 -AT,NO,1,271,201912,6737 -AT,NO,1,272,201912,9380 -AT,NO,1,273,201912,6248 -AT,NO,1,274,201912,1567 -AT,NO,1,275,201912,3858 -AT,NO,1,279,201912,37525 -AT,NO,1,281,201912,264541 -AT,NO,1,282,201912,116241 -AT,NO,1,283,201912,150256 -AT,NO,1,284,201912,12310 -AT,NO,1,289,201912,628088 -AT,NO,1,291,201912,23685 -AT,NO,1,292,201912,3000 -AT,NO,1,293,201912,132599 -AT,NO,1,303,201912,1923702 -AT,NO,1,309,201912,1203 -AT,NO,1,310,201912,4971 -AT,NO,1,321,201912,911 -AT,NO,1,323,201912,164648 -AT,NO,1,324,201912,263 -AT,NO,1,325,201912,25961 -AT,NO,1,329,201912,96 -AT,NO,2,012,201912,401 -AT,NO,2,101,201912,12 -AT,NO,2,103,201912,48213 -AT,NO,2,104,201912,28961 -AT,NO,2,105,201912,12788 -AT,NO,2,106,201912,435075 -AT,NO,2,107,201912,68253 -AT,NO,2,108,201912,260786 -AT,NO,2,109,201912,55165 -AT,NO,2,110,201912,494088 -AT,NO,2,131,201912,11024 -AT,NO,2,132,201912,22046 -AT,NO,2,139,201912,123907 -AT,NO,2,141,201912,248091 -AT,NO,2,143,201912,100546 -AT,NO,2,151,201912,35764 -AT,NO,2,152,201912,311594 -AT,NO,2,161,201912,16481 -AT,NO,2,162,201912,1591708 -AT,NO,2,171,201912,118230 -AT,NO,2,172,201912,110551 -AT,NO,2,192,201912,1899 -AT,NO,2,201,201912,126119 -AT,NO,2,202,201912,1028 -AT,NO,2,203,201912,35923 -AT,NO,2,204,201912,17434 -AT,NO,2,205,201912,283647 -AT,NO,2,211,201912,10 -AT,NO,2,212,201912,230165 -AT,NO,2,221,201912,98772 -AT,NO,2,222,201912,772888 -AT,NO,2,231,201912,192721 -AT,NO,2,232,201912,236350 -AT,NO,2,234,201912,12319 -AT,NO,2,239,201912,83068 -AT,NO,2,241,201912,39042 -AT,NO,2,242,201912,5903419 -AT,NO,2,243,201912,128908 -AT,NO,2,244,201912,390140 -AT,NO,2,245,201912,269187 -AT,NO,2,251,201912,307280 -AT,NO,2,252,201912,294750 -AT,NO,2,257,201912,368359 -AT,NO,2,259,201912,695237 -AT,NO,2,25S,201912,5403 -AT,NO,2,261,201912,155625 -AT,NO,2,262,201912,218958 -AT,NO,2,263,201912,552783 -AT,NO,2,264,201912,83691 -AT,NO,2,265,201912,409737 -AT,NO,2,266,201912,283128 -AT,NO,2,267,201912,138456 -AT,NO,2,268,201912,23599 -AT,NO,2,271,201912,895384 -AT,NO,2,272,201912,76474 -AT,NO,2,273,201912,69595 -AT,NO,2,274,201912,522908 -AT,NO,2,275,201912,28298 -AT,NO,2,279,201912,915084 -AT,NO,2,281,201912,1114816 -AT,NO,2,282,201912,6965566 -AT,NO,2,283,201912,330597 -AT,NO,2,284,201912,627941 -AT,NO,2,289,201912,1507658 -AT,NO,2,291,201912,7462678 -AT,NO,2,292,201912,235132 -AT,NO,2,293,201912,186194 -AT,NO,2,302,201912,120905 -AT,NO,2,303,201912,433494 -AT,NO,2,309,201912,1407084 -AT,NO,2,310,201912,84168 -AT,NO,2,321,201912,9659 -AT,NO,2,322,201912,5557 -AT,NO,2,323,201912,2221985 -AT,NO,2,324,201912,4566 -AT,NO,2,325,201912,407593 -AT,NO,2,329,201912,82067 -AT,NP,1,139,201912,66949 -AT,NP,1,141,201912,32297 -AT,NP,1,143,201912,48123 -AT,NP,1,151,201912,1888 -AT,NP,1,152,201912,866 -AT,NP,1,204,201912,1 -AT,NP,1,259,201912,353 -AT,NP,1,321,201912,59 -AT,NP,1,322,201912,3503 -AT,NP,2,17S,201912,1843 -AT,NP,2,205,201912,1934 -AT,NP,2,263,201912,43 -AT,NP,2,265,201912,3322 -AT,NP,2,281,201912,7365 -AT,NP,2,289,201912,252 -AT,NP,2,325,201912,20953 -AT,NZ,1,014,201912,118 -AT,NZ,1,107,201912,19 -AT,NZ,1,108,201912,1149 -AT,NZ,1,131,201912,241 -AT,NZ,1,139,201912,6625 -AT,NZ,1,141,201912,6121 -AT,NZ,1,143,201912,583 -AT,NZ,1,152,201912,17158 -AT,NZ,1,201,201912,376 -AT,NZ,1,205,201912,253 -AT,NZ,1,222,201912,15674 -AT,NZ,1,242,201912,4899 -AT,NZ,1,244,201912,551017 -AT,NZ,1,257,201912,1010 -AT,NZ,1,259,201912,1264 -AT,NZ,1,261,201912,355775 -AT,NZ,1,263,201912,21176 -AT,NZ,1,265,201912,9094 -AT,NZ,1,279,201912,305 -AT,NZ,1,281,201912,1302 -AT,NZ,1,282,201912,3886 -AT,NZ,1,289,201912,30480 -AT,NZ,1,321,201912,8378 -AT,NZ,1,322,201912,1135 -AT,NZ,1,323,201912,1056 -AT,NZ,1,329,201912,41 -AT,NZ,2,011,201912,2670 -AT,NZ,2,101,201912,7 -AT,NZ,2,105,201912,750136 -AT,NZ,2,107,201912,28 -AT,NZ,2,108,201912,2334 -AT,NZ,2,109,201912,38599 -AT,NZ,2,110,201912,247725 -AT,NZ,2,132,201912,16636 -AT,NZ,2,139,201912,34260 -AT,NZ,2,141,201912,21549 -AT,NZ,2,143,201912,1401 -AT,NZ,2,151,201912,3646 -AT,NZ,2,152,201912,4664 -AT,NZ,2,161,201912,19899 -AT,NZ,2,162,201912,47652 -AT,NZ,2,171,201912,66427 -AT,NZ,2,172,201912,3117 -AT,NZ,2,192,201912,919 -AT,NZ,2,201,201912,11515 -AT,NZ,2,203,201912,13130 -AT,NZ,2,204,201912,5985 -AT,NZ,2,205,201912,10188 -AT,NZ,2,212,201912,431590 -AT,NZ,2,221,201912,58932 -AT,NZ,2,222,201912,494785 -AT,NZ,2,231,201912,2586 -AT,NZ,2,232,201912,15126 -AT,NZ,2,234,201912,396 -AT,NZ,2,236,201912,15693 -AT,NZ,2,239,201912,168752 -AT,NZ,2,241,201912,24703 -AT,NZ,2,242,201912,14295 -AT,NZ,2,243,201912,39428 -AT,NZ,2,244,201912,58295 -AT,NZ,2,245,201912,81030 -AT,NZ,2,251,201912,256243 -AT,NZ,2,257,201912,1373011 -AT,NZ,2,259,201912,121501 -AT,NZ,2,261,201912,20849 -AT,NZ,2,262,201912,23610 -AT,NZ,2,263,201912,15450 -AT,NZ,2,264,201912,5235 -AT,NZ,2,265,201912,206633 -AT,NZ,2,267,201912,38522 -AT,NZ,2,271,201912,363781 -AT,NZ,2,272,201912,3528 -AT,NZ,2,273,201912,106705 -AT,NZ,2,274,201912,78382 -AT,NZ,2,275,201912,40756 -AT,NZ,2,279,201912,180472 -AT,NZ,2,281,201912,312622 -AT,NZ,2,282,201912,863200 -AT,NZ,2,283,201912,688119 -AT,NZ,2,284,201912,189130 -AT,NZ,2,289,201912,183117 -AT,NZ,2,291,201912,2149235 -AT,NZ,2,292,201912,1242 -AT,NZ,2,293,201912,61976 -AT,NZ,2,302,201912,1838 -AT,NZ,2,303,201912,3619 -AT,NZ,2,309,201912,360806 -AT,NZ,2,310,201912,70930 -AT,NZ,2,321,201912,8386 -AT,NZ,2,323,201912,8735 -AT,NZ,2,324,201912,1574 -AT,NZ,2,325,201912,73342 -AT,NZ,2,329,201912,9973 -AT,OM,1,265,201912,31751 -AT,OM,1,281,201912,2605 -AT,OM,2,105,201912,2762 -AT,OM,2,108,201912,48012 -AT,OM,2,139,201912,13 -AT,OM,2,141,201912,1589 -AT,OM,2,151,201912,2510 -AT,OM,2,161,201912,128314 -AT,OM,2,162,201912,210338 -AT,OM,2,172,201912,1888 -AT,OM,2,201,201912,3272 -AT,OM,2,203,201912,7349 -AT,OM,2,204,201912,3322 -AT,OM,2,205,201912,8501 -AT,OM,2,212,201912,70836 -AT,OM,2,221,201912,6627 -AT,OM,2,222,201912,55063 -AT,OM,2,231,201912,43722 -AT,OM,2,232,201912,120599 -AT,OM,2,239,201912,83183 -AT,OM,2,242,201912,7135 -AT,OM,2,245,201912,9026 -AT,OM,2,251,201912,24282 -AT,OM,2,254,201912,29794 -AT,OM,2,257,201912,24469 -AT,OM,2,259,201912,11696 -AT,OM,2,25S,201912,507955 -AT,OM,2,263,201912,16496 -AT,OM,2,265,201912,149410 -AT,OM,2,267,201912,15013 -AT,OM,2,271,201912,26631 -AT,OM,2,273,201912,3088 -AT,OM,2,274,201912,114870 -AT,OM,2,275,201912,37549 -AT,OM,2,279,201912,20243 -AT,OM,2,281,201912,172473 -AT,OM,2,282,201912,46909 -AT,OM,2,289,201912,162437 -AT,OM,2,291,201912,1201773 -AT,OM,2,293,201912,2436 -AT,OM,2,309,201912,179 -AT,OM,2,310,201912,41422 -AT,OM,2,325,201912,27889 -AT,OM,2,329,201912,609 -AT,PA,1,110,201912,175803 -AT,PA,2,109,201912,138284 -AT,PA,2,151,201912,59 -AT,PA,2,171,201912,10995 -AT,PA,2,172,201912,52251 -AT,PA,2,201,201912,12482 -AT,PA,2,212,201912,23427 -AT,PA,2,221,201912,1359 -AT,PA,2,222,201912,11416 -AT,PA,2,231,201912,181 -AT,PA,2,257,201912,63339 -AT,PA,2,259,201912,4263 -AT,PA,2,261,201912,248 -AT,PA,2,262,201912,23742 -AT,PA,2,265,201912,11599 -AT,PA,2,271,201912,361 -AT,PA,2,279,201912,747 -AT,PA,2,281,201912,8693 -AT,PA,2,282,201912,3640 -AT,PA,2,289,201912,145989 -AT,PA,2,293,201912,550 -AT,PA,2,309,201912,252708 -AT,PA,2,325,201912,14196 -AT,PA,2,329,201912,273 -AT,PE,1,012,201912,548 -AT,PE,1,103,201912,215807 -AT,PE,1,131,201912,1285 -AT,PE,1,139,201912,31741 -AT,PE,1,141,201912,68487 -AT,PE,1,143,201912,30489 -AT,PE,1,151,201912,985 -AT,PE,1,244,201912,2423473 -AT,PE,2,108,201912,27015 -AT,PE,2,139,201912,1994 -AT,PE,2,141,201912,2405 -AT,PE,2,143,201912,71 -AT,PE,2,151,201912,317 -AT,PE,2,152,201912,101 -AT,PE,2,162,201912,104413 -AT,PE,2,171,201912,70842 -AT,PE,2,172,201912,115 -AT,PE,2,201,201912,1185 -AT,PE,2,203,201912,8328 -AT,PE,2,204,201912,149877 -AT,PE,2,205,201912,47684 -AT,PE,2,212,201912,946351 -AT,PE,2,221,201912,6470 -AT,PE,2,222,201912,73047 -AT,PE,2,231,201912,51611 -AT,PE,2,232,201912,140983 -AT,PE,2,234,201912,501 -AT,PE,2,239,201912,628 -AT,PE,2,242,201912,522 -AT,PE,2,244,201912,18 -AT,PE,2,245,201912,678 -AT,PE,2,251,201912,1487 -AT,PE,2,257,201912,31563 -AT,PE,2,259,201912,172378 -AT,PE,2,261,201912,3135 -AT,PE,2,262,201912,6935 -AT,PE,2,263,201912,1858 -AT,PE,2,265,201912,143248 -AT,PE,2,266,201912,195036 -AT,PE,2,267,201912,11100 -AT,PE,2,271,201912,283190 -AT,PE,2,273,201912,16075 -AT,PE,2,274,201912,26547 -AT,PE,2,275,201912,6485 -AT,PE,2,279,201912,176906 -AT,PE,2,281,201912,135661 -AT,PE,2,282,201912,555779 -AT,PE,2,284,201912,6374 -AT,PE,2,289,201912,154242 -AT,PE,2,293,201912,24001 -AT,PE,2,302,201912,4465 -AT,PE,2,309,201912,9302 -AT,PE,2,321,201912,9485 -AT,PE,2,323,201912,1019 -AT,PE,2,324,201912,53225 -AT,PE,2,325,201912,18219 -AT,PE,2,329,201912,120088 -AT,PF,2,103,201912,1340 -AT,PF,2,139,201912,15 -AT,PF,2,221,201912,5 -AT,PF,2,222,201912,303 -AT,PF,2,259,201912,2 -AT,PF,2,274,201912,11720 -AT,PF,2,281,201912,275 -AT,PF,2,282,201912,84 -AT,PF,2,293,201912,46 -AT,PF,2,309,201912,5401 -AT,PF,2,321,201912,362 -AT,PF,2,329,201912,1908 -AT,PG,1,102,201912,64293 -AT,PG,2,171,201912,25070 -AT,PG,2,251,201912,18058 -AT,PG,2,259,201912,310453 -AT,PG,2,273,201912,26 -AT,PH,1,102,201912,108091 -AT,PH,1,103,201912,247032 -AT,PH,1,139,201912,4303 -AT,PH,1,141,201912,9537 -AT,PH,1,143,201912,36 -AT,PH,1,151,201912,84002 -AT,PH,1,162,201912,8846 -AT,PH,1,172,201912,67 -AT,PH,1,204,201912,382 -AT,PH,1,221,201912,33692 -AT,PH,1,222,201912,48059 -AT,PH,1,234,201912,18332 -AT,PH,1,259,201912,3052 -AT,PH,1,261,201912,4479929 -AT,PH,1,262,201912,235466 -AT,PH,1,263,201912,11465 -AT,PH,1,265,201912,12916 -AT,PH,1,266,201912,857 -AT,PH,1,267,201912,1822 -AT,PH,1,271,201912,95729 -AT,PH,1,272,201912,2627393 -AT,PH,1,273,201912,496 -AT,PH,1,275,201912,717 -AT,PH,1,279,201912,8246 -AT,PH,1,281,201912,795 -AT,PH,1,282,201912,55056 -AT,PH,1,289,201912,1007 -AT,PH,1,310,201912,657 -AT,PH,1,321,201912,4173 -AT,PH,1,324,201912,3638 -AT,PH,1,325,201912,94983 -AT,PH,1,329,201912,68077 -AT,PH,2,014,201912,113707 -AT,PH,2,101,201912,58314 -AT,PH,2,103,201912,94172 -AT,PH,2,108,201912,133074 -AT,PH,2,109,201912,62256 -AT,PH,2,110,201912,150957 -AT,PH,2,139,201912,16745 -AT,PH,2,141,201912,3727 -AT,PH,2,143,201912,82 -AT,PH,2,151,201912,668 -AT,PH,2,161,201912,729700 -AT,PH,2,162,201912,258060 -AT,PH,2,171,201912,11236 -AT,PH,2,172,201912,2903 -AT,PH,2,17S,201912,736775 -AT,PH,2,201,201912,29926 -AT,PH,2,205,201912,210297 -AT,PH,2,212,201912,106678 -AT,PH,2,221,201912,96728 -AT,PH,2,222,201912,726024 -AT,PH,2,231,201912,1625 -AT,PH,2,232,201912,8876 -AT,PH,2,239,201912,2109 -AT,PH,2,244,201912,99360 -AT,PH,2,251,201912,105609 -AT,PH,2,257,201912,621280 -AT,PH,2,259,201912,152615 -AT,PH,2,261,201912,1871536 -AT,PH,2,262,201912,70038 -AT,PH,2,263,201912,74879 -AT,PH,2,264,201912,483 -AT,PH,2,265,201912,302289 -AT,PH,2,266,201912,735 -AT,PH,2,267,201912,5619 -AT,PH,2,271,201912,266752 -AT,PH,2,272,201912,3820 -AT,PH,2,273,201912,197032 -AT,PH,2,274,201912,33413 -AT,PH,2,275,201912,9786 -AT,PH,2,279,201912,104133 -AT,PH,2,281,201912,15019 -AT,PH,2,282,201912,184771 -AT,PH,2,283,201912,453 -AT,PH,2,284,201912,605 -AT,PH,2,289,201912,211013 -AT,PH,2,292,201912,6423 -AT,PH,2,293,201912,999 -AT,PH,2,309,201912,277007 -AT,PH,2,310,201912,23154 -AT,PH,2,324,201912,5000 -AT,PH,2,325,201912,65353 -AT,PH,2,329,201912,12978 -AT,PH,2,32S,201912,21062 -AT,PK,1,089,201912,304502 -AT,PK,1,108,201912,16087 -AT,PK,1,132,201912,35561 -AT,PK,1,139,201912,5852011 -AT,PK,1,141,201912,2448712 -AT,PK,1,143,201912,444435 -AT,PK,1,151,201912,121128 -AT,PK,1,152,201912,237 -AT,PK,1,172,201912,3728 -AT,PK,1,204,201912,67 -AT,PK,1,222,201912,2888 -AT,PK,1,237,201912,6917 -AT,PK,1,257,201912,36609 -AT,PK,1,259,201912,326 -AT,PK,1,321,201912,9379 -AT,PK,1,323,201912,40614 -AT,PK,1,325,201912,202460 -AT,PK,1,329,201912,292345 -AT,PK,2,105,201912,171139 -AT,PK,2,106,201912,174068 -AT,PK,2,107,201912,56 -AT,PK,2,139,201912,4663 -AT,PK,2,141,201912,1527 -AT,PK,2,151,201912,1828 -AT,PK,2,161,201912,419087 -AT,PK,2,162,201912,67707 -AT,PK,2,171,201912,5495 -AT,PK,2,172,201912,13359 -AT,PK,2,201,201912,139617 -AT,PK,2,203,201912,21745 -AT,PK,2,204,201912,5371 -AT,PK,2,205,201912,78348 -AT,PK,2,221,201912,55873 -AT,PK,2,222,201912,17883 -AT,PK,2,232,201912,4950 -AT,PK,2,239,201912,2359 -AT,PK,2,242,201912,441 -AT,PK,2,244,201912,12 -AT,PK,2,257,201912,10184 -AT,PK,2,259,201912,19754 -AT,PK,2,261,201912,8690 -AT,PK,2,262,201912,1400 -AT,PK,2,263,201912,2863 -AT,PK,2,265,201912,210095 -AT,PK,2,266,201912,1548 -AT,PK,2,271,201912,784780 -AT,PK,2,273,201912,13728 -AT,PK,2,274,201912,12000 -AT,PK,2,279,201912,77726 -AT,PK,2,281,201912,895657 -AT,PK,2,282,201912,89996 -AT,PK,2,289,201912,1617252 -AT,PK,2,325,201912,219895 -AT,PK,2,329,201912,16588 -AT,PL,1,011,201912,2741173 -AT,PL,1,012,201912,218378 -AT,PL,1,013,201912,541370 -AT,PL,1,014,201912,430577 -AT,PL,1,022,201912,369719 -AT,PL,1,023,201912,46129 -AT,PL,1,030,201912,343206 -AT,PL,1,051,201912,10126086 -AT,PL,1,081,201912,45895 -AT,PL,1,089,201912,41363 -AT,PL,1,101,201912,5654651 -AT,PL,1,102,201912,264968 -AT,PL,1,103,201912,3101357 -AT,PL,1,104,201912,1964063 -AT,PL,1,105,201912,393025 -AT,PL,1,106,201912,893226 -AT,PL,1,107,201912,1682753 -AT,PL,1,108,201912,4687800 -AT,PL,1,109,201912,3453239 -AT,PL,1,110,201912,179211 -AT,PL,1,120,201912,5210301 -AT,PL,1,131,201912,41392 -AT,PL,1,132,201912,120431 -AT,PL,1,139,201912,3088280 -AT,PL,1,141,201912,35688264 -AT,PL,1,142,201912,3372 -AT,PL,1,143,201912,7201807 -AT,PL,1,151,201912,3631089 -AT,PL,1,152,201912,13260934 -AT,PL,1,161,201912,2285565 -AT,PL,1,162,201912,4508990 -AT,PL,1,171,201912,2400591 -AT,PL,1,172,201912,3751767 -AT,PL,1,181,201912,3018 -AT,PL,1,191,201912,4766427 -AT,PL,1,192,201912,893272 -AT,PL,1,201,201912,9186200 -AT,PL,1,202,201912,164193 -AT,PL,1,203,201912,552008 -AT,PL,1,204,201912,6278984 -AT,PL,1,205,201912,3596460 -AT,PL,1,206,201912,115084 -AT,PL,1,211,201912,147490 -AT,PL,1,212,201912,2264049 -AT,PL,1,221,201912,3437917 -AT,PL,1,222,201912,9635752 -AT,PL,1,231,201912,2164717 -AT,PL,1,232,201912,137450 -AT,PL,1,233,201912,185171 -AT,PL,1,234,201912,842874 -AT,PL,1,235,201912,56207 -AT,PL,1,236,201912,133396 -AT,PL,1,237,201912,259106 -AT,PL,1,239,201912,304854 -AT,PL,1,241,201912,4141057 -AT,PL,1,242,201912,671622 -AT,PL,1,243,201912,163792 -AT,PL,1,244,201912,8511283 -AT,PL,1,245,201912,192049 -AT,PL,1,251,201912,4750310 -AT,PL,1,252,201912,1723038 -AT,PL,1,253,201912,277836 -AT,PL,1,254,201912,11498 -AT,PL,1,257,201912,2970661 -AT,PL,1,259,201912,7832641 -AT,PL,1,261,201912,210190 -AT,PL,1,262,201912,13999175 -AT,PL,1,263,201912,5185037 -AT,PL,1,264,201912,13797821 -AT,PL,1,265,201912,3517371 -AT,PL,1,266,201912,474677 -AT,PL,1,267,201912,1246139 -AT,PL,1,268,201912,10267 -AT,PL,1,271,201912,3779491 -AT,PL,1,272,201912,5144272 -AT,PL,1,273,201912,1233639 -AT,PL,1,274,201912,2776030 -AT,PL,1,275,201912,5194942 -AT,PL,1,279,201912,2221393 -AT,PL,1,281,201912,13297211 -AT,PL,1,282,201912,7099823 -AT,PL,1,283,201912,1322209 -AT,PL,1,284,201912,934907 -AT,PL,1,289,201912,2741895 -AT,PL,1,291,201912,18941298 -AT,PL,1,292,201912,830278 -AT,PL,1,293,201912,15175819 -AT,PL,1,301,201912,421406 -AT,PL,1,302,201912,623380 -AT,PL,1,303,201912,176163 -AT,PL,1,309,201912,686965 -AT,PL,1,310,201912,11627177 -AT,PL,1,321,201912,713136 -AT,PL,1,322,201912,164093 -AT,PL,1,323,201912,850125 -AT,PL,1,324,201912,6356357 -AT,PL,1,325,201912,1512712 -AT,PL,1,329,201912,2279573 -AT,PL,2,011,201912,3041980 -AT,PL,2,012,201912,2324554 -AT,PL,2,013,201912,67469 -AT,PL,2,014,201912,1026584 -AT,PL,2,023,201912,988 -AT,PL,2,030,201912,6322 -AT,PL,2,081,201912,351283 -AT,PL,2,089,201912,255734 -AT,PL,2,101,201912,2524467 -AT,PL,2,102,201912,62147 -AT,PL,2,103,201912,1367898 -AT,PL,2,104,201912,3723359 -AT,PL,2,105,201912,633074 -AT,PL,2,106,201912,1848468 -AT,PL,2,107,201912,228612 -AT,PL,2,108,201912,6535200 -AT,PL,2,109,201912,422214 -AT,PL,2,10S,201912,26810 -AT,PL,2,110,201912,4697657 -AT,PL,2,131,201912,86791 -AT,PL,2,132,201912,458692 -AT,PL,2,139,201912,5040298 -AT,PL,2,141,201912,29295395 -AT,PL,2,142,201912,1196 -AT,PL,2,143,201912,3275574 -AT,PL,2,151,201912,1129797 -AT,PL,2,152,201912,6976029 -AT,PL,2,161,201912,724985 -AT,PL,2,162,201912,3307550 -AT,PL,2,171,201912,12983589 -AT,PL,2,172,201912,5930145 -AT,PL,2,17S,201912,3607093 -AT,PL,2,181,201912,2660 -AT,PL,2,192,201912,182035 -AT,PL,2,201,201912,8056016 -AT,PL,2,202,201912,283016 -AT,PL,2,203,201912,2384924 -AT,PL,2,204,201912,3054457 -AT,PL,2,205,201912,5288770 -AT,PL,2,206,201912,54685 -AT,PL,2,20S,201912,605852 -AT,PL,2,211,201912,58515 -AT,PL,2,212,201912,40263099 -AT,PL,2,221,201912,1389866 -AT,PL,2,222,201912,9326271 -AT,PL,2,231,201912,879066 -AT,PL,2,232,201912,375907 -AT,PL,2,233,201912,25728 -AT,PL,2,234,201912,234532 -AT,PL,2,235,201912,2626 -AT,PL,2,236,201912,163360 -AT,PL,2,237,201912,39 -AT,PL,2,239,201912,2548442 -AT,PL,2,241,201912,11411634 -AT,PL,2,242,201912,2222466 -AT,PL,2,243,201912,1715509 -AT,PL,2,244,201912,6192078 -AT,PL,2,245,201912,72827 -AT,PL,2,251,201912,2350161 -AT,PL,2,252,201912,2049342 -AT,PL,2,253,201912,70763 -AT,PL,2,254,201912,37250 -AT,PL,2,257,201912,14777440 -AT,PL,2,259,201912,9292271 -AT,PL,2,25S,201912,17540 -AT,PL,2,261,201912,4579605 -AT,PL,2,262,201912,4328312 -AT,PL,2,263,201912,10745497 -AT,PL,2,264,201912,1732702 -AT,PL,2,265,201912,3119732 -AT,PL,2,266,201912,772754 -AT,PL,2,267,201912,1221719 -AT,PL,2,268,201912,6742 -AT,PL,2,271,201912,5820826 -AT,PL,2,272,201912,1379825 -AT,PL,2,273,201912,3140389 -AT,PL,2,274,201912,2181662 -AT,PL,2,275,201912,2893994 -AT,PL,2,279,201912,5074507 -AT,PL,2,281,201912,12318711 -AT,PL,2,282,201912,10209695 -AT,PL,2,283,201912,4124277 -AT,PL,2,284,201912,5261438 -AT,PL,2,289,201912,19825332 -AT,PL,2,291,201912,16268726 -AT,PL,2,292,201912,1015205 -AT,PL,2,293,201912,6892195 -AT,PL,2,302,201912,969892 -AT,PL,2,303,201912,712150 -AT,PL,2,309,201912,314079 -AT,PL,2,310,201912,4130276 -AT,PL,2,321,201912,1256139 -AT,PL,2,322,201912,18090 -AT,PL,2,323,201912,1601106 -AT,PL,2,324,201912,1564654 -AT,PL,2,325,201912,2741035 -AT,PL,2,329,201912,1095698 -AT,PL,2,32S,201912,13587 -AT,PS,2,110,201912,25463 -AT,PS,2,205,201912,2393 -AT,PT,1,101,201912,27555 -AT,PT,1,102,201912,873544 -AT,PT,1,103,201912,168272 -AT,PT,1,104,201912,499476 -AT,PT,1,105,201912,48887 -AT,PT,1,107,201912,181862 -AT,PT,1,108,201912,58518 -AT,PT,1,110,201912,268999 -AT,PT,1,131,201912,210359 -AT,PT,1,132,201912,89324 -AT,PT,1,139,201912,261885 -AT,PT,1,141,201912,1868240 -AT,PT,1,143,201912,139165 -AT,PT,1,151,201912,11867 -AT,PT,1,152,201912,231945 -AT,PT,1,162,201912,504420 -AT,PT,1,171,201912,270618 -AT,PT,1,172,201912,48205 -AT,PT,1,204,201912,10193 -AT,PT,1,205,201912,81966 -AT,PT,1,212,201912,963955 -AT,PT,1,221,201912,155425 -AT,PT,1,222,201912,118567 -AT,PT,1,231,201912,73078 -AT,PT,1,233,201912,130701 -AT,PT,1,234,201912,92969 -AT,PT,1,239,201912,111 -AT,PT,1,241,201912,2534 -AT,PT,1,243,201912,19443 -AT,PT,1,244,201912,132468 -AT,PT,1,251,201912,81897 -AT,PT,1,257,201912,1286926 -AT,PT,1,259,201912,103760 -AT,PT,1,261,201912,11233 -AT,PT,1,262,201912,68807 -AT,PT,1,263,201912,55296 -AT,PT,1,264,201912,806997 -AT,PT,1,265,201912,1616734 -AT,PT,1,271,201912,1393944 -AT,PT,1,273,201912,47557 -AT,PT,1,274,201912,148950 -AT,PT,1,275,201912,3936 -AT,PT,1,279,201912,2961 -AT,PT,1,281,201912,74917 -AT,PT,1,282,201912,494881 -AT,PT,1,284,201912,184 -AT,PT,1,289,201912,49095 -AT,PT,1,293,201912,4790083 -AT,PT,1,302,201912,3123 -AT,PT,1,309,201912,379361 -AT,PT,1,310,201912,556282 -AT,PT,1,321,201912,9300 -AT,PT,1,324,201912,242839 -AT,PT,1,325,201912,14832 -AT,PT,1,329,201912,4221 -AT,PT,2,011,201912,1231 -AT,PT,2,012,201912,5081 -AT,PT,2,089,201912,5117 -AT,PT,2,101,201912,28972 -AT,PT,2,103,201912,123120 -AT,PT,2,104,201912,122422 -AT,PT,2,105,201912,44663 -AT,PT,2,106,201912,354999 -AT,PT,2,107,201912,122485 -AT,PT,2,108,201912,324665 -AT,PT,2,109,201912,165176 -AT,PT,2,110,201912,277775 -AT,PT,2,131,201912,169886 -AT,PT,2,132,201912,155278 -AT,PT,2,139,201912,704940 -AT,PT,2,141,201912,289490 -AT,PT,2,142,201912,89 -AT,PT,2,143,201912,17839 -AT,PT,2,151,201912,35562 -AT,PT,2,152,201912,8304 -AT,PT,2,161,201912,127192 -AT,PT,2,162,201912,488586 -AT,PT,2,171,201912,525775 -AT,PT,2,172,201912,96627 -AT,PT,2,17S,201912,383671 -AT,PT,2,192,201912,118360 -AT,PT,2,201,201912,385530 -AT,PT,2,202,201912,65589 -AT,PT,2,203,201912,12808 -AT,PT,2,204,201912,163484 -AT,PT,2,205,201912,358716 -AT,PT,2,206,201912,1346 -AT,PT,2,211,201912,38108 -AT,PT,2,212,201912,1189911 -AT,PT,2,221,201912,109982 -AT,PT,2,222,201912,480039 -AT,PT,2,231,201912,143039 -AT,PT,2,232,201912,499306 -AT,PT,2,234,201912,12031 -AT,PT,2,236,201912,3110 -AT,PT,2,239,201912,21717 -AT,PT,2,241,201912,206090 -AT,PT,2,242,201912,10620 -AT,PT,2,243,201912,157429 -AT,PT,2,244,201912,414537 -AT,PT,2,245,201912,19301 -AT,PT,2,251,201912,199843 -AT,PT,2,252,201912,377249 -AT,PT,2,253,201912,1553 -AT,PT,2,254,201912,8083 -AT,PT,2,257,201912,413376 -AT,PT,2,259,201912,271869 -AT,PT,2,25S,201912,156125 -AT,PT,2,261,201912,166882 -AT,PT,2,262,201912,42018 -AT,PT,2,263,201912,2873128 -AT,PT,2,264,201912,161511 -AT,PT,2,265,201912,278422 -AT,PT,2,266,201912,203248 -AT,PT,2,267,201912,40556 -AT,PT,2,268,201912,3519 -AT,PT,2,271,201912,768075 -AT,PT,2,272,201912,62831 -AT,PT,2,273,201912,94659 -AT,PT,2,274,201912,143418 -AT,PT,2,275,201912,134975 -AT,PT,2,279,201912,255814 -AT,PT,2,281,201912,383424 -AT,PT,2,282,201912,1655993 -AT,PT,2,283,201912,180471 -AT,PT,2,284,201912,744337 -AT,PT,2,289,201912,2937834 -AT,PT,2,291,201912,5636843 -AT,PT,2,292,201912,17334 -AT,PT,2,293,201912,1032300 -AT,PT,2,301,201912,7895 -AT,PT,2,302,201912,9687 -AT,PT,2,303,201912,9 -AT,PT,2,309,201912,1063186 -AT,PT,2,310,201912,21726 -AT,PT,2,321,201912,269804 -AT,PT,2,322,201912,330 -AT,PT,2,323,201912,11916 -AT,PT,2,324,201912,8941 -AT,PT,2,325,201912,270879 -AT,PT,2,329,201912,107753 -AT,PT,2,32S,201912,24640 -AT,PY,1,152,201912,45583 -AT,PY,1,205,201912,33 -AT,PY,2,108,201912,10431 -AT,PY,2,110,201912,14694 -AT,PY,2,171,201912,52874 -AT,PY,2,17S,201912,88654 -AT,PY,2,205,201912,53451 -AT,PY,2,212,201912,226450 -AT,PY,2,221,201912,434 -AT,PY,2,222,201912,28372 -AT,PY,2,257,201912,20650 -AT,PY,2,259,201912,15567 -AT,PY,2,262,201912,11515 -AT,PY,2,263,201912,900 -AT,PY,2,265,201912,2290 -AT,PY,2,271,201912,47488 -AT,PY,2,273,201912,38137 -AT,PY,2,279,201912,661 -AT,PY,2,281,201912,17911 -AT,PY,2,282,201912,8049 -AT,PY,2,289,201912,546268 -AT,PY,2,293,201912,8281 -AT,PY,2,309,201912,131553 -AT,PY,2,324,201912,23969 -AT,QA,1,141,201912,5453 -AT,QA,1,143,201912,62 -AT,QA,1,152,201912,292 -AT,QA,1,172,201912,81 -AT,QA,1,222,201912,377 -AT,QA,1,271,201912,155 -AT,QA,1,281,201912,384 -AT,QA,2,105,201912,106901 -AT,QA,2,107,201912,54952 -AT,QA,2,108,201912,67014 -AT,QA,2,110,201912,19275 -AT,QA,2,132,201912,253 -AT,QA,2,139,201912,12177 -AT,QA,2,141,201912,199402 -AT,QA,2,151,201912,18935 -AT,QA,2,152,201912,5630 -AT,QA,2,162,201912,1700416 -AT,QA,2,171,201912,20088 -AT,QA,2,172,201912,12 -AT,QA,2,201,201912,2658 -AT,QA,2,204,201912,30518 -AT,QA,2,205,201912,2002 -AT,QA,2,206,201912,5140 -AT,QA,2,221,201912,11069 -AT,QA,2,222,201912,491484 -AT,QA,2,231,201912,4748 -AT,QA,2,232,201912,230559 -AT,QA,2,234,201912,15370 -AT,QA,2,239,201912,119909 -AT,QA,2,241,201912,13768 -AT,QA,2,242,201912,126444 -AT,QA,2,244,201912,871 -AT,QA,2,245,201912,4494 -AT,QA,2,251,201912,1706638 -AT,QA,2,252,201912,321 -AT,QA,2,257,201912,66097 -AT,QA,2,259,201912,285680 -AT,QA,2,261,201912,1508 -AT,QA,2,262,201912,6750 -AT,QA,2,263,201912,122292 -AT,QA,2,264,201912,34933 -AT,QA,2,265,201912,131533 -AT,QA,2,266,201912,7243 -AT,QA,2,267,201912,11142 -AT,QA,2,271,201912,2334479 -AT,QA,2,272,201912,23201 -AT,QA,2,273,201912,45760 -AT,QA,2,274,201912,24102 -AT,QA,2,275,201912,11048 -AT,QA,2,279,201912,78455 -AT,QA,2,281,201912,350309 -AT,QA,2,282,201912,7794744 -AT,QA,2,284,201912,34761 -AT,QA,2,289,201912,307212 -AT,QA,2,291,201912,2846228 -AT,QA,2,293,201912,480 -AT,QA,2,303,201912,918 -AT,QA,2,309,201912,71955 -AT,QA,2,310,201912,590142 -AT,QA,2,323,201912,2329 -AT,QA,2,324,201912,810 -AT,QA,2,325,201912,103250 -AT,QA,2,329,201912,5066 -AT,QY,1,089,201912,230433 -AT,QY,1,106,201912,1383370 -AT,QY,1,20S,201912,111972 -AT,QY,1,25S,201912,1198592 -AT,QY,2,105,201912,2807433 -AT,QY,2,201,201912,16933 -AT,QY,2,259,201912,778854 -AT,QY,2,25S,201912,1358319 -AT,QY,2,279,201912,376861 -AT,QZ,1,106,201912,53984 -AT,QZ,1,20S,201912,10533 -AT,QZ,1,25S,201912,316696 -AT,QZ,2,105,201912,12104 -AT,QZ,2,201,201912,2804 -AT,QZ,2,259,201912,79611 -AT,QZ,2,25S,201912,506779 -AT,QZ,2,279,201912,3580696 -AT,RO,1,011,201912,2824782 -AT,RO,1,012,201912,16935 -AT,RO,1,014,201912,63594 -AT,RO,1,022,201912,420718 -AT,RO,1,023,201912,804 -AT,RO,1,081,201912,9461 -AT,RO,1,101,201912,3449135 -AT,RO,1,103,201912,380674 -AT,RO,1,104,201912,826156 -AT,RO,1,106,201912,224739 -AT,RO,1,107,201912,69389 -AT,RO,1,108,201912,1069155 -AT,RO,1,109,201912,103 -AT,RO,1,110,201912,57 -AT,RO,1,120,201912,999501 -AT,RO,1,131,201912,16481 -AT,RO,1,132,201912,1483798 -AT,RO,1,139,201912,495873 -AT,RO,1,141,201912,1533330 -AT,RO,1,143,201912,68304 -AT,RO,1,151,201912,107984 -AT,RO,1,152,201912,2890027 -AT,RO,1,161,201912,528691 -AT,RO,1,162,201912,11223448 -AT,RO,1,171,201912,779921 -AT,RO,1,172,201912,346965 -AT,RO,1,192,201912,833050 -AT,RO,1,201,201912,793269 -AT,RO,1,202,201912,4445 -AT,RO,1,203,201912,2130 -AT,RO,1,204,201912,379203 -AT,RO,1,205,201912,671921 -AT,RO,1,206,201912,40339 -AT,RO,1,212,201912,79394 -AT,RO,1,221,201912,434811 -AT,RO,1,222,201912,1202999 -AT,RO,1,231,201912,39574 -AT,RO,1,234,201912,93684 -AT,RO,1,236,201912,195 -AT,RO,1,239,201912,76672 -AT,RO,1,241,201912,365307 -AT,RO,1,242,201912,274751 -AT,RO,1,243,201912,174 -AT,RO,1,244,201912,1491954 -AT,RO,1,245,201912,8397 -AT,RO,1,251,201912,300629 -AT,RO,1,252,201912,35764 -AT,RO,1,253,201912,847400 -AT,RO,1,257,201912,553629 -AT,RO,1,259,201912,1192547 -AT,RO,1,261,201912,5993630 -AT,RO,1,262,201912,47605 -AT,RO,1,263,201912,311570 -AT,RO,1,265,201912,3346505 -AT,RO,1,266,201912,2249431 -AT,RO,1,267,201912,2738 -AT,RO,1,268,201912,28692 -AT,RO,1,271,201912,4725352 -AT,RO,1,272,201912,115854 -AT,RO,1,273,201912,7410423 -AT,RO,1,274,201912,247108 -AT,RO,1,275,201912,389746 -AT,RO,1,279,201912,2453631 -AT,RO,1,281,201912,5615514 -AT,RO,1,282,201912,3611983 -AT,RO,1,283,201912,127020 -AT,RO,1,284,201912,18753 -AT,RO,1,289,201912,928756 -AT,RO,1,291,201912,4702791 -AT,RO,1,292,201912,208683 -AT,RO,1,293,201912,5766960 -AT,RO,1,301,201912,44520 -AT,RO,1,302,201912,1375576 -AT,RO,1,303,201912,4463 -AT,RO,1,309,201912,19756 -AT,RO,1,310,201912,2704347 -AT,RO,1,321,201912,3392 -AT,RO,1,322,201912,20482 -AT,RO,1,323,201912,6433218 -AT,RO,1,324,201912,57930 -AT,RO,1,325,201912,720292 -AT,RO,1,329,201912,308431 -AT,RO,2,011,201912,1942606 -AT,RO,2,012,201912,378266 -AT,RO,2,013,201912,39543 -AT,RO,2,014,201912,57733 -AT,RO,2,022,201912,936755 -AT,RO,2,023,201912,273 -AT,RO,2,030,201912,5867 -AT,RO,2,081,201912,36155 -AT,RO,2,089,201912,33040 -AT,RO,2,101,201912,1926964 -AT,RO,2,102,201912,20242 -AT,RO,2,103,201912,1288069 -AT,RO,2,104,201912,80739 -AT,RO,2,105,201912,329897 -AT,RO,2,106,201912,161217 -AT,RO,2,107,201912,1235385 -AT,RO,2,108,201912,2921829 -AT,RO,2,109,201912,1548468 -AT,RO,2,10S,201912,20398 -AT,RO,2,110,201912,1384388 -AT,RO,2,131,201912,65151 -AT,RO,2,132,201912,965578 -AT,RO,2,139,201912,1087176 -AT,RO,2,141,201912,10054515 -AT,RO,2,142,201912,667 -AT,RO,2,143,201912,2082120 -AT,RO,2,151,201912,521574 -AT,RO,2,152,201912,742867 -AT,RO,2,161,201912,571238 -AT,RO,2,162,201912,1986906 -AT,RO,2,171,201912,2840849 -AT,RO,2,172,201912,2731269 -AT,RO,2,17S,201912,1476590 -AT,RO,2,181,201912,4927 -AT,RO,2,192,201912,1370835 -AT,RO,2,201,201912,4803877 -AT,RO,2,202,201912,339998 -AT,RO,2,203,201912,718679 -AT,RO,2,204,201912,1398958 -AT,RO,2,205,201912,1885475 -AT,RO,2,206,201912,5057 -AT,RO,2,20S,201912,1356822 -AT,RO,2,211,201912,27929 -AT,RO,2,212,201912,8507122 -AT,RO,2,221,201912,742772 -AT,RO,2,222,201912,4436449 -AT,RO,2,231,201912,827761 -AT,RO,2,232,201912,198096 -AT,RO,2,233,201912,61260 -AT,RO,2,234,201912,435386 -AT,RO,2,235,201912,21 -AT,RO,2,236,201912,116169 -AT,RO,2,237,201912,6587 -AT,RO,2,239,201912,600843 -AT,RO,2,241,201912,6049424 -AT,RO,2,242,201912,540605 -AT,RO,2,243,201912,409832 -AT,RO,2,244,201912,2420767 -AT,RO,2,245,201912,74948 -AT,RO,2,251,201912,349566 -AT,RO,2,252,201912,201630 -AT,RO,2,253,201912,3254515 -AT,RO,2,254,201912,43409 -AT,RO,2,257,201912,3994171 -AT,RO,2,259,201912,4388874 -AT,RO,2,25S,201912,306448 -AT,RO,2,261,201912,3647390 -AT,RO,2,262,201912,3211829 -AT,RO,2,263,201912,3834001 -AT,RO,2,264,201912,228923 -AT,RO,2,265,201912,2092882 -AT,RO,2,266,201912,790059 -AT,RO,2,267,201912,577536 -AT,RO,2,268,201912,76399 -AT,RO,2,271,201912,11112229 -AT,RO,2,272,201912,316697 -AT,RO,2,273,201912,4637281 -AT,RO,2,274,201912,1115169 -AT,RO,2,275,201912,1016168 -AT,RO,2,279,201912,2631169 -AT,RO,2,281,201912,3324101 -AT,RO,2,282,201912,4694609 -AT,RO,2,283,201912,556616 -AT,RO,2,284,201912,1269519 -AT,RO,2,289,201912,7267136 -AT,RO,2,291,201912,21606831 -AT,RO,2,292,201912,880993 -AT,RO,2,293,201912,8238373 -AT,RO,2,301,201912,19772 -AT,RO,2,302,201912,388178 -AT,RO,2,303,201912,482242 -AT,RO,2,309,201912,204623 -AT,RO,2,310,201912,893417 -AT,RO,2,321,201912,668870 -AT,RO,2,322,201912,14 -AT,RO,2,323,201912,672766 -AT,RO,2,324,201912,1498283 -AT,RO,2,325,201912,1971083 -AT,RO,2,329,201912,434863 -AT,RO,2,32S,201912,26660 -AT,RU,1,011,201912,123509 -AT,RU,1,051,201912,1691903 -AT,RU,1,108,201912,226 -AT,RU,1,110,201912,208171 -AT,RU,1,139,201912,5631 -AT,RU,1,141,201912,21182 -AT,RU,1,143,201912,2174 -AT,RU,1,151,201912,873 -AT,RU,1,152,201912,10479 -AT,RU,1,161,201912,595800 -AT,RU,1,162,201912,758243 -AT,RU,1,171,201912,544546 -AT,RU,1,172,201912,1693 -AT,RU,1,192,201912,805469 -AT,RU,1,201,201912,726581 -AT,RU,1,204,201912,1173 -AT,RU,1,205,201912,112476 -AT,RU,1,211,201912,18142 -AT,RU,1,221,201912,42870 -AT,RU,1,222,201912,48857 -AT,RU,1,231,201912,17442 -AT,RU,1,234,201912,4971 -AT,RU,1,236,201912,435774 -AT,RU,1,239,201912,111877 -AT,RU,1,241,201912,86399 -AT,RU,1,242,201912,1189 -AT,RU,1,243,201912,62535 -AT,RU,1,244,201912,2040169 -AT,RU,1,245,201912,20584 -AT,RU,1,254,201912,50 -AT,RU,1,257,201912,577048 -AT,RU,1,259,201912,281098 -AT,RU,1,261,201912,6205 -AT,RU,1,262,201912,16983 -AT,RU,1,263,201912,15806 -AT,RU,1,264,201912,930 -AT,RU,1,265,201912,33079 -AT,RU,1,267,201912,33627 -AT,RU,1,271,201912,26920 -AT,RU,1,272,201912,2486 -AT,RU,1,274,201912,57205 -AT,RU,1,279,201912,488136 -AT,RU,1,281,201912,133350 -AT,RU,1,282,201912,5439 -AT,RU,1,284,201912,101429 -AT,RU,1,289,201912,599870 -AT,RU,1,291,201912,13264 -AT,RU,1,292,201912,836 -AT,RU,1,293,201912,103291 -AT,RU,1,309,201912,288741 -AT,RU,1,310,201912,195790 -AT,RU,1,321,201912,17287 -AT,RU,1,322,201912,2260 -AT,RU,1,323,201912,3133 -AT,RU,1,324,201912,211284 -AT,RU,1,325,201912,11114 -AT,RU,1,329,201912,8917 -AT,RU,2,011,201912,8800731 -AT,RU,2,012,201912,250262 -AT,RU,2,014,201912,107515 -AT,RU,2,081,201912,5563 -AT,RU,2,089,201912,256964 -AT,RU,2,103,201912,522358 -AT,RU,2,104,201912,62647 -AT,RU,2,106,201912,90560 -AT,RU,2,107,201912,23067 -AT,RU,2,108,201912,5997877 -AT,RU,2,109,201912,2128359 -AT,RU,2,110,201912,799095 -AT,RU,2,131,201912,16420 -AT,RU,2,132,201912,46550 -AT,RU,2,139,201912,322861 -AT,RU,2,141,201912,783302 -AT,RU,2,142,201912,7481 -AT,RU,2,143,201912,70521 -AT,RU,2,151,201912,106702 -AT,RU,2,152,201912,978843 -AT,RU,2,161,201912,82162 -AT,RU,2,162,201912,721435 -AT,RU,2,171,201912,1293758 -AT,RU,2,172,201912,76120 -AT,RU,2,17S,201912,1810921 -AT,RU,2,192,201912,153881 -AT,RU,2,201,201912,2056956 -AT,RU,2,202,201912,8088 -AT,RU,2,203,201912,387038 -AT,RU,2,204,201912,384440 -AT,RU,2,205,201912,2431275 -AT,RU,2,211,201912,1127025 -AT,RU,2,212,201912,41978265 -AT,RU,2,221,201912,406319 -AT,RU,2,222,201912,2538958 -AT,RU,2,231,201912,205945 -AT,RU,2,232,201912,1360946 -AT,RU,2,234,201912,18010 -AT,RU,2,236,201912,125400 -AT,RU,2,239,201912,4518364 -AT,RU,2,241,201912,1235501 -AT,RU,2,242,201912,1159221 -AT,RU,2,243,201912,1006328 -AT,RU,2,244,201912,339474 -AT,RU,2,245,201912,164947 -AT,RU,2,251,201912,691584 -AT,RU,2,252,201912,130626 -AT,RU,2,254,201912,206050 -AT,RU,2,257,201912,4893278 -AT,RU,2,259,201912,1558500 -AT,RU,2,25S,201912,9362 -AT,RU,2,261,201912,404668 -AT,RU,2,262,201912,882897 -AT,RU,2,263,201912,704832 -AT,RU,2,264,201912,349113 -AT,RU,2,265,201912,5292968 -AT,RU,2,266,201912,378134 -AT,RU,2,267,201912,1113168 -AT,RU,2,268,201912,12657 -AT,RU,2,271,201912,2089455 -AT,RU,2,272,201912,685096 -AT,RU,2,273,201912,134820 -AT,RU,2,274,201912,393852 -AT,RU,2,275,201912,328189 -AT,RU,2,279,201912,1190546 -AT,RU,2,281,201912,7480813 -AT,RU,2,282,201912,19065780 -AT,RU,2,283,201912,321542 -AT,RU,2,284,201912,3327536 -AT,RU,2,289,201912,34196445 -AT,RU,2,291,201912,5246841 -AT,RU,2,292,201912,277007 -AT,RU,2,293,201912,80884 -AT,RU,2,302,201912,22732 -AT,RU,2,303,201912,375252 -AT,RU,2,309,201912,442755 -AT,RU,2,310,201912,189975 -AT,RU,2,321,201912,35350 -AT,RU,2,323,201912,1370947 -AT,RU,2,324,201912,14456 -AT,RU,2,325,201912,704565 -AT,RU,2,329,201912,300083 -AT,RU,2,32S,201912,9762 -AT,RW,2,141,201912,9 -AT,RW,2,143,201912,4 -AT,RW,2,205,201912,1947 -AT,RW,2,271,201912,241216 -AT,RW,2,324,201912,15 -AT,RW,2,329,201912,2 -AT,SA,1,141,201912,5452 -AT,SA,1,143,201912,495 -AT,SA,1,152,201912,680 -AT,SA,1,204,201912,386 -AT,SA,1,222,201912,436 -AT,SA,1,242,201912,353 -AT,SA,1,251,201912,128976 -AT,SA,1,257,201912,2992 -AT,SA,1,259,201912,5931 -AT,SA,1,263,201912,3242 -AT,SA,1,265,201912,70470 -AT,SA,1,266,201912,32704 -AT,SA,1,271,201912,3502 -AT,SA,1,272,201912,670 -AT,SA,1,273,201912,208 -AT,SA,1,275,201912,28 -AT,SA,1,279,201912,14785 -AT,SA,1,282,201912,3784 -AT,SA,1,289,201912,63 -AT,SA,1,321,201912,118080 -AT,SA,1,325,201912,1722 -AT,SA,2,014,201912,18722 -AT,SA,2,089,201912,38169 -AT,SA,2,103,201912,1376394 -AT,SA,2,104,201912,45350 -AT,SA,2,105,201912,93353 -AT,SA,2,107,201912,29919 -AT,SA,2,108,201912,340352 -AT,SA,2,110,201912,177114 -AT,SA,2,132,201912,7489 -AT,SA,2,139,201912,11225 -AT,SA,2,141,201912,68203 -AT,SA,2,142,201912,561 -AT,SA,2,143,201912,1097 -AT,SA,2,151,201912,19715 -AT,SA,2,152,201912,1011 -AT,SA,2,161,201912,246543 -AT,SA,2,162,201912,607491 -AT,SA,2,171,201912,258407 -AT,SA,2,172,201912,30036 -AT,SA,2,192,201912,265 -AT,SA,2,201,201912,98852 -AT,SA,2,203,201912,19281 -AT,SA,2,204,201912,51331 -AT,SA,2,205,201912,531660 -AT,SA,2,212,201912,2541777 -AT,SA,2,221,201912,43979 -AT,SA,2,222,201912,275266 -AT,SA,2,231,201912,521291 -AT,SA,2,232,201912,280021 -AT,SA,2,234,201912,2153 -AT,SA,2,239,201912,104656 -AT,SA,2,241,201912,84112 -AT,SA,2,242,201912,790593 -AT,SA,2,244,201912,380833 -AT,SA,2,251,201912,257923 -AT,SA,2,252,201912,56596 -AT,SA,2,257,201912,496216 -AT,SA,2,259,201912,492830 -AT,SA,2,261,201912,2566 -AT,SA,2,262,201912,436071 -AT,SA,2,265,201912,583602 -AT,SA,2,266,201912,15668 -AT,SA,2,267,201912,20763 -AT,SA,2,271,201912,1536962 -AT,SA,2,272,201912,773 -AT,SA,2,273,201912,105016 -AT,SA,2,274,201912,2368501 -AT,SA,2,275,201912,6704 -AT,SA,2,279,201912,785788 -AT,SA,2,281,201912,556948 -AT,SA,2,282,201912,760483 -AT,SA,2,284,201912,133520 -AT,SA,2,289,201912,4519768 -AT,SA,2,291,201912,4781756 -AT,SA,2,292,201912,862 -AT,SA,2,293,201912,23764 -AT,SA,2,309,201912,9507 -AT,SA,2,310,201912,61807 -AT,SA,2,321,201912,42505 -AT,SA,2,325,201912,167474 -AT,SA,2,329,201912,32665 -AT,SC,2,110,201912,2157 -AT,SC,2,222,201912,13 -AT,SD,2,132,201912,35240 -AT,SD,2,201,201912,113 -AT,SD,2,205,201912,13704 -AT,SD,2,222,201912,5444 -AT,SD,2,259,201912,4113 -AT,SD,2,265,201912,33325 -AT,SD,2,279,201912,2869 -AT,SD,2,281,201912,30900 -AT,SD,2,282,201912,67063 -AT,SD,2,289,201912,16334 -AT,SE,1,030,201912,618380 -AT,SE,1,081,201912,7501 -AT,SE,1,089,201912,20 -AT,SE,1,101,201912,135166 -AT,SE,1,102,201912,81280 -AT,SE,1,103,201912,443049 -AT,SE,1,104,201912,251827 -AT,SE,1,105,201912,2344 -AT,SE,1,106,201912,3581 -AT,SE,1,107,201912,168971 -AT,SE,1,108,201912,330294 -AT,SE,1,109,201912,572 -AT,SE,1,110,201912,323182 -AT,SE,1,131,201912,4930 -AT,SE,1,132,201912,12450 -AT,SE,1,139,201912,240682 -AT,SE,1,141,201912,2796926 -AT,SE,1,143,201912,339060 -AT,SE,1,151,201912,627393 -AT,SE,1,152,201912,475593 -AT,SE,1,161,201912,919073 -AT,SE,1,162,201912,355301 -AT,SE,1,171,201912,15069442 -AT,SE,1,172,201912,1691707 -AT,SE,1,192,201912,401996 -AT,SE,1,201,201912,5232215 -AT,SE,1,203,201912,43159 -AT,SE,1,204,201912,231630 -AT,SE,1,205,201912,2288874 -AT,SE,1,211,201912,744011 -AT,SE,1,212,201912,6599827 -AT,SE,1,221,201912,439794 -AT,SE,1,222,201912,1033989 -AT,SE,1,231,201912,494529 -AT,SE,1,234,201912,2128 -AT,SE,1,239,201912,86984 -AT,SE,1,241,201912,3389882 -AT,SE,1,242,201912,1052198 -AT,SE,1,243,201912,310664 -AT,SE,1,244,201912,2908049 -AT,SE,1,245,201912,349 -AT,SE,1,251,201912,116537 -AT,SE,1,252,201912,325652 -AT,SE,1,254,201912,12096 -AT,SE,1,257,201912,516687 -AT,SE,1,259,201912,999319 -AT,SE,1,261,201912,561476 -AT,SE,1,262,201912,97000 -AT,SE,1,263,201912,2562929 -AT,SE,1,264,201912,2037967 -AT,SE,1,265,201912,2033920 -AT,SE,1,266,201912,4839 -AT,SE,1,267,201912,606732 -AT,SE,1,268,201912,4377 -AT,SE,1,271,201912,660619 -AT,SE,1,272,201912,149059 -AT,SE,1,273,201912,158967 -AT,SE,1,274,201912,217993 -AT,SE,1,275,201912,107272 -AT,SE,1,279,201912,224670 -AT,SE,1,281,201912,2606046 -AT,SE,1,282,201912,6744206 -AT,SE,1,283,201912,872181 -AT,SE,1,284,201912,497827 -AT,SE,1,289,201912,6483772 -AT,SE,1,291,201912,13045527 -AT,SE,1,292,201912,56321 -AT,SE,1,293,201912,9781464 -AT,SE,1,302,201912,198157 -AT,SE,1,303,201912,281766 -AT,SE,1,309,201912,279688 -AT,SE,1,310,201912,826966 -AT,SE,1,321,201912,707 -AT,SE,1,322,201912,6114 -AT,SE,1,323,201912,1472752 -AT,SE,1,324,201912,68147 -AT,SE,1,325,201912,367814 -AT,SE,1,329,201912,858023 -AT,SE,2,011,201912,296428 -AT,SE,2,012,201912,236154 -AT,SE,2,030,201912,24 -AT,SE,2,081,201912,9971 -AT,SE,2,089,201912,23070 -AT,SE,2,101,201912,683267 -AT,SE,2,102,201912,816 -AT,SE,2,103,201912,787840 -AT,SE,2,104,201912,80168 -AT,SE,2,105,201912,178340 -AT,SE,2,106,201912,651264 -AT,SE,2,107,201912,31607 -AT,SE,2,108,201912,1454096 -AT,SE,2,109,201912,234882 -AT,SE,2,10S,201912,40945 -AT,SE,2,110,201912,3980972 -AT,SE,2,131,201912,26457 -AT,SE,2,132,201912,87202 -AT,SE,2,139,201912,423729 -AT,SE,2,141,201912,424220 -AT,SE,2,142,201912,306 -AT,SE,2,143,201912,116226 -AT,SE,2,151,201912,82212 -AT,SE,2,152,201912,126993 -AT,SE,2,161,201912,84281 -AT,SE,2,162,201912,1383456 -AT,SE,2,171,201912,328031 -AT,SE,2,172,201912,295565 -AT,SE,2,192,201912,777 -AT,SE,2,201,201912,2158435 -AT,SE,2,202,201912,1328366 -AT,SE,2,203,201912,156540 -AT,SE,2,204,201912,255614 -AT,SE,2,205,201912,761373 -AT,SE,2,206,201912,20470 -AT,SE,2,211,201912,718 -AT,SE,2,212,201912,8726449 -AT,SE,2,221,201912,392514 -AT,SE,2,222,201912,2826905 -AT,SE,2,231,201912,476231 -AT,SE,2,232,201912,224511 -AT,SE,2,234,201912,44114 -AT,SE,2,236,201912,88544 -AT,SE,2,237,201912,60 -AT,SE,2,239,201912,794925 -AT,SE,2,241,201912,2281206 -AT,SE,2,242,201912,757104 -AT,SE,2,243,201912,917784 -AT,SE,2,244,201912,644979 -AT,SE,2,245,201912,131141 -AT,SE,2,251,201912,948190 -AT,SE,2,252,201912,245394 -AT,SE,2,253,201912,6401 -AT,SE,2,254,201912,29197 -AT,SE,2,257,201912,2892449 -AT,SE,2,259,201912,4330309 -AT,SE,2,25S,201912,71972 -AT,SE,2,261,201912,1191401 -AT,SE,2,262,201912,1735598 -AT,SE,2,263,201912,935616 -AT,SE,2,264,201912,210060 -AT,SE,2,265,201912,1764386 -AT,SE,2,266,201912,505665 -AT,SE,2,267,201912,407001 -AT,SE,2,268,201912,30761 -AT,SE,2,271,201912,3386138 -AT,SE,2,272,201912,354867 -AT,SE,2,273,201912,932656 -AT,SE,2,274,201912,2212519 -AT,SE,2,275,201912,133057 -AT,SE,2,279,201912,4273186 -AT,SE,2,281,201912,3720983 -AT,SE,2,282,201912,13611820 -AT,SE,2,283,201912,2129423 -AT,SE,2,284,201912,1158103 -AT,SE,2,289,201912,4767891 -AT,SE,2,291,201912,2217260 -AT,SE,2,292,201912,387728 -AT,SE,2,293,201912,3558597 -AT,SE,2,302,201912,2303455 -AT,SE,2,303,201912,353761 -AT,SE,2,309,201912,2527369 -AT,SE,2,310,201912,242025 -AT,SE,2,321,201912,75545 -AT,SE,2,322,201912,732 -AT,SE,2,323,201912,1936524 -AT,SE,2,324,201912,81621 -AT,SE,2,325,201912,807835 -AT,SE,2,329,201912,185368 -AT,SE,2,32S,201912,16936 -AT,SG,1,108,201912,1454 -AT,SG,1,139,201912,359 -AT,SG,1,141,201912,5867 -AT,SG,1,143,201912,127 -AT,SG,1,151,201912,1725 -AT,SG,1,152,201912,467063 -AT,SG,1,172,201912,1282 -AT,SG,1,201,201912,10852 -AT,SG,1,203,201912,531 -AT,SG,1,204,201912,13256 -AT,SG,1,205,201912,1252145 -AT,SG,1,212,201912,53672 -AT,SG,1,221,201912,1075 -AT,SG,1,222,201912,12736 -AT,SG,1,231,201912,42098 -AT,SG,1,234,201912,11616 -AT,SG,1,239,201912,457 -AT,SG,1,242,201912,322 -AT,SG,1,244,201912,39076 -AT,SG,1,245,201912,201 -AT,SG,1,257,201912,11111 -AT,SG,1,259,201912,12030 -AT,SG,1,261,201912,1011358 -AT,SG,1,262,201912,18600 -AT,SG,1,263,201912,116160 -AT,SG,1,264,201912,27923 -AT,SG,1,265,201912,114354 -AT,SG,1,266,201912,17788 -AT,SG,1,267,201912,177838 -AT,SG,1,271,201912,108240 -AT,SG,1,272,201912,3136 -AT,SG,1,273,201912,57172 -AT,SG,1,274,201912,1801 -AT,SG,1,275,201912,138 -AT,SG,1,279,201912,489015 -AT,SG,1,281,201912,76531 -AT,SG,1,282,201912,103598 -AT,SG,1,284,201912,3308 -AT,SG,1,289,201912,2114269 -AT,SG,1,293,201912,155 -AT,SG,1,303,201912,3554 -AT,SG,1,309,201912,675 -AT,SG,1,310,201912,47902 -AT,SG,1,321,201912,29840 -AT,SG,1,322,201912,11523 -AT,SG,1,324,201912,2887 -AT,SG,1,325,201912,3986 -AT,SG,1,329,201912,9931 -AT,SG,2,014,201912,7275 -AT,SG,2,101,201912,148180 -AT,SG,2,103,201912,29799 -AT,SG,2,104,201912,52827 -AT,SG,2,105,201912,10191 -AT,SG,2,106,201912,11632 -AT,SG,2,107,201912,27258 -AT,SG,2,108,201912,168191 -AT,SG,2,109,201912,174551 -AT,SG,2,110,201912,70869 -AT,SG,2,132,201912,6867 -AT,SG,2,139,201912,229679 -AT,SG,2,141,201912,11483 -AT,SG,2,151,201912,15989 -AT,SG,2,152,201912,2904 -AT,SG,2,162,201912,309189 -AT,SG,2,171,201912,85715 -AT,SG,2,172,201912,15180 -AT,SG,2,17S,201912,46244 -AT,SG,2,192,201912,2215 -AT,SG,2,201,201912,308422 -AT,SG,2,203,201912,320 -AT,SG,2,204,201912,294222 -AT,SG,2,205,201912,146892 -AT,SG,2,211,201912,747 -AT,SG,2,212,201912,517525 -AT,SG,2,221,201912,135923 -AT,SG,2,222,201912,466862 -AT,SG,2,231,201912,880674 -AT,SG,2,234,201912,30770 -AT,SG,2,235,201912,12316 -AT,SG,2,239,201912,191399 -AT,SG,2,241,201912,157345 -AT,SG,2,242,201912,318165 -AT,SG,2,243,201912,18742 -AT,SG,2,244,201912,877350 -AT,SG,2,245,201912,561 -AT,SG,2,251,201912,197819 -AT,SG,2,252,201912,43791 -AT,SG,2,257,201912,489144 -AT,SG,2,259,201912,483099 -AT,SG,2,261,201912,2356480 -AT,SG,2,262,201912,149813 -AT,SG,2,263,201912,1288017 -AT,SG,2,264,201912,39491 -AT,SG,2,265,201912,977432 -AT,SG,2,266,201912,3617 -AT,SG,2,267,201912,78175 -AT,SG,2,268,201912,257 -AT,SG,2,271,201912,310200 -AT,SG,2,272,201912,147133 -AT,SG,2,273,201912,1041036 -AT,SG,2,274,201912,135401 -AT,SG,2,275,201912,35782 -AT,SG,2,279,201912,813609 -AT,SG,2,281,201912,477502 -AT,SG,2,282,201912,735779 -AT,SG,2,284,201912,195930 -AT,SG,2,289,201912,3966505 -AT,SG,2,291,201912,2067231 -AT,SG,2,293,201912,86391 -AT,SG,2,302,201912,17460 -AT,SG,2,303,201912,243442 -AT,SG,2,309,201912,659281 -AT,SG,2,310,201912,19026 -AT,SG,2,321,201912,197298 -AT,SG,2,324,201912,6725 -AT,SG,2,325,201912,172760 -AT,SG,2,329,201912,48716 -AT,SI,1,011,201912,792797 -AT,SI,1,012,201912,363386 -AT,SI,1,013,201912,109474 -AT,SI,1,014,201912,1340964 -AT,SI,1,022,201912,5170926 -AT,SI,1,030,201912,46595 -AT,SI,1,051,201912,10602 -AT,SI,1,081,201912,308269 -AT,SI,1,089,201912,1392470 -AT,SI,1,101,201912,1869348 -AT,SI,1,102,201912,252830 -AT,SI,1,103,201912,456582 -AT,SI,1,104,201912,1461185 -AT,SI,1,105,201912,166009 -AT,SI,1,106,201912,116021 -AT,SI,1,107,201912,475629 -AT,SI,1,108,201912,977861 -AT,SI,1,109,201912,103985 -AT,SI,1,110,201912,506036 -AT,SI,1,132,201912,72802 -AT,SI,1,139,201912,699018 -AT,SI,1,141,201912,1868958 -AT,SI,1,142,201912,23 -AT,SI,1,143,201912,3133357 -AT,SI,1,151,201912,203826 -AT,SI,1,152,201912,125996 -AT,SI,1,161,201912,1094519 -AT,SI,1,162,201912,2828190 -AT,SI,1,171,201912,1253187 -AT,SI,1,172,201912,1529823 -AT,SI,1,181,201912,6350 -AT,SI,1,192,201912,23545496 -AT,SI,1,201,201912,3477449 -AT,SI,1,202,201912,16564 -AT,SI,1,203,201912,1002198 -AT,SI,1,204,201912,278923 -AT,SI,1,205,201912,1572969 -AT,SI,1,206,201912,20662 -AT,SI,1,211,201912,738 -AT,SI,1,212,201912,2172509 -AT,SI,1,221,201912,718144 -AT,SI,1,222,201912,5268262 -AT,SI,1,231,201912,401272 -AT,SI,1,232,201912,44535 -AT,SI,1,233,201912,46490 -AT,SI,1,234,201912,45308 -AT,SI,1,235,201912,39823 -AT,SI,1,236,201912,299381 -AT,SI,1,237,201912,21841 -AT,SI,1,239,201912,593425 -AT,SI,1,241,201912,4047029 -AT,SI,1,242,201912,432615 -AT,SI,1,243,201912,428697 -AT,SI,1,244,201912,3680658 -AT,SI,1,245,201912,8459 -AT,SI,1,251,201912,6286325 -AT,SI,1,252,201912,238576 -AT,SI,1,257,201912,1304197 -AT,SI,1,259,201912,7225806 -AT,SI,1,25S,201912,125930 -AT,SI,1,261,201912,649608 -AT,SI,1,262,201912,230458 -AT,SI,1,263,201912,84269 -AT,SI,1,264,201912,185189 -AT,SI,1,265,201912,3385725 -AT,SI,1,266,201912,1806 -AT,SI,1,267,201912,34356 -AT,SI,1,268,201912,194 -AT,SI,1,271,201912,4835479 -AT,SI,1,272,201912,48197 -AT,SI,1,273,201912,406524 -AT,SI,1,274,201912,4627142 -AT,SI,1,275,201912,1029964 -AT,SI,1,279,201912,672571 -AT,SI,1,281,201912,4043556 -AT,SI,1,282,201912,6318289 -AT,SI,1,283,201912,1274919 -AT,SI,1,284,201912,1395216 -AT,SI,1,289,201912,7585545 -AT,SI,1,291,201912,14164326 -AT,SI,1,292,201912,14986697 -AT,SI,1,293,201912,4783009 -AT,SI,1,302,201912,1024835 -AT,SI,1,303,201912,120994 -AT,SI,1,309,201912,245458 -AT,SI,1,310,201912,5073968 -AT,SI,1,321,201912,1077 -AT,SI,1,322,201912,234641 -AT,SI,1,323,201912,238956 -AT,SI,1,324,201912,19925 -AT,SI,1,325,201912,347454 -AT,SI,1,329,201912,360169 -AT,SI,1,351,201912,1374144 -AT,SI,2,011,201912,3758861 -AT,SI,2,012,201912,3449271 -AT,SI,2,013,201912,168792 -AT,SI,2,014,201912,839154 -AT,SI,2,022,201912,530891 -AT,SI,2,023,201912,13157 -AT,SI,2,030,201912,9418 -AT,SI,2,081,201912,622858 -AT,SI,2,089,201912,75020 -AT,SI,2,101,201912,7036498 -AT,SI,2,102,201912,147493 -AT,SI,2,103,201912,1635890 -AT,SI,2,104,201912,732196 -AT,SI,2,105,201912,3005767 -AT,SI,2,106,201912,888939 -AT,SI,2,107,201912,1636257 -AT,SI,2,108,201912,3355818 -AT,SI,2,109,201912,1256184 -AT,SI,2,10S,201912,76494 -AT,SI,2,110,201912,2691529 -AT,SI,2,131,201912,2352 -AT,SI,2,132,201912,169235 -AT,SI,2,139,201912,1560596 -AT,SI,2,141,201912,7294490 -AT,SI,2,142,201912,5235 -AT,SI,2,143,201912,2420028 -AT,SI,2,151,201912,1545127 -AT,SI,2,152,201912,1479544 -AT,SI,2,161,201912,9801650 -AT,SI,2,162,201912,3852670 -AT,SI,2,171,201912,24732176 -AT,SI,2,172,201912,1034818 -AT,SI,2,17S,201912,79113 -AT,SI,2,192,201912,13711428 -AT,SI,2,201,201912,2166547 -AT,SI,2,202,201912,98635 -AT,SI,2,203,201912,1247527 -AT,SI,2,204,201912,1110803 -AT,SI,2,205,201912,8804980 -AT,SI,2,206,201912,6303 -AT,SI,2,20S,201912,304189 -AT,SI,2,211,201912,108904 -AT,SI,2,212,201912,4634519 -AT,SI,2,221,201912,900788 -AT,SI,2,222,201912,3952537 -AT,SI,2,231,201912,1168511 -AT,SI,2,232,201912,264527 -AT,SI,2,233,201912,161611 -AT,SI,2,234,201912,134445 -AT,SI,2,235,201912,1872666 -AT,SI,2,236,201912,927999 -AT,SI,2,237,201912,5358 -AT,SI,2,239,201912,502016 -AT,SI,2,241,201912,6056955 -AT,SI,2,242,201912,1292941 -AT,SI,2,243,201912,2079586 -AT,SI,2,244,201912,6696659 -AT,SI,2,245,201912,24757 -AT,SI,2,251,201912,1530007 -AT,SI,2,252,201912,256668 -AT,SI,2,253,201912,36881 -AT,SI,2,254,201912,203239 -AT,SI,2,257,201912,2293633 -AT,SI,2,259,201912,3929800 -AT,SI,2,25S,201912,78541 -AT,SI,2,261,201912,618973 -AT,SI,2,262,201912,669977 -AT,SI,2,263,201912,670880 -AT,SI,2,264,201912,380338 -AT,SI,2,265,201912,2053870 -AT,SI,2,266,201912,181996 -AT,SI,2,267,201912,221276 -AT,SI,2,268,201912,94 -AT,SI,2,271,201912,3620932 -AT,SI,2,272,201912,443622 -AT,SI,2,273,201912,1958671 -AT,SI,2,274,201912,1556415 -AT,SI,2,275,201912,1361149 -AT,SI,2,279,201912,2199904 -AT,SI,2,281,201912,2987642 -AT,SI,2,282,201912,3746211 -AT,SI,2,283,201912,2506701 -AT,SI,2,284,201912,1918314 -AT,SI,2,289,201912,5839684 -AT,SI,2,291,201912,5506247 -AT,SI,2,292,201912,5067495 -AT,SI,2,293,201912,3777052 -AT,SI,2,302,201912,16735 -AT,SI,2,303,201912,4979 -AT,SI,2,309,201912,68866 -AT,SI,2,310,201912,2095193 -AT,SI,2,321,201912,582696 -AT,SI,2,322,201912,1173 -AT,SI,2,323,201912,997681 -AT,SI,2,324,201912,277691 -AT,SI,2,325,201912,520026 -AT,SI,2,329,201912,467601 -AT,SI,2,32S,201912,6192 -AT,SI,2,351,201912,26239398 -AT,SK,1,011,201912,7921097 -AT,SK,1,012,201912,148576 -AT,SK,1,013,201912,617717 -AT,SK,1,014,201912,1055754 -AT,SK,1,022,201912,1823940 -AT,SK,1,023,201912,678 -AT,SK,1,030,201912,28517 -AT,SK,1,061,201912,148152 -AT,SK,1,081,201912,266537 -AT,SK,1,089,201912,969914 -AT,SK,1,101,201912,487401 -AT,SK,1,102,201912,58960 -AT,SK,1,103,201912,547960 -AT,SK,1,104,201912,177689 -AT,SK,1,105,201912,368200 -AT,SK,1,106,201912,439273 -AT,SK,1,107,201912,250031 -AT,SK,1,108,201912,13684752 -AT,SK,1,109,201912,76538 -AT,SK,1,110,201912,516311 -AT,SK,1,131,201912,23134 -AT,SK,1,132,201912,110384 -AT,SK,1,139,201912,2598195 -AT,SK,1,141,201912,4491162 -AT,SK,1,143,201912,900238 -AT,SK,1,151,201912,749642 -AT,SK,1,152,201912,5201970 -AT,SK,1,161,201912,1272149 -AT,SK,1,162,201912,4010338 -AT,SK,1,171,201912,2409667 -AT,SK,1,172,201912,2140924 -AT,SK,1,192,201912,42850335 -AT,SK,1,201,201912,4503332 -AT,SK,1,202,201912,128562 -AT,SK,1,203,201912,149918 -AT,SK,1,204,201912,3709889 -AT,SK,1,205,201912,8148481 -AT,SK,1,206,201912,7306 -AT,SK,1,211,201912,90809 -AT,SK,1,212,201912,1020051 -AT,SK,1,221,201912,1131295 -AT,SK,1,222,201912,5147486 -AT,SK,1,231,201912,1617222 -AT,SK,1,233,201912,47178 -AT,SK,1,234,201912,253642 -AT,SK,1,235,201912,1001769 -AT,SK,1,236,201912,475955 -AT,SK,1,237,201912,493 -AT,SK,1,239,201912,236488 -AT,SK,1,241,201912,4213572 -AT,SK,1,242,201912,1025423 -AT,SK,1,243,201912,1771628 -AT,SK,1,244,201912,36507073 -AT,SK,1,245,201912,11288 -AT,SK,1,251,201912,4172830 -AT,SK,1,252,201912,478386 -AT,SK,1,253,201912,5553 -AT,SK,1,254,201912,12765 -AT,SK,1,257,201912,1283103 -AT,SK,1,259,201912,5943000 -AT,SK,1,261,201912,303604 -AT,SK,1,262,201912,1626914 -AT,SK,1,263,201912,11277159 -AT,SK,1,264,201912,6936990 -AT,SK,1,265,201912,1353970 -AT,SK,1,267,201912,847683 -AT,SK,1,268,201912,930 -AT,SK,1,271,201912,1816554 -AT,SK,1,272,201912,170152 -AT,SK,1,273,201912,413478 -AT,SK,1,274,201912,2440155 -AT,SK,1,275,201912,3270180 -AT,SK,1,279,201912,3137471 -AT,SK,1,281,201912,5031126 -AT,SK,1,282,201912,7818553 -AT,SK,1,283,201912,616985 -AT,SK,1,284,201912,1632718 -AT,SK,1,289,201912,7023149 -AT,SK,1,291,201912,66201976 -AT,SK,1,292,201912,1461998 -AT,SK,1,293,201912,15034476 -AT,SK,1,302,201912,623240 -AT,SK,1,303,201912,70235 -AT,SK,1,309,201912,366758 -AT,SK,1,310,201912,2328629 -AT,SK,1,321,201912,15195 -AT,SK,1,322,201912,5699 -AT,SK,1,323,201912,142758 -AT,SK,1,324,201912,488928 -AT,SK,1,325,201912,479220 -AT,SK,1,329,201912,1129489 -AT,SK,2,011,201912,942546 -AT,SK,2,012,201912,1026251 -AT,SK,2,013,201912,890855 -AT,SK,2,014,201912,14577 -AT,SK,2,022,201912,13423 -AT,SK,2,023,201912,6880 -AT,SK,2,030,201912,108901 -AT,SK,2,081,201912,160879 -AT,SK,2,089,201912,1449971 -AT,SK,2,101,201912,3233821 -AT,SK,2,102,201912,250470 -AT,SK,2,103,201912,791394 -AT,SK,2,104,201912,1498909 -AT,SK,2,105,201912,502337 -AT,SK,2,106,201912,261074 -AT,SK,2,107,201912,1095911 -AT,SK,2,108,201912,5183107 -AT,SK,2,109,201912,584276 -AT,SK,2,10S,201912,57042 -AT,SK,2,110,201912,2474483 -AT,SK,2,131,201912,69813 -AT,SK,2,132,201912,566882 -AT,SK,2,139,201912,2341161 -AT,SK,2,141,201912,4688812 -AT,SK,2,142,201912,3085 -AT,SK,2,143,201912,752842 -AT,SK,2,151,201912,1121332 -AT,SK,2,152,201912,543331 -AT,SK,2,161,201912,900524 -AT,SK,2,162,201912,3048378 -AT,SK,2,171,201912,2660567 -AT,SK,2,172,201912,1380436 -AT,SK,2,17S,201912,25135 -AT,SK,2,181,201912,89 -AT,SK,2,192,201912,16100837 -AT,SK,2,201,201912,2158210 -AT,SK,2,202,201912,146423 -AT,SK,2,203,201912,1525488 -AT,SK,2,204,201912,2327009 -AT,SK,2,205,201912,2085912 -AT,SK,2,206,201912,108730 -AT,SK,2,20S,201912,98983 -AT,SK,2,211,201912,25862 -AT,SK,2,212,201912,6206365 -AT,SK,2,221,201912,1037427 -AT,SK,2,222,201912,4483279 -AT,SK,2,231,201912,627364 -AT,SK,2,232,201912,208395 -AT,SK,2,233,201912,123633 -AT,SK,2,234,201912,217434 -AT,SK,2,235,201912,92756 -AT,SK,2,236,201912,634653 -AT,SK,2,237,201912,9556 -AT,SK,2,239,201912,487600 -AT,SK,2,241,201912,7723992 -AT,SK,2,242,201912,1102996 -AT,SK,2,243,201912,1680612 -AT,SK,2,244,201912,2971668 -AT,SK,2,245,201912,29724 -AT,SK,2,251,201912,2212588 -AT,SK,2,252,201912,687671 -AT,SK,2,254,201912,15178 -AT,SK,2,257,201912,4638658 -AT,SK,2,259,201912,5852221 -AT,SK,2,25S,201912,1439452 -AT,SK,2,261,201912,2098373 -AT,SK,2,262,201912,31883035 -AT,SK,2,263,201912,162998912 -AT,SK,2,264,201912,1042974 -AT,SK,2,265,201912,2239711 -AT,SK,2,266,201912,165228 -AT,SK,2,267,201912,262826 -AT,SK,2,268,201912,778 -AT,SK,2,271,201912,5324985 -AT,SK,2,272,201912,8453484 -AT,SK,2,273,201912,1617408 -AT,SK,2,274,201912,3804869 -AT,SK,2,275,201912,1134672 -AT,SK,2,279,201912,2870538 -AT,SK,2,281,201912,3111820 -AT,SK,2,282,201912,8813688 -AT,SK,2,283,201912,429478 -AT,SK,2,284,201912,2905597 -AT,SK,2,289,201912,5108005 -AT,SK,2,291,201912,24201149 -AT,SK,2,292,201912,678207 -AT,SK,2,293,201912,17298035 -AT,SK,2,302,201912,6054153 -AT,SK,2,303,201912,695302 -AT,SK,2,309,201912,1105832 -AT,SK,2,310,201912,2429657 -AT,SK,2,321,201912,1457094 -AT,SK,2,322,201912,2921 -AT,SK,2,323,201912,828691 -AT,SK,2,324,201912,505988 -AT,SK,2,325,201912,1372532 -AT,SK,2,329,201912,619413 -AT,SK,2,32S,201912,21729 -AT,SL,2,201,201912,503 -AT,SL,2,202,201912,286 -AT,SL,2,204,201912,506 -AT,SL,2,205,201912,1448 -AT,SL,2,221,201912,56 -AT,SL,2,222,201912,4397 -AT,SL,2,231,201912,290 -AT,SL,2,259,201912,203 -AT,SL,2,265,201912,6654 -AT,SL,2,267,201912,1492 -AT,SL,2,273,201912,810 -AT,SL,2,275,201912,215 -AT,SL,2,282,201912,1294 -AT,SL,2,289,201912,3920 -AT,SL,2,325,201912,7725 -AT,SL,2,329,201912,63 -AT,SM,1,012,201912,4126 -AT,SM,1,108,201912,1480 -AT,SM,1,172,201912,2315 -AT,SM,1,204,201912,1474 -AT,SM,1,221,201912,1743 -AT,SM,1,222,201912,29 -AT,SM,1,257,201912,1499 -AT,SM,1,259,201912,1018 -AT,SM,1,265,201912,262 -AT,SM,1,271,201912,4231 -AT,SM,1,274,201912,313 -AT,SM,1,275,201912,1340 -AT,SM,1,279,201912,2136 -AT,SM,1,281,201912,2640 -AT,SM,1,282,201912,24889 -AT,SM,1,284,201912,410065 -AT,SM,2,139,201912,162 -AT,SM,2,141,201912,644 -AT,SM,2,143,201912,49 -AT,SM,2,151,201912,132 -AT,SM,2,161,201912,25967 -AT,SM,2,162,201912,33451 -AT,SM,2,171,201912,5419 -AT,SM,2,204,201912,419 -AT,SM,2,221,201912,72 -AT,SM,2,222,201912,1409 -AT,SM,2,231,201912,58 -AT,SM,2,257,201912,70791 -AT,SM,2,259,201912,428 -AT,SM,2,262,201912,3510 -AT,SM,2,265,201912,3370 -AT,SM,2,271,201912,11469 -AT,SM,2,273,201912,160 -AT,SM,2,274,201912,1006 -AT,SM,2,279,201912,13644 -AT,SM,2,281,201912,2483 -AT,SM,2,282,201912,1067 -AT,SM,2,284,201912,41410 -AT,SM,2,289,201912,13891 -AT,SM,2,293,201912,38 -AT,SM,2,309,201912,116736 -AT,SM,2,310,201912,14240 -AT,SM,2,321,201912,5765 -AT,SM,2,323,201912,852 -AT,SM,2,325,201912,66 -AT,SM,2,329,201912,1778 -AT,SN,2,132,201912,1043101 -AT,SN,2,139,201912,203773 -AT,SN,2,151,201912,792 -AT,SN,2,162,201912,74 -AT,SN,2,171,201912,42009 -AT,SN,2,17S,201912,24264 -AT,SN,2,201,201912,45547 -AT,SN,2,205,201912,45432 -AT,SN,2,221,201912,176992 -AT,SN,2,222,201912,3814 -AT,SN,2,259,201912,25 -AT,SN,2,275,201912,7 -AT,SN,2,281,201912,6199 -AT,SN,2,282,201912,7 -AT,SN,2,289,201912,815 -AT,SN,2,329,201912,297 -AT,SV,1,139,201912,25550 -AT,SV,1,141,201912,841 -AT,SV,1,143,201912,343 -AT,SV,1,151,201912,383 -AT,SV,1,279,201912,1775 -AT,SV,2,171,201912,21475 -AT,SV,2,205,201912,2588 -AT,SV,2,212,201912,86729 -AT,SV,2,222,201912,294 -AT,SV,2,259,201912,1020 -AT,SV,2,265,201912,15993 -AT,SV,2,267,201912,1615 -AT,SV,2,271,201912,4907 -AT,SV,2,273,201912,664 -AT,SV,2,279,201912,5491 -AT,SV,2,281,201912,35198 -AT,SV,2,289,201912,20162 -AT,SX,2,103,201912,3412 -AT,SX,2,110,201912,26510 -AT,SY,1,139,201912,10 -AT,SY,1,141,201912,1659 -AT,SY,1,143,201912,13 -AT,SY,1,151,201912,3 -AT,SY,2,141,201912,102 -AT,SY,2,151,201912,7 -AT,SY,2,205,201912,173061 -AT,SY,2,212,201912,149 -AT,SY,2,222,201912,70637 -AT,SY,2,257,201912,127 -AT,SY,2,265,201912,1216 -AT,TD,2,132,201912,700709 -AT,TD,2,139,201912,4320 -AT,TG,1,321,201912,997 -AT,TG,2,139,201912,52706 -AT,TG,2,141,201912,965 -AT,TG,2,152,201912,1325 -AT,TG,2,192,201912,1605 -AT,TG,2,221,201912,399 -AT,TG,2,222,201912,111 -AT,TG,2,257,201912,189 -AT,TG,2,259,201912,121 -AT,TG,2,262,201912,1981 -AT,TG,2,281,201912,1735 -AT,TG,2,282,201912,595 -AT,TG,2,293,201912,100 -AT,TG,2,309,201912,38042 -AT,TG,2,329,201912,88 -AT,TH,1,011,201912,83344 -AT,TH,1,012,201912,91271 -AT,TH,1,014,201912,20987 -AT,TH,1,023,201912,219 -AT,TH,1,089,201912,54 -AT,TH,1,102,201912,369105 -AT,TH,1,103,201912,142912 -AT,TH,1,106,201912,169817 -AT,TH,1,107,201912,7302 -AT,TH,1,108,201912,121535 -AT,TH,1,110,201912,3236 -AT,TH,1,131,201912,83079 -AT,TH,1,132,201912,12381 -AT,TH,1,139,201912,212236 -AT,TH,1,141,201912,684943 -AT,TH,1,143,201912,17436 -AT,TH,1,151,201912,43129 -AT,TH,1,152,201912,1767 -AT,TH,1,162,201912,23948 -AT,TH,1,172,201912,2205 -AT,TH,1,201,201912,319406 -AT,TH,1,204,201912,8971 -AT,TH,1,205,201912,1181723 -AT,TH,1,206,201912,2833 -AT,TH,1,221,201912,157896 -AT,TH,1,222,201912,95550 -AT,TH,1,231,201912,247213 -AT,TH,1,234,201912,73073 -AT,TH,1,239,201912,249960 -AT,TH,1,242,201912,2401 -AT,TH,1,251,201912,104096 -AT,TH,1,257,201912,32530 -AT,TH,1,259,201912,291934 -AT,TH,1,261,201912,1120222 -AT,TH,1,262,201912,20439 -AT,TH,1,263,201912,678315 -AT,TH,1,265,201912,1190114 -AT,TH,1,266,201912,1466 -AT,TH,1,267,201912,12820 -AT,TH,1,268,201912,39444 -AT,TH,1,271,201912,862979 -AT,TH,1,272,201912,12620 -AT,TH,1,273,201912,19168 -AT,TH,1,279,201912,165164 -AT,TH,1,281,201912,50524 -AT,TH,1,282,201912,596681 -AT,TH,1,289,201912,174238 -AT,TH,1,291,201912,496650 -AT,TH,1,293,201912,2743131 -AT,TH,1,303,201912,765 -AT,TH,1,309,201912,24239 -AT,TH,1,310,201912,39250 -AT,TH,1,321,201912,15775992 -AT,TH,1,323,201912,186340 -AT,TH,1,324,201912,3486 -AT,TH,1,325,201912,116512 -AT,TH,1,329,201912,1943 -AT,TH,2,089,201912,52877 -AT,TH,2,101,201912,18933 -AT,TH,2,103,201912,100485 -AT,TH,2,106,201912,2618 -AT,TH,2,108,201912,20160 -AT,TH,2,109,201912,181900 -AT,TH,2,110,201912,35452 -AT,TH,2,132,201912,128209 -AT,TH,2,139,201912,23370 -AT,TH,2,141,201912,4059 -AT,TH,2,151,201912,12158 -AT,TH,2,152,201912,600 -AT,TH,2,161,201912,89096 -AT,TH,2,162,201912,8488 -AT,TH,2,171,201912,58379 -AT,TH,2,172,201912,14179 -AT,TH,2,17S,201912,177928 -AT,TH,2,192,201912,10393 -AT,TH,2,201,201912,1453396 -AT,TH,2,203,201912,11465 -AT,TH,2,204,201912,134649 -AT,TH,2,205,201912,293743 -AT,TH,2,212,201912,231205 -AT,TH,2,221,201912,76452 -AT,TH,2,222,201912,548518 -AT,TH,2,231,201912,536143 -AT,TH,2,232,201912,188099 -AT,TH,2,234,201912,24305 -AT,TH,2,239,201912,113201 -AT,TH,2,241,201912,658631 -AT,TH,2,242,201912,73871 -AT,TH,2,243,201912,87894 -AT,TH,2,244,201912,62026 -AT,TH,2,251,201912,269720 -AT,TH,2,257,201912,790969 -AT,TH,2,259,201912,90830 -AT,TH,2,261,201912,1975136 -AT,TH,2,262,201912,68978 -AT,TH,2,263,201912,65628 -AT,TH,2,264,201912,3064 -AT,TH,2,265,201912,680872 -AT,TH,2,266,201912,635 -AT,TH,2,267,201912,15871 -AT,TH,2,271,201912,771770 -AT,TH,2,272,201912,4753 -AT,TH,2,273,201912,149134 -AT,TH,2,274,201912,8148 -AT,TH,2,275,201912,5089 -AT,TH,2,279,201912,203055 -AT,TH,2,281,201912,320325 -AT,TH,2,282,201912,2221017 -AT,TH,2,283,201912,18729 -AT,TH,2,284,201912,53507 -AT,TH,2,289,201912,2183621 -AT,TH,2,291,201912,844055 -AT,TH,2,293,201912,84075 -AT,TH,2,302,201912,14545689 -AT,TH,2,303,201912,10117 -AT,TH,2,309,201912,3969 -AT,TH,2,310,201912,12111 -AT,TH,2,321,201912,1468426 -AT,TH,2,323,201912,18 -AT,TH,2,324,201912,878 -AT,TH,2,325,201912,66477 -AT,TH,2,329,201912,15774 -AT,TH,2,32S,201912,10004 -AT,TJ,2,267,201912,4618 -AT,TJ,2,273,201912,85571 -AT,TM,2,108,201912,174623 -AT,TM,2,141,201912,7292 -AT,TM,2,143,201912,1596 -AT,TM,2,152,201912,134 -AT,TM,2,162,201912,36 -AT,TM,2,171,201912,142962 -AT,TM,2,192,201912,38959 -AT,TM,2,201,201912,1369 -AT,TM,2,203,201912,60687 -AT,TM,2,205,201912,57546 -AT,TM,2,212,201912,644199 -AT,TM,2,221,201912,156 -AT,TM,2,222,201912,2812 -AT,TM,2,239,201912,408 -AT,TM,2,259,201912,957 -AT,TM,2,262,201912,4388 -AT,TM,2,265,201912,10038 -AT,TM,2,281,201912,9015 -AT,TM,2,282,201912,4160 -AT,TM,2,289,201912,73502 -AT,TM,2,329,201912,44 -AT,TN,1,012,201912,357269 -AT,TN,1,132,201912,100986 -AT,TN,1,139,201912,10483 -AT,TN,1,141,201912,214825 -AT,TN,1,143,201912,13120 -AT,TN,1,151,201912,28953 -AT,TN,1,162,201912,8804 -AT,TN,1,221,201912,63 -AT,TN,1,222,201912,2863 -AT,TN,1,231,201912,32868 -AT,TN,1,237,201912,25104 -AT,TN,1,259,201912,12822 -AT,TN,1,263,201912,4570 -AT,TN,1,265,201912,2124 -AT,TN,1,271,201912,7195 -AT,TN,1,273,201912,486444 -AT,TN,1,279,201912,1115513 -AT,TN,1,282,201912,8430 -AT,TN,1,293,201912,2131419 -AT,TN,1,323,201912,5225 -AT,TN,1,325,201912,120193 -AT,TN,2,108,201912,183269 -AT,TN,2,131,201912,550 -AT,TN,2,132,201912,82219 -AT,TN,2,139,201912,133151 -AT,TN,2,141,201912,15904 -AT,TN,2,151,201912,161500 -AT,TN,2,162,201912,245597 -AT,TN,2,171,201912,238180 -AT,TN,2,172,201912,5910 -AT,TN,2,17S,201912,123629 -AT,TN,2,201,201912,285596 -AT,TN,2,202,201912,19128 -AT,TN,2,205,201912,43860 -AT,TN,2,206,201912,2824 -AT,TN,2,212,201912,1826408 -AT,TN,2,221,201912,65706 -AT,TN,2,222,201912,259798 -AT,TN,2,231,201912,17778 -AT,TN,2,232,201912,571228 -AT,TN,2,234,201912,2175 -AT,TN,2,242,201912,41815 -AT,TN,2,243,201912,9027 -AT,TN,2,244,201912,14106 -AT,TN,2,257,201912,280927 -AT,TN,2,259,201912,13657 -AT,TN,2,261,201912,162 -AT,TN,2,263,201912,53529 -AT,TN,2,265,201912,73451 -AT,TN,2,267,201912,3122 -AT,TN,2,271,201912,352725 -AT,TN,2,273,201912,392613 -AT,TN,2,274,201912,234 -AT,TN,2,279,201912,48259 -AT,TN,2,281,201912,25609 -AT,TN,2,282,201912,67135 -AT,TN,2,289,201912,1713615 -AT,TN,2,291,201912,6499 -AT,TN,2,293,201912,3506 -AT,TN,2,303,201912,10011 -AT,TN,2,310,201912,8774 -AT,TN,2,321,201912,1573 -AT,TN,2,325,201912,35341 -AT,TN,2,329,201912,26087 -AT,TR,1,011,201912,6934758 -AT,TR,1,012,201912,6972993 -AT,TR,1,014,201912,180310 -AT,TR,1,030,201912,47017 -AT,TR,1,072,201912,47134 -AT,TR,1,081,201912,31555 -AT,TR,1,089,201912,1551641 -AT,TR,1,102,201912,2912218 -AT,TR,1,103,201912,4757355 -AT,TR,1,106,201912,143920 -AT,TR,1,107,201912,57442 -AT,TR,1,108,201912,340077 -AT,TR,1,110,201912,402516 -AT,TR,1,120,201912,24468 -AT,TR,1,131,201912,475507 -AT,TR,1,132,201912,421777 -AT,TR,1,139,201912,10074072 -AT,TR,1,141,201912,9109646 -AT,TR,1,142,201912,7861 -AT,TR,1,143,201912,1688452 -AT,TR,1,151,201912,428841 -AT,TR,1,152,201912,149760 -AT,TR,1,162,201912,143930 -AT,TR,1,171,201912,43223 -AT,TR,1,172,201912,620830 -AT,TR,1,181,201912,16984 -AT,TR,1,201,201912,1354449 -AT,TR,1,202,201912,10682 -AT,TR,1,203,201912,8802 -AT,TR,1,204,201912,820776 -AT,TR,1,205,201912,90183 -AT,TR,1,206,201912,13199 -AT,TR,1,211,201912,283 -AT,TR,1,212,201912,276628 -AT,TR,1,221,201912,2801520 -AT,TR,1,222,201912,3657760 -AT,TR,1,231,201912,475598 -AT,TR,1,232,201912,25755 -AT,TR,1,233,201912,238128 -AT,TR,1,234,201912,347474 -AT,TR,1,236,201912,13950 -AT,TR,1,237,201912,212509 -AT,TR,1,239,201912,32918 -AT,TR,1,241,201912,146903 -AT,TR,1,242,201912,70962 -AT,TR,1,243,201912,31764 -AT,TR,1,244,201912,4306362 -AT,TR,1,245,201912,27901 -AT,TR,1,251,201912,1508386 -AT,TR,1,252,201912,532751 -AT,TR,1,254,201912,43591 -AT,TR,1,257,201912,745987 -AT,TR,1,259,201912,3593126 -AT,TR,1,261,201912,3451 -AT,TR,1,262,201912,54362 -AT,TR,1,263,201912,2217 -AT,TR,1,264,201912,135384 -AT,TR,1,265,201912,205529 -AT,TR,1,271,201912,893038 -AT,TR,1,272,201912,733 -AT,TR,1,273,201912,1739909 -AT,TR,1,274,201912,159681 -AT,TR,1,275,201912,3731278 -AT,TR,1,279,201912,167979 -AT,TR,1,281,201912,2987082 -AT,TR,1,282,201912,1244861 -AT,TR,1,283,201912,86012 -AT,TR,1,284,201912,1154073 -AT,TR,1,289,201912,2542405 -AT,TR,1,291,201912,28868504 -AT,TR,1,292,201912,112147 -AT,TR,1,293,201912,3358347 -AT,TR,1,302,201912,1681103 -AT,TR,1,309,201912,45194 -AT,TR,1,310,201912,2311090 -AT,TR,1,321,201912,451014 -AT,TR,1,322,201912,13075 -AT,TR,1,323,201912,468 -AT,TR,1,324,201912,715 -AT,TR,1,325,201912,146048 -AT,TR,1,329,201912,104299 -AT,TR,2,011,201912,7338 -AT,TR,2,012,201912,19423 -AT,TR,2,014,201912,118980 -AT,TR,2,023,201912,1664 -AT,TR,2,081,201912,3 -AT,TR,2,089,201912,21816 -AT,TR,2,103,201912,9772 -AT,TR,2,104,201912,2113 -AT,TR,2,105,201912,249477 -AT,TR,2,106,201912,166239 -AT,TR,2,107,201912,14150 -AT,TR,2,108,201912,191693 -AT,TR,2,109,201912,56320 -AT,TR,2,110,201912,3591653 -AT,TR,2,131,201912,174548 -AT,TR,2,132,201912,499591 -AT,TR,2,139,201912,668340 -AT,TR,2,141,201912,76903 -AT,TR,2,143,201912,3710 -AT,TR,2,151,201912,17506 -AT,TR,2,152,201912,5585 -AT,TR,2,161,201912,91884 -AT,TR,2,162,201912,1303403 -AT,TR,2,171,201912,1280307 -AT,TR,2,172,201912,95054 -AT,TR,2,17S,201912,782806 -AT,TR,2,181,201912,8958 -AT,TR,2,192,201912,112330 -AT,TR,2,201,201912,6557774 -AT,TR,2,202,201912,865395 -AT,TR,2,203,201912,254543 -AT,TR,2,204,201912,187265 -AT,TR,2,205,201912,1051867 -AT,TR,2,206,201912,14126 -AT,TR,2,20S,201912,95487 -AT,TR,2,211,201912,73189 -AT,TR,2,212,201912,1660325 -AT,TR,2,221,201912,420455 -AT,TR,2,222,201912,2283037 -AT,TR,2,231,201912,265718 -AT,TR,2,232,201912,1193865 -AT,TR,2,234,201912,36339 -AT,TR,2,237,201912,1111 -AT,TR,2,239,201912,582444 -AT,TR,2,241,201912,7902971 -AT,TR,2,242,201912,1169407 -AT,TR,2,243,201912,1570932 -AT,TR,2,244,201912,1607377 -AT,TR,2,245,201912,71471 -AT,TR,2,251,201912,398401 -AT,TR,2,252,201912,35634 -AT,TR,2,254,201912,54580 -AT,TR,2,257,201912,2770980 -AT,TR,2,259,201912,2008834 -AT,TR,2,261,201912,373461 -AT,TR,2,262,201912,1408457 -AT,TR,2,263,201912,1546879 -AT,TR,2,264,201912,119464 -AT,TR,2,265,201912,2403955 -AT,TR,2,266,201912,531806 -AT,TR,2,267,201912,922129 -AT,TR,2,268,201912,27 -AT,TR,2,271,201912,5051283 -AT,TR,2,272,201912,684269 -AT,TR,2,273,201912,1858610 -AT,TR,2,274,201912,252235 -AT,TR,2,275,201912,538744 -AT,TR,2,279,201912,2078012 -AT,TR,2,281,201912,1461146 -AT,TR,2,282,201912,1908311 -AT,TR,2,283,201912,156953 -AT,TR,2,284,201912,4153679 -AT,TR,2,289,201912,8757402 -AT,TR,2,291,201912,202646 -AT,TR,2,292,201912,1730343 -AT,TR,2,293,201912,1720864 -AT,TR,2,302,201912,1267835 -AT,TR,2,303,201912,5591367 -AT,TR,2,309,201912,351928 -AT,TR,2,310,201912,25504 -AT,TR,2,321,201912,1288738 -AT,TR,2,323,201912,156601 -AT,TR,2,324,201912,115352 -AT,TR,2,325,201912,2147052 -AT,TR,2,329,201912,68890 -AT,TT,1,110,201912,2152 -AT,TT,1,322,201912,690 -AT,TT,2,139,201912,1005 -AT,TT,2,17S,201912,7249 -AT,TT,2,221,201912,80 -AT,TT,2,222,201912,939 -AT,TT,2,242,201912,73 -AT,TT,2,243,201912,3557 -AT,TT,2,251,201912,61369 -AT,TT,2,259,201912,3262 -AT,TT,2,25S,201912,32004 -AT,TT,2,262,201912,1411 -AT,TT,2,265,201912,30142 -AT,TT,2,279,201912,104967 -AT,TT,2,281,201912,152692 -AT,TT,2,282,201912,445187 -AT,TT,2,289,201912,31846 -AT,TT,2,329,201912,204 -AT,TW,1,108,201912,7452 -AT,TW,1,110,201912,52 -AT,TW,1,120,201912,87 -AT,TW,1,132,201912,141863 -AT,TW,1,139,201912,127656 -AT,TW,1,141,201912,57426 -AT,TW,1,143,201912,4587 -AT,TW,1,151,201912,69081 -AT,TW,1,152,201912,89468 -AT,TW,1,162,201912,16466 -AT,TW,1,172,201912,53065 -AT,TW,1,201,201912,751782 -AT,TW,1,203,201912,11403 -AT,TW,1,204,201912,27743 -AT,TW,1,205,201912,571752 -AT,TW,1,211,201912,99277 -AT,TW,1,212,201912,683 -AT,TW,1,221,201912,315624 -AT,TW,1,222,201912,408097 -AT,TW,1,231,201912,112686 -AT,TW,1,234,201912,10315 -AT,TW,1,239,201912,7360 -AT,TW,1,241,201912,74832 -AT,TW,1,242,201912,8194 -AT,TW,1,244,201912,392996 -AT,TW,1,251,201912,202 -AT,TW,1,254,201912,501935 -AT,TW,1,257,201912,1511130 -AT,TW,1,259,201912,2886204 -AT,TW,1,261,201912,5981059 -AT,TW,1,262,201912,3228083 -AT,TW,1,263,201912,1845087 -AT,TW,1,264,201912,376986 -AT,TW,1,265,201912,595109 -AT,TW,1,266,201912,9066 -AT,TW,1,267,201912,60153 -AT,TW,1,268,201912,65809 -AT,TW,1,271,201912,407429 -AT,TW,1,272,201912,149106 -AT,TW,1,273,201912,534212 -AT,TW,1,274,201912,95940 -AT,TW,1,275,201912,120561 -AT,TW,1,279,201912,2067295 -AT,TW,1,281,201912,412306 -AT,TW,1,282,201912,1586226 -AT,TW,1,283,201912,6649 -AT,TW,1,284,201912,1285317 -AT,TW,1,289,201912,1379148 -AT,TW,1,291,201912,3581 -AT,TW,1,292,201912,30861 -AT,TW,1,293,201912,1281464 -AT,TW,1,303,201912,351 -AT,TW,1,309,201912,4425786 -AT,TW,1,310,201912,386616 -AT,TW,1,321,201912,16990 -AT,TW,1,322,201912,14277 -AT,TW,1,323,201912,429940 -AT,TW,1,324,201912,644678 -AT,TW,1,325,201912,1566065 -AT,TW,1,329,201912,51488 -AT,TW,2,012,201912,144 -AT,TW,2,103,201912,180897 -AT,TW,2,104,201912,7204 -AT,TW,2,105,201912,157852 -AT,TW,2,106,201912,142309 -AT,TW,2,107,201912,3675 -AT,TW,2,108,201912,135461 -AT,TW,2,109,201912,67815 -AT,TW,2,110,201912,39336 -AT,TW,2,132,201912,7329 -AT,TW,2,139,201912,21505 -AT,TW,2,141,201912,38469 -AT,TW,2,142,201912,1144 -AT,TW,2,143,201912,710 -AT,TW,2,151,201912,44937 -AT,TW,2,152,201912,70 -AT,TW,2,161,201912,911874 -AT,TW,2,162,201912,1977264 -AT,TW,2,171,201912,47697 -AT,TW,2,172,201912,233 -AT,TW,2,17S,201912,204388 -AT,TW,2,181,201912,5484 -AT,TW,2,201,201912,375492 -AT,TW,2,203,201912,247167 -AT,TW,2,204,201912,131089 -AT,TW,2,205,201912,262866 -AT,TW,2,212,201912,428673 -AT,TW,2,221,201912,23937 -AT,TW,2,222,201912,358943 -AT,TW,2,231,201912,201960 -AT,TW,2,232,201912,264966 -AT,TW,2,234,201912,104186 -AT,TW,2,239,201912,395300 -AT,TW,2,241,201912,238053 -AT,TW,2,242,201912,4839 -AT,TW,2,243,201912,199938 -AT,TW,2,244,201912,1569186 -AT,TW,2,251,201912,615981 -AT,TW,2,257,201912,449716 -AT,TW,2,259,201912,80032 -AT,TW,2,261,201912,2462823 -AT,TW,2,262,201912,136012 -AT,TW,2,263,201912,904888 -AT,TW,2,264,201912,14429 -AT,TW,2,265,201912,1228820 -AT,TW,2,266,201912,30287 -AT,TW,2,267,201912,88380 -AT,TW,2,268,201912,1592 -AT,TW,2,271,201912,659656 -AT,TW,2,272,201912,141 -AT,TW,2,273,201912,59761 -AT,TW,2,274,201912,26652 -AT,TW,2,275,201912,21872 -AT,TW,2,279,201912,234253 -AT,TW,2,281,201912,491591 -AT,TW,2,282,201912,571045 -AT,TW,2,284,201912,390389 -AT,TW,2,289,201912,54051786 -AT,TW,2,291,201912,532553 -AT,TW,2,293,201912,147410 -AT,TW,2,303,201912,317081 -AT,TW,2,309,201912,127750 -AT,TW,2,310,201912,8807 -AT,TW,2,321,201912,77302 -AT,TW,2,322,201912,55299 -AT,TW,2,323,201912,6386 -AT,TW,2,324,201912,90 -AT,TW,2,325,201912,860748 -AT,TW,2,329,201912,1634 -AT,TW,2,32S,201912,11743 -AT,TZ,1,141,201912,16 -AT,TZ,2,110,201912,155430 -AT,TZ,2,205,201912,2245 -AT,TZ,2,221,201912,186 -AT,TZ,2,259,201912,2392 -AT,TZ,2,265,201912,96970 -AT,TZ,2,281,201912,17595 -AT,TZ,2,282,201912,65522 -AT,TZ,2,289,201912,34521 -AT,TZ,2,329,201912,179 -AT,UA,1,011,201912,3124553 -AT,UA,1,012,201912,3655 -AT,UA,1,014,201912,39389 -AT,UA,1,022,201912,19974 -AT,UA,1,081,201912,24279 -AT,UA,1,089,201912,15065 -AT,UA,1,103,201912,2842047 -AT,UA,1,104,201912,514090 -AT,UA,1,108,201912,305699 -AT,UA,1,110,201912,213 -AT,UA,1,132,201912,35 -AT,UA,1,139,201912,491739 -AT,UA,1,141,201912,246306 -AT,UA,1,143,201912,62074 -AT,UA,1,151,201912,1672 -AT,UA,1,152,201912,75255 -AT,UA,1,161,201912,472986 -AT,UA,1,162,201912,3432238 -AT,UA,1,172,201912,51903 -AT,UA,1,201,201912,273313 -AT,UA,1,203,201912,6441 -AT,UA,1,205,201912,37703 -AT,UA,1,212,201912,2962 -AT,UA,1,221,201912,649 -AT,UA,1,222,201912,72278 -AT,UA,1,231,201912,125566 -AT,UA,1,234,201912,37359 -AT,UA,1,239,201912,34661 -AT,UA,1,241,201912,546213 -AT,UA,1,242,201912,318816 -AT,UA,1,244,201912,203447 -AT,UA,1,251,201912,313738 -AT,UA,1,252,201912,28641 -AT,UA,1,257,201912,22045 -AT,UA,1,259,201912,226408 -AT,UA,1,263,201912,711 -AT,UA,1,265,201912,47026 -AT,UA,1,267,201912,62687 -AT,UA,1,271,201912,10836 -AT,UA,1,273,201912,206101 -AT,UA,1,274,201912,417317 -AT,UA,1,275,201912,145838 -AT,UA,1,279,201912,35154 -AT,UA,1,281,201912,68667 -AT,UA,1,282,201912,11424 -AT,UA,1,283,201912,39761 -AT,UA,1,284,201912,1210 -AT,UA,1,289,201912,44345 -AT,UA,1,292,201912,96 -AT,UA,1,293,201912,2116304 -AT,UA,1,309,201912,1107 -AT,UA,1,310,201912,1127933 -AT,UA,1,321,201912,196 -AT,UA,1,322,201912,519 -AT,UA,1,323,201912,2656152 -AT,UA,1,324,201912,37497 -AT,UA,1,329,201912,32712 -AT,UA,2,011,201912,2169818 -AT,UA,2,012,201912,2406 -AT,UA,2,081,201912,11879 -AT,UA,2,089,201912,16301 -AT,UA,2,101,201912,22330 -AT,UA,2,103,201912,118025 -AT,UA,2,105,201912,330 -AT,UA,2,106,201912,157370 -AT,UA,2,107,201912,9380 -AT,UA,2,108,201912,2050221 -AT,UA,2,109,201912,644850 -AT,UA,2,10S,201912,2375 -AT,UA,2,110,201912,214156 -AT,UA,2,131,201912,5902 -AT,UA,2,132,201912,414865 -AT,UA,2,139,201912,200605 -AT,UA,2,141,201912,189133 -AT,UA,2,143,201912,17147 -AT,UA,2,151,201912,5037 -AT,UA,2,152,201912,278 -AT,UA,2,161,201912,2810 -AT,UA,2,162,201912,1707285 -AT,UA,2,171,201912,1174745 -AT,UA,2,172,201912,245706 -AT,UA,2,17S,201912,700420 -AT,UA,2,192,201912,8940 -AT,UA,2,201,201912,677457 -AT,UA,2,203,201912,427966 -AT,UA,2,204,201912,590528 -AT,UA,2,205,201912,985054 -AT,UA,2,206,201912,2183 -AT,UA,2,20S,201912,237916 -AT,UA,2,211,201912,3391 -AT,UA,2,212,201912,12986102 -AT,UA,2,221,201912,91318 -AT,UA,2,222,201912,1617862 -AT,UA,2,231,201912,99592 -AT,UA,2,232,201912,501976 -AT,UA,2,233,201912,3424 -AT,UA,2,234,201912,99278 -AT,UA,2,236,201912,3175 -AT,UA,2,239,201912,295996 -AT,UA,2,241,201912,249169 -AT,UA,2,242,201912,222179 -AT,UA,2,243,201912,88450 -AT,UA,2,244,201912,96156 -AT,UA,2,245,201912,17396 -AT,UA,2,251,201912,100589 -AT,UA,2,252,201912,253607 -AT,UA,2,254,201912,18102 -AT,UA,2,257,201912,1197368 -AT,UA,2,259,201912,385580 -AT,UA,2,261,201912,547354 -AT,UA,2,262,201912,571259 -AT,UA,2,263,201912,59710 -AT,UA,2,264,201912,36346 -AT,UA,2,265,201912,734868 -AT,UA,2,266,201912,2394180 -AT,UA,2,267,201912,159009 -AT,UA,2,271,201912,369269 -AT,UA,2,272,201912,322097 -AT,UA,2,273,201912,82949 -AT,UA,2,274,201912,142735 -AT,UA,2,275,201912,108309 -AT,UA,2,279,201912,746769 -AT,UA,2,281,201912,1184803 -AT,UA,2,282,201912,3546008 -AT,UA,2,283,201912,641043 -AT,UA,2,284,201912,586745 -AT,UA,2,289,201912,1915926 -AT,UA,2,291,201912,446662 -AT,UA,2,292,201912,81664 -AT,UA,2,293,201912,139219 -AT,UA,2,302,201912,78032 -AT,UA,2,303,201912,23628 -AT,UA,2,309,201912,122241 -AT,UA,2,310,201912,32307 -AT,UA,2,321,201912,18268 -AT,UA,2,323,201912,265516 -AT,UA,2,324,201912,35 -AT,UA,2,325,201912,144643 -AT,UA,2,329,201912,76866 -AT,UG,1,012,201912,12565 -AT,UG,2,110,201912,181335 -AT,UG,2,151,201912,5157 -AT,UG,2,171,201912,14172 -AT,UG,2,201,201912,68956 -AT,UG,2,202,201912,513 -AT,UG,2,204,201912,2355 -AT,UG,2,205,201912,257 -AT,UG,2,221,201912,6233 -AT,UG,2,222,201912,17470 -AT,UG,2,251,201912,10739 -AT,UG,2,257,201912,4853 -AT,UG,2,259,201912,28498 -AT,UG,2,261,201912,32145 -AT,UG,2,262,201912,180 -AT,UG,2,265,201912,1526 -AT,UG,2,271,201912,80767 -AT,UG,2,272,201912,72911 -AT,UG,2,273,201912,16509 -AT,UG,2,274,201912,24223 -AT,UG,2,275,201912,254 -AT,UG,2,279,201912,35606 -AT,UG,2,282,201912,16333 -AT,UG,2,289,201912,139414 -AT,UG,2,303,201912,47785 -AT,UG,2,325,201912,26490 -AT,US,1,011,201912,20387 -AT,US,1,012,201912,9086 -AT,US,1,014,201912,9806 -AT,US,1,030,201912,1678 -AT,US,1,051,201912,8239106 -AT,US,1,081,201912,42143 -AT,US,1,089,201912,57302 -AT,US,1,101,201912,593 -AT,US,1,102,201912,29730 -AT,US,1,103,201912,326563 -AT,US,1,104,201912,86476 -AT,US,1,106,201912,89073 -AT,US,1,107,201912,11379 -AT,US,1,108,201912,426563 -AT,US,1,109,201912,572 -AT,US,1,110,201912,579240 -AT,US,1,131,201912,3481 -AT,US,1,132,201912,57234 -AT,US,1,139,201912,285487 -AT,US,1,141,201912,518423 -AT,US,1,142,201912,26025 -AT,US,1,143,201912,95369 -AT,US,1,151,201912,481850 -AT,US,1,152,201912,254247 -AT,US,1,161,201912,35 -AT,US,1,162,201912,82381 -AT,US,1,171,201912,369468 -AT,US,1,172,201912,119572 -AT,US,1,192,201912,53694 -AT,US,1,201,201912,3315525 -AT,US,1,202,201912,14977 -AT,US,1,203,201912,444061 -AT,US,1,204,201912,877035 -AT,US,1,205,201912,8057170 -AT,US,1,206,201912,34613 -AT,US,1,211,201912,620205 -AT,US,1,212,201912,83505343 -AT,US,1,221,201912,482715 -AT,US,1,222,201912,3448631 -AT,US,1,231,201912,1837691 -AT,US,1,232,201912,145817 -AT,US,1,233,201912,8 -AT,US,1,234,201912,1028996 -AT,US,1,236,201912,63677 -AT,US,1,237,201912,513 -AT,US,1,239,201912,2530679 -AT,US,1,241,201912,7754246 -AT,US,1,242,201912,85232 -AT,US,1,243,201912,321512 -AT,US,1,244,201912,4689843 -AT,US,1,245,201912,4605 -AT,US,1,251,201912,185313 -AT,US,1,252,201912,37705 -AT,US,1,254,201912,369548 -AT,US,1,257,201912,1512081 -AT,US,1,259,201912,1936478 -AT,US,1,261,201912,3104202 -AT,US,1,262,201912,1085630 -AT,US,1,263,201912,968865 -AT,US,1,264,201912,270266 -AT,US,1,265,201912,6156982 -AT,US,1,266,201912,2248923 -AT,US,1,267,201912,1359640 -AT,US,1,268,201912,198603 -AT,US,1,271,201912,1570306 -AT,US,1,272,201912,429837 -AT,US,1,273,201912,1139854 -AT,US,1,274,201912,1257141 -AT,US,1,275,201912,178349 -AT,US,1,279,201912,2207260 -AT,US,1,281,201912,7359200 -AT,US,1,282,201912,4148480 -AT,US,1,283,201912,98376 -AT,US,1,284,201912,176838 -AT,US,1,289,201912,3328994 -AT,US,1,291,201912,358884 -AT,US,1,292,201912,11402 -AT,US,1,293,201912,6309750 -AT,US,1,301,201912,59159 -AT,US,1,302,201912,85429 -AT,US,1,303,201912,6353919 -AT,US,1,309,201912,444117 -AT,US,1,310,201912,727601 -AT,US,1,321,201912,3733933 -AT,US,1,322,201912,206184 -AT,US,1,323,201912,336694 -AT,US,1,324,201912,712108 -AT,US,1,325,201912,4283798 -AT,US,1,329,201912,368648 -AT,US,2,011,201912,108597 -AT,US,2,012,201912,1151 -AT,US,2,014,201912,54359 -AT,US,2,081,201912,462 -AT,US,2,089,201912,104316 -AT,US,2,103,201912,1328553 -AT,US,2,104,201912,36388 -AT,US,2,105,201912,426639 -AT,US,2,106,201912,55927 -AT,US,2,107,201912,241883 -AT,US,2,108,201912,2179631 -AT,US,2,109,201912,704281 -AT,US,2,10S,201912,261884 -AT,US,2,110,201912,62023469 -AT,US,2,131,201912,25329 -AT,US,2,132,201912,226934 -AT,US,2,139,201912,1358337 -AT,US,2,141,201912,1138555 -AT,US,2,142,201912,61775 -AT,US,2,143,201912,575223 -AT,US,2,151,201912,1627809 -AT,US,2,152,201912,1915237 -AT,US,2,161,201912,8109807 -AT,US,2,162,201912,4287159 -AT,US,2,171,201912,1979123 -AT,US,2,172,201912,327679 -AT,US,2,17S,201912,1252477 -AT,US,2,181,201912,2722 -AT,US,2,192,201912,11715 -AT,US,2,201,201912,5855193 -AT,US,2,202,201912,100 -AT,US,2,203,201912,816516 -AT,US,2,204,201912,742385 -AT,US,2,205,201912,6589299 -AT,US,2,206,201912,653898 -AT,US,2,211,201912,25677 -AT,US,2,212,201912,84199527 -AT,US,2,221,201912,1248153 -AT,US,2,222,201912,12996680 -AT,US,2,231,201912,3865739 -AT,US,2,232,201912,2990628 -AT,US,2,234,201912,217176 -AT,US,2,236,201912,52354 -AT,US,2,237,201912,14284 -AT,US,2,239,201912,2770360 -AT,US,2,241,201912,14523782 -AT,US,2,242,201912,10708232 -AT,US,2,243,201912,5100463 -AT,US,2,244,201912,12698037 -AT,US,2,245,201912,8815 -AT,US,2,251,201912,2969716 -AT,US,2,252,201912,478771 -AT,US,2,254,201912,293185 -AT,US,2,257,201912,16405516 -AT,US,2,259,201912,8008248 -AT,US,2,25S,201912,17921245 -AT,US,2,261,201912,5141670 -AT,US,2,262,201912,5701473 -AT,US,2,263,201912,6887153 -AT,US,2,264,201912,1544266 -AT,US,2,265,201912,25836483 -AT,US,2,266,201912,7796646 -AT,US,2,267,201912,8104786 -AT,US,2,268,201912,49602 -AT,US,2,271,201912,34875874 -AT,US,2,272,201912,783789 -AT,US,2,273,201912,3274142 -AT,US,2,274,201912,1095455 -AT,US,2,275,201912,2867354 -AT,US,2,279,201912,11477007 -AT,US,2,281,201912,21824756 -AT,US,2,282,201912,33709068 -AT,US,2,283,201912,2156036 -AT,US,2,284,201912,12645581 -AT,US,2,289,201912,68769429 -AT,US,2,291,201912,76430181 -AT,US,2,292,201912,477027 -AT,US,2,293,201912,8450333 -AT,US,2,301,201912,3702 -AT,US,2,302,201912,1753524 -AT,US,2,303,201912,31666361 -AT,US,2,309,201912,1756448 -AT,US,2,310,201912,1123287 -AT,US,2,321,201912,614726 -AT,US,2,322,201912,466102 -AT,US,2,323,201912,3701329 -AT,US,2,324,201912,2972448 -AT,US,2,325,201912,16509834 -AT,US,2,329,201912,1031534 -AT,US,2,32S,201912,840728 -AT,UY,1,151,201912,3471 -AT,UY,1,171,201912,885621 -AT,UY,2,108,201912,9040 -AT,UY,2,110,201912,43280 -AT,UY,2,139,201912,2143 -AT,UY,2,141,201912,2995 -AT,UY,2,151,201912,100551 -AT,UY,2,152,201912,389 -AT,UY,2,162,201912,152782 -AT,UY,2,171,201912,23948 -AT,UY,2,17S,201912,45721 -AT,UY,2,201,201912,100 -AT,UY,2,212,201912,172659 -AT,UY,2,221,201912,382 -AT,UY,2,222,201912,25541 -AT,UY,2,232,201912,14641 -AT,UY,2,234,201912,143 -AT,UY,2,242,201912,1413 -AT,UY,2,257,201912,111 -AT,UY,2,259,201912,1547 -AT,UY,2,261,201912,5486 -AT,UY,2,265,201912,24112 -AT,UY,2,266,201912,4019 -AT,UY,2,271,201912,15045 -AT,UY,2,273,201912,15044 -AT,UY,2,279,201912,82526 -AT,UY,2,281,201912,68123 -AT,UY,2,282,201912,49707 -AT,UY,2,289,201912,11709 -AT,UY,2,323,201912,8892 -AT,UY,2,324,201912,18756 -AT,UY,2,329,201912,45 -AT,UZ,1,011,201912,12687 -AT,UZ,1,103,201912,88087 -AT,UZ,1,108,201912,6456 -AT,UZ,2,014,201912,491000 -AT,UZ,2,108,201912,408496 -AT,UZ,2,17S,201912,131617 -AT,UZ,2,201,201912,6306 -AT,UZ,2,203,201912,3500 -AT,UZ,2,204,201912,96 -AT,UZ,2,205,201912,208900 -AT,UZ,2,212,201912,2419768 -AT,UZ,2,221,201912,31228 -AT,UZ,2,222,201912,21018 -AT,UZ,2,244,201912,42 -AT,UZ,2,251,201912,28333 -AT,UZ,2,257,201912,9418 -AT,UZ,2,259,201912,210 -AT,UZ,2,265,201912,134302 -AT,UZ,2,266,201912,92690 -AT,UZ,2,267,201912,16891 -AT,UZ,2,271,201912,126315 -AT,UZ,2,273,201912,26 -AT,UZ,2,279,201912,674 -AT,UZ,2,281,201912,1148862 -AT,UZ,2,282,201912,404600 -AT,UZ,2,289,201912,2885063 -AT,VA,1,321,201912,2545 -AT,VA,2,105,201912,22614 -AT,VC,2,324,201912,10062 -AT,VE,1,141,201912,196 -AT,VE,2,151,201912,15 -AT,VE,2,192,201912,3276 -AT,VE,2,203,201912,21 -AT,VE,2,221,201912,136 -AT,VE,2,222,201912,22731 -AT,VE,2,231,201912,5696 -AT,VE,2,232,201912,37631 -AT,VE,2,244,201912,89 -AT,VE,2,251,201912,295 -AT,VE,2,257,201912,3640 -AT,VE,2,259,201912,307 -AT,VE,2,265,201912,4577 -AT,VE,2,271,201912,99 -AT,VE,2,273,201912,30 -AT,VE,2,274,201912,405 -AT,VE,2,275,201912,1614 -AT,VE,2,279,201912,38 -AT,VE,2,281,201912,2139 -AT,VE,2,282,201912,5117 -AT,VE,2,289,201912,23535 -AT,VN,1,012,201912,179859 -AT,VN,1,014,201912,2280 -AT,VN,1,102,201912,202881 -AT,VN,1,103,201912,331545 -AT,VN,1,108,201912,52979 -AT,VN,1,132,201912,109676 -AT,VN,1,139,201912,397337 -AT,VN,1,141,201912,5210423 -AT,VN,1,143,201912,58444 -AT,VN,1,151,201912,315969 -AT,VN,1,152,201912,2564069 -AT,VN,1,162,201912,205559 -AT,VN,1,172,201912,970 -AT,VN,1,212,201912,7026 -AT,VN,1,221,201912,16699 -AT,VN,1,222,201912,198022 -AT,VN,1,231,201912,73 -AT,VN,1,234,201912,76782 -AT,VN,1,236,201912,22129 -AT,VN,1,239,201912,6385 -AT,VN,1,242,201912,304 -AT,VN,1,257,201912,850176 -AT,VN,1,259,201912,859675 -AT,VN,1,261,201912,162685 -AT,VN,1,262,201912,13488382 -AT,VN,1,263,201912,154229768 -AT,VN,1,264,201912,81488 -AT,VN,1,265,201912,13578 -AT,VN,1,266,201912,46157 -AT,VN,1,267,201912,889 -AT,VN,1,271,201912,2197049 -AT,VN,1,272,201912,161577 -AT,VN,1,273,201912,35660 -AT,VN,1,274,201912,39730 -AT,VN,1,279,201912,5632723 -AT,VN,1,281,201912,11498 -AT,VN,1,282,201912,188219 -AT,VN,1,289,201912,46293 -AT,VN,1,293,201912,6057 -AT,VN,1,309,201912,314839 -AT,VN,1,310,201912,1027119 -AT,VN,1,321,201912,2551532 -AT,VN,1,323,201912,63912 -AT,VN,1,324,201912,672403 -AT,VN,1,325,201912,66872 -AT,VN,1,329,201912,54042 -AT,VN,2,012,201912,10550 -AT,VN,2,089,201912,2066 -AT,VN,2,103,201912,47679 -AT,VN,2,108,201912,286186 -AT,VN,2,110,201912,9901 -AT,VN,2,139,201912,855667 -AT,VN,2,141,201912,28 -AT,VN,2,151,201912,30412 -AT,VN,2,152,201912,362 -AT,VN,2,161,201912,70530 -AT,VN,2,162,201912,8600 -AT,VN,2,172,201912,13397 -AT,VN,2,17S,201912,3776 -AT,VN,2,192,201912,15657 -AT,VN,2,201,201912,299602 -AT,VN,2,203,201912,10394 -AT,VN,2,204,201912,912 -AT,VN,2,205,201912,843123 -AT,VN,2,212,201912,2470267 -AT,VN,2,221,201912,81765 -AT,VN,2,222,201912,227139 -AT,VN,2,231,201912,30868 -AT,VN,2,232,201912,20582 -AT,VN,2,234,201912,44 -AT,VN,2,239,201912,46427 -AT,VN,2,241,201912,20156 -AT,VN,2,242,201912,175166 -AT,VN,2,243,201912,184441 -AT,VN,2,244,201912,98399 -AT,VN,2,251,201912,289214 -AT,VN,2,257,201912,423991 -AT,VN,2,259,201912,207804 -AT,VN,2,261,201912,392687 -AT,VN,2,262,201912,200260 -AT,VN,2,263,201912,105453 -AT,VN,2,265,201912,597143 -AT,VN,2,266,201912,200109 -AT,VN,2,267,201912,109667 -AT,VN,2,271,201912,466050 -AT,VN,2,272,201912,153 -AT,VN,2,273,201912,51101 -AT,VN,2,274,201912,76550 -AT,VN,2,275,201912,67919 -AT,VN,2,279,201912,409770 -AT,VN,2,281,201912,1095779 -AT,VN,2,282,201912,13254684 -AT,VN,2,284,201912,3951 -AT,VN,2,289,201912,1674933 -AT,VN,2,293,201912,8633 -AT,VN,2,310,201912,80387 -AT,VN,2,324,201912,180472 -AT,VN,2,325,201912,1214697 -AT,VN,2,329,201912,14165 -AT,WS,2,222,201912,1018 -AT,XC,2,309,201912,39920 -AT,XK,1,012,201912,71919 -AT,XK,1,103,201912,81475 -AT,XK,1,222,201912,62240 -AT,XK,1,251,201912,20687 -AT,XK,1,259,201912,18719 -AT,XK,1,265,201912,236 -AT,XK,1,282,201912,40521 -AT,XK,1,310,201912,22690 -AT,XK,2,012,201912,648 -AT,XK,2,101,201912,90157 -AT,XK,2,103,201912,262517 -AT,XK,2,104,201912,39610 -AT,XK,2,105,201912,125777 -AT,XK,2,106,201912,70613 -AT,XK,2,107,201912,256754 -AT,XK,2,108,201912,262731 -AT,XK,2,109,201912,49288 -AT,XK,2,10S,201912,1598 -AT,XK,2,110,201912,1001679 -AT,XK,2,132,201912,598 -AT,XK,2,139,201912,3105 -AT,XK,2,141,201912,530 -AT,XK,2,151,201912,363 -AT,XK,2,162,201912,236083 -AT,XK,2,171,201912,16441 -AT,XK,2,172,201912,11367 -AT,XK,2,17S,201912,2632 -AT,XK,2,192,201912,11573 -AT,XK,2,201,201912,104984 -AT,XK,2,203,201912,21602 -AT,XK,2,204,201912,76846 -AT,XK,2,205,201912,18415 -AT,XK,2,211,201912,3576 -AT,XK,2,212,201912,246021 -AT,XK,2,221,201912,8295 -AT,XK,2,222,201912,247458 -AT,XK,2,231,201912,57 -AT,XK,2,239,201912,240219 -AT,XK,2,242,201912,848 -AT,XK,2,243,201912,194 -AT,XK,2,244,201912,69999 -AT,XK,2,251,201912,19815 -AT,XK,2,257,201912,336158 -AT,XK,2,259,201912,31689 -AT,XK,2,261,201912,90812 -AT,XK,2,262,201912,174 -AT,XK,2,263,201912,527227 -AT,XK,2,265,201912,91083 -AT,XK,2,266,201912,22000 -AT,XK,2,271,201912,3367 -AT,XK,2,272,201912,90 -AT,XK,2,273,201912,21557 -AT,XK,2,274,201912,46757 -AT,XK,2,275,201912,10632 -AT,XK,2,279,201912,26120 -AT,XK,2,281,201912,503 -AT,XK,2,282,201912,52852 -AT,XK,2,283,201912,4511 -AT,XK,2,284,201912,50771 -AT,XK,2,289,201912,101354 -AT,XK,2,291,201912,533035 -AT,XK,2,293,201912,3840 -AT,XK,2,310,201912,671 -AT,XK,2,321,201912,18855 -AT,XK,2,323,201912,7993 -AT,XK,2,325,201912,32675 -AT,XK,2,329,201912,3631 -AT,XL,2,309,201912,12026 -AT,XS,1,011,201912,4300995 -AT,XS,1,012,201912,41750 -AT,XS,1,089,201912,66042 -AT,XS,1,101,201912,162313 -AT,XS,1,102,201912,11799 -AT,XS,1,103,201912,4482650 -AT,XS,1,104,201912,698155 -AT,XS,1,106,201912,2587 -AT,XS,1,107,201912,305951 -AT,XS,1,108,201912,214396 -AT,XS,1,110,201912,137339 -AT,XS,1,139,201912,108205 -AT,XS,1,141,201912,938048 -AT,XS,1,143,201912,109407 -AT,XS,1,151,201912,500606 -AT,XS,1,152,201912,16780 -AT,XS,1,161,201912,198303 -AT,XS,1,162,201912,392260 -AT,XS,1,171,201912,1150088 -AT,XS,1,172,201912,522108 -AT,XS,1,201,201912,582470 -AT,XS,1,203,201912,116833 -AT,XS,1,204,201912,1960618 -AT,XS,1,205,201912,185944 -AT,XS,1,212,201912,101085 -AT,XS,1,221,201912,257459 -AT,XS,1,222,201912,933121 -AT,XS,1,231,201912,4772968 -AT,XS,1,233,201912,3743 -AT,XS,1,234,201912,195 -AT,XS,1,236,201912,10214 -AT,XS,1,237,201912,1737 -AT,XS,1,239,201912,11282 -AT,XS,1,241,201912,3624253 -AT,XS,1,242,201912,10243 -AT,XS,1,243,201912,20484 -AT,XS,1,244,201912,69615 -AT,XS,1,251,201912,1417548 -AT,XS,1,252,201912,283276 -AT,XS,1,257,201912,198389 -AT,XS,1,259,201912,1074597 -AT,XS,1,261,201912,838702 -AT,XS,1,262,201912,82081 -AT,XS,1,263,201912,44548 -AT,XS,1,264,201912,507961 -AT,XS,1,265,201912,34097 -AT,XS,1,267,201912,12927 -AT,XS,1,271,201912,1228206 -AT,XS,1,272,201912,21695 -AT,XS,1,273,201912,14663 -AT,XS,1,274,201912,2214842 -AT,XS,1,275,201912,635110 -AT,XS,1,279,201912,1503702 -AT,XS,1,281,201912,404835 -AT,XS,1,282,201912,428866 -AT,XS,1,283,201912,78562 -AT,XS,1,284,201912,84163 -AT,XS,1,289,201912,753091 -AT,XS,1,291,201912,216050 -AT,XS,1,292,201912,346446 -AT,XS,1,293,201912,3421136 -AT,XS,1,302,201912,154748 -AT,XS,1,310,201912,1526236 -AT,XS,1,321,201912,825551 -AT,XS,1,323,201912,51424 -AT,XS,1,324,201912,61348 -AT,XS,1,325,201912,6482 -AT,XS,1,329,201912,323687 -AT,XS,2,011,201912,212591 -AT,XS,2,012,201912,49314 -AT,XS,2,081,201912,31994 -AT,XS,2,089,201912,50287 -AT,XS,2,101,201912,344715 -AT,XS,2,103,201912,341961 -AT,XS,2,104,201912,517544 -AT,XS,2,105,201912,39314 -AT,XS,2,106,201912,366744 -AT,XS,2,107,201912,112426 -AT,XS,2,108,201912,1539722 -AT,XS,2,109,201912,258848 -AT,XS,2,10S,201912,14322 -AT,XS,2,110,201912,568121 -AT,XS,2,131,201912,13030 -AT,XS,2,132,201912,341253 -AT,XS,2,139,201912,734998 -AT,XS,2,141,201912,888960 -AT,XS,2,143,201912,305985 -AT,XS,2,151,201912,33536 -AT,XS,2,152,201912,8809 -AT,XS,2,161,201912,386595 -AT,XS,2,162,201912,1498298 -AT,XS,2,171,201912,2093357 -AT,XS,2,172,201912,577287 -AT,XS,2,17S,201912,409803 -AT,XS,2,181,201912,6703 -AT,XS,2,192,201912,83475 -AT,XS,2,201,201912,1564640 -AT,XS,2,202,201912,158473 -AT,XS,2,203,201912,313159 -AT,XS,2,204,201912,720166 -AT,XS,2,205,201912,659529 -AT,XS,2,206,201912,325 -AT,XS,2,20S,201912,399601 -AT,XS,2,211,201912,57302 -AT,XS,2,212,201912,2134610 -AT,XS,2,221,201912,203192 -AT,XS,2,222,201912,1970870 -AT,XS,2,231,201912,2277621 -AT,XS,2,232,201912,315946 -AT,XS,2,233,201912,310 -AT,XS,2,234,201912,36890 -AT,XS,2,236,201912,49138 -AT,XS,2,239,201912,472689 -AT,XS,2,241,201912,803317 -AT,XS,2,242,201912,338676 -AT,XS,2,243,201912,327026 -AT,XS,2,244,201912,857014 -AT,XS,2,245,201912,36883 -AT,XS,2,251,201912,208152 -AT,XS,2,252,201912,593984 -AT,XS,2,253,201912,9692 -AT,XS,2,257,201912,703150 -AT,XS,2,259,201912,912871 -AT,XS,2,25S,201912,72 -AT,XS,2,261,201912,578571 -AT,XS,2,262,201912,130572 -AT,XS,2,263,201912,748102 -AT,XS,2,264,201912,57283 -AT,XS,2,265,201912,1307459 -AT,XS,2,266,201912,44770 -AT,XS,2,267,201912,125639 -AT,XS,2,268,201912,18 -AT,XS,2,271,201912,3100526 -AT,XS,2,272,201912,80116 -AT,XS,2,273,201912,1321876 -AT,XS,2,274,201912,460916 -AT,XS,2,275,201912,130007 -AT,XS,2,279,201912,2247630 -AT,XS,2,281,201912,1018201 -AT,XS,2,282,201912,1218348 -AT,XS,2,283,201912,934841 -AT,XS,2,284,201912,467395 -AT,XS,2,289,201912,1456346 -AT,XS,2,291,201912,1410708 -AT,XS,2,292,201912,273649 -AT,XS,2,293,201912,357435 -AT,XS,2,302,201912,101472 -AT,XS,2,303,201912,15073 -AT,XS,2,309,201912,22421 -AT,XS,2,310,201912,85380 -AT,XS,2,321,201912,104473 -AT,XS,2,322,201912,7481 -AT,XS,2,323,201912,10263 -AT,XS,2,324,201912,2309789 -AT,XS,2,325,201912,248562 -AT,XS,2,329,201912,126164 -AT,YE,2,108,201912,66036 -AT,YE,2,109,201912,43500 -AT,YE,2,110,201912,146750 -AT,YE,2,17S,201912,4006 -AT,YE,2,221,201912,1311 -AT,YE,2,265,201912,1221 -AT,YE,2,281,201912,71512 -AT,YE,2,282,201912,73796 -AT,YE,2,289,201912,114516 -AT,YE,2,325,201912,10580 -AT,ZA,1,103,201912,206474 -AT,ZA,1,110,201912,79689 -AT,ZA,1,139,201912,53816 -AT,ZA,1,141,201912,2515 -AT,ZA,1,143,201912,379 -AT,ZA,1,151,201912,85 -AT,ZA,1,152,201912,800 -AT,ZA,1,162,201912,1107 -AT,ZA,1,201,201912,4642 -AT,ZA,1,203,201912,1964 -AT,ZA,1,204,201912,3830 -AT,ZA,1,205,201912,7915 -AT,ZA,1,212,201912,3560 -AT,ZA,1,221,201912,1330 -AT,ZA,1,222,201912,29632 -AT,ZA,1,239,201912,52529 -AT,ZA,1,244,201912,312144 -AT,ZA,1,257,201912,5598 -AT,ZA,1,259,201912,23787 -AT,ZA,1,262,201912,1372 -AT,ZA,1,263,201912,2403 -AT,ZA,1,264,201912,118 -AT,ZA,1,265,201912,39162 -AT,ZA,1,267,201912,9068 -AT,ZA,1,271,201912,45517 -AT,ZA,1,279,201912,10529 -AT,ZA,1,281,201912,22088 -AT,ZA,1,282,201912,43286 -AT,ZA,1,289,201912,1663 -AT,ZA,1,293,201912,10208 -AT,ZA,1,310,201912,608 -AT,ZA,1,321,201912,1047368 -AT,ZA,1,325,201912,6077 -AT,ZA,1,329,201912,764 -AT,ZA,2,012,201912,647 -AT,ZA,2,103,201912,2133 -AT,ZA,2,106,201912,30702 -AT,ZA,2,107,201912,39365 -AT,ZA,2,108,201912,503861 -AT,ZA,2,109,201912,746952 -AT,ZA,2,110,201912,1692887 -AT,ZA,2,139,201912,152459 -AT,ZA,2,141,201912,38018 -AT,ZA,2,143,201912,1747 -AT,ZA,2,151,201912,13720 -AT,ZA,2,152,201912,23613 -AT,ZA,2,161,201912,17767 -AT,ZA,2,162,201912,615720 -AT,ZA,2,171,201912,1953994 -AT,ZA,2,172,201912,17164 -AT,ZA,2,17S,201912,882630 -AT,ZA,2,192,201912,26 -AT,ZA,2,201,201912,413659 -AT,ZA,2,203,201912,49708 -AT,ZA,2,204,201912,50630 -AT,ZA,2,205,201912,902164 -AT,ZA,2,211,201912,490 -AT,ZA,2,212,201912,2453702 -AT,ZA,2,221,201912,21737 -AT,ZA,2,222,201912,491530 -AT,ZA,2,231,201912,46663 -AT,ZA,2,232,201912,833491 -AT,ZA,2,234,201912,88501 -AT,ZA,2,239,201912,155975 -AT,ZA,2,241,201912,2640863 -AT,ZA,2,242,201912,66684 -AT,ZA,2,243,201912,475718 -AT,ZA,2,244,201912,54044 -AT,ZA,2,251,201912,8727 -AT,ZA,2,252,201912,97519 -AT,ZA,2,254,201912,7566 -AT,ZA,2,257,201912,770929 -AT,ZA,2,259,201912,203648 -AT,ZA,2,261,201912,194196 -AT,ZA,2,262,201912,18716 -AT,ZA,2,263,201912,141403 -AT,ZA,2,264,201912,2458 -AT,ZA,2,265,201912,819132 -AT,ZA,2,266,201912,64107 -AT,ZA,2,267,201912,74830 -AT,ZA,2,268,201912,138 -AT,ZA,2,271,201912,219907 -AT,ZA,2,272,201912,197405 -AT,ZA,2,273,201912,429411 -AT,ZA,2,274,201912,94154 -AT,ZA,2,275,201912,60997 -AT,ZA,2,279,201912,235197 -AT,ZA,2,281,201912,488559 -AT,ZA,2,282,201912,1126142 -AT,ZA,2,283,201912,89578 -AT,ZA,2,284,201912,842101 -AT,ZA,2,289,201912,1528685 -AT,ZA,2,291,201912,17335434 -AT,ZA,2,292,201912,8611 -AT,ZA,2,293,201912,56525 -AT,ZA,2,302,201912,29270 -AT,ZA,2,303,201912,1317530 -AT,ZA,2,309,201912,1589775 -AT,ZA,2,310,201912,52063 -AT,ZA,2,321,201912,147900 -AT,ZA,2,323,201912,6207 -AT,ZA,2,324,201912,476369 -AT,ZA,2,325,201912,188181 -AT,ZA,2,329,201912,107601 -AT,ZM,2,141,201912,4 -AT,ZM,2,205,201912,510 -AT,ZM,2,221,201912,1602 -AT,ZM,2,222,201912,24054 -AT,ZM,2,232,201912,48919 -AT,ZM,2,257,201912,26 -AT,ZM,2,259,201912,1818 -AT,ZM,2,265,201912,858 -AT,ZM,2,281,201912,11886 -AT,ZM,2,282,201912,120 -AT,ZM,2,289,201912,152293 -AT,ZM,2,324,201912,2 -AT,ZM,2,325,201912,3 -AT,ZW,2,265,201912,10243 -BE,AD,2,120,201912,78896 -BE,AD,2,139,201912,5771 -BE,AD,2,141,201912,174481 -BE,AD,2,143,201912,32664 -BE,AD,2,151,201912,27982 -BE,AD,2,152,201912,151208 -BE,AD,2,162,201912,5626 -BE,AD,2,192,201912,523 -BE,AD,2,204,201912,535 -BE,AD,2,205,201912,328 -BE,AD,2,221,201912,1884 -BE,AD,2,222,201912,855 -BE,AD,2,231,201912,5 -BE,AD,2,239,201912,713 -BE,AD,2,257,201912,3103 -BE,AD,2,259,201912,118 -BE,AD,2,273,201912,138 -BE,AD,2,274,201912,860 -BE,AD,2,275,201912,1199 -BE,AD,2,281,201912,3111 -BE,AD,2,282,201912,2154 -BE,AD,2,293,201912,2088 -BE,AD,2,309,201912,108 -BE,AD,2,310,201912,2836 -BE,AD,2,323,201912,1152 -BE,AD,2,325,201912,60 -BE,AD,2,329,201912,149 -BE,AE,1,081,201912,200 -BE,AE,1,089,201912,69999016 -BE,AE,1,108,201912,136 -BE,AE,1,110,201912,17281 -BE,AE,1,131,201912,92119 -BE,AE,1,132,201912,136561 -BE,AE,1,139,201912,92534 -BE,AE,1,141,201912,23866 -BE,AE,1,143,201912,588 -BE,AE,1,151,201912,1215 -BE,AE,1,152,201912,219 -BE,AE,1,172,201912,594 -BE,AE,1,192,201912,2025329 -BE,AE,1,201,201912,896179 -BE,AE,1,204,201912,399485 -BE,AE,1,205,201912,11016 -BE,AE,1,206,201912,764867 -BE,AE,1,212,201912,67 -BE,AE,1,221,201912,585484 -BE,AE,1,222,201912,140466 -BE,AE,1,231,201912,247378 -BE,AE,1,233,201912,555469 -BE,AE,1,234,201912,85510 -BE,AE,1,239,201912,303 -BE,AE,1,242,201912,178929 -BE,AE,1,244,201912,2071310 -BE,AE,1,251,201912,41158 -BE,AE,1,257,201912,12015 -BE,AE,1,259,201912,45192 -BE,AE,1,261,201912,1410 -BE,AE,1,262,201912,8119 -BE,AE,1,263,201912,32794 -BE,AE,1,264,201912,181395 -BE,AE,1,265,201912,121317 -BE,AE,1,266,201912,6128 -BE,AE,1,267,201912,13158 -BE,AE,1,268,201912,858 -BE,AE,1,271,201912,459124 -BE,AE,1,273,201912,10867 -BE,AE,1,274,201912,219 -BE,AE,1,275,201912,263 -BE,AE,1,279,201912,59065 -BE,AE,1,281,201912,146010 -BE,AE,1,282,201912,18982 -BE,AE,1,284,201912,7334 -BE,AE,1,289,201912,545145 -BE,AE,1,291,201912,171376 -BE,AE,1,293,201912,110059 -BE,AE,1,303,201912,221223 -BE,AE,1,309,201912,208893 -BE,AE,1,310,201912,1190 -BE,AE,1,321,201912,5867339 -BE,AE,1,325,201912,1762 -BE,AE,1,329,201912,4795 -BE,AE,2,011,201912,96028 -BE,AE,2,012,201912,101093 -BE,AE,2,013,201912,189830 -BE,AE,2,014,201912,620287 -BE,AE,2,022,201912,162941 -BE,AE,2,081,201912,12304 -BE,AE,2,089,201912,175169749 -BE,AE,2,101,201912,160449 -BE,AE,2,103,201912,2265325 -BE,AE,2,104,201912,37242 -BE,AE,2,105,201912,1511707 -BE,AE,2,106,201912,380415 -BE,AE,2,107,201912,1665660 -BE,AE,2,108,201912,3294231 -BE,AE,2,109,201912,427689 -BE,AE,2,110,201912,2899515 -BE,AE,2,120,201912,405348 -BE,AE,2,132,201912,122754 -BE,AE,2,139,201912,1373658 -BE,AE,2,141,201912,1644223 -BE,AE,2,143,201912,88950 -BE,AE,2,151,201912,364322 -BE,AE,2,152,201912,7361 -BE,AE,2,161,201912,168046 -BE,AE,2,162,201912,270911 -BE,AE,2,171,201912,2810604 -BE,AE,2,172,201912,350174 -BE,AE,2,192,201912,1143676 -BE,AE,2,201,201912,6388290 -BE,AE,2,202,201912,158445 -BE,AE,2,203,201912,2370975 -BE,AE,2,204,201912,4472558 -BE,AE,2,205,201912,7413904 -BE,AE,2,206,201912,497235 -BE,AE,2,211,201912,280563 -BE,AE,2,212,201912,15129671 -BE,AE,2,221,201912,2064418 -BE,AE,2,222,201912,2355824 -BE,AE,2,231,201912,1767937 -BE,AE,2,232,201912,3330 -BE,AE,2,234,201912,19123 -BE,AE,2,236,201912,20062 -BE,AE,2,237,201912,118117 -BE,AE,2,239,201912,66698 -BE,AE,2,241,201912,3004857 -BE,AE,2,242,201912,1585888 -BE,AE,2,243,201912,48248 -BE,AE,2,244,201912,3055055 -BE,AE,2,245,201912,11522 -BE,AE,2,251,201912,580889 -BE,AE,2,252,201912,7149 -BE,AE,2,253,201912,881725 -BE,AE,2,257,201912,376641 -BE,AE,2,259,201912,687542 -BE,AE,2,261,201912,13534 -BE,AE,2,262,201912,656079 -BE,AE,2,263,201912,1185587 -BE,AE,2,264,201912,199647 -BE,AE,2,265,201912,2170998 -BE,AE,2,266,201912,994107 -BE,AE,2,267,201912,158123 -BE,AE,2,271,201912,2204786 -BE,AE,2,272,201912,155695 -BE,AE,2,273,201912,539828 -BE,AE,2,274,201912,526422 -BE,AE,2,275,201912,691256 -BE,AE,2,279,201912,464289 -BE,AE,2,281,201912,5144723 -BE,AE,2,282,201912,5801729 -BE,AE,2,283,201912,425634 -BE,AE,2,284,201912,40583 -BE,AE,2,289,201912,1990100 -BE,AE,2,291,201912,3377929 -BE,AE,2,292,201912,9500 -BE,AE,2,293,201912,881428 -BE,AE,2,302,201912,4764453 -BE,AE,2,303,201912,257645 -BE,AE,2,309,201912,96078 -BE,AE,2,310,201912,141440 -BE,AE,2,321,201912,45251603 -BE,AE,2,323,201912,55320 -BE,AE,2,324,201912,64898 -BE,AE,2,325,201912,5044159 -BE,AE,2,329,201912,687707 -BE,AF,1,103,201912,10020 -BE,AF,1,141,201912,95 -BE,AF,2,101,201912,10329 -BE,AF,2,108,201912,56166 -BE,AF,2,139,201912,9988 -BE,AF,2,141,201912,766 -BE,AF,2,171,201912,19 -BE,AF,2,201,201912,43900 -BE,AF,2,205,201912,299656 -BE,AF,2,212,201912,5476652 -BE,AF,2,222,201912,2568 -BE,AF,2,257,201912,657232 -BE,AF,2,259,201912,5220 -BE,AF,2,262,201912,22337 -BE,AF,2,263,201912,20861 -BE,AF,2,265,201912,35910 -BE,AF,2,272,201912,5735 -BE,AF,2,273,201912,522 -BE,AF,2,279,201912,1673 -BE,AF,2,281,201912,162 -BE,AF,2,325,201912,351543 -BE,AG,2,105,201912,43141 -BE,AG,2,259,201912,1660 -BE,AG,2,273,201912,19624 -BE,AI,1,259,201912,4 -BE,AI,2,110,201912,24756 -BE,AL,1,139,201912,343 -BE,AL,1,204,201912,26330 -BE,AL,1,222,201912,2750 -BE,AL,1,237,201912,8553 -BE,AL,1,259,201912,314 -BE,AL,1,271,201912,334 -BE,AL,1,282,201912,213 -BE,AL,1,310,201912,42512 -BE,AL,2,101,201912,21214 -BE,AL,2,103,201912,80408 -BE,AL,2,104,201912,32399 -BE,AL,2,107,201912,284 -BE,AL,2,108,201912,1009419 -BE,AL,2,110,201912,56601 -BE,AL,2,120,201912,7374 -BE,AL,2,141,201912,14108 -BE,AL,2,151,201912,4157 -BE,AL,2,162,201912,16566 -BE,AL,2,171,201912,30668 -BE,AL,2,172,201912,10379 -BE,AL,2,192,201912,58107 -BE,AL,2,201,201912,51850 -BE,AL,2,205,201912,152011 -BE,AL,2,212,201912,87409 -BE,AL,2,221,201912,59354 -BE,AL,2,222,201912,54191 -BE,AL,2,231,201912,40290 -BE,AL,2,257,201912,916 -BE,AL,2,259,201912,740 -BE,AL,2,261,201912,6988 -BE,AL,2,264,201912,10 -BE,AL,2,265,201912,24743 -BE,AL,2,266,201912,11600 -BE,AL,2,267,201912,1364 -BE,AL,2,271,201912,9439 -BE,AL,2,273,201912,119 -BE,AL,2,274,201912,127 -BE,AL,2,279,201912,10513 -BE,AL,2,281,201912,48207 -BE,AL,2,282,201912,147875 -BE,AL,2,289,201912,3353 -BE,AL,2,291,201912,422493 -BE,AL,2,292,201912,13850 -BE,AL,2,293,201912,5710 -BE,AL,2,310,201912,0 -BE,AL,2,321,201912,2996 -BE,AL,2,325,201912,95072 -BE,AL,2,329,201912,19 -BE,AM,1,011,201912,666 -BE,AM,1,012,201912,3796 -BE,AM,1,072,201912,591268 -BE,AM,1,103,201912,78703 -BE,AM,1,106,201912,6865 -BE,AM,1,108,201912,7606 -BE,AM,1,110,201912,42026 -BE,AM,1,201,201912,10483 -BE,AM,1,244,201912,2238352 -BE,AM,1,271,201912,184 -BE,AM,1,321,201912,1260018 -BE,AM,2,089,201912,81253 -BE,AM,2,101,201912,25328 -BE,AM,2,104,201912,79064 -BE,AM,2,108,201912,18108 -BE,AM,2,110,201912,1190 -BE,AM,2,120,201912,90486 -BE,AM,2,139,201912,2438 -BE,AM,2,141,201912,22 -BE,AM,2,151,201912,9186 -BE,AM,2,162,201912,372 -BE,AM,2,172,201912,8692 -BE,AM,2,192,201912,126 -BE,AM,2,201,201912,74522 -BE,AM,2,205,201912,102922 -BE,AM,2,212,201912,70797 -BE,AM,2,221,201912,5465 -BE,AM,2,222,201912,288217 -BE,AM,2,231,201912,2053 -BE,AM,2,234,201912,322 -BE,AM,2,237,201912,216 -BE,AM,2,252,201912,617 -BE,AM,2,257,201912,9 -BE,AM,2,259,201912,1802 -BE,AM,2,265,201912,771 -BE,AM,2,266,201912,247198 -BE,AM,2,271,201912,92 -BE,AM,2,273,201912,64053 -BE,AM,2,274,201912,179 -BE,AM,2,279,201912,1727 -BE,AM,2,281,201912,79078 -BE,AM,2,282,201912,34722 -BE,AM,2,289,201912,338405 -BE,AM,2,291,201912,77728 -BE,AM,2,293,201912,792 -BE,AM,2,310,201912,171 -BE,AM,2,321,201912,897055 -BE,AM,2,325,201912,231442 -BE,AM,2,329,201912,956 -BE,AO,1,089,201912,19511652 -BE,AO,1,282,201912,327 -BE,AO,2,011,201912,9161 -BE,AO,2,030,201912,866 -BE,AO,2,101,201912,37982 -BE,AO,2,103,201912,67364 -BE,AO,2,105,201912,37782 -BE,AO,2,106,201912,391916 -BE,AO,2,108,201912,372046 -BE,AO,2,109,201912,3432 -BE,AO,2,110,201912,93326 -BE,AO,2,139,201912,81487 -BE,AO,2,141,201912,56196 -BE,AO,2,151,201912,10 -BE,AO,2,171,201912,12959 -BE,AO,2,172,201912,827 -BE,AO,2,192,201912,40082313 -BE,AO,2,201,201912,768920 -BE,AO,2,202,201912,195230 -BE,AO,2,203,201912,173306 -BE,AO,2,204,201912,19412 -BE,AO,2,205,201912,845766 -BE,AO,2,212,201912,664461 -BE,AO,2,221,201912,164598 -BE,AO,2,222,201912,90238 -BE,AO,2,231,201912,42622 -BE,AO,2,234,201912,381 -BE,AO,2,239,201912,195240 -BE,AO,2,241,201912,42847 -BE,AO,2,242,201912,123756 -BE,AO,2,244,201912,982 -BE,AO,2,257,201912,7816 -BE,AO,2,259,201912,356474 -BE,AO,2,262,201912,5181 -BE,AO,2,263,201912,16877 -BE,AO,2,264,201912,355 -BE,AO,2,265,201912,22071 -BE,AO,2,266,201912,14061 -BE,AO,2,271,201912,467014 -BE,AO,2,272,201912,4999 -BE,AO,2,273,201912,5901 -BE,AO,2,274,201912,1388 -BE,AO,2,275,201912,4612 -BE,AO,2,279,201912,5708 -BE,AO,2,281,201912,345071 -BE,AO,2,282,201912,614579 -BE,AO,2,283,201912,5937 -BE,AO,2,284,201912,145 -BE,AO,2,289,201912,366222 -BE,AO,2,291,201912,443550 -BE,AO,2,292,201912,1200 -BE,AO,2,293,201912,35814 -BE,AO,2,309,201912,1812 -BE,AO,2,310,201912,8151 -BE,AO,2,323,201912,20602 -BE,AO,2,324,201912,840 -BE,AO,2,325,201912,13082 -BE,AR,1,011,201912,447355 -BE,AR,1,012,201912,113517 -BE,AR,1,014,201912,688632 -BE,AR,1,101,201912,942993 -BE,AR,1,102,201912,425900 -BE,AR,1,103,201912,744026 -BE,AR,1,104,201912,9212980 -BE,AR,1,106,201912,112596 -BE,AR,1,108,201912,138758 -BE,AR,1,110,201912,600836 -BE,AR,1,120,201912,220486 -BE,AR,1,139,201912,230627 -BE,AR,1,141,201912,1096 -BE,AR,1,151,201912,7712 -BE,AR,1,201,201912,463815 -BE,AR,1,202,201912,796916 -BE,AR,1,205,201912,11704268 -BE,AR,1,212,201912,73 -BE,AR,1,221,201912,686 -BE,AR,1,222,201912,39 -BE,AR,1,231,201912,10041 -BE,AR,1,257,201912,1099 -BE,AR,1,259,201912,258 -BE,AR,1,265,201912,27521 -BE,AR,1,271,201912,3025 -BE,AR,1,273,201912,14224 -BE,AR,1,281,201912,123925 -BE,AR,1,282,201912,746 -BE,AR,1,289,201912,2940 -BE,AR,1,293,201912,213764 -BE,AR,1,309,201912,21 -BE,AR,1,321,201912,345 -BE,AR,1,329,201912,943 -BE,AR,2,089,201912,2188 -BE,AR,2,103,201912,357547 -BE,AR,2,104,201912,197911 -BE,AR,2,106,201912,111865 -BE,AR,2,107,201912,12476 -BE,AR,2,108,201912,119945 -BE,AR,2,109,201912,65113 -BE,AR,2,110,201912,282363 -BE,AR,2,120,201912,61516 -BE,AR,2,139,201912,45218 -BE,AR,2,171,201912,104151 -BE,AR,2,172,201912,40992 -BE,AR,2,192,201912,1126018 -BE,AR,2,201,201912,2664568 -BE,AR,2,202,201912,189229 -BE,AR,2,203,201912,155356 -BE,AR,2,204,201912,112646 -BE,AR,2,205,201912,1549189 -BE,AR,2,206,201912,83618 -BE,AR,2,211,201912,121528 -BE,AR,2,212,201912,5778932 -BE,AR,2,221,201912,337021 -BE,AR,2,222,201912,798683 -BE,AR,2,231,201912,101358 -BE,AR,2,234,201912,189205 -BE,AR,2,239,201912,2314 -BE,AR,2,241,201912,610727 -BE,AR,2,242,201912,207734 -BE,AR,2,244,201912,89740 -BE,AR,2,257,201912,85348 -BE,AR,2,259,201912,198507 -BE,AR,2,261,201912,9191 -BE,AR,2,262,201912,4453 -BE,AR,2,263,201912,88204 -BE,AR,2,264,201912,94816 -BE,AR,2,265,201912,534851 -BE,AR,2,266,201912,59727 -BE,AR,2,267,201912,5904 -BE,AR,2,271,201912,148228 -BE,AR,2,273,201912,42502 -BE,AR,2,274,201912,38121 -BE,AR,2,275,201912,97117 -BE,AR,2,279,201912,132267 -BE,AR,2,281,201912,1264111 -BE,AR,2,282,201912,650616 -BE,AR,2,283,201912,170104 -BE,AR,2,284,201912,51065 -BE,AR,2,289,201912,722130 -BE,AR,2,291,201912,403404 -BE,AR,2,293,201912,1192079 -BE,AR,2,310,201912,5974 -BE,AR,2,325,201912,945743 -BE,AR,2,329,201912,1154 -BE,AT,1,011,201912,186606 -BE,AT,1,012,201912,47022 -BE,AT,1,014,201912,10321 -BE,AT,1,022,201912,6023 -BE,AT,1,023,201912,8352 -BE,AT,1,081,201912,26198 -BE,AT,1,089,201912,699050 -BE,AT,1,101,201912,479481 -BE,AT,1,103,201912,2742030 -BE,AT,1,104,201912,230246 -BE,AT,1,105,201912,724475 -BE,AT,1,106,201912,549863 -BE,AT,1,107,201912,1309590 -BE,AT,1,108,201912,1171187 -BE,AT,1,109,201912,197806 -BE,AT,1,110,201912,12911088 -BE,AT,1,131,201912,130333 -BE,AT,1,132,201912,134988 -BE,AT,1,139,201912,674512 -BE,AT,1,141,201912,508205 -BE,AT,1,143,201912,205932 -BE,AT,1,151,201912,78185 -BE,AT,1,152,201912,429503 -BE,AT,1,161,201912,120510 -BE,AT,1,162,201912,1124680 -BE,AT,1,171,201912,11774722 -BE,AT,1,172,201912,517020 -BE,AT,1,181,201912,2293 -BE,AT,1,192,201912,676948 -BE,AT,1,201,201912,12155202 -BE,AT,1,202,201912,775533 -BE,AT,1,203,201912,1193756 -BE,AT,1,204,201912,636680 -BE,AT,1,205,201912,3421298 -BE,AT,1,206,201912,246300 -BE,AT,1,212,201912,8605843 -BE,AT,1,221,201912,710191 -BE,AT,1,222,201912,5254709 -BE,AT,1,231,201912,302079 -BE,AT,1,232,201912,225592 -BE,AT,1,233,201912,101396 -BE,AT,1,234,201912,14085 -BE,AT,1,236,201912,251025 -BE,AT,1,239,201912,711864 -BE,AT,1,241,201912,1737487 -BE,AT,1,242,201912,401007 -BE,AT,1,243,201912,309359 -BE,AT,1,244,201912,5315686 -BE,AT,1,245,201912,322930 -BE,AT,1,251,201912,827236 -BE,AT,1,252,201912,351710 -BE,AT,1,254,201912,1356 -BE,AT,1,257,201912,4208277 -BE,AT,1,259,201912,1785149 -BE,AT,1,261,201912,152352 -BE,AT,1,262,201912,384090 -BE,AT,1,263,201912,564317 -BE,AT,1,264,201912,661507 -BE,AT,1,265,201912,1508028 -BE,AT,1,266,201912,356147 -BE,AT,1,267,201912,326945 -BE,AT,1,268,201912,36415 -BE,AT,1,271,201912,2259995 -BE,AT,1,272,201912,109949 -BE,AT,1,273,201912,981005 -BE,AT,1,274,201912,2726994 -BE,AT,1,275,201912,799940 -BE,AT,1,279,201912,1372801 -BE,AT,1,281,201912,5934898 -BE,AT,1,282,201912,8611563 -BE,AT,1,283,201912,4258809 -BE,AT,1,284,201912,406167 -BE,AT,1,289,201912,2506395 -BE,AT,1,291,201912,58655058 -BE,AT,1,292,201912,864463 -BE,AT,1,293,201912,2960563 -BE,AT,1,302,201912,117739 -BE,AT,1,303,201912,412873 -BE,AT,1,304,201912,6984 -BE,AT,1,309,201912,2389608 -BE,AT,1,310,201912,768640 -BE,AT,1,321,201912,1196142 -BE,AT,1,323,201912,396105 -BE,AT,1,324,201912,497232 -BE,AT,1,325,201912,9596856 -BE,AT,1,329,201912,195081 -BE,AT,2,011,201912,296499 -BE,AT,2,012,201912,4596813 -BE,AT,2,013,201912,5641 -BE,AT,2,014,201912,117579 -BE,AT,2,030,201912,2404 -BE,AT,2,051,201912,37455 -BE,AT,2,072,201912,3018 -BE,AT,2,081,201912,374172 -BE,AT,2,089,201912,292783 -BE,AT,2,101,201912,553439 -BE,AT,2,102,201912,1395519 -BE,AT,2,103,201912,4274720 -BE,AT,2,104,201912,634103 -BE,AT,2,105,201912,1168480 -BE,AT,2,106,201912,934508 -BE,AT,2,107,201912,861307 -BE,AT,2,108,201912,5186951 -BE,AT,2,109,201912,451037 -BE,AT,2,110,201912,845812 -BE,AT,2,120,201912,9261 -BE,AT,2,131,201912,175082 -BE,AT,2,132,201912,532963 -BE,AT,2,139,201912,1478414 -BE,AT,2,141,201912,5063496 -BE,AT,2,142,201912,58 -BE,AT,2,143,201912,1506278 -BE,AT,2,151,201912,1165765 -BE,AT,2,152,201912,3443668 -BE,AT,2,161,201912,91210 -BE,AT,2,162,201912,435788 -BE,AT,2,171,201912,1171569 -BE,AT,2,172,201912,535986 -BE,AT,2,192,201912,4707918 -BE,AT,2,201,201912,31873881 -BE,AT,2,202,201912,5449799 -BE,AT,2,203,201912,1938627 -BE,AT,2,204,201912,5822577 -BE,AT,2,205,201912,3825283 -BE,AT,2,206,201912,928172 -BE,AT,2,211,201912,1188932 -BE,AT,2,212,201912,28728078 -BE,AT,2,221,201912,2007688 -BE,AT,2,222,201912,5523734 -BE,AT,2,231,201912,589849 -BE,AT,2,232,201912,2225 -BE,AT,2,233,201912,1315 -BE,AT,2,234,201912,280019 -BE,AT,2,236,201912,11847 -BE,AT,2,237,201912,3434 -BE,AT,2,239,201912,439026 -BE,AT,2,241,201912,5295291 -BE,AT,2,242,201912,154956 -BE,AT,2,243,201912,97013 -BE,AT,2,244,201912,8805888 -BE,AT,2,245,201912,1808 -BE,AT,2,251,201912,647279 -BE,AT,2,252,201912,66099 -BE,AT,2,254,201912,54340 -BE,AT,2,257,201912,1144424 -BE,AT,2,259,201912,1114079 -BE,AT,2,261,201912,3222705 -BE,AT,2,262,201912,1529548 -BE,AT,2,263,201912,757712 -BE,AT,2,264,201912,2548475 -BE,AT,2,265,201912,3673571 -BE,AT,2,266,201912,1475389 -BE,AT,2,267,201912,552140 -BE,AT,2,268,201912,805 -BE,AT,2,271,201912,1354901 -BE,AT,2,272,201912,1854127 -BE,AT,2,273,201912,1088428 -BE,AT,2,274,201912,736155 -BE,AT,2,275,201912,890879 -BE,AT,2,279,201912,1143004 -BE,AT,2,281,201912,5704718 -BE,AT,2,282,201912,7054104 -BE,AT,2,283,201912,6639800 -BE,AT,2,284,201912,1021129 -BE,AT,2,289,201912,2446055 -BE,AT,2,291,201912,51621982 -BE,AT,2,292,201912,343491 -BE,AT,2,293,201912,7953378 -BE,AT,2,301,201912,333 -BE,AT,2,302,201912,90911 -BE,AT,2,303,201912,58996 -BE,AT,2,309,201912,1108971 -BE,AT,2,310,201912,555524 -BE,AT,2,321,201912,1655173 -BE,AT,2,322,201912,140523 -BE,AT,2,323,201912,386313 -BE,AT,2,324,201912,142366 -BE,AT,2,325,201912,10533362 -BE,AT,2,329,201912,402360 -BE,AU,1,011,201912,106695 -BE,AU,1,012,201912,61776 -BE,AU,1,051,201912,13277037 -BE,AU,1,089,201912,12640585 -BE,AU,1,101,201912,584104 -BE,AU,1,103,201912,387222 -BE,AU,1,108,201912,5059 -BE,AU,1,110,201912,693745 -BE,AU,1,131,201912,92851 -BE,AU,1,139,201912,2869 -BE,AU,1,141,201912,72687 -BE,AU,1,143,201912,863 -BE,AU,1,151,201912,130022 -BE,AU,1,152,201912,1250 -BE,AU,1,171,201912,32091 -BE,AU,1,172,201912,922 -BE,AU,1,192,201912,4794 -BE,AU,1,201,201912,674815 -BE,AU,1,204,201912,11291 -BE,AU,1,205,201912,333751 -BE,AU,1,211,201912,16261 -BE,AU,1,212,201912,5547689 -BE,AU,1,221,201912,170437 -BE,AU,1,222,201912,6573 -BE,AU,1,231,201912,22018 -BE,AU,1,234,201912,3007 -BE,AU,1,239,201912,7066 -BE,AU,1,242,201912,1549 -BE,AU,1,244,201912,10957 -BE,AU,1,245,201912,80 -BE,AU,1,251,201912,65867 -BE,AU,1,257,201912,354278 -BE,AU,1,259,201912,123298 -BE,AU,1,261,201912,17316 -BE,AU,1,262,201912,31936 -BE,AU,1,263,201912,150546 -BE,AU,1,264,201912,40740 -BE,AU,1,265,201912,80612 -BE,AU,1,266,201912,21339 -BE,AU,1,267,201912,23466 -BE,AU,1,271,201912,1117416 -BE,AU,1,272,201912,122 -BE,AU,1,273,201912,8212 -BE,AU,1,274,201912,9368 -BE,AU,1,275,201912,2808 -BE,AU,1,279,201912,190815 -BE,AU,1,281,201912,146609 -BE,AU,1,282,201912,301743 -BE,AU,1,283,201912,39945 -BE,AU,1,284,201912,56530 -BE,AU,1,289,201912,123245 -BE,AU,1,291,201912,157791 -BE,AU,1,293,201912,311253 -BE,AU,1,302,201912,151112 -BE,AU,1,309,201912,19462 -BE,AU,1,310,201912,2691 -BE,AU,1,321,201912,344976 -BE,AU,1,322,201912,2750 -BE,AU,1,323,201912,4120 -BE,AU,1,324,201912,21590 -BE,AU,1,325,201912,276926 -BE,AU,1,329,201912,100322 -BE,AU,2,014,201912,150 -BE,AU,2,081,201912,5841 -BE,AU,2,089,201912,261179 -BE,AU,2,101,201912,15963 -BE,AU,2,103,201912,3671290 -BE,AU,2,104,201912,45611 -BE,AU,2,105,201912,918624 -BE,AU,2,106,201912,1448813 -BE,AU,2,107,201912,1639766 -BE,AU,2,108,201912,2977990 -BE,AU,2,109,201912,154376 -BE,AU,2,110,201912,679003 -BE,AU,2,120,201912,325331 -BE,AU,2,131,201912,1504 -BE,AU,2,132,201912,452029 -BE,AU,2,139,201912,1486678 -BE,AU,2,141,201912,401822 -BE,AU,2,143,201912,45514 -BE,AU,2,151,201912,477243 -BE,AU,2,152,201912,68430 -BE,AU,2,161,201912,4534 -BE,AU,2,162,201912,1233523 -BE,AU,2,171,201912,699979 -BE,AU,2,172,201912,1532407 -BE,AU,2,192,201912,1314474 -BE,AU,2,201,201912,8611360 -BE,AU,2,202,201912,633234 -BE,AU,2,203,201912,1694706 -BE,AU,2,204,201912,3185231 -BE,AU,2,205,201912,2336413 -BE,AU,2,206,201912,2537555 -BE,AU,2,211,201912,2723941 -BE,AU,2,212,201912,28915570 -BE,AU,2,221,201912,912331 -BE,AU,2,222,201912,4622482 -BE,AU,2,231,201912,231491 -BE,AU,2,232,201912,46804 -BE,AU,2,233,201912,123 -BE,AU,2,234,201912,53068 -BE,AU,2,235,201912,12311 -BE,AU,2,236,201912,128160 -BE,AU,2,239,201912,397983 -BE,AU,2,241,201912,2421562 -BE,AU,2,242,201912,212414 -BE,AU,2,243,201912,204944 -BE,AU,2,244,201912,356626 -BE,AU,2,245,201912,6574 -BE,AU,2,251,201912,146171 -BE,AU,2,252,201912,57987 -BE,AU,2,257,201912,262306 -BE,AU,2,259,201912,915813 -BE,AU,2,261,201912,54653 -BE,AU,2,262,201912,355807 -BE,AU,2,263,201912,454918 -BE,AU,2,264,201912,120519 -BE,AU,2,265,201912,596029 -BE,AU,2,266,201912,3754437 -BE,AU,2,267,201912,95259 -BE,AU,2,271,201912,675870 -BE,AU,2,272,201912,9028 -BE,AU,2,273,201912,431553 -BE,AU,2,274,201912,413148 -BE,AU,2,275,201912,541124 -BE,AU,2,279,201912,493880 -BE,AU,2,281,201912,5267794 -BE,AU,2,282,201912,3555478 -BE,AU,2,283,201912,693602 -BE,AU,2,284,201912,472566 -BE,AU,2,289,201912,2919128 -BE,AU,2,291,201912,10593739 -BE,AU,2,292,201912,64608 -BE,AU,2,293,201912,2813865 -BE,AU,2,302,201912,87349 -BE,AU,2,303,201912,6526 -BE,AU,2,309,201912,189524 -BE,AU,2,310,201912,315591 -BE,AU,2,321,201912,151111 -BE,AU,2,323,201912,21790 -BE,AU,2,324,201912,253074 -BE,AU,2,325,201912,6567702 -BE,AU,2,329,201912,39937 -BE,AW,2,013,201912,2789 -BE,AW,2,089,201912,600 -BE,AW,2,103,201912,56134 -BE,AW,2,105,201912,12712 -BE,AW,2,106,201912,9936 -BE,AW,2,107,201912,12104 -BE,AW,2,108,201912,22775 -BE,AW,2,110,201912,37486 -BE,AW,2,172,201912,1022 -BE,AW,2,205,201912,163 -BE,AW,2,222,201912,4427 -BE,AW,2,231,201912,45 -BE,AW,2,257,201912,86 -BE,AW,2,325,201912,42881 -BE,AZ,2,012,201912,161342 -BE,AZ,2,014,201912,24464 -BE,AZ,2,108,201912,46804 -BE,AZ,2,110,201912,153774 -BE,AZ,2,120,201912,38527 -BE,AZ,2,139,201912,1787 -BE,AZ,2,141,201912,39819 -BE,AZ,2,151,201912,15 -BE,AZ,2,172,201912,7822 -BE,AZ,2,192,201912,221630 -BE,AZ,2,201,201912,183064 -BE,AZ,2,202,201912,11126 -BE,AZ,2,205,201912,366600 -BE,AZ,2,212,201912,152841 -BE,AZ,2,221,201912,538389 -BE,AZ,2,222,201912,57473 -BE,AZ,2,231,201912,350 -BE,AZ,2,234,201912,1856 -BE,AZ,2,239,201912,96 -BE,AZ,2,257,201912,1 -BE,AZ,2,259,201912,30986 -BE,AZ,2,262,201912,1448 -BE,AZ,2,263,201912,68010 -BE,AZ,2,264,201912,2828 -BE,AZ,2,265,201912,619 -BE,AZ,2,271,201912,4342 -BE,AZ,2,272,201912,11633 -BE,AZ,2,273,201912,1064 -BE,AZ,2,274,201912,21816 -BE,AZ,2,279,201912,461 -BE,AZ,2,281,201912,52247 -BE,AZ,2,282,201912,160350 -BE,AZ,2,291,201912,555620 -BE,AZ,2,293,201912,9090 -BE,AZ,2,325,201912,66593 -BE,AZ,2,329,201912,32164 -BE,BA,1,103,201912,144584 -BE,BA,1,141,201912,176135 -BE,BA,1,151,201912,101 -BE,BA,1,152,201912,4630 -BE,BA,1,161,201912,161290 -BE,BA,1,162,201912,57167 -BE,BA,1,201,201912,3202 -BE,BA,1,222,201912,63087 -BE,BA,1,231,201912,39795 -BE,BA,1,232,201912,2218 -BE,BA,1,244,201912,2589 -BE,BA,1,251,201912,195331 -BE,BA,1,257,201912,5094 -BE,BA,1,259,201912,160187 -BE,BA,1,262,201912,180 -BE,BA,1,265,201912,2067 -BE,BA,1,271,201912,5389 -BE,BA,1,273,201912,3323 -BE,BA,1,275,201912,204034 -BE,BA,1,279,201912,1141 -BE,BA,1,281,201912,6311 -BE,BA,1,282,201912,231958 -BE,BA,1,293,201912,4392 -BE,BA,1,310,201912,249278 -BE,BA,1,324,201912,1920 -BE,BA,1,329,201912,138902 -BE,BA,2,012,201912,91650 -BE,BA,2,101,201912,396290 -BE,BA,2,103,201912,275902 -BE,BA,2,104,201912,48178 -BE,BA,2,105,201912,116435 -BE,BA,2,107,201912,19643 -BE,BA,2,108,201912,308821 -BE,BA,2,132,201912,33841 -BE,BA,2,139,201912,245437 -BE,BA,2,141,201912,11214 -BE,BA,2,143,201912,6084 -BE,BA,2,151,201912,6252 -BE,BA,2,161,201912,13769 -BE,BA,2,162,201912,30938 -BE,BA,2,171,201912,360 -BE,BA,2,172,201912,7055 -BE,BA,2,192,201912,78790 -BE,BA,2,201,201912,763907 -BE,BA,2,203,201912,48080 -BE,BA,2,204,201912,28685 -BE,BA,2,205,201912,11057 -BE,BA,2,212,201912,43926 -BE,BA,2,221,201912,90628 -BE,BA,2,222,201912,133580 -BE,BA,2,231,201912,4555 -BE,BA,2,232,201912,14236 -BE,BA,2,239,201912,1710 -BE,BA,2,241,201912,95976 -BE,BA,2,242,201912,1825 -BE,BA,2,243,201912,6068 -BE,BA,2,244,201912,701513 -BE,BA,2,245,201912,27 -BE,BA,2,251,201912,19176 -BE,BA,2,252,201912,30619 -BE,BA,2,257,201912,46147 -BE,BA,2,259,201912,88242 -BE,BA,2,261,201912,340 -BE,BA,2,262,201912,18893 -BE,BA,2,263,201912,1419 -BE,BA,2,265,201912,9038 -BE,BA,2,267,201912,43 -BE,BA,2,271,201912,7778 -BE,BA,2,272,201912,850 -BE,BA,2,273,201912,7284 -BE,BA,2,274,201912,14112 -BE,BA,2,275,201912,8318 -BE,BA,2,279,201912,5481 -BE,BA,2,281,201912,141511 -BE,BA,2,282,201912,202186 -BE,BA,2,284,201912,72199 -BE,BA,2,289,201912,312407 -BE,BA,2,291,201912,268221 -BE,BA,2,292,201912,4410 -BE,BA,2,293,201912,60973 -BE,BA,2,310,201912,7649 -BE,BA,2,321,201912,2360 -BE,BA,2,322,201912,616 -BE,BA,2,325,201912,120895 -BE,BA,2,329,201912,25225 -BE,BB,2,103,201912,55597 -BE,BB,2,110,201912,62105 -BE,BB,2,201,201912,43614 -BE,BB,2,325,201912,662 -BE,BD,1,011,201912,45118 -BE,BD,1,102,201912,4684346 -BE,BD,1,120,201912,263449 -BE,BD,1,131,201912,242629 -BE,BD,1,132,201912,23659 -BE,BD,1,139,201912,1306497 -BE,BD,1,141,201912,47485693 -BE,BD,1,143,201912,10967375 -BE,BD,1,151,201912,2174921 -BE,BD,1,152,201912,551983 -BE,BD,1,162,201912,13976 -BE,BD,1,172,201912,240 -BE,BD,1,221,201912,80 -BE,BD,1,222,201912,401302 -BE,BD,1,234,201912,134008 -BE,BD,1,244,201912,58981 -BE,BD,1,271,201912,10306 -BE,BD,1,324,201912,723303 -BE,BD,1,325,201912,7774 -BE,BD,1,329,201912,8522 -BE,BD,2,103,201912,114012 -BE,BD,2,105,201912,243000 -BE,BD,2,108,201912,2180654 -BE,BD,2,109,201912,432951 -BE,BD,2,110,201912,54442 -BE,BD,2,131,201912,306121 -BE,BD,2,139,201912,43368 -BE,BD,2,162,201912,448 -BE,BD,2,192,201912,173901 -BE,BD,2,201,201912,717462 -BE,BD,2,202,201912,107 -BE,BD,2,203,201912,57839 -BE,BD,2,204,201912,313585 -BE,BD,2,205,201912,1318264 -BE,BD,2,212,201912,2487142 -BE,BD,2,221,201912,48001 -BE,BD,2,222,201912,184602 -BE,BD,2,239,201912,17788 -BE,BD,2,241,201912,3032724 -BE,BD,2,242,201912,3648 -BE,BD,2,243,201912,272137 -BE,BD,2,244,201912,63984 -BE,BD,2,252,201912,58779 -BE,BD,2,257,201912,205990 -BE,BD,2,259,201912,18169 -BE,BD,2,262,201912,262020 -BE,BD,2,263,201912,22827 -BE,BD,2,264,201912,20880 -BE,BD,2,265,201912,28707 -BE,BD,2,266,201912,112244 -BE,BD,2,271,201912,82430 -BE,BD,2,273,201912,21145 -BE,BD,2,274,201912,3070 -BE,BD,2,279,201912,22280 -BE,BD,2,281,201912,803127 -BE,BD,2,282,201912,301697 -BE,BD,2,283,201912,25768 -BE,BD,2,289,201912,560456 -BE,BD,2,293,201912,2843 -BE,BD,2,325,201912,405157 -BE,BF,1,011,201912,64913 -BE,BF,1,103,201912,227593 -BE,BF,1,104,201912,47300 -BE,BF,1,151,201912,123 -BE,BF,2,014,201912,19112 -BE,BF,2,109,201912,24925 -BE,BF,2,110,201912,161062 -BE,BF,2,139,201912,6737 -BE,BF,2,141,201912,13576 -BE,BF,2,172,201912,26989 -BE,BF,2,192,201912,63121 -BE,BF,2,201,201912,288710 -BE,BF,2,203,201912,8679 -BE,BF,2,204,201912,35080 -BE,BF,2,205,201912,148888 -BE,BF,2,212,201912,19085 -BE,BF,2,221,201912,115378 -BE,BF,2,222,201912,15965 -BE,BF,2,231,201912,1171 -BE,BF,2,239,201912,39450 -BE,BF,2,241,201912,217 -BE,BF,2,242,201912,40841 -BE,BF,2,244,201912,425 -BE,BF,2,257,201912,37471 -BE,BF,2,259,201912,8420 -BE,BF,2,262,201912,7449 -BE,BF,2,263,201912,10471 -BE,BF,2,265,201912,256305 -BE,BF,2,267,201912,8160 -BE,BF,2,271,201912,34710 -BE,BF,2,272,201912,184 -BE,BF,2,273,201912,2800 -BE,BF,2,274,201912,26 -BE,BF,2,275,201912,14196 -BE,BF,2,279,201912,2429 -BE,BF,2,281,201912,335566 -BE,BF,2,282,201912,199351 -BE,BF,2,284,201912,2707 -BE,BF,2,289,201912,798183 -BE,BF,2,291,201912,4715968 -BE,BF,2,292,201912,18930 -BE,BF,2,293,201912,86295 -BE,BF,2,309,201912,2009 -BE,BF,2,310,201912,3320 -BE,BF,2,324,201912,25 -BE,BF,2,325,201912,481 -BE,BG,1,011,201912,1507826 -BE,BG,1,012,201912,773 -BE,BG,1,101,201912,1875322 -BE,BG,1,102,201912,232763 -BE,BG,1,103,201912,81317 -BE,BG,1,104,201912,23978 -BE,BG,1,105,201912,18850 -BE,BG,1,106,201912,58998 -BE,BG,1,107,201912,36741 -BE,BG,1,108,201912,163300 -BE,BG,1,109,201912,322948 -BE,BG,1,110,201912,128990 -BE,BG,1,120,201912,10570 -BE,BG,1,131,201912,4802 -BE,BG,1,132,201912,36891 -BE,BG,1,139,201912,860022 -BE,BG,1,141,201912,1840702 -BE,BG,1,143,201912,2860996 -BE,BG,1,151,201912,12681 -BE,BG,1,152,201912,10549 -BE,BG,1,162,201912,27517 -BE,BG,1,171,201912,2064 -BE,BG,1,172,201912,34187 -BE,BG,1,201,201912,186887 -BE,BG,1,202,201912,21279 -BE,BG,1,203,201912,306 -BE,BG,1,204,201912,120331 -BE,BG,1,205,201912,318374 -BE,BG,1,212,201912,133529 -BE,BG,1,221,201912,506657 -BE,BG,1,222,201912,652737 -BE,BG,1,231,201912,3923971 -BE,BG,1,233,201912,13960 -BE,BG,1,241,201912,10836 -BE,BG,1,242,201912,419670 -BE,BG,1,243,201912,2171 -BE,BG,1,244,201912,28850653 -BE,BG,1,251,201912,648661 -BE,BG,1,254,201912,262 -BE,BG,1,257,201912,232140 -BE,BG,1,259,201912,306828 -BE,BG,1,261,201912,439916 -BE,BG,1,262,201912,28749 -BE,BG,1,263,201912,56965 -BE,BG,1,264,201912,401023 -BE,BG,1,265,201912,109159 -BE,BG,1,267,201912,968 -BE,BG,1,271,201912,564588 -BE,BG,1,272,201912,430811 -BE,BG,1,273,201912,223399 -BE,BG,1,274,201912,49778 -BE,BG,1,275,201912,962460 -BE,BG,1,279,201912,90670 -BE,BG,1,281,201912,204040 -BE,BG,1,282,201912,9007183 -BE,BG,1,283,201912,18414 -BE,BG,1,284,201912,12271 -BE,BG,1,289,201912,367724 -BE,BG,1,291,201912,2490895 -BE,BG,1,292,201912,28520 -BE,BG,1,293,201912,368415 -BE,BG,1,301,201912,5268 -BE,BG,1,309,201912,7963929 -BE,BG,1,310,201912,90635 -BE,BG,1,321,201912,987 -BE,BG,1,323,201912,10 -BE,BG,1,325,201912,22233 -BE,BG,1,329,201912,2946 -BE,BG,2,011,201912,8727 -BE,BG,2,012,201912,41884 -BE,BG,2,013,201912,4144 -BE,BG,2,014,201912,612 -BE,BG,2,022,201912,29 -BE,BG,2,030,201912,297 -BE,BG,2,081,201912,17043 -BE,BG,2,089,201912,158 -BE,BG,2,101,201912,2976827 -BE,BG,2,102,201912,95440 -BE,BG,2,103,201912,542654 -BE,BG,2,104,201912,117889 -BE,BG,2,105,201912,626672 -BE,BG,2,106,201912,219021 -BE,BG,2,107,201912,155915 -BE,BG,2,108,201912,583871 -BE,BG,2,109,201912,217733 -BE,BG,2,110,201912,142318 -BE,BG,2,120,201912,16242 -BE,BG,2,131,201912,11914 -BE,BG,2,132,201912,311086 -BE,BG,2,139,201912,800153 -BE,BG,2,141,201912,1295608 -BE,BG,2,142,201912,556 -BE,BG,2,143,201912,322313 -BE,BG,2,151,201912,272280 -BE,BG,2,152,201912,658793 -BE,BG,2,162,201912,140277 -BE,BG,2,171,201912,18723 -BE,BG,2,172,201912,49376 -BE,BG,2,192,201912,708983 -BE,BG,2,201,201912,4343366 -BE,BG,2,202,201912,397235 -BE,BG,2,203,201912,233616 -BE,BG,2,204,201912,1157853 -BE,BG,2,205,201912,1095646 -BE,BG,2,206,201912,1021217 -BE,BG,2,211,201912,155467 -BE,BG,2,212,201912,3426766 -BE,BG,2,221,201912,640118 -BE,BG,2,222,201912,1039014 -BE,BG,2,231,201912,77618 -BE,BG,2,234,201912,15817 -BE,BG,2,236,201912,22 -BE,BG,2,239,201912,40253 -BE,BG,2,241,201912,430642 -BE,BG,2,242,201912,14483 -BE,BG,2,243,201912,182415 -BE,BG,2,244,201912,292309 -BE,BG,2,245,201912,8274 -BE,BG,2,251,201912,69516 -BE,BG,2,252,201912,6286 -BE,BG,2,254,201912,433 -BE,BG,2,257,201912,282228 -BE,BG,2,259,201912,619886 -BE,BG,2,261,201912,1177499 -BE,BG,2,262,201912,298534 -BE,BG,2,263,201912,183806 -BE,BG,2,264,201912,550227 -BE,BG,2,265,201912,170995 -BE,BG,2,266,201912,113726 -BE,BG,2,267,201912,25448 -BE,BG,2,271,201912,305150 -BE,BG,2,272,201912,201853 -BE,BG,2,273,201912,1141668 -BE,BG,2,274,201912,90897 -BE,BG,2,275,201912,218386 -BE,BG,2,279,201912,132326 -BE,BG,2,281,201912,1528401 -BE,BG,2,282,201912,1179985 -BE,BG,2,283,201912,4087510 -BE,BG,2,284,201912,197439 -BE,BG,2,289,201912,1488722 -BE,BG,2,291,201912,12231371 -BE,BG,2,292,201912,484554 -BE,BG,2,293,201912,582529 -BE,BG,2,301,201912,1624 -BE,BG,2,309,201912,48098 -BE,BG,2,310,201912,90807 -BE,BG,2,321,201912,122957 -BE,BG,2,322,201912,22483 -BE,BG,2,323,201912,32527 -BE,BG,2,324,201912,22471 -BE,BG,2,325,201912,722504 -BE,BG,2,329,201912,184414 -BE,BH,1,141,201912,25358 -BE,BH,1,192,201912,6652422 -BE,BH,1,271,201912,1079 -BE,BH,1,281,201912,110 -BE,BH,1,302,201912,3030 -BE,BH,1,324,201912,35374 -BE,BH,1,329,201912,82510 -BE,BH,2,011,201912,50242 -BE,BH,2,012,201912,18263 -BE,BH,2,014,201912,12145 -BE,BH,2,030,201912,19 -BE,BH,2,081,201912,145 -BE,BH,2,089,201912,22 -BE,BH,2,103,201912,269040 -BE,BH,2,105,201912,1938251 -BE,BH,2,106,201912,990 -BE,BH,2,107,201912,48121 -BE,BH,2,108,201912,136309 -BE,BH,2,109,201912,51715 -BE,BH,2,110,201912,136144 -BE,BH,2,132,201912,119 -BE,BH,2,139,201912,17825 -BE,BH,2,141,201912,371 -BE,BH,2,151,201912,2302 -BE,BH,2,162,201912,734 -BE,BH,2,171,201912,225334 -BE,BH,2,172,201912,26142 -BE,BH,2,192,201912,470091 -BE,BH,2,201,201912,177427 -BE,BH,2,202,201912,5020 -BE,BH,2,203,201912,52437 -BE,BH,2,204,201912,118550 -BE,BH,2,205,201912,198435 -BE,BH,2,212,201912,640980 -BE,BH,2,221,201912,49878 -BE,BH,2,222,201912,23507 -BE,BH,2,231,201912,38011 -BE,BH,2,232,201912,364 -BE,BH,2,234,201912,285 -BE,BH,2,239,201912,1900 -BE,BH,2,241,201912,67852 -BE,BH,2,242,201912,1406 -BE,BH,2,244,201912,16856 -BE,BH,2,252,201912,7576 -BE,BH,2,257,201912,44669 -BE,BH,2,259,201912,22761 -BE,BH,2,262,201912,39141 -BE,BH,2,263,201912,11492 -BE,BH,2,264,201912,26046 -BE,BH,2,265,201912,209635 -BE,BH,2,266,201912,220283 -BE,BH,2,271,201912,25949 -BE,BH,2,272,201912,631 -BE,BH,2,273,201912,2168 -BE,BH,2,274,201912,56 -BE,BH,2,275,201912,14625 -BE,BH,2,279,201912,6308 -BE,BH,2,281,201912,586645 -BE,BH,2,282,201912,220437 -BE,BH,2,283,201912,2231 -BE,BH,2,284,201912,453 -BE,BH,2,289,201912,86544 -BE,BH,2,291,201912,232379 -BE,BH,2,293,201912,6527 -BE,BH,2,309,201912,274 -BE,BH,2,325,201912,880714 -BE,BH,2,329,201912,62159 -BE,BI,1,012,201912,489897 -BE,BI,1,271,201912,119 -BE,BI,2,102,201912,8735 -BE,BI,2,103,201912,10432 -BE,BI,2,104,201912,27726 -BE,BI,2,105,201912,4065 -BE,BI,2,106,201912,12859 -BE,BI,2,107,201912,13322 -BE,BI,2,108,201912,249838 -BE,BI,2,109,201912,5369 -BE,BI,2,110,201912,448401 -BE,BI,2,139,201912,6027 -BE,BI,2,152,201912,59 -BE,BI,2,172,201912,33045 -BE,BI,2,201,201912,34404 -BE,BI,2,202,201912,11668 -BE,BI,2,204,201912,118932 -BE,BI,2,205,201912,47103 -BE,BI,2,212,201912,286285 -BE,BI,2,222,201912,16324 -BE,BI,2,231,201912,15 -BE,BI,2,244,201912,5154 -BE,BI,2,257,201912,4004 -BE,BI,2,259,201912,5268 -BE,BI,2,262,201912,42860 -BE,BI,2,265,201912,132571 -BE,BI,2,271,201912,3545 -BE,BI,2,273,201912,1256 -BE,BI,2,275,201912,1103 -BE,BI,2,279,201912,1433 -BE,BI,2,281,201912,2606 -BE,BI,2,282,201912,8005 -BE,BI,2,284,201912,3115 -BE,BI,2,289,201912,94096 -BE,BI,2,291,201912,79566 -BE,BI,2,293,201912,10161 -BE,BI,2,310,201912,9500 -BE,BI,2,325,201912,56486 -BE,BJ,1,012,201912,73802 -BE,BJ,1,103,201912,88 -BE,BJ,1,265,201912,13495 -BE,BJ,2,011,201912,15042 -BE,BJ,2,101,201912,625161 -BE,BJ,2,103,201912,58968 -BE,BJ,2,104,201912,7769 -BE,BJ,2,108,201912,318661 -BE,BJ,2,109,201912,23954 -BE,BJ,2,110,201912,157239 -BE,BJ,2,139,201912,1543 -BE,BJ,2,141,201912,87371 -BE,BJ,2,171,201912,388 -BE,BJ,2,172,201912,428 -BE,BJ,2,192,201912,81258 -BE,BJ,2,201,201912,75423 -BE,BJ,2,202,201912,17 -BE,BJ,2,203,201912,4873 -BE,BJ,2,204,201912,607 -BE,BJ,2,205,201912,173640 -BE,BJ,2,212,201912,1146034 -BE,BJ,2,221,201912,4977 -BE,BJ,2,222,201912,1188 -BE,BJ,2,231,201912,21320 -BE,BJ,2,242,201912,115 -BE,BJ,2,244,201912,3000 -BE,BJ,2,257,201912,1559 -BE,BJ,2,259,201912,11463 -BE,BJ,2,262,201912,21398 -BE,BJ,2,265,201912,129 -BE,BJ,2,271,201912,21744 -BE,BJ,2,274,201912,98 -BE,BJ,2,275,201912,8410 -BE,BJ,2,279,201912,95 -BE,BJ,2,281,201912,21739 -BE,BJ,2,282,201912,134487 -BE,BJ,2,283,201912,24100 -BE,BJ,2,289,201912,929473 -BE,BJ,2,291,201912,4059777 -BE,BJ,2,292,201912,138908 -BE,BJ,2,293,201912,30751 -BE,BJ,2,310,201912,50990 -BE,BJ,2,324,201912,1000 -BE,BJ,2,325,201912,6030 -BE,BL,2,139,201912,1321 -BE,BL,2,274,201912,16790 -BE,BL,2,282,201912,187 -BE,BN,2,103,201912,28504 -BE,BN,2,110,201912,15477 -BE,BN,2,212,201912,58025 -BE,BN,2,221,201912,5623 -BE,BN,2,222,201912,1522 -BE,BN,2,241,201912,171 -BE,BN,2,251,201912,41508 -BE,BN,2,281,201912,177041 -BE,BO,1,011,201912,567 -BE,BO,1,072,201912,2214957 -BE,BO,1,221,201912,9 -BE,BO,1,281,201912,64 -BE,BO,2,103,201912,25400 -BE,BO,2,151,201912,2317 -BE,BO,2,172,201912,2964 -BE,BO,2,201,201912,98783 -BE,BO,2,202,201912,7180 -BE,BO,2,203,201912,3291 -BE,BO,2,205,201912,4255 -BE,BO,2,212,201912,3072 -BE,BO,2,221,201912,73385 -BE,BO,2,222,201912,525 -BE,BO,2,241,201912,3471 -BE,BO,2,242,201912,12 -BE,BO,2,257,201912,222 -BE,BO,2,259,201912,6713 -BE,BO,2,262,201912,1164 -BE,BO,2,265,201912,41898 -BE,BO,2,267,201912,30816 -BE,BO,2,271,201912,782 -BE,BO,2,273,201912,917 -BE,BO,2,274,201912,352 -BE,BO,2,279,201912,4104 -BE,BO,2,281,201912,157940 -BE,BO,2,282,201912,118999 -BE,BO,2,289,201912,135221 -BE,BO,2,291,201912,2175000 -BE,BO,2,292,201912,5540 -BE,BO,2,293,201912,71796 -BE,BO,2,325,201912,13992 -BE,BQ,2,022,201912,3363 -BE,BQ,2,106,201912,10064 -BE,BQ,2,205,201912,1106 -BE,BQ,2,221,201912,398 -BE,BQ,2,222,201912,2269 -BE,BQ,2,241,201912,15069 -BE,BQ,2,242,201912,8020 -BE,BQ,2,244,201912,1282 -BE,BQ,2,251,201912,960 -BE,BQ,2,257,201912,791 -BE,BQ,2,259,201912,38734 -BE,BQ,2,291,201912,105840 -BE,BQ,2,310,201912,802 -BE,BR,1,011,201912,560021 -BE,BR,1,012,201912,12013010 -BE,BR,1,014,201912,144811 -BE,BR,1,071,201912,8734770 -BE,BR,1,072,201912,64641 -BE,BR,1,081,201912,50593 -BE,BR,1,089,201912,442765 -BE,BR,1,101,201912,2147213 -BE,BR,1,103,201912,32927470 -BE,BR,1,104,201912,19003 -BE,BR,1,106,201912,32203 -BE,BR,1,108,201912,3114287 -BE,BR,1,110,201912,39594 -BE,BR,1,120,201912,5216941 -BE,BR,1,132,201912,9633 -BE,BR,1,139,201912,71670 -BE,BR,1,141,201912,16168 -BE,BR,1,151,201912,788 -BE,BR,1,152,201912,591847 -BE,BR,1,161,201912,4836104 -BE,BR,1,162,201912,624943 -BE,BR,1,171,201912,6804663 -BE,BR,1,201,201912,12923663 -BE,BR,1,204,201912,626512 -BE,BR,1,205,201912,684730 -BE,BR,1,211,201912,2053 -BE,BR,1,212,201912,20423 -BE,BR,1,221,201912,139599 -BE,BR,1,222,201912,237061 -BE,BR,1,231,201912,925376 -BE,BR,1,233,201912,148022 -BE,BR,1,234,201912,44070 -BE,BR,1,237,201912,68143 -BE,BR,1,239,201912,125637 -BE,BR,1,241,201912,7302784 -BE,BR,1,242,201912,900 -BE,BR,1,243,201912,305928 -BE,BR,1,244,201912,7282510 -BE,BR,1,257,201912,100141 -BE,BR,1,259,201912,24101 -BE,BR,1,261,201912,728 -BE,BR,1,262,201912,14184 -BE,BR,1,263,201912,7863 -BE,BR,1,265,201912,9437 -BE,BR,1,267,201912,13906 -BE,BR,1,271,201912,1810587 -BE,BR,1,273,201912,486 -BE,BR,1,274,201912,5406 -BE,BR,1,275,201912,5419 -BE,BR,1,279,201912,38239 -BE,BR,1,281,201912,294473 -BE,BR,1,282,201912,143195 -BE,BR,1,283,201912,46760 -BE,BR,1,284,201912,162575 -BE,BR,1,289,201912,1420337 -BE,BR,1,292,201912,13535 -BE,BR,1,293,201912,963807 -BE,BR,1,303,201912,3425423 -BE,BR,1,309,201912,3326 -BE,BR,1,310,201912,2959 -BE,BR,1,321,201912,7134 -BE,BR,1,322,201912,12137 -BE,BR,1,323,201912,300 -BE,BR,1,324,201912,1283 -BE,BR,1,325,201912,3580292 -BE,BR,1,329,201912,18691 -BE,BR,2,012,201912,54465 -BE,BR,2,014,201912,208190 -BE,BR,2,072,201912,172177 -BE,BR,2,081,201912,35940 -BE,BR,2,089,201912,26553 -BE,BR,2,103,201912,8582106 -BE,BR,2,104,201912,283359 -BE,BR,2,106,201912,236839 -BE,BR,2,107,201912,163759 -BE,BR,2,108,201912,2716772 -BE,BR,2,109,201912,638846 -BE,BR,2,110,201912,4068781 -BE,BR,2,131,201912,202664 -BE,BR,2,132,201912,11051 -BE,BR,2,139,201912,747860 -BE,BR,2,141,201912,84060 -BE,BR,2,151,201912,8618 -BE,BR,2,152,201912,260 -BE,BR,2,162,201912,21353 -BE,BR,2,171,201912,320470 -BE,BR,2,172,201912,122463 -BE,BR,2,192,201912,3708873 -BE,BR,2,201,201912,35113745 -BE,BR,2,202,201912,2129346 -BE,BR,2,203,201912,771997 -BE,BR,2,204,201912,822009 -BE,BR,2,205,201912,6071733 -BE,BR,2,206,201912,523584 -BE,BR,2,211,201912,1582224 -BE,BR,2,212,201912,34224707 -BE,BR,2,221,201912,3864098 -BE,BR,2,222,201912,2977866 -BE,BR,2,231,201912,1143834 -BE,BR,2,232,201912,2136 -BE,BR,2,234,201912,640578 -BE,BR,2,235,201912,18139 -BE,BR,2,239,201912,67921 -BE,BR,2,241,201912,2236884 -BE,BR,2,242,201912,371256 -BE,BR,2,243,201912,683668 -BE,BR,2,244,201912,911887 -BE,BR,2,245,201912,25409 -BE,BR,2,251,201912,1626 -BE,BR,2,252,201912,17425 -BE,BR,2,257,201912,1475009 -BE,BR,2,259,201912,3188780 -BE,BR,2,261,201912,46338 -BE,BR,2,262,201912,376776 -BE,BR,2,263,201912,485621 -BE,BR,2,264,201912,416017 -BE,BR,2,265,201912,6053866 -BE,BR,2,266,201912,449942 -BE,BR,2,267,201912,125416 -BE,BR,2,271,201912,2049136 -BE,BR,2,272,201912,125588 -BE,BR,2,273,201912,1869074 -BE,BR,2,274,201912,1816919 -BE,BR,2,275,201912,18037 -BE,BR,2,279,201912,939208 -BE,BR,2,281,201912,16899551 -BE,BR,2,282,201912,8279058 -BE,BR,2,283,201912,2816418 -BE,BR,2,284,201912,130147 -BE,BR,2,289,201912,6871839 -BE,BR,2,291,201912,3965336 -BE,BR,2,292,201912,613991 -BE,BR,2,293,201912,25905664 -BE,BR,2,303,201912,1990781 -BE,BR,2,309,201912,100404 -BE,BR,2,310,201912,503248 -BE,BR,2,321,201912,33143 -BE,BR,2,324,201912,118655 -BE,BR,2,325,201912,3471809 -BE,BR,2,329,201912,139754 -BE,BS,2,103,201912,138959 -BE,BS,2,110,201912,67934 -BE,BS,2,236,201912,118775 -BE,BS,2,243,201912,332 -BE,BS,2,325,201912,5068 -BE,BT,2,212,201912,189321 -BE,BW,1,089,201912,49962261 -BE,BW,1,321,201912,5427498 -BE,BW,2,089,201912,1381963 -BE,BW,2,205,201912,493690 -BE,BW,2,212,201912,75988 -BE,BW,2,222,201912,53759 -BE,BW,2,262,201912,4886 -BE,BW,2,265,201912,93512 -BE,BW,2,267,201912,351468 -BE,BW,2,282,201912,1275 -BE,BW,2,321,201912,1129017 -BE,BY,1,022,201912,107479 -BE,BY,1,103,201912,164152 -BE,BY,1,110,201912,19 -BE,BY,1,131,201912,132618 -BE,BY,1,132,201912,9953 -BE,BY,1,141,201912,2053 -BE,BY,1,161,201912,914677 -BE,BY,1,162,201912,471241 -BE,BY,1,201,201912,6593787 -BE,BY,1,206,201912,402512 -BE,BY,1,221,201912,40970 -BE,BY,1,257,201912,2884 -BE,BY,1,259,201912,13443 -BE,BY,1,263,201912,1657 -BE,BY,1,265,201912,58 -BE,BY,1,271,201912,317 -BE,BY,1,279,201912,416 -BE,BY,1,310,201912,39531 -BE,BY,1,321,201912,126524 -BE,BY,1,324,201912,192 -BE,BY,1,329,201912,1907 -BE,BY,2,011,201912,21339 -BE,BY,2,081,201912,9965 -BE,BY,2,103,201912,23530 -BE,BY,2,108,201912,367247 -BE,BY,2,109,201912,323867 -BE,BY,2,110,201912,102176 -BE,BY,2,131,201912,148499 -BE,BY,2,132,201912,314603 -BE,BY,2,139,201912,157111 -BE,BY,2,141,201912,42896 -BE,BY,2,151,201912,12997 -BE,BY,2,162,201912,66016 -BE,BY,2,171,201912,51 -BE,BY,2,172,201912,484 -BE,BY,2,192,201912,369047 -BE,BY,2,201,201912,1956057 -BE,BY,2,202,201912,56303 -BE,BY,2,203,201912,389149 -BE,BY,2,204,201912,187133 -BE,BY,2,205,201912,1486919 -BE,BY,2,206,201912,841771 -BE,BY,2,211,201912,175351 -BE,BY,2,212,201912,58349 -BE,BY,2,221,201912,67009 -BE,BY,2,222,201912,96905 -BE,BY,2,231,201912,29401 -BE,BY,2,233,201912,12874 -BE,BY,2,239,201912,787 -BE,BY,2,241,201912,51290 -BE,BY,2,242,201912,1605 -BE,BY,2,244,201912,9270 -BE,BY,2,251,201912,42934 -BE,BY,2,257,201912,22650 -BE,BY,2,259,201912,45590 -BE,BY,2,261,201912,155739 -BE,BY,2,262,201912,365631 -BE,BY,2,263,201912,26972 -BE,BY,2,264,201912,159441 -BE,BY,2,265,201912,21605 -BE,BY,2,266,201912,13033 -BE,BY,2,267,201912,45 -BE,BY,2,271,201912,292744 -BE,BY,2,272,201912,906 -BE,BY,2,273,201912,971783 -BE,BY,2,274,201912,27901 -BE,BY,2,275,201912,692 -BE,BY,2,279,201912,81054 -BE,BY,2,281,201912,743007 -BE,BY,2,282,201912,291171 -BE,BY,2,284,201912,11144 -BE,BY,2,289,201912,274778 -BE,BY,2,291,201912,5076644 -BE,BY,2,292,201912,290476 -BE,BY,2,293,201912,88041 -BE,BY,2,310,201912,5816 -BE,BY,2,325,201912,1334419 -BE,BY,2,329,201912,49039 -BE,BZ,1,012,201912,265789 -BE,BZ,2,151,201912,133980 -BE,CA,1,011,201912,27495147 -BE,CA,1,012,201912,116586 -BE,CA,1,014,201912,203423 -BE,CA,1,030,201912,7564416 -BE,CA,1,071,201912,21393042 -BE,CA,1,081,201912,12550 -BE,CA,1,089,201912,43367410 -BE,CA,1,101,201912,162224 -BE,CA,1,102,201912,882273 -BE,CA,1,103,201912,513445 -BE,CA,1,104,201912,56198 -BE,CA,1,105,201912,42248 -BE,CA,1,108,201912,1155852 -BE,CA,1,109,201912,1672783 -BE,CA,1,110,201912,85713 -BE,CA,1,132,201912,624 -BE,CA,1,139,201912,711889 -BE,CA,1,141,201912,52916 -BE,CA,1,143,201912,17780 -BE,CA,1,151,201912,13972 -BE,CA,1,152,201912,15060 -BE,CA,1,161,201912,1314508 -BE,CA,1,162,201912,389780 -BE,CA,1,171,201912,2574153 -BE,CA,1,172,201912,718091 -BE,CA,1,192,201912,2755 -BE,CA,1,201,201912,14900250 -BE,CA,1,203,201912,21172 -BE,CA,1,204,201912,727287 -BE,CA,1,205,201912,1451459 -BE,CA,1,211,201912,279211 -BE,CA,1,212,201912,34660741 -BE,CA,1,221,201912,230949 -BE,CA,1,222,201912,810467 -BE,CA,1,231,201912,151271 -BE,CA,1,232,201912,502 -BE,CA,1,234,201912,64 -BE,CA,1,236,201912,1635 -BE,CA,1,237,201912,45380 -BE,CA,1,239,201912,211027 -BE,CA,1,241,201912,549063 -BE,CA,1,242,201912,2180 -BE,CA,1,244,201912,6327823 -BE,CA,1,245,201912,8 -BE,CA,1,251,201912,83456 -BE,CA,1,252,201912,426 -BE,CA,1,257,201912,127267 -BE,CA,1,259,201912,175141 -BE,CA,1,261,201912,47408 -BE,CA,1,262,201912,1315207 -BE,CA,1,263,201912,1177634 -BE,CA,1,264,201912,248623 -BE,CA,1,265,201912,2046343 -BE,CA,1,266,201912,249996 -BE,CA,1,267,201912,135198 -BE,CA,1,268,201912,12175 -BE,CA,1,271,201912,457924 -BE,CA,1,272,201912,10498 -BE,CA,1,273,201912,67126 -BE,CA,1,274,201912,33544 -BE,CA,1,275,201912,348049 -BE,CA,1,279,201912,263313 -BE,CA,1,281,201912,571631 -BE,CA,1,282,201912,2573864 -BE,CA,1,283,201912,739705 -BE,CA,1,284,201912,700959 -BE,CA,1,289,201912,2290884 -BE,CA,1,291,201912,5321230 -BE,CA,1,292,201912,1600 -BE,CA,1,293,201912,429411 -BE,CA,1,303,201912,927829 -BE,CA,1,309,201912,267257 -BE,CA,1,310,201912,107412 -BE,CA,1,321,201912,29393 -BE,CA,1,322,201912,8356 -BE,CA,1,323,201912,18554 -BE,CA,1,324,201912,124081 -BE,CA,1,325,201912,1093978 -BE,CA,1,329,201912,56935 -BE,CA,2,011,201912,375569 -BE,CA,2,012,201912,3748 -BE,CA,2,014,201912,597348 -BE,CA,2,072,201912,132310 -BE,CA,2,081,201912,60928 -BE,CA,2,089,201912,602932 -BE,CA,2,103,201912,1707305 -BE,CA,2,104,201912,32729 -BE,CA,2,105,201912,74 -BE,CA,2,106,201912,1032158 -BE,CA,2,107,201912,624301 -BE,CA,2,108,201912,5330188 -BE,CA,2,109,201912,352025 -BE,CA,2,110,201912,1984933 -BE,CA,2,120,201912,1241339 -BE,CA,2,131,201912,212189 -BE,CA,2,132,201912,77773 -BE,CA,2,139,201912,1655181 -BE,CA,2,141,201912,237077 -BE,CA,2,143,201912,41461 -BE,CA,2,151,201912,29638 -BE,CA,2,152,201912,273035 -BE,CA,2,162,201912,518974 -BE,CA,2,171,201912,221033 -BE,CA,2,172,201912,233798 -BE,CA,2,191,201912,6746158 -BE,CA,2,192,201912,19210845 -BE,CA,2,201,201912,4715975 -BE,CA,2,202,201912,125718 -BE,CA,2,203,201912,441573 -BE,CA,2,204,201912,2203448 -BE,CA,2,205,201912,1873413 -BE,CA,2,206,201912,662040 -BE,CA,2,211,201912,80362775 -BE,CA,2,212,201912,75278440 -BE,CA,2,221,201912,965367 -BE,CA,2,222,201912,1292077 -BE,CA,2,231,201912,198269 -BE,CA,2,234,201912,524562 -BE,CA,2,236,201912,232824 -BE,CA,2,239,201912,279315 -BE,CA,2,241,201912,10198909 -BE,CA,2,242,201912,2285566 -BE,CA,2,243,201912,249613 -BE,CA,2,244,201912,1250447 -BE,CA,2,245,201912,2063 -BE,CA,2,251,201912,26905 -BE,CA,2,252,201912,493766 -BE,CA,2,254,201912,3395 -BE,CA,2,257,201912,142656 -BE,CA,2,259,201912,833383 -BE,CA,2,261,201912,541431 -BE,CA,2,262,201912,528132 -BE,CA,2,263,201912,1271007 -BE,CA,2,264,201912,180571 -BE,CA,2,265,201912,810265 -BE,CA,2,266,201912,1181672 -BE,CA,2,267,201912,362001 -BE,CA,2,271,201912,1117173 -BE,CA,2,272,201912,64900 -BE,CA,2,273,201912,94796 -BE,CA,2,274,201912,213469 -BE,CA,2,275,201912,595128 -BE,CA,2,279,201912,385742 -BE,CA,2,281,201912,3174781 -BE,CA,2,282,201912,3209901 -BE,CA,2,283,201912,1336160 -BE,CA,2,284,201912,88015 -BE,CA,2,289,201912,1267166 -BE,CA,2,291,201912,5890972 -BE,CA,2,292,201912,208306 -BE,CA,2,293,201912,357992 -BE,CA,2,302,201912,136039 -BE,CA,2,303,201912,173745 -BE,CA,2,304,201912,111851182 -BE,CA,2,309,201912,319366 -BE,CA,2,310,201912,148571 -BE,CA,2,321,201912,323592 -BE,CA,2,322,201912,5556 -BE,CA,2,323,201912,10944 -BE,CA,2,324,201912,307955 -BE,CA,2,325,201912,3379194 -BE,CA,2,329,201912,66929 -BE,CC,2,291,201912,9000 -BE,CD,1,011,201912,30345 -BE,CD,1,012,201912,751151 -BE,CD,1,081,201912,865 -BE,CD,1,089,201912,2131083 -BE,CD,1,103,201912,28784 -BE,CD,1,106,201912,3023 -BE,CD,1,108,201912,228009 -BE,CD,1,110,201912,3876 -BE,CD,1,161,201912,421425 -BE,CD,1,162,201912,248 -BE,CD,1,244,201912,2150867 -BE,CD,1,262,201912,575 -BE,CD,1,271,201912,584 -BE,CD,2,011,201912,71234 -BE,CD,2,012,201912,3962 -BE,CD,2,014,201912,124080 -BE,CD,2,030,201912,23966 -BE,CD,2,081,201912,15 -BE,CD,2,101,201912,1170661 -BE,CD,2,102,201912,35799 -BE,CD,2,103,201912,291988 -BE,CD,2,104,201912,63012 -BE,CD,2,105,201912,226155 -BE,CD,2,106,201912,70916 -BE,CD,2,107,201912,137378 -BE,CD,2,108,201912,2319988 -BE,CD,2,109,201912,45759 -BE,CD,2,110,201912,1106182 -BE,CD,2,132,201912,789113 -BE,CD,2,139,201912,195493 -BE,CD,2,141,201912,963853 -BE,CD,2,151,201912,8426 -BE,CD,2,152,201912,106439 -BE,CD,2,162,201912,7332 -BE,CD,2,171,201912,126288 -BE,CD,2,172,201912,288656 -BE,CD,2,192,201912,758686 -BE,CD,2,201,201912,844268 -BE,CD,2,202,201912,48753 -BE,CD,2,203,201912,12021 -BE,CD,2,204,201912,392745 -BE,CD,2,205,201912,485135 -BE,CD,2,211,201912,2947 -BE,CD,2,212,201912,2862147 -BE,CD,2,221,201912,128138 -BE,CD,2,222,201912,153175 -BE,CD,2,231,201912,23599 -BE,CD,2,233,201912,80739 -BE,CD,2,234,201912,55580 -BE,CD,2,237,201912,20000 -BE,CD,2,239,201912,6246 -BE,CD,2,241,201912,70380 -BE,CD,2,242,201912,87712 -BE,CD,2,244,201912,46658 -BE,CD,2,245,201912,1917 -BE,CD,2,251,201912,3512 -BE,CD,2,252,201912,3371 -BE,CD,2,257,201912,177530 -BE,CD,2,259,201912,93483 -BE,CD,2,261,201912,153181 -BE,CD,2,262,201912,206093 -BE,CD,2,263,201912,37809 -BE,CD,2,264,201912,36915 -BE,CD,2,265,201912,151330 -BE,CD,2,266,201912,146219 -BE,CD,2,267,201912,177837 -BE,CD,2,271,201912,1219850 -BE,CD,2,272,201912,75596 -BE,CD,2,273,201912,219529 -BE,CD,2,274,201912,50868 -BE,CD,2,275,201912,27955 -BE,CD,2,279,201912,28777 -BE,CD,2,281,201912,513112 -BE,CD,2,282,201912,829373 -BE,CD,2,283,201912,22645 -BE,CD,2,284,201912,63089 -BE,CD,2,289,201912,854273 -BE,CD,2,291,201912,1591233 -BE,CD,2,292,201912,180218 -BE,CD,2,293,201912,550528 -BE,CD,2,301,201912,1823 -BE,CD,2,303,201912,333107 -BE,CD,2,309,201912,33363 -BE,CD,2,310,201912,75178 -BE,CD,2,321,201912,2176 -BE,CD,2,322,201912,230 -BE,CD,2,323,201912,2202 -BE,CD,2,324,201912,2430 -BE,CD,2,325,201912,603272 -BE,CD,2,329,201912,79984 -BE,CF,2,101,201912,47840 -BE,CF,2,103,201912,18980 -BE,CF,2,108,201912,61173 -BE,CF,2,141,201912,66412 -BE,CF,2,205,201912,9554 -BE,CF,2,212,201912,136659 -BE,CF,2,221,201912,3884 -BE,CF,2,281,201912,721 -BE,CF,2,289,201912,2600 -BE,CF,2,291,201912,277659 -BE,CF,2,325,201912,73629 -BE,CG,1,022,201912,568843 -BE,CG,1,161,201912,1619890 -BE,CG,1,162,201912,294314 -BE,CG,2,011,201912,1820 -BE,CG,2,101,201912,480408 -BE,CG,2,103,201912,235054 -BE,CG,2,104,201912,129095 -BE,CG,2,107,201912,988 -BE,CG,2,108,201912,111236 -BE,CG,2,109,201912,71240 -BE,CG,2,110,201912,782461 -BE,CG,2,139,201912,66683 -BE,CG,2,141,201912,109238 -BE,CG,2,143,201912,1039 -BE,CG,2,151,201912,3053 -BE,CG,2,152,201912,1853 -BE,CG,2,162,201912,5983 -BE,CG,2,172,201912,33617 -BE,CG,2,192,201912,75067 -BE,CG,2,201,201912,149462 -BE,CG,2,202,201912,57924 -BE,CG,2,203,201912,1351 -BE,CG,2,204,201912,5237 -BE,CG,2,205,201912,239694 -BE,CG,2,212,201912,693 -BE,CG,2,221,201912,27223 -BE,CG,2,222,201912,40864 -BE,CG,2,231,201912,14694 -BE,CG,2,241,201912,64102 -BE,CG,2,242,201912,36842 -BE,CG,2,244,201912,134 -BE,CG,2,257,201912,7930 -BE,CG,2,259,201912,198189 -BE,CG,2,261,201912,8297 -BE,CG,2,264,201912,1486 -BE,CG,2,265,201912,70605 -BE,CG,2,267,201912,39 -BE,CG,2,271,201912,107576 -BE,CG,2,273,201912,310590 -BE,CG,2,274,201912,3657 -BE,CG,2,275,201912,20454 -BE,CG,2,279,201912,275453 -BE,CG,2,281,201912,315212 -BE,CG,2,282,201912,492993 -BE,CG,2,284,201912,125000 -BE,CG,2,289,201912,857596 -BE,CG,2,291,201912,1500426 -BE,CG,2,293,201912,34032 -BE,CG,2,309,201912,2576 -BE,CG,2,310,201912,350 -BE,CG,2,323,201912,4069 -BE,CG,2,324,201912,731 -BE,CG,2,325,201912,16019 -BE,CG,2,329,201912,5229 -BE,CH,1,011,201912,10731 -BE,CH,1,012,201912,62843 -BE,CH,1,014,201912,15587 -BE,CH,1,089,201912,42 -BE,CH,1,101,201912,790 -BE,CH,1,103,201912,2523 -BE,CH,1,104,201912,1197 -BE,CH,1,105,201912,439993 -BE,CH,1,106,201912,718925 -BE,CH,1,107,201912,32439 -BE,CH,1,108,201912,3043733 -BE,CH,1,109,201912,86368 -BE,CH,1,110,201912,61754 -BE,CH,1,120,201912,2 -BE,CH,1,131,201912,1900 -BE,CH,1,132,201912,1270269 -BE,CH,1,139,201912,188067 -BE,CH,1,141,201912,1249489 -BE,CH,1,142,201912,3458 -BE,CH,1,143,201912,155613 -BE,CH,1,151,201912,1462820 -BE,CH,1,152,201912,2840941 -BE,CH,1,162,201912,4187 -BE,CH,1,171,201912,34497 -BE,CH,1,172,201912,176939 -BE,CH,1,181,201912,240884 -BE,CH,1,192,201912,86945 -BE,CH,1,201,201912,128201103 -BE,CH,1,202,201912,77789 -BE,CH,1,203,201912,868252 -BE,CH,1,204,201912,3328682 -BE,CH,1,205,201912,846375 -BE,CH,1,211,201912,2102982 -BE,CH,1,212,201912,381586132 -BE,CH,1,221,201912,354597 -BE,CH,1,222,201912,1680856 -BE,CH,1,231,201912,132181 -BE,CH,1,232,201912,176173 -BE,CH,1,234,201912,94293 -BE,CH,1,237,201912,28942 -BE,CH,1,239,201912,347729 -BE,CH,1,241,201912,8159 -BE,CH,1,242,201912,45038 -BE,CH,1,243,201912,10543 -BE,CH,1,244,201912,1555086 -BE,CH,1,245,201912,822 -BE,CH,1,251,201912,96942 -BE,CH,1,252,201912,68210 -BE,CH,1,253,201912,2356 -BE,CH,1,254,201912,2410 -BE,CH,1,257,201912,4134303 -BE,CH,1,259,201912,1553589 -BE,CH,1,261,201912,295812 -BE,CH,1,262,201912,2418225 -BE,CH,1,263,201912,786552 -BE,CH,1,264,201912,57505 -BE,CH,1,265,201912,12799411 -BE,CH,1,266,201912,2589806 -BE,CH,1,267,201912,2517992 -BE,CH,1,268,201912,21135 -BE,CH,1,271,201912,3039284 -BE,CH,1,272,201912,578733 -BE,CH,1,273,201912,2160331 -BE,CH,1,274,201912,42103 -BE,CH,1,275,201912,751960 -BE,CH,1,279,201912,838104 -BE,CH,1,281,201912,6142589 -BE,CH,1,282,201912,16080241 -BE,CH,1,283,201912,391191 -BE,CH,1,284,201912,2029132 -BE,CH,1,289,201912,13538121 -BE,CH,1,291,201912,500125 -BE,CH,1,292,201912,2735 -BE,CH,1,293,201912,1369960 -BE,CH,1,302,201912,105431 -BE,CH,1,303,201912,3988577 -BE,CH,1,304,201912,19697 -BE,CH,1,309,201912,236760 -BE,CH,1,310,201912,595014 -BE,CH,1,321,201912,5261497 -BE,CH,1,322,201912,6608 -BE,CH,1,323,201912,24773 -BE,CH,1,324,201912,12666 -BE,CH,1,325,201912,40525904 -BE,CH,1,329,201912,1425797 -BE,CH,2,011,201912,681540 -BE,CH,2,012,201912,866322 -BE,CH,2,013,201912,610875 -BE,CH,2,014,201912,136303 -BE,CH,2,021,201912,26077 -BE,CH,2,023,201912,11389 -BE,CH,2,030,201912,10197 -BE,CH,2,051,201912,220251 -BE,CH,2,081,201912,429905 -BE,CH,2,089,201912,336328 -BE,CH,2,101,201912,772041 -BE,CH,2,102,201912,93449 -BE,CH,2,103,201912,1102050 -BE,CH,2,104,201912,39654 -BE,CH,2,105,201912,721927 -BE,CH,2,106,201912,1511724 -BE,CH,2,107,201912,967917 -BE,CH,2,108,201912,2568780 -BE,CH,2,109,201912,296477 -BE,CH,2,110,201912,1851343 -BE,CH,2,120,201912,2207305 -BE,CH,2,131,201912,40462 -BE,CH,2,132,201912,1144832 -BE,CH,2,139,201912,1843486 -BE,CH,2,141,201912,3275254 -BE,CH,2,142,201912,12711 -BE,CH,2,143,201912,596641 -BE,CH,2,151,201912,1040991 -BE,CH,2,152,201912,80231 -BE,CH,2,161,201912,342881 -BE,CH,2,162,201912,850253 -BE,CH,2,171,201912,811852 -BE,CH,2,172,201912,1440659 -BE,CH,2,192,201912,40508514 -BE,CH,2,201,201912,51230554 -BE,CH,2,202,201912,459000 -BE,CH,2,203,201912,795121 -BE,CH,2,204,201912,8278145 -BE,CH,2,205,201912,6283915 -BE,CH,2,206,201912,342852 -BE,CH,2,211,201912,928713 -BE,CH,2,212,201912,93985778 -BE,CH,2,221,201912,1703509 -BE,CH,2,222,201912,5827583 -BE,CH,2,231,201912,1109038 -BE,CH,2,232,201912,19961 -BE,CH,2,233,201912,11170 -BE,CH,2,234,201912,224780 -BE,CH,2,236,201912,28028 -BE,CH,2,237,201912,52263 -BE,CH,2,239,201912,270627 -BE,CH,2,241,201912,2129703 -BE,CH,2,242,201912,131435 -BE,CH,2,243,201912,217114 -BE,CH,2,244,201912,88149498 -BE,CH,2,245,201912,54472 -BE,CH,2,251,201912,266888 -BE,CH,2,252,201912,256770 -BE,CH,2,253,201912,1494 -BE,CH,2,254,201912,3110 -BE,CH,2,257,201912,3713178 -BE,CH,2,259,201912,1354338 -BE,CH,2,261,201912,2112710 -BE,CH,2,262,201912,1520075 -BE,CH,2,263,201912,1235804 -BE,CH,2,264,201912,840938 -BE,CH,2,265,201912,4635939 -BE,CH,2,266,201912,3139744 -BE,CH,2,267,201912,572947 -BE,CH,2,268,201912,347771 -BE,CH,2,271,201912,763104 -BE,CH,2,272,201912,458154 -BE,CH,2,273,201912,998952 -BE,CH,2,274,201912,847125 -BE,CH,2,275,201912,402633 -BE,CH,2,279,201912,1199710 -BE,CH,2,281,201912,3396170 -BE,CH,2,282,201912,6541339 -BE,CH,2,283,201912,622714 -BE,CH,2,284,201912,1070236 -BE,CH,2,289,201912,3422049 -BE,CH,2,291,201912,43814396 -BE,CH,2,292,201912,985279 -BE,CH,2,293,201912,2180748 -BE,CH,2,302,201912,31151 -BE,CH,2,303,201912,1262683 -BE,CH,2,309,201912,596416 -BE,CH,2,310,201912,1577371 -BE,CH,2,321,201912,16774337 -BE,CH,2,322,201912,17528 -BE,CH,2,323,201912,289690 -BE,CH,2,324,201912,1724840 -BE,CH,2,325,201912,12742635 -BE,CH,2,329,201912,528202 -BE,CI,1,011,201912,76290 -BE,CI,1,012,201912,31356134 -BE,CI,1,013,201912,42514 -BE,CI,1,081,201912,12954 -BE,CI,1,103,201912,156802 -BE,CI,1,104,201912,3599 -BE,CI,1,106,201912,42903 -BE,CI,1,107,201912,65879 -BE,CI,1,108,201912,8042258 -BE,CI,1,110,201912,3030 -BE,CI,1,139,201912,61 -BE,CI,1,141,201912,88 -BE,CI,1,161,201912,189122 -BE,CI,1,162,201912,154897 -BE,CI,1,172,201912,44 -BE,CI,1,204,201912,35989 -BE,CI,1,221,201912,118490 -BE,CI,1,222,201912,285 -BE,CI,1,259,201912,28760 -BE,CI,1,263,201912,607 -BE,CI,1,265,201912,4382 -BE,CI,1,271,201912,565 -BE,CI,1,279,201912,57734 -BE,CI,1,281,201912,53677 -BE,CI,1,293,201912,28264 -BE,CI,1,303,201912,10212 -BE,CI,1,324,201912,120 -BE,CI,2,011,201912,360219 -BE,CI,2,012,201912,69484 -BE,CI,2,014,201912,208221 -BE,CI,2,081,201912,2060 -BE,CI,2,101,201912,687588 -BE,CI,2,103,201912,82297 -BE,CI,2,104,201912,24014 -BE,CI,2,105,201912,133310 -BE,CI,2,106,201912,13969 -BE,CI,2,107,201912,5622 -BE,CI,2,108,201912,202055 -BE,CI,2,109,201912,494424 -BE,CI,2,110,201912,487422 -BE,CI,2,139,201912,212758 -BE,CI,2,141,201912,130596 -BE,CI,2,143,201912,2098 -BE,CI,2,151,201912,3295 -BE,CI,2,152,201912,20057 -BE,CI,2,162,201912,774 -BE,CI,2,171,201912,473857 -BE,CI,2,172,201912,75949 -BE,CI,2,192,201912,128150 -BE,CI,2,201,201912,1841508 -BE,CI,2,202,201912,27347 -BE,CI,2,203,201912,134085 -BE,CI,2,204,201912,211147 -BE,CI,2,205,201912,596753 -BE,CI,2,211,201912,50678 -BE,CI,2,212,201912,61297 -BE,CI,2,221,201912,116774 -BE,CI,2,222,201912,242297 -BE,CI,2,231,201912,79315 -BE,CI,2,234,201912,327 -BE,CI,2,236,201912,6067 -BE,CI,2,239,201912,39507 -BE,CI,2,241,201912,95321 -BE,CI,2,242,201912,242137 -BE,CI,2,243,201912,602 -BE,CI,2,244,201912,1667368 -BE,CI,2,251,201912,16768 -BE,CI,2,252,201912,2310 -BE,CI,2,257,201912,95370 -BE,CI,2,259,201912,557089 -BE,CI,2,261,201912,278720 -BE,CI,2,262,201912,383634 -BE,CI,2,263,201912,24897 -BE,CI,2,264,201912,10140 -BE,CI,2,265,201912,65509 -BE,CI,2,267,201912,30741 -BE,CI,2,271,201912,152241 -BE,CI,2,272,201912,992 -BE,CI,2,273,201912,397592 -BE,CI,2,274,201912,60477 -BE,CI,2,275,201912,58714 -BE,CI,2,279,201912,31281 -BE,CI,2,281,201912,626617 -BE,CI,2,282,201912,553453 -BE,CI,2,283,201912,10738 -BE,CI,2,284,201912,44102 -BE,CI,2,289,201912,2606983 -BE,CI,2,291,201912,3226283 -BE,CI,2,292,201912,232773 -BE,CI,2,293,201912,200804 -BE,CI,2,303,201912,68377 -BE,CI,2,309,201912,4747 -BE,CI,2,310,201912,121087 -BE,CI,2,323,201912,10898 -BE,CI,2,325,201912,51245 -BE,CI,2,329,201912,5957 -BE,CL,1,012,201912,3488222 -BE,CL,1,013,201912,39244 -BE,CL,1,089,201912,85 -BE,CL,1,102,201912,4432873 -BE,CL,1,103,201912,1298525 -BE,CL,1,104,201912,408 -BE,CL,1,108,201912,22310 -BE,CL,1,110,201912,2114477 -BE,CL,1,141,201912,727 -BE,CL,1,162,201912,230920 -BE,CL,1,172,201912,148 -BE,CL,1,201,201912,20920544 -BE,CL,1,204,201912,1298 -BE,CL,1,205,201912,23508 -BE,CL,1,222,201912,35371 -BE,CL,1,231,201912,152 -BE,CL,1,244,201912,4046263 -BE,CL,1,259,201912,20327 -BE,CL,1,264,201912,4059 -BE,CL,1,271,201912,1268 -BE,CL,1,281,201912,5315 -BE,CL,1,282,201912,58 -BE,CL,1,289,201912,3252 -BE,CL,1,293,201912,862 -BE,CL,1,321,201912,537 -BE,CL,2,013,201912,27142 -BE,CL,2,101,201912,408090 -BE,CL,2,103,201912,4436906 -BE,CL,2,104,201912,172921 -BE,CL,2,105,201912,93202 -BE,CL,2,106,201912,731458 -BE,CL,2,107,201912,165801 -BE,CL,2,108,201912,1371301 -BE,CL,2,109,201912,41783 -BE,CL,2,110,201912,270177 -BE,CL,2,120,201912,37810 -BE,CL,2,131,201912,36 -BE,CL,2,132,201912,32896 -BE,CL,2,139,201912,678746 -BE,CL,2,141,201912,635 -BE,CL,2,151,201912,1552 -BE,CL,2,152,201912,137331 -BE,CL,2,162,201912,47836 -BE,CL,2,171,201912,1216289 -BE,CL,2,172,201912,30516 -BE,CL,2,192,201912,375944 -BE,CL,2,201,201912,1777870 -BE,CL,2,202,201912,378006 -BE,CL,2,203,201912,250450 -BE,CL,2,204,201912,87077 -BE,CL,2,205,201912,681634 -BE,CL,2,211,201912,41709 -BE,CL,2,212,201912,5206775 -BE,CL,2,221,201912,135129 -BE,CL,2,222,201912,876487 -BE,CL,2,231,201912,194561 -BE,CL,2,234,201912,1918 -BE,CL,2,239,201912,30567 -BE,CL,2,241,201912,579223 -BE,CL,2,242,201912,10975 -BE,CL,2,244,201912,9717 -BE,CL,2,245,201912,153 -BE,CL,2,252,201912,60687 -BE,CL,2,257,201912,149598 -BE,CL,2,259,201912,167607 -BE,CL,2,261,201912,5744 -BE,CL,2,262,201912,11054 -BE,CL,2,263,201912,46791 -BE,CL,2,264,201912,455811 -BE,CL,2,265,201912,195868 -BE,CL,2,266,201912,149984 -BE,CL,2,267,201912,44812 -BE,CL,2,271,201912,120196 -BE,CL,2,272,201912,2227 -BE,CL,2,273,201912,67055 -BE,CL,2,274,201912,33895 -BE,CL,2,275,201912,59310 -BE,CL,2,279,201912,37538 -BE,CL,2,281,201912,1206813 -BE,CL,2,282,201912,714240 -BE,CL,2,283,201912,716850 -BE,CL,2,284,201912,1506152 -BE,CL,2,289,201912,545133 -BE,CL,2,291,201912,1571531 -BE,CL,2,293,201912,563041 -BE,CL,2,302,201912,11776 -BE,CL,2,309,201912,18595 -BE,CL,2,310,201912,3881 -BE,CL,2,323,201912,2283 -BE,CL,2,324,201912,135380 -BE,CL,2,325,201912,748784 -BE,CL,2,329,201912,12050 -BE,CM,1,011,201912,138575 -BE,CM,1,012,201912,11309442 -BE,CM,1,022,201912,25197 -BE,CM,1,023,201912,13830 -BE,CM,1,081,201912,3622 -BE,CM,1,103,201912,98975 -BE,CM,1,104,201912,3999 -BE,CM,1,106,201912,2271 -BE,CM,1,108,201912,133225 -BE,CM,1,110,201912,32258 -BE,CM,1,161,201912,5255566 -BE,CM,1,162,201912,53718 -BE,CM,1,271,201912,702 -BE,CM,1,329,201912,390 -BE,CM,2,011,201912,520 -BE,CM,2,014,201912,125721 -BE,CM,2,101,201912,112823 -BE,CM,2,102,201912,1533 -BE,CM,2,103,201912,18909 -BE,CM,2,104,201912,42698 -BE,CM,2,105,201912,219304 -BE,CM,2,106,201912,34000 -BE,CM,2,107,201912,197 -BE,CM,2,108,201912,2519122 -BE,CM,2,109,201912,443748 -BE,CM,2,110,201912,46273 -BE,CM,2,132,201912,26 -BE,CM,2,139,201912,69324 -BE,CM,2,141,201912,3164123 -BE,CM,2,142,201912,140 -BE,CM,2,151,201912,82966 -BE,CM,2,152,201912,49579 -BE,CM,2,162,201912,21213 -BE,CM,2,171,201912,496353 -BE,CM,2,172,201912,101803 -BE,CM,2,192,201912,9285025 -BE,CM,2,201,201912,698857 -BE,CM,2,203,201912,136425 -BE,CM,2,204,201912,555286 -BE,CM,2,205,201912,649726 -BE,CM,2,211,201912,968 -BE,CM,2,212,201912,304310 -BE,CM,2,221,201912,36369 -BE,CM,2,222,201912,363223 -BE,CM,2,231,201912,4740 -BE,CM,2,233,201912,31396 -BE,CM,2,234,201912,9956 -BE,CM,2,236,201912,12849 -BE,CM,2,239,201912,22086 -BE,CM,2,241,201912,24172 -BE,CM,2,242,201912,58815 -BE,CM,2,243,201912,251300 -BE,CM,2,244,201912,4146 -BE,CM,2,245,201912,1895 -BE,CM,2,251,201912,374323 -BE,CM,2,252,201912,20440 -BE,CM,2,257,201912,99836 -BE,CM,2,259,201912,951440 -BE,CM,2,261,201912,4038 -BE,CM,2,262,201912,127038 -BE,CM,2,263,201912,35915 -BE,CM,2,264,201912,15063 -BE,CM,2,265,201912,62273 -BE,CM,2,266,201912,11153 -BE,CM,2,267,201912,14500 -BE,CM,2,271,201912,468568 -BE,CM,2,272,201912,55360 -BE,CM,2,273,201912,306227 -BE,CM,2,274,201912,6062 -BE,CM,2,275,201912,59439 -BE,CM,2,279,201912,316619 -BE,CM,2,281,201912,783535 -BE,CM,2,282,201912,812033 -BE,CM,2,283,201912,186542 -BE,CM,2,284,201912,43725 -BE,CM,2,289,201912,517525 -BE,CM,2,291,201912,4001708 -BE,CM,2,292,201912,186825 -BE,CM,2,293,201912,198789 -BE,CM,2,309,201912,4934 -BE,CM,2,310,201912,128210 -BE,CM,2,323,201912,687 -BE,CM,2,324,201912,14263 -BE,CM,2,325,201912,13138 -BE,CM,2,329,201912,19287 -BE,CN,1,011,201912,1694648 -BE,CN,1,012,201912,598014 -BE,CN,1,014,201912,947055 -BE,CN,1,023,201912,6085 -BE,CN,1,030,201912,107305 -BE,CN,1,072,201912,16520 -BE,CN,1,081,201912,244485 -BE,CN,1,089,201912,182774 -BE,CN,1,101,201912,2402106 -BE,CN,1,102,201912,6786133 -BE,CN,1,103,201912,4162764 -BE,CN,1,104,201912,73794 -BE,CN,1,106,201912,145058 -BE,CN,1,107,201912,301625 -BE,CN,1,108,201912,3446161 -BE,CN,1,109,201912,959632 -BE,CN,1,110,201912,30019 -BE,CN,1,120,201912,868604 -BE,CN,1,131,201912,1255624 -BE,CN,1,132,201912,5460591 -BE,CN,1,139,201912,26008226 -BE,CN,1,141,201912,88848922 -BE,CN,1,142,201912,12242 -BE,CN,1,143,201912,18602135 -BE,CN,1,151,201912,22996866 -BE,CN,1,152,201912,72721614 -BE,CN,1,161,201912,301181 -BE,CN,1,162,201912,16766109 -BE,CN,1,171,201912,2878215 -BE,CN,1,172,201912,8015788 -BE,CN,1,192,201912,17625 -BE,CN,1,201,201912,113072526 -BE,CN,1,202,201912,644600 -BE,CN,1,203,201912,491407 -BE,CN,1,204,201912,4507836 -BE,CN,1,205,201912,47802487 -BE,CN,1,206,201912,3258361 -BE,CN,1,211,201912,20220249 -BE,CN,1,212,201912,50158233 -BE,CN,1,221,201912,16042642 -BE,CN,1,222,201912,38727943 -BE,CN,1,231,201912,9603971 -BE,CN,1,232,201912,1314860 -BE,CN,1,233,201912,355376 -BE,CN,1,234,201912,7241681 -BE,CN,1,235,201912,8449 -BE,CN,1,236,201912,1603600 -BE,CN,1,237,201912,2434232 -BE,CN,1,239,201912,2861690 -BE,CN,1,241,201912,15474710 -BE,CN,1,242,201912,3153169 -BE,CN,1,243,201912,2473896 -BE,CN,1,244,201912,10158584 -BE,CN,1,245,201912,685477 -BE,CN,1,251,201912,3553900 -BE,CN,1,252,201912,763261 -BE,CN,1,253,201912,1588 -BE,CN,1,254,201912,945048 -BE,CN,1,257,201912,27516609 -BE,CN,1,259,201912,33245309 -BE,CN,1,261,201912,21826702 -BE,CN,1,262,201912,23773853 -BE,CN,1,263,201912,33707627 -BE,CN,1,264,201912,31353089 -BE,CN,1,265,201912,19437245 -BE,CN,1,266,201912,1802760 -BE,CN,1,267,201912,7234190 -BE,CN,1,268,201912,23569 -BE,CN,1,271,201912,11976579 -BE,CN,1,272,201912,8865095 -BE,CN,1,273,201912,9488755 -BE,CN,1,274,201912,24354000 -BE,CN,1,275,201912,32661913 -BE,CN,1,279,201912,22485070 -BE,CN,1,281,201912,29953945 -BE,CN,1,282,201912,87017182 -BE,CN,1,283,201912,3858781 -BE,CN,1,284,201912,4645801 -BE,CN,1,289,201912,45770904 -BE,CN,1,291,201912,79853360 -BE,CN,1,292,201912,1375848 -BE,CN,1,293,201912,21223373 -BE,CN,1,301,201912,179044 -BE,CN,1,302,201912,184624 -BE,CN,1,303,201912,6580039 -BE,CN,1,309,201912,10345198 -BE,CN,1,310,201912,30451854 -BE,CN,1,321,201912,16033151 -BE,CN,1,322,201912,1147328 -BE,CN,1,323,201912,11809962 -BE,CN,1,324,201912,30835131 -BE,CN,1,325,201912,19798451 -BE,CN,1,329,201912,22051713 -BE,CN,2,011,201912,1221747 -BE,CN,2,012,201912,694692 -BE,CN,2,014,201912,1770651 -BE,CN,2,022,201912,16506505 -BE,CN,2,023,201912,221 -BE,CN,2,030,201912,1045 -BE,CN,2,081,201912,173429 -BE,CN,2,089,201912,4160539 -BE,CN,2,101,201912,1119330 -BE,CN,2,103,201912,1497309 -BE,CN,2,104,201912,452159 -BE,CN,2,105,201912,3498322 -BE,CN,2,106,201912,584292 -BE,CN,2,107,201912,448982 -BE,CN,2,108,201912,6550262 -BE,CN,2,109,201912,837988 -BE,CN,2,110,201912,5966825 -BE,CN,2,131,201912,17862667 -BE,CN,2,132,201912,1203722 -BE,CN,2,139,201912,1427011 -BE,CN,2,141,201912,784480 -BE,CN,2,143,201912,4205 -BE,CN,2,151,201912,407631 -BE,CN,2,152,201912,235851 -BE,CN,2,161,201912,1824234 -BE,CN,2,162,201912,717567 -BE,CN,2,171,201912,3478360 -BE,CN,2,172,201912,148935 -BE,CN,2,192,201912,4381521 -BE,CN,2,201,201912,89803690 -BE,CN,2,202,201912,368104 -BE,CN,2,203,201912,2354223 -BE,CN,2,204,201912,9208786 -BE,CN,2,205,201912,33523663 -BE,CN,2,206,201912,4465297 -BE,CN,2,211,201912,24784722 -BE,CN,2,212,201912,110725691 -BE,CN,2,221,201912,5739285 -BE,CN,2,222,201912,9399993 -BE,CN,2,231,201912,866443 -BE,CN,2,232,201912,187723 -BE,CN,2,234,201912,289475 -BE,CN,2,235,201912,37447 -BE,CN,2,236,201912,51441 -BE,CN,2,237,201912,46933 -BE,CN,2,239,201912,128492 -BE,CN,2,241,201912,8782487 -BE,CN,2,242,201912,215559 -BE,CN,2,243,201912,637908 -BE,CN,2,244,201912,25465823 -BE,CN,2,245,201912,18515 -BE,CN,2,251,201912,134101 -BE,CN,2,252,201912,26654 -BE,CN,2,253,201912,7532 -BE,CN,2,257,201912,1239066 -BE,CN,2,259,201912,4609818 -BE,CN,2,261,201912,5789567 -BE,CN,2,262,201912,1527344 -BE,CN,2,263,201912,6212115 -BE,CN,2,264,201912,1086830 -BE,CN,2,265,201912,7143001 -BE,CN,2,266,201912,6885891 -BE,CN,2,267,201912,1009855 -BE,CN,2,271,201912,3368214 -BE,CN,2,272,201912,175781 -BE,CN,2,273,201912,2917321 -BE,CN,2,274,201912,2815654 -BE,CN,2,275,201912,575366 -BE,CN,2,279,201912,1416262 -BE,CN,2,281,201912,18130898 -BE,CN,2,282,201912,26843681 -BE,CN,2,283,201912,341825 -BE,CN,2,284,201912,2579200 -BE,CN,2,289,201912,11302912 -BE,CN,2,291,201912,1609158 -BE,CN,2,292,201912,185741 -BE,CN,2,293,201912,18776891 -BE,CN,2,302,201912,461800 -BE,CN,2,303,201912,1979630 -BE,CN,2,309,201912,55494 -BE,CN,2,310,201912,1022565 -BE,CN,2,321,201912,11231854 -BE,CN,2,322,201912,6931 -BE,CN,2,323,201912,304097 -BE,CN,2,324,201912,2542210 -BE,CN,2,325,201912,24087358 -BE,CN,2,329,201912,51140 -BE,CO,1,012,201912,29966778 -BE,CO,1,089,201912,7692 -BE,CO,1,103,201912,71544 -BE,CO,1,108,201912,1852849 -BE,CO,1,141,201912,26506 -BE,CO,1,151,201912,141 -BE,CO,1,201,201912,229402 -BE,CO,1,221,201912,378 -BE,CO,1,222,201912,43822 -BE,CO,1,244,201912,3063987 -BE,CO,1,259,201912,490 -BE,CO,1,262,201912,537 -BE,CO,1,263,201912,997 -BE,CO,1,265,201912,33 -BE,CO,1,271,201912,6050 -BE,CO,1,281,201912,2852 -BE,CO,1,282,201912,17 -BE,CO,1,309,201912,3377 -BE,CO,1,321,201912,69649 -BE,CO,2,103,201912,2166888 -BE,CO,2,104,201912,21532 -BE,CO,2,106,201912,65086 -BE,CO,2,108,201912,159800 -BE,CO,2,109,201912,402467 -BE,CO,2,110,201912,292121 -BE,CO,2,132,201912,36289 -BE,CO,2,139,201912,173385 -BE,CO,2,141,201912,46781 -BE,CO,2,151,201912,101821 -BE,CO,2,162,201912,2725 -BE,CO,2,171,201912,640249 -BE,CO,2,172,201912,17952 -BE,CO,2,192,201912,102636 -BE,CO,2,201,201912,3257655 -BE,CO,2,202,201912,140953 -BE,CO,2,203,201912,286518 -BE,CO,2,204,201912,455354 -BE,CO,2,205,201912,714291 -BE,CO,2,211,201912,16506 -BE,CO,2,212,201912,13098382 -BE,CO,2,221,201912,221600 -BE,CO,2,222,201912,395800 -BE,CO,2,231,201912,48186 -BE,CO,2,236,201912,28316 -BE,CO,2,239,201912,5775 -BE,CO,2,241,201912,3743692 -BE,CO,2,242,201912,3476 -BE,CO,2,243,201912,150347 -BE,CO,2,244,201912,72677 -BE,CO,2,252,201912,3664 -BE,CO,2,257,201912,58515 -BE,CO,2,259,201912,106571 -BE,CO,2,261,201912,12042 -BE,CO,2,262,201912,49692 -BE,CO,2,263,201912,150264 -BE,CO,2,264,201912,119528 -BE,CO,2,265,201912,57835 -BE,CO,2,266,201912,124524 -BE,CO,2,267,201912,73650 -BE,CO,2,271,201912,243425 -BE,CO,2,272,201912,4588 -BE,CO,2,273,201912,158775 -BE,CO,2,274,201912,5975 -BE,CO,2,275,201912,101290 -BE,CO,2,279,201912,613413 -BE,CO,2,281,201912,537398 -BE,CO,2,282,201912,283523 -BE,CO,2,284,201912,107518 -BE,CO,2,289,201912,729256 -BE,CO,2,291,201912,1225465 -BE,CO,2,293,201912,117961 -BE,CO,2,302,201912,472085 -BE,CO,2,310,201912,527 -BE,CO,2,321,201912,76 -BE,CO,2,324,201912,186143 -BE,CO,2,325,201912,1238731 -BE,CO,2,329,201912,20102 -BE,CR,1,011,201912,244444 -BE,CR,1,012,201912,15562247 -BE,CR,1,013,201912,253628 -BE,CR,1,102,201912,529438 -BE,CR,1,103,201912,1919799 -BE,CR,1,108,201912,609 -BE,CR,1,221,201912,397994 -BE,CR,1,222,201912,221 -BE,CR,1,259,201912,992 -BE,CR,1,261,201912,1490 -BE,CR,1,262,201912,317 -BE,CR,1,266,201912,4731 -BE,CR,1,271,201912,255 -BE,CR,1,273,201912,6817 -BE,CR,1,279,201912,356821 -BE,CR,1,281,201912,8467 -BE,CR,1,282,201912,280 -BE,CR,1,291,201912,19848 -BE,CR,1,293,201912,347 -BE,CR,1,325,201912,33125896 -BE,CR,2,013,201912,35594 -BE,CR,2,103,201912,225706 -BE,CR,2,106,201912,72597 -BE,CR,2,108,201912,136094 -BE,CR,2,110,201912,63008 -BE,CR,2,139,201912,6125 -BE,CR,2,141,201912,7232 -BE,CR,2,151,201912,74 -BE,CR,2,162,201912,3458 -BE,CR,2,171,201912,59998 -BE,CR,2,172,201912,1888 -BE,CR,2,192,201912,27477 -BE,CR,2,201,201912,362726 -BE,CR,2,202,201912,19019 -BE,CR,2,203,201912,5556 -BE,CR,2,204,201912,14412 -BE,CR,2,205,201912,81217 -BE,CR,2,211,201912,2734 -BE,CR,2,212,201912,578442 -BE,CR,2,221,201912,12887 -BE,CR,2,222,201912,59233 -BE,CR,2,231,201912,7907 -BE,CR,2,234,201912,1315 -BE,CR,2,259,201912,3449 -BE,CR,2,265,201912,2342 -BE,CR,2,266,201912,2226 -BE,CR,2,271,201912,4126 -BE,CR,2,273,201912,40 -BE,CR,2,274,201912,5147 -BE,CR,2,275,201912,7459 -BE,CR,2,279,201912,1122 -BE,CR,2,281,201912,36931 -BE,CR,2,282,201912,25353 -BE,CR,2,289,201912,525399 -BE,CR,2,291,201912,613257 -BE,CR,2,293,201912,294 -BE,CR,2,310,201912,3592 -BE,CR,2,325,201912,192845 -BE,CR,2,329,201912,2162 -BE,CU,1,014,201912,62421 -BE,CU,1,102,201912,50300 -BE,CU,1,110,201912,101973 -BE,CU,2,103,201912,92876 -BE,CU,2,105,201912,1617750 -BE,CU,2,107,201912,4800 -BE,CU,2,139,201912,13045 -BE,CU,2,192,201912,109099 -BE,CU,2,201,201912,67978 -BE,CU,2,203,201912,116669 -BE,CU,2,205,201912,33561 -BE,CU,2,221,201912,50843 -BE,CU,2,222,201912,3364 -BE,CU,2,231,201912,299 -BE,CU,2,239,201912,1000 -BE,CU,2,242,201912,6730 -BE,CU,2,244,201912,1750 -BE,CU,2,257,201912,967 -BE,CU,2,259,201912,11987 -BE,CU,2,262,201912,4254 -BE,CU,2,264,201912,1733 -BE,CU,2,265,201912,264080 -BE,CU,2,271,201912,2377 -BE,CU,2,273,201912,2563 -BE,CU,2,274,201912,49395 -BE,CU,2,279,201912,10396 -BE,CU,2,281,201912,379078 -BE,CU,2,282,201912,44004 -BE,CU,2,289,201912,66846 -BE,CU,2,293,201912,149472 -BE,CU,2,310,201912,1630 -BE,CV,1,151,201912,40 -BE,CV,2,103,201912,93427 -BE,CV,2,105,201912,883385 -BE,CV,2,108,201912,2785 -BE,CV,2,109,201912,6247 -BE,CV,2,110,201912,15595 -BE,CV,2,139,201912,50 -BE,CV,2,141,201912,5400 -BE,CV,2,151,201912,600 -BE,CV,2,162,201912,1970 -BE,CV,2,172,201912,23881 -BE,CV,2,203,201912,17 -BE,CV,2,222,201912,30 -BE,CV,2,259,201912,13432 -BE,CV,2,264,201912,867 -BE,CV,2,275,201912,2550 -BE,CV,2,279,201912,502 -BE,CV,2,282,201912,350 -BE,CV,2,291,201912,85635 -BE,CV,2,293,201912,2025 -BE,CV,2,309,201912,850 -BE,CV,2,310,201912,2300 -BE,CW,2,103,201912,33118 -BE,CW,2,105,201912,20854 -BE,CW,2,106,201912,50712 -BE,CW,2,108,201912,13125 -BE,CW,2,110,201912,65786 -BE,CW,2,139,201912,10908 -BE,CW,2,172,201912,2030 -BE,CW,2,201,201912,25203 -BE,CW,2,202,201912,280 -BE,CW,2,203,201912,65840 -BE,CW,2,204,201912,8547 -BE,CW,2,205,201912,11100 -BE,CW,2,221,201912,572 -BE,CW,2,222,201912,3783 -BE,CW,2,241,201912,172875 -BE,CW,2,259,201912,10524 -BE,CW,2,271,201912,3420 -BE,CW,2,281,201912,1230 -BE,CW,2,282,201912,2940 -BE,CW,2,289,201912,24070 -BE,CW,2,291,201912,10000 -BE,CW,2,324,201912,6174 -BE,CY,1,011,201912,34774 -BE,CY,1,012,201912,91609 -BE,CY,1,101,201912,100114 -BE,CY,1,103,201912,87499 -BE,CY,1,105,201912,607851 -BE,CY,1,108,201912,2285 -BE,CY,1,110,201912,62433 -BE,CY,1,141,201912,27557 -BE,CY,1,143,201912,2553 -BE,CY,1,151,201912,158 -BE,CY,1,162,201912,14188 -BE,CY,1,201,201912,15816 -BE,CY,1,205,201912,5357 -BE,CY,1,212,201912,691320 -BE,CY,1,222,201912,1322 -BE,CY,1,257,201912,395 -BE,CY,1,259,201912,1212 -BE,CY,1,262,201912,3558 -BE,CY,1,265,201912,50919 -BE,CY,1,271,201912,1487 -BE,CY,1,279,201912,937 -BE,CY,1,281,201912,6759 -BE,CY,1,282,201912,8124 -BE,CY,1,293,201912,553 -BE,CY,1,325,201912,68472 -BE,CY,2,011,201912,102635 -BE,CY,2,012,201912,18562 -BE,CY,2,014,201912,7698 -BE,CY,2,030,201912,171 -BE,CY,2,081,201912,971 -BE,CY,2,089,201912,27 -BE,CY,2,101,201912,409481 -BE,CY,2,102,201912,38939 -BE,CY,2,103,201912,582419 -BE,CY,2,104,201912,185253 -BE,CY,2,105,201912,256971 -BE,CY,2,106,201912,154186 -BE,CY,2,107,201912,85141 -BE,CY,2,108,201912,346409 -BE,CY,2,109,201912,203125 -BE,CY,2,110,201912,421059 -BE,CY,2,120,201912,98668 -BE,CY,2,132,201912,26332 -BE,CY,2,139,201912,133174 -BE,CY,2,141,201912,752014 -BE,CY,2,143,201912,243950 -BE,CY,2,151,201912,196085 -BE,CY,2,152,201912,1667271 -BE,CY,2,162,201912,224701 -BE,CY,2,171,201912,2410 -BE,CY,2,172,201912,393054 -BE,CY,2,192,201912,181752 -BE,CY,2,201,201912,331069 -BE,CY,2,202,201912,38015 -BE,CY,2,203,201912,189281 -BE,CY,2,204,201912,382565 -BE,CY,2,205,201912,373042 -BE,CY,2,211,201912,11385 -BE,CY,2,212,201912,1348980 -BE,CY,2,221,201912,123292 -BE,CY,2,222,201912,168409 -BE,CY,2,231,201912,247782 -BE,CY,2,233,201912,10461 -BE,CY,2,234,201912,6238 -BE,CY,2,239,201912,6427 -BE,CY,2,242,201912,649 -BE,CY,2,244,201912,29495 -BE,CY,2,245,201912,22 -BE,CY,2,252,201912,155 -BE,CY,2,257,201912,499338 -BE,CY,2,259,201912,45585 -BE,CY,2,261,201912,6858 -BE,CY,2,262,201912,230125 -BE,CY,2,263,201912,254282 -BE,CY,2,264,201912,126569 -BE,CY,2,265,201912,42514 -BE,CY,2,266,201912,49365 -BE,CY,2,267,201912,26020 -BE,CY,2,271,201912,35624 -BE,CY,2,272,201912,230005 -BE,CY,2,273,201912,42139 -BE,CY,2,274,201912,88552 -BE,CY,2,275,201912,170596 -BE,CY,2,279,201912,64562 -BE,CY,2,281,201912,317036 -BE,CY,2,282,201912,255144 -BE,CY,2,283,201912,44971 -BE,CY,2,284,201912,2373 -BE,CY,2,289,201912,33772 -BE,CY,2,291,201912,2745626 -BE,CY,2,292,201912,3660 -BE,CY,2,293,201912,159933 -BE,CY,2,309,201912,118069 -BE,CY,2,310,201912,31892 -BE,CY,2,321,201912,234726 -BE,CY,2,322,201912,11941 -BE,CY,2,323,201912,38461 -BE,CY,2,324,201912,9782 -BE,CY,2,325,201912,141564 -BE,CY,2,329,201912,133701 -BE,CZ,1,011,201912,121908 -BE,CZ,1,012,201912,257156 -BE,CZ,1,014,201912,7577 -BE,CZ,1,030,201912,114471 -BE,CZ,1,081,201912,809674 -BE,CZ,1,101,201912,1108003 -BE,CZ,1,102,201912,6172 -BE,CZ,1,103,201912,22444 -BE,CZ,1,104,201912,54658 -BE,CZ,1,105,201912,15967 -BE,CZ,1,106,201912,80847 -BE,CZ,1,107,201912,1814313 -BE,CZ,1,108,201912,2974820 -BE,CZ,1,109,201912,103999 -BE,CZ,1,110,201912,11424 -BE,CZ,1,120,201912,1800012 -BE,CZ,1,131,201912,62907 -BE,CZ,1,132,201912,454758 -BE,CZ,1,139,201912,2150106 -BE,CZ,1,141,201912,1583887 -BE,CZ,1,143,201912,265624 -BE,CZ,1,151,201912,266544 -BE,CZ,1,152,201912,420895 -BE,CZ,1,161,201912,30845 -BE,CZ,1,162,201912,959121 -BE,CZ,1,171,201912,1917078 -BE,CZ,1,172,201912,3984355 -BE,CZ,1,181,201912,77020 -BE,CZ,1,191,201912,40752 -BE,CZ,1,192,201912,402000 -BE,CZ,1,201,201912,3023214 -BE,CZ,1,202,201912,615562 -BE,CZ,1,203,201912,42860 -BE,CZ,1,204,201912,7254356 -BE,CZ,1,205,201912,3600265 -BE,CZ,1,206,201912,1135677 -BE,CZ,1,211,201912,281 -BE,CZ,1,212,201912,3716785 -BE,CZ,1,221,201912,5505352 -BE,CZ,1,222,201912,4477577 -BE,CZ,1,231,201912,4377800 -BE,CZ,1,232,201912,257605 -BE,CZ,1,233,201912,215831 -BE,CZ,1,234,201912,29773 -BE,CZ,1,236,201912,262408 -BE,CZ,1,237,201912,6856 -BE,CZ,1,239,201912,747791 -BE,CZ,1,241,201912,681089 -BE,CZ,1,242,201912,550888 -BE,CZ,1,243,201912,1197963 -BE,CZ,1,244,201912,1017004 -BE,CZ,1,245,201912,12995 -BE,CZ,1,251,201912,3988220 -BE,CZ,1,252,201912,3067814 -BE,CZ,1,253,201912,287 -BE,CZ,1,254,201912,24987 -BE,CZ,1,257,201912,6651117 -BE,CZ,1,259,201912,6169538 -BE,CZ,1,261,201912,3497407 -BE,CZ,1,262,201912,25506710 -BE,CZ,1,263,201912,6044770 -BE,CZ,1,264,201912,1276226 -BE,CZ,1,265,201912,914388 -BE,CZ,1,266,201912,8639 -BE,CZ,1,267,201912,37119 -BE,CZ,1,268,201912,34525 -BE,CZ,1,271,201912,6041592 -BE,CZ,1,272,201912,495380 -BE,CZ,1,273,201912,3833576 -BE,CZ,1,274,201912,1154730 -BE,CZ,1,275,201912,604415 -BE,CZ,1,279,201912,1779305 -BE,CZ,1,281,201912,8591806 -BE,CZ,1,282,201912,31071283 -BE,CZ,1,283,201912,146948 -BE,CZ,1,284,201912,583280 -BE,CZ,1,289,201912,2967134 -BE,CZ,1,291,201912,53155028 -BE,CZ,1,292,201912,116509 -BE,CZ,1,293,201912,24494972 -BE,CZ,1,302,201912,346355 -BE,CZ,1,303,201912,516344 -BE,CZ,1,309,201912,321812 -BE,CZ,1,310,201912,10561141 -BE,CZ,1,321,201912,27855 -BE,CZ,1,322,201912,1850 -BE,CZ,1,323,201912,305892 -BE,CZ,1,324,201912,3519823 -BE,CZ,1,325,201912,4953931 -BE,CZ,1,329,201912,476992 -BE,CZ,2,011,201912,1410414 -BE,CZ,2,012,201912,9763304 -BE,CZ,2,013,201912,2042 -BE,CZ,2,014,201912,77712 -BE,CZ,2,021,201912,12241 -BE,CZ,2,030,201912,7228 -BE,CZ,2,072,201912,13062 -BE,CZ,2,081,201912,324700 -BE,CZ,2,089,201912,197314 -BE,CZ,2,101,201912,7550835 -BE,CZ,2,102,201912,179486 -BE,CZ,2,103,201912,2325258 -BE,CZ,2,104,201912,283340 -BE,CZ,2,105,201912,2103164 -BE,CZ,2,106,201912,1292167 -BE,CZ,2,107,201912,1103268 -BE,CZ,2,108,201912,2719458 -BE,CZ,2,109,201912,1350657 -BE,CZ,2,110,201912,1390963 -BE,CZ,2,120,201912,2104989 -BE,CZ,2,131,201912,326640 -BE,CZ,2,132,201912,894552 -BE,CZ,2,139,201912,3570079 -BE,CZ,2,141,201912,2922484 -BE,CZ,2,143,201912,740854 -BE,CZ,2,151,201912,959703 -BE,CZ,2,152,201912,3494722 -BE,CZ,2,161,201912,25487 -BE,CZ,2,162,201912,727008 -BE,CZ,2,171,201912,3322837 -BE,CZ,2,172,201912,2544886 -BE,CZ,2,181,201912,17986 -BE,CZ,2,192,201912,1782514 -BE,CZ,2,201,201912,34232700 -BE,CZ,2,202,201912,1664964 -BE,CZ,2,203,201912,1096302 -BE,CZ,2,204,201912,24811562 -BE,CZ,2,205,201912,4948540 -BE,CZ,2,206,201912,2244998 -BE,CZ,2,211,201912,175031 -BE,CZ,2,212,201912,26855953 -BE,CZ,2,221,201912,2709954 -BE,CZ,2,222,201912,11787022 -BE,CZ,2,231,201912,2289079 -BE,CZ,2,232,201912,2496289 -BE,CZ,2,233,201912,139074 -BE,CZ,2,234,201912,51163 -BE,CZ,2,236,201912,77456 -BE,CZ,2,237,201912,476 -BE,CZ,2,239,201912,332056 -BE,CZ,2,241,201912,8028071 -BE,CZ,2,242,201912,146168 -BE,CZ,2,243,201912,691463 -BE,CZ,2,244,201912,3044072 -BE,CZ,2,245,201912,17219 -BE,CZ,2,251,201912,450876 -BE,CZ,2,252,201912,74510 -BE,CZ,2,253,201912,2483 -BE,CZ,2,254,201912,25157 -BE,CZ,2,257,201912,2219988 -BE,CZ,2,259,201912,1826861 -BE,CZ,2,261,201912,1543347 -BE,CZ,2,262,201912,4366022 -BE,CZ,2,263,201912,6816044 -BE,CZ,2,264,201912,2903126 -BE,CZ,2,265,201912,1804530 -BE,CZ,2,266,201912,940550 -BE,CZ,2,267,201912,158751 -BE,CZ,2,268,201912,1232344 -BE,CZ,2,271,201912,930333 -BE,CZ,2,272,201912,293781 -BE,CZ,2,273,201912,1637187 -BE,CZ,2,274,201912,447791 -BE,CZ,2,275,201912,659955 -BE,CZ,2,279,201912,1224325 -BE,CZ,2,281,201912,4824232 -BE,CZ,2,282,201912,6968083 -BE,CZ,2,283,201912,1691155 -BE,CZ,2,284,201912,2698003 -BE,CZ,2,289,201912,4971424 -BE,CZ,2,291,201912,22099154 -BE,CZ,2,292,201912,220687 -BE,CZ,2,293,201912,4952228 -BE,CZ,2,301,201912,24590 -BE,CZ,2,302,201912,8330 -BE,CZ,2,303,201912,650346 -BE,CZ,2,309,201912,577281 -BE,CZ,2,310,201912,304233 -BE,CZ,2,321,201912,700067 -BE,CZ,2,322,201912,293641 -BE,CZ,2,323,201912,268890 -BE,CZ,2,324,201912,600614 -BE,CZ,2,325,201912,7122057 -BE,CZ,2,329,201912,701905 -BE,DE,1,011,201912,27459091 -BE,DE,1,012,201912,10276255 -BE,DE,1,013,201912,1006978 -BE,DE,1,014,201912,3174161 -BE,DE,1,021,201912,62063 -BE,DE,1,022,201912,4969226 -BE,DE,1,023,201912,55700 -BE,DE,1,030,201912,348311 -BE,DE,1,051,201912,1319101 -BE,DE,1,052,201912,1079984 -BE,DE,1,061,201912,175 -BE,DE,1,062,201912,17405750 -BE,DE,1,071,201912,91136 -BE,DE,1,072,201912,249452 -BE,DE,1,081,201912,3695217 -BE,DE,1,089,201912,5293721 -BE,DE,1,101,201912,28064209 -BE,DE,1,102,201912,9394964 -BE,DE,1,103,201912,20235191 -BE,DE,1,104,201912,13444984 -BE,DE,1,105,201912,40994613 -BE,DE,1,106,201912,10219312 -BE,DE,1,107,201912,14268197 -BE,DE,1,108,201912,70773720 -BE,DE,1,109,201912,8138870 -BE,DE,1,110,201912,15759889 -BE,DE,1,120,201912,5102760 -BE,DE,1,131,201912,927956 -BE,DE,1,132,201912,5369623 -BE,DE,1,139,201912,13986187 -BE,DE,1,141,201912,89394789 -BE,DE,1,142,201912,51002 -BE,DE,1,143,201912,20494102 -BE,DE,1,151,201912,7115267 -BE,DE,1,152,201912,37396838 -BE,DE,1,161,201912,5443597 -BE,DE,1,162,201912,11719866 -BE,DE,1,171,201912,44700328 -BE,DE,1,172,201912,49615047 -BE,DE,1,181,201912,823724 -BE,DE,1,191,201912,6652357 -BE,DE,1,192,201912,78924293 -BE,DE,1,201,201912,468206952 -BE,DE,1,202,201912,10055710 -BE,DE,1,203,201912,29766029 -BE,DE,1,204,201912,43597607 -BE,DE,1,205,201912,94140290 -BE,DE,1,206,201912,3251097 -BE,DE,1,211,201912,13396788 -BE,DE,1,212,201912,269960914 -BE,DE,1,221,201912,23101925 -BE,DE,1,222,201912,97984030 -BE,DE,1,231,201912,25636916 -BE,DE,1,232,201912,1846639 -BE,DE,1,233,201912,1171495 -BE,DE,1,234,201912,2598987 -BE,DE,1,235,201912,3905688 -BE,DE,1,236,201912,3937747 -BE,DE,1,237,201912,72518 -BE,DE,1,239,201912,4887824 -BE,DE,1,241,201912,79841124 -BE,DE,1,242,201912,7568249 -BE,DE,1,243,201912,7009754 -BE,DE,1,244,201912,163312273 -BE,DE,1,245,201912,359879 -BE,DE,1,251,201912,13024868 -BE,DE,1,252,201912,11751823 -BE,DE,1,253,201912,4713563 -BE,DE,1,254,201912,504771 -BE,DE,1,257,201912,25432391 -BE,DE,1,259,201912,42381651 -BE,DE,1,261,201912,46023425 -BE,DE,1,262,201912,51427761 -BE,DE,1,263,201912,16608507 -BE,DE,1,264,201912,12267865 -BE,DE,1,265,201912,57540848 -BE,DE,1,266,201912,8704570 -BE,DE,1,267,201912,7589172 -BE,DE,1,268,201912,319179 -BE,DE,1,271,201912,44667851 -BE,DE,1,272,201912,8550719 -BE,DE,1,273,201912,26968027 -BE,DE,1,274,201912,11603206 -BE,DE,1,275,201912,33980074 -BE,DE,1,279,201912,23127221 -BE,DE,1,281,201912,113150858 -BE,DE,1,282,201912,131174006 -BE,DE,1,283,201912,15052404 -BE,DE,1,284,201912,13755909 -BE,DE,1,289,201912,66681457 -BE,DE,1,291,201912,627661357 -BE,DE,1,292,201912,14313698 -BE,DE,1,293,201912,186058735 -BE,DE,1,301,201912,763 -BE,DE,1,302,201912,4159423 -BE,DE,1,303,201912,7720694 -BE,DE,1,304,201912,41341 -BE,DE,1,309,201912,12431145 -BE,DE,1,310,201912,27608842 -BE,DE,1,321,201912,9663267 -BE,DE,1,322,201912,2395406 -BE,DE,1,323,201912,882439 -BE,DE,1,324,201912,4008937 -BE,DE,1,325,201912,62669363 -BE,DE,1,329,201912,6660211 -BE,DE,2,011,201912,41390903 -BE,DE,2,012,201912,42026913 -BE,DE,2,013,201912,1672729 -BE,DE,2,014,201912,14087095 -BE,DE,2,021,201912,169319 -BE,DE,2,022,201912,1509450 -BE,DE,2,023,201912,11795 -BE,DE,2,030,201912,567850 -BE,DE,2,051,201912,8874691 -BE,DE,2,062,201912,1591561 -BE,DE,2,072,201912,12981063 -BE,DE,2,081,201912,4999288 -BE,DE,2,089,201912,3765633 -BE,DE,2,101,201912,72623450 -BE,DE,2,102,201912,8002127 -BE,DE,2,103,201912,60587805 -BE,DE,2,104,201912,13650263 -BE,DE,2,105,201912,34769507 -BE,DE,2,106,201912,18495794 -BE,DE,2,107,201912,17654512 -BE,DE,2,108,201912,73111072 -BE,DE,2,109,201912,9909313 -BE,DE,2,110,201912,9763091 -BE,DE,2,120,201912,12275386 -BE,DE,2,131,201912,3312057 -BE,DE,2,132,201912,6583267 -BE,DE,2,139,201912,33304909 -BE,DE,2,141,201912,83892375 -BE,DE,2,142,201912,50788 -BE,DE,2,143,201912,20444723 -BE,DE,2,151,201912,14086046 -BE,DE,2,152,201912,64923988 -BE,DE,2,161,201912,3834347 -BE,DE,2,162,201912,16207730 -BE,DE,2,171,201912,39720475 -BE,DE,2,172,201912,13016097 -BE,DE,2,181,201912,69712 -BE,DE,2,191,201912,1410169 -BE,DE,2,192,201912,411093939 -BE,DE,2,201,201912,718284018 -BE,DE,2,202,201912,10666327 -BE,DE,2,203,201912,19444179 -BE,DE,2,204,201912,43699207 -BE,DE,2,205,201912,134715819 -BE,DE,2,206,201912,6352498 -BE,DE,2,211,201912,27603635 -BE,DE,2,212,201912,447829855 -BE,DE,2,221,201912,28305712 -BE,DE,2,222,201912,80910499 -BE,DE,2,231,201912,27240993 -BE,DE,2,232,201912,1437735 -BE,DE,2,233,201912,3948338 -BE,DE,2,234,201912,11181257 -BE,DE,2,235,201912,1678387 -BE,DE,2,236,201912,2614266 -BE,DE,2,237,201912,1141002 -BE,DE,2,239,201912,4561781 -BE,DE,2,241,201912,187963428 -BE,DE,2,242,201912,7581069 -BE,DE,2,243,201912,15419047 -BE,DE,2,244,201912,267564588 -BE,DE,2,245,201912,175187 -BE,DE,2,251,201912,7983904 -BE,DE,2,252,201912,3603648 -BE,DE,2,253,201912,43078 -BE,DE,2,254,201912,1093899 -BE,DE,2,257,201912,17201760 -BE,DE,2,259,201912,28940639 -BE,DE,2,261,201912,33461164 -BE,DE,2,262,201912,28895438 -BE,DE,2,263,201912,21767155 -BE,DE,2,264,201912,36358433 -BE,DE,2,265,201912,32994444 -BE,DE,2,266,201912,12751526 -BE,DE,2,267,201912,6335430 -BE,DE,2,268,201912,227830 -BE,DE,2,271,201912,17718928 -BE,DE,2,272,201912,15176531 -BE,DE,2,273,201912,18848228 -BE,DE,2,274,201912,9870087 -BE,DE,2,275,201912,20599248 -BE,DE,2,279,201912,14535925 -BE,DE,2,281,201912,49707271 -BE,DE,2,282,201912,95724038 -BE,DE,2,283,201912,18965628 -BE,DE,2,284,201912,21021452 -BE,DE,2,289,201912,38039277 -BE,DE,2,291,201912,612794664 -BE,DE,2,292,201912,6328930 -BE,DE,2,293,201912,77650496 -BE,DE,2,301,201912,478357 -BE,DE,2,302,201912,160734 -BE,DE,2,303,201912,17326491 -BE,DE,2,309,201912,20302602 -BE,DE,2,310,201912,11608936 -BE,DE,2,321,201912,10859689 -BE,DE,2,322,201912,3201792 -BE,DE,2,323,201912,2614995 -BE,DE,2,324,201912,5398236 -BE,DE,2,325,201912,80733338 -BE,DE,2,329,201912,7256717 -BE,DJ,2,103,201912,18649 -BE,DJ,2,105,201912,14 -BE,DJ,2,110,201912,2750 -BE,DJ,2,139,201912,31538 -BE,DJ,2,201,201912,1236 -BE,DJ,2,205,201912,6033 -BE,DJ,2,221,201912,7 -BE,DJ,2,222,201912,2741 -BE,DJ,2,259,201912,1094 -BE,DJ,2,265,201912,1964 -BE,DJ,2,271,201912,31 -BE,DJ,2,279,201912,12380 -BE,DJ,2,281,201912,1986 -BE,DJ,2,282,201912,30181 -BE,DJ,2,289,201912,195 -BE,DJ,2,291,201912,373550 -BE,DJ,2,325,201912,14558 -BE,DK,1,011,201912,150572 -BE,DK,1,012,201912,1010436 -BE,DK,1,013,201912,234039 -BE,DK,1,014,201912,1215068 -BE,DK,1,021,201912,82937 -BE,DK,1,023,201912,7899 -BE,DK,1,030,201912,1466940 -BE,DK,1,089,201912,43535 -BE,DK,1,101,201912,795546 -BE,DK,1,102,201912,4019993 -BE,DK,1,103,201912,621114 -BE,DK,1,104,201912,835330 -BE,DK,1,105,201912,3833617 -BE,DK,1,106,201912,572541 -BE,DK,1,107,201912,295899 -BE,DK,1,108,201912,3300751 -BE,DK,1,109,201912,827989 -BE,DK,1,110,201912,290444 -BE,DK,1,120,201912,409048 -BE,DK,1,131,201912,83670 -BE,DK,1,132,201912,293818 -BE,DK,1,139,201912,1653201 -BE,DK,1,141,201912,6611235 -BE,DK,1,142,201912,1763 -BE,DK,1,143,201912,1976644 -BE,DK,1,151,201912,255700 -BE,DK,1,152,201912,458882 -BE,DK,1,161,201912,18589 -BE,DK,1,162,201912,335968 -BE,DK,1,171,201912,1112954 -BE,DK,1,172,201912,821525 -BE,DK,1,192,201912,7818514 -BE,DK,1,201,201912,6289735 -BE,DK,1,202,201912,97829 -BE,DK,1,203,201912,24149 -BE,DK,1,204,201912,2040522 -BE,DK,1,205,201912,1195721 -BE,DK,1,206,201912,20310 -BE,DK,1,211,201912,3344942 -BE,DK,1,212,201912,7350991 -BE,DK,1,221,201912,145683 -BE,DK,1,222,201912,8198769 -BE,DK,1,231,201912,168269 -BE,DK,1,233,201912,15914 -BE,DK,1,234,201912,46654 -BE,DK,1,235,201912,99546 -BE,DK,1,236,201912,33557 -BE,DK,1,237,201912,142 -BE,DK,1,239,201912,20776 -BE,DK,1,241,201912,793624 -BE,DK,1,242,201912,284777 -BE,DK,1,243,201912,93316 -BE,DK,1,244,201912,218345 -BE,DK,1,245,201912,48259 -BE,DK,1,251,201912,879435 -BE,DK,1,252,201912,12256 -BE,DK,1,254,201912,24460 -BE,DK,1,257,201912,289443 -BE,DK,1,259,201912,1343055 -BE,DK,1,261,201912,211411 -BE,DK,1,262,201912,702588 -BE,DK,1,263,201912,943222 -BE,DK,1,264,201912,1762432 -BE,DK,1,265,201912,1498600 -BE,DK,1,266,201912,471411 -BE,DK,1,267,201912,152245 -BE,DK,1,268,201912,1546 -BE,DK,1,271,201912,2409585 -BE,DK,1,272,201912,50938 -BE,DK,1,273,201912,304013 -BE,DK,1,274,201912,243073 -BE,DK,1,275,201912,410529 -BE,DK,1,279,201912,1091375 -BE,DK,1,281,201912,3501436 -BE,DK,1,282,201912,3724423 -BE,DK,1,283,201912,1297379 -BE,DK,1,284,201912,2214280 -BE,DK,1,289,201912,6096225 -BE,DK,1,291,201912,5119148 -BE,DK,1,292,201912,251717 -BE,DK,1,293,201912,1690484 -BE,DK,1,302,201912,58243 -BE,DK,1,303,201912,95219 -BE,DK,1,304,201912,356108 -BE,DK,1,309,201912,203620 -BE,DK,1,310,201912,1710813 -BE,DK,1,321,201912,49284 -BE,DK,1,322,201912,9721 -BE,DK,1,323,201912,79450 -BE,DK,1,324,201912,743464 -BE,DK,1,325,201912,1052743 -BE,DK,1,329,201912,206203 -BE,DK,2,011,201912,786275 -BE,DK,2,012,201912,930319 -BE,DK,2,013,201912,79446 -BE,DK,2,014,201912,909882 -BE,DK,2,021,201912,2332 -BE,DK,2,023,201912,121 -BE,DK,2,030,201912,295405 -BE,DK,2,081,201912,4732 -BE,DK,2,089,201912,328986 -BE,DK,2,101,201912,1514299 -BE,DK,2,102,201912,759916 -BE,DK,2,103,201912,5356923 -BE,DK,2,104,201912,798547 -BE,DK,2,105,201912,1552299 -BE,DK,2,106,201912,1846848 -BE,DK,2,107,201912,1188511 -BE,DK,2,108,201912,4387748 -BE,DK,2,109,201912,2072249 -BE,DK,2,110,201912,1438484 -BE,DK,2,120,201912,481899 -BE,DK,2,131,201912,59761 -BE,DK,2,132,201912,302194 -BE,DK,2,139,201912,2519489 -BE,DK,2,141,201912,4548641 -BE,DK,2,143,201912,904644 -BE,DK,2,151,201912,727694 -BE,DK,2,152,201912,2193497 -BE,DK,2,161,201912,167673 -BE,DK,2,162,201912,587178 -BE,DK,2,171,201912,319206 -BE,DK,2,172,201912,513732 -BE,DK,2,191,201912,37677 -BE,DK,2,192,201912,17430164 -BE,DK,2,201,201912,24700174 -BE,DK,2,202,201912,345877 -BE,DK,2,203,201912,1718460 -BE,DK,2,204,201912,2366261 -BE,DK,2,205,201912,4521482 -BE,DK,2,206,201912,263112 -BE,DK,2,211,201912,1211882 -BE,DK,2,212,201912,23541790 -BE,DK,2,221,201912,2180111 -BE,DK,2,222,201912,5489993 -BE,DK,2,231,201912,580667 -BE,DK,2,232,201912,446 -BE,DK,2,233,201912,4751 -BE,DK,2,234,201912,631802 -BE,DK,2,235,201912,22881 -BE,DK,2,236,201912,148550 -BE,DK,2,237,201912,81593 -BE,DK,2,239,201912,1126072 -BE,DK,2,241,201912,1481469 -BE,DK,2,242,201912,81349 -BE,DK,2,243,201912,233704 -BE,DK,2,244,201912,971422 -BE,DK,2,245,201912,83829 -BE,DK,2,251,201912,643994 -BE,DK,2,252,201912,37094 -BE,DK,2,253,201912,6168 -BE,DK,2,254,201912,147440 -BE,DK,2,257,201912,1149427 -BE,DK,2,259,201912,2482720 -BE,DK,2,261,201912,1605709 -BE,DK,2,262,201912,2641448 -BE,DK,2,263,201912,906634 -BE,DK,2,264,201912,1772802 -BE,DK,2,265,201912,1615970 -BE,DK,2,266,201912,1442535 -BE,DK,2,267,201912,795971 -BE,DK,2,268,201912,13816 -BE,DK,2,271,201912,1060573 -BE,DK,2,272,201912,485098 -BE,DK,2,273,201912,2271383 -BE,DK,2,274,201912,403653 -BE,DK,2,275,201912,1257532 -BE,DK,2,279,201912,1309508 -BE,DK,2,281,201912,10719447 -BE,DK,2,282,201912,8818708 -BE,DK,2,283,201912,4481254 -BE,DK,2,284,201912,2247618 -BE,DK,2,289,201912,3640437 -BE,DK,2,291,201912,58633323 -BE,DK,2,292,201912,410871 -BE,DK,2,293,201912,3984639 -BE,DK,2,301,201912,6318 -BE,DK,2,309,201912,660621 -BE,DK,2,310,201912,1564936 -BE,DK,2,321,201912,519809 -BE,DK,2,322,201912,188366 -BE,DK,2,323,201912,183560 -BE,DK,2,324,201912,328436 -BE,DK,2,325,201912,9898433 -BE,DK,2,329,201912,245719 -BE,DO,1,011,201912,91674 -BE,DO,1,012,201912,6005755 -BE,DO,1,072,201912,912877 -BE,DO,1,103,201912,207771 -BE,DO,1,120,201912,27311 -BE,DO,1,141,201912,584870 -BE,DO,1,212,201912,12286 -BE,DO,1,222,201912,720 -BE,DO,1,265,201912,18 -BE,DO,1,271,201912,515 -BE,DO,1,273,201912,187 -BE,DO,1,279,201912,108 -BE,DO,1,283,201912,39100 -BE,DO,1,293,201912,617 -BE,DO,1,325,201912,203039 -BE,DO,1,329,201912,225306 -BE,DO,2,013,201912,17456 -BE,DO,2,103,201912,663070 -BE,DO,2,104,201912,2827 -BE,DO,2,105,201912,72599 -BE,DO,2,107,201912,7105 -BE,DO,2,108,201912,49949 -BE,DO,2,109,201912,47983 -BE,DO,2,110,201912,160256 -BE,DO,2,120,201912,102908 -BE,DO,2,132,201912,10 -BE,DO,2,139,201912,37062 -BE,DO,2,141,201912,12101 -BE,DO,2,151,201912,4647 -BE,DO,2,171,201912,317302 -BE,DO,2,172,201912,189696 -BE,DO,2,192,201912,197070 -BE,DO,2,201,201912,506029 -BE,DO,2,202,201912,66210 -BE,DO,2,203,201912,41103 -BE,DO,2,204,201912,5358 -BE,DO,2,205,201912,41767 -BE,DO,2,211,201912,148101 -BE,DO,2,212,201912,1251694 -BE,DO,2,221,201912,35082 -BE,DO,2,222,201912,42117 -BE,DO,2,231,201912,13951 -BE,DO,2,234,201912,2645 -BE,DO,2,242,201912,502 -BE,DO,2,244,201912,533545 -BE,DO,2,251,201912,42412 -BE,DO,2,257,201912,4781 -BE,DO,2,259,201912,16732 -BE,DO,2,263,201912,90 -BE,DO,2,265,201912,15089 -BE,DO,2,271,201912,138219 -BE,DO,2,273,201912,1126 -BE,DO,2,274,201912,5436 -BE,DO,2,275,201912,14673 -BE,DO,2,279,201912,1806 -BE,DO,2,281,201912,28187 -BE,DO,2,282,201912,350806 -BE,DO,2,289,201912,1722 -BE,DO,2,291,201912,277772 -BE,DO,2,293,201912,28560 -BE,DO,2,310,201912,1028 -BE,DO,2,325,201912,45257 -BE,DO,2,329,201912,3019 -BE,DZ,1,012,201912,85423 -BE,DZ,1,061,201912,58372502 -BE,DZ,1,110,201912,9360 -BE,DZ,1,192,201912,19258187 -BE,DZ,1,271,201912,206 -BE,DZ,2,013,201912,4638 -BE,DZ,2,014,201912,3216 -BE,DZ,2,022,201912,54013 -BE,DZ,2,089,201912,4900 -BE,DZ,2,103,201912,1608700 -BE,DZ,2,104,201912,28820 -BE,DZ,2,105,201912,6126856 -BE,DZ,2,106,201912,381303 -BE,DZ,2,108,201912,518822 -BE,DZ,2,109,201912,789055 -BE,DZ,2,110,201912,507293 -BE,DZ,2,131,201912,1095922 -BE,DZ,2,132,201912,18865 -BE,DZ,2,139,201912,235816 -BE,DZ,2,141,201912,25045 -BE,DZ,2,161,201912,860983 -BE,DZ,2,162,201912,130516 -BE,DZ,2,171,201912,1179871 -BE,DZ,2,172,201912,32048 -BE,DZ,2,192,201912,729850 -BE,DZ,2,201,201912,12471555 -BE,DZ,2,202,201912,95339 -BE,DZ,2,203,201912,733562 -BE,DZ,2,204,201912,2132533 -BE,DZ,2,205,201912,4594919 -BE,DZ,2,211,201912,1131563 -BE,DZ,2,212,201912,5634034 -BE,DZ,2,221,201912,183682 -BE,DZ,2,222,201912,2436910 -BE,DZ,2,231,201912,703148 -BE,DZ,2,234,201912,308 -BE,DZ,2,239,201912,3213 -BE,DZ,2,241,201912,3923057 -BE,DZ,2,242,201912,223520 -BE,DZ,2,243,201912,162177 -BE,DZ,2,244,201912,830501 -BE,DZ,2,245,201912,341 -BE,DZ,2,251,201912,19374 -BE,DZ,2,252,201912,51395 -BE,DZ,2,257,201912,1485747 -BE,DZ,2,259,201912,678319 -BE,DZ,2,261,201912,10566 -BE,DZ,2,262,201912,576794 -BE,DZ,2,263,201912,858219 -BE,DZ,2,264,201912,10776 -BE,DZ,2,265,201912,464848 -BE,DZ,2,266,201912,465917 -BE,DZ,2,267,201912,5055 -BE,DZ,2,271,201912,4798582 -BE,DZ,2,272,201912,32048 -BE,DZ,2,273,201912,12692 -BE,DZ,2,274,201912,20864 -BE,DZ,2,275,201912,94828 -BE,DZ,2,279,201912,97324 -BE,DZ,2,281,201912,4054179 -BE,DZ,2,282,201912,2914442 -BE,DZ,2,283,201912,747939 -BE,DZ,2,284,201912,456284 -BE,DZ,2,289,201912,6639211 -BE,DZ,2,291,201912,2120000 -BE,DZ,2,293,201912,518474 -BE,DZ,2,310,201912,2664 -BE,DZ,2,325,201912,1971049 -BE,DZ,2,329,201912,257692 -BE,EC,1,011,201912,124373 -BE,EC,1,012,201912,14605871 -BE,EC,1,102,201912,5541490 -BE,EC,1,103,201912,582835 -BE,EC,1,108,201912,69483 -BE,EC,1,120,201912,57959 -BE,EC,1,141,201912,154 -BE,EC,1,265,201912,9057 -BE,EC,1,271,201912,15663 -BE,EC,1,325,201912,1708 -BE,EC,2,013,201912,30333 -BE,EC,2,103,201912,260813 -BE,EC,2,106,201912,7690 -BE,EC,2,107,201912,1698 -BE,EC,2,108,201912,71297 -BE,EC,2,109,201912,214563 -BE,EC,2,110,201912,67819 -BE,EC,2,132,201912,9733 -BE,EC,2,139,201912,162583 -BE,EC,2,162,201912,35930 -BE,EC,2,171,201912,301911 -BE,EC,2,172,201912,159309 -BE,EC,2,192,201912,52597181 -BE,EC,2,201,201912,720125 -BE,EC,2,202,201912,221120 -BE,EC,2,203,201912,18119 -BE,EC,2,204,201912,57484 -BE,EC,2,205,201912,222234 -BE,EC,2,211,201912,35365 -BE,EC,2,212,201912,878103 -BE,EC,2,221,201912,26529 -BE,EC,2,222,201912,69833 -BE,EC,2,231,201912,119101 -BE,EC,2,241,201912,190680 -BE,EC,2,242,201912,253842 -BE,EC,2,243,201912,143862 -BE,EC,2,244,201912,29814 -BE,EC,2,251,201912,107 -BE,EC,2,252,201912,3815 -BE,EC,2,253,201912,502785 -BE,EC,2,257,201912,1804 -BE,EC,2,259,201912,35549 -BE,EC,2,261,201912,392 -BE,EC,2,262,201912,31351 -BE,EC,2,263,201912,6101 -BE,EC,2,264,201912,631 -BE,EC,2,265,201912,178805 -BE,EC,2,266,201912,119510 -BE,EC,2,271,201912,5217 -BE,EC,2,272,201912,1046 -BE,EC,2,273,201912,2779 -BE,EC,2,274,201912,4300 -BE,EC,2,279,201912,1863 -BE,EC,2,281,201912,424100 -BE,EC,2,282,201912,162472 -BE,EC,2,283,201912,8314 -BE,EC,2,289,201912,1916240 -BE,EC,2,291,201912,269578 -BE,EC,2,293,201912,32261 -BE,EC,2,309,201912,6096 -BE,EC,2,310,201912,2479 -BE,EC,2,325,201912,442099 -BE,EC,2,329,201912,56151 -BE,EE,1,012,201912,64199 -BE,EE,1,089,201912,294627 -BE,EE,1,101,201912,15536 -BE,EE,1,103,201912,6287 -BE,EE,1,105,201912,250583 -BE,EE,1,108,201912,444386 -BE,EE,1,110,201912,2000 -BE,EE,1,139,201912,131117 -BE,EE,1,141,201912,1892 -BE,EE,1,143,201912,130 -BE,EE,1,151,201912,25 -BE,EE,1,161,201912,301709 -BE,EE,1,162,201912,381642 -BE,EE,1,172,201912,51677 -BE,EE,1,201,201912,14594545 -BE,EE,1,203,201912,9305 -BE,EE,1,204,201912,1935 -BE,EE,1,205,201912,165054 -BE,EE,1,211,201912,4768 -BE,EE,1,212,201912,789 -BE,EE,1,221,201912,29523 -BE,EE,1,222,201912,157666 -BE,EE,1,231,201912,1575205 -BE,EE,1,239,201912,640 -BE,EE,1,242,201912,19291 -BE,EE,1,244,201912,957856 -BE,EE,1,252,201912,76616 -BE,EE,1,257,201912,41276 -BE,EE,1,259,201912,278256 -BE,EE,1,262,201912,547 -BE,EE,1,263,201912,123215 -BE,EE,1,264,201912,1702 -BE,EE,1,265,201912,64006 -BE,EE,1,271,201912,184376 -BE,EE,1,272,201912,3013 -BE,EE,1,273,201912,36101 -BE,EE,1,274,201912,128 -BE,EE,1,275,201912,441 -BE,EE,1,279,201912,4602 -BE,EE,1,281,201912,297717 -BE,EE,1,282,201912,46903 -BE,EE,1,283,201912,74225 -BE,EE,1,284,201912,253 -BE,EE,1,289,201912,11873 -BE,EE,1,291,201912,1957188 -BE,EE,1,292,201912,873 -BE,EE,1,293,201912,489698 -BE,EE,1,309,201912,27 -BE,EE,1,310,201912,19857 -BE,EE,1,325,201912,2464 -BE,EE,1,329,201912,22459 -BE,EE,2,011,201912,264857 -BE,EE,2,012,201912,5317663 -BE,EE,2,014,201912,1892 -BE,EE,2,030,201912,139 -BE,EE,2,081,201912,3126 -BE,EE,2,089,201912,442 -BE,EE,2,101,201912,517525 -BE,EE,2,102,201912,58435 -BE,EE,2,103,201912,138363 -BE,EE,2,104,201912,12681 -BE,EE,2,105,201912,115519 -BE,EE,2,106,201912,148772 -BE,EE,2,107,201912,150975 -BE,EE,2,108,201912,540314 -BE,EE,2,109,201912,103440 -BE,EE,2,110,201912,140963 -BE,EE,2,120,201912,178451 -BE,EE,2,131,201912,81 -BE,EE,2,132,201912,123775 -BE,EE,2,139,201912,483356 -BE,EE,2,141,201912,455258 -BE,EE,2,143,201912,199364 -BE,EE,2,151,201912,181408 -BE,EE,2,152,201912,659787 -BE,EE,2,161,201912,14067 -BE,EE,2,162,201912,83618 -BE,EE,2,171,201912,90687 -BE,EE,2,172,201912,43274 -BE,EE,2,192,201912,186270 -BE,EE,2,201,201912,3581603 -BE,EE,2,202,201912,584310 -BE,EE,2,203,201912,412557 -BE,EE,2,204,201912,115858 -BE,EE,2,205,201912,590738 -BE,EE,2,206,201912,124698 -BE,EE,2,211,201912,55093 -BE,EE,2,212,201912,1454948 -BE,EE,2,221,201912,274010 -BE,EE,2,222,201912,688418 -BE,EE,2,231,201912,138717 -BE,EE,2,233,201912,67766 -BE,EE,2,234,201912,3513 -BE,EE,2,236,201912,25975 -BE,EE,2,239,201912,39805 -BE,EE,2,241,201912,990564 -BE,EE,2,242,201912,83123 -BE,EE,2,243,201912,8535 -BE,EE,2,244,201912,10975 -BE,EE,2,245,201912,1152 -BE,EE,2,251,201912,25490 -BE,EE,2,252,201912,2463 -BE,EE,2,254,201912,267 -BE,EE,2,257,201912,210049 -BE,EE,2,259,201912,131073 -BE,EE,2,261,201912,634918 -BE,EE,2,262,201912,213588 -BE,EE,2,263,201912,84810 -BE,EE,2,264,201912,521391 -BE,EE,2,265,201912,333479 -BE,EE,2,266,201912,234995 -BE,EE,2,267,201912,4987 -BE,EE,2,271,201912,124864 -BE,EE,2,272,201912,292268 -BE,EE,2,273,201912,359113 -BE,EE,2,274,201912,114024 -BE,EE,2,275,201912,124301 -BE,EE,2,279,201912,171634 -BE,EE,2,281,201912,712407 -BE,EE,2,282,201912,1389487 -BE,EE,2,283,201912,1320920 -BE,EE,2,284,201912,28238 -BE,EE,2,289,201912,866101 -BE,EE,2,291,201912,3722408 -BE,EE,2,292,201912,10153 -BE,EE,2,293,201912,339598 -BE,EE,2,301,201912,123 -BE,EE,2,303,201912,9333 -BE,EE,2,309,201912,175149 -BE,EE,2,310,201912,116743 -BE,EE,2,321,201912,65037 -BE,EE,2,322,201912,16363 -BE,EE,2,323,201912,68604 -BE,EE,2,324,201912,100605 -BE,EE,2,325,201912,1262147 -BE,EE,2,329,201912,39721 -BE,EG,1,011,201912,1622610 -BE,EG,1,012,201912,14009932 -BE,EG,1,030,201912,42618 -BE,EG,1,081,201912,10166 -BE,EG,1,103,201912,1903829 -BE,EG,1,104,201912,110 -BE,EG,1,106,201912,1695 -BE,EG,1,107,201912,2938 -BE,EG,1,108,201912,61194 -BE,EG,1,110,201912,25651 -BE,EG,1,131,201912,78586 -BE,EG,1,139,201912,383004 -BE,EG,1,141,201912,1637579 -BE,EG,1,143,201912,350141 -BE,EG,1,151,201912,52 -BE,EG,1,172,201912,34833 -BE,EG,1,201,201912,12765325 -BE,EG,1,205,201912,436425 -BE,EG,1,206,201912,45657 -BE,EG,1,212,201912,51194 -BE,EG,1,222,201912,312426 -BE,EG,1,231,201912,104258 -BE,EG,1,233,201912,114571 -BE,EG,1,234,201912,222941 -BE,EG,1,235,201912,73660 -BE,EG,1,237,201912,91097 -BE,EG,1,241,201912,156049 -BE,EG,1,259,201912,60335 -BE,EG,1,262,201912,5425 -BE,EG,1,265,201912,345 -BE,EG,1,271,201912,11412 -BE,EG,1,273,201912,14085 -BE,EG,1,274,201912,116 -BE,EG,1,275,201912,1374975 -BE,EG,1,281,201912,422 -BE,EG,1,282,201912,3764 -BE,EG,1,289,201912,10011 -BE,EG,1,293,201912,17358 -BE,EG,1,310,201912,84803 -BE,EG,1,329,201912,32546 -BE,EG,2,011,201912,1342719 -BE,EG,2,014,201912,187567 -BE,EG,2,022,201912,220989 -BE,EG,2,081,201912,8531 -BE,EG,2,089,201912,432 -BE,EG,2,103,201912,294662 -BE,EG,2,104,201912,201460 -BE,EG,2,105,201912,1468094 -BE,EG,2,106,201912,465537 -BE,EG,2,107,201912,973873 -BE,EG,2,108,201912,1394195 -BE,EG,2,109,201912,536231 -BE,EG,2,110,201912,2899 -BE,EG,2,131,201912,240900 -BE,EG,2,132,201912,14693 -BE,EG,2,139,201912,71596 -BE,EG,2,141,201912,181505 -BE,EG,2,162,201912,105346 -BE,EG,2,171,201912,2417361 -BE,EG,2,172,201912,199788 -BE,EG,2,192,201912,808478 -BE,EG,2,201,201912,12261086 -BE,EG,2,202,201912,277432 -BE,EG,2,203,201912,520968 -BE,EG,2,204,201912,683684 -BE,EG,2,205,201912,1801431 -BE,EG,2,206,201912,27983 -BE,EG,2,211,201912,2143803 -BE,EG,2,212,201912,23011762 -BE,EG,2,221,201912,584103 -BE,EG,2,222,201912,703457 -BE,EG,2,231,201912,86965 -BE,EG,2,232,201912,4697 -BE,EG,2,239,201912,8977 -BE,EG,2,241,201912,8515406 -BE,EG,2,242,201912,240707 -BE,EG,2,243,201912,326216 -BE,EG,2,244,201912,2028621 -BE,EG,2,245,201912,116906 -BE,EG,2,251,201912,141959 -BE,EG,2,252,201912,41214 -BE,EG,2,257,201912,102925 -BE,EG,2,259,201912,234203 -BE,EG,2,261,201912,125420 -BE,EG,2,262,201912,295345 -BE,EG,2,263,201912,36518 -BE,EG,2,264,201912,42809 -BE,EG,2,265,201912,338286 -BE,EG,2,266,201912,440591 -BE,EG,2,267,201912,310604 -BE,EG,2,271,201912,386474 -BE,EG,2,272,201912,7900 -BE,EG,2,273,201912,1124722 -BE,EG,2,274,201912,11430 -BE,EG,2,275,201912,67470 -BE,EG,2,279,201912,433734 -BE,EG,2,281,201912,2740797 -BE,EG,2,282,201912,3058248 -BE,EG,2,283,201912,962831 -BE,EG,2,284,201912,1200395 -BE,EG,2,289,201912,8119316 -BE,EG,2,291,201912,5960003 -BE,EG,2,292,201912,29200 -BE,EG,2,293,201912,328361 -BE,EG,2,302,201912,70000 -BE,EG,2,303,201912,91931 -BE,EG,2,309,201912,67985 -BE,EG,2,310,201912,3572 -BE,EG,2,323,201912,674 -BE,EG,2,325,201912,2409167 -BE,EG,2,329,201912,409383 -BE,ES,1,011,201912,19257897 -BE,ES,1,012,201912,25595635 -BE,ES,1,013,201912,80030 -BE,ES,1,014,201912,285812 -BE,ES,1,030,201912,688619 -BE,ES,1,051,201912,87498 -BE,ES,1,081,201912,1375256 -BE,ES,1,089,201912,2912433 -BE,ES,1,101,201912,9428183 -BE,ES,1,102,201912,2347384 -BE,ES,1,103,201912,12672744 -BE,ES,1,104,201912,2661456 -BE,ES,1,105,201912,2817715 -BE,ES,1,106,201912,4622852 -BE,ES,1,107,201912,2485930 -BE,ES,1,108,201912,6906814 -BE,ES,1,109,201912,487241 -BE,ES,1,110,201912,12405933 -BE,ES,1,120,201912,257409 -BE,ES,1,131,201912,126652 -BE,ES,1,132,201912,657646 -BE,ES,1,139,201912,2136408 -BE,ES,1,141,201912,18249268 -BE,ES,1,142,201912,11906 -BE,ES,1,143,201912,4492599 -BE,ES,1,151,201912,1368541 -BE,ES,1,152,201912,4197669 -BE,ES,1,161,201912,129122 -BE,ES,1,162,201912,2612547 -BE,ES,1,171,201912,3404392 -BE,ES,1,172,201912,2196288 -BE,ES,1,181,201912,9700 -BE,ES,1,192,201912,24023196 -BE,ES,1,201,201912,82496472 -BE,ES,1,202,201912,1572519 -BE,ES,1,203,201912,1537803 -BE,ES,1,204,201912,4809233 -BE,ES,1,205,201912,30560682 -BE,ES,1,206,201912,7423726 -BE,ES,1,211,201912,1506042 -BE,ES,1,212,201912,14730140 -BE,ES,1,221,201912,10141158 -BE,ES,1,222,201912,12388476 -BE,ES,1,231,201912,4198038 -BE,ES,1,232,201912,422094 -BE,ES,1,233,201912,2545127 -BE,ES,1,234,201912,762485 -BE,ES,1,235,201912,24432 -BE,ES,1,236,201912,344215 -BE,ES,1,237,201912,556150 -BE,ES,1,239,201912,150302 -BE,ES,1,241,201912,8543962 -BE,ES,1,242,201912,1045461 -BE,ES,1,243,201912,575030 -BE,ES,1,244,201912,22540944 -BE,ES,1,245,201912,172446 -BE,ES,1,251,201912,1132841 -BE,ES,1,252,201912,3177638 -BE,ES,1,254,201912,12473 -BE,ES,1,257,201912,1375186 -BE,ES,1,259,201912,7571842 -BE,ES,1,261,201912,400914 -BE,ES,1,262,201912,443447 -BE,ES,1,263,201912,632522 -BE,ES,1,264,201912,724407 -BE,ES,1,265,201912,11683294 -BE,ES,1,266,201912,1035392 -BE,ES,1,267,201912,99947 -BE,ES,1,268,201912,51840 -BE,ES,1,271,201912,6863027 -BE,ES,1,272,201912,368718 -BE,ES,1,273,201912,2359727 -BE,ES,1,274,201912,3283878 -BE,ES,1,275,201912,596574 -BE,ES,1,279,201912,798969 -BE,ES,1,281,201912,7798646 -BE,ES,1,282,201912,6576679 -BE,ES,1,283,201912,155377 -BE,ES,1,284,201912,530029 -BE,ES,1,289,201912,3509501 -BE,ES,1,291,201912,117130311 -BE,ES,1,292,201912,360186 -BE,ES,1,293,201912,12872958 -BE,ES,1,302,201912,437733 -BE,ES,1,303,201912,2415613 -BE,ES,1,309,201912,1176101 -BE,ES,1,310,201912,1381911 -BE,ES,1,321,201912,219599 -BE,ES,1,322,201912,8340 -BE,ES,1,323,201912,1239942 -BE,ES,1,324,201912,837303 -BE,ES,1,325,201912,14118112 -BE,ES,1,329,201912,684036 -BE,ES,2,011,201912,2863909 -BE,ES,2,012,201912,6881401 -BE,ES,2,013,201912,333593 -BE,ES,2,014,201912,616053 -BE,ES,2,021,201912,69488 -BE,ES,2,022,201912,12 -BE,ES,2,023,201912,3582 -BE,ES,2,030,201912,367462 -BE,ES,2,072,201912,53413 -BE,ES,2,081,201912,145713 -BE,ES,2,089,201912,738853 -BE,ES,2,101,201912,9363660 -BE,ES,2,102,201912,2312709 -BE,ES,2,103,201912,15194771 -BE,ES,2,104,201912,5092472 -BE,ES,2,105,201912,9258037 -BE,ES,2,106,201912,3933080 -BE,ES,2,107,201912,8558277 -BE,ES,2,108,201912,15110465 -BE,ES,2,109,201912,2587048 -BE,ES,2,110,201912,6010607 -BE,ES,2,120,201912,4230618 -BE,ES,2,131,201912,205806 -BE,ES,2,132,201912,1256349 -BE,ES,2,139,201912,5522355 -BE,ES,2,141,201912,37344669 -BE,ES,2,142,201912,3157 -BE,ES,2,143,201912,7166081 -BE,ES,2,151,201912,5740798 -BE,ES,2,152,201912,44520754 -BE,ES,2,161,201912,168488 -BE,ES,2,162,201912,3157135 -BE,ES,2,171,201912,5595793 -BE,ES,2,172,201912,3020995 -BE,ES,2,181,201912,49074 -BE,ES,2,192,201912,4899227 -BE,ES,2,201,201912,113792524 -BE,ES,2,202,201912,5323463 -BE,ES,2,203,201912,5209349 -BE,ES,2,204,201912,14934159 -BE,ES,2,205,201912,31839843 -BE,ES,2,206,201912,2445113 -BE,ES,2,211,201912,3741753 -BE,ES,2,212,201912,118347574 -BE,ES,2,221,201912,7502793 -BE,ES,2,222,201912,18602557 -BE,ES,2,231,201912,2819260 -BE,ES,2,232,201912,177714 -BE,ES,2,233,201912,343931 -BE,ES,2,234,201912,461009 -BE,ES,2,235,201912,12836 -BE,ES,2,236,201912,185606 -BE,ES,2,237,201912,35800 -BE,ES,2,239,201912,759125 -BE,ES,2,241,201912,14002929 -BE,ES,2,242,201912,458360 -BE,ES,2,243,201912,862261 -BE,ES,2,244,201912,6127839 -BE,ES,2,245,201912,148083 -BE,ES,2,251,201912,608559 -BE,ES,2,252,201912,386263 -BE,ES,2,253,201912,8441 -BE,ES,2,254,201912,106939 -BE,ES,2,257,201912,4789019 -BE,ES,2,259,201912,5628051 -BE,ES,2,261,201912,7561543 -BE,ES,2,262,201912,4949608 -BE,ES,2,263,201912,2084122 -BE,ES,2,264,201912,7426994 -BE,ES,2,265,201912,7000865 -BE,ES,2,266,201912,6676346 -BE,ES,2,267,201912,2110689 -BE,ES,2,268,201912,297366 -BE,ES,2,271,201912,3237789 -BE,ES,2,272,201912,4274985 -BE,ES,2,273,201912,2147449 -BE,ES,2,274,201912,3330658 -BE,ES,2,275,201912,1482366 -BE,ES,2,279,201912,3304140 -BE,ES,2,281,201912,17338598 -BE,ES,2,282,201912,22710004 -BE,ES,2,283,201912,5752048 -BE,ES,2,284,201912,2287946 -BE,ES,2,289,201912,8865521 -BE,ES,2,291,201912,89679037 -BE,ES,2,292,201912,291631 -BE,ES,2,293,201912,26945751 -BE,ES,2,301,201912,665817 -BE,ES,2,302,201912,42986 -BE,ES,2,303,201912,4379998 -BE,ES,2,309,201912,4797423 -BE,ES,2,310,201912,1661050 -BE,ES,2,321,201912,2165996 -BE,ES,2,322,201912,657786 -BE,ES,2,323,201912,1124961 -BE,ES,2,324,201912,1202825 -BE,ES,2,325,201912,42654848 -BE,ES,2,329,201912,1497387 -BE,ET,1,011,201912,5426511 -BE,ET,1,012,201912,1383630 -BE,ET,1,013,201912,627978 -BE,ET,1,108,201912,7596 -BE,ET,1,132,201912,15780 -BE,ET,1,141,201912,19362 -BE,ET,1,271,201912,279 -BE,ET,2,107,201912,40726 -BE,ET,2,108,201912,167365 -BE,ET,2,110,201912,1639559 -BE,ET,2,120,201912,101411 -BE,ET,2,139,201912,24261 -BE,ET,2,141,201912,4447 -BE,ET,2,151,201912,0 -BE,ET,2,201,201912,59170 -BE,ET,2,202,201912,77307 -BE,ET,2,204,201912,7609 -BE,ET,2,205,201912,126515 -BE,ET,2,212,201912,7363689 -BE,ET,2,221,201912,746720 -BE,ET,2,222,201912,440881 -BE,ET,2,231,201912,7346 -BE,ET,2,242,201912,291 -BE,ET,2,244,201912,23 -BE,ET,2,252,201912,18896 -BE,ET,2,257,201912,9075 -BE,ET,2,259,201912,13667 -BE,ET,2,262,201912,19980 -BE,ET,2,263,201912,16819 -BE,ET,2,264,201912,472 -BE,ET,2,265,201912,1196493 -BE,ET,2,271,201912,5972 -BE,ET,2,273,201912,15909 -BE,ET,2,274,201912,9944 -BE,ET,2,279,201912,4848 -BE,ET,2,281,201912,448058 -BE,ET,2,282,201912,375052 -BE,ET,2,289,201912,1867 -BE,ET,2,291,201912,1302988 -BE,ET,2,293,201912,426589 -BE,ET,2,310,201912,2650 -BE,ET,2,329,201912,3032 -BE,FI,1,011,201912,784051 -BE,FI,1,072,201912,3365166 -BE,FI,1,089,201912,901696 -BE,FI,1,101,201912,100056 -BE,FI,1,103,201912,128731 -BE,FI,1,105,201912,771581 -BE,FI,1,106,201912,89307 -BE,FI,1,107,201912,127782 -BE,FI,1,108,201912,65386 -BE,FI,1,110,201912,38652 -BE,FI,1,132,201912,21822 -BE,FI,1,139,201912,371560 -BE,FI,1,141,201912,87026 -BE,FI,1,142,201912,7706 -BE,FI,1,143,201912,7003 -BE,FI,1,151,201912,7346 -BE,FI,1,152,201912,17122 -BE,FI,1,161,201912,1105925 -BE,FI,1,162,201912,476044 -BE,FI,1,171,201912,31203936 -BE,FI,1,172,201912,234592 -BE,FI,1,192,201912,56401410 -BE,FI,1,201,201912,8139194 -BE,FI,1,203,201912,182234 -BE,FI,1,204,201912,746285 -BE,FI,1,205,201912,2114506 -BE,FI,1,212,201912,10600712 -BE,FI,1,221,201912,184013 -BE,FI,1,222,201912,3812437 -BE,FI,1,231,201912,1698587 -BE,FI,1,234,201912,106721 -BE,FI,1,237,201912,96802 -BE,FI,1,239,201912,5031903 -BE,FI,1,241,201912,1373377 -BE,FI,1,242,201912,863933 -BE,FI,1,243,201912,199301 -BE,FI,1,244,201912,3086443 -BE,FI,1,252,201912,32786 -BE,FI,1,254,201912,1324 -BE,FI,1,257,201912,234864 -BE,FI,1,259,201912,385180 -BE,FI,1,261,201912,529785 -BE,FI,1,262,201912,634060 -BE,FI,1,263,201912,3681963 -BE,FI,1,264,201912,501750 -BE,FI,1,265,201912,1015826 -BE,FI,1,266,201912,159073 -BE,FI,1,267,201912,549075 -BE,FI,1,271,201912,2463694 -BE,FI,1,272,201912,8187 -BE,FI,1,273,201912,216355 -BE,FI,1,274,201912,275973 -BE,FI,1,275,201912,95822 -BE,FI,1,279,201912,2001282 -BE,FI,1,281,201912,827116 -BE,FI,1,282,201912,6736619 -BE,FI,1,283,201912,846248 -BE,FI,1,284,201912,86982 -BE,FI,1,289,201912,5907999 -BE,FI,1,291,201912,26853680 -BE,FI,1,292,201912,28049 -BE,FI,1,293,201912,507692 -BE,FI,1,302,201912,1123 -BE,FI,1,309,201912,18590 -BE,FI,1,310,201912,356710 -BE,FI,1,324,201912,2832 -BE,FI,1,325,201912,1396807 -BE,FI,1,329,201912,7656 -BE,FI,2,011,201912,255167 -BE,FI,2,012,201912,961235 -BE,FI,2,013,201912,26065 -BE,FI,2,014,201912,352991 -BE,FI,2,023,201912,51 -BE,FI,2,030,201912,15 -BE,FI,2,081,201912,1117972 -BE,FI,2,089,201912,186568 -BE,FI,2,101,201912,277843 -BE,FI,2,102,201912,169521 -BE,FI,2,103,201912,3618961 -BE,FI,2,104,201912,533407 -BE,FI,2,105,201912,1044907 -BE,FI,2,106,201912,937574 -BE,FI,2,107,201912,896429 -BE,FI,2,108,201912,3697863 -BE,FI,2,109,201912,798072 -BE,FI,2,110,201912,777761 -BE,FI,2,131,201912,17347 -BE,FI,2,132,201912,501566 -BE,FI,2,139,201912,1755902 -BE,FI,2,141,201912,2844851 -BE,FI,2,142,201912,3283 -BE,FI,2,143,201912,680455 -BE,FI,2,151,201912,528236 -BE,FI,2,152,201912,798155 -BE,FI,2,161,201912,12851 -BE,FI,2,162,201912,401562 -BE,FI,2,171,201912,5869411 -BE,FI,2,172,201912,285629 -BE,FI,2,181,201912,24 -BE,FI,2,192,201912,18229021 -BE,FI,2,201,201912,24557948 -BE,FI,2,202,201912,277122 -BE,FI,2,203,201912,816247 -BE,FI,2,204,201912,1274222 -BE,FI,2,205,201912,7749060 -BE,FI,2,206,201912,173 -BE,FI,2,211,201912,711178 -BE,FI,2,212,201912,14537202 -BE,FI,2,221,201912,1255130 -BE,FI,2,222,201912,3763041 -BE,FI,2,231,201912,460587 -BE,FI,2,232,201912,84491 -BE,FI,2,233,201912,12934 -BE,FI,2,234,201912,127657 -BE,FI,2,235,201912,432593 -BE,FI,2,236,201912,15615 -BE,FI,2,237,201912,324 -BE,FI,2,239,201912,297672 -BE,FI,2,241,201912,1508968 -BE,FI,2,242,201912,180825 -BE,FI,2,243,201912,29670 -BE,FI,2,244,201912,6165775 -BE,FI,2,245,201912,31729 -BE,FI,2,251,201912,497608 -BE,FI,2,252,201912,20090 -BE,FI,2,253,201912,1888 -BE,FI,2,254,201912,3253 -BE,FI,2,257,201912,819264 -BE,FI,2,259,201912,1095759 -BE,FI,2,261,201912,578421 -BE,FI,2,262,201912,1588881 -BE,FI,2,263,201912,1801628 -BE,FI,2,264,201912,924326 -BE,FI,2,265,201912,1826614 -BE,FI,2,266,201912,697105 -BE,FI,2,267,201912,250513 -BE,FI,2,268,201912,275 -BE,FI,2,271,201912,805086 -BE,FI,2,272,201912,224577 -BE,FI,2,273,201912,1035934 -BE,FI,2,274,201912,295675 -BE,FI,2,275,201912,410170 -BE,FI,2,279,201912,609415 -BE,FI,2,281,201912,5997627 -BE,FI,2,282,201912,4663710 -BE,FI,2,283,201912,208571 -BE,FI,2,284,201912,483417 -BE,FI,2,289,201912,4527145 -BE,FI,2,291,201912,22495915 -BE,FI,2,292,201912,225059 -BE,FI,2,293,201912,3293537 -BE,FI,2,301,201912,5236 -BE,FI,2,303,201912,66106 -BE,FI,2,309,201912,123975 -BE,FI,2,310,201912,210310 -BE,FI,2,321,201912,244460 -BE,FI,2,322,201912,203483 -BE,FI,2,323,201912,159243 -BE,FI,2,324,201912,195236 -BE,FI,2,325,201912,5452291 -BE,FI,2,329,201912,169852 -BE,FJ,2,103,201912,82088 -BE,FK,2,103,201912,6920 -BE,FO,2,089,201912,1764 -BE,FO,2,152,201912,1757 -BE,FO,2,192,201912,5465 -BE,FO,2,221,201912,17730 -BE,FO,2,222,201912,9019 -BE,FO,2,231,201912,9066 -BE,FO,2,242,201912,469 -BE,FO,2,244,201912,386 -BE,FO,2,257,201912,1221 -BE,FO,2,259,201912,836 -BE,FO,2,262,201912,43108 -BE,FO,2,265,201912,1779 -BE,FO,2,271,201912,7191 -BE,FO,2,273,201912,7326 -BE,FO,2,274,201912,1300 -BE,FO,2,279,201912,181 -BE,FO,2,281,201912,10085 -BE,FO,2,282,201912,10415 -BE,FO,2,293,201912,2803 -BE,FO,2,325,201912,40123 -BE,FR,1,011,201912,122113429 -BE,FR,1,012,201912,7742593 -BE,FR,1,013,201912,1600383 -BE,FR,1,014,201912,18469813 -BE,FR,1,021,201912,6379 -BE,FR,1,022,201912,8657475 -BE,FR,1,023,201912,139576 -BE,FR,1,030,201912,6428373 -BE,FR,1,061,201912,241 -BE,FR,1,072,201912,11420 -BE,FR,1,081,201912,3565978 -BE,FR,1,089,201912,1326349 -BE,FR,1,101,201912,59365655 -BE,FR,1,102,201912,15404082 -BE,FR,1,103,201912,28567801 -BE,FR,1,104,201912,11714095 -BE,FR,1,105,201912,87618745 -BE,FR,1,106,201912,20918790 -BE,FR,1,107,201912,29956824 -BE,FR,1,108,201912,82228729 -BE,FR,1,109,201912,16648289 -BE,FR,1,110,201912,98673758 -BE,FR,1,120,201912,1129457 -BE,FR,1,131,201912,11120504 -BE,FR,1,132,201912,6303869 -BE,FR,1,139,201912,11419856 -BE,FR,1,141,201912,50066849 -BE,FR,1,142,201912,58191 -BE,FR,1,143,201912,10176507 -BE,FR,1,151,201912,8554056 -BE,FR,1,152,201912,10076156 -BE,FR,1,161,201912,4693999 -BE,FR,1,162,201912,16815164 -BE,FR,1,171,201912,19954239 -BE,FR,1,172,201912,28839685 -BE,FR,1,181,201912,17090 -BE,FR,1,192,201912,96691906 -BE,FR,1,201,201912,166124251 -BE,FR,1,202,201912,12230721 -BE,FR,1,203,201912,11598465 -BE,FR,1,204,201912,55424339 -BE,FR,1,205,201912,67171832 -BE,FR,1,206,201912,2971157 -BE,FR,1,211,201912,4958169 -BE,FR,1,212,201912,280699487 -BE,FR,1,221,201912,24902191 -BE,FR,1,222,201912,54096984 -BE,FR,1,231,201912,18157084 -BE,FR,1,232,201912,1628152 -BE,FR,1,233,201912,1421677 -BE,FR,1,234,201912,1349542 -BE,FR,1,235,201912,2675743 -BE,FR,1,236,201912,3969298 -BE,FR,1,237,201912,163869 -BE,FR,1,239,201912,3397492 -BE,FR,1,241,201912,69934541 -BE,FR,1,242,201912,2412049 -BE,FR,1,243,201912,3250091 -BE,FR,1,244,201912,43368189 -BE,FR,1,245,201912,410056 -BE,FR,1,251,201912,4104334 -BE,FR,1,252,201912,2747512 -BE,FR,1,253,201912,85403 -BE,FR,1,254,201912,142566 -BE,FR,1,257,201912,9128425 -BE,FR,1,259,201912,29422066 -BE,FR,1,261,201912,71741994 -BE,FR,1,262,201912,10072420 -BE,FR,1,263,201912,15566070 -BE,FR,1,264,201912,15532538 -BE,FR,1,265,201912,15441648 -BE,FR,1,266,201912,4137122 -BE,FR,1,267,201912,3301335 -BE,FR,1,268,201912,1226667 -BE,FR,1,271,201912,14247998 -BE,FR,1,272,201912,5279054 -BE,FR,1,273,201912,14968886 -BE,FR,1,274,201912,10552933 -BE,FR,1,275,201912,13209611 -BE,FR,1,279,201912,14163434 -BE,FR,1,281,201912,41190033 -BE,FR,1,282,201912,55305159 -BE,FR,1,283,201912,17456430 -BE,FR,1,284,201912,7529778 -BE,FR,1,289,201912,42458594 -BE,FR,1,291,201912,404166651 -BE,FR,1,292,201912,3265134 -BE,FR,1,293,201912,58107995 -BE,FR,1,301,201912,552824 -BE,FR,1,302,201912,3428504 -BE,FR,1,303,201912,157552556 -BE,FR,1,304,201912,5180662 -BE,FR,1,309,201912,4775673 -BE,FR,1,310,201912,11930761 -BE,FR,1,321,201912,7573862 -BE,FR,1,322,201912,526488 -BE,FR,1,323,201912,2853098 -BE,FR,1,324,201912,6709538 -BE,FR,1,325,201912,27764819 -BE,FR,1,329,201912,5801755 -BE,FR,1,351,201912,22612680 -BE,FR,2,011,201912,31729190 -BE,FR,2,012,201912,149958437 -BE,FR,2,013,201912,18751837 -BE,FR,2,014,201912,9732937 -BE,FR,2,021,201912,542731 -BE,FR,2,022,201912,772547 -BE,FR,2,023,201912,168962 -BE,FR,2,030,201912,1578393 -BE,FR,2,051,201912,7742593 -BE,FR,2,062,201912,138365021 -BE,FR,2,072,201912,18007299 -BE,FR,2,081,201912,6182217 -BE,FR,2,089,201912,7386176 -BE,FR,2,101,201912,82518559 -BE,FR,2,102,201912,32068669 -BE,FR,2,103,201912,84619453 -BE,FR,2,104,201912,69207244 -BE,FR,2,105,201912,61070165 -BE,FR,2,106,201912,27427461 -BE,FR,2,107,201912,39835698 -BE,FR,2,108,201912,90863718 -BE,FR,2,109,201912,25735140 -BE,FR,2,110,201912,51646942 -BE,FR,2,120,201912,8712450 -BE,FR,2,131,201912,8247378 -BE,FR,2,132,201912,14343036 -BE,FR,2,139,201912,50915795 -BE,FR,2,141,201912,139729948 -BE,FR,2,142,201912,16212 -BE,FR,2,143,201912,27075429 -BE,FR,2,151,201912,25853077 -BE,FR,2,152,201912,67709931 -BE,FR,2,161,201912,11700935 -BE,FR,2,162,201912,34198782 -BE,FR,2,171,201912,34635554 -BE,FR,2,172,201912,39837538 -BE,FR,2,181,201912,65262 -BE,FR,2,191,201912,1023148 -BE,FR,2,192,201912,194810252 -BE,FR,2,201,201912,336479323 -BE,FR,2,202,201912,9141206 -BE,FR,2,203,201912,16381314 -BE,FR,2,204,201912,55390896 -BE,FR,2,205,201912,80102248 -BE,FR,2,206,201912,5333710 -BE,FR,2,211,201912,147965621 -BE,FR,2,212,201912,213489964 -BE,FR,2,221,201912,29664229 -BE,FR,2,222,201912,94778718 -BE,FR,2,231,201912,32155148 -BE,FR,2,232,201912,1524189 -BE,FR,2,233,201912,2087560 -BE,FR,2,234,201912,7275565 -BE,FR,2,235,201912,9203405 -BE,FR,2,236,201912,12964403 -BE,FR,2,237,201912,1990656 -BE,FR,2,239,201912,8550778 -BE,FR,2,241,201912,165297663 -BE,FR,2,242,201912,6429283 -BE,FR,2,243,201912,20491341 -BE,FR,2,244,201912,40670000 -BE,FR,2,245,201912,574557 -BE,FR,2,251,201912,16067866 -BE,FR,2,252,201912,3726048 -BE,FR,2,253,201912,392256 -BE,FR,2,254,201912,1287613 -BE,FR,2,257,201912,25790824 -BE,FR,2,259,201912,39712267 -BE,FR,2,261,201912,11567447 -BE,FR,2,262,201912,16653863 -BE,FR,2,263,201912,15542692 -BE,FR,2,264,201912,47641834 -BE,FR,2,265,201912,23891745 -BE,FR,2,266,201912,13298238 -BE,FR,2,267,201912,4736478 -BE,FR,2,268,201912,146924 -BE,FR,2,271,201912,12016043 -BE,FR,2,272,201912,10038428 -BE,FR,2,273,201912,12845310 -BE,FR,2,274,201912,19535785 -BE,FR,2,275,201912,31010853 -BE,FR,2,279,201912,14554487 -BE,FR,2,281,201912,48535147 -BE,FR,2,282,201912,117360061 -BE,FR,2,283,201912,47958116 -BE,FR,2,284,201912,17267210 -BE,FR,2,289,201912,61116438 -BE,FR,2,291,201912,397249054 -BE,FR,2,292,201912,9253722 -BE,FR,2,293,201912,115238148 -BE,FR,2,301,201912,398033 -BE,FR,2,302,201912,1000490 -BE,FR,2,303,201912,16369213 -BE,FR,2,309,201912,21648804 -BE,FR,2,310,201912,38780343 -BE,FR,2,321,201912,21632443 -BE,FR,2,322,201912,1728684 -BE,FR,2,323,201912,11531615 -BE,FR,2,324,201912,44732110 -BE,FR,2,325,201912,85462365 -BE,FR,2,329,201912,18052149 -BE,FR,2,351,201912,20285129 -BE,GA,1,072,201912,1021929 -BE,GA,1,161,201912,2403740 -BE,GA,1,162,201912,228775 -BE,GA,2,011,201912,111166 -BE,GA,2,101,201912,264411 -BE,GA,2,103,201912,40723 -BE,GA,2,104,201912,109984 -BE,GA,2,106,201912,20483 -BE,GA,2,108,201912,129705 -BE,GA,2,110,201912,28356 -BE,GA,2,139,201912,4225 -BE,GA,2,141,201912,754583 -BE,GA,2,143,201912,948 -BE,GA,2,151,201912,5972 -BE,GA,2,152,201912,2181 -BE,GA,2,172,201912,16370 -BE,GA,2,192,201912,187281 -BE,GA,2,201,201912,1300074 -BE,GA,2,202,201912,32294 -BE,GA,2,203,201912,48141 -BE,GA,2,204,201912,78600 -BE,GA,2,205,201912,311091 -BE,GA,2,212,201912,24312 -BE,GA,2,221,201912,349751 -BE,GA,2,222,201912,20880 -BE,GA,2,231,201912,1140 -BE,GA,2,241,201912,913862 -BE,GA,2,242,201912,472431 -BE,GA,2,243,201912,12822 -BE,GA,2,244,201912,1456 -BE,GA,2,251,201912,35358 -BE,GA,2,252,201912,401440 -BE,GA,2,257,201912,52308 -BE,GA,2,259,201912,39375 -BE,GA,2,265,201912,15143 -BE,GA,2,267,201912,28 -BE,GA,2,271,201912,136801 -BE,GA,2,272,201912,21605 -BE,GA,2,273,201912,246421 -BE,GA,2,274,201912,137184 -BE,GA,2,275,201912,250 -BE,GA,2,279,201912,32617 -BE,GA,2,281,201912,427323 -BE,GA,2,282,201912,263350 -BE,GA,2,284,201912,872942 -BE,GA,2,289,201912,783520 -BE,GA,2,291,201912,1773177 -BE,GA,2,293,201912,38212 -BE,GA,2,302,201912,64251 -BE,GA,2,310,201912,10064 -BE,GA,2,323,201912,2305 -BE,GA,2,324,201912,2552 -BE,GA,2,325,201912,720 -BE,GA,2,329,201912,543 -BE,GB,1,011,201912,2642755 -BE,GB,1,012,201912,787060 -BE,GB,1,013,201912,1363 -BE,GB,1,014,201912,578847 -BE,GB,1,022,201912,22032 -BE,GB,1,023,201912,44062 -BE,GB,1,030,201912,1353754 -BE,GB,1,051,201912,698481 -BE,GB,1,061,201912,6595185 -BE,GB,1,072,201912,21845 -BE,GB,1,081,201912,968000 -BE,GB,1,089,201912,1869295 -BE,GB,1,101,201912,10273272 -BE,GB,1,102,201912,3912083 -BE,GB,1,103,201912,2863480 -BE,GB,1,104,201912,2569541 -BE,GB,1,105,201912,15528944 -BE,GB,1,106,201912,4446745 -BE,GB,1,107,201912,3401836 -BE,GB,1,108,201912,12945037 -BE,GB,1,109,201912,1099035 -BE,GB,1,110,201912,8488162 -BE,GB,1,120,201912,3163717 -BE,GB,1,131,201912,194681 -BE,GB,1,132,201912,867243 -BE,GB,1,139,201912,1856187 -BE,GB,1,141,201912,6684795 -BE,GB,1,142,201912,3965 -BE,GB,1,143,201912,1033649 -BE,GB,1,151,201912,1220783 -BE,GB,1,152,201912,5412366 -BE,GB,1,161,201912,60442 -BE,GB,1,162,201912,3020232 -BE,GB,1,171,201912,4412320 -BE,GB,1,172,201912,3009847 -BE,GB,1,181,201912,44340 -BE,GB,1,191,201912,43100 -BE,GB,1,192,201912,114474477 -BE,GB,1,201,201912,139295454 -BE,GB,1,202,201912,1776885 -BE,GB,1,203,201912,4437686 -BE,GB,1,204,201912,39258510 -BE,GB,1,205,201912,21125666 -BE,GB,1,206,201912,450100 -BE,GB,1,211,201912,3602044 -BE,GB,1,212,201912,89288744 -BE,GB,1,221,201912,13568308 -BE,GB,1,222,201912,14701283 -BE,GB,1,231,201912,4774696 -BE,GB,1,232,201912,214617 -BE,GB,1,233,201912,154502 -BE,GB,1,234,201912,269910 -BE,GB,1,235,201912,47207 -BE,GB,1,236,201912,382852 -BE,GB,1,237,201912,5537 -BE,GB,1,239,201912,1130717 -BE,GB,1,241,201912,20350900 -BE,GB,1,242,201912,1703928 -BE,GB,1,243,201912,661215 -BE,GB,1,244,201912,7181649 -BE,GB,1,245,201912,137303 -BE,GB,1,251,201912,739766 -BE,GB,1,252,201912,249563 -BE,GB,1,253,201912,7312 -BE,GB,1,254,201912,201474 -BE,GB,1,257,201912,3013668 -BE,GB,1,259,201912,7048018 -BE,GB,1,261,201912,6864550 -BE,GB,1,262,201912,17330427 -BE,GB,1,263,201912,14931438 -BE,GB,1,264,201912,10872355 -BE,GB,1,265,201912,14080008 -BE,GB,1,266,201912,1621266 -BE,GB,1,267,201912,3359235 -BE,GB,1,268,201912,33255 -BE,GB,1,271,201912,5311402 -BE,GB,1,272,201912,1238330 -BE,GB,1,273,201912,6462493 -BE,GB,1,274,201912,1226560 -BE,GB,1,275,201912,1285744 -BE,GB,1,279,201912,6498219 -BE,GB,1,281,201912,37415937 -BE,GB,1,282,201912,25520680 -BE,GB,1,283,201912,9717398 -BE,GB,1,284,201912,9830029 -BE,GB,1,289,201912,12689635 -BE,GB,1,291,201912,207149435 -BE,GB,1,292,201912,1202017 -BE,GB,1,293,201912,14600140 -BE,GB,1,301,201912,34799 -BE,GB,1,302,201912,91792 -BE,GB,1,303,201912,15616517 -BE,GB,1,304,201912,12056 -BE,GB,1,309,201912,514812 -BE,GB,1,310,201912,2030323 -BE,GB,1,321,201912,2729690 -BE,GB,1,322,201912,196360 -BE,GB,1,323,201912,519549 -BE,GB,1,324,201912,1347468 -BE,GB,1,325,201912,33634199 -BE,GB,1,329,201912,1655366 -BE,GB,1,351,201912,1307756 -BE,GB,2,011,201912,6923576 -BE,GB,2,012,201912,11048798 -BE,GB,2,013,201912,1943075 -BE,GB,2,014,201912,1130968 -BE,GB,2,021,201912,183472 -BE,GB,2,022,201912,99499 -BE,GB,2,023,201912,156982 -BE,GB,2,030,201912,184987 -BE,GB,2,051,201912,153885 -BE,GB,2,062,201912,3199478 -BE,GB,2,081,201912,913944 -BE,GB,2,089,201912,1485152 -BE,GB,2,101,201912,32705324 -BE,GB,2,102,201912,1709314 -BE,GB,2,103,201912,67380273 -BE,GB,2,104,201912,6921846 -BE,GB,2,105,201912,19043839 -BE,GB,2,106,201912,9429096 -BE,GB,2,107,201912,25783998 -BE,GB,2,108,201912,47890289 -BE,GB,2,109,201912,8495101 -BE,GB,2,110,201912,28154823 -BE,GB,2,120,201912,1660340 -BE,GB,2,131,201912,339470 -BE,GB,2,132,201912,5674371 -BE,GB,2,139,201912,23500270 -BE,GB,2,141,201912,69399282 -BE,GB,2,142,201912,2511 -BE,GB,2,143,201912,15334913 -BE,GB,2,151,201912,11783011 -BE,GB,2,152,201912,86412303 -BE,GB,2,161,201912,754997 -BE,GB,2,162,201912,5324332 -BE,GB,2,171,201912,8976543 -BE,GB,2,172,201912,28950023 -BE,GB,2,181,201912,45387 -BE,GB,2,191,201912,214100 -BE,GB,2,192,201912,53564609 -BE,GB,2,201,201912,157202335 -BE,GB,2,202,201912,2471651 -BE,GB,2,203,201912,8284390 -BE,GB,2,204,201912,22545684 -BE,GB,2,205,201912,68504831 -BE,GB,2,206,201912,1592166 -BE,GB,2,211,201912,8318412 -BE,GB,2,212,201912,204329482 -BE,GB,2,221,201912,10592720 -BE,GB,2,222,201912,33821477 -BE,GB,2,231,201912,7871440 -BE,GB,2,232,201912,449885 -BE,GB,2,233,201912,2966913 -BE,GB,2,234,201912,1641413 -BE,GB,2,235,201912,6498 -BE,GB,2,236,201912,1893326 -BE,GB,2,237,201912,55679 -BE,GB,2,239,201912,2842504 -BE,GB,2,241,201912,36193835 -BE,GB,2,242,201912,643423 -BE,GB,2,243,201912,2162957 -BE,GB,2,244,201912,64783047 -BE,GB,2,245,201912,61598 -BE,GB,2,251,201912,4784222 -BE,GB,2,252,201912,683233 -BE,GB,2,253,201912,70877 -BE,GB,2,254,201912,899450 -BE,GB,2,257,201912,6366880 -BE,GB,2,259,201912,8897644 -BE,GB,2,261,201912,5538943 -BE,GB,2,262,201912,9252205 -BE,GB,2,263,201912,7501585 -BE,GB,2,264,201912,21162108 -BE,GB,2,265,201912,10878065 -BE,GB,2,266,201912,11547192 -BE,GB,2,267,201912,1623221 -BE,GB,2,268,201912,4337 -BE,GB,2,271,201912,5772131 -BE,GB,2,272,201912,7957136 -BE,GB,2,273,201912,5685529 -BE,GB,2,274,201912,3982865 -BE,GB,2,275,201912,6711830 -BE,GB,2,279,201912,8541682 -BE,GB,2,281,201912,22356966 -BE,GB,2,282,201912,34698424 -BE,GB,2,283,201912,22361870 -BE,GB,2,284,201912,6649483 -BE,GB,2,289,201912,19921081 -BE,GB,2,291,201912,419913664 -BE,GB,2,292,201912,6562387 -BE,GB,2,293,201912,30380871 -BE,GB,2,301,201912,5340753 -BE,GB,2,302,201912,29625 -BE,GB,2,303,201912,40239828 -BE,GB,2,309,201912,3065569 -BE,GB,2,310,201912,1926587 -BE,GB,2,321,201912,23858856 -BE,GB,2,322,201912,1435105 -BE,GB,2,323,201912,2039547 -BE,GB,2,324,201912,3871699 -BE,GB,2,325,201912,55316629 -BE,GB,2,329,201912,4874800 -BE,GB,2,351,201912,20324965 -BE,GD,2,221,201912,421 -BE,GD,2,281,201912,435 -BE,GE,1,110,201912,20927 -BE,GE,1,139,201912,114566 -BE,GE,1,141,201912,470533 -BE,GE,1,201,201912,17407 -BE,GE,1,212,201912,1363 -BE,GE,1,262,201912,222 -BE,GE,1,271,201912,3539 -BE,GE,1,281,201912,2780 -BE,GE,1,291,201912,8138 -BE,GE,1,292,201912,3523 -BE,GE,2,014,201912,72655 -BE,GE,2,101,201912,186625 -BE,GE,2,103,201912,18783 -BE,GE,2,104,201912,70956 -BE,GE,2,105,201912,290190 -BE,GE,2,108,201912,234920 -BE,GE,2,109,201912,134189 -BE,GE,2,110,201912,109725 -BE,GE,2,120,201912,248728 -BE,GE,2,139,201912,35762 -BE,GE,2,141,201912,56451 -BE,GE,2,143,201912,10545 -BE,GE,2,151,201912,533 -BE,GE,2,152,201912,143 -BE,GE,2,162,201912,28126 -BE,GE,2,172,201912,26394 -BE,GE,2,192,201912,141622 -BE,GE,2,201,201912,253724 -BE,GE,2,202,201912,53279 -BE,GE,2,203,201912,22694 -BE,GE,2,204,201912,5368 -BE,GE,2,205,201912,123875 -BE,GE,2,211,201912,1831 -BE,GE,2,212,201912,337666 -BE,GE,2,221,201912,21779 -BE,GE,2,222,201912,19763 -BE,GE,2,231,201912,107427 -BE,GE,2,234,201912,2768 -BE,GE,2,241,201912,19 -BE,GE,2,242,201912,9391 -BE,GE,2,244,201912,72787 -BE,GE,2,257,201912,16101 -BE,GE,2,259,201912,139015 -BE,GE,2,262,201912,9939 -BE,GE,2,263,201912,29763 -BE,GE,2,264,201912,507 -BE,GE,2,265,201912,22697 -BE,GE,2,266,201912,1439 -BE,GE,2,271,201912,11360 -BE,GE,2,272,201912,455 -BE,GE,2,273,201912,6692 -BE,GE,2,274,201912,29413 -BE,GE,2,275,201912,150 -BE,GE,2,279,201912,9564 -BE,GE,2,281,201912,65546 -BE,GE,2,282,201912,62491 -BE,GE,2,289,201912,9093 -BE,GE,2,291,201912,262485 -BE,GE,2,293,201912,142805 -BE,GE,2,309,201912,2430 -BE,GE,2,310,201912,17012 -BE,GE,2,323,201912,100 -BE,GE,2,325,201912,569941 -BE,GE,2,329,201912,9347 -BE,GH,1,011,201912,228497 -BE,GH,1,012,201912,10314429 -BE,GH,1,081,201912,91 -BE,GH,1,102,201912,1562 -BE,GH,1,103,201912,40109 -BE,GH,1,104,201912,14 -BE,GH,1,106,201912,16953 -BE,GH,1,107,201912,363 -BE,GH,1,108,201912,172507 -BE,GH,1,110,201912,6051 -BE,GH,1,141,201912,357 -BE,GH,1,161,201912,321639 -BE,GH,1,162,201912,96470 -BE,GH,1,204,201912,729 -BE,GH,1,221,201912,801 -BE,GH,1,244,201912,46 -BE,GH,1,271,201912,1722 -BE,GH,1,282,201912,5472 -BE,GH,1,329,201912,313 -BE,GH,2,011,201912,8138 -BE,GH,2,014,201912,98355 -BE,GH,2,101,201912,3262749 -BE,GH,2,102,201912,7660 -BE,GH,2,103,201912,57938 -BE,GH,2,104,201912,24010 -BE,GH,2,105,201912,177202 -BE,GH,2,106,201912,422322 -BE,GH,2,108,201912,2468262 -BE,GH,2,109,201912,909230 -BE,GH,2,110,201912,816457 -BE,GH,2,139,201912,67673 -BE,GH,2,141,201912,215749 -BE,GH,2,151,201912,6576 -BE,GH,2,152,201912,1193 -BE,GH,2,162,201912,25284 -BE,GH,2,171,201912,865842 -BE,GH,2,172,201912,121739 -BE,GH,2,192,201912,105732 -BE,GH,2,201,201912,1405476 -BE,GH,2,202,201912,13605 -BE,GH,2,203,201912,29226 -BE,GH,2,204,201912,87687 -BE,GH,2,205,201912,342302 -BE,GH,2,211,201912,28 -BE,GH,2,212,201912,7931832 -BE,GH,2,221,201912,19496 -BE,GH,2,222,201912,1065509 -BE,GH,2,231,201912,33471 -BE,GH,2,234,201912,170 -BE,GH,2,239,201912,19782 -BE,GH,2,241,201912,131225 -BE,GH,2,242,201912,3333 -BE,GH,2,244,201912,21522 -BE,GH,2,245,201912,35 -BE,GH,2,251,201912,423916 -BE,GH,2,252,201912,2368 -BE,GH,2,257,201912,56099 -BE,GH,2,259,201912,505137 -BE,GH,2,261,201912,3209 -BE,GH,2,263,201912,7426 -BE,GH,2,264,201912,14768 -BE,GH,2,265,201912,1372602 -BE,GH,2,267,201912,1491 -BE,GH,2,271,201912,43093 -BE,GH,2,272,201912,5538 -BE,GH,2,273,201912,24025 -BE,GH,2,274,201912,31963 -BE,GH,2,275,201912,14650 -BE,GH,2,279,201912,7441 -BE,GH,2,281,201912,1755788 -BE,GH,2,282,201912,2068835 -BE,GH,2,283,201912,10450 -BE,GH,2,284,201912,860 -BE,GH,2,289,201912,7195942 -BE,GH,2,291,201912,3502036 -BE,GH,2,292,201912,262788 -BE,GH,2,293,201912,418971 -BE,GH,2,302,201912,15875 -BE,GH,2,309,201912,1503 -BE,GH,2,310,201912,34385 -BE,GH,2,325,201912,19040 -BE,GH,2,329,201912,16616 -BE,GI,2,104,201912,23741 -BE,GI,2,110,201912,9 -BE,GI,2,139,201912,53 -BE,GI,2,141,201912,18089 -BE,GI,2,143,201912,4306 -BE,GI,2,152,201912,33890 -BE,GI,2,162,201912,4 -BE,GI,2,192,201912,2667 -BE,GI,2,201,201912,32 -BE,GI,2,204,201912,253 -BE,GI,2,205,201912,768 -BE,GI,2,212,201912,1711 -BE,GI,2,221,201912,1121 -BE,GI,2,222,201912,238 -BE,GI,2,257,201912,119 -BE,GI,2,259,201912,4834 -BE,GI,2,264,201912,34803 -BE,GI,2,274,201912,454 -BE,GI,2,281,201912,944 -BE,GI,2,282,201912,1554 -BE,GI,2,293,201912,40333 -BE,GL,2,192,201912,6495 -BE,GL,2,221,201912,5361 -BE,GL,2,259,201912,5555 -BE,GL,2,279,201912,97 -BE,GL,2,281,201912,1231 -BE,GL,2,282,201912,4052 -BE,GL,2,325,201912,5636 -BE,GM,2,102,201912,45 -BE,GM,2,103,201912,21530 -BE,GM,2,104,201912,124 -BE,GM,2,105,201912,42340 -BE,GM,2,106,201912,11 -BE,GM,2,107,201912,1316 -BE,GM,2,108,201912,49144 -BE,GM,2,109,201912,14436 -BE,GM,2,110,201912,31331 -BE,GM,2,139,201912,2403 -BE,GM,2,141,201912,58825 -BE,GM,2,151,201912,83 -BE,GM,2,162,201912,1169 -BE,GM,2,171,201912,3 -BE,GM,2,172,201912,456 -BE,GM,2,192,201912,4452 -BE,GM,2,201,201912,10646 -BE,GM,2,203,201912,320 -BE,GM,2,204,201912,7361 -BE,GM,2,205,201912,43257 -BE,GM,2,212,201912,22560 -BE,GM,2,221,201912,2 -BE,GM,2,222,201912,1071 -BE,GM,2,259,201912,179 -BE,GM,2,262,201912,144201 -BE,GM,2,264,201912,885 -BE,GM,2,265,201912,1281 -BE,GM,2,272,201912,7 -BE,GM,2,275,201912,90 -BE,GM,2,281,201912,104844 -BE,GM,2,282,201912,100 -BE,GM,2,283,201912,4500 -BE,GM,2,289,201912,670 -BE,GM,2,291,201912,332436 -BE,GM,2,292,201912,600 -BE,GM,2,293,201912,150 -BE,GM,2,309,201912,4475 -BE,GM,2,310,201912,30525 -BE,GM,2,324,201912,9 -BE,GM,2,325,201912,24148 -BE,GM,2,329,201912,97 -BE,GN,1,089,201912,3106762 -BE,GN,1,103,201912,391 -BE,GN,1,141,201912,2523 -BE,GN,1,152,201912,98 -BE,GN,1,192,201912,222 -BE,GN,1,203,201912,1195 -BE,GN,1,271,201912,842 -BE,GN,2,011,201912,7061 -BE,GN,2,014,201912,73317 -BE,GN,2,101,201912,27600 -BE,GN,2,103,201912,51827 -BE,GN,2,104,201912,23306 -BE,GN,2,105,201912,175387 -BE,GN,2,108,201912,79167 -BE,GN,2,109,201912,224317 -BE,GN,2,110,201912,261669 -BE,GN,2,139,201912,46828 -BE,GN,2,141,201912,71157 -BE,GN,2,151,201912,68 -BE,GN,2,152,201912,2280 -BE,GN,2,171,201912,95933 -BE,GN,2,172,201912,76812 -BE,GN,2,192,201912,271756 -BE,GN,2,201,201912,122738 -BE,GN,2,202,201912,413 -BE,GN,2,204,201912,30075 -BE,GN,2,205,201912,45033 -BE,GN,2,212,201912,129184 -BE,GN,2,221,201912,100986 -BE,GN,2,222,201912,21633 -BE,GN,2,231,201912,11496 -BE,GN,2,234,201912,60 -BE,GN,2,239,201912,16117 -BE,GN,2,241,201912,191578 -BE,GN,2,242,201912,67724 -BE,GN,2,243,201912,834 -BE,GN,2,244,201912,1098 -BE,GN,2,245,201912,28012 -BE,GN,2,251,201912,2691275 -BE,GN,2,252,201912,3587 -BE,GN,2,257,201912,7420 -BE,GN,2,259,201912,20297 -BE,GN,2,261,201912,10052 -BE,GN,2,262,201912,500 -BE,GN,2,263,201912,11440 -BE,GN,2,264,201912,2460 -BE,GN,2,265,201912,321276 -BE,GN,2,267,201912,2516 -BE,GN,2,271,201912,769126 -BE,GN,2,272,201912,11049 -BE,GN,2,273,201912,57914 -BE,GN,2,274,201912,10953 -BE,GN,2,275,201912,32345 -BE,GN,2,279,201912,159952 -BE,GN,2,281,201912,457252 -BE,GN,2,282,201912,342593 -BE,GN,2,283,201912,10100 -BE,GN,2,289,201912,2896049 -BE,GN,2,291,201912,8099329 -BE,GN,2,292,201912,261030 -BE,GN,2,293,201912,485238 -BE,GN,2,302,201912,36938 -BE,GN,2,309,201912,39879 -BE,GN,2,310,201912,25043 -BE,GN,2,323,201912,400 -BE,GN,2,324,201912,1020 -BE,GN,2,325,201912,15469 -BE,GN,2,329,201912,133 -BE,GQ,2,014,201912,76173 -BE,GQ,2,101,201912,198145 -BE,GQ,2,108,201912,63819 -BE,GQ,2,139,201912,642 -BE,GQ,2,141,201912,19346 -BE,GQ,2,172,201912,46 -BE,GQ,2,192,201912,247217 -BE,GQ,2,205,201912,9685 -BE,GQ,2,221,201912,19254 -BE,GQ,2,222,201912,829 -BE,GQ,2,257,201912,1998 -BE,GQ,2,259,201912,4143 -BE,GQ,2,265,201912,3308 -BE,GQ,2,271,201912,16234 -BE,GQ,2,272,201912,1415 -BE,GQ,2,273,201912,922 -BE,GQ,2,274,201912,3145 -BE,GQ,2,279,201912,10515 -BE,GQ,2,281,201912,198613 -BE,GQ,2,282,201912,3845 -BE,GQ,2,289,201912,19630 -BE,GQ,2,291,201912,538894 -BE,GR,1,011,201912,317072 -BE,GR,1,012,201912,122199 -BE,GR,1,030,201912,91981 -BE,GR,1,081,201912,17030 -BE,GR,1,089,201912,146005 -BE,GR,1,101,201912,18870 -BE,GR,1,102,201912,94268 -BE,GR,1,103,201912,1871246 -BE,GR,1,104,201912,164540 -BE,GR,1,105,201912,622380 -BE,GR,1,106,201912,340563 -BE,GR,1,107,201912,362195 -BE,GR,1,108,201912,467794 -BE,GR,1,109,201912,14116 -BE,GR,1,110,201912,157041 -BE,GR,1,120,201912,47656 -BE,GR,1,131,201912,28731 -BE,GR,1,132,201912,5716 -BE,GR,1,139,201912,68229 -BE,GR,1,141,201912,499900 -BE,GR,1,143,201912,843421 -BE,GR,1,151,201912,40852 -BE,GR,1,152,201912,3082 -BE,GR,1,161,201912,226 -BE,GR,1,162,201912,94071 -BE,GR,1,172,201912,237433 -BE,GR,1,192,201912,4301342 -BE,GR,1,201,201912,5829642 -BE,GR,1,203,201912,3374 -BE,GR,1,204,201912,323391 -BE,GR,1,205,201912,12089 -BE,GR,1,212,201912,3566008 -BE,GR,1,221,201912,259 -BE,GR,1,222,201912,2342894 -BE,GR,1,231,201912,1267 -BE,GR,1,232,201912,34270 -BE,GR,1,234,201912,89826 -BE,GR,1,237,201912,48736 -BE,GR,1,239,201912,6719 -BE,GR,1,242,201912,35678 -BE,GR,1,244,201912,1623610 -BE,GR,1,251,201912,416 -BE,GR,1,257,201912,153137 -BE,GR,1,259,201912,146364 -BE,GR,1,261,201912,4458 -BE,GR,1,263,201912,8487 -BE,GR,1,264,201912,9968 -BE,GR,1,265,201912,321910 -BE,GR,1,266,201912,1786 -BE,GR,1,267,201912,2233 -BE,GR,1,271,201912,36573 -BE,GR,1,272,201912,221868 -BE,GR,1,273,201912,2057 -BE,GR,1,274,201912,17172 -BE,GR,1,275,201912,27329 -BE,GR,1,279,201912,6443 -BE,GR,1,281,201912,60872 -BE,GR,1,282,201912,401737 -BE,GR,1,283,201912,3321 -BE,GR,1,284,201912,2369 -BE,GR,1,289,201912,21840 -BE,GR,1,291,201912,17790 -BE,GR,1,292,201912,144824 -BE,GR,1,293,201912,166073 -BE,GR,1,301,201912,702 -BE,GR,1,303,201912,470 -BE,GR,1,310,201912,4206 -BE,GR,1,321,201912,63389 -BE,GR,1,323,201912,165 -BE,GR,1,325,201912,313869 -BE,GR,1,329,201912,7384 -BE,GR,2,011,201912,350800 -BE,GR,2,012,201912,194817 -BE,GR,2,013,201912,64312 -BE,GR,2,014,201912,148605 -BE,GR,2,021,201912,655 -BE,GR,2,023,201912,236 -BE,GR,2,030,201912,5322 -BE,GR,2,081,201912,22692 -BE,GR,2,089,201912,5570 -BE,GR,2,101,201912,3078079 -BE,GR,2,102,201912,490805 -BE,GR,2,103,201912,3112227 -BE,GR,2,104,201912,400099 -BE,GR,2,105,201912,2124102 -BE,GR,2,106,201912,934106 -BE,GR,2,107,201912,461369 -BE,GR,2,108,201912,6054163 -BE,GR,2,109,201912,678000 -BE,GR,2,110,201912,807274 -BE,GR,2,120,201912,185019 -BE,GR,2,131,201912,18184 -BE,GR,2,132,201912,134611 -BE,GR,2,139,201912,583257 -BE,GR,2,141,201912,4629713 -BE,GR,2,143,201912,1071739 -BE,GR,2,151,201912,396884 -BE,GR,2,152,201912,3352514 -BE,GR,2,161,201912,18454 -BE,GR,2,162,201912,52140 -BE,GR,2,171,201912,843884 -BE,GR,2,172,201912,226408 -BE,GR,2,192,201912,1873858 -BE,GR,2,201,201912,17075360 -BE,GR,2,202,201912,1293432 -BE,GR,2,203,201912,1206627 -BE,GR,2,204,201912,1708724 -BE,GR,2,205,201912,2375533 -BE,GR,2,206,201912,916070 -BE,GR,2,211,201912,247625 -BE,GR,2,212,201912,18659971 -BE,GR,2,221,201912,968481 -BE,GR,2,222,201912,2448901 -BE,GR,2,231,201912,449000 -BE,GR,2,232,201912,1778 -BE,GR,2,234,201912,46877 -BE,GR,2,236,201912,2735 -BE,GR,2,237,201912,648 -BE,GR,2,239,201912,124603 -BE,GR,2,241,201912,1519086 -BE,GR,2,242,201912,39728 -BE,GR,2,243,201912,15756 -BE,GR,2,244,201912,918673 -BE,GR,2,245,201912,27057 -BE,GR,2,251,201912,5640 -BE,GR,2,252,201912,305729 -BE,GR,2,254,201912,646 -BE,GR,2,257,201912,484583 -BE,GR,2,259,201912,615523 -BE,GR,2,261,201912,90572 -BE,GR,2,262,201912,1085047 -BE,GR,2,263,201912,435826 -BE,GR,2,264,201912,617348 -BE,GR,2,265,201912,397300 -BE,GR,2,266,201912,1415800 -BE,GR,2,267,201912,81735 -BE,GR,2,268,201912,29111 -BE,GR,2,271,201912,265261 -BE,GR,2,272,201912,216942 -BE,GR,2,273,201912,487777 -BE,GR,2,274,201912,193218 -BE,GR,2,275,201912,275400 -BE,GR,2,279,201912,435613 -BE,GR,2,281,201912,3118409 -BE,GR,2,282,201912,3235759 -BE,GR,2,283,201912,42311 -BE,GR,2,284,201912,293440 -BE,GR,2,289,201912,490958 -BE,GR,2,291,201912,7871863 -BE,GR,2,292,201912,136183 -BE,GR,2,293,201912,1819427 -BE,GR,2,301,201912,17944 -BE,GR,2,303,201912,19842 -BE,GR,2,309,201912,199470 -BE,GR,2,310,201912,87869 -BE,GR,2,321,201912,399978 -BE,GR,2,322,201912,35754 -BE,GR,2,323,201912,71261 -BE,GR,2,324,201912,170195 -BE,GR,2,325,201912,5233212 -BE,GR,2,329,201912,335614 -BE,GT,1,012,201912,2693640 -BE,GT,1,103,201912,117760 -BE,GT,1,110,201912,117 -BE,GT,1,141,201912,271007 -BE,GT,1,143,201912,3553 -BE,GT,1,271,201912,206 -BE,GT,2,013,201912,13211 -BE,GT,2,103,201912,74974 -BE,GT,2,106,201912,25648 -BE,GT,2,107,201912,94 -BE,GT,2,108,201912,100951 -BE,GT,2,109,201912,27489 -BE,GT,2,110,201912,31967 -BE,GT,2,132,201912,167 -BE,GT,2,139,201912,76800 -BE,GT,2,162,201912,14119 -BE,GT,2,171,201912,247304 -BE,GT,2,172,201912,4103 -BE,GT,2,201,201912,466805 -BE,GT,2,202,201912,120789 -BE,GT,2,203,201912,2368 -BE,GT,2,204,201912,12679 -BE,GT,2,205,201912,138009 -BE,GT,2,211,201912,28699 -BE,GT,2,212,201912,82506 -BE,GT,2,221,201912,14504 -BE,GT,2,222,201912,172 -BE,GT,2,231,201912,8418 -BE,GT,2,259,201912,82127 -BE,GT,2,262,201912,5909 -BE,GT,2,265,201912,3165 -BE,GT,2,266,201912,16276 -BE,GT,2,271,201912,43 -BE,GT,2,273,201912,717 -BE,GT,2,274,201912,27924 -BE,GT,2,279,201912,2603 -BE,GT,2,281,201912,44512 -BE,GT,2,282,201912,24394 -BE,GT,2,289,201912,14445 -BE,GT,2,291,201912,28215 -BE,GT,2,293,201912,24595 -BE,GT,2,324,201912,11169 -BE,GT,2,325,201912,15391 -BE,GU,2,110,201912,42621 -BE,GU,2,291,201912,40072 -BE,GW,1,103,201912,287713 -BE,GW,2,291,201912,89590 -BE,GY,1,106,201912,122487 -BE,GY,1,244,201912,10644724 -BE,GY,2,103,201912,17077 -BE,GY,2,110,201912,18305 -BE,GY,2,204,201912,715 -BE,GY,2,289,201912,473101 -BE,HK,1,012,201912,14236 -BE,HK,1,089,201912,14999211 -BE,HK,1,108,201912,895 -BE,HK,1,110,201912,424 -BE,HK,1,139,201912,38242 -BE,HK,1,141,201912,116409 -BE,HK,1,143,201912,201640 -BE,HK,1,151,201912,224528 -BE,HK,1,152,201912,4382 -BE,HK,1,162,201912,327 -BE,HK,1,171,201912,6373 -BE,HK,1,172,201912,96257 -BE,HK,1,201,201912,49435 -BE,HK,1,204,201912,58907 -BE,HK,1,205,201912,1839 -BE,HK,1,211,201912,55224 -BE,HK,1,221,201912,2159 -BE,HK,1,222,201912,500099 -BE,HK,1,231,201912,15716 -BE,HK,1,234,201912,2164 -BE,HK,1,244,201912,40474 -BE,HK,1,254,201912,18013 -BE,HK,1,257,201912,9755 -BE,HK,1,259,201912,146362 -BE,HK,1,261,201912,362653 -BE,HK,1,262,201912,87610 -BE,HK,1,263,201912,445705 -BE,HK,1,264,201912,330893 -BE,HK,1,265,201912,593563 -BE,HK,1,266,201912,13788 -BE,HK,1,267,201912,21552 -BE,HK,1,271,201912,451847 -BE,HK,1,272,201912,62422 -BE,HK,1,273,201912,303362 -BE,HK,1,274,201912,43653 -BE,HK,1,275,201912,188288 -BE,HK,1,279,201912,282203 -BE,HK,1,281,201912,9521 -BE,HK,1,282,201912,53306 -BE,HK,1,289,201912,4391 -BE,HK,1,293,201912,6434 -BE,HK,1,303,201912,2500 -BE,HK,1,309,201912,73898 -BE,HK,1,310,201912,243238 -BE,HK,1,321,201912,8981340 -BE,HK,1,322,201912,847107 -BE,HK,1,324,201912,22354 -BE,HK,1,325,201912,98599 -BE,HK,1,329,201912,344454 -BE,HK,2,012,201912,132518 -BE,HK,2,014,201912,29157 -BE,HK,2,022,201912,40429 -BE,HK,2,089,201912,21402894 -BE,HK,2,101,201912,957986 -BE,HK,2,103,201912,213619 -BE,HK,2,104,201912,8220 -BE,HK,2,105,201912,118964 -BE,HK,2,106,201912,99697 -BE,HK,2,107,201912,96224 -BE,HK,2,108,201912,885735 -BE,HK,2,109,201912,457156 -BE,HK,2,110,201912,650682 -BE,HK,2,120,201912,68527 -BE,HK,2,131,201912,185275 -BE,HK,2,132,201912,200521 -BE,HK,2,139,201912,479871 -BE,HK,2,141,201912,351979 -BE,HK,2,142,201912,1243 -BE,HK,2,143,201912,67670 -BE,HK,2,151,201912,308025 -BE,HK,2,152,201912,81328 -BE,HK,2,162,201912,61706 -BE,HK,2,171,201912,27766 -BE,HK,2,172,201912,138921 -BE,HK,2,192,201912,101909 -BE,HK,2,201,201912,5009060 -BE,HK,2,202,201912,363738 -BE,HK,2,203,201912,101766 -BE,HK,2,204,201912,2027958 -BE,HK,2,205,201912,1854588 -BE,HK,2,206,201912,311537 -BE,HK,2,211,201912,15707 -BE,HK,2,212,201912,10162465 -BE,HK,2,221,201912,1108602 -BE,HK,2,222,201912,414441 -BE,HK,2,231,201912,505115 -BE,HK,2,234,201912,8508 -BE,HK,2,236,201912,4537 -BE,HK,2,239,201912,27429 -BE,HK,2,241,201912,474956 -BE,HK,2,242,201912,2647 -BE,HK,2,244,201912,276511 -BE,HK,2,257,201912,114465 -BE,HK,2,259,201912,55103 -BE,HK,2,261,201912,6984144 -BE,HK,2,262,201912,673218 -BE,HK,2,263,201912,415947 -BE,HK,2,264,201912,2908546 -BE,HK,2,265,201912,3199014 -BE,HK,2,266,201912,222751 -BE,HK,2,267,201912,1218448 -BE,HK,2,271,201912,405762 -BE,HK,2,272,201912,95466 -BE,HK,2,273,201912,464055 -BE,HK,2,274,201912,246571 -BE,HK,2,275,201912,490023 -BE,HK,2,279,201912,823969 -BE,HK,2,281,201912,726640 -BE,HK,2,282,201912,1918800 -BE,HK,2,283,201912,404 -BE,HK,2,284,201912,7006 -BE,HK,2,289,201912,1085445 -BE,HK,2,291,201912,210035 -BE,HK,2,293,201912,79115 -BE,HK,2,302,201912,100665 -BE,HK,2,303,201912,2034 -BE,HK,2,309,201912,5095 -BE,HK,2,310,201912,51852 -BE,HK,2,321,201912,791975 -BE,HK,2,323,201912,83479 -BE,HK,2,324,201912,79134 -BE,HK,2,325,201912,2060829 -BE,HK,2,329,201912,351147 -BE,HN,1,012,201912,4651876 -BE,HN,1,102,201912,460797 -BE,HN,1,139,201912,20709 -BE,HN,1,141,201912,1753706 -BE,HN,1,143,201912,1935875 -BE,HN,1,212,201912,2724 -BE,HN,1,271,201912,1283 -BE,HN,1,273,201912,1173 -BE,HN,2,089,201912,1175 -BE,HN,2,103,201912,495600 -BE,HN,2,108,201912,31801 -BE,HN,2,109,201912,55622 -BE,HN,2,201,201912,223178 -BE,HN,2,202,201912,7846 -BE,HN,2,205,201912,119297 -BE,HN,2,211,201912,5691 -BE,HN,2,221,201912,586 -BE,HN,2,222,201912,7 -BE,HN,2,242,201912,18 -BE,HN,2,259,201912,1 -BE,HN,2,262,201912,31167 -BE,HN,2,264,201912,444 -BE,HN,2,265,201912,358 -BE,HN,2,266,201912,4509 -BE,HN,2,271,201912,128 -BE,HN,2,273,201912,94 -BE,HN,2,274,201912,1991 -BE,HN,2,281,201912,14968 -BE,HN,2,282,201912,56206 -BE,HN,2,289,201912,94650 -BE,HN,2,293,201912,41380 -BE,HR,1,101,201912,27212 -BE,HR,1,103,201912,43798 -BE,HR,1,108,201912,3773 -BE,HR,1,110,201912,19989 -BE,HR,1,120,201912,219857 -BE,HR,1,139,201912,429027 -BE,HR,1,141,201912,1064 -BE,HR,1,143,201912,78 -BE,HR,1,152,201912,23 -BE,HR,1,161,201912,116498 -BE,HR,1,162,201912,1289390 -BE,HR,1,172,201912,140521 -BE,HR,1,201,201912,85512 -BE,HR,1,202,201912,860 -BE,HR,1,203,201912,1430 -BE,HR,1,205,201912,186390 -BE,HR,1,212,201912,2008651 -BE,HR,1,221,201912,21159 -BE,HR,1,222,201912,163582 -BE,HR,1,231,201912,62855 -BE,HR,1,236,201912,1852 -BE,HR,1,239,201912,81117 -BE,HR,1,242,201912,4536 -BE,HR,1,244,201912,88170 -BE,HR,1,251,201912,33499 -BE,HR,1,252,201912,76686 -BE,HR,1,257,201912,417049 -BE,HR,1,259,201912,227589 -BE,HR,1,261,201912,16152 -BE,HR,1,263,201912,1353 -BE,HR,1,265,201912,134165 -BE,HR,1,267,201912,63696 -BE,HR,1,271,201912,175408 -BE,HR,1,272,201912,844 -BE,HR,1,273,201912,13448 -BE,HR,1,274,201912,2378 -BE,HR,1,275,201912,5670 -BE,HR,1,279,201912,6367 -BE,HR,1,281,201912,441087 -BE,HR,1,282,201912,780199 -BE,HR,1,283,201912,58 -BE,HR,1,284,201912,200856 -BE,HR,1,289,201912,97882 -BE,HR,1,291,201912,4148726 -BE,HR,1,292,201912,77571 -BE,HR,1,293,201912,160632 -BE,HR,1,302,201912,164 -BE,HR,1,310,201912,166960 -BE,HR,1,325,201912,22944 -BE,HR,1,329,201912,79420 -BE,HR,2,011,201912,1343 -BE,HR,2,012,201912,100901 -BE,HR,2,014,201912,505624 -BE,HR,2,021,201912,1126 -BE,HR,2,030,201912,6657 -BE,HR,2,101,201912,430465 -BE,HR,2,103,201912,528959 -BE,HR,2,104,201912,32150 -BE,HR,2,105,201912,293128 -BE,HR,2,106,201912,310805 -BE,HR,2,107,201912,323832 -BE,HR,2,108,201912,470952 -BE,HR,2,109,201912,158721 -BE,HR,2,110,201912,95723 -BE,HR,2,120,201912,321169 -BE,HR,2,131,201912,13367 -BE,HR,2,132,201912,21992 -BE,HR,2,139,201912,760214 -BE,HR,2,141,201912,722479 -BE,HR,2,142,201912,5970 -BE,HR,2,143,201912,140160 -BE,HR,2,151,201912,165440 -BE,HR,2,152,201912,808521 -BE,HR,2,162,201912,351796 -BE,HR,2,171,201912,93039 -BE,HR,2,172,201912,105861 -BE,HR,2,192,201912,547681 -BE,HR,2,201,201912,1849908 -BE,HR,2,202,201912,160381 -BE,HR,2,203,201912,122635 -BE,HR,2,204,201912,346866 -BE,HR,2,205,201912,541768 -BE,HR,2,211,201912,9819 -BE,HR,2,212,201912,10076840 -BE,HR,2,221,201912,462396 -BE,HR,2,222,201912,1051772 -BE,HR,2,231,201912,200691 -BE,HR,2,232,201912,2316 -BE,HR,2,233,201912,4452 -BE,HR,2,234,201912,13765 -BE,HR,2,236,201912,464 -BE,HR,2,239,201912,30856 -BE,HR,2,241,201912,466820 -BE,HR,2,242,201912,5664 -BE,HR,2,243,201912,5982 -BE,HR,2,244,201912,164886 -BE,HR,2,245,201912,4361 -BE,HR,2,251,201912,15088 -BE,HR,2,252,201912,18454 -BE,HR,2,257,201912,328364 -BE,HR,2,259,201912,1162582 -BE,HR,2,261,201912,34322 -BE,HR,2,262,201912,956753 -BE,HR,2,263,201912,92242 -BE,HR,2,264,201912,158052 -BE,HR,2,265,201912,286367 -BE,HR,2,266,201912,1051330 -BE,HR,2,267,201912,46540 -BE,HR,2,271,201912,100937 -BE,HR,2,272,201912,18798 -BE,HR,2,273,201912,74495 -BE,HR,2,274,201912,81551 -BE,HR,2,275,201912,96276 -BE,HR,2,279,201912,118717 -BE,HR,2,281,201912,669946 -BE,HR,2,282,201912,2632374 -BE,HR,2,283,201912,8855 -BE,HR,2,284,201912,438013 -BE,HR,2,289,201912,565163 -BE,HR,2,291,201912,4473109 -BE,HR,2,292,201912,3570 -BE,HR,2,293,201912,243489 -BE,HR,2,301,201912,45 -BE,HR,2,303,201912,5441 -BE,HR,2,309,201912,92980 -BE,HR,2,310,201912,23883 -BE,HR,2,321,201912,54782 -BE,HR,2,322,201912,10891 -BE,HR,2,323,201912,41097 -BE,HR,2,324,201912,10478 -BE,HR,2,325,201912,2304004 -BE,HR,2,329,201912,188687 -BE,HT,1,141,201912,328717 -BE,HT,1,151,201912,12954 -BE,HT,1,271,201912,109 -BE,HT,2,101,201912,38701 -BE,HT,2,141,201912,90278 -BE,HT,2,201,201912,3459 -BE,HT,2,205,201912,61439 -BE,HT,2,212,201912,324007 -BE,HT,2,222,201912,15653 -BE,HT,2,257,201912,7521 -BE,HT,2,265,201912,202 -BE,HT,2,281,201912,937 -BE,HT,2,291,201912,11100 -BE,HT,2,309,201912,19830 -BE,HT,2,325,201912,2595 -BE,HU,1,011,201912,3266932 -BE,HU,1,014,201912,86299 -BE,HU,1,030,201912,79478 -BE,HU,1,101,201912,4224579 -BE,HU,1,102,201912,34189 -BE,HU,1,103,201912,879369 -BE,HU,1,104,201912,1560865 -BE,HU,1,105,201912,19090 -BE,HU,1,106,201912,158328 -BE,HU,1,107,201912,237621 -BE,HU,1,108,201912,999409 -BE,HU,1,109,201912,785707 -BE,HU,1,110,201912,58753 -BE,HU,1,131,201912,35556 -BE,HU,1,132,201912,122124 -BE,HU,1,139,201912,818698 -BE,HU,1,141,201912,558198 -BE,HU,1,143,201912,2186 -BE,HU,1,151,201912,3264254 -BE,HU,1,152,201912,53817 -BE,HU,1,162,201912,603486 -BE,HU,1,171,201912,214185 -BE,HU,1,172,201912,669280 -BE,HU,1,192,201912,212872 -BE,HU,1,201,201912,4086996 -BE,HU,1,202,201912,1082 -BE,HU,1,203,201912,29136 -BE,HU,1,204,201912,552013 -BE,HU,1,205,201912,646286 -BE,HU,1,206,201912,19282 -BE,HU,1,211,201912,1283742 -BE,HU,1,212,201912,5882825 -BE,HU,1,221,201912,1083646 -BE,HU,1,222,201912,3439427 -BE,HU,1,231,201912,3739288 -BE,HU,1,232,201912,57685 -BE,HU,1,234,201912,5545 -BE,HU,1,236,201912,151490 -BE,HU,1,239,201912,70406 -BE,HU,1,241,201912,108663 -BE,HU,1,242,201912,41059 -BE,HU,1,243,201912,147162 -BE,HU,1,244,201912,114082 -BE,HU,1,245,201912,8939 -BE,HU,1,251,201912,495220 -BE,HU,1,257,201912,344104 -BE,HU,1,259,201912,1619765 -BE,HU,1,261,201912,3901661 -BE,HU,1,262,201912,3331084 -BE,HU,1,263,201912,3732808 -BE,HU,1,264,201912,3977098 -BE,HU,1,265,201912,5298383 -BE,HU,1,266,201912,22393 -BE,HU,1,267,201912,53702 -BE,HU,1,271,201912,28381939 -BE,HU,1,272,201912,35444303 -BE,HU,1,273,201912,2955547 -BE,HU,1,274,201912,1565698 -BE,HU,1,275,201912,4288873 -BE,HU,1,279,201912,2370001 -BE,HU,1,281,201912,4535089 -BE,HU,1,282,201912,10691803 -BE,HU,1,283,201912,35444 -BE,HU,1,284,201912,2731566 -BE,HU,1,289,201912,8741693 -BE,HU,1,291,201912,44135926 -BE,HU,1,292,201912,245253 -BE,HU,1,293,201912,19897829 -BE,HU,1,302,201912,1791 -BE,HU,1,309,201912,35484 -BE,HU,1,310,201912,1405949 -BE,HU,1,321,201912,3013 -BE,HU,1,322,201912,901 -BE,HU,1,323,201912,57524 -BE,HU,1,324,201912,37016 -BE,HU,1,325,201912,4358716 -BE,HU,1,329,201912,312926 -BE,HU,2,011,201912,212959 -BE,HU,2,012,201912,1577001 -BE,HU,2,013,201912,745 -BE,HU,2,014,201912,36968 -BE,HU,2,030,201912,32 -BE,HU,2,081,201912,68311 -BE,HU,2,089,201912,15886 -BE,HU,2,101,201912,2167146 -BE,HU,2,102,201912,81484 -BE,HU,2,103,201912,3093984 -BE,HU,2,104,201912,1073951 -BE,HU,2,105,201912,995125 -BE,HU,2,106,201912,378830 -BE,HU,2,107,201912,726293 -BE,HU,2,108,201912,3943833 -BE,HU,2,109,201912,1746495 -BE,HU,2,110,201912,913247 -BE,HU,2,120,201912,24951 -BE,HU,2,131,201912,37272 -BE,HU,2,132,201912,319227 -BE,HU,2,139,201912,1997314 -BE,HU,2,141,201912,11301036 -BE,HU,2,142,201912,185 -BE,HU,2,143,201912,1110168 -BE,HU,2,151,201912,1608585 -BE,HU,2,152,201912,3340275 -BE,HU,2,162,201912,305042 -BE,HU,2,171,201912,578282 -BE,HU,2,172,201912,650211 -BE,HU,2,181,201912,1454 -BE,HU,2,192,201912,759473 -BE,HU,2,201,201912,21638860 -BE,HU,2,202,201912,857656 -BE,HU,2,203,201912,616266 -BE,HU,2,204,201912,1801880 -BE,HU,2,205,201912,3713257 -BE,HU,2,206,201912,493179 -BE,HU,2,211,201912,1441809 -BE,HU,2,212,201912,84484498 -BE,HU,2,221,201912,1663749 -BE,HU,2,222,201912,4815394 -BE,HU,2,231,201912,885693 -BE,HU,2,232,201912,1554 -BE,HU,2,233,201912,9099 -BE,HU,2,234,201912,122963 -BE,HU,2,236,201912,39074 -BE,HU,2,237,201912,31871 -BE,HU,2,239,201912,128424 -BE,HU,2,241,201912,1701204 -BE,HU,2,242,201912,64881 -BE,HU,2,243,201912,538788 -BE,HU,2,244,201912,5103691 -BE,HU,2,245,201912,1576 -BE,HU,2,251,201912,1639309 -BE,HU,2,252,201912,118460 -BE,HU,2,254,201912,96161 -BE,HU,2,257,201912,2143072 -BE,HU,2,259,201912,1400086 -BE,HU,2,261,201912,3079296 -BE,HU,2,262,201912,2820905 -BE,HU,2,263,201912,1782148 -BE,HU,2,264,201912,2871303 -BE,HU,2,265,201912,1732608 -BE,HU,2,266,201912,2907247 -BE,HU,2,267,201912,1460861 -BE,HU,2,268,201912,4026 -BE,HU,2,271,201912,1591482 -BE,HU,2,272,201912,195455 -BE,HU,2,273,201912,2514722 -BE,HU,2,274,201912,1343303 -BE,HU,2,275,201912,800154 -BE,HU,2,279,201912,2468912 -BE,HU,2,281,201912,4562004 -BE,HU,2,282,201912,5898055 -BE,HU,2,283,201912,714070 -BE,HU,2,284,201912,3059885 -BE,HU,2,289,201912,3307577 -BE,HU,2,291,201912,14983147 -BE,HU,2,292,201912,240908 -BE,HU,2,293,201912,2401618 -BE,HU,2,301,201912,25678 -BE,HU,2,303,201912,3192 -BE,HU,2,309,201912,653067 -BE,HU,2,310,201912,249860 -BE,HU,2,321,201912,410156 -BE,HU,2,322,201912,219601 -BE,HU,2,323,201912,434619 -BE,HU,2,324,201912,666071 -BE,HU,2,325,201912,3087022 -BE,HU,2,329,201912,1513143 -BE,ID,1,011,201912,118022 -BE,ID,1,012,201912,7012635 -BE,ID,1,014,201912,1211 -BE,ID,1,030,201912,12324 -BE,ID,1,101,201912,1494451 -BE,ID,1,102,201912,895187 -BE,ID,1,103,201912,310278 -BE,ID,1,104,201912,1959043 -BE,ID,1,106,201912,8145 -BE,ID,1,108,201912,737577 -BE,ID,1,110,201912,127 -BE,ID,1,120,201912,1552194 -BE,ID,1,131,201912,1200943 -BE,ID,1,132,201912,78893 -BE,ID,1,139,201912,397784 -BE,ID,1,141,201912,9498799 -BE,ID,1,143,201912,1350141 -BE,ID,1,151,201912,3183383 -BE,ID,1,152,201912,40686956 -BE,ID,1,161,201912,427271 -BE,ID,1,162,201912,1126820 -BE,ID,1,171,201912,2108455 -BE,ID,1,172,201912,47278 -BE,ID,1,201,201912,1381329 -BE,ID,1,205,201912,122039 -BE,ID,1,206,201912,342047 -BE,ID,1,221,201912,279288 -BE,ID,1,222,201912,278982 -BE,ID,1,231,201912,92077 -BE,ID,1,232,201912,214 -BE,ID,1,233,201912,28225 -BE,ID,1,234,201912,159059 -BE,ID,1,236,201912,56097 -BE,ID,1,237,201912,136048 -BE,ID,1,241,201912,1236710 -BE,ID,1,242,201912,564 -BE,ID,1,244,201912,435758 -BE,ID,1,251,201912,409 -BE,ID,1,257,201912,42726 -BE,ID,1,259,201912,298396 -BE,ID,1,261,201912,43023 -BE,ID,1,262,201912,70281 -BE,ID,1,263,201912,2771 -BE,ID,1,264,201912,2172300 -BE,ID,1,265,201912,140735 -BE,ID,1,267,201912,24 -BE,ID,1,271,201912,96232 -BE,ID,1,272,201912,3393 -BE,ID,1,273,201912,23306 -BE,ID,1,274,201912,107644 -BE,ID,1,275,201912,157 -BE,ID,1,279,201912,6026 -BE,ID,1,281,201912,147118 -BE,ID,1,282,201912,1654993 -BE,ID,1,284,201912,52 -BE,ID,1,289,201912,2612686 -BE,ID,1,291,201912,2442974 -BE,ID,1,293,201912,474958 -BE,ID,1,309,201912,14375 -BE,ID,1,310,201912,4212002 -BE,ID,1,321,201912,14980 -BE,ID,1,322,201912,156367 -BE,ID,1,323,201912,8055 -BE,ID,1,324,201912,498309 -BE,ID,1,325,201912,297465 -BE,ID,1,329,201912,244627 -BE,ID,2,011,201912,64106 -BE,ID,2,012,201912,8905 -BE,ID,2,081,201912,11637 -BE,ID,2,089,201912,113107 -BE,ID,2,103,201912,875774 -BE,ID,2,104,201912,278607 -BE,ID,2,105,201912,384326 -BE,ID,2,106,201912,524098 -BE,ID,2,107,201912,39872 -BE,ID,2,108,201912,625010 -BE,ID,2,109,201912,462917 -BE,ID,2,110,201912,417960 -BE,ID,2,131,201912,105188 -BE,ID,2,132,201912,508838 -BE,ID,2,139,201912,507849 -BE,ID,2,141,201912,147216 -BE,ID,2,162,201912,273413 -BE,ID,2,171,201912,3027281 -BE,ID,2,172,201912,11476 -BE,ID,2,192,201912,636047 -BE,ID,2,201,201912,8337011 -BE,ID,2,202,201912,404464 -BE,ID,2,203,201912,373003 -BE,ID,2,204,201912,81674 -BE,ID,2,205,201912,995482 -BE,ID,2,206,201912,232263 -BE,ID,2,211,201912,113747 -BE,ID,2,212,201912,3716430 -BE,ID,2,221,201912,565948 -BE,ID,2,222,201912,346225 -BE,ID,2,231,201912,20646 -BE,ID,2,239,201912,119378 -BE,ID,2,241,201912,1392255 -BE,ID,2,242,201912,150551 -BE,ID,2,243,201912,197622 -BE,ID,2,244,201912,789214 -BE,ID,2,245,201912,18762 -BE,ID,2,251,201912,351181 -BE,ID,2,252,201912,1056292 -BE,ID,2,253,201912,3710 -BE,ID,2,257,201912,41200 -BE,ID,2,259,201912,788986 -BE,ID,2,261,201912,92830 -BE,ID,2,262,201912,254536 -BE,ID,2,263,201912,127918 -BE,ID,2,264,201912,332153 -BE,ID,2,265,201912,183078 -BE,ID,2,266,201912,36118 -BE,ID,2,267,201912,10845 -BE,ID,2,271,201912,3715145 -BE,ID,2,272,201912,52024 -BE,ID,2,273,201912,243319 -BE,ID,2,274,201912,299585 -BE,ID,2,275,201912,42783 -BE,ID,2,279,201912,375508 -BE,ID,2,281,201912,2984545 -BE,ID,2,282,201912,3725230 -BE,ID,2,283,201912,1474781 -BE,ID,2,284,201912,93223 -BE,ID,2,289,201912,2262789 -BE,ID,2,291,201912,1806086 -BE,ID,2,292,201912,46930 -BE,ID,2,293,201912,711171 -BE,ID,2,310,201912,44426 -BE,ID,2,325,201912,215924 -BE,ID,2,329,201912,33873 -BE,IE,1,011,201912,39002 -BE,IE,1,012,201912,1677 -BE,IE,1,014,201912,314033 -BE,IE,1,030,201912,522457 -BE,IE,1,089,201912,1399995 -BE,IE,1,101,201912,8259803 -BE,IE,1,102,201912,82970 -BE,IE,1,103,201912,25464 -BE,IE,1,104,201912,3648 -BE,IE,1,105,201912,8324198 -BE,IE,1,106,201912,5972 -BE,IE,1,107,201912,21423 -BE,IE,1,108,201912,3526064 -BE,IE,1,109,201912,168720 -BE,IE,1,110,201912,895457 -BE,IE,1,132,201912,14204 -BE,IE,1,139,201912,120822 -BE,IE,1,141,201912,214166 -BE,IE,1,143,201912,22850 -BE,IE,1,151,201912,63442 -BE,IE,1,152,201912,11348 -BE,IE,1,161,201912,1234 -BE,IE,1,162,201912,761299 -BE,IE,1,171,201912,239165 -BE,IE,1,172,201912,151838 -BE,IE,1,192,201912,103320 -BE,IE,1,201,201912,126349597 -BE,IE,1,202,201912,924681 -BE,IE,1,203,201912,23918 -BE,IE,1,204,201912,132660 -BE,IE,1,205,201912,11218869 -BE,IE,1,206,201912,556886 -BE,IE,1,211,201912,447317588 -BE,IE,1,212,201912,387865197 -BE,IE,1,221,201912,139814 -BE,IE,1,222,201912,2833402 -BE,IE,1,231,201912,477349 -BE,IE,1,232,201912,61930 -BE,IE,1,234,201912,3534 -BE,IE,1,235,201912,2377395 -BE,IE,1,236,201912,60975 -BE,IE,1,237,201912,522715 -BE,IE,1,239,201912,5002 -BE,IE,1,241,201912,1696 -BE,IE,1,242,201912,24473 -BE,IE,1,243,201912,29915 -BE,IE,1,244,201912,970 -BE,IE,1,251,201912,46547 -BE,IE,1,252,201912,6963 -BE,IE,1,257,201912,214499 -BE,IE,1,259,201912,279636 -BE,IE,1,261,201912,4767502 -BE,IE,1,262,201912,4561560 -BE,IE,1,263,201912,5541062 -BE,IE,1,264,201912,714008 -BE,IE,1,265,201912,983304 -BE,IE,1,266,201912,58124 -BE,IE,1,267,201912,2850358 -BE,IE,1,271,201912,3257317 -BE,IE,1,272,201912,145668 -BE,IE,1,273,201912,154147 -BE,IE,1,274,201912,69659 -BE,IE,1,275,201912,143856 -BE,IE,1,279,201912,782343 -BE,IE,1,281,201912,1350901 -BE,IE,1,282,201912,2967910 -BE,IE,1,283,201912,67000 -BE,IE,1,284,201912,11630 -BE,IE,1,289,201912,412950 -BE,IE,1,291,201912,862 -BE,IE,1,292,201912,62202 -BE,IE,1,293,201912,695233 -BE,IE,1,303,201912,421742 -BE,IE,1,309,201912,102115 -BE,IE,1,310,201912,48758 -BE,IE,1,321,201912,54875 -BE,IE,1,323,201912,3028 -BE,IE,1,324,201912,6 -BE,IE,1,325,201912,26323420 -BE,IE,1,329,201912,1575025 -BE,IE,2,011,201912,107891 -BE,IE,2,012,201912,1804932 -BE,IE,2,013,201912,111833 -BE,IE,2,014,201912,504694 -BE,IE,2,021,201912,84709 -BE,IE,2,030,201912,29020 -BE,IE,2,081,201912,10353 -BE,IE,2,089,201912,135308 -BE,IE,2,101,201912,1689161 -BE,IE,2,102,201912,759260 -BE,IE,2,103,201912,6380001 -BE,IE,2,104,201912,3193880 -BE,IE,2,105,201912,1085824 -BE,IE,2,106,201912,1152511 -BE,IE,2,107,201912,1562455 -BE,IE,2,108,201912,3258957 -BE,IE,2,109,201912,1095643 -BE,IE,2,110,201912,3872496 -BE,IE,2,120,201912,220910 -BE,IE,2,131,201912,53083 -BE,IE,2,132,201912,180784 -BE,IE,2,139,201912,1406083 -BE,IE,2,141,201912,3577886 -BE,IE,2,143,201912,685274 -BE,IE,2,151,201912,275144 -BE,IE,2,152,201912,3079759 -BE,IE,2,161,201912,746229 -BE,IE,2,162,201912,393926 -BE,IE,2,171,201912,244062 -BE,IE,2,172,201912,2916620 -BE,IE,2,192,201912,1999977 -BE,IE,2,201,201912,21742015 -BE,IE,2,202,201912,205054 -BE,IE,2,203,201912,1164955 -BE,IE,2,204,201912,1385742 -BE,IE,2,205,201912,7610367 -BE,IE,2,206,201912,63326 -BE,IE,2,211,201912,16059123 -BE,IE,2,212,201912,37007937 -BE,IE,2,221,201912,1167111 -BE,IE,2,222,201912,4203835 -BE,IE,2,231,201912,437231 -BE,IE,2,232,201912,1561 -BE,IE,2,233,201912,185911 -BE,IE,2,234,201912,17515 -BE,IE,2,236,201912,534128 -BE,IE,2,237,201912,1362 -BE,IE,2,239,201912,86966 -BE,IE,2,241,201912,2335657 -BE,IE,2,242,201912,61711 -BE,IE,2,243,201912,182695 -BE,IE,2,244,201912,908728 -BE,IE,2,245,201912,421 -BE,IE,2,251,201912,798089 -BE,IE,2,252,201912,24774 -BE,IE,2,253,201912,69112 -BE,IE,2,254,201912,2641 -BE,IE,2,257,201912,603765 -BE,IE,2,259,201912,851813 -BE,IE,2,261,201912,585953 -BE,IE,2,262,201912,585512 -BE,IE,2,263,201912,944457 -BE,IE,2,264,201912,652200 -BE,IE,2,265,201912,585001 -BE,IE,2,266,201912,1042099 -BE,IE,2,267,201912,41280 -BE,IE,2,268,201912,472945 -BE,IE,2,271,201912,573406 -BE,IE,2,272,201912,468131 -BE,IE,2,273,201912,399601 -BE,IE,2,274,201912,150358 -BE,IE,2,275,201912,353192 -BE,IE,2,279,201912,636458 -BE,IE,2,281,201912,2246952 -BE,IE,2,282,201912,3555673 -BE,IE,2,283,201912,876195 -BE,IE,2,284,201912,79090 -BE,IE,2,289,201912,843965 -BE,IE,2,291,201912,42505945 -BE,IE,2,292,201912,46784 -BE,IE,2,293,201912,1442347 -BE,IE,2,302,201912,159952 -BE,IE,2,303,201912,25853 -BE,IE,2,309,201912,44325 -BE,IE,2,310,201912,307938 -BE,IE,2,321,201912,400884 -BE,IE,2,322,201912,137830 -BE,IE,2,323,201912,64842 -BE,IE,2,324,201912,438152 -BE,IE,2,325,201912,6205323 -BE,IE,2,329,201912,704419 -BE,IL,1,011,201912,2830782 -BE,IL,1,012,201912,1781254 -BE,IL,1,013,201912,343679 -BE,IL,1,014,201912,2210 -BE,IL,1,023,201912,612060 -BE,IL,1,030,201912,215656 -BE,IL,1,089,201912,1000244 -BE,IL,1,103,201912,25877 -BE,IL,1,104,201912,2431 -BE,IL,1,106,201912,132215 -BE,IL,1,107,201912,357294 -BE,IL,1,108,201912,73871 -BE,IL,1,110,201912,50374 -BE,IL,1,132,201912,144140 -BE,IL,1,139,201912,235007 -BE,IL,1,141,201912,6636 -BE,IL,1,143,201912,790 -BE,IL,1,151,201912,488605 -BE,IL,1,162,201912,33223 -BE,IL,1,171,201912,4657 -BE,IL,1,172,201912,48935 -BE,IL,1,201,201912,5141757 -BE,IL,1,203,201912,210114 -BE,IL,1,204,201912,1412532 -BE,IL,1,205,201912,66397 -BE,IL,1,211,201912,758323 -BE,IL,1,212,201912,4306683 -BE,IL,1,221,201912,272595 -BE,IL,1,222,201912,5043434 -BE,IL,1,231,201912,14457 -BE,IL,1,234,201912,1158 -BE,IL,1,236,201912,149417 -BE,IL,1,237,201912,141065 -BE,IL,1,242,201912,145096 -BE,IL,1,244,201912,99148 -BE,IL,1,251,201912,3786 -BE,IL,1,257,201912,18482990 -BE,IL,1,259,201912,97410 -BE,IL,1,261,201912,671122 -BE,IL,1,262,201912,4881618 -BE,IL,1,263,201912,468512 -BE,IL,1,264,201912,22151 -BE,IL,1,265,201912,451111 -BE,IL,1,266,201912,3260136 -BE,IL,1,267,201912,472448 -BE,IL,1,271,201912,240336 -BE,IL,1,272,201912,1890467 -BE,IL,1,273,201912,13354 -BE,IL,1,274,201912,3665 -BE,IL,1,275,201912,135751 -BE,IL,1,279,201912,553337 -BE,IL,1,281,201912,1093328 -BE,IL,1,282,201912,288755 -BE,IL,1,283,201912,477927 -BE,IL,1,284,201912,4082151 -BE,IL,1,289,201912,1588707 -BE,IL,1,291,201912,146 -BE,IL,1,293,201912,98652 -BE,IL,1,301,201912,3099 -BE,IL,1,303,201912,1393276 -BE,IL,1,309,201912,9951 -BE,IL,1,310,201912,287076 -BE,IL,1,321,201912,1446854 -BE,IL,1,322,201912,3631 -BE,IL,1,323,201912,88997 -BE,IL,1,324,201912,37423 -BE,IL,1,325,201912,3529591 -BE,IL,1,329,201912,56374 -BE,IL,2,011,201912,50344 -BE,IL,2,012,201912,16746 -BE,IL,2,013,201912,48736 -BE,IL,2,014,201912,468197 -BE,IL,2,081,201912,168083 -BE,IL,2,089,201912,58509169 -BE,IL,2,101,201912,9288 -BE,IL,2,102,201912,3956 -BE,IL,2,103,201912,2879526 -BE,IL,2,104,201912,1786965 -BE,IL,2,105,201912,641585 -BE,IL,2,106,201912,1212912 -BE,IL,2,107,201912,691177 -BE,IL,2,108,201912,3524682 -BE,IL,2,109,201912,750533 -BE,IL,2,110,201912,1968813 -BE,IL,2,120,201912,20470 -BE,IL,2,132,201912,62174 -BE,IL,2,139,201912,582194 -BE,IL,2,141,201912,137132 -BE,IL,2,143,201912,7775 -BE,IL,2,151,201912,266571 -BE,IL,2,152,201912,8165 -BE,IL,2,161,201912,12232 -BE,IL,2,162,201912,896846 -BE,IL,2,171,201912,912297 -BE,IL,2,172,201912,727040 -BE,IL,2,192,201912,2961227 -BE,IL,2,201,201912,10595107 -BE,IL,2,202,201912,788454 -BE,IL,2,203,201912,1605676 -BE,IL,2,204,201912,7157448 -BE,IL,2,205,201912,3422835 -BE,IL,2,206,201912,36601 -BE,IL,2,211,201912,203288 -BE,IL,2,212,201912,41426045 -BE,IL,2,221,201912,558431 -BE,IL,2,222,201912,1621591 -BE,IL,2,231,201912,756853 -BE,IL,2,232,201912,119532 -BE,IL,2,233,201912,30738 -BE,IL,2,234,201912,15840 -BE,IL,2,235,201912,30100 -BE,IL,2,236,201912,55627 -BE,IL,2,239,201912,24645 -BE,IL,2,241,201912,2395849 -BE,IL,2,242,201912,34593 -BE,IL,2,243,201912,29288 -BE,IL,2,244,201912,1583499 -BE,IL,2,245,201912,13 -BE,IL,2,251,201912,118813 -BE,IL,2,257,201912,719354 -BE,IL,2,259,201912,325713 -BE,IL,2,261,201912,2810889 -BE,IL,2,262,201912,1983401 -BE,IL,2,263,201912,459145 -BE,IL,2,264,201912,429552 -BE,IL,2,265,201912,693825 -BE,IL,2,266,201912,2588999 -BE,IL,2,267,201912,240054 -BE,IL,2,271,201912,327706 -BE,IL,2,272,201912,180951 -BE,IL,2,273,201912,568708 -BE,IL,2,274,201912,458012 -BE,IL,2,275,201912,524341 -BE,IL,2,279,201912,1401457 -BE,IL,2,281,201912,1678090 -BE,IL,2,282,201912,4629356 -BE,IL,2,283,201912,440165 -BE,IL,2,284,201912,683298 -BE,IL,2,289,201912,4511693 -BE,IL,2,291,201912,30995784 -BE,IL,2,292,201912,48375 -BE,IL,2,293,201912,1873484 -BE,IL,2,302,201912,1781 -BE,IL,2,303,201912,12170423 -BE,IL,2,309,201912,81462 -BE,IL,2,310,201912,345486 -BE,IL,2,321,201912,20919479 -BE,IL,2,322,201912,934 -BE,IL,2,323,201912,40014 -BE,IL,2,324,201912,182467 -BE,IL,2,325,201912,8534498 -BE,IL,2,329,201912,227123 -BE,IN,1,011,201912,1467066 -BE,IN,1,012,201912,2229811 -BE,IN,1,081,201912,409219 -BE,IN,1,089,201912,9496435 -BE,IN,1,101,201912,120954 -BE,IN,1,102,201912,8611062 -BE,IN,1,103,201912,1510323 -BE,IN,1,104,201912,928121 -BE,IN,1,106,201912,641453 -BE,IN,1,107,201912,1926 -BE,IN,1,108,201912,1407631 -BE,IN,1,109,201912,3617 -BE,IN,1,110,201912,9041 -BE,IN,1,120,201912,3800786 -BE,IN,1,131,201912,2425832 -BE,IN,1,132,201912,613139 -BE,IN,1,139,201912,6001449 -BE,IN,1,141,201912,10414675 -BE,IN,1,142,201912,501 -BE,IN,1,143,201912,982609 -BE,IN,1,151,201912,1945223 -BE,IN,1,152,201912,5837608 -BE,IN,1,162,201912,380338 -BE,IN,1,171,201912,14918 -BE,IN,1,172,201912,52647 -BE,IN,1,192,201912,44155 -BE,IN,1,201,201912,29239373 -BE,IN,1,202,201912,685256 -BE,IN,1,203,201912,521186 -BE,IN,1,204,201912,338347 -BE,IN,1,205,201912,2791352 -BE,IN,1,206,201912,1351172 -BE,IN,1,211,201912,10329518 -BE,IN,1,212,201912,29662687 -BE,IN,1,221,201912,2882769 -BE,IN,1,222,201912,2959737 -BE,IN,1,231,201912,929127 -BE,IN,1,232,201912,778654 -BE,IN,1,233,201912,683983 -BE,IN,1,234,201912,126589 -BE,IN,1,237,201912,1296558 -BE,IN,1,239,201912,21239 -BE,IN,1,241,201912,54848802 -BE,IN,1,242,201912,4703388 -BE,IN,1,243,201912,3296582 -BE,IN,1,244,201912,477661 -BE,IN,1,245,201912,55890 -BE,IN,1,251,201912,263736 -BE,IN,1,254,201912,24062 -BE,IN,1,257,201912,2689563 -BE,IN,1,259,201912,4230794 -BE,IN,1,261,201912,683226 -BE,IN,1,262,201912,170266 -BE,IN,1,263,201912,389828 -BE,IN,1,264,201912,937507 -BE,IN,1,265,201912,520205 -BE,IN,1,266,201912,3595 -BE,IN,1,267,201912,189620 -BE,IN,1,268,201912,40998 -BE,IN,1,271,201912,1921493 -BE,IN,1,272,201912,3447 -BE,IN,1,273,201912,320935 -BE,IN,1,274,201912,640318 -BE,IN,1,275,201912,628 -BE,IN,1,279,201912,497047 -BE,IN,1,281,201912,6475567 -BE,IN,1,282,201912,3682419 -BE,IN,1,283,201912,595760 -BE,IN,1,284,201912,1057933 -BE,IN,1,289,201912,2032912 -BE,IN,1,291,201912,3348350 -BE,IN,1,292,201912,8802 -BE,IN,1,293,201912,4602177 -BE,IN,1,302,201912,52038 -BE,IN,1,303,201912,304425 -BE,IN,1,309,201912,82446 -BE,IN,1,310,201912,1735474 -BE,IN,1,321,201912,61357265 -BE,IN,1,322,201912,510 -BE,IN,1,323,201912,252187 -BE,IN,1,324,201912,775124 -BE,IN,1,325,201912,900477 -BE,IN,1,329,201912,454339 -BE,IN,2,012,201912,417442 -BE,IN,2,022,201912,418477 -BE,IN,2,072,201912,19441 -BE,IN,2,081,201912,85960 -BE,IN,2,089,201912,511774286 -BE,IN,2,101,201912,1191183 -BE,IN,2,103,201912,190526 -BE,IN,2,104,201912,362126 -BE,IN,2,106,201912,269249 -BE,IN,2,107,201912,14535 -BE,IN,2,108,201912,532075 -BE,IN,2,109,201912,599552 -BE,IN,2,110,201912,265114 -BE,IN,2,131,201912,5634216 -BE,IN,2,132,201912,311222 -BE,IN,2,139,201912,447587 -BE,IN,2,141,201912,90889 -BE,IN,2,143,201912,7511 -BE,IN,2,151,201912,70853 -BE,IN,2,152,201912,2944 -BE,IN,2,161,201912,81364 -BE,IN,2,162,201912,316087 -BE,IN,2,171,201912,2253070 -BE,IN,2,172,201912,129431 -BE,IN,2,192,201912,2798403 -BE,IN,2,201,201912,41243567 -BE,IN,2,202,201912,1394171 -BE,IN,2,203,201912,2075078 -BE,IN,2,204,201912,985445 -BE,IN,2,205,201912,10067655 -BE,IN,2,206,201912,75446 -BE,IN,2,211,201912,2631707 -BE,IN,2,212,201912,38956756 -BE,IN,2,221,201912,2439006 -BE,IN,2,222,201912,2496344 -BE,IN,2,231,201912,672070 -BE,IN,2,232,201912,10103 -BE,IN,2,234,201912,98751 -BE,IN,2,235,201912,81332 -BE,IN,2,236,201912,1854 -BE,IN,2,239,201912,121648 -BE,IN,2,241,201912,5976832 -BE,IN,2,242,201912,2221267 -BE,IN,2,243,201912,838963 -BE,IN,2,244,201912,2160382 -BE,IN,2,245,201912,38822 -BE,IN,2,251,201912,58671 -BE,IN,2,257,201912,270182 -BE,IN,2,259,201912,1276300 -BE,IN,2,261,201912,361286 -BE,IN,2,262,201912,1276427 -BE,IN,2,263,201912,703219 -BE,IN,2,264,201912,125970 -BE,IN,2,265,201912,1563767 -BE,IN,2,266,201912,4981524 -BE,IN,2,267,201912,1329003 -BE,IN,2,271,201912,798049 -BE,IN,2,272,201912,83879 -BE,IN,2,273,201912,347102 -BE,IN,2,274,201912,345663 -BE,IN,2,275,201912,38904 -BE,IN,2,279,201912,713788 -BE,IN,2,281,201912,7234064 -BE,IN,2,282,201912,10580720 -BE,IN,2,283,201912,79471 -BE,IN,2,284,201912,600758 -BE,IN,2,289,201912,6055874 -BE,IN,2,291,201912,462835 -BE,IN,2,292,201912,80868 -BE,IN,2,293,201912,1460190 -BE,IN,2,302,201912,213870 -BE,IN,2,303,201912,172989 -BE,IN,2,309,201912,17278 -BE,IN,2,310,201912,7304 -BE,IN,2,321,201912,2906229 -BE,IN,2,323,201912,18466 -BE,IN,2,324,201912,47366 -BE,IN,2,325,201912,22076424 -BE,IN,2,329,201912,156249 -BE,IQ,1,271,201912,207 -BE,IQ,2,011,201912,26943 -BE,IQ,2,014,201912,1831024 -BE,IQ,2,101,201912,59398 -BE,IQ,2,103,201912,264503 -BE,IQ,2,105,201912,485522 -BE,IQ,2,108,201912,152549 -BE,IQ,2,109,201912,890424 -BE,IQ,2,120,201912,36500 -BE,IQ,2,139,201912,111768 -BE,IQ,2,141,201912,26220 -BE,IQ,2,162,201912,4081 -BE,IQ,2,172,201912,1581 -BE,IQ,2,192,201912,105953 -BE,IQ,2,201,201912,1374371 -BE,IQ,2,202,201912,181920 -BE,IQ,2,203,201912,12684 -BE,IQ,2,204,201912,400707 -BE,IQ,2,205,201912,527707 -BE,IQ,2,211,201912,10408 -BE,IQ,2,212,201912,6278122 -BE,IQ,2,221,201912,17820 -BE,IQ,2,222,201912,82034 -BE,IQ,2,231,201912,1019 -BE,IQ,2,239,201912,3973 -BE,IQ,2,242,201912,6586 -BE,IQ,2,251,201912,57510 -BE,IQ,2,253,201912,16950 -BE,IQ,2,257,201912,73699 -BE,IQ,2,259,201912,1231 -BE,IQ,2,262,201912,115954 -BE,IQ,2,263,201912,244 -BE,IQ,2,264,201912,1890 -BE,IQ,2,265,201912,127310 -BE,IQ,2,266,201912,27834 -BE,IQ,2,271,201912,139075 -BE,IQ,2,272,201912,2621 -BE,IQ,2,273,201912,3530 -BE,IQ,2,274,201912,1318 -BE,IQ,2,275,201912,4811 -BE,IQ,2,279,201912,61659 -BE,IQ,2,281,201912,450283 -BE,IQ,2,282,201912,685643 -BE,IQ,2,283,201912,63600 -BE,IQ,2,289,201912,1128479 -BE,IQ,2,291,201912,358389 -BE,IQ,2,292,201912,22430 -BE,IQ,2,293,201912,27240 -BE,IQ,2,324,201912,1500 -BE,IQ,2,325,201912,768489 -BE,IQ,2,329,201912,54615 -BE,IR,1,102,201912,14188 -BE,IR,1,103,201912,412601 -BE,IR,1,108,201912,193 -BE,IR,1,139,201912,1981 -BE,IR,1,201,201912,1586078 -BE,IR,1,222,201912,16733 -BE,IR,1,303,201912,3249 -BE,IR,1,324,201912,229 -BE,IR,2,106,201912,41208 -BE,IR,2,108,201912,238612 -BE,IR,2,109,201912,1380042 -BE,IR,2,131,201912,14800 -BE,IR,2,171,201912,40182 -BE,IR,2,172,201912,14451 -BE,IR,2,201,201912,358886 -BE,IR,2,203,201912,83792 -BE,IR,2,204,201912,731464 -BE,IR,2,205,201912,1536405 -BE,IR,2,211,201912,402120 -BE,IR,2,212,201912,6580473 -BE,IR,2,221,201912,26828 -BE,IR,2,222,201912,127323 -BE,IR,2,231,201912,149938 -BE,IR,2,242,201912,222 -BE,IR,2,244,201912,553 -BE,IR,2,257,201912,40912 -BE,IR,2,259,201912,6135 -BE,IR,2,262,201912,521359 -BE,IR,2,264,201912,17135 -BE,IR,2,265,201912,419915 -BE,IR,2,266,201912,593815 -BE,IR,2,271,201912,619 -BE,IR,2,273,201912,81069 -BE,IR,2,279,201912,35 -BE,IR,2,281,201912,482794 -BE,IR,2,282,201912,356992 -BE,IR,2,289,201912,992567 -BE,IR,2,293,201912,328891 -BE,IR,2,325,201912,1777940 -BE,IS,1,014,201912,327945 -BE,IS,1,030,201912,331517 -BE,IS,1,102,201912,5449098 -BE,IS,1,108,201912,388 -BE,IS,1,110,201912,7500 -BE,IS,1,141,201912,719 -BE,IS,1,143,201912,1520 -BE,IS,1,205,201912,3919 -BE,IS,1,212,201912,9578 -BE,IS,1,259,201912,107 -BE,IS,1,263,201912,1293 -BE,IS,1,265,201912,784 -BE,IS,1,271,201912,2805 -BE,IS,1,279,201912,6134 -BE,IS,1,281,201912,12732 -BE,IS,1,282,201912,4106 -BE,IS,1,289,201912,179 -BE,IS,1,293,201912,15375 -BE,IS,1,324,201912,261 -BE,IS,1,325,201912,1560 -BE,IS,1,329,201912,143 -BE,IS,2,011,201912,105746 -BE,IS,2,012,201912,24754 -BE,IS,2,013,201912,13955 -BE,IS,2,023,201912,8976 -BE,IS,2,081,201912,657 -BE,IS,2,089,201912,1591 -BE,IS,2,103,201912,266481 -BE,IS,2,104,201912,78278 -BE,IS,2,105,201912,11918 -BE,IS,2,106,201912,105464 -BE,IS,2,107,201912,170246 -BE,IS,2,108,201912,303255 -BE,IS,2,109,201912,24108 -BE,IS,2,110,201912,103675 -BE,IS,2,139,201912,50729 -BE,IS,2,141,201912,160166 -BE,IS,2,143,201912,14898 -BE,IS,2,151,201912,270 -BE,IS,2,152,201912,1725 -BE,IS,2,162,201912,46960 -BE,IS,2,171,201912,41543 -BE,IS,2,172,201912,11246 -BE,IS,2,192,201912,38266 -BE,IS,2,201,201912,112572 -BE,IS,2,202,201912,1466 -BE,IS,2,203,201912,73237 -BE,IS,2,204,201912,75450 -BE,IS,2,205,201912,257513 -BE,IS,2,212,201912,52114 -BE,IS,2,221,201912,65539 -BE,IS,2,222,201912,442742 -BE,IS,2,231,201912,32407 -BE,IS,2,239,201912,32081 -BE,IS,2,241,201912,43883 -BE,IS,2,242,201912,1172 -BE,IS,2,243,201912,41982 -BE,IS,2,244,201912,43868 -BE,IS,2,251,201912,37 -BE,IS,2,257,201912,25443 -BE,IS,2,259,201912,35977 -BE,IS,2,261,201912,942 -BE,IS,2,262,201912,96247 -BE,IS,2,263,201912,48542 -BE,IS,2,264,201912,21719 -BE,IS,2,265,201912,43706 -BE,IS,2,266,201912,16725 -BE,IS,2,267,201912,17623 -BE,IS,2,271,201912,36700 -BE,IS,2,272,201912,7771 -BE,IS,2,273,201912,29593 -BE,IS,2,274,201912,91687 -BE,IS,2,275,201912,10546 -BE,IS,2,279,201912,14935 -BE,IS,2,281,201912,149567 -BE,IS,2,282,201912,181530 -BE,IS,2,284,201912,400 -BE,IS,2,289,201912,41448 -BE,IS,2,291,201912,2009372 -BE,IS,2,293,201912,302873 -BE,IS,2,302,201912,547 -BE,IS,2,309,201912,2943 -BE,IS,2,310,201912,69809 -BE,IS,2,321,201912,18911 -BE,IS,2,323,201912,42340 -BE,IS,2,324,201912,3193 -BE,IS,2,325,201912,249379 -BE,IS,2,329,201912,4520 -BE,IT,1,011,201912,4329291 -BE,IT,1,012,201912,11273811 -BE,IT,1,013,201912,322204 -BE,IT,1,014,201912,187628 -BE,IT,1,023,201912,16863 -BE,IT,1,030,201912,34700 -BE,IT,1,051,201912,2176327 -BE,IT,1,072,201912,4814 -BE,IT,1,081,201912,271060 -BE,IT,1,089,201912,248582 -BE,IT,1,101,201912,11359353 -BE,IT,1,102,201912,1140214 -BE,IT,1,103,201912,9754690 -BE,IT,1,104,201912,2326215 -BE,IT,1,105,201912,12827664 -BE,IT,1,106,201912,4388528 -BE,IT,1,107,201912,9572355 -BE,IT,1,108,201912,14762642 -BE,IT,1,109,201912,2008373 -BE,IT,1,110,201912,17967403 -BE,IT,1,120,201912,360719 -BE,IT,1,131,201912,1473939 -BE,IT,1,132,201912,4529107 -BE,IT,1,139,201912,5389272 -BE,IT,1,141,201912,16767079 -BE,IT,1,142,201912,85600 -BE,IT,1,143,201912,5020203 -BE,IT,1,151,201912,3310717 -BE,IT,1,152,201912,11449120 -BE,IT,1,161,201912,1103034 -BE,IT,1,162,201912,963293 -BE,IT,1,171,201912,6338127 -BE,IT,1,172,201912,7475297 -BE,IT,1,181,201912,48158 -BE,IT,1,192,201912,27604147 -BE,IT,1,201,201912,31399827 -BE,IT,1,202,201912,2768949 -BE,IT,1,203,201912,2088374 -BE,IT,1,204,201912,17440455 -BE,IT,1,205,201912,15961099 -BE,IT,1,206,201912,3027231 -BE,IT,1,211,201912,4005517 -BE,IT,1,212,201912,339929366 -BE,IT,1,221,201912,11516909 -BE,IT,1,222,201912,28036399 -BE,IT,1,231,201912,4157715 -BE,IT,1,232,201912,562224 -BE,IT,1,233,201912,5518526 -BE,IT,1,234,201912,533625 -BE,IT,1,235,201912,18105 -BE,IT,1,236,201912,513682 -BE,IT,1,237,201912,906429 -BE,IT,1,239,201912,786273 -BE,IT,1,241,201912,10345589 -BE,IT,1,242,201912,7201198 -BE,IT,1,243,201912,1539188 -BE,IT,1,244,201912,9659366 -BE,IT,1,245,201912,117713 -BE,IT,1,251,201912,1183424 -BE,IT,1,252,201912,950423 -BE,IT,1,253,201912,228105 -BE,IT,1,254,201912,101445 -BE,IT,1,257,201912,4838162 -BE,IT,1,259,201912,22356040 -BE,IT,1,261,201912,853794 -BE,IT,1,262,201912,3066365 -BE,IT,1,263,201912,2316823 -BE,IT,1,264,201912,2909487 -BE,IT,1,265,201912,4615912 -BE,IT,1,266,201912,1027140 -BE,IT,1,267,201912,106798 -BE,IT,1,268,201912,474842 -BE,IT,1,271,201912,6453844 -BE,IT,1,272,201912,2975264 -BE,IT,1,273,201912,8378682 -BE,IT,1,274,201912,2668753 -BE,IT,1,275,201912,13084446 -BE,IT,1,279,201912,5127794 -BE,IT,1,281,201912,48784270 -BE,IT,1,282,201912,39254174 -BE,IT,1,283,201912,14202455 -BE,IT,1,284,201912,17657264 -BE,IT,1,289,201912,20337660 -BE,IT,1,291,201912,94189751 -BE,IT,1,292,201912,1417884 -BE,IT,1,293,201912,21991820 -BE,IT,1,301,201912,9147 -BE,IT,1,302,201912,921664 -BE,IT,1,303,201912,2506082 -BE,IT,1,309,201912,5177955 -BE,IT,1,310,201912,9695435 -BE,IT,1,321,201912,2502054 -BE,IT,1,322,201912,39332 -BE,IT,1,323,201912,615581 -BE,IT,1,324,201912,751384 -BE,IT,1,325,201912,14457133 -BE,IT,1,329,201912,1730311 -BE,IT,2,011,201912,3322704 -BE,IT,2,012,201912,6268335 -BE,IT,2,013,201912,681001 -BE,IT,2,014,201912,987375 -BE,IT,2,021,201912,121777 -BE,IT,2,022,201912,24218 -BE,IT,2,023,201912,3847 -BE,IT,2,030,201912,369977 -BE,IT,2,062,201912,6368 -BE,IT,2,072,201912,286386 -BE,IT,2,081,201912,554638 -BE,IT,2,089,201912,840246 -BE,IT,2,101,201912,17630094 -BE,IT,2,102,201912,2514598 -BE,IT,2,103,201912,12409220 -BE,IT,2,104,201912,2151081 -BE,IT,2,105,201912,21336787 -BE,IT,2,106,201912,4392207 -BE,IT,2,107,201912,5704051 -BE,IT,2,108,201912,12727734 -BE,IT,2,109,201912,2854112 -BE,IT,2,110,201912,5428798 -BE,IT,2,120,201912,3004213 -BE,IT,2,131,201912,1337733 -BE,IT,2,132,201912,1793289 -BE,IT,2,139,201912,4258779 -BE,IT,2,141,201912,37008989 -BE,IT,2,142,201912,11857 -BE,IT,2,143,201912,9737470 -BE,IT,2,151,201912,6008394 -BE,IT,2,152,201912,31382026 -BE,IT,2,161,201912,104510 -BE,IT,2,162,201912,2012574 -BE,IT,2,171,201912,6432632 -BE,IT,2,172,201912,1656553 -BE,IT,2,181,201912,64910 -BE,IT,2,192,201912,11853782 -BE,IT,2,201,201912,219046727 -BE,IT,2,202,201912,4236600 -BE,IT,2,203,201912,6387789 -BE,IT,2,204,201912,10309736 -BE,IT,2,205,201912,28294666 -BE,IT,2,206,201912,5615326 -BE,IT,2,211,201912,64830867 -BE,IT,2,212,201912,219570178 -BE,IT,2,221,201912,9949264 -BE,IT,2,222,201912,21988542 -BE,IT,2,231,201912,4749789 -BE,IT,2,232,201912,88041 -BE,IT,2,233,201912,508051 -BE,IT,2,234,201912,646203 -BE,IT,2,235,201912,4449 -BE,IT,2,236,201912,273854 -BE,IT,2,237,201912,48574 -BE,IT,2,239,201912,1576724 -BE,IT,2,241,201912,62949976 -BE,IT,2,242,201912,754317 -BE,IT,2,243,201912,2106424 -BE,IT,2,244,201912,38042577 -BE,IT,2,245,201912,137828 -BE,IT,2,251,201912,433111 -BE,IT,2,252,201912,137599 -BE,IT,2,253,201912,3272 -BE,IT,2,254,201912,151697 -BE,IT,2,257,201912,8973129 -BE,IT,2,259,201912,6616617 -BE,IT,2,261,201912,9856899 -BE,IT,2,262,201912,6964962 -BE,IT,2,263,201912,13430164 -BE,IT,2,264,201912,10120687 -BE,IT,2,265,201912,5619784 -BE,IT,2,266,201912,9885434 -BE,IT,2,267,201912,1435951 -BE,IT,2,268,201912,16605 -BE,IT,2,271,201912,4356728 -BE,IT,2,272,201912,4585222 -BE,IT,2,273,201912,7358271 -BE,IT,2,274,201912,2400599 -BE,IT,2,275,201912,3162976 -BE,IT,2,279,201912,5073828 -BE,IT,2,281,201912,24819468 -BE,IT,2,282,201912,29776018 -BE,IT,2,283,201912,10237937 -BE,IT,2,284,201912,20664945 -BE,IT,2,289,201912,27058015 -BE,IT,2,291,201912,98476689 -BE,IT,2,292,201912,485044 -BE,IT,2,293,201912,11596256 -BE,IT,2,301,201912,179486 -BE,IT,2,302,201912,32774 -BE,IT,2,303,201912,2886844 -BE,IT,2,309,201912,6925746 -BE,IT,2,310,201912,1942273 -BE,IT,2,321,201912,22655462 -BE,IT,2,322,201912,515386 -BE,IT,2,323,201912,832707 -BE,IT,2,324,201912,633650 -BE,IT,2,325,201912,56465508 -BE,IT,2,329,201912,2943660 -BE,JM,2,103,201912,507486 -BE,JM,2,109,201912,145436 -BE,JM,2,110,201912,5960 -BE,JM,2,139,201912,109654 -BE,JM,2,171,201912,13382 -BE,JM,2,192,201912,23739 -BE,JM,2,201,201912,25569 -BE,JM,2,205,201912,120786 -BE,JM,2,221,201912,4613 -BE,JM,2,222,201912,88991 -BE,JM,2,231,201912,29417 -BE,JM,2,251,201912,166925 -BE,JM,2,259,201912,91575 -BE,JM,2,281,201912,13121 -BE,JM,2,282,201912,6238 -BE,JM,2,293,201912,110043 -BE,JM,2,325,201912,17267 -BE,JO,1,103,201912,329795 -BE,JO,1,106,201912,73109 -BE,JO,1,107,201912,34519 -BE,JO,1,108,201912,79306 -BE,JO,1,141,201912,512899 -BE,JO,1,143,201912,79485 -BE,JO,1,201,201912,1263943 -BE,JO,1,205,201912,4523 -BE,JO,1,271,201912,1586 -BE,JO,2,011,201912,111317 -BE,JO,2,013,201912,13317 -BE,JO,2,014,201912,29741 -BE,JO,2,089,201912,27 -BE,JO,2,103,201912,3129867 -BE,JO,2,105,201912,762506 -BE,JO,2,106,201912,68926 -BE,JO,2,107,201912,61302 -BE,JO,2,108,201912,60915 -BE,JO,2,109,201912,143085 -BE,JO,2,120,201912,307844 -BE,JO,2,132,201912,1857 -BE,JO,2,139,201912,98461 -BE,JO,2,141,201912,141665 -BE,JO,2,162,201912,99 -BE,JO,2,171,201912,509831 -BE,JO,2,172,201912,23252 -BE,JO,2,192,201912,29806 -BE,JO,2,201,201912,803030 -BE,JO,2,202,201912,252748 -BE,JO,2,203,201912,195850 -BE,JO,2,204,201912,201192 -BE,JO,2,205,201912,417870 -BE,JO,2,211,201912,13066 -BE,JO,2,212,201912,11873699 -BE,JO,2,221,201912,85808 -BE,JO,2,222,201912,326374 -BE,JO,2,234,201912,2500 -BE,JO,2,239,201912,220 -BE,JO,2,241,201912,388781 -BE,JO,2,242,201912,58687 -BE,JO,2,243,201912,11950 -BE,JO,2,244,201912,57429 -BE,JO,2,245,201912,5546 -BE,JO,2,251,201912,3867 -BE,JO,2,252,201912,2820 -BE,JO,2,257,201912,22233 -BE,JO,2,259,201912,103464 -BE,JO,2,262,201912,25695 -BE,JO,2,263,201912,114591 -BE,JO,2,264,201912,186 -BE,JO,2,265,201912,54117 -BE,JO,2,266,201912,33315 -BE,JO,2,271,201912,63441 -BE,JO,2,272,201912,672 -BE,JO,2,273,201912,303117 -BE,JO,2,274,201912,35456 -BE,JO,2,275,201912,35989 -BE,JO,2,279,201912,39548 -BE,JO,2,281,201912,1538545 -BE,JO,2,282,201912,1744576 -BE,JO,2,283,201912,121204 -BE,JO,2,284,201912,11142 -BE,JO,2,289,201912,346200 -BE,JO,2,291,201912,4263752 -BE,JO,2,292,201912,218789 -BE,JO,2,293,201912,106205 -BE,JO,2,309,201912,12008 -BE,JO,2,310,201912,18638 -BE,JO,2,325,201912,1123403 -BE,JO,2,329,201912,48104 -BE,JP,1,011,201912,973 -BE,JP,1,012,201912,36640 -BE,JP,1,013,201912,563 -BE,JP,1,030,201912,21247 -BE,JP,1,081,201912,683 -BE,JP,1,089,201912,28414 -BE,JP,1,101,201912,417224 -BE,JP,1,102,201912,464610 -BE,JP,1,103,201912,110417 -BE,JP,1,104,201912,28810 -BE,JP,1,105,201912,64027 -BE,JP,1,106,201912,21109 -BE,JP,1,107,201912,33051 -BE,JP,1,108,201912,860406 -BE,JP,1,110,201912,93666 -BE,JP,1,131,201912,11241 -BE,JP,1,132,201912,144704 -BE,JP,1,139,201912,1631458 -BE,JP,1,141,201912,82732 -BE,JP,1,143,201912,4118 -BE,JP,1,151,201912,113076 -BE,JP,1,152,201912,6192 -BE,JP,1,162,201912,3575 -BE,JP,1,171,201912,78983 -BE,JP,1,172,201912,145928 -BE,JP,1,192,201912,34282 -BE,JP,1,201,201912,26443229 -BE,JP,1,202,201912,2559 -BE,JP,1,203,201912,1919181 -BE,JP,1,204,201912,948713 -BE,JP,1,205,201912,7477654 -BE,JP,1,206,201912,598243 -BE,JP,1,211,201912,11541683 -BE,JP,1,212,201912,4915301 -BE,JP,1,221,201912,13164124 -BE,JP,1,222,201912,4827866 -BE,JP,1,231,201912,1483570 -BE,JP,1,232,201912,10500 -BE,JP,1,234,201912,3319889 -BE,JP,1,239,201912,770223 -BE,JP,1,241,201912,79004 -BE,JP,1,242,201912,393317 -BE,JP,1,243,201912,33047 -BE,JP,1,244,201912,3656404 -BE,JP,1,245,201912,789 -BE,JP,1,252,201912,5745 -BE,JP,1,254,201912,868478 -BE,JP,1,257,201912,6608736 -BE,JP,1,259,201912,1645521 -BE,JP,1,261,201912,2435045 -BE,JP,1,262,201912,697060 -BE,JP,1,263,201912,1140985 -BE,JP,1,264,201912,438548 -BE,JP,1,265,201912,12790303 -BE,JP,1,266,201912,361547 -BE,JP,1,267,201912,4129014 -BE,JP,1,268,201912,2989309 -BE,JP,1,271,201912,2980921 -BE,JP,1,272,201912,605188 -BE,JP,1,273,201912,2307924 -BE,JP,1,274,201912,617373 -BE,JP,1,275,201912,600975 -BE,JP,1,279,201912,50692941 -BE,JP,1,281,201912,20877865 -BE,JP,1,282,201912,23978545 -BE,JP,1,283,201912,494623 -BE,JP,1,284,201912,27100679 -BE,JP,1,289,201912,15254150 -BE,JP,1,291,201912,376609087 -BE,JP,1,292,201912,161916 -BE,JP,1,293,201912,151150325 -BE,JP,1,303,201912,155777 -BE,JP,1,309,201912,7315476 -BE,JP,1,310,201912,408012 -BE,JP,1,321,201912,175065 -BE,JP,1,322,201912,317130 -BE,JP,1,323,201912,127165 -BE,JP,1,324,201912,117402 -BE,JP,1,325,201912,26491465 -BE,JP,1,329,201912,241940 -BE,JP,2,011,201912,868379 -BE,JP,2,012,201912,14824 -BE,JP,2,013,201912,81386 -BE,JP,2,014,201912,660686 -BE,JP,2,030,201912,1371 -BE,JP,2,081,201912,214916 -BE,JP,2,089,201912,331845 -BE,JP,2,101,201912,108882 -BE,JP,2,102,201912,56781 -BE,JP,2,103,201912,2985162 -BE,JP,2,104,201912,268475 -BE,JP,2,105,201912,491212 -BE,JP,2,106,201912,2300112 -BE,JP,2,107,201912,1427610 -BE,JP,2,108,201912,7690474 -BE,JP,2,109,201912,363535 -BE,JP,2,110,201912,2585957 -BE,JP,2,120,201912,918492 -BE,JP,2,131,201912,92909 -BE,JP,2,132,201912,771142 -BE,JP,2,139,201912,1520420 -BE,JP,2,141,201912,1306939 -BE,JP,2,143,201912,93948 -BE,JP,2,151,201912,3484441 -BE,JP,2,152,201912,24126 -BE,JP,2,161,201912,4614 -BE,JP,2,162,201912,341678 -BE,JP,2,171,201912,436 -BE,JP,2,172,201912,130809 -BE,JP,2,192,201912,180493 -BE,JP,2,201,201912,22563152 -BE,JP,2,202,201912,7541701 -BE,JP,2,203,201912,715942 -BE,JP,2,204,201912,3401027 -BE,JP,2,205,201912,5906500 -BE,JP,2,206,201912,158098 -BE,JP,2,211,201912,978118 -BE,JP,2,212,201912,85866329 -BE,JP,2,221,201912,2196012 -BE,JP,2,222,201912,2932485 -BE,JP,2,231,201912,187944 -BE,JP,2,232,201912,108008 -BE,JP,2,233,201912,70124 -BE,JP,2,234,201912,181020 -BE,JP,2,235,201912,35 -BE,JP,2,236,201912,9250 -BE,JP,2,237,201912,24590 -BE,JP,2,239,201912,50547 -BE,JP,2,241,201912,308491 -BE,JP,2,242,201912,58684 -BE,JP,2,243,201912,278398 -BE,JP,2,244,201912,5351586 -BE,JP,2,245,201912,1259 -BE,JP,2,251,201912,610241 -BE,JP,2,252,201912,18996 -BE,JP,2,257,201912,399634 -BE,JP,2,259,201912,7169530 -BE,JP,2,261,201912,2815602 -BE,JP,2,262,201912,241031 -BE,JP,2,263,201912,686834 -BE,JP,2,264,201912,122578 -BE,JP,2,265,201912,5391146 -BE,JP,2,266,201912,4507601 -BE,JP,2,267,201912,298658 -BE,JP,2,268,201912,2000 -BE,JP,2,271,201912,1049204 -BE,JP,2,272,201912,26470 -BE,JP,2,273,201912,453921 -BE,JP,2,274,201912,415648 -BE,JP,2,275,201912,255319 -BE,JP,2,279,201912,1423745 -BE,JP,2,281,201912,12272006 -BE,JP,2,282,201912,3202159 -BE,JP,2,283,201912,658998 -BE,JP,2,284,201912,328894 -BE,JP,2,289,201912,1627845 -BE,JP,2,291,201912,49827574 -BE,JP,2,292,201912,948041 -BE,JP,2,293,201912,14303187 -BE,JP,2,302,201912,6048 -BE,JP,2,303,201912,183445 -BE,JP,2,309,201912,199164 -BE,JP,2,310,201912,90147 -BE,JP,2,321,201912,2207486 -BE,JP,2,322,201912,141243 -BE,JP,2,323,201912,104327 -BE,JP,2,324,201912,78672 -BE,JP,2,325,201912,10769866 -BE,JP,2,329,201912,55061 -BE,KE,1,011,201912,5095550 -BE,KE,1,012,201912,1044378 -BE,KE,1,013,201912,6867 -BE,KE,1,030,201912,25084 -BE,KE,1,103,201912,175549 -BE,KE,1,108,201912,91 -BE,KE,1,120,201912,79504 -BE,KE,1,131,201912,96517 -BE,KE,1,141,201912,11961 -BE,KE,1,151,201912,1286 -BE,KE,1,162,201912,2473 -BE,KE,1,221,201912,855 -BE,KE,1,259,201912,935 -BE,KE,1,265,201912,115 -BE,KE,1,271,201912,1372 -BE,KE,1,281,201912,17346 -BE,KE,1,282,201912,18120 -BE,KE,1,324,201912,75376 -BE,KE,2,101,201912,777 -BE,KE,2,103,201912,151 -BE,KE,2,104,201912,121175 -BE,KE,2,105,201912,2181 -BE,KE,2,106,201912,3461 -BE,KE,2,108,201912,71671 -BE,KE,2,110,201912,56048 -BE,KE,2,120,201912,30819 -BE,KE,2,139,201912,38017 -BE,KE,2,141,201912,8264 -BE,KE,2,151,201912,349 -BE,KE,2,162,201912,52667 -BE,KE,2,171,201912,408175 -BE,KE,2,172,201912,15678 -BE,KE,2,192,201912,50016 -BE,KE,2,201,201912,735367 -BE,KE,2,202,201912,788717 -BE,KE,2,203,201912,1216 -BE,KE,2,204,201912,247009 -BE,KE,2,205,201912,1079948 -BE,KE,2,211,201912,21020 -BE,KE,2,212,201912,1172707 -BE,KE,2,221,201912,24549 -BE,KE,2,222,201912,261059 -BE,KE,2,231,201912,70834 -BE,KE,2,234,201912,7318 -BE,KE,2,239,201912,8231 -BE,KE,2,241,201912,66924 -BE,KE,2,242,201912,9413 -BE,KE,2,244,201912,52722 -BE,KE,2,245,201912,766 -BE,KE,2,251,201912,13114 -BE,KE,2,252,201912,13283 -BE,KE,2,257,201912,165243 -BE,KE,2,259,201912,214338 -BE,KE,2,261,201912,64094 -BE,KE,2,263,201912,58451 -BE,KE,2,264,201912,3376 -BE,KE,2,265,201912,120898 -BE,KE,2,266,201912,39713 -BE,KE,2,271,201912,122472 -BE,KE,2,272,201912,39155 -BE,KE,2,273,201912,3404 -BE,KE,2,274,201912,11098 -BE,KE,2,275,201912,7362 -BE,KE,2,279,201912,13688 -BE,KE,2,281,201912,455928 -BE,KE,2,282,201912,244806 -BE,KE,2,283,201912,64173 -BE,KE,2,289,201912,104765 -BE,KE,2,291,201912,863076 -BE,KE,2,293,201912,53635 -BE,KE,2,309,201912,350 -BE,KE,2,310,201912,7409 -BE,KE,2,325,201912,311996 -BE,KE,2,329,201912,88562 -BE,KG,1,011,201912,120103 -BE,KG,1,271,201912,35 -BE,KG,2,108,201912,137621 -BE,KG,2,139,201912,2729 -BE,KG,2,141,201912,33803 -BE,KG,2,192,201912,8349 -BE,KG,2,201,201912,10772 -BE,KG,2,205,201912,46536 -BE,KG,2,212,201912,6267 -BE,KG,2,221,201912,18393 -BE,KG,2,259,201912,16612 -BE,KG,2,265,201912,6202 -BE,KG,2,271,201912,4808 -BE,KG,2,279,201912,1229 -BE,KG,2,281,201912,18696 -BE,KG,2,282,201912,8419 -BE,KG,2,289,201912,251802 -BE,KG,2,291,201912,12800 -BE,KG,2,293,201912,2258 -BE,KG,2,325,201912,11982 -BE,KH,1,012,201912,45 -BE,KH,1,106,201912,618908 -BE,KH,1,108,201912,17390 -BE,KH,1,110,201912,120 -BE,KH,1,139,201912,85136 -BE,KH,1,141,201912,21167062 -BE,KH,1,143,201912,5423793 -BE,KH,1,151,201912,1152660 -BE,KH,1,152,201912,4851074 -BE,KH,1,172,201912,981 -BE,KH,1,201,201912,164572 -BE,KH,1,222,201912,10994 -BE,KH,1,271,201912,3430 -BE,KH,1,293,201912,45966 -BE,KH,1,309,201912,3272438 -BE,KH,1,323,201912,1432 -BE,KH,1,324,201912,73627 -BE,KH,1,325,201912,316 -BE,KH,1,329,201912,119297 -BE,KH,2,089,201912,2473760 -BE,KH,2,103,201912,60921 -BE,KH,2,108,201912,25978 -BE,KH,2,110,201912,293284 -BE,KH,2,139,201912,37285 -BE,KH,2,141,201912,1596 -BE,KH,2,151,201912,279 -BE,KH,2,152,201912,690 -BE,KH,2,201,201912,173785 -BE,KH,2,205,201912,28 -BE,KH,2,212,201912,9 -BE,KH,2,221,201912,521 -BE,KH,2,222,201912,21811 -BE,KH,2,259,201912,492 -BE,KH,2,265,201912,4105 -BE,KH,2,279,201912,8548 -BE,KH,2,281,201912,81776 -BE,KH,2,284,201912,3125 -BE,KH,2,291,201912,1258625 -BE,KH,2,321,201912,4092565 -BE,KM,2,101,201912,61333 -BE,KM,2,103,201912,18360 -BE,KM,2,105,201912,15587 -BE,KM,2,201,201912,15691 -BE,KM,2,205,201912,20158 -BE,KM,2,222,201912,2414 -BE,KM,2,262,201912,3938 -BE,KM,2,289,201912,780 -BE,KM,2,291,201912,97800 -BE,KM,2,292,201912,6200 -BE,KM,2,293,201912,4218 -BE,KN,2,222,201912,21876 -BE,KR,1,012,201912,284 -BE,KR,1,030,201912,10673 -BE,KR,1,072,201912,8021 -BE,KR,1,089,201912,304 -BE,KR,1,102,201912,477014 -BE,KR,1,103,201912,114064 -BE,KR,1,107,201912,53784 -BE,KR,1,108,201912,104157 -BE,KR,1,109,201912,59000 -BE,KR,1,110,201912,29806 -BE,KR,1,131,201912,191 -BE,KR,1,132,201912,60883 -BE,KR,1,139,201912,773510 -BE,KR,1,141,201912,1108207 -BE,KR,1,143,201912,2655 -BE,KR,1,151,201912,5082 -BE,KR,1,152,201912,593 -BE,KR,1,171,201912,302 -BE,KR,1,172,201912,121765 -BE,KR,1,192,201912,13716764 -BE,KR,1,201,201912,27403489 -BE,KR,1,202,201912,128798 -BE,KR,1,203,201912,6 -BE,KR,1,204,201912,737400 -BE,KR,1,205,201912,877167 -BE,KR,1,206,201912,1778012 -BE,KR,1,211,201912,153836 -BE,KR,1,212,201912,18488126 -BE,KR,1,221,201912,706913 -BE,KR,1,222,201912,2248036 -BE,KR,1,231,201912,391056 -BE,KR,1,234,201912,135762 -BE,KR,1,239,201912,438928 -BE,KR,1,241,201912,15484810 -BE,KR,1,242,201912,280086 -BE,KR,1,243,201912,212519 -BE,KR,1,244,201912,1125311 -BE,KR,1,251,201912,4061338 -BE,KR,1,252,201912,248 -BE,KR,1,253,201912,973 -BE,KR,1,257,201912,3517058 -BE,KR,1,259,201912,1920082 -BE,KR,1,261,201912,1286348 -BE,KR,1,262,201912,960088 -BE,KR,1,263,201912,276350 -BE,KR,1,264,201912,364503 -BE,KR,1,265,201912,2067078 -BE,KR,1,266,201912,714964 -BE,KR,1,267,201912,38049 -BE,KR,1,271,201912,298064 -BE,KR,1,272,201912,422204 -BE,KR,1,273,201912,219540 -BE,KR,1,274,201912,284083 -BE,KR,1,275,201912,269019 -BE,KR,1,279,201912,167062 -BE,KR,1,281,201912,2590334 -BE,KR,1,282,201912,2941535 -BE,KR,1,283,201912,86078 -BE,KR,1,284,201912,827969 -BE,KR,1,289,201912,22854004 -BE,KR,1,291,201912,30880367 -BE,KR,1,293,201912,2124400 -BE,KR,1,309,201912,281950 -BE,KR,1,310,201912,54747 -BE,KR,1,321,201912,16769 -BE,KR,1,322,201912,78704 -BE,KR,1,323,201912,277586 -BE,KR,1,324,201912,5537 -BE,KR,1,325,201912,391885 -BE,KR,1,329,201912,232777 -BE,KR,2,011,201912,50027 -BE,KR,2,012,201912,19274 -BE,KR,2,014,201912,29511 -BE,KR,2,022,201912,71229 -BE,KR,2,072,201912,1739168 -BE,KR,2,081,201912,37512 -BE,KR,2,089,201912,161365 -BE,KR,2,103,201912,1184515 -BE,KR,2,104,201912,1125010 -BE,KR,2,105,201912,1674613 -BE,KR,2,106,201912,1549399 -BE,KR,2,107,201912,709482 -BE,KR,2,108,201912,3274872 -BE,KR,2,109,201912,291059 -BE,KR,2,110,201912,1333094 -BE,KR,2,120,201912,198798 -BE,KR,2,131,201912,156079 -BE,KR,2,132,201912,283480 -BE,KR,2,139,201912,566841 -BE,KR,2,141,201912,734474 -BE,KR,2,143,201912,259676 -BE,KR,2,151,201912,84402 -BE,KR,2,152,201912,31939 -BE,KR,2,162,201912,187380 -BE,KR,2,171,201912,150006 -BE,KR,2,172,201912,65802 -BE,KR,2,192,201912,1072591 -BE,KR,2,201,201912,31589444 -BE,KR,2,202,201912,97477 -BE,KR,2,203,201912,1097724 -BE,KR,2,204,201912,1934350 -BE,KR,2,205,201912,6583046 -BE,KR,2,206,201912,462571 -BE,KR,2,211,201912,516108 -BE,KR,2,212,201912,34905916 -BE,KR,2,221,201912,719113 -BE,KR,2,222,201912,2117444 -BE,KR,2,231,201912,269676 -BE,KR,2,232,201912,11788 -BE,KR,2,234,201912,2590 -BE,KR,2,236,201912,252310 -BE,KR,2,237,201912,545 -BE,KR,2,239,201912,50429 -BE,KR,2,241,201912,9229063 -BE,KR,2,242,201912,102202 -BE,KR,2,243,201912,184017 -BE,KR,2,244,201912,3498682 -BE,KR,2,251,201912,84644 -BE,KR,2,257,201912,68309 -BE,KR,2,259,201912,937120 -BE,KR,2,261,201912,1174297 -BE,KR,2,262,201912,650319 -BE,KR,2,263,201912,429904 -BE,KR,2,264,201912,435368 -BE,KR,2,265,201912,1208415 -BE,KR,2,266,201912,2787643 -BE,KR,2,267,201912,246766 -BE,KR,2,271,201912,5673519 -BE,KR,2,272,201912,40276 -BE,KR,2,273,201912,354491 -BE,KR,2,274,201912,163436 -BE,KR,2,275,201912,85034 -BE,KR,2,279,201912,508343 -BE,KR,2,281,201912,4179653 -BE,KR,2,282,201912,3155969 -BE,KR,2,283,201912,47852 -BE,KR,2,284,201912,58705 -BE,KR,2,289,201912,1266747 -BE,KR,2,291,201912,2552779 -BE,KR,2,292,201912,69428 -BE,KR,2,293,201912,1640374 -BE,KR,2,302,201912,82449 -BE,KR,2,303,201912,10460 -BE,KR,2,309,201912,3882 -BE,KR,2,310,201912,129952 -BE,KR,2,321,201912,14464 -BE,KR,2,322,201912,12116 -BE,KR,2,323,201912,23484 -BE,KR,2,324,201912,788030 -BE,KR,2,325,201912,10831017 -BE,KR,2,329,201912,27398 -BE,KW,1,141,201912,1709 -BE,KW,1,152,201912,537 -BE,KW,1,201,201912,635519 -BE,KW,1,221,201912,139 -BE,KW,1,265,201912,700 -BE,KW,1,271,201912,720 -BE,KW,1,281,201912,17159 -BE,KW,1,282,201912,3594 -BE,KW,1,289,201912,446 -BE,KW,2,011,201912,58065 -BE,KW,2,014,201912,11701 -BE,KW,2,081,201912,6973 -BE,KW,2,089,201912,83 -BE,KW,2,101,201912,12253 -BE,KW,2,103,201912,621942 -BE,KW,2,104,201912,89415 -BE,KW,2,105,201912,393006 -BE,KW,2,106,201912,182191 -BE,KW,2,107,201912,666535 -BE,KW,2,108,201912,1118539 -BE,KW,2,109,201912,518847 -BE,KW,2,110,201912,95833 -BE,KW,2,132,201912,11057 -BE,KW,2,139,201912,227473 -BE,KW,2,141,201912,57553 -BE,KW,2,143,201912,31316 -BE,KW,2,151,201912,59146 -BE,KW,2,162,201912,146481 -BE,KW,2,171,201912,229569 -BE,KW,2,172,201912,63501 -BE,KW,2,192,201912,1883078 -BE,KW,2,201,201912,573923 -BE,KW,2,202,201912,41978 -BE,KW,2,203,201912,488436 -BE,KW,2,204,201912,619420 -BE,KW,2,205,201912,4371847 -BE,KW,2,212,201912,3731621 -BE,KW,2,221,201912,27764 -BE,KW,2,222,201912,410196 -BE,KW,2,231,201912,189481 -BE,KW,2,234,201912,19544 -BE,KW,2,236,201912,19473 -BE,KW,2,241,201912,19315 -BE,KW,2,242,201912,575765 -BE,KW,2,243,201912,235 -BE,KW,2,244,201912,175424 -BE,KW,2,251,201912,5413 -BE,KW,2,257,201912,67326 -BE,KW,2,259,201912,331116 -BE,KW,2,261,201912,91904 -BE,KW,2,262,201912,112714 -BE,KW,2,263,201912,51117 -BE,KW,2,264,201912,130250 -BE,KW,2,265,201912,565556 -BE,KW,2,266,201912,199397 -BE,KW,2,267,201912,101745 -BE,KW,2,271,201912,176111 -BE,KW,2,272,201912,28449 -BE,KW,2,273,201912,95469 -BE,KW,2,274,201912,96591 -BE,KW,2,275,201912,122081 -BE,KW,2,279,201912,254731 -BE,KW,2,281,201912,1628511 -BE,KW,2,282,201912,799169 -BE,KW,2,284,201912,98558 -BE,KW,2,289,201912,1109732 -BE,KW,2,291,201912,1257775 -BE,KW,2,293,201912,30504 -BE,KW,2,310,201912,78632 -BE,KW,2,325,201912,2978478 -BE,KW,2,329,201912,161533 -BE,KY,2,110,201912,6748 -BE,KZ,1,011,201912,12028562 -BE,KZ,2,012,201912,69197 -BE,KZ,2,108,201912,74135 -BE,KZ,2,110,201912,73048 -BE,KZ,2,120,201912,167087 -BE,KZ,2,132,201912,2132 -BE,KZ,2,139,201912,109382 -BE,KZ,2,141,201912,46637 -BE,KZ,2,162,201912,4370 -BE,KZ,2,172,201912,77516 -BE,KZ,2,192,201912,324423 -BE,KZ,2,201,201912,212960 -BE,KZ,2,202,201912,62283 -BE,KZ,2,203,201912,126335 -BE,KZ,2,204,201912,1205 -BE,KZ,2,205,201912,1109273 -BE,KZ,2,212,201912,5059831 -BE,KZ,2,221,201912,91300 -BE,KZ,2,222,201912,187040 -BE,KZ,2,231,201912,31303 -BE,KZ,2,242,201912,10661 -BE,KZ,2,244,201912,5019 -BE,KZ,2,251,201912,5822 -BE,KZ,2,252,201912,4975 -BE,KZ,2,257,201912,65685 -BE,KZ,2,259,201912,103838 -BE,KZ,2,261,201912,212 -BE,KZ,2,262,201912,81874 -BE,KZ,2,263,201912,4888 -BE,KZ,2,264,201912,43991 -BE,KZ,2,265,201912,68589 -BE,KZ,2,266,201912,221415 -BE,KZ,2,267,201912,44530 -BE,KZ,2,271,201912,14505 -BE,KZ,2,272,201912,4394 -BE,KZ,2,273,201912,5085 -BE,KZ,2,274,201912,2002 -BE,KZ,2,279,201912,100769 -BE,KZ,2,281,201912,192479 -BE,KZ,2,282,201912,587466 -BE,KZ,2,283,201912,677675 -BE,KZ,2,289,201912,83367 -BE,KZ,2,291,201912,306218 -BE,KZ,2,293,201912,37678 -BE,KZ,2,309,201912,208 -BE,KZ,2,325,201912,550916 -BE,KZ,2,329,201912,15884 -BE,LA,1,012,201912,638784 -BE,LA,1,141,201912,63021 -BE,LA,1,271,201912,511 -BE,LA,1,309,201912,104 -BE,LA,1,324,201912,40 -BE,LA,2,089,201912,635373 -BE,LA,2,110,201912,38305 -BE,LA,2,291,201912,2400 -BE,LB,1,011,201912,56664 -BE,LB,1,012,201912,11664 -BE,LB,1,103,201912,184994 -BE,LB,1,104,201912,5360 -BE,LB,1,106,201912,9462 -BE,LB,1,107,201912,20031 -BE,LB,1,108,201912,136188 -BE,LB,1,110,201912,186331 -BE,LB,1,132,201912,3747 -BE,LB,1,141,201912,16452 -BE,LB,1,151,201912,46 -BE,LB,1,162,201912,3394 -BE,LB,1,172,201912,133 -BE,LB,1,203,201912,77364 -BE,LB,1,204,201912,19981 -BE,LB,1,205,201912,46391 -BE,LB,1,222,201912,622 -BE,LB,1,231,201912,946 -BE,LB,1,237,201912,15798 -BE,LB,1,259,201912,7066 -BE,LB,1,265,201912,6127 -BE,LB,1,271,201912,1831 -BE,LB,1,274,201912,174572 -BE,LB,1,289,201912,91148 -BE,LB,1,303,201912,984 -BE,LB,1,309,201912,78 -BE,LB,1,310,201912,9210 -BE,LB,1,321,201912,343746 -BE,LB,1,325,201912,21780 -BE,LB,1,329,201912,125 -BE,LB,2,011,201912,1145340 -BE,LB,2,012,201912,502 -BE,LB,2,013,201912,12316 -BE,LB,2,014,201912,4500 -BE,LB,2,021,201912,23850 -BE,LB,2,103,201912,117233 -BE,LB,2,104,201912,27664 -BE,LB,2,105,201912,284017 -BE,LB,2,106,201912,266853 -BE,LB,2,107,201912,180339 -BE,LB,2,108,201912,1599320 -BE,LB,2,109,201912,359501 -BE,LB,2,110,201912,19709 -BE,LB,2,132,201912,33534 -BE,LB,2,139,201912,10979 -BE,LB,2,141,201912,3509 -BE,LB,2,143,201912,329 -BE,LB,2,151,201912,12217 -BE,LB,2,152,201912,112 -BE,LB,2,162,201912,59897 -BE,LB,2,171,201912,189086 -BE,LB,2,172,201912,206852 -BE,LB,2,192,201912,189509 -BE,LB,2,201,201912,792435 -BE,LB,2,202,201912,59329 -BE,LB,2,203,201912,30734 -BE,LB,2,204,201912,280269 -BE,LB,2,205,201912,236802 -BE,LB,2,211,201912,115810 -BE,LB,2,212,201912,4898742 -BE,LB,2,221,201912,235984 -BE,LB,2,222,201912,101638 -BE,LB,2,231,201912,61207 -BE,LB,2,233,201912,2361 -BE,LB,2,234,201912,12535 -BE,LB,2,241,201912,170846 -BE,LB,2,242,201912,155 -BE,LB,2,244,201912,3401 -BE,LB,2,257,201912,3308 -BE,LB,2,259,201912,109822 -BE,LB,2,261,201912,1334 -BE,LB,2,262,201912,17742 -BE,LB,2,263,201912,66706 -BE,LB,2,265,201912,10264 -BE,LB,2,266,201912,69234 -BE,LB,2,271,201912,53963 -BE,LB,2,272,201912,42212 -BE,LB,2,273,201912,31789 -BE,LB,2,274,201912,20504 -BE,LB,2,275,201912,9173 -BE,LB,2,279,201912,22680 -BE,LB,2,281,201912,277873 -BE,LB,2,282,201912,139980 -BE,LB,2,284,201912,1891 -BE,LB,2,289,201912,182596 -BE,LB,2,291,201912,445106 -BE,LB,2,293,201912,51185 -BE,LB,2,303,201912,16339 -BE,LB,2,310,201912,60161 -BE,LB,2,321,201912,656669 -BE,LB,2,324,201912,8993 -BE,LB,2,325,201912,1268488 -BE,LB,2,329,201912,8958 -BE,LC,2,110,201912,179921 -BE,LC,2,221,201912,148 -BE,LC,2,281,201912,291 -BE,LC,2,293,201912,1407 -BE,LI,1,231,201912,3595 -BE,LI,1,263,201912,9209 -BE,LI,1,267,201912,59979 -BE,LI,1,293,201912,84456 -BE,LI,1,325,201912,413 -BE,LI,2,089,201912,699 -BE,LI,2,103,201912,14924 -BE,LI,2,106,201912,2391 -BE,LI,2,201,201912,1694 -BE,LI,2,203,201912,14 -BE,LI,2,205,201912,9287 -BE,LI,2,222,201912,421 -BE,LI,2,241,201912,30422 -BE,LI,2,257,201912,249 -BE,LI,2,259,201912,1706 -BE,LI,2,279,201912,85 -BE,LI,2,281,201912,225 -BE,LI,2,282,201912,9698 -BE,LI,2,310,201912,445 -BE,LI,2,325,201912,957 -BE,LI,2,329,201912,4 -BE,LK,1,012,201912,43330 -BE,LK,1,014,201912,91 -BE,LK,1,030,201912,178828 -BE,LK,1,089,201912,899814 -BE,LK,1,102,201912,284676 -BE,LK,1,103,201912,1002 -BE,LK,1,104,201912,1947 -BE,LK,1,108,201912,605967 -BE,LK,1,120,201912,1140648 -BE,LK,1,131,201912,43032 -BE,LK,1,139,201912,6318 -BE,LK,1,141,201912,20009321 -BE,LK,1,143,201912,1487969 -BE,LK,1,221,201912,1683027 -BE,LK,1,222,201912,23091 -BE,LK,1,257,201912,483 -BE,LK,1,259,201912,16523 -BE,LK,1,261,201912,2463 -BE,LK,1,263,201912,1881 -BE,LK,1,271,201912,26655 -BE,LK,1,279,201912,1913 -BE,LK,1,282,201912,4228 -BE,LK,1,289,201912,650 -BE,LK,1,293,201912,1055 -BE,LK,1,321,201912,1471053 -BE,LK,1,324,201912,3045 -BE,LK,1,329,201912,101472 -BE,LK,2,089,201912,582551 -BE,LK,2,103,201912,6 -BE,LK,2,105,201912,36825 -BE,LK,2,108,201912,180213 -BE,LK,2,110,201912,133771 -BE,LK,2,120,201912,35656 -BE,LK,2,132,201912,122 -BE,LK,2,139,201912,105657 -BE,LK,2,141,201912,84 -BE,LK,2,162,201912,87364 -BE,LK,2,171,201912,134947 -BE,LK,2,172,201912,73060 -BE,LK,2,192,201912,51167 -BE,LK,2,201,201912,108579 -BE,LK,2,202,201912,2504 -BE,LK,2,203,201912,65598 -BE,LK,2,204,201912,107120 -BE,LK,2,205,201912,85762 -BE,LK,2,212,201912,335589 -BE,LK,2,221,201912,44948 -BE,LK,2,222,201912,55282 -BE,LK,2,241,201912,46716 -BE,LK,2,243,201912,35556 -BE,LK,2,244,201912,28675 -BE,LK,2,251,201912,109176 -BE,LK,2,257,201912,4179 -BE,LK,2,259,201912,32534 -BE,LK,2,261,201912,28750 -BE,LK,2,262,201912,8301 -BE,LK,2,263,201912,11125 -BE,LK,2,265,201912,6305 -BE,LK,2,266,201912,150210 -BE,LK,2,271,201912,49661 -BE,LK,2,273,201912,13743 -BE,LK,2,279,201912,69100 -BE,LK,2,281,201912,29980 -BE,LK,2,282,201912,41001 -BE,LK,2,283,201912,1578 -BE,LK,2,289,201912,17641 -BE,LK,2,293,201912,417 -BE,LK,2,321,201912,11392 -BE,LK,2,325,201912,172017 -BE,LR,1,012,201912,105754 -BE,LR,2,101,201912,47474 -BE,LR,2,103,201912,25103 -BE,LR,2,105,201912,56035 -BE,LR,2,108,201912,55680 -BE,LR,2,139,201912,505 -BE,LR,2,192,201912,43096 -BE,LR,2,201,201912,33541 -BE,LR,2,205,201912,3544 -BE,LR,2,212,201912,9780 -BE,LR,2,221,201912,2390 -BE,LR,2,222,201912,446 -BE,LR,2,241,201912,60117 -BE,LR,2,257,201912,673 -BE,LR,2,259,201912,21837 -BE,LR,2,262,201912,23818 -BE,LR,2,263,201912,720 -BE,LR,2,265,201912,11933 -BE,LR,2,271,201912,17015 -BE,LR,2,272,201912,3342 -BE,LR,2,274,201912,29 -BE,LR,2,279,201912,5474 -BE,LR,2,281,201912,7285 -BE,LR,2,282,201912,45318 -BE,LR,2,289,201912,65589 -BE,LR,2,291,201912,85076 -BE,LR,2,293,201912,159545 -BE,LR,2,310,201912,2473 -BE,LR,2,329,201912,1649 -BE,LS,1,089,201912,1878976 -BE,LS,2,212,201912,91616 -BE,LT,1,011,201912,67 -BE,LT,1,022,201912,20081 -BE,LT,1,101,201912,44280 -BE,LT,1,102,201912,9406135 -BE,LT,1,103,201912,412717 -BE,LT,1,105,201912,13240 -BE,LT,1,107,201912,120879 -BE,LT,1,108,201912,1182615 -BE,LT,1,109,201912,274397 -BE,LT,1,120,201912,7122864 -BE,LT,1,131,201912,35729 -BE,LT,1,132,201912,392 -BE,LT,1,139,201912,39084 -BE,LT,1,141,201912,1379296 -BE,LT,1,143,201912,19509 -BE,LT,1,151,201912,420 -BE,LT,1,161,201912,583613 -BE,LT,1,162,201912,456009 -BE,LT,1,171,201912,101848 -BE,LT,1,172,201912,155196 -BE,LT,1,201,201912,1075979 -BE,LT,1,203,201912,36452 -BE,LT,1,204,201912,1755 -BE,LT,1,205,201912,52741 -BE,LT,1,206,201912,134 -BE,LT,1,212,201912,110143 -BE,LT,1,221,201912,9751 -BE,LT,1,222,201912,385175 -BE,LT,1,231,201912,177098 -BE,LT,1,233,201912,347 -BE,LT,1,234,201912,24 -BE,LT,1,241,201912,1326 -BE,LT,1,242,201912,6314 -BE,LT,1,243,201912,146 -BE,LT,1,244,201912,1396 -BE,LT,1,245,201912,9574 -BE,LT,1,251,201912,186232 -BE,LT,1,257,201912,3267 -BE,LT,1,259,201912,268097 -BE,LT,1,261,201912,58116 -BE,LT,1,262,201912,6114 -BE,LT,1,263,201912,9469 -BE,LT,1,264,201912,84975 -BE,LT,1,265,201912,81409 -BE,LT,1,267,201912,5638 -BE,LT,1,271,201912,44542 -BE,LT,1,272,201912,819 -BE,LT,1,273,201912,30095 -BE,LT,1,274,201912,285 -BE,LT,1,275,201912,187870 -BE,LT,1,279,201912,56355 -BE,LT,1,281,201912,93017 -BE,LT,1,282,201912,335565 -BE,LT,1,283,201912,15516 -BE,LT,1,289,201912,27048 -BE,LT,1,291,201912,3999078 -BE,LT,1,292,201912,20775 -BE,LT,1,293,201912,1851582 -BE,LT,1,310,201912,1773146 -BE,LT,1,325,201912,15014 -BE,LT,2,011,201912,194871 -BE,LT,2,012,201912,2528086 -BE,LT,2,014,201912,11398 -BE,LT,2,030,201912,293 -BE,LT,2,081,201912,445 -BE,LT,2,089,201912,21663 -BE,LT,2,101,201912,1365362 -BE,LT,2,102,201912,238878 -BE,LT,2,103,201912,358655 -BE,LT,2,104,201912,442 -BE,LT,2,105,201912,195507 -BE,LT,2,106,201912,190164 -BE,LT,2,107,201912,302705 -BE,LT,2,108,201912,1002141 -BE,LT,2,109,201912,821889 -BE,LT,2,110,201912,486485 -BE,LT,2,120,201912,1960014 -BE,LT,2,131,201912,234990 -BE,LT,2,132,201912,221346 -BE,LT,2,139,201912,815370 -BE,LT,2,141,201912,671295 -BE,LT,2,143,201912,208533 -BE,LT,2,151,201912,134272 -BE,LT,2,152,201912,869751 -BE,LT,2,161,201912,43775 -BE,LT,2,162,201912,370046 -BE,LT,2,171,201912,27282 -BE,LT,2,172,201912,40109 -BE,LT,2,192,201912,237734 -BE,LT,2,201,201912,10480326 -BE,LT,2,202,201912,1140422 -BE,LT,2,203,201912,480261 -BE,LT,2,204,201912,231311 -BE,LT,2,205,201912,1406527 -BE,LT,2,206,201912,1511018 -BE,LT,2,211,201912,69933 -BE,LT,2,212,201912,2463893 -BE,LT,2,221,201912,925357 -BE,LT,2,222,201912,2160025 -BE,LT,2,231,201912,93849 -BE,LT,2,233,201912,38845 -BE,LT,2,234,201912,26368 -BE,LT,2,236,201912,101881 -BE,LT,2,239,201912,27597 -BE,LT,2,241,201912,78495 -BE,LT,2,242,201912,32948 -BE,LT,2,243,201912,2297 -BE,LT,2,244,201912,39892 -BE,LT,2,245,201912,191499 -BE,LT,2,251,201912,330456 -BE,LT,2,252,201912,8571 -BE,LT,2,254,201912,262 -BE,LT,2,257,201912,204230 -BE,LT,2,259,201912,344099 -BE,LT,2,261,201912,266529 -BE,LT,2,262,201912,378651 -BE,LT,2,263,201912,179817 -BE,LT,2,264,201912,246138 -BE,LT,2,265,201912,491257 -BE,LT,2,266,201912,1896762 -BE,LT,2,267,201912,46790 -BE,LT,2,271,201912,154166 -BE,LT,2,272,201912,37503 -BE,LT,2,273,201912,512104 -BE,LT,2,274,201912,279883 -BE,LT,2,275,201912,75633 -BE,LT,2,279,201912,173976 -BE,LT,2,281,201912,1377541 -BE,LT,2,282,201912,2631675 -BE,LT,2,283,201912,83468 -BE,LT,2,284,201912,47540 -BE,LT,2,289,201912,822112 -BE,LT,2,291,201912,5962594 -BE,LT,2,292,201912,57585 -BE,LT,2,293,201912,788482 -BE,LT,2,303,201912,6693 -BE,LT,2,309,201912,132792 -BE,LT,2,310,201912,291728 -BE,LT,2,321,201912,19004 -BE,LT,2,322,201912,23752 -BE,LT,2,323,201912,67491 -BE,LT,2,324,201912,72465 -BE,LT,2,325,201912,1662006 -BE,LT,2,329,201912,71078 -BE,LU,1,011,201912,280816 -BE,LU,1,012,201912,445074 -BE,LU,1,013,201912,3162 -BE,LU,1,014,201912,822197 -BE,LU,1,022,201912,1447391 -BE,LU,1,023,201912,287 -BE,LU,1,030,201912,13375 -BE,LU,1,062,201912,109252 -BE,LU,1,071,201912,8894 -BE,LU,1,081,201912,34945 -BE,LU,1,089,201912,216523 -BE,LU,1,101,201912,674847 -BE,LU,1,102,201912,72379 -BE,LU,1,103,201912,352619 -BE,LU,1,104,201912,178044 -BE,LU,1,105,201912,5908090 -BE,LU,1,106,201912,2017894 -BE,LU,1,107,201912,1194858 -BE,LU,1,108,201912,1073796 -BE,LU,1,109,201912,78397 -BE,LU,1,110,201912,7031425 -BE,LU,1,120,201912,967237 -BE,LU,1,131,201912,31848 -BE,LU,1,132,201912,4750 -BE,LU,1,139,201912,536781 -BE,LU,1,141,201912,1743016 -BE,LU,1,143,201912,173146 -BE,LU,1,151,201912,264810 -BE,LU,1,152,201912,281008 -BE,LU,1,161,201912,1040400 -BE,LU,1,162,201912,852245 -BE,LU,1,171,201912,1782648 -BE,LU,1,172,201912,539744 -BE,LU,1,192,201912,182268 -BE,LU,1,201,201912,7814858 -BE,LU,1,202,201912,6364 -BE,LU,1,203,201912,620684 -BE,LU,1,204,201912,1380114 -BE,LU,1,205,201912,3648171 -BE,LU,1,206,201912,25876 -BE,LU,1,211,201912,152863 -BE,LU,1,212,201912,4502556 -BE,LU,1,221,201912,1772877 -BE,LU,1,222,201912,9191661 -BE,LU,1,231,201912,3422023 -BE,LU,1,232,201912,70985 -BE,LU,1,233,201912,9819 -BE,LU,1,234,201912,304182 -BE,LU,1,235,201912,282545 -BE,LU,1,236,201912,205401 -BE,LU,1,237,201912,252590 -BE,LU,1,239,201912,79910 -BE,LU,1,241,201912,15018032 -BE,LU,1,242,201912,61313 -BE,LU,1,243,201912,727673 -BE,LU,1,244,201912,7147021 -BE,LU,1,245,201912,23282 -BE,LU,1,251,201912,1810088 -BE,LU,1,252,201912,40380 -BE,LU,1,253,201912,68479 -BE,LU,1,254,201912,3636 -BE,LU,1,257,201912,193410 -BE,LU,1,259,201912,500454 -BE,LU,1,261,201912,15240013 -BE,LU,1,262,201912,904103 -BE,LU,1,263,201912,939383 -BE,LU,1,264,201912,1144721 -BE,LU,1,265,201912,746595 -BE,LU,1,266,201912,174202 -BE,LU,1,267,201912,882440 -BE,LU,1,268,201912,2222 -BE,LU,1,271,201912,1960277 -BE,LU,1,272,201912,34649 -BE,LU,1,273,201912,47314 -BE,LU,1,274,201912,344930 -BE,LU,1,275,201912,344266 -BE,LU,1,279,201912,1276187 -BE,LU,1,281,201912,1472846 -BE,LU,1,282,201912,2227726 -BE,LU,1,283,201912,3237 -BE,LU,1,284,201912,108494 -BE,LU,1,289,201912,1436969 -BE,LU,1,291,201912,9587058 -BE,LU,1,292,201912,1232626 -BE,LU,1,293,201912,262164 -BE,LU,1,302,201912,4496 -BE,LU,1,303,201912,101678 -BE,LU,1,309,201912,68771 -BE,LU,1,310,201912,200848 -BE,LU,1,321,201912,3122442 -BE,LU,1,323,201912,102324 -BE,LU,1,324,201912,5729 -BE,LU,1,325,201912,2121006 -BE,LU,1,329,201912,225033 -BE,LU,2,011,201912,4487389 -BE,LU,2,012,201912,18483771 -BE,LU,2,013,201912,246820 -BE,LU,2,014,201912,766654 -BE,LU,2,021,201912,15256 -BE,LU,2,022,201912,102616 -BE,LU,2,023,201912,13845 -BE,LU,2,030,201912,558056 -BE,LU,2,051,201912,325732 -BE,LU,2,052,201912,86105 -BE,LU,2,062,201912,9848742 -BE,LU,2,081,201912,998796 -BE,LU,2,089,201912,197227 -BE,LU,2,101,201912,12913648 -BE,LU,2,102,201912,4350777 -BE,LU,2,103,201912,4595985 -BE,LU,2,104,201912,880796 -BE,LU,2,105,201912,6976100 -BE,LU,2,106,201912,1612705 -BE,LU,2,107,201912,5230135 -BE,LU,2,108,201912,11075765 -BE,LU,2,109,201912,2071723 -BE,LU,2,110,201912,22640461 -BE,LU,2,120,201912,7284664 -BE,LU,2,131,201912,13804 -BE,LU,2,132,201912,125020 -BE,LU,2,139,201912,3907728 -BE,LU,2,141,201912,3935630 -BE,LU,2,142,201912,668 -BE,LU,2,143,201912,1148849 -BE,LU,2,151,201912,563943 -BE,LU,2,152,201912,1045531 -BE,LU,2,161,201912,774129 -BE,LU,2,162,201912,1444394 -BE,LU,2,171,201912,5495012 -BE,LU,2,172,201912,3013183 -BE,LU,2,181,201912,27592 -BE,LU,2,192,201912,100196210 -BE,LU,2,201,201912,25678557 -BE,LU,2,202,201912,138934 -BE,LU,2,203,201912,549776 -BE,LU,2,204,201912,6952567 -BE,LU,2,205,201912,2365510 -BE,LU,2,206,201912,881821 -BE,LU,2,211,201912,431766 -BE,LU,2,212,201912,25591189 -BE,LU,2,221,201912,4125323 -BE,LU,2,222,201912,7111584 -BE,LU,2,231,201912,1215239 -BE,LU,2,232,201912,94527 -BE,LU,2,233,201912,311684 -BE,LU,2,234,201912,321973 -BE,LU,2,235,201912,844692 -BE,LU,2,236,201912,2398494 -BE,LU,2,237,201912,301810 -BE,LU,2,239,201912,587435 -BE,LU,2,241,201912,8244828 -BE,LU,2,242,201912,545259 -BE,LU,2,243,201912,551268 -BE,LU,2,244,201912,1257152 -BE,LU,2,245,201912,216569 -BE,LU,2,251,201912,2487005 -BE,LU,2,252,201912,305971 -BE,LU,2,253,201912,15737 -BE,LU,2,254,201912,54776 -BE,LU,2,257,201912,1255792 -BE,LU,2,259,201912,5501741 -BE,LU,2,261,201912,34321194 -BE,LU,2,262,201912,3975950 -BE,LU,2,263,201912,6206707 -BE,LU,2,264,201912,3605080 -BE,LU,2,265,201912,2851478 -BE,LU,2,266,201912,2260894 -BE,LU,2,267,201912,1045615 -BE,LU,2,268,201912,130150 -BE,LU,2,271,201912,1047765 -BE,LU,2,272,201912,911824 -BE,LU,2,273,201912,1060829 -BE,LU,2,274,201912,1914630 -BE,LU,2,275,201912,1598588 -BE,LU,2,279,201912,1599311 -BE,LU,2,281,201912,2702653 -BE,LU,2,282,201912,7375784 -BE,LU,2,283,201912,2132272 -BE,LU,2,284,201912,293551 -BE,LU,2,289,201912,4976639 -BE,LU,2,291,201912,141551633 -BE,LU,2,292,201912,885822 -BE,LU,2,293,201912,5424368 -BE,LU,2,302,201912,355399 -BE,LU,2,303,201912,7753 -BE,LU,2,309,201912,746488 -BE,LU,2,310,201912,1830539 -BE,LU,2,321,201912,223932 -BE,LU,2,322,201912,13375 -BE,LU,2,323,201912,170089 -BE,LU,2,324,201912,1233770 -BE,LU,2,325,201912,2790275 -BE,LU,2,329,201912,1128077 -BE,LV,1,011,201912,13995 -BE,LV,1,022,201912,509693 -BE,LV,1,089,201912,1477813 -BE,LV,1,101,201912,514 -BE,LV,1,103,201912,85458 -BE,LV,1,106,201912,170627 -BE,LV,1,110,201912,81989 -BE,LV,1,132,201912,10592 -BE,LV,1,139,201912,18080 -BE,LV,1,141,201912,35054 -BE,LV,1,161,201912,1027390 -BE,LV,1,162,201912,634193 -BE,LV,1,171,201912,25405 -BE,LV,1,201,201912,812457 -BE,LV,1,203,201912,38969 -BE,LV,1,205,201912,76379 -BE,LV,1,211,201912,317 -BE,LV,1,221,201912,83607 -BE,LV,1,222,201912,82400 -BE,LV,1,239,201912,2285 -BE,LV,1,242,201912,303 -BE,LV,1,244,201912,364452 -BE,LV,1,257,201912,651 -BE,LV,1,259,201912,585760 -BE,LV,1,261,201912,2859 -BE,LV,1,262,201912,16100 -BE,LV,1,263,201912,45886 -BE,LV,1,264,201912,131543 -BE,LV,1,265,201912,5990 -BE,LV,1,267,201912,1116 -BE,LV,1,271,201912,35820 -BE,LV,1,273,201912,13301 -BE,LV,1,274,201912,621 -BE,LV,1,275,201912,246 -BE,LV,1,279,201912,380 -BE,LV,1,281,201912,130311 -BE,LV,1,282,201912,56918 -BE,LV,1,283,201912,187959 -BE,LV,1,289,201912,23280 -BE,LV,1,291,201912,374766 -BE,LV,1,292,201912,16900 -BE,LV,1,293,201912,261626 -BE,LV,1,310,201912,677 -BE,LV,1,325,201912,5617 -BE,LV,2,011,201912,53909 -BE,LV,2,012,201912,1507565 -BE,LV,2,014,201912,2589 -BE,LV,2,030,201912,91 -BE,LV,2,089,201912,2591 -BE,LV,2,101,201912,899016 -BE,LV,2,102,201912,80232 -BE,LV,2,103,201912,140688 -BE,LV,2,105,201912,8616 -BE,LV,2,106,201912,119949 -BE,LV,2,107,201912,141254 -BE,LV,2,108,201912,298665 -BE,LV,2,109,201912,73810 -BE,LV,2,110,201912,634025 -BE,LV,2,120,201912,48435 -BE,LV,2,131,201912,29767 -BE,LV,2,132,201912,162490 -BE,LV,2,139,201912,182659 -BE,LV,2,141,201912,643026 -BE,LV,2,143,201912,243588 -BE,LV,2,151,201912,101503 -BE,LV,2,152,201912,1509749 -BE,LV,2,162,201912,109485 -BE,LV,2,171,201912,179206 -BE,LV,2,172,201912,107771 -BE,LV,2,192,201912,215746 -BE,LV,2,201,201912,2435641 -BE,LV,2,202,201912,1353326 -BE,LV,2,203,201912,234096 -BE,LV,2,204,201912,106517 -BE,LV,2,205,201912,415502 -BE,LV,2,206,201912,6849 -BE,LV,2,211,201912,34036 -BE,LV,2,212,201912,218947 -BE,LV,2,221,201912,339978 -BE,LV,2,222,201912,445940 -BE,LV,2,231,201912,12582 -BE,LV,2,234,201912,650 -BE,LV,2,236,201912,45593 -BE,LV,2,237,201912,322 -BE,LV,2,239,201912,5145 -BE,LV,2,241,201912,226613 -BE,LV,2,242,201912,22774 -BE,LV,2,243,201912,90352 -BE,LV,2,244,201912,159674 -BE,LV,2,245,201912,16424 -BE,LV,2,251,201912,65706 -BE,LV,2,252,201912,9021 -BE,LV,2,253,201912,28264 -BE,LV,2,257,201912,88306 -BE,LV,2,259,201912,131143 -BE,LV,2,261,201912,344381 -BE,LV,2,262,201912,60258 -BE,LV,2,263,201912,51727 -BE,LV,2,264,201912,133725 -BE,LV,2,265,201912,439165 -BE,LV,2,266,201912,360443 -BE,LV,2,267,201912,308461 -BE,LV,2,271,201912,53776 -BE,LV,2,272,201912,35196 -BE,LV,2,273,201912,38100 -BE,LV,2,274,201912,57276 -BE,LV,2,275,201912,26512 -BE,LV,2,279,201912,107479 -BE,LV,2,281,201912,653738 -BE,LV,2,282,201912,2881161 -BE,LV,2,283,201912,622399 -BE,LV,2,284,201912,332530 -BE,LV,2,289,201912,403273 -BE,LV,2,291,201912,1762042 -BE,LV,2,292,201912,230213 -BE,LV,2,293,201912,384667 -BE,LV,2,301,201912,20513 -BE,LV,2,309,201912,22134 -BE,LV,2,310,201912,57415 -BE,LV,2,321,201912,88 -BE,LV,2,322,201912,17049 -BE,LV,2,323,201912,55534 -BE,LV,2,324,201912,40900 -BE,LV,2,325,201912,929370 -BE,LV,2,329,201912,164642 -BE,LY,1,271,201912,54 -BE,LY,2,014,201912,2614057 -BE,LY,2,089,201912,241 -BE,LY,2,103,201912,1258039 -BE,LY,2,108,201912,1130160 -BE,LY,2,109,201912,108163 -BE,LY,2,139,201912,238286 -BE,LY,2,141,201912,332757 -BE,LY,2,151,201912,1497 -BE,LY,2,152,201912,88300 -BE,LY,2,162,201912,17658 -BE,LY,2,192,201912,100778 -BE,LY,2,201,201912,267426 -BE,LY,2,203,201912,88614 -BE,LY,2,204,201912,203162 -BE,LY,2,205,201912,204277 -BE,LY,2,212,201912,4085219 -BE,LY,2,221,201912,46271 -BE,LY,2,222,201912,73704 -BE,LY,2,231,201912,78090 -BE,LY,2,257,201912,14043 -BE,LY,2,259,201912,57347 -BE,LY,2,262,201912,16097 -BE,LY,2,265,201912,76465 -BE,LY,2,267,201912,18561 -BE,LY,2,271,201912,135375 -BE,LY,2,274,201912,6991 -BE,LY,2,275,201912,7138 -BE,LY,2,281,201912,164626 -BE,LY,2,282,201912,496029 -BE,LY,2,283,201912,23360 -BE,LY,2,289,201912,139326 -BE,LY,2,291,201912,8282092 -BE,LY,2,292,201912,51350 -BE,LY,2,293,201912,7694 -BE,LY,2,310,201912,14560 -BE,LY,2,325,201912,511763 -BE,LY,2,329,201912,1560 -BE,MA,1,011,201912,193291 -BE,MA,1,012,201912,591558 -BE,MA,1,014,201912,464472 -BE,MA,1,081,201912,15316 -BE,MA,1,089,201912,2830959 -BE,MA,1,101,201912,191740 -BE,MA,1,102,201912,1054027 -BE,MA,1,103,201912,1971044 -BE,MA,1,104,201912,23994 -BE,MA,1,106,201912,13174 -BE,MA,1,107,201912,303356 -BE,MA,1,108,201912,282421 -BE,MA,1,110,201912,222738 -BE,MA,1,131,201912,204036 -BE,MA,1,139,201912,80177 -BE,MA,1,141,201912,2088051 -BE,MA,1,143,201912,27352 -BE,MA,1,151,201912,32582 -BE,MA,1,152,201912,54361 -BE,MA,1,162,201912,98584 -BE,MA,1,171,201912,811 -BE,MA,1,172,201912,599 -BE,MA,1,201,201912,12651241 -BE,MA,1,204,201912,62180 -BE,MA,1,205,201912,413680 -BE,MA,1,212,201912,200206 -BE,MA,1,221,201912,10206 -BE,MA,1,222,201912,174272 -BE,MA,1,231,201912,23832 -BE,MA,1,232,201912,51125 -BE,MA,1,233,201912,5298 -BE,MA,1,234,201912,25719 -BE,MA,1,236,201912,35083 -BE,MA,1,237,201912,30414 -BE,MA,1,239,201912,379186 -BE,MA,1,244,201912,1449 -BE,MA,1,259,201912,140230 -BE,MA,1,261,201912,126 -BE,MA,1,263,201912,4196 -BE,MA,1,265,201912,1477 -BE,MA,1,266,201912,48803 -BE,MA,1,271,201912,242426 -BE,MA,1,273,201912,1098768 -BE,MA,1,274,201912,14531 -BE,MA,1,279,201912,42415 -BE,MA,1,281,201912,85745 -BE,MA,1,282,201912,216297 -BE,MA,1,284,201912,23775 -BE,MA,1,289,201912,4187 -BE,MA,1,293,201912,3084490 -BE,MA,1,303,201912,237941 -BE,MA,1,310,201912,60263 -BE,MA,1,325,201912,6024 -BE,MA,2,011,201912,180692 -BE,MA,2,012,201912,3199 -BE,MA,2,014,201912,234631 -BE,MA,2,081,201912,18297 -BE,MA,2,089,201912,29706 -BE,MA,2,101,201912,270602 -BE,MA,2,102,201912,61068 -BE,MA,2,103,201912,741719 -BE,MA,2,104,201912,136892 -BE,MA,2,105,201912,341564 -BE,MA,2,106,201912,147198 -BE,MA,2,107,201912,564182 -BE,MA,2,108,201912,1640435 -BE,MA,2,109,201912,243854 -BE,MA,2,110,201912,105451 -BE,MA,2,131,201912,31894 -BE,MA,2,132,201912,409433 -BE,MA,2,139,201912,1506906 -BE,MA,2,141,201912,145596 -BE,MA,2,143,201912,2831 -BE,MA,2,151,201912,70217 -BE,MA,2,152,201912,114 -BE,MA,2,161,201912,2398976 -BE,MA,2,162,201912,105037 -BE,MA,2,171,201912,374406 -BE,MA,2,172,201912,135552 -BE,MA,2,192,201912,607229 -BE,MA,2,201,201912,5349767 -BE,MA,2,202,201912,535410 -BE,MA,2,203,201912,1574356 -BE,MA,2,204,201912,1462900 -BE,MA,2,205,201912,2153370 -BE,MA,2,211,201912,908767 -BE,MA,2,212,201912,5300854 -BE,MA,2,221,201912,859793 -BE,MA,2,222,201912,2171800 -BE,MA,2,231,201912,166334 -BE,MA,2,232,201912,76014 -BE,MA,2,234,201912,32319 -BE,MA,2,236,201912,33714 -BE,MA,2,237,201912,688 -BE,MA,2,239,201912,29948 -BE,MA,2,241,201912,2024626 -BE,MA,2,242,201912,97328 -BE,MA,2,243,201912,205452 -BE,MA,2,244,201912,16659534 -BE,MA,2,245,201912,1017 -BE,MA,2,251,201912,96540 -BE,MA,2,252,201912,86000 -BE,MA,2,257,201912,52393 -BE,MA,2,259,201912,338782 -BE,MA,2,261,201912,84313 -BE,MA,2,262,201912,1774674 -BE,MA,2,263,201912,127786 -BE,MA,2,264,201912,92745 -BE,MA,2,265,201912,611774 -BE,MA,2,266,201912,47025 -BE,MA,2,267,201912,56188 -BE,MA,2,271,201912,499355 -BE,MA,2,272,201912,71022 -BE,MA,2,273,201912,4630318 -BE,MA,2,274,201912,72613 -BE,MA,2,275,201912,171196 -BE,MA,2,279,201912,206467 -BE,MA,2,281,201912,1466519 -BE,MA,2,282,201912,4187840 -BE,MA,2,283,201912,31935 -BE,MA,2,284,201912,1587817 -BE,MA,2,289,201912,2441459 -BE,MA,2,291,201912,4557247 -BE,MA,2,292,201912,316197 -BE,MA,2,293,201912,1285747 -BE,MA,2,302,201912,500 -BE,MA,2,303,201912,1298882 -BE,MA,2,309,201912,1319 -BE,MA,2,310,201912,340863 -BE,MA,2,323,201912,50237 -BE,MA,2,324,201912,13355 -BE,MA,2,325,201912,1787932 -BE,MA,2,329,201912,296181 -BE,MD,1,103,201912,113735 -BE,MD,1,110,201912,35051 -BE,MD,1,141,201912,72663 -BE,MD,1,162,201912,54100 -BE,MD,1,206,201912,12984 -BE,MD,1,222,201912,15175 -BE,MD,1,236,201912,3347 -BE,MD,1,251,201912,12191 -BE,MD,1,259,201912,313078 -BE,MD,1,265,201912,108 -BE,MD,1,271,201912,615 -BE,MD,1,275,201912,68992 -BE,MD,1,309,201912,12039 -BE,MD,2,014,201912,583 -BE,MD,2,101,201912,128595 -BE,MD,2,105,201912,1841 -BE,MD,2,106,201912,22831 -BE,MD,2,107,201912,38033 -BE,MD,2,108,201912,103375 -BE,MD,2,109,201912,16890 -BE,MD,2,110,201912,243734 -BE,MD,2,120,201912,118628 -BE,MD,2,132,201912,36047 -BE,MD,2,139,201912,15253 -BE,MD,2,141,201912,2776 -BE,MD,2,151,201912,2936 -BE,MD,2,152,201912,1544 -BE,MD,2,161,201912,20909 -BE,MD,2,162,201912,9972 -BE,MD,2,172,201912,15998 -BE,MD,2,192,201912,114311 -BE,MD,2,201,201912,5673 -BE,MD,2,203,201912,23113 -BE,MD,2,204,201912,1866 -BE,MD,2,205,201912,112887 -BE,MD,2,206,201912,2775 -BE,MD,2,211,201912,1938 -BE,MD,2,212,201912,51461 -BE,MD,2,221,201912,18718 -BE,MD,2,222,201912,109535 -BE,MD,2,231,201912,425 -BE,MD,2,233,201912,5868 -BE,MD,2,234,201912,1212 -BE,MD,2,239,201912,657 -BE,MD,2,241,201912,18854 -BE,MD,2,242,201912,2016 -BE,MD,2,243,201912,1415 -BE,MD,2,244,201912,321 -BE,MD,2,251,201912,553 -BE,MD,2,257,201912,12330 -BE,MD,2,259,201912,70482 -BE,MD,2,261,201912,13443 -BE,MD,2,263,201912,7066 -BE,MD,2,265,201912,16352 -BE,MD,2,271,201912,4822 -BE,MD,2,272,201912,206 -BE,MD,2,273,201912,11493 -BE,MD,2,274,201912,129 -BE,MD,2,275,201912,6994 -BE,MD,2,279,201912,3458 -BE,MD,2,281,201912,95060 -BE,MD,2,282,201912,60877 -BE,MD,2,283,201912,168 -BE,MD,2,284,201912,17565 -BE,MD,2,289,201912,79089 -BE,MD,2,291,201912,326190 -BE,MD,2,292,201912,27061 -BE,MD,2,293,201912,13402 -BE,MD,2,309,201912,114232 -BE,MD,2,310,201912,24236 -BE,MD,2,324,201912,20718 -BE,MD,2,325,201912,115198 -BE,MD,2,329,201912,3910 -BE,ME,1,263,201912,180 -BE,ME,1,291,201912,979904 -BE,ME,1,293,201912,481 -BE,ME,2,101,201912,213590 -BE,ME,2,103,201912,16393 -BE,ME,2,108,201912,6840 -BE,ME,2,109,201912,10644 -BE,ME,2,110,201912,5572 -BE,ME,2,139,201912,1074 -BE,ME,2,141,201912,2341 -BE,ME,2,143,201912,214 -BE,ME,2,151,201912,5823 -BE,ME,2,172,201912,3290 -BE,ME,2,192,201912,19955 -BE,ME,2,201,201912,246 -BE,ME,2,203,201912,74 -BE,ME,2,204,201912,67 -BE,ME,2,205,201912,79414 -BE,ME,2,212,201912,781 -BE,ME,2,221,201912,562 -BE,ME,2,222,201912,832 -BE,ME,2,244,201912,1088 -BE,ME,2,257,201912,934 -BE,ME,2,259,201912,480 -BE,ME,2,265,201912,771 -BE,ME,2,271,201912,1660 -BE,ME,2,272,201912,812 -BE,ME,2,273,201912,245 -BE,ME,2,274,201912,31375 -BE,ME,2,279,201912,87 -BE,ME,2,281,201912,8168 -BE,ME,2,282,201912,36021 -BE,ME,2,289,201912,8920 -BE,ME,2,291,201912,689456 -BE,ME,2,293,201912,34177 -BE,ME,2,325,201912,33646 -BE,ME,2,329,201912,225 -BE,MG,1,011,201912,6055 -BE,MG,1,012,201912,16300063 -BE,MG,1,103,201912,157594 -BE,MG,1,108,201912,29300 -BE,MG,1,141,201912,142089 -BE,MG,1,143,201912,61879 -BE,MG,1,151,201912,5225 -BE,MG,1,162,201912,537 -BE,MG,1,205,201912,95636 -BE,MG,1,271,201912,527 -BE,MG,1,321,201912,4016 -BE,MG,2,105,201912,87100 -BE,MG,2,108,201912,43175 -BE,MG,2,109,201912,78860 -BE,MG,2,131,201912,2013 -BE,MG,2,132,201912,268346 -BE,MG,2,139,201912,23131 -BE,MG,2,141,201912,97888 -BE,MG,2,151,201912,13 -BE,MG,2,162,201912,14382 -BE,MG,2,171,201912,84812 -BE,MG,2,172,201912,1 -BE,MG,2,192,201912,36375 -BE,MG,2,201,201912,110221 -BE,MG,2,204,201912,355 -BE,MG,2,205,201912,250918 -BE,MG,2,212,201912,13473 -BE,MG,2,221,201912,183628 -BE,MG,2,222,201912,32931 -BE,MG,2,231,201912,20688 -BE,MG,2,234,201912,6418 -BE,MG,2,239,201912,16587 -BE,MG,2,242,201912,11 -BE,MG,2,257,201912,1016 -BE,MG,2,259,201912,62793 -BE,MG,2,262,201912,7170 -BE,MG,2,263,201912,15212 -BE,MG,2,265,201912,157 -BE,MG,2,267,201912,1933 -BE,MG,2,271,201912,1879 -BE,MG,2,272,201912,471 -BE,MG,2,273,201912,82 -BE,MG,2,274,201912,1946 -BE,MG,2,275,201912,8129 -BE,MG,2,279,201912,4737 -BE,MG,2,281,201912,75617 -BE,MG,2,282,201912,72092 -BE,MG,2,283,201912,80 -BE,MG,2,284,201912,1450 -BE,MG,2,289,201912,93905 -BE,MG,2,291,201912,1504323 -BE,MG,2,292,201912,20450 -BE,MG,2,293,201912,50641 -BE,MG,2,309,201912,3280 -BE,MG,2,310,201912,13077 -BE,MG,2,324,201912,1283 -BE,MG,2,329,201912,16762 -BE,MH,2,221,201912,56 -BE,MH,2,281,201912,13179 -BE,MH,2,282,201912,286 -BE,MK,1,011,201912,111105 -BE,MK,1,103,201912,745 -BE,MK,1,108,201912,2050 -BE,MK,1,110,201912,9820 -BE,MK,1,131,201912,29396 -BE,MK,1,132,201912,25803 -BE,MK,1,139,201912,270586 -BE,MK,1,141,201912,928539 -BE,MK,1,143,201912,83140 -BE,MK,1,151,201912,5187 -BE,MK,1,162,201912,28544 -BE,MK,1,172,201912,577 -BE,MK,1,222,201912,28806 -BE,MK,1,231,201912,17786 -BE,MK,1,232,201912,25664 -BE,MK,1,242,201912,28524 -BE,MK,1,244,201912,1213 -BE,MK,1,251,201912,288166 -BE,MK,1,252,201912,2049 -BE,MK,1,257,201912,1968 -BE,MK,1,259,201912,83231 -BE,MK,1,261,201912,10999 -BE,MK,1,264,201912,8040 -BE,MK,1,265,201912,3897 -BE,MK,1,271,201912,2336 -BE,MK,1,273,201912,1579 -BE,MK,1,274,201912,1398 -BE,MK,1,275,201912,345 -BE,MK,1,279,201912,811 -BE,MK,1,281,201912,5755 -BE,MK,1,282,201912,69571 -BE,MK,1,289,201912,47947 -BE,MK,1,291,201912,15072559 -BE,MK,1,293,201912,294664 -BE,MK,1,302,201912,39991 -BE,MK,1,310,201912,14059 -BE,MK,2,103,201912,146469 -BE,MK,2,104,201912,30105 -BE,MK,2,106,201912,58114 -BE,MK,2,107,201912,25295 -BE,MK,2,108,201912,783362 -BE,MK,2,120,201912,8105 -BE,MK,2,131,201912,847 -BE,MK,2,132,201912,491667 -BE,MK,2,139,201912,202825 -BE,MK,2,141,201912,23937 -BE,MK,2,143,201912,254 -BE,MK,2,151,201912,5534 -BE,MK,2,161,201912,5704 -BE,MK,2,162,201912,56984 -BE,MK,2,171,201912,31666 -BE,MK,2,172,201912,7972 -BE,MK,2,192,201912,87357 -BE,MK,2,201,201912,529157 -BE,MK,2,202,201912,262130 -BE,MK,2,203,201912,113493 -BE,MK,2,204,201912,16853 -BE,MK,2,205,201912,94745 -BE,MK,2,211,201912,3054 -BE,MK,2,212,201912,434882 -BE,MK,2,221,201912,120784 -BE,MK,2,222,201912,579082 -BE,MK,2,231,201912,27033 -BE,MK,2,234,201912,86 -BE,MK,2,239,201912,6141 -BE,MK,2,241,201912,56635 -BE,MK,2,242,201912,322853 -BE,MK,2,243,201912,20205 -BE,MK,2,244,201912,188262 -BE,MK,2,245,201912,2085 -BE,MK,2,251,201912,41380 -BE,MK,2,252,201912,13042 -BE,MK,2,257,201912,73344 -BE,MK,2,259,201912,622604 -BE,MK,2,261,201912,5389 -BE,MK,2,262,201912,18448 -BE,MK,2,263,201912,35879 -BE,MK,2,264,201912,90456 -BE,MK,2,265,201912,109700 -BE,MK,2,266,201912,12414 -BE,MK,2,267,201912,20825 -BE,MK,2,271,201912,145910 -BE,MK,2,272,201912,31726 -BE,MK,2,273,201912,86839 -BE,MK,2,274,201912,153509 -BE,MK,2,275,201912,22896 -BE,MK,2,279,201912,50110 -BE,MK,2,281,201912,241572 -BE,MK,2,282,201912,267734 -BE,MK,2,284,201912,7057 -BE,MK,2,289,201912,258748 -BE,MK,2,291,201912,1347771 -BE,MK,2,293,201912,1412813 -BE,MK,2,310,201912,10324 -BE,MK,2,323,201912,11210 -BE,MK,2,325,201912,129324 -BE,MK,2,329,201912,134100 -BE,ML,1,108,201912,53 -BE,ML,1,162,201912,545 -BE,ML,2,014,201912,21549 -BE,ML,2,103,201912,40949 -BE,ML,2,107,201912,7791 -BE,ML,2,108,201912,158012 -BE,ML,2,109,201912,254788 -BE,ML,2,110,201912,58256 -BE,ML,2,139,201912,47150 -BE,ML,2,141,201912,212369 -BE,ML,2,151,201912,115 -BE,ML,2,152,201912,1335 -BE,ML,2,172,201912,279970 -BE,ML,2,201,201912,466023 -BE,ML,2,202,201912,507 -BE,ML,2,203,201912,29057 -BE,ML,2,204,201912,27029 -BE,ML,2,205,201912,36177 -BE,ML,2,212,201912,1945212 -BE,ML,2,221,201912,13397 -BE,ML,2,222,201912,47639 -BE,ML,2,231,201912,6153 -BE,ML,2,239,201912,45 -BE,ML,2,243,201912,470552 -BE,ML,2,257,201912,22974 -BE,ML,2,259,201912,12495 -BE,ML,2,262,201912,74424 -BE,ML,2,265,201912,92499 -BE,ML,2,266,201912,502555 -BE,ML,2,267,201912,4085 -BE,ML,2,271,201912,440628 -BE,ML,2,273,201912,4216 -BE,ML,2,274,201912,9090 -BE,ML,2,275,201912,12917 -BE,ML,2,279,201912,20452 -BE,ML,2,281,201912,40316 -BE,ML,2,282,201912,287431 -BE,ML,2,283,201912,765 -BE,ML,2,289,201912,475981 -BE,ML,2,291,201912,5731919 -BE,ML,2,292,201912,1277075 -BE,ML,2,293,201912,47199 -BE,ML,2,325,201912,181599 -BE,ML,2,329,201912,41255 -BE,MM,1,011,201912,90090 -BE,MM,1,012,201912,69524 -BE,MM,1,102,201912,266480 -BE,MM,1,106,201912,3241174 -BE,MM,1,110,201912,476 -BE,MM,1,141,201912,6409212 -BE,MM,1,143,201912,2176895 -BE,MM,1,151,201912,474446 -BE,MM,1,152,201912,90983 -BE,MM,1,267,201912,25005 -BE,MM,1,271,201912,1317 -BE,MM,2,101,201912,683665 -BE,MM,2,108,201912,86652 -BE,MM,2,109,201912,140620 -BE,MM,2,110,201912,31536 -BE,MM,2,131,201912,2410 -BE,MM,2,132,201912,26680 -BE,MM,2,139,201912,6770 -BE,MM,2,172,201912,1140 -BE,MM,2,192,201912,114014 -BE,MM,2,201,201912,747221 -BE,MM,2,204,201912,50623 -BE,MM,2,212,201912,1984847 -BE,MM,2,221,201912,455 -BE,MM,2,222,201912,6512 -BE,MM,2,257,201912,9378 -BE,MM,2,259,201912,95 -BE,MM,2,271,201912,1780 -BE,MM,2,274,201912,114 -BE,MM,2,279,201912,3311 -BE,MM,2,281,201912,66545 -BE,MM,2,282,201912,1902 -BE,MM,2,289,201912,3221 -BE,MM,2,291,201912,112298 -BE,MM,2,329,201912,6774 -BE,MN,1,141,201912,904 -BE,MN,1,143,201912,17974 -BE,MN,2,205,201912,11661 -BE,MN,2,221,201912,117 -BE,MN,2,222,201912,144 -BE,MN,2,244,201912,35 -BE,MN,2,259,201912,311 -BE,MN,2,265,201912,2785 -BE,MN,2,271,201912,3442 -BE,MN,2,273,201912,46 -BE,MN,2,279,201912,18871 -BE,MN,2,281,201912,4515 -BE,MN,2,282,201912,7434 -BE,MN,2,289,201912,9064 -BE,MN,2,291,201912,31000 -BE,MN,2,293,201912,1933 -BE,MN,2,325,201912,206252 -BE,MO,1,141,201912,398 -BE,MO,1,271,201912,703 -BE,MO,2,110,201912,46852 -BE,MO,2,151,201912,31532 -BE,MO,2,212,201912,60037 -BE,MO,2,222,201912,8546 -BE,MO,2,259,201912,2368 -BE,MO,2,273,201912,26475 -BE,MO,2,274,201912,1135 -BE,MO,2,279,201912,59 -BE,MO,2,282,201912,369836 -BE,MO,2,325,201912,52673 -BE,MR,1,265,201912,8984 -BE,MR,2,011,201912,20671 -BE,MR,2,103,201912,9107 -BE,MR,2,105,201912,987239 -BE,MR,2,108,201912,984773 -BE,MR,2,139,201912,22542 -BE,MR,2,141,201912,74138 -BE,MR,2,172,201912,48836 -BE,MR,2,192,201912,1134244 -BE,MR,2,201,201912,13762 -BE,MR,2,203,201912,21371 -BE,MR,2,204,201912,22113 -BE,MR,2,205,201912,31626 -BE,MR,2,212,201912,8063 -BE,MR,2,221,201912,72470 -BE,MR,2,222,201912,29613 -BE,MR,2,231,201912,12473 -BE,MR,2,239,201912,15020 -BE,MR,2,241,201912,45858 -BE,MR,2,242,201912,66020 -BE,MR,2,243,201912,4050 -BE,MR,2,244,201912,63 -BE,MR,2,257,201912,75154 -BE,MR,2,259,201912,244717 -BE,MR,2,261,201912,1398 -BE,MR,2,262,201912,6799 -BE,MR,2,263,201912,3708 -BE,MR,2,264,201912,6120 -BE,MR,2,265,201912,36990 -BE,MR,2,271,201912,274095 -BE,MR,2,272,201912,42183 -BE,MR,2,273,201912,167663 -BE,MR,2,274,201912,34020 -BE,MR,2,275,201912,20658 -BE,MR,2,279,201912,7729 -BE,MR,2,281,201912,522190 -BE,MR,2,282,201912,433778 -BE,MR,2,284,201912,900 -BE,MR,2,289,201912,2648544 -BE,MR,2,291,201912,1314326 -BE,MR,2,293,201912,286164 -BE,MR,2,309,201912,510 -BE,MR,2,310,201912,10344 -BE,MR,2,323,201912,60 -BE,MR,2,324,201912,725 -BE,MR,2,325,201912,375 -BE,MR,2,329,201912,2511 -BE,MS,1,325,201912,37860 -BE,MT,1,103,201912,2879 -BE,MT,1,141,201912,27804 -BE,MT,1,143,201912,111424 -BE,MT,1,152,201912,3851 -BE,MT,1,172,201912,64400 -BE,MT,1,205,201912,4657 -BE,MT,1,212,201912,681475 -BE,MT,1,221,201912,1300 -BE,MT,1,222,201912,505354 -BE,MT,1,241,201912,73120 -BE,MT,1,253,201912,30533 -BE,MT,1,259,201912,765 -BE,MT,1,261,201912,19 -BE,MT,1,262,201912,807 -BE,MT,1,265,201912,41594 -BE,MT,1,273,201912,13277 -BE,MT,1,282,201912,43573 -BE,MT,1,289,201912,7317 -BE,MT,1,293,201912,39923 -BE,MT,1,325,201912,159745 -BE,MT,2,011,201912,8242 -BE,MT,2,012,201912,13489 -BE,MT,2,014,201912,3818 -BE,MT,2,030,201912,49 -BE,MT,2,072,201912,786361 -BE,MT,2,081,201912,1219 -BE,MT,2,089,201912,8106 -BE,MT,2,101,201912,261952 -BE,MT,2,102,201912,2842 -BE,MT,2,103,201912,441620 -BE,MT,2,104,201912,4080 -BE,MT,2,105,201912,125433 -BE,MT,2,106,201912,71240 -BE,MT,2,107,201912,100059 -BE,MT,2,108,201912,171017 -BE,MT,2,109,201912,76547 -BE,MT,2,110,201912,88787 -BE,MT,2,120,201912,17312 -BE,MT,2,132,201912,26950 -BE,MT,2,139,201912,45869 -BE,MT,2,141,201912,560730 -BE,MT,2,143,201912,212958 -BE,MT,2,151,201912,86822 -BE,MT,2,152,201912,348524 -BE,MT,2,162,201912,6911 -BE,MT,2,171,201912,5441 -BE,MT,2,172,201912,259521 -BE,MT,2,192,201912,88120 -BE,MT,2,201,201912,404224 -BE,MT,2,202,201912,54 -BE,MT,2,203,201912,32497 -BE,MT,2,204,201912,323400 -BE,MT,2,205,201912,106587 -BE,MT,2,211,201912,55126 -BE,MT,2,212,201912,256324 -BE,MT,2,221,201912,77075 -BE,MT,2,222,201912,140873 -BE,MT,2,231,201912,72622 -BE,MT,2,234,201912,10221 -BE,MT,2,239,201912,4255 -BE,MT,2,241,201912,13605 -BE,MT,2,242,201912,434 -BE,MT,2,244,201912,161653 -BE,MT,2,245,201912,8137 -BE,MT,2,251,201912,14593 -BE,MT,2,257,201912,151402 -BE,MT,2,259,201912,38231 -BE,MT,2,261,201912,43809 -BE,MT,2,262,201912,8626 -BE,MT,2,263,201912,10893 -BE,MT,2,264,201912,155723 -BE,MT,2,265,201912,26066 -BE,MT,2,267,201912,1209 -BE,MT,2,271,201912,62743 -BE,MT,2,272,201912,57474 -BE,MT,2,273,201912,8487 -BE,MT,2,274,201912,67099 -BE,MT,2,275,201912,13793 -BE,MT,2,279,201912,41065 -BE,MT,2,281,201912,95609 -BE,MT,2,282,201912,92178 -BE,MT,2,283,201912,5700 -BE,MT,2,284,201912,5523 -BE,MT,2,289,201912,43240 -BE,MT,2,291,201912,806783 -BE,MT,2,292,201912,15416 -BE,MT,2,293,201912,155596 -BE,MT,2,301,201912,15731 -BE,MT,2,303,201912,7637 -BE,MT,2,309,201912,37900 -BE,MT,2,310,201912,42546 -BE,MT,2,321,201912,77278 -BE,MT,2,322,201912,5529 -BE,MT,2,323,201912,10324 -BE,MT,2,324,201912,110840 -BE,MT,2,325,201912,186477 -BE,MT,2,329,201912,25089 -BE,MU,1,012,201912,9066 -BE,MU,1,089,201912,55844 -BE,MU,1,102,201912,479563 -BE,MU,1,108,201912,310687 -BE,MU,1,141,201912,571565 -BE,MU,1,143,201912,23222 -BE,MU,1,265,201912,64 -BE,MU,1,271,201912,311 -BE,MU,1,321,201912,1076295 -BE,MU,2,089,201912,6538878 -BE,MU,2,103,201912,201472 -BE,MU,2,106,201912,22046 -BE,MU,2,107,201912,108541 -BE,MU,2,108,201912,24280 -BE,MU,2,110,201912,150114 -BE,MU,2,132,201912,39843 -BE,MU,2,139,201912,30535 -BE,MU,2,141,201912,5175 -BE,MU,2,151,201912,1633 -BE,MU,2,162,201912,12753 -BE,MU,2,171,201912,207032 -BE,MU,2,172,201912,31759 -BE,MU,2,192,201912,43078 -BE,MU,2,201,201912,143968 -BE,MU,2,202,201912,115 -BE,MU,2,203,201912,110836 -BE,MU,2,204,201912,146330 -BE,MU,2,205,201912,360522 -BE,MU,2,206,201912,71 -BE,MU,2,212,201912,188802 -BE,MU,2,221,201912,3522 -BE,MU,2,222,201912,243861 -BE,MU,2,231,201912,17945 -BE,MU,2,234,201912,445 -BE,MU,2,242,201912,708 -BE,MU,2,244,201912,26807 -BE,MU,2,251,201912,30201 -BE,MU,2,257,201912,1763 -BE,MU,2,259,201912,38302 -BE,MU,2,261,201912,532 -BE,MU,2,262,201912,8825 -BE,MU,2,263,201912,34778 -BE,MU,2,265,201912,5669 -BE,MU,2,266,201912,11304 -BE,MU,2,271,201912,15067 -BE,MU,2,273,201912,26735 -BE,MU,2,274,201912,66006 -BE,MU,2,275,201912,35664 -BE,MU,2,279,201912,51697 -BE,MU,2,281,201912,16584 -BE,MU,2,282,201912,41640 -BE,MU,2,289,201912,161422 -BE,MU,2,291,201912,831921 -BE,MU,2,293,201912,31196 -BE,MU,2,310,201912,253785 -BE,MU,2,321,201912,2316789 -BE,MU,2,323,201912,8321 -BE,MU,2,324,201912,12500 -BE,MU,2,325,201912,154550 -BE,MU,2,329,201912,32664 -BE,MV,1,030,201912,6684 -BE,MV,1,102,201912,28167 -BE,MV,2,030,201912,32676 -BE,MV,2,101,201912,38576 -BE,MV,2,103,201912,67188 -BE,MV,2,104,201912,2558 -BE,MV,2,105,201912,53467 -BE,MV,2,106,201912,5840 -BE,MV,2,108,201912,143313 -BE,MV,2,110,201912,10142 -BE,MV,2,141,201912,32 -BE,MV,2,162,201912,2162 -BE,MV,2,205,201912,3827 -BE,MV,2,221,201912,2650 -BE,MV,2,222,201912,9252 -BE,MV,2,231,201912,2167 -BE,MV,2,234,201912,3688 -BE,MV,2,244,201912,173 -BE,MV,2,257,201912,6310 -BE,MV,2,259,201912,14235 -BE,MV,2,265,201912,2510 -BE,MV,2,271,201912,1775 -BE,MV,2,273,201912,348 -BE,MV,2,275,201912,12430 -BE,MV,2,279,201912,3064 -BE,MV,2,281,201912,16925 -BE,MV,2,282,201912,24554 -BE,MV,2,293,201912,13746 -BE,MV,2,310,201912,210 -BE,MV,2,329,201912,7347 -BE,MW,1,011,201912,511654 -BE,MW,1,012,201912,336513 -BE,MW,1,108,201912,9616 -BE,MW,1,120,201912,19474143 -BE,MW,2,108,201912,118161 -BE,MW,2,110,201912,197479 -BE,MW,2,141,201912,1246 -BE,MW,2,172,201912,460 -BE,MW,2,202,201912,3323 -BE,MW,2,205,201912,18733 -BE,MW,2,212,201912,2519061 -BE,MW,2,221,201912,939 -BE,MW,2,259,201912,579 -BE,MW,2,279,201912,541 -BE,MW,2,281,201912,100889 -BE,MW,2,282,201912,4956 -BE,MW,2,289,201912,15196 -BE,MW,2,325,201912,6575 -BE,MX,1,011,201912,892327 -BE,MX,1,012,201912,4210299 -BE,MX,1,014,201912,54167 -BE,MX,1,072,201912,4231283 -BE,MX,1,089,201912,348030 -BE,MX,1,101,201912,46951 -BE,MX,1,103,201912,1648932 -BE,MX,1,107,201912,1425 -BE,MX,1,108,201912,301962 -BE,MX,1,110,201912,1803071 -BE,MX,1,132,201912,436411 -BE,MX,1,139,201912,178614 -BE,MX,1,141,201912,757552 -BE,MX,1,143,201912,26349 -BE,MX,1,151,201912,3691 -BE,MX,1,152,201912,3838 -BE,MX,1,171,201912,5446 -BE,MX,1,172,201912,367661 -BE,MX,1,201,201912,29491816 -BE,MX,1,204,201912,100345 -BE,MX,1,205,201912,588657 -BE,MX,1,206,201912,80628 -BE,MX,1,211,201912,246 -BE,MX,1,212,201912,3077312 -BE,MX,1,221,201912,775150 -BE,MX,1,222,201912,5198999 -BE,MX,1,231,201912,2682650 -BE,MX,1,234,201912,5365916 -BE,MX,1,236,201912,2513 -BE,MX,1,239,201912,147573 -BE,MX,1,242,201912,13607 -BE,MX,1,243,201912,1890 -BE,MX,1,244,201912,13176021 -BE,MX,1,252,201912,864 -BE,MX,1,257,201912,219793 -BE,MX,1,259,201912,259960 -BE,MX,1,261,201912,91321 -BE,MX,1,262,201912,2666744 -BE,MX,1,263,201912,4307730 -BE,MX,1,264,201912,5090096 -BE,MX,1,265,201912,1875146 -BE,MX,1,266,201912,689457 -BE,MX,1,267,201912,18918 -BE,MX,1,271,201912,3116318 -BE,MX,1,272,201912,361852 -BE,MX,1,273,201912,1861475 -BE,MX,1,274,201912,34077 -BE,MX,1,275,201912,170683 -BE,MX,1,279,201912,1047845 -BE,MX,1,281,201912,5881926 -BE,MX,1,282,201912,6783075 -BE,MX,1,283,201912,4176673 -BE,MX,1,284,201912,17603 -BE,MX,1,289,201912,901327 -BE,MX,1,291,201912,36194199 -BE,MX,1,292,201912,20109 -BE,MX,1,293,201912,1782067 -BE,MX,1,301,201912,3378793 -BE,MX,1,303,201912,5674274 -BE,MX,1,309,201912,70147 -BE,MX,1,310,201912,111720 -BE,MX,1,321,201912,41714 -BE,MX,1,323,201912,8713 -BE,MX,1,324,201912,36077 -BE,MX,1,325,201912,79274306 -BE,MX,1,329,201912,182724 -BE,MX,2,014,201912,13056 -BE,MX,2,103,201912,792020 -BE,MX,2,106,201912,826986 -BE,MX,2,108,201912,1392005 -BE,MX,2,109,201912,1273951 -BE,MX,2,110,201912,2301444 -BE,MX,2,132,201912,80096 -BE,MX,2,139,201912,469981 -BE,MX,2,141,201912,128994 -BE,MX,2,151,201912,1003741 -BE,MX,2,162,201912,131840 -BE,MX,2,171,201912,1155528 -BE,MX,2,172,201912,236577 -BE,MX,2,192,201912,18827406 -BE,MX,2,201,201912,16511097 -BE,MX,2,202,201912,1947552 -BE,MX,2,203,201912,1002188 -BE,MX,2,204,201912,203212 -BE,MX,2,205,201912,2686106 -BE,MX,2,206,201912,1098539 -BE,MX,2,211,201912,710277 -BE,MX,2,212,201912,11381859 -BE,MX,2,221,201912,666183 -BE,MX,2,222,201912,2656399 -BE,MX,2,231,201912,685775 -BE,MX,2,232,201912,6174 -BE,MX,2,234,201912,3838 -BE,MX,2,236,201912,35836 -BE,MX,2,239,201912,29579 -BE,MX,2,241,201912,11426991 -BE,MX,2,242,201912,506351 -BE,MX,2,243,201912,387589 -BE,MX,2,244,201912,3051378 -BE,MX,2,245,201912,3044 -BE,MX,2,251,201912,268172 -BE,MX,2,252,201912,9580 -BE,MX,2,257,201912,920969 -BE,MX,2,259,201912,929789 -BE,MX,2,261,201912,1551935 -BE,MX,2,262,201912,314374 -BE,MX,2,263,201912,352849 -BE,MX,2,264,201912,1389623 -BE,MX,2,265,201912,493720 -BE,MX,2,266,201912,475540 -BE,MX,2,267,201912,47943 -BE,MX,2,271,201912,634658 -BE,MX,2,272,201912,33517 -BE,MX,2,273,201912,1843428 -BE,MX,2,274,201912,286727 -BE,MX,2,275,201912,85763 -BE,MX,2,279,201912,654861 -BE,MX,2,281,201912,5348942 -BE,MX,2,282,201912,2376639 -BE,MX,2,283,201912,9062 -BE,MX,2,284,201912,985209 -BE,MX,2,289,201912,2269739 -BE,MX,2,291,201912,1435788 -BE,MX,2,292,201912,59546 -BE,MX,2,293,201912,5063944 -BE,MX,2,302,201912,8697 -BE,MX,2,303,201912,2096564 -BE,MX,2,309,201912,33231 -BE,MX,2,310,201912,7262 -BE,MX,2,321,201912,118543 -BE,MX,2,324,201912,486635 -BE,MX,2,325,201912,1795235 -BE,MX,2,329,201912,151149 -BE,MY,1,012,201912,41710 -BE,MY,1,013,201912,3802 -BE,MY,1,103,201912,118 -BE,MY,1,104,201912,2864206 -BE,MY,1,107,201912,53135 -BE,MY,1,108,201912,95762 -BE,MY,1,132,201912,66126 -BE,MY,1,139,201912,3364 -BE,MY,1,141,201912,2088882 -BE,MY,1,143,201912,193098 -BE,MY,1,151,201912,2516 -BE,MY,1,152,201912,178977 -BE,MY,1,161,201912,370904 -BE,MY,1,162,201912,658871 -BE,MY,1,171,201912,294523 -BE,MY,1,172,201912,113298 -BE,MY,1,192,201912,32687889 -BE,MY,1,201,201912,1329895 -BE,MY,1,203,201912,232840 -BE,MY,1,204,201912,371822 -BE,MY,1,205,201912,730570 -BE,MY,1,206,201912,29790 -BE,MY,1,211,201912,7777 -BE,MY,1,212,201912,31319 -BE,MY,1,221,201912,5771140 -BE,MY,1,222,201912,794954 -BE,MY,1,231,201912,1141078 -BE,MY,1,239,201912,214 -BE,MY,1,241,201912,1079673 -BE,MY,1,242,201912,92532 -BE,MY,1,244,201912,861323 -BE,MY,1,257,201912,23239 -BE,MY,1,259,201912,66872 -BE,MY,1,261,201912,9974963 -BE,MY,1,262,201912,1238173 -BE,MY,1,263,201912,839686 -BE,MY,1,264,201912,5078430 -BE,MY,1,265,201912,763678 -BE,MY,1,266,201912,26649621 -BE,MY,1,267,201912,12852 -BE,MY,1,271,201912,159719 -BE,MY,1,272,201912,85206 -BE,MY,1,273,201912,265292 -BE,MY,1,274,201912,34878 -BE,MY,1,275,201912,54 -BE,MY,1,279,201912,2098170 -BE,MY,1,281,201912,1992866 -BE,MY,1,282,201912,601157 -BE,MY,1,289,201912,838263 -BE,MY,1,293,201912,173885 -BE,MY,1,303,201912,186560 -BE,MY,1,309,201912,1994 -BE,MY,1,310,201912,418183 -BE,MY,1,322,201912,4426081 -BE,MY,1,323,201912,668771 -BE,MY,1,324,201912,1074 -BE,MY,1,325,201912,6130515 -BE,MY,1,329,201912,111100 -BE,MY,2,012,201912,9356 -BE,MY,2,013,201912,25641 -BE,MY,2,022,201912,117951 -BE,MY,2,081,201912,73839 -BE,MY,2,089,201912,11672 -BE,MY,2,101,201912,11050 -BE,MY,2,103,201912,2080824 -BE,MY,2,104,201912,162561 -BE,MY,2,105,201912,1413864 -BE,MY,2,106,201912,316492 -BE,MY,2,107,201912,75021 -BE,MY,2,108,201912,300243 -BE,MY,2,109,201912,120872 -BE,MY,2,110,201912,188405 -BE,MY,2,132,201912,114 -BE,MY,2,139,201912,154902 -BE,MY,2,141,201912,53675 -BE,MY,2,143,201912,19574 -BE,MY,2,151,201912,12 -BE,MY,2,161,201912,54527 -BE,MY,2,162,201912,471889 -BE,MY,2,171,201912,366163 -BE,MY,2,172,201912,66916 -BE,MY,2,192,201912,193114 -BE,MY,2,201,201912,8327981 -BE,MY,2,202,201912,161737 -BE,MY,2,203,201912,156676 -BE,MY,2,204,201912,170613 -BE,MY,2,205,201912,2693364 -BE,MY,2,206,201912,198299 -BE,MY,2,211,201912,22774 -BE,MY,2,212,201912,8268833 -BE,MY,2,221,201912,334746 -BE,MY,2,222,201912,1378681 -BE,MY,2,231,201912,295428 -BE,MY,2,235,201912,3606 -BE,MY,2,239,201912,140934 -BE,MY,2,241,201912,808076 -BE,MY,2,242,201912,2594501 -BE,MY,2,243,201912,1137 -BE,MY,2,244,201912,349377 -BE,MY,2,251,201912,104 -BE,MY,2,257,201912,426880 -BE,MY,2,259,201912,231701 -BE,MY,2,261,201912,3738092 -BE,MY,2,262,201912,632768 -BE,MY,2,263,201912,203748 -BE,MY,2,264,201912,294201 -BE,MY,2,265,201912,507939 -BE,MY,2,266,201912,58264 -BE,MY,2,267,201912,192309 -BE,MY,2,268,201912,16346 -BE,MY,2,271,201912,816366 -BE,MY,2,272,201912,77459 -BE,MY,2,273,201912,78047 -BE,MY,2,274,201912,366794 -BE,MY,2,275,201912,16096 -BE,MY,2,279,201912,364603 -BE,MY,2,281,201912,1915259 -BE,MY,2,282,201912,2323093 -BE,MY,2,283,201912,260472 -BE,MY,2,284,201912,476092 -BE,MY,2,289,201912,936973 -BE,MY,2,291,201912,692817 -BE,MY,2,292,201912,134952 -BE,MY,2,293,201912,4052687 -BE,MY,2,303,201912,286699 -BE,MY,2,310,201912,34624 -BE,MY,2,323,201912,92399 -BE,MY,2,324,201912,122868 -BE,MY,2,325,201912,900511 -BE,MY,2,329,201912,11007 -BE,MZ,1,120,201912,17002125 -BE,MZ,2,110,201912,207635 -BE,MZ,2,141,201912,50045 -BE,MZ,2,172,201912,2980 -BE,MZ,2,205,201912,4807 -BE,MZ,2,212,201912,5407 -BE,MZ,2,221,201912,128 -BE,MZ,2,222,201912,156 -BE,MZ,2,262,201912,37634 -BE,MZ,2,265,201912,370 -BE,MZ,2,271,201912,18133 -BE,MZ,2,279,201912,176549 -BE,MZ,2,281,201912,8103 -BE,MZ,2,282,201912,11715 -BE,MZ,2,289,201912,709659 -BE,MZ,2,291,201912,2800 -BE,NC,1,241,201912,3420623 -BE,NC,2,101,201912,571191 -BE,NC,2,103,201912,163220 -BE,NC,2,104,201912,18754 -BE,NC,2,105,201912,4569 -BE,NC,2,107,201912,320 -BE,NC,2,108,201912,19975 -BE,NC,2,110,201912,314116 -BE,NC,2,139,201912,118 -BE,NC,2,141,201912,13001 -BE,NC,2,143,201912,2959 -BE,NC,2,162,201912,41973 -BE,NC,2,172,201912,43208 -BE,NC,2,192,201912,53428 -BE,NC,2,201,201912,118945 -BE,NC,2,203,201912,5660 -BE,NC,2,204,201912,14565 -BE,NC,2,205,201912,50819 -BE,NC,2,212,201912,1738 -BE,NC,2,221,201912,5353 -BE,NC,2,222,201912,28488 -BE,NC,2,231,201912,350 -BE,NC,2,232,201912,425 -BE,NC,2,234,201912,256 -BE,NC,2,241,201912,80641 -BE,NC,2,242,201912,8034 -BE,NC,2,244,201912,2286 -BE,NC,2,251,201912,37605 -BE,NC,2,257,201912,758 -BE,NC,2,259,201912,100438 -BE,NC,2,265,201912,95892 -BE,NC,2,266,201912,319 -BE,NC,2,271,201912,1924 -BE,NC,2,272,201912,2111 -BE,NC,2,273,201912,1193 -BE,NC,2,274,201912,2669 -BE,NC,2,275,201912,255 -BE,NC,2,279,201912,2127 -BE,NC,2,281,201912,40272 -BE,NC,2,282,201912,81231 -BE,NC,2,289,201912,27430 -BE,NC,2,291,201912,330825 -BE,NC,2,293,201912,17896 -BE,NC,2,310,201912,517 -BE,NC,2,321,201912,15667 -BE,NC,2,325,201912,41519 -BE,NC,2,329,201912,1901 -BE,NE,2,102,201912,283 -BE,NE,2,103,201912,7080 -BE,NE,2,105,201912,83262 -BE,NE,2,107,201912,12143 -BE,NE,2,108,201912,1544120 -BE,NE,2,110,201912,90749 -BE,NE,2,139,201912,180 -BE,NE,2,141,201912,23171 -BE,NE,2,172,201912,322 -BE,NE,2,192,201912,225185 -BE,NE,2,201,201912,33889 -BE,NE,2,204,201912,29688 -BE,NE,2,205,201912,12082 -BE,NE,2,212,201912,425168 -BE,NE,2,221,201912,1868 -BE,NE,2,222,201912,2769 -BE,NE,2,242,201912,44 -BE,NE,2,264,201912,1946 -BE,NE,2,265,201912,65275 -BE,NE,2,271,201912,15500 -BE,NE,2,272,201912,1068 -BE,NE,2,273,201912,155655 -BE,NE,2,274,201912,4373 -BE,NE,2,275,201912,841 -BE,NE,2,281,201912,10038 -BE,NE,2,282,201912,85050 -BE,NE,2,289,201912,50286 -BE,NE,2,291,201912,1027332 -BE,NE,2,292,201912,5200 -BE,NE,2,293,201912,24988 -BE,NE,2,310,201912,3548 -BE,NE,2,325,201912,43719 -BE,NE,2,329,201912,640 -BE,NG,1,011,201912,3483 -BE,NG,1,012,201912,2166563 -BE,NG,1,102,201912,559446 -BE,NG,1,103,201912,213 -BE,NG,1,106,201912,664 -BE,NG,1,108,201912,519 -BE,NG,1,141,201912,1258 -BE,NG,1,192,201912,119 -BE,NG,1,204,201912,1435 -BE,NG,1,222,201912,119 -BE,NG,1,259,201912,198 -BE,NG,1,263,201912,304 -BE,NG,1,265,201912,494 -BE,NG,1,271,201912,1801 -BE,NG,1,273,201912,19 -BE,NG,1,281,201912,5213 -BE,NG,1,329,201912,870 -BE,NG,2,103,201912,250387 -BE,NG,2,104,201912,5769 -BE,NG,2,105,201912,2784527 -BE,NG,2,106,201912,254612 -BE,NG,2,107,201912,426438 -BE,NG,2,108,201912,4234 -BE,NG,2,109,201912,462325 -BE,NG,2,110,201912,1816096 -BE,NG,2,132,201912,3041 -BE,NG,2,139,201912,32803 -BE,NG,2,141,201912,344611 -BE,NG,2,151,201912,31547 -BE,NG,2,152,201912,39355 -BE,NG,2,162,201912,90 -BE,NG,2,171,201912,1706026 -BE,NG,2,172,201912,1530 -BE,NG,2,192,201912,204421292 -BE,NG,2,201,201912,3345478 -BE,NG,2,202,201912,101761 -BE,NG,2,203,201912,59607 -BE,NG,2,204,201912,2034 -BE,NG,2,205,201912,1113131 -BE,NG,2,211,201912,191175 -BE,NG,2,212,201912,8112314 -BE,NG,2,221,201912,71893 -BE,NG,2,222,201912,890873 -BE,NG,2,231,201912,303 -BE,NG,2,234,201912,4654 -BE,NG,2,236,201912,286 -BE,NG,2,239,201912,6502 -BE,NG,2,241,201912,69056 -BE,NG,2,242,201912,1087904 -BE,NG,2,244,201912,1746215 -BE,NG,2,245,201912,4171 -BE,NG,2,252,201912,2236 -BE,NG,2,257,201912,333450 -BE,NG,2,259,201912,63937 -BE,NG,2,261,201912,2451 -BE,NG,2,262,201912,125206 -BE,NG,2,263,201912,44109 -BE,NG,2,264,201912,50503 -BE,NG,2,265,201912,262774 -BE,NG,2,266,201912,5190 -BE,NG,2,267,201912,25935 -BE,NG,2,271,201912,694771 -BE,NG,2,272,201912,19792 -BE,NG,2,273,201912,107312 -BE,NG,2,274,201912,44375 -BE,NG,2,275,201912,16876 -BE,NG,2,279,201912,245730 -BE,NG,2,281,201912,1689149 -BE,NG,2,282,201912,1789576 -BE,NG,2,283,201912,61867 -BE,NG,2,284,201912,8923 -BE,NG,2,289,201912,3198215 -BE,NG,2,291,201912,5164900 -BE,NG,2,292,201912,225782 -BE,NG,2,293,201912,530825 -BE,NG,2,302,201912,24500 -BE,NG,2,303,201912,26879 -BE,NG,2,309,201912,11983 -BE,NG,2,310,201912,21584 -BE,NG,2,323,201912,2365 -BE,NG,2,325,201912,70792 -BE,NG,2,329,201912,95686 -BE,NI,1,012,201912,1785081 -BE,NI,1,102,201912,1528777 -BE,NI,1,120,201912,222 -BE,NI,1,141,201912,996715 -BE,NI,1,143,201912,301566 -BE,NI,1,271,201912,144 -BE,NI,2,103,201912,31684 -BE,NI,2,201,201912,145714 -BE,NI,2,221,201912,1538 -BE,NI,2,222,201912,114 -BE,NI,2,257,201912,3798 -BE,NI,2,265,201912,15037 -BE,NI,2,266,201912,1282 -BE,NI,2,279,201912,5901 -BE,NI,2,281,201912,36674 -BE,NI,2,289,201912,7112 -BE,NL,1,011,201912,79767324 -BE,NL,1,012,201912,29270986 -BE,NL,1,013,201912,12639775 -BE,NL,1,014,201912,29141686 -BE,NL,1,021,201912,730495 -BE,NL,1,022,201912,2397725 -BE,NL,1,023,201912,528281 -BE,NL,1,030,201912,21221537 -BE,NL,1,051,201912,1017382 -BE,NL,1,061,201912,1125541287 -BE,NL,1,062,201912,183251500 -BE,NL,1,071,201912,247524 -BE,NL,1,072,201912,12094749 -BE,NL,1,081,201912,12468259 -BE,NL,1,089,201912,7490626 -BE,NL,1,101,201912,70059066 -BE,NL,1,102,201912,36061600 -BE,NL,1,103,201912,63522237 -BE,NL,1,104,201912,89447164 -BE,NL,1,105,201912,107193011 -BE,NL,1,106,201912,19759033 -BE,NL,1,107,201912,26488526 -BE,NL,1,108,201912,124764329 -BE,NL,1,109,201912,49555985 -BE,NL,1,110,201912,34006587 -BE,NL,1,120,201912,14248525 -BE,NL,1,131,201912,1241867 -BE,NL,1,132,201912,3079831 -BE,NL,1,139,201912,25918442 -BE,NL,1,141,201912,38975031 -BE,NL,1,142,201912,19516 -BE,NL,1,143,201912,9676321 -BE,NL,1,151,201912,5469387 -BE,NL,1,152,201912,13281324 -BE,NL,1,161,201912,5553336 -BE,NL,1,162,201912,16339152 -BE,NL,1,171,201912,24002408 -BE,NL,1,172,201912,32940897 -BE,NL,1,181,201912,44959 -BE,NL,1,191,201912,351449 -BE,NL,1,192,201912,566577760 -BE,NL,1,201,201912,499472012 -BE,NL,1,202,201912,6104243 -BE,NL,1,203,201912,18088807 -BE,NL,1,204,201912,72483432 -BE,NL,1,205,201912,177031940 -BE,NL,1,206,201912,1267817 -BE,NL,1,211,201912,21799504 -BE,NL,1,212,201912,140590185 -BE,NL,1,221,201912,13329573 -BE,NL,1,222,201912,86091662 -BE,NL,1,231,201912,18477938 -BE,NL,1,232,201912,1072327 -BE,NL,1,233,201912,2370836 -BE,NL,1,234,201912,3440303 -BE,NL,1,235,201912,2080709 -BE,NL,1,236,201912,4012080 -BE,NL,1,237,201912,408186 -BE,NL,1,239,201912,5892988 -BE,NL,1,241,201912,65347883 -BE,NL,1,242,201912,9521615 -BE,NL,1,243,201912,6746281 -BE,NL,1,244,201912,57259206 -BE,NL,1,245,201912,682198 -BE,NL,1,251,201912,22307687 -BE,NL,1,252,201912,6494928 -BE,NL,1,253,201912,588492 -BE,NL,1,254,201912,145612 -BE,NL,1,257,201912,18979318 -BE,NL,1,259,201912,43744659 -BE,NL,1,261,201912,18903273 -BE,NL,1,262,201912,184028158 -BE,NL,1,263,201912,188620269 -BE,NL,1,264,201912,55518741 -BE,NL,1,265,201912,29940659 -BE,NL,1,266,201912,13241959 -BE,NL,1,267,201912,9708668 -BE,NL,1,268,201912,439549 -BE,NL,1,271,201912,22782066 -BE,NL,1,272,201912,7429064 -BE,NL,1,273,201912,12008449 -BE,NL,1,274,201912,17028574 -BE,NL,1,275,201912,40372007 -BE,NL,1,279,201912,20120624 -BE,NL,1,281,201912,65653178 -BE,NL,1,282,201912,71137896 -BE,NL,1,283,201912,18590324 -BE,NL,1,284,201912,7393081 -BE,NL,1,289,201912,61692644 -BE,NL,1,291,201912,105543022 -BE,NL,1,292,201912,8606228 -BE,NL,1,293,201912,66881216 -BE,NL,1,301,201912,17338642 -BE,NL,1,302,201912,494649 -BE,NL,1,303,201912,1382886 -BE,NL,1,304,201912,24302 -BE,NL,1,309,201912,31969088 -BE,NL,1,310,201912,27005838 -BE,NL,1,321,201912,3220379 -BE,NL,1,322,201912,974650 -BE,NL,1,323,201912,3712194 -BE,NL,1,324,201912,13570114 -BE,NL,1,325,201912,75882802 -BE,NL,1,329,201912,16335354 -BE,NL,1,351,201912,25563114 -BE,NL,2,011,201912,56922756 -BE,NL,2,012,201912,65396729 -BE,NL,2,013,201912,7112766 -BE,NL,2,014,201912,25378053 -BE,NL,2,021,201912,224884 -BE,NL,2,022,201912,420642 -BE,NL,2,023,201912,509191 -BE,NL,2,030,201912,10838135 -BE,NL,2,051,201912,2124528 -BE,NL,2,052,201912,108315 -BE,NL,2,061,201912,65228005 -BE,NL,2,062,201912,89733248 -BE,NL,2,072,201912,34747581 -BE,NL,2,081,201912,8025364 -BE,NL,2,089,201912,2004591 -BE,NL,2,101,201912,81340282 -BE,NL,2,102,201912,19697844 -BE,NL,2,103,201912,55023666 -BE,NL,2,104,201912,34657278 -BE,NL,2,105,201912,70167894 -BE,NL,2,106,201912,34022289 -BE,NL,2,107,201912,34636512 -BE,NL,2,108,201912,92014226 -BE,NL,2,109,201912,26851183 -BE,NL,2,110,201912,68088317 -BE,NL,2,120,201912,11675791 -BE,NL,2,131,201912,2032144 -BE,NL,2,132,201912,4126112 -BE,NL,2,139,201912,37906955 -BE,NL,2,141,201912,77775905 -BE,NL,2,142,201912,19865 -BE,NL,2,143,201912,17798003 -BE,NL,2,151,201912,10200385 -BE,NL,2,152,201912,71806368 -BE,NL,2,161,201912,9858211 -BE,NL,2,162,201912,23862783 -BE,NL,2,171,201912,21858491 -BE,NL,2,172,201912,38031376 -BE,NL,2,181,201912,261451 -BE,NL,2,191,201912,4750930 -BE,NL,2,192,201912,420770784 -BE,NL,2,201,201912,404979368 -BE,NL,2,202,201912,9792659 -BE,NL,2,203,201912,14853978 -BE,NL,2,204,201912,84779431 -BE,NL,2,205,201912,189889795 -BE,NL,2,206,201912,3775884 -BE,NL,2,211,201912,3197369 -BE,NL,2,212,201912,139426754 -BE,NL,2,221,201912,23160433 -BE,NL,2,222,201912,71103189 -BE,NL,2,231,201912,15175370 -BE,NL,2,232,201912,278896 -BE,NL,2,233,201912,3113196 -BE,NL,2,234,201912,2859269 -BE,NL,2,235,201912,14095961 -BE,NL,2,236,201912,14067334 -BE,NL,2,237,201912,914412 -BE,NL,2,239,201912,4655336 -BE,NL,2,241,201912,92809044 -BE,NL,2,242,201912,5615868 -BE,NL,2,243,201912,9248062 -BE,NL,2,244,201912,38576112 -BE,NL,2,245,201912,881180 -BE,NL,2,251,201912,17194819 -BE,NL,2,252,201912,3390799 -BE,NL,2,253,201912,73325 -BE,NL,2,254,201912,323072 -BE,NL,2,257,201912,15908639 -BE,NL,2,259,201912,33218746 -BE,NL,2,261,201912,8530318 -BE,NL,2,262,201912,66483094 -BE,NL,2,263,201912,52029938 -BE,NL,2,264,201912,22394295 -BE,NL,2,265,201912,11447717 -BE,NL,2,266,201912,6282307 -BE,NL,2,267,201912,2565126 -BE,NL,2,268,201912,1563172 -BE,NL,2,271,201912,8794564 -BE,NL,2,272,201912,6148947 -BE,NL,2,273,201912,9798741 -BE,NL,2,274,201912,12312025 -BE,NL,2,275,201912,22220438 -BE,NL,2,279,201912,10391796 -BE,NL,2,281,201912,34688308 -BE,NL,2,282,201912,67806739 -BE,NL,2,283,201912,14067877 -BE,NL,2,284,201912,7514913 -BE,NL,2,289,201912,31540849 -BE,NL,2,291,201912,555599496 -BE,NL,2,292,201912,57400245 -BE,NL,2,293,201912,50197581 -BE,NL,2,301,201912,10312304 -BE,NL,2,302,201912,1812176 -BE,NL,2,303,201912,1056944 -BE,NL,2,309,201912,6137949 -BE,NL,2,310,201912,33684918 -BE,NL,2,321,201912,3175808 -BE,NL,2,322,201912,1340006 -BE,NL,2,323,201912,3296925 -BE,NL,2,324,201912,8076277 -BE,NL,2,325,201912,49941521 -BE,NL,2,329,201912,15296602 -BE,NL,2,351,201912,14447109 -BE,NO,1,030,201912,15729 -BE,NO,1,062,201912,124501539 -BE,NO,1,081,201912,1181117 -BE,NO,1,089,201912,40618 -BE,NO,1,102,201912,3818 -BE,NO,1,103,201912,17856 -BE,NO,1,108,201912,1301 -BE,NO,1,110,201912,7491 -BE,NO,1,139,201912,2434 -BE,NO,1,141,201912,20383 -BE,NO,1,143,201912,3990 -BE,NO,1,151,201912,12264 -BE,NO,1,152,201912,2118 -BE,NO,1,161,201912,187717 -BE,NO,1,162,201912,19017 -BE,NO,1,171,201912,2115295 -BE,NO,1,172,201912,12820 -BE,NO,1,192,201912,48132745 -BE,NO,1,201,201912,36098449 -BE,NO,1,203,201912,180 -BE,NO,1,204,201912,786 -BE,NO,1,205,201912,3653 -BE,NO,1,212,201912,7528701 -BE,NO,1,221,201912,33334 -BE,NO,1,222,201912,210049 -BE,NO,1,231,201912,8330 -BE,NO,1,237,201912,51956 -BE,NO,1,239,201912,1327 -BE,NO,1,241,201912,2665245 -BE,NO,1,242,201912,254763 -BE,NO,1,244,201912,625355 -BE,NO,1,257,201912,49888 -BE,NO,1,259,201912,56745 -BE,NO,1,261,201912,3819 -BE,NO,1,262,201912,149941 -BE,NO,1,263,201912,342293 -BE,NO,1,264,201912,63324 -BE,NO,1,265,201912,350592 -BE,NO,1,266,201912,49502 -BE,NO,1,267,201912,100590 -BE,NO,1,268,201912,316 -BE,NO,1,271,201912,1381446 -BE,NO,1,272,201912,91587 -BE,NO,1,273,201912,103948 -BE,NO,1,274,201912,19515 -BE,NO,1,275,201912,56852 -BE,NO,1,279,201912,255946 -BE,NO,1,281,201912,453034 -BE,NO,1,282,201912,409364 -BE,NO,1,283,201912,254 -BE,NO,1,284,201912,131001 -BE,NO,1,289,201912,88482 -BE,NO,1,291,201912,43976 -BE,NO,1,292,201912,1190 -BE,NO,1,293,201912,1802202 -BE,NO,1,303,201912,124236 -BE,NO,1,309,201912,2086 -BE,NO,1,310,201912,15891 -BE,NO,1,323,201912,13016 -BE,NO,1,324,201912,2357 -BE,NO,1,325,201912,129618 -BE,NO,1,329,201912,2899 -BE,NO,2,011,201912,910529 -BE,NO,2,012,201912,1274018 -BE,NO,2,013,201912,33921 -BE,NO,2,014,201912,3639 -BE,NO,2,030,201912,44 -BE,NO,2,081,201912,88980 -BE,NO,2,089,201912,101716 -BE,NO,2,101,201912,41004 -BE,NO,2,102,201912,37703 -BE,NO,2,103,201912,1066267 -BE,NO,2,104,201912,1933863 -BE,NO,2,105,201912,144523 -BE,NO,2,106,201912,5319576 -BE,NO,2,107,201912,1566368 -BE,NO,2,108,201912,1955702 -BE,NO,2,109,201912,557250 -BE,NO,2,110,201912,160933 -BE,NO,2,131,201912,413 -BE,NO,2,132,201912,40996 -BE,NO,2,139,201912,646668 -BE,NO,2,141,201912,1019123 -BE,NO,2,142,201912,2621 -BE,NO,2,143,201912,185058 -BE,NO,2,151,201912,349797 -BE,NO,2,152,201912,37511 -BE,NO,2,161,201912,339 -BE,NO,2,162,201912,641100 -BE,NO,2,171,201912,101908 -BE,NO,2,172,201912,329386 -BE,NO,2,192,201912,2753333 -BE,NO,2,201,201912,9220236 -BE,NO,2,202,201912,143087 -BE,NO,2,203,201912,636633 -BE,NO,2,204,201912,363459 -BE,NO,2,205,201912,1744787 -BE,NO,2,206,201912,28558 -BE,NO,2,211,201912,77907 -BE,NO,2,212,201912,10239751 -BE,NO,2,221,201912,1048595 -BE,NO,2,222,201912,1777963 -BE,NO,2,231,201912,586405 -BE,NO,2,232,201912,1348 -BE,NO,2,234,201912,161674 -BE,NO,2,236,201912,51481 -BE,NO,2,239,201912,420237 -BE,NO,2,241,201912,834875 -BE,NO,2,242,201912,155788 -BE,NO,2,243,201912,191852 -BE,NO,2,244,201912,124232 -BE,NO,2,245,201912,3439 -BE,NO,2,251,201912,500655 -BE,NO,2,252,201912,17331 -BE,NO,2,253,201912,3000 -BE,NO,2,254,201912,18 -BE,NO,2,257,201912,962957 -BE,NO,2,259,201912,1776115 -BE,NO,2,261,201912,492617 -BE,NO,2,262,201912,856969 -BE,NO,2,263,201912,251877 -BE,NO,2,264,201912,113962 -BE,NO,2,265,201912,1358878 -BE,NO,2,266,201912,2492876 -BE,NO,2,267,201912,140513 -BE,NO,2,271,201912,652866 -BE,NO,2,272,201912,397579 -BE,NO,2,273,201912,1250102 -BE,NO,2,274,201912,446033 -BE,NO,2,275,201912,257411 -BE,NO,2,279,201912,445718 -BE,NO,2,281,201912,4655344 -BE,NO,2,282,201912,3352788 -BE,NO,2,283,201912,307704 -BE,NO,2,284,201912,276697 -BE,NO,2,289,201912,1401336 -BE,NO,2,291,201912,7725940 -BE,NO,2,292,201912,121422 -BE,NO,2,293,201912,2890227 -BE,NO,2,301,201912,5483 -BE,NO,2,302,201912,55767 -BE,NO,2,303,201912,280841 -BE,NO,2,309,201912,49364 -BE,NO,2,310,201912,152409 -BE,NO,2,321,201912,175246 -BE,NO,2,322,201912,1741 -BE,NO,2,323,201912,60950 -BE,NO,2,324,201912,332483 -BE,NO,2,325,201912,9310985 -BE,NO,2,329,201912,144729 -BE,NP,1,139,201912,106822 -BE,NP,1,141,201912,18164 -BE,NP,1,143,201912,1068 -BE,NP,1,151,201912,151 -BE,NP,1,162,201912,19 -BE,NP,1,172,201912,13 -BE,NP,1,205,201912,288286 -BE,NP,1,259,201912,326 -BE,NP,1,271,201912,724 -BE,NP,1,321,201912,173 -BE,NP,1,322,201912,26 -BE,NP,2,108,201912,22017 -BE,NP,2,110,201912,301600 -BE,NP,2,139,201912,69921 -BE,NP,2,201,201912,75640 -BE,NP,2,205,201912,5625 -BE,NP,2,221,201912,256 -BE,NP,2,222,201912,16027 -BE,NP,2,241,201912,35096 -BE,NP,2,259,201912,1000 -BE,NP,2,262,201912,1470 -BE,NP,2,264,201912,150 -BE,NP,2,266,201912,13429 -BE,NP,2,273,201912,349 -BE,NP,2,281,201912,2517 -BE,NP,2,282,201912,4449 -BE,NP,2,289,201912,15395 -BE,NP,2,325,201912,77675 -BE,NZ,1,012,201912,47627 -BE,NZ,1,014,201912,762 -BE,NZ,1,101,201912,4956699 -BE,NZ,1,102,201912,374091 -BE,NZ,1,105,201912,221410 -BE,NZ,1,108,201912,51202 -BE,NZ,1,110,201912,212095 -BE,NZ,1,131,201912,263278 -BE,NZ,1,139,201912,82517 -BE,NZ,1,141,201912,4961 -BE,NZ,1,143,201912,74 -BE,NZ,1,151,201912,994 -BE,NZ,1,161,201912,551474 -BE,NZ,1,171,201912,198516 -BE,NZ,1,204,201912,824 -BE,NZ,1,211,201912,487013 -BE,NZ,1,212,201912,19888 -BE,NZ,1,221,201912,11041 -BE,NZ,1,222,201912,134812 -BE,NZ,1,251,201912,18126 -BE,NZ,1,257,201912,22203 -BE,NZ,1,259,201912,3766 -BE,NZ,1,262,201912,941 -BE,NZ,1,263,201912,302814 -BE,NZ,1,265,201912,34975 -BE,NZ,1,271,201912,6681 -BE,NZ,1,273,201912,238 -BE,NZ,1,274,201912,1039 -BE,NZ,1,279,201912,3692 -BE,NZ,1,281,201912,9813 -BE,NZ,1,282,201912,13700 -BE,NZ,1,283,201912,320 -BE,NZ,1,289,201912,59170 -BE,NZ,1,293,201912,26838 -BE,NZ,1,303,201912,58316 -BE,NZ,1,309,201912,278 -BE,NZ,1,321,201912,33861 -BE,NZ,1,322,201912,399 -BE,NZ,1,323,201912,1920 -BE,NZ,1,324,201912,2584 -BE,NZ,1,325,201912,257080 -BE,NZ,1,329,201912,1623 -BE,NZ,2,012,201912,127 -BE,NZ,2,081,201912,24794 -BE,NZ,2,089,201912,71201 -BE,NZ,2,101,201912,84157 -BE,NZ,2,103,201912,743619 -BE,NZ,2,104,201912,135889 -BE,NZ,2,105,201912,88238 -BE,NZ,2,106,201912,725831 -BE,NZ,2,107,201912,274 -BE,NZ,2,108,201912,364119 -BE,NZ,2,110,201912,243426 -BE,NZ,2,132,201912,103176 -BE,NZ,2,139,201912,561461 -BE,NZ,2,141,201912,5484 -BE,NZ,2,151,201912,12011 -BE,NZ,2,152,201912,1242 -BE,NZ,2,162,201912,594981 -BE,NZ,2,171,201912,1030 -BE,NZ,2,172,201912,76990 -BE,NZ,2,192,201912,283932 -BE,NZ,2,201,201912,698393 -BE,NZ,2,202,201912,10117 -BE,NZ,2,203,201912,160941 -BE,NZ,2,204,201912,89781 -BE,NZ,2,205,201912,417346 -BE,NZ,2,211,201912,1059 -BE,NZ,2,212,201912,7237890 -BE,NZ,2,221,201912,187952 -BE,NZ,2,222,201912,711642 -BE,NZ,2,231,201912,256789 -BE,NZ,2,233,201912,19434 -BE,NZ,2,234,201912,7246 -BE,NZ,2,235,201912,3606 -BE,NZ,2,237,201912,21021 -BE,NZ,2,239,201912,164365 -BE,NZ,2,241,201912,190224 -BE,NZ,2,242,201912,16788 -BE,NZ,2,244,201912,80482 -BE,NZ,2,251,201912,61440 -BE,NZ,2,257,201912,106732 -BE,NZ,2,259,201912,121861 -BE,NZ,2,261,201912,11493 -BE,NZ,2,262,201912,38394 -BE,NZ,2,263,201912,22984 -BE,NZ,2,264,201912,6098 -BE,NZ,2,265,201912,237306 -BE,NZ,2,266,201912,220282 -BE,NZ,2,267,201912,37716 -BE,NZ,2,271,201912,62259 -BE,NZ,2,272,201912,21 -BE,NZ,2,273,201912,53948 -BE,NZ,2,274,201912,87458 -BE,NZ,2,275,201912,71230 -BE,NZ,2,279,201912,175390 -BE,NZ,2,281,201912,1181177 -BE,NZ,2,282,201912,870880 -BE,NZ,2,283,201912,161876 -BE,NZ,2,284,201912,13082 -BE,NZ,2,289,201912,286055 -BE,NZ,2,291,201912,1312106 -BE,NZ,2,292,201912,1730 -BE,NZ,2,293,201912,904873 -BE,NZ,2,303,201912,64482 -BE,NZ,2,309,201912,279206 -BE,NZ,2,310,201912,68300 -BE,NZ,2,321,201912,16860 -BE,NZ,2,324,201912,146175 -BE,NZ,2,325,201912,1870754 -BE,NZ,2,329,201912,24863 -BE,OM,1,222,201912,126661 -BE,OM,1,265,201912,88111 -BE,OM,1,271,201912,445 -BE,OM,1,273,201912,520 -BE,OM,1,281,201912,46601 -BE,OM,1,282,201912,2280 -BE,OM,2,101,201912,23343 -BE,OM,2,103,201912,772753 -BE,OM,2,105,201912,137114 -BE,OM,2,106,201912,24693 -BE,OM,2,108,201912,122378 -BE,OM,2,109,201912,50614 -BE,OM,2,110,201912,122470 -BE,OM,2,132,201912,959 -BE,OM,2,139,201912,14782 -BE,OM,2,141,201912,430879 -BE,OM,2,151,201912,1406 -BE,OM,2,162,201912,28199 -BE,OM,2,171,201912,119115 -BE,OM,2,172,201912,24650 -BE,OM,2,192,201912,172715 -BE,OM,2,201,201912,345018 -BE,OM,2,203,201912,109196 -BE,OM,2,204,201912,466894 -BE,OM,2,205,201912,1066751 -BE,OM,2,212,201912,3002958 -BE,OM,2,221,201912,22854 -BE,OM,2,222,201912,6005 -BE,OM,2,231,201912,222 -BE,OM,2,241,201912,31837 -BE,OM,2,242,201912,2078 -BE,OM,2,243,201912,2565 -BE,OM,2,244,201912,776469 -BE,OM,2,252,201912,7563 -BE,OM,2,257,201912,19610 -BE,OM,2,259,201912,16745 -BE,OM,2,262,201912,24403 -BE,OM,2,263,201912,1544282 -BE,OM,2,264,201912,243 -BE,OM,2,265,201912,511813 -BE,OM,2,266,201912,201949 -BE,OM,2,271,201912,20593 -BE,OM,2,272,201912,12886 -BE,OM,2,273,201912,170150 -BE,OM,2,274,201912,39654 -BE,OM,2,275,201912,9940 -BE,OM,2,279,201912,120001 -BE,OM,2,281,201912,488230 -BE,OM,2,282,201912,296474 -BE,OM,2,283,201912,23050 -BE,OM,2,284,201912,40550 -BE,OM,2,289,201912,4093594 -BE,OM,2,291,201912,724600 -BE,OM,2,292,201912,15500 -BE,OM,2,293,201912,23493 -BE,OM,2,310,201912,46142 -BE,OM,2,324,201912,55543 -BE,OM,2,325,201912,470230 -BE,OM,2,329,201912,98490 -BE,PA,1,012,201912,40066 -BE,PA,1,221,201912,150768 -BE,PA,1,262,201912,1156 -BE,PA,1,263,201912,3285 -BE,PA,1,271,201912,571 -BE,PA,1,279,201912,2136 -BE,PA,1,281,201912,31015 -BE,PA,1,282,201912,2 -BE,PA,2,013,201912,28884 -BE,PA,2,103,201912,403224 -BE,PA,2,106,201912,45019 -BE,PA,2,108,201912,83032 -BE,PA,2,109,201912,14189 -BE,PA,2,110,201912,561982 -BE,PA,2,139,201912,91079 -BE,PA,2,162,201912,867 -BE,PA,2,171,201912,61 -BE,PA,2,172,201912,48583 -BE,PA,2,192,201912,63430 -BE,PA,2,201,201912,1833 -BE,PA,2,202,201912,77463 -BE,PA,2,203,201912,88793 -BE,PA,2,205,201912,144813 -BE,PA,2,212,201912,4562333 -BE,PA,2,221,201912,122730 -BE,PA,2,222,201912,39176 -BE,PA,2,231,201912,28931 -BE,PA,2,241,201912,5121 -BE,PA,2,251,201912,32844 -BE,PA,2,257,201912,250 -BE,PA,2,259,201912,17205 -BE,PA,2,261,201912,1142 -BE,PA,2,264,201912,25 -BE,PA,2,265,201912,12388 -BE,PA,2,266,201912,6891 -BE,PA,2,271,201912,67796 -BE,PA,2,273,201912,6643 -BE,PA,2,274,201912,5132 -BE,PA,2,275,201912,2374 -BE,PA,2,281,201912,137060 -BE,PA,2,282,201912,19121 -BE,PA,2,289,201912,15306 -BE,PA,2,291,201912,92914 -BE,PA,2,293,201912,116454 -BE,PA,2,310,201912,18 -BE,PA,2,325,201912,163145 -BE,PA,2,329,201912,350 -BE,PE,1,011,201912,1740401 -BE,PE,1,012,201912,12863097 -BE,PE,1,072,201912,8315023 -BE,PE,1,081,201912,178388 -BE,PE,1,102,201912,169167 -BE,PE,1,103,201912,879594 -BE,PE,1,108,201912,16919 -BE,PE,1,110,201912,57014 -BE,PE,1,131,201912,111670 -BE,PE,1,139,201912,2351 -BE,PE,1,141,201912,18174 -BE,PE,1,143,201912,37740 -BE,PE,1,152,201912,152 -BE,PE,1,161,201912,278476 -BE,PE,1,201,201912,339379 -BE,PE,1,231,201912,2928 -BE,PE,1,237,201912,252 -BE,PE,1,244,201912,5279771 -BE,PE,1,259,201912,138 -BE,PE,1,261,201912,4910 -BE,PE,1,265,201912,12576 -BE,PE,1,271,201912,1926 -BE,PE,1,279,201912,169 -BE,PE,1,281,201912,1902 -BE,PE,1,282,201912,1156 -BE,PE,1,321,201912,2470 -BE,PE,1,324,201912,1219 -BE,PE,2,011,201912,1665 -BE,PE,2,103,201912,240414 -BE,PE,2,104,201912,37331 -BE,PE,2,106,201912,66786 -BE,PE,2,108,201912,323627 -BE,PE,2,109,201912,222994 -BE,PE,2,110,201912,196567 -BE,PE,2,132,201912,59048 -BE,PE,2,139,201912,331495 -BE,PE,2,151,201912,152802 -BE,PE,2,152,201912,840 -BE,PE,2,162,201912,26539 -BE,PE,2,171,201912,1157353 -BE,PE,2,172,201912,69635 -BE,PE,2,192,201912,259283 -BE,PE,2,201,201912,1465059 -BE,PE,2,202,201912,120533 -BE,PE,2,203,201912,123772 -BE,PE,2,204,201912,104871 -BE,PE,2,205,201912,550720 -BE,PE,2,211,201912,222775 -BE,PE,2,212,201912,9458751 -BE,PE,2,221,201912,2037102 -BE,PE,2,222,201912,223900 -BE,PE,2,231,201912,323491 -BE,PE,2,241,201912,584211 -BE,PE,2,242,201912,170793 -BE,PE,2,244,201912,71284 -BE,PE,2,252,201912,17183 -BE,PE,2,257,201912,7980 -BE,PE,2,259,201912,496838 -BE,PE,2,261,201912,783 -BE,PE,2,262,201912,74205 -BE,PE,2,263,201912,40965 -BE,PE,2,264,201912,15807 -BE,PE,2,265,201912,59552 -BE,PE,2,266,201912,99377 -BE,PE,2,267,201912,5857 -BE,PE,2,268,201912,326 -BE,PE,2,271,201912,181218 -BE,PE,2,272,201912,2839 -BE,PE,2,273,201912,73447 -BE,PE,2,274,201912,28568 -BE,PE,2,279,201912,31984 -BE,PE,2,281,201912,1166778 -BE,PE,2,282,201912,642596 -BE,PE,2,283,201912,22699 -BE,PE,2,284,201912,398963 -BE,PE,2,289,201912,451126 -BE,PE,2,291,201912,891711 -BE,PE,2,292,201912,86384 -BE,PE,2,293,201912,364132 -BE,PE,2,302,201912,2201 -BE,PE,2,309,201912,64184 -BE,PE,2,310,201912,12575 -BE,PE,2,324,201912,45611 -BE,PE,2,325,201912,210294 -BE,PE,2,329,201912,2007 -BE,PF,2,101,201912,53222 -BE,PF,2,102,201912,10619 -BE,PF,2,103,201912,208360 -BE,PF,2,104,201912,131208 -BE,PF,2,105,201912,4120 -BE,PF,2,107,201912,10379 -BE,PF,2,108,201912,22899 -BE,PF,2,110,201912,93884 -BE,PF,2,139,201912,12199 -BE,PF,2,141,201912,462 -BE,PF,2,162,201912,3120 -BE,PF,2,172,201912,159362 -BE,PF,2,192,201912,45704 -BE,PF,2,201,201912,12264 -BE,PF,2,204,201912,42337 -BE,PF,2,205,201912,31328 -BE,PF,2,212,201912,1893 -BE,PF,2,221,201912,4100 -BE,PF,2,222,201912,22104 -BE,PF,2,231,201912,269 -BE,PF,2,244,201912,18185 -BE,PF,2,257,201912,1815 -BE,PF,2,259,201912,17134 -BE,PF,2,262,201912,21721 -BE,PF,2,263,201912,4408 -BE,PF,2,265,201912,3570 -BE,PF,2,271,201912,1107 -BE,PF,2,273,201912,38 -BE,PF,2,274,201912,1716 -BE,PF,2,275,201912,2639 -BE,PF,2,279,201912,9513 -BE,PF,2,281,201912,32838 -BE,PF,2,282,201912,28575 -BE,PF,2,289,201912,941 -BE,PF,2,291,201912,163191 -BE,PF,2,293,201912,14981 -BE,PF,2,301,201912,759 -BE,PF,2,309,201912,28 -BE,PF,2,325,201912,77868 -BE,PF,2,329,201912,5601 -BE,PG,1,012,201912,2318447 -BE,PG,1,104,201912,1124294 -BE,PG,2,103,201912,150258 -BE,PG,2,201,201912,211849 -BE,PG,2,212,201912,855050 -BE,PH,1,012,201912,72635 -BE,PH,1,102,201912,573172 -BE,PH,1,103,201912,467254 -BE,PH,1,106,201912,9178 -BE,PH,1,107,201912,996578 -BE,PH,1,108,201912,449417 -BE,PH,1,120,201912,662798 -BE,PH,1,139,201912,344 -BE,PH,1,141,201912,31231 -BE,PH,1,142,201912,34621 -BE,PH,1,143,201912,276 -BE,PH,1,151,201912,545920 -BE,PH,1,152,201912,1030549 -BE,PH,1,162,201912,48283 -BE,PH,1,172,201912,97548 -BE,PH,1,201,201912,2218066 -BE,PH,1,205,201912,177382 -BE,PH,1,221,201912,142410 -BE,PH,1,222,201912,16154 -BE,PH,1,234,201912,11437 -BE,PH,1,236,201912,13003 -BE,PH,1,242,201912,227 -BE,PH,1,257,201912,60 -BE,PH,1,259,201912,942 -BE,PH,1,261,201912,5930266 -BE,PH,1,262,201912,8834 -BE,PH,1,263,201912,267206 -BE,PH,1,264,201912,488649 -BE,PH,1,265,201912,572438 -BE,PH,1,267,201912,1467 -BE,PH,1,271,201912,6162 -BE,PH,1,273,201912,10541 -BE,PH,1,274,201912,31154 -BE,PH,1,279,201912,119575 -BE,PH,1,281,201912,34891 -BE,PH,1,282,201912,144209 -BE,PH,1,283,201912,270 -BE,PH,1,284,201912,6033 -BE,PH,1,289,201912,38 -BE,PH,1,293,201912,55069 -BE,PH,1,309,201912,6643 -BE,PH,1,310,201912,746 -BE,PH,1,321,201912,350 -BE,PH,1,324,201912,483390 -BE,PH,1,325,201912,1086912 -BE,PH,1,329,201912,70420 -BE,PH,2,011,201912,267049 -BE,PH,2,014,201912,159967 -BE,PH,2,101,201912,198066 -BE,PH,2,103,201912,2449696 -BE,PH,2,104,201912,35184 -BE,PH,2,105,201912,2708313 -BE,PH,2,106,201912,455079 -BE,PH,2,107,201912,29085 -BE,PH,2,108,201912,395295 -BE,PH,2,109,201912,516445 -BE,PH,2,110,201912,439337 -BE,PH,2,120,201912,632135 -BE,PH,2,132,201912,3185 -BE,PH,2,139,201912,45719 -BE,PH,2,141,201912,1710 -BE,PH,2,162,201912,46813 -BE,PH,2,171,201912,536675 -BE,PH,2,172,201912,29681 -BE,PH,2,192,201912,118423 -BE,PH,2,201,201912,760957 -BE,PH,2,202,201912,349342 -BE,PH,2,203,201912,331299 -BE,PH,2,204,201912,87228 -BE,PH,2,205,201912,260027 -BE,PH,2,211,201912,195759 -BE,PH,2,212,201912,8637300 -BE,PH,2,221,201912,96276 -BE,PH,2,222,201912,781966 -BE,PH,2,231,201912,1583 -BE,PH,2,239,201912,10822 -BE,PH,2,241,201912,113705 -BE,PH,2,242,201912,5824 -BE,PH,2,243,201912,322 -BE,PH,2,244,201912,87290 -BE,PH,2,251,201912,1018589 -BE,PH,2,257,201912,18280 -BE,PH,2,259,201912,51686 -BE,PH,2,261,201912,5125437 -BE,PH,2,262,201912,13521 -BE,PH,2,263,201912,282101 -BE,PH,2,264,201912,115214 -BE,PH,2,265,201912,806551 -BE,PH,2,266,201912,36813 -BE,PH,2,267,201912,40 -BE,PH,2,271,201912,61195 -BE,PH,2,272,201912,2150 -BE,PH,2,273,201912,881961 -BE,PH,2,274,201912,61216 -BE,PH,2,275,201912,104040 -BE,PH,2,279,201912,199293 -BE,PH,2,281,201912,1513560 -BE,PH,2,282,201912,1172943 -BE,PH,2,283,201912,459016 -BE,PH,2,284,201912,55485 -BE,PH,2,289,201912,348403 -BE,PH,2,293,201912,21962 -BE,PH,2,310,201912,2178 -BE,PH,2,325,201912,247003 -BE,PH,2,329,201912,2232 -BE,PK,1,011,201912,29656 -BE,PK,1,012,201912,43195 -BE,PK,1,089,201912,22910 -BE,PK,1,106,201912,2708607 -BE,PK,1,108,201912,52897 -BE,PK,1,120,201912,142874 -BE,PK,1,131,201912,159596 -BE,PK,1,132,201912,1756866 -BE,PK,1,139,201912,10128265 -BE,PK,1,141,201912,6671345 -BE,PK,1,143,201912,3597311 -BE,PK,1,151,201912,270724 -BE,PK,1,152,201912,126106 -BE,PK,1,162,201912,81331 -BE,PK,1,172,201912,1352 -BE,PK,1,192,201912,220 -BE,PK,1,201,201912,23244 -BE,PK,1,204,201912,4051 -BE,PK,1,205,201912,185913 -BE,PK,1,221,201912,9927 -BE,PK,1,222,201912,156262 -BE,PK,1,244,201912,1658470 -BE,PK,1,257,201912,52935 -BE,PK,1,259,201912,19760 -BE,PK,1,266,201912,668 -BE,PK,1,271,201912,10318 -BE,PK,1,281,201912,38 -BE,PK,1,282,201912,2115 -BE,PK,1,289,201912,40 -BE,PK,1,293,201912,29080 -BE,PK,1,303,201912,765354 -BE,PK,1,323,201912,761752 -BE,PK,1,325,201912,590625 -BE,PK,1,329,201912,86441 -BE,PK,2,014,201912,9307 -BE,PK,2,103,201912,45896 -BE,PK,2,105,201912,199883 -BE,PK,2,108,201912,615100 -BE,PK,2,109,201912,268980 -BE,PK,2,131,201912,64192 -BE,PK,2,132,201912,4285 -BE,PK,2,139,201912,107569 -BE,PK,2,141,201912,350445 -BE,PK,2,161,201912,193193 -BE,PK,2,171,201912,494849 -BE,PK,2,172,201912,70060 -BE,PK,2,192,201912,88348 -BE,PK,2,201,201912,5229346 -BE,PK,2,202,201912,69930 -BE,PK,2,203,201912,129727 -BE,PK,2,204,201912,433222 -BE,PK,2,205,201912,1538077 -BE,PK,2,206,201912,338067 -BE,PK,2,211,201912,47042 -BE,PK,2,212,201912,12705667 -BE,PK,2,221,201912,49384 -BE,PK,2,222,201912,158029 -BE,PK,2,239,201912,594 -BE,PK,2,241,201912,2499198 -BE,PK,2,242,201912,3504 -BE,PK,2,243,201912,17525 -BE,PK,2,244,201912,189234 -BE,PK,2,245,201912,255 -BE,PK,2,252,201912,7835 -BE,PK,2,257,201912,14567 -BE,PK,2,259,201912,45049 -BE,PK,2,261,201912,5757 -BE,PK,2,262,201912,44566 -BE,PK,2,263,201912,6374 -BE,PK,2,265,201912,78032 -BE,PK,2,266,201912,761646 -BE,PK,2,271,201912,1114240 -BE,PK,2,273,201912,60358 -BE,PK,2,274,201912,7986 -BE,PK,2,279,201912,790137 -BE,PK,2,281,201912,503221 -BE,PK,2,282,201912,494486 -BE,PK,2,283,201912,54941 -BE,PK,2,289,201912,4452973 -BE,PK,2,293,201912,2683 -BE,PK,2,303,201912,1415554 -BE,PK,2,324,201912,231 -BE,PK,2,325,201912,5697107 -BE,PK,2,329,201912,33319 -BE,PL,1,011,201912,1941989 -BE,PL,1,012,201912,194175 -BE,PL,1,013,201912,1123 -BE,PL,1,014,201912,916766 -BE,PL,1,022,201912,23207 -BE,PL,1,030,201912,30277 -BE,PL,1,081,201912,11918 -BE,PL,1,089,201912,100535 -BE,PL,1,101,201912,9462797 -BE,PL,1,102,201912,1211314 -BE,PL,1,103,201912,4060413 -BE,PL,1,104,201912,1686367 -BE,PL,1,105,201912,1891835 -BE,PL,1,106,201912,2422509 -BE,PL,1,107,201912,6287173 -BE,PL,1,108,201912,12362437 -BE,PL,1,109,201912,3347735 -BE,PL,1,110,201912,157940 -BE,PL,1,120,201912,13552902 -BE,PL,1,131,201912,369653 -BE,PL,1,132,201912,58137 -BE,PL,1,139,201912,2159185 -BE,PL,1,141,201912,6404476 -BE,PL,1,143,201912,1378843 -BE,PL,1,151,201912,505753 -BE,PL,1,152,201912,2369763 -BE,PL,1,161,201912,598243 -BE,PL,1,162,201912,3519681 -BE,PL,1,171,201912,2779419 -BE,PL,1,172,201912,4394849 -BE,PL,1,181,201912,5865 -BE,PL,1,191,201912,241125 -BE,PL,1,192,201912,820449 -BE,PL,1,201,201912,8914600 -BE,PL,1,202,201912,10103 -BE,PL,1,203,201912,2510368 -BE,PL,1,204,201912,10944955 -BE,PL,1,205,201912,697642 -BE,PL,1,206,201912,6109 -BE,PL,1,211,201912,145984 -BE,PL,1,212,201912,5844251 -BE,PL,1,221,201912,12376979 -BE,PL,1,222,201912,12792593 -BE,PL,1,231,201912,4999698 -BE,PL,1,232,201912,974625 -BE,PL,1,233,201912,110197 -BE,PL,1,234,201912,419894 -BE,PL,1,235,201912,85023 -BE,PL,1,236,201912,243191 -BE,PL,1,237,201912,132089 -BE,PL,1,239,201912,518073 -BE,PL,1,241,201912,1532947 -BE,PL,1,242,201912,1245127 -BE,PL,1,243,201912,272352 -BE,PL,1,244,201912,5082610 -BE,PL,1,245,201912,825211 -BE,PL,1,251,201912,5127379 -BE,PL,1,252,201912,9373971 -BE,PL,1,254,201912,8905 -BE,PL,1,257,201912,4506234 -BE,PL,1,259,201912,5775292 -BE,PL,1,261,201912,629251 -BE,PL,1,262,201912,7431184 -BE,PL,1,263,201912,1397503 -BE,PL,1,264,201912,9695097 -BE,PL,1,265,201912,2489655 -BE,PL,1,266,201912,2287 -BE,PL,1,267,201912,194595 -BE,PL,1,268,201912,24631 -BE,PL,1,271,201912,3673492 -BE,PL,1,272,201912,41119471 -BE,PL,1,273,201912,1042791 -BE,PL,1,274,201912,6607881 -BE,PL,1,275,201912,2267687 -BE,PL,1,279,201912,2947072 -BE,PL,1,281,201912,18214064 -BE,PL,1,282,201912,12716660 -BE,PL,1,283,201912,2471735 -BE,PL,1,284,201912,519839 -BE,PL,1,289,201912,6490881 -BE,PL,1,291,201912,31732417 -BE,PL,1,292,201912,2689345 -BE,PL,1,293,201912,38075513 -BE,PL,1,302,201912,313961 -BE,PL,1,303,201912,6864465 -BE,PL,1,309,201912,1150476 -BE,PL,1,310,201912,14016216 -BE,PL,1,321,201912,101481 -BE,PL,1,322,201912,12857 -BE,PL,1,323,201912,2405916 -BE,PL,1,324,201912,6285982 -BE,PL,1,325,201912,1882449 -BE,PL,1,329,201912,2765152 -BE,PL,2,011,201912,3014893 -BE,PL,2,012,201912,4511968 -BE,PL,2,013,201912,320871 -BE,PL,2,014,201912,741272 -BE,PL,2,021,201912,26561 -BE,PL,2,023,201912,403 -BE,PL,2,030,201912,30900 -BE,PL,2,072,201912,123834 -BE,PL,2,081,201912,339667 -BE,PL,2,089,201912,171495 -BE,PL,2,101,201912,29567497 -BE,PL,2,102,201912,566949 -BE,PL,2,103,201912,7680574 -BE,PL,2,104,201912,2535256 -BE,PL,2,105,201912,4212197 -BE,PL,2,106,201912,3501337 -BE,PL,2,107,201912,1502890 -BE,PL,2,108,201912,10880856 -BE,PL,2,109,201912,5036237 -BE,PL,2,110,201912,1393505 -BE,PL,2,120,201912,13190715 -BE,PL,2,131,201912,391216 -BE,PL,2,132,201912,1605298 -BE,PL,2,139,201912,7201205 -BE,PL,2,141,201912,16871492 -BE,PL,2,143,201912,3631267 -BE,PL,2,151,201912,2646193 -BE,PL,2,152,201912,12327131 -BE,PL,2,161,201912,95550 -BE,PL,2,162,201912,1847152 -BE,PL,2,171,201912,4800115 -BE,PL,2,172,201912,2143254 -BE,PL,2,181,201912,7855 -BE,PL,2,192,201912,4709487 -BE,PL,2,201,201912,80917226 -BE,PL,2,202,201912,1721632 -BE,PL,2,203,201912,3615428 -BE,PL,2,204,201912,15685121 -BE,PL,2,205,201912,10436593 -BE,PL,2,206,201912,4341464 -BE,PL,2,211,201912,827295 -BE,PL,2,212,201912,28754033 -BE,PL,2,221,201912,9781387 -BE,PL,2,222,201912,18547748 -BE,PL,2,231,201912,1948917 -BE,PL,2,232,201912,1431204 -BE,PL,2,233,201912,254002 -BE,PL,2,234,201912,1012788 -BE,PL,2,236,201912,2787903 -BE,PL,2,237,201912,20194 -BE,PL,2,239,201912,955583 -BE,PL,2,241,201912,22995074 -BE,PL,2,242,201912,513873 -BE,PL,2,243,201912,2011765 -BE,PL,2,244,201912,6834770 -BE,PL,2,245,201912,552558 -BE,PL,2,251,201912,1591374 -BE,PL,2,252,201912,711995 -BE,PL,2,253,201912,15408 -BE,PL,2,254,201912,112752 -BE,PL,2,257,201912,4838542 -BE,PL,2,259,201912,5130447 -BE,PL,2,261,201912,5087149 -BE,PL,2,262,201912,5013555 -BE,PL,2,263,201912,1686969 -BE,PL,2,264,201912,4567106 -BE,PL,2,265,201912,4226992 -BE,PL,2,266,201912,2036092 -BE,PL,2,267,201912,795972 -BE,PL,2,268,201912,54971 -BE,PL,2,271,201912,2172156 -BE,PL,2,272,201912,2012366 -BE,PL,2,273,201912,2110724 -BE,PL,2,274,201912,3267783 -BE,PL,2,275,201912,2317564 -BE,PL,2,279,201912,2634128 -BE,PL,2,281,201912,15418635 -BE,PL,2,282,201912,17201761 -BE,PL,2,283,201912,8610405 -BE,PL,2,284,201912,5463846 -BE,PL,2,289,201912,10196837 -BE,PL,2,291,201912,107644147 -BE,PL,2,292,201912,1099588 -BE,PL,2,293,201912,12989261 -BE,PL,2,301,201912,208219 -BE,PL,2,302,201912,12470 -BE,PL,2,303,201912,1291833 -BE,PL,2,309,201912,2235421 -BE,PL,2,310,201912,1328347 -BE,PL,2,321,201912,2659525 -BE,PL,2,322,201912,304520 -BE,PL,2,323,201912,607095 -BE,PL,2,324,201912,1362072 -BE,PL,2,325,201912,14892605 -BE,PL,2,329,201912,2061847 -BE,PS,1,011,201912,187544 -BE,PS,1,012,201912,210490 -BE,PS,2,205,201912,22456 -BE,PS,2,222,201912,15610 -BE,PS,2,259,201912,1540 -BE,PS,2,282,201912,8729 -BE,PS,2,289,201912,7241 -BE,PS,2,291,201912,178806 -BE,PS,2,325,201912,123015 -BE,PT,1,011,201912,531383 -BE,PT,1,012,201912,1065003 -BE,PT,1,014,201912,321041 -BE,PT,1,023,201912,82899 -BE,PT,1,030,201912,11023 -BE,PT,1,081,201912,3520 -BE,PT,1,089,201912,2791 -BE,PT,1,101,201912,774286 -BE,PT,1,102,201912,809351 -BE,PT,1,103,201912,3756289 -BE,PT,1,104,201912,937210 -BE,PT,1,105,201912,138961 -BE,PT,1,106,201912,375180 -BE,PT,1,107,201912,171061 -BE,PT,1,108,201912,422391 -BE,PT,1,110,201912,4450264 -BE,PT,1,131,201912,101140 -BE,PT,1,132,201912,490033 -BE,PT,1,139,201912,2156073 -BE,PT,1,141,201912,2644870 -BE,PT,1,143,201912,554224 -BE,PT,1,151,201912,28051 -BE,PT,1,152,201912,2519838 -BE,PT,1,161,201912,249103 -BE,PT,1,162,201912,537144 -BE,PT,1,171,201912,2403834 -BE,PT,1,172,201912,262819 -BE,PT,1,181,201912,340 -BE,PT,1,192,201912,6673767 -BE,PT,1,201,201912,8599448 -BE,PT,1,202,201912,719916 -BE,PT,1,203,201912,751 -BE,PT,1,204,201912,472755 -BE,PT,1,205,201912,409799 -BE,PT,1,206,201912,20451 -BE,PT,1,212,201912,5511380 -BE,PT,1,221,201912,2553597 -BE,PT,1,222,201912,4214485 -BE,PT,1,231,201912,218175 -BE,PT,1,233,201912,167917 -BE,PT,1,234,201912,1219016 -BE,PT,1,236,201912,216095 -BE,PT,1,237,201912,100006 -BE,PT,1,239,201912,10908 -BE,PT,1,241,201912,65846 -BE,PT,1,242,201912,228124 -BE,PT,1,243,201912,120770 -BE,PT,1,244,201912,513207 -BE,PT,1,245,201912,2132 -BE,PT,1,251,201912,1148444 -BE,PT,1,252,201912,290153 -BE,PT,1,254,201912,1237023 -BE,PT,1,257,201912,2797651 -BE,PT,1,259,201912,759370 -BE,PT,1,261,201912,19837 -BE,PT,1,262,201912,29465 -BE,PT,1,263,201912,442589 -BE,PT,1,264,201912,850630 -BE,PT,1,265,201912,1381110 -BE,PT,1,266,201912,69716 -BE,PT,1,267,201912,7002 -BE,PT,1,271,201912,602911 -BE,PT,1,272,201912,2645 -BE,PT,1,273,201912,2832065 -BE,PT,1,274,201912,1104163 -BE,PT,1,275,201912,84118 -BE,PT,1,279,201912,1205768 -BE,PT,1,281,201912,466068 -BE,PT,1,282,201912,674022 -BE,PT,1,283,201912,686041 -BE,PT,1,284,201912,8306 -BE,PT,1,289,201912,303442 -BE,PT,1,291,201912,10903057 -BE,PT,1,292,201912,186229 -BE,PT,1,293,201912,2271145 -BE,PT,1,302,201912,744 -BE,PT,1,303,201912,7083 -BE,PT,1,309,201912,188425 -BE,PT,1,310,201912,609706 -BE,PT,1,323,201912,90384 -BE,PT,1,325,201912,443089 -BE,PT,1,329,201912,123986 -BE,PT,2,011,201912,396629 -BE,PT,2,012,201912,283732 -BE,PT,2,013,201912,28361 -BE,PT,2,014,201912,224445 -BE,PT,2,021,201912,3591 -BE,PT,2,023,201912,463 -BE,PT,2,030,201912,3534 -BE,PT,2,081,201912,65874 -BE,PT,2,089,201912,45782 -BE,PT,2,101,201912,1430720 -BE,PT,2,102,201912,964990 -BE,PT,2,103,201912,4058936 -BE,PT,2,104,201912,1092565 -BE,PT,2,105,201912,1584309 -BE,PT,2,106,201912,307725 -BE,PT,2,107,201912,755510 -BE,PT,2,108,201912,2505013 -BE,PT,2,109,201912,1160819 -BE,PT,2,110,201912,337158 -BE,PT,2,120,201912,2840680 -BE,PT,2,131,201912,113930 -BE,PT,2,132,201912,1103037 -BE,PT,2,139,201912,2452777 -BE,PT,2,141,201912,5368932 -BE,PT,2,143,201912,1749240 -BE,PT,2,151,201912,1367975 -BE,PT,2,152,201912,6214019 -BE,PT,2,161,201912,34 -BE,PT,2,162,201912,310280 -BE,PT,2,171,201912,563991 -BE,PT,2,172,201912,976618 -BE,PT,2,181,201912,16574 -BE,PT,2,192,201912,6446738 -BE,PT,2,201,201912,22122993 -BE,PT,2,202,201912,254701 -BE,PT,2,203,201912,1166406 -BE,PT,2,204,201912,2046266 -BE,PT,2,205,201912,2289859 -BE,PT,2,206,201912,257302 -BE,PT,2,211,201912,169449 -BE,PT,2,212,201912,18936836 -BE,PT,2,221,201912,1696802 -BE,PT,2,222,201912,3763148 -BE,PT,2,231,201912,865135 -BE,PT,2,232,201912,6551 -BE,PT,2,233,201912,25808 -BE,PT,2,234,201912,112495 -BE,PT,2,235,201912,2550 -BE,PT,2,236,201912,161419 -BE,PT,2,237,201912,2293 -BE,PT,2,239,201912,922410 -BE,PT,2,241,201912,2691085 -BE,PT,2,242,201912,91347 -BE,PT,2,243,201912,24401 -BE,PT,2,244,201912,3966455 -BE,PT,2,245,201912,98304 -BE,PT,2,251,201912,457299 -BE,PT,2,252,201912,18966 -BE,PT,2,253,201912,11808 -BE,PT,2,254,201912,390171 -BE,PT,2,257,201912,1756718 -BE,PT,2,259,201912,1330920 -BE,PT,2,261,201912,535741 -BE,PT,2,262,201912,1158899 -BE,PT,2,263,201912,609459 -BE,PT,2,264,201912,1416853 -BE,PT,2,265,201912,849000 -BE,PT,2,266,201912,1282863 -BE,PT,2,267,201912,143542 -BE,PT,2,268,201912,557 -BE,PT,2,271,201912,660392 -BE,PT,2,272,201912,538009 -BE,PT,2,273,201912,754541 -BE,PT,2,274,201912,1092569 -BE,PT,2,275,201912,747860 -BE,PT,2,279,201912,710753 -BE,PT,2,281,201912,4049323 -BE,PT,2,282,201912,4566737 -BE,PT,2,283,201912,418488 -BE,PT,2,284,201912,466733 -BE,PT,2,289,201912,7521514 -BE,PT,2,291,201912,33239337 -BE,PT,2,292,201912,131749 -BE,PT,2,293,201912,3325183 -BE,PT,2,301,201912,102066 -BE,PT,2,303,201912,69070 -BE,PT,2,309,201912,1059545 -BE,PT,2,310,201912,461269 -BE,PT,2,321,201912,201144 -BE,PT,2,322,201912,164931 -BE,PT,2,323,201912,230706 -BE,PT,2,324,201912,130125 -BE,PT,2,325,201912,5580171 -BE,PT,2,329,201912,509195 -BE,PY,1,108,201912,117473 -BE,PY,1,110,201912,29 -BE,PY,1,201,201912,62947 -BE,PY,2,108,201912,7299 -BE,PY,2,110,201912,8232 -BE,PY,2,139,201912,29589 -BE,PY,2,151,201912,37520 -BE,PY,2,171,201912,43325 -BE,PY,2,201,201912,12257 -BE,PY,2,204,201912,8749 -BE,PY,2,205,201912,78173 -BE,PY,2,212,201912,11850 -BE,PY,2,221,201912,22537 -BE,PY,2,222,201912,134256 -BE,PY,2,259,201912,1343706 -BE,PY,2,265,201912,144 -BE,PY,2,266,201912,26968 -BE,PY,2,271,201912,26629 -BE,PY,2,273,201912,176942 -BE,PY,2,274,201912,1171 -BE,PY,2,279,201912,21565 -BE,PY,2,281,201912,2626 -BE,PY,2,282,201912,5568 -BE,PY,2,289,201912,15304 -BE,PY,2,291,201912,160200 -BE,PY,2,293,201912,4544 -BE,PY,2,325,201912,18061 -BE,QA,1,141,201912,387 -BE,QA,1,192,201912,2544568 -BE,QA,1,201,201912,18329937 -BE,QA,1,244,201912,79329 -BE,QA,1,262,201912,1002 -BE,QA,1,265,201912,74478 -BE,QA,1,271,201912,3224 -BE,QA,1,279,201912,7592 -BE,QA,1,282,201912,88279 -BE,QA,1,289,201912,113449 -BE,QA,1,291,201912,6714 -BE,QA,1,293,201912,6463 -BE,QA,1,303,201912,4521 -BE,QA,2,011,201912,3888 -BE,QA,2,012,201912,277 -BE,QA,2,013,201912,34272 -BE,QA,2,014,201912,215014 -BE,QA,2,089,201912,1758 -BE,QA,2,101,201912,255444 -BE,QA,2,103,201912,748976 -BE,QA,2,104,201912,90980 -BE,QA,2,105,201912,301313 -BE,QA,2,106,201912,39369 -BE,QA,2,107,201912,198481 -BE,QA,2,108,201912,494907 -BE,QA,2,109,201912,60625 -BE,QA,2,110,201912,126832 -BE,QA,2,132,201912,19423 -BE,QA,2,139,201912,550258 -BE,QA,2,141,201912,168974 -BE,QA,2,143,201912,1132 -BE,QA,2,151,201912,56182 -BE,QA,2,152,201912,2719 -BE,QA,2,161,201912,166356 -BE,QA,2,162,201912,29790 -BE,QA,2,172,201912,313242 -BE,QA,2,192,201912,532179 -BE,QA,2,201,201912,1246981 -BE,QA,2,202,201912,45853 -BE,QA,2,203,201912,614839 -BE,QA,2,204,201912,1810566 -BE,QA,2,205,201912,14311559 -BE,QA,2,211,201912,67986 -BE,QA,2,212,201912,4697507 -BE,QA,2,221,201912,1707155 -BE,QA,2,222,201912,547310 -BE,QA,2,231,201912,96815 -BE,QA,2,234,201912,2183 -BE,QA,2,239,201912,1884 -BE,QA,2,241,201912,58783 -BE,QA,2,242,201912,89006 -BE,QA,2,244,201912,12004 -BE,QA,2,245,201912,150619 -BE,QA,2,251,201912,478 -BE,QA,2,257,201912,37392 -BE,QA,2,259,201912,371943 -BE,QA,2,261,201912,23 -BE,QA,2,262,201912,16965 -BE,QA,2,263,201912,209955 -BE,QA,2,264,201912,11291 -BE,QA,2,265,201912,301199 -BE,QA,2,266,201912,306532 -BE,QA,2,267,201912,331929 -BE,QA,2,271,201912,61386 -BE,QA,2,272,201912,26779 -BE,QA,2,273,201912,315386 -BE,QA,2,274,201912,340841 -BE,QA,2,275,201912,11447 -BE,QA,2,279,201912,106325 -BE,QA,2,281,201912,593896 -BE,QA,2,282,201912,557520 -BE,QA,2,283,201912,290 -BE,QA,2,284,201912,819 -BE,QA,2,289,201912,122899 -BE,QA,2,291,201912,1267141 -BE,QA,2,293,201912,94915 -BE,QA,2,302,201912,13793 -BE,QA,2,303,201912,3682 -BE,QA,2,309,201912,2444 -BE,QA,2,310,201912,12391 -BE,QA,2,321,201912,23915 -BE,QA,2,325,201912,1137727 -BE,QA,2,329,201912,121632 -BE,QS,2,012,201912,250 -BE,QS,2,014,201912,55 -BE,QS,2,062,201912,434881 -BE,QS,2,101,201912,339 -BE,QS,2,102,201912,217 -BE,QS,2,103,201912,16540 -BE,QS,2,104,201912,67 -BE,QS,2,105,201912,593 -BE,QS,2,107,201912,3737 -BE,QS,2,108,201912,85472 -BE,QS,2,110,201912,151156 -BE,QS,2,120,201912,236290 -BE,QS,2,132,201912,1668 -BE,QS,2,139,201912,128618 -BE,QS,2,141,201912,113834 -BE,QS,2,143,201912,26190 -BE,QS,2,151,201912,131266 -BE,QS,2,152,201912,72011 -BE,QS,2,162,201912,1857 -BE,QS,2,171,201912,49 -BE,QS,2,172,201912,2197 -BE,QS,2,192,201912,175647423 -BE,QS,2,201,201912,49678596 -BE,QS,2,202,201912,662 -BE,QS,2,203,201912,4824 -BE,QS,2,204,201912,211712 -BE,QS,2,205,201912,234018 -BE,QS,2,211,201912,2784 -BE,QS,2,212,201912,1648 -BE,QS,2,221,201912,37064 -BE,QS,2,222,201912,14335 -BE,QS,2,231,201912,4469 -BE,QS,2,234,201912,5709 -BE,QS,2,239,201912,6147 -BE,QS,2,242,201912,162091 -BE,QS,2,243,201912,11221 -BE,QS,2,257,201912,221999 -BE,QS,2,259,201912,20611 -BE,QS,2,261,201912,20343 -BE,QS,2,262,201912,194606 -BE,QS,2,263,201912,320999 -BE,QS,2,264,201912,312700 -BE,QS,2,265,201912,429574 -BE,QS,2,266,201912,193 -BE,QS,2,267,201912,25678 -BE,QS,2,268,201912,44 -BE,QS,2,271,201912,21643 -BE,QS,2,272,201912,2353 -BE,QS,2,273,201912,369 -BE,QS,2,274,201912,34423 -BE,QS,2,275,201912,108193 -BE,QS,2,279,201912,149739 -BE,QS,2,281,201912,504543 -BE,QS,2,282,201912,204983 -BE,QS,2,289,201912,641 -BE,QS,2,309,201912,360 -BE,QS,2,310,201912,147856 -BE,QS,2,321,201912,42714 -BE,QS,2,322,201912,9059 -BE,QS,2,323,201912,31278 -BE,QS,2,324,201912,35963 -BE,QS,2,325,201912,31577 -BE,QS,2,329,201912,12701 -BE,RO,1,011,201912,16959 -BE,RO,1,014,201912,14780 -BE,RO,1,101,201912,928455 -BE,RO,1,102,201912,341 -BE,RO,1,103,201912,167460 -BE,RO,1,104,201912,1254 -BE,RO,1,105,201912,155736 -BE,RO,1,106,201912,20876 -BE,RO,1,107,201912,146054 -BE,RO,1,108,201912,862157 -BE,RO,1,110,201912,248776 -BE,RO,1,120,201912,168003 -BE,RO,1,131,201912,18677 -BE,RO,1,132,201912,138637 -BE,RO,1,139,201912,1673172 -BE,RO,1,141,201912,1887512 -BE,RO,1,143,201912,19393 -BE,RO,1,151,201912,283241 -BE,RO,1,152,201912,10226 -BE,RO,1,161,201912,2493 -BE,RO,1,162,201912,1457027 -BE,RO,1,171,201912,67 -BE,RO,1,172,201912,168396 -BE,RO,1,192,201912,141971 -BE,RO,1,201,201912,1322007 -BE,RO,1,203,201912,34043 -BE,RO,1,204,201912,565180 -BE,RO,1,205,201912,157941 -BE,RO,1,206,201912,425107 -BE,RO,1,212,201912,2147339 -BE,RO,1,221,201912,2570948 -BE,RO,1,222,201912,1232563 -BE,RO,1,231,201912,103362 -BE,RO,1,234,201912,222735 -BE,RO,1,241,201912,461419 -BE,RO,1,242,201912,526298 -BE,RO,1,243,201912,37315 -BE,RO,1,244,201912,535394 -BE,RO,1,245,201912,245 -BE,RO,1,251,201912,42548 -BE,RO,1,252,201912,45471 -BE,RO,1,257,201912,416838 -BE,RO,1,259,201912,1259245 -BE,RO,1,261,201912,1842254 -BE,RO,1,262,201912,858643 -BE,RO,1,263,201912,1697171 -BE,RO,1,264,201912,131268 -BE,RO,1,265,201912,1222057 -BE,RO,1,267,201912,25882 -BE,RO,1,271,201912,3228356 -BE,RO,1,272,201912,5118 -BE,RO,1,273,201912,498752 -BE,RO,1,274,201912,3967535 -BE,RO,1,275,201912,1347859 -BE,RO,1,279,201912,152309 -BE,RO,1,281,201912,4388192 -BE,RO,1,282,201912,2252230 -BE,RO,1,283,201912,591295 -BE,RO,1,284,201912,16997 -BE,RO,1,289,201912,324143 -BE,RO,1,291,201912,14385851 -BE,RO,1,292,201912,519442 -BE,RO,1,293,201912,11829628 -BE,RO,1,303,201912,291614 -BE,RO,1,309,201912,169863 -BE,RO,1,310,201912,7523100 -BE,RO,1,321,201912,17358 -BE,RO,1,324,201912,19423 -BE,RO,1,325,201912,2585909 -BE,RO,1,329,201912,47532 -BE,RO,2,011,201912,276093 -BE,RO,2,012,201912,3767544 -BE,RO,2,013,201912,434 -BE,RO,2,014,201912,56172 -BE,RO,2,023,201912,260 -BE,RO,2,030,201912,885 -BE,RO,2,081,201912,8505 -BE,RO,2,089,201912,6696 -BE,RO,2,101,201912,6023192 -BE,RO,2,102,201912,181300 -BE,RO,2,103,201912,3020409 -BE,RO,2,104,201912,62899 -BE,RO,2,105,201912,1276749 -BE,RO,2,106,201912,490003 -BE,RO,2,107,201912,644567 -BE,RO,2,108,201912,3545436 -BE,RO,2,109,201912,1254245 -BE,RO,2,110,201912,673018 -BE,RO,2,120,201912,2192500 -BE,RO,2,131,201912,162977 -BE,RO,2,132,201912,723206 -BE,RO,2,139,201912,2139411 -BE,RO,2,141,201912,1914619 -BE,RO,2,143,201912,387371 -BE,RO,2,151,201912,751557 -BE,RO,2,152,201912,677071 -BE,RO,2,161,201912,695688 -BE,RO,2,162,201912,283410 -BE,RO,2,171,201912,344650 -BE,RO,2,172,201912,256151 -BE,RO,2,181,201912,5181 -BE,RO,2,192,201912,1743592 -BE,RO,2,201,201912,12390514 -BE,RO,2,202,201912,848294 -BE,RO,2,203,201912,1089582 -BE,RO,2,204,201912,2321711 -BE,RO,2,205,201912,3109049 -BE,RO,2,206,201912,816737 -BE,RO,2,211,201912,771979 -BE,RO,2,212,201912,16530971 -BE,RO,2,221,201912,1837472 -BE,RO,2,222,201912,3546186 -BE,RO,2,231,201912,211439 -BE,RO,2,232,201912,807 -BE,RO,2,233,201912,26414 -BE,RO,2,234,201912,283945 -BE,RO,2,236,201912,96280 -BE,RO,2,237,201912,4094 -BE,RO,2,239,201912,136363 -BE,RO,2,241,201912,2811297 -BE,RO,2,242,201912,107258 -BE,RO,2,243,201912,171679 -BE,RO,2,244,201912,16157745 -BE,RO,2,245,201912,8498 -BE,RO,2,251,201912,440240 -BE,RO,2,252,201912,38250 -BE,RO,2,253,201912,1164 -BE,RO,2,254,201912,65640 -BE,RO,2,257,201912,1179258 -BE,RO,2,259,201912,1031798 -BE,RO,2,261,201912,2721601 -BE,RO,2,262,201912,1599481 -BE,RO,2,263,201912,1464944 -BE,RO,2,264,201912,665456 -BE,RO,2,265,201912,2081280 -BE,RO,2,266,201912,1696300 -BE,RO,2,267,201912,248819 -BE,RO,2,271,201912,936538 -BE,RO,2,272,201912,450708 -BE,RO,2,273,201912,3012042 -BE,RO,2,274,201912,422815 -BE,RO,2,275,201912,302081 -BE,RO,2,279,201912,839656 -BE,RO,2,281,201912,4771126 -BE,RO,2,282,201912,4344509 -BE,RO,2,283,201912,679668 -BE,RO,2,284,201912,1802467 -BE,RO,2,289,201912,3519626 -BE,RO,2,291,201912,28577366 -BE,RO,2,292,201912,213876 -BE,RO,2,293,201912,3213423 -BE,RO,2,301,201912,771 -BE,RO,2,303,201912,599054 -BE,RO,2,309,201912,139914 -BE,RO,2,310,201912,108053 -BE,RO,2,321,201912,80941 -BE,RO,2,322,201912,61492 -BE,RO,2,323,201912,231684 -BE,RO,2,324,201912,265092 -BE,RO,2,325,201912,2349067 -BE,RO,2,329,201912,497957 -BE,RU,1,011,201912,6810122 -BE,RU,1,022,201912,10090 -BE,RU,1,051,201912,12801924 -BE,RU,1,061,201912,62781105 -BE,RU,1,062,201912,38737931 -BE,RU,1,072,201912,4102103 -BE,RU,1,089,201912,170307725 -BE,RU,1,102,201912,977776 -BE,RU,1,106,201912,2932229 -BE,RU,1,108,201912,1206024 -BE,RU,1,110,201912,83972 -BE,RU,1,132,201912,750045 -BE,RU,1,141,201912,3916 -BE,RU,1,143,201912,254 -BE,RU,1,151,201912,1774 -BE,RU,1,152,201912,229 -BE,RU,1,161,201912,1040894 -BE,RU,1,162,201912,3274088 -BE,RU,1,171,201912,2186936 -BE,RU,1,172,201912,537371 -BE,RU,1,192,201912,231967612 -BE,RU,1,201,201912,68353029 -BE,RU,1,204,201912,1975 -BE,RU,1,205,201912,420 -BE,RU,1,211,201912,47783 -BE,RU,1,221,201912,650662 -BE,RU,1,222,201912,42771 -BE,RU,1,231,201912,2208366 -BE,RU,1,234,201912,45 -BE,RU,1,239,201912,189195 -BE,RU,1,241,201912,51845053 -BE,RU,1,243,201912,248795 -BE,RU,1,244,201912,2759900 -BE,RU,1,251,201912,6814 -BE,RU,1,257,201912,63321 -BE,RU,1,259,201912,238124 -BE,RU,1,261,201912,27965 -BE,RU,1,262,201912,10106 -BE,RU,1,263,201912,3680 -BE,RU,1,264,201912,1617 -BE,RU,1,265,201912,165409 -BE,RU,1,267,201912,38649 -BE,RU,1,271,201912,14444 -BE,RU,1,273,201912,251 -BE,RU,1,274,201912,389 -BE,RU,1,275,201912,66999 -BE,RU,1,279,201912,11866 -BE,RU,1,281,201912,55062 -BE,RU,1,282,201912,104466 -BE,RU,1,284,201912,45805 -BE,RU,1,289,201912,42716 -BE,RU,1,291,201912,102738 -BE,RU,1,293,201912,47047 -BE,RU,1,303,201912,150806 -BE,RU,1,309,201912,931 -BE,RU,1,321,201912,31307045 -BE,RU,1,322,201912,2267 -BE,RU,1,323,201912,764 -BE,RU,1,324,201912,5028 -BE,RU,1,325,201912,270664 -BE,RU,1,329,201912,2238 -BE,RU,2,011,201912,3529425 -BE,RU,2,012,201912,6678430 -BE,RU,2,014,201912,128209 -BE,RU,2,023,201912,151 -BE,RU,2,030,201912,673 -BE,RU,2,081,201912,127267 -BE,RU,2,089,201912,2233217 -BE,RU,2,101,201912,178794 -BE,RU,2,103,201912,835946 -BE,RU,2,104,201912,818511 -BE,RU,2,105,201912,232315 -BE,RU,2,106,201912,1097077 -BE,RU,2,107,201912,593331 -BE,RU,2,108,201912,6224878 -BE,RU,2,109,201912,3307222 -BE,RU,2,110,201912,5075102 -BE,RU,2,120,201912,3791950 -BE,RU,2,131,201912,31616 -BE,RU,2,132,201912,287873 -BE,RU,2,139,201912,3288182 -BE,RU,2,141,201912,1227824 -BE,RU,2,143,201912,139498 -BE,RU,2,151,201912,243572 -BE,RU,2,152,201912,13459 -BE,RU,2,162,201912,336934 -BE,RU,2,171,201912,942946 -BE,RU,2,172,201912,1391393 -BE,RU,2,192,201912,4957029 -BE,RU,2,201,201912,34464732 -BE,RU,2,202,201912,2114442 -BE,RU,2,203,201912,2763059 -BE,RU,2,204,201912,10509213 -BE,RU,2,205,201912,13216167 -BE,RU,2,206,201912,1284311 -BE,RU,2,211,201912,1196517 -BE,RU,2,212,201912,24668866 -BE,RU,2,221,201912,2903932 -BE,RU,2,222,201912,6313833 -BE,RU,2,231,201912,318579 -BE,RU,2,232,201912,91753 -BE,RU,2,233,201912,172772 -BE,RU,2,234,201912,140588 -BE,RU,2,236,201912,380969 -BE,RU,2,237,201912,148 -BE,RU,2,239,201912,196907 -BE,RU,2,241,201912,3343558 -BE,RU,2,242,201912,106919 -BE,RU,2,243,201912,76210 -BE,RU,2,244,201912,1093915 -BE,RU,2,245,201912,11788 -BE,RU,2,251,201912,475944 -BE,RU,2,252,201912,125927 -BE,RU,2,253,201912,2990 -BE,RU,2,254,201912,3287 -BE,RU,2,257,201912,1336723 -BE,RU,2,259,201912,1936315 -BE,RU,2,261,201912,9688022 -BE,RU,2,262,201912,1365568 -BE,RU,2,263,201912,726434 -BE,RU,2,264,201912,401179 -BE,RU,2,265,201912,2094689 -BE,RU,2,266,201912,1163699 -BE,RU,2,267,201912,3817514 -BE,RU,2,271,201912,1074071 -BE,RU,2,272,201912,414551 -BE,RU,2,273,201912,1120800 -BE,RU,2,274,201912,693598 -BE,RU,2,275,201912,245889 -BE,RU,2,279,201912,714183 -BE,RU,2,281,201912,12203761 -BE,RU,2,282,201912,10609638 -BE,RU,2,283,201912,993837 -BE,RU,2,284,201912,317218 -BE,RU,2,289,201912,4478807 -BE,RU,2,291,201912,15402424 -BE,RU,2,292,201912,145496 -BE,RU,2,293,201912,9383248 -BE,RU,2,301,201912,66 -BE,RU,2,302,201912,59018 -BE,RU,2,303,201912,9578628 -BE,RU,2,309,201912,50083 -BE,RU,2,310,201912,56209 -BE,RU,2,321,201912,14855 -BE,RU,2,322,201912,36723 -BE,RU,2,323,201912,54926 -BE,RU,2,324,201912,1017613 -BE,RU,2,325,201912,7017234 -BE,RU,2,329,201912,680815 -BE,RW,1,011,201912,96444 -BE,RW,1,012,201912,213201 -BE,RW,1,103,201912,49 -BE,RW,1,104,201912,29 -BE,RW,1,106,201912,4498 -BE,RW,1,108,201912,298 -BE,RW,1,139,201912,1183 -BE,RW,2,014,201912,169668 -BE,RW,2,101,201912,457 -BE,RW,2,102,201912,2433 -BE,RW,2,103,201912,14518 -BE,RW,2,104,201912,105930 -BE,RW,2,105,201912,753689 -BE,RW,2,106,201912,19242 -BE,RW,2,107,201912,21580 -BE,RW,2,108,201912,279298 -BE,RW,2,109,201912,43217 -BE,RW,2,110,201912,26875 -BE,RW,2,132,201912,41219 -BE,RW,2,139,201912,89351 -BE,RW,2,141,201912,114671 -BE,RW,2,152,201912,2210 -BE,RW,2,172,201912,24733 -BE,RW,2,192,201912,26793 -BE,RW,2,201,201912,58621 -BE,RW,2,202,201912,1245 -BE,RW,2,203,201912,250 -BE,RW,2,204,201912,55028 -BE,RW,2,205,201912,39734 -BE,RW,2,211,201912,3756 -BE,RW,2,212,201912,574752 -BE,RW,2,221,201912,743 -BE,RW,2,222,201912,34112 -BE,RW,2,231,201912,3505 -BE,RW,2,234,201912,1620 -BE,RW,2,244,201912,10 -BE,RW,2,251,201912,324 -BE,RW,2,257,201912,10240 -BE,RW,2,259,201912,103624 -BE,RW,2,262,201912,2410 -BE,RW,2,263,201912,455 -BE,RW,2,265,201912,3279 -BE,RW,2,266,201912,2056 -BE,RW,2,271,201912,46936 -BE,RW,2,272,201912,14253 -BE,RW,2,273,201912,60167 -BE,RW,2,275,201912,607 -BE,RW,2,279,201912,5488 -BE,RW,2,281,201912,70173 -BE,RW,2,282,201912,153305 -BE,RW,2,289,201912,689262 -BE,RW,2,291,201912,421335 -BE,RW,2,293,201912,37211 -BE,RW,2,309,201912,945 -BE,RW,2,310,201912,45773 -BE,RW,2,323,201912,15 -BE,RW,2,324,201912,5753 -BE,RW,2,325,201912,96803 -BE,RW,2,329,201912,3807 -BE,SA,1,012,201912,111083 -BE,SA,1,072,201912,916682 -BE,SA,1,089,201912,615499 -BE,SA,1,103,201912,3135 -BE,SA,1,107,201912,13972 -BE,SA,1,108,201912,28 -BE,SA,1,132,201912,136905 -BE,SA,1,139,201912,13375 -BE,SA,1,141,201912,1970 -BE,SA,1,192,201912,117805389 -BE,SA,1,201,201912,103084666 -BE,SA,1,204,201912,1024 -BE,SA,1,205,201912,998607 -BE,SA,1,206,201912,47720 -BE,SA,1,211,201912,212008 -BE,SA,1,212,201912,134678 -BE,SA,1,221,201912,113612 -BE,SA,1,222,201912,149225 -BE,SA,1,242,201912,321185 -BE,SA,1,244,201912,3894 -BE,SA,1,262,201912,9355 -BE,SA,1,263,201912,60 -BE,SA,1,264,201912,124716 -BE,SA,1,265,201912,40903 -BE,SA,1,271,201912,9877 -BE,SA,1,279,201912,1663 -BE,SA,1,281,201912,417624 -BE,SA,1,282,201912,265987 -BE,SA,1,289,201912,203318 -BE,SA,1,303,201912,247 -BE,SA,1,325,201912,133957 -BE,SA,2,011,201912,167607 -BE,SA,2,012,201912,12089 -BE,SA,2,013,201912,34283 -BE,SA,2,014,201912,1055996 -BE,SA,2,030,201912,1331 -BE,SA,2,081,201912,76314 -BE,SA,2,089,201912,14396 -BE,SA,2,101,201912,456 -BE,SA,2,103,201912,6718950 -BE,SA,2,104,201912,113024 -BE,SA,2,105,201912,3492419 -BE,SA,2,106,201912,1098730 -BE,SA,2,107,201912,1058079 -BE,SA,2,108,201912,2664560 -BE,SA,2,109,201912,469075 -BE,SA,2,110,201912,197978 -BE,SA,2,132,201912,60080 -BE,SA,2,139,201912,665222 -BE,SA,2,141,201912,142983 -BE,SA,2,143,201912,15 -BE,SA,2,151,201912,310031 -BE,SA,2,162,201912,201715 -BE,SA,2,171,201912,2622937 -BE,SA,2,172,201912,268055 -BE,SA,2,192,201912,2079796 -BE,SA,2,201,201912,15544030 -BE,SA,2,202,201912,110334 -BE,SA,2,203,201912,852611 -BE,SA,2,204,201912,5225896 -BE,SA,2,205,201912,8750689 -BE,SA,2,206,201912,78471 -BE,SA,2,211,201912,1552369 -BE,SA,2,212,201912,25234343 -BE,SA,2,221,201912,615326 -BE,SA,2,222,201912,3223290 -BE,SA,2,231,201912,540792 -BE,SA,2,232,201912,40410 -BE,SA,2,233,201912,58663 -BE,SA,2,234,201912,9872 -BE,SA,2,239,201912,79268 -BE,SA,2,241,201912,5320532 -BE,SA,2,242,201912,4805879 -BE,SA,2,243,201912,401047 -BE,SA,2,244,201912,1914153 -BE,SA,2,251,201912,479027 -BE,SA,2,252,201912,34882 -BE,SA,2,254,201912,365016 -BE,SA,2,257,201912,944610 -BE,SA,2,259,201912,427246 -BE,SA,2,261,201912,7813 -BE,SA,2,262,201912,683861 -BE,SA,2,263,201912,125541 -BE,SA,2,264,201912,29236 -BE,SA,2,265,201912,2758418 -BE,SA,2,266,201912,2600438 -BE,SA,2,267,201912,347274 -BE,SA,2,271,201912,1066258 -BE,SA,2,272,201912,18511 -BE,SA,2,273,201912,235397 -BE,SA,2,274,201912,164447 -BE,SA,2,275,201912,1097041 -BE,SA,2,279,201912,1930005 -BE,SA,2,281,201912,6469982 -BE,SA,2,282,201912,7654855 -BE,SA,2,283,201912,339405 -BE,SA,2,284,201912,870360 -BE,SA,2,289,201912,937650 -BE,SA,2,291,201912,3296039 -BE,SA,2,292,201912,43025 -BE,SA,2,293,201912,110840 -BE,SA,2,303,201912,83763 -BE,SA,2,309,201912,34280 -BE,SA,2,310,201912,5278 -BE,SA,2,321,201912,56810 -BE,SA,2,322,201912,21 -BE,SA,2,323,201912,1914 -BE,SA,2,325,201912,12674270 -BE,SA,2,329,201912,1189962 -BE,SC,1,030,201912,15009 -BE,SC,1,293,201912,3 -BE,SC,2,011,201912,20588 -BE,SC,2,012,201912,1818 -BE,SC,2,014,201912,186 -BE,SC,2,101,201912,345 -BE,SC,2,102,201912,226 -BE,SC,2,103,201912,72275 -BE,SC,2,104,201912,506 -BE,SC,2,105,201912,42615 -BE,SC,2,106,201912,2990 -BE,SC,2,107,201912,16494 -BE,SC,2,108,201912,10167 -BE,SC,2,110,201912,35898 -BE,SC,2,139,201912,19472 -BE,SC,2,141,201912,311 -BE,SC,2,162,201912,2314 -BE,SC,2,172,201912,397 -BE,SC,2,192,201912,1249 -BE,SC,2,204,201912,23951 -BE,SC,2,205,201912,3729 -BE,SC,2,212,201912,27803 -BE,SC,2,221,201912,3557 -BE,SC,2,222,201912,4018 -BE,SC,2,231,201912,2517 -BE,SC,2,234,201912,170 -BE,SC,2,239,201912,471 -BE,SC,2,242,201912,50 -BE,SC,2,244,201912,3817 -BE,SC,2,257,201912,519 -BE,SC,2,259,201912,4112 -BE,SC,2,271,201912,1575 -BE,SC,2,274,201912,1031 -BE,SC,2,275,201912,10579 -BE,SC,2,281,201912,3952 -BE,SC,2,282,201912,11440 -BE,SC,2,289,201912,25 -BE,SC,2,293,201912,1700 -BE,SC,2,324,201912,12029 -BE,SC,2,329,201912,550 -BE,SD,1,023,201912,181537 -BE,SD,1,244,201912,177883 -BE,SD,2,089,201912,18865 -BE,SD,2,103,201912,20628 -BE,SD,2,105,201912,945159 -BE,SD,2,107,201912,236334 -BE,SD,2,108,201912,141049 -BE,SD,2,139,201912,1181 -BE,SD,2,162,201912,2824 -BE,SD,2,171,201912,113384 -BE,SD,2,192,201912,110 -BE,SD,2,201,201912,151370 -BE,SD,2,202,201912,13648 -BE,SD,2,204,201912,57318 -BE,SD,2,205,201912,165200 -BE,SD,2,221,201912,6285 -BE,SD,2,222,201912,177666 -BE,SD,2,231,201912,6 -BE,SD,2,242,201912,81 -BE,SD,2,257,201912,1463 -BE,SD,2,259,201912,3875 -BE,SD,2,265,201912,15096 -BE,SD,2,271,201912,2547 -BE,SD,2,273,201912,353 -BE,SD,2,275,201912,375 -BE,SD,2,281,201912,10276 -BE,SD,2,282,201912,43649 -BE,SD,2,283,201912,453482 -BE,SD,2,289,201912,51245 -BE,SD,2,291,201912,162045 -BE,SD,2,293,201912,13325 -BE,SD,2,310,201912,662 -BE,SD,2,325,201912,76947 -BE,SE,1,011,201912,1268150 -BE,SE,1,012,201912,186363 -BE,SE,1,014,201912,8908 -BE,SE,1,030,201912,765193 -BE,SE,1,071,201912,7619883 -BE,SE,1,072,201912,9059368 -BE,SE,1,081,201912,11172 -BE,SE,1,089,201912,100609 -BE,SE,1,101,201912,104829 -BE,SE,1,102,201912,4607235 -BE,SE,1,103,201912,337334 -BE,SE,1,104,201912,1119651 -BE,SE,1,105,201912,96891 -BE,SE,1,106,201912,356620 -BE,SE,1,107,201912,835188 -BE,SE,1,108,201912,1030680 -BE,SE,1,109,201912,30673 -BE,SE,1,110,201912,991801 -BE,SE,1,131,201912,5362 -BE,SE,1,132,201912,115226 -BE,SE,1,139,201912,364328 -BE,SE,1,141,201912,1282612 -BE,SE,1,143,201912,99387 -BE,SE,1,151,201912,72479 -BE,SE,1,152,201912,297426 -BE,SE,1,161,201912,3238338 -BE,SE,1,162,201912,330877 -BE,SE,1,171,201912,15634626 -BE,SE,1,172,201912,1159328 -BE,SE,1,192,201912,35365531 -BE,SE,1,201,201912,70956851 -BE,SE,1,202,201912,95712 -BE,SE,1,203,201912,272666 -BE,SE,1,204,201912,920585 -BE,SE,1,205,201912,2343447 -BE,SE,1,211,201912,8689574 -BE,SE,1,212,201912,12303619 -BE,SE,1,221,201912,2001943 -BE,SE,1,222,201912,3703080 -BE,SE,1,231,201912,518886 -BE,SE,1,234,201912,18917 -BE,SE,1,239,201912,69286 -BE,SE,1,241,201912,9955743 -BE,SE,1,242,201912,582094 -BE,SE,1,243,201912,983574 -BE,SE,1,244,201912,1382764 -BE,SE,1,245,201912,8557 -BE,SE,1,251,201912,912250 -BE,SE,1,252,201912,162535 -BE,SE,1,253,201912,12794 -BE,SE,1,254,201912,30024 -BE,SE,1,257,201912,10351411 -BE,SE,1,259,201912,4260852 -BE,SE,1,261,201912,1112258 -BE,SE,1,262,201912,448938 -BE,SE,1,263,201912,2645120 -BE,SE,1,264,201912,686185 -BE,SE,1,265,201912,3864123 -BE,SE,1,266,201912,22372 -BE,SE,1,267,201912,396045 -BE,SE,1,268,201912,372 -BE,SE,1,271,201912,14659655 -BE,SE,1,272,201912,564079 -BE,SE,1,273,201912,2244639 -BE,SE,1,274,201912,929352 -BE,SE,1,275,201912,222321 -BE,SE,1,279,201912,2551480 -BE,SE,1,281,201912,21866057 -BE,SE,1,282,201912,42289439 -BE,SE,1,283,201912,358139 -BE,SE,1,284,201912,1824101 -BE,SE,1,289,201912,14250819 -BE,SE,1,291,201912,90689173 -BE,SE,1,292,201912,15853309 -BE,SE,1,293,201912,80399439 -BE,SE,1,302,201912,113595 -BE,SE,1,303,201912,3694 -BE,SE,1,309,201912,207397 -BE,SE,1,310,201912,3905742 -BE,SE,1,321,201912,90657 -BE,SE,1,322,201912,8328 -BE,SE,1,323,201912,82260 -BE,SE,1,324,201912,42736 -BE,SE,1,325,201912,1840560 -BE,SE,1,329,201912,350852 -BE,SE,2,011,201912,778179 -BE,SE,2,012,201912,2752461 -BE,SE,2,013,201912,118012 -BE,SE,2,014,201912,858704 -BE,SE,2,030,201912,790 -BE,SE,2,072,201912,47370 -BE,SE,2,081,201912,330768 -BE,SE,2,089,201912,341286 -BE,SE,2,101,201912,1307231 -BE,SE,2,102,201912,466226 -BE,SE,2,103,201912,7899448 -BE,SE,2,104,201912,1220727 -BE,SE,2,105,201912,1689067 -BE,SE,2,106,201912,2270966 -BE,SE,2,107,201912,3795645 -BE,SE,2,108,201912,8693209 -BE,SE,2,109,201912,1139695 -BE,SE,2,110,201912,1612394 -BE,SE,2,120,201912,509795 -BE,SE,2,131,201912,17711 -BE,SE,2,132,201912,292292 -BE,SE,2,139,201912,3073713 -BE,SE,2,141,201912,6852046 -BE,SE,2,142,201912,513 -BE,SE,2,143,201912,1664102 -BE,SE,2,151,201912,1190334 -BE,SE,2,152,201912,8371496 -BE,SE,2,161,201912,47592 -BE,SE,2,162,201912,2992866 -BE,SE,2,171,201912,2401481 -BE,SE,2,172,201912,1432582 -BE,SE,2,192,201912,7066598 -BE,SE,2,201,201912,34683823 -BE,SE,2,202,201912,217326 -BE,SE,2,203,201912,1893538 -BE,SE,2,204,201912,6104226 -BE,SE,2,205,201912,5765380 -BE,SE,2,206,201912,30701 -BE,SE,2,211,201912,121197 -BE,SE,2,212,201912,36962450 -BE,SE,2,221,201912,13713401 -BE,SE,2,222,201912,6795719 -BE,SE,2,231,201912,1988338 -BE,SE,2,233,201912,1046 -BE,SE,2,234,201912,429106 -BE,SE,2,236,201912,2698 -BE,SE,2,237,201912,393 -BE,SE,2,239,201912,1677925 -BE,SE,2,241,201912,13845270 -BE,SE,2,242,201912,388813 -BE,SE,2,243,201912,591635 -BE,SE,2,244,201912,2623253 -BE,SE,2,245,201912,13518 -BE,SE,2,251,201912,572656 -BE,SE,2,252,201912,55023 -BE,SE,2,253,201912,83 -BE,SE,2,254,201912,93272 -BE,SE,2,257,201912,4042662 -BE,SE,2,259,201912,3756436 -BE,SE,2,261,201912,3305155 -BE,SE,2,262,201912,2805260 -BE,SE,2,263,201912,4902195 -BE,SE,2,264,201912,5080669 -BE,SE,2,265,201912,4619343 -BE,SE,2,266,201912,1173908 -BE,SE,2,267,201912,315910 -BE,SE,2,268,201912,20382 -BE,SE,2,271,201912,2145675 -BE,SE,2,272,201912,878923 -BE,SE,2,273,201912,1321851 -BE,SE,2,274,201912,1118737 -BE,SE,2,275,201912,2375709 -BE,SE,2,279,201912,2924998 -BE,SE,2,281,201912,13425616 -BE,SE,2,282,201912,14585875 -BE,SE,2,283,201912,3283580 -BE,SE,2,284,201912,3721994 -BE,SE,2,289,201912,3358725 -BE,SE,2,291,201912,197042872 -BE,SE,2,292,201912,405486 -BE,SE,2,293,201912,22038281 -BE,SE,2,301,201912,1812 -BE,SE,2,302,201912,334 -BE,SE,2,303,201912,17272 -BE,SE,2,309,201912,748258 -BE,SE,2,310,201912,800668 -BE,SE,2,321,201912,726838 -BE,SE,2,322,201912,347828 -BE,SE,2,323,201912,374461 -BE,SE,2,324,201912,178223 -BE,SE,2,325,201912,14782853 -BE,SE,2,329,201912,611874 -BE,SG,1,012,201912,2033 -BE,SG,1,014,201912,437 -BE,SG,1,030,201912,18212 -BE,SG,1,089,201912,3327873 -BE,SG,1,106,201912,3484 -BE,SG,1,107,201912,211303 -BE,SG,1,108,201912,220429 -BE,SG,1,110,201912,11763 -BE,SG,1,139,201912,23764 -BE,SG,1,141,201912,113146 -BE,SG,1,143,201912,846 -BE,SG,1,151,201912,21137 -BE,SG,1,162,201912,230 -BE,SG,1,172,201912,739 -BE,SG,1,192,201912,250 -BE,SG,1,201,201912,67189256 -BE,SG,1,203,201912,1641 -BE,SG,1,204,201912,80505 -BE,SG,1,205,201912,1973385 -BE,SG,1,211,201912,29619400 -BE,SG,1,212,201912,35438575 -BE,SG,1,221,201912,86263 -BE,SG,1,222,201912,1311169 -BE,SG,1,231,201912,1072 -BE,SG,1,234,201912,284 -BE,SG,1,239,201912,1105 -BE,SG,1,242,201912,392769 -BE,SG,1,244,201912,499149 -BE,SG,1,251,201912,3574 -BE,SG,1,257,201912,78118 -BE,SG,1,259,201912,24267 -BE,SG,1,261,201912,1066585 -BE,SG,1,262,201912,413906 -BE,SG,1,263,201912,188046 -BE,SG,1,264,201912,225544 -BE,SG,1,265,201912,5979400 -BE,SG,1,266,201912,92885 -BE,SG,1,267,201912,218656 -BE,SG,1,271,201912,162461 -BE,SG,1,272,201912,7669 -BE,SG,1,273,201912,26213 -BE,SG,1,274,201912,39791 -BE,SG,1,275,201912,10985 -BE,SG,1,279,201912,79983 -BE,SG,1,281,201912,192632 -BE,SG,1,282,201912,509426 -BE,SG,1,284,201912,130172 -BE,SG,1,289,201912,18046314 -BE,SG,1,293,201912,161634 -BE,SG,1,303,201912,102060 -BE,SG,1,309,201912,17646 -BE,SG,1,310,201912,3018 -BE,SG,1,321,201912,9966 -BE,SG,1,322,201912,530 -BE,SG,1,323,201912,1068 -BE,SG,1,324,201912,25483 -BE,SG,1,325,201912,8206093 -BE,SG,1,329,201912,125911 -BE,SG,2,011,201912,760 -BE,SG,2,012,201912,38214 -BE,SG,2,081,201912,14096 -BE,SG,2,089,201912,1377793 -BE,SG,2,101,201912,485135 -BE,SG,2,103,201912,292352 -BE,SG,2,105,201912,982012 -BE,SG,2,106,201912,631805 -BE,SG,2,107,201912,262857 -BE,SG,2,108,201912,741901 -BE,SG,2,109,201912,297791 -BE,SG,2,110,201912,502760 -BE,SG,2,132,201912,58610 -BE,SG,2,139,201912,381195 -BE,SG,2,141,201912,135863 -BE,SG,2,143,201912,19657 -BE,SG,2,151,201912,110511 -BE,SG,2,152,201912,3290 -BE,SG,2,162,201912,31179 -BE,SG,2,171,201912,44612 -BE,SG,2,172,201912,72358 -BE,SG,2,192,201912,12329847 -BE,SG,2,201,201912,17439073 -BE,SG,2,202,201912,8448 -BE,SG,2,203,201912,235694 -BE,SG,2,204,201912,4438832 -BE,SG,2,205,201912,3471613 -BE,SG,2,211,201912,490517 -BE,SG,2,212,201912,9953272 -BE,SG,2,221,201912,754444 -BE,SG,2,222,201912,1187251 -BE,SG,2,231,201912,179692 -BE,SG,2,232,201912,5576 -BE,SG,2,234,201912,34054 -BE,SG,2,235,201912,3606 -BE,SG,2,236,201912,5892 -BE,SG,2,239,201912,420358 -BE,SG,2,241,201912,1631090 -BE,SG,2,242,201912,884643 -BE,SG,2,243,201912,1365 -BE,SG,2,244,201912,2189751 -BE,SG,2,245,201912,236 -BE,SG,2,251,201912,48463 -BE,SG,2,252,201912,19856 -BE,SG,2,253,201912,1476 -BE,SG,2,257,201912,471666 -BE,SG,2,259,201912,411979 -BE,SG,2,261,201912,682444 -BE,SG,2,262,201912,540664 -BE,SG,2,263,201912,414984 -BE,SG,2,264,201912,426115 -BE,SG,2,265,201912,3123708 -BE,SG,2,266,201912,586470 -BE,SG,2,267,201912,53793 -BE,SG,2,271,201912,286374 -BE,SG,2,272,201912,54832 -BE,SG,2,273,201912,879620 -BE,SG,2,274,201912,146161 -BE,SG,2,275,201912,273613 -BE,SG,2,279,201912,629978 -BE,SG,2,281,201912,3018903 -BE,SG,2,282,201912,4270011 -BE,SG,2,283,201912,227 -BE,SG,2,284,201912,164554 -BE,SG,2,289,201912,1117273 -BE,SG,2,291,201912,345430 -BE,SG,2,292,201912,5337 -BE,SG,2,293,201912,1472173 -BE,SG,2,302,201912,22590 -BE,SG,2,303,201912,398892 -BE,SG,2,309,201912,11472 -BE,SG,2,310,201912,69453 -BE,SG,2,321,201912,521855 -BE,SG,2,322,201912,2050 -BE,SG,2,323,201912,118817 -BE,SG,2,324,201912,115343 -BE,SG,2,325,201912,10906559 -BE,SG,2,329,201912,118455 -BE,SI,1,011,201912,36797 -BE,SI,1,012,201912,166682 -BE,SI,1,101,201912,310034 -BE,SI,1,103,201912,3306 -BE,SI,1,108,201912,209271 -BE,SI,1,110,201912,11159 -BE,SI,1,131,201912,16686 -BE,SI,1,132,201912,5283 -BE,SI,1,139,201912,216186 -BE,SI,1,141,201912,15679 -BE,SI,1,151,201912,46194 -BE,SI,1,162,201912,77461 -BE,SI,1,171,201912,182320 -BE,SI,1,172,201912,142013 -BE,SI,1,192,201912,467 -BE,SI,1,201,201912,185342 -BE,SI,1,202,201912,204044 -BE,SI,1,203,201912,85798 -BE,SI,1,204,201912,697885 -BE,SI,1,205,201912,203128 -BE,SI,1,206,201912,1041 -BE,SI,1,212,201912,3613756 -BE,SI,1,221,201912,461066 -BE,SI,1,222,201912,1162706 -BE,SI,1,231,201912,15293 -BE,SI,1,236,201912,7696 -BE,SI,1,239,201912,30957 -BE,SI,1,241,201912,120350 -BE,SI,1,242,201912,154246 -BE,SI,1,243,201912,49076 -BE,SI,1,244,201912,208843 -BE,SI,1,245,201912,15782 -BE,SI,1,251,201912,413544 -BE,SI,1,257,201912,199335 -BE,SI,1,259,201912,116111 -BE,SI,1,261,201912,203141 -BE,SI,1,262,201912,6054 -BE,SI,1,263,201912,47701 -BE,SI,1,264,201912,45 -BE,SI,1,265,201912,38017 -BE,SI,1,271,201912,229099 -BE,SI,1,272,201912,539734 -BE,SI,1,273,201912,41871 -BE,SI,1,274,201912,1198927 -BE,SI,1,275,201912,7212 -BE,SI,1,279,201912,85177 -BE,SI,1,281,201912,209446 -BE,SI,1,282,201912,1471305 -BE,SI,1,283,201912,10263 -BE,SI,1,284,201912,59421 -BE,SI,1,289,201912,681077 -BE,SI,1,291,201912,5837054 -BE,SI,1,292,201912,51731 -BE,SI,1,293,201912,336093 -BE,SI,1,309,201912,24043 -BE,SI,1,310,201912,603603 -BE,SI,1,323,201912,4522 -BE,SI,1,324,201912,591048 -BE,SI,1,325,201912,276546 -BE,SI,1,329,201912,20317 -BE,SI,2,011,201912,4896 -BE,SI,2,012,201912,163583 -BE,SI,2,013,201912,623 -BE,SI,2,014,201912,84 -BE,SI,2,021,201912,347 -BE,SI,2,030,201912,709 -BE,SI,2,081,201912,141615 -BE,SI,2,089,201912,82918 -BE,SI,2,101,201912,767500 -BE,SI,2,103,201912,672023 -BE,SI,2,104,201912,122217 -BE,SI,2,105,201912,176202 -BE,SI,2,106,201912,187546 -BE,SI,2,107,201912,213406 -BE,SI,2,108,201912,527543 -BE,SI,2,109,201912,151340 -BE,SI,2,110,201912,67225 -BE,SI,2,131,201912,149279 -BE,SI,2,132,201912,179475 -BE,SI,2,139,201912,283801 -BE,SI,2,141,201912,850927 -BE,SI,2,142,201912,430 -BE,SI,2,143,201912,125617 -BE,SI,2,151,201912,179670 -BE,SI,2,152,201912,500614 -BE,SI,2,161,201912,67 -BE,SI,2,162,201912,41979 -BE,SI,2,171,201912,490066 -BE,SI,2,172,201912,346510 -BE,SI,2,192,201912,707248 -BE,SI,2,201,201912,8599682 -BE,SI,2,202,201912,115379 -BE,SI,2,203,201912,336370 -BE,SI,2,204,201912,213176 -BE,SI,2,205,201912,2051782 -BE,SI,2,206,201912,481258 -BE,SI,2,211,201912,22940 -BE,SI,2,212,201912,774199 -BE,SI,2,221,201912,579576 -BE,SI,2,222,201912,1429930 -BE,SI,2,231,201912,167221 -BE,SI,2,232,201912,759 -BE,SI,2,233,201912,1463 -BE,SI,2,234,201912,5810 -BE,SI,2,236,201912,369 -BE,SI,2,239,201912,32434 -BE,SI,2,241,201912,1012544 -BE,SI,2,242,201912,15113 -BE,SI,2,243,201912,44336 -BE,SI,2,244,201912,1396501 -BE,SI,2,251,201912,93493 -BE,SI,2,252,201912,19612 -BE,SI,2,254,201912,12257 -BE,SI,2,257,201912,654965 -BE,SI,2,259,201912,373493 -BE,SI,2,261,201912,319632 -BE,SI,2,262,201912,218240 -BE,SI,2,263,201912,737846 -BE,SI,2,264,201912,325723 -BE,SI,2,265,201912,244857 -BE,SI,2,266,201912,413781 -BE,SI,2,267,201912,29748 -BE,SI,2,271,201912,292693 -BE,SI,2,272,201912,86307 -BE,SI,2,273,201912,159787 -BE,SI,2,274,201912,95003 -BE,SI,2,275,201912,45747 -BE,SI,2,279,201912,284465 -BE,SI,2,281,201912,885719 -BE,SI,2,282,201912,893800 -BE,SI,2,283,201912,188654 -BE,SI,2,284,201912,1764714 -BE,SI,2,289,201912,1171686 -BE,SI,2,291,201912,7879579 -BE,SI,2,292,201912,135364 -BE,SI,2,293,201912,381038 -BE,SI,2,301,201912,126548 -BE,SI,2,303,201912,21112 -BE,SI,2,309,201912,335759 -BE,SI,2,310,201912,62366 -BE,SI,2,321,201912,83316 -BE,SI,2,323,201912,58416 -BE,SI,2,324,201912,226017 -BE,SI,2,325,201912,4069194 -BE,SI,2,329,201912,863471 -BE,SK,1,011,201912,52131 -BE,SK,1,013,201912,227372 -BE,SK,1,014,201912,890 -BE,SK,1,089,201912,118963 -BE,SK,1,101,201912,310523 -BE,SK,1,103,201912,56689 -BE,SK,1,105,201912,666719 -BE,SK,1,106,201912,476576 -BE,SK,1,107,201912,381 -BE,SK,1,108,201912,1006421 -BE,SK,1,110,201912,121 -BE,SK,1,139,201912,54842 -BE,SK,1,141,201912,156278 -BE,SK,1,143,201912,471 -BE,SK,1,151,201912,26804 -BE,SK,1,152,201912,43689 -BE,SK,1,161,201912,835 -BE,SK,1,162,201912,401882 -BE,SK,1,171,201912,137049 -BE,SK,1,172,201912,615362 -BE,SK,1,201,201912,194070 -BE,SK,1,203,201912,8838 -BE,SK,1,204,201912,352576 -BE,SK,1,205,201912,96558 -BE,SK,1,206,201912,108951 -BE,SK,1,212,201912,186227 -BE,SK,1,221,201912,4238927 -BE,SK,1,222,201912,1533028 -BE,SK,1,231,201912,499314 -BE,SK,1,234,201912,11300 -BE,SK,1,236,201912,67 -BE,SK,1,239,201912,11009 -BE,SK,1,241,201912,212465 -BE,SK,1,242,201912,126392 -BE,SK,1,243,201912,287955 -BE,SK,1,244,201912,14099946 -BE,SK,1,251,201912,409925 -BE,SK,1,252,201912,426 -BE,SK,1,257,201912,319807 -BE,SK,1,259,201912,1426512 -BE,SK,1,261,201912,50165 -BE,SK,1,262,201912,3572385 -BE,SK,1,263,201912,210713 -BE,SK,1,264,201912,1088501 -BE,SK,1,265,201912,397049 -BE,SK,1,266,201912,143468 -BE,SK,1,267,201912,95365 -BE,SK,1,271,201912,13262814 -BE,SK,1,273,201912,596845 -BE,SK,1,274,201912,1110008 -BE,SK,1,275,201912,1309125 -BE,SK,1,279,201912,1707289 -BE,SK,1,281,201912,2426177 -BE,SK,1,282,201912,2141506 -BE,SK,1,283,201912,831464 -BE,SK,1,284,201912,1626666 -BE,SK,1,289,201912,1626016 -BE,SK,1,291,201912,41703849 -BE,SK,1,292,201912,24441 -BE,SK,1,293,201912,3433146 -BE,SK,1,302,201912,167 -BE,SK,1,303,201912,655 -BE,SK,1,310,201912,2293756 -BE,SK,1,324,201912,1368 -BE,SK,1,325,201912,114648 -BE,SK,1,329,201912,8499 -BE,SK,2,011,201912,60491 -BE,SK,2,012,201912,999002 -BE,SK,2,013,201912,6625 -BE,SK,2,014,201912,1321 -BE,SK,2,021,201912,30934 -BE,SK,2,051,201912,1231 -BE,SK,2,081,201912,1280 -BE,SK,2,089,201912,19266 -BE,SK,2,101,201912,2476110 -BE,SK,2,103,201912,587747 -BE,SK,2,104,201912,138930 -BE,SK,2,105,201912,159134 -BE,SK,2,106,201912,87982 -BE,SK,2,107,201912,149382 -BE,SK,2,108,201912,1194927 -BE,SK,2,109,201912,131659 -BE,SK,2,110,201912,225856 -BE,SK,2,120,201912,25211 -BE,SK,2,131,201912,52983 -BE,SK,2,132,201912,222465 -BE,SK,2,139,201912,649867 -BE,SK,2,141,201912,1687058 -BE,SK,2,143,201912,164644 -BE,SK,2,151,201912,614520 -BE,SK,2,152,201912,757443 -BE,SK,2,161,201912,44540 -BE,SK,2,162,201912,93890 -BE,SK,2,171,201912,67064 -BE,SK,2,172,201912,301991 -BE,SK,2,192,201912,300898 -BE,SK,2,201,201912,9115542 -BE,SK,2,202,201912,139989 -BE,SK,2,203,201912,453468 -BE,SK,2,204,201912,601624 -BE,SK,2,205,201912,1098157 -BE,SK,2,206,201912,2050560 -BE,SK,2,211,201912,16448 -BE,SK,2,212,201912,2406999 -BE,SK,2,221,201912,364140 -BE,SK,2,222,201912,1845483 -BE,SK,2,231,201912,701363 -BE,SK,2,232,201912,1020 -BE,SK,2,233,201912,16175 -BE,SK,2,234,201912,40419 -BE,SK,2,236,201912,52 -BE,SK,2,237,201912,24467 -BE,SK,2,239,201912,118959 -BE,SK,2,241,201912,3593749 -BE,SK,2,242,201912,188919 -BE,SK,2,243,201912,125157 -BE,SK,2,244,201912,1094255 -BE,SK,2,245,201912,10046 -BE,SK,2,251,201912,148126 -BE,SK,2,252,201912,4181 -BE,SK,2,253,201912,1211 -BE,SK,2,254,201912,23235 -BE,SK,2,257,201912,905118 -BE,SK,2,259,201912,786391 -BE,SK,2,261,201912,2199492 -BE,SK,2,262,201912,695703 -BE,SK,2,263,201912,141836 -BE,SK,2,264,201912,794296 -BE,SK,2,265,201912,577732 -BE,SK,2,266,201912,584241 -BE,SK,2,267,201912,289487 -BE,SK,2,271,201912,627286 -BE,SK,2,272,201912,147312 -BE,SK,2,273,201912,321706 -BE,SK,2,274,201912,566613 -BE,SK,2,275,201912,264140 -BE,SK,2,279,201912,2785969 -BE,SK,2,281,201912,1070444 -BE,SK,2,282,201912,2386785 -BE,SK,2,283,201912,451893 -BE,SK,2,284,201912,600818 -BE,SK,2,289,201912,1112173 -BE,SK,2,291,201912,13439523 -BE,SK,2,292,201912,28391 -BE,SK,2,293,201912,8619459 -BE,SK,2,301,201912,169 -BE,SK,2,303,201912,259116 -BE,SK,2,309,201912,134229 -BE,SK,2,310,201912,147509 -BE,SK,2,321,201912,345191 -BE,SK,2,322,201912,273441 -BE,SK,2,323,201912,91896 -BE,SK,2,324,201912,138584 -BE,SK,2,325,201912,1893283 -BE,SK,2,329,201912,167811 -BE,SL,1,011,201912,2045 -BE,SL,1,012,201912,88074 -BE,SL,1,072,201912,9472169 -BE,SL,1,089,201912,13225096 -BE,SL,1,103,201912,683 -BE,SL,2,101,201912,56754 -BE,SL,2,103,201912,50803 -BE,SL,2,105,201912,90898 -BE,SL,2,108,201912,29268 -BE,SL,2,110,201912,137318 -BE,SL,2,141,201912,530 -BE,SL,2,152,201912,329 -BE,SL,2,162,201912,18372 -BE,SL,2,172,201912,5 -BE,SL,2,201,201912,14481 -BE,SL,2,202,201912,12197 -BE,SL,2,204,201912,15153 -BE,SL,2,205,201912,60651 -BE,SL,2,212,201912,25014 -BE,SL,2,221,201912,46042 -BE,SL,2,222,201912,286 -BE,SL,2,231,201912,91 -BE,SL,2,242,201912,1021 -BE,SL,2,257,201912,947 -BE,SL,2,259,201912,3453 -BE,SL,2,261,201912,302 -BE,SL,2,262,201912,49440 -BE,SL,2,263,201912,209 -BE,SL,2,265,201912,5971 -BE,SL,2,271,201912,12282 -BE,SL,2,272,201912,2081 -BE,SL,2,273,201912,22246 -BE,SL,2,274,201912,653 -BE,SL,2,281,201912,25022 -BE,SL,2,282,201912,22767 -BE,SL,2,283,201912,26262 -BE,SL,2,289,201912,180657 -BE,SL,2,291,201912,1170239 -BE,SL,2,292,201912,7500 -BE,SL,2,293,201912,16065 -BE,SL,2,310,201912,5446 -BE,SL,2,325,201912,41045 -BE,SM,1,110,201912,1742 -BE,SM,1,222,201912,5398 -BE,SM,1,257,201912,3386 -BE,SM,1,282,201912,23101 -BE,SM,1,284,201912,9481 -BE,SM,1,310,201912,430 -BE,SM,2,141,201912,30671 -BE,SM,2,152,201912,598 -BE,SM,2,222,201912,63707 -BE,SM,2,262,201912,4426 -BE,SM,2,264,201912,17511 -BE,SM,2,274,201912,160 -BE,SM,2,279,201912,13220 -BE,SM,2,329,201912,825 -BE,SN,1,011,201912,838071 -BE,SN,1,030,201912,131862 -BE,SN,1,089,201912,406608 -BE,SN,1,102,201912,1422289 -BE,SN,1,162,201912,3451 -BE,SN,1,271,201912,333 -BE,SN,1,282,201912,4322 -BE,SN,2,011,201912,461593 -BE,SN,2,014,201912,24856 -BE,SN,2,089,201912,23599 -BE,SN,2,103,201912,425753 -BE,SN,2,104,201912,1026617 -BE,SN,2,105,201912,985631 -BE,SN,2,107,201912,77190 -BE,SN,2,108,201912,1684741 -BE,SN,2,109,201912,120432 -BE,SN,2,110,201912,76346 -BE,SN,2,120,201912,25898 -BE,SN,2,131,201912,88360 -BE,SN,2,132,201912,198535 -BE,SN,2,139,201912,81923 -BE,SN,2,141,201912,187874 -BE,SN,2,143,201912,835 -BE,SN,2,151,201912,4404 -BE,SN,2,152,201912,6177 -BE,SN,2,162,201912,13656 -BE,SN,2,171,201912,1305209 -BE,SN,2,172,201912,84826 -BE,SN,2,192,201912,31167478 -BE,SN,2,201,201912,626997 -BE,SN,2,202,201912,804 -BE,SN,2,203,201912,59048 -BE,SN,2,204,201912,71918 -BE,SN,2,205,201912,373415 -BE,SN,2,211,201912,9900 -BE,SN,2,212,201912,2209668 -BE,SN,2,221,201912,89939 -BE,SN,2,222,201912,243259 -BE,SN,2,231,201912,69419 -BE,SN,2,234,201912,6100 -BE,SN,2,239,201912,5259 -BE,SN,2,241,201912,587382 -BE,SN,2,242,201912,19777 -BE,SN,2,251,201912,1224924 -BE,SN,2,257,201912,119210 -BE,SN,2,259,201912,137051 -BE,SN,2,261,201912,4795 -BE,SN,2,262,201912,242560 -BE,SN,2,263,201912,13439 -BE,SN,2,264,201912,21494 -BE,SN,2,265,201912,103497 -BE,SN,2,266,201912,68062 -BE,SN,2,271,201912,265965 -BE,SN,2,272,201912,25599 -BE,SN,2,273,201912,51195 -BE,SN,2,274,201912,33661 -BE,SN,2,275,201912,9985 -BE,SN,2,279,201912,14842 -BE,SN,2,281,201912,960804 -BE,SN,2,282,201912,449600 -BE,SN,2,283,201912,112446 -BE,SN,2,289,201912,1456557 -BE,SN,2,291,201912,7434778 -BE,SN,2,292,201912,193848 -BE,SN,2,293,201912,426355 -BE,SN,2,309,201912,4505 -BE,SN,2,310,201912,63541 -BE,SN,2,324,201912,1164 -BE,SN,2,325,201912,50409 -BE,SN,2,329,201912,56550 -BE,SR,1,161,201912,187546 -BE,SR,1,244,201912,12725254 -BE,SR,2,089,201912,17153 -BE,SR,2,103,201912,212992 -BE,SR,2,104,201912,21243 -BE,SR,2,105,201912,6637 -BE,SR,2,106,201912,538 -BE,SR,2,107,201912,274 -BE,SR,2,108,201912,73349 -BE,SR,2,109,201912,236019 -BE,SR,2,110,201912,37256 -BE,SR,2,139,201912,3661 -BE,SR,2,172,201912,24909 -BE,SR,2,201,201912,122586 -BE,SR,2,204,201912,6836 -BE,SR,2,205,201912,2240 -BE,SR,2,212,201912,5923 -BE,SR,2,221,201912,13140 -BE,SR,2,222,201912,132533 -BE,SR,2,241,201912,160463 -BE,SR,2,242,201912,921 -BE,SR,2,244,201912,35057 -BE,SR,2,251,201912,2820 -BE,SR,2,257,201912,7222 -BE,SR,2,259,201912,39072 -BE,SR,2,265,201912,1190 -BE,SR,2,282,201912,46411 -BE,SR,2,289,201912,127000 -BE,SR,2,291,201912,69425 -BE,SR,2,301,201912,89245 -BE,SR,2,325,201912,18562 -BE,SS,2,263,201912,39039 -BE,ST,1,012,201912,88449 -BE,ST,2,291,201912,26500 -BE,SV,1,012,201912,42249 -BE,SV,1,139,201912,180 -BE,SV,1,141,201912,166562 -BE,SV,1,143,201912,210311 -BE,SV,1,212,201912,150 -BE,SV,1,271,201912,215 -BE,SV,1,279,201912,4669 -BE,SV,2,110,201912,409759 -BE,SV,2,171,201912,64917 -BE,SV,2,201,201912,263294 -BE,SV,2,205,201912,47026 -BE,SV,2,212,201912,18216 -BE,SV,2,221,201912,919 -BE,SV,2,222,201912,10990 -BE,SV,2,265,201912,126 -BE,SV,2,266,201912,25367 -BE,SV,2,271,201912,417539 -BE,SV,2,279,201912,375 -BE,SV,2,281,201912,25025 -BE,SV,2,282,201912,4784 -BE,SV,2,325,201912,10475 -BE,SX,2,103,201912,3000 -BE,SX,2,108,201912,2512 -BE,SX,2,110,201912,150142 -BE,SX,2,139,201912,6141 -BE,SX,2,141,201912,20232 -BE,SX,2,152,201912,78 -BE,SX,2,172,201912,19 -BE,SX,2,221,201912,1102 -BE,SX,2,222,201912,2468 -BE,SX,2,257,201912,35 -BE,SX,2,259,201912,429 -BE,SX,2,265,201912,53270 -BE,SX,2,267,201912,128 -BE,SX,2,273,201912,126805 -BE,SX,2,274,201912,42 -BE,SX,2,281,201912,24933 -BE,SX,2,282,201912,2321 -BE,SX,2,289,201912,804 -BE,SX,2,301,201912,104 -BE,SY,1,011,201912,4563 -BE,SY,1,103,201912,77591 -BE,SY,1,104,201912,39631 -BE,SY,1,106,201912,4907 -BE,SY,1,107,201912,50137 -BE,SY,1,108,201912,61904 -BE,SY,1,110,201912,3234 -BE,SY,1,139,201912,609 -BE,SY,1,141,201912,13503 -BE,SY,1,162,201912,845 -BE,SY,1,204,201912,10319 -BE,SY,1,222,201912,568 -BE,SY,2,013,201912,4477 -BE,SY,2,108,201912,87500 -BE,SY,2,109,201912,49900 -BE,SY,2,171,201912,563972 -BE,SY,2,172,201912,27502 -BE,SY,2,201,201912,321030 -BE,SY,2,203,201912,334 -BE,SY,2,205,201912,58 -BE,SY,2,211,201912,10546 -BE,SY,2,222,201912,65142 -BE,SY,2,241,201912,389229 -BE,SY,2,243,201912,55487 -BE,SY,2,266,201912,381 -BE,SY,2,283,201912,91600 -BE,SY,2,291,201912,12870 -BE,SY,2,293,201912,27370 -BE,SY,2,325,201912,44171 -BE,SY,2,329,201912,47750 -BE,SZ,1,108,201912,76304 -BE,SZ,2,205,201912,16227 -BE,TC,2,141,201912,20914 -BE,TD,2,108,201912,55685 -BE,TD,2,139,201912,665 -BE,TD,2,141,201912,132015 -BE,TD,2,192,201912,907 -BE,TD,2,205,201912,23977 -BE,TD,2,212,201912,645 -BE,TD,2,221,201912,45650 -BE,TD,2,222,201912,1471 -BE,TD,2,242,201912,1209360 -BE,TD,2,259,201912,16641 -BE,TD,2,262,201912,11299 -BE,TD,2,263,201912,188205 -BE,TD,2,264,201912,1666 -BE,TD,2,265,201912,373038 -BE,TD,2,271,201912,14220 -BE,TD,2,273,201912,16109 -BE,TD,2,274,201912,1502 -BE,TD,2,279,201912,15867 -BE,TD,2,281,201912,31798 -BE,TD,2,282,201912,13609 -BE,TD,2,289,201912,45155 -BE,TD,2,291,201912,346689 -BE,TD,2,292,201912,2800 -BE,TD,2,293,201912,16933 -BE,TD,2,325,201912,337 -BE,TD,2,329,201912,5761 -BE,TF,1,012,201912,119388 -BE,TG,1,011,201912,130166 -BE,TG,1,012,201912,688381 -BE,TG,1,014,201912,2495 -BE,TG,1,103,201912,177356 -BE,TG,1,104,201912,422 -BE,TG,1,106,201912,683 -BE,TG,1,107,201912,4459 -BE,TG,1,108,201912,1865 -BE,TG,1,110,201912,117 -BE,TG,1,141,201912,1397 -BE,TG,1,162,201912,54 -BE,TG,1,204,201912,265 -BE,TG,1,222,201912,10 -BE,TG,1,259,201912,43 -BE,TG,1,329,201912,6817 -BE,TG,2,014,201912,21362 -BE,TG,2,101,201912,83350 -BE,TG,2,102,201912,145008 -BE,TG,2,108,201912,941553 -BE,TG,2,110,201912,185965 -BE,TG,2,139,201912,2442 -BE,TG,2,141,201912,52366 -BE,TG,2,151,201912,201 -BE,TG,2,162,201912,170 -BE,TG,2,171,201912,39908 -BE,TG,2,172,201912,8224 -BE,TG,2,192,201912,68939 -BE,TG,2,201,201912,344278 -BE,TG,2,202,201912,5078 -BE,TG,2,203,201912,9734 -BE,TG,2,204,201912,65617 -BE,TG,2,205,201912,117343 -BE,TG,2,212,201912,43312 -BE,TG,2,221,201912,306 -BE,TG,2,222,201912,47463 -BE,TG,2,234,201912,696 -BE,TG,2,257,201912,1359 -BE,TG,2,259,201912,66050 -BE,TG,2,262,201912,112425 -BE,TG,2,264,201912,380 -BE,TG,2,265,201912,70507 -BE,TG,2,271,201912,1612 -BE,TG,2,272,201912,605 -BE,TG,2,273,201912,4516 -BE,TG,2,274,201912,269 -BE,TG,2,275,201912,620 -BE,TG,2,279,201912,120530 -BE,TG,2,281,201912,29478 -BE,TG,2,282,201912,155562 -BE,TG,2,283,201912,38093 -BE,TG,2,289,201912,36294 -BE,TG,2,291,201912,2941405 -BE,TG,2,292,201912,200910 -BE,TG,2,293,201912,47986 -BE,TG,2,309,201912,3258 -BE,TG,2,310,201912,5751 -BE,TG,2,325,201912,33358 -BE,TH,1,011,201912,42209 -BE,TH,1,012,201912,1242669 -BE,TH,1,014,201912,171 -BE,TH,1,030,201912,25242 -BE,TH,1,089,201912,1233856 -BE,TH,1,101,201912,529013 -BE,TH,1,102,201912,562787 -BE,TH,1,103,201912,487658 -BE,TH,1,106,201912,1149602 -BE,TH,1,107,201912,91106 -BE,TH,1,108,201912,1023401 -BE,TH,1,109,201912,364637 -BE,TH,1,110,201912,219 -BE,TH,1,131,201912,39734 -BE,TH,1,132,201912,29605 -BE,TH,1,139,201912,456531 -BE,TH,1,141,201912,7203479 -BE,TH,1,143,201912,1763073 -BE,TH,1,151,201912,71229 -BE,TH,1,152,201912,100558 -BE,TH,1,162,201912,44284 -BE,TH,1,172,201912,815252 -BE,TH,1,201,201912,1867504 -BE,TH,1,203,201912,224 -BE,TH,1,204,201912,445708 -BE,TH,1,205,201912,16195 -BE,TH,1,206,201912,134504 -BE,TH,1,212,201912,1695801 -BE,TH,1,221,201912,6749846 -BE,TH,1,222,201912,1508093 -BE,TH,1,231,201912,49746 -BE,TH,1,234,201912,238530 -BE,TH,1,237,201912,4816 -BE,TH,1,239,201912,22313 -BE,TH,1,241,201912,1645636 -BE,TH,1,242,201912,99482 -BE,TH,1,244,201912,600230 -BE,TH,1,245,201912,72 -BE,TH,1,251,201912,31213 -BE,TH,1,252,201912,434052 -BE,TH,1,257,201912,299497 -BE,TH,1,259,201912,1357127 -BE,TH,1,261,201912,7252727 -BE,TH,1,262,201912,291954 -BE,TH,1,263,201912,1538197 -BE,TH,1,264,201912,6870701 -BE,TH,1,265,201912,2289671 -BE,TH,1,267,201912,51063 -BE,TH,1,268,201912,76209 -BE,TH,1,271,201912,1170647 -BE,TH,1,272,201912,212313 -BE,TH,1,273,201912,190538 -BE,TH,1,274,201912,541839 -BE,TH,1,275,201912,12497 -BE,TH,1,279,201912,513504 -BE,TH,1,281,201912,3228780 -BE,TH,1,282,201912,6389910 -BE,TH,1,283,201912,126 -BE,TH,1,284,201912,61981 -BE,TH,1,289,201912,296420 -BE,TH,1,291,201912,10212647 -BE,TH,1,293,201912,1454594 -BE,TH,1,303,201912,6850 -BE,TH,1,309,201912,2510361 -BE,TH,1,310,201912,420483 -BE,TH,1,321,201912,10511597 -BE,TH,1,322,201912,442 -BE,TH,1,323,201912,611680 -BE,TH,1,324,201912,152167 -BE,TH,1,325,201912,1842966 -BE,TH,1,329,201912,94286 -BE,TH,2,011,201912,1786 -BE,TH,2,013,201912,20000 -BE,TH,2,014,201912,56730 -BE,TH,2,072,201912,117418 -BE,TH,2,089,201912,2799209 -BE,TH,2,101,201912,49300 -BE,TH,2,103,201912,181212 -BE,TH,2,104,201912,116181 -BE,TH,2,105,201912,1287369 -BE,TH,2,106,201912,436589 -BE,TH,2,107,201912,32518 -BE,TH,2,108,201912,712476 -BE,TH,2,109,201912,963682 -BE,TH,2,110,201912,747246 -BE,TH,2,131,201912,5005 -BE,TH,2,132,201912,86148 -BE,TH,2,139,201912,250810 -BE,TH,2,141,201912,246371 -BE,TH,2,151,201912,185357 -BE,TH,2,162,201912,41681 -BE,TH,2,171,201912,931776 -BE,TH,2,172,201912,807343 -BE,TH,2,192,201912,738481 -BE,TH,2,201,201912,9337122 -BE,TH,2,202,201912,334942 -BE,TH,2,203,201912,1321072 -BE,TH,2,204,201912,525275 -BE,TH,2,205,201912,1571877 -BE,TH,2,206,201912,14322 -BE,TH,2,211,201912,135908 -BE,TH,2,212,201912,10995782 -BE,TH,2,221,201912,565591 -BE,TH,2,222,201912,1338466 -BE,TH,2,231,201912,78469 -BE,TH,2,234,201912,339743 -BE,TH,2,236,201912,63370 -BE,TH,2,237,201912,2060 -BE,TH,2,239,201912,136076 -BE,TH,2,241,201912,559226 -BE,TH,2,242,201912,15603 -BE,TH,2,243,201912,51713 -BE,TH,2,244,201912,105994 -BE,TH,2,245,201912,640 -BE,TH,2,251,201912,1659 -BE,TH,2,252,201912,7078 -BE,TH,2,257,201912,148853 -BE,TH,2,259,201912,268272 -BE,TH,2,261,201912,2247783 -BE,TH,2,262,201912,14517 -BE,TH,2,263,201912,143518 -BE,TH,2,264,201912,259046 -BE,TH,2,265,201912,141528 -BE,TH,2,266,201912,208429 -BE,TH,2,267,201912,101995 -BE,TH,2,271,201912,492246 -BE,TH,2,272,201912,51983 -BE,TH,2,273,201912,415733 -BE,TH,2,274,201912,43818 -BE,TH,2,275,201912,114039 -BE,TH,2,279,201912,258360 -BE,TH,2,281,201912,945967 -BE,TH,2,282,201912,2130307 -BE,TH,2,283,201912,11371 -BE,TH,2,284,201912,1207384 -BE,TH,2,289,201912,1350669 -BE,TH,2,291,201912,88458 -BE,TH,2,293,201912,326435 -BE,TH,2,309,201912,13122 -BE,TH,2,310,201912,62887 -BE,TH,2,321,201912,8691909 -BE,TH,2,324,201912,82045 -BE,TH,2,325,201912,3254494 -BE,TH,2,329,201912,6365 -BE,TJ,1,131,201912,5648 -BE,TJ,1,132,201912,13233 -BE,TJ,2,192,201912,233 -BE,TJ,2,201,201912,55836 -BE,TJ,2,203,201912,20 -BE,TJ,2,205,201912,49354 -BE,TJ,2,262,201912,2000 -BE,TK,1,293,201912,34 -BE,TM,2,282,201912,26385 -BE,TM,2,291,201912,23119 -BE,TN,1,011,201912,12396 -BE,TN,1,012,201912,194934 -BE,TN,1,103,201912,7823 -BE,TN,1,104,201912,172583 -BE,TN,1,107,201912,30 -BE,TN,1,108,201912,4207 -BE,TN,1,132,201912,34888 -BE,TN,1,139,201912,1272433 -BE,TN,1,141,201912,9946915 -BE,TN,1,143,201912,18771 -BE,TN,1,151,201912,17618 -BE,TN,1,152,201912,27083 -BE,TN,1,162,201912,34945 -BE,TN,1,172,201912,458906 -BE,TN,1,201,201912,18230 -BE,TN,1,204,201912,26393 -BE,TN,1,222,201912,184594 -BE,TN,1,234,201912,51099 -BE,TN,1,242,201912,141106 -BE,TN,1,259,201912,87827 -BE,TN,1,261,201912,7035 -BE,TN,1,263,201912,58 -BE,TN,1,265,201912,205916 -BE,TN,1,271,201912,677876 -BE,TN,1,273,201912,386819 -BE,TN,1,274,201912,4804 -BE,TN,1,279,201912,359064 -BE,TN,1,281,201912,28098 -BE,TN,1,282,201912,29504 -BE,TN,1,283,201912,972 -BE,TN,1,289,201912,162115 -BE,TN,1,293,201912,851348 -BE,TN,1,303,201912,46491 -BE,TN,1,321,201912,241 -BE,TN,1,325,201912,43262 -BE,TN,1,329,201912,328588 -BE,TN,2,012,201912,646 -BE,TN,2,014,201912,21816 -BE,TN,2,081,201912,2514 -BE,TN,2,101,201912,2062 -BE,TN,2,103,201912,63490 -BE,TN,2,105,201912,630042 -BE,TN,2,106,201912,129311 -BE,TN,2,107,201912,10343 -BE,TN,2,108,201912,54083 -BE,TN,2,109,201912,179552 -BE,TN,2,131,201912,73528 -BE,TN,2,132,201912,4593253 -BE,TN,2,139,201912,1720233 -BE,TN,2,141,201912,1283979 -BE,TN,2,151,201912,47799 -BE,TN,2,162,201912,799722 -BE,TN,2,171,201912,550870 -BE,TN,2,172,201912,60704 -BE,TN,2,192,201912,239415 -BE,TN,2,201,201912,2846558 -BE,TN,2,202,201912,115317 -BE,TN,2,203,201912,226462 -BE,TN,2,204,201912,320868 -BE,TN,2,205,201912,757513 -BE,TN,2,206,201912,13263 -BE,TN,2,211,201912,25448 -BE,TN,2,212,201912,6086136 -BE,TN,2,221,201912,191473 -BE,TN,2,222,201912,1320203 -BE,TN,2,231,201912,162958 -BE,TN,2,239,201912,62747 -BE,TN,2,241,201912,311561 -BE,TN,2,242,201912,13862 -BE,TN,2,243,201912,29927 -BE,TN,2,244,201912,1383764 -BE,TN,2,245,201912,156 -BE,TN,2,251,201912,14710 -BE,TN,2,257,201912,260754 -BE,TN,2,259,201912,154599 -BE,TN,2,261,201912,465485 -BE,TN,2,262,201912,435578 -BE,TN,2,263,201912,231189 -BE,TN,2,264,201912,33828 -BE,TN,2,265,201912,199805 -BE,TN,2,266,201912,334537 -BE,TN,2,267,201912,86772 -BE,TN,2,271,201912,145028 -BE,TN,2,272,201912,9439 -BE,TN,2,273,201912,638230 -BE,TN,2,274,201912,15508 -BE,TN,2,275,201912,95369 -BE,TN,2,279,201912,271782 -BE,TN,2,281,201912,852684 -BE,TN,2,282,201912,362759 -BE,TN,2,283,201912,15958 -BE,TN,2,289,201912,337922 -BE,TN,2,291,201912,1092418 -BE,TN,2,293,201912,253218 -BE,TN,2,310,201912,1169 -BE,TN,2,321,201912,44 -BE,TN,2,325,201912,427322 -BE,TN,2,329,201912,315001 -BE,TR,1,011,201912,12329213 -BE,TR,1,012,201912,855787 -BE,TR,1,014,201912,934150 -BE,TR,1,072,201912,6815023 -BE,TR,1,081,201912,33254 -BE,TR,1,089,201912,857452 -BE,TR,1,101,201912,21702 -BE,TR,1,102,201912,182842 -BE,TR,1,103,201912,9629724 -BE,TR,1,104,201912,188900 -BE,TR,1,106,201912,1218632 -BE,TR,1,107,201912,952292 -BE,TR,1,108,201912,2650904 -BE,TR,1,110,201912,1560902 -BE,TR,1,120,201912,12096 -BE,TR,1,131,201912,3416128 -BE,TR,1,132,201912,3388527 -BE,TR,1,139,201912,9837333 -BE,TR,1,141,201912,16847215 -BE,TR,1,142,201912,37942 -BE,TR,1,143,201912,7416105 -BE,TR,1,151,201912,287299 -BE,TR,1,152,201912,270575 -BE,TR,1,161,201912,6041 -BE,TR,1,162,201912,279756 -BE,TR,1,171,201912,270888 -BE,TR,1,172,201912,2255985 -BE,TR,1,192,201912,9859612 -BE,TR,1,201,201912,21299987 -BE,TR,1,203,201912,199791 -BE,TR,1,204,201912,1186548 -BE,TR,1,205,201912,51718 -BE,TR,1,206,201912,1657893 -BE,TR,1,211,201912,18040 -BE,TR,1,212,201912,345093 -BE,TR,1,221,201912,8078513 -BE,TR,1,222,201912,9718539 -BE,TR,1,231,201912,2613594 -BE,TR,1,232,201912,654219 -BE,TR,1,233,201912,3311546 -BE,TR,1,234,201912,820776 -BE,TR,1,235,201912,3992 -BE,TR,1,236,201912,89838 -BE,TR,1,237,201912,206641 -BE,TR,1,239,201912,78679 -BE,TR,1,241,201912,7581670 -BE,TR,1,242,201912,7120484 -BE,TR,1,243,201912,587297 -BE,TR,1,244,201912,2483380 -BE,TR,1,245,201912,26 -BE,TR,1,251,201912,2918369 -BE,TR,1,252,201912,3484738 -BE,TR,1,257,201912,697082 -BE,TR,1,259,201912,6692763 -BE,TR,1,261,201912,33016 -BE,TR,1,262,201912,2676 -BE,TR,1,263,201912,15294 -BE,TR,1,264,201912,1270592 -BE,TR,1,265,201912,193494 -BE,TR,1,266,201912,2471 -BE,TR,1,267,201912,11545 -BE,TR,1,268,201912,1416 -BE,TR,1,271,201912,593773 -BE,TR,1,272,201912,115754 -BE,TR,1,273,201912,1076920 -BE,TR,1,274,201912,944665 -BE,TR,1,275,201912,14725449 -BE,TR,1,279,201912,199077 -BE,TR,1,281,201912,5156089 -BE,TR,1,282,201912,4069168 -BE,TR,1,283,201912,11823 -BE,TR,1,284,201912,670447 -BE,TR,1,289,201912,1701701 -BE,TR,1,291,201912,137448149 -BE,TR,1,292,201912,808421 -BE,TR,1,293,201912,11613161 -BE,TR,1,303,201912,8710579 -BE,TR,1,309,201912,189304 -BE,TR,1,310,201912,6635622 -BE,TR,1,321,201912,476893 -BE,TR,1,322,201912,3940 -BE,TR,1,323,201912,744 -BE,TR,1,324,201912,93192 -BE,TR,1,325,201912,209433 -BE,TR,1,329,201912,134697 -BE,TR,2,011,201912,262420 -BE,TR,2,012,201912,204480 -BE,TR,2,013,201912,590880 -BE,TR,2,014,201912,59304 -BE,TR,2,022,201912,43545 -BE,TR,2,072,201912,15847 -BE,TR,2,081,201912,276084 -BE,TR,2,089,201912,20619 -BE,TR,2,101,201912,9260 -BE,TR,2,102,201912,68096 -BE,TR,2,103,201912,229205 -BE,TR,2,104,201912,32712 -BE,TR,2,105,201912,224922 -BE,TR,2,106,201912,1151119 -BE,TR,2,107,201912,1184948 -BE,TR,2,108,201912,1667531 -BE,TR,2,109,201912,790591 -BE,TR,2,110,201912,216992 -BE,TR,2,120,201912,3177324 -BE,TR,2,131,201912,967382 -BE,TR,2,132,201912,558702 -BE,TR,2,139,201912,896704 -BE,TR,2,141,201912,6179527 -BE,TR,2,143,201912,862079 -BE,TR,2,151,201912,375365 -BE,TR,2,152,201912,14836628 -BE,TR,2,161,201912,7591 -BE,TR,2,162,201912,329021 -BE,TR,2,171,201912,4588227 -BE,TR,2,172,201912,365871 -BE,TR,2,192,201912,4174828 -BE,TR,2,201,201912,109341837 -BE,TR,2,202,201912,2272321 -BE,TR,2,203,201912,3427322 -BE,TR,2,204,201912,10864683 -BE,TR,2,205,201912,8267027 -BE,TR,2,206,201912,7305787 -BE,TR,2,211,201912,3686186 -BE,TR,2,212,201912,17885274 -BE,TR,2,221,201912,2107204 -BE,TR,2,222,201912,7664985 -BE,TR,2,231,201912,1475575 -BE,TR,2,232,201912,8718 -BE,TR,2,233,201912,466 -BE,TR,2,234,201912,4880 -BE,TR,2,235,201912,156 -BE,TR,2,236,201912,31735 -BE,TR,2,239,201912,247705 -BE,TR,2,241,201912,35586524 -BE,TR,2,242,201912,1082554 -BE,TR,2,243,201912,705219 -BE,TR,2,244,201912,50322961 -BE,TR,2,245,201912,214130 -BE,TR,2,251,201912,45084 -BE,TR,2,252,201912,18027 -BE,TR,2,257,201912,974189 -BE,TR,2,259,201912,912004 -BE,TR,2,261,201912,2639550 -BE,TR,2,262,201912,825788 -BE,TR,2,263,201912,399256 -BE,TR,2,264,201912,542211 -BE,TR,2,265,201912,2093036 -BE,TR,2,266,201912,703011 -BE,TR,2,267,201912,651611 -BE,TR,2,268,201912,2359 -BE,TR,2,271,201912,939953 -BE,TR,2,272,201912,966092 -BE,TR,2,273,201912,1326914 -BE,TR,2,274,201912,346168 -BE,TR,2,275,201912,185754 -BE,TR,2,279,201912,735646 -BE,TR,2,281,201912,11067260 -BE,TR,2,282,201912,8720790 -BE,TR,2,283,201912,396091 -BE,TR,2,284,201912,747524 -BE,TR,2,289,201912,9034726 -BE,TR,2,291,201912,4421134 -BE,TR,2,292,201912,21593 -BE,TR,2,293,201912,20149828 -BE,TR,2,302,201912,47 -BE,TR,2,303,201912,7114219 -BE,TR,2,309,201912,130357 -BE,TR,2,310,201912,33229 -BE,TR,2,321,201912,1485017 -BE,TR,2,323,201912,129394 -BE,TR,2,324,201912,71141 -BE,TR,2,325,201912,8237229 -BE,TR,2,329,201912,1314157 -BE,TT,1,201,201912,11022692 -BE,TT,2,103,201912,208425 -BE,TT,2,107,201912,1302 -BE,TT,2,108,201912,48061 -BE,TT,2,109,201912,235004 -BE,TT,2,110,201912,29309 -BE,TT,2,171,201912,116233 -BE,TT,2,172,201912,82124 -BE,TT,2,192,201912,123936 -BE,TT,2,201,201912,19409 -BE,TT,2,204,201912,10228 -BE,TT,2,205,201912,34221 -BE,TT,2,221,201912,281 -BE,TT,2,222,201912,25155 -BE,TT,2,244,201912,1185599 -BE,TT,2,259,201912,73 -BE,TT,2,265,201912,68 -BE,TT,2,273,201912,3274 -BE,TT,2,279,201912,3181 -BE,TT,2,281,201912,3820 -BE,TT,2,282,201912,214 -BE,TT,2,293,201912,7580 -BE,TT,2,325,201912,149200 -BE,TW,1,012,201912,2344 -BE,TW,1,013,201912,111983 -BE,TW,1,106,201912,602 -BE,TW,1,107,201912,15526 -BE,TW,1,108,201912,99417 -BE,TW,1,110,201912,25313 -BE,TW,1,132,201912,331271 -BE,TW,1,139,201912,202180 -BE,TW,1,141,201912,254532 -BE,TW,1,143,201912,2297 -BE,TW,1,151,201912,288000 -BE,TW,1,152,201912,22006 -BE,TW,1,162,201912,20199 -BE,TW,1,171,201912,318 -BE,TW,1,172,201912,93487 -BE,TW,1,192,201912,288 -BE,TW,1,201,201912,9107696 -BE,TW,1,204,201912,626296 -BE,TW,1,205,201912,980057 -BE,TW,1,206,201912,785883 -BE,TW,1,211,201912,282463 -BE,TW,1,212,201912,2586197 -BE,TW,1,221,201912,455009 -BE,TW,1,222,201912,1970996 -BE,TW,1,231,201912,1635774 -BE,TW,1,234,201912,485 -BE,TW,1,239,201912,19680 -BE,TW,1,241,201912,6318191 -BE,TW,1,242,201912,632075 -BE,TW,1,243,201912,382632 -BE,TW,1,244,201912,352370 -BE,TW,1,254,201912,273216 -BE,TW,1,257,201912,2536428 -BE,TW,1,259,201912,2468639 -BE,TW,1,261,201912,26767258 -BE,TW,1,262,201912,2963653 -BE,TW,1,263,201912,11223988 -BE,TW,1,264,201912,1803196 -BE,TW,1,265,201912,1462514 -BE,TW,1,266,201912,399008 -BE,TW,1,267,201912,137661 -BE,TW,1,271,201912,343328 -BE,TW,1,272,201912,194875 -BE,TW,1,273,201912,907353 -BE,TW,1,274,201912,1316321 -BE,TW,1,275,201912,58091 -BE,TW,1,279,201912,4681007 -BE,TW,1,281,201912,1428021 -BE,TW,1,282,201912,3530645 -BE,TW,1,283,201912,1057313 -BE,TW,1,284,201912,1274735 -BE,TW,1,289,201912,427864 -BE,TW,1,291,201912,45954 -BE,TW,1,292,201912,28 -BE,TW,1,293,201912,2064809 -BE,TW,1,303,201912,166318 -BE,TW,1,309,201912,6044397 -BE,TW,1,310,201912,176193 -BE,TW,1,321,201912,196979 -BE,TW,1,322,201912,96616 -BE,TW,1,323,201912,901308 -BE,TW,1,324,201912,190200 -BE,TW,1,325,201912,2066206 -BE,TW,1,329,201912,552882 -BE,TW,2,011,201912,71328 -BE,TW,2,012,201912,10528 -BE,TW,2,014,201912,612512 -BE,TW,2,081,201912,286778 -BE,TW,2,089,201912,607 -BE,TW,2,103,201912,362049 -BE,TW,2,104,201912,89554 -BE,TW,2,105,201912,1033023 -BE,TW,2,106,201912,156762 -BE,TW,2,107,201912,239718 -BE,TW,2,108,201912,416809 -BE,TW,2,109,201912,963223 -BE,TW,2,110,201912,348281 -BE,TW,2,132,201912,7641 -BE,TW,2,139,201912,55574 -BE,TW,2,141,201912,32938 -BE,TW,2,143,201912,4164 -BE,TW,2,151,201912,346729 -BE,TW,2,152,201912,27387 -BE,TW,2,162,201912,317477 -BE,TW,2,171,201912,232254 -BE,TW,2,172,201912,70202 -BE,TW,2,192,201912,307801 -BE,TW,2,201,201912,7277159 -BE,TW,2,202,201912,292425 -BE,TW,2,203,201912,2103415 -BE,TW,2,204,201912,295162 -BE,TW,2,205,201912,9589926 -BE,TW,2,206,201912,220251 -BE,TW,2,211,201912,643219 -BE,TW,2,212,201912,37947899 -BE,TW,2,221,201912,417999 -BE,TW,2,222,201912,1339587 -BE,TW,2,231,201912,69413 -BE,TW,2,232,201912,7088 -BE,TW,2,234,201912,10011 -BE,TW,2,236,201912,1095 -BE,TW,2,239,201912,46915 -BE,TW,2,241,201912,139064 -BE,TW,2,242,201912,19506 -BE,TW,2,243,201912,135954 -BE,TW,2,244,201912,2211940 -BE,TW,2,252,201912,12544 -BE,TW,2,257,201912,74532 -BE,TW,2,259,201912,204303 -BE,TW,2,261,201912,3978729 -BE,TW,2,262,201912,598308 -BE,TW,2,263,201912,205094 -BE,TW,2,264,201912,121465 -BE,TW,2,265,201912,768003 -BE,TW,2,266,201912,499446 -BE,TW,2,267,201912,210778 -BE,TW,2,271,201912,589655 -BE,TW,2,272,201912,3546 -BE,TW,2,273,201912,96731 -BE,TW,2,274,201912,56914 -BE,TW,2,275,201912,74993 -BE,TW,2,279,201912,493793 -BE,TW,2,281,201912,1495900 -BE,TW,2,282,201912,856318 -BE,TW,2,284,201912,1891 -BE,TW,2,289,201912,518157 -BE,TW,2,291,201912,2895346 -BE,TW,2,292,201912,21652 -BE,TW,2,293,201912,451021 -BE,TW,2,303,201912,140097 -BE,TW,2,309,201912,385850 -BE,TW,2,310,201912,57265 -BE,TW,2,321,201912,192641 -BE,TW,2,323,201912,14136 -BE,TW,2,324,201912,610257 -BE,TW,2,325,201912,2619271 -BE,TW,2,329,201912,13258 -BE,TZ,1,011,201912,120300 -BE,TZ,1,012,201912,1778004 -BE,TZ,1,030,201912,82407 -BE,TZ,1,102,201912,160481 -BE,TZ,1,120,201912,5807184 -BE,TZ,2,110,201912,1064297 -BE,TZ,2,120,201912,2676 -BE,TZ,2,141,201912,89654 -BE,TZ,2,171,201912,385850 -BE,TZ,2,172,201912,43 -BE,TZ,2,192,201912,18028 -BE,TZ,2,201,201912,384693 -BE,TZ,2,203,201912,84394 -BE,TZ,2,204,201912,4000 -BE,TZ,2,205,201912,172474 -BE,TZ,2,211,201912,18671 -BE,TZ,2,212,201912,142864 -BE,TZ,2,221,201912,8321 -BE,TZ,2,222,201912,22675 -BE,TZ,2,231,201912,10946 -BE,TZ,2,242,201912,339 -BE,TZ,2,244,201912,19 -BE,TZ,2,245,201912,55544 -BE,TZ,2,257,201912,102682 -BE,TZ,2,259,201912,4531 -BE,TZ,2,262,201912,8469 -BE,TZ,2,263,201912,10670 -BE,TZ,2,265,201912,120927 -BE,TZ,2,271,201912,5998 -BE,TZ,2,273,201912,2346 -BE,TZ,2,274,201912,806 -BE,TZ,2,279,201912,2444 -BE,TZ,2,281,201912,274647 -BE,TZ,2,282,201912,175871 -BE,TZ,2,283,201912,1134000 -BE,TZ,2,289,201912,139897 -BE,TZ,2,291,201912,411446 -BE,TZ,2,292,201912,1250 -BE,TZ,2,293,201912,22212 -BE,TZ,2,309,201912,100 -BE,TZ,2,325,201912,71792 -BE,TZ,2,329,201912,14901 -BE,UA,1,011,201912,51566298 -BE,UA,1,022,201912,142156 -BE,UA,1,101,201912,101557 -BE,UA,1,103,201912,53341 -BE,UA,1,104,201912,525734 -BE,UA,1,107,201912,100580 -BE,UA,1,108,201912,91271 -BE,UA,1,110,201912,683 -BE,UA,1,131,201912,33767 -BE,UA,1,132,201912,5578 -BE,UA,1,139,201912,690012 -BE,UA,1,141,201912,1573085 -BE,UA,1,151,201912,614 -BE,UA,1,161,201912,474891 -BE,UA,1,162,201912,718483 -BE,UA,1,172,201912,331340 -BE,UA,1,201,201912,231044 -BE,UA,1,204,201912,412 -BE,UA,1,205,201912,3261 -BE,UA,1,206,201912,4464 -BE,UA,1,211,201912,659 -BE,UA,1,212,201912,76268 -BE,UA,1,221,201912,45343 -BE,UA,1,222,201912,173450 -BE,UA,1,231,201912,412367 -BE,UA,1,233,201912,13365 -BE,UA,1,234,201912,4881 -BE,UA,1,236,201912,29953 -BE,UA,1,239,201912,139432 -BE,UA,1,241,201912,3715382 -BE,UA,1,243,201912,22160 -BE,UA,1,244,201912,601411 -BE,UA,1,251,201912,52674 -BE,UA,1,257,201912,1755 -BE,UA,1,259,201912,267575 -BE,UA,1,261,201912,3270 -BE,UA,1,264,201912,534202 -BE,UA,1,265,201912,6195 -BE,UA,1,267,201912,1306219 -BE,UA,1,271,201912,110499 -BE,UA,1,274,201912,2049 -BE,UA,1,275,201912,33904 -BE,UA,1,279,201912,40402 -BE,UA,1,281,201912,19829 -BE,UA,1,282,201912,123667 -BE,UA,1,289,201912,7772 -BE,UA,1,292,201912,6512 -BE,UA,1,293,201912,99526 -BE,UA,1,309,201912,768 -BE,UA,1,310,201912,1769096 -BE,UA,1,322,201912,616 -BE,UA,1,324,201912,16170 -BE,UA,1,329,201912,66458 -BE,UA,2,011,201912,185546 -BE,UA,2,012,201912,48541 -BE,UA,2,014,201912,1933 -BE,UA,2,030,201912,14460 -BE,UA,2,081,201912,34259 -BE,UA,2,101,201912,93122 -BE,UA,2,103,201912,146179 -BE,UA,2,104,201912,353969 -BE,UA,2,105,201912,334314 -BE,UA,2,106,201912,154889 -BE,UA,2,107,201912,154799 -BE,UA,2,108,201912,1377531 -BE,UA,2,109,201912,514407 -BE,UA,2,110,201912,1653527 -BE,UA,2,120,201912,1027844 -BE,UA,2,131,201912,86217 -BE,UA,2,132,201912,1120664 -BE,UA,2,139,201912,595942 -BE,UA,2,141,201912,534797 -BE,UA,2,143,201912,58515 -BE,UA,2,151,201912,60784 -BE,UA,2,152,201912,10234 -BE,UA,2,162,201912,437818 -BE,UA,2,171,201912,37317 -BE,UA,2,172,201912,210195 -BE,UA,2,192,201912,987866 -BE,UA,2,201,201912,5023019 -BE,UA,2,202,201912,3623600 -BE,UA,2,203,201912,664450 -BE,UA,2,204,201912,1076727 -BE,UA,2,205,201912,1464203 -BE,UA,2,206,201912,642259 -BE,UA,2,211,201912,641029 -BE,UA,2,212,201912,18423905 -BE,UA,2,221,201912,819296 -BE,UA,2,222,201912,955888 -BE,UA,2,231,201912,47268 -BE,UA,2,232,201912,54403 -BE,UA,2,233,201912,2669 -BE,UA,2,234,201912,14508 -BE,UA,2,235,201912,4031 -BE,UA,2,236,201912,22550 -BE,UA,2,237,201912,368 -BE,UA,2,239,201912,8483 -BE,UA,2,241,201912,280823 -BE,UA,2,242,201912,378522 -BE,UA,2,243,201912,10424 -BE,UA,2,244,201912,291410 -BE,UA,2,245,201912,2 -BE,UA,2,251,201912,49155 -BE,UA,2,252,201912,2303 -BE,UA,2,257,201912,258645 -BE,UA,2,259,201912,245283 -BE,UA,2,261,201912,356155 -BE,UA,2,262,201912,61542 -BE,UA,2,263,201912,172849 -BE,UA,2,264,201912,67219 -BE,UA,2,265,201912,285322 -BE,UA,2,266,201912,8348 -BE,UA,2,267,201912,25723 -BE,UA,2,271,201912,122890 -BE,UA,2,272,201912,28721 -BE,UA,2,273,201912,298305 -BE,UA,2,274,201912,95334 -BE,UA,2,275,201912,14194 -BE,UA,2,279,201912,171424 -BE,UA,2,281,201912,1537031 -BE,UA,2,282,201912,704183 -BE,UA,2,283,201912,8088465 -BE,UA,2,284,201912,93518 -BE,UA,2,289,201912,568715 -BE,UA,2,291,201912,2572555 -BE,UA,2,292,201912,127744 -BE,UA,2,293,201912,269706 -BE,UA,2,309,201912,11409 -BE,UA,2,310,201912,14976 -BE,UA,2,321,201912,1059 -BE,UA,2,322,201912,272 -BE,UA,2,323,201912,12224 -BE,UA,2,324,201912,28368 -BE,UA,2,325,201912,2183266 -BE,UA,2,329,201912,134390 -BE,UG,1,011,201912,168602 -BE,UG,1,012,201912,2699890 -BE,UG,1,030,201912,771868 -BE,UG,1,102,201912,1248217 -BE,UG,1,103,201912,1023 -BE,UG,1,106,201912,221 -BE,UG,1,108,201912,3151 -BE,UG,1,120,201912,14217 -BE,UG,1,263,201912,153 -BE,UG,1,271,201912,419 -BE,UG,2,011,201912,581 -BE,UG,2,012,201912,217 -BE,UG,2,014,201912,61883 -BE,UG,2,101,201912,995 -BE,UG,2,102,201912,5136 -BE,UG,2,103,201912,7645 -BE,UG,2,104,201912,1262 -BE,UG,2,105,201912,3320 -BE,UG,2,106,201912,6898 -BE,UG,2,107,201912,10240 -BE,UG,2,108,201912,50336 -BE,UG,2,109,201912,622056 -BE,UG,2,110,201912,56763 -BE,UG,2,141,201912,58163 -BE,UG,2,171,201912,150405 -BE,UG,2,201,201912,302612 -BE,UG,2,202,201912,34790 -BE,UG,2,203,201912,4161 -BE,UG,2,205,201912,86326 -BE,UG,2,212,201912,538626 -BE,UG,2,221,201912,5908 -BE,UG,2,222,201912,24417 -BE,UG,2,231,201912,20581 -BE,UG,2,239,201912,7645 -BE,UG,2,244,201912,30 -BE,UG,2,259,201912,292 -BE,UG,2,262,201912,8991 -BE,UG,2,265,201912,46890 -BE,UG,2,267,201912,24206 -BE,UG,2,271,201912,33859 -BE,UG,2,274,201912,1983 -BE,UG,2,279,201912,1182 -BE,UG,2,281,201912,26867 -BE,UG,2,282,201912,43624 -BE,UG,2,289,201912,146628 -BE,UG,2,291,201912,52650 -BE,UG,2,293,201912,23211 -BE,UG,2,325,201912,78145 -BE,UM,1,266,201912,19113 -BE,UM,1,325,201912,44903 -BE,US,1,011,201912,2635764 -BE,US,1,012,201912,6615371 -BE,US,1,014,201912,115345 -BE,US,1,023,201912,6271 -BE,US,1,030,201912,70235 -BE,US,1,051,201912,9974757 -BE,US,1,061,201912,287 -BE,US,1,072,201912,17362858 -BE,US,1,081,201912,2041160 -BE,US,1,089,201912,428491 -BE,US,1,101,201912,269309 -BE,US,1,102,201912,1320516 -BE,US,1,103,201912,4606287 -BE,US,1,104,201912,1930515 -BE,US,1,105,201912,94172 -BE,US,1,106,201912,486147 -BE,US,1,107,201912,191853 -BE,US,1,108,201912,4611778 -BE,US,1,109,201912,3757544 -BE,US,1,110,201912,2260171 -BE,US,1,120,201912,832842 -BE,US,1,131,201912,861879 -BE,US,1,132,201912,217395 -BE,US,1,139,201912,4391849 -BE,US,1,141,201912,1405050 -BE,US,1,143,201912,267248 -BE,US,1,151,201912,281703 -BE,US,1,152,201912,135245 -BE,US,1,161,201912,1240001 -BE,US,1,162,201912,13572041 -BE,US,1,171,201912,17723820 -BE,US,1,172,201912,1295049 -BE,US,1,192,201912,61423781 -BE,US,1,201,201912,407912130 -BE,US,1,202,201912,4546346 -BE,US,1,203,201912,3046722 -BE,US,1,204,201912,36299692 -BE,US,1,205,201912,67016492 -BE,US,1,206,201912,10819988 -BE,US,1,211,201912,52618283 -BE,US,1,212,201912,478384680 -BE,US,1,221,201912,7050594 -BE,US,1,222,201912,29040916 -BE,US,1,231,201912,5216433 -BE,US,1,232,201912,206701 -BE,US,1,234,201912,2793654 -BE,US,1,235,201912,63309 -BE,US,1,236,201912,45006 -BE,US,1,237,201912,2168 -BE,US,1,239,201912,1505391 -BE,US,1,241,201912,2759653 -BE,US,1,242,201912,1122272 -BE,US,1,243,201912,5160115 -BE,US,1,244,201912,23397124 -BE,US,1,245,201912,134486 -BE,US,1,251,201912,147872 -BE,US,1,252,201912,42055 -BE,US,1,253,201912,4779 -BE,US,1,254,201912,330256 -BE,US,1,257,201912,7369312 -BE,US,1,259,201912,6204979 -BE,US,1,261,201912,1769257 -BE,US,1,262,201912,6268788 -BE,US,1,263,201912,3314372 -BE,US,1,264,201912,1339670 -BE,US,1,265,201912,21335717 -BE,US,1,266,201912,30036718 -BE,US,1,267,201912,10218103 -BE,US,1,268,201912,30408 -BE,US,1,271,201912,5464462 -BE,US,1,272,201912,1366862 -BE,US,1,273,201912,4569329 -BE,US,1,274,201912,2726130 -BE,US,1,275,201912,14213372 -BE,US,1,279,201912,4849291 -BE,US,1,281,201912,42165387 -BE,US,1,282,201912,36534853 -BE,US,1,283,201912,11077611 -BE,US,1,284,201912,16634653 -BE,US,1,289,201912,38775111 -BE,US,1,291,201912,519084912 -BE,US,1,292,201912,655377 -BE,US,1,293,201912,4620375 -BE,US,1,301,201912,5142321 -BE,US,1,302,201912,40544 -BE,US,1,303,201912,31720981 -BE,US,1,304,201912,402867 -BE,US,1,309,201912,5724794 -BE,US,1,310,201912,565101 -BE,US,1,321,201912,10562531 -BE,US,1,322,201912,313679 -BE,US,1,323,201912,2763252 -BE,US,1,324,201912,4766481 -BE,US,1,325,201912,163336537 -BE,US,1,329,201912,2699693 -BE,US,2,011,201912,174931 -BE,US,2,012,201912,211181 -BE,US,2,013,201912,4612 -BE,US,2,014,201912,3470495 -BE,US,2,023,201912,12485 -BE,US,2,030,201912,112 -BE,US,2,072,201912,2119 -BE,US,2,081,201912,681652 -BE,US,2,089,201912,2521020 -BE,US,2,101,201912,808798 -BE,US,2,102,201912,25939 -BE,US,2,103,201912,15824611 -BE,US,2,104,201912,103226 -BE,US,2,105,201912,1298111 -BE,US,2,106,201912,8479652 -BE,US,2,107,201912,6960475 -BE,US,2,108,201912,15280663 -BE,US,2,109,201912,1608689 -BE,US,2,110,201912,20643669 -BE,US,2,120,201912,40833 -BE,US,2,131,201912,538906 -BE,US,2,132,201912,3449386 -BE,US,2,139,201912,10004854 -BE,US,2,141,201912,3614522 -BE,US,2,142,201912,4003 -BE,US,2,143,201912,432592 -BE,US,2,151,201912,697857 -BE,US,2,152,201912,290078 -BE,US,2,161,201912,829498 -BE,US,2,162,201912,4529987 -BE,US,2,171,201912,6220348 -BE,US,2,172,201912,1392605 -BE,US,2,181,201912,6933 -BE,US,2,192,201912,69014307 -BE,US,2,201,201912,106158920 -BE,US,2,202,201912,1020171 -BE,US,2,203,201912,2954397 -BE,US,2,204,201912,14187724 -BE,US,2,205,201912,29007365 -BE,US,2,206,201912,1098945 -BE,US,2,211,201912,5479418 -BE,US,2,212,201912,750795664 -BE,US,2,221,201912,4338258 -BE,US,2,222,201912,19034248 -BE,US,2,231,201912,6979746 -BE,US,2,232,201912,166879 -BE,US,2,233,201912,37025 -BE,US,2,234,201912,848754 -BE,US,2,235,201912,6401 -BE,US,2,236,201912,1054137 -BE,US,2,237,201912,244984 -BE,US,2,239,201912,1756080 -BE,US,2,241,201912,20027006 -BE,US,2,242,201912,2025884 -BE,US,2,243,201912,1362712 -BE,US,2,244,201912,45383160 -BE,US,2,245,201912,6176 -BE,US,2,251,201912,1881150 -BE,US,2,252,201912,1773607 -BE,US,2,254,201912,249829 -BE,US,2,257,201912,8519845 -BE,US,2,259,201912,7660975 -BE,US,2,261,201912,2918678 -BE,US,2,262,201912,15173315 -BE,US,2,263,201912,9475382 -BE,US,2,264,201912,8206508 -BE,US,2,265,201912,13095072 -BE,US,2,266,201912,5214125 -BE,US,2,267,201912,2608674 -BE,US,2,268,201912,10821 -BE,US,2,271,201912,6498069 -BE,US,2,272,201912,1867952 -BE,US,2,273,201912,4701045 -BE,US,2,274,201912,2789487 -BE,US,2,275,201912,1910400 -BE,US,2,279,201912,7013284 -BE,US,2,281,201912,51895279 -BE,US,2,282,201912,37995451 -BE,US,2,283,201912,5772245 -BE,US,2,284,201912,6944204 -BE,US,2,289,201912,49848412 -BE,US,2,291,201912,90958176 -BE,US,2,292,201912,2805369 -BE,US,2,293,201912,13250260 -BE,US,2,301,201912,211335 -BE,US,2,302,201912,112183 -BE,US,2,303,201912,41780797 -BE,US,2,304,201912,743660 -BE,US,2,309,201912,351720 -BE,US,2,310,201912,1746240 -BE,US,2,321,201912,44837328 -BE,US,2,322,201912,393468 -BE,US,2,323,201912,199421 -BE,US,2,324,201912,4748997 -BE,US,2,325,201912,38954173 -BE,US,2,329,201912,771314 -BE,UY,1,014,201912,14214 -BE,UY,1,101,201912,77974 -BE,UY,1,106,201912,229966 -BE,UY,1,162,201912,83650 -BE,UY,1,271,201912,27935 -BE,UY,1,281,201912,8071 -BE,UY,1,284,201912,56158 -BE,UY,1,289,201912,3260 -BE,UY,2,012,201912,1113 -BE,UY,2,103,201912,739035 -BE,UY,2,106,201912,24187 -BE,UY,2,107,201912,7840 -BE,UY,2,108,201912,117886 -BE,UY,2,110,201912,135559 -BE,UY,2,139,201912,1128 -BE,UY,2,141,201912,4763 -BE,UY,2,151,201912,12418 -BE,UY,2,162,201912,25540 -BE,UY,2,171,201912,44925 -BE,UY,2,172,201912,2 -BE,UY,2,192,201912,14464 -BE,UY,2,201,201912,198051 -BE,UY,2,202,201912,48126 -BE,UY,2,204,201912,21942 -BE,UY,2,205,201912,79912 -BE,UY,2,211,201912,431 -BE,UY,2,212,201912,125408 -BE,UY,2,221,201912,16265 -BE,UY,2,222,201912,130219 -BE,UY,2,231,201912,16686 -BE,UY,2,242,201912,300 -BE,UY,2,244,201912,2616 -BE,UY,2,257,201912,10379 -BE,UY,2,259,201912,8422 -BE,UY,2,261,201912,2613 -BE,UY,2,262,201912,231 -BE,UY,2,263,201912,7596 -BE,UY,2,265,201912,33070 -BE,UY,2,266,201912,48829 -BE,UY,2,271,201912,33559 -BE,UY,2,272,201912,4520 -BE,UY,2,273,201912,10124 -BE,UY,2,274,201912,16449 -BE,UY,2,275,201912,351 -BE,UY,2,279,201912,2854 -BE,UY,2,281,201912,164627 -BE,UY,2,282,201912,350388 -BE,UY,2,289,201912,45764 -BE,UY,2,291,201912,45172 -BE,UY,2,293,201912,87882 -BE,UY,2,325,201912,278898 -BE,UY,2,329,201912,63 -BE,UZ,1,011,201912,3698 -BE,UZ,1,108,201912,65972 -BE,UZ,1,131,201912,138727 -BE,UZ,1,132,201912,99390 -BE,UZ,1,271,201912,28 -BE,UZ,2,110,201912,603532 -BE,UZ,2,172,201912,38926 -BE,UZ,2,192,201912,73381 -BE,UZ,2,201,201912,576551 -BE,UZ,2,203,201912,167668 -BE,UZ,2,204,201912,6198 -BE,UZ,2,205,201912,270817 -BE,UZ,2,212,201912,335378 -BE,UZ,2,221,201912,227877 -BE,UZ,2,222,201912,2722 -BE,UZ,2,239,201912,140 -BE,UZ,2,244,201912,89 -BE,UZ,2,257,201912,890 -BE,UZ,2,259,201912,6249 -BE,UZ,2,265,201912,3043 -BE,UZ,2,271,201912,5224 -BE,UZ,2,281,201912,359927 -BE,UZ,2,282,201912,96160 -BE,UZ,2,289,201912,4179809 -BE,UZ,2,291,201912,14900 -BE,UZ,2,292,201912,12828 -BE,UZ,2,293,201912,454 -BE,UZ,2,325,201912,79233 -BE,UZ,2,329,201912,80 -BE,VC,1,222,201912,10148 -BE,VE,1,012,201912,106659 -BE,VE,1,201,201912,2095023 -BE,VE,1,271,201912,163 -BE,VE,2,108,201912,31211 -BE,VE,2,110,201912,108630 -BE,VE,2,171,201912,35113 -BE,VE,2,201,201912,3586 -BE,VE,2,212,201912,13229 -BE,VE,2,221,201912,255 -BE,VE,2,222,201912,13514 -BE,VE,2,244,201912,429 -BE,VE,2,259,201912,38 -BE,VE,2,271,201912,2009 -BE,VE,2,279,201912,2137 -BE,VE,2,281,201912,89073 -BE,VE,2,282,201912,2448 -BE,VE,2,293,201912,94842 -BE,VN,1,011,201912,3286 -BE,VN,1,012,201912,6678969 -BE,VN,1,013,201912,112546 -BE,VN,1,014,201912,7575 -BE,VN,1,081,201912,115 -BE,VN,1,089,201912,41914 -BE,VN,1,101,201912,548653 -BE,VN,1,102,201912,6689194 -BE,VN,1,103,201912,1091166 -BE,VN,1,106,201912,1204 -BE,VN,1,107,201912,164003 -BE,VN,1,108,201912,855632 -BE,VN,1,109,201912,18085 -BE,VN,1,131,201912,32937 -BE,VN,1,132,201912,5080 -BE,VN,1,139,201912,811098 -BE,VN,1,141,201912,24448625 -BE,VN,1,143,201912,2701214 -BE,VN,1,151,201912,14593567 -BE,VN,1,152,201912,74937434 -BE,VN,1,162,201912,1058084 -BE,VN,1,172,201912,20992 -BE,VN,1,201,201912,122711 -BE,VN,1,202,201912,304854 -BE,VN,1,205,201912,3847 -BE,VN,1,206,201912,86189 -BE,VN,1,211,201912,302673 -BE,VN,1,212,201912,233384 -BE,VN,1,221,201912,486970 -BE,VN,1,222,201912,1156820 -BE,VN,1,231,201912,100589 -BE,VN,1,234,201912,387364 -BE,VN,1,236,201912,132808 -BE,VN,1,237,201912,935638 -BE,VN,1,239,201912,28892 -BE,VN,1,241,201912,3110032 -BE,VN,1,242,201912,213079 -BE,VN,1,243,201912,51255 -BE,VN,1,244,201912,4733 -BE,VN,1,257,201912,1204490 -BE,VN,1,259,201912,3662588 -BE,VN,1,261,201912,28008 -BE,VN,1,262,201912,14195 -BE,VN,1,263,201912,272442 -BE,VN,1,264,201912,4147336 -BE,VN,1,265,201912,26226 -BE,VN,1,266,201912,17062 -BE,VN,1,267,201912,2949 -BE,VN,1,271,201912,232126 -BE,VN,1,272,201912,148247 -BE,VN,1,273,201912,99731 -BE,VN,1,274,201912,58311 -BE,VN,1,275,201912,5038 -BE,VN,1,279,201912,103293 -BE,VN,1,281,201912,74933 -BE,VN,1,282,201912,143188 -BE,VN,1,289,201912,714823 -BE,VN,1,291,201912,23905 -BE,VN,1,293,201912,115121 -BE,VN,1,309,201912,180829 -BE,VN,1,310,201912,1840495 -BE,VN,1,321,201912,1842294 -BE,VN,1,323,201912,679887 -BE,VN,1,324,201912,1964712 -BE,VN,1,325,201912,2713983 -BE,VN,1,329,201912,168560 -BE,VN,2,011,201912,64010 -BE,VN,2,012,201912,3185 -BE,VN,2,013,201912,11826 -BE,VN,2,014,201912,123582 -BE,VN,2,022,201912,2390542 -BE,VN,2,081,201912,293767 -BE,VN,2,089,201912,2358876 -BE,VN,2,101,201912,655501 -BE,VN,2,103,201912,280548 -BE,VN,2,104,201912,27695 -BE,VN,2,105,201912,232686 -BE,VN,2,106,201912,293328 -BE,VN,2,108,201912,453958 -BE,VN,2,109,201912,813202 -BE,VN,2,110,201912,1602624 -BE,VN,2,120,201912,113915 -BE,VN,2,132,201912,136268 -BE,VN,2,139,201912,451166 -BE,VN,2,141,201912,66330 -BE,VN,2,151,201912,92201 -BE,VN,2,161,201912,9477 -BE,VN,2,162,201912,102612 -BE,VN,2,171,201912,122052 -BE,VN,2,172,201912,2635 -BE,VN,2,192,201912,430489 -BE,VN,2,201,201912,3886379 -BE,VN,2,202,201912,266246 -BE,VN,2,203,201912,177053 -BE,VN,2,204,201912,158217 -BE,VN,2,205,201912,647665 -BE,VN,2,211,201912,419973 -BE,VN,2,212,201912,12020737 -BE,VN,2,221,201912,126945 -BE,VN,2,222,201912,213998 -BE,VN,2,231,201912,2193 -BE,VN,2,234,201912,95 -BE,VN,2,239,201912,12563 -BE,VN,2,241,201912,1434572 -BE,VN,2,242,201912,197563 -BE,VN,2,243,201912,157011 -BE,VN,2,244,201912,250559 -BE,VN,2,251,201912,208219 -BE,VN,2,257,201912,9382 -BE,VN,2,259,201912,154788 -BE,VN,2,261,201912,248583 -BE,VN,2,262,201912,414529 -BE,VN,2,263,201912,13080 -BE,VN,2,264,201912,33925 -BE,VN,2,265,201912,82833 -BE,VN,2,266,201912,555630 -BE,VN,2,267,201912,82954 -BE,VN,2,271,201912,63664 -BE,VN,2,272,201912,7890 -BE,VN,2,273,201912,208882 -BE,VN,2,274,201912,24066 -BE,VN,2,275,201912,79708 -BE,VN,2,279,201912,92721 -BE,VN,2,281,201912,1087573 -BE,VN,2,282,201912,3164227 -BE,VN,2,283,201912,2220 -BE,VN,2,284,201912,20109 -BE,VN,2,289,201912,3034028 -BE,VN,2,293,201912,51473 -BE,VN,2,302,201912,74478 -BE,VN,2,309,201912,14414 -BE,VN,2,310,201912,5753 -BE,VN,2,321,201912,3786687 -BE,VN,2,324,201912,510387 -BE,VN,2,325,201912,288295 -BE,VN,2,329,201912,10808 -BE,WF,2,110,201912,10826 -BE,XC,2,011,201912,37 -BE,XC,2,107,201912,46 -BE,XC,2,108,201912,159 -BE,XC,2,139,201912,2470 -BE,XC,2,141,201912,2997 -BE,XC,2,143,201912,1653 -BE,XC,2,151,201912,452 -BE,XC,2,152,201912,472 -BE,XC,2,162,201912,2225 -BE,XC,2,172,201912,148 -BE,XC,2,204,201912,1171 -BE,XC,2,222,201912,1165 -BE,XC,2,231,201912,1400 -BE,XC,2,234,201912,948 -BE,XC,2,237,201912,54 -BE,XC,2,257,201912,126 -BE,XC,2,259,201912,1061 -BE,XC,2,265,201912,206 -BE,XC,2,274,201912,1277 -BE,XC,2,275,201912,427 -BE,XC,2,282,201912,1317 -BE,XC,2,310,201912,7555 -BE,XC,2,325,201912,52 -BE,XC,2,329,201912,1713 -BE,XK,1,203,201912,19385 -BE,XK,1,222,201912,234887 -BE,XK,1,231,201912,1598 -BE,XK,1,244,201912,21 -BE,XK,1,257,201912,2232 -BE,XK,1,271,201912,439 -BE,XK,1,293,201912,496 -BE,XK,1,310,201912,32953 -BE,XK,2,011,201912,10276 -BE,XK,2,101,201912,153 -BE,XK,2,103,201912,61214 -BE,XK,2,106,201912,13143 -BE,XK,2,108,201912,1090072 -BE,XK,2,120,201912,4113 -BE,XK,2,139,201912,42343 -BE,XK,2,141,201912,916 -BE,XK,2,143,201912,1180 -BE,XK,2,151,201912,8089 -BE,XK,2,162,201912,437 -BE,XK,2,172,201912,2529 -BE,XK,2,201,201912,89221 -BE,XK,2,203,201912,52009 -BE,XK,2,204,201912,6531 -BE,XK,2,205,201912,55263 -BE,XK,2,212,201912,22064 -BE,XK,2,221,201912,21569 -BE,XK,2,222,201912,73078 -BE,XK,2,231,201912,505 -BE,XK,2,233,201912,30535 -BE,XK,2,252,201912,413 -BE,XK,2,257,201912,5878 -BE,XK,2,259,201912,809 -BE,XK,2,264,201912,8193 -BE,XK,2,271,201912,4219 -BE,XK,2,274,201912,200 -BE,XK,2,281,201912,2817 -BE,XK,2,282,201912,38027 -BE,XK,2,289,201912,20926 -BE,XK,2,291,201912,86772 -BE,XK,2,292,201912,12100 -BE,XK,2,293,201912,2484 -BE,XK,2,310,201912,19009 -BE,XK,2,325,201912,24457 -BE,XK,2,329,201912,4201 -BE,XL,2,152,201912,68786 -BE,XS,1,011,201912,2461058 -BE,XS,1,103,201912,2098444 -BE,XS,1,104,201912,16013 -BE,XS,1,106,201912,30356 -BE,XS,1,107,201912,13344 -BE,XS,1,108,201912,223258 -BE,XS,1,110,201912,25560 -BE,XS,1,132,201912,1813 -BE,XS,1,139,201912,1797163 -BE,XS,1,141,201912,380783 -BE,XS,1,143,201912,5507 -BE,XS,1,151,201912,119453 -BE,XS,1,161,201912,82082 -BE,XS,1,162,201912,612366 -BE,XS,1,171,201912,9924 -BE,XS,1,172,201912,175910 -BE,XS,1,201,201912,1922323 -BE,XS,1,202,201912,241079 -BE,XS,1,205,201912,67100 -BE,XS,1,212,201912,951398 -BE,XS,1,221,201912,40165 -BE,XS,1,222,201912,102044 -BE,XS,1,231,201912,9293 -BE,XS,1,242,201912,70230 -BE,XS,1,243,201912,318 -BE,XS,1,244,201912,10990 -BE,XS,1,251,201912,368762 -BE,XS,1,252,201912,85157 -BE,XS,1,257,201912,541041 -BE,XS,1,259,201912,1049235 -BE,XS,1,262,201912,7394 -BE,XS,1,263,201912,608 -BE,XS,1,264,201912,307 -BE,XS,1,265,201912,6466 -BE,XS,1,271,201912,65498 -BE,XS,1,273,201912,2395 -BE,XS,1,274,201912,20113 -BE,XS,1,275,201912,39407 -BE,XS,1,279,201912,8460 -BE,XS,1,281,201912,216079 -BE,XS,1,282,201912,436258 -BE,XS,1,289,201912,19938 -BE,XS,1,291,201912,3916 -BE,XS,1,293,201912,1155909 -BE,XS,1,310,201912,734728 -BE,XS,1,324,201912,145 -BE,XS,1,325,201912,28242 -BE,XS,1,329,201912,43218 -BE,XS,2,011,201912,363375 -BE,XS,2,012,201912,12052 -BE,XS,2,013,201912,50215 -BE,XS,2,014,201912,8268 -BE,XS,2,081,201912,3218 -BE,XS,2,101,201912,10285 -BE,XS,2,103,201912,1279853 -BE,XS,2,104,201912,81699 -BE,XS,2,105,201912,120798 -BE,XS,2,106,201912,129800 -BE,XS,2,107,201912,173461 -BE,XS,2,108,201912,655944 -BE,XS,2,109,201912,155439 -BE,XS,2,110,201912,175724 -BE,XS,2,120,201912,1127425 -BE,XS,2,131,201912,325 -BE,XS,2,132,201912,25886 -BE,XS,2,139,201912,833318 -BE,XS,2,141,201912,81522 -BE,XS,2,142,201912,105 -BE,XS,2,143,201912,18571 -BE,XS,2,151,201912,30852 -BE,XS,2,152,201912,2094 -BE,XS,2,161,201912,203 -BE,XS,2,162,201912,114540 -BE,XS,2,171,201912,3436348 -BE,XS,2,172,201912,46676 -BE,XS,2,192,201912,635090 -BE,XS,2,201,201912,4012939 -BE,XS,2,202,201912,954865 -BE,XS,2,203,201912,309468 -BE,XS,2,204,201912,350772 -BE,XS,2,205,201912,809419 -BE,XS,2,206,201912,671362 -BE,XS,2,211,201912,1301 -BE,XS,2,212,201912,2486530 -BE,XS,2,221,201912,647480 -BE,XS,2,222,201912,922075 -BE,XS,2,231,201912,107081 -BE,XS,2,232,201912,17348 -BE,XS,2,233,201912,34023 -BE,XS,2,234,201912,2794 -BE,XS,2,236,201912,4276 -BE,XS,2,239,201912,13378 -BE,XS,2,241,201912,178568 -BE,XS,2,242,201912,54992 -BE,XS,2,243,201912,371243 -BE,XS,2,244,201912,547528 -BE,XS,2,251,201912,9216 -BE,XS,2,257,201912,208163 -BE,XS,2,259,201912,208486 -BE,XS,2,261,201912,171209 -BE,XS,2,262,201912,138030 -BE,XS,2,263,201912,24965 -BE,XS,2,264,201912,175736 -BE,XS,2,265,201912,70900 -BE,XS,2,266,201912,46270 -BE,XS,2,267,201912,870 -BE,XS,2,271,201912,85385 -BE,XS,2,272,201912,27722 -BE,XS,2,273,201912,502683 -BE,XS,2,274,201912,26658 -BE,XS,2,275,201912,36214 -BE,XS,2,279,201912,108718 -BE,XS,2,281,201912,549151 -BE,XS,2,282,201912,917263 -BE,XS,2,283,201912,414533 -BE,XS,2,284,201912,70025 -BE,XS,2,289,201912,852193 -BE,XS,2,291,201912,672213 -BE,XS,2,292,201912,4215 -BE,XS,2,293,201912,332630 -BE,XS,2,303,201912,17919 -BE,XS,2,309,201912,2167 -BE,XS,2,310,201912,14913 -BE,XS,2,321,201912,40408 -BE,XS,2,322,201912,583 -BE,XS,2,323,201912,6232 -BE,XS,2,324,201912,317 -BE,XS,2,325,201912,579732 -BE,XS,2,329,201912,144025 -BE,YE,2,103,201912,1829 -BE,YE,2,109,201912,1108493 -BE,YE,2,139,201912,1633 -BE,YE,2,172,201912,1250 -BE,YE,2,201,201912,131153 -BE,YE,2,205,201912,22169 -BE,YE,2,212,201912,4241 -BE,YE,2,221,201912,3731 -BE,YE,2,222,201912,293517 -BE,YE,2,257,201912,310 -BE,YE,2,265,201912,2980 -BE,YE,2,266,201912,6736 -BE,YE,2,271,201912,81395 -BE,YE,2,281,201912,65295 -BE,YE,2,282,201912,47539 -BE,YE,2,291,201912,16500 -BE,YE,2,325,201912,99052 -BE,ZA,1,012,201912,985017 -BE,ZA,1,013,201912,6400 -BE,ZA,1,072,201912,42499 -BE,ZA,1,081,201912,1231766 -BE,ZA,1,089,201912,40203420 -BE,ZA,1,101,201912,217456 -BE,ZA,1,103,201912,227779 -BE,ZA,1,104,201912,47588 -BE,ZA,1,108,201912,24395 -BE,ZA,1,110,201912,2037219 -BE,ZA,1,120,201912,38747 -BE,ZA,1,132,201912,1727 -BE,ZA,1,139,201912,588306 -BE,ZA,1,141,201912,14866 -BE,ZA,1,151,201912,12536 -BE,ZA,1,162,201912,7054 -BE,ZA,1,171,201912,551657 -BE,ZA,1,172,201912,7739 -BE,ZA,1,201,201912,25501252 -BE,ZA,1,203,201912,1398388 -BE,ZA,1,204,201912,312296 -BE,ZA,1,205,201912,460678 -BE,ZA,1,206,201912,92734 -BE,ZA,1,212,201912,251 -BE,ZA,1,221,201912,1802870 -BE,ZA,1,222,201912,18844 -BE,ZA,1,231,201912,518886 -BE,ZA,1,234,201912,1889044 -BE,ZA,1,235,201912,33493 -BE,ZA,1,236,201912,21721 -BE,ZA,1,237,201912,169467 -BE,ZA,1,239,201912,7 -BE,ZA,1,241,201912,21226020 -BE,ZA,1,242,201912,40 -BE,ZA,1,244,201912,10724211 -BE,ZA,1,257,201912,70120 -BE,ZA,1,259,201912,51350 -BE,ZA,1,261,201912,2246 -BE,ZA,1,262,201912,6484 -BE,ZA,1,263,201912,9813 -BE,ZA,1,265,201912,84111 -BE,ZA,1,266,201912,3947 -BE,ZA,1,271,201912,132228 -BE,ZA,1,272,201912,532 -BE,ZA,1,273,201912,2902 -BE,ZA,1,274,201912,32242 -BE,ZA,1,279,201912,79777 -BE,ZA,1,281,201912,279115 -BE,ZA,1,282,201912,283519 -BE,ZA,1,283,201912,12965 -BE,ZA,1,284,201912,611 -BE,ZA,1,289,201912,36659 -BE,ZA,1,291,201912,54291622 -BE,ZA,1,293,201912,1777759 -BE,ZA,1,303,201912,257266 -BE,ZA,1,309,201912,1686 -BE,ZA,1,310,201912,11654 -BE,ZA,1,321,201912,6849215 -BE,ZA,1,325,201912,181948 -BE,ZA,1,329,201912,152953 -BE,ZA,2,011,201912,5358 -BE,ZA,2,014,201912,7334 -BE,ZA,2,081,201912,7538 -BE,ZA,2,089,201912,1335660 -BE,ZA,2,103,201912,1505504 -BE,ZA,2,104,201912,178973 -BE,ZA,2,105,201912,3273879 -BE,ZA,2,106,201912,350575 -BE,ZA,2,107,201912,93526 -BE,ZA,2,108,201912,2284215 -BE,ZA,2,109,201912,317566 -BE,ZA,2,110,201912,1060912 -BE,ZA,2,120,201912,7078 -BE,ZA,2,132,201912,61354 -BE,ZA,2,139,201912,660880 -BE,ZA,2,141,201912,343155 -BE,ZA,2,143,201912,5949 -BE,ZA,2,151,201912,156976 -BE,ZA,2,152,201912,12248 -BE,ZA,2,162,201912,58912 -BE,ZA,2,171,201912,834342 -BE,ZA,2,172,201912,999228 -BE,ZA,2,192,201912,2597670 -BE,ZA,2,201,201912,11733430 -BE,ZA,2,202,201912,4006337 -BE,ZA,2,203,201912,899229 -BE,ZA,2,204,201912,2254366 -BE,ZA,2,205,201912,6217002 -BE,ZA,2,206,201912,441372 -BE,ZA,2,211,201912,66331 -BE,ZA,2,212,201912,10393058 -BE,ZA,2,221,201912,1506028 -BE,ZA,2,222,201912,3067133 -BE,ZA,2,231,201912,216119 -BE,ZA,2,232,201912,1093 -BE,ZA,2,234,201912,1073309 -BE,ZA,2,235,201912,201854 -BE,ZA,2,239,201912,158658 -BE,ZA,2,241,201912,4430016 -BE,ZA,2,242,201912,343047 -BE,ZA,2,243,201912,168613 -BE,ZA,2,244,201912,3298503 -BE,ZA,2,245,201912,96695 -BE,ZA,2,251,201912,61423 -BE,ZA,2,252,201912,27553 -BE,ZA,2,253,201912,41 -BE,ZA,2,257,201912,225199 -BE,ZA,2,259,201912,580251 -BE,ZA,2,261,201912,497730 -BE,ZA,2,262,201912,318917 -BE,ZA,2,263,201912,250933 -BE,ZA,2,264,201912,123331 -BE,ZA,2,265,201912,1949040 -BE,ZA,2,266,201912,437622 -BE,ZA,2,267,201912,86206 -BE,ZA,2,271,201912,774827 -BE,ZA,2,272,201912,250019 -BE,ZA,2,273,201912,423268 -BE,ZA,2,274,201912,629954 -BE,ZA,2,275,201912,109349 -BE,ZA,2,279,201912,1599862 -BE,ZA,2,281,201912,3848880 -BE,ZA,2,282,201912,4618561 -BE,ZA,2,283,201912,1336842 -BE,ZA,2,284,201912,97227 -BE,ZA,2,289,201912,7707763 -BE,ZA,2,291,201912,2762976 -BE,ZA,2,292,201912,51817 -BE,ZA,2,293,201912,2651812 -BE,ZA,2,301,201912,128 -BE,ZA,2,303,201912,127014 -BE,ZA,2,309,201912,6455 -BE,ZA,2,310,201912,47535 -BE,ZA,2,321,201912,226535 -BE,ZA,2,323,201912,14177 -BE,ZA,2,324,201912,33754 -BE,ZA,2,325,201912,3682720 -BE,ZA,2,329,201912,133569 -BE,ZM,1,011,201912,162144 -BE,ZM,1,120,201912,3055144 -BE,ZM,1,244,201912,8638595 -BE,ZM,1,271,201912,94 -BE,ZM,2,139,201912,6550 -BE,ZM,2,172,201912,611 -BE,ZM,2,192,201912,9922 -BE,ZM,2,205,201912,7658 -BE,ZM,2,212,201912,298996 -BE,ZM,2,221,201912,17118 -BE,ZM,2,222,201912,75204 -BE,ZM,2,231,201912,2674 -BE,ZM,2,239,201912,41 -BE,ZM,2,242,201912,1518 -BE,ZM,2,257,201912,3043 -BE,ZM,2,259,201912,154118 -BE,ZM,2,265,201912,10327 -BE,ZM,2,273,201912,2100 -BE,ZM,2,274,201912,2678 -BE,ZM,2,279,201912,23638 -BE,ZM,2,281,201912,428110 -BE,ZM,2,282,201912,107916 -BE,ZM,2,289,201912,62439 -BE,ZM,2,325,201912,1347 -BE,ZM,2,329,201912,1234 -BE,ZW,1,012,201912,76126 -BE,ZW,1,089,201912,339877 -BE,ZW,1,120,201912,1077211 -BE,ZW,1,162,201912,873 -BE,ZW,1,237,201912,4081 -BE,ZW,1,259,201912,6863 -BE,ZW,1,279,201912,20 -BE,ZW,2,139,201912,96 -BE,ZW,2,205,201912,12209 -BE,ZW,2,212,201912,1096659 -BE,ZW,2,221,201912,1705 -BE,ZW,2,222,201912,2629 -BE,ZW,2,262,201912,20998 -BE,ZW,2,263,201912,300 -BE,ZW,2,265,201912,3729 -BE,ZW,2,273,201912,2531 -BE,ZW,2,279,201912,41264 -BE,ZW,2,281,201912,4382 -BE,ZW,2,282,201912,41937 -BE,ZW,2,325,201912,25224 -BG,AE,1,108,201912,271 -BG,AE,1,132,201912,5103 -BG,AE,1,139,201912,677 -BG,AE,1,141,201912,50711 -BG,AE,1,152,201912,505 -BG,AE,1,204,201912,68886 -BG,AE,1,221,201912,18444 -BG,AE,1,222,201912,14267 -BG,AE,1,231,201912,35700 -BG,AE,1,234,201912,1101 -BG,AE,1,244,201912,414176 -BG,AE,1,257,201912,2924 -BG,AE,1,259,201912,1890 -BG,AE,1,261,201912,326 -BG,AE,1,262,201912,30046 -BG,AE,1,263,201912,1231 -BG,AE,1,265,201912,4615 -BG,AE,1,267,201912,316 -BG,AE,1,271,201912,2796 -BG,AE,1,274,201912,5110 -BG,AE,1,281,201912,26652 -BG,AE,1,282,201912,55740 -BG,AE,1,289,201912,35390 -BG,AE,1,293,201912,73869 -BG,AE,1,303,201912,9633 -BG,AE,1,310,201912,6288 -BG,AE,1,323,201912,316 -BG,AE,1,329,201912,26256 -BG,AE,2,011,201912,384665 -BG,AE,2,012,201912,11415 -BG,AE,2,014,201912,41741 -BG,AE,2,103,201912,32103 -BG,AE,2,105,201912,125417 -BG,AE,2,107,201912,24851 -BG,AE,2,108,201912,532818 -BG,AE,2,110,201912,121660 -BG,AE,2,120,201912,188012 -BG,AE,2,139,201912,52762 -BG,AE,2,141,201912,154202 -BG,AE,2,143,201912,6055 -BG,AE,2,151,201912,909 -BG,AE,2,171,201912,19531 -BG,AE,2,172,201912,79024 -BG,AE,2,204,201912,263006 -BG,AE,2,205,201912,5175 -BG,AE,2,222,201912,70326 -BG,AE,2,231,201912,53623 -BG,AE,2,234,201912,149689 -BG,AE,2,244,201912,281882 -BG,AE,2,257,201912,1069 -BG,AE,2,259,201912,44843 -BG,AE,2,261,201912,904 -BG,AE,2,262,201912,224431 -BG,AE,2,263,201912,370304 -BG,AE,2,264,201912,352 -BG,AE,2,265,201912,103694 -BG,AE,2,266,201912,13577 -BG,AE,2,267,201912,5699 -BG,AE,2,271,201912,1640332 -BG,AE,2,272,201912,2561 -BG,AE,2,273,201912,70002 -BG,AE,2,274,201912,1750 -BG,AE,2,279,201912,140117 -BG,AE,2,281,201912,363909 -BG,AE,2,282,201912,9805 -BG,AE,2,289,201912,10104 -BG,AE,2,291,201912,4499 -BG,AE,2,309,201912,11118 -BG,AE,2,310,201912,73193 -BG,AE,2,323,201912,68659 -BG,AE,2,324,201912,8448 -BG,AE,2,325,201912,274108 -BG,AF,2,011,201912,200152 -BG,AF,2,141,201912,5322 -BG,AF,2,143,201912,20006 -BG,AF,2,152,201912,26119 -BG,AF,2,172,201912,827 -BG,AF,2,257,201912,40140 -BG,AF,2,291,201912,12499 -BG,AF,2,325,201912,328 -BG,AF,2,329,201912,3065 -BG,AG,2,120,201912,257 -BG,AL,1,011,201912,161687 -BG,AL,1,012,201912,37541 -BG,AL,1,103,201912,16600 -BG,AL,1,107,201912,26756 -BG,AL,1,139,201912,6025 -BG,AL,1,141,201912,917797 -BG,AL,1,162,201912,3511 -BG,AL,1,192,201912,1074191 -BG,AL,1,222,201912,10329 -BG,AL,1,271,201912,55716 -BG,AL,1,273,201912,824 -BG,AL,1,310,201912,62933 -BG,AL,2,011,201912,600 -BG,AL,2,012,201912,16861 -BG,AL,2,014,201912,230040 -BG,AL,2,022,201912,5292 -BG,AL,2,101,201912,99623 -BG,AL,2,103,201912,81013 -BG,AL,2,104,201912,235013 -BG,AL,2,105,201912,1806 -BG,AL,2,106,201912,47911 -BG,AL,2,107,201912,405304 -BG,AL,2,108,201912,126483 -BG,AL,2,120,201912,134181 -BG,AL,2,131,201912,42694 -BG,AL,2,132,201912,881081 -BG,AL,2,139,201912,316965 -BG,AL,2,141,201912,198468 -BG,AL,2,143,201912,4778 -BG,AL,2,151,201912,3195 -BG,AL,2,152,201912,5251 -BG,AL,2,161,201912,47414 -BG,AL,2,162,201912,22060 -BG,AL,2,172,201912,53071 -BG,AL,2,192,201912,32861 -BG,AL,2,201,201912,221740 -BG,AL,2,203,201912,26281 -BG,AL,2,204,201912,174532 -BG,AL,2,205,201912,75074 -BG,AL,2,206,201912,1425 -BG,AL,2,212,201912,732001 -BG,AL,2,221,201912,15710 -BG,AL,2,222,201912,155989 -BG,AL,2,231,201912,177703 -BG,AL,2,233,201912,41353 -BG,AL,2,234,201912,62221 -BG,AL,2,236,201912,33717 -BG,AL,2,239,201912,2458 -BG,AL,2,241,201912,70216 -BG,AL,2,242,201912,2340 -BG,AL,2,244,201912,173318 -BG,AL,2,251,201912,26324 -BG,AL,2,252,201912,4760 -BG,AL,2,257,201912,8545 -BG,AL,2,259,201912,35961 -BG,AL,2,262,201912,447 -BG,AL,2,263,201912,249844 -BG,AL,2,264,201912,329322 -BG,AL,2,265,201912,9038 -BG,AL,2,267,201912,15248 -BG,AL,2,271,201912,49078 -BG,AL,2,272,201912,17670 -BG,AL,2,273,201912,57538 -BG,AL,2,274,201912,67121 -BG,AL,2,275,201912,222401 -BG,AL,2,279,201912,123440 -BG,AL,2,281,201912,99709 -BG,AL,2,282,201912,41987 -BG,AL,2,284,201912,2900 -BG,AL,2,289,201912,25240 -BG,AL,2,291,201912,33884 -BG,AL,2,293,201912,32496 -BG,AL,2,309,201912,2096 -BG,AL,2,310,201912,9568 -BG,AL,2,324,201912,23188 -BG,AL,2,325,201912,15306 -BG,AL,2,329,201912,80035 -BG,AM,1,265,201912,1627 -BG,AM,2,103,201912,11669 -BG,AM,2,104,201912,3440 -BG,AM,2,107,201912,22057 -BG,AM,2,108,201912,47568 -BG,AM,2,110,201912,4534 -BG,AM,2,120,201912,8172 -BG,AM,2,139,201912,9269 -BG,AM,2,141,201912,62594 -BG,AM,2,143,201912,33899 -BG,AM,2,151,201912,8518 -BG,AM,2,162,201912,27938 -BG,AM,2,171,201912,55357 -BG,AM,2,172,201912,52824 -BG,AM,2,192,201912,4426 -BG,AM,2,203,201912,29075 -BG,AM,2,204,201912,484728 -BG,AM,2,205,201912,30928 -BG,AM,2,212,201912,99965 -BG,AM,2,221,201912,732 -BG,AM,2,222,201912,53282 -BG,AM,2,231,201912,25828 -BG,AM,2,233,201912,9716 -BG,AM,2,234,201912,4117 -BG,AM,2,244,201912,23922 -BG,AM,2,251,201912,59732 -BG,AM,2,257,201912,10871 -BG,AM,2,259,201912,9540 -BG,AM,2,262,201912,13500 -BG,AM,2,265,201912,2866 -BG,AM,2,271,201912,645 -BG,AM,2,275,201912,19429 -BG,AM,2,281,201912,15323 -BG,AM,2,282,201912,210491 -BG,AM,2,283,201912,1700 -BG,AM,2,284,201912,24117 -BG,AM,2,289,201912,1008867 -BG,AM,2,291,201912,315136 -BG,AM,2,292,201912,312284 -BG,AM,2,293,201912,511 -BG,AM,2,310,201912,31802 -BG,AM,2,324,201912,11690 -BG,AM,2,325,201912,34938 -BG,AM,2,329,201912,5440 -BG,AO,2,141,201912,51823 -BG,AR,1,011,201912,720200 -BG,AR,1,102,201912,300690 -BG,AR,1,103,201912,845309 -BG,AR,1,107,201912,48640 -BG,AR,1,131,201912,142520 -BG,AR,1,283,201912,23185 -BG,AR,2,139,201912,7902 -BG,AR,2,143,201912,724 -BG,AR,2,205,201912,5912 -BG,AR,2,221,201912,4579 -BG,AR,2,222,201912,44620 -BG,AR,2,273,201912,355 -BG,AR,2,281,201912,21596 -BG,AR,2,282,201912,755 -BG,AT,1,011,201912,901857 -BG,AT,1,012,201912,80052 -BG,AT,1,023,201912,974 -BG,AT,1,062,201912,248900 -BG,AT,1,081,201912,49468 -BG,AT,1,089,201912,4527 -BG,AT,1,101,201912,331324 -BG,AT,1,103,201912,263507 -BG,AT,1,104,201912,36924 -BG,AT,1,105,201912,276152 -BG,AT,1,106,201912,149059 -BG,AT,1,107,201912,85819 -BG,AT,1,108,201912,1851173 -BG,AT,1,109,201912,330095 -BG,AT,1,110,201912,1622274 -BG,AT,1,131,201912,20498 -BG,AT,1,132,201912,451345 -BG,AT,1,139,201912,447714 -BG,AT,1,141,201912,1129778 -BG,AT,1,143,201912,132786 -BG,AT,1,151,201912,207047 -BG,AT,1,152,201912,36923 -BG,AT,1,161,201912,79973 -BG,AT,1,162,201912,723600 -BG,AT,1,171,201912,1858734 -BG,AT,1,172,201912,342069 -BG,AT,1,17M,201912,167101 -BG,AT,1,181,201912,4285 -BG,AT,1,192,201912,129074 -BG,AT,1,201,201912,1238288 -BG,AT,1,202,201912,40128 -BG,AT,1,203,201912,594060 -BG,AT,1,204,201912,942814 -BG,AT,1,205,201912,1183972 -BG,AT,1,206,201912,321904 -BG,AT,1,211,201912,97670 -BG,AT,1,212,201912,6262573 -BG,AT,1,221,201912,230006 -BG,AT,1,222,201912,1303241 -BG,AT,1,231,201912,132450 -BG,AT,1,232,201912,341255 -BG,AT,1,233,201912,9478 -BG,AT,1,234,201912,48489 -BG,AT,1,236,201912,48347 -BG,AT,1,239,201912,191761 -BG,AT,1,241,201912,746262 -BG,AT,1,242,201912,209093 -BG,AT,1,243,201912,111240 -BG,AT,1,244,201912,3915046 -BG,AT,1,251,201912,212375 -BG,AT,1,252,201912,214893 -BG,AT,1,257,201912,937302 -BG,AT,1,259,201912,799122 -BG,AT,1,261,201912,881816 -BG,AT,1,262,201912,3037343 -BG,AT,1,263,201912,1570129 -BG,AT,1,264,201912,138750 -BG,AT,1,265,201912,615977 -BG,AT,1,266,201912,574739 -BG,AT,1,267,201912,473751 -BG,AT,1,268,201912,18649 -BG,AT,1,271,201912,354449 -BG,AT,1,272,201912,509011 -BG,AT,1,273,201912,758694 -BG,AT,1,274,201912,70936 -BG,AT,1,275,201912,103446 -BG,AT,1,279,201912,3183842 -BG,AT,1,281,201912,707873 -BG,AT,1,282,201912,2301392 -BG,AT,1,283,201912,1021156 -BG,AT,1,284,201912,888325 -BG,AT,1,289,201912,762350 -BG,AT,1,291,201912,1719717 -BG,AT,1,292,201912,636622 -BG,AT,1,293,201912,380897 -BG,AT,1,309,201912,257574 -BG,AT,1,310,201912,83875 -BG,AT,1,321,201912,398923 -BG,AT,1,322,201912,27208 -BG,AT,1,323,201912,390218 -BG,AT,1,324,201912,2076934 -BG,AT,1,325,201912,167872 -BG,AT,1,329,201912,219301 -BG,AT,2,011,201912,900215 -BG,AT,2,014,201912,204119 -BG,AT,2,081,201912,1000 -BG,AT,2,101,201912,9236 -BG,AT,2,103,201912,853886 -BG,AT,2,104,201912,85842 -BG,AT,2,105,201912,59848 -BG,AT,2,106,201912,110583 -BG,AT,2,107,201912,130845 -BG,AT,2,108,201912,219813 -BG,AT,2,110,201912,4137 -BG,AT,2,131,201912,46432 -BG,AT,2,132,201912,32521 -BG,AT,2,139,201912,194671 -BG,AT,2,141,201912,2260816 -BG,AT,2,143,201912,146362 -BG,AT,2,14M,201912,107089 -BG,AT,2,151,201912,2064 -BG,AT,2,152,201912,43189 -BG,AT,2,162,201912,98544 -BG,AT,2,171,201912,151141 -BG,AT,2,172,201912,190329 -BG,AT,2,192,201912,463842 -BG,AT,2,201,201912,32001 -BG,AT,2,203,201912,1222 -BG,AT,2,204,201912,43623 -BG,AT,2,205,201912,19363 -BG,AT,2,206,201912,21577 -BG,AT,2,212,201912,750663 -BG,AT,2,221,201912,136424 -BG,AT,2,222,201912,488256 -BG,AT,2,231,201912,221135 -BG,AT,2,234,201912,2040 -BG,AT,2,236,201912,93587 -BG,AT,2,237,201912,1620 -BG,AT,2,239,201912,19808 -BG,AT,2,241,201912,109980 -BG,AT,2,242,201912,285865 -BG,AT,2,243,201912,50842 -BG,AT,2,244,201912,1648582 -BG,AT,2,251,201912,579468 -BG,AT,2,252,201912,250132 -BG,AT,2,257,201912,28632 -BG,AT,2,259,201912,439154 -BG,AT,2,261,201912,1044812 -BG,AT,2,262,201912,58508 -BG,AT,2,263,201912,2578585 -BG,AT,2,264,201912,58202 -BG,AT,2,265,201912,42437 -BG,AT,2,266,201912,3091103 -BG,AT,2,267,201912,160799 -BG,AT,2,271,201912,110153 -BG,AT,2,272,201912,46206 -BG,AT,2,273,201912,37275 -BG,AT,2,274,201912,156157 -BG,AT,2,275,201912,615492 -BG,AT,2,279,201912,152234 -BG,AT,2,281,201912,3040921 -BG,AT,2,282,201912,2505165 -BG,AT,2,284,201912,55370 -BG,AT,2,289,201912,1083408 -BG,AT,2,291,201912,1019328 -BG,AT,2,292,201912,36456 -BG,AT,2,293,201912,487435 -BG,AT,2,309,201912,389000 -BG,AT,2,310,201912,334334 -BG,AT,2,321,201912,620 -BG,AT,2,323,201912,1206938 -BG,AT,2,325,201912,54218 -BG,AT,2,329,201912,393 -BG,AU,1,014,201912,807320 -BG,AU,1,110,201912,703 -BG,AU,1,141,201912,584 -BG,AU,1,212,201912,224774 -BG,AU,1,222,201912,5821 -BG,AU,1,242,201912,1940 -BG,AU,1,257,201912,235 -BG,AU,1,259,201912,386 -BG,AU,1,262,201912,2027 -BG,AU,1,263,201912,1559 -BG,AU,1,265,201912,54554 -BG,AU,1,273,201912,7227 -BG,AU,1,274,201912,1320 -BG,AU,1,279,201912,4008 -BG,AU,1,284,201912,1754 -BG,AU,1,293,201912,6922 -BG,AU,1,303,201912,1842 -BG,AU,1,324,201912,214 -BG,AU,2,011,201912,516530 -BG,AU,2,103,201912,94763 -BG,AU,2,105,201912,268617 -BG,AU,2,107,201912,23410 -BG,AU,2,108,201912,41749 -BG,AU,2,109,201912,202703 -BG,AU,2,139,201912,26290 -BG,AU,2,141,201912,15226 -BG,AU,2,143,201912,16722 -BG,AU,2,151,201912,8715 -BG,AU,2,152,201912,57538 -BG,AU,2,162,201912,5468 -BG,AU,2,204,201912,3031 -BG,AU,2,205,201912,19230 -BG,AU,2,212,201912,535496 -BG,AU,2,221,201912,949 -BG,AU,2,222,201912,78752 -BG,AU,2,231,201912,70727 -BG,AU,2,244,201912,86993 -BG,AU,2,257,201912,48228 -BG,AU,2,259,201912,43669 -BG,AU,2,261,201912,26336 -BG,AU,2,262,201912,12198 -BG,AU,2,263,201912,1329 -BG,AU,2,264,201912,48344 -BG,AU,2,265,201912,4383 -BG,AU,2,271,201912,3282 -BG,AU,2,279,201912,6476 -BG,AU,2,282,201912,35197 -BG,AU,2,284,201912,676 -BG,AU,2,289,201912,25084 -BG,AU,2,293,201912,2331 -BG,AU,2,309,201912,4856 -BG,AU,2,310,201912,4034 -BG,AU,2,323,201912,2135 -BG,AU,2,325,201912,1075 -BG,AZ,1,108,201912,26570 -BG,AZ,2,107,201912,31960 -BG,AZ,2,108,201912,41766 -BG,AZ,2,120,201912,262142 -BG,AZ,2,172,201912,52361 -BG,AZ,2,204,201912,48967 -BG,AZ,2,205,201912,738 -BG,AZ,2,212,201912,304556 -BG,AZ,2,222,201912,15533 -BG,AZ,2,231,201912,54991 -BG,AZ,2,259,201912,7633 -BG,AZ,2,262,201912,2940 -BG,AZ,2,263,201912,12661 -BG,AZ,2,265,201912,5236 -BG,AZ,2,279,201912,4903 -BG,AZ,2,281,201912,13045 -BG,AZ,2,291,201912,33687 -BG,AZ,2,292,201912,5651 -BG,AZ,2,293,201912,12284 -BG,AZ,2,325,201912,11729 -BG,BA,1,089,201912,7541 -BG,BA,1,107,201912,47902 -BG,BA,1,108,201912,73684 -BG,BA,1,120,201912,8882 -BG,BA,1,162,201912,22254 -BG,BA,1,171,201912,4319 -BG,BA,1,172,201912,64811 -BG,BA,1,192,201912,14022 -BG,BA,1,201,201912,190004 -BG,BA,1,203,201912,52501 -BG,BA,1,222,201912,4224 -BG,BA,1,251,201912,47574 -BG,BA,1,259,201912,2317 -BG,BA,1,273,201912,67204 -BG,BA,1,303,201912,2190 -BG,BA,1,310,201912,90959 -BG,BA,1,324,201912,357105 -BG,BA,2,081,201912,800 -BG,BA,2,103,201912,21890 -BG,BA,2,104,201912,14244 -BG,BA,2,107,201912,414085 -BG,BA,2,108,201912,120133 -BG,BA,2,131,201912,64673 -BG,BA,2,132,201912,74688 -BG,BA,2,139,201912,286614 -BG,BA,2,141,201912,4223 -BG,BA,2,151,201912,5437 -BG,BA,2,162,201912,14624 -BG,BA,2,172,201912,139281 -BG,BA,2,201,201912,29431 -BG,BA,2,204,201912,57616 -BG,BA,2,205,201912,66555 -BG,BA,2,206,201912,6877 -BG,BA,2,212,201912,819826 -BG,BA,2,222,201912,244340 -BG,BA,2,231,201912,140131 -BG,BA,2,233,201912,52818 -BG,BA,2,236,201912,39487 -BG,BA,2,239,201912,2518 -BG,BA,2,241,201912,123494 -BG,BA,2,242,201912,261 -BG,BA,2,243,201912,187619 -BG,BA,2,244,201912,73970 -BG,BA,2,251,201912,25302 -BG,BA,2,252,201912,4754 -BG,BA,2,257,201912,7247 -BG,BA,2,259,201912,37745 -BG,BA,2,263,201912,19920 -BG,BA,2,265,201912,3971 -BG,BA,2,271,201912,22416 -BG,BA,2,272,201912,170546 -BG,BA,2,273,201912,2308 -BG,BA,2,274,201912,60262 -BG,BA,2,275,201912,69711 -BG,BA,2,279,201912,5766 -BG,BA,2,281,201912,16660 -BG,BA,2,282,201912,76550 -BG,BA,2,289,201912,18883 -BG,BA,2,293,201912,1952 -BG,BA,2,303,201912,5715 -BG,BA,2,310,201912,360293 -BG,BA,2,324,201912,280004 -BG,BA,2,325,201912,12111 -BG,BA,2,329,201912,10545 -BG,BD,1,139,201912,495 -BG,BD,1,141,201912,178448 -BG,BD,1,143,201912,2974 -BG,BD,2,109,201912,88001 -BG,BD,2,201,201912,592046 -BG,BD,2,211,201912,126002 -BG,BD,2,263,201912,1238 -BG,BD,2,265,201912,1575 -BG,BD,2,282,201912,3990 -BG,BE,1,011,201912,7991 -BG,BE,1,014,201912,975 -BG,BE,1,101,201912,3135268 -BG,BE,1,102,201912,129811 -BG,BE,1,103,201912,655801 -BG,BE,1,104,201912,132815 -BG,BE,1,105,201912,564200 -BG,BE,1,106,201912,288291 -BG,BE,1,107,201912,196873 -BG,BE,1,108,201912,571850 -BG,BE,1,109,201912,176347 -BG,BE,1,110,201912,9141 -BG,BE,1,120,201912,444909 -BG,BE,1,131,201912,2123 -BG,BE,1,132,201912,393610 -BG,BE,1,139,201912,944714 -BG,BE,1,141,201912,1221161 -BG,BE,1,143,201912,276089 -BG,BE,1,151,201912,264803 -BG,BE,1,152,201912,731120 -BG,BE,1,162,201912,129285 -BG,BE,1,171,201912,394382 -BG,BE,1,172,201912,157705 -BG,BE,1,192,201912,441280 -BG,BE,1,201,201912,3591191 -BG,BE,1,202,201912,1249253 -BG,BE,1,203,201912,170313 -BG,BE,1,204,201912,725740 -BG,BE,1,205,201912,9125471 -BG,BE,1,206,201912,927607 -BG,BE,1,211,201912,70950 -BG,BE,1,212,201912,2240934 -BG,BE,1,221,201912,332621 -BG,BE,1,222,201912,878325 -BG,BE,1,231,201912,168365 -BG,BE,1,234,201912,5912 -BG,BE,1,236,201912,1002 -BG,BE,1,239,201912,24820 -BG,BE,1,241,201912,339918 -BG,BE,1,242,201912,5335 -BG,BE,1,243,201912,189565 -BG,BE,1,244,201912,167580 -BG,BE,1,245,201912,8110 -BG,BE,1,251,201912,208797 -BG,BE,1,252,201912,8763 -BG,BE,1,257,201912,212590 -BG,BE,1,259,201912,173119 -BG,BE,1,261,201912,837054 -BG,BE,1,262,201912,653219 -BG,BE,1,263,201912,64141 -BG,BE,1,264,201912,159926 -BG,BE,1,265,201912,126852 -BG,BE,1,266,201912,105412 -BG,BE,1,267,201912,175600 -BG,BE,1,271,201912,385033 -BG,BE,1,272,201912,198400 -BG,BE,1,273,201912,746621 -BG,BE,1,274,201912,23387 -BG,BE,1,275,201912,220207 -BG,BE,1,279,201912,193402 -BG,BE,1,281,201912,1244351 -BG,BE,1,282,201912,1487005 -BG,BE,1,283,201912,649709 -BG,BE,1,284,201912,410625 -BG,BE,1,289,201912,2101126 -BG,BE,1,291,201912,2551733 -BG,BE,1,292,201912,383957 -BG,BE,1,293,201912,837815 -BG,BE,1,301,201912,1574 -BG,BE,1,303,201912,208390 -BG,BE,1,309,201912,44945 -BG,BE,1,310,201912,76189 -BG,BE,1,321,201912,79356 -BG,BE,1,322,201912,24935 -BG,BE,1,323,201912,27591 -BG,BE,1,324,201912,7857 -BG,BE,1,325,201912,635456 -BG,BE,1,329,201912,110849 -BG,BE,2,011,201912,955105 -BG,BE,2,012,201912,18306 -BG,BE,2,014,201912,6813 -BG,BE,2,030,201912,58456 -BG,BE,2,089,201912,4561 -BG,BE,2,101,201912,1262830 -BG,BE,2,102,201912,213498 -BG,BE,2,103,201912,129534 -BG,BE,2,104,201912,19901 -BG,BE,2,105,201912,23933 -BG,BE,2,106,201912,44141 -BG,BE,2,107,201912,142651 -BG,BE,2,108,201912,284382 -BG,BE,2,109,201912,10827 -BG,BE,2,10M,201912,50995 -BG,BE,2,110,201912,249055 -BG,BE,2,131,201912,103266 -BG,BE,2,132,201912,120835 -BG,BE,2,139,201912,944400 -BG,BE,2,141,201912,2786657 -BG,BE,2,143,201912,1946582 -BG,BE,2,14M,201912,43345 -BG,BE,2,151,201912,16948 -BG,BE,2,152,201912,10364 -BG,BE,2,161,201912,16615 -BG,BE,2,162,201912,6767 -BG,BE,2,171,201912,3589 -BG,BE,2,172,201912,207526 -BG,BE,2,192,201912,2706 -BG,BE,2,201,201912,255150 -BG,BE,2,202,201912,19889 -BG,BE,2,204,201912,125733 -BG,BE,2,206,201912,32228 -BG,BE,2,211,201912,2458305 -BG,BE,2,212,201912,487443 -BG,BE,2,221,201912,467405 -BG,BE,2,222,201912,964772 -BG,BE,2,231,201912,146134 -BG,BE,2,233,201912,12442 -BG,BE,2,234,201912,20475 -BG,BE,2,236,201912,63743 -BG,BE,2,237,201912,25837 -BG,BE,2,239,201912,25965 -BG,BE,2,242,201912,339255 -BG,BE,2,244,201912,595083 -BG,BE,2,251,201912,770358 -BG,BE,2,252,201912,125374 -BG,BE,2,257,201912,174121 -BG,BE,2,259,201912,244497 -BG,BE,2,261,201912,386374 -BG,BE,2,262,201912,548485 -BG,BE,2,263,201912,68839 -BG,BE,2,264,201912,547210 -BG,BE,2,265,201912,227674 -BG,BE,2,267,201912,17535 -BG,BE,2,271,201912,624625 -BG,BE,2,272,201912,268723 -BG,BE,2,273,201912,55964 -BG,BE,2,274,201912,45599 -BG,BE,2,275,201912,822307 -BG,BE,2,279,201912,288315 -BG,BE,2,281,201912,221799 -BG,BE,2,282,201912,630004 -BG,BE,2,284,201912,24636 -BG,BE,2,289,201912,585757 -BG,BE,2,291,201912,1414982 -BG,BE,2,293,201912,91466 -BG,BE,2,301,201912,8033 -BG,BE,2,309,201912,6031850 -BG,BE,2,310,201912,385435 -BG,BE,2,321,201912,141804 -BG,BE,2,323,201912,173704 -BG,BE,2,324,201912,501 -BG,BE,2,325,201912,25403 -BG,BF,2,265,201912,2491 -BG,BH,2,107,201912,974 -BG,BH,2,222,201912,5742 -BG,BH,2,234,201912,12725 -BG,BH,2,259,201912,8697 -BG,BH,2,281,201912,16818 -BG,BH,2,310,201912,880 -BG,BJ,2,141,201912,18200 -BG,BR,1,012,201912,1103272 -BG,BR,1,103,201912,157811 -BG,BR,1,108,201912,246843 -BG,BR,1,120,201912,166509 -BG,BR,1,141,201912,689 -BG,BR,1,152,201912,287 -BG,BR,1,171,201912,51620 -BG,BR,1,204,201912,915 -BG,BR,1,293,201912,49226 -BG,BR,1,325,201912,23141 -BG,BR,2,011,201912,248215 -BG,BR,2,109,201912,108510 -BG,BR,2,132,201912,6345 -BG,BR,2,201,201912,287823 -BG,BR,2,205,201912,3383 -BG,BR,2,222,201912,22900 -BG,BR,2,231,201912,73447 -BG,BR,2,265,201912,43807 -BG,BR,2,271,201912,144593 -BG,BR,2,273,201912,16318 -BG,BR,2,281,201912,87841 -BG,BR,2,282,201912,73228 -BG,BR,2,293,201912,100346 -BG,BR,2,310,201912,78406 -BG,BR,2,329,201912,57945 -BG,BY,1,102,201912,30911 -BG,BY,1,103,201912,59141 -BG,BY,1,107,201912,1752 -BG,BY,1,108,201912,46598 -BG,BY,1,110,201912,3811 -BG,BY,1,132,201912,212179 -BG,BY,1,139,201912,3174 -BG,BY,1,162,201912,434440 -BG,BY,1,171,201912,44617 -BG,BY,1,192,201912,37647 -BG,BY,1,221,201912,626495 -BG,BY,1,222,201912,18804 -BG,BY,1,231,201912,1732 -BG,BY,1,257,201912,1762 -BG,BY,1,259,201912,14505 -BG,BY,1,265,201912,3409 -BG,BY,1,267,201912,83146 -BG,BY,1,271,201912,53084 -BG,BY,1,273,201912,127710 -BG,BY,1,274,201912,11838 -BG,BY,1,279,201912,16283 -BG,BY,1,281,201912,108437 -BG,BY,1,282,201912,9566 -BG,BY,1,291,201912,2215 -BG,BY,1,293,201912,152782 -BG,BY,1,302,201912,47460 -BG,BY,2,012,201912,372157 -BG,BY,2,081,201912,1657 -BG,BY,2,103,201912,82771 -BG,BY,2,107,201912,229507 -BG,BY,2,108,201912,225634 -BG,BY,2,109,201912,285025 -BG,BY,2,131,201912,27863 -BG,BY,2,132,201912,20038 -BG,BY,2,139,201912,5229 -BG,BY,2,162,201912,2039 -BG,BY,2,172,201912,319434 -BG,BY,2,204,201912,106709 -BG,BY,2,211,201912,8216 -BG,BY,2,212,201912,3353221 -BG,BY,2,221,201912,4609 -BG,BY,2,222,201912,79658 -BG,BY,2,232,201912,5875 -BG,BY,2,257,201912,4470 -BG,BY,2,259,201912,35921 -BG,BY,2,265,201912,3486 -BG,BY,2,271,201912,66401 -BG,BY,2,272,201912,160840 -BG,BY,2,281,201912,32271 -BG,BY,2,282,201912,243943 -BG,BY,2,283,201912,220 -BG,BY,2,289,201912,194062 -BG,BY,2,325,201912,288729 -BG,CA,1,011,201912,56762 -BG,CA,1,072,201912,25654327 -BG,CA,1,102,201912,676410 -BG,CA,1,108,201912,244443 -BG,CA,1,132,201912,6942 -BG,CA,1,139,201912,54923 -BG,CA,1,141,201912,63376 -BG,CA,1,161,201912,18763 -BG,CA,1,201,201912,8983 -BG,CA,1,205,201912,774 -BG,CA,1,212,201912,125467 -BG,CA,1,221,201912,415 -BG,CA,1,222,201912,4583 -BG,CA,1,244,201912,707699 -BG,CA,1,251,201912,41565 -BG,CA,1,257,201912,10993 -BG,CA,1,259,201912,400 -BG,CA,1,261,201912,2390 -BG,CA,1,262,201912,2744 -BG,CA,1,263,201912,456528 -BG,CA,1,264,201912,1135 -BG,CA,1,265,201912,61544 -BG,CA,1,267,201912,7238 -BG,CA,1,271,201912,26216 -BG,CA,1,273,201912,33891 -BG,CA,1,279,201912,216829 -BG,CA,1,281,201912,37201 -BG,CA,1,282,201912,11313 -BG,CA,1,289,201912,25313 -BG,CA,1,291,201912,404546 -BG,CA,1,293,201912,2075 -BG,CA,1,309,201912,15139 -BG,CA,1,321,201912,710 -BG,CA,1,322,201912,300 -BG,CA,1,325,201912,1700 -BG,CA,1,329,201912,22309 -BG,CA,2,011,201912,532605 -BG,CA,2,012,201912,28560 -BG,CA,2,103,201912,18894 -BG,CA,2,105,201912,98666 -BG,CA,2,107,201912,116663 -BG,CA,2,108,201912,34457 -BG,CA,2,110,201912,25328 -BG,CA,2,131,201912,153329 -BG,CA,2,139,201912,58618 -BG,CA,2,141,201912,752309 -BG,CA,2,143,201912,100121 -BG,CA,2,151,201912,1100 -BG,CA,2,152,201912,248 -BG,CA,2,204,201912,7082 -BG,CA,2,205,201912,143797 -BG,CA,2,211,201912,139394 -BG,CA,2,212,201912,696436 -BG,CA,2,222,201912,3644 -BG,CA,2,231,201912,48022 -BG,CA,2,239,201912,15938 -BG,CA,2,244,201912,115940 -BG,CA,2,257,201912,1144 -BG,CA,2,259,201912,4627 -BG,CA,2,262,201912,17496 -BG,CA,2,263,201912,5810 -BG,CA,2,264,201912,53144 -BG,CA,2,265,201912,38641 -BG,CA,2,271,201912,83224 -BG,CA,2,279,201912,16877 -BG,CA,2,281,201912,273125 -BG,CA,2,282,201912,181935 -BG,CA,2,284,201912,6768 -BG,CA,2,289,201912,75906 -BG,CA,2,293,201912,107820 -BG,CA,2,309,201912,19250 -BG,CA,2,310,201912,5229 -BG,CA,2,321,201912,1130 -BG,CA,2,323,201912,191778 -BG,CA,2,324,201912,1156 -BG,CA,2,325,201912,617022 -BG,CA,2,329,201912,1150 -BG,CF,2,104,201912,17917 -BG,CH,1,106,201912,37320 -BG,CH,1,108,201912,257950 -BG,CH,1,132,201912,219 -BG,CH,1,139,201912,155128 -BG,CH,1,141,201912,218851 -BG,CH,1,143,201912,18976 -BG,CH,1,151,201912,7504 -BG,CH,1,152,201912,699 -BG,CH,1,162,201912,37360 -BG,CH,1,171,201912,12707 -BG,CH,1,172,201912,53539 -BG,CH,1,192,201912,10654 -BG,CH,1,201,201912,325693 -BG,CH,1,202,201912,65149 -BG,CH,1,203,201912,38634 -BG,CH,1,204,201912,112128 -BG,CH,1,205,201912,72362 -BG,CH,1,211,201912,2622 -BG,CH,1,212,201912,7705144 -BG,CH,1,221,201912,29385 -BG,CH,1,222,201912,408422 -BG,CH,1,231,201912,13830 -BG,CH,1,239,201912,4960 -BG,CH,1,242,201912,237443 -BG,CH,1,244,201912,99091 -BG,CH,1,251,201912,11080 -BG,CH,1,257,201912,260681 -BG,CH,1,259,201912,473985 -BG,CH,1,261,201912,141599 -BG,CH,1,262,201912,3428 -BG,CH,1,263,201912,381 -BG,CH,1,264,201912,17034 -BG,CH,1,265,201912,703648 -BG,CH,1,266,201912,24334 -BG,CH,1,267,201912,376413 -BG,CH,1,271,201912,1342691 -BG,CH,1,272,201912,1168 -BG,CH,1,273,201912,343549 -BG,CH,1,274,201912,1388 -BG,CH,1,275,201912,7215 -BG,CH,1,279,201912,537165 -BG,CH,1,281,201912,290247 -BG,CH,1,282,201912,585730 -BG,CH,1,284,201912,421158 -BG,CH,1,289,201912,783956 -BG,CH,1,291,201912,1150538 -BG,CH,1,292,201912,130396 -BG,CH,1,293,201912,195769 -BG,CH,1,303,201912,307429 -BG,CH,1,309,201912,24054 -BG,CH,1,310,201912,12743 -BG,CH,1,321,201912,6232 -BG,CH,1,323,201912,8433 -BG,CH,1,324,201912,7536 -BG,CH,1,325,201912,255659 -BG,CH,1,329,201912,21796 -BG,CH,2,011,201912,20079 -BG,CH,2,012,201912,28920 -BG,CH,2,014,201912,207235 -BG,CH,2,103,201912,115179 -BG,CH,2,106,201912,60140 -BG,CH,2,107,201912,3010 -BG,CH,2,108,201912,9222 -BG,CH,2,110,201912,10551 -BG,CH,2,132,201912,1041 -BG,CH,2,139,201912,51075 -BG,CH,2,141,201912,884744 -BG,CH,2,143,201912,86715 -BG,CH,2,151,201912,412075 -BG,CH,2,161,201912,12038 -BG,CH,2,162,201912,2942 -BG,CH,2,171,201912,125137 -BG,CH,2,172,201912,113944 -BG,CH,2,204,201912,148372 -BG,CH,2,205,201912,263575 -BG,CH,2,212,201912,171465 -BG,CH,2,221,201912,94167 -BG,CH,2,222,201912,169985 -BG,CH,2,231,201912,36430 -BG,CH,2,236,201912,48139 -BG,CH,2,239,201912,2674 -BG,CH,2,242,201912,34832 -BG,CH,2,244,201912,157003 -BG,CH,2,251,201912,29555 -BG,CH,2,257,201912,129402 -BG,CH,2,259,201912,322419 -BG,CH,2,261,201912,409468 -BG,CH,2,262,201912,35309 -BG,CH,2,264,201912,14434 -BG,CH,2,265,201912,184614 -BG,CH,2,267,201912,43718 -BG,CH,2,271,201912,2389299 -BG,CH,2,273,201912,174962 -BG,CH,2,274,201912,39271 -BG,CH,2,275,201912,389455 -BG,CH,2,279,201912,176592 -BG,CH,2,281,201912,161598 -BG,CH,2,282,201912,195826 -BG,CH,2,284,201912,12508 -BG,CH,2,289,201912,133856 -BG,CH,2,291,201912,122261 -BG,CH,2,293,201912,97044 -BG,CH,2,309,201912,10252 -BG,CH,2,310,201912,92982 -BG,CH,2,321,201912,27950 -BG,CH,2,322,201912,5394 -BG,CH,2,323,201912,81225 -BG,CH,2,325,201912,22051 -BG,CH,2,329,201912,119879 -BG,CI,1,012,201912,101608 -BG,CI,2,108,201912,11096 -BG,CI,2,204,201912,2956 -BG,CL,1,103,201912,35762 -BG,CL,1,131,201912,356139 -BG,CL,1,212,201912,71899 -BG,CL,2,109,201912,15140 -BG,CL,2,141,201912,118683 -BG,CL,2,143,201912,3207 -BG,CL,2,204,201912,145405 -BG,CL,2,205,201912,750 -BG,CL,2,212,201912,53860 -BG,CL,2,259,201912,47010 -BG,CL,2,266,201912,12002 -BG,CL,2,279,201912,2668 -BG,CL,2,324,201912,2326 -BG,CL,2,325,201912,2363 -BG,CM,2,141,201912,31107 -BG,CN,1,011,201912,2054 -BG,CN,1,012,201912,163953 -BG,CN,1,014,201912,46465 -BG,CN,1,072,201912,238 -BG,CN,1,081,201912,464 -BG,CN,1,102,201912,68212 -BG,CN,1,103,201912,1404409 -BG,CN,1,104,201912,30470 -BG,CN,1,106,201912,1166440 -BG,CN,1,107,201912,14101 -BG,CN,1,108,201912,582054 -BG,CN,1,109,201912,938180 -BG,CN,1,131,201912,908002 -BG,CN,1,132,201912,3636646 -BG,CN,1,139,201912,4213211 -BG,CN,1,141,201912,1282010 -BG,CN,1,143,201912,453192 -BG,CN,1,151,201912,794080 -BG,CN,1,152,201912,801374 -BG,CN,1,161,201912,102314 -BG,CN,1,162,201912,1734142 -BG,CN,1,171,201912,1425282 -BG,CN,1,172,201912,407409 -BG,CN,1,181,201912,83007 -BG,CN,1,192,201912,218 -BG,CN,1,201,201912,1397839 -BG,CN,1,202,201912,1622729 -BG,CN,1,203,201912,38549 -BG,CN,1,204,201912,309167 -BG,CN,1,205,201912,786882 -BG,CN,1,206,201912,957799 -BG,CN,1,211,201912,1683942 -BG,CN,1,212,201912,246199 -BG,CN,1,221,201912,789025 -BG,CN,1,222,201912,3928762 -BG,CN,1,231,201912,1141193 -BG,CN,1,232,201912,336426 -BG,CN,1,233,201912,7027 -BG,CN,1,234,201912,370514 -BG,CN,1,236,201912,65284 -BG,CN,1,237,201912,692515 -BG,CN,1,239,201912,250012 -BG,CN,1,241,201912,1181908 -BG,CN,1,242,201912,751694 -BG,CN,1,243,201912,138190 -BG,CN,1,244,201912,1645981 -BG,CN,1,245,201912,46371 -BG,CN,1,251,201912,282281 -BG,CN,1,252,201912,353663 -BG,CN,1,257,201912,3733492 -BG,CN,1,259,201912,4294365 -BG,CN,1,261,201912,2658792 -BG,CN,1,262,201912,2183957 -BG,CN,1,263,201912,3372105 -BG,CN,1,264,201912,1698030 -BG,CN,1,265,201912,1974331 -BG,CN,1,266,201912,253644 -BG,CN,1,267,201912,563330 -BG,CN,1,268,201912,10344 -BG,CN,1,271,201912,5182094 -BG,CN,1,272,201912,350847 -BG,CN,1,273,201912,1676830 -BG,CN,1,274,201912,3594886 -BG,CN,1,275,201912,4388598 -BG,CN,1,279,201912,3331920 -BG,CN,1,281,201912,5236858 -BG,CN,1,282,201912,6677744 -BG,CN,1,283,201912,477411 -BG,CN,1,284,201912,1379099 -BG,CN,1,289,201912,3227020 -BG,CN,1,291,201912,2435089 -BG,CN,1,292,201912,779766 -BG,CN,1,293,201912,1527490 -BG,CN,1,301,201912,2405 -BG,CN,1,302,201912,94470 -BG,CN,1,303,201912,23180 -BG,CN,1,309,201912,5466113 -BG,CN,1,310,201912,4696739 -BG,CN,1,321,201912,107997 -BG,CN,1,322,201912,6846 -BG,CN,1,323,201912,895360 -BG,CN,1,324,201912,1893079 -BG,CN,1,325,201912,1364763 -BG,CN,1,329,201912,1246390 -BG,CN,2,011,201912,8980005 -BG,CN,2,012,201912,37401 -BG,CN,2,072,201912,15958027 -BG,CN,2,103,201912,78401 -BG,CN,2,104,201912,21945 -BG,CN,2,108,201912,496741 -BG,CN,2,109,201912,317791 -BG,CN,2,110,201912,249108 -BG,CN,2,131,201912,34054 -BG,CN,2,132,201912,60916 -BG,CN,2,139,201912,8913 -BG,CN,2,141,201912,74618 -BG,CN,2,143,201912,4945 -BG,CN,2,151,201912,37710 -BG,CN,2,152,201912,72540 -BG,CN,2,172,201912,821 -BG,CN,2,201,201912,857494 -BG,CN,2,202,201912,943210 -BG,CN,2,204,201912,249476 -BG,CN,2,205,201912,137384 -BG,CN,2,211,201912,69381 -BG,CN,2,212,201912,233007 -BG,CN,2,221,201912,17322 -BG,CN,2,222,201912,117337 -BG,CN,2,231,201912,65710 -BG,CN,2,234,201912,10782 -BG,CN,2,239,201912,2520 -BG,CN,2,244,201912,62891102 -BG,CN,2,257,201912,206573 -BG,CN,2,259,201912,77606 -BG,CN,2,261,201912,1644877 -BG,CN,2,262,201912,626 -BG,CN,2,263,201912,60603 -BG,CN,2,264,201912,103279 -BG,CN,2,265,201912,758839 -BG,CN,2,267,201912,19400 -BG,CN,2,271,201912,1617987 -BG,CN,2,273,201912,235697 -BG,CN,2,279,201912,4005409 -BG,CN,2,281,201912,142191 -BG,CN,2,282,201912,353654 -BG,CN,2,284,201912,7850 -BG,CN,2,289,201912,1789783 -BG,CN,2,293,201912,510857 -BG,CN,2,310,201912,333169 -BG,CN,2,323,201912,91354 -BG,CN,2,324,201912,5544 -BG,CN,2,325,201912,36100 -BG,CN,2,329,201912,1080 -BG,CO,1,012,201912,116854 -BG,CO,1,030,201912,833 -BG,CO,1,108,201912,195719 -BG,CO,2,103,201912,143148 -BG,CO,2,141,201912,3727 -BG,CO,2,264,201912,682 -BG,CO,2,265,201912,14999 -BG,CO,2,323,201912,83716 -BG,CO,2,324,201912,3262 -BG,CR,2,141,201912,20121 -BG,CR,2,279,201912,3781 -BG,CU,1,110,201912,825 -BG,CU,1,120,201912,139695 -BG,CY,1,101,201912,595723 -BG,CY,1,108,201912,92690 -BG,CY,1,110,201912,64274 -BG,CY,1,141,201912,37785 -BG,CY,1,172,201912,12033 -BG,CY,1,201,201912,116806 -BG,CY,1,204,201912,327 -BG,CY,1,212,201912,613540 -BG,CY,1,222,201912,25635 -BG,CY,1,274,201912,10928 -BG,CY,1,351,201912,701948 -BG,CY,2,011,201912,3762399 -BG,CY,2,012,201912,27459 -BG,CY,2,014,201912,3713 -BG,CY,2,022,201912,9725 -BG,CY,2,030,201912,750 -BG,CY,2,101,201912,479921 -BG,CY,2,102,201912,59012 -BG,CY,2,103,201912,57847 -BG,CY,2,104,201912,741153 -BG,CY,2,105,201912,259352 -BG,CY,2,106,201912,55274 -BG,CY,2,107,201912,397633 -BG,CY,2,108,201912,380021 -BG,CY,2,109,201912,104496 -BG,CY,2,110,201912,95550 -BG,CY,2,131,201912,2861 -BG,CY,2,132,201912,635 -BG,CY,2,139,201912,39950 -BG,CY,2,141,201912,76731 -BG,CY,2,143,201912,47343 -BG,CY,2,151,201912,479 -BG,CY,2,152,201912,126537 -BG,CY,2,162,201912,46675 -BG,CY,2,171,201912,3671 -BG,CY,2,172,201912,99504 -BG,CY,2,192,201912,70210 -BG,CY,2,201,201912,36231 -BG,CY,2,203,201912,142794 -BG,CY,2,204,201912,122519 -BG,CY,2,205,201912,718 -BG,CY,2,211,201912,21968 -BG,CY,2,212,201912,1546411 -BG,CY,2,221,201912,2792 -BG,CY,2,222,201912,97309 -BG,CY,2,231,201912,41773 -BG,CY,2,233,201912,11618 -BG,CY,2,234,201912,44814 -BG,CY,2,236,201912,30511 -BG,CY,2,237,201912,9176 -BG,CY,2,239,201912,21634 -BG,CY,2,241,201912,917491 -BG,CY,2,244,201912,68954 -BG,CY,2,251,201912,159777 -BG,CY,2,257,201912,16883 -BG,CY,2,259,201912,21454 -BG,CY,2,261,201912,4355 -BG,CY,2,262,201912,11915 -BG,CY,2,263,201912,74442 -BG,CY,2,264,201912,220653 -BG,CY,2,265,201912,14354 -BG,CY,2,273,201912,31562 -BG,CY,2,274,201912,57564 -BG,CY,2,275,201912,82189 -BG,CY,2,279,201912,19417 -BG,CY,2,281,201912,4182 -BG,CY,2,282,201912,237673 -BG,CY,2,284,201912,7060 -BG,CY,2,289,201912,31510 -BG,CY,2,293,201912,25694 -BG,CY,2,310,201912,25153 -BG,CY,2,324,201912,8865 -BG,CY,2,325,201912,10000 -BG,CY,2,329,201912,537 -BG,CY,2,351,201912,471077 -BG,CZ,1,011,201912,51474 -BG,CZ,1,012,201912,82343 -BG,CZ,1,014,201912,179382 -BG,CZ,1,030,201912,184119 -BG,CZ,1,081,201912,36266 -BG,CZ,1,101,201912,420194 -BG,CZ,1,102,201912,158814 -BG,CZ,1,103,201912,182122 -BG,CZ,1,104,201912,3758 -BG,CZ,1,105,201912,464687 -BG,CZ,1,106,201912,278260 -BG,CZ,1,107,201912,634658 -BG,CZ,1,108,201912,670760 -BG,CZ,1,109,201912,197748 -BG,CZ,1,110,201912,813478 -BG,CZ,1,131,201912,640428 -BG,CZ,1,132,201912,552990 -BG,CZ,1,139,201912,281535 -BG,CZ,1,141,201912,421318 -BG,CZ,1,143,201912,33305 -BG,CZ,1,151,201912,99517 -BG,CZ,1,152,201912,192529 -BG,CZ,1,161,201912,23218 -BG,CZ,1,162,201912,276874 -BG,CZ,1,171,201912,150134 -BG,CZ,1,172,201912,294021 -BG,CZ,1,181,201912,3000 -BG,CZ,1,192,201912,76122 -BG,CZ,1,201,201912,769585 -BG,CZ,1,202,201912,39733 -BG,CZ,1,203,201912,6975 -BG,CZ,1,204,201912,2343256 -BG,CZ,1,205,201912,163258 -BG,CZ,1,211,201912,22613 -BG,CZ,1,212,201912,3616786 -BG,CZ,1,221,201912,373881 -BG,CZ,1,222,201912,1699224 -BG,CZ,1,231,201912,289269 -BG,CZ,1,232,201912,53339 -BG,CZ,1,233,201912,10264 -BG,CZ,1,234,201912,206119 -BG,CZ,1,235,201912,5182 -BG,CZ,1,236,201912,35013 -BG,CZ,1,239,201912,93665 -BG,CZ,1,241,201912,1906557 -BG,CZ,1,242,201912,47858 -BG,CZ,1,243,201912,311424 -BG,CZ,1,244,201912,128336 -BG,CZ,1,251,201912,120664 -BG,CZ,1,252,201912,41991 -BG,CZ,1,253,201912,51001 -BG,CZ,1,257,201912,1537302 -BG,CZ,1,259,201912,553380 -BG,CZ,1,261,201912,1006199 -BG,CZ,1,262,201912,1802942 -BG,CZ,1,263,201912,9612484 -BG,CZ,1,264,201912,384874 -BG,CZ,1,265,201912,3485069 -BG,CZ,1,266,201912,53435 -BG,CZ,1,267,201912,169789 -BG,CZ,1,268,201912,7372 -BG,CZ,1,271,201912,4042479 -BG,CZ,1,272,201912,404755 -BG,CZ,1,273,201912,770754 -BG,CZ,1,274,201912,98199 -BG,CZ,1,275,201912,833368 -BG,CZ,1,279,201912,5804611 -BG,CZ,1,281,201912,483495 -BG,CZ,1,282,201912,2196626 -BG,CZ,1,283,201912,261383 -BG,CZ,1,284,201912,1601191 -BG,CZ,1,289,201912,2087948 -BG,CZ,1,291,201912,6373625 -BG,CZ,1,292,201912,77486 -BG,CZ,1,293,201912,701498 -BG,CZ,1,302,201912,122668 -BG,CZ,1,303,201912,360207 -BG,CZ,1,309,201912,587921 -BG,CZ,1,310,201912,394778 -BG,CZ,1,321,201912,250 -BG,CZ,1,323,201912,101726 -BG,CZ,1,324,201912,1021071 -BG,CZ,1,325,201912,2033716 -BG,CZ,1,329,201912,220383 -BG,CZ,1,351,201912,1778043 -BG,CZ,2,011,201912,548643 -BG,CZ,2,012,201912,1571133 -BG,CZ,2,081,201912,3799 -BG,CZ,2,089,201912,7092 -BG,CZ,2,101,201912,51846 -BG,CZ,2,103,201912,343166 -BG,CZ,2,105,201912,7695 -BG,CZ,2,106,201912,94624 -BG,CZ,2,107,201912,291375 -BG,CZ,2,108,201912,537247 -BG,CZ,2,109,201912,20416 -BG,CZ,2,110,201912,270000 -BG,CZ,2,120,201912,287736 -BG,CZ,2,131,201912,87210 -BG,CZ,2,132,201912,34630 -BG,CZ,2,139,201912,99099 -BG,CZ,2,141,201912,1289024 -BG,CZ,2,143,201912,11415 -BG,CZ,2,14M,201912,84141 -BG,CZ,2,151,201912,4726 -BG,CZ,2,152,201912,24899 -BG,CZ,2,162,201912,98491 -BG,CZ,2,171,201912,44694 -BG,CZ,2,172,201912,46088 -BG,CZ,2,192,201912,31383 -BG,CZ,2,201,201912,55392 -BG,CZ,2,203,201912,12193 -BG,CZ,2,204,201912,403710 -BG,CZ,2,205,201912,29463 -BG,CZ,2,206,201912,162029 -BG,CZ,2,212,201912,1628050 -BG,CZ,2,221,201912,1876755 -BG,CZ,2,222,201912,549321 -BG,CZ,2,231,201912,390322 -BG,CZ,2,233,201912,28048 -BG,CZ,2,234,201912,13528 -BG,CZ,2,236,201912,7329 -BG,CZ,2,241,201912,808592 -BG,CZ,2,242,201912,178919 -BG,CZ,2,243,201912,110152 -BG,CZ,2,244,201912,975002 -BG,CZ,2,251,201912,98553 -BG,CZ,2,252,201912,663364 -BG,CZ,2,257,201912,112094 -BG,CZ,2,259,201912,122466 -BG,CZ,2,261,201912,282273 -BG,CZ,2,262,201912,42601 -BG,CZ,2,263,201912,717188 -BG,CZ,2,264,201912,42135 -BG,CZ,2,265,201912,199293 -BG,CZ,2,266,201912,26099 -BG,CZ,2,267,201912,16703 -BG,CZ,2,271,201912,9278207 -BG,CZ,2,272,201912,145173 -BG,CZ,2,273,201912,717260 -BG,CZ,2,274,201912,44909 -BG,CZ,2,275,201912,585578 -BG,CZ,2,279,201912,917573 -BG,CZ,2,281,201912,249539 -BG,CZ,2,282,201912,169287 -BG,CZ,2,284,201912,23215 -BG,CZ,2,289,201912,786078 -BG,CZ,2,291,201912,633828 -BG,CZ,2,293,201912,6207869 -BG,CZ,2,302,201912,3060 -BG,CZ,2,303,201912,640683 -BG,CZ,2,309,201912,12307 -BG,CZ,2,310,201912,1425897 -BG,CZ,2,321,201912,166010 -BG,CZ,2,323,201912,4175 -BG,CZ,2,325,201912,267643 -BG,CZ,2,329,201912,72574 -BG,CZ,2,351,201912,6160279 -BG,DE,1,011,201912,2372975 -BG,DE,1,012,201912,1265438 -BG,DE,1,013,201912,69820 -BG,DE,1,023,201912,7436 -BG,DE,1,030,201912,22392 -BG,DE,1,081,201912,76601 -BG,DE,1,089,201912,159794 -BG,DE,1,101,201912,4895594 -BG,DE,1,102,201912,648142 -BG,DE,1,103,201912,2278865 -BG,DE,1,104,201912,149353 -BG,DE,1,105,201912,6536645 -BG,DE,1,106,201912,855582 -BG,DE,1,107,201912,1474724 -BG,DE,1,108,201912,10023130 -BG,DE,1,109,201912,802566 -BG,DE,1,10M,201912,343486 -BG,DE,1,110,201912,1015920 -BG,DE,1,120,201912,729581 -BG,DE,1,131,201912,584562 -BG,DE,1,132,201912,5425013 -BG,DE,1,139,201912,3723558 -BG,DE,1,13M,201912,167101 -BG,DE,1,141,201912,6098576 -BG,DE,1,142,201912,271 -BG,DE,1,143,201912,534522 -BG,DE,1,14M,201912,343486 -BG,DE,1,151,201912,677767 -BG,DE,1,152,201912,1263407 -BG,DE,1,161,201912,625556 -BG,DE,1,162,201912,1648756 -BG,DE,1,171,201912,2683468 -BG,DE,1,172,201912,1724032 -BG,DE,1,17M,201912,334202 -BG,DE,1,181,201912,95395 -BG,DE,1,192,201912,1189541 -BG,DE,1,201,201912,8568132 -BG,DE,1,202,201912,1255260 -BG,DE,1,203,201912,1663838 -BG,DE,1,204,201912,2821397 -BG,DE,1,205,201912,5570852 -BG,DE,1,206,201912,297864 -BG,DE,1,20M,201912,807656 -BG,DE,1,211,201912,214186 -BG,DE,1,212,201912,22779565 -BG,DE,1,221,201912,2577505 -BG,DE,1,222,201912,8686114 -BG,DE,1,231,201912,792225 -BG,DE,1,232,201912,670799 -BG,DE,1,233,201912,34131 -BG,DE,1,234,201912,381708 -BG,DE,1,235,201912,26839 -BG,DE,1,236,201912,120800 -BG,DE,1,237,201912,2923 -BG,DE,1,239,201912,522573 -BG,DE,1,23M,201912,334202 -BG,DE,1,241,201912,1795864 -BG,DE,1,242,201912,1263249 -BG,DE,1,243,201912,1002240 -BG,DE,1,244,201912,5676378 -BG,DE,1,245,201912,23463 -BG,DE,1,251,201912,1405262 -BG,DE,1,252,201912,251966 -BG,DE,1,253,201912,5565 -BG,DE,1,254,201912,11237 -BG,DE,1,257,201912,3897108 -BG,DE,1,259,201912,9260364 -BG,DE,1,25M,201912,566287 -BG,DE,1,261,201912,8249202 -BG,DE,1,262,201912,3707744 -BG,DE,1,263,201912,1952617 -BG,DE,1,264,201912,1765745 -BG,DE,1,265,201912,4733720 -BG,DE,1,266,201912,700368 -BG,DE,1,267,201912,1130675 -BG,DE,1,268,201912,19229 -BG,DE,1,271,201912,6174471 -BG,DE,1,272,201912,608323 -BG,DE,1,273,201912,5404684 -BG,DE,1,274,201912,643082 -BG,DE,1,275,201912,3354855 -BG,DE,1,279,201912,5972781 -BG,DE,1,281,201912,11301044 -BG,DE,1,282,201912,8265958 -BG,DE,1,283,201912,7925944 -BG,DE,1,284,201912,8711284 -BG,DE,1,289,201912,14404425 -BG,DE,1,291,201912,30034483 -BG,DE,1,292,201912,2325952 -BG,DE,1,293,201912,8372692 -BG,DE,1,302,201912,3471512 -BG,DE,1,303,201912,2226219 -BG,DE,1,309,201912,1136397 -BG,DE,1,310,201912,2344162 -BG,DE,1,321,201912,566609 -BG,DE,1,322,201912,123911 -BG,DE,1,323,201912,244466 -BG,DE,1,324,201912,357717 -BG,DE,1,325,201912,2595392 -BG,DE,1,329,201912,1092247 -BG,DE,2,011,201912,4783643 -BG,DE,2,012,201912,690375 -BG,DE,2,013,201912,19334 -BG,DE,2,014,201912,447128 -BG,DE,2,030,201912,23428 -BG,DE,2,072,201912,32493965 -BG,DE,2,081,201912,7250 -BG,DE,2,089,201912,43185 -BG,DE,2,101,201912,971878 -BG,DE,2,102,201912,53791 -BG,DE,2,103,201912,2909453 -BG,DE,2,104,201912,664076 -BG,DE,2,105,201912,766164 -BG,DE,2,106,201912,442912 -BG,DE,2,107,201912,1154623 -BG,DE,2,108,201912,1749171 -BG,DE,2,10M,201912,114739 -BG,DE,2,110,201912,114613 -BG,DE,2,120,201912,27626 -BG,DE,2,131,201912,1449490 -BG,DE,2,132,201912,271193 -BG,DE,2,139,201912,1639494 -BG,DE,2,141,201912,17427268 -BG,DE,2,143,201912,2544622 -BG,DE,2,14M,201912,782624 -BG,DE,2,151,201912,267166 -BG,DE,2,152,201912,184742 -BG,DE,2,161,201912,104224 -BG,DE,2,162,201912,1601407 -BG,DE,2,171,201912,261214 -BG,DE,2,172,201912,1679896 -BG,DE,2,17M,201912,66293 -BG,DE,2,192,201912,544622 -BG,DE,2,201,201912,2520627 -BG,DE,2,202,201912,437957 -BG,DE,2,204,201912,2453370 -BG,DE,2,205,201912,4116766 -BG,DE,2,206,201912,315695 -BG,DE,2,20M,201912,101989 -BG,DE,2,211,201912,119534 -BG,DE,2,212,201912,9121928 -BG,DE,2,221,201912,5310266 -BG,DE,2,222,201912,6727007 -BG,DE,2,231,201912,1957365 -BG,DE,2,232,201912,3331 -BG,DE,2,233,201912,39640 -BG,DE,2,234,201912,635976 -BG,DE,2,236,201912,130284 -BG,DE,2,237,201912,4145 -BG,DE,2,239,201912,208742 -BG,DE,2,241,201912,678476 -BG,DE,2,242,201912,2887865 -BG,DE,2,243,201912,264114 -BG,DE,2,244,201912,40877836 -BG,DE,2,245,201912,256858 -BG,DE,2,251,201912,1603597 -BG,DE,2,252,201912,690691 -BG,DE,2,253,201912,847 -BG,DE,2,257,201912,2152722 -BG,DE,2,259,201912,3150852 -BG,DE,2,261,201912,3743293 -BG,DE,2,262,201912,6836759 -BG,DE,2,263,201912,6033342 -BG,DE,2,264,201912,905450 -BG,DE,2,265,201912,6172772 -BG,DE,2,266,201912,20449 -BG,DE,2,267,201912,643458 -BG,DE,2,268,201912,6176 -BG,DE,2,271,201912,16905873 -BG,DE,2,272,201912,844027 -BG,DE,2,273,201912,6703844 -BG,DE,2,274,201912,482269 -BG,DE,2,275,201912,2899644 -BG,DE,2,279,201912,5715857 -BG,DE,2,281,201912,6150353 -BG,DE,2,282,201912,5357070 -BG,DE,2,283,201912,1328613 -BG,DE,2,284,201912,1419276 -BG,DE,2,289,201912,1347453 -BG,DE,2,291,201912,12154495 -BG,DE,2,292,201912,405764 -BG,DE,2,293,201912,8687325 -BG,DE,2,302,201912,5277406 -BG,DE,2,303,201912,444519 -BG,DE,2,309,201912,11789811 -BG,DE,2,310,201912,2637514 -BG,DE,2,321,201912,24787 -BG,DE,2,322,201912,104940 -BG,DE,2,323,201912,87141 -BG,DE,2,324,201912,177513 -BG,DE,2,325,201912,791005 -BG,DE,2,329,201912,421030 -BG,DK,1,011,201912,12942 -BG,DK,1,013,201912,49929 -BG,DK,1,014,201912,239301 -BG,DK,1,030,201912,201140 -BG,DK,1,101,201912,784110 -BG,DK,1,102,201912,578388 -BG,DK,1,105,201912,703559 -BG,DK,1,106,201912,18312 -BG,DK,1,107,201912,864 -BG,DK,1,108,201912,152720 -BG,DK,1,109,201912,395276 -BG,DK,1,110,201912,314 -BG,DK,1,120,201912,4408 -BG,DK,1,132,201912,60768 -BG,DK,1,139,201912,229054 -BG,DK,1,141,201912,200505 -BG,DK,1,143,201912,9766 -BG,DK,1,151,201912,23530 -BG,DK,1,162,201912,1759 -BG,DK,1,171,201912,3196 -BG,DK,1,172,201912,79528 -BG,DK,1,192,201912,2597 -BG,DK,1,201,201912,346495 -BG,DK,1,202,201912,59701 -BG,DK,1,203,201912,458 -BG,DK,1,204,201912,49934 -BG,DK,1,205,201912,114210 -BG,DK,1,206,201912,35300 -BG,DK,1,211,201912,16801 -BG,DK,1,212,201912,3178746 -BG,DK,1,221,201912,30790 -BG,DK,1,222,201912,228474 -BG,DK,1,231,201912,21627 -BG,DK,1,234,201912,2850 -BG,DK,1,239,201912,3747 -BG,DK,1,242,201912,5256 -BG,DK,1,243,201912,12757 -BG,DK,1,244,201912,8769 -BG,DK,1,251,201912,86150 -BG,DK,1,252,201912,35849 -BG,DK,1,257,201912,49159 -BG,DK,1,259,201912,152325 -BG,DK,1,261,201912,7867 -BG,DK,1,262,201912,60126 -BG,DK,1,263,201912,35916 -BG,DK,1,264,201912,38076 -BG,DK,1,265,201912,165244 -BG,DK,1,266,201912,11025 -BG,DK,1,267,201912,10006 -BG,DK,1,268,201912,3464 -BG,DK,1,271,201912,169482 -BG,DK,1,272,201912,2001 -BG,DK,1,273,201912,9775 -BG,DK,1,274,201912,21721 -BG,DK,1,275,201912,21962 -BG,DK,1,279,201912,38348 -BG,DK,1,281,201912,687137 -BG,DK,1,282,201912,163220 -BG,DK,1,283,201912,135539 -BG,DK,1,289,201912,166307 -BG,DK,1,291,201912,17782 -BG,DK,1,293,201912,81679 -BG,DK,1,301,201912,12789 -BG,DK,1,303,201912,87679 -BG,DK,1,310,201912,233333 -BG,DK,1,323,201912,2887 -BG,DK,1,324,201912,154784 -BG,DK,1,325,201912,44873 -BG,DK,1,329,201912,40312 -BG,DK,1,351,201912,887204 -BG,DK,2,011,201912,295960 -BG,DK,2,012,201912,828 -BG,DK,2,014,201912,14440 -BG,DK,2,102,201912,27642 -BG,DK,2,103,201912,9201 -BG,DK,2,105,201912,25004 -BG,DK,2,106,201912,45145 -BG,DK,2,107,201912,4415 -BG,DK,2,108,201912,61076 -BG,DK,2,110,201912,3345 -BG,DK,2,131,201912,87290 -BG,DK,2,132,201912,54830 -BG,DK,2,139,201912,132871 -BG,DK,2,141,201912,1171483 -BG,DK,2,143,201912,248435 -BG,DK,2,172,201912,22677 -BG,DK,2,192,201912,25125 -BG,DK,2,204,201912,329786 -BG,DK,2,205,201912,6210 -BG,DK,2,212,201912,1263514 -BG,DK,2,221,201912,3581 -BG,DK,2,222,201912,479535 -BG,DK,2,231,201912,2603 -BG,DK,2,244,201912,390196 -BG,DK,2,251,201912,7691 -BG,DK,2,257,201912,2693 -BG,DK,2,259,201912,72325 -BG,DK,2,261,201912,1668 -BG,DK,2,262,201912,26348 -BG,DK,2,263,201912,4258 -BG,DK,2,264,201912,14845 -BG,DK,2,265,201912,262565 -BG,DK,2,271,201912,994472 -BG,DK,2,272,201912,104399 -BG,DK,2,273,201912,50743 -BG,DK,2,274,201912,41231 -BG,DK,2,275,201912,378190 -BG,DK,2,279,201912,5464 -BG,DK,2,281,201912,1682205 -BG,DK,2,282,201912,141734 -BG,DK,2,284,201912,797 -BG,DK,2,289,201912,9125 -BG,DK,2,293,201912,12848 -BG,DK,2,301,201912,228472 -BG,DK,2,309,201912,218309 -BG,DK,2,310,201912,1593709 -BG,DK,2,321,201912,149079 -BG,DK,2,323,201912,17902 -BG,DK,2,324,201912,21600 -BG,DK,2,325,201912,5136 -BG,DK,2,329,201912,626 -BG,DK,2,351,201912,1257664 -BG,DO,1,120,201912,46277 -BG,DO,2,172,201912,1892 -BG,DO,2,265,201912,3269 -BG,DZ,2,110,201912,49169 -BG,DZ,2,192,201912,202192 -BG,DZ,2,201,201912,1084789 -BG,DZ,2,222,201912,822999 -BG,DZ,2,231,201912,772293 -BG,DZ,2,236,201912,37846 -BG,DZ,2,241,201912,1329005 -BG,DZ,2,244,201912,51741 -BG,DZ,2,289,201912,74001 -BG,EC,1,011,201912,41378 -BG,EC,1,012,201912,2333098 -BG,EC,1,023,201912,738 -BG,EC,2,202,201912,57985 -BG,EC,2,265,201912,8201 -BG,EC,2,266,201912,8323 -BG,EC,2,271,201912,61026 -BG,EC,2,279,201912,18810 -BG,EC,2,325,201912,43112 -BG,EE,1,101,201912,13240 -BG,EE,1,102,201912,98853 -BG,EE,1,105,201912,215492 -BG,EE,1,108,201912,111758 -BG,EE,1,110,201912,9153 -BG,EE,1,161,201912,14785 -BG,EE,1,171,201912,25539 -BG,EE,1,201,201912,7221 -BG,EE,1,203,201912,21274 -BG,EE,1,204,201912,180294 -BG,EE,1,205,201912,1374 -BG,EE,1,221,201912,7900 -BG,EE,1,222,201912,1597 -BG,EE,1,231,201912,8150 -BG,EE,1,243,201912,49852 -BG,EE,1,259,201912,28127 -BG,EE,1,261,201912,15456 -BG,EE,1,263,201912,5361 -BG,EE,1,264,201912,129102 -BG,EE,1,265,201912,298984 -BG,EE,1,281,201912,1800 -BG,EE,1,282,201912,199249 -BG,EE,1,289,201912,296712 -BG,EE,1,293,201912,7645 -BG,EE,1,310,201912,9272 -BG,EE,1,321,201912,37642 -BG,EE,1,324,201912,7129 -BG,EE,1,329,201912,9802 -BG,EE,2,011,201912,40027 -BG,EE,2,103,201912,7896 -BG,EE,2,106,201912,37080 -BG,EE,2,107,201912,15554 -BG,EE,2,108,201912,12095 -BG,EE,2,110,201912,22426 -BG,EE,2,131,201912,18607 -BG,EE,2,132,201912,1035 -BG,EE,2,139,201912,70222 -BG,EE,2,141,201912,2436 -BG,EE,2,162,201912,449 -BG,EE,2,172,201912,10863 -BG,EE,2,192,201912,6363 -BG,EE,2,204,201912,9606 -BG,EE,2,205,201912,2706 -BG,EE,2,212,201912,43596 -BG,EE,2,222,201912,35106 -BG,EE,2,231,201912,520 -BG,EE,2,234,201912,10680 -BG,EE,2,257,201912,19675 -BG,EE,2,259,201912,683 -BG,EE,2,261,201912,49603 -BG,EE,2,263,201912,242617 -BG,EE,2,265,201912,803 -BG,EE,2,267,201912,641 -BG,EE,2,271,201912,256844 -BG,EE,2,273,201912,13657 -BG,EE,2,274,201912,24257 -BG,EE,2,275,201912,25868 -BG,EE,2,279,201912,1205 -BG,EE,2,281,201912,88422 -BG,EE,2,282,201912,65274 -BG,EE,2,284,201912,9766 -BG,EE,2,309,201912,1720 -BG,EE,2,310,201912,28021 -BG,EE,2,321,201912,20294 -BG,EE,2,325,201912,5017 -BG,EG,1,011,201912,64599 -BG,EG,1,012,201912,42542 -BG,EG,1,061,201912,71362139 -BG,EG,1,089,201912,1436221 -BG,EG,1,103,201912,48595 -BG,EG,1,104,201912,236430 -BG,EG,1,132,201912,64692 -BG,EG,1,139,201912,9716 -BG,EG,1,201,201912,9012048 -BG,EG,1,222,201912,187835 -BG,EG,1,231,201912,65858 -BG,EG,1,237,201912,24909 -BG,EG,1,259,201912,2674 -BG,EG,1,275,201912,71495 -BG,EG,2,081,201912,285305 -BG,EG,2,103,201912,103626 -BG,EG,2,107,201912,26779 -BG,EG,2,109,201912,37500 -BG,EG,2,110,201912,27482 -BG,EG,2,139,201912,8500 -BG,EG,2,161,201912,56507 -BG,EG,2,192,201912,50475940 -BG,EG,2,202,201912,69627 -BG,EG,2,204,201912,100795 -BG,EG,2,222,201912,811576 -BG,EG,2,231,201912,36093 -BG,EG,2,244,201912,3454208 -BG,EG,2,257,201912,10925 -BG,EG,2,259,201912,58977 -BG,EG,2,263,201912,174158 -BG,EG,2,265,201912,52006 -BG,EG,2,271,201912,133112 -BG,EG,2,274,201912,840 -BG,EG,2,281,201912,185437 -BG,EG,2,282,201912,127059 -BG,EG,2,284,201912,123963 -BG,EG,2,289,201912,42701 -BG,EG,2,291,201912,49487 -BG,EG,2,293,201912,18600 -BG,EG,2,325,201912,47412 -BG,EG,2,329,201912,10856 -BG,ES,1,011,201912,596267 -BG,ES,1,012,201912,265024 -BG,ES,1,014,201912,3060 -BG,ES,1,030,201912,64229 -BG,ES,1,072,201912,13187237 -BG,ES,1,081,201912,21773 -BG,ES,1,089,201912,31771 -BG,ES,1,101,201912,14121735 -BG,ES,1,102,201912,242200 -BG,ES,1,103,201912,373039 -BG,ES,1,104,201912,77635 -BG,ES,1,105,201912,45141 -BG,ES,1,106,201912,41152 -BG,ES,1,107,201912,323846 -BG,ES,1,108,201912,1345411 -BG,ES,1,109,201912,151285 -BG,ES,1,110,201912,595112 -BG,ES,1,120,201912,155868 -BG,ES,1,131,201912,94990 -BG,ES,1,132,201912,996147 -BG,ES,1,139,201912,286044 -BG,ES,1,141,201912,3135994 -BG,ES,1,142,201912,3221 -BG,ES,1,143,201912,603417 -BG,ES,1,151,201912,1502018 -BG,ES,1,152,201912,392990 -BG,ES,1,162,201912,50169 -BG,ES,1,171,201912,216638 -BG,ES,1,172,201912,286920 -BG,ES,1,181,201912,786 -BG,ES,1,192,201912,5234 -BG,ES,1,201,201912,3201360 -BG,ES,1,202,201912,540 -BG,ES,1,203,201912,865154 -BG,ES,1,204,201912,815017 -BG,ES,1,205,201912,453500 -BG,ES,1,206,201912,5275 -BG,ES,1,211,201912,27441 -BG,ES,1,212,201912,1874574 -BG,ES,1,221,201912,377362 -BG,ES,1,222,201912,505641 -BG,ES,1,231,201912,101311 -BG,ES,1,232,201912,27142 -BG,ES,1,233,201912,720873 -BG,ES,1,234,201912,54505 -BG,ES,1,236,201912,102859 -BG,ES,1,237,201912,23999 -BG,ES,1,239,201912,28880 -BG,ES,1,23M,201912,315636 -BG,ES,1,241,201912,66112 -BG,ES,1,242,201912,107325 -BG,ES,1,243,201912,35344 -BG,ES,1,244,201912,3810677 -BG,ES,1,245,201912,86133 -BG,ES,1,251,201912,259365 -BG,ES,1,257,201912,407112 -BG,ES,1,259,201912,616571 -BG,ES,1,261,201912,401913 -BG,ES,1,262,201912,54365 -BG,ES,1,263,201912,91441 -BG,ES,1,264,201912,23026 -BG,ES,1,265,201912,100034 -BG,ES,1,267,201912,745 -BG,ES,1,268,201912,41081 -BG,ES,1,271,201912,872164 -BG,ES,1,272,201912,54866 -BG,ES,1,273,201912,253671 -BG,ES,1,274,201912,92748 -BG,ES,1,275,201912,184865 -BG,ES,1,279,201912,1754730 -BG,ES,1,281,201912,281954 -BG,ES,1,282,201912,1066939 -BG,ES,1,283,201912,359603 -BG,ES,1,284,201912,52283 -BG,ES,1,289,201912,539665 -BG,ES,1,291,201912,480461 -BG,ES,1,292,201912,27503 -BG,ES,1,293,201912,329664 -BG,ES,1,302,201912,201349 -BG,ES,1,309,201912,8056 -BG,ES,1,310,201912,55595 -BG,ES,1,321,201912,64459 -BG,ES,1,323,201912,67739 -BG,ES,1,324,201912,48235 -BG,ES,1,325,201912,83662 -BG,ES,1,329,201912,114192 -BG,ES,2,011,201912,14281868 -BG,ES,2,012,201912,43898 -BG,ES,2,014,201912,111435 -BG,ES,2,030,201912,77694 -BG,ES,2,089,201912,20073 -BG,ES,2,101,201912,998023 -BG,ES,2,102,201912,91970 -BG,ES,2,103,201912,160237 -BG,ES,2,105,201912,184348 -BG,ES,2,106,201912,156319 -BG,ES,2,107,201912,122946 -BG,ES,2,108,201912,414546 -BG,ES,2,109,201912,132002 -BG,ES,2,110,201912,37574 -BG,ES,2,120,201912,443906 -BG,ES,2,131,201912,302458 -BG,ES,2,132,201912,14841 -BG,ES,2,139,201912,554865 -BG,ES,2,141,201912,1542893 -BG,ES,2,143,201912,244050 -BG,ES,2,14M,201912,175933 -BG,ES,2,151,201912,187201 -BG,ES,2,152,201912,131764 -BG,ES,2,161,201912,8212 -BG,ES,2,162,201912,10099 -BG,ES,2,171,201912,42032 -BG,ES,2,172,201912,96802 -BG,ES,2,192,201912,1939 -BG,ES,2,201,201912,248935 -BG,ES,2,202,201912,63801 -BG,ES,2,203,201912,477 -BG,ES,2,204,201912,448189 -BG,ES,2,205,201912,218702 -BG,ES,2,206,201912,1852 -BG,ES,2,212,201912,1060749 -BG,ES,2,221,201912,1419179 -BG,ES,2,222,201912,1584085 -BG,ES,2,231,201912,642388 -BG,ES,2,233,201912,9469 -BG,ES,2,234,201912,54975 -BG,ES,2,236,201912,4604 -BG,ES,2,239,201912,2665 -BG,ES,2,242,201912,44246 -BG,ES,2,244,201912,2505263 -BG,ES,2,245,201912,142215 -BG,ES,2,251,201912,88541 -BG,ES,2,252,201912,3903 -BG,ES,2,253,201912,3482 -BG,ES,2,257,201912,338619 -BG,ES,2,259,201912,384084 -BG,ES,2,261,201912,763880 -BG,ES,2,262,201912,69776 -BG,ES,2,263,201912,609920 -BG,ES,2,264,201912,97568 -BG,ES,2,265,201912,295680 -BG,ES,2,267,201912,29730 -BG,ES,2,268,201912,6815 -BG,ES,2,271,201912,3935509 -BG,ES,2,272,201912,387819 -BG,ES,2,273,201912,84950 -BG,ES,2,274,201912,210396 -BG,ES,2,275,201912,1642347 -BG,ES,2,279,201912,4703736 -BG,ES,2,281,201912,280591 -BG,ES,2,282,201912,139893 -BG,ES,2,284,201912,119407 -BG,ES,2,289,201912,657683 -BG,ES,2,291,201912,429223 -BG,ES,2,293,201912,560001 -BG,ES,2,309,201912,37863 -BG,ES,2,310,201912,792159 -BG,ES,2,321,201912,123780 -BG,ES,2,323,201912,306923 -BG,ES,2,324,201912,222455 -BG,ES,2,325,201912,569343 -BG,ES,2,329,201912,154457 -BG,ET,1,011,201912,102223 -BG,ET,2,282,201912,6486 -BG,FI,1,101,201912,75540 -BG,FI,1,108,201912,30575 -BG,FI,1,109,201912,30419 -BG,FI,1,110,201912,4272 -BG,FI,1,141,201912,40747 -BG,FI,1,143,201912,856 -BG,FI,1,151,201912,249 -BG,FI,1,152,201912,5481 -BG,FI,1,162,201912,617 -BG,FI,1,171,201912,1283453 -BG,FI,1,201,201912,96510 -BG,FI,1,204,201912,22827 -BG,FI,1,205,201912,2540 -BG,FI,1,221,201912,57229 -BG,FI,1,222,201912,74472 -BG,FI,1,239,201912,13153 -BG,FI,1,241,201912,356170 -BG,FI,1,242,201912,65878 -BG,FI,1,251,201912,10454 -BG,FI,1,253,201912,34767 -BG,FI,1,257,201912,22579 -BG,FI,1,259,201912,416968 -BG,FI,1,261,201912,1421 -BG,FI,1,262,201912,395466 -BG,FI,1,263,201912,146024 -BG,FI,1,264,201912,1990 -BG,FI,1,265,201912,11034 -BG,FI,1,267,201912,24828 -BG,FI,1,271,201912,96692 -BG,FI,1,273,201912,58757 -BG,FI,1,274,201912,3198 -BG,FI,1,275,201912,14418 -BG,FI,1,279,201912,174127 -BG,FI,1,281,201912,149459 -BG,FI,1,282,201912,414200 -BG,FI,1,283,201912,150885 -BG,FI,1,284,201912,24532 -BG,FI,1,289,201912,674749 -BG,FI,1,291,201912,42702 -BG,FI,1,293,201912,15384 -BG,FI,1,309,201912,95001 -BG,FI,1,323,201912,7152 -BG,FI,1,325,201912,141293 -BG,FI,2,011,201912,472675 -BG,FI,2,107,201912,1825 -BG,FI,2,139,201912,20450 -BG,FI,2,141,201912,77373 -BG,FI,2,143,201912,19573 -BG,FI,2,162,201912,264 -BG,FI,2,172,201912,27833 -BG,FI,2,192,201912,618 -BG,FI,2,201,201912,79640 -BG,FI,2,204,201912,62113 -BG,FI,2,212,201912,5966 -BG,FI,2,221,201912,40469 -BG,FI,2,222,201912,370554 -BG,FI,2,236,201912,3669 -BG,FI,2,239,201912,596 -BG,FI,2,244,201912,104933 -BG,FI,2,245,201912,53460 -BG,FI,2,257,201912,378 -BG,FI,2,259,201912,164567 -BG,FI,2,263,201912,17889 -BG,FI,2,265,201912,749 -BG,FI,2,267,201912,40297 -BG,FI,2,268,201912,9414 -BG,FI,2,271,201912,497771 -BG,FI,2,272,201912,206194 -BG,FI,2,273,201912,94740 -BG,FI,2,274,201912,2714 -BG,FI,2,279,201912,93793 -BG,FI,2,281,201912,416884 -BG,FI,2,282,201912,75553 -BG,FI,2,283,201912,105057 -BG,FI,2,284,201912,1504 -BG,FI,2,289,201912,523 -BG,FI,2,293,201912,520465 -BG,FI,2,309,201912,502 -BG,FI,2,310,201912,43241 -BG,FI,2,321,201912,27502 -BG,FI,2,323,201912,35042 -BG,FI,2,325,201912,42089 -BG,FO,1,102,201912,230502 -BG,FR,1,011,201912,3359840 -BG,FR,1,012,201912,82983 -BG,FR,1,014,201912,311707 -BG,FR,1,023,201912,1168 -BG,FR,1,030,201912,3598 -BG,FR,1,081,201912,22412 -BG,FR,1,089,201912,135686 -BG,FR,1,101,201912,4735702 -BG,FR,1,102,201912,31980 -BG,FR,1,103,201912,489003 -BG,FR,1,104,201912,48795 -BG,FR,1,105,201912,1122426 -BG,FR,1,106,201912,184153 -BG,FR,1,107,201912,89400 -BG,FR,1,108,201912,1508388 -BG,FR,1,109,201912,165144 -BG,FR,1,110,201912,926940 -BG,FR,1,131,201912,109071 -BG,FR,1,132,201912,2545286 -BG,FR,1,139,201912,1240423 -BG,FR,1,141,201912,1513745 -BG,FR,1,143,201912,51367 -BG,FR,1,151,201912,79837 -BG,FR,1,152,201912,100216 -BG,FR,1,161,201912,2812 -BG,FR,1,162,201912,199112 -BG,FR,1,171,201912,71033 -BG,FR,1,172,201912,370337 -BG,FR,1,181,201912,22476 -BG,FR,1,192,201912,256251 -BG,FR,1,201,201912,1791073 -BG,FR,1,202,201912,49751 -BG,FR,1,203,201912,278078 -BG,FR,1,204,201912,1636362 -BG,FR,1,205,201912,7573878 -BG,FR,1,206,201912,284466 -BG,FR,1,20M,201912,213518 -BG,FR,1,211,201912,145582 -BG,FR,1,212,201912,8054108 -BG,FR,1,221,201912,435276 -BG,FR,1,222,201912,817905 -BG,FR,1,231,201912,406752 -BG,FR,1,232,201912,128858 -BG,FR,1,234,201912,15781 -BG,FR,1,235,201912,10491 -BG,FR,1,236,201912,415006 -BG,FR,1,239,201912,49627 -BG,FR,1,241,201912,646989 -BG,FR,1,242,201912,79809 -BG,FR,1,243,201912,172833 -BG,FR,1,244,201912,192322 -BG,FR,1,245,201912,72787 -BG,FR,1,251,201912,52044 -BG,FR,1,252,201912,18671 -BG,FR,1,257,201912,125953 -BG,FR,1,259,201912,896476 -BG,FR,1,261,201912,1920463 -BG,FR,1,262,201912,474532 -BG,FR,1,263,201912,475794 -BG,FR,1,264,201912,56345 -BG,FR,1,265,201912,1204783 -BG,FR,1,266,201912,238535 -BG,FR,1,267,201912,51131 -BG,FR,1,268,201912,1405 -BG,FR,1,271,201912,3188484 -BG,FR,1,272,201912,137330 -BG,FR,1,273,201912,1004468 -BG,FR,1,274,201912,352310 -BG,FR,1,275,201912,584955 -BG,FR,1,279,201912,542907 -BG,FR,1,281,201912,1337836 -BG,FR,1,282,201912,4619241 -BG,FR,1,283,201912,1567370 -BG,FR,1,284,201912,2721059 -BG,FR,1,289,201912,1600296 -BG,FR,1,291,201912,10338414 -BG,FR,1,292,201912,9507 -BG,FR,1,293,201912,1211602 -BG,FR,1,302,201912,149724 -BG,FR,1,303,201912,1189841 -BG,FR,1,309,201912,185733 -BG,FR,1,310,201912,492533 -BG,FR,1,321,201912,393144 -BG,FR,1,323,201912,98743 -BG,FR,1,324,201912,191897 -BG,FR,1,325,201912,789893 -BG,FR,1,329,201912,435152 -BG,FR,2,011,201912,11034473 -BG,FR,2,012,201912,104634 -BG,FR,2,014,201912,275399 -BG,FR,2,030,201912,8493 -BG,FR,2,101,201912,5625199 -BG,FR,2,102,201912,436575 -BG,FR,2,103,201912,563064 -BG,FR,2,104,201912,7976107 -BG,FR,2,105,201912,72264 -BG,FR,2,106,201912,16812 -BG,FR,2,107,201912,252909 -BG,FR,2,108,201912,229000 -BG,FR,2,110,201912,17340 -BG,FR,2,120,201912,210432 -BG,FR,2,131,201912,196241 -BG,FR,2,132,201912,920824 -BG,FR,2,139,201912,1138403 -BG,FR,2,141,201912,9163100 -BG,FR,2,143,201912,1987729 -BG,FR,2,14M,201912,360267 -BG,FR,2,151,201912,299928 -BG,FR,2,152,201912,164043 -BG,FR,2,161,201912,395049 -BG,FR,2,162,201912,336005 -BG,FR,2,171,201912,17076 -BG,FR,2,172,201912,553298 -BG,FR,2,17M,201912,45895 -BG,FR,2,192,201912,11112 -BG,FR,2,201,201912,629210 -BG,FR,2,202,201912,130854 -BG,FR,2,204,201912,353873 -BG,FR,2,205,201912,6920754 -BG,FR,2,206,201912,57290 -BG,FR,2,20M,201912,81592 -BG,FR,2,211,201912,16784 -BG,FR,2,212,201912,2571808 -BG,FR,2,221,201912,1357861 -BG,FR,2,222,201912,1632368 -BG,FR,2,231,201912,518172 -BG,FR,2,232,201912,8595 -BG,FR,2,233,201912,67661 -BG,FR,2,234,201912,688324 -BG,FR,2,241,201912,23787 -BG,FR,2,242,201912,55499 -BG,FR,2,243,201912,23109 -BG,FR,2,244,201912,1682893 -BG,FR,2,251,201912,559499 -BG,FR,2,252,201912,36519 -BG,FR,2,253,201912,21448 -BG,FR,2,257,201912,554875 -BG,FR,2,259,201912,1064952 -BG,FR,2,261,201912,828854 -BG,FR,2,262,201912,577909 -BG,FR,2,263,201912,766589 -BG,FR,2,264,201912,130406 -BG,FR,2,265,201912,452201 -BG,FR,2,266,201912,81756 -BG,FR,2,267,201912,43194 -BG,FR,2,268,201912,7437 -BG,FR,2,271,201912,5415941 -BG,FR,2,272,201912,1374925 -BG,FR,2,273,201912,581979 -BG,FR,2,274,201912,359544 -BG,FR,2,275,201912,8060935 -BG,FR,2,279,201912,163947 -BG,FR,2,281,201912,3519206 -BG,FR,2,282,201912,972098 -BG,FR,2,283,201912,63605 -BG,FR,2,284,201912,33706 -BG,FR,2,289,201912,768842 -BG,FR,2,291,201912,517644 -BG,FR,2,292,201912,35467 -BG,FR,2,293,201912,465993 -BG,FR,2,302,201912,160322 -BG,FR,2,303,201912,622762 -BG,FR,2,309,201912,565256 -BG,FR,2,310,201912,2446022 -BG,FR,2,321,201912,320952 -BG,FR,2,322,201912,43365 -BG,FR,2,323,201912,118400 -BG,FR,2,324,201912,34427 -BG,FR,2,325,201912,182845 -BG,FR,2,329,201912,42253 -BG,GB,1,011,201912,563 -BG,GB,1,012,201912,42525 -BG,GB,1,089,201912,18162 -BG,GB,1,101,201912,275777 -BG,GB,1,102,201912,68394 -BG,GB,1,103,201912,100744 -BG,GB,1,104,201912,50158 -BG,GB,1,105,201912,304228 -BG,GB,1,106,201912,30388 -BG,GB,1,107,201912,140812 -BG,GB,1,108,201912,931679 -BG,GB,1,109,201912,241224 -BG,GB,1,110,201912,1113018 -BG,GB,1,131,201912,32877 -BG,GB,1,132,201912,242393 -BG,GB,1,139,201912,425195 -BG,GB,1,141,201912,569206 -BG,GB,1,143,201912,27888 -BG,GB,1,151,201912,128739 -BG,GB,1,152,201912,347090 -BG,GB,1,162,201912,3864 -BG,GB,1,171,201912,104168 -BG,GB,1,172,201912,168691 -BG,GB,1,191,201912,1312 -BG,GB,1,192,201912,52549 -BG,GB,1,201,201912,711003 -BG,GB,1,202,201912,165287 -BG,GB,1,203,201912,270316 -BG,GB,1,204,201912,317744 -BG,GB,1,205,201912,716656 -BG,GB,1,211,201912,13069 -BG,GB,1,212,201912,1680696 -BG,GB,1,221,201912,36974 -BG,GB,1,222,201912,290800 -BG,GB,1,231,201912,46090 -BG,GB,1,232,201912,3392 -BG,GB,1,234,201912,136645 -BG,GB,1,237,201912,831 -BG,GB,1,239,201912,6155 -BG,GB,1,241,201912,24269 -BG,GB,1,244,201912,326574 -BG,GB,1,251,201912,54112 -BG,GB,1,253,201912,5633 -BG,GB,1,257,201912,155360 -BG,GB,1,259,201912,262228 -BG,GB,1,261,201912,1552409 -BG,GB,1,262,201912,1548001 -BG,GB,1,263,201912,1076636 -BG,GB,1,264,201912,364724 -BG,GB,1,265,201912,790772 -BG,GB,1,266,201912,37326 -BG,GB,1,267,201912,994055 -BG,GB,1,268,201912,2145 -BG,GB,1,271,201912,287828 -BG,GB,1,272,201912,328660 -BG,GB,1,273,201912,194951 -BG,GB,1,274,201912,95586 -BG,GB,1,275,201912,74293 -BG,GB,1,279,201912,222840 -BG,GB,1,281,201912,476938 -BG,GB,1,282,201912,1755629 -BG,GB,1,283,201912,555946 -BG,GB,1,284,201912,49997 -BG,GB,1,289,201912,867789 -BG,GB,1,291,201912,4490388 -BG,GB,1,293,201912,233120 -BG,GB,1,303,201912,279867 -BG,GB,1,309,201912,31490 -BG,GB,1,310,201912,252127 -BG,GB,1,321,201912,6232 -BG,GB,1,322,201912,11337 -BG,GB,1,323,201912,47976 -BG,GB,1,324,201912,887477 -BG,GB,1,325,201912,627082 -BG,GB,1,329,201912,110659 -BG,GB,2,011,201912,3101292 -BG,GB,2,012,201912,45847 -BG,GB,2,013,201912,64623 -BG,GB,2,014,201912,19858 -BG,GB,2,030,201912,3999 -BG,GB,2,081,201912,4935 -BG,GB,2,101,201912,573828 -BG,GB,2,102,201912,3985 -BG,GB,2,103,201912,441015 -BG,GB,2,104,201912,13730 -BG,GB,2,105,201912,1237907 -BG,GB,2,106,201912,105348 -BG,GB,2,107,201912,1186870 -BG,GB,2,108,201912,938139 -BG,GB,2,110,201912,168536 -BG,GB,2,131,201912,646682 -BG,GB,2,132,201912,19247 -BG,GB,2,139,201912,571635 -BG,GB,2,141,201912,2684372 -BG,GB,2,143,201912,285246 -BG,GB,2,14M,201912,214178 -BG,GB,2,151,201912,58217 -BG,GB,2,152,201912,63129 -BG,GB,2,161,201912,11112 -BG,GB,2,162,201912,210252 -BG,GB,2,171,201912,3293 -BG,GB,2,172,201912,250083 -BG,GB,2,192,201912,713888 -BG,GB,2,201,201912,487819 -BG,GB,2,203,201912,80675 -BG,GB,2,204,201912,2074377 -BG,GB,2,205,201912,213559 -BG,GB,2,206,201912,42375 -BG,GB,2,20M,201912,66293 -BG,GB,2,211,201912,19685 -BG,GB,2,212,201912,3928442 -BG,GB,2,221,201912,1426482 -BG,GB,2,222,201912,1691032 -BG,GB,2,231,201912,1581227 -BG,GB,2,232,201912,355 -BG,GB,2,233,201912,444369 -BG,GB,2,234,201912,797281 -BG,GB,2,236,201912,10056 -BG,GB,2,239,201912,6731 -BG,GB,2,241,201912,15479 -BG,GB,2,244,201912,6882755 -BG,GB,2,251,201912,360282 -BG,GB,2,252,201912,74001 -BG,GB,2,257,201912,168479 -BG,GB,2,259,201912,289469 -BG,GB,2,261,201912,147550 -BG,GB,2,262,201912,685658 -BG,GB,2,263,201912,1110306 -BG,GB,2,264,201912,234759 -BG,GB,2,265,201912,766868 -BG,GB,2,267,201912,104471 -BG,GB,2,268,201912,1383 -BG,GB,2,271,201912,424476 -BG,GB,2,272,201912,735623 -BG,GB,2,273,201912,165063 -BG,GB,2,274,201912,688424 -BG,GB,2,275,201912,842027 -BG,GB,2,279,201912,635655 -BG,GB,2,281,201912,767551 -BG,GB,2,282,201912,418901 -BG,GB,2,284,201912,32630 -BG,GB,2,289,201912,156431 -BG,GB,2,293,201912,592367 -BG,GB,2,309,201912,13036 -BG,GB,2,310,201912,1185465 -BG,GB,2,321,201912,2164 -BG,GB,2,322,201912,597 -BG,GB,2,323,201912,88122 -BG,GB,2,324,201912,20671 -BG,GB,2,325,201912,66477 -BG,GB,2,329,201912,52633 -BG,GE,1,072,201912,44575481 -BG,GE,1,110,201912,34994 -BG,GE,1,274,201912,331 -BG,GE,1,279,201912,1184 -BG,GE,1,291,201912,12745 -BG,GE,1,325,201912,23437 -BG,GE,2,011,201912,3019 -BG,GE,2,013,201912,103756 -BG,GE,2,106,201912,229 -BG,GE,2,107,201912,92987 -BG,GE,2,108,201912,192202 -BG,GE,2,109,201912,61549 -BG,GE,2,110,201912,41488 -BG,GE,2,139,201912,29595 -BG,GE,2,141,201912,77290 -BG,GE,2,151,201912,30290 -BG,GE,2,152,201912,16392 -BG,GE,2,162,201912,178685 -BG,GE,2,171,201912,37933 -BG,GE,2,172,201912,95726 -BG,GE,2,192,201912,4957871 -BG,GE,2,201,201912,59394 -BG,GE,2,202,201912,11437 -BG,GE,2,203,201912,21178 -BG,GE,2,204,201912,542368 -BG,GE,2,205,201912,21602 -BG,GE,2,212,201912,1309812 -BG,GE,2,221,201912,36242 -BG,GE,2,222,201912,87186 -BG,GE,2,231,201912,81732 -BG,GE,2,233,201912,5590 -BG,GE,2,234,201912,18317 -BG,GE,2,236,201912,11939 -BG,GE,2,239,201912,6538 -BG,GE,2,251,201912,32462 -BG,GE,2,252,201912,3336 -BG,GE,2,257,201912,63804 -BG,GE,2,259,201912,20774 -BG,GE,2,261,201912,3486 -BG,GE,2,262,201912,24569 -BG,GE,2,263,201912,46767 -BG,GE,2,264,201912,8915 -BG,GE,2,265,201912,36084 -BG,GE,2,271,201912,6934 -BG,GE,2,272,201912,16242 -BG,GE,2,273,201912,1293 -BG,GE,2,274,201912,62551 -BG,GE,2,275,201912,82365 -BG,GE,2,279,201912,29843 -BG,GE,2,281,201912,37718 -BG,GE,2,282,201912,180097 -BG,GE,2,283,201912,4039 -BG,GE,2,284,201912,2755 -BG,GE,2,289,201912,313581 -BG,GE,2,291,201912,1476789 -BG,GE,2,292,201912,270043 -BG,GE,2,293,201912,65914 -BG,GE,2,309,201912,19218 -BG,GE,2,310,201912,101838 -BG,GE,2,323,201912,9005 -BG,GE,2,324,201912,765757 -BG,GE,2,325,201912,14945 -BG,GE,2,329,201912,18567 -BG,GH,1,108,201912,131715 -BG,GI,2,192,201912,13903883 -BG,GM,1,141,201912,4320 -BG,GM,2,291,201912,813 -BG,GM,2,293,201912,2193 -BG,GN,2,141,201912,49336 -BG,GR,1,011,201912,4193994 -BG,GR,1,012,201912,6897812 -BG,GR,1,013,201912,159810 -BG,GR,1,014,201912,227868 -BG,GR,1,022,201912,32246 -BG,GR,1,023,201912,3940 -BG,GR,1,030,201912,677743 -BG,GR,1,051,201912,5292 -BG,GR,1,081,201912,46465 -BG,GR,1,089,201912,87116 -BG,GR,1,101,201912,1403087 -BG,GR,1,102,201912,148332 -BG,GR,1,103,201912,2623103 -BG,GR,1,104,201912,2603561 -BG,GR,1,105,201912,2027485 -BG,GR,1,106,201912,877793 -BG,GR,1,107,201912,1054981 -BG,GR,1,108,201912,2509991 -BG,GR,1,109,201912,255234 -BG,GR,1,10M,201912,473453 -BG,GR,1,110,201912,236776 -BG,GR,1,120,201912,4779522 -BG,GR,1,131,201912,334659 -BG,GR,1,132,201912,703530 -BG,GR,1,139,201912,3144621 -BG,GR,1,13M,201912,297069 -BG,GR,1,141,201912,7349073 -BG,GR,1,143,201912,795898 -BG,GR,1,14M,201912,631271 -BG,GR,1,151,201912,283702 -BG,GR,1,152,201912,2478491 -BG,GR,1,161,201912,23686 -BG,GR,1,162,201912,341753 -BG,GR,1,171,201912,1518213 -BG,GR,1,172,201912,1440444 -BG,GR,1,17M,201912,799720 -BG,GR,1,181,201912,2322 -BG,GR,1,192,201912,3393484 -BG,GR,1,201,201912,6882714 -BG,GR,1,202,201912,62007 -BG,GR,1,203,201912,880120 -BG,GR,1,204,201912,1186250 -BG,GR,1,205,201912,580776 -BG,GR,1,206,201912,46082 -BG,GR,1,20M,201912,566287 -BG,GR,1,211,201912,294067 -BG,GR,1,212,201912,1192471 -BG,GR,1,221,201912,1016322 -BG,GR,1,222,201912,2548795 -BG,GR,1,231,201912,791760 -BG,GR,1,232,201912,151384 -BG,GR,1,233,201912,602268 -BG,GR,1,234,201912,47325 -BG,GR,1,235,201912,84473 -BG,GR,1,236,201912,144306 -BG,GR,1,237,201912,10133 -BG,GR,1,239,201912,928762 -BG,GR,1,241,201912,2669024 -BG,GR,1,242,201912,90651 -BG,GR,1,243,201912,716152 -BG,GR,1,244,201912,2172053 -BG,GR,1,245,201912,3170 -BG,GR,1,251,201912,693086 -BG,GR,1,252,201912,12452 -BG,GR,1,257,201912,457038 -BG,GR,1,259,201912,858807 -BG,GR,1,25M,201912,139251 -BG,GR,1,261,201912,51603 -BG,GR,1,262,201912,618029 -BG,GR,1,263,201912,793219 -BG,GR,1,264,201912,1122706 -BG,GR,1,265,201912,3878715 -BG,GR,1,266,201912,14001 -BG,GR,1,267,201912,590 -BG,GR,1,268,201912,4830 -BG,GR,1,271,201912,100771 -BG,GR,1,272,201912,64657 -BG,GR,1,273,201912,676668 -BG,GR,1,274,201912,825111 -BG,GR,1,275,201912,194769 -BG,GR,1,279,201912,254761 -BG,GR,1,281,201912,173885 -BG,GR,1,282,201912,1648565 -BG,GR,1,283,201912,318337 -BG,GR,1,284,201912,55729 -BG,GR,1,289,201912,573420 -BG,GR,1,291,201912,1138912 -BG,GR,1,292,201912,116212 -BG,GR,1,293,201912,385752 -BG,GR,1,309,201912,13853 -BG,GR,1,310,201912,89338 -BG,GR,1,321,201912,146498 -BG,GR,1,323,201912,99874 -BG,GR,1,324,201912,6552966 -BG,GR,1,325,201912,775677 -BG,GR,1,329,201912,216609 -BG,GR,1,351,201912,72512 -BG,GR,2,011,201912,25678645 -BG,GR,2,012,201912,157147 -BG,GR,2,013,201912,257404 -BG,GR,2,014,201912,2573438 -BG,GR,2,022,201912,857001 -BG,GR,2,030,201912,45291 -BG,GR,2,081,201912,282609 -BG,GR,2,089,201912,13234 -BG,GR,2,101,201912,4080713 -BG,GR,2,102,201912,115157 -BG,GR,2,103,201912,1405124 -BG,GR,2,104,201912,6581384 -BG,GR,2,105,201912,3880832 -BG,GR,2,106,201912,4294290 -BG,GR,2,107,201912,1564769 -BG,GR,2,108,201912,3930461 -BG,GR,2,109,201912,285659 -BG,GR,2,10M,201912,484451 -BG,GR,2,110,201912,786731 -BG,GR,2,120,201912,68811 -BG,GR,2,131,201912,457903 -BG,GR,2,132,201912,302552 -BG,GR,2,139,201912,2484951 -BG,GR,2,13M,201912,43345 -BG,GR,2,141,201912,8605477 -BG,GR,2,143,201912,2250423 -BG,GR,2,14M,201912,639898 -BG,GR,2,151,201912,60556 -BG,GR,2,152,201912,670816 -BG,GR,2,161,201912,1384614 -BG,GR,2,162,201912,5556247 -BG,GR,2,171,201912,1831086 -BG,GR,2,172,201912,1827332 -BG,GR,2,17M,201912,294804 -BG,GR,2,192,201912,219858 -BG,GR,2,201,201912,3336765 -BG,GR,2,202,201912,74197 -BG,GR,2,203,201912,759339 -BG,GR,2,204,201912,1549534 -BG,GR,2,205,201912,2330957 -BG,GR,2,206,201912,269309 -BG,GR,2,20M,201912,142785 -BG,GR,2,211,201912,96752 -BG,GR,2,212,201912,715483 -BG,GR,2,221,201912,727262 -BG,GR,2,222,201912,5499694 -BG,GR,2,231,201912,3331152 -BG,GR,2,232,201912,14692 -BG,GR,2,233,201912,588206 -BG,GR,2,234,201912,522255 -BG,GR,2,235,201912,169883 -BG,GR,2,236,201912,504026 -BG,GR,2,237,201912,224620 -BG,GR,2,239,201912,136818 -BG,GR,2,23M,201912,117288 -BG,GR,2,241,201912,984354 -BG,GR,2,242,201912,616392 -BG,GR,2,243,201912,193365 -BG,GR,2,244,201912,3643769 -BG,GR,2,245,201912,313171 -BG,GR,2,251,201912,357071 -BG,GR,2,252,201912,298408 -BG,GR,2,253,201912,298390 -BG,GR,2,257,201912,328794 -BG,GR,2,259,201912,889229 -BG,GR,2,261,201912,215668 -BG,GR,2,262,201912,2557670 -BG,GR,2,263,201912,714071 -BG,GR,2,264,201912,2605228 -BG,GR,2,265,201912,142483 -BG,GR,2,266,201912,2000 -BG,GR,2,267,201912,24981 -BG,GR,2,268,201912,1610 -BG,GR,2,271,201912,273518 -BG,GR,2,272,201912,880256 -BG,GR,2,273,201912,451961 -BG,GR,2,274,201912,600334 -BG,GR,2,275,201912,2054683 -BG,GR,2,279,201912,340859 -BG,GR,2,281,201912,960859 -BG,GR,2,282,201912,2116546 -BG,GR,2,283,201912,540730 -BG,GR,2,284,201912,640334 -BG,GR,2,289,201912,715437 -BG,GR,2,291,201912,2040907 -BG,GR,2,292,201912,499272 -BG,GR,2,293,201912,793853 -BG,GR,2,303,201912,110138 -BG,GR,2,309,201912,178554 -BG,GR,2,310,201912,2623190 -BG,GR,2,321,201912,103283 -BG,GR,2,323,201912,50725 -BG,GR,2,324,201912,79449 -BG,GR,2,325,201912,2559609 -BG,GR,2,329,201912,230793 -BG,GR,2,351,201912,5840972 -BG,GT,2,109,201912,119360 -BG,GT,2,212,201912,65106 -BG,GT,2,279,201912,16667 -BG,HK,1,132,201912,1260 -BG,HK,1,139,201912,247304 -BG,HK,1,141,201912,19082 -BG,HK,1,143,201912,2046 -BG,HK,1,151,201912,86380 -BG,HK,1,152,201912,4306 -BG,HK,1,162,201912,982 -BG,HK,1,171,201912,746 -BG,HK,1,172,201912,30246 -BG,HK,1,201,201912,13020 -BG,HK,1,204,201912,7830 -BG,HK,1,205,201912,5644 -BG,HK,1,212,201912,331 -BG,HK,1,221,201912,21832 -BG,HK,1,222,201912,217408 -BG,HK,1,231,201912,39885 -BG,HK,1,234,201912,25797 -BG,HK,1,239,201912,894 -BG,HK,1,244,201912,6801 -BG,HK,1,254,201912,2063 -BG,HK,1,257,201912,28692 -BG,HK,1,259,201912,53035 -BG,HK,1,261,201912,1071784 -BG,HK,1,262,201912,2143678 -BG,HK,1,263,201912,934157 -BG,HK,1,264,201912,240345 -BG,HK,1,265,201912,474343 -BG,HK,1,266,201912,22842 -BG,HK,1,267,201912,77121 -BG,HK,1,271,201912,135518 -BG,HK,1,272,201912,256105 -BG,HK,1,273,201912,200416 -BG,HK,1,274,201912,109171 -BG,HK,1,275,201912,44750 -BG,HK,1,279,201912,419713 -BG,HK,1,281,201912,55535 -BG,HK,1,282,201912,79311 -BG,HK,1,284,201912,13448 -BG,HK,1,289,201912,94066 -BG,HK,1,293,201912,6802 -BG,HK,1,303,201912,2893 -BG,HK,1,309,201912,33554 -BG,HK,1,310,201912,14266 -BG,HK,1,321,201912,145330 -BG,HK,1,322,201912,1263 -BG,HK,1,323,201912,2780 -BG,HK,1,324,201912,131251 -BG,HK,1,325,201912,177292 -BG,HK,1,329,201912,41824 -BG,HK,2,012,201912,2916 -BG,HK,2,108,201912,68823 -BG,HK,2,110,201912,14301 -BG,HK,2,131,201912,241349 -BG,HK,2,132,201912,6231 -BG,HK,2,139,201912,4960 -BG,HK,2,141,201912,224008 -BG,HK,2,143,201912,586 -BG,HK,2,151,201912,141022 -BG,HK,2,152,201912,271994 -BG,HK,2,204,201912,87999 -BG,HK,2,205,201912,33195 -BG,HK,2,206,201912,504 -BG,HK,2,222,201912,13322 -BG,HK,2,261,201912,2092065 -BG,HK,2,262,201912,1594 -BG,HK,2,263,201912,48685 -BG,HK,2,264,201912,44057 -BG,HK,2,265,201912,530465 -BG,HK,2,271,201912,333250 -BG,HK,2,273,201912,7796 -BG,HK,2,279,201912,13197 -BG,HK,2,282,201912,402558 -BG,HK,2,309,201912,1047 -BG,HK,2,321,201912,135355 -BG,HK,2,325,201912,361534 -BG,HN,1,120,201912,2193 -BG,HN,2,289,201912,13733 -BG,HR,1,011,201912,1680 -BG,HR,1,030,201912,490259 -BG,HR,1,072,201912,14221 -BG,HR,1,101,201912,315914 -BG,HR,1,103,201912,14818 -BG,HR,1,105,201912,8689 -BG,HR,1,108,201912,696509 -BG,HR,1,109,201912,19012 -BG,HR,1,110,201912,827698 -BG,HR,1,120,201912,1455672 -BG,HR,1,139,201912,3513 -BG,HR,1,141,201912,3455 -BG,HR,1,151,201912,116315 -BG,HR,1,152,201912,16769 -BG,HR,1,162,201912,36859 -BG,HR,1,171,201912,333436 -BG,HR,1,172,201912,193328 -BG,HR,1,192,201912,8215 -BG,HR,1,201,201912,263108 -BG,HR,1,203,201912,27246 -BG,HR,1,204,201912,135801 -BG,HR,1,205,201912,9195 -BG,HR,1,212,201912,89330 -BG,HR,1,222,201912,198219 -BG,HR,1,231,201912,202118 -BG,HR,1,233,201912,2143 -BG,HR,1,234,201912,720 -BG,HR,1,236,201912,50504 -BG,HR,1,239,201912,52988 -BG,HR,1,243,201912,5015 -BG,HR,1,244,201912,521050 -BG,HR,1,251,201912,49239 -BG,HR,1,257,201912,101535 -BG,HR,1,259,201912,110353 -BG,HR,1,261,201912,8597 -BG,HR,1,262,201912,85158 -BG,HR,1,263,201912,236429 -BG,HR,1,264,201912,103289 -BG,HR,1,265,201912,37150 -BG,HR,1,267,201912,558 -BG,HR,1,271,201912,34507 -BG,HR,1,272,201912,366764 -BG,HR,1,273,201912,231527 -BG,HR,1,274,201912,151363 -BG,HR,1,275,201912,1493 -BG,HR,1,279,201912,20933 -BG,HR,1,281,201912,16328 -BG,HR,1,282,201912,220248 -BG,HR,1,283,201912,10151 -BG,HR,1,289,201912,7430 -BG,HR,1,293,201912,92151 -BG,HR,1,310,201912,2632 -BG,HR,1,324,201912,39205 -BG,HR,1,325,201912,146773 -BG,HR,1,329,201912,16774 -BG,HR,1,351,201912,110743 -BG,HR,2,011,201912,266680 -BG,HR,2,012,201912,66159 -BG,HR,2,013,201912,96930 -BG,HR,2,014,201912,33401 -BG,HR,2,101,201912,653441 -BG,HR,2,103,201912,88336 -BG,HR,2,104,201912,370 -BG,HR,2,107,201912,174481 -BG,HR,2,108,201912,288919 -BG,HR,2,110,201912,12243 -BG,HR,2,120,201912,8132 -BG,HR,2,131,201912,20156 -BG,HR,2,132,201912,37233 -BG,HR,2,139,201912,44622 -BG,HR,2,141,201912,821286 -BG,HR,2,143,201912,43535 -BG,HR,2,151,201912,23784 -BG,HR,2,162,201912,19825 -BG,HR,2,172,201912,88904 -BG,HR,2,201,201912,59722 -BG,HR,2,203,201912,24704 -BG,HR,2,204,201912,52935 -BG,HR,2,205,201912,29845 -BG,HR,2,206,201912,19257 -BG,HR,2,212,201912,326623 -BG,HR,2,221,201912,14012 -BG,HR,2,222,201912,191122 -BG,HR,2,231,201912,56879 -BG,HR,2,232,201912,9941 -BG,HR,2,233,201912,36815 -BG,HR,2,234,201912,150936 -BG,HR,2,236,201912,20485 -BG,HR,2,241,201912,199579 -BG,HR,2,242,201912,175270 -BG,HR,2,243,201912,92626 -BG,HR,2,244,201912,111735 -BG,HR,2,251,201912,68673 -BG,HR,2,252,201912,16277 -BG,HR,2,257,201912,11537 -BG,HR,2,259,201912,25672 -BG,HR,2,261,201912,8755 -BG,HR,2,262,201912,8796 -BG,HR,2,263,201912,94722 -BG,HR,2,264,201912,754732 -BG,HR,2,265,201912,11229 -BG,HR,2,266,201912,2424 -BG,HR,2,271,201912,7878 -BG,HR,2,273,201912,18614 -BG,HR,2,274,201912,171892 -BG,HR,2,275,201912,254927 -BG,HR,2,279,201912,40004 -BG,HR,2,281,201912,31817 -BG,HR,2,282,201912,244533 -BG,HR,2,310,201912,61462 -BG,HR,2,321,201912,36835 -BG,HR,2,324,201912,911984 -BG,HR,2,325,201912,11907 -BG,HR,2,329,201912,35879 -BG,HR,2,351,201912,20733 -BG,HU,1,011,201912,3708633 -BG,HU,1,012,201912,18427 -BG,HU,1,013,201912,16852 -BG,HU,1,014,201912,266910 -BG,HU,1,101,201912,3371454 -BG,HU,1,102,201912,7889 -BG,HU,1,103,201912,927892 -BG,HU,1,104,201912,412030 -BG,HU,1,105,201912,418890 -BG,HU,1,106,201912,228165 -BG,HU,1,107,201912,190521 -BG,HU,1,108,201912,1934950 -BG,HU,1,109,201912,551785 -BG,HU,1,110,201912,277816 -BG,HU,1,131,201912,40915 -BG,HU,1,132,201912,38522 -BG,HU,1,139,201912,125917 -BG,HU,1,141,201912,887680 -BG,HU,1,143,201912,91453 -BG,HU,1,151,201912,226169 -BG,HU,1,152,201912,51320 -BG,HU,1,162,201912,460663 -BG,HU,1,171,201912,336550 -BG,HU,1,172,201912,484912 -BG,HU,1,181,201912,8291 -BG,HU,1,192,201912,148095 -BG,HU,1,201,201912,2745342 -BG,HU,1,202,201912,699030 -BG,HU,1,203,201912,168191 -BG,HU,1,204,201912,1431294 -BG,HU,1,205,201912,620400 -BG,HU,1,211,201912,5915 -BG,HU,1,212,201912,21424587 -BG,HU,1,221,201912,306012 -BG,HU,1,222,201912,1136837 -BG,HU,1,231,201912,427714 -BG,HU,1,232,201912,7114 -BG,HU,1,233,201912,81192 -BG,HU,1,234,201912,30846 -BG,HU,1,235,201912,23555 -BG,HU,1,236,201912,84013 -BG,HU,1,239,201912,47372 -BG,HU,1,241,201912,255446 -BG,HU,1,242,201912,40759 -BG,HU,1,243,201912,37726 -BG,HU,1,244,201912,226189 -BG,HU,1,245,201912,6250 -BG,HU,1,251,201912,681585 -BG,HU,1,252,201912,2783 -BG,HU,1,257,201912,165628 -BG,HU,1,259,201912,354800 -BG,HU,1,261,201912,730221 -BG,HU,1,262,201912,6260776 -BG,HU,1,263,201912,9375957 -BG,HU,1,264,201912,4788206 -BG,HU,1,265,201912,358505 -BG,HU,1,266,201912,441816 -BG,HU,1,267,201912,94288 -BG,HU,1,268,201912,15480 -BG,HU,1,271,201912,2635297 -BG,HU,1,272,201912,1806541 -BG,HU,1,273,201912,611922 -BG,HU,1,274,201912,187117 -BG,HU,1,275,201912,2950750 -BG,HU,1,279,201912,1427885 -BG,HU,1,281,201912,942551 -BG,HU,1,282,201912,1814677 -BG,HU,1,283,201912,269822 -BG,HU,1,284,201912,232731 -BG,HU,1,289,201912,480727 -BG,HU,1,291,201912,10286430 -BG,HU,1,292,201912,20536 -BG,HU,1,293,201912,1879443 -BG,HU,1,302,201912,120323 -BG,HU,1,303,201912,2519 -BG,HU,1,309,201912,48791 -BG,HU,1,310,201912,70484 -BG,HU,1,321,201912,2747 -BG,HU,1,323,201912,2700 -BG,HU,1,324,201912,52678 -BG,HU,1,325,201912,334174 -BG,HU,1,329,201912,189583 -BG,HU,1,351,201912,400146 -BG,HU,2,011,201912,996536 -BG,HU,2,012,201912,1189280 -BG,HU,2,081,201912,8498 -BG,HU,2,101,201912,184429 -BG,HU,2,103,201912,104316 -BG,HU,2,104,201912,22379 -BG,HU,2,105,201912,38840 -BG,HU,2,106,201912,36692 -BG,HU,2,107,201912,422296 -BG,HU,2,108,201912,919155 -BG,HU,2,109,201912,71205 -BG,HU,2,110,201912,23778 -BG,HU,2,120,201912,123862 -BG,HU,2,131,201912,24919 -BG,HU,2,132,201912,21748 -BG,HU,2,139,201912,153956 -BG,HU,2,141,201912,511394 -BG,HU,2,143,201912,104040 -BG,HU,2,151,201912,2695 -BG,HU,2,152,201912,345615 -BG,HU,2,162,201912,23004 -BG,HU,2,171,201912,15482 -BG,HU,2,172,201912,21209 -BG,HU,2,192,201912,3473679 -BG,HU,2,201,201912,265790 -BG,HU,2,203,201912,4235 -BG,HU,2,204,201912,154450 -BG,HU,2,205,201912,3288561 -BG,HU,2,212,201912,1595524 -BG,HU,2,221,201912,434698 -BG,HU,2,222,201912,1130408 -BG,HU,2,231,201912,296848 -BG,HU,2,232,201912,13192 -BG,HU,2,233,201912,55188 -BG,HU,2,234,201912,4142 -BG,HU,2,236,201912,56895 -BG,HU,2,237,201912,5455 -BG,HU,2,241,201912,737120 -BG,HU,2,242,201912,681841 -BG,HU,2,244,201912,824481 -BG,HU,2,251,201912,120383 -BG,HU,2,252,201912,295573 -BG,HU,2,257,201912,938690 -BG,HU,2,259,201912,168453 -BG,HU,2,261,201912,1167451 -BG,HU,2,262,201912,44139 -BG,HU,2,263,201912,449789 -BG,HU,2,264,201912,1102618 -BG,HU,2,265,201912,131333 -BG,HU,2,266,201912,813 -BG,HU,2,267,201912,4913 -BG,HU,2,268,201912,378 -BG,HU,2,271,201912,2549020 -BG,HU,2,272,201912,355793 -BG,HU,2,273,201912,150725 -BG,HU,2,274,201912,836180 -BG,HU,2,275,201912,699009 -BG,HU,2,279,201912,320022 -BG,HU,2,281,201912,457148 -BG,HU,2,282,201912,583329 -BG,HU,2,283,201912,237412 -BG,HU,2,284,201912,20844 -BG,HU,2,289,201912,88716 -BG,HU,2,293,201912,217173 -BG,HU,2,309,201912,6948 -BG,HU,2,310,201912,373634 -BG,HU,2,321,201912,135230 -BG,HU,2,324,201912,347527 -BG,HU,2,325,201912,7309 -BG,HU,2,351,201912,408756 -BG,ID,1,012,201912,411384 -BG,ID,1,030,201912,7871 -BG,ID,1,102,201912,34899 -BG,ID,1,104,201912,1258634 -BG,ID,1,131,201912,198441 -BG,ID,1,132,201912,2392 -BG,ID,1,152,201912,92183 -BG,ID,1,162,201912,59510 -BG,ID,1,171,201912,335608 -BG,ID,1,172,201912,28726 -BG,ID,1,201,201912,73576 -BG,ID,1,206,201912,229499 -BG,ID,1,222,201912,36548 -BG,ID,1,231,201912,27818 -BG,ID,1,245,201912,33775 -BG,ID,1,261,201912,153655 -BG,ID,1,264,201912,1164105 -BG,ID,1,310,201912,41090 -BG,ID,2,012,201912,947264 -BG,ID,2,108,201912,21684 -BG,ID,2,109,201912,240428 -BG,ID,2,141,201912,5004 -BG,ID,2,171,201912,134731 -BG,ID,2,205,201912,1620 -BG,ID,2,232,201912,1871 -BG,ID,2,244,201912,109418 -BG,ID,2,257,201912,585 -BG,ID,2,261,201912,283568 -BG,ID,2,265,201912,8598 -BG,ID,2,266,201912,62423 -BG,ID,2,271,201912,82207 -BG,ID,2,281,201912,32574 -BG,ID,2,289,201912,299274 -BG,ID,2,325,201912,194199 -BG,IE,1,101,201912,78294 -BG,IE,1,103,201912,71038 -BG,IE,1,106,201912,98718 -BG,IE,1,108,201912,75634 -BG,IE,1,109,201912,17966 -BG,IE,1,110,201912,679074 -BG,IE,1,139,201912,15298 -BG,IE,1,141,201912,1808 -BG,IE,1,162,201912,964 -BG,IE,1,201,201912,46827 -BG,IE,1,203,201912,2750 -BG,IE,1,204,201912,4582 -BG,IE,1,205,201912,3511198 -BG,IE,1,211,201912,2617 -BG,IE,1,212,201912,4629178 -BG,IE,1,221,201912,3072 -BG,IE,1,222,201912,19843 -BG,IE,1,257,201912,850028 -BG,IE,1,259,201912,1835 -BG,IE,1,261,201912,123379 -BG,IE,1,262,201912,197194 -BG,IE,1,263,201912,4778727 -BG,IE,1,264,201912,3675 -BG,IE,1,265,201912,83078 -BG,IE,1,267,201912,1328 -BG,IE,1,271,201912,862074 -BG,IE,1,272,201912,4599 -BG,IE,1,273,201912,18809 -BG,IE,1,279,201912,6262 -BG,IE,1,281,201912,13601 -BG,IE,1,282,201912,42335 -BG,IE,1,283,201912,6039 -BG,IE,1,289,201912,14980 -BG,IE,1,292,201912,1410 -BG,IE,1,293,201912,6331 -BG,IE,1,303,201912,23515 -BG,IE,1,325,201912,40993 -BG,IE,2,011,201912,32770 -BG,IE,2,101,201912,8678 -BG,IE,2,103,201912,12470 -BG,IE,2,105,201912,9196 -BG,IE,2,107,201912,1542 -BG,IE,2,108,201912,3425 -BG,IE,2,131,201912,4335 -BG,IE,2,139,201912,926 -BG,IE,2,141,201912,22485 -BG,IE,2,143,201912,86754 -BG,IE,2,172,201912,44003 -BG,IE,2,192,201912,757747 -BG,IE,2,204,201912,52143 -BG,IE,2,205,201912,4468 -BG,IE,2,212,201912,706965 -BG,IE,2,221,201912,2230 -BG,IE,2,222,201912,32774 -BG,IE,2,244,201912,117000 -BG,IE,2,257,201912,4041 -BG,IE,2,259,201912,224040 -BG,IE,2,262,201912,11766 -BG,IE,2,263,201912,4089 -BG,IE,2,265,201912,15643 -BG,IE,2,267,201912,2187 -BG,IE,2,268,201912,1353 -BG,IE,2,271,201912,27838 -BG,IE,2,272,201912,325601 -BG,IE,2,273,201912,1560 -BG,IE,2,274,201912,14595 -BG,IE,2,275,201912,32646 -BG,IE,2,279,201912,7029 -BG,IE,2,281,201912,6261 -BG,IE,2,283,201912,10282 -BG,IE,2,289,201912,133908 -BG,IE,2,310,201912,5211 -BG,IE,2,321,201912,88823 -BG,IE,2,324,201912,139903 -BG,IE,2,325,201912,5179 -BG,IL,1,011,201912,8267 -BG,IL,1,012,201912,44981 -BG,IL,1,108,201912,80069 -BG,IL,1,139,201912,225168 -BG,IL,1,141,201912,4793 -BG,IL,1,172,201912,1201 -BG,IL,1,201,201912,256634 -BG,IL,1,203,201912,496 -BG,IL,1,204,201912,238165 -BG,IL,1,205,201912,3375 -BG,IL,1,212,201912,1776 -BG,IL,1,221,201912,103741 -BG,IL,1,222,201912,237276 -BG,IL,1,257,201912,33558 -BG,IL,1,259,201912,610 -BG,IL,1,261,201912,4398 -BG,IL,1,262,201912,244860 -BG,IL,1,263,201912,21339 -BG,IL,1,264,201912,16473 -BG,IL,1,265,201912,18572 -BG,IL,1,266,201912,20395 -BG,IL,1,267,201912,16152 -BG,IL,1,273,201912,6905 -BG,IL,1,279,201912,75257 -BG,IL,1,282,201912,47385 -BG,IL,1,289,201912,440133 -BG,IL,1,321,201912,6205 -BG,IL,1,325,201912,129431 -BG,IL,2,011,201912,36909 -BG,IL,2,022,201912,29806 -BG,IL,2,081,201912,99876 -BG,IL,2,103,201912,180684 -BG,IL,2,107,201912,205242 -BG,IL,2,108,201912,305637 -BG,IL,2,109,201912,148111 -BG,IL,2,110,201912,80728 -BG,IL,2,120,201912,20342 -BG,IL,2,139,201912,244033 -BG,IL,2,141,201912,40105 -BG,IL,2,162,201912,100090 -BG,IL,2,172,201912,147003 -BG,IL,2,201,201912,1305348 -BG,IL,2,204,201912,151831 -BG,IL,2,205,201912,29209 -BG,IL,2,212,201912,75067 -BG,IL,2,221,201912,21573 -BG,IL,2,222,201912,754280 -BG,IL,2,231,201912,608434 -BG,IL,2,233,201912,38106 -BG,IL,2,234,201912,60905 -BG,IL,2,239,201912,33788 -BG,IL,2,244,201912,197736 -BG,IL,2,251,201912,712151 -BG,IL,2,257,201912,48505 -BG,IL,2,259,201912,16051 -BG,IL,2,261,201912,15146 -BG,IL,2,262,201912,53832 -BG,IL,2,263,201912,17098 -BG,IL,2,264,201912,134275 -BG,IL,2,265,201912,5642 -BG,IL,2,267,201912,156234 -BG,IL,2,271,201912,110357 -BG,IL,2,272,201912,59693 -BG,IL,2,273,201912,183971 -BG,IL,2,274,201912,18244 -BG,IL,2,275,201912,397642 -BG,IL,2,279,201912,4337 -BG,IL,2,281,201912,39644 -BG,IL,2,282,201912,90823 -BG,IL,2,291,201912,2903067 -BG,IL,2,292,201912,2599 -BG,IL,2,303,201912,1356 -BG,IL,2,310,201912,539556 -BG,IL,2,321,201912,1422 -BG,IL,2,323,201912,36516 -BG,IL,2,324,201912,1505 -BG,IL,2,325,201912,95566 -BG,IN,1,011,201912,303663 -BG,IN,1,012,201912,331937 -BG,IN,1,103,201912,127496 -BG,IN,1,106,201912,56015 -BG,IN,1,108,201912,272629 -BG,IN,1,110,201912,8127 -BG,IN,1,120,201912,365679 -BG,IN,1,131,201912,167837 -BG,IN,1,132,201912,53359 -BG,IN,1,139,201912,538742 -BG,IN,1,141,201912,40397 -BG,IN,1,152,201912,245 -BG,IN,1,162,201912,2388 -BG,IN,1,171,201912,110641 -BG,IN,1,192,201912,49517 -BG,IN,1,201,201912,3453605 -BG,IN,1,204,201912,60160 -BG,IN,1,205,201912,90823 -BG,IN,1,206,201912,28695 -BG,IN,1,211,201912,10551 -BG,IN,1,212,201912,696620 -BG,IN,1,221,201912,340977 -BG,IN,1,222,201912,125016 -BG,IN,1,231,201912,72103 -BG,IN,1,232,201912,81912 -BG,IN,1,233,201912,55845 -BG,IN,1,234,201912,30432 -BG,IN,1,237,201912,164687 -BG,IN,1,241,201912,596003 -BG,IN,1,242,201912,94826 -BG,IN,1,244,201912,81229 -BG,IN,1,257,201912,110996 -BG,IN,1,259,201912,211477 -BG,IN,1,262,201912,3734 -BG,IN,1,263,201912,82365 -BG,IN,1,264,201912,356 -BG,IN,1,265,201912,22028 -BG,IN,1,271,201912,131599 -BG,IN,1,273,201912,79737 -BG,IN,1,279,201912,80232 -BG,IN,1,281,201912,132993 -BG,IN,1,282,201912,60877 -BG,IN,1,289,201912,3709 -BG,IN,1,293,201912,311 -BG,IN,1,310,201912,63372 -BG,IN,1,325,201912,199944 -BG,IN,2,011,201912,101268 -BG,IN,2,012,201912,29250 -BG,IN,2,081,201912,5725 -BG,IN,2,107,201912,2267 -BG,IN,2,109,201912,215900 -BG,IN,2,141,201912,25720 -BG,IN,2,143,201912,1440 -BG,IN,2,201,201912,5345690 -BG,IN,2,204,201912,82892 -BG,IN,2,205,201912,8468 -BG,IN,2,211,201912,373105 -BG,IN,2,212,201912,234921 -BG,IN,2,221,201912,436 -BG,IN,2,222,201912,32539 -BG,IN,2,231,201912,52480 -BG,IN,2,244,201912,252854 -BG,IN,2,257,201912,270004 -BG,IN,2,259,201912,338 -BG,IN,2,261,201912,42108 -BG,IN,2,262,201912,165460 -BG,IN,2,263,201912,302274 -BG,IN,2,264,201912,9199 -BG,IN,2,265,201912,1013952 -BG,IN,2,267,201912,41892 -BG,IN,2,271,201912,675337 -BG,IN,2,273,201912,30607 -BG,IN,2,279,201912,353896 -BG,IN,2,281,201912,162355 -BG,IN,2,282,201912,15973 -BG,IN,2,289,201912,703297 -BG,IN,2,293,201912,15646 -BG,IN,2,325,201912,67010 -BG,IN,2,329,201912,7041 -BG,IQ,2,014,201912,647360 -BG,IQ,2,103,201912,130321 -BG,IQ,2,107,201912,432323 -BG,IQ,2,108,201912,285836 -BG,IQ,2,110,201912,3408 -BG,IQ,2,120,201912,590444 -BG,IQ,2,139,201912,18001 -BG,IQ,2,172,201912,7385 -BG,IQ,2,192,201912,32555 -BG,IQ,2,212,201912,90138 -BG,IQ,2,222,201912,11539 -BG,IQ,2,231,201912,13022 -BG,IQ,2,234,201912,16438 -BG,IQ,2,252,201912,25210 -BG,IQ,2,259,201912,28189 -BG,IQ,2,274,201912,1551 -BG,IQ,2,281,201912,76817 -BG,IQ,2,291,201912,7699 -BG,IQ,2,293,201912,1600 -BG,IQ,2,310,201912,71163 -BG,IR,1,012,201912,277460 -BG,IR,1,103,201912,235154 -BG,IR,1,192,201912,17375 -BG,IR,1,201,201912,1612445 -BG,IR,1,206,201912,97199 -BG,IR,1,222,201912,578 -BG,IR,1,231,201912,80626 -BG,IR,1,233,201912,17950 -BG,IR,1,237,201912,30640 -BG,IR,1,241,201912,298969 -BG,IR,1,259,201912,75559 -BG,IR,2,171,201912,237455 -BG,IR,2,172,201912,394719 -BG,IR,2,192,201912,467437 -BG,IR,2,201,201912,186610 -BG,IR,2,204,201912,84040 -BG,IR,2,205,201912,76792 -BG,IR,2,244,201912,6093 -BG,IR,2,251,201912,80200 -BG,IR,2,259,201912,5590 -BG,IR,2,265,201912,733 -BG,IR,2,271,201912,1067487 -BG,IR,2,279,201912,42868 -BG,IR,2,281,201912,505931 -BG,IR,2,282,201912,317437 -BG,IR,2,291,201912,255198 -BG,IR,2,292,201912,61055 -BG,IR,2,329,201912,11088 -BG,IS,2,139,201912,2132 -BG,IS,2,204,201912,4143 -BG,IS,2,222,201912,5369 -BG,IT,1,011,201912,172009 -BG,IT,1,012,201912,1413372 -BG,IT,1,013,201912,103113 -BG,IT,1,023,201912,2232 -BG,IT,1,030,201912,483 -BG,IT,1,072,201912,776204 -BG,IT,1,081,201912,69510 -BG,IT,1,089,201912,81748 -BG,IT,1,101,201912,3464001 -BG,IT,1,102,201912,74116 -BG,IT,1,103,201912,901376 -BG,IT,1,104,201912,279020 -BG,IT,1,105,201912,1152114 -BG,IT,1,106,201912,322159 -BG,IT,1,107,201912,793995 -BG,IT,1,108,201912,3688302 -BG,IT,1,109,201912,290748 -BG,IT,1,10M,201912,324918 -BG,IT,1,110,201912,9555085 -BG,IT,1,120,201912,313270 -BG,IT,1,131,201912,3633440 -BG,IT,1,132,201912,7849379 -BG,IT,1,139,201912,4675452 -BG,IT,1,13M,201912,408469 -BG,IT,1,141,201912,4863460 -BG,IT,1,142,201912,51756 -BG,IT,1,143,201912,811332 -BG,IT,1,14M,201912,946906 -BG,IT,1,151,201912,5114653 -BG,IT,1,152,201912,2151233 -BG,IT,1,161,201912,54784 -BG,IT,1,162,201912,289538 -BG,IT,1,171,201912,2299359 -BG,IT,1,172,201912,2692343 -BG,IT,1,17M,201912,538437 -BG,IT,1,181,201912,6240 -BG,IT,1,192,201912,758212 -BG,IT,1,201,201912,3351257 -BG,IT,1,202,201912,651927 -BG,IT,1,203,201912,1295726 -BG,IT,1,204,201912,3944134 -BG,IT,1,205,201912,1328110 -BG,IT,1,206,201912,654493 -BG,IT,1,20M,201912,547720 -BG,IT,1,211,201912,2132785 -BG,IT,1,212,201912,4014460 -BG,IT,1,221,201912,1187502 -BG,IT,1,222,201912,4358695 -BG,IT,1,231,201912,658869 -BG,IT,1,232,201912,82590 -BG,IT,1,233,201912,912199 -BG,IT,1,234,201912,472859 -BG,IT,1,235,201912,16248 -BG,IT,1,236,201912,51083 -BG,IT,1,237,201912,37819 -BG,IT,1,239,201912,327080 -BG,IT,1,23M,201912,380619 -BG,IT,1,241,201912,2321696 -BG,IT,1,242,201912,1075495 -BG,IT,1,243,201912,867272 -BG,IT,1,244,201912,1983417 -BG,IT,1,245,201912,10975 -BG,IT,1,251,201912,1417311 -BG,IT,1,252,201912,587329 -BG,IT,1,253,201912,62518 -BG,IT,1,257,201912,1473039 -BG,IT,1,259,201912,4839747 -BG,IT,1,25M,201912,204235 -BG,IT,1,261,201912,810345 -BG,IT,1,262,201912,149351 -BG,IT,1,263,201912,3023751 -BG,IT,1,264,201912,310122 -BG,IT,1,265,201912,1471505 -BG,IT,1,266,201912,1164392 -BG,IT,1,267,201912,55648 -BG,IT,1,268,201912,1603554 -BG,IT,1,271,201912,5277024 -BG,IT,1,272,201912,363365 -BG,IT,1,273,201912,1385818 -BG,IT,1,274,201912,1133714 -BG,IT,1,275,201912,1897851 -BG,IT,1,279,201912,1195678 -BG,IT,1,281,201912,6487236 -BG,IT,1,282,201912,10017882 -BG,IT,1,283,201912,9095772 -BG,IT,1,284,201912,4862640 -BG,IT,1,289,201912,19541063 -BG,IT,1,291,201912,11523308 -BG,IT,1,292,201912,302893 -BG,IT,1,293,201912,1480755 -BG,IT,1,301,201912,3072 -BG,IT,1,302,201912,13823 -BG,IT,1,303,201912,229574 -BG,IT,1,309,201912,472105 -BG,IT,1,310,201912,2250754 -BG,IT,1,321,201912,56373 -BG,IT,1,322,201912,47178 -BG,IT,1,323,201912,325536 -BG,IT,1,324,201912,1099783 -BG,IT,1,325,201912,2235622 -BG,IT,1,329,201912,870260 -BG,IT,2,011,201912,8849273 -BG,IT,2,012,201912,69431 -BG,IT,2,013,201912,39413 -BG,IT,2,014,201912,959599 -BG,IT,2,022,201912,17117 -BG,IT,2,030,201912,213 -BG,IT,2,081,201912,36312 -BG,IT,2,089,201912,8493 -BG,IT,2,101,201912,709203 -BG,IT,2,102,201912,7803 -BG,IT,2,103,201912,2688631 -BG,IT,2,104,201912,916191 -BG,IT,2,105,201912,79801 -BG,IT,2,106,201912,1333963 -BG,IT,2,107,201912,190710 -BG,IT,2,108,201912,1266423 -BG,IT,2,109,201912,114720 -BG,IT,2,10M,201912,63744 -BG,IT,2,110,201912,8507747 -BG,IT,2,120,201912,781989 -BG,IT,2,131,201912,4792536 -BG,IT,2,132,201912,2837304 -BG,IT,2,139,201912,1806712 -BG,IT,2,141,201912,18807940 -BG,IT,2,142,201912,280543 -BG,IT,2,143,201912,2415921 -BG,IT,2,14M,201912,581468 -BG,IT,2,151,201912,4843686 -BG,IT,2,152,201912,8505068 -BG,IT,2,161,201912,134426 -BG,IT,2,162,201912,2495361 -BG,IT,2,171,201912,516126 -BG,IT,2,172,201912,2212002 -BG,IT,2,192,201912,2941 -BG,IT,2,201,201912,2443840 -BG,IT,2,202,201912,19397 -BG,IT,2,203,201912,7628 -BG,IT,2,204,201912,1917712 -BG,IT,2,205,201912,159867 -BG,IT,2,206,201912,621822 -BG,IT,2,211,201912,2807860 -BG,IT,2,212,201912,1525456 -BG,IT,2,221,201912,651874 -BG,IT,2,222,201912,4442768 -BG,IT,2,231,201912,2272115 -BG,IT,2,232,201912,12080 -BG,IT,2,233,201912,268726 -BG,IT,2,234,201912,918641 -BG,IT,2,236,201912,57203 -BG,IT,2,237,201912,31054 -BG,IT,2,239,201912,110119 -BG,IT,2,23M,201912,50995 -BG,IT,2,241,201912,283038 -BG,IT,2,242,201912,49206 -BG,IT,2,243,201912,23639 -BG,IT,2,244,201912,11302052 -BG,IT,2,245,201912,196562 -BG,IT,2,251,201912,347182 -BG,IT,2,252,201912,546 -BG,IT,2,257,201912,1767208 -BG,IT,2,259,201912,2015856 -BG,IT,2,261,201912,874158 -BG,IT,2,262,201912,172802 -BG,IT,2,263,201912,1610561 -BG,IT,2,264,201912,1321647 -BG,IT,2,265,201912,602911 -BG,IT,2,266,201912,1253 -BG,IT,2,267,201912,100857 -BG,IT,2,268,201912,1293333 -BG,IT,2,271,201912,5285084 -BG,IT,2,272,201912,1439777 -BG,IT,2,273,201912,489535 -BG,IT,2,274,201912,1113227 -BG,IT,2,275,201912,864838 -BG,IT,2,279,201912,1766946 -BG,IT,2,281,201912,5991395 -BG,IT,2,282,201912,1849919 -BG,IT,2,283,201912,56407 -BG,IT,2,284,201912,491495 -BG,IT,2,289,201912,1671270 -BG,IT,2,291,201912,1560740 -BG,IT,2,292,201912,14640 -BG,IT,2,293,201912,489017 -BG,IT,2,302,201912,125106 -BG,IT,2,303,201912,153910 -BG,IT,2,309,201912,183353 -BG,IT,2,310,201912,1424904 -BG,IT,2,321,201912,198806 -BG,IT,2,323,201912,437817 -BG,IT,2,324,201912,11179 -BG,IT,2,325,201912,277723 -BG,IT,2,329,201912,567387 -BG,JM,2,324,201912,2573 -BG,JO,2,011,201912,136279 -BG,JO,2,107,201912,185705 -BG,JO,2,108,201912,110113 -BG,JO,2,109,201912,41000 -BG,JO,2,139,201912,18973 -BG,JO,2,201,201912,3350 -BG,JO,2,212,201912,92634 -BG,JO,2,222,201912,2014 -BG,JO,2,234,201912,15567 -BG,JO,2,259,201912,27116 -BG,JO,2,263,201912,993 -BG,JO,2,273,201912,36294 -BG,JO,2,281,201912,31271 -BG,JO,2,291,201912,55549 -BG,JO,2,292,201912,4699 -BG,JO,2,310,201912,5753 -BG,JP,1,107,201912,31343 -BG,JP,1,132,201912,63695 -BG,JP,1,139,201912,9521 -BG,JP,1,141,201912,9384 -BG,JP,1,151,201912,3920 -BG,JP,1,172,201912,4385 -BG,JP,1,192,201912,337 -BG,JP,1,201,201912,766038 -BG,JP,1,203,201912,80882 -BG,JP,1,205,201912,10905 -BG,JP,1,206,201912,511101 -BG,JP,1,221,201912,16807 -BG,JP,1,222,201912,199590 -BG,JP,1,231,201912,11537 -BG,JP,1,241,201912,128357 -BG,JP,1,244,201912,403487 -BG,JP,1,257,201912,27038 -BG,JP,1,259,201912,186618 -BG,JP,1,261,201912,312538 -BG,JP,1,262,201912,176184 -BG,JP,1,263,201912,11685 -BG,JP,1,264,201912,64252 -BG,JP,1,265,201912,312693 -BG,JP,1,266,201912,8369 -BG,JP,1,267,201912,57359 -BG,JP,1,271,201912,3345551 -BG,JP,1,272,201912,1859571 -BG,JP,1,273,201912,784750 -BG,JP,1,274,201912,93421 -BG,JP,1,279,201912,163288 -BG,JP,1,281,201912,34716 -BG,JP,1,282,201912,625367 -BG,JP,1,283,201912,387698 -BG,JP,1,284,201912,36566 -BG,JP,1,289,201912,32908 -BG,JP,1,291,201912,2166585 -BG,JP,1,293,201912,8197 -BG,JP,1,309,201912,982986 -BG,JP,1,323,201912,65934 -BG,JP,1,325,201912,703741 -BG,JP,1,329,201912,10135 -BG,JP,2,011,201912,27247 -BG,JP,2,012,201912,13982 -BG,JP,2,014,201912,103257 -BG,JP,2,081,201912,7174 -BG,JP,2,101,201912,461024 -BG,JP,2,102,201912,73757 -BG,JP,2,107,201912,39112 -BG,JP,2,108,201912,16040 -BG,JP,2,110,201912,18479 -BG,JP,2,120,201912,10376 -BG,JP,2,139,201912,1896 -BG,JP,2,141,201912,61423 -BG,JP,2,143,201912,8202 -BG,JP,2,204,201912,46747 -BG,JP,2,205,201912,185212 -BG,JP,2,231,201912,10011 -BG,JP,2,234,201912,705 -BG,JP,2,244,201912,110654 -BG,JP,2,261,201912,1072485 -BG,JP,2,262,201912,18068 -BG,JP,2,263,201912,3862 -BG,JP,2,264,201912,26240 -BG,JP,2,265,201912,70060 -BG,JP,2,271,201912,183257 -BG,JP,2,273,201912,18295 -BG,JP,2,279,201912,21944 -BG,JP,2,281,201912,204409 -BG,JP,2,282,201912,21921 -BG,JP,2,289,201912,1255 -BG,JP,2,293,201912,515 -BG,JP,2,309,201912,2906 -BG,JP,2,310,201912,89146 -BG,JP,2,322,201912,41491 -BG,JP,2,323,201912,11485 -BG,JP,2,324,201912,2410 -BG,JP,2,325,201912,488070 -BG,KE,1,011,201912,1912 -BG,KE,2,110,201912,33794 -BG,KE,2,265,201912,3327 -BG,KE,2,271,201912,340384 -BG,KE,2,282,201912,19783 -BG,KG,1,011,201912,472257 -BG,KG,2,204,201912,14695 -BG,KG,2,211,201912,2074 -BG,KG,2,212,201912,187236 -BG,KG,2,289,201912,7971 -BG,KH,2,141,201912,1517 -BG,KH,2,202,201912,77494 -BG,KH,2,204,201912,1841 -BG,KR,1,109,201912,25800 -BG,KR,1,110,201912,206903 -BG,KR,1,132,201912,170132 -BG,KR,1,139,201912,131509 -BG,KR,1,171,201912,117246 -BG,KR,1,172,201912,57718 -BG,KR,1,201,201912,2281240 -BG,KR,1,203,201912,667 -BG,KR,1,204,201912,317907 -BG,KR,1,205,201912,79191 -BG,KR,1,206,201912,788398 -BG,KR,1,211,201912,14054 -BG,KR,1,212,201912,5442 -BG,KR,1,221,201912,301382 -BG,KR,1,222,201912,123897 -BG,KR,1,239,201912,17421 -BG,KR,1,241,201912,535273 -BG,KR,1,242,201912,7972 -BG,KR,1,257,201912,62860 -BG,KR,1,259,201912,43136 -BG,KR,1,261,201912,31502 -BG,KR,1,262,201912,1197769 -BG,KR,1,263,201912,16324 -BG,KR,1,264,201912,46496 -BG,KR,1,265,201912,17838 -BG,KR,1,266,201912,21010 -BG,KR,1,267,201912,30756 -BG,KR,1,271,201912,1632 -BG,KR,1,272,201912,595847 -BG,KR,1,273,201912,40686 -BG,KR,1,274,201912,15324 -BG,KR,1,275,201912,33891 -BG,KR,1,279,201912,129767 -BG,KR,1,281,201912,86228 -BG,KR,1,282,201912,272249 -BG,KR,1,284,201912,435223 -BG,KR,1,289,201912,10253 -BG,KR,1,291,201912,53459 -BG,KR,1,293,201912,84194 -BG,KR,1,323,201912,1627 -BG,KR,1,325,201912,166041 -BG,KR,1,329,201912,38702 -BG,KR,2,011,201912,229077 -BG,KR,2,012,201912,1120 -BG,KR,2,081,201912,12526 -BG,KR,2,102,201912,385663 -BG,KR,2,104,201912,69087 -BG,KR,2,107,201912,47379 -BG,KR,2,108,201912,6002 -BG,KR,2,120,201912,84443 -BG,KR,2,131,201912,5534 -BG,KR,2,132,201912,23276 -BG,KR,2,141,201912,11713 -BG,KR,2,143,201912,8820 -BG,KR,2,171,201912,143375 -BG,KR,2,201,201912,153966 -BG,KR,2,204,201912,6397 -BG,KR,2,205,201912,8238 -BG,KR,2,211,201912,105365 -BG,KR,2,212,201912,125514 -BG,KR,2,221,201912,143425 -BG,KR,2,231,201912,139340 -BG,KR,2,244,201912,849805 -BG,KR,2,259,201912,13275 -BG,KR,2,261,201912,233651 -BG,KR,2,262,201912,5858 -BG,KR,2,264,201912,10000 -BG,KR,2,265,201912,41422 -BG,KR,2,271,201912,42322 -BG,KR,2,273,201912,24965 -BG,KR,2,275,201912,74078 -BG,KR,2,279,201912,210148 -BG,KR,2,281,201912,173524 -BG,KR,2,282,201912,47508 -BG,KR,2,293,201912,34210 -BG,KR,2,309,201912,2704 -BG,KR,2,310,201912,157099 -BG,KR,2,325,201912,128784 -BG,KW,2,110,201912,3500 -BG,KW,2,139,201912,2516 -BG,KW,2,141,201912,7113 -BG,KW,2,143,201912,1300 -BG,KW,2,204,201912,35306 -BG,KW,2,212,201912,95981 -BG,KW,2,231,201912,24477 -BG,KW,2,234,201912,9228 -BG,KW,2,259,201912,2648 -BG,KW,2,263,201912,3575 -BG,KW,2,271,201912,5865 -BG,KW,2,279,201912,1617 -BG,KW,2,281,201912,4291 -BG,KW,2,310,201912,3976 -BG,KW,2,325,201912,25500 -BG,KW,2,329,201912,11220 -BG,KZ,2,110,201912,10554 -BG,KZ,2,120,201912,47298 -BG,KZ,2,131,201912,10138 -BG,KZ,2,141,201912,40882 -BG,KZ,2,204,201912,91718 -BG,KZ,2,211,201912,3877 -BG,KZ,2,212,201912,544468 -BG,KZ,2,221,201912,1268 -BG,KZ,2,262,201912,1864 -BG,KZ,2,263,201912,56311 -BG,KZ,2,264,201912,1720 -BG,KZ,2,265,201912,15802 -BG,KZ,2,266,201912,9234 -BG,KZ,2,271,201912,93091 -BG,KZ,2,273,201912,2860 -BG,KZ,2,279,201912,11834 -BG,KZ,2,281,201912,10991 -BG,KZ,2,282,201912,451457 -BG,KZ,2,325,201912,246256 -BG,LB,1,011,201912,64698 -BG,LB,1,222,201912,81625 -BG,LB,2,011,201912,202996 -BG,LB,2,104,201912,61463 -BG,LB,2,105,201912,243674 -BG,LB,2,107,201912,28945 -BG,LB,2,108,201912,149297 -BG,LB,2,120,201912,186103 -BG,LB,2,162,201912,223 -BG,LB,2,201,201912,902293 -BG,LB,2,205,201912,10574 -BG,LB,2,212,201912,10498 -BG,LB,2,222,201912,38423 -BG,LB,2,231,201912,12211 -BG,LB,2,259,201912,81400 -BG,LB,2,265,201912,2188 -BG,LB,2,271,201912,35783 -BG,LB,2,279,201912,4941 -BG,LB,2,281,201912,29800 -BG,LB,2,310,201912,10031 -BG,LB,2,325,201912,114514 -BG,LI,1,172,201912,1140 -BG,LI,2,222,201912,3090 -BG,LK,1,012,201912,19366 -BG,LK,1,108,201912,59795 -BG,LK,1,172,201912,1639 -BG,LK,1,204,201912,7728 -BG,LK,2,012,201912,251011 -BG,LK,2,329,201912,4451 -BG,LT,1,011,201912,883 -BG,LT,1,012,201912,682 -BG,LT,1,030,201912,9589 -BG,LT,1,081,201912,2162 -BG,LT,1,089,201912,872 -BG,LT,1,101,201912,24516 -BG,LT,1,102,201912,167620 -BG,LT,1,103,201912,6445 -BG,LT,1,105,201912,847155 -BG,LT,1,106,201912,45976 -BG,LT,1,107,201912,53393 -BG,LT,1,108,201912,190897 -BG,LT,1,109,201912,47160 -BG,LT,1,110,201912,73475 -BG,LT,1,120,201912,496393 -BG,LT,1,132,201912,23949 -BG,LT,1,139,201912,55725 -BG,LT,1,141,201912,30767 -BG,LT,1,143,201912,2040 -BG,LT,1,151,201912,2257 -BG,LT,1,152,201912,15510 -BG,LT,1,161,201912,34948 -BG,LT,1,162,201912,72681 -BG,LT,1,171,201912,1224 -BG,LT,1,172,201912,63058 -BG,LT,1,181,201912,25591 -BG,LT,1,192,201912,212618 -BG,LT,1,201,201912,316007 -BG,LT,1,203,201912,5231 -BG,LT,1,204,201912,121060 -BG,LT,1,205,201912,194518 -BG,LT,1,211,201912,16270 -BG,LT,1,212,201912,31152 -BG,LT,1,221,201912,93203 -BG,LT,1,222,201912,70562 -BG,LT,1,231,201912,27295 -BG,LT,1,234,201912,33995 -BG,LT,1,257,201912,13853 -BG,LT,1,259,201912,31546 -BG,LT,1,262,201912,4790 -BG,LT,1,263,201912,353579 -BG,LT,1,264,201912,15714 -BG,LT,1,265,201912,72865 -BG,LT,1,267,201912,4330 -BG,LT,1,271,201912,77505 -BG,LT,1,272,201912,9130 -BG,LT,1,273,201912,32445 -BG,LT,1,274,201912,24549 -BG,LT,1,275,201912,178225 -BG,LT,1,279,201912,50099 -BG,LT,1,281,201912,60513 -BG,LT,1,282,201912,91247 -BG,LT,1,283,201912,6093 -BG,LT,1,291,201912,22500 -BG,LT,1,292,201912,2000 -BG,LT,1,293,201912,71747 -BG,LT,1,303,201912,8763 -BG,LT,1,309,201912,22297 -BG,LT,1,310,201912,196241 -BG,LT,1,323,201912,2660 -BG,LT,1,324,201912,11397 -BG,LT,1,325,201912,37373 -BG,LT,1,329,201912,31303 -BG,LT,2,011,201912,175406 -BG,LT,2,012,201912,335254 -BG,LT,2,030,201912,106711 -BG,LT,2,103,201912,43622 -BG,LT,2,107,201912,170967 -BG,LT,2,108,201912,370634 -BG,LT,2,109,201912,1060 -BG,LT,2,110,201912,77505 -BG,LT,2,131,201912,310058 -BG,LT,2,132,201912,16579 -BG,LT,2,139,201912,57690 -BG,LT,2,141,201912,5625 -BG,LT,2,171,201912,75826 -BG,LT,2,172,201912,990057 -BG,LT,2,201,201912,223 -BG,LT,2,204,201912,47319 -BG,LT,2,205,201912,14064 -BG,LT,2,206,201912,3440 -BG,LT,2,212,201912,1150812 -BG,LT,2,221,201912,376 -BG,LT,2,222,201912,235579 -BG,LT,2,234,201912,12846 -BG,LT,2,242,201912,58232 -BG,LT,2,244,201912,249253 -BG,LT,2,251,201912,59781 -BG,LT,2,253,201912,1576 -BG,LT,2,257,201912,5013 -BG,LT,2,259,201912,65369 -BG,LT,2,261,201912,123770 -BG,LT,2,265,201912,19594 -BG,LT,2,267,201912,60936 -BG,LT,2,271,201912,210090 -BG,LT,2,272,201912,107101 -BG,LT,2,273,201912,1666 -BG,LT,2,274,201912,75839 -BG,LT,2,275,201912,59670 -BG,LT,2,279,201912,16129 -BG,LT,2,281,201912,41130 -BG,LT,2,282,201912,76630 -BG,LT,2,284,201912,159681 -BG,LT,2,289,201912,16827 -BG,LT,2,293,201912,1060 -BG,LT,2,309,201912,33528 -BG,LT,2,310,201912,6039 -BG,LT,2,321,201912,40570 -BG,LT,2,323,201912,1963 -BG,LT,2,325,201912,100700 -BG,LU,1,108,201912,193432 -BG,LU,1,139,201912,1014 -BG,LU,1,172,201912,17915 -BG,LU,1,201,201912,192568 -BG,LU,1,205,201912,3074 -BG,LU,1,221,201912,10216 -BG,LU,1,222,201912,86172 -BG,LU,1,231,201912,229719 -BG,LU,1,234,201912,8676 -BG,LU,1,241,201912,130989 -BG,LU,1,242,201912,279 -BG,LU,1,257,201912,2181 -BG,LU,1,263,201912,790 -BG,LU,1,265,201912,2901 -BG,LU,1,271,201912,13278 -BG,LU,1,272,201912,280738 -BG,LU,1,279,201912,45637 -BG,LU,1,281,201912,60252 -BG,LU,1,282,201912,383383 -BG,LU,1,284,201912,228 -BG,LU,1,289,201912,66709 -BG,LU,1,291,201912,2500 -BG,LU,1,351,201912,549443 -BG,LU,2,102,201912,20154 -BG,LU,2,110,201912,1142 -BG,LU,2,141,201912,5372 -BG,LU,2,192,201912,1845 -BG,LU,2,252,201912,213476 -BG,LU,2,272,201912,53654 -BG,LU,2,274,201912,2266 -BG,LU,2,275,201912,46863 -BG,LU,2,281,201912,4665 -BG,LU,2,284,201912,2341 -BG,LU,2,291,201912,22775 -BG,LU,2,351,201912,259986 -BG,LV,1,014,201912,104894 -BG,LV,1,101,201912,110042 -BG,LV,1,102,201912,47618 -BG,LV,1,103,201912,2597 -BG,LV,1,105,201912,725323 -BG,LV,1,107,201912,595 -BG,LV,1,108,201912,130464 -BG,LV,1,110,201912,159000 -BG,LV,1,131,201912,10132 -BG,LV,1,132,201912,394023 -BG,LV,1,139,201912,740 -BG,LV,1,161,201912,1069 -BG,LV,1,201,201912,79478 -BG,LV,1,203,201912,3574 -BG,LV,1,204,201912,89765 -BG,LV,1,205,201912,967 -BG,LV,1,211,201912,41507 -BG,LV,1,212,201912,113881 -BG,LV,1,222,201912,6122 -BG,LV,1,244,201912,205 -BG,LV,1,257,201912,2560 -BG,LV,1,259,201912,1391 -BG,LV,1,262,201912,54595 -BG,LV,1,263,201912,436349 -BG,LV,1,273,201912,881 -BG,LV,1,275,201912,8628 -BG,LV,1,281,201912,19607 -BG,LV,1,282,201912,12418 -BG,LV,1,292,201912,1028 -BG,LV,1,325,201912,8397 -BG,LV,2,103,201912,54316 -BG,LV,2,107,201912,69008 -BG,LV,2,108,201912,154280 -BG,LV,2,131,201912,3030 -BG,LV,2,132,201912,1915 -BG,LV,2,139,201912,29406 -BG,LV,2,141,201912,2933 -BG,LV,2,171,201912,3055 -BG,LV,2,172,201912,1416 -BG,LV,2,192,201912,39076 -BG,LV,2,201,201912,3324 -BG,LV,2,204,201912,34348 -BG,LV,2,205,201912,22312 -BG,LV,2,212,201912,134579 -BG,LV,2,222,201912,30350 -BG,LV,2,234,201912,6321 -BG,LV,2,259,201912,7222 -BG,LV,2,262,201912,26114 -BG,LV,2,263,201912,259266 -BG,LV,2,264,201912,6513 -BG,LV,2,265,201912,4190 -BG,LV,2,266,201912,3269 -BG,LV,2,268,201912,786 -BG,LV,2,271,201912,52013 -BG,LV,2,273,201912,721 -BG,LV,2,274,201912,162672 -BG,LV,2,275,201912,67761 -BG,LV,2,279,201912,112406 -BG,LV,2,281,201912,8522 -BG,LV,2,282,201912,19376 -BG,LV,2,289,201912,77216 -BG,LV,2,309,201912,1632 -BG,LV,2,310,201912,10608 -BG,LV,2,321,201912,18651 -BG,LV,2,323,201912,65421 -BG,LV,2,325,201912,36588 -BG,LV,2,329,201912,5962 -BG,LY,2,107,201912,571069 -BG,LY,2,108,201912,383054 -BG,LY,2,120,201912,188084 -BG,LY,2,141,201912,9124 -BG,LY,2,204,201912,113560 -BG,LY,2,222,201912,63494 -BG,LY,2,233,201912,73279 -BG,LY,2,325,201912,22141 -BG,MA,1,102,201912,107215 -BG,MA,1,139,201912,1809 -BG,MA,1,221,201912,16064 -BG,MA,1,222,201912,44326 -BG,MA,1,273,201912,1562 -BG,MA,1,291,201912,920610 -BG,MA,1,293,201912,4579 -BG,MA,2,011,201912,2610910 -BG,MA,2,106,201912,141996 -BG,MA,2,107,201912,134194 -BG,MA,2,108,201912,25441 -BG,MA,2,139,201912,6547 -BG,MA,2,172,201912,10183 -BG,MA,2,201,201912,141519 -BG,MA,2,202,201912,104707 -BG,MA,2,204,201912,16930 -BG,MA,2,222,201912,317113 -BG,MA,2,231,201912,75282 -BG,MA,2,244,201912,224437 -BG,MA,2,259,201912,49396 -BG,MA,2,265,201912,1150 -BG,MA,2,271,201912,43282 -BG,MA,2,275,201912,570906 -BG,MA,2,279,201912,1038 -BG,MA,2,281,201912,10447 -BG,MA,2,282,201912,6433 -BG,MA,2,289,201912,12993 -BG,MA,2,309,201912,3584 -BG,MA,2,310,201912,67437 -BG,MA,2,325,201912,49110 -BG,MD,1,011,201912,8514080 -BG,MD,1,013,201912,51971 -BG,MD,1,103,201912,144271 -BG,MD,1,107,201912,3985 -BG,MD,1,108,201912,335917 -BG,MD,1,132,201912,73208 -BG,MD,1,139,201912,23370 -BG,MD,1,222,201912,15380 -BG,MD,1,231,201912,44534 -BG,MD,1,241,201912,479903 -BG,MD,1,263,201912,248360 -BG,MD,1,265,201912,571530 -BG,MD,1,293,201912,745547 -BG,MD,1,310,201912,2100 -BG,MD,2,011,201912,40761 -BG,MD,2,013,201912,65601 -BG,MD,2,103,201912,45596 -BG,MD,2,105,201912,30127 -BG,MD,2,107,201912,25470 -BG,MD,2,108,201912,144603 -BG,MD,2,110,201912,11000 -BG,MD,2,139,201912,78745 -BG,MD,2,141,201912,132314 -BG,MD,2,143,201912,4183 -BG,MD,2,152,201912,33987 -BG,MD,2,171,201912,32382 -BG,MD,2,172,201912,160279 -BG,MD,2,201,201912,76443 -BG,MD,2,203,201912,34655 -BG,MD,2,204,201912,288476 -BG,MD,2,205,201912,4373 -BG,MD,2,212,201912,722806 -BG,MD,2,221,201912,429 -BG,MD,2,222,201912,424159 -BG,MD,2,231,201912,208471 -BG,MD,2,233,201912,48670 -BG,MD,2,234,201912,33893 -BG,MD,2,235,201912,2240 -BG,MD,2,236,201912,5603 -BG,MD,2,241,201912,49879 -BG,MD,2,242,201912,82966 -BG,MD,2,244,201912,39376 -BG,MD,2,252,201912,23787 -BG,MD,2,257,201912,23413 -BG,MD,2,259,201912,29872 -BG,MD,2,263,201912,41193 -BG,MD,2,264,201912,645 -BG,MD,2,265,201912,17023 -BG,MD,2,271,201912,4648 -BG,MD,2,272,201912,3450 -BG,MD,2,274,201912,7983 -BG,MD,2,275,201912,88979 -BG,MD,2,279,201912,2664 -BG,MD,2,281,201912,6899 -BG,MD,2,282,201912,64752 -BG,MD,2,283,201912,100721 -BG,MD,2,284,201912,7469 -BG,MD,2,289,201912,89450 -BG,MD,2,291,201912,7154 -BG,MD,2,325,201912,1125 -BG,MD,2,329,201912,7543 -BG,ME,1,222,201912,14519 -BG,ME,2,107,201912,68971 -BG,ME,2,108,201912,190195 -BG,ME,2,120,201912,898816 -BG,ME,2,162,201912,10053 -BG,ME,2,172,201912,48087 -BG,ME,2,203,201912,1985 -BG,ME,2,204,201912,38926 -BG,ME,2,212,201912,162257 -BG,ME,2,221,201912,318 -BG,ME,2,222,201912,9292 -BG,ME,2,231,201912,13819 -BG,ME,2,233,201912,61097 -BG,ME,2,234,201912,14703 -BG,ME,2,236,201912,5819 -BG,ME,2,239,201912,1145 -BG,ME,2,257,201912,5028 -BG,ME,2,259,201912,992 -BG,ME,2,262,201912,18016 -BG,ME,2,263,201912,4626 -BG,ME,2,271,201912,5153 -BG,ME,2,273,201912,3558 -BG,ME,2,274,201912,48241 -BG,ME,2,275,201912,49064 -BG,ME,2,279,201912,2913 -BG,ME,2,282,201912,14306 -BG,ME,2,309,201912,500 -BG,ME,2,310,201912,4906 -BG,ME,2,324,201912,821 -BG,ME,2,325,201912,11369 -BG,ME,2,329,201912,1419 -BG,MH,2,110,201912,1699 -BG,MH,2,120,201912,247 -BG,MH,2,192,201912,14197 -BG,MK,1,011,201912,73269 -BG,MK,1,012,201912,657804 -BG,MK,1,014,201912,9671 -BG,MK,1,072,201912,11181367 -BG,MK,1,081,201912,77094 -BG,MK,1,089,201912,2782 -BG,MK,1,103,201912,163341 -BG,MK,1,104,201912,5470 -BG,MK,1,106,201912,94983 -BG,MK,1,107,201912,364565 -BG,MK,1,108,201912,234637 -BG,MK,1,110,201912,124916 -BG,MK,1,131,201912,2394 -BG,MK,1,132,201912,70165 -BG,MK,1,139,201912,26107 -BG,MK,1,141,201912,1510373 -BG,MK,1,143,201912,1228 -BG,MK,1,151,201912,3862 -BG,MK,1,152,201912,32086 -BG,MK,1,162,201912,18758 -BG,MK,1,171,201912,72159 -BG,MK,1,172,201912,100577 -BG,MK,1,192,201912,34262 -BG,MK,1,201,201912,219583 -BG,MK,1,203,201912,273944 -BG,MK,1,204,201912,14182 -BG,MK,1,205,201912,13291 -BG,MK,1,212,201912,8221 -BG,MK,1,221,201912,31047 -BG,MK,1,222,201912,923432 -BG,MK,1,231,201912,13403 -BG,MK,1,232,201912,6388 -BG,MK,1,233,201912,77359 -BG,MK,1,235,201912,43398 -BG,MK,1,237,201912,952 -BG,MK,1,241,201912,1616075 -BG,MK,1,242,201912,349933 -BG,MK,1,243,201912,559031 -BG,MK,1,244,201912,12854 -BG,MK,1,251,201912,69455 -BG,MK,1,252,201912,1200 -BG,MK,1,259,201912,249049 -BG,MK,1,261,201912,451 -BG,MK,1,262,201912,8268 -BG,MK,1,263,201912,12815 -BG,MK,1,267,201912,7258 -BG,MK,1,271,201912,395821 -BG,MK,1,272,201912,176618 -BG,MK,1,273,201912,566864 -BG,MK,1,274,201912,3309 -BG,MK,1,275,201912,68747 -BG,MK,1,279,201912,3001 -BG,MK,1,281,201912,90145 -BG,MK,1,282,201912,405909 -BG,MK,1,289,201912,40016 -BG,MK,1,291,201912,8985 -BG,MK,1,303,201912,294984 -BG,MK,1,309,201912,1613 -BG,MK,1,310,201912,226925 -BG,MK,1,351,201912,17633 -BG,MK,2,011,201912,1879412 -BG,MK,2,012,201912,37500 -BG,MK,2,013,201912,3301 -BG,MK,2,022,201912,204469 -BG,MK,2,030,201912,18014 -BG,MK,2,062,201912,109091 -BG,MK,2,081,201912,12848 -BG,MK,2,101,201912,410481 -BG,MK,2,102,201912,9216 -BG,MK,2,103,201912,126526 -BG,MK,2,104,201912,1978360 -BG,MK,2,105,201912,20800 -BG,MK,2,106,201912,124167 -BG,MK,2,107,201912,850154 -BG,MK,2,108,201912,776314 -BG,MK,2,109,201912,17521 -BG,MK,2,110,201912,39340 -BG,MK,2,120,201912,805 -BG,MK,2,131,201912,147228 -BG,MK,2,132,201912,1096698 -BG,MK,2,139,201912,239258 -BG,MK,2,141,201912,111101 -BG,MK,2,143,201912,854 -BG,MK,2,151,201912,17448 -BG,MK,2,152,201912,35435 -BG,MK,2,161,201912,113494 -BG,MK,2,162,201912,716392 -BG,MK,2,171,201912,189473 -BG,MK,2,172,201912,477972 -BG,MK,2,192,201912,5240829 -BG,MK,2,201,201912,1138709 -BG,MK,2,202,201912,13203 -BG,MK,2,203,201912,121102 -BG,MK,2,204,201912,607795 -BG,MK,2,205,201912,199019 -BG,MK,2,206,201912,17813 -BG,MK,2,211,201912,30409 -BG,MK,2,212,201912,415244 -BG,MK,2,221,201912,725452 -BG,MK,2,222,201912,1524488 -BG,MK,2,231,201912,652643 -BG,MK,2,232,201912,7791 -BG,MK,2,233,201912,143855 -BG,MK,2,234,201912,59894 -BG,MK,2,235,201912,484782 -BG,MK,2,236,201912,180215 -BG,MK,2,237,201912,53211 -BG,MK,2,239,201912,12167 -BG,MK,2,241,201912,1364429 -BG,MK,2,242,201912,93589 -BG,MK,2,243,201912,482949 -BG,MK,2,244,201912,1057724 -BG,MK,2,245,201912,381 -BG,MK,2,251,201912,332016 -BG,MK,2,252,201912,96746 -BG,MK,2,253,201912,3745 -BG,MK,2,257,201912,138814 -BG,MK,2,259,201912,415906 -BG,MK,2,261,201912,62827 -BG,MK,2,262,201912,224823 -BG,MK,2,263,201912,800972 -BG,MK,2,264,201912,76500 -BG,MK,2,265,201912,106107 -BG,MK,2,267,201912,13419 -BG,MK,2,268,201912,17434 -BG,MK,2,271,201912,781750 -BG,MK,2,272,201912,160852 -BG,MK,2,273,201912,382550 -BG,MK,2,274,201912,198911 -BG,MK,2,275,201912,388213 -BG,MK,2,279,201912,78929 -BG,MK,2,281,201912,297524 -BG,MK,2,282,201912,441233 -BG,MK,2,283,201912,21832 -BG,MK,2,284,201912,57194 -BG,MK,2,289,201912,511355 -BG,MK,2,291,201912,2817560 -BG,MK,2,292,201912,170757 -BG,MK,2,293,201912,158494 -BG,MK,2,302,201912,42000 -BG,MK,2,303,201912,407579 -BG,MK,2,309,201912,24133 -BG,MK,2,310,201912,215214 -BG,MK,2,321,201912,518 -BG,MK,2,323,201912,30041 -BG,MK,2,324,201912,1220472 -BG,MK,2,325,201912,238916 -BG,MK,2,329,201912,56317 -BG,MK,2,351,201912,144722 -BG,ML,2,104,201912,17917 -BG,ML,2,139,201912,1344 -BG,ML,2,141,201912,13087 -BG,ML,2,151,201912,2938 -BG,ML,2,152,201912,9875 -BG,ML,2,172,201912,14818 -BG,ML,2,222,201912,1284 -BG,ML,2,329,201912,355 -BG,MM,1,106,201912,52425 -BG,MM,2,271,201912,570 -BG,MN,2,212,201912,16061 -BG,MR,2,141,201912,323433 -BG,MR,2,204,201912,15149 -BG,MR,2,274,201912,1008 -BG,MR,2,281,201912,1350 -BG,MR,2,293,201912,9680 -BG,MT,1,212,201912,228758 -BG,MT,1,303,201912,6941 -BG,MT,2,101,201912,10603 -BG,MT,2,103,201912,294 -BG,MT,2,105,201912,112882 -BG,MT,2,106,201912,4945 -BG,MT,2,107,201912,17449 -BG,MT,2,108,201912,35134 -BG,MT,2,110,201912,2565 -BG,MT,2,139,201912,16578 -BG,MT,2,141,201912,9852 -BG,MT,2,171,201912,306 -BG,MT,2,192,201912,28393 -BG,MT,2,203,201912,9348 -BG,MT,2,204,201912,7605 -BG,MT,2,205,201912,334 -BG,MT,2,212,201912,311911 -BG,MT,2,222,201912,46245 -BG,MT,2,231,201912,29533 -BG,MT,2,234,201912,14950 -BG,MT,2,236,201912,30303 -BG,MT,2,243,201912,10220 -BG,MT,2,262,201912,11586 -BG,MT,2,263,201912,68540 -BG,MT,2,274,201912,97399 -BG,MT,2,275,201912,115183 -BG,MT,2,279,201912,11481 -BG,MT,2,281,201912,92992 -BG,MT,2,282,201912,4043 -BG,MT,2,310,201912,27077 -BG,MT,2,321,201912,13250 -BG,MU,2,103,201912,687 -BG,MU,2,107,201912,156798 -BG,MU,2,108,201912,3844 -BG,MU,2,131,201912,348975 -BG,MU,2,222,201912,970 -BG,MU,2,274,201912,444 -BG,MU,2,281,201912,11889 -BG,MU,2,282,201912,1121 -BG,MX,1,072,201912,7531797 -BG,MX,1,089,201912,14999 -BG,MX,1,110,201912,96625 -BG,MX,1,132,201912,2503 -BG,MX,1,201,201912,34125 -BG,MX,1,265,201912,7825 -BG,MX,1,271,201912,3055 -BG,MX,1,273,201912,5154 -BG,MX,2,011,201912,145691 -BG,MX,2,107,201912,623094 -BG,MX,2,109,201912,89882 -BG,MX,2,131,201912,48298 -BG,MX,2,172,201912,78607 -BG,MX,2,204,201912,96587 -BG,MX,2,221,201912,229 -BG,MX,2,222,201912,100962 -BG,MX,2,232,201912,81908 -BG,MX,2,257,201912,170345 -BG,MX,2,259,201912,43288 -BG,MX,2,261,201912,258128 -BG,MX,2,265,201912,1223 -BG,MX,2,266,201912,52411 -BG,MX,2,271,201912,141442 -BG,MX,2,272,201912,61733 -BG,MX,2,273,201912,45010 -BG,MX,2,279,201912,266755 -BG,MX,2,281,201912,111634 -BG,MX,2,282,201912,12885 -BG,MX,2,289,201912,124993 -BG,MX,2,293,201912,117633 -BG,MX,2,309,201912,2453 -BG,MX,2,310,201912,326479 -BG,MX,2,323,201912,66371 -BG,MX,2,324,201912,607740 -BG,MX,2,325,201912,95000 -BG,MY,1,104,201912,685734 -BG,MY,1,141,201912,54647 -BG,MY,1,171,201912,10638 -BG,MY,1,201,201912,180444 -BG,MY,1,204,201912,122033 -BG,MY,1,221,201912,228435 -BG,MY,1,222,201912,34690 -BG,MY,1,231,201912,11076 -BG,MY,1,259,201912,3147 -BG,MY,1,261,201912,1771340 -BG,MY,1,264,201912,19986 -BG,MY,1,265,201912,947819 -BG,MY,1,271,201912,6908 -BG,MY,1,273,201912,16451 -BG,MY,1,274,201912,268 -BG,MY,1,281,201912,3279 -BG,MY,1,282,201912,171026 -BG,MY,1,289,201912,60257 -BG,MY,1,310,201912,21589 -BG,MY,1,325,201912,93409 -BG,MY,2,011,201912,22781 -BG,MY,2,109,201912,70301 -BG,MY,2,141,201912,7851 -BG,MY,2,143,201912,2846 -BG,MY,2,201,201912,277951 -BG,MY,2,204,201912,2015 -BG,MY,2,205,201912,1589 -BG,MY,2,212,201912,2106 -BG,MY,2,231,201912,1692 -BG,MY,2,261,201912,165507 -BG,MY,2,262,201912,2268 -BG,MY,2,265,201912,15642 -BG,MY,2,267,201912,11543 -BG,MY,2,279,201912,9260 -BG,MY,2,281,201912,5735 -BG,MY,2,282,201912,54527 -BG,MY,2,289,201912,2778 -BG,MY,2,325,201912,89179 -BG,NC,2,233,201912,6575 -BG,NG,1,131,201912,148533 -BG,NG,1,201,201912,32377 -BG,NG,2,110,201912,10947 -BG,NG,2,262,201912,3433 -BG,NG,2,266,201912,3493 -BG,NG,2,271,201912,707 -BG,NG,2,272,201912,184850 -BG,NG,2,274,201912,3932 -BG,NG,2,281,201912,24741 -BG,NG,2,282,201912,461856 -BG,NG,2,325,201912,9420 -BG,NI,1,103,201912,201324 -BG,NI,1,120,201912,20522 -BG,NL,1,011,201912,1905404 -BG,NL,1,012,201912,803632 -BG,NL,1,013,201912,232978 -BG,NL,1,014,201912,366943 -BG,NL,1,023,201912,6646 -BG,NL,1,030,201912,5924 -BG,NL,1,072,201912,18322 -BG,NL,1,081,201912,10580 -BG,NL,1,089,201912,1092 -BG,NL,1,101,201912,3410138 -BG,NL,1,102,201912,987329 -BG,NL,1,103,201912,546059 -BG,NL,1,104,201912,432646 -BG,NL,1,105,201912,1935262 -BG,NL,1,106,201912,503156 -BG,NL,1,107,201912,126436 -BG,NL,1,108,201912,3040455 -BG,NL,1,109,201912,434122 -BG,NL,1,110,201912,2329266 -BG,NL,1,120,201912,97754 -BG,NL,1,132,201912,83657 -BG,NL,1,139,201912,380430 -BG,NL,1,141,201912,925185 -BG,NL,1,143,201912,136341 -BG,NL,1,151,201912,187025 -BG,NL,1,152,201912,321773 -BG,NL,1,161,201912,1958 -BG,NL,1,162,201912,52916 -BG,NL,1,171,201912,29840 -BG,NL,1,172,201912,240868 -BG,NL,1,192,201912,690647 -BG,NL,1,201,201912,3407439 -BG,NL,1,202,201912,3625 -BG,NL,1,203,201912,379798 -BG,NL,1,204,201912,1176457 -BG,NL,1,205,201912,1466407 -BG,NL,1,206,201912,11300 -BG,NL,1,211,201912,157768 -BG,NL,1,212,201912,7498719 -BG,NL,1,221,201912,711900 -BG,NL,1,222,201912,637860 -BG,NL,1,231,201912,30175 -BG,NL,1,232,201912,22758 -BG,NL,1,234,201912,34154 -BG,NL,1,239,201912,37883 -BG,NL,1,241,201912,474457 -BG,NL,1,242,201912,198824 -BG,NL,1,243,201912,181799 -BG,NL,1,244,201912,183413 -BG,NL,1,245,201912,493 -BG,NL,1,251,201912,646102 -BG,NL,1,252,201912,2309 -BG,NL,1,257,201912,436858 -BG,NL,1,259,201912,363273 -BG,NL,1,261,201912,2127949 -BG,NL,1,262,201912,4542148 -BG,NL,1,263,201912,8283521 -BG,NL,1,264,201912,2515616 -BG,NL,1,265,201912,1760855 -BG,NL,1,266,201912,339381 -BG,NL,1,267,201912,474366 -BG,NL,1,268,201912,5215 -BG,NL,1,271,201912,705903 -BG,NL,1,272,201912,216417 -BG,NL,1,273,201912,662733 -BG,NL,1,274,201912,114466 -BG,NL,1,275,201912,151427 -BG,NL,1,279,201912,1254741 -BG,NL,1,281,201912,719607 -BG,NL,1,282,201912,3472075 -BG,NL,1,283,201912,373310 -BG,NL,1,284,201912,95212 -BG,NL,1,289,201912,3318854 -BG,NL,1,291,201912,5164483 -BG,NL,1,292,201912,83441 -BG,NL,1,293,201912,487752 -BG,NL,1,303,201912,197824 -BG,NL,1,309,201912,274225 -BG,NL,1,310,201912,164620 -BG,NL,1,321,201912,32284 -BG,NL,1,323,201912,17683 -BG,NL,1,324,201912,1642360 -BG,NL,1,325,201912,1956902 -BG,NL,1,329,201912,76155 -BG,NL,2,011,201912,10624822 -BG,NL,2,012,201912,45260 -BG,NL,2,013,201912,219786 -BG,NL,2,014,201912,15442 -BG,NL,2,023,201912,12757 -BG,NL,2,030,201912,306 -BG,NL,2,062,201912,690302 -BG,NL,2,081,201912,360565 -BG,NL,2,089,201912,13464 -BG,NL,2,101,201912,412142 -BG,NL,2,102,201912,57175 -BG,NL,2,103,201912,377861 -BG,NL,2,104,201912,347700 -BG,NL,2,105,201912,28392 -BG,NL,2,106,201912,345653 -BG,NL,2,107,201912,998372 -BG,NL,2,108,201912,662882 -BG,NL,2,109,201912,559619 -BG,NL,2,110,201912,282850 -BG,NL,2,120,201912,58133 -BG,NL,2,131,201912,64787 -BG,NL,2,132,201912,25608 -BG,NL,2,139,201912,624756 -BG,NL,2,141,201912,2431156 -BG,NL,2,143,201912,97537 -BG,NL,2,14M,201912,170832 -BG,NL,2,151,201912,88692 -BG,NL,2,152,201912,8918 -BG,NL,2,161,201912,23961 -BG,NL,2,162,201912,70572 -BG,NL,2,171,201912,54695 -BG,NL,2,172,201912,271394 -BG,NL,2,192,201912,125443 -BG,NL,2,201,201912,590591 -BG,NL,2,204,201912,470070 -BG,NL,2,205,201912,2123511 -BG,NL,2,211,201912,223066 -BG,NL,2,212,201912,3694665 -BG,NL,2,221,201912,316638 -BG,NL,2,222,201912,1881247 -BG,NL,2,231,201912,666340 -BG,NL,2,233,201912,7075 -BG,NL,2,234,201912,187670 -BG,NL,2,236,201912,77783 -BG,NL,2,241,201912,140426 -BG,NL,2,242,201912,166430 -BG,NL,2,243,201912,73666 -BG,NL,2,244,201912,660868 -BG,NL,2,251,201912,471608 -BG,NL,2,257,201912,186120 -BG,NL,2,259,201912,158102 -BG,NL,2,261,201912,22117 -BG,NL,2,262,201912,424241 -BG,NL,2,263,201912,1023825 -BG,NL,2,264,201912,50400 -BG,NL,2,265,201912,356520 -BG,NL,2,267,201912,38947 -BG,NL,2,268,201912,3402 -BG,NL,2,271,201912,1028956 -BG,NL,2,272,201912,508441 -BG,NL,2,273,201912,171451 -BG,NL,2,274,201912,100323 -BG,NL,2,275,201912,805916 -BG,NL,2,279,201912,63708 -BG,NL,2,281,201912,386320 -BG,NL,2,282,201912,340267 -BG,NL,2,283,201912,199262 -BG,NL,2,284,201912,22139 -BG,NL,2,289,201912,615020 -BG,NL,2,291,201912,861651 -BG,NL,2,293,201912,137711 -BG,NL,2,301,201912,66400 -BG,NL,2,309,201912,457634 -BG,NL,2,310,201912,1502080 -BG,NL,2,321,201912,197272 -BG,NL,2,323,201912,12324 -BG,NL,2,324,201912,58368 -BG,NL,2,325,201912,127113 -BG,NL,2,329,201912,50326 -BG,NO,1,102,201912,588218 -BG,NO,1,141,201912,456210 -BG,NO,1,171,201912,35622 -BG,NO,1,201,201912,314276 -BG,NO,1,204,201912,2368 -BG,NO,1,222,201912,26639 -BG,NO,1,257,201912,30498 -BG,NO,1,259,201912,14996 -BG,NO,1,261,201912,21027 -BG,NO,1,262,201912,4101 -BG,NO,1,263,201912,8641 -BG,NO,1,264,201912,563 -BG,NO,1,265,201912,5767 -BG,NO,1,271,201912,14835 -BG,NO,1,273,201912,322 -BG,NO,1,283,201912,61208 -BG,NO,1,289,201912,943 -BG,NO,1,291,201912,40237 -BG,NO,1,292,201912,3518 -BG,NO,1,293,201912,23792 -BG,NO,1,329,201912,5713 -BG,NO,2,011,201912,549190 -BG,NO,2,103,201912,30498 -BG,NO,2,108,201912,12190 -BG,NO,2,109,201912,85469 -BG,NO,2,131,201912,88003 -BG,NO,2,139,201912,3992 -BG,NO,2,141,201912,35680 -BG,NO,2,143,201912,3232 -BG,NO,2,151,201912,2638 -BG,NO,2,162,201912,802 -BG,NO,2,172,201912,14134 -BG,NO,2,204,201912,41611 -BG,NO,2,212,201912,52853 -BG,NO,2,222,201912,44739 -BG,NO,2,244,201912,43288 -BG,NO,2,251,201912,10541 -BG,NO,2,259,201912,32556 -BG,NO,2,263,201912,12452 -BG,NO,2,265,201912,25862 -BG,NO,2,267,201912,590 -BG,NO,2,271,201912,501361 -BG,NO,2,273,201912,5405 -BG,NO,2,274,201912,735 -BG,NO,2,279,201912,7116 -BG,NO,2,281,201912,208385 -BG,NO,2,282,201912,17545 -BG,NO,2,293,201912,82223 -BG,NO,2,310,201912,84027 -BG,NO,2,323,201912,24650 -BG,NO,2,329,201912,2271 -BG,NZ,1,014,201912,1519604 -BG,NZ,1,101,201912,411520 -BG,NZ,1,102,201912,46359 -BG,NZ,1,110,201912,167707 -BG,NZ,1,265,201912,57689 -BG,NZ,2,011,201912,46428 -BG,NZ,2,101,201912,538 -BG,NZ,2,105,201912,94064 -BG,NZ,2,108,201912,24992 -BG,NZ,2,109,201912,39000 -BG,NZ,2,141,201912,3743 -BG,NZ,2,162,201912,219 -BG,NZ,2,203,201912,4217 -BG,NZ,2,281,201912,48824 -BG,NZ,2,323,201912,9067 -BG,OM,1,265,201912,3853 -BG,OM,1,271,201912,323 -BG,OM,2,105,201912,37121 -BG,OM,2,171,201912,253848 -BG,OM,2,204,201912,42906 -BG,OM,2,234,201912,21613 -BG,OM,2,263,201912,27304 -BG,OM,2,271,201912,37021 -BG,OM,2,274,201912,15651 -BG,OM,2,279,201912,335 -BG,OM,2,281,201912,22254 -BG,PA,2,011,201912,10742 -BG,PA,2,107,201912,24981 -BG,PA,2,110,201912,809 -BG,PA,2,120,201912,63752 -BG,PA,2,264,201912,1106 -BG,PA,2,289,201912,6694 -BG,PA,2,325,201912,20906 -BG,PE,1,012,201912,717781 -BG,PE,1,131,201912,18099 -BG,PE,1,201,201912,6295 -BG,PE,2,109,201912,32281 -BG,PE,2,141,201912,8598 -BG,PE,2,201,201912,54441 -BG,PE,2,204,201912,1350 -BG,PE,2,265,201912,276 -BG,PE,2,266,201912,20016 -BG,PE,2,271,201912,62641 -BG,PE,2,279,201912,9392 -BG,PE,2,309,201912,20036 -BG,PE,2,324,201912,10502 -BG,PE,2,325,201912,268389 -BG,PG,1,072,201912,6837959 -BG,PH,1,102,201912,3801 -BG,PH,1,108,201912,10999 -BG,PH,1,205,201912,21100 -BG,PH,1,261,201912,3577926 -BG,PH,1,271,201912,5343 -BG,PH,1,281,201912,11217 -BG,PH,1,282,201912,44893 -BG,PH,1,289,201912,1483 -BG,PH,1,309,201912,64236 -BG,PH,2,108,201912,5219 -BG,PH,2,141,201912,7308 -BG,PH,2,143,201912,4719 -BG,PH,2,201,201912,16088 -BG,PH,2,204,201912,2898 -BG,PH,2,261,201912,634158 -BG,PH,2,262,201912,1980 -BG,PH,2,265,201912,632 -BG,PH,2,266,201912,47357 -BG,PH,2,271,201912,36633 -BG,PH,2,273,201912,1902 -BG,PH,2,309,201912,6660 -BG,PH,2,325,201912,104811 -BG,PK,1,089,201912,13987 -BG,PK,1,106,201912,303916 -BG,PK,1,108,201912,23160 -BG,PK,1,131,201912,132203 -BG,PK,1,132,201912,709792 -BG,PK,1,139,201912,917023 -BG,PK,1,141,201912,222479 -BG,PK,1,239,201912,32867 -BG,PK,1,257,201912,7677 -BG,PK,1,274,201912,2136 -BG,PK,1,323,201912,4114 -BG,PK,1,325,201912,11514 -BG,PK,1,329,201912,64582 -BG,PK,2,011,201912,343922 -BG,PK,2,109,201912,14000 -BG,PK,2,141,201912,119660 -BG,PK,2,325,201912,5854 -BG,PL,1,011,201912,758191 -BG,PL,1,012,201912,446835 -BG,PL,1,014,201912,180610 -BG,PL,1,089,201912,10964 -BG,PL,1,101,201912,7721143 -BG,PL,1,102,201912,258062 -BG,PL,1,103,201912,1455801 -BG,PL,1,104,201912,141417 -BG,PL,1,105,201912,3666889 -BG,PL,1,106,201912,313139 -BG,PL,1,107,201912,1586222 -BG,PL,1,108,201912,3067240 -BG,PL,1,109,201912,1092801 -BG,PL,1,10M,201912,315635 -BG,PL,1,110,201912,333671 -BG,PL,1,120,201912,2614852 -BG,PL,1,131,201912,29811 -BG,PL,1,132,201912,894876 -BG,PL,1,139,201912,1866709 -BG,PL,1,141,201912,2490196 -BG,PL,1,143,201912,983959 -BG,PL,1,151,201912,781805 -BG,PL,1,152,201912,3916052 -BG,PL,1,162,201912,960047 -BG,PL,1,171,201912,1016739 -BG,PL,1,172,201912,1006587 -BG,PL,1,192,201912,363219 -BG,PL,1,201,201912,1346922 -BG,PL,1,202,201912,384 -BG,PL,1,203,201912,619969 -BG,PL,1,204,201912,1253513 -BG,PL,1,205,201912,5097140 -BG,PL,1,206,201912,62765 -BG,PL,1,20M,201912,176385 -BG,PL,1,211,201912,98668 -BG,PL,1,212,201912,3612930 -BG,PL,1,221,201912,1773859 -BG,PL,1,222,201912,2933881 -BG,PL,1,231,201912,498016 -BG,PL,1,232,201912,7111 -BG,PL,1,233,201912,266719 -BG,PL,1,234,201912,186241 -BG,PL,1,236,201912,74196 -BG,PL,1,237,201912,1615 -BG,PL,1,239,201912,140373 -BG,PL,1,241,201912,2248137 -BG,PL,1,242,201912,172335 -BG,PL,1,243,201912,64409 -BG,PL,1,244,201912,951166 -BG,PL,1,245,201912,1586 -BG,PL,1,251,201912,252707 -BG,PL,1,252,201912,86330 -BG,PL,1,257,201912,484089 -BG,PL,1,259,201912,1433254 -BG,PL,1,261,201912,77533 -BG,PL,1,262,201912,1523565 -BG,PL,1,263,201912,869058 -BG,PL,1,264,201912,336442 -BG,PL,1,265,201912,464504 -BG,PL,1,266,201912,126941 -BG,PL,1,267,201912,112891 -BG,PL,1,268,201912,5501 -BG,PL,1,271,201912,731075 -BG,PL,1,272,201912,456246 -BG,PL,1,273,201912,355602 -BG,PL,1,274,201912,921881 -BG,PL,1,275,201912,1879024 -BG,PL,1,279,201912,420211 -BG,PL,1,281,201912,1401576 -BG,PL,1,282,201912,1728379 -BG,PL,1,283,201912,822022 -BG,PL,1,284,201912,310248 -BG,PL,1,289,201912,672470 -BG,PL,1,291,201912,417020 -BG,PL,1,292,201912,475450 -BG,PL,1,293,201912,2108051 -BG,PL,1,302,201912,1925109 -BG,PL,1,303,201912,5615 -BG,PL,1,309,201912,119210 -BG,PL,1,310,201912,3702147 -BG,PL,1,321,201912,161802 -BG,PL,1,322,201912,5756 -BG,PL,1,323,201912,42498 -BG,PL,1,324,201912,86799 -BG,PL,1,325,201912,533052 -BG,PL,1,329,201912,233382 -BG,PL,2,011,201912,1907218 -BG,PL,2,012,201912,915891 -BG,PL,2,014,201912,340118 -BG,PL,2,030,201912,28189 -BG,PL,2,081,201912,29434 -BG,PL,2,089,201912,37183 -BG,PL,2,101,201912,2861 -BG,PL,2,103,201912,230768 -BG,PL,2,104,201912,295658 -BG,PL,2,105,201912,8855 -BG,PL,2,106,201912,375192 -BG,PL,2,107,201912,660585 -BG,PL,2,108,201912,2675573 -BG,PL,2,109,201912,673985 -BG,PL,2,110,201912,1586116 -BG,PL,2,131,201912,164616 -BG,PL,2,132,201912,203741 -BG,PL,2,139,201912,426944 -BG,PL,2,141,201912,1044737 -BG,PL,2,143,201912,458717 -BG,PL,2,151,201912,176088 -BG,PL,2,152,201912,1021565 -BG,PL,2,162,201912,10163 -BG,PL,2,171,201912,480166 -BG,PL,2,172,201912,518525 -BG,PL,2,192,201912,7438 -BG,PL,2,201,201912,1132135 -BG,PL,2,204,201912,1052332 -BG,PL,2,205,201912,86145 -BG,PL,2,206,201912,42279 -BG,PL,2,212,201912,760107 -BG,PL,2,221,201912,1280914 -BG,PL,2,222,201912,1051125 -BG,PL,2,231,201912,524608 -BG,PL,2,233,201912,265894 -BG,PL,2,234,201912,505622 -BG,PL,2,239,201912,25910 -BG,PL,2,241,201912,711457 -BG,PL,2,242,201912,564762 -BG,PL,2,243,201912,46926 -BG,PL,2,244,201912,4651015 -BG,PL,2,245,201912,60019 -BG,PL,2,251,201912,56050 -BG,PL,2,257,201912,377780 -BG,PL,2,259,201912,391659 -BG,PL,2,261,201912,345818 -BG,PL,2,262,201912,1139906 -BG,PL,2,263,201912,2117924 -BG,PL,2,264,201912,147079 -BG,PL,2,265,201912,404208 -BG,PL,2,266,201912,199165 -BG,PL,2,267,201912,172456 -BG,PL,2,271,201912,1420655 -BG,PL,2,272,201912,547306 -BG,PL,2,273,201912,305872 -BG,PL,2,274,201912,28150 -BG,PL,2,275,201912,754152 -BG,PL,2,279,201912,1023291 -BG,PL,2,281,201912,2024968 -BG,PL,2,282,201912,1237756 -BG,PL,2,284,201912,163131 -BG,PL,2,289,201912,95298 -BG,PL,2,291,201912,96472 -BG,PL,2,293,201912,747843 -BG,PL,2,302,201912,1809303 -BG,PL,2,309,201912,61786 -BG,PL,2,310,201912,1242320 -BG,PL,2,321,201912,167583 -BG,PL,2,323,201912,7945 -BG,PL,2,324,201912,200011 -BG,PL,2,325,201912,583594 -BG,PL,2,329,201912,3373 -BG,PT,1,101,201912,292030 -BG,PT,1,103,201912,160135 -BG,PT,1,105,201912,165585 -BG,PT,1,107,201912,21254 -BG,PT,1,108,201912,84777 -BG,PT,1,110,201912,25689 -BG,PT,1,131,201912,19658 -BG,PT,1,132,201912,149612 -BG,PT,1,139,201912,100126 -BG,PT,1,141,201912,2523 -BG,PT,1,143,201912,22554 -BG,PT,1,151,201912,35630 -BG,PT,1,152,201912,1130974 -BG,PT,1,162,201912,134364 -BG,PT,1,171,201912,184855 -BG,PT,1,172,201912,8223 -BG,PT,1,201,201912,41003 -BG,PT,1,205,201912,6146 -BG,PT,1,212,201912,222372 -BG,PT,1,221,201912,13867 -BG,PT,1,222,201912,270185 -BG,PT,1,231,201912,23777 -BG,PT,1,234,201912,33709 -BG,PT,1,251,201912,9846 -BG,PT,1,257,201912,123124 -BG,PT,1,259,201912,156118 -BG,PT,1,262,201912,448 -BG,PT,1,271,201912,294268 -BG,PT,1,272,201912,594 -BG,PT,1,273,201912,81134 -BG,PT,1,275,201912,186826 -BG,PT,1,279,201912,50896 -BG,PT,1,281,201912,56001 -BG,PT,1,282,201912,75282 -BG,PT,1,289,201912,1272533 -BG,PT,1,293,201912,141597 -BG,PT,1,309,201912,4528 -BG,PT,1,310,201912,27418 -BG,PT,1,325,201912,6745 -BG,PT,1,329,201912,10774 -BG,PT,2,011,201912,2577 -BG,PT,2,103,201912,4645 -BG,PT,2,105,201912,73918 -BG,PT,2,106,201912,15241 -BG,PT,2,107,201912,12157 -BG,PT,2,108,201912,214150 -BG,PT,2,131,201912,86294 -BG,PT,2,132,201912,44411 -BG,PT,2,139,201912,7195 -BG,PT,2,141,201912,61429 -BG,PT,2,162,201912,83370 -BG,PT,2,171,201912,47604 -BG,PT,2,172,201912,6169 -BG,PT,2,192,201912,3349 -BG,PT,2,201,201912,1395 -BG,PT,2,204,201912,3230 -BG,PT,2,205,201912,8613 -BG,PT,2,206,201912,88446 -BG,PT,2,212,201912,58413 -BG,PT,2,221,201912,194234 -BG,PT,2,222,201912,187874 -BG,PT,2,231,201912,60747 -BG,PT,2,239,201912,2336 -BG,PT,2,242,201912,4244 -BG,PT,2,244,201912,317876 -BG,PT,2,257,201912,44546 -BG,PT,2,261,201912,3657 -BG,PT,2,262,201912,4663 -BG,PT,2,263,201912,157006 -BG,PT,2,265,201912,72959 -BG,PT,2,266,201912,10280 -BG,PT,2,271,201912,821842 -BG,PT,2,272,201912,188086 -BG,PT,2,273,201912,19396 -BG,PT,2,274,201912,165953 -BG,PT,2,275,201912,221622 -BG,PT,2,279,201912,98813 -BG,PT,2,281,201912,65062 -BG,PT,2,282,201912,48832 -BG,PT,2,284,201912,55983 -BG,PT,2,289,201912,290 -BG,PT,2,293,201912,40288 -BG,PT,2,309,201912,695 -BG,PT,2,310,201912,424 -BG,PT,2,321,201912,42097 -BG,PT,2,323,201912,4564 -BG,PT,2,325,201912,156158 -BG,PT,2,329,201912,3491 -BG,PY,1,011,201912,63759 -BG,QA,1,201,201912,237361 -BG,QA,1,271,201912,918 -BG,QA,2,011,201912,31120 -BG,QA,2,101,201912,71085 -BG,QA,2,107,201912,3635 -BG,QA,2,108,201912,11086 -BG,QA,2,139,201912,66207 -BG,QA,2,141,201912,2753 -BG,QA,2,204,201912,21606 -BG,QA,2,222,201912,415118 -BG,QA,2,234,201912,73050 -BG,QA,2,257,201912,897 -BG,QA,2,259,201912,19203 -BG,QA,2,263,201912,19207 -BG,QA,2,271,201912,76927 -BG,QA,2,273,201912,859 -BG,QA,2,279,201912,17223 -BG,QA,2,281,201912,89439 -BG,QA,2,282,201912,49340 -BG,QA,2,310,201912,39146 -BG,QR,2,110,201912,951 -BG,QR,2,192,201912,9009386 -BG,QR,2,281,201912,9400 -BG,QS,2,110,201912,1266 -BG,QS,2,120,201912,35202 -BG,QS,2,192,201912,2195826 -BG,QS,2,203,201912,4780 -BG,QS,2,204,201912,264 -BG,QV,1,201,201912,42872 -BG,QV,1,25S,201912,3561990 -BG,QV,1,325,201912,9840 -BG,QV,2,25S,201912,4264966 -BG,QW,1,25S,201912,2996583 -BG,QW,2,103,201912,1189 -BG,QW,2,107,201912,1454 -BG,QW,2,108,201912,30202 -BG,QW,2,110,201912,27092 -BG,QW,2,120,201912,46088 -BG,QW,2,139,201912,471 -BG,QW,2,141,201912,632 -BG,QW,2,151,201912,1682 -BG,QW,2,204,201912,113649 -BG,QW,2,25S,201912,26699846 -BG,QW,2,265,201912,769 -BG,QW,2,321,201912,2009 -BG,QW,2,324,201912,7880 -BG,QW,2,325,201912,490 -BG,RO,1,011,201912,16951020 -BG,RO,1,012,201912,91378 -BG,RO,1,014,201912,1569691 -BG,RO,1,030,201912,26703 -BG,RO,1,081,201912,8545 -BG,RO,1,089,201912,51280 -BG,RO,1,101,201912,2423179 -BG,RO,1,102,201912,242543 -BG,RO,1,103,201912,2070255 -BG,RO,1,104,201912,4407056 -BG,RO,1,105,201912,472663 -BG,RO,1,106,201912,448849 -BG,RO,1,107,201912,2507009 -BG,RO,1,108,201912,6566640 -BG,RO,1,109,201912,151458 -BG,RO,1,110,201912,1530112 -BG,RO,1,120,201912,2547852 -BG,RO,1,131,201912,198333 -BG,RO,1,132,201912,305553 -BG,RO,1,139,201912,594274 -BG,RO,1,141,201912,2256436 -BG,RO,1,142,201912,306 -BG,RO,1,143,201912,251755 -BG,RO,1,151,201912,214167 -BG,RO,1,152,201912,1168729 -BG,RO,1,161,201912,156825 -BG,RO,1,162,201912,2750284 -BG,RO,1,171,201912,2201756 -BG,RO,1,172,201912,2209749 -BG,RO,1,17M,201912,798165 -BG,RO,1,181,201912,37934 -BG,RO,1,192,201912,36085460 -BG,RO,1,201,201912,7483384 -BG,RO,1,202,201912,22257 -BG,RO,1,203,201912,378433 -BG,RO,1,204,201912,4178569 -BG,RO,1,205,201912,823746 -BG,RO,1,206,201912,264577 -BG,RO,1,211,201912,2660 -BG,RO,1,212,201912,3867300 -BG,RO,1,221,201912,1717080 -BG,RO,1,222,201912,2728903 -BG,RO,1,231,201912,938978 -BG,RO,1,232,201912,9921 -BG,RO,1,233,201912,163378 -BG,RO,1,234,201912,141768 -BG,RO,1,235,201912,77722 -BG,RO,1,236,201912,311757 -BG,RO,1,239,201912,419383 -BG,RO,1,23M,201912,213518 -BG,RO,1,241,201912,11269856 -BG,RO,1,242,201912,993476 -BG,RO,1,243,201912,997291 -BG,RO,1,244,201912,2214706 -BG,RO,1,245,201912,5137 -BG,RO,1,251,201912,264109 -BG,RO,1,252,201912,139527 -BG,RO,1,257,201912,634533 -BG,RO,1,259,201912,772149 -BG,RO,1,261,201912,12253 -BG,RO,1,262,201912,1694712 -BG,RO,1,263,201912,2015532 -BG,RO,1,264,201912,2638359 -BG,RO,1,265,201912,695403 -BG,RO,1,266,201912,30661 -BG,RO,1,267,201912,96382 -BG,RO,1,271,201912,357971 -BG,RO,1,272,201912,546977 -BG,RO,1,273,201912,1140562 -BG,RO,1,274,201912,581635 -BG,RO,1,275,201912,3802337 -BG,RO,1,279,201912,1336344 -BG,RO,1,281,201912,1517866 -BG,RO,1,282,201912,1490113 -BG,RO,1,283,201912,1692175 -BG,RO,1,284,201912,493007 -BG,RO,1,289,201912,1061692 -BG,RO,1,291,201912,1947818 -BG,RO,1,292,201912,84982 -BG,RO,1,293,201912,2091407 -BG,RO,1,302,201912,1053885 -BG,RO,1,303,201912,1745 -BG,RO,1,309,201912,103961 -BG,RO,1,310,201912,726628 -BG,RO,1,321,201912,115123 -BG,RO,1,322,201912,1885 -BG,RO,1,323,201912,375069 -BG,RO,1,324,201912,264077 -BG,RO,1,325,201912,460553 -BG,RO,1,329,201912,211579 -BG,RO,1,351,201912,2087524 -BG,RO,2,011,201912,10024104 -BG,RO,2,012,201912,851987 -BG,RO,2,014,201912,765896 -BG,RO,2,022,201912,58319 -BG,RO,2,030,201912,545006 -BG,RO,2,072,201912,94865 -BG,RO,2,081,201912,1010160 -BG,RO,2,089,201912,267972 -BG,RO,2,101,201912,1369375 -BG,RO,2,102,201912,610103 -BG,RO,2,103,201912,1816872 -BG,RO,2,104,201912,1412305 -BG,RO,2,105,201912,905462 -BG,RO,2,106,201912,3368672 -BG,RO,2,107,201912,2985790 -BG,RO,2,108,201912,6689073 -BG,RO,2,109,201912,3597304 -BG,RO,2,10M,201912,372263 -BG,RO,2,110,201912,1676561 -BG,RO,2,120,201912,702066 -BG,RO,2,131,201912,468733 -BG,RO,2,132,201912,251500 -BG,RO,2,139,201912,2740208 -BG,RO,2,141,201912,3521132 -BG,RO,2,143,201912,115736 -BG,RO,2,14M,201912,163183 -BG,RO,2,151,201912,221390 -BG,RO,2,152,201912,1054259 -BG,RO,2,161,201912,51815 -BG,RO,2,162,201912,557803 -BG,RO,2,171,201912,1337383 -BG,RO,2,172,201912,1645842 -BG,RO,2,17M,201912,117288 -BG,RO,2,192,201912,949985 -BG,RO,2,201,201912,8385601 -BG,RO,2,202,201912,38899 -BG,RO,2,203,201912,532428 -BG,RO,2,204,201912,3530504 -BG,RO,2,205,201912,4636777 -BG,RO,2,206,201912,325484 -BG,RO,2,20M,201912,209078 -BG,RO,2,211,201912,51157 -BG,RO,2,212,201912,7757545 -BG,RO,2,221,201912,1975323 -BG,RO,2,222,201912,5494745 -BG,RO,2,231,201912,3939041 -BG,RO,2,233,201912,1796443 -BG,RO,2,234,201912,380308 -BG,RO,2,235,201912,443876 -BG,RO,2,236,201912,913027 -BG,RO,2,237,201912,69155 -BG,RO,2,239,201912,322283 -BG,RO,2,23M,201912,96890 -BG,RO,2,241,201912,7398666 -BG,RO,2,242,201912,1355929 -BG,RO,2,243,201912,973736 -BG,RO,2,244,201912,2827291 -BG,RO,2,251,201912,449201 -BG,RO,2,252,201912,168758 -BG,RO,2,253,201912,31978 -BG,RO,2,257,201912,706266 -BG,RO,2,259,201912,1708477 -BG,RO,2,25M,201912,101990 -BG,RO,2,261,201912,1034013 -BG,RO,2,262,201912,818898 -BG,RO,2,263,201912,838786 -BG,RO,2,264,201912,2212037 -BG,RO,2,265,201912,585635 -BG,RO,2,266,201912,175508 -BG,RO,2,267,201912,372795 -BG,RO,2,271,201912,638602 -BG,RO,2,272,201912,729585 -BG,RO,2,273,201912,862138 -BG,RO,2,274,201912,580110 -BG,RO,2,275,201912,2867006 -BG,RO,2,279,201912,638551 -BG,RO,2,281,201912,2705426 -BG,RO,2,282,201912,3055607 -BG,RO,2,283,201912,19136613 -BG,RO,2,284,201912,1519027 -BG,RO,2,289,201912,1914857 -BG,RO,2,291,201912,2859783 -BG,RO,2,292,201912,70299 -BG,RO,2,293,201912,1565929 -BG,RO,2,302,201912,1510811 -BG,RO,2,309,201912,715497 -BG,RO,2,310,201912,4736180 -BG,RO,2,321,201912,119795 -BG,RO,2,322,201912,1798 -BG,RO,2,323,201912,61729 -BG,RO,2,324,201912,8472881 -BG,RO,2,325,201912,718239 -BG,RO,2,329,201912,659121 -BG,RO,2,351,201912,1632097 -BG,RU,1,011,201912,19514825 -BG,RU,1,014,201912,360721 -BG,RU,1,051,201912,8296486 -BG,RU,1,061,201912,137679529 -BG,RU,1,062,201912,28317531 -BG,RU,1,102,201912,120361 -BG,RU,1,103,201912,30899 -BG,RU,1,104,201912,947 -BG,RU,1,106,201912,1058 -BG,RU,1,107,201912,15074 -BG,RU,1,108,201912,196889 -BG,RU,1,110,201912,411064 -BG,RU,1,139,201912,9635 -BG,RU,1,141,201912,32293 -BG,RU,1,143,201912,2572 -BG,RU,1,151,201912,3246 -BG,RU,1,152,201912,185826 -BG,RU,1,161,201912,112343 -BG,RU,1,162,201912,568243 -BG,RU,1,171,201912,916047 -BG,RU,1,172,201912,36305 -BG,RU,1,192,201912,27823184 -BG,RU,1,201,201912,1881691 -BG,RU,1,203,201912,11025 -BG,RU,1,204,201912,41608 -BG,RU,1,205,201912,88394 -BG,RU,1,211,201912,136206 -BG,RU,1,212,201912,51511 -BG,RU,1,221,201912,735954 -BG,RU,1,222,201912,367750 -BG,RU,1,231,201912,34870 -BG,RU,1,233,201912,8771 -BG,RU,1,234,201912,2469 -BG,RU,1,236,201912,1542 -BG,RU,1,239,201912,606219 -BG,RU,1,241,201912,697005 -BG,RU,1,242,201912,62365373 -BG,RU,1,243,201912,350698 -BG,RU,1,244,201912,12563052 -BG,RU,1,251,201912,20169 -BG,RU,1,257,201912,64167 -BG,RU,1,259,201912,368830 -BG,RU,1,261,201912,3526 -BG,RU,1,263,201912,986645 -BG,RU,1,265,201912,233068 -BG,RU,1,266,201912,4269 -BG,RU,1,271,201912,166329 -BG,RU,1,273,201912,45497 -BG,RU,1,274,201912,175828 -BG,RU,1,275,201912,119285 -BG,RU,1,279,201912,89866 -BG,RU,1,281,201912,1821689 -BG,RU,1,282,201912,678855 -BG,RU,1,283,201912,7888 -BG,RU,1,284,201912,41140 -BG,RU,1,289,201912,184767 -BG,RU,1,291,201912,545453 -BG,RU,1,292,201912,27686 -BG,RU,1,293,201912,164712 -BG,RU,1,302,201912,114125 -BG,RU,1,303,201912,2074605 -BG,RU,1,310,201912,54467 -BG,RU,1,325,201912,19625 -BG,RU,1,329,201912,1732 -BG,RU,2,011,201912,440030 -BG,RU,2,014,201912,251715 -BG,RU,2,081,201912,81896 -BG,RU,2,101,201912,710 -BG,RU,2,103,201912,149454 -BG,RU,2,105,201912,1230 -BG,RU,2,106,201912,344149 -BG,RU,2,107,201912,133462 -BG,RU,2,108,201912,1255212 -BG,RU,2,109,201912,940361 -BG,RU,2,110,201912,235515 -BG,RU,2,120,201912,186205 -BG,RU,2,131,201912,133132 -BG,RU,2,132,201912,47461 -BG,RU,2,139,201912,20529 -BG,RU,2,141,201912,67807 -BG,RU,2,143,201912,10924 -BG,RU,2,151,201912,108588 -BG,RU,2,152,201912,3601 -BG,RU,2,162,201912,17593 -BG,RU,2,171,201912,361596 -BG,RU,2,172,201912,276206 -BG,RU,2,192,201912,25319 -BG,RU,2,201,201912,397172 -BG,RU,2,203,201912,59860 -BG,RU,2,204,201912,1004353 -BG,RU,2,205,201912,192307 -BG,RU,2,211,201912,196053 -BG,RU,2,212,201912,6045418 -BG,RU,2,221,201912,328016 -BG,RU,2,222,201912,351496 -BG,RU,2,231,201912,44844 -BG,RU,2,234,201912,174426 -BG,RU,2,239,201912,19281 -BG,RU,2,241,201912,237677 -BG,RU,2,242,201912,17860 -BG,RU,2,244,201912,53538 -BG,RU,2,251,201912,291091 -BG,RU,2,252,201912,106426 -BG,RU,2,257,201912,310154 -BG,RU,2,259,201912,100820 -BG,RU,2,261,201912,143700 -BG,RU,2,262,201912,34647 -BG,RU,2,263,201912,1214446 -BG,RU,2,264,201912,97636 -BG,RU,2,265,201912,309397 -BG,RU,2,266,201912,1433006 -BG,RU,2,267,201912,45160 -BG,RU,2,271,201912,654588 -BG,RU,2,272,201912,349655 -BG,RU,2,273,201912,94258 -BG,RU,2,274,201912,11428 -BG,RU,2,275,201912,1168174 -BG,RU,2,279,201912,30004 -BG,RU,2,281,201912,2213902 -BG,RU,2,282,201912,2719313 -BG,RU,2,284,201912,458980 -BG,RU,2,289,201912,976006 -BG,RU,2,293,201912,546365 -BG,RU,2,309,201912,6245 -BG,RU,2,310,201912,114729 -BG,RU,2,321,201912,264 -BG,RU,2,323,201912,9172 -BG,RU,2,324,201912,796 -BG,RU,2,325,201912,366287 -BG,RU,2,329,201912,344 -BG,SA,2,011,201912,11733 -BG,SA,2,012,201912,9690 -BG,SA,2,014,201912,52248 -BG,SA,2,081,201912,53997 -BG,SA,2,103,201912,15814 -BG,SA,2,105,201912,51208 -BG,SA,2,106,201912,59245 -BG,SA,2,107,201912,194041 -BG,SA,2,108,201912,458329 -BG,SA,2,109,201912,118800 -BG,SA,2,139,201912,11603 -BG,SA,2,171,201912,680041 -BG,SA,2,201,201912,103401 -BG,SA,2,204,201912,138117 -BG,SA,2,205,201912,3417 -BG,SA,2,221,201912,774 -BG,SA,2,222,201912,18760 -BG,SA,2,231,201912,85769 -BG,SA,2,234,201912,122559 -BG,SA,2,251,201912,14184 -BG,SA,2,257,201912,56234 -BG,SA,2,259,201912,55734 -BG,SA,2,262,201912,196978 -BG,SA,2,263,201912,53198 -BG,SA,2,265,201912,248 -BG,SA,2,271,201912,609666 -BG,SA,2,272,201912,650959 -BG,SA,2,273,201912,21394 -BG,SA,2,274,201912,25446 -BG,SA,2,279,201912,297910 -BG,SA,2,281,201912,183154 -BG,SA,2,282,201912,2169 -BG,SA,2,303,201912,8710 -BG,SA,2,310,201912,7932 -BG,SC,2,274,201912,803 -BG,SD,2,259,201912,3565 -BG,SD,2,281,201912,2189 -BG,SD,2,282,201912,266158 -BG,SE,1,030,201912,354897 -BG,SE,1,101,201912,31833 -BG,SE,1,102,201912,214039 -BG,SE,1,103,201912,13706 -BG,SE,1,104,201912,545796 -BG,SE,1,107,201912,16885 -BG,SE,1,108,201912,327192 -BG,SE,1,110,201912,2820 -BG,SE,1,139,201912,23760 -BG,SE,1,141,201912,13980 -BG,SE,1,143,201912,2165 -BG,SE,1,151,201912,255 -BG,SE,1,152,201912,900 -BG,SE,1,162,201912,11294 -BG,SE,1,171,201912,576932 -BG,SE,1,172,201912,9067 -BG,SE,1,192,201912,15246 -BG,SE,1,201,201912,308294 -BG,SE,1,202,201912,8836 -BG,SE,1,203,201912,4253 -BG,SE,1,204,201912,402648 -BG,SE,1,205,201912,54599 -BG,SE,1,211,201912,17379 -BG,SE,1,212,201912,1245614 -BG,SE,1,221,201912,170213 -BG,SE,1,222,201912,210320 -BG,SE,1,231,201912,66121 -BG,SE,1,239,201912,12113 -BG,SE,1,241,201912,551400 -BG,SE,1,242,201912,213 -BG,SE,1,243,201912,25944 -BG,SE,1,244,201912,22383 -BG,SE,1,251,201912,20873 -BG,SE,1,257,201912,105857 -BG,SE,1,259,201912,71940 -BG,SE,1,261,201912,14884 -BG,SE,1,262,201912,491434 -BG,SE,1,263,201912,24016 -BG,SE,1,264,201912,22969 -BG,SE,1,265,201912,188963 -BG,SE,1,267,201912,7894 -BG,SE,1,268,201912,6129 -BG,SE,1,271,201912,815754 -BG,SE,1,273,201912,797483 -BG,SE,1,274,201912,1083 -BG,SE,1,275,201912,18059 -BG,SE,1,279,201912,27234 -BG,SE,1,281,201912,282690 -BG,SE,1,282,201912,986757 -BG,SE,1,283,201912,94296 -BG,SE,1,289,201912,720591 -BG,SE,1,291,201912,2836510 -BG,SE,1,292,201912,1709 -BG,SE,1,293,201912,164722 -BG,SE,1,309,201912,107670 -BG,SE,1,310,201912,21290 -BG,SE,1,325,201912,27594 -BG,SE,1,329,201912,185052 -BG,SE,2,011,201912,576715 -BG,SE,2,101,201912,4137 -BG,SE,2,102,201912,1528480 -BG,SE,2,103,201912,27194 -BG,SE,2,105,201912,272622 -BG,SE,2,107,201912,197719 -BG,SE,2,108,201912,100607 -BG,SE,2,110,201912,225268 -BG,SE,2,131,201912,4333 -BG,SE,2,132,201912,18511 -BG,SE,2,139,201912,189234 -BG,SE,2,141,201912,1186017 -BG,SE,2,143,201912,165860 -BG,SE,2,151,201912,10159 -BG,SE,2,152,201912,15939 -BG,SE,2,162,201912,155194 -BG,SE,2,172,201912,115699 -BG,SE,2,204,201912,254654 -BG,SE,2,205,201912,8693 -BG,SE,2,212,201912,181630 -BG,SE,2,221,201912,1653260 -BG,SE,2,222,201912,398307 -BG,SE,2,231,201912,34013 -BG,SE,2,233,201912,37446 -BG,SE,2,239,201912,50451 -BG,SE,2,241,201912,21166 -BG,SE,2,244,201912,30056 -BG,SE,2,257,201912,334394 -BG,SE,2,259,201912,96080 -BG,SE,2,261,201912,2168 -BG,SE,2,262,201912,24941 -BG,SE,2,263,201912,31928 -BG,SE,2,264,201912,294707 -BG,SE,2,265,201912,4861 -BG,SE,2,267,201912,89678 -BG,SE,2,268,201912,1497 -BG,SE,2,271,201912,1464662 -BG,SE,2,272,201912,325969 -BG,SE,2,273,201912,246008 -BG,SE,2,274,201912,15360 -BG,SE,2,275,201912,16699 -BG,SE,2,279,201912,24497 -BG,SE,2,281,201912,1421224 -BG,SE,2,282,201912,174903 -BG,SE,2,289,201912,780235 -BG,SE,2,293,201912,84249 -BG,SE,2,310,201912,878623 -BG,SE,2,321,201912,191932 -BG,SG,1,030,201912,1160 -BG,SG,1,141,201912,889 -BG,SG,1,206,201912,56962 -BG,SG,1,222,201912,168497 -BG,SG,1,257,201912,441 -BG,SG,1,259,201912,63695 -BG,SG,1,261,201912,20074 -BG,SG,1,262,201912,345866 -BG,SG,1,265,201912,131539 -BG,SG,1,267,201912,337 -BG,SG,1,271,201912,1627 -BG,SG,1,273,201912,44880 -BG,SG,1,274,201912,3360 -BG,SG,1,279,201912,4631 -BG,SG,1,281,201912,1564 -BG,SG,1,282,201912,41703 -BG,SG,1,284,201912,918 -BG,SG,1,289,201912,3070 -BG,SG,1,303,201912,32437 -BG,SG,1,309,201912,1183907 -BG,SG,1,321,201912,1861 -BG,SG,2,141,201912,1743 -BG,SG,2,151,201912,7055 -BG,SG,2,201,201912,6645986 -BG,SG,2,204,201912,14709 -BG,SG,2,205,201912,14167 -BG,SG,2,212,201912,8424 -BG,SG,2,221,201912,10803 -BG,SG,2,231,201912,783 -BG,SG,2,261,201912,283525 -BG,SG,2,263,201912,5487 -BG,SG,2,264,201912,36035 -BG,SG,2,265,201912,22453 -BG,SG,2,271,201912,12079 -BG,SG,2,272,201912,44660 -BG,SG,2,273,201912,79376 -BG,SG,2,274,201912,6390 -BG,SG,2,279,201912,7933 -BG,SG,2,281,201912,37287 -BG,SG,2,282,201912,20089 -BG,SG,2,289,201912,86481 -BG,SG,2,293,201912,41274 -BG,SG,2,309,201912,909 -BG,SG,2,325,201912,94665 -BG,SI,1,012,201912,145215 -BG,SI,1,089,201912,443 -BG,SI,1,102,201912,44479 -BG,SI,1,105,201912,21791 -BG,SI,1,106,201912,8857 -BG,SI,1,108,201912,191507 -BG,SI,1,131,201912,34139 -BG,SI,1,139,201912,65110 -BG,SI,1,141,201912,603100 -BG,SI,1,143,201912,64007 -BG,SI,1,151,201912,100980 -BG,SI,1,152,201912,92958 -BG,SI,1,162,201912,74264 -BG,SI,1,171,201912,690646 -BG,SI,1,172,201912,67485 -BG,SI,1,17M,201912,148534 -BG,SI,1,192,201912,574438 -BG,SI,1,201,201912,221661 -BG,SI,1,202,201912,119955 -BG,SI,1,203,201912,238929 -BG,SI,1,204,201912,204640 -BG,SI,1,205,201912,173331 -BG,SI,1,206,201912,174925 -BG,SI,1,211,201912,16375 -BG,SI,1,212,201912,6074667 -BG,SI,1,221,201912,264092 -BG,SI,1,222,201912,377945 -BG,SI,1,231,201912,64467 -BG,SI,1,232,201912,9444 -BG,SI,1,233,201912,47948 -BG,SI,1,234,201912,32591 -BG,SI,1,239,201912,26565 -BG,SI,1,241,201912,297033 -BG,SI,1,242,201912,146110 -BG,SI,1,243,201912,21859 -BG,SI,1,244,201912,66329 -BG,SI,1,251,201912,35084 -BG,SI,1,257,201912,425905 -BG,SI,1,259,201912,75943 -BG,SI,1,261,201912,64828 -BG,SI,1,262,201912,3000 -BG,SI,1,263,201912,76336 -BG,SI,1,264,201912,376627 -BG,SI,1,265,201912,24987 -BG,SI,1,266,201912,8602 -BG,SI,1,267,201912,80014 -BG,SI,1,271,201912,667294 -BG,SI,1,272,201912,42076 -BG,SI,1,273,201912,51076 -BG,SI,1,274,201912,33809 -BG,SI,1,275,201912,314173 -BG,SI,1,279,201912,100670 -BG,SI,1,281,201912,217800 -BG,SI,1,282,201912,862076 -BG,SI,1,283,201912,132483 -BG,SI,1,284,201912,15296 -BG,SI,1,289,201912,263766 -BG,SI,1,291,201912,634179 -BG,SI,1,293,201912,134017 -BG,SI,1,310,201912,7766 -BG,SI,1,321,201912,15764 -BG,SI,1,323,201912,191643 -BG,SI,1,325,201912,644808 -BG,SI,1,329,201912,19846 -BG,SI,1,351,201912,1041658 -BG,SI,2,011,201912,40971 -BG,SI,2,012,201912,1579 -BG,SI,2,103,201912,21381 -BG,SI,2,107,201912,116325 -BG,SI,2,108,201912,44543 -BG,SI,2,109,201912,38781 -BG,SI,2,110,201912,20522 -BG,SI,2,120,201912,98547 -BG,SI,2,131,201912,8750 -BG,SI,2,132,201912,5654 -BG,SI,2,139,201912,28318 -BG,SI,2,141,201912,46062 -BG,SI,2,151,201912,319 -BG,SI,2,162,201912,34239 -BG,SI,2,172,201912,33477 -BG,SI,2,192,201912,1663 -BG,SI,2,201,201912,93414 -BG,SI,2,203,201912,5938 -BG,SI,2,204,201912,22382 -BG,SI,2,205,201912,778704 -BG,SI,2,212,201912,443740 -BG,SI,2,222,201912,216912 -BG,SI,2,231,201912,188824 -BG,SI,2,233,201912,2479 -BG,SI,2,234,201912,53050 -BG,SI,2,236,201912,48492 -BG,SI,2,239,201912,2437 -BG,SI,2,241,201912,123042 -BG,SI,2,242,201912,116111 -BG,SI,2,243,201912,31744 -BG,SI,2,244,201912,894331 -BG,SI,2,251,201912,913 -BG,SI,2,252,201912,222 -BG,SI,2,257,201912,18235 -BG,SI,2,259,201912,163770 -BG,SI,2,261,201912,41060 -BG,SI,2,263,201912,170592 -BG,SI,2,264,201912,575 -BG,SI,2,265,201912,2751 -BG,SI,2,267,201912,4961 -BG,SI,2,268,201912,220435 -BG,SI,2,271,201912,319806 -BG,SI,2,272,201912,141645 -BG,SI,2,273,201912,53308 -BG,SI,2,274,201912,93284 -BG,SI,2,275,201912,40617 -BG,SI,2,279,201912,13021 -BG,SI,2,281,201912,434574 -BG,SI,2,282,201912,60958 -BG,SI,2,289,201912,1135293 -BG,SI,2,291,201912,83741 -BG,SI,2,293,201912,34941 -BG,SI,2,310,201912,99053 -BG,SI,2,321,201912,16774 -BG,SI,2,323,201912,2634 -BG,SI,2,324,201912,1439445 -BG,SI,2,325,201912,32523 -BG,SI,2,351,201912,6547123 -BG,SK,1,011,201912,194130 -BG,SK,1,012,201912,453560 -BG,SK,1,014,201912,33001 -BG,SK,1,101,201912,222329 -BG,SK,1,103,201912,5148 -BG,SK,1,104,201912,61577 -BG,SK,1,105,201912,232298 -BG,SK,1,106,201912,17160 -BG,SK,1,107,201912,29367 -BG,SK,1,108,201912,1155091 -BG,SK,1,110,201912,67900 -BG,SK,1,131,201912,508 -BG,SK,1,132,201912,7371 -BG,SK,1,139,201912,37995 -BG,SK,1,141,201912,281503 -BG,SK,1,143,201912,63100 -BG,SK,1,151,201912,161960 -BG,SK,1,152,201912,84470 -BG,SK,1,162,201912,160940 -BG,SK,1,171,201912,666232 -BG,SK,1,172,201912,125439 -BG,SK,1,192,201912,2277967 -BG,SK,1,201,201912,412970 -BG,SK,1,202,201912,1667 -BG,SK,1,203,201912,25913 -BG,SK,1,204,201912,592136 -BG,SK,1,205,201912,88198 -BG,SK,1,212,201912,147090 -BG,SK,1,221,201912,72697 -BG,SK,1,222,201912,295305 -BG,SK,1,231,201912,139577 -BG,SK,1,232,201912,21068 -BG,SK,1,239,201912,236 -BG,SK,1,241,201912,599468 -BG,SK,1,242,201912,116955 -BG,SK,1,244,201912,48783 -BG,SK,1,251,201912,52213 -BG,SK,1,257,201912,73952 -BG,SK,1,259,201912,540648 -BG,SK,1,261,201912,13243 -BG,SK,1,262,201912,1401988 -BG,SK,1,263,201912,11886832 -BG,SK,1,264,201912,3011453 -BG,SK,1,265,201912,270764 -BG,SK,1,266,201912,10992 -BG,SK,1,267,201912,163888 -BG,SK,1,268,201912,2292 -BG,SK,1,271,201912,456930 -BG,SK,1,272,201912,19654 -BG,SK,1,273,201912,74998 -BG,SK,1,274,201912,97017 -BG,SK,1,275,201912,996028 -BG,SK,1,279,201912,88770 -BG,SK,1,281,201912,122171 -BG,SK,1,282,201912,467924 -BG,SK,1,284,201912,192630 -BG,SK,1,289,201912,1106625 -BG,SK,1,291,201912,68001 -BG,SK,1,292,201912,28831 -BG,SK,1,293,201912,51454 -BG,SK,1,302,201912,145243 -BG,SK,1,309,201912,16466 -BG,SK,1,310,201912,19153 -BG,SK,1,325,201912,109020 -BG,SK,1,329,201912,40056 -BG,SK,1,351,201912,540 -BG,SK,2,011,201912,61549 -BG,SK,2,012,201912,365826 -BG,SK,2,101,201912,11668 -BG,SK,2,103,201912,211590 -BG,SK,2,104,201912,18295 -BG,SK,2,105,201912,13252 -BG,SK,2,106,201912,285061 -BG,SK,2,107,201912,86356 -BG,SK,2,108,201912,640766 -BG,SK,2,110,201912,105745 -BG,SK,2,131,201912,2863 -BG,SK,2,132,201912,26114 -BG,SK,2,139,201912,31440 -BG,SK,2,141,201912,985775 -BG,SK,2,143,201912,80267 -BG,SK,2,151,201912,2977 -BG,SK,2,152,201912,65322 -BG,SK,2,162,201912,75387 -BG,SK,2,171,201912,3898 -BG,SK,2,172,201912,16624 -BG,SK,2,192,201912,6240 -BG,SK,2,204,201912,152551 -BG,SK,2,205,201912,235995 -BG,SK,2,206,201912,16282 -BG,SK,2,212,201912,313864 -BG,SK,2,221,201912,12728 -BG,SK,2,222,201912,109030 -BG,SK,2,231,201912,322562 -BG,SK,2,241,201912,633937 -BG,SK,2,242,201912,136591 -BG,SK,2,244,201912,2021663 -BG,SK,2,251,201912,37330 -BG,SK,2,257,201912,49130 -BG,SK,2,259,201912,142405 -BG,SK,2,261,201912,8662 -BG,SK,2,262,201912,35601 -BG,SK,2,263,201912,604439 -BG,SK,2,264,201912,18820 -BG,SK,2,265,201912,778182 -BG,SK,2,266,201912,4159 -BG,SK,2,267,201912,20309 -BG,SK,2,271,201912,768994 -BG,SK,2,272,201912,100181 -BG,SK,2,273,201912,21729 -BG,SK,2,274,201912,260044 -BG,SK,2,275,201912,135746 -BG,SK,2,279,201912,4611638 -BG,SK,2,281,201912,505521 -BG,SK,2,282,201912,135056 -BG,SK,2,289,201912,1737027 -BG,SK,2,293,201912,140529 -BG,SK,2,302,201912,292106 -BG,SK,2,309,201912,2595 -BG,SK,2,310,201912,91355 -BG,SK,2,321,201912,98029 -BG,SK,2,323,201912,615 -BG,SK,2,325,201912,74740 -BG,SK,2,351,201912,876916 -BG,SL,2,110,201912,217 -BG,SL,2,120,201912,2063 -BG,SM,1,282,201912,14312 -BG,SM,1,284,201912,5614 -BG,SM,1,291,201912,5675 -BG,SM,2,222,201912,65075 -BG,SR,1,324,201912,521 -BG,SV,2,279,201912,138850 -BG,SY,1,103,201912,11662 -BG,SY,1,104,201912,2961 -BG,SY,1,107,201912,550 -BG,SY,1,108,201912,1917 -BG,SY,1,139,201912,367 -BG,SY,2,120,201912,234790 -BG,SY,2,172,201912,227922 -BG,SY,2,204,201912,65682 -BG,SY,2,206,201912,5367 -BG,SY,2,222,201912,56718 -BG,SY,2,259,201912,13428 -BG,TG,2,141,201912,78848 -BG,TG,2,201,201912,36034 -BG,TH,1,023,201912,208 -BG,TH,1,106,201912,44640 -BG,TH,1,110,201912,42199 -BG,TH,1,132,201912,8331 -BG,TH,1,139,201912,13929 -BG,TH,1,141,201912,24703 -BG,TH,1,143,201912,1281 -BG,TH,1,151,201912,5340 -BG,TH,1,162,201912,1474 -BG,TH,1,171,201912,112409 -BG,TH,1,172,201912,263 -BG,TH,1,201,201912,168772 -BG,TH,1,204,201912,11417 -BG,TH,1,206,201912,291331 -BG,TH,1,221,201912,272935 -BG,TH,1,222,201912,55687 -BG,TH,1,244,201912,4761 -BG,TH,1,252,201912,1967 -BG,TH,1,257,201912,2327 -BG,TH,1,259,201912,3747 -BG,TH,1,261,201912,488928 -BG,TH,1,262,201912,9223 -BG,TH,1,265,201912,606884 -BG,TH,1,271,201912,58940 -BG,TH,1,274,201912,325 -BG,TH,1,279,201912,60121 -BG,TH,1,281,201912,662 -BG,TH,1,282,201912,394005 -BG,TH,1,309,201912,9287 -BG,TH,1,321,201912,43574 -BG,TH,1,329,201912,2529 -BG,TH,2,109,201912,266690 -BG,TH,2,141,201912,3805 -BG,TH,2,201,201912,309507 -BG,TH,2,204,201912,3227 -BG,TH,2,205,201912,5171 -BG,TH,2,211,201912,75001 -BG,TH,2,212,201912,117336 -BG,TH,2,222,201912,14171 -BG,TH,2,261,201912,1828568 -BG,TH,2,265,201912,6390 -BG,TH,2,271,201912,22620 -BG,TH,2,273,201912,2488 -BG,TH,2,281,201912,9962 -BG,TH,2,282,201912,724 -BG,TH,2,325,201912,10000 -BG,TM,1,201,201912,1770307 -BG,TN,1,012,201912,50639 -BG,TN,1,222,201912,240 -BG,TN,1,261,201912,572 -BG,TN,1,279,201912,3516 -BG,TN,2,081,201912,21456 -BG,TN,2,109,201912,46550 -BG,TN,2,139,201912,9300 -BG,TN,2,206,201912,9134 -BG,TN,2,222,201912,15215 -BG,TN,2,231,201912,282857 -BG,TN,2,244,201912,55118 -BG,TN,2,259,201912,16652 -BG,TN,2,263,201912,38260 -BG,TN,2,265,201912,9785 -BG,TN,2,271,201912,41111 -BG,TN,2,273,201912,381 -BG,TN,2,279,201912,1757 -BG,TN,2,282,201912,25246 -BG,TN,2,289,201912,9576 -BG,TN,2,325,201912,3922 -BG,TN,2,329,201912,33905 -BG,TR,1,011,201912,8075515 -BG,TR,1,012,201912,5835779 -BG,TR,1,013,201912,246377 -BG,TR,1,030,201912,252111 -BG,TR,1,072,201912,7790725 -BG,TR,1,081,201912,41115 -BG,TR,1,089,201912,700830 -BG,TR,1,101,201912,176129 -BG,TR,1,102,201912,116004 -BG,TR,1,103,201912,2297596 -BG,TR,1,104,201912,96841 -BG,TR,1,106,201912,91025 -BG,TR,1,107,201912,139336 -BG,TR,1,108,201912,900426 -BG,TR,1,109,201912,17661 -BG,TR,1,110,201912,219263 -BG,TR,1,120,201912,231633 -BG,TR,1,131,201912,1705853 -BG,TR,1,132,201912,3673629 -BG,TR,1,139,201912,6589876 -BG,TR,1,141,201912,5471456 -BG,TR,1,143,201912,1810568 -BG,TR,1,151,201912,357763 -BG,TR,1,152,201912,938962 -BG,TR,1,161,201912,90937 -BG,TR,1,162,201912,1443496 -BG,TR,1,171,201912,2320206 -BG,TR,1,172,201912,4009854 -BG,TR,1,181,201912,10460 -BG,TR,1,192,201912,592384 -BG,TR,1,201,201912,5009474 -BG,TR,1,202,201912,24931 -BG,TR,1,203,201912,661652 -BG,TR,1,204,201912,2022423 -BG,TR,1,205,201912,952780 -BG,TR,1,206,201912,830416 -BG,TR,1,211,201912,10510 -BG,TR,1,212,201912,684610 -BG,TR,1,221,201912,5321416 -BG,TR,1,222,201912,8686729 -BG,TR,1,231,201912,1683156 -BG,TR,1,232,201912,748740 -BG,TR,1,233,201912,681019 -BG,TR,1,234,201912,365128 -BG,TR,1,235,201912,1481444 -BG,TR,1,236,201912,165836 -BG,TR,1,237,201912,547776 -BG,TR,1,239,201912,210893 -BG,TR,1,241,201912,14240269 -BG,TR,1,242,201912,787162 -BG,TR,1,243,201912,1632529 -BG,TR,1,244,201912,10905379 -BG,TR,1,245,201912,19030 -BG,TR,1,251,201912,4209723 -BG,TR,1,252,201912,857788 -BG,TR,1,253,201912,218886 -BG,TR,1,257,201912,1572416 -BG,TR,1,259,201912,5598024 -BG,TR,1,261,201912,91149 -BG,TR,1,262,201912,8064 -BG,TR,1,263,201912,16095 -BG,TR,1,264,201912,1742240 -BG,TR,1,265,201912,432750 -BG,TR,1,266,201912,35707 -BG,TR,1,267,201912,6063 -BG,TR,1,271,201912,1551554 -BG,TR,1,272,201912,646557 -BG,TR,1,273,201912,4832450 -BG,TR,1,274,201912,341386 -BG,TR,1,275,201912,3635541 -BG,TR,1,279,201912,390388 -BG,TR,1,281,201912,1152796 -BG,TR,1,282,201912,3885095 -BG,TR,1,283,201912,1540471 -BG,TR,1,284,201912,1598780 -BG,TR,1,289,201912,3107746 -BG,TR,1,291,201912,12625009 -BG,TR,1,292,201912,638231 -BG,TR,1,293,201912,2479646 -BG,TR,1,301,201912,31695 -BG,TR,1,302,201912,6234 -BG,TR,1,309,201912,66706 -BG,TR,1,310,201912,2500828 -BG,TR,1,321,201912,1104655 -BG,TR,1,323,201912,47016 -BG,TR,1,324,201912,105781 -BG,TR,1,325,201912,255730 -BG,TR,1,329,201912,414418 -BG,TR,1,351,201912,1043243 -BG,TR,2,011,201912,4466525 -BG,TR,2,012,201912,10355 -BG,TR,2,013,201912,96810 -BG,TR,2,014,201912,3700088 -BG,TR,2,022,201912,29619 -BG,TR,2,023,201912,1060 -BG,TR,2,030,201912,8488 -BG,TR,2,081,201912,659355 -BG,TR,2,089,201912,95957 -BG,TR,2,101,201912,325129 -BG,TR,2,103,201912,44050 -BG,TR,2,104,201912,4435748 -BG,TR,2,106,201912,4941843 -BG,TR,2,107,201912,240621 -BG,TR,2,108,201912,4888084 -BG,TR,2,109,201912,1093332 -BG,TR,2,110,201912,772377 -BG,TR,2,120,201912,102240 -BG,TR,2,131,201912,865106 -BG,TR,2,132,201912,416287 -BG,TR,2,139,201912,2610063 -BG,TR,2,141,201912,2013768 -BG,TR,2,143,201912,145384 -BG,TR,2,151,201912,42735 -BG,TR,2,161,201912,484224 -BG,TR,2,162,201912,492237 -BG,TR,2,171,201912,2886638 -BG,TR,2,172,201912,62457 -BG,TR,2,192,201912,52899052 -BG,TR,2,201,201912,12260650 -BG,TR,2,202,201912,67449 -BG,TR,2,203,201912,61744 -BG,TR,2,204,201912,73457 -BG,TR,2,205,201912,492525 -BG,TR,2,206,201912,270765 -BG,TR,2,212,201912,585707 -BG,TR,2,221,201912,312531 -BG,TR,2,222,201912,2771235 -BG,TR,2,231,201912,4510366 -BG,TR,2,232,201912,58627 -BG,TR,2,234,201912,30236 -BG,TR,2,239,201912,29984 -BG,TR,2,241,201912,1624279 -BG,TR,2,242,201912,347 -BG,TR,2,243,201912,32071 -BG,TR,2,244,201912,37863742 -BG,TR,2,245,201912,21899 -BG,TR,2,251,201912,30495 -BG,TR,2,257,201912,595682 -BG,TR,2,259,201912,1448446 -BG,TR,2,261,201912,73194 -BG,TR,2,262,201912,32471 -BG,TR,2,263,201912,398302 -BG,TR,2,264,201912,63901 -BG,TR,2,265,201912,335656 -BG,TR,2,267,201912,21284 -BG,TR,2,271,201912,974518 -BG,TR,2,272,201912,414886 -BG,TR,2,273,201912,1029814 -BG,TR,2,274,201912,189710 -BG,TR,2,275,201912,73135 -BG,TR,2,279,201912,405775 -BG,TR,2,281,201912,1129092 -BG,TR,2,282,201912,1772968 -BG,TR,2,284,201912,371596 -BG,TR,2,289,201912,797972 -BG,TR,2,291,201912,91221 -BG,TR,2,293,201912,14535734 -BG,TR,2,301,201912,92946 -BG,TR,2,302,201912,900 -BG,TR,2,309,201912,34404 -BG,TR,2,310,201912,273454 -BG,TR,2,321,201912,424043 -BG,TR,2,324,201912,335270 -BG,TR,2,325,201912,243866 -BG,TR,2,329,201912,173286 -BG,TR,2,351,201912,851989 -BG,TT,2,279,201912,5267 -BG,TW,1,108,201912,151873 -BG,TW,1,132,201912,4956 -BG,TW,1,139,201912,11314 -BG,TW,1,141,201912,571 -BG,TW,1,152,201912,881 -BG,TW,1,171,201912,44221 -BG,TW,1,203,201912,2226 -BG,TW,1,205,201912,5180 -BG,TW,1,206,201912,199101 -BG,TW,1,212,201912,273660 -BG,TW,1,221,201912,35291 -BG,TW,1,222,201912,132863 -BG,TW,1,257,201912,217387 -BG,TW,1,259,201912,254051 -BG,TW,1,261,201912,708771 -BG,TW,1,262,201912,505105 -BG,TW,1,263,201912,546467 -BG,TW,1,264,201912,32877 -BG,TW,1,265,201912,84056 -BG,TW,1,271,201912,141048 -BG,TW,1,272,201912,34136 -BG,TW,1,273,201912,480749 -BG,TW,1,274,201912,35462 -BG,TW,1,275,201912,22412 -BG,TW,1,279,201912,367473 -BG,TW,1,281,201912,49209 -BG,TW,1,282,201912,99134 -BG,TW,1,284,201912,169214 -BG,TW,1,289,201912,40823 -BG,TW,1,293,201912,16518 -BG,TW,1,309,201912,1407074 -BG,TW,1,310,201912,30701 -BG,TW,1,321,201912,2113 -BG,TW,1,324,201912,1764 -BG,TW,1,325,201912,89608 -BG,TW,1,329,201912,25554 -BG,TW,2,011,201912,118033 -BG,TW,2,109,201912,84546 -BG,TW,2,141,201912,2760 -BG,TW,2,143,201912,534 -BG,TW,2,171,201912,92064 -BG,TW,2,201,201912,75332 -BG,TW,2,204,201912,7208 -BG,TW,2,205,201912,80993 -BG,TW,2,212,201912,415834 -BG,TW,2,244,201912,109843 -BG,TW,2,261,201912,652463 -BG,TW,2,262,201912,9658 -BG,TW,2,265,201912,34332 -BG,TW,2,271,201912,10314 -BG,TW,2,309,201912,5386 -BG,TW,2,325,201912,81083 -BG,TZ,1,120,201912,14099 -BG,TZ,2,281,201912,5723 -BG,TZ,2,282,201912,226745 -BG,UA,1,011,201912,3267783 -BG,UA,1,012,201912,21121 -BG,UA,1,081,201912,634788 -BG,UA,1,103,201912,462518 -BG,UA,1,104,201912,1481311 -BG,UA,1,106,201912,59288 -BG,UA,1,107,201912,276703 -BG,UA,1,108,201912,1719831 -BG,UA,1,110,201912,258774 -BG,UA,1,139,201912,309669 -BG,UA,1,141,201912,438130 -BG,UA,1,161,201912,216140 -BG,UA,1,162,201912,1101329 -BG,UA,1,171,201912,615205 -BG,UA,1,172,201912,92980 -BG,UA,1,192,201912,769742 -BG,UA,1,201,201912,7727054 -BG,UA,1,204,201912,15322 -BG,UA,1,205,201912,46977 -BG,UA,1,221,201912,12671 -BG,UA,1,222,201912,142457 -BG,UA,1,231,201912,208340 -BG,UA,1,232,201912,36196 -BG,UA,1,233,201912,19350 -BG,UA,1,237,201912,238 -BG,UA,1,239,201912,39257 -BG,UA,1,241,201912,10443027 -BG,UA,1,242,201912,190690 -BG,UA,1,243,201912,116615 -BG,UA,1,251,201912,7173 -BG,UA,1,252,201912,20830 -BG,UA,1,257,201912,7370 -BG,UA,1,259,201912,476490 -BG,UA,1,265,201912,81816 -BG,UA,1,271,201912,45198 -BG,UA,1,275,201912,40811 -BG,UA,1,279,201912,1445 -BG,UA,1,281,201912,124008 -BG,UA,1,282,201912,224457 -BG,UA,1,283,201912,132602 -BG,UA,1,284,201912,25768 -BG,UA,1,289,201912,224065 -BG,UA,1,293,201912,76462 -BG,UA,1,301,201912,57839 -BG,UA,1,302,201912,2398864 -BG,UA,1,310,201912,810767 -BG,UA,1,324,201912,13859 -BG,UA,1,329,201912,5382 -BG,UA,2,012,201912,19619 -BG,UA,2,013,201912,9800 -BG,UA,2,014,201912,506313 -BG,UA,2,081,201912,12296 -BG,UA,2,089,201912,11015 -BG,UA,2,103,201912,254258 -BG,UA,2,105,201912,8621 -BG,UA,2,107,201912,261028 -BG,UA,2,108,201912,718219 -BG,UA,2,110,201912,12543 -BG,UA,2,120,201912,147173 -BG,UA,2,131,201912,25731 -BG,UA,2,132,201912,54508 -BG,UA,2,139,201912,40826 -BG,UA,2,152,201912,2976 -BG,UA,2,171,201912,17207 -BG,UA,2,172,201912,117061 -BG,UA,2,192,201912,124224 -BG,UA,2,201,201912,2452042 -BG,UA,2,204,201912,1213788 -BG,UA,2,205,201912,82152 -BG,UA,2,212,201912,2153273 -BG,UA,2,221,201912,44272 -BG,UA,2,222,201912,717011 -BG,UA,2,231,201912,934832 -BG,UA,2,232,201912,656191 -BG,UA,2,235,201912,107787 -BG,UA,2,237,201912,13702 -BG,UA,2,244,201912,221626 -BG,UA,2,251,201912,43802 -BG,UA,2,252,201912,145076 -BG,UA,2,257,201912,73772 -BG,UA,2,259,201912,54781 -BG,UA,2,261,201912,7512 -BG,UA,2,262,201912,39051 -BG,UA,2,263,201912,26050 -BG,UA,2,265,201912,40554 -BG,UA,2,266,201912,16368 -BG,UA,2,271,201912,1032491 -BG,UA,2,272,201912,339607 -BG,UA,2,273,201912,1672 -BG,UA,2,274,201912,1437 -BG,UA,2,275,201912,1272285 -BG,UA,2,279,201912,2997 -BG,UA,2,281,201912,299703 -BG,UA,2,282,201912,673911 -BG,UA,2,283,201912,27350 -BG,UA,2,289,201912,658160 -BG,UA,2,291,201912,94806 -BG,UA,2,293,201912,1886 -BG,UA,2,309,201912,5051 -BG,UA,2,310,201912,88415 -BG,UA,2,325,201912,110448 -BG,UA,2,329,201912,14023 -BG,UG,2,108,201912,8535 -BG,UG,2,204,201912,2451 -BG,UG,2,212,201912,1600 -BG,UG,2,303,201912,1545 -BG,US,1,012,201912,2912 -BG,US,1,030,201912,6841 -BG,US,1,072,201912,13236204 -BG,US,1,089,201912,323 -BG,US,1,103,201912,489332 -BG,US,1,104,201912,5410 -BG,US,1,108,201912,341082 -BG,US,1,110,201912,188051 -BG,US,1,132,201912,346 -BG,US,1,139,201912,166438 -BG,US,1,141,201912,167076 -BG,US,1,143,201912,9153 -BG,US,1,151,201912,9524 -BG,US,1,152,201912,33193 -BG,US,1,161,201912,27145 -BG,US,1,162,201912,816 -BG,US,1,171,201912,65668 -BG,US,1,172,201912,30986 -BG,US,1,192,201912,63947 -BG,US,1,201,201912,835003 -BG,US,1,202,201912,1925 -BG,US,1,203,201912,46373 -BG,US,1,204,201912,150251 -BG,US,1,205,201912,109437 -BG,US,1,211,201912,2014 -BG,US,1,212,201912,2979 -BG,US,1,221,201912,62150 -BG,US,1,222,201912,267805 -BG,US,1,231,201912,82391 -BG,US,1,234,201912,997 -BG,US,1,239,201912,33157 -BG,US,1,242,201912,6806 -BG,US,1,244,201912,27401 -BG,US,1,254,201912,238 -BG,US,1,257,201912,68079 -BG,US,1,259,201912,108160 -BG,US,1,261,201912,693103 -BG,US,1,262,201912,306945 -BG,US,1,263,201912,315249 -BG,US,1,264,201912,144690 -BG,US,1,265,201912,1199066 -BG,US,1,266,201912,21997 -BG,US,1,267,201912,462842 -BG,US,1,268,201912,3102 -BG,US,1,271,201912,1646700 -BG,US,1,272,201912,88478 -BG,US,1,273,201912,255093 -BG,US,1,274,201912,16570 -BG,US,1,275,201912,145457 -BG,US,1,279,201912,211761 -BG,US,1,281,201912,601585 -BG,US,1,282,201912,264203 -BG,US,1,283,201912,22090 -BG,US,1,284,201912,40285 -BG,US,1,289,201912,246636 -BG,US,1,291,201912,641463 -BG,US,1,292,201912,1712 -BG,US,1,293,201912,50707 -BG,US,1,303,201912,791621 -BG,US,1,309,201912,60118 -BG,US,1,310,201912,4347 -BG,US,1,321,201912,3533 -BG,US,1,322,201912,74058 -BG,US,1,323,201912,103652 -BG,US,1,324,201912,19161 -BG,US,1,325,201912,459436 -BG,US,1,329,201912,388552 -BG,US,2,011,201912,9674938 -BG,US,2,012,201912,685802 -BG,US,2,014,201912,14116 -BG,US,2,102,201912,22152 -BG,US,2,103,201912,568202 -BG,US,2,104,201912,2815 -BG,US,2,105,201912,1015250 -BG,US,2,106,201912,474357 -BG,US,2,107,201912,380658 -BG,US,2,108,201912,508707 -BG,US,2,110,201912,147007 -BG,US,2,131,201912,2018 -BG,US,2,132,201912,22918 -BG,US,2,139,201912,594377 -BG,US,2,141,201912,716964 -BG,US,2,143,201912,190413 -BG,US,2,151,201912,113266 -BG,US,2,152,201912,150431 -BG,US,2,161,201912,14872 -BG,US,2,162,201912,49412 -BG,US,2,171,201912,1861 -BG,US,2,172,201912,38720 -BG,US,2,201,201912,822022 -BG,US,2,202,201912,360909 -BG,US,2,204,201912,116371 -BG,US,2,205,201912,221615 -BG,US,2,211,201912,113059 -BG,US,2,212,201912,1102220 -BG,US,2,221,201912,26249 -BG,US,2,222,201912,627215 -BG,US,2,231,201912,481443 -BG,US,2,232,201912,4894 -BG,US,2,233,201912,72598 -BG,US,2,234,201912,38826 -BG,US,2,237,201912,226426 -BG,US,2,239,201912,569663 -BG,US,2,243,201912,13368 -BG,US,2,244,201912,992112 -BG,US,2,251,201912,55907 -BG,US,2,257,201912,516451 -BG,US,2,259,201912,170902 -BG,US,2,261,201912,2245965 -BG,US,2,262,201912,408352 -BG,US,2,263,201912,595169 -BG,US,2,264,201912,184808 -BG,US,2,265,201912,3337011 -BG,US,2,267,201912,116481 -BG,US,2,268,201912,1695 -BG,US,2,271,201912,1303155 -BG,US,2,273,201912,112090 -BG,US,2,274,201912,64276 -BG,US,2,275,201912,80104 -BG,US,2,279,201912,1661963 -BG,US,2,281,201912,583267 -BG,US,2,282,201912,1167240 -BG,US,2,284,201912,829756 -BG,US,2,289,201912,1068234 -BG,US,2,293,201912,454918 -BG,US,2,302,201912,759763 -BG,US,2,303,201912,184373 -BG,US,2,309,201912,32031 -BG,US,2,310,201912,650552 -BG,US,2,321,201912,13558 -BG,US,2,322,201912,64201 -BG,US,2,323,201912,1537615 -BG,US,2,324,201912,38419 -BG,US,2,325,201912,4643375 -BG,US,2,329,201912,28896 -BG,UY,1,014,201912,172375 -BG,UY,2,141,201912,3038 -BG,UZ,1,171,201912,66272 -BG,UZ,2,205,201912,86068 -BG,UZ,2,212,201912,1922092 -BG,UZ,2,242,201912,1850 -BG,UZ,2,259,201912,3024 -BG,UZ,2,273,201912,3035 -BG,UZ,2,275,201912,35164 -BG,UZ,2,281,201912,307 -BG,UZ,2,282,201912,4635 -BG,UZ,2,325,201912,67818 -BG,VN,1,012,201912,1178827 -BG,VN,1,102,201912,210598 -BG,VN,1,103,201912,232803 -BG,VN,1,106,201912,55107 -BG,VN,1,141,201912,29549 -BG,VN,1,152,201912,129872 -BG,VN,1,172,201912,8182 -BG,VN,1,201,201912,815872 -BG,VN,1,205,201912,270124 -BG,VN,1,221,201912,629984 -BG,VN,1,222,201912,32779 -BG,VN,1,234,201912,1649 -BG,VN,1,259,201912,98733 -BG,VN,1,263,201912,228 -BG,VN,1,272,201912,139186 -BG,VN,1,282,201912,60591 -BG,VN,1,309,201912,584456 -BG,VN,1,310,201912,222471 -BG,VN,1,329,201912,29466 -BG,VN,2,081,201912,179547 -BG,VN,2,101,201912,24198 -BG,VN,2,110,201912,17570 -BG,VN,2,132,201912,66723 -BG,VN,2,141,201912,471 -BG,VN,2,201,201912,516188 -BG,VN,2,202,201912,321931 -BG,VN,2,204,201912,16978 -BG,VN,2,205,201912,24603 -BG,VN,2,212,201912,214673 -BG,VN,2,244,201912,275 -BG,VN,2,257,201912,19765 -BG,VN,2,261,201912,6582 -BG,VN,2,262,201912,4069 -BG,VN,2,263,201912,52117 -BG,VN,2,265,201912,3102 -BG,VN,2,266,201912,4302 -BG,VN,2,271,201912,11295 -BG,VN,2,279,201912,221 -BG,VN,2,282,201912,18541 -BG,VN,2,325,201912,86189 -BG,VN,2,329,201912,9504 -BG,XK,1,103,201912,20571 -BG,XK,1,107,201912,15078 -BG,XK,1,110,201912,83698 -BG,XK,1,162,201912,2644 -BG,XK,1,204,201912,1671 -BG,XK,1,222,201912,174129 -BG,XK,1,231,201912,145567 -BG,XK,1,282,201912,1839 -BG,XK,2,011,201912,715984 -BG,XK,2,012,201912,594 -BG,XK,2,013,201912,45929 -BG,XK,2,014,201912,150211 -BG,XK,2,081,201912,2760 -BG,XK,2,104,201912,861940 -BG,XK,2,105,201912,12346 -BG,XK,2,106,201912,25903 -BG,XK,2,107,201912,447117 -BG,XK,2,108,201912,379494 -BG,XK,2,110,201912,1778719 -BG,XK,2,120,201912,62203 -BG,XK,2,139,201912,28082 -BG,XK,2,141,201912,98165 -BG,XK,2,143,201912,9818 -BG,XK,2,151,201912,2165 -BG,XK,2,152,201912,36210 -BG,XK,2,161,201912,3660 -BG,XK,2,162,201912,572548 -BG,XK,2,171,201912,8300 -BG,XK,2,172,201912,123470 -BG,XK,2,192,201912,1354541 -BG,XK,2,201,201912,295082 -BG,XK,2,203,201912,53435 -BG,XK,2,204,201912,90820 -BG,XK,2,205,201912,3837 -BG,XK,2,212,201912,691697 -BG,XK,2,221,201912,11143 -BG,XK,2,222,201912,575534 -BG,XK,2,231,201912,334267 -BG,XK,2,233,201912,5656 -BG,XK,2,236,201912,11282 -BG,XK,2,239,201912,4374 -BG,XK,2,241,201912,103628 -BG,XK,2,242,201912,12837 -BG,XK,2,243,201912,42903 -BG,XK,2,251,201912,10182 -BG,XK,2,252,201912,101813 -BG,XK,2,257,201912,21486 -BG,XK,2,259,201912,39801 -BG,XK,2,262,201912,66608 -BG,XK,2,263,201912,44659 -BG,XK,2,264,201912,62444 -BG,XK,2,265,201912,37843 -BG,XK,2,271,201912,4724 -BG,XK,2,272,201912,111047 -BG,XK,2,273,201912,62866 -BG,XK,2,274,201912,52111 -BG,XK,2,275,201912,153979 -BG,XK,2,279,201912,23038 -BG,XK,2,281,201912,51046 -BG,XK,2,282,201912,56744 -BG,XK,2,284,201912,220 -BG,XK,2,289,201912,8398 -BG,XK,2,291,201912,120343 -BG,XK,2,293,201912,68131 -BG,XK,2,309,201912,20141 -BG,XK,2,310,201912,34089 -BG,XK,2,324,201912,20035 -BG,XK,2,325,201912,12807 -BG,XK,2,329,201912,2247 -BG,XS,1,011,201912,657522 -BG,XS,1,013,201912,408046 -BG,XS,1,014,201912,22193 -BG,XS,1,081,201912,107610 -BG,XS,1,103,201912,213010 -BG,XS,1,104,201912,1373768 -BG,XS,1,105,201912,102633 -BG,XS,1,106,201912,202941 -BG,XS,1,107,201912,393102 -BG,XS,1,108,201912,921026 -BG,XS,1,109,201912,87867 -BG,XS,1,110,201912,1824962 -BG,XS,1,120,201912,796576 -BG,XS,1,132,201912,35674 -BG,XS,1,139,201912,2269986 -BG,XS,1,141,201912,418225 -BG,XS,1,143,201912,49089 -BG,XS,1,151,201912,65746 -BG,XS,1,152,201912,132661 -BG,XS,1,161,201912,52128 -BG,XS,1,162,201912,795381 -BG,XS,1,171,201912,749963 -BG,XS,1,172,201912,179829 -BG,XS,1,192,201912,6251661 -BG,XS,1,201,201912,2562695 -BG,XS,1,203,201912,137074 -BG,XS,1,204,201912,207042 -BG,XS,1,205,201912,35674 -BG,XS,1,211,201912,2733 -BG,XS,1,212,201912,514876 -BG,XS,1,221,201912,1949933 -BG,XS,1,222,201912,1421844 -BG,XS,1,231,201912,216939 -BG,XS,1,233,201912,1074522 -BG,XS,1,236,201912,28495 -BG,XS,1,239,201912,236316 -BG,XS,1,241,201912,8534688 -BG,XS,1,242,201912,23453 -BG,XS,1,243,201912,508901 -BG,XS,1,244,201912,7748799 -BG,XS,1,251,201912,46904 -BG,XS,1,257,201912,52152 -BG,XS,1,259,201912,488645 -BG,XS,1,261,201912,50908 -BG,XS,1,262,201912,32373 -BG,XS,1,271,201912,785623 -BG,XS,1,273,201912,178062 -BG,XS,1,274,201912,5770 -BG,XS,1,275,201912,363863 -BG,XS,1,279,201912,64335 -BG,XS,1,281,201912,62813 -BG,XS,1,282,201912,50723 -BG,XS,1,283,201912,29939 -BG,XS,1,284,201912,13760 -BG,XS,1,289,201912,178854 -BG,XS,1,291,201912,365241 -BG,XS,1,292,201912,16642 -BG,XS,1,293,201912,4546 -BG,XS,1,302,201912,566457 -BG,XS,1,303,201912,17374 -BG,XS,1,309,201912,51422 -BG,XS,1,310,201912,423800 -BG,XS,1,323,201912,13710 -BG,XS,1,325,201912,17587 -BG,XS,1,329,201912,36623 -BG,XS,1,351,201912,73954 -BG,XS,2,011,201912,537278 -BG,XS,2,012,201912,6900 -BG,XS,2,013,201912,47636 -BG,XS,2,030,201912,239312 -BG,XS,2,051,201912,12444 -BG,XS,2,052,201912,129314 -BG,XS,2,081,201912,241 -BG,XS,2,089,201912,47827 -BG,XS,2,101,201912,66959 -BG,XS,2,102,201912,157316 -BG,XS,2,103,201912,254196 -BG,XS,2,104,201912,69252 -BG,XS,2,105,201912,76957 -BG,XS,2,106,201912,744752 -BG,XS,2,107,201912,746506 -BG,XS,2,108,201912,601176 -BG,XS,2,109,201912,56593 -BG,XS,2,110,201912,29350 -BG,XS,2,120,201912,40967 -BG,XS,2,131,201912,128590 -BG,XS,2,132,201912,238285 -BG,XS,2,139,201912,453791 -BG,XS,2,141,201912,114105 -BG,XS,2,143,201912,46526 -BG,XS,2,151,201912,82002 -BG,XS,2,152,201912,13391 -BG,XS,2,161,201912,3935 -BG,XS,2,162,201912,640782 -BG,XS,2,171,201912,1031831 -BG,XS,2,172,201912,420296 -BG,XS,2,192,201912,2716899 -BG,XS,2,201,201912,4847615 -BG,XS,2,202,201912,3780 -BG,XS,2,203,201912,20445 -BG,XS,2,204,201912,528933 -BG,XS,2,205,201912,140685 -BG,XS,2,206,201912,135779 -BG,XS,2,211,201912,4110 -BG,XS,2,212,201912,2045094 -BG,XS,2,221,201912,673740 -BG,XS,2,222,201912,2269278 -BG,XS,2,231,201912,1382404 -BG,XS,2,232,201912,11280 -BG,XS,2,233,201912,506810 -BG,XS,2,234,201912,94690 -BG,XS,2,235,201912,10291 -BG,XS,2,236,201912,183189 -BG,XS,2,237,201912,25316 -BG,XS,2,239,201912,13706 -BG,XS,2,241,201912,991538 -BG,XS,2,242,201912,137878 -BG,XS,2,243,201912,452039 -BG,XS,2,244,201912,2011987 -BG,XS,2,251,201912,105870 -BG,XS,2,252,201912,40642 -BG,XS,2,253,201912,992 -BG,XS,2,257,201912,107376 -BG,XS,2,259,201912,404768 -BG,XS,2,261,201912,70384 -BG,XS,2,262,201912,139518 -BG,XS,2,263,201912,52298 -BG,XS,2,264,201912,31141 -BG,XS,2,265,201912,99418 -BG,XS,2,267,201912,22399 -BG,XS,2,268,201912,1919 -BG,XS,2,271,201912,279577 -BG,XS,2,272,201912,752337 -BG,XS,2,273,201912,153530 -BG,XS,2,274,201912,258689 -BG,XS,2,275,201912,436280 -BG,XS,2,279,201912,67923 -BG,XS,2,281,201912,238907 -BG,XS,2,282,201912,398637 -BG,XS,2,284,201912,5681 -BG,XS,2,289,201912,577268 -BG,XS,2,291,201912,162777 -BG,XS,2,292,201912,11500 -BG,XS,2,293,201912,255580 -BG,XS,2,301,201912,265263 -BG,XS,2,303,201912,234832 -BG,XS,2,309,201912,91435 -BG,XS,2,310,201912,604326 -BG,XS,2,321,201912,6269 -BG,XS,2,323,201912,20329 -BG,XS,2,324,201912,674791 -BG,XS,2,325,201912,41542 -BG,XS,2,329,201912,74398 -BG,XS,2,351,201912,80979 -BG,YE,2,107,201912,261979 -BG,ZA,1,011,201912,5559 -BG,ZA,1,014,201912,2473407 -BG,ZA,1,203,201912,3400 -BG,ZA,1,204,201912,38922 -BG,ZA,1,222,201912,9939 -BG,ZA,1,262,201912,4676 -BG,ZA,1,271,201912,3910 -BG,ZA,1,291,201912,128175 -BG,ZA,1,325,201912,3161 -BG,ZA,1,329,201912,360 -BG,ZA,2,011,201912,55856 -BG,ZA,2,107,201912,18057 -BG,ZA,2,108,201912,24584 -BG,ZA,2,109,201912,89250 -BG,ZA,2,139,201912,548 -BG,ZA,2,141,201912,3252 -BG,ZA,2,143,201912,733 -BG,ZA,2,171,201912,565508 -BG,ZA,2,201,201912,105999 -BG,ZA,2,212,201912,110830 -BG,ZA,2,221,201912,1760 -BG,ZA,2,222,201912,240805 -BG,ZA,2,231,201912,32771 -BG,ZA,2,244,201912,65580 -BG,ZA,2,257,201912,4876 -BG,ZA,2,262,201912,2772 -BG,ZA,2,263,201912,13602 -BG,ZA,2,265,201912,5102 -BG,ZA,2,267,201912,47348 -BG,ZA,2,271,201912,142212 -BG,ZA,2,272,201912,231549 -BG,ZA,2,273,201912,49674 -BG,ZA,2,275,201912,48680 -BG,ZA,2,279,201912,18578 -BG,ZA,2,281,201912,41561 -BG,ZA,2,282,201912,62681 -BG,ZA,2,289,201912,84704 -BG,ZA,2,309,201912,984 -BG,ZA,2,324,201912,53797 -BG,ZA,2,325,201912,44327 -BG,ZW,1,120,201912,236504 -CY,AE,1,120,201912,9 -CY,AE,1,139,201912,6292 -CY,AE,1,141,201912,236453 -CY,AE,1,143,201912,26510 -CY,AE,1,151,201912,7687 -CY,AE,1,152,201912,23967 -CY,AE,1,204,201912,180079 -CY,AE,1,221,201912,22074 -CY,AE,1,222,201912,8336 -CY,AE,1,231,201912,26918 -CY,AE,1,233,201912,65362 -CY,AE,1,234,201912,30866 -CY,AE,1,241,201912,211 -CY,AE,1,244,201912,1844548 -CY,AE,1,257,201912,11863 -CY,AE,1,259,201912,4340 -CY,AE,1,262,201912,883 -CY,AE,1,263,201912,1309 -CY,AE,1,264,201912,1481 -CY,AE,1,265,201912,887 -CY,AE,1,267,201912,461 -CY,AE,1,272,201912,2622 -CY,AE,1,274,201912,5042 -CY,AE,1,281,201912,12539 -CY,AE,1,282,201912,464 -CY,AE,1,291,201912,7612 -CY,AE,1,293,201912,67611 -CY,AE,1,329,201912,27608 -CY,AE,2,011,201912,30023 -CY,AE,2,012,201912,92670 -CY,AE,2,014,201912,1320 -CY,AE,2,103,201912,142310 -CY,AE,2,105,201912,47347 -CY,AE,2,106,201912,6951 -CY,AE,2,110,201912,1894 -CY,AE,2,141,201912,55443 -CY,AE,2,143,201912,2017 -CY,AE,2,152,201912,3325 -CY,AE,2,205,201912,576 -CY,AE,2,212,201912,65295 -CY,AE,2,222,201912,27615 -CY,AE,2,257,201912,34580 -CY,AE,2,262,201912,13744 -CY,AE,2,263,201912,21014 -CY,AE,2,265,201912,89694 -CY,AE,2,271,201912,7243 -CY,AE,2,273,201912,465 -CY,AE,2,274,201912,13021 -CY,AE,2,281,201912,89577 -CY,AE,2,282,201912,91877 -CY,AE,2,325,201912,267 -CY,AE,2,329,201912,1500 -CY,AG,2,103,201912,17040 -CY,AG,2,110,201912,6843 -CY,AL,1,237,201912,20686 -CY,AL,2,204,201912,5840 -CY,AL,2,212,201912,61032 -CY,AR,1,011,201912,67921 -CY,AR,1,104,201912,4769590 -CY,AR,1,110,201912,64 -CY,AT,1,011,201912,6004 -CY,AT,1,012,201912,69924 -CY,AT,1,102,201912,114389 -CY,AT,1,103,201912,54318 -CY,AT,1,104,201912,1301 -CY,AT,1,105,201912,19564 -CY,AT,1,106,201912,4266 -CY,AT,1,107,201912,51777 -CY,AT,1,108,201912,60220 -CY,AT,1,110,201912,126428 -CY,AT,1,139,201912,131851 -CY,AT,1,141,201912,303648 -CY,AT,1,143,201912,72831 -CY,AT,1,151,201912,4868 -CY,AT,1,152,201912,42216 -CY,AT,1,162,201912,168468 -CY,AT,1,171,201912,12399 -CY,AT,1,172,201912,83063 -CY,AT,1,201,201912,57357 -CY,AT,1,202,201912,1922 -CY,AT,1,204,201912,63666 -CY,AT,1,205,201912,16152 -CY,AT,1,212,201912,15625 -CY,AT,1,221,201912,10301 -CY,AT,1,222,201912,151708 -CY,AT,1,231,201912,2789 -CY,AT,1,244,201912,7367 -CY,AT,1,257,201912,35129 -CY,AT,1,259,201912,57094 -CY,AT,1,262,201912,41443 -CY,AT,1,263,201912,52010 -CY,AT,1,264,201912,43837 -CY,AT,1,265,201912,277814 -CY,AT,1,271,201912,111159 -CY,AT,1,272,201912,31580 -CY,AT,1,273,201912,23003 -CY,AT,1,274,201912,8318 -CY,AT,1,275,201912,242687 -CY,AT,1,279,201912,29543 -CY,AT,1,281,201912,17719 -CY,AT,1,282,201912,133398 -CY,AT,1,284,201912,7242 -CY,AT,1,289,201912,16683 -CY,AT,1,293,201912,53847 -CY,AT,1,310,201912,47766 -CY,AT,1,323,201912,12923 -CY,AT,1,325,201912,210569 -CY,AT,1,329,201912,20071 -CY,AT,2,012,201912,37992 -CY,AT,2,105,201912,830882 -CY,AT,2,212,201912,94699 -CY,AT,2,222,201912,74628 -CY,AT,2,265,201912,29 -CY,AT,2,271,201912,9 -CY,AT,2,273,201912,95 -CY,AT,2,274,201912,67971 -CY,AT,2,279,201912,4138 -CY,AU,1,108,201912,82497 -CY,AU,1,110,201912,81529 -CY,AU,1,141,201912,4374 -CY,AU,1,204,201912,19700 -CY,AU,1,222,201912,3363 -CY,AU,1,243,201912,61706 -CY,AU,1,262,201912,1830 -CY,AU,1,263,201912,17355 -CY,AU,1,271,201912,48 -CY,AU,1,274,201912,381 -CY,AU,1,275,201912,162 -CY,AU,1,279,201912,464 -CY,AU,1,281,201912,3498 -CY,AU,1,291,201912,75000 -CY,AU,1,293,201912,5368 -CY,AU,1,323,201912,325 -CY,AU,1,325,201912,16238 -CY,AU,1,329,201912,84748 -CY,AU,2,014,201912,3630 -CY,AU,2,105,201912,1401892 -CY,AU,2,106,201912,40102 -CY,AU,2,107,201912,122 -CY,AU,2,108,201912,11930 -CY,AU,2,110,201912,20952 -CY,AU,2,141,201912,8058 -CY,AU,2,143,201912,3887 -CY,AU,2,151,201912,1746 -CY,AU,2,152,201912,7060 -CY,AU,2,162,201912,55 -CY,AU,2,212,201912,285762 -CY,AU,2,262,201912,950 -CY,AU,2,265,201912,2410 -CY,AU,2,321,201912,197 -CY,AU,2,329,201912,16000 -CY,AW,2,103,201912,15734 -CY,AW,2,110,201912,4359 -CY,AZ,2,141,201912,1418 -CY,BA,1,110,201912,53819 -CY,BB,2,212,201912,11708 -CY,BD,1,102,201912,116067 -CY,BD,1,141,201912,4003 -CY,BD,1,143,201912,65 -CY,BD,2,103,201912,20576 -CY,BE,1,011,201912,114734 -CY,BE,1,012,201912,93886 -CY,BE,1,014,201912,3572 -CY,BE,1,101,201912,211096 -CY,BE,1,102,201912,56885 -CY,BE,1,103,201912,629967 -CY,BE,1,104,201912,92878 -CY,BE,1,105,201912,236674 -CY,BE,1,106,201912,325092 -CY,BE,1,107,201912,256281 -CY,BE,1,108,201912,625048 -CY,BE,1,109,201912,292628 -CY,BE,1,110,201912,355557 -CY,BE,1,132,201912,3517 -CY,BE,1,139,201912,157932 -CY,BE,1,141,201912,715506 -CY,BE,1,143,201912,79507 -CY,BE,1,151,201912,90425 -CY,BE,1,152,201912,631440 -CY,BE,1,162,201912,253237 -CY,BE,1,171,201912,145266 -CY,BE,1,172,201912,496873 -CY,BE,1,192,201912,68327 -CY,BE,1,201,201912,526119 -CY,BE,1,202,201912,94403 -CY,BE,1,203,201912,152766 -CY,BE,1,204,201912,377946 -CY,BE,1,205,201912,1948086 -CY,BE,1,211,201912,12828 -CY,BE,1,212,201912,810359 -CY,BE,1,221,201912,97504 -CY,BE,1,222,201912,187108 -CY,BE,1,231,201912,296524 -CY,BE,1,233,201912,13685 -CY,BE,1,234,201912,2687 -CY,BE,1,236,201912,24065 -CY,BE,1,239,201912,8027 -CY,BE,1,242,201912,230 -CY,BE,1,244,201912,11863 -CY,BE,1,257,201912,139827 -CY,BE,1,259,201912,44130 -CY,BE,1,261,201912,4487 -CY,BE,1,262,201912,39130 -CY,BE,1,263,201912,24659 -CY,BE,1,264,201912,69114 -CY,BE,1,265,201912,69122 -CY,BE,1,267,201912,711 -CY,BE,1,271,201912,8218 -CY,BE,1,272,201912,75420 -CY,BE,1,273,201912,32125 -CY,BE,1,274,201912,20154 -CY,BE,1,275,201912,92249 -CY,BE,1,279,201912,31411 -CY,BE,1,281,201912,158781 -CY,BE,1,282,201912,531346 -CY,BE,1,283,201912,9981 -CY,BE,1,289,201912,123914 -CY,BE,1,291,201912,148645 -CY,BE,1,292,201912,7106 -CY,BE,1,293,201912,211622 -CY,BE,1,309,201912,107533 -CY,BE,1,310,201912,20211 -CY,BE,1,321,201912,190256 -CY,BE,1,322,201912,1863 -CY,BE,1,323,201912,77616 -CY,BE,1,324,201912,19876 -CY,BE,1,325,201912,325214 -CY,BE,1,329,201912,58415 -CY,BE,2,012,201912,62118 -CY,BE,2,014,201912,149075 -CY,BE,2,081,201912,31006 -CY,BE,2,105,201912,49127 -CY,BE,2,212,201912,395918 -CY,BE,2,222,201912,33 -CY,BE,2,231,201912,509 -CY,BE,2,274,201912,1421 -CY,BE,2,279,201912,169 -CY,BE,2,321,201912,144 -CY,BG,1,011,201912,1033992 -CY,BG,1,012,201912,22361 -CY,BG,1,030,201912,549 -CY,BG,1,101,201912,309716 -CY,BG,1,102,201912,17773 -CY,BG,1,103,201912,17563 -CY,BG,1,104,201912,96841 -CY,BG,1,105,201912,90780 -CY,BG,1,106,201912,12162 -CY,BG,1,107,201912,251220 -CY,BG,1,108,201912,234912 -CY,BG,1,109,201912,48552 -CY,BG,1,110,201912,135691 -CY,BG,1,132,201912,1581 -CY,BG,1,139,201912,42621 -CY,BG,1,141,201912,77933 -CY,BG,1,143,201912,49596 -CY,BG,1,151,201912,719 -CY,BG,1,152,201912,3751 -CY,BG,1,162,201912,65319 -CY,BG,1,172,201912,20876 -CY,BG,1,201,201912,106483 -CY,BG,1,203,201912,38646 -CY,BG,1,204,201912,32362 -CY,BG,1,205,201912,24398 -CY,BG,1,212,201912,1532124 -CY,BG,1,222,201912,142077 -CY,BG,1,231,201912,27499 -CY,BG,1,233,201912,20600 -CY,BG,1,234,201912,27360 -CY,BG,1,236,201912,37916 -CY,BG,1,237,201912,39838 -CY,BG,1,239,201912,1952 -CY,BG,1,241,201912,980783 -CY,BG,1,244,201912,88431 -CY,BG,1,257,201912,20470 -CY,BG,1,259,201912,3958 -CY,BG,1,263,201912,139166 -CY,BG,1,265,201912,23513 -CY,BG,1,271,201912,456990 -CY,BG,1,273,201912,57254 -CY,BG,1,274,201912,58361 -CY,BG,1,275,201912,73051 -CY,BG,1,279,201912,103 -CY,BG,1,281,201912,19581 -CY,BG,1,282,201912,62877 -CY,BG,1,289,201912,71923 -CY,BG,1,291,201912,22058 -CY,BG,1,293,201912,44374 -CY,BG,1,309,201912,178 -CY,BG,1,310,201912,17387 -CY,BG,1,324,201912,254 -CY,BG,1,325,201912,23417 -CY,BG,1,329,201912,4 -CY,BG,2,101,201912,96487 -CY,BG,2,108,201912,19845 -CY,BG,2,212,201912,907083 -CY,BG,2,222,201912,23470 -CY,BG,2,274,201912,9736 -CY,BG,2,279,201912,23 -CY,BG,2,289,201912,50573 -CY,BH,1,141,201912,238 -CY,BH,1,172,201912,72 -CY,BH,1,329,201912,20694 -CY,BH,2,030,201912,60930 -CY,BH,2,103,201912,207124 -CY,BH,2,212,201912,83457 -CY,BH,2,274,201912,93159 -CY,BH,2,329,201912,36 -CY,BO,2,141,201912,546 -CY,BR,1,012,201912,409240 -CY,BR,1,103,201912,338223 -CY,BR,1,110,201912,388 -CY,BR,1,120,201912,25 -CY,BR,1,141,201912,1104 -CY,BR,1,161,201912,23388 -CY,BR,1,171,201912,19813 -CY,BR,1,281,201912,542 -CY,BR,1,325,201912,78261 -CY,BR,2,141,201912,1315 -CY,BR,2,152,201912,414 -CY,BW,2,212,201912,179273 -CY,BY,2,030,201912,21001 -CY,BY,2,282,201912,2802 -CY,CA,1,011,201912,151006 -CY,CA,1,030,201912,10981 -CY,CA,1,103,201912,7760 -CY,CA,1,108,201912,8615 -CY,CA,1,139,201912,654 -CY,CA,1,141,201912,66731 -CY,CA,1,143,201912,154 -CY,CA,1,151,201912,1404 -CY,CA,1,152,201912,3814 -CY,CA,1,204,201912,14321 -CY,CA,1,205,201912,11688 -CY,CA,1,257,201912,3216 -CY,CA,1,261,201912,6504 -CY,CA,1,262,201912,13527 -CY,CA,1,263,201912,130976 -CY,CA,1,264,201912,692 -CY,CA,1,265,201912,38257 -CY,CA,1,279,201912,6582 -CY,CA,1,281,201912,34745 -CY,CA,1,289,201912,242 -CY,CA,1,325,201912,1257 -CY,CA,2,030,201912,12412 -CY,CA,2,141,201912,5687 -CY,CA,2,143,201912,431 -CY,CA,2,151,201912,187 -CY,CA,2,152,201912,366 -CY,CA,2,204,201912,1055 -CY,CA,2,264,201912,6535 -CY,CA,2,329,201912,8500 -CY,CH,1,105,201912,1208 -CY,CH,1,108,201912,254650 -CY,CH,1,110,201912,60056 -CY,CH,1,139,201912,789 -CY,CH,1,141,201912,4445 -CY,CH,1,143,201912,945 -CY,CH,1,151,201912,494 -CY,CH,1,172,201912,802 -CY,CH,1,192,201912,21970 -CY,CH,1,201,201912,23258 -CY,CH,1,203,201912,31169 -CY,CH,1,204,201912,183554 -CY,CH,1,205,201912,206952 -CY,CH,1,211,201912,28500 -CY,CH,1,212,201912,1226106 -CY,CH,1,221,201912,37 -CY,CH,1,222,201912,10576 -CY,CH,1,231,201912,865 -CY,CH,1,234,201912,2 -CY,CH,1,239,201912,1815 -CY,CH,1,245,201912,64127 -CY,CH,1,254,201912,24603 -CY,CH,1,257,201912,8212 -CY,CH,1,259,201912,43534 -CY,CH,1,262,201912,1000 -CY,CH,1,265,201912,407195 -CY,CH,1,266,201912,20871 -CY,CH,1,267,201912,14259 -CY,CH,1,271,201912,1167 -CY,CH,1,273,201912,9566 -CY,CH,1,274,201912,928 -CY,CH,1,279,201912,408 -CY,CH,1,281,201912,13240 -CY,CH,1,282,201912,23297 -CY,CH,1,284,201912,1933 -CY,CH,1,289,201912,181977 -CY,CH,1,292,201912,138174 -CY,CH,1,293,201912,406 -CY,CH,1,309,201912,7082 -CY,CH,1,310,201912,50882 -CY,CH,1,325,201912,81921 -CY,CH,1,329,201912,119 -CY,CH,2,011,201912,6768 -CY,CH,2,105,201912,34000 -CY,CH,2,108,201912,15 -CY,CH,2,141,201912,8853 -CY,CH,2,143,201912,2780 -CY,CH,2,152,201912,671 -CY,CH,2,212,201912,253594 -CY,CH,2,262,201912,102579 -CY,CH,2,265,201912,253556 -CY,CH,2,282,201912,23476 -CY,CH,2,329,201912,1038 -CY,CL,1,012,201912,7334 -CY,CL,1,110,201912,46351 -CY,CL,2,212,201912,1575 -CY,CN,1,012,201912,136328 -CY,CN,1,081,201912,10281 -CY,CN,1,102,201912,61855 -CY,CN,1,103,201912,74153 -CY,CN,1,108,201912,28662 -CY,CN,1,132,201912,79896 -CY,CN,1,139,201912,412938 -CY,CN,1,141,201912,273145 -CY,CN,1,142,201912,159 -CY,CN,1,143,201912,15034 -CY,CN,1,151,201912,242145 -CY,CN,1,152,201912,169935 -CY,CN,1,162,201912,177080 -CY,CN,1,171,201912,64163 -CY,CN,1,172,201912,229632 -CY,CN,1,201,201912,604232 -CY,CN,1,203,201912,5679 -CY,CN,1,204,201912,54830 -CY,CN,1,205,201912,367736 -CY,CN,1,206,201912,2326 -CY,CN,1,211,201912,1265669 -CY,CN,1,212,201912,771249 -CY,CN,1,221,201912,943807 -CY,CN,1,222,201912,780087 -CY,CN,1,231,201912,244685 -CY,CN,1,232,201912,189 -CY,CN,1,233,201912,3106 -CY,CN,1,234,201912,136723 -CY,CN,1,236,201912,33674 -CY,CN,1,237,201912,166477 -CY,CN,1,239,201912,4598 -CY,CN,1,242,201912,68406 -CY,CN,1,243,201912,60233 -CY,CN,1,244,201912,465938 -CY,CN,1,245,201912,184219 -CY,CN,1,251,201912,383285 -CY,CN,1,252,201912,456 -CY,CN,1,254,201912,59 -CY,CN,1,257,201912,500555 -CY,CN,1,259,201912,541615 -CY,CN,1,261,201912,135592 -CY,CN,1,262,201912,1171257 -CY,CN,1,263,201912,1417112 -CY,CN,1,264,201912,405815 -CY,CN,1,265,201912,199022 -CY,CN,1,266,201912,111823 -CY,CN,1,267,201912,224805 -CY,CN,1,268,201912,594 -CY,CN,1,271,201912,265369 -CY,CN,1,272,201912,23450 -CY,CN,1,273,201912,307437 -CY,CN,1,274,201912,566411 -CY,CN,1,275,201912,1179153 -CY,CN,1,279,201912,320774 -CY,CN,1,281,201912,538950 -CY,CN,1,282,201912,2015840 -CY,CN,1,283,201912,40981 -CY,CN,1,284,201912,118871 -CY,CN,1,289,201912,457922 -CY,CN,1,292,201912,45687 -CY,CN,1,293,201912,178164 -CY,CN,1,301,201912,20146344 -CY,CN,1,303,201912,1922 -CY,CN,1,309,201912,93826 -CY,CN,1,310,201912,1215228 -CY,CN,1,321,201912,214167 -CY,CN,1,322,201912,2559 -CY,CN,1,323,201912,165167 -CY,CN,1,324,201912,529865 -CY,CN,1,325,201912,290047 -CY,CN,1,329,201912,318821 -CY,CN,2,103,201912,416542 -CY,CN,2,110,201912,77136 -CY,CN,2,141,201912,27390 -CY,CN,2,143,201912,6521 -CY,CN,2,152,201912,15047 -CY,CN,2,162,201912,1691 -CY,CN,2,205,201912,137800 -CY,CN,2,212,201912,183757 -CY,CN,2,262,201912,2400 -CY,CN,2,265,201912,4800 -CY,CN,2,281,201912,108235 -CY,CN,2,325,201912,240334 -CY,CR,1,120,201912,5492 -CY,CR,2,141,201912,723 -CY,CU,1,120,201912,269535 -CY,CW,2,212,201912,8089 -CY,CZ,1,101,201912,11782 -CY,CZ,1,103,201912,72 -CY,CZ,1,108,201912,174547 -CY,CZ,1,109,201912,17909 -CY,CZ,1,110,201912,27522 -CY,CZ,1,120,201912,344665 -CY,CZ,1,139,201912,1766 -CY,CZ,1,141,201912,1315 -CY,CZ,1,143,201912,5131 -CY,CZ,1,151,201912,893 -CY,CZ,1,152,201912,2393 -CY,CZ,1,171,201912,69553 -CY,CZ,1,172,201912,1793 -CY,CZ,1,203,201912,3044 -CY,CZ,1,204,201912,140910 -CY,CZ,1,205,201912,477 -CY,CZ,1,212,201912,32930 -CY,CZ,1,221,201912,1768 -CY,CZ,1,222,201912,38662 -CY,CZ,1,231,201912,50014 -CY,CZ,1,234,201912,80041 -CY,CZ,1,237,201912,30172 -CY,CZ,1,242,201912,17 -CY,CZ,1,252,201912,3517 -CY,CZ,1,257,201912,4828 -CY,CZ,1,259,201912,33777 -CY,CZ,1,262,201912,90528 -CY,CZ,1,263,201912,1361410 -CY,CZ,1,264,201912,10339 -CY,CZ,1,265,201912,14913 -CY,CZ,1,267,201912,2692 -CY,CZ,1,271,201912,1387 -CY,CZ,1,273,201912,302 -CY,CZ,1,274,201912,18109 -CY,CZ,1,275,201912,32085 -CY,CZ,1,279,201912,68974 -CY,CZ,1,281,201912,1555 -CY,CZ,1,282,201912,27375 -CY,CZ,1,289,201912,33547 -CY,CZ,1,291,201912,2867265 -CY,CZ,1,293,201912,20063 -CY,CZ,1,310,201912,1502 -CY,CZ,1,321,201912,70 -CY,CZ,1,322,201912,37 -CY,CZ,1,323,201912,178 -CY,CZ,1,324,201912,7265 -CY,CZ,1,325,201912,3487 -CY,CZ,1,329,201912,4546 -CY,CZ,2,012,201912,61726 -CY,CZ,2,212,201912,2682922 -CY,CZ,2,222,201912,1375 -CY,CZ,2,262,201912,167 -CY,CZ,2,263,201912,2 -CY,CZ,2,274,201912,10230 -CY,DE,1,011,201912,289881 -CY,DE,1,012,201912,161495 -CY,DE,1,013,201912,27402 -CY,DE,1,014,201912,199806 -CY,DE,1,021,201912,26 -CY,DE,1,030,201912,5450 -CY,DE,1,081,201912,1995 -CY,DE,1,089,201912,154617 -CY,DE,1,101,201912,918847 -CY,DE,1,102,201912,333680 -CY,DE,1,103,201912,533588 -CY,DE,1,104,201912,95672 -CY,DE,1,105,201912,1614266 -CY,DE,1,106,201912,207630 -CY,DE,1,107,201912,481994 -CY,DE,1,108,201912,1396166 -CY,DE,1,109,201912,346178 -CY,DE,1,110,201912,353421 -CY,DE,1,120,201912,995171 -CY,DE,1,131,201912,2861 -CY,DE,1,132,201912,9526 -CY,DE,1,139,201912,79163 -CY,DE,1,141,201912,810911 -CY,DE,1,143,201912,238669 -CY,DE,1,151,201912,135883 -CY,DE,1,152,201912,329519 -CY,DE,1,161,201912,44438 -CY,DE,1,162,201912,407853 -CY,DE,1,171,201912,179588 -CY,DE,1,172,201912,179574 -CY,DE,1,192,201912,84395 -CY,DE,1,201,201912,611701 -CY,DE,1,202,201912,65039 -CY,DE,1,203,201912,314791 -CY,DE,1,204,201912,615156 -CY,DE,1,205,201912,743190 -CY,DE,1,206,201912,1358 -CY,DE,1,211,201912,250455 -CY,DE,1,212,201912,2393381 -CY,DE,1,221,201912,465740 -CY,DE,1,222,201912,986820 -CY,DE,1,231,201912,72498 -CY,DE,1,233,201912,39385 -CY,DE,1,234,201912,105786 -CY,DE,1,236,201912,533 -CY,DE,1,237,201912,38 -CY,DE,1,239,201912,37782 -CY,DE,1,242,201912,69050 -CY,DE,1,243,201912,41324 -CY,DE,1,244,201912,169868 -CY,DE,1,251,201912,91239 -CY,DE,1,252,201912,16630 -CY,DE,1,253,201912,59945 -CY,DE,1,254,201912,145184 -CY,DE,1,257,201912,290067 -CY,DE,1,259,201912,474264 -CY,DE,1,261,201912,93141 -CY,DE,1,262,201912,1381394 -CY,DE,1,263,201912,1209233 -CY,DE,1,264,201912,172202 -CY,DE,1,265,201912,868688 -CY,DE,1,266,201912,244149 -CY,DE,1,267,201912,347665 -CY,DE,1,268,201912,140572 -CY,DE,1,271,201912,567619 -CY,DE,1,272,201912,160088 -CY,DE,1,273,201912,222742 -CY,DE,1,274,201912,103179 -CY,DE,1,275,201912,711873 -CY,DE,1,279,201912,268571 -CY,DE,1,281,201912,1404201 -CY,DE,1,282,201912,1758281 -CY,DE,1,283,201912,60245 -CY,DE,1,284,201912,22017 -CY,DE,1,289,201912,731619 -CY,DE,1,291,201912,9728033 -CY,DE,1,292,201912,59264 -CY,DE,1,293,201912,1147262 -CY,DE,1,301,201912,53777 -CY,DE,1,309,201912,145661 -CY,DE,1,310,201912,85340 -CY,DE,1,321,201912,62148 -CY,DE,1,322,201912,3264 -CY,DE,1,323,201912,26729 -CY,DE,1,324,201912,253013 -CY,DE,1,325,201912,1359136 -CY,DE,1,329,201912,210492 -CY,DE,2,011,201912,418695 -CY,DE,2,012,201912,5809 -CY,DE,2,103,201912,24841 -CY,DE,2,105,201912,562025 -CY,DE,2,108,201912,33495 -CY,DE,2,141,201912,587 -CY,DE,2,151,201912,96 -CY,DE,2,152,201912,844 -CY,DE,2,212,201912,627061 -CY,DE,2,222,201912,141914 -CY,DE,2,231,201912,34000 -CY,DE,2,244,201912,82952 -CY,DE,2,257,201912,237 -CY,DE,2,262,201912,2809 -CY,DE,2,263,201912,885286 -CY,DE,2,264,201912,417347 -CY,DE,2,265,201912,252334 -CY,DE,2,274,201912,1793 -CY,DE,2,275,201912,779 -CY,DE,2,279,201912,6929 -CY,DE,2,282,201912,300612 -CY,DE,2,289,201912,323 -CY,DE,2,321,201912,326 -CY,DE,2,324,201912,760 -CY,DE,2,325,201912,74864 -CY,DK,1,011,201912,372021 -CY,DK,1,102,201912,612848 -CY,DK,1,103,201912,5893 -CY,DK,1,105,201912,123632 -CY,DK,1,106,201912,18971 -CY,DK,1,107,201912,13654 -CY,DK,1,108,201912,179234 -CY,DK,1,109,201912,7473 -CY,DK,1,110,201912,4864 -CY,DK,1,139,201912,6475 -CY,DK,1,141,201912,25042 -CY,DK,1,143,201912,3368 -CY,DK,1,151,201912,2171 -CY,DK,1,152,201912,1524 -CY,DK,1,171,201912,4299 -CY,DK,1,172,201912,17670 -CY,DK,1,203,201912,15001 -CY,DK,1,204,201912,114698 -CY,DK,1,205,201912,125144 -CY,DK,1,211,201912,13027 -CY,DK,1,212,201912,234098 -CY,DK,1,221,201912,13070 -CY,DK,1,222,201912,26684 -CY,DK,1,236,201912,15093 -CY,DK,1,257,201912,135 -CY,DK,1,259,201912,1602 -CY,DK,1,261,201912,597 -CY,DK,1,262,201912,119881 -CY,DK,1,263,201912,14276 -CY,DK,1,264,201912,18241 -CY,DK,1,265,201912,30014 -CY,DK,1,266,201912,13552 -CY,DK,1,271,201912,55600 -CY,DK,1,272,201912,2263 -CY,DK,1,273,201912,386 -CY,DK,1,275,201912,19363 -CY,DK,1,279,201912,118407 -CY,DK,1,281,201912,71532 -CY,DK,1,282,201912,712716 -CY,DK,1,289,201912,4115 -CY,DK,1,293,201912,4182 -CY,DK,1,309,201912,21133 -CY,DK,1,310,201912,99600 -CY,DK,1,324,201912,119857 -CY,DK,1,325,201912,405 -CY,DK,1,329,201912,9287 -CY,DK,2,011,201912,7484 -CY,DK,2,103,201912,6733 -CY,DK,2,105,201912,506971 -CY,DK,2,108,201912,41916 -CY,DK,2,110,201912,13678 -CY,DK,2,212,201912,200423 -CY,DK,2,265,201912,28000 -CY,DK,2,274,201912,2385 -CY,DK,2,279,201912,108 -CY,DO,1,120,201912,3467 -CY,DZ,1,192,201912,423758 -CY,DZ,2,110,201912,1227138 -CY,DZ,2,212,201912,250646 -CY,DZ,2,222,201912,122000 -CY,EC,1,012,201912,62110 -CY,EE,1,105,201912,918 -CY,EE,1,110,201912,12731 -CY,EE,1,161,201912,322940 -CY,EE,1,221,201912,1577 -CY,EE,1,265,201912,192272 -CY,EE,1,293,201912,3174 -CY,EE,2,139,201912,2593 -CY,EE,2,274,201912,2269 -CY,EE,2,310,201912,15375 -CY,EG,1,012,201912,12096 -CY,EG,1,022,201912,12731 -CY,EG,1,081,201912,16911 -CY,EG,1,089,201912,102275 -CY,EG,1,103,201912,192833 -CY,EG,1,162,201912,37867 -CY,EG,1,171,201912,133090 -CY,EG,1,172,201912,74402 -CY,EG,1,201,201912,217351 -CY,EG,1,204,201912,18724 -CY,EG,1,221,201912,9225 -CY,EG,1,222,201912,141575 -CY,EG,1,233,201912,9199 -CY,EG,1,235,201912,17694 -CY,EG,1,236,201912,12608 -CY,EG,1,237,201912,51177 -CY,EG,1,239,201912,19399 -CY,EG,1,241,201912,254545 -CY,EG,1,259,201912,26962 -CY,EG,1,265,201912,9 -CY,EG,1,325,201912,5392 -CY,EG,1,329,201912,10033 -CY,EG,2,012,201912,221737 -CY,EG,2,120,201912,8824 -CY,EG,2,222,201912,39900 -CY,EG,2,254,201912,72280 -CY,EG,2,265,201912,2820 -CY,EG,2,282,201912,81516 -CY,EG,2,293,201912,6450 -CY,ES,1,011,201912,20647 -CY,ES,1,012,201912,33046 -CY,ES,1,014,201912,190600 -CY,ES,1,081,201912,4704 -CY,ES,1,101,201912,214303 -CY,ES,1,102,201912,455198 -CY,ES,1,103,201912,405734 -CY,ES,1,104,201912,89798 -CY,ES,1,105,201912,130495 -CY,ES,1,106,201912,294579 -CY,ES,1,107,201912,239451 -CY,ES,1,108,201912,362071 -CY,ES,1,109,201912,976235 -CY,ES,1,110,201912,238686 -CY,ES,1,120,201912,394076 -CY,ES,1,132,201912,206869 -CY,ES,1,139,201912,261154 -CY,ES,1,141,201912,2629812 -CY,ES,1,143,201912,1008020 -CY,ES,1,151,201912,30459 -CY,ES,1,152,201912,323933 -CY,ES,1,161,201912,6291 -CY,ES,1,162,201912,247299 -CY,ES,1,171,201912,267546 -CY,ES,1,172,201912,47354 -CY,ES,1,181,201912,420 -CY,ES,1,192,201912,71220 -CY,ES,1,201,201912,417090 -CY,ES,1,202,201912,48946 -CY,ES,1,203,201912,61226 -CY,ES,1,204,201912,447561 -CY,ES,1,205,201912,172970 -CY,ES,1,211,201912,22265 -CY,ES,1,212,201912,253545 -CY,ES,1,221,201912,22373 -CY,ES,1,222,201912,427183 -CY,ES,1,231,201912,32085 -CY,ES,1,233,201912,1306521 -CY,ES,1,234,201912,167660 -CY,ES,1,236,201912,16972 -CY,ES,1,237,201912,144280 -CY,ES,1,239,201912,20213 -CY,ES,1,241,201912,1736139 -CY,ES,1,242,201912,4553 -CY,ES,1,243,201912,40034 -CY,ES,1,244,201912,144992 -CY,ES,1,245,201912,50568 -CY,ES,1,251,201912,84619 -CY,ES,1,252,201912,3947 -CY,ES,1,257,201912,159166 -CY,ES,1,259,201912,140050 -CY,ES,1,261,201912,1285 -CY,ES,1,262,201912,33101 -CY,ES,1,263,201912,13150 -CY,ES,1,264,201912,20165 -CY,ES,1,265,201912,223698 -CY,ES,1,267,201912,5075 -CY,ES,1,268,201912,1327 -CY,ES,1,271,201912,204043 -CY,ES,1,272,201912,10596 -CY,ES,1,273,201912,33699 -CY,ES,1,274,201912,77726 -CY,ES,1,275,201912,75625 -CY,ES,1,279,201912,83137 -CY,ES,1,281,201912,87459 -CY,ES,1,282,201912,596004 -CY,ES,1,283,201912,1354 -CY,ES,1,289,201912,123257 -CY,ES,1,291,201912,1152391 -CY,ES,1,293,201912,34552 -CY,ES,1,309,201912,12274 -CY,ES,1,310,201912,149105 -CY,ES,1,321,201912,1458 -CY,ES,1,322,201912,296 -CY,ES,1,323,201912,31858 -CY,ES,1,324,201912,94177 -CY,ES,1,325,201912,41671 -CY,ES,1,329,201912,96879 -CY,ES,2,012,201912,80948 -CY,ES,2,103,201912,75250 -CY,ES,2,108,201912,55683 -CY,ES,2,152,201912,149 -CY,ES,2,212,201912,183189 -CY,ES,2,222,201912,113156 -CY,ES,2,262,201912,361 -CY,ES,2,263,201912,1642 -CY,ES,2,271,201912,11051 -CY,ES,2,273,201912,993 -CY,ES,2,274,201912,38767 -CY,ES,2,275,201912,86 -CY,ES,2,279,201912,4143 -CY,ES,2,282,201912,1540 -CY,ES,2,289,201912,18707 -CY,ET,2,212,201912,624989 -CY,FI,1,105,201912,78608 -CY,FI,1,108,201912,45336 -CY,FI,1,161,201912,313593 -CY,FI,1,162,201912,39418 -CY,FI,1,171,201912,583808 -CY,FI,1,205,201912,2395 -CY,FI,1,222,201912,29337 -CY,FI,1,282,201912,430456 -CY,FI,1,325,201912,19274 -CY,FI,2,011,201912,3167 -CY,FI,2,012,201912,5071 -CY,FI,2,105,201912,345051 -CY,FI,2,106,201912,9160 -CY,FI,2,110,201912,5939 -CY,FI,2,274,201912,9720 -CY,FR,1,011,201912,1315197 -CY,FR,1,012,201912,34535 -CY,FR,1,030,201912,53401 -CY,FR,1,081,201912,3110 -CY,FR,1,101,201912,435378 -CY,FR,1,102,201912,203692 -CY,FR,1,103,201912,164955 -CY,FR,1,104,201912,50428 -CY,FR,1,105,201912,301640 -CY,FR,1,106,201912,1343290 -CY,FR,1,107,201912,111281 -CY,FR,1,108,201912,443801 -CY,FR,1,109,201912,135183 -CY,FR,1,110,201912,1322805 -CY,FR,1,131,201912,322 -CY,FR,1,139,201912,74288 -CY,FR,1,141,201912,138273 -CY,FR,1,143,201912,19212 -CY,FR,1,151,201912,162451 -CY,FR,1,152,201912,187872 -CY,FR,1,162,201912,70633 -CY,FR,1,171,201912,72920 -CY,FR,1,172,201912,2984 -CY,FR,1,192,201912,2416216 -CY,FR,1,201,201912,294857 -CY,FR,1,202,201912,65929 -CY,FR,1,203,201912,23541 -CY,FR,1,204,201912,1000078 -CY,FR,1,205,201912,334600 -CY,FR,1,211,201912,592 -CY,FR,1,212,201912,328144 -CY,FR,1,221,201912,21599 -CY,FR,1,222,201912,217251 -CY,FR,1,231,201912,89348 -CY,FR,1,233,201912,6627 -CY,FR,1,234,201912,27025 -CY,FR,1,239,201912,29030 -CY,FR,1,244,201912,41265 -CY,FR,1,254,201912,14289 -CY,FR,1,257,201912,52389 -CY,FR,1,259,201912,96698 -CY,FR,1,261,201912,120513 -CY,FR,1,262,201912,31568 -CY,FR,1,263,201912,63762 -CY,FR,1,264,201912,28380 -CY,FR,1,265,201912,299604 -CY,FR,1,266,201912,44859 -CY,FR,1,267,201912,2136 -CY,FR,1,271,201912,41972 -CY,FR,1,272,201912,8465 -CY,FR,1,273,201912,40863 -CY,FR,1,274,201912,2149 -CY,FR,1,275,201912,90550 -CY,FR,1,279,201912,141330 -CY,FR,1,281,201912,249547 -CY,FR,1,282,201912,159153 -CY,FR,1,283,201912,61668 -CY,FR,1,289,201912,41413 -CY,FR,1,291,201912,963888 -CY,FR,1,292,201912,1029 -CY,FR,1,293,201912,135470 -CY,FR,1,309,201912,3287 -CY,FR,1,310,201912,7173 -CY,FR,1,321,201912,224482 -CY,FR,1,322,201912,5035 -CY,FR,1,323,201912,29754 -CY,FR,1,324,201912,15221 -CY,FR,1,325,201912,204101 -CY,FR,1,329,201912,126319 -CY,FR,2,011,201912,666 -CY,FR,2,012,201912,624 -CY,FR,2,030,201912,88550 -CY,FR,2,081,201912,104182 -CY,FR,2,103,201912,97111 -CY,FR,2,105,201912,81670 -CY,FR,2,110,201912,8570 -CY,FR,2,152,201912,52 -CY,FR,2,212,201912,999131 -CY,FR,2,222,201912,22736 -CY,FR,2,231,201912,247 -CY,FR,2,262,201912,33 -CY,FR,2,263,201912,931797 -CY,FR,2,271,201912,71433 -CY,FR,2,273,201912,21889 -CY,FR,2,274,201912,5142 -CY,FR,2,279,201912,341 -CY,FR,2,323,201912,125 -CY,GB,1,011,201912,83512 -CY,GB,1,012,201912,45766 -CY,GB,1,014,201912,74137 -CY,GB,1,030,201912,3576 -CY,GB,1,081,201912,13881 -CY,GB,1,089,201912,20 -CY,GB,1,101,201912,304123 -CY,GB,1,102,201912,425366 -CY,GB,1,103,201912,582903 -CY,GB,1,104,201912,231386 -CY,GB,1,105,201912,292242 -CY,GB,1,106,201912,683935 -CY,GB,1,107,201912,379545 -CY,GB,1,108,201912,1796305 -CY,GB,1,109,201912,293529 -CY,GB,1,110,201912,1896568 -CY,GB,1,132,201912,2777 -CY,GB,1,139,201912,162933 -CY,GB,1,141,201912,1952344 -CY,GB,1,143,201912,239099 -CY,GB,1,151,201912,91046 -CY,GB,1,152,201912,250766 -CY,GB,1,161,201912,157 -CY,GB,1,162,201912,48297 -CY,GB,1,171,201912,29619 -CY,GB,1,172,201912,182996 -CY,GB,1,192,201912,22733 -CY,GB,1,201,201912,316574 -CY,GB,1,202,201912,196940 -CY,GB,1,203,201912,230371 -CY,GB,1,204,201912,389274 -CY,GB,1,205,201912,255916 -CY,GB,1,211,201912,222686 -CY,GB,1,212,201912,651840 -CY,GB,1,221,201912,40040 -CY,GB,1,222,201912,424127 -CY,GB,1,231,201912,81386 -CY,GB,1,232,201912,783 -CY,GB,1,233,201912,37 -CY,GB,1,234,201912,31648 -CY,GB,1,236,201912,53 -CY,GB,1,237,201912,3530 -CY,GB,1,239,201912,16144 -CY,GB,1,241,201912,11896 -CY,GB,1,242,201912,152 -CY,GB,1,244,201912,499906 -CY,GB,1,245,201912,701 -CY,GB,1,251,201912,79 -CY,GB,1,252,201912,488 -CY,GB,1,254,201912,24288 -CY,GB,1,257,201912,102451 -CY,GB,1,259,201912,238922 -CY,GB,1,261,201912,14432 -CY,GB,1,262,201912,365759 -CY,GB,1,263,201912,140264 -CY,GB,1,264,201912,96952 -CY,GB,1,265,201912,591073 -CY,GB,1,266,201912,53040 -CY,GB,1,267,201912,17318 -CY,GB,1,268,201912,68 -CY,GB,1,271,201912,118945 -CY,GB,1,272,201912,51551 -CY,GB,1,273,201912,343785 -CY,GB,1,274,201912,58124 -CY,GB,1,275,201912,161196 -CY,GB,1,279,201912,186632 -CY,GB,1,281,201912,380511 -CY,GB,1,282,201912,521495 -CY,GB,1,283,201912,79847 -CY,GB,1,284,201912,7260 -CY,GB,1,289,201912,124262 -CY,GB,1,291,201912,22165745 -CY,GB,1,292,201912,103417 -CY,GB,1,293,201912,371251 -CY,GB,1,302,201912,6142 -CY,GB,1,303,201912,145 -CY,GB,1,309,201912,192778 -CY,GB,1,310,201912,19664 -CY,GB,1,321,201912,15164 -CY,GB,1,322,201912,6239 -CY,GB,1,323,201912,28658 -CY,GB,1,324,201912,247517 -CY,GB,1,325,201912,234952 -CY,GB,1,329,201912,132307 -CY,GB,2,011,201912,679026 -CY,GB,2,012,201912,468006 -CY,GB,2,081,201912,141168 -CY,GB,2,101,201912,23978 -CY,GB,2,103,201912,69405 -CY,GB,2,105,201912,9010139 -CY,GB,2,106,201912,85996 -CY,GB,2,107,201912,12673 -CY,GB,2,108,201912,53257 -CY,GB,2,109,201912,44 -CY,GB,2,110,201912,76687 -CY,GB,2,139,201912,496 -CY,GB,2,141,201912,59211 -CY,GB,2,143,201912,6567 -CY,GB,2,151,201912,2898 -CY,GB,2,152,201912,10036 -CY,GB,2,172,201912,7991 -CY,GB,2,201,201912,6126 -CY,GB,2,204,201912,28207 -CY,GB,2,205,201912,76933 -CY,GB,2,212,201912,1108731 -CY,GB,2,222,201912,40858 -CY,GB,2,231,201912,162 -CY,GB,2,234,201912,15 -CY,GB,2,244,201912,928364 -CY,GB,2,257,201912,8364 -CY,GB,2,259,201912,1922 -CY,GB,2,261,201912,8848 -CY,GB,2,262,201912,5671 -CY,GB,2,263,201912,2520 -CY,GB,2,264,201912,2554 -CY,GB,2,265,201912,121548 -CY,GB,2,266,201912,40958 -CY,GB,2,267,201912,3585 -CY,GB,2,271,201912,5514 -CY,GB,2,273,201912,2315 -CY,GB,2,274,201912,12782 -CY,GB,2,275,201912,105901 -CY,GB,2,279,201912,1997 -CY,GB,2,281,201912,168 -CY,GB,2,282,201912,113444 -CY,GB,2,289,201912,2543 -CY,GB,2,321,201912,294 -CY,GB,2,323,201912,142 -CY,GB,2,324,201912,4065 -CY,GB,2,325,201912,534164 -CY,GB,2,329,201912,1073 -CY,GE,1,201,201912,21802 -CY,GE,2,329,201912,6000 -CY,GH,2,103,201912,25509 -CY,GN,2,103,201912,25229 -CY,GN,2,110,201912,12453 -CY,GR,1,011,201912,1244867 -CY,GR,1,012,201912,1444653 -CY,GR,1,013,201912,122314 -CY,GR,1,014,201912,251486 -CY,GR,1,022,201912,24107 -CY,GR,1,023,201912,418 -CY,GR,1,030,201912,353967 -CY,GR,1,081,201912,42896 -CY,GR,1,089,201912,39418 -CY,GR,1,101,201912,2047149 -CY,GR,1,102,201912,704394 -CY,GR,1,103,201912,1763393 -CY,GR,1,104,201912,602670 -CY,GR,1,105,201912,2215406 -CY,GR,1,106,201912,1338704 -CY,GR,1,107,201912,1995764 -CY,GR,1,108,201912,6406727 -CY,GR,1,109,201912,408306 -CY,GR,1,110,201912,3429359 -CY,GR,1,120,201912,2030368 -CY,GR,1,131,201912,5765 -CY,GR,1,132,201912,168682 -CY,GR,1,139,201912,706552 -CY,GR,1,141,201912,3236219 -CY,GR,1,142,201912,50682 -CY,GR,1,143,201912,384902 -CY,GR,1,151,201912,249565 -CY,GR,1,152,201912,876222 -CY,GR,1,161,201912,85150 -CY,GR,1,162,201912,994154 -CY,GR,1,171,201912,197665 -CY,GR,1,172,201912,2016535 -CY,GR,1,192,201912,22317281 -CY,GR,1,201,201912,1228055 -CY,GR,1,202,201912,623305 -CY,GR,1,203,201912,1715789 -CY,GR,1,204,201912,5034416 -CY,GR,1,205,201912,1249826 -CY,GR,1,206,201912,1055 -CY,GR,1,211,201912,83296 -CY,GR,1,212,201912,9603041 -CY,GR,1,221,201912,713218 -CY,GR,1,222,201912,3596038 -CY,GR,1,231,201912,355355 -CY,GR,1,232,201912,67310 -CY,GR,1,233,201912,155899 -CY,GR,1,234,201912,373394 -CY,GR,1,235,201912,2868 -CY,GR,1,236,201912,808502 -CY,GR,1,237,201912,686543 -CY,GR,1,239,201912,283624 -CY,GR,1,241,201912,4754414 -CY,GR,1,242,201912,735839 -CY,GR,1,243,201912,666633 -CY,GR,1,244,201912,822176 -CY,GR,1,245,201912,95349 -CY,GR,1,251,201912,1619756 -CY,GR,1,252,201912,40103 -CY,GR,1,253,201912,23509 -CY,GR,1,254,201912,224395 -CY,GR,1,257,201912,584270 -CY,GR,1,259,201912,1706667 -CY,GR,1,261,201912,403263 -CY,GR,1,262,201912,2205692 -CY,GR,1,263,201912,4415879 -CY,GR,1,264,201912,2271250 -CY,GR,1,265,201912,1132642 -CY,GR,1,266,201912,20712 -CY,GR,1,267,201912,94613 -CY,GR,1,268,201912,2794 -CY,GR,1,271,201912,2021627 -CY,GR,1,272,201912,143010 -CY,GR,1,273,201912,2439983 -CY,GR,1,274,201912,917150 -CY,GR,1,275,201912,2654804 -CY,GR,1,279,201912,895773 -CY,GR,1,281,201912,387134 -CY,GR,1,282,201912,2410060 -CY,GR,1,283,201912,204104 -CY,GR,1,284,201912,8812 -CY,GR,1,289,201912,718454 -CY,GR,1,291,201912,28000 -CY,GR,1,292,201912,34069 -CY,GR,1,293,201912,519069 -CY,GR,1,301,201912,1463 -CY,GR,1,309,201912,243035 -CY,GR,1,310,201912,1232730 -CY,GR,1,321,201912,400553 -CY,GR,1,322,201912,86724 -CY,GR,1,323,201912,173991 -CY,GR,1,324,201912,2034052 -CY,GR,1,325,201912,1079067 -CY,GR,1,329,201912,1019526 -CY,GR,2,011,201912,1050824 -CY,GR,2,012,201912,47721 -CY,GR,2,014,201912,13765 -CY,GR,2,030,201912,4701 -CY,GR,2,081,201912,88719 -CY,GR,2,101,201912,217495 -CY,GR,2,102,201912,60480 -CY,GR,2,103,201912,27091 -CY,GR,2,104,201912,328185 -CY,GR,2,105,201912,739253 -CY,GR,2,107,201912,43279 -CY,GR,2,108,201912,172581 -CY,GR,2,109,201912,127645 -CY,GR,2,110,201912,142537 -CY,GR,2,120,201912,170325 -CY,GR,2,132,201912,3819 -CY,GR,2,139,201912,2285 -CY,GR,2,141,201912,186986 -CY,GR,2,143,201912,50482 -CY,GR,2,151,201912,15141 -CY,GR,2,152,201912,74119 -CY,GR,2,162,201912,3933 -CY,GR,2,172,201912,7004 -CY,GR,2,201,201912,1675891 -CY,GR,2,202,201912,169 -CY,GR,2,203,201912,17342 -CY,GR,2,204,201912,210971 -CY,GR,2,205,201912,137537 -CY,GR,2,211,201912,581072 -CY,GR,2,212,201912,1072045 -CY,GR,2,221,201912,83360 -CY,GR,2,222,201912,219596 -CY,GR,2,232,201912,11369 -CY,GR,2,235,201912,25 -CY,GR,2,239,201912,7359 -CY,GR,2,257,201912,5531 -CY,GR,2,259,201912,88364 -CY,GR,2,262,201912,249700 -CY,GR,2,263,201912,207612 -CY,GR,2,264,201912,251454 -CY,GR,2,265,201912,120075 -CY,GR,2,271,201912,1254 -CY,GR,2,272,201912,124481 -CY,GR,2,273,201912,41 -CY,GR,2,274,201912,59920 -CY,GR,2,275,201912,29727 -CY,GR,2,279,201912,1360533 -CY,GR,2,281,201912,630912 -CY,GR,2,282,201912,758158 -CY,GR,2,289,201912,69847 -CY,GR,2,293,201912,5090 -CY,GR,2,309,201912,57000 -CY,GR,2,310,201912,20531 -CY,GR,2,321,201912,220425 -CY,GR,2,324,201912,9881 -CY,GR,2,325,201912,1189271 -CY,GR,2,329,201912,73958 -CY,HK,1,139,201912,2245 -CY,HK,1,141,201912,17037 -CY,HK,1,151,201912,2097 -CY,HK,1,152,201912,202 -CY,HK,1,172,201912,16248 -CY,HK,1,204,201912,21289 -CY,HK,1,205,201912,21153 -CY,HK,1,221,201912,30153 -CY,HK,1,222,201912,7305 -CY,HK,1,244,201912,49991 -CY,HK,1,251,201912,10989 -CY,HK,1,257,201912,33434 -CY,HK,1,259,201912,6038 -CY,HK,1,261,201912,322 -CY,HK,1,262,201912,971443 -CY,HK,1,263,201912,494837 -CY,HK,1,264,201912,57436 -CY,HK,1,265,201912,22474 -CY,HK,1,266,201912,7406 -CY,HK,1,267,201912,61309 -CY,HK,1,271,201912,51900 -CY,HK,1,272,201912,2521 -CY,HK,1,273,201912,31736 -CY,HK,1,274,201912,16826 -CY,HK,1,275,201912,56476 -CY,HK,1,279,201912,41871 -CY,HK,1,281,201912,142 -CY,HK,1,282,201912,9655 -CY,HK,1,284,201912,159 -CY,HK,1,289,201912,650 -CY,HK,1,309,201912,174 -CY,HK,1,310,201912,38282 -CY,HK,1,321,201912,372250 -CY,HK,1,324,201912,43138 -CY,HK,1,325,201912,7504 -CY,HK,1,329,201912,70759 -CY,HK,2,103,201912,197295 -CY,HK,2,105,201912,36690 -CY,HK,2,110,201912,14707 -CY,HK,2,141,201912,84998 -CY,HK,2,143,201912,8221 -CY,HK,2,151,201912,15956 -CY,HK,2,152,201912,45944 -CY,HK,2,205,201912,190000 -CY,HK,2,212,201912,18667 -CY,HK,2,263,201912,2480 -CY,HK,2,264,201912,55456 -CY,HK,2,265,201912,88759 -CY,HK,2,267,201912,355155 -CY,HK,2,282,201912,20541 -CY,HK,2,325,201912,20100 -CY,HN,1,120,201912,16912 -CY,HR,1,279,201912,1199 -CY,HR,1,281,201912,29559 -CY,HR,1,323,201912,20594 -CY,HR,2,212,201912,124359 -CY,HR,2,222,201912,1409 -CY,HR,2,263,201912,5230 -CY,HR,2,274,201912,27645 -CY,HR,2,279,201912,2138 -CY,HR,2,282,201912,32449 -CY,HU,1,101,201912,74196 -CY,HU,1,103,201912,53391 -CY,HU,1,104,201912,42938 -CY,HU,1,105,201912,2016 -CY,HU,1,109,201912,56083 -CY,HU,1,110,201912,1226974 -CY,HU,1,204,201912,13658 -CY,HU,1,212,201912,35135 -CY,HU,1,221,201912,39255 -CY,HU,1,222,201912,47580 -CY,HU,1,231,201912,20919 -CY,HU,1,236,201912,60064 -CY,HU,1,257,201912,1416 -CY,HU,1,259,201912,3808 -CY,HU,1,262,201912,58037 -CY,HU,1,263,201912,678642 -CY,HU,1,265,201912,21523 -CY,HU,1,271,201912,79172 -CY,HU,1,273,201912,6703 -CY,HU,1,274,201912,1556 -CY,HU,1,279,201912,985 -CY,HU,1,281,201912,646 -CY,HU,1,293,201912,25526 -CY,HU,1,325,201912,44088 -CY,HU,2,263,201912,6390 -CY,HU,2,274,201912,8688 -CY,HU,2,279,201912,534 -CY,ID,1,102,201912,194642 -CY,ID,1,141,201912,1191 -CY,ID,1,152,201912,190 -CY,ID,1,161,201912,31259 -CY,ID,1,162,201912,914 -CY,ID,1,171,201912,659948 -CY,ID,1,172,201912,52184 -CY,ID,1,221,201912,47791 -CY,ID,1,233,201912,39433 -CY,ID,1,274,201912,2157 -CY,ID,1,275,201912,43924 -CY,ID,1,282,201912,36708 -CY,ID,1,293,201912,112580 -CY,ID,1,310,201912,80539 -CY,ID,1,321,201912,25031 -CY,ID,2,282,201912,35589 -CY,IE,1,011,201912,25680 -CY,IE,1,030,201912,9266 -CY,IE,1,101,201912,91175 -CY,IE,1,105,201912,447135 -CY,IE,1,108,201912,43454 -CY,IE,1,109,201912,40513 -CY,IE,1,110,201912,40493 -CY,IE,1,141,201912,5891 -CY,IE,1,171,201912,902 -CY,IE,1,205,201912,38912 -CY,IE,1,212,201912,241084 -CY,IE,1,221,201912,3400 -CY,IE,1,222,201912,15914 -CY,IE,1,262,201912,52382 -CY,IE,1,271,201912,3175 -CY,IE,1,272,201912,2489 -CY,IE,1,279,201912,143 -CY,IE,1,281,201912,752 -CY,IE,1,282,201912,64101 -CY,IE,1,293,201912,1130 -CY,IE,1,325,201912,5280 -CY,IE,2,012,201912,95316 -CY,IE,2,081,201912,15312 -CY,IE,2,105,201912,4872 -CY,IE,2,222,201912,30132 -CY,IL,1,011,201912,278595 -CY,IL,1,012,201912,36012 -CY,IL,1,013,201912,18132 -CY,IL,1,014,201912,4984 -CY,IL,1,030,201912,1769 -CY,IL,1,108,201912,69066 -CY,IL,1,110,201912,66416 -CY,IL,1,139,201912,2634 -CY,IL,1,141,201912,1701 -CY,IL,1,143,201912,318 -CY,IL,1,151,201912,101 -CY,IL,1,172,201912,149441 -CY,IL,1,192,201912,23896438 -CY,IL,1,201,201912,79397 -CY,IL,1,202,201912,19593 -CY,IL,1,203,201912,16715 -CY,IL,1,204,201912,358847 -CY,IL,1,205,201912,4795 -CY,IL,1,221,201912,194709 -CY,IL,1,222,201912,221254 -CY,IL,1,231,201912,201669 -CY,IL,1,236,201912,15419 -CY,IL,1,237,201912,55993 -CY,IL,1,251,201912,73735 -CY,IL,1,254,201912,1572 -CY,IL,1,257,201912,5019 -CY,IL,1,259,201912,434360 -CY,IL,1,261,201912,100 -CY,IL,1,262,201912,18761 -CY,IL,1,263,201912,40269 -CY,IL,1,264,201912,6916 -CY,IL,1,265,201912,33831 -CY,IL,1,266,201912,5232 -CY,IL,1,271,201912,90140 -CY,IL,1,272,201912,17476 -CY,IL,1,273,201912,11245 -CY,IL,1,279,201912,164452 -CY,IL,1,281,201912,1617 -CY,IL,1,282,201912,20781 -CY,IL,1,283,201912,78831 -CY,IL,1,284,201912,1953 -CY,IL,1,289,201912,398 -CY,IL,1,293,201912,2578 -CY,IL,1,310,201912,15558 -CY,IL,1,321,201912,12567 -CY,IL,1,324,201912,3260 -CY,IL,1,325,201912,260106 -CY,IL,1,329,201912,8699 -CY,IL,2,012,201912,21394 -CY,IL,2,030,201912,1675742 -CY,IL,2,081,201912,304490 -CY,IL,2,101,201912,14020 -CY,IL,2,102,201912,33625 -CY,IL,2,109,201912,16031 -CY,IL,2,110,201912,218061 -CY,IL,2,152,201912,2643 -CY,IL,2,172,201912,20722 -CY,IL,2,212,201912,33910 -CY,IL,2,222,201912,211022 -CY,IL,2,235,201912,19675 -CY,IL,2,251,201912,154950 -CY,IL,2,259,201912,27748 -CY,IL,2,262,201912,33624 -CY,IL,2,263,201912,1204532 -CY,IL,2,264,201912,2475 -CY,IL,2,265,201912,166550 -CY,IL,2,274,201912,124951 -CY,IL,2,275,201912,1042 -CY,IL,2,279,201912,4116 -CY,IL,2,281,201912,15195 -CY,IL,2,282,201912,39249 -CY,IL,2,293,201912,44533 -CY,IN,1,011,201912,256974 -CY,IN,1,012,201912,1077 -CY,IN,1,081,201912,314 -CY,IN,1,102,201912,137542 -CY,IN,1,103,201912,17099 -CY,IN,1,108,201912,62081 -CY,IN,1,132,201912,6639 -CY,IN,1,139,201912,67489 -CY,IN,1,141,201912,28664 -CY,IN,1,151,201912,26539 -CY,IN,1,152,201912,1307 -CY,IN,1,162,201912,4690 -CY,IN,1,172,201912,25333 -CY,IN,1,201,201912,947512 -CY,IN,1,202,201912,50766 -CY,IN,1,204,201912,3861 -CY,IN,1,205,201912,43818 -CY,IN,1,211,201912,3473022 -CY,IN,1,212,201912,685775 -CY,IN,1,221,201912,127468 -CY,IN,1,222,201912,45312 -CY,IN,1,231,201912,23629 -CY,IN,1,233,201912,71780 -CY,IN,1,234,201912,20 -CY,IN,1,239,201912,750 -CY,IN,1,241,201912,126432 -CY,IN,1,242,201912,17533 -CY,IN,1,257,201912,6863 -CY,IN,1,259,201912,151803 -CY,IN,1,266,201912,4891 -CY,IN,1,271,201912,145089 -CY,IN,1,273,201912,84401 -CY,IN,1,275,201912,11182 -CY,IN,1,281,201912,23721 -CY,IN,1,282,201912,9831 -CY,IN,1,289,201912,19257 -CY,IN,1,310,201912,44107 -CY,IN,1,321,201912,85934 -CY,IN,1,325,201912,24344 -CY,IN,1,329,201912,7103 -CY,IN,2,212,201912,262230 -CY,IN,2,254,201912,19330 -CY,IN,2,282,201912,73456 -CY,IN,2,329,201912,1400 -CY,IQ,2,212,201912,1048315 -CY,IQ,2,282,201912,26187 -CY,IQ,2,329,201912,100 -CY,IR,2,205,201912,192637 -CY,IR,2,212,201912,812753 -CY,IR,2,265,201912,69774 -CY,IS,2,274,201912,6653 -CY,IT,1,011,201912,110737 -CY,IT,1,012,201912,342391 -CY,IT,1,013,201912,44192 -CY,IT,1,014,201912,48 -CY,IT,1,023,201912,46 -CY,IT,1,081,201912,18526 -CY,IT,1,089,201912,942 -CY,IT,1,101,201912,414138 -CY,IT,1,102,201912,15804 -CY,IT,1,103,201912,283404 -CY,IT,1,104,201912,55529 -CY,IT,1,105,201912,211535 -CY,IT,1,106,201912,63182 -CY,IT,1,107,201912,760117 -CY,IT,1,108,201912,1426120 -CY,IT,1,109,201912,267217 -CY,IT,1,110,201912,660326 -CY,IT,1,131,201912,1417 -CY,IT,1,132,201912,82083 -CY,IT,1,139,201912,363718 -CY,IT,1,141,201912,3087356 -CY,IT,1,143,201912,585850 -CY,IT,1,151,201912,378062 -CY,IT,1,152,201912,660679 -CY,IT,1,161,201912,97450 -CY,IT,1,162,201912,957161 -CY,IT,1,171,201912,638555 -CY,IT,1,172,201912,319597 -CY,IT,1,192,201912,4247239 -CY,IT,1,201,201912,5729313 -CY,IT,1,202,201912,137460 -CY,IT,1,203,201912,438234 -CY,IT,1,204,201912,845123 -CY,IT,1,205,201912,377573 -CY,IT,1,211,201912,362849 -CY,IT,1,212,201912,458742 -CY,IT,1,221,201912,510642 -CY,IT,1,222,201912,1916143 -CY,IT,1,231,201912,571914 -CY,IT,1,232,201912,19292 -CY,IT,1,233,201912,1324708 -CY,IT,1,234,201912,220872 -CY,IT,1,235,201912,11580 -CY,IT,1,236,201912,186054 -CY,IT,1,237,201912,281110 -CY,IT,1,239,201912,475056 -CY,IT,1,241,201912,5751316 -CY,IT,1,242,201912,115979 -CY,IT,1,243,201912,120221 -CY,IT,1,244,201912,307989 -CY,IT,1,245,201912,10992 -CY,IT,1,251,201912,144704 -CY,IT,1,252,201912,203533 -CY,IT,1,254,201912,316608 -CY,IT,1,257,201912,520418 -CY,IT,1,259,201912,802354 -CY,IT,1,261,201912,5655 -CY,IT,1,262,201912,226161 -CY,IT,1,263,201912,389549 -CY,IT,1,264,201912,136748 -CY,IT,1,265,201912,524377 -CY,IT,1,266,201912,14637 -CY,IT,1,267,201912,2255 -CY,IT,1,268,201912,660 -CY,IT,1,271,201912,218588 -CY,IT,1,272,201912,108150 -CY,IT,1,273,201912,208748 -CY,IT,1,274,201912,488882 -CY,IT,1,275,201912,731744 -CY,IT,1,279,201912,193716 -CY,IT,1,281,201912,1067961 -CY,IT,1,282,201912,1733501 -CY,IT,1,283,201912,226586 -CY,IT,1,284,201912,315180 -CY,IT,1,289,201912,579034 -CY,IT,1,291,201912,1215849 -CY,IT,1,292,201912,30259 -CY,IT,1,293,201912,437821 -CY,IT,1,309,201912,118839 -CY,IT,1,310,201912,2684668 -CY,IT,1,321,201912,277212 -CY,IT,1,322,201912,4340 -CY,IT,1,323,201912,110510 -CY,IT,1,324,201912,109399 -CY,IT,1,325,201912,1367248 -CY,IT,1,329,201912,215535 -CY,IT,2,011,201912,77851 -CY,IT,2,012,201912,694411 -CY,IT,2,101,201912,20004 -CY,IT,2,139,201912,182 -CY,IT,2,141,201912,64060 -CY,IT,2,143,201912,7069 -CY,IT,2,151,201912,4280 -CY,IT,2,152,201912,13638 -CY,IT,2,162,201912,201 -CY,IT,2,203,201912,6701 -CY,IT,2,212,201912,85446 -CY,IT,2,222,201912,74410 -CY,IT,2,231,201912,25 -CY,IT,2,244,201912,248490 -CY,IT,2,259,201912,57 -CY,IT,2,262,201912,63 -CY,IT,2,263,201912,1205 -CY,IT,2,264,201912,1905 -CY,IT,2,265,201912,148262 -CY,IT,2,271,201912,10 -CY,IT,2,273,201912,40 -CY,IT,2,274,201912,5206 -CY,IT,2,282,201912,13417 -CY,IT,2,289,201912,48313 -CY,IT,2,321,201912,1417 -CY,IT,2,325,201912,2175 -CY,IT,2,329,201912,732 -CY,JM,2,212,201912,1915 -CY,JO,1,108,201912,17877 -CY,JO,1,120,201912,1058 -CY,JO,1,201,201912,3739 -CY,JO,1,204,201912,696 -CY,JO,1,222,201912,10616 -CY,JO,1,259,201912,480 -CY,JO,1,325,201912,1211 -CY,JO,1,329,201912,44045 -CY,JO,2,030,201912,43338 -CY,JO,2,105,201912,26379 -CY,JO,2,212,201912,1245938 -CY,JO,2,254,201912,15243 -CY,JO,2,274,201912,1488 -CY,JO,2,289,201912,1142 -CY,JO,2,291,201912,13500 -CY,JO,2,292,201912,1000 -CY,JO,2,329,201912,26695 -CY,JP,1,141,201912,141 -CY,JP,1,172,201912,19008 -CY,JP,1,204,201912,2032 -CY,JP,1,205,201912,393 -CY,JP,1,212,201912,11740 -CY,JP,1,221,201912,104204 -CY,JP,1,222,201912,11378 -CY,JP,1,231,201912,1382 -CY,JP,1,254,201912,3212 -CY,JP,1,257,201912,79294 -CY,JP,1,259,201912,6682 -CY,JP,1,262,201912,2155 -CY,JP,1,264,201912,2302 -CY,JP,1,265,201912,59708 -CY,JP,1,267,201912,73326 -CY,JP,1,273,201912,949 -CY,JP,1,274,201912,10287 -CY,JP,1,279,201912,3118 -CY,JP,1,281,201912,24535 -CY,JP,1,282,201912,127625 -CY,JP,1,283,201912,41674 -CY,JP,1,289,201912,189 -CY,JP,1,291,201912,6419523 -CY,JP,1,293,201912,151800 -CY,JP,1,309,201912,1181 -CY,JP,1,310,201912,445 -CY,JP,1,323,201912,28366 -CY,JP,1,325,201912,4047 -CY,JP,1,329,201912,3294 -CY,JP,2,141,201912,14078 -CY,JP,2,143,201912,2381 -CY,JP,2,151,201912,5816 -CY,JP,2,152,201912,2916 -CY,JP,2,204,201912,15298 -CY,JP,2,222,201912,1940 -CY,JP,2,262,201912,660 -CY,JP,2,282,201912,6024 -CY,JP,2,321,201912,120 -CY,KE,1,011,201912,129082 -CY,KE,2,212,201912,25918 -CY,KE,2,262,201912,2713 -CY,KH,1,106,201912,20660 -CY,KH,2,103,201912,37369 -CY,KH,2,110,201912,2191 -CY,KH,2,141,201912,1012 -CY,KH,2,152,201912,3716 -CY,KH,2,212,201912,40886 -CY,KR,1,139,201912,5112 -CY,KR,1,141,201912,105 -CY,KR,1,171,201912,31090 -CY,KR,1,201,201912,1069755 -CY,KR,1,203,201912,869 -CY,KR,1,204,201912,10151 -CY,KR,1,205,201912,188626 -CY,KR,1,212,201912,19812 -CY,KR,1,221,201912,47366 -CY,KR,1,222,201912,19078 -CY,KR,1,239,201912,3775 -CY,KR,1,257,201912,425 -CY,KR,1,262,201912,1322 -CY,KR,1,263,201912,8372 -CY,KR,1,265,201912,6378 -CY,KR,1,271,201912,266 -CY,KR,1,272,201912,474915 -CY,KR,1,275,201912,46778 -CY,KR,1,279,201912,12052 -CY,KR,1,282,201912,49625 -CY,KR,1,289,201912,171778 -CY,KR,1,291,201912,1194026 -CY,KR,1,321,201912,12965 -CY,KR,1,323,201912,18144 -CY,KR,1,325,201912,26277 -CY,KR,1,329,201912,76863 -CY,KR,2,103,201912,44440 -CY,KR,2,105,201912,44056 -CY,KR,2,110,201912,7813 -CY,KR,2,141,201912,11041 -CY,KR,2,143,201912,3397 -CY,KR,2,151,201912,920 -CY,KR,2,152,201912,1009 -CY,KR,2,162,201912,132 -CY,KR,2,212,201912,69514 -CY,KR,2,262,201912,28400 -CY,KR,2,263,201912,3798 -CY,KR,2,264,201912,4900 -CY,KR,2,281,201912,2320 -CY,KR,2,282,201912,34881 -CY,KW,2,014,201912,4790 -CY,KW,2,030,201912,200274 -CY,KW,2,107,201912,47114 -CY,KW,2,141,201912,7254 -CY,KW,2,152,201912,8062 -CY,KW,2,212,201912,165916 -CY,KW,2,254,201912,139083 -CY,KW,2,262,201912,26345 -CY,KW,2,274,201912,7105 -CY,KZ,2,141,201912,129 -CY,KZ,2,212,201912,467095 -CY,LB,1,011,201912,434 -CY,LB,1,012,201912,2551 -CY,LB,1,103,201912,19379 -CY,LB,1,104,201912,10 -CY,LB,1,106,201912,2789 -CY,LB,1,107,201912,1123 -CY,LB,1,108,201912,178614 -CY,LB,1,110,201912,4987 -CY,LB,1,141,201912,9853 -CY,LB,1,151,201912,3305 -CY,LB,1,172,201912,250921 -CY,LB,1,203,201912,21814 -CY,LB,1,204,201912,32327 -CY,LB,1,222,201912,234836 -CY,LB,1,244,201912,56415 -CY,LB,1,251,201912,303876 -CY,LB,1,259,201912,22198 -CY,LB,1,264,201912,14447 -CY,LB,1,265,201912,2189 -CY,LB,1,279,201912,9054 -CY,LB,1,282,201912,3171 -CY,LB,1,321,201912,37504 -CY,LB,1,329,201912,5147 -CY,LB,2,081,201912,29213 -CY,LB,2,101,201912,19907 -CY,LB,2,110,201912,64385 -CY,LB,2,141,201912,192 -CY,LB,2,172,201912,34494 -CY,LB,2,205,201912,11899 -CY,LB,2,212,201912,494275 -CY,LB,2,244,201912,319895 -CY,LB,2,265,201912,40145 -CY,LB,2,274,201912,3946 -CY,LB,2,289,201912,483 -CY,LB,2,291,201912,95000 -CY,LB,2,325,201912,559 -CY,LB,2,329,201912,1010 -CY,LI,1,139,201912,2238 -CY,LI,1,205,201912,284 -CY,LK,1,011,201912,3150 -CY,LK,1,012,201912,34383 -CY,LK,1,030,201912,4778 -CY,LK,1,102,201912,11555 -CY,LK,1,103,201912,17888 -CY,LK,1,104,201912,6320 -CY,LK,1,106,201912,16848 -CY,LK,1,107,201912,1923 -CY,LK,1,108,201912,7626 -CY,LK,1,110,201912,370 -CY,LK,1,141,201912,1568 -CY,LK,1,204,201912,3080 -CY,LK,2,103,201912,49618 -CY,LK,2,110,201912,27002 -CY,LK,2,212,201912,30578 -CY,LK,2,329,201912,43400 -CY,LT,1,089,201912,34652 -CY,LT,1,101,201912,137472 -CY,LT,1,103,201912,16256 -CY,LT,1,106,201912,25462 -CY,LT,1,108,201912,141240 -CY,LT,1,110,201912,12119 -CY,LT,1,161,201912,16151 -CY,LT,1,201,201912,724 -CY,LT,1,204,201912,3966 -CY,LT,1,263,201912,2298 -CY,LT,1,273,201912,39 -CY,LT,1,281,201912,129 -CY,LT,1,293,201912,30039 -CY,LT,1,310,201912,15968 -CY,LT,1,325,201912,34849 -CY,LT,2,103,201912,41302 -CY,LT,2,108,201912,119904 -CY,LT,2,204,201912,235 -CY,LT,2,212,201912,359987 -CY,LT,2,274,201912,667 -CY,LU,1,105,201912,60227 -CY,LU,1,107,201912,1714 -CY,LU,1,204,201912,7930 -CY,LU,1,222,201912,38554 -CY,LU,1,234,201912,24511 -CY,LU,1,241,201912,54459 -CY,LV,1,089,201912,52896 -CY,LV,1,105,201912,4262 -CY,LV,1,161,201912,88100 -CY,LV,1,266,201912,208 -CY,LV,1,325,201912,3069 -CY,LV,2,212,201912,235933 -CY,LV,2,274,201912,1493 -CY,LV,2,279,201912,28 -CY,LY,2,192,201912,11742019 -CY,LY,2,212,201912,727434 -CY,LY,2,222,201912,67764 -CY,MA,2,274,201912,40416 -CY,MA,2,282,201912,34544 -CY,MD,1,011,201912,1908662 -CY,MD,1,110,201912,16060 -CY,MD,2,212,201912,22390 -CY,MD,2,274,201912,3122 -CY,ME,2,274,201912,4114 -CY,MH,1,301,201912,8616442 -CY,MH,2,301,201912,11129652 -CY,MK,1,106,201912,1056 -CY,MK,1,107,201912,48771 -CY,MK,1,108,201912,256 -CY,MK,1,201,201912,16591 -CY,MK,2,212,201912,11830 -CY,MK,2,252,201912,76000 -CY,MM,1,102,201912,22617 -CY,MM,2,212,201912,364919 -CY,MO,2,143,201912,390 -CY,MO,2,151,201912,3208 -CY,MO,2,152,201912,1978 -CY,MT,1,212,201912,49902 -CY,MT,1,262,201912,7434 -CY,MT,1,265,201912,275570 -CY,MT,1,282,201912,13453 -CY,MT,2,103,201912,11114 -CY,MT,2,105,201912,15724 -CY,MT,2,108,201912,106522 -CY,MT,2,110,201912,8044 -CY,MT,2,120,201912,18889 -CY,MT,2,212,201912,104426 -CY,MT,2,222,201912,24086 -CY,MT,2,274,201912,5190 -CY,MT,2,325,201912,3683 -CY,MU,2,274,201912,110 -CY,MV,2,103,201912,48618 -CY,MV,2,110,201912,17909 -CY,MX,1,110,201912,12117 -CY,MX,1,120,201912,997 -CY,MX,1,139,201912,7339 -CY,MX,1,152,201912,1230 -CY,MX,1,221,201912,991 -CY,MX,1,222,201912,68 -CY,MX,1,262,201912,121360 -CY,MX,1,263,201912,92393 -CY,MX,1,265,201912,1874 -CY,MX,1,273,201912,286 -CY,MX,1,279,201912,4057 -CY,MX,1,281,201912,76 -CY,MX,1,282,201912,438 -CY,MX,1,293,201912,733 -CY,MX,1,325,201912,16814 -CY,MX,2,141,201912,4365 -CY,MX,2,151,201912,873 -CY,MX,2,152,201912,7081 -CY,MX,2,212,201912,2833416 -CY,MX,2,262,201912,650 -CY,MY,1,104,201912,21810 -CY,MY,1,108,201912,10590 -CY,MY,1,109,201912,28760 -CY,MY,1,139,201912,635 -CY,MY,1,141,201912,209 -CY,MY,1,162,201912,42432 -CY,MY,1,172,201912,21820 -CY,MY,1,201,201912,106102 -CY,MY,1,211,201912,5882 -CY,MY,1,221,201912,202429 -CY,MY,1,222,201912,66900 -CY,MY,1,243,201912,19928 -CY,MY,1,262,201912,432 -CY,MY,1,263,201912,29093 -CY,MY,1,265,201912,8168 -CY,MY,1,267,201912,49141 -CY,MY,1,282,201912,1619 -CY,MY,1,293,201912,1734 -CY,MY,1,310,201912,86367 -CY,MY,1,323,201912,8627 -CY,MY,2,012,201912,83945 -CY,MY,2,103,201912,24712 -CY,MY,2,110,201912,2899 -CY,MY,2,141,201912,2560 -CY,MY,2,152,201912,485 -CY,MY,2,201,201912,6898 -CY,MY,2,212,201912,239790 -CY,MY,2,263,201912,226 -CY,NG,1,108,201912,2306 -CY,NG,1,201,201912,97632 -CY,NG,1,204,201912,1310 -CY,NG,1,329,201912,1312 -CY,NG,2,141,201912,142 -CY,NG,2,263,201912,700 -CY,NG,2,265,201912,2809 -CY,NG,2,271,201912,480 -CY,NG,2,274,201912,366 -CY,NG,2,293,201912,6450 -CY,NI,1,120,201912,14162 -CY,NL,1,011,201912,1499984 -CY,NL,1,012,201912,354463 -CY,NL,1,013,201912,242675 -CY,NL,1,014,201912,8335 -CY,NL,1,023,201912,9629 -CY,NL,1,030,201912,107894 -CY,NL,1,089,201912,11613 -CY,NL,1,101,201912,1865646 -CY,NL,1,102,201912,264746 -CY,NL,1,103,201912,628903 -CY,NL,1,104,201912,59146 -CY,NL,1,105,201912,156666 -CY,NL,1,106,201912,130141 -CY,NL,1,107,201912,120101 -CY,NL,1,108,201912,593352 -CY,NL,1,109,201912,232514 -CY,NL,1,110,201912,1130459 -CY,NL,1,120,201912,192409 -CY,NL,1,139,201912,38246 -CY,NL,1,141,201912,161320 -CY,NL,1,143,201912,25410 -CY,NL,1,151,201912,46031 -CY,NL,1,152,201912,119001 -CY,NL,1,162,201912,6794 -CY,NL,1,171,201912,6114 -CY,NL,1,172,201912,68146 -CY,NL,1,192,201912,190297 -CY,NL,1,201,201912,216145 -CY,NL,1,202,201912,30344 -CY,NL,1,203,201912,133330 -CY,NL,1,204,201912,208876 -CY,NL,1,205,201912,514214 -CY,NL,1,211,201912,144092 -CY,NL,1,212,201912,1304875 -CY,NL,1,221,201912,218835 -CY,NL,1,222,201912,190560 -CY,NL,1,231,201912,8448 -CY,NL,1,234,201912,41932 -CY,NL,1,236,201912,784 -CY,NL,1,237,201912,67 -CY,NL,1,239,201912,7421 -CY,NL,1,242,201912,44 -CY,NL,1,251,201912,43270 -CY,NL,1,257,201912,50393 -CY,NL,1,259,201912,763007 -CY,NL,1,261,201912,224930 -CY,NL,1,262,201912,939107 -CY,NL,1,263,201912,6837313 -CY,NL,1,264,201912,643962 -CY,NL,1,265,201912,385852 -CY,NL,1,266,201912,273339 -CY,NL,1,267,201912,43818 -CY,NL,1,268,201912,2010 -CY,NL,1,271,201912,38404 -CY,NL,1,272,201912,4443 -CY,NL,1,273,201912,75112 -CY,NL,1,274,201912,13756 -CY,NL,1,275,201912,49057 -CY,NL,1,279,201912,609249 -CY,NL,1,281,201912,69723 -CY,NL,1,282,201912,543097 -CY,NL,1,283,201912,94255 -CY,NL,1,284,201912,5408 -CY,NL,1,289,201912,47977 -CY,NL,1,291,201912,6870 -CY,NL,1,292,201912,131400 -CY,NL,1,293,201912,277733 -CY,NL,1,309,201912,292556 -CY,NL,1,310,201912,78716 -CY,NL,1,321,201912,2100 -CY,NL,1,323,201912,6278 -CY,NL,1,324,201912,78203 -CY,NL,1,325,201912,1319059 -CY,NL,1,329,201912,36459 -CY,NL,2,081,201912,40299 -CY,NL,2,103,201912,194116 -CY,NL,2,110,201912,13696 -CY,NL,2,201,201912,19324 -CY,NL,2,212,201912,1001157 -CY,NL,2,222,201912,81597 -CY,NL,2,231,201912,3909 -CY,NL,2,262,201912,18986 -CY,NL,2,263,201912,10855 -CY,NL,2,274,201912,6421 -CY,NL,2,279,201912,386 -CY,NL,2,282,201912,19674 -CY,NL,2,321,201912,136 -CY,NL,2,325,201912,37694 -CY,NO,1,030,201912,29789 -CY,NO,1,102,201912,284465 -CY,NO,1,201,201912,27018 -CY,NO,1,262,201912,2500 -CY,NO,1,265,201912,125 -CY,NO,1,266,201912,2759 -CY,NO,1,271,201912,3290 -CY,NO,1,293,201912,2715 -CY,NO,2,011,201912,4102 -CY,NO,2,105,201912,39083 -CY,NO,2,274,201912,5943 -CY,NP,2,141,201912,2910 -CY,NP,2,329,201912,4400 -CY,NZ,1,030,201912,23440 -CY,NZ,1,102,201912,271633 -CY,NZ,1,108,201912,4001 -CY,NZ,1,222,201912,439 -CY,NZ,1,265,201912,2211 -CY,NZ,1,293,201912,19784 -CY,NZ,2,105,201912,93585 -CY,NZ,2,108,201912,5337 -CY,NZ,2,212,201912,104248 -CY,OM,1,237,201912,8545 -CY,OM,2,204,201912,678 -CY,OM,2,205,201912,127412 -CY,OM,2,212,201912,98520 -CY,OM,2,274,201912,867 -CY,OM,2,282,201912,11369 -CY,OM,2,310,201912,13573 -CY,PE,1,201,201912,1642 -CY,PE,2,323,201912,109 -CY,PH,1,011,201912,358 -CY,PH,1,102,201912,246720 -CY,PH,1,103,201912,7566 -CY,PH,1,106,201912,496 -CY,PH,1,107,201912,17975 -CY,PH,1,108,201912,40115 -CY,PH,1,141,201912,1061 -CY,PH,1,151,201912,791 -CY,PH,1,204,201912,11463 -CY,PH,1,205,201912,325 -CY,PH,1,221,201912,33978 -CY,PH,1,222,201912,35 -CY,PH,1,262,201912,4746 -CY,PH,1,265,201912,86 -CY,PH,1,282,201912,6029 -CY,PH,2,103,201912,33409 -CY,PH,2,110,201912,16562 -CY,PH,2,152,201912,109 -CY,PH,2,329,201912,46425 -CY,PK,1,106,201912,15443 -CY,PK,1,132,201912,46507 -CY,PK,1,139,201912,215125 -CY,PK,1,141,201912,45490 -CY,PK,1,221,201912,26792 -CY,PK,1,257,201912,1259 -CY,PK,1,310,201912,1091 -CY,PK,1,323,201912,7041 -CY,PL,1,011,201912,181025 -CY,PL,1,012,201912,39 -CY,PL,1,101,201912,460387 -CY,PL,1,102,201912,2022 -CY,PL,1,103,201912,24975 -CY,PL,1,104,201912,36543 -CY,PL,1,105,201912,91903 -CY,PL,1,106,201912,71243 -CY,PL,1,107,201912,28757 -CY,PL,1,108,201912,142220 -CY,PL,1,109,201912,128526 -CY,PL,1,110,201912,20057 -CY,PL,1,120,201912,508539 -CY,PL,1,132,201912,40425 -CY,PL,1,139,201912,9370 -CY,PL,1,141,201912,20985 -CY,PL,1,143,201912,2954 -CY,PL,1,151,201912,6482 -CY,PL,1,152,201912,12110 -CY,PL,1,162,201912,40777 -CY,PL,1,171,201912,41 -CY,PL,1,172,201912,3416 -CY,PL,1,201,201912,110977 -CY,PL,1,202,201912,20729 -CY,PL,1,203,201912,17 -CY,PL,1,204,201912,93409 -CY,PL,1,205,201912,31919 -CY,PL,1,212,201912,200215 -CY,PL,1,221,201912,704 -CY,PL,1,222,201912,103916 -CY,PL,1,231,201912,8085 -CY,PL,1,233,201912,101 -CY,PL,1,234,201912,20734 -CY,PL,1,239,201912,1800 -CY,PL,1,243,201912,80733 -CY,PL,1,257,201912,34521 -CY,PL,1,259,201912,146247 -CY,PL,1,262,201912,24506 -CY,PL,1,263,201912,421611 -CY,PL,1,264,201912,194371 -CY,PL,1,265,201912,27550 -CY,PL,1,266,201912,13321 -CY,PL,1,267,201912,5883 -CY,PL,1,271,201912,11291 -CY,PL,1,272,201912,4861 -CY,PL,1,273,201912,127 -CY,PL,1,274,201912,8961 -CY,PL,1,275,201912,98173 -CY,PL,1,279,201912,19940 -CY,PL,1,281,201912,7165 -CY,PL,1,282,201912,117161 -CY,PL,1,283,201912,2153 -CY,PL,1,289,201912,308 -CY,PL,1,293,201912,38254 -CY,PL,1,309,201912,16317 -CY,PL,1,310,201912,181766 -CY,PL,1,321,201912,1034 -CY,PL,1,322,201912,416 -CY,PL,1,323,201912,10357 -CY,PL,1,324,201912,14856 -CY,PL,1,325,201912,59505 -CY,PL,1,329,201912,3918 -CY,PL,2,011,201912,28656 -CY,PL,2,012,201912,45343 -CY,PL,2,105,201912,229521 -CY,PL,2,139,201912,70 -CY,PL,2,141,201912,1149 -CY,PL,2,151,201912,26 -CY,PL,2,152,201912,837 -CY,PL,2,222,201912,167285 -CY,PL,2,262,201912,289 -CY,PL,2,263,201912,801 -CY,PL,2,265,201912,4450 -CY,PL,2,267,201912,285 -CY,PL,2,275,201912,173 -CY,PL,2,324,201912,365 -CY,PL,2,329,201912,3327 -CY,PT,1,102,201912,5874 -CY,PT,1,106,201912,5601 -CY,PT,1,107,201912,27120 -CY,PT,1,108,201912,53444 -CY,PT,1,109,201912,30688 -CY,PT,1,110,201912,77875 -CY,PT,1,139,201912,1220 -CY,PT,1,141,201912,46290 -CY,PT,1,143,201912,776 -CY,PT,1,151,201912,16425 -CY,PT,1,152,201912,3080 -CY,PT,1,162,201912,75029 -CY,PT,1,171,201912,120079 -CY,PT,1,172,201912,7746 -CY,PT,1,201,201912,102674 -CY,PT,1,204,201912,3962 -CY,PT,1,212,201912,31416 -CY,PT,1,222,201912,145277 -CY,PT,1,231,201912,6619 -CY,PT,1,233,201912,1695 -CY,PT,1,234,201912,68627 -CY,PT,1,242,201912,27231 -CY,PT,1,251,201912,11871 -CY,PT,1,257,201912,35286 -CY,PT,1,259,201912,1632 -CY,PT,1,262,201912,5105 -CY,PT,1,264,201912,7108 -CY,PT,1,265,201912,4441 -CY,PT,1,271,201912,2336 -CY,PT,1,273,201912,84669 -CY,PT,1,274,201912,120 -CY,PT,1,281,201912,165840 -CY,PT,1,282,201912,448 -CY,PT,1,310,201912,19138 -CY,PT,1,325,201912,4892 -CY,PT,1,329,201912,7907 -CY,PT,2,212,201912,92167 -CY,PT,2,222,201912,46125 -CY,PT,2,231,201912,2131 -CY,PT,2,263,201912,6505 -CY,PT,2,273,201912,19 -CY,PT,2,274,201912,3565 -CY,PT,2,279,201912,1621 -CY,PT,2,282,201912,20012 -CY,PT,2,301,201912,28723 -CY,PT,2,321,201912,3110 -CY,QA,1,329,201912,2560 -CY,QA,2,106,201912,22581 -CY,QA,2,120,201912,8899 -CY,QA,2,141,201912,1763 -CY,QA,2,152,201912,2953 -CY,QA,2,212,201912,25001 -CY,QA,2,254,201912,2160 -CY,QA,2,265,201912,24155 -CY,QA,2,271,201912,512 -CY,QA,2,274,201912,2049 -CY,QA,2,282,201912,41642 -CY,QA,2,329,201912,3057 -CY,QP,2,281,201912,533411 -CY,QW,1,110,201912,20956 -CY,QW,1,192,201912,11997288 -CY,RO,1,011,201912,2033633 -CY,RO,1,101,201912,47425 -CY,RO,1,103,201912,27642 -CY,RO,1,104,201912,156491 -CY,RO,1,105,201912,73839 -CY,RO,1,106,201912,6608 -CY,RO,1,107,201912,48317 -CY,RO,1,108,201912,149448 -CY,RO,1,110,201912,101594 -CY,RO,1,120,201912,71991 -CY,RO,1,139,201912,64232 -CY,RO,1,151,201912,664 -CY,RO,1,162,201912,244357 -CY,RO,1,172,201912,1688 -CY,RO,1,204,201912,98181 -CY,RO,1,205,201912,17668 -CY,RO,1,212,201912,383 -CY,RO,1,222,201912,37956 -CY,RO,1,231,201912,147932 -CY,RO,1,259,201912,193979 -CY,RO,1,262,201912,3034 -CY,RO,1,263,201912,101 -CY,RO,1,264,201912,129341 -CY,RO,1,265,201912,1773 -CY,RO,1,267,201912,21647 -CY,RO,1,271,201912,95122 -CY,RO,1,282,201912,22763 -CY,RO,1,291,201912,260860 -CY,RO,1,293,201912,38733 -CY,RO,1,310,201912,101239 -CY,RO,1,325,201912,122933 -CY,RO,2,105,201912,82256 -CY,RO,2,204,201912,74415 -CY,RO,2,212,201912,2282445 -CY,RO,2,222,201912,69786 -CY,RO,2,257,201912,8944 -CY,RO,2,265,201912,94604 -CY,RO,2,274,201912,12665 -CY,RO,2,279,201912,2393 -CY,RU,1,014,201912,4562 -CY,RU,1,108,201912,813476 -CY,RU,1,110,201912,35077 -CY,RU,1,139,201912,1689 -CY,RU,1,141,201912,6500 -CY,RU,1,151,201912,532 -CY,RU,1,161,201912,46445 -CY,RU,1,162,201912,404307 -CY,RU,1,171,201912,147182 -CY,RU,1,172,201912,4966 -CY,RU,1,201,201912,13429900 -CY,RU,1,204,201912,21205 -CY,RU,1,222,201912,4968 -CY,RU,1,231,201912,2640 -CY,RU,1,262,201912,80 -CY,RU,1,274,201912,486 -CY,RU,1,275,201912,4737 -CY,RU,1,279,201912,43985 -CY,RU,1,281,201912,292 -CY,RU,1,282,201912,116430 -CY,RU,1,293,201912,1185 -CY,RU,1,310,201912,107 -CY,RU,1,324,201912,206 -CY,RU,1,329,201912,17397 -CY,RU,2,012,201912,107625 -CY,RU,2,141,201912,13978 -CY,RU,2,143,201912,4434 -CY,RU,2,151,201912,3066 -CY,RU,2,152,201912,11601 -CY,RU,2,204,201912,27742 -CY,RU,2,222,201912,35750 -CY,RU,2,265,201912,87300 -CY,RU,2,329,201912,148 -CY,SA,1,171,201912,52658 -CY,SA,1,201,201912,330519 -CY,SA,1,236,201912,8353 -CY,SA,1,329,201912,10022 -CY,SA,2,105,201912,353457 -CY,SA,2,141,201912,7892 -CY,SA,2,143,201912,753 -CY,SA,2,152,201912,4233 -CY,SA,2,212,201912,159547 -CY,SA,2,265,201912,2350 -CY,SA,2,273,201912,6498 -CY,SA,2,274,201912,305 -CY,SA,2,282,201912,50717 -CY,SA,2,329,201912,10 -CY,SD,2,103,201912,82732 -CY,SD,2,110,201912,12929 -CY,SD,2,212,201912,441921 -CY,SD,2,282,201912,87990 -CY,SE,1,012,201912,182 -CY,SE,1,030,201912,107 -CY,SE,1,101,201912,20278 -CY,SE,1,102,201912,160219 -CY,SE,1,103,201912,30968 -CY,SE,1,105,201912,233 -CY,SE,1,106,201912,933 -CY,SE,1,107,201912,14212 -CY,SE,1,108,201912,34429 -CY,SE,1,110,201912,185403 -CY,SE,1,139,201912,99561 -CY,SE,1,151,201912,486 -CY,SE,1,161,201912,129405 -CY,SE,1,162,201912,95613 -CY,SE,1,171,201912,166451 -CY,SE,1,172,201912,27918 -CY,SE,1,201,201912,10400 -CY,SE,1,205,201912,33622 -CY,SE,1,212,201912,979245 -CY,SE,1,221,201912,17851 -CY,SE,1,222,201912,6566 -CY,SE,1,231,201912,36498 -CY,SE,1,242,201912,100 -CY,SE,1,257,201912,4141 -CY,SE,1,259,201912,5439 -CY,SE,1,263,201912,198 -CY,SE,1,264,201912,162965 -CY,SE,1,265,201912,484524 -CY,SE,1,271,201912,1557 -CY,SE,1,272,201912,2425 -CY,SE,1,273,201912,819 -CY,SE,1,274,201912,3632 -CY,SE,1,279,201912,5169 -CY,SE,1,281,201912,88270 -CY,SE,1,282,201912,36422 -CY,SE,1,283,201912,80461 -CY,SE,1,289,201912,46904 -CY,SE,1,291,201912,546484 -CY,SE,1,293,201912,37137 -CY,SE,1,309,201912,17929 -CY,SE,1,310,201912,2481 -CY,SE,1,329,201912,5322 -CY,SE,2,012,201912,5686 -CY,SE,2,014,201912,100832 -CY,SE,2,103,201912,69163 -CY,SE,2,105,201912,1731068 -CY,SE,2,106,201912,21634 -CY,SE,2,108,201912,131020 -CY,SE,2,110,201912,66551 -CY,SE,2,162,201912,630 -CY,SE,2,204,201912,51929 -CY,SE,2,274,201912,730 -CY,SE,2,321,201912,607 -CY,SG,1,030,201912,1627 -CY,SG,1,108,201912,21493 -CY,SG,1,204,201912,502 -CY,SG,1,212,201912,302529 -CY,SG,1,222,201912,559 -CY,SG,1,259,201912,71 -CY,SG,1,263,201912,4478 -CY,SG,1,265,201912,3278 -CY,SG,1,282,201912,2318 -CY,SG,1,289,201912,8892 -CY,SG,1,291,201912,276252 -CY,SG,1,293,201912,421 -CY,SG,1,303,201912,8253 -CY,SG,1,321,201912,5435 -CY,SG,1,324,201912,181 -CY,SG,1,325,201912,7065 -CY,SG,1,329,201912,165 -CY,SG,2,103,201912,271248 -CY,SG,2,110,201912,11311 -CY,SG,2,141,201912,5312 -CY,SG,2,143,201912,128 -CY,SG,2,152,201912,1626 -CY,SG,2,212,201912,285418 -CY,SG,2,262,201912,1423 -CY,SG,2,263,201912,8318 -CY,SG,2,271,201912,4950 -CY,SG,2,273,201912,500 -CY,SG,2,281,201912,7158 -CY,SG,2,282,201912,20829 -CY,SG,2,329,201912,148 -CY,SI,1,139,201912,12116 -CY,SI,1,162,201912,52897 -CY,SI,1,171,201912,79136 -CY,SI,1,172,201912,13039 -CY,SI,1,205,201912,3301 -CY,SI,1,221,201912,31993 -CY,SI,1,222,201912,122089 -CY,SI,1,231,201912,13655 -CY,SI,1,259,201912,3200 -CY,SI,1,261,201912,51063 -CY,SI,1,262,201912,3439 -CY,SI,1,263,201912,442970 -CY,SI,1,273,201912,1147 -CY,SI,1,279,201912,246736 -CY,SI,1,281,201912,20 -CY,SI,1,324,201912,9193 -CY,SI,1,325,201912,635 -CY,SI,2,011,201912,71881 -CY,SI,2,212,201912,3162053 -CY,SI,2,222,201912,11 -CY,SI,2,231,201912,8 -CY,SI,2,274,201912,9610 -CY,SI,2,279,201912,514 -CY,SK,1,105,201912,20766 -CY,SK,1,108,201912,100054 -CY,SK,1,161,201912,61363 -CY,SK,1,222,201912,41302 -CY,SK,1,244,201912,20746 -CY,SK,1,257,201912,2814 -CY,SK,1,263,201912,21526 -CY,SK,1,291,201912,764892 -CY,SK,2,105,201912,5273 -CY,SK,2,212,201912,654374 -CY,SN,1,030,201912,71155 -CY,SN,1,102,201912,74405 -CY,SO,2,103,201912,32094 -CY,SO,2,110,201912,21810 -CY,SY,1,012,201912,34228 -CY,SY,1,103,201912,23116 -CY,SY,1,108,201912,2803 -CY,SY,1,237,201912,6211 -CY,TG,2,262,201912,312 -CY,TH,1,012,201912,3081 -CY,TH,1,030,201912,9338 -CY,TH,1,102,201912,120653 -CY,TH,1,103,201912,164826 -CY,TH,1,106,201912,102320 -CY,TH,1,107,201912,6665 -CY,TH,1,108,201912,24315 -CY,TH,1,110,201912,234914 -CY,TH,1,132,201912,863 -CY,TH,1,141,201912,844 -CY,TH,1,151,201912,241 -CY,TH,1,171,201912,39702 -CY,TH,1,221,201912,249914 -CY,TH,1,222,201912,104242 -CY,TH,1,244,201912,3184 -CY,TH,1,259,201912,4689 -CY,TH,1,262,201912,32114 -CY,TH,1,265,201912,199 -CY,TH,1,271,201912,13537 -CY,TH,1,274,201912,1782 -CY,TH,1,275,201912,75918 -CY,TH,1,281,201912,2673 -CY,TH,1,282,201912,398171 -CY,TH,1,284,201912,3460 -CY,TH,1,291,201912,1464555 -CY,TH,1,293,201912,60321 -CY,TH,1,321,201912,63727 -CY,TH,1,329,201912,945 -CY,TH,2,212,201912,25049 -CY,TH,2,262,201912,350 -CY,TH,2,291,201912,793450 -CY,TN,1,012,201912,115052 -CY,TN,1,282,201912,41393 -CY,TN,2,282,201912,22861 -CY,TR,1,139,201912,5906 -CY,TR,1,141,201912,2359 -CY,TR,1,143,201912,279 -CY,TR,1,204,201912,16389 -CY,TR,1,205,201912,19062 -CY,TR,1,221,201912,115 -CY,TR,1,222,201912,58539 -CY,TR,1,237,201912,100952 -CY,TR,1,244,201912,10315 -CY,TR,1,259,201912,1412 -CY,TR,1,275,201912,88155 -CY,TR,1,281,201912,29349 -CY,TR,1,289,201912,39830 -CY,TR,1,291,201912,974245 -CY,TR,1,293,201912,948 -CY,TR,1,310,201912,3360 -CY,TR,1,321,201912,1499 -CY,TR,2,152,201912,89 -CY,TT,2,212,201912,18020 -CY,TW,1,110,201912,422904 -CY,TW,1,172,201912,4992 -CY,TW,1,201,201912,45595 -CY,TW,1,204,201912,6644 -CY,TW,1,206,201912,26195 -CY,TW,1,212,201912,1416 -CY,TW,1,221,201912,53902 -CY,TW,1,222,201912,83152 -CY,TW,1,231,201912,1333 -CY,TW,1,244,201912,18122 -CY,TW,1,257,201912,38594 -CY,TW,1,259,201912,13903 -CY,TW,1,262,201912,25990 -CY,TW,1,263,201912,12639 -CY,TW,1,264,201912,632 -CY,TW,1,265,201912,9071 -CY,TW,1,267,201912,90 -CY,TW,1,271,201912,6545 -CY,TW,1,273,201912,24802 -CY,TW,1,274,201912,468 -CY,TW,1,275,201912,36250 -CY,TW,1,279,201912,17555 -CY,TW,1,281,201912,17887 -CY,TW,1,282,201912,21856 -CY,TW,1,289,201912,1112 -CY,TW,1,293,201912,31692 -CY,TW,1,309,201912,9397 -CY,TW,1,310,201912,18358 -CY,TW,1,323,201912,493 -CY,TW,1,324,201912,8979 -CY,TW,1,325,201912,237836 -CY,TW,1,329,201912,6818 -CY,TW,2,103,201912,93504 -CY,TW,2,105,201912,45000 -CY,TW,2,141,201912,6943 -CY,TW,2,143,201912,2005 -CY,TW,2,152,201912,5314 -CY,TW,2,212,201912,109700 -CY,TW,2,282,201912,28742 -CY,TZ,2,212,201912,454117 -CY,UA,1,101,201912,66721 -CY,UA,1,104,201912,2498970 -CY,UA,1,110,201912,37272 -CY,UA,1,141,201912,7672 -CY,UA,1,162,201912,33495 -CY,UA,1,324,201912,1005 -CY,UA,1,329,201912,3980 -CY,UA,2,212,201912,561901 -CY,UA,2,265,201912,29800 -CY,UA,2,325,201912,23400 -CY,UG,1,102,201912,12772 -CY,UG,2,212,201912,55428 -CY,US,1,011,201912,36067 -CY,US,1,012,201912,315 -CY,US,1,014,201912,44065 -CY,US,1,103,201912,97818 -CY,US,1,106,201912,52151 -CY,US,1,108,201912,160490 -CY,US,1,109,201912,40962 -CY,US,1,110,201912,11270 -CY,US,1,139,201912,7709 -CY,US,1,141,201912,67256 -CY,US,1,143,201912,3210 -CY,US,1,151,201912,34205 -CY,US,1,152,201912,13211 -CY,US,1,161,201912,107782 -CY,US,1,162,201912,3036 -CY,US,1,171,201912,199413 -CY,US,1,172,201912,29729 -CY,US,1,192,201912,34438 -CY,US,1,201,201912,932000 -CY,US,1,203,201912,6633 -CY,US,1,204,201912,221615 -CY,US,1,205,201912,142690 -CY,US,1,211,201912,2917 -CY,US,1,212,201912,17744 -CY,US,1,221,201912,15912 -CY,US,1,222,201912,45002 -CY,US,1,231,201912,4341 -CY,US,1,234,201912,2818 -CY,US,1,236,201912,111592 -CY,US,1,239,201912,48 -CY,US,1,242,201912,1336 -CY,US,1,244,201912,1435 -CY,US,1,254,201912,2815 -CY,US,1,257,201912,15914 -CY,US,1,259,201912,22697 -CY,US,1,261,201912,7147 -CY,US,1,262,201912,182443 -CY,US,1,263,201912,1147858 -CY,US,1,264,201912,31075 -CY,US,1,265,201912,194610 -CY,US,1,266,201912,73805 -CY,US,1,267,201912,195522 -CY,US,1,268,201912,109 -CY,US,1,271,201912,46036 -CY,US,1,272,201912,10832 -CY,US,1,273,201912,8477 -CY,US,1,274,201912,34734 -CY,US,1,275,201912,15742 -CY,US,1,279,201912,50844 -CY,US,1,281,201912,44730 -CY,US,1,282,201912,187068 -CY,US,1,283,201912,17670 -CY,US,1,284,201912,107 -CY,US,1,289,201912,62860 -CY,US,1,292,201912,2030 -CY,US,1,293,201912,58529 -CY,US,1,301,201912,129812 -CY,US,1,303,201912,1110997 -CY,US,1,309,201912,2971 -CY,US,1,310,201912,17876 -CY,US,1,321,201912,162984 -CY,US,1,322,201912,8439 -CY,US,1,323,201912,13878 -CY,US,1,324,201912,20958 -CY,US,1,325,201912,392358 -CY,US,1,329,201912,130045 -CY,US,2,014,201912,3320 -CY,US,2,030,201912,160571 -CY,US,2,089,201912,105664 -CY,US,2,103,201912,33008 -CY,US,2,105,201912,304031 -CY,US,2,108,201912,143897 -CY,US,2,110,201912,21323 -CY,US,2,141,201912,113879 -CY,US,2,143,201912,19749 -CY,US,2,151,201912,16572 -CY,US,2,152,201912,65498 -CY,US,2,204,201912,4055 -CY,US,2,205,201912,24008 -CY,US,2,259,201912,271 -CY,US,2,262,201912,3150 -CY,US,2,263,201912,395207 -CY,US,2,264,201912,4980 -CY,US,2,265,201912,5929 -CY,US,2,266,201912,16993 -CY,US,2,267,201912,169918 -CY,US,2,279,201912,3381718 -CY,US,2,282,201912,10090 -CY,US,2,303,201912,3306 -CY,US,2,321,201912,4908 -CY,US,2,325,201912,44095 -CY,US,2,329,201912,2291 -CY,UY,1,106,201912,36766 -CY,UY,2,274,201912,8000 -CY,UZ,2,325,201912,20450 -CY,VN,1,102,201912,250642 -CY,VN,1,108,201912,79236 -CY,VN,1,110,201912,10490 -CY,VN,1,141,201912,8084 -CY,VN,1,143,201912,287 -CY,VN,1,151,201912,1696 -CY,VN,1,152,201912,1784 -CY,VN,1,201,201912,33512 -CY,VN,1,212,201912,1164488 -CY,VN,1,221,201912,135266 -CY,VN,1,222,201912,187384 -CY,VN,1,259,201912,27960 -CY,VN,1,262,201912,757 -CY,VN,1,263,201912,287053 -CY,VN,1,310,201912,59206 -CY,VN,1,321,201912,18111 -CY,VN,1,323,201912,773 -CY,VN,2,101,201912,9210 -CY,VN,2,204,201912,3637 -CY,VN,2,212,201912,2294834 -CY,VN,2,262,201912,23778 -CY,VN,2,282,201912,106698 -CY,VU,2,103,201912,14490 -CY,VU,2,110,201912,4491 -CY,XK,2,212,201912,91298 -CY,XK,2,274,201912,835 -CY,XS,1,103,201912,4178 -CY,XS,1,107,201912,115870 -CY,XS,1,110,201912,455696 -CY,XS,1,171,201912,224920 -CY,XS,1,172,201912,96263 -CY,XS,1,201,201912,52757 -CY,XS,1,221,201912,31565 -CY,XS,1,222,201912,36207 -CY,XS,1,259,201912,9835 -CY,XS,1,281,201912,2508 -CY,XS,1,289,201912,2846 -CY,XS,2,101,201912,46225 -CY,XS,2,106,201912,11547 -CY,XS,2,212,201912,176093 -CY,XS,2,222,201912,28650 -CY,XS,2,274,201912,43893 -CY,XS,2,282,201912,3618 -CY,ZA,1,011,201912,20137 -CY,ZA,1,102,201912,138358 -CY,ZA,1,103,201912,15415 -CY,ZA,1,110,201912,41599 -CY,ZA,1,139,201912,451 -CY,ZA,1,141,201912,4375 -CY,ZA,1,172,201912,3321 -CY,ZA,1,204,201912,8957 -CY,ZA,1,234,201912,440 -CY,ZA,1,259,201912,8235 -CY,ZA,1,263,201912,232 -CY,ZA,1,291,201912,99730 -CY,ZA,1,321,201912,153 -CY,ZA,1,329,201912,932 -CY,ZA,2,103,201912,191584 -CY,ZA,2,141,201912,1925 -CY,ZA,2,212,201912,108143 -CY,ZA,2,222,201912,5040 -CY,ZA,2,262,201912,950 -CY,ZA,2,329,201912,3648 -CY,ZW,1,120,201912,155 -CY,ZW,2,212,201912,17218 -CZ,AD,2,141,201912,5707 -CZ,AD,2,143,201912,1753 -CZ,AD,2,152,201912,6808 -CZ,AD,2,265,201912,6651 -CZ,AD,2,323,201912,5320 -CZ,AE,1,012,201912,54576 -CZ,AE,1,108,201912,96081 -CZ,AE,1,120,201912,471 -CZ,AE,1,132,201912,17406 -CZ,AE,1,139,201912,109335 -CZ,AE,1,141,201912,6960 -CZ,AE,1,143,201912,568 -CZ,AE,1,151,201912,2766 -CZ,AE,1,152,201912,282 -CZ,AE,1,172,201912,1472 -CZ,AE,1,201,201912,2418 -CZ,AE,1,204,201912,638683 -CZ,AE,1,205,201912,8 -CZ,AE,1,221,201912,834 -CZ,AE,1,222,201912,47710 -CZ,AE,1,231,201912,8302 -CZ,AE,1,242,201912,71 -CZ,AE,1,244,201912,696 -CZ,AE,1,257,201912,47704 -CZ,AE,1,259,201912,12076 -CZ,AE,1,261,201912,3868 -CZ,AE,1,262,201912,291351 -CZ,AE,1,263,201912,10176552 -CZ,AE,1,264,201912,497734 -CZ,AE,1,265,201912,332083 -CZ,AE,1,267,201912,172 -CZ,AE,1,271,201912,1433 -CZ,AE,1,273,201912,2151 -CZ,AE,1,274,201912,5345 -CZ,AE,1,275,201912,47 -CZ,AE,1,279,201912,1292 -CZ,AE,1,281,201912,11465 -CZ,AE,1,282,201912,100780 -CZ,AE,1,289,201912,196005 -CZ,AE,1,293,201912,2143 -CZ,AE,1,321,201912,4716 -CZ,AE,1,324,201912,489 -CZ,AE,1,325,201912,81 -CZ,AE,1,329,201912,4643 -CZ,AE,2,012,201912,6662 -CZ,AE,2,014,201912,31857 -CZ,AE,2,101,201912,3515 -CZ,AE,2,103,201912,5 -CZ,AE,2,105,201912,1014431 -CZ,AE,2,106,201912,16319 -CZ,AE,2,107,201912,94386 -CZ,AE,2,108,201912,402744 -CZ,AE,2,109,201912,27876 -CZ,AE,2,110,201912,134870 -CZ,AE,2,132,201912,31135 -CZ,AE,2,139,201912,41971 -CZ,AE,2,141,201912,131790 -CZ,AE,2,143,201912,752 -CZ,AE,2,151,201912,102200 -CZ,AE,2,152,201912,3624 -CZ,AE,2,162,201912,44588 -CZ,AE,2,171,201912,100364 -CZ,AE,2,172,201912,144997 -CZ,AE,2,192,201912,1433467 -CZ,AE,2,201,201912,260451 -CZ,AE,2,203,201912,11339 -CZ,AE,2,204,201912,830540 -CZ,AE,2,205,201912,160825 -CZ,AE,2,221,201912,670049 -CZ,AE,2,222,201912,1411515 -CZ,AE,2,231,201912,742161 -CZ,AE,2,232,201912,184799 -CZ,AE,2,233,201912,29164 -CZ,AE,2,234,201912,100270 -CZ,AE,2,236,201912,76033 -CZ,AE,2,239,201912,49944 -CZ,AE,2,241,201912,25411 -CZ,AE,2,242,201912,29232 -CZ,AE,2,243,201912,202501 -CZ,AE,2,244,201912,7673 -CZ,AE,2,251,201912,5827 -CZ,AE,2,252,201912,105420 -CZ,AE,2,254,201912,6321 -CZ,AE,2,257,201912,215147 -CZ,AE,2,259,201912,754486 -CZ,AE,2,261,201912,189235 -CZ,AE,2,262,201912,11981618 -CZ,AE,2,263,201912,4658297 -CZ,AE,2,264,201912,6180146 -CZ,AE,2,265,201912,295904 -CZ,AE,2,267,201912,41013 -CZ,AE,2,268,201912,393881 -CZ,AE,2,271,201912,2874378 -CZ,AE,2,272,201912,14873 -CZ,AE,2,273,201912,805119 -CZ,AE,2,274,201912,871266 -CZ,AE,2,275,201912,54039 -CZ,AE,2,279,201912,788936 -CZ,AE,2,281,201912,1753448 -CZ,AE,2,282,201912,2305068 -CZ,AE,2,284,201912,14409 -CZ,AE,2,289,201912,986498 -CZ,AE,2,291,201912,3435185 -CZ,AE,2,293,201912,129495 -CZ,AE,2,303,201912,23574 -CZ,AE,2,309,201912,8962 -CZ,AE,2,310,201912,966294 -CZ,AE,2,321,201912,3518 -CZ,AE,2,323,201912,75572 -CZ,AE,2,324,201912,482167 -CZ,AE,2,325,201912,376813 -CZ,AE,2,329,201912,399332 -CZ,AF,2,291,201912,11487336 -CZ,AL,1,011,201912,180503 -CZ,AL,1,012,201912,164320 -CZ,AL,1,089,201912,11377 -CZ,AL,1,141,201912,132633 -CZ,AL,1,152,201912,103158 -CZ,AL,1,262,201912,453228 -CZ,AL,1,293,201912,1125451 -CZ,AL,1,351,201912,736483 -CZ,AL,2,107,201912,26114 -CZ,AL,2,108,201912,143817 -CZ,AL,2,110,201912,2157 -CZ,AL,2,131,201912,1976 -CZ,AL,2,132,201912,384 -CZ,AL,2,139,201912,17998 -CZ,AL,2,141,201912,78583 -CZ,AL,2,151,201912,27266 -CZ,AL,2,152,201912,395 -CZ,AL,2,162,201912,33918 -CZ,AL,2,172,201912,40379 -CZ,AL,2,204,201912,346396 -CZ,AL,2,205,201912,115514 -CZ,AL,2,212,201912,20166 -CZ,AL,2,221,201912,26488 -CZ,AL,2,222,201912,219225 -CZ,AL,2,231,201912,40611 -CZ,AL,2,243,201912,2570 -CZ,AL,2,244,201912,11 -CZ,AL,2,254,201912,47 -CZ,AL,2,257,201912,24414 -CZ,AL,2,259,201912,9463 -CZ,AL,2,261,201912,1604 -CZ,AL,2,262,201912,161028 -CZ,AL,2,263,201912,1081 -CZ,AL,2,264,201912,2961 -CZ,AL,2,265,201912,39787 -CZ,AL,2,271,201912,6262 -CZ,AL,2,273,201912,847132 -CZ,AL,2,274,201912,113 -CZ,AL,2,275,201912,62446 -CZ,AL,2,279,201912,62552 -CZ,AL,2,281,201912,1840 -CZ,AL,2,282,201912,60845 -CZ,AL,2,284,201912,51054 -CZ,AL,2,289,201912,75884 -CZ,AL,2,291,201912,398525 -CZ,AL,2,293,201912,510 -CZ,AL,2,310,201912,2442 -CZ,AL,2,324,201912,733 -CZ,AL,2,325,201912,31055 -CZ,AL,2,329,201912,5273 -CZ,AM,1,110,201912,4294 -CZ,AM,1,231,201912,3255 -CZ,AM,1,262,201912,3707 -CZ,AM,1,263,201912,30332 -CZ,AM,1,264,201912,1989 -CZ,AM,1,265,201912,6997 -CZ,AM,1,271,201912,3976 -CZ,AM,1,279,201912,256 -CZ,AM,2,132,201912,3582 -CZ,AM,2,141,201912,4886 -CZ,AM,2,143,201912,1344 -CZ,AM,2,151,201912,8122 -CZ,AM,2,162,201912,271 -CZ,AM,2,172,201912,49455 -CZ,AM,2,201,201912,54050 -CZ,AM,2,203,201912,699 -CZ,AM,2,204,201912,229922 -CZ,AM,2,205,201912,4326 -CZ,AM,2,211,201912,5312 -CZ,AM,2,221,201912,9445 -CZ,AM,2,222,201912,22652 -CZ,AM,2,231,201912,10879 -CZ,AM,2,244,201912,1 -CZ,AM,2,254,201912,6699 -CZ,AM,2,257,201912,47 -CZ,AM,2,259,201912,6176 -CZ,AM,2,261,201912,737 -CZ,AM,2,262,201912,431050 -CZ,AM,2,263,201912,6671753 -CZ,AM,2,264,201912,125584 -CZ,AM,2,271,201912,393 -CZ,AM,2,272,201912,9128 -CZ,AM,2,273,201912,1194 -CZ,AM,2,274,201912,481 -CZ,AM,2,279,201912,13237 -CZ,AM,2,281,201912,2611 -CZ,AM,2,282,201912,58874 -CZ,AM,2,289,201912,51987 -CZ,AM,2,293,201912,385 -CZ,AM,2,324,201912,23149 -CZ,AM,2,329,201912,13484 -CZ,AO,2,151,201912,782 -CZ,AO,2,222,201912,69 -CZ,AO,2,257,201912,744 -CZ,AO,2,259,201912,56541 -CZ,AO,2,261,201912,797 -CZ,AO,2,262,201912,139057 -CZ,AO,2,263,201912,19032 -CZ,AO,2,273,201912,174663 -CZ,AO,2,279,201912,6295 -CZ,AO,2,282,201912,217 -CZ,AO,2,329,201912,180 -CZ,AR,1,011,201912,33939 -CZ,AR,1,012,201912,45440 -CZ,AR,1,014,201912,717344 -CZ,AR,1,103,201912,59302 -CZ,AR,1,110,201912,335804 -CZ,AR,1,120,201912,330944 -CZ,AR,1,151,201912,10587 -CZ,AR,1,201,201912,6854 -CZ,AR,1,222,201912,1848 -CZ,AR,1,281,201912,17826 -CZ,AR,1,289,201912,7084 -CZ,AR,1,293,201912,1557905 -CZ,AR,2,089,201912,1890 -CZ,AR,2,139,201912,261375 -CZ,AR,2,172,201912,161731 -CZ,AR,2,192,201912,205 -CZ,AR,2,201,201912,96519 -CZ,AR,2,203,201912,5376 -CZ,AR,2,205,201912,120648 -CZ,AR,2,211,201912,8997 -CZ,AR,2,221,201912,37964 -CZ,AR,2,222,201912,266452 -CZ,AR,2,231,201912,99609 -CZ,AR,2,236,201912,20993 -CZ,AR,2,239,201912,3917 -CZ,AR,2,243,201912,20928 -CZ,AR,2,257,201912,58920 -CZ,AR,2,259,201912,10565 -CZ,AR,2,263,201912,22087 -CZ,AR,2,265,201912,20184 -CZ,AR,2,267,201912,9176 -CZ,AR,2,271,201912,115455 -CZ,AR,2,273,201912,23939 -CZ,AR,2,274,201912,20541 -CZ,AR,2,279,201912,22725 -CZ,AR,2,281,201912,184351 -CZ,AR,2,282,201912,156943 -CZ,AR,2,289,201912,162312 -CZ,AR,2,293,201912,48053 -CZ,AR,2,303,201912,177598 -CZ,AR,2,310,201912,4043 -CZ,AR,2,325,201912,17288 -CZ,AR,2,329,201912,19847 -CZ,AT,1,011,201912,2313449 -CZ,AT,1,012,201912,701532 -CZ,AT,1,013,201912,21300 -CZ,AT,1,014,201912,15384 -CZ,AT,1,022,201912,110553 -CZ,AT,1,023,201912,1210 -CZ,AT,1,030,201912,3877 -CZ,AT,1,081,201912,158637 -CZ,AT,1,089,201912,1029409 -CZ,AT,1,101,201912,3509351 -CZ,AT,1,102,201912,140759 -CZ,AT,1,103,201912,2633261 -CZ,AT,1,104,201912,2411028 -CZ,AT,1,105,201912,181033 -CZ,AT,1,106,201912,1903391 -CZ,AT,1,107,201912,1906249 -CZ,AT,1,108,201912,5608682 -CZ,AT,1,109,201912,1430243 -CZ,AT,1,110,201912,3970604 -CZ,AT,1,131,201912,1522609 -CZ,AT,1,132,201912,604938 -CZ,AT,1,139,201912,3074473 -CZ,AT,1,141,201912,4965635 -CZ,AT,1,142,201912,2105 -CZ,AT,1,143,201912,743620 -CZ,AT,1,151,201912,1321754 -CZ,AT,1,152,201912,3067002 -CZ,AT,1,161,201912,2021600 -CZ,AT,1,162,201912,5732219 -CZ,AT,1,171,201912,9990987 -CZ,AT,1,172,201912,5624263 -CZ,AT,1,181,201912,6461 -CZ,AT,1,192,201912,15985638 -CZ,AT,1,201,201912,17907312 -CZ,AT,1,202,201912,609135 -CZ,AT,1,203,201912,2977054 -CZ,AT,1,204,201912,5099924 -CZ,AT,1,205,201912,4285446 -CZ,AT,1,206,201912,502000 -CZ,AT,1,211,201912,714635 -CZ,AT,1,212,201912,26854658 -CZ,AT,1,221,201912,2449971 -CZ,AT,1,222,201912,12187153 -CZ,AT,1,231,201912,1445179 -CZ,AT,1,232,201912,139464 -CZ,AT,1,233,201912,96193 -CZ,AT,1,234,201912,1047423 -CZ,AT,1,235,201912,347844 -CZ,AT,1,236,201912,161786 -CZ,AT,1,237,201912,88231 -CZ,AT,1,239,201912,2396159 -CZ,AT,1,241,201912,15501315 -CZ,AT,1,242,201912,2484930 -CZ,AT,1,243,201912,3383972 -CZ,AT,1,244,201912,20490093 -CZ,AT,1,245,201912,125021 -CZ,AT,1,251,201912,2482325 -CZ,AT,1,252,201912,543214 -CZ,AT,1,253,201912,236853 -CZ,AT,1,254,201912,136197 -CZ,AT,1,257,201912,11264456 -CZ,AT,1,259,201912,10209109 -CZ,AT,1,261,201912,2092299 -CZ,AT,1,262,201912,7960411 -CZ,AT,1,263,201912,6961511 -CZ,AT,1,264,201912,640621 -CZ,AT,1,265,201912,5097324 -CZ,AT,1,266,201912,123640 -CZ,AT,1,267,201912,881663 -CZ,AT,1,268,201912,23385 -CZ,AT,1,271,201912,15733160 -CZ,AT,1,272,201912,837272 -CZ,AT,1,273,201912,8690995 -CZ,AT,1,274,201912,1429314 -CZ,AT,1,275,201912,1601572 -CZ,AT,1,279,201912,4862128 -CZ,AT,1,281,201912,10481818 -CZ,AT,1,282,201912,26788288 -CZ,AT,1,283,201912,8022995 -CZ,AT,1,284,201912,5819992 -CZ,AT,1,289,201912,15495661 -CZ,AT,1,291,201912,38662622 -CZ,AT,1,292,201912,3179286 -CZ,AT,1,293,201912,17485363 -CZ,AT,1,301,201912,591 -CZ,AT,1,302,201912,22622921 -CZ,AT,1,303,201912,748909 -CZ,AT,1,309,201912,3346846 -CZ,AT,1,310,201912,2498890 -CZ,AT,1,321,201912,2076547 -CZ,AT,1,322,201912,445379 -CZ,AT,1,323,201912,2637670 -CZ,AT,1,324,201912,3989238 -CZ,AT,1,325,201912,5281015 -CZ,AT,1,329,201912,696678 -CZ,AT,1,351,201912,6178409 -CZ,AT,2,011,201912,8423017 -CZ,AT,2,012,201912,1035876 -CZ,AT,2,013,201912,12337 -CZ,AT,2,014,201912,4748335 -CZ,AT,2,021,201912,73 -CZ,AT,2,022,201912,21284397 -CZ,AT,2,023,201912,99 -CZ,AT,2,030,201912,1099031 -CZ,AT,2,051,201912,3139486 -CZ,AT,2,052,201912,48397 -CZ,AT,2,061,201912,16 -CZ,AT,2,081,201912,689335 -CZ,AT,2,089,201912,379995 -CZ,AT,2,101,201912,1172978 -CZ,AT,2,102,201912,1566882 -CZ,AT,2,103,201912,1361838 -CZ,AT,2,104,201912,7229738 -CZ,AT,2,105,201912,83618 -CZ,AT,2,106,201912,324042 -CZ,AT,2,107,201912,441801 -CZ,AT,2,108,201912,7688585 -CZ,AT,2,109,201912,689781 -CZ,AT,2,110,201912,2137279 -CZ,AT,2,120,201912,7 -CZ,AT,2,131,201912,1163897 -CZ,AT,2,132,201912,674964 -CZ,AT,2,139,201912,3439189 -CZ,AT,2,141,201912,9516690 -CZ,AT,2,142,201912,14900 -CZ,AT,2,143,201912,2402559 -CZ,AT,2,151,201912,1942711 -CZ,AT,2,152,201912,4617261 -CZ,AT,2,161,201912,5051307 -CZ,AT,2,162,201912,9516363 -CZ,AT,2,171,201912,3612289 -CZ,AT,2,172,201912,6048154 -CZ,AT,2,181,201912,84220 -CZ,AT,2,191,201912,260520 -CZ,AT,2,192,201912,5176939 -CZ,AT,2,201,201912,5764141 -CZ,AT,2,202,201912,10150 -CZ,AT,2,203,201912,251999 -CZ,AT,2,204,201912,6994021 -CZ,AT,2,205,201912,6704394 -CZ,AT,2,206,201912,168329 -CZ,AT,2,211,201912,962929 -CZ,AT,2,212,201912,9183702 -CZ,AT,2,221,201912,4696488 -CZ,AT,2,222,201912,11386547 -CZ,AT,2,231,201912,3202955 -CZ,AT,2,232,201912,459725 -CZ,AT,2,233,201912,668279 -CZ,AT,2,234,201912,679235 -CZ,AT,2,235,201912,271705 -CZ,AT,2,236,201912,1255827 -CZ,AT,2,237,201912,14500 -CZ,AT,2,239,201912,1778027 -CZ,AT,2,241,201912,3436654 -CZ,AT,2,242,201912,1054366 -CZ,AT,2,243,201912,2024989 -CZ,AT,2,244,201912,5323492 -CZ,AT,2,245,201912,170377 -CZ,AT,2,251,201912,10399675 -CZ,AT,2,252,201912,1438551 -CZ,AT,2,253,201912,31123 -CZ,AT,2,254,201912,266281 -CZ,AT,2,257,201912,5758176 -CZ,AT,2,259,201912,11729298 -CZ,AT,2,261,201912,1372595 -CZ,AT,2,262,201912,44936708 -CZ,AT,2,263,201912,35665750 -CZ,AT,2,264,201912,6657326 -CZ,AT,2,265,201912,4698487 -CZ,AT,2,266,201912,6365 -CZ,AT,2,267,201912,1403659 -CZ,AT,2,268,201912,26590 -CZ,AT,2,271,201912,22864109 -CZ,AT,2,272,201912,2229878 -CZ,AT,2,273,201912,5371285 -CZ,AT,2,274,201912,3569065 -CZ,AT,2,275,201912,4814696 -CZ,AT,2,279,201912,7315451 -CZ,AT,2,281,201912,11463512 -CZ,AT,2,282,201912,16615398 -CZ,AT,2,283,201912,4040774 -CZ,AT,2,284,201912,3134079 -CZ,AT,2,289,201912,15032726 -CZ,AT,2,291,201912,25601675 -CZ,AT,2,292,201912,1501751 -CZ,AT,2,293,201912,23853066 -CZ,AT,2,301,201912,29833 -CZ,AT,2,302,201912,2094775 -CZ,AT,2,303,201912,1166182 -CZ,AT,2,309,201912,801898 -CZ,AT,2,310,201912,5483308 -CZ,AT,2,321,201912,554943 -CZ,AT,2,322,201912,263467 -CZ,AT,2,323,201912,5486319 -CZ,AT,2,324,201912,11560005 -CZ,AT,2,325,201912,6846004 -CZ,AT,2,329,201912,2258392 -CZ,AT,2,351,201912,2310057 -CZ,AU,1,014,201912,2932730 -CZ,AU,1,110,201912,63489 -CZ,AU,1,139,201912,153801 -CZ,AU,1,141,201912,11364 -CZ,AU,1,143,201912,1005 -CZ,AU,1,151,201912,3038 -CZ,AU,1,152,201912,436 -CZ,AU,1,162,201912,695 -CZ,AU,1,172,201912,283 -CZ,AU,1,192,201912,8 -CZ,AU,1,204,201912,123621 -CZ,AU,1,205,201912,6520 -CZ,AU,1,212,201912,167083 -CZ,AU,1,221,201912,44479 -CZ,AU,1,222,201912,19239 -CZ,AU,1,234,201912,174 -CZ,AU,1,244,201912,638 -CZ,AU,1,251,201912,52 -CZ,AU,1,257,201912,17117 -CZ,AU,1,259,201912,143935 -CZ,AU,1,261,201912,2850 -CZ,AU,1,262,201912,43704 -CZ,AU,1,263,201912,480988 -CZ,AU,1,264,201912,75561 -CZ,AU,1,265,201912,17976 -CZ,AU,1,267,201912,25161 -CZ,AU,1,271,201912,31025 -CZ,AU,1,273,201912,1937 -CZ,AU,1,274,201912,9134 -CZ,AU,1,279,201912,12942 -CZ,AU,1,281,201912,1393622 -CZ,AU,1,282,201912,56205 -CZ,AU,1,289,201912,11250 -CZ,AU,1,293,201912,416843 -CZ,AU,1,309,201912,613 -CZ,AU,1,321,201912,57699 -CZ,AU,1,322,201912,69361 -CZ,AU,1,323,201912,138 -CZ,AU,1,325,201912,526788 -CZ,AU,1,329,201912,31119 -CZ,AU,2,089,201912,1096 -CZ,AU,2,107,201912,422762 -CZ,AU,2,108,201912,487116 -CZ,AU,2,109,201912,250853 -CZ,AU,2,110,201912,48678 -CZ,AU,2,139,201912,282071 -CZ,AU,2,141,201912,56276 -CZ,AU,2,143,201912,2866 -CZ,AU,2,151,201912,28453 -CZ,AU,2,152,201912,263917 -CZ,AU,2,161,201912,733582 -CZ,AU,2,162,201912,130427 -CZ,AU,2,171,201912,485199 -CZ,AU,2,172,201912,84336 -CZ,AU,2,192,201912,1107 -CZ,AU,2,201,201912,522682 -CZ,AU,2,203,201912,110 -CZ,AU,2,204,201912,172312 -CZ,AU,2,205,201912,128940 -CZ,AU,2,211,201912,3145 -CZ,AU,2,212,201912,51537 -CZ,AU,2,221,201912,724013 -CZ,AU,2,222,201912,404179 -CZ,AU,2,231,201912,217572 -CZ,AU,2,232,201912,39294 -CZ,AU,2,234,201912,41291 -CZ,AU,2,236,201912,74229 -CZ,AU,2,239,201912,80429 -CZ,AU,2,242,201912,723 -CZ,AU,2,243,201912,30185 -CZ,AU,2,244,201912,8174 -CZ,AU,2,251,201912,70825 -CZ,AU,2,252,201912,162851 -CZ,AU,2,254,201912,654 -CZ,AU,2,257,201912,225101 -CZ,AU,2,259,201912,346671 -CZ,AU,2,261,201912,17180 -CZ,AU,2,262,201912,206695 -CZ,AU,2,263,201912,223271 -CZ,AU,2,264,201912,806955 -CZ,AU,2,265,201912,259863 -CZ,AU,2,266,201912,466930 -CZ,AU,2,267,201912,373342 -CZ,AU,2,268,201912,2020 -CZ,AU,2,271,201912,568355 -CZ,AU,2,272,201912,974 -CZ,AU,2,273,201912,133615 -CZ,AU,2,274,201912,454480 -CZ,AU,2,275,201912,38053 -CZ,AU,2,279,201912,576677 -CZ,AU,2,281,201912,4034332 -CZ,AU,2,282,201912,1168360 -CZ,AU,2,283,201912,315517 -CZ,AU,2,284,201912,1355 -CZ,AU,2,289,201912,2367711 -CZ,AU,2,291,201912,8909284 -CZ,AU,2,292,201912,98785 -CZ,AU,2,293,201912,105559 -CZ,AU,2,302,201912,60403 -CZ,AU,2,303,201912,258399 -CZ,AU,2,309,201912,31109 -CZ,AU,2,310,201912,196149 -CZ,AU,2,321,201912,6 -CZ,AU,2,322,201912,10565 -CZ,AU,2,323,201912,186306 -CZ,AU,2,324,201912,1222550 -CZ,AU,2,325,201912,189415 -CZ,AU,2,329,201912,17604 -CZ,AZ,1,061,201912,82036786 -CZ,AZ,1,103,201912,893329 -CZ,AZ,1,139,201912,49932 -CZ,AZ,1,262,201912,2505 -CZ,AZ,1,263,201912,3536 -CZ,AZ,1,264,201912,148 -CZ,AZ,1,279,201912,68 -CZ,AZ,2,139,201912,152 -CZ,AZ,2,141,201912,94169 -CZ,AZ,2,151,201912,9079 -CZ,AZ,2,162,201912,8384 -CZ,AZ,2,172,201912,125660 -CZ,AZ,2,201,201912,907 -CZ,AZ,2,204,201912,673630 -CZ,AZ,2,205,201912,58928 -CZ,AZ,2,212,201912,107597 -CZ,AZ,2,221,201912,10696 -CZ,AZ,2,222,201912,86845 -CZ,AZ,2,231,201912,201613 -CZ,AZ,2,234,201912,57173 -CZ,AZ,2,252,201912,8364 -CZ,AZ,2,257,201912,28284 -CZ,AZ,2,259,201912,27371 -CZ,AZ,2,261,201912,1867 -CZ,AZ,2,262,201912,684415 -CZ,AZ,2,263,201912,496227 -CZ,AZ,2,264,201912,124255 -CZ,AZ,2,265,201912,54596 -CZ,AZ,2,268,201912,2288 -CZ,AZ,2,271,201912,2185 -CZ,AZ,2,272,201912,9183 -CZ,AZ,2,273,201912,4179 -CZ,AZ,2,274,201912,8769 -CZ,AZ,2,275,201912,18105 -CZ,AZ,2,279,201912,40055 -CZ,AZ,2,281,201912,348014 -CZ,AZ,2,282,201912,3791921 -CZ,AZ,2,289,201912,36 -CZ,AZ,2,291,201912,153716 -CZ,AZ,2,292,201912,1934 -CZ,AZ,2,293,201912,202101 -CZ,AZ,2,310,201912,4175 -CZ,AZ,2,324,201912,9888 -CZ,AZ,2,329,201912,213760 -CZ,BA,1,022,201912,1708 -CZ,BA,1,107,201912,7222 -CZ,BA,1,110,201912,4088 -CZ,BA,1,139,201912,17634 -CZ,BA,1,141,201912,225543 -CZ,BA,1,151,201912,24740 -CZ,BA,1,161,201912,280792 -CZ,BA,1,162,201912,112 -CZ,BA,1,172,201912,77623 -CZ,BA,1,201,201912,674396 -CZ,BA,1,205,201912,304 -CZ,BA,1,221,201912,5221 -CZ,BA,1,222,201912,18926 -CZ,BA,1,239,201912,181 -CZ,BA,1,243,201912,117891 -CZ,BA,1,244,201912,29222 -CZ,BA,1,257,201912,21781 -CZ,BA,1,259,201912,31664 -CZ,BA,1,262,201912,7063 -CZ,BA,1,263,201912,654 -CZ,BA,1,265,201912,1881 -CZ,BA,1,271,201912,179 -CZ,BA,1,273,201912,292 -CZ,BA,1,274,201912,464 -CZ,BA,1,279,201912,6754 -CZ,BA,1,281,201912,195331 -CZ,BA,1,282,201912,266419 -CZ,BA,1,284,201912,6258 -CZ,BA,1,289,201912,23797 -CZ,BA,1,293,201912,367095 -CZ,BA,1,302,201912,2090 -CZ,BA,1,303,201912,28119 -CZ,BA,1,310,201912,140287 -CZ,BA,1,351,201912,4990794 -CZ,BA,2,014,201912,99501 -CZ,BA,2,022,201912,278777 -CZ,BA,2,052,201912,191479 -CZ,BA,2,081,201912,5728 -CZ,BA,2,108,201912,462274 -CZ,BA,2,109,201912,8502 -CZ,BA,2,110,201912,201600 -CZ,BA,2,132,201912,151675 -CZ,BA,2,139,201912,55562 -CZ,BA,2,141,201912,218869 -CZ,BA,2,143,201912,14539 -CZ,BA,2,151,201912,11083 -CZ,BA,2,152,201912,1298 -CZ,BA,2,161,201912,24852 -CZ,BA,2,162,201912,181988 -CZ,BA,2,171,201912,102545 -CZ,BA,2,172,201912,38196 -CZ,BA,2,192,201912,645232 -CZ,BA,2,201,201912,297472 -CZ,BA,2,203,201912,32766 -CZ,BA,2,204,201912,599257 -CZ,BA,2,205,201912,133234 -CZ,BA,2,212,201912,56414 -CZ,BA,2,221,201912,49343 -CZ,BA,2,222,201912,452437 -CZ,BA,2,231,201912,212847 -CZ,BA,2,232,201912,348 -CZ,BA,2,233,201912,6442 -CZ,BA,2,234,201912,7304 -CZ,BA,2,236,201912,1729 -CZ,BA,2,239,201912,22666 -CZ,BA,2,241,201912,158141 -CZ,BA,2,242,201912,4452 -CZ,BA,2,243,201912,190966 -CZ,BA,2,244,201912,260249 -CZ,BA,2,251,201912,107233 -CZ,BA,2,252,201912,17076 -CZ,BA,2,257,201912,132097 -CZ,BA,2,259,201912,150475 -CZ,BA,2,261,201912,31748 -CZ,BA,2,262,201912,308230 -CZ,BA,2,263,201912,719241 -CZ,BA,2,264,201912,44590 -CZ,BA,2,265,201912,76707 -CZ,BA,2,271,201912,17837 -CZ,BA,2,272,201912,65873 -CZ,BA,2,273,201912,15047 -CZ,BA,2,274,201912,8319 -CZ,BA,2,275,201912,106783 -CZ,BA,2,279,201912,29250 -CZ,BA,2,281,201912,72423 -CZ,BA,2,282,201912,177673 -CZ,BA,2,284,201912,10826 -CZ,BA,2,289,201912,196904 -CZ,BA,2,291,201912,1549238 -CZ,BA,2,292,201912,16068 -CZ,BA,2,293,201912,79994 -CZ,BA,2,309,201912,89 -CZ,BA,2,310,201912,43526 -CZ,BA,2,321,201912,14997 -CZ,BA,2,324,201912,140964 -CZ,BA,2,325,201912,18033 -CZ,BA,2,329,201912,14258 -CZ,BA,2,351,201912,209000 -CZ,BB,1,325,201912,21607 -CZ,BD,1,132,201912,145 -CZ,BD,1,139,201912,146468 -CZ,BD,1,141,201912,4232291 -CZ,BD,1,143,201912,526793 -CZ,BD,1,151,201912,38 -CZ,BD,1,152,201912,42793 -CZ,BD,1,329,201912,14 -CZ,BD,2,081,201912,45204 -CZ,BD,2,105,201912,1637088 -CZ,BD,2,201,201912,265431 -CZ,BD,2,205,201912,832 -CZ,BD,2,211,201912,102222 -CZ,BD,2,222,201912,1280 -CZ,BD,2,231,201912,8661 -CZ,BD,2,234,201912,14257 -CZ,BD,2,259,201912,2641 -CZ,BD,2,261,201912,499 -CZ,BD,2,262,201912,1522 -CZ,BD,2,263,201912,548 -CZ,BD,2,265,201912,56937 -CZ,BD,2,271,201912,1095125 -CZ,BD,2,272,201912,1564 -CZ,BD,2,273,201912,8652 -CZ,BD,2,274,201912,250 -CZ,BD,2,279,201912,45484 -CZ,BD,2,281,201912,1059545 -CZ,BD,2,282,201912,81349 -CZ,BD,2,289,201912,151419 -CZ,BD,2,303,201912,107110 -CZ,BD,2,310,201912,229 -CZ,BE,1,011,201912,1521409 -CZ,BE,1,012,201912,4453103 -CZ,BE,1,013,201912,24523 -CZ,BE,1,014,201912,10401 -CZ,BE,1,022,201912,57970 -CZ,BE,1,072,201912,13201 -CZ,BE,1,081,201912,322795 -CZ,BE,1,089,201912,266941 -CZ,BE,1,101,201912,7963173 -CZ,BE,1,102,201912,181711 -CZ,BE,1,103,201912,2151702 -CZ,BE,1,104,201912,347872 -CZ,BE,1,105,201912,2372731 -CZ,BE,1,106,201912,1444968 -CZ,BE,1,107,201912,1285080 -CZ,BE,1,108,201912,4779018 -CZ,BE,1,109,201912,1366254 -CZ,BE,1,110,201912,1053501 -CZ,BE,1,120,201912,1794757 -CZ,BE,1,131,201912,440456 -CZ,BE,1,132,201912,924178 -CZ,BE,1,139,201912,3465354 -CZ,BE,1,141,201912,2550550 -CZ,BE,1,143,201912,508937 -CZ,BE,1,151,201912,836727 -CZ,BE,1,152,201912,1699838 -CZ,BE,1,161,201912,1754 -CZ,BE,1,162,201912,610657 -CZ,BE,1,171,201912,3685542 -CZ,BE,1,172,201912,3245605 -CZ,BE,1,181,201912,65293 -CZ,BE,1,192,201912,2332977 -CZ,BE,1,201,201912,23224190 -CZ,BE,1,202,201912,478455 -CZ,BE,1,203,201912,1495286 -CZ,BE,1,204,201912,15445032 -CZ,BE,1,205,201912,5074387 -CZ,BE,1,206,201912,2477821 -CZ,BE,1,211,201912,77036 -CZ,BE,1,212,201912,23085215 -CZ,BE,1,221,201912,3390494 -CZ,BE,1,222,201912,11585900 -CZ,BE,1,231,201912,4463188 -CZ,BE,1,232,201912,15219 -CZ,BE,1,233,201912,243573 -CZ,BE,1,234,201912,51197 -CZ,BE,1,235,201912,4158 -CZ,BE,1,236,201912,37256 -CZ,BE,1,239,201912,444427 -CZ,BE,1,241,201912,7145359 -CZ,BE,1,242,201912,196422 -CZ,BE,1,243,201912,691656 -CZ,BE,1,244,201912,3472372 -CZ,BE,1,245,201912,10972 -CZ,BE,1,251,201912,584916 -CZ,BE,1,252,201912,57381 -CZ,BE,1,254,201912,54104 -CZ,BE,1,257,201912,2442078 -CZ,BE,1,259,201912,2140224 -CZ,BE,1,261,201912,1686138 -CZ,BE,1,262,201912,2317860 -CZ,BE,1,263,201912,6557719 -CZ,BE,1,264,201912,3047289 -CZ,BE,1,265,201912,2498079 -CZ,BE,1,266,201912,877685 -CZ,BE,1,267,201912,659008 -CZ,BE,1,268,201912,1210213 -CZ,BE,1,271,201912,1794951 -CZ,BE,1,272,201912,255954 -CZ,BE,1,273,201912,1400233 -CZ,BE,1,274,201912,539862 -CZ,BE,1,275,201912,658476 -CZ,BE,1,279,201912,1916304 -CZ,BE,1,281,201912,5126786 -CZ,BE,1,282,201912,5847963 -CZ,BE,1,283,201912,943816 -CZ,BE,1,284,201912,2331480 -CZ,BE,1,289,201912,2851545 -CZ,BE,1,291,201912,17527400 -CZ,BE,1,292,201912,387018 -CZ,BE,1,293,201912,6583606 -CZ,BE,1,301,201912,40022 -CZ,BE,1,302,201912,6410 -CZ,BE,1,303,201912,1121010 -CZ,BE,1,309,201912,747687 -CZ,BE,1,310,201912,255566 -CZ,BE,1,321,201912,1006796 -CZ,BE,1,322,201912,86307 -CZ,BE,1,323,201912,183106 -CZ,BE,1,324,201912,175121 -CZ,BE,1,325,201912,7545431 -CZ,BE,1,329,201912,696702 -CZ,BE,1,351,201912,2238415 -CZ,BE,2,011,201912,123229 -CZ,BE,2,012,201912,318374 -CZ,BE,2,014,201912,331078 -CZ,BE,2,030,201912,168073 -CZ,BE,2,081,201912,759781 -CZ,BE,2,089,201912,31751 -CZ,BE,2,101,201912,971969 -CZ,BE,2,102,201912,6086 -CZ,BE,2,103,201912,18210 -CZ,BE,2,104,201912,10711 -CZ,BE,2,105,201912,7590 -CZ,BE,2,106,201912,554089 -CZ,BE,2,107,201912,1333280 -CZ,BE,2,108,201912,1974920 -CZ,BE,2,109,201912,209338 -CZ,BE,2,110,201912,131516 -CZ,BE,2,120,201912,2176968 -CZ,BE,2,131,201912,69112 -CZ,BE,2,132,201912,294711 -CZ,BE,2,139,201912,1966475 -CZ,BE,2,141,201912,2421071 -CZ,BE,2,142,201912,583 -CZ,BE,2,143,201912,451675 -CZ,BE,2,151,201912,406411 -CZ,BE,2,152,201912,1189667 -CZ,BE,2,161,201912,130604 -CZ,BE,2,162,201912,706573 -CZ,BE,2,171,201912,1395282 -CZ,BE,2,172,201912,3683057 -CZ,BE,2,191,201912,46199 -CZ,BE,2,192,201912,24724 -CZ,BE,2,201,201912,3638140 -CZ,BE,2,202,201912,1418021 -CZ,BE,2,203,201912,40806 -CZ,BE,2,204,201912,6807171 -CZ,BE,2,205,201912,2759710 -CZ,BE,2,206,201912,1100017 -CZ,BE,2,211,201912,2702 -CZ,BE,2,212,201912,3380158 -CZ,BE,2,221,201912,4636080 -CZ,BE,2,222,201912,5479591 -CZ,BE,2,231,201912,4278513 -CZ,BE,2,232,201912,221924 -CZ,BE,2,233,201912,238552 -CZ,BE,2,234,201912,46340 -CZ,BE,2,236,201912,292375 -CZ,BE,2,237,201912,3901 -CZ,BE,2,239,201912,178765 -CZ,BE,2,241,201912,1067859 -CZ,BE,2,242,201912,239250 -CZ,BE,2,243,201912,405471 -CZ,BE,2,244,201912,982213 -CZ,BE,2,245,201912,69 -CZ,BE,2,251,201912,2330295 -CZ,BE,2,252,201912,1772349 -CZ,BE,2,253,201912,158244 -CZ,BE,2,254,201912,205558 -CZ,BE,2,257,201912,4725090 -CZ,BE,2,259,201912,6961677 -CZ,BE,2,261,201912,2933556 -CZ,BE,2,262,201912,18310319 -CZ,BE,2,263,201912,3797221 -CZ,BE,2,264,201912,2044099 -CZ,BE,2,265,201912,1435595 -CZ,BE,2,266,201912,8280 -CZ,BE,2,267,201912,559016 -CZ,BE,2,268,201912,22962 -CZ,BE,2,271,201912,6694646 -CZ,BE,2,272,201912,522999 -CZ,BE,2,273,201912,3081067 -CZ,BE,2,274,201912,1781785 -CZ,BE,2,275,201912,1415374 -CZ,BE,2,279,201912,5013751 -CZ,BE,2,281,201912,8331768 -CZ,BE,2,282,201912,24832843 -CZ,BE,2,283,201912,60742 -CZ,BE,2,284,201912,624438 -CZ,BE,2,289,201912,5348263 -CZ,BE,2,291,201912,29396983 -CZ,BE,2,292,201912,82688 -CZ,BE,2,293,201912,23239433 -CZ,BE,2,302,201912,614656 -CZ,BE,2,303,201912,477827 -CZ,BE,2,309,201912,259279 -CZ,BE,2,310,201912,6541964 -CZ,BE,2,321,201912,217261 -CZ,BE,2,322,201912,4696 -CZ,BE,2,323,201912,378939 -CZ,BE,2,324,201912,3775445 -CZ,BE,2,325,201912,4619859 -CZ,BE,2,329,201912,458005 -CZ,BF,2,262,201912,17264 -CZ,BF,2,263,201912,1477 -CZ,BF,2,279,201912,12317 -CZ,BF,2,291,201912,4040 -CZ,BG,1,011,201912,420325 -CZ,BG,1,012,201912,1171187 -CZ,BG,1,089,201912,21703 -CZ,BG,1,101,201912,69457 -CZ,BG,1,103,201912,259893 -CZ,BG,1,106,201912,504877 -CZ,BG,1,107,201912,194927 -CZ,BG,1,108,201912,633232 -CZ,BG,1,109,201912,145956 -CZ,BG,1,110,201912,379753 -CZ,BG,1,120,201912,216576 -CZ,BG,1,131,201912,51471 -CZ,BG,1,132,201912,2108 -CZ,BG,1,139,201912,49111 -CZ,BG,1,141,201912,752821 -CZ,BG,1,143,201912,422529 -CZ,BG,1,151,201912,210282 -CZ,BG,1,152,201912,25969 -CZ,BG,1,161,201912,7 -CZ,BG,1,162,201912,191346 -CZ,BG,1,171,201912,91657 -CZ,BG,1,172,201912,16162 -CZ,BG,1,201,201912,483964 -CZ,BG,1,203,201912,23815 -CZ,BG,1,204,201912,453572 -CZ,BG,1,205,201912,24614 -CZ,BG,1,206,201912,33202 -CZ,BG,1,212,201912,2188395 -CZ,BG,1,221,201912,1984843 -CZ,BG,1,222,201912,544211 -CZ,BG,1,231,201912,756776 -CZ,BG,1,233,201912,23081 -CZ,BG,1,234,201912,41337 -CZ,BG,1,236,201912,8037 -CZ,BG,1,241,201912,895321 -CZ,BG,1,242,201912,256871 -CZ,BG,1,243,201912,47870 -CZ,BG,1,244,201912,1268805 -CZ,BG,1,251,201912,65046 -CZ,BG,1,252,201912,829754 -CZ,BG,1,257,201912,296278 -CZ,BG,1,259,201912,278331 -CZ,BG,1,261,201912,408744 -CZ,BG,1,262,201912,62191 -CZ,BG,1,263,201912,1468515 -CZ,BG,1,264,201912,110055 -CZ,BG,1,265,201912,34640 -CZ,BG,1,266,201912,63834 -CZ,BG,1,267,201912,644 -CZ,BG,1,268,201912,512 -CZ,BG,1,271,201912,6567769 -CZ,BG,1,272,201912,95596 -CZ,BG,1,273,201912,5226898 -CZ,BG,1,274,201912,12870 -CZ,BG,1,275,201912,680136 -CZ,BG,1,279,201912,714754 -CZ,BG,1,281,201912,70467 -CZ,BG,1,282,201912,362344 -CZ,BG,1,284,201912,2134 -CZ,BG,1,289,201912,127 -CZ,BG,1,291,201912,538259 -CZ,BG,1,293,201912,7770723 -CZ,BG,1,302,201912,70 -CZ,BG,1,309,201912,35 -CZ,BG,1,310,201912,1569574 -CZ,BG,1,321,201912,4467 -CZ,BG,1,323,201912,62146 -CZ,BG,1,324,201912,396622 -CZ,BG,1,325,201912,459050 -CZ,BG,1,329,201912,92698 -CZ,BG,2,011,201912,45877 -CZ,BG,2,012,201912,113052 -CZ,BG,2,014,201912,117920 -CZ,BG,2,030,201912,190904 -CZ,BG,2,081,201912,27485 -CZ,BG,2,089,201912,480 -CZ,BG,2,101,201912,279878 -CZ,BG,2,102,201912,135521 -CZ,BG,2,103,201912,114422 -CZ,BG,2,104,201912,59087 -CZ,BG,2,105,201912,495219 -CZ,BG,2,106,201912,246004 -CZ,BG,2,107,201912,651192 -CZ,BG,2,108,201912,784456 -CZ,BG,2,109,201912,236828 -CZ,BG,2,110,201912,688884 -CZ,BG,2,131,201912,49958 -CZ,BG,2,132,201912,503651 -CZ,BG,2,139,201912,277533 -CZ,BG,2,141,201912,360853 -CZ,BG,2,143,201912,24774 -CZ,BG,2,151,201912,108756 -CZ,BG,2,152,201912,201319 -CZ,BG,2,161,201912,8177 -CZ,BG,2,162,201912,296132 -CZ,BG,2,171,201912,86651 -CZ,BG,2,172,201912,484596 -CZ,BG,2,181,201912,2892 -CZ,BG,2,192,201912,133803 -CZ,BG,2,201,201912,918632 -CZ,BG,2,202,201912,51732 -CZ,BG,2,203,201912,16288 -CZ,BG,2,204,201912,2605427 -CZ,BG,2,205,201912,206851 -CZ,BG,2,206,201912,6160 -CZ,BG,2,211,201912,19479 -CZ,BG,2,212,201912,3207702 -CZ,BG,2,221,201912,246833 -CZ,BG,2,222,201912,2253033 -CZ,BG,2,231,201912,374759 -CZ,BG,2,232,201912,105652 -CZ,BG,2,233,201912,40973 -CZ,BG,2,234,201912,215548 -CZ,BG,2,235,201912,12598 -CZ,BG,2,236,201912,31868 -CZ,BG,2,239,201912,141019 -CZ,BG,2,241,201912,439103 -CZ,BG,2,242,201912,22735 -CZ,BG,2,243,201912,366653 -CZ,BG,2,244,201912,163654 -CZ,BG,2,251,201912,175929 -CZ,BG,2,252,201912,134604 -CZ,BG,2,253,201912,172 -CZ,BG,2,254,201912,3890 -CZ,BG,2,257,201912,626413 -CZ,BG,2,259,201912,1219209 -CZ,BG,2,261,201912,743524 -CZ,BG,2,262,201912,2949177 -CZ,BG,2,263,201912,6463177 -CZ,BG,2,264,201912,225903 -CZ,BG,2,265,201912,3319822 -CZ,BG,2,266,201912,32906 -CZ,BG,2,267,201912,32350 -CZ,BG,2,268,201912,30709 -CZ,BG,2,271,201912,1934109 -CZ,BG,2,272,201912,570719 -CZ,BG,2,273,201912,2166819 -CZ,BG,2,274,201912,83624 -CZ,BG,2,275,201912,660640 -CZ,BG,2,279,201912,18047349 -CZ,BG,2,281,201912,619303 -CZ,BG,2,282,201912,2553005 -CZ,BG,2,283,201912,322678 -CZ,BG,2,284,201912,27961 -CZ,BG,2,289,201912,1496869 -CZ,BG,2,291,201912,5722256 -CZ,BG,2,292,201912,48107 -CZ,BG,2,293,201912,699782 -CZ,BG,2,302,201912,92891 -CZ,BG,2,303,201912,964437 -CZ,BG,2,309,201912,615117 -CZ,BG,2,310,201912,387645 -CZ,BG,2,321,201912,88536 -CZ,BG,2,322,201912,1271 -CZ,BG,2,323,201912,191776 -CZ,BG,2,324,201912,985990 -CZ,BG,2,325,201912,4029547 -CZ,BG,2,329,201912,257385 -CZ,BH,1,141,201912,98 -CZ,BH,1,143,201912,113 -CZ,BH,1,151,201912,137 -CZ,BH,1,201,201912,182 -CZ,BH,1,262,201912,558 -CZ,BH,1,263,201912,763 -CZ,BH,1,265,201912,24 -CZ,BH,1,279,201912,71 -CZ,BH,2,139,201912,56146 -CZ,BH,2,143,201912,51 -CZ,BH,2,151,201912,746 -CZ,BH,2,162,201912,168 -CZ,BH,2,201,201912,21803 -CZ,BH,2,212,201912,20096 -CZ,BH,2,221,201912,663 -CZ,BH,2,222,201912,1646 -CZ,BH,2,231,201912,307 -CZ,BH,2,232,201912,95217 -CZ,BH,2,236,201912,22225 -CZ,BH,2,239,201912,553 -CZ,BH,2,243,201912,4305 -CZ,BH,2,259,201912,28476 -CZ,BH,2,262,201912,94542 -CZ,BH,2,263,201912,4682 -CZ,BH,2,265,201912,5071 -CZ,BH,2,271,201912,762032 -CZ,BH,2,273,201912,1986 -CZ,BH,2,274,201912,37 -CZ,BH,2,275,201912,7825 -CZ,BH,2,279,201912,8681 -CZ,BH,2,281,201912,50551 -CZ,BH,2,282,201912,195347 -CZ,BH,2,289,201912,35949 -CZ,BH,2,291,201912,1651332 -CZ,BH,2,310,201912,13968 -CZ,BH,2,325,201912,52298 -CZ,BI,2,141,201912,25214 -CZ,BJ,2,205,201912,1488 -CZ,BM,2,221,201912,241 -CZ,BM,2,281,201912,293 -CZ,BM,2,293,201912,219 -CZ,BO,2,205,201912,12942 -CZ,BO,2,222,201912,49978 -CZ,BO,2,231,201912,14418 -CZ,BO,2,259,201912,1529 -CZ,BO,2,265,201912,372 -CZ,BO,2,271,201912,110178 -CZ,BO,2,281,201912,370 -CZ,BO,2,289,201912,19750 -CZ,BO,2,324,201912,487 -CZ,BO,2,325,201912,19805 -CZ,BR,1,012,201912,63794 -CZ,BR,1,089,201912,176186 -CZ,BR,1,103,201912,330821 -CZ,BR,1,108,201912,54944 -CZ,BR,1,110,201912,11562 -CZ,BR,1,120,201912,916454 -CZ,BR,1,139,201912,1411 -CZ,BR,1,141,201912,1693 -CZ,BR,1,151,201912,14257 -CZ,BR,1,152,201912,2354 -CZ,BR,1,161,201912,77272 -CZ,BR,1,171,201912,210432 -CZ,BR,1,201,201912,55398 -CZ,BR,1,204,201912,3233 -CZ,BR,1,205,201912,90553 -CZ,BR,1,221,201912,11596 -CZ,BR,1,222,201912,14835 -CZ,BR,1,237,201912,14582 -CZ,BR,1,241,201912,4272859 -CZ,BR,1,257,201912,5625 -CZ,BR,1,259,201912,47177 -CZ,BR,1,265,201912,6780 -CZ,BR,1,273,201912,117268 -CZ,BR,1,279,201912,2864 -CZ,BR,1,281,201912,173525 -CZ,BR,1,282,201912,578 -CZ,BR,1,289,201912,46143 -CZ,BR,1,291,201912,504396 -CZ,BR,1,293,201912,281937 -CZ,BR,1,310,201912,134768 -CZ,BR,1,325,201912,765 -CZ,BR,2,108,201912,43099 -CZ,BR,2,109,201912,53494 -CZ,BR,2,110,201912,19742 -CZ,BR,2,132,201912,96292 -CZ,BR,2,139,201912,488927 -CZ,BR,2,141,201912,537 -CZ,BR,2,151,201912,327 -CZ,BR,2,162,201912,74738 -CZ,BR,2,171,201912,15826 -CZ,BR,2,172,201912,428689 -CZ,BR,2,201,201912,3056404 -CZ,BR,2,203,201912,6259 -CZ,BR,2,204,201912,24968 -CZ,BR,2,205,201912,65299 -CZ,BR,2,211,201912,419239 -CZ,BR,2,212,201912,46273 -CZ,BR,2,221,201912,824356 -CZ,BR,2,222,201912,918572 -CZ,BR,2,231,201912,1384027 -CZ,BR,2,234,201912,22956 -CZ,BR,2,236,201912,75 -CZ,BR,2,239,201912,32961 -CZ,BR,2,241,201912,10324 -CZ,BR,2,242,201912,15897 -CZ,BR,2,243,201912,191769 -CZ,BR,2,244,201912,52816 -CZ,BR,2,251,201912,171186 -CZ,BR,2,252,201912,9270 -CZ,BR,2,257,201912,450575 -CZ,BR,2,259,201912,303425 -CZ,BR,2,261,201912,17715 -CZ,BR,2,262,201912,67160 -CZ,BR,2,263,201912,38168 -CZ,BR,2,264,201912,238034 -CZ,BR,2,265,201912,610772 -CZ,BR,2,267,201912,61477 -CZ,BR,2,271,201912,911155 -CZ,BR,2,272,201912,27429 -CZ,BR,2,273,201912,403096 -CZ,BR,2,274,201912,14829 -CZ,BR,2,275,201912,1780 -CZ,BR,2,279,201912,189665 -CZ,BR,2,281,201912,1958743 -CZ,BR,2,282,201912,2785448 -CZ,BR,2,284,201912,730265 -CZ,BR,2,289,201912,1929304 -CZ,BR,2,291,201912,17816 -CZ,BR,2,293,201912,1983730 -CZ,BR,2,303,201912,1885296 -CZ,BR,2,309,201912,11488 -CZ,BR,2,310,201912,50728 -CZ,BR,2,324,201912,720 -CZ,BR,2,325,201912,99404 -CZ,BR,2,329,201912,42013 -CZ,BY,1,011,201912,912 -CZ,BY,1,089,201912,110142 -CZ,BY,1,103,201912,138231 -CZ,BY,1,110,201912,3911 -CZ,BY,1,132,201912,49454 -CZ,BY,1,139,201912,13374 -CZ,BY,1,141,201912,11265 -CZ,BY,1,151,201912,7740 -CZ,BY,1,161,201912,233475 -CZ,BY,1,162,201912,507518 -CZ,BY,1,171,201912,40917 -CZ,BY,1,172,201912,66354 -CZ,BY,1,192,201912,2470638 -CZ,BY,1,201,201912,1153028 -CZ,BY,1,206,201912,298119 -CZ,BY,1,221,201912,22942 -CZ,BY,1,222,201912,103187 -CZ,BY,1,231,201912,92116 -CZ,BY,1,233,201912,332 -CZ,BY,1,234,201912,39058 -CZ,BY,1,236,201912,6545 -CZ,BY,1,239,201912,105469 -CZ,BY,1,241,201912,26863 -CZ,BY,1,242,201912,5530 -CZ,BY,1,243,201912,603574 -CZ,BY,1,244,201912,42930 -CZ,BY,1,251,201912,402946 -CZ,BY,1,252,201912,284 -CZ,BY,1,257,201912,11188 -CZ,BY,1,259,201912,1004596 -CZ,BY,1,261,201912,7385 -CZ,BY,1,262,201912,83558 -CZ,BY,1,263,201912,65480 -CZ,BY,1,264,201912,3293 -CZ,BY,1,265,201912,77659 -CZ,BY,1,267,201912,593 -CZ,BY,1,271,201912,29310 -CZ,BY,1,272,201912,10161 -CZ,BY,1,273,201912,200707 -CZ,BY,1,275,201912,56300 -CZ,BY,1,279,201912,30997 -CZ,BY,1,281,201912,31853 -CZ,BY,1,282,201912,128592 -CZ,BY,1,283,201912,10639 -CZ,BY,1,289,201912,3369 -CZ,BY,1,293,201912,66046 -CZ,BY,1,303,201912,240641 -CZ,BY,1,310,201912,116708 -CZ,BY,1,324,201912,12680 -CZ,BY,2,089,201912,679 -CZ,BY,2,105,201912,25290 -CZ,BY,2,106,201912,34124 -CZ,BY,2,108,201912,305723 -CZ,BY,2,109,201912,100291 -CZ,BY,2,110,201912,177666 -CZ,BY,2,131,201912,80 -CZ,BY,2,139,201912,26258 -CZ,BY,2,141,201912,51642 -CZ,BY,2,143,201912,1394 -CZ,BY,2,151,201912,27906 -CZ,BY,2,152,201912,8430 -CZ,BY,2,162,201912,17767 -CZ,BY,2,171,201912,78743 -CZ,BY,2,172,201912,59737 -CZ,BY,2,192,201912,7323 -CZ,BY,2,201,201912,390510 -CZ,BY,2,203,201912,199496 -CZ,BY,2,204,201912,261122 -CZ,BY,2,205,201912,246586 -CZ,BY,2,211,201912,170497 -CZ,BY,2,212,201912,24337 -CZ,BY,2,221,201912,178207 -CZ,BY,2,222,201912,559613 -CZ,BY,2,231,201912,221709 -CZ,BY,2,232,201912,423 -CZ,BY,2,233,201912,3225 -CZ,BY,2,234,201912,76555 -CZ,BY,2,239,201912,16068 -CZ,BY,2,241,201912,99983 -CZ,BY,2,242,201912,157397 -CZ,BY,2,243,201912,15827 -CZ,BY,2,244,201912,211748 -CZ,BY,2,251,201912,17915 -CZ,BY,2,252,201912,11768 -CZ,BY,2,257,201912,137719 -CZ,BY,2,259,201912,525486 -CZ,BY,2,261,201912,883731 -CZ,BY,2,262,201912,4454127 -CZ,BY,2,263,201912,8202377 -CZ,BY,2,264,201912,730678 -CZ,BY,2,265,201912,392632 -CZ,BY,2,267,201912,151362 -CZ,BY,2,271,201912,807374 -CZ,BY,2,272,201912,4520 -CZ,BY,2,273,201912,102969 -CZ,BY,2,274,201912,152737 -CZ,BY,2,275,201912,106572 -CZ,BY,2,279,201912,804371 -CZ,BY,2,281,201912,2074391 -CZ,BY,2,282,201912,922264 -CZ,BY,2,283,201912,99240 -CZ,BY,2,284,201912,1009750 -CZ,BY,2,289,201912,499489 -CZ,BY,2,291,201912,766593 -CZ,BY,2,292,201912,1540 -CZ,BY,2,293,201912,152932 -CZ,BY,2,302,201912,5628 -CZ,BY,2,310,201912,41174 -CZ,BY,2,323,201912,56455 -CZ,BY,2,324,201912,75 -CZ,BY,2,325,201912,38703 -CZ,BY,2,329,201912,21730 -CZ,BZ,2,231,201912,3390 -CZ,CA,1,011,201912,80400 -CZ,CA,1,014,201912,80539 -CZ,CA,1,108,201912,242376 -CZ,CA,1,109,201912,396338 -CZ,CA,1,110,201912,981 -CZ,CA,1,132,201912,89 -CZ,CA,1,139,201912,110924 -CZ,CA,1,141,201912,26597 -CZ,CA,1,143,201912,3491 -CZ,CA,1,151,201912,16574 -CZ,CA,1,152,201912,6297 -CZ,CA,1,161,201912,112266 -CZ,CA,1,162,201912,2769 -CZ,CA,1,171,201912,802 -CZ,CA,1,172,201912,2869 -CZ,CA,1,192,201912,21290 -CZ,CA,1,201,201912,36068 -CZ,CA,1,203,201912,466 -CZ,CA,1,204,201912,1391837 -CZ,CA,1,205,201912,203962 -CZ,CA,1,206,201912,1588 -CZ,CA,1,211,201912,296358 -CZ,CA,1,221,201912,41092 -CZ,CA,1,222,201912,249693 -CZ,CA,1,231,201912,42663 -CZ,CA,1,232,201912,70295 -CZ,CA,1,234,201912,701 -CZ,CA,1,239,201912,20285 -CZ,CA,1,242,201912,491 -CZ,CA,1,243,201912,24215 -CZ,CA,1,244,201912,9443 -CZ,CA,1,252,201912,1694 -CZ,CA,1,254,201912,9387 -CZ,CA,1,257,201912,119215 -CZ,CA,1,259,201912,76381 -CZ,CA,1,261,201912,24237 -CZ,CA,1,262,201912,206890 -CZ,CA,1,263,201912,1054268 -CZ,CA,1,264,201912,32765 -CZ,CA,1,265,201912,616117 -CZ,CA,1,266,201912,9357 -CZ,CA,1,267,201912,163175 -CZ,CA,1,268,201912,91 -CZ,CA,1,271,201912,174680 -CZ,CA,1,272,201912,9217 -CZ,CA,1,273,201912,48752 -CZ,CA,1,274,201912,25178 -CZ,CA,1,275,201912,254012 -CZ,CA,1,279,201912,183517 -CZ,CA,1,281,201912,966039 -CZ,CA,1,282,201912,96548 -CZ,CA,1,284,201912,50615 -CZ,CA,1,289,201912,245075 -CZ,CA,1,291,201912,493313 -CZ,CA,1,292,201912,5473 -CZ,CA,1,293,201912,197822 -CZ,CA,1,303,201912,14332164 -CZ,CA,1,309,201912,66919 -CZ,CA,1,310,201912,28347 -CZ,CA,1,321,201912,5698 -CZ,CA,1,322,201912,18638 -CZ,CA,1,323,201912,129198 -CZ,CA,1,324,201912,219692 -CZ,CA,1,325,201912,84455 -CZ,CA,1,329,201912,117315 -CZ,CA,2,011,201912,40973 -CZ,CA,2,012,201912,63997 -CZ,CA,2,013,201912,1279 -CZ,CA,2,014,201912,4403 -CZ,CA,2,030,201912,6549 -CZ,CA,2,081,201912,18147 -CZ,CA,2,089,201912,89 -CZ,CA,2,102,201912,140 -CZ,CA,2,106,201912,8291 -CZ,CA,2,108,201912,147553 -CZ,CA,2,110,201912,229582 -CZ,CA,2,132,201912,550 -CZ,CA,2,139,201912,353226 -CZ,CA,2,141,201912,102713 -CZ,CA,2,143,201912,9392 -CZ,CA,2,151,201912,5311 -CZ,CA,2,152,201912,132 -CZ,CA,2,162,201912,3709 -CZ,CA,2,171,201912,209052 -CZ,CA,2,172,201912,56084 -CZ,CA,2,201,201912,846413 -CZ,CA,2,203,201912,5702 -CZ,CA,2,204,201912,25918 -CZ,CA,2,205,201912,10878 -CZ,CA,2,206,201912,28872 -CZ,CA,2,212,201912,261913 -CZ,CA,2,221,201912,2360600 -CZ,CA,2,222,201912,1008773 -CZ,CA,2,231,201912,517116 -CZ,CA,2,232,201912,280593 -CZ,CA,2,233,201912,15359 -CZ,CA,2,234,201912,4628 -CZ,CA,2,236,201912,109791 -CZ,CA,2,239,201912,183727 -CZ,CA,2,241,201912,2562977 -CZ,CA,2,242,201912,248326 -CZ,CA,2,243,201912,47350 -CZ,CA,2,244,201912,45911 -CZ,CA,2,251,201912,86620 -CZ,CA,2,254,201912,63637 -CZ,CA,2,257,201912,280177 -CZ,CA,2,259,201912,944015 -CZ,CA,2,261,201912,11338 -CZ,CA,2,262,201912,485528 -CZ,CA,2,263,201912,52606 -CZ,CA,2,264,201912,185911 -CZ,CA,2,265,201912,1619230 -CZ,CA,2,267,201912,8742 -CZ,CA,2,271,201912,538659 -CZ,CA,2,273,201912,190564 -CZ,CA,2,274,201912,117604 -CZ,CA,2,275,201912,5970 -CZ,CA,2,279,201912,71043 -CZ,CA,2,281,201912,914261 -CZ,CA,2,282,201912,3093050 -CZ,CA,2,284,201912,9419 -CZ,CA,2,289,201912,475784 -CZ,CA,2,293,201912,65091 -CZ,CA,2,302,201912,272027 -CZ,CA,2,303,201912,291921 -CZ,CA,2,309,201912,83513 -CZ,CA,2,310,201912,621658 -CZ,CA,2,321,201912,2634 -CZ,CA,2,322,201912,233762 -CZ,CA,2,323,201912,68320 -CZ,CA,2,324,201912,59821 -CZ,CA,2,325,201912,110357 -CZ,CA,2,329,201912,278398 -CZ,CD,2,221,201912,10118 -CZ,CD,2,262,201912,16471 -CZ,CG,2,132,201912,5276 -CZ,CG,2,141,201912,37151 -CZ,CG,2,151,201912,485 -CZ,CG,2,172,201912,12627 -CZ,CG,2,262,201912,5003 -CZ,CG,2,324,201912,113 -CZ,CH,1,022,201912,23727 -CZ,CH,1,089,201912,2457 -CZ,CH,1,103,201912,22613 -CZ,CH,1,105,201912,13983 -CZ,CH,1,106,201912,10258 -CZ,CH,1,107,201912,79165 -CZ,CH,1,108,201912,856394 -CZ,CH,1,109,201912,1336 -CZ,CH,1,110,201912,144045 -CZ,CH,1,120,201912,2297 -CZ,CH,1,131,201912,17930 -CZ,CH,1,132,201912,13944 -CZ,CH,1,139,201912,156299 -CZ,CH,1,141,201912,51313 -CZ,CH,1,143,201912,5572 -CZ,CH,1,151,201912,42334 -CZ,CH,1,152,201912,6808 -CZ,CH,1,162,201912,73932 -CZ,CH,1,171,201912,26226 -CZ,CH,1,172,201912,185315 -CZ,CH,1,181,201912,83393 -CZ,CH,1,192,201912,42978 -CZ,CH,1,201,201912,216515 -CZ,CH,1,202,201912,16320 -CZ,CH,1,203,201912,284355 -CZ,CH,1,204,201912,1564861 -CZ,CH,1,205,201912,580221 -CZ,CH,1,206,201912,20661 -CZ,CH,1,211,201912,1063 -CZ,CH,1,212,201912,14017361 -CZ,CH,1,221,201912,638681 -CZ,CH,1,222,201912,1270954 -CZ,CH,1,231,201912,328760 -CZ,CH,1,234,201912,306212 -CZ,CH,1,239,201912,97228 -CZ,CH,1,241,201912,61875 -CZ,CH,1,242,201912,1375445 -CZ,CH,1,243,201912,191643 -CZ,CH,1,244,201912,2968293 -CZ,CH,1,245,201912,96109 -CZ,CH,1,251,201912,99284 -CZ,CH,1,252,201912,72007 -CZ,CH,1,254,201912,26201 -CZ,CH,1,257,201912,1445094 -CZ,CH,1,259,201912,3024362 -CZ,CH,1,261,201912,1250400 -CZ,CH,1,262,201912,581628 -CZ,CH,1,263,201912,387035 -CZ,CH,1,264,201912,315721 -CZ,CH,1,265,201912,7259844 -CZ,CH,1,266,201912,313766 -CZ,CH,1,267,201912,325953 -CZ,CH,1,268,201912,21324 -CZ,CH,1,271,201912,4679321 -CZ,CH,1,272,201912,381788 -CZ,CH,1,273,201912,1685302 -CZ,CH,1,274,201912,72504 -CZ,CH,1,275,201912,173355 -CZ,CH,1,279,201912,1679669 -CZ,CH,1,281,201912,3540652 -CZ,CH,1,282,201912,1791287 -CZ,CH,1,283,201912,29467 -CZ,CH,1,284,201912,1672834 -CZ,CH,1,289,201912,9389842 -CZ,CH,1,291,201912,79113 -CZ,CH,1,292,201912,14372 -CZ,CH,1,293,201912,557798 -CZ,CH,1,302,201912,55218 -CZ,CH,1,303,201912,39193 -CZ,CH,1,309,201912,33928 -CZ,CH,1,310,201912,88032 -CZ,CH,1,321,201912,590845 -CZ,CH,1,323,201912,76627 -CZ,CH,1,324,201912,1036 -CZ,CH,1,325,201912,1403635 -CZ,CH,1,329,201912,251405 -CZ,CH,2,011,201912,220304 -CZ,CH,2,012,201912,10 -CZ,CH,2,014,201912,5428 -CZ,CH,2,022,201912,36817 -CZ,CH,2,030,201912,33642 -CZ,CH,2,081,201912,41086 -CZ,CH,2,089,201912,22012 -CZ,CH,2,101,201912,58406 -CZ,CH,2,103,201912,75251 -CZ,CH,2,104,201912,10422 -CZ,CH,2,105,201912,4 -CZ,CH,2,106,201912,13667 -CZ,CH,2,107,201912,52400 -CZ,CH,2,108,201912,280599 -CZ,CH,2,110,201912,410447 -CZ,CH,2,120,201912,272712 -CZ,CH,2,131,201912,263138 -CZ,CH,2,132,201912,328617 -CZ,CH,2,139,201912,614125 -CZ,CH,2,141,201912,1413555 -CZ,CH,2,142,201912,1401 -CZ,CH,2,143,201912,129129 -CZ,CH,2,151,201912,339882 -CZ,CH,2,152,201912,72221 -CZ,CH,2,161,201912,171700 -CZ,CH,2,162,201912,1368736 -CZ,CH,2,171,201912,355308 -CZ,CH,2,172,201912,1864433 -CZ,CH,2,191,201912,230892 -CZ,CH,2,192,201912,141010 -CZ,CH,2,201,201912,1847479 -CZ,CH,2,202,201912,8737 -CZ,CH,2,203,201912,63384 -CZ,CH,2,204,201912,28610289 -CZ,CH,2,205,201912,227727 -CZ,CH,2,206,201912,48165 -CZ,CH,2,211,201912,204417 -CZ,CH,2,212,201912,656179 -CZ,CH,2,221,201912,1519539 -CZ,CH,2,222,201912,2358039 -CZ,CH,2,231,201912,756038 -CZ,CH,2,232,201912,22894 -CZ,CH,2,233,201912,38821 -CZ,CH,2,234,201912,318220 -CZ,CH,2,236,201912,494802 -CZ,CH,2,237,201912,1798 -CZ,CH,2,239,201912,31851 -CZ,CH,2,241,201912,412553 -CZ,CH,2,242,201912,637017 -CZ,CH,2,243,201912,253449 -CZ,CH,2,244,201912,1352526 -CZ,CH,2,245,201912,1037 -CZ,CH,2,251,201912,3221506 -CZ,CH,2,252,201912,947222 -CZ,CH,2,254,201912,6106 -CZ,CH,2,257,201912,1428464 -CZ,CH,2,259,201912,3861451 -CZ,CH,2,261,201912,903612 -CZ,CH,2,262,201912,33349839 -CZ,CH,2,263,201912,16569212 -CZ,CH,2,264,201912,221325 -CZ,CH,2,265,201912,4327021 -CZ,CH,2,266,201912,1337533 -CZ,CH,2,267,201912,696536 -CZ,CH,2,268,201912,66575 -CZ,CH,2,271,201912,7853362 -CZ,CH,2,272,201912,582877 -CZ,CH,2,273,201912,1276385 -CZ,CH,2,274,201912,1020894 -CZ,CH,2,275,201912,706393 -CZ,CH,2,279,201912,3590838 -CZ,CH,2,281,201912,2798483 -CZ,CH,2,282,201912,6736108 -CZ,CH,2,283,201912,270232 -CZ,CH,2,284,201912,1410796 -CZ,CH,2,289,201912,3047455 -CZ,CH,2,291,201912,22339644 -CZ,CH,2,292,201912,722417 -CZ,CH,2,293,201912,636975 -CZ,CH,2,302,201912,1526443 -CZ,CH,2,303,201912,346326 -CZ,CH,2,309,201912,172937 -CZ,CH,2,310,201912,2981131 -CZ,CH,2,321,201912,368044 -CZ,CH,2,322,201912,144629 -CZ,CH,2,323,201912,383489 -CZ,CH,2,324,201912,2914175 -CZ,CH,2,325,201912,1640934 -CZ,CH,2,329,201912,731396 -CZ,CI,1,012,201912,770897 -CZ,CI,2,151,201912,913 -CZ,CI,2,171,201912,16091 -CZ,CI,2,204,201912,2844 -CZ,CI,2,205,201912,5993 -CZ,CI,2,233,201912,16762 -CZ,CI,2,244,201912,1267 -CZ,CI,2,257,201912,19 -CZ,CI,2,259,201912,28806 -CZ,CI,2,262,201912,41901 -CZ,CI,2,263,201912,32571 -CZ,CI,2,264,201912,1239 -CZ,CI,2,279,201912,9447 -CZ,CI,2,289,201912,4533 -CZ,CI,2,291,201912,1493720 -CZ,CL,1,103,201912,155157 -CZ,CL,1,110,201912,1069784 -CZ,CL,1,171,201912,207901 -CZ,CL,1,212,201912,163 -CZ,CL,1,265,201912,8489 -CZ,CL,2,081,201912,964 -CZ,CL,2,089,201912,4006 -CZ,CL,2,109,201912,149767 -CZ,CL,2,139,201912,227627 -CZ,CL,2,141,201912,50 -CZ,CL,2,151,201912,728 -CZ,CL,2,152,201912,26110 -CZ,CL,2,162,201912,2486 -CZ,CL,2,171,201912,260752 -CZ,CL,2,172,201912,133768 -CZ,CL,2,201,201912,31163 -CZ,CL,2,204,201912,8145 -CZ,CL,2,205,201912,28893 -CZ,CL,2,211,201912,67833 -CZ,CL,2,221,201912,1829 -CZ,CL,2,222,201912,168682 -CZ,CL,2,231,201912,30266 -CZ,CL,2,234,201912,10389 -CZ,CL,2,243,201912,2274 -CZ,CL,2,257,201912,237943 -CZ,CL,2,259,201912,76234 -CZ,CL,2,261,201912,158 -CZ,CL,2,263,201912,2947 -CZ,CL,2,264,201912,2633 -CZ,CL,2,265,201912,73768 -CZ,CL,2,267,201912,3020 -CZ,CL,2,271,201912,255597 -CZ,CL,2,273,201912,17734 -CZ,CL,2,274,201912,4213 -CZ,CL,2,275,201912,14479 -CZ,CL,2,279,201912,101377 -CZ,CL,2,281,201912,888571 -CZ,CL,2,282,201912,890975 -CZ,CL,2,289,201912,187721 -CZ,CL,2,291,201912,283414 -CZ,CL,2,293,201912,9311 -CZ,CL,2,309,201912,35 -CZ,CL,2,310,201912,38350 -CZ,CL,2,323,201912,1270 -CZ,CL,2,324,201912,215 -CZ,CL,2,325,201912,331114 -CZ,CL,2,329,201912,147 -CZ,CM,1,012,201912,292382 -CZ,CM,2,141,201912,31028 -CZ,CM,2,262,201912,20711 -CZ,CM,2,265,201912,118 -CZ,CM,2,279,201912,6232 -CZ,CM,2,289,201912,3528 -CZ,CM,2,291,201912,17453 -CZ,CN,1,011,201912,247314 -CZ,CN,1,012,201912,151305 -CZ,CN,1,030,201912,24920 -CZ,CN,1,081,201912,49233 -CZ,CN,1,089,201912,132286 -CZ,CN,1,101,201912,1515305 -CZ,CN,1,102,201912,205694 -CZ,CN,1,103,201912,460547 -CZ,CN,1,104,201912,1084 -CZ,CN,1,106,201912,2841 -CZ,CN,1,108,201912,2303365 -CZ,CN,1,109,201912,750485 -CZ,CN,1,110,201912,22001 -CZ,CN,1,120,201912,116954 -CZ,CN,1,131,201912,402640 -CZ,CN,1,132,201912,885935 -CZ,CN,1,139,201912,6841665 -CZ,CN,1,141,201912,12114112 -CZ,CN,1,142,201912,3008 -CZ,CN,1,143,201912,606605 -CZ,CN,1,151,201912,6487200 -CZ,CN,1,152,201912,4569113 -CZ,CN,1,161,201912,138956 -CZ,CN,1,162,201912,1162818 -CZ,CN,1,171,201912,333303 -CZ,CN,1,172,201912,2926321 -CZ,CN,1,192,201912,140379 -CZ,CN,1,201,201912,3432570 -CZ,CN,1,202,201912,235639 -CZ,CN,1,203,201912,210225 -CZ,CN,1,204,201912,949181 -CZ,CN,1,205,201912,3316629 -CZ,CN,1,206,201912,793826 -CZ,CN,1,211,201912,2313587 -CZ,CN,1,212,201912,1133973 -CZ,CN,1,221,201912,2427696 -CZ,CN,1,222,201912,15492981 -CZ,CN,1,231,201912,2028384 -CZ,CN,1,232,201912,68448 -CZ,CN,1,233,201912,64186 -CZ,CN,1,234,201912,1382982 -CZ,CN,1,236,201912,558140 -CZ,CN,1,237,201912,263768 -CZ,CN,1,239,201912,500181 -CZ,CN,1,241,201912,1276990 -CZ,CN,1,242,201912,1055015 -CZ,CN,1,243,201912,1665601 -CZ,CN,1,244,201912,6789771 -CZ,CN,1,245,201912,35773 -CZ,CN,1,251,201912,1813580 -CZ,CN,1,252,201912,128534 -CZ,CN,1,254,201912,44619 -CZ,CN,1,257,201912,12391316 -CZ,CN,1,259,201912,18251296 -CZ,CN,1,261,201912,95517111 -CZ,CN,1,262,201912,324754413 -CZ,CN,1,263,201912,396335267 -CZ,CN,1,264,201912,19271641 -CZ,CN,1,265,201912,9135861 -CZ,CN,1,266,201912,119169 -CZ,CN,1,267,201912,1599539 -CZ,CN,1,268,201912,366512 -CZ,CN,1,271,201912,20430597 -CZ,CN,1,272,201912,6755907 -CZ,CN,1,273,201912,10198726 -CZ,CN,1,274,201912,6570750 -CZ,CN,1,275,201912,11430979 -CZ,CN,1,279,201912,35126155 -CZ,CN,1,281,201912,16030491 -CZ,CN,1,282,201912,22665566 -CZ,CN,1,283,201912,2148805 -CZ,CN,1,284,201912,2310589 -CZ,CN,1,289,201912,7549375 -CZ,CN,1,291,201912,11494705 -CZ,CN,1,292,201912,272199 -CZ,CN,1,293,201912,17140972 -CZ,CN,1,301,201912,284798 -CZ,CN,1,302,201912,7462664 -CZ,CN,1,303,201912,624597 -CZ,CN,1,309,201912,5243186 -CZ,CN,1,310,201912,7519823 -CZ,CN,1,321,201912,420794 -CZ,CN,1,322,201912,862287 -CZ,CN,1,323,201912,4343351 -CZ,CN,1,324,201912,12066407 -CZ,CN,1,325,201912,4528031 -CZ,CN,1,329,201912,4300400 -CZ,CN,2,012,201912,238916 -CZ,CN,2,014,201912,172341 -CZ,CN,2,022,201912,4299975 -CZ,CN,2,089,201912,24 -CZ,CN,2,101,201912,329823 -CZ,CN,2,103,201912,13933 -CZ,CN,2,105,201912,192538 -CZ,CN,2,106,201912,50864 -CZ,CN,2,107,201912,3764 -CZ,CN,2,108,201912,1666100 -CZ,CN,2,109,201912,28892 -CZ,CN,2,110,201912,316065 -CZ,CN,2,131,201912,12827 -CZ,CN,2,132,201912,143704 -CZ,CN,2,139,201912,570732 -CZ,CN,2,141,201912,22694 -CZ,CN,2,143,201912,4191 -CZ,CN,2,151,201912,1947716 -CZ,CN,2,152,201912,80 -CZ,CN,2,161,201912,573052 -CZ,CN,2,162,201912,81257 -CZ,CN,2,171,201912,10965899 -CZ,CN,2,172,201912,198733 -CZ,CN,2,192,201912,1308471 -CZ,CN,2,201,201912,2006137 -CZ,CN,2,203,201912,157458 -CZ,CN,2,204,201912,58263 -CZ,CN,2,205,201912,2377778 -CZ,CN,2,211,201912,2440641 -CZ,CN,2,212,201912,4551 -CZ,CN,2,221,201912,4563147 -CZ,CN,2,222,201912,4828963 -CZ,CN,2,231,201912,1234070 -CZ,CN,2,232,201912,98610 -CZ,CN,2,234,201912,572717 -CZ,CN,2,236,201912,49195 -CZ,CN,2,239,201912,63784 -CZ,CN,2,241,201912,532937 -CZ,CN,2,242,201912,179182 -CZ,CN,2,243,201912,1492183 -CZ,CN,2,244,201912,164323 -CZ,CN,2,245,201912,44 -CZ,CN,2,251,201912,57505 -CZ,CN,2,252,201912,66177 -CZ,CN,2,257,201912,2224514 -CZ,CN,2,259,201912,3875340 -CZ,CN,2,261,201912,2222308 -CZ,CN,2,262,201912,7073737 -CZ,CN,2,263,201912,6540449 -CZ,CN,2,264,201912,300756 -CZ,CN,2,265,201912,19011185 -CZ,CN,2,266,201912,5573589 -CZ,CN,2,267,201912,318098 -CZ,CN,2,268,201912,226 -CZ,CN,2,271,201912,9921456 -CZ,CN,2,272,201912,126639 -CZ,CN,2,273,201912,10799871 -CZ,CN,2,274,201912,216253 -CZ,CN,2,275,201912,293872 -CZ,CN,2,279,201912,4917233 -CZ,CN,2,281,201912,21263179 -CZ,CN,2,282,201912,5155382 -CZ,CN,2,283,201912,19351 -CZ,CN,2,284,201912,1253423 -CZ,CN,2,289,201912,8556731 -CZ,CN,2,291,201912,370658 -CZ,CN,2,293,201912,8402429 -CZ,CN,2,302,201912,3411205 -CZ,CN,2,303,201912,2070423 -CZ,CN,2,309,201912,78303 -CZ,CN,2,310,201912,1493102 -CZ,CN,2,321,201912,27294 -CZ,CN,2,322,201912,156510 -CZ,CN,2,323,201912,483058 -CZ,CN,2,324,201912,6795562 -CZ,CN,2,325,201912,1267559 -CZ,CN,2,329,201912,387100 -CZ,CO,1,030,201912,24220 -CZ,CO,1,108,201912,182162 -CZ,CO,1,151,201912,491 -CZ,CO,1,222,201912,2633 -CZ,CO,2,105,201912,231906 -CZ,CO,2,108,201912,6537 -CZ,CO,2,110,201912,10497 -CZ,CO,2,139,201912,10296 -CZ,CO,2,151,201912,132 -CZ,CO,2,162,201912,998 -CZ,CO,2,172,201912,56308 -CZ,CO,2,201,201912,167636 -CZ,CO,2,205,201912,14784 -CZ,CO,2,211,201912,10028 -CZ,CO,2,221,201912,41796 -CZ,CO,2,222,201912,299303 -CZ,CO,2,231,201912,33472 -CZ,CO,2,251,201912,49592 -CZ,CO,2,257,201912,1137 -CZ,CO,2,259,201912,47673 -CZ,CO,2,261,201912,877 -CZ,CO,2,262,201912,134871 -CZ,CO,2,263,201912,17824 -CZ,CO,2,264,201912,40335 -CZ,CO,2,265,201912,28876 -CZ,CO,2,271,201912,53761 -CZ,CO,2,272,201912,4740 -CZ,CO,2,273,201912,8983 -CZ,CO,2,274,201912,297 -CZ,CO,2,279,201912,32049 -CZ,CO,2,281,201912,51527 -CZ,CO,2,282,201912,14195 -CZ,CO,2,289,201912,27898 -CZ,CO,2,291,201912,129268 -CZ,CO,2,293,201912,4013 -CZ,CO,2,321,201912,165 -CZ,CO,2,323,201912,83628 -CZ,CO,2,329,201912,15250 -CZ,CR,1,279,201912,11011 -CZ,CR,2,089,201912,1630 -CZ,CR,2,141,201912,1995 -CZ,CR,2,201,201912,97099 -CZ,CR,2,222,201912,311532 -CZ,CR,2,231,201912,3673 -CZ,CR,2,259,201912,655 -CZ,CR,2,265,201912,166 -CZ,CR,2,279,201912,3896 -CZ,CU,1,108,201912,178023 -CZ,CU,1,110,201912,49723 -CZ,CU,1,120,201912,27458 -CZ,CU,2,110,201912,522914 -CZ,CU,2,259,201912,15 -CZ,CU,2,265,201912,10 -CZ,CU,2,271,201912,20 -CZ,CU,2,273,201912,332442 -CZ,CU,2,281,201912,114011 -CZ,CU,2,282,201912,32 -CZ,CU,2,293,201912,272 -CZ,CU,2,309,201912,60 -CZ,CY,1,012,201912,58432 -CZ,CY,1,103,201912,6704 -CZ,CY,1,105,201912,59782 -CZ,CY,1,106,201912,6099 -CZ,CY,1,107,201912,9697 -CZ,CY,1,108,201912,8780 -CZ,CY,1,110,201912,22508 -CZ,CY,1,141,201912,6037 -CZ,CY,1,171,201912,77249 -CZ,CY,1,192,201912,2839 -CZ,CY,1,201,201912,14695 -CZ,CY,1,203,201912,459 -CZ,CY,1,204,201912,9008 -CZ,CY,1,205,201912,3719 -CZ,CY,1,212,201912,1272225 -CZ,CY,1,222,201912,86359 -CZ,CY,1,231,201912,38062 -CZ,CY,1,232,201912,543 -CZ,CY,1,234,201912,5319 -CZ,CY,1,239,201912,404 -CZ,CY,1,261,201912,0 -CZ,CY,1,262,201912,1454 -CZ,CY,1,264,201912,8677 -CZ,CY,1,272,201912,8197 -CZ,CY,1,273,201912,10 -CZ,CY,1,274,201912,23384 -CZ,CY,1,279,201912,758 -CZ,CY,1,293,201912,1669 -CZ,CY,1,323,201912,2914 -CZ,CY,1,329,201912,115 -CZ,CY,2,030,201912,630 -CZ,CY,2,081,201912,248 -CZ,CY,2,101,201912,72890 -CZ,CY,2,107,201912,28152 -CZ,CY,2,108,201912,258406 -CZ,CY,2,109,201912,26428 -CZ,CY,2,110,201912,23439 -CZ,CY,2,120,201912,886708 -CZ,CY,2,132,201912,11992 -CZ,CY,2,139,201912,29383 -CZ,CY,2,141,201912,2851 -CZ,CY,2,143,201912,680 -CZ,CY,2,151,201912,30380 -CZ,CY,2,152,201912,1700 -CZ,CY,2,162,201912,188140 -CZ,CY,2,171,201912,222 -CZ,CY,2,172,201912,41785 -CZ,CY,2,201,201912,937 -CZ,CY,2,204,201912,2888281 -CZ,CY,2,205,201912,4052 -CZ,CY,2,211,201912,42274 -CZ,CY,2,212,201912,1428 -CZ,CY,2,221,201912,82004 -CZ,CY,2,222,201912,42471 -CZ,CY,2,231,201912,31500 -CZ,CY,2,234,201912,46273 -CZ,CY,2,236,201912,129239 -CZ,CY,2,244,201912,172 -CZ,CY,2,251,201912,9222 -CZ,CY,2,252,201912,70769 -CZ,CY,2,257,201912,5638 -CZ,CY,2,259,201912,19731 -CZ,CY,2,261,201912,949 -CZ,CY,2,262,201912,307414 -CZ,CY,2,263,201912,2198566 -CZ,CY,2,264,201912,58024 -CZ,CY,2,265,201912,14505 -CZ,CY,2,267,201912,42107 -CZ,CY,2,271,201912,178017 -CZ,CY,2,272,201912,179 -CZ,CY,2,273,201912,2593 -CZ,CY,2,274,201912,27041 -CZ,CY,2,275,201912,9716 -CZ,CY,2,279,201912,21947 -CZ,CY,2,281,201912,243348 -CZ,CY,2,282,201912,52875 -CZ,CY,2,284,201912,24639 -CZ,CY,2,289,201912,96247 -CZ,CY,2,291,201912,779936 -CZ,CY,2,293,201912,16858 -CZ,CY,2,309,201912,1974 -CZ,CY,2,310,201912,8301 -CZ,CY,2,321,201912,64 -CZ,CY,2,322,201912,34 -CZ,CY,2,323,201912,5916 -CZ,CY,2,324,201912,175319 -CZ,CY,2,325,201912,56341 -CZ,CY,2,329,201912,83763 -CZ,DE,1,011,201912,12962214 -CZ,DE,1,012,201912,19059384 -CZ,DE,1,013,201912,1018383 -CZ,DE,1,014,201912,1922202 -CZ,DE,1,021,201912,13118 -CZ,DE,1,022,201912,605755 -CZ,DE,1,023,201912,88604 -CZ,DE,1,030,201912,511940 -CZ,DE,1,051,201912,32235 -CZ,DE,1,052,201912,316059 -CZ,DE,1,061,201912,72 -CZ,DE,1,062,201912,23309258 -CZ,DE,1,071,201912,3765 -CZ,DE,1,072,201912,74385 -CZ,DE,1,081,201912,1735121 -CZ,DE,1,089,201912,2952895 -CZ,DE,1,101,201912,35892769 -CZ,DE,1,102,201912,6077922 -CZ,DE,1,103,201912,12046156 -CZ,DE,1,104,201912,8306717 -CZ,DE,1,105,201912,18234815 -CZ,DE,1,106,201912,4247058 -CZ,DE,1,107,201912,8454307 -CZ,DE,1,108,201912,40296699 -CZ,DE,1,109,201912,10152677 -CZ,DE,1,110,201912,10177480 -CZ,DE,1,120,201912,7473892 -CZ,DE,1,131,201912,3248083 -CZ,DE,1,132,201912,5515653 -CZ,DE,1,139,201912,38116429 -CZ,DE,1,141,201912,49171318 -CZ,DE,1,142,201912,29308 -CZ,DE,1,143,201912,10275417 -CZ,DE,1,151,201912,6311906 -CZ,DE,1,152,201912,12105793 -CZ,DE,1,161,201912,3393005 -CZ,DE,1,162,201912,8779371 -CZ,DE,1,171,201912,28338386 -CZ,DE,1,172,201912,26780443 -CZ,DE,1,181,201912,477318 -CZ,DE,1,191,201912,565784 -CZ,DE,1,192,201912,84601236 -CZ,DE,1,201,201912,124256790 -CZ,DE,1,202,201912,2485617 -CZ,DE,1,203,201912,21447005 -CZ,DE,1,204,201912,36963075 -CZ,DE,1,205,201912,59086208 -CZ,DE,1,206,201912,5211000 -CZ,DE,1,211,201912,4054118 -CZ,DE,1,212,201912,69737751 -CZ,DE,1,221,201912,35779000 -CZ,DE,1,222,201912,123950251 -CZ,DE,1,231,201912,12596926 -CZ,DE,1,232,201912,2006189 -CZ,DE,1,233,201912,1913732 -CZ,DE,1,234,201912,5011632 -CZ,DE,1,235,201912,1112494 -CZ,DE,1,236,201912,1852329 -CZ,DE,1,237,201912,142242 -CZ,DE,1,239,201912,7220332 -CZ,DE,1,241,201912,50908019 -CZ,DE,1,242,201912,15136448 -CZ,DE,1,243,201912,18898477 -CZ,DE,1,244,201912,59728279 -CZ,DE,1,245,201912,323429 -CZ,DE,1,251,201912,6980157 -CZ,DE,1,252,201912,3197947 -CZ,DE,1,253,201912,641186 -CZ,DE,1,254,201912,872109 -CZ,DE,1,257,201912,59202091 -CZ,DE,1,259,201912,99923868 -CZ,DE,1,261,201912,52648885 -CZ,DE,1,262,201912,172142265 -CZ,DE,1,263,201912,75088217 -CZ,DE,1,264,201912,28948185 -CZ,DE,1,265,201912,88555575 -CZ,DE,1,266,201912,8034344 -CZ,DE,1,267,201912,12705941 -CZ,DE,1,268,201912,2769088 -CZ,DE,1,271,201912,135127837 -CZ,DE,1,272,201912,17569341 -CZ,DE,1,273,201912,66330134 -CZ,DE,1,274,201912,12519707 -CZ,DE,1,275,201912,33205423 -CZ,DE,1,279,201912,60301596 -CZ,DE,1,281,201912,156866026 -CZ,DE,1,282,201912,129876135 -CZ,DE,1,283,201912,15315847 -CZ,DE,1,284,201912,60644988 -CZ,DE,1,289,201912,102760889 -CZ,DE,1,291,201912,156298893 -CZ,DE,1,292,201912,8615714 -CZ,DE,1,293,201912,291788614 -CZ,DE,1,301,201912,130591 -CZ,DE,1,302,201912,9523639 -CZ,DE,1,303,201912,14444527 -CZ,DE,1,309,201912,6408745 -CZ,DE,1,310,201912,39556340 -CZ,DE,1,321,201912,5331258 -CZ,DE,1,322,201912,3035357 -CZ,DE,1,323,201912,3759689 -CZ,DE,1,324,201912,23839230 -CZ,DE,1,325,201912,29660116 -CZ,DE,1,329,201912,11725399 -CZ,DE,1,351,201912,34900338 -CZ,DE,2,011,201912,32675434 -CZ,DE,2,012,201912,2068416 -CZ,DE,2,013,201912,77400 -CZ,DE,2,014,201912,3658169 -CZ,DE,2,022,201912,9680983 -CZ,DE,2,023,201912,30349 -CZ,DE,2,030,201912,2315600 -CZ,DE,2,052,201912,466726 -CZ,DE,2,061,201912,129 -CZ,DE,2,062,201912,1367054 -CZ,DE,2,072,201912,11173 -CZ,DE,2,081,201912,3105214 -CZ,DE,2,089,201912,703184 -CZ,DE,2,101,201912,4901890 -CZ,DE,2,102,201912,143107 -CZ,DE,2,103,201912,2735137 -CZ,DE,2,104,201912,13376334 -CZ,DE,2,105,201912,21189008 -CZ,DE,2,106,201912,3757399 -CZ,DE,2,107,201912,2851126 -CZ,DE,2,108,201912,19364371 -CZ,DE,2,109,201912,6694520 -CZ,DE,2,110,201912,9128075 -CZ,DE,2,120,201912,4464706 -CZ,DE,2,131,201912,5427531 -CZ,DE,2,132,201912,5122156 -CZ,DE,2,139,201912,36971025 -CZ,DE,2,141,201912,67152802 -CZ,DE,2,142,201912,146691 -CZ,DE,2,143,201912,13617325 -CZ,DE,2,151,201912,11595678 -CZ,DE,2,152,201912,10682410 -CZ,DE,2,161,201912,4798839 -CZ,DE,2,162,201912,30162810 -CZ,DE,2,171,201912,17479865 -CZ,DE,2,172,201912,26617403 -CZ,DE,2,181,201912,540941 -CZ,DE,2,191,201912,4084625 -CZ,DE,2,192,201912,34095118 -CZ,DE,2,201,201912,41964773 -CZ,DE,2,202,201912,473381 -CZ,DE,2,203,201912,2618773 -CZ,DE,2,204,201912,28756014 -CZ,DE,2,205,201912,20082960 -CZ,DE,2,206,201912,1064899 -CZ,DE,2,211,201912,1013232 -CZ,DE,2,212,201912,64015926 -CZ,DE,2,221,201912,47886814 -CZ,DE,2,222,201912,86243351 -CZ,DE,2,231,201912,21575267 -CZ,DE,2,232,201912,1682566 -CZ,DE,2,233,201912,2560373 -CZ,DE,2,234,201912,5870000 -CZ,DE,2,235,201912,1578786 -CZ,DE,2,236,201912,4152152 -CZ,DE,2,237,201912,582729 -CZ,DE,2,239,201912,5332961 -CZ,DE,2,241,201912,19685565 -CZ,DE,2,242,201912,8065294 -CZ,DE,2,243,201912,23444706 -CZ,DE,2,244,201912,21841157 -CZ,DE,2,245,201912,185947 -CZ,DE,2,251,201912,40708646 -CZ,DE,2,252,201912,11411038 -CZ,DE,2,253,201912,17002 -CZ,DE,2,254,201912,909796 -CZ,DE,2,257,201912,52384174 -CZ,DE,2,259,201912,98382750 -CZ,DE,2,261,201912,65081293 -CZ,DE,2,262,201912,439450452 -CZ,DE,2,263,201912,299608795 -CZ,DE,2,264,201912,66557372 -CZ,DE,2,265,201912,47260196 -CZ,DE,2,266,201912,423927 -CZ,DE,2,267,201912,6773757 -CZ,DE,2,268,201912,466560 -CZ,DE,2,271,201912,118511612 -CZ,DE,2,272,201912,26296668 -CZ,DE,2,273,201912,71265210 -CZ,DE,2,274,201912,51655021 -CZ,DE,2,275,201912,50878176 -CZ,DE,2,279,201912,70138052 -CZ,DE,2,281,201912,139513200 -CZ,DE,2,282,201912,153695879 -CZ,DE,2,283,201912,15905639 -CZ,DE,2,284,201912,20673808 -CZ,DE,2,289,201912,84761471 -CZ,DE,2,291,201912,328151443 -CZ,DE,2,292,201912,13411032 -CZ,DE,2,293,201912,367290050 -CZ,DE,2,301,201912,66893 -CZ,DE,2,302,201912,12789191 -CZ,DE,2,303,201912,18023855 -CZ,DE,2,309,201912,10415568 -CZ,DE,2,310,201912,88942187 -CZ,DE,2,321,201912,6682638 -CZ,DE,2,322,201912,1646255 -CZ,DE,2,323,201912,6552896 -CZ,DE,2,324,201912,74923986 -CZ,DE,2,325,201912,24797377 -CZ,DE,2,329,201912,17808932 -CZ,DE,2,351,201912,37599493 -CZ,DK,1,011,201912,355378 -CZ,DK,1,012,201912,1026309 -CZ,DK,1,013,201912,104330 -CZ,DK,1,014,201912,436884 -CZ,DK,1,023,201912,5586 -CZ,DK,1,030,201912,1725814 -CZ,DK,1,081,201912,10884 -CZ,DK,1,089,201912,21586 -CZ,DK,1,101,201912,2585328 -CZ,DK,1,102,201912,1270596 -CZ,DK,1,103,201912,15419 -CZ,DK,1,104,201912,103358 -CZ,DK,1,105,201912,82140 -CZ,DK,1,106,201912,259861 -CZ,DK,1,107,201912,14804 -CZ,DK,1,108,201912,796364 -CZ,DK,1,109,201912,380733 -CZ,DK,1,110,201912,134161 -CZ,DK,1,120,201912,840701 -CZ,DK,1,131,201912,552 -CZ,DK,1,132,201912,30409 -CZ,DK,1,139,201912,542566 -CZ,DK,1,141,201912,327243 -CZ,DK,1,143,201912,171566 -CZ,DK,1,151,201912,77299 -CZ,DK,1,152,201912,10649 -CZ,DK,1,161,201912,78866 -CZ,DK,1,162,201912,205737 -CZ,DK,1,171,201912,86567 -CZ,DK,1,172,201912,1061299 -CZ,DK,1,192,201912,5201 -CZ,DK,1,201,201912,2243457 -CZ,DK,1,202,201912,1426 -CZ,DK,1,203,201912,85250 -CZ,DK,1,204,201912,483691 -CZ,DK,1,205,201912,609982 -CZ,DK,1,206,201912,464997 -CZ,DK,1,211,201912,252392 -CZ,DK,1,212,201912,28922154 -CZ,DK,1,221,201912,189640 -CZ,DK,1,222,201912,5426335 -CZ,DK,1,231,201912,186047 -CZ,DK,1,232,201912,60247 -CZ,DK,1,234,201912,24458 -CZ,DK,1,235,201912,3169 -CZ,DK,1,236,201912,17634 -CZ,DK,1,237,201912,482 -CZ,DK,1,239,201912,21487 -CZ,DK,1,241,201912,1797880 -CZ,DK,1,242,201912,263601 -CZ,DK,1,243,201912,101955 -CZ,DK,1,244,201912,1901326 -CZ,DK,1,245,201912,22467 -CZ,DK,1,251,201912,44435 -CZ,DK,1,252,201912,29034 -CZ,DK,1,254,201912,38230 -CZ,DK,1,257,201912,135527 -CZ,DK,1,259,201912,1083441 -CZ,DK,1,261,201912,141525 -CZ,DK,1,262,201912,675339 -CZ,DK,1,263,201912,398192 -CZ,DK,1,264,201912,919594 -CZ,DK,1,265,201912,3600618 -CZ,DK,1,266,201912,901041 -CZ,DK,1,267,201912,15203 -CZ,DK,1,268,201912,4617 -CZ,DK,1,271,201912,1395198 -CZ,DK,1,272,201912,551850 -CZ,DK,1,273,201912,160318 -CZ,DK,1,274,201912,170103 -CZ,DK,1,275,201912,222446 -CZ,DK,1,279,201912,960713 -CZ,DK,1,281,201912,2430038 -CZ,DK,1,282,201912,1385632 -CZ,DK,1,283,201912,1407695 -CZ,DK,1,284,201912,195483 -CZ,DK,1,289,201912,1423078 -CZ,DK,1,291,201912,609281 -CZ,DK,1,292,201912,29342 -CZ,DK,1,293,201912,1559765 -CZ,DK,1,302,201912,1429 -CZ,DK,1,303,201912,16051 -CZ,DK,1,309,201912,75414 -CZ,DK,1,310,201912,1503020 -CZ,DK,1,321,201912,73578 -CZ,DK,1,322,201912,6843 -CZ,DK,1,323,201912,236304 -CZ,DK,1,324,201912,9609931 -CZ,DK,1,325,201912,695211 -CZ,DK,1,329,201912,107730 -CZ,DK,2,011,201912,150219 -CZ,DK,2,012,201912,24141 -CZ,DK,2,030,201912,46452 -CZ,DK,2,081,201912,2 -CZ,DK,2,101,201912,228031 -CZ,DK,2,102,201912,13 -CZ,DK,2,103,201912,22377 -CZ,DK,2,104,201912,121471 -CZ,DK,2,105,201912,259411 -CZ,DK,2,106,201912,200952 -CZ,DK,2,107,201912,221534 -CZ,DK,2,108,201912,615098 -CZ,DK,2,109,201912,303038 -CZ,DK,2,110,201912,888350 -CZ,DK,2,131,201912,299131 -CZ,DK,2,132,201912,91712 -CZ,DK,2,139,201912,1083845 -CZ,DK,2,141,201912,597903 -CZ,DK,2,143,201912,130341 -CZ,DK,2,151,201912,90849 -CZ,DK,2,152,201912,330700 -CZ,DK,2,161,201912,25241 -CZ,DK,2,162,201912,618594 -CZ,DK,2,171,201912,266143 -CZ,DK,2,172,201912,1716300 -CZ,DK,2,181,201912,3240 -CZ,DK,2,192,201912,9804 -CZ,DK,2,201,201912,1530320 -CZ,DK,2,202,201912,25571 -CZ,DK,2,203,201912,22693 -CZ,DK,2,204,201912,551835 -CZ,DK,2,205,201912,773554 -CZ,DK,2,211,201912,2320170 -CZ,DK,2,212,201912,25476043 -CZ,DK,2,221,201912,225570 -CZ,DK,2,222,201912,2913667 -CZ,DK,2,231,201912,234227 -CZ,DK,2,232,201912,7385 -CZ,DK,2,233,201912,50699 -CZ,DK,2,234,201912,404182 -CZ,DK,2,235,201912,72705 -CZ,DK,2,236,201912,796335 -CZ,DK,2,237,201912,21698 -CZ,DK,2,239,201912,283676 -CZ,DK,2,241,201912,145992 -CZ,DK,2,242,201912,302445 -CZ,DK,2,243,201912,519009 -CZ,DK,2,244,201912,48516 -CZ,DK,2,245,201912,21381 -CZ,DK,2,251,201912,451359 -CZ,DK,2,252,201912,338577 -CZ,DK,2,254,201912,7874 -CZ,DK,2,257,201912,455007 -CZ,DK,2,259,201912,2044893 -CZ,DK,2,261,201912,1097889 -CZ,DK,2,262,201912,40544730 -CZ,DK,2,263,201912,3887303 -CZ,DK,2,264,201912,1302981 -CZ,DK,2,265,201912,1220226 -CZ,DK,2,267,201912,325103 -CZ,DK,2,268,201912,73988 -CZ,DK,2,271,201912,1901902 -CZ,DK,2,272,201912,324584 -CZ,DK,2,273,201912,570606 -CZ,DK,2,274,201912,600940 -CZ,DK,2,275,201912,781766 -CZ,DK,2,279,201912,1355949 -CZ,DK,2,281,201912,1907291 -CZ,DK,2,282,201912,2280090 -CZ,DK,2,283,201912,515485 -CZ,DK,2,284,201912,1377290 -CZ,DK,2,289,201912,1665534 -CZ,DK,2,291,201912,8418035 -CZ,DK,2,292,201912,430326 -CZ,DK,2,293,201912,62435 -CZ,DK,2,302,201912,105607 -CZ,DK,2,309,201912,88074 -CZ,DK,2,310,201912,989601 -CZ,DK,2,321,201912,334 -CZ,DK,2,322,201912,19802 -CZ,DK,2,323,201912,477533 -CZ,DK,2,324,201912,5333886 -CZ,DK,2,325,201912,164984 -CZ,DK,2,329,201912,58590 -CZ,DK,2,351,201912,982012 -CZ,DO,1,120,201912,45515 -CZ,DO,2,172,201912,81990 -CZ,DO,2,222,201912,45348 -CZ,DO,2,259,201912,31 -CZ,DO,2,262,201912,1763 -CZ,DO,2,263,201912,3200 -CZ,DO,2,265,201912,4984 -CZ,DO,2,271,201912,291968 -CZ,DO,2,279,201912,933 -CZ,DO,2,282,201912,4713 -CZ,DO,2,289,201912,71824 -CZ,DZ,1,201,201912,23034 -CZ,DZ,1,303,201912,393484 -CZ,DZ,2,139,201912,22110 -CZ,DZ,2,162,201912,403 -CZ,DZ,2,172,201912,38277 -CZ,DZ,2,192,201912,4945 -CZ,DZ,2,201,201912,85975 -CZ,DZ,2,204,201912,2 -CZ,DZ,2,205,201912,54569 -CZ,DZ,2,212,201912,13774 -CZ,DZ,2,221,201912,200838 -CZ,DZ,2,222,201912,43331 -CZ,DZ,2,231,201912,385417 -CZ,DZ,2,234,201912,25517 -CZ,DZ,2,244,201912,429 -CZ,DZ,2,257,201912,93410 -CZ,DZ,2,259,201912,189294 -CZ,DZ,2,261,201912,88528 -CZ,DZ,2,262,201912,167533 -CZ,DZ,2,263,201912,84767 -CZ,DZ,2,265,201912,67260 -CZ,DZ,2,266,201912,9053 -CZ,DZ,2,271,201912,30390 -CZ,DZ,2,273,201912,10490 -CZ,DZ,2,279,201912,246193 -CZ,DZ,2,281,201912,1457616 -CZ,DZ,2,282,201912,4146 -CZ,DZ,2,284,201912,462136 -CZ,DZ,2,289,201912,128598 -CZ,DZ,2,303,201912,891197 -CZ,DZ,2,309,201912,989 -CZ,DZ,2,325,201912,43373 -CZ,DZ,2,329,201912,1655 -CZ,EC,1,102,201912,913832 -CZ,EC,1,110,201912,510 -CZ,EC,1,139,201912,395 -CZ,EC,1,141,201912,195 -CZ,EC,2,139,201912,5016 -CZ,EC,2,141,201912,64314 -CZ,EC,2,162,201912,403 -CZ,EC,2,171,201912,18963 -CZ,EC,2,172,201912,18878 -CZ,EC,2,205,201912,27873 -CZ,EC,2,211,201912,7041 -CZ,EC,2,221,201912,70060 -CZ,EC,2,222,201912,94544 -CZ,EC,2,231,201912,82296 -CZ,EC,2,257,201912,84663 -CZ,EC,2,259,201912,142 -CZ,EC,2,263,201912,5111 -CZ,EC,2,265,201912,28877 -CZ,EC,2,271,201912,18238 -CZ,EC,2,273,201912,1918 -CZ,EC,2,274,201912,150 -CZ,EC,2,279,201912,5022 -CZ,EC,2,281,201912,22995 -CZ,EC,2,282,201912,1907 -CZ,EC,2,289,201912,176091 -CZ,EC,2,291,201912,3266893 -CZ,EC,2,293,201912,10198 -CZ,EE,1,011,201912,25283 -CZ,EE,1,089,201912,47504 -CZ,EE,1,101,201912,23225 -CZ,EE,1,105,201912,173642 -CZ,EE,1,108,201912,3318 -CZ,EE,1,139,201912,455539 -CZ,EE,1,141,201912,61995 -CZ,EE,1,151,201912,6451 -CZ,EE,1,161,201912,478511 -CZ,EE,1,162,201912,132214 -CZ,EE,1,171,201912,251478 -CZ,EE,1,172,201912,27678 -CZ,EE,1,201,201912,91657 -CZ,EE,1,202,201912,10583 -CZ,EE,1,203,201912,81896 -CZ,EE,1,204,201912,122161 -CZ,EE,1,205,201912,80008 -CZ,EE,1,212,201912,126337 -CZ,EE,1,221,201912,7401 -CZ,EE,1,222,201912,106133 -CZ,EE,1,231,201912,85064 -CZ,EE,1,234,201912,34539 -CZ,EE,1,244,201912,36013 -CZ,EE,1,251,201912,9353 -CZ,EE,1,257,201912,1978 -CZ,EE,1,259,201912,25801 -CZ,EE,1,262,201912,6585 -CZ,EE,1,263,201912,40715 -CZ,EE,1,264,201912,73 -CZ,EE,1,265,201912,36627 -CZ,EE,1,267,201912,244 -CZ,EE,1,271,201912,124031 -CZ,EE,1,272,201912,4 -CZ,EE,1,273,201912,25894 -CZ,EE,1,274,201912,71 -CZ,EE,1,275,201912,1322 -CZ,EE,1,279,201912,500 -CZ,EE,1,281,201912,28659 -CZ,EE,1,282,201912,320550 -CZ,EE,1,283,201912,344375 -CZ,EE,1,289,201912,13093 -CZ,EE,1,292,201912,72350 -CZ,EE,1,293,201912,1575116 -CZ,EE,1,310,201912,312868 -CZ,EE,1,323,201912,909 -CZ,EE,1,325,201912,53282 -CZ,EE,1,329,201912,71886 -CZ,EE,2,011,201912,33251 -CZ,EE,2,012,201912,446 -CZ,EE,2,030,201912,7598 -CZ,EE,2,081,201912,39138 -CZ,EE,2,101,201912,2715 -CZ,EE,2,103,201912,2132 -CZ,EE,2,104,201912,822 -CZ,EE,2,105,201912,2800 -CZ,EE,2,106,201912,43744 -CZ,EE,2,107,201912,3028 -CZ,EE,2,108,201912,99775 -CZ,EE,2,109,201912,33283 -CZ,EE,2,110,201912,216738 -CZ,EE,2,131,201912,4224 -CZ,EE,2,132,201912,83938 -CZ,EE,2,139,201912,187156 -CZ,EE,2,141,201912,150416 -CZ,EE,2,143,201912,19288 -CZ,EE,2,151,201912,37463 -CZ,EE,2,152,201912,35403 -CZ,EE,2,162,201912,17618 -CZ,EE,2,171,201912,58378 -CZ,EE,2,172,201912,584599 -CZ,EE,2,192,201912,53426 -CZ,EE,2,201,201912,483109 -CZ,EE,2,202,201912,5337 -CZ,EE,2,203,201912,208484 -CZ,EE,2,204,201912,601121 -CZ,EE,2,205,201912,53963 -CZ,EE,2,206,201912,8135 -CZ,EE,2,211,201912,302 -CZ,EE,2,212,201912,95181 -CZ,EE,2,221,201912,102920 -CZ,EE,2,222,201912,596961 -CZ,EE,2,231,201912,465036 -CZ,EE,2,232,201912,2260 -CZ,EE,2,233,201912,28391 -CZ,EE,2,234,201912,25427 -CZ,EE,2,236,201912,263749 -CZ,EE,2,239,201912,38491 -CZ,EE,2,241,201912,142090 -CZ,EE,2,242,201912,51480 -CZ,EE,2,243,201912,146661 -CZ,EE,2,244,201912,55900 -CZ,EE,2,251,201912,109410 -CZ,EE,2,252,201912,380481 -CZ,EE,2,254,201912,104919 -CZ,EE,2,257,201912,181542 -CZ,EE,2,259,201912,236543 -CZ,EE,2,261,201912,14452 -CZ,EE,2,262,201912,744901 -CZ,EE,2,263,201912,2949821 -CZ,EE,2,264,201912,362134 -CZ,EE,2,265,201912,152000 -CZ,EE,2,267,201912,10168 -CZ,EE,2,271,201912,582867 -CZ,EE,2,272,201912,30200 -CZ,EE,2,273,201912,353394 -CZ,EE,2,274,201912,215329 -CZ,EE,2,275,201912,119683 -CZ,EE,2,279,201912,234760 -CZ,EE,2,281,201912,488597 -CZ,EE,2,282,201912,1104455 -CZ,EE,2,283,201912,13713 -CZ,EE,2,284,201912,59654 -CZ,EE,2,289,201912,1361782 -CZ,EE,2,291,201912,8552397 -CZ,EE,2,292,201912,854 -CZ,EE,2,293,201912,547056 -CZ,EE,2,302,201912,38020 -CZ,EE,2,309,201912,39757 -CZ,EE,2,310,201912,123167 -CZ,EE,2,321,201912,1253 -CZ,EE,2,322,201912,24132 -CZ,EE,2,323,201912,14884 -CZ,EE,2,324,201912,570989 -CZ,EE,2,325,201912,249574 -CZ,EE,2,329,201912,40595 -CZ,EG,1,089,201912,17217 -CZ,EG,1,103,201912,45847 -CZ,EG,1,131,201912,1694592 -CZ,EG,1,139,201912,53287 -CZ,EG,1,141,201912,745357 -CZ,EG,1,162,201912,297 -CZ,EG,1,201,201912,31160 -CZ,EG,1,221,201912,28681 -CZ,EG,1,222,201912,113845 -CZ,EG,1,231,201912,84017 -CZ,EG,1,234,201912,12841 -CZ,EG,1,244,201912,27645 -CZ,EG,1,261,201912,7 -CZ,EG,1,262,201912,24981 -CZ,EG,1,263,201912,252 -CZ,EG,1,264,201912,490 -CZ,EG,1,271,201912,37230 -CZ,EG,1,273,201912,27969 -CZ,EG,1,279,201912,8256 -CZ,EG,1,293,201912,717399 -CZ,EG,2,081,201912,42563 -CZ,EG,2,106,201912,24161 -CZ,EG,2,108,201912,36361 -CZ,EG,2,110,201912,25085 -CZ,EG,2,131,201912,123051 -CZ,EG,2,132,201912,76605 -CZ,EG,2,139,201912,142284 -CZ,EG,2,151,201912,12948 -CZ,EG,2,162,201912,109862 -CZ,EG,2,172,201912,70194 -CZ,EG,2,192,201912,19260 -CZ,EG,2,201,201912,626525 -CZ,EG,2,203,201912,28 -CZ,EG,2,204,201912,27969 -CZ,EG,2,205,201912,18562 -CZ,EG,2,211,201912,43222 -CZ,EG,2,221,201912,117188 -CZ,EG,2,222,201912,396878 -CZ,EG,2,231,201912,751921 -CZ,EG,2,234,201912,66156 -CZ,EG,2,239,201912,32442 -CZ,EG,2,242,201912,29 -CZ,EG,2,243,201912,28998 -CZ,EG,2,244,201912,115197 -CZ,EG,2,252,201912,167609 -CZ,EG,2,257,201912,26514 -CZ,EG,2,259,201912,20796 -CZ,EG,2,261,201912,323278 -CZ,EG,2,262,201912,1184094 -CZ,EG,2,263,201912,146127 -CZ,EG,2,264,201912,65098 -CZ,EG,2,265,201912,191551 -CZ,EG,2,271,201912,1417945 -CZ,EG,2,272,201912,111048 -CZ,EG,2,273,201912,500308 -CZ,EG,2,274,201912,104364 -CZ,EG,2,275,201912,104 -CZ,EG,2,279,201912,374065 -CZ,EG,2,281,201912,6012268 -CZ,EG,2,282,201912,878573 -CZ,EG,2,284,201912,48045 -CZ,EG,2,289,201912,311907 -CZ,EG,2,291,201912,19883669 -CZ,EG,2,293,201912,269018 -CZ,EG,2,310,201912,1073 -CZ,EG,2,325,201912,68162 -CZ,EG,2,329,201912,398265 -CZ,ES,1,011,201912,9787139 -CZ,ES,1,012,201912,9814509 -CZ,ES,1,014,201912,163994 -CZ,ES,1,022,201912,14378 -CZ,ES,1,023,201912,910 -CZ,ES,1,030,201912,58464 -CZ,ES,1,081,201912,18992 -CZ,ES,1,089,201912,183748 -CZ,ES,1,101,201912,17805358 -CZ,ES,1,102,201912,1489978 -CZ,ES,1,103,201912,2358022 -CZ,ES,1,104,201912,524827 -CZ,ES,1,105,201912,312760 -CZ,ES,1,106,201912,7919 -CZ,ES,1,107,201912,330633 -CZ,ES,1,108,201912,3725716 -CZ,ES,1,109,201912,664796 -CZ,ES,1,110,201912,2910056 -CZ,ES,1,120,201912,85752 -CZ,ES,1,131,201912,270741 -CZ,ES,1,132,201912,476595 -CZ,ES,1,139,201912,1564306 -CZ,ES,1,141,201912,3364123 -CZ,ES,1,142,201912,81 -CZ,ES,1,143,201912,806816 -CZ,ES,1,151,201912,353618 -CZ,ES,1,152,201912,492627 -CZ,ES,1,161,201912,23602 -CZ,ES,1,162,201912,313545 -CZ,ES,1,171,201912,586483 -CZ,ES,1,172,201912,2046998 -CZ,ES,1,181,201912,13240 -CZ,ES,1,192,201912,80138 -CZ,ES,1,201,201912,4563581 -CZ,ES,1,202,201912,2118821 -CZ,ES,1,203,201912,1291499 -CZ,ES,1,204,201912,2878693 -CZ,ES,1,205,201912,1059944 -CZ,ES,1,206,201912,72593 -CZ,ES,1,211,201912,664439 -CZ,ES,1,212,201912,3684723 -CZ,ES,1,221,201912,4938305 -CZ,ES,1,222,201912,8915304 -CZ,ES,1,231,201912,299852 -CZ,ES,1,232,201912,3561 -CZ,ES,1,233,201912,1437564 -CZ,ES,1,234,201912,146794 -CZ,ES,1,236,201912,7702 -CZ,ES,1,237,201912,4623 -CZ,ES,1,239,201912,92135 -CZ,ES,1,241,201912,2243077 -CZ,ES,1,242,201912,1322016 -CZ,ES,1,243,201912,243741 -CZ,ES,1,244,201912,1879078 -CZ,ES,1,245,201912,33531 -CZ,ES,1,251,201912,1547079 -CZ,ES,1,252,201912,109624 -CZ,ES,1,254,201912,16700 -CZ,ES,1,257,201912,3122793 -CZ,ES,1,259,201912,4636991 -CZ,ES,1,261,201912,1286990 -CZ,ES,1,262,201912,939638 -CZ,ES,1,263,201912,842537 -CZ,ES,1,264,201912,363998 -CZ,ES,1,265,201912,2332854 -CZ,ES,1,266,201912,12631 -CZ,ES,1,267,201912,77924 -CZ,ES,1,268,201912,7250 -CZ,ES,1,271,201912,2182546 -CZ,ES,1,272,201912,102636 -CZ,ES,1,273,201912,1422497 -CZ,ES,1,274,201912,759693 -CZ,ES,1,275,201912,1319427 -CZ,ES,1,279,201912,1393251 -CZ,ES,1,281,201912,8820409 -CZ,ES,1,282,201912,5386065 -CZ,ES,1,283,201912,42440 -CZ,ES,1,284,201912,435448 -CZ,ES,1,289,201912,2996043 -CZ,ES,1,291,201912,19596028 -CZ,ES,1,292,201912,3063 -CZ,ES,1,293,201912,25857345 -CZ,ES,1,302,201912,298097 -CZ,ES,1,303,201912,225692 -CZ,ES,1,309,201912,375988 -CZ,ES,1,310,201912,904607 -CZ,ES,1,321,201912,316145 -CZ,ES,1,322,201912,62030 -CZ,ES,1,323,201912,246524 -CZ,ES,1,324,201912,416626 -CZ,ES,1,325,201912,773076 -CZ,ES,1,329,201912,370729 -CZ,ES,2,011,201912,21016 -CZ,ES,2,012,201912,37399 -CZ,ES,2,014,201912,597885 -CZ,ES,2,030,201912,111590 -CZ,ES,2,081,201912,1574 -CZ,ES,2,089,201912,1813 -CZ,ES,2,101,201912,194332 -CZ,ES,2,102,201912,1259 -CZ,ES,2,103,201912,141243 -CZ,ES,2,104,201912,196146 -CZ,ES,2,105,201912,451759 -CZ,ES,2,106,201912,102150 -CZ,ES,2,107,201912,731962 -CZ,ES,2,108,201912,1936149 -CZ,ES,2,109,201912,505387 -CZ,ES,2,110,201912,359887 -CZ,ES,2,120,201912,1919170 -CZ,ES,2,131,201912,221765 -CZ,ES,2,132,201912,402260 -CZ,ES,2,139,201912,1718931 -CZ,ES,2,141,201912,3262446 -CZ,ES,2,142,201912,83 -CZ,ES,2,143,201912,624363 -CZ,ES,2,151,201912,807924 -CZ,ES,2,152,201912,2140704 -CZ,ES,2,161,201912,29450 -CZ,ES,2,162,201912,341692 -CZ,ES,2,171,201912,1438772 -CZ,ES,2,172,201912,1562995 -CZ,ES,2,191,201912,397243 -CZ,ES,2,192,201912,19969 -CZ,ES,2,201,201912,3182427 -CZ,ES,2,202,201912,206415 -CZ,ES,2,203,201912,176254 -CZ,ES,2,204,201912,2175717 -CZ,ES,2,205,201912,8054356 -CZ,ES,2,206,201912,121824 -CZ,ES,2,211,201912,296869 -CZ,ES,2,212,201912,3916057 -CZ,ES,2,221,201912,4468737 -CZ,ES,2,222,201912,3829312 -CZ,ES,2,231,201912,2022271 -CZ,ES,2,232,201912,330370 -CZ,ES,2,233,201912,15078 -CZ,ES,2,234,201912,278535 -CZ,ES,2,236,201912,142223 -CZ,ES,2,237,201912,393 -CZ,ES,2,239,201912,316727 -CZ,ES,2,241,201912,1305630 -CZ,ES,2,242,201912,518005 -CZ,ES,2,243,201912,724908 -CZ,ES,2,244,201912,386839 -CZ,ES,2,245,201912,607 -CZ,ES,2,251,201912,314456 -CZ,ES,2,252,201912,441209 -CZ,ES,2,254,201912,271570 -CZ,ES,2,257,201912,2914522 -CZ,ES,2,259,201912,3590773 -CZ,ES,2,261,201912,7092288 -CZ,ES,2,262,201912,31449787 -CZ,ES,2,263,201912,7421179 -CZ,ES,2,264,201912,14694287 -CZ,ES,2,265,201912,5344657 -CZ,ES,2,266,201912,701 -CZ,ES,2,267,201912,273174 -CZ,ES,2,268,201912,49994 -CZ,ES,2,271,201912,5216297 -CZ,ES,2,272,201912,2135751 -CZ,ES,2,273,201912,4912217 -CZ,ES,2,274,201912,2732129 -CZ,ES,2,275,201912,2197155 -CZ,ES,2,279,201912,3352033 -CZ,ES,2,281,201912,7860148 -CZ,ES,2,282,201912,18085004 -CZ,ES,2,283,201912,102724 -CZ,ES,2,284,201912,558159 -CZ,ES,2,289,201912,4593709 -CZ,ES,2,291,201912,124399770 -CZ,ES,2,292,201912,8713 -CZ,ES,2,293,201912,25529280 -CZ,ES,2,301,201912,21831 -CZ,ES,2,302,201912,1226902 -CZ,ES,2,303,201912,834723 -CZ,ES,2,309,201912,200862 -CZ,ES,2,310,201912,2879509 -CZ,ES,2,321,201912,188253 -CZ,ES,2,322,201912,49479 -CZ,ES,2,323,201912,324564 -CZ,ES,2,324,201912,9238404 -CZ,ES,2,325,201912,2245355 -CZ,ES,2,329,201912,572337 -CZ,ET,1,011,201912,54827 -CZ,ET,2,222,201912,12286 -CZ,ET,2,234,201912,18 -CZ,ET,2,242,201912,1972 -CZ,ET,2,259,201912,84059 -CZ,ET,2,262,201912,1278968 -CZ,ET,2,263,201912,3224 -CZ,ET,2,265,201912,921 -CZ,ET,2,281,201912,8176 -CZ,FI,1,022,201912,58133 -CZ,FI,1,089,201912,85025 -CZ,FI,1,104,201912,15591 -CZ,FI,1,106,201912,92116 -CZ,FI,1,107,201912,38668 -CZ,FI,1,108,201912,512721 -CZ,FI,1,109,201912,198128 -CZ,FI,1,110,201912,464346 -CZ,FI,1,139,201912,160578 -CZ,FI,1,141,201912,164549 -CZ,FI,1,142,201912,822 -CZ,FI,1,143,201912,3401 -CZ,FI,1,151,201912,31287 -CZ,FI,1,152,201912,3312 -CZ,FI,1,161,201912,253513 -CZ,FI,1,162,201912,162425 -CZ,FI,1,171,201912,3918247 -CZ,FI,1,172,201912,1072945 -CZ,FI,1,192,201912,27196 -CZ,FI,1,201,201912,1113050 -CZ,FI,1,202,201912,3126 -CZ,FI,1,203,201912,537 -CZ,FI,1,204,201912,79584 -CZ,FI,1,205,201912,779189 -CZ,FI,1,211,201912,13315 -CZ,FI,1,212,201912,1433664 -CZ,FI,1,221,201912,696908 -CZ,FI,1,222,201912,605552 -CZ,FI,1,231,201912,92798 -CZ,FI,1,232,201912,16004 -CZ,FI,1,234,201912,1509 -CZ,FI,1,239,201912,133774 -CZ,FI,1,241,201912,375994 -CZ,FI,1,242,201912,1229749 -CZ,FI,1,243,201912,96836 -CZ,FI,1,244,201912,307542 -CZ,FI,1,251,201912,4857 -CZ,FI,1,252,201912,1126 -CZ,FI,1,257,201912,82529 -CZ,FI,1,259,201912,830351 -CZ,FI,1,261,201912,55314 -CZ,FI,1,262,201912,462528 -CZ,FI,1,263,201912,1411064 -CZ,FI,1,264,201912,138310 -CZ,FI,1,265,201912,425303 -CZ,FI,1,266,201912,734308 -CZ,FI,1,267,201912,39822 -CZ,FI,1,271,201912,1804802 -CZ,FI,1,272,201912,19437 -CZ,FI,1,273,201912,225374 -CZ,FI,1,274,201912,13878 -CZ,FI,1,275,201912,356556 -CZ,FI,1,279,201912,1532595 -CZ,FI,1,281,201912,300342 -CZ,FI,1,282,201912,857188 -CZ,FI,1,283,201912,2564224 -CZ,FI,1,284,201912,149403 -CZ,FI,1,289,201912,1459854 -CZ,FI,1,291,201912,241454 -CZ,FI,1,292,201912,99464 -CZ,FI,1,293,201912,318091 -CZ,FI,1,309,201912,83086 -CZ,FI,1,310,201912,111021 -CZ,FI,1,323,201912,47144 -CZ,FI,1,325,201912,487634 -CZ,FI,1,329,201912,52418 -CZ,FI,2,011,201912,73971 -CZ,FI,2,012,201912,7151 -CZ,FI,2,014,201912,32 -CZ,FI,2,023,201912,172 -CZ,FI,2,030,201912,11329 -CZ,FI,2,081,201912,418 -CZ,FI,2,101,201912,5166 -CZ,FI,2,103,201912,2015 -CZ,FI,2,104,201912,354 -CZ,FI,2,106,201912,13487 -CZ,FI,2,107,201912,114826 -CZ,FI,2,108,201912,261995 -CZ,FI,2,109,201912,872297 -CZ,FI,2,110,201912,389731 -CZ,FI,2,131,201912,35342 -CZ,FI,2,132,201912,43882 -CZ,FI,2,139,201912,636284 -CZ,FI,2,141,201912,218996 -CZ,FI,2,143,201912,28286 -CZ,FI,2,151,201912,101299 -CZ,FI,2,152,201912,20260 -CZ,FI,2,162,201912,118508 -CZ,FI,2,171,201912,265379 -CZ,FI,2,172,201912,297051 -CZ,FI,2,191,201912,131171 -CZ,FI,2,192,201912,53980 -CZ,FI,2,201,201912,1418290 -CZ,FI,2,202,201912,78579 -CZ,FI,2,203,201912,61937 -CZ,FI,2,204,201912,460817 -CZ,FI,2,205,201912,120741 -CZ,FI,2,211,201912,3208 -CZ,FI,2,212,201912,76587 -CZ,FI,2,221,201912,567965 -CZ,FI,2,222,201912,760594 -CZ,FI,2,231,201912,145553 -CZ,FI,2,232,201912,888 -CZ,FI,2,233,201912,63700 -CZ,FI,2,234,201912,2252 -CZ,FI,2,235,201912,2075 -CZ,FI,2,236,201912,7155 -CZ,FI,2,237,201912,39128 -CZ,FI,2,239,201912,137053 -CZ,FI,2,241,201912,568551 -CZ,FI,2,242,201912,219203 -CZ,FI,2,243,201912,1433888 -CZ,FI,2,244,201912,42308 -CZ,FI,2,245,201912,18318 -CZ,FI,2,251,201912,645888 -CZ,FI,2,252,201912,163225 -CZ,FI,2,254,201912,95023 -CZ,FI,2,257,201912,290414 -CZ,FI,2,259,201912,2160793 -CZ,FI,2,261,201912,484047 -CZ,FI,2,262,201912,5920502 -CZ,FI,2,263,201912,2625465 -CZ,FI,2,264,201912,295632 -CZ,FI,2,265,201912,269985 -CZ,FI,2,267,201912,82108 -CZ,FI,2,268,201912,6758 -CZ,FI,2,271,201912,2614090 -CZ,FI,2,272,201912,28803 -CZ,FI,2,273,201912,252117 -CZ,FI,2,274,201912,609025 -CZ,FI,2,275,201912,814758 -CZ,FI,2,279,201912,623976 -CZ,FI,2,281,201912,2202190 -CZ,FI,2,282,201912,5116979 -CZ,FI,2,283,201912,529 -CZ,FI,2,284,201912,71297 -CZ,FI,2,289,201912,1484923 -CZ,FI,2,291,201912,16647694 -CZ,FI,2,292,201912,142832 -CZ,FI,2,293,201912,2502025 -CZ,FI,2,302,201912,309609 -CZ,FI,2,303,201912,10494 -CZ,FI,2,309,201912,41773 -CZ,FI,2,310,201912,868491 -CZ,FI,2,321,201912,830 -CZ,FI,2,322,201912,6788 -CZ,FI,2,323,201912,195179 -CZ,FI,2,324,201912,2139106 -CZ,FI,2,325,201912,192270 -CZ,FI,2,329,201912,444858 -CZ,FO,2,162,201912,1498 -CZ,FO,2,172,201912,61940 -CZ,FO,2,204,201912,393 -CZ,FO,2,222,201912,3962 -CZ,FO,2,243,201912,1472 -CZ,FO,2,257,201912,167 -CZ,FO,2,259,201912,7847 -CZ,FO,2,271,201912,295 -CZ,FO,2,279,201912,667 -CZ,FO,2,282,201912,200265 -CZ,FO,2,324,201912,42852 -CZ,FO,2,329,201912,433 -CZ,FR,1,011,201912,4128396 -CZ,FR,1,012,201912,3233932 -CZ,FR,1,014,201912,216462 -CZ,FR,1,022,201912,523860 -CZ,FR,1,023,201912,49536 -CZ,FR,1,030,201912,105646 -CZ,FR,1,072,201912,12163 -CZ,FR,1,081,201912,252136 -CZ,FR,1,089,201912,197456 -CZ,FR,1,101,201912,3337501 -CZ,FR,1,102,201912,158152 -CZ,FR,1,103,201912,1086684 -CZ,FR,1,104,201912,43942 -CZ,FR,1,105,201912,1871573 -CZ,FR,1,106,201912,1073677 -CZ,FR,1,107,201912,1596508 -CZ,FR,1,108,201912,4985207 -CZ,FR,1,109,201912,1617530 -CZ,FR,1,110,201912,5147948 -CZ,FR,1,131,201912,80133 -CZ,FR,1,132,201912,896130 -CZ,FR,1,139,201912,3142166 -CZ,FR,1,141,201912,3823514 -CZ,FR,1,142,201912,26864 -CZ,FR,1,143,201912,781612 -CZ,FR,1,151,201912,3391089 -CZ,FR,1,152,201912,2106967 -CZ,FR,1,161,201912,214106 -CZ,FR,1,162,201912,423109 -CZ,FR,1,171,201912,3436795 -CZ,FR,1,172,201912,1659375 -CZ,FR,1,181,201912,4017 -CZ,FR,1,192,201912,850818 -CZ,FR,1,201,201912,12609620 -CZ,FR,1,202,201912,1242986 -CZ,FR,1,203,201912,2249228 -CZ,FR,1,204,201912,18361272 -CZ,FR,1,205,201912,7876447 -CZ,FR,1,206,201912,292396 -CZ,FR,1,211,201912,586819 -CZ,FR,1,212,201912,31600714 -CZ,FR,1,221,201912,4870709 -CZ,FR,1,222,201912,10308096 -CZ,FR,1,231,201912,2647154 -CZ,FR,1,232,201912,163041 -CZ,FR,1,233,201912,7023 -CZ,FR,1,234,201912,144205 -CZ,FR,1,235,201912,95785 -CZ,FR,1,236,201912,6742 -CZ,FR,1,237,201912,25101 -CZ,FR,1,239,201912,1230536 -CZ,FR,1,241,201912,9186075 -CZ,FR,1,242,201912,979500 -CZ,FR,1,243,201912,1745337 -CZ,FR,1,244,201912,7531818 -CZ,FR,1,245,201912,190957 -CZ,FR,1,251,201912,359405 -CZ,FR,1,252,201912,602083 -CZ,FR,1,254,201912,129739 -CZ,FR,1,257,201912,3005510 -CZ,FR,1,259,201912,6985469 -CZ,FR,1,261,201912,4497152 -CZ,FR,1,262,201912,12860381 -CZ,FR,1,263,201912,3376216 -CZ,FR,1,264,201912,2886705 -CZ,FR,1,265,201912,6299815 -CZ,FR,1,266,201912,713094 -CZ,FR,1,267,201912,520288 -CZ,FR,1,268,201912,940 -CZ,FR,1,271,201912,9463578 -CZ,FR,1,272,201912,1550108 -CZ,FR,1,273,201912,3796822 -CZ,FR,1,274,201912,1829608 -CZ,FR,1,275,201912,1233025 -CZ,FR,1,279,201912,3592886 -CZ,FR,1,281,201912,12290231 -CZ,FR,1,282,201912,13538512 -CZ,FR,1,283,201912,1454774 -CZ,FR,1,284,201912,1200256 -CZ,FR,1,289,201912,6117295 -CZ,FR,1,291,201912,39752945 -CZ,FR,1,292,201912,1327899 -CZ,FR,1,293,201912,31436670 -CZ,FR,1,301,201912,37955 -CZ,FR,1,302,201912,194130 -CZ,FR,1,303,201912,2184024 -CZ,FR,1,309,201912,401318 -CZ,FR,1,310,201912,2776888 -CZ,FR,1,321,201912,1098646 -CZ,FR,1,322,201912,55218 -CZ,FR,1,323,201912,1185394 -CZ,FR,1,324,201912,1816097 -CZ,FR,1,325,201912,4029425 -CZ,FR,1,329,201912,1684395 -CZ,FR,2,011,201912,377220 -CZ,FR,2,012,201912,50682 -CZ,FR,2,013,201912,23 -CZ,FR,2,014,201912,217503 -CZ,FR,2,022,201912,586382 -CZ,FR,2,023,201912,823 -CZ,FR,2,030,201912,340960 -CZ,FR,2,081,201912,399536 -CZ,FR,2,089,201912,12031 -CZ,FR,2,101,201912,170232 -CZ,FR,2,102,201912,310589 -CZ,FR,2,103,201912,28646 -CZ,FR,2,104,201912,32566 -CZ,FR,2,105,201912,582241 -CZ,FR,2,106,201912,318418 -CZ,FR,2,107,201912,1220191 -CZ,FR,2,108,201912,7132592 -CZ,FR,2,109,201912,1780949 -CZ,FR,2,110,201912,644283 -CZ,FR,2,131,201912,447332 -CZ,FR,2,132,201912,1197385 -CZ,FR,2,139,201912,3049830 -CZ,FR,2,141,201912,4146672 -CZ,FR,2,142,201912,38941 -CZ,FR,2,143,201912,911725 -CZ,FR,2,151,201912,1740503 -CZ,FR,2,152,201912,4147978 -CZ,FR,2,161,201912,767427 -CZ,FR,2,162,201912,973343 -CZ,FR,2,171,201912,1785135 -CZ,FR,2,172,201912,6384490 -CZ,FR,2,191,201912,459399 -CZ,FR,2,192,201912,103254 -CZ,FR,2,201,201912,4610835 -CZ,FR,2,202,201912,687743 -CZ,FR,2,203,201912,231675 -CZ,FR,2,204,201912,2945920 -CZ,FR,2,205,201912,2743656 -CZ,FR,2,206,201912,536327 -CZ,FR,2,211,201912,229478 -CZ,FR,2,212,201912,4728046 -CZ,FR,2,221,201912,12851858 -CZ,FR,2,222,201912,13805711 -CZ,FR,2,231,201912,5365412 -CZ,FR,2,232,201912,221816 -CZ,FR,2,233,201912,719092 -CZ,FR,2,234,201912,389525 -CZ,FR,2,235,201912,302185 -CZ,FR,2,236,201912,352126 -CZ,FR,2,237,201912,2718 -CZ,FR,2,239,201912,461690 -CZ,FR,2,241,201912,1450887 -CZ,FR,2,242,201912,1045325 -CZ,FR,2,243,201912,1705176 -CZ,FR,2,244,201912,2573322 -CZ,FR,2,245,201912,284202 -CZ,FR,2,251,201912,4385700 -CZ,FR,2,252,201912,1705148 -CZ,FR,2,254,201912,135383 -CZ,FR,2,257,201912,4763579 -CZ,FR,2,259,201912,13043595 -CZ,FR,2,261,201912,9119753 -CZ,FR,2,262,201912,83520396 -CZ,FR,2,263,201912,16447175 -CZ,FR,2,264,201912,9542483 -CZ,FR,2,265,201912,9141719 -CZ,FR,2,266,201912,309271 -CZ,FR,2,267,201912,456601 -CZ,FR,2,268,201912,115342 -CZ,FR,2,271,201912,19711289 -CZ,FR,2,272,201912,3866291 -CZ,FR,2,273,201912,4283170 -CZ,FR,2,274,201912,10396936 -CZ,FR,2,275,201912,4268044 -CZ,FR,2,279,201912,7685768 -CZ,FR,2,281,201912,21034714 -CZ,FR,2,282,201912,39548982 -CZ,FR,2,283,201912,2988934 -CZ,FR,2,284,201912,940511 -CZ,FR,2,289,201912,12196071 -CZ,FR,2,291,201912,114442205 -CZ,FR,2,292,201912,628103 -CZ,FR,2,293,201912,57037835 -CZ,FR,2,301,201912,79114 -CZ,FR,2,302,201912,4942304 -CZ,FR,2,303,201912,5740383 -CZ,FR,2,309,201912,561000 -CZ,FR,2,310,201912,8358399 -CZ,FR,2,321,201912,293918 -CZ,FR,2,322,201912,174142 -CZ,FR,2,323,201912,1807497 -CZ,FR,2,324,201912,14603273 -CZ,FR,2,325,201912,5454230 -CZ,FR,2,329,201912,2357594 -CZ,GA,2,262,201912,25343 -CZ,GA,2,273,201912,112 -CZ,GB,1,011,201912,322008 -CZ,GB,1,012,201912,237565 -CZ,GB,1,014,201912,240770 -CZ,GB,1,023,201912,467 -CZ,GB,1,030,201912,75157 -CZ,GB,1,071,201912,3459 -CZ,GB,1,072,201912,24301 -CZ,GB,1,081,201912,88619 -CZ,GB,1,089,201912,44758 -CZ,GB,1,101,201912,927225 -CZ,GB,1,102,201912,198559 -CZ,GB,1,103,201912,372120 -CZ,GB,1,104,201912,250509 -CZ,GB,1,105,201912,506884 -CZ,GB,1,106,201912,243347 -CZ,GB,1,107,201912,492641 -CZ,GB,1,108,201912,5290865 -CZ,GB,1,109,201912,1881788 -CZ,GB,1,110,201912,1255183 -CZ,GB,1,131,201912,457300 -CZ,GB,1,132,201912,730127 -CZ,GB,1,139,201912,3311082 -CZ,GB,1,141,201912,6572560 -CZ,GB,1,142,201912,3838 -CZ,GB,1,143,201912,1197759 -CZ,GB,1,151,201912,1996689 -CZ,GB,1,152,201912,648173 -CZ,GB,1,161,201912,19350 -CZ,GB,1,162,201912,259487 -CZ,GB,1,171,201912,744163 -CZ,GB,1,172,201912,2582666 -CZ,GB,1,181,201912,74037 -CZ,GB,1,192,201912,424834 -CZ,GB,1,201,201912,6561038 -CZ,GB,1,202,201912,230574 -CZ,GB,1,203,201912,1011773 -CZ,GB,1,204,201912,18457891 -CZ,GB,1,205,201912,4517914 -CZ,GB,1,206,201912,16790 -CZ,GB,1,211,201912,1496151 -CZ,GB,1,212,201912,6372282 -CZ,GB,1,221,201912,960758 -CZ,GB,1,222,201912,7716355 -CZ,GB,1,231,201912,1195618 -CZ,GB,1,232,201912,1602872 -CZ,GB,1,233,201912,140 -CZ,GB,1,234,201912,272381 -CZ,GB,1,235,201912,1176 -CZ,GB,1,236,201912,431220 -CZ,GB,1,237,201912,59 -CZ,GB,1,239,201912,318229 -CZ,GB,1,241,201912,1432980 -CZ,GB,1,242,201912,794671 -CZ,GB,1,243,201912,174050 -CZ,GB,1,244,201912,5976832 -CZ,GB,1,245,201912,105528 -CZ,GB,1,251,201912,19542 -CZ,GB,1,252,201912,21638 -CZ,GB,1,254,201912,136028 -CZ,GB,1,257,201912,1555451 -CZ,GB,1,259,201912,4841899 -CZ,GB,1,261,201912,76005964 -CZ,GB,1,262,201912,15024217 -CZ,GB,1,263,201912,74545425 -CZ,GB,1,264,201912,3149545 -CZ,GB,1,265,201912,6277468 -CZ,GB,1,266,201912,730178 -CZ,GB,1,267,201912,2114908 -CZ,GB,1,268,201912,95071 -CZ,GB,1,271,201912,3637319 -CZ,GB,1,272,201912,1140472 -CZ,GB,1,273,201912,2898588 -CZ,GB,1,274,201912,1131895 -CZ,GB,1,275,201912,715869 -CZ,GB,1,279,201912,5118360 -CZ,GB,1,281,201912,6145770 -CZ,GB,1,282,201912,14024668 -CZ,GB,1,283,201912,3672586 -CZ,GB,1,284,201912,843728 -CZ,GB,1,289,201912,8012546 -CZ,GB,1,291,201912,5563280 -CZ,GB,1,292,201912,21752 -CZ,GB,1,293,201912,6672571 -CZ,GB,1,302,201912,65242 -CZ,GB,1,303,201912,356108 -CZ,GB,1,309,201912,697895 -CZ,GB,1,310,201912,1926434 -CZ,GB,1,321,201912,336619 -CZ,GB,1,322,201912,237795 -CZ,GB,1,323,201912,259314 -CZ,GB,1,324,201912,2408289 -CZ,GB,1,325,201912,1673701 -CZ,GB,1,329,201912,1861607 -CZ,GB,1,351,201912,253532 -CZ,GB,2,011,201912,29411 -CZ,GB,2,012,201912,33971 -CZ,GB,2,013,201912,35 -CZ,GB,2,014,201912,25001 -CZ,GB,2,030,201912,224993 -CZ,GB,2,081,201912,2090 -CZ,GB,2,089,201912,853 -CZ,GB,2,101,201912,602499 -CZ,GB,2,103,201912,108076 -CZ,GB,2,104,201912,26141 -CZ,GB,2,105,201912,500056 -CZ,GB,2,106,201912,257801 -CZ,GB,2,107,201912,3550574 -CZ,GB,2,108,201912,5967044 -CZ,GB,2,109,201912,470833 -CZ,GB,2,110,201912,1200249 -CZ,GB,2,131,201912,468563 -CZ,GB,2,132,201912,1008671 -CZ,GB,2,139,201912,2219274 -CZ,GB,2,141,201912,7311647 -CZ,GB,2,143,201912,3205502 -CZ,GB,2,151,201912,832275 -CZ,GB,2,152,201912,5566793 -CZ,GB,2,161,201912,864005 -CZ,GB,2,162,201912,902544 -CZ,GB,2,171,201912,1970595 -CZ,GB,2,172,201912,5766581 -CZ,GB,2,181,201912,23397 -CZ,GB,2,192,201912,94549 -CZ,GB,2,201,201912,3164870 -CZ,GB,2,202,201912,83766 -CZ,GB,2,203,201912,396351 -CZ,GB,2,204,201912,4191668 -CZ,GB,2,205,201912,495596 -CZ,GB,2,206,201912,41 -CZ,GB,2,211,201912,640265 -CZ,GB,2,212,201912,7551995 -CZ,GB,2,221,201912,6927011 -CZ,GB,2,222,201912,6662889 -CZ,GB,2,231,201912,2872370 -CZ,GB,2,232,201912,145062 -CZ,GB,2,233,201912,59276 -CZ,GB,2,234,201912,868192 -CZ,GB,2,235,201912,292 -CZ,GB,2,236,201912,1130548 -CZ,GB,2,237,201912,692 -CZ,GB,2,239,201912,549841 -CZ,GB,2,241,201912,3196834 -CZ,GB,2,242,201912,8270719 -CZ,GB,2,243,201912,1430763 -CZ,GB,2,244,201912,1045945 -CZ,GB,2,245,201912,546717 -CZ,GB,2,251,201912,3062300 -CZ,GB,2,252,201912,1452429 -CZ,GB,2,254,201912,276063 -CZ,GB,2,257,201912,6363455 -CZ,GB,2,259,201912,10698045 -CZ,GB,2,261,201912,7463947 -CZ,GB,2,262,201912,62343388 -CZ,GB,2,263,201912,27041513 -CZ,GB,2,264,201912,34494678 -CZ,GB,2,265,201912,6100805 -CZ,GB,2,266,201912,86496 -CZ,GB,2,267,201912,489981 -CZ,GB,2,268,201912,125552 -CZ,GB,2,271,201912,13524578 -CZ,GB,2,272,201912,3651421 -CZ,GB,2,273,201912,3820645 -CZ,GB,2,274,201912,15506653 -CZ,GB,2,275,201912,2227511 -CZ,GB,2,279,201912,3621334 -CZ,GB,2,281,201912,24946288 -CZ,GB,2,282,201912,18871884 -CZ,GB,2,283,201912,1299427 -CZ,GB,2,284,201912,1185319 -CZ,GB,2,289,201912,13660160 -CZ,GB,2,291,201912,82370263 -CZ,GB,2,292,201912,151347 -CZ,GB,2,293,201912,31109822 -CZ,GB,2,301,201912,22060 -CZ,GB,2,302,201912,3369931 -CZ,GB,2,303,201912,8618473 -CZ,GB,2,309,201912,631096 -CZ,GB,2,310,201912,9560881 -CZ,GB,2,321,201912,481557 -CZ,GB,2,322,201912,176199 -CZ,GB,2,323,201912,566755 -CZ,GB,2,324,201912,16286064 -CZ,GB,2,325,201912,2288470 -CZ,GB,2,329,201912,4325859 -CZ,GB,2,351,201912,1609076 -CZ,GE,1,012,201912,1856 -CZ,GE,1,103,201912,1280458 -CZ,GE,1,106,201912,24899 -CZ,GE,1,108,201912,151 -CZ,GE,1,110,201912,22667 -CZ,GE,1,141,201912,3 -CZ,GE,1,201,201912,36948 -CZ,GE,1,234,201912,2313 -CZ,GE,1,259,201912,31521 -CZ,GE,1,262,201912,1488 -CZ,GE,1,263,201912,39242 -CZ,GE,1,264,201912,1033 -CZ,GE,1,265,201912,451 -CZ,GE,1,325,201912,26754 -CZ,GE,2,014,201912,7970 -CZ,GE,2,108,201912,43779 -CZ,GE,2,109,201912,5483 -CZ,GE,2,110,201912,79388 -CZ,GE,2,139,201912,8028 -CZ,GE,2,141,201912,12018 -CZ,GE,2,143,201912,1450 -CZ,GE,2,151,201912,13589 -CZ,GE,2,152,201912,247 -CZ,GE,2,162,201912,19548 -CZ,GE,2,171,201912,2319 -CZ,GE,2,172,201912,253215 -CZ,GE,2,192,201912,19930 -CZ,GE,2,201,201912,21600 -CZ,GE,2,203,201912,1226 -CZ,GE,2,204,201912,312934 -CZ,GE,2,205,201912,9307 -CZ,GE,2,221,201912,29890 -CZ,GE,2,222,201912,246661 -CZ,GE,2,231,201912,43553 -CZ,GE,2,234,201912,82544 -CZ,GE,2,239,201912,197 -CZ,GE,2,242,201912,3399 -CZ,GE,2,243,201912,1679 -CZ,GE,2,244,201912,25126 -CZ,GE,2,251,201912,15055 -CZ,GE,2,252,201912,17914 -CZ,GE,2,254,201912,283 -CZ,GE,2,257,201912,13542 -CZ,GE,2,259,201912,74591 -CZ,GE,2,261,201912,2015 -CZ,GE,2,262,201912,800461 -CZ,GE,2,263,201912,3105644 -CZ,GE,2,264,201912,305241 -CZ,GE,2,265,201912,125278 -CZ,GE,2,271,201912,99081 -CZ,GE,2,272,201912,73 -CZ,GE,2,273,201912,9263 -CZ,GE,2,274,201912,11869 -CZ,GE,2,275,201912,103578 -CZ,GE,2,279,201912,83321 -CZ,GE,2,281,201912,152054 -CZ,GE,2,282,201912,106282 -CZ,GE,2,289,201912,142168 -CZ,GE,2,291,201912,1065583 -CZ,GE,2,292,201912,2075 -CZ,GE,2,293,201912,88491 -CZ,GE,2,303,201912,529 -CZ,GE,2,310,201912,49511 -CZ,GE,2,321,201912,7157 -CZ,GE,2,323,201912,36808 -CZ,GE,2,324,201912,227848 -CZ,GE,2,325,201912,7627 -CZ,GE,2,329,201912,20274 -CZ,GH,2,151,201912,269 -CZ,GH,2,201,201912,1825 -CZ,GH,2,205,201912,517 -CZ,GH,2,221,201912,12224 -CZ,GH,2,222,201912,8012 -CZ,GH,2,231,201912,134309 -CZ,GH,2,234,201912,7050 -CZ,GH,2,257,201912,16538 -CZ,GH,2,259,201912,32989 -CZ,GH,2,262,201912,350437 -CZ,GH,2,263,201912,14395 -CZ,GH,2,265,201912,2179 -CZ,GH,2,271,201912,23251 -CZ,GH,2,273,201912,24455 -CZ,GH,2,279,201912,5024 -CZ,GH,2,281,201912,191065 -CZ,GH,2,282,201912,89968 -CZ,GH,2,289,201912,92089 -CZ,GH,2,293,201912,138737 -CZ,GH,2,310,201912,91061 -CZ,GI,2,141,201912,171 -CZ,GI,2,143,201912,29 -CZ,GI,2,259,201912,2340 -CZ,GL,2,324,201912,3998 -CZ,GN,2,141,201912,9134 -CZ,GN,2,263,201912,2313 -CZ,GN,2,279,201912,162 -CZ,GR,1,011,201912,995285 -CZ,GR,1,012,201912,1104101 -CZ,GR,1,030,201912,10048 -CZ,GR,1,089,201912,46104 -CZ,GR,1,101,201912,21619 -CZ,GR,1,103,201912,1141156 -CZ,GR,1,104,201912,135222 -CZ,GR,1,105,201912,95881 -CZ,GR,1,106,201912,59061 -CZ,GR,1,107,201912,94365 -CZ,GR,1,108,201912,279613 -CZ,GR,1,110,201912,433687 -CZ,GR,1,120,201912,7848304 -CZ,GR,1,131,201912,64018 -CZ,GR,1,132,201912,37765 -CZ,GR,1,139,201912,218909 -CZ,GR,1,141,201912,32818 -CZ,GR,1,143,201912,674 -CZ,GR,1,151,201912,1177 -CZ,GR,1,162,201912,2758 -CZ,GR,1,171,201912,43986 -CZ,GR,1,172,201912,71927 -CZ,GR,1,201,201912,37692 -CZ,GR,1,203,201912,227615 -CZ,GR,1,204,201912,618563 -CZ,GR,1,205,201912,18887 -CZ,GR,1,212,201912,3213143 -CZ,GR,1,222,201912,389172 -CZ,GR,1,234,201912,3608 -CZ,GR,1,237,201912,276 -CZ,GR,1,239,201912,72277 -CZ,GR,1,241,201912,10620 -CZ,GR,1,242,201912,56602 -CZ,GR,1,244,201912,1946099 -CZ,GR,1,251,201912,65710 -CZ,GR,1,257,201912,406 -CZ,GR,1,259,201912,61244 -CZ,GR,1,261,201912,2977 -CZ,GR,1,262,201912,41301 -CZ,GR,1,263,201912,61374 -CZ,GR,1,264,201912,87415 -CZ,GR,1,265,201912,326533 -CZ,GR,1,271,201912,672362 -CZ,GR,1,272,201912,197458 -CZ,GR,1,273,201912,91601 -CZ,GR,1,274,201912,51914 -CZ,GR,1,275,201912,69738 -CZ,GR,1,279,201912,11348 -CZ,GR,1,281,201912,15439 -CZ,GR,1,282,201912,252112 -CZ,GR,1,289,201912,95641 -CZ,GR,1,293,201912,72701 -CZ,GR,1,309,201912,198 -CZ,GR,1,310,201912,185 -CZ,GR,1,324,201912,14551 -CZ,GR,1,325,201912,25045 -CZ,GR,1,329,201912,21738 -CZ,GR,2,011,201912,2006 -CZ,GR,2,012,201912,1507 -CZ,GR,2,014,201912,641557 -CZ,GR,2,030,201912,1096494 -CZ,GR,2,081,201912,4160 -CZ,GR,2,101,201912,77566 -CZ,GR,2,102,201912,82456 -CZ,GR,2,103,201912,9814 -CZ,GR,2,104,201912,948 -CZ,GR,2,105,201912,276364 -CZ,GR,2,106,201912,208841 -CZ,GR,2,107,201912,46796 -CZ,GR,2,108,201912,413655 -CZ,GR,2,109,201912,194050 -CZ,GR,2,110,201912,180580 -CZ,GR,2,120,201912,536001 -CZ,GR,2,131,201912,5006 -CZ,GR,2,132,201912,117688 -CZ,GR,2,139,201912,205085 -CZ,GR,2,141,201912,196105 -CZ,GR,2,143,201912,16286 -CZ,GR,2,151,201912,52628 -CZ,GR,2,152,201912,79546 -CZ,GR,2,161,201912,106383 -CZ,GR,2,162,201912,42753 -CZ,GR,2,171,201912,340800 -CZ,GR,2,172,201912,360298 -CZ,GR,2,192,201912,3138 -CZ,GR,2,201,201912,444482 -CZ,GR,2,202,201912,1727 -CZ,GR,2,203,201912,22813 -CZ,GR,2,204,201912,1943902 -CZ,GR,2,205,201912,1063351 -CZ,GR,2,211,201912,868 -CZ,GR,2,212,201912,257888 -CZ,GR,2,221,201912,590114 -CZ,GR,2,222,201912,780736 -CZ,GR,2,231,201912,217551 -CZ,GR,2,232,201912,30563 -CZ,GR,2,233,201912,7336 -CZ,GR,2,234,201912,31173 -CZ,GR,2,236,201912,6246 -CZ,GR,2,239,201912,34385 -CZ,GR,2,241,201912,18219 -CZ,GR,2,242,201912,21304 -CZ,GR,2,243,201912,37978 -CZ,GR,2,244,201912,148470 -CZ,GR,2,251,201912,173505 -CZ,GR,2,252,201912,125870 -CZ,GR,2,254,201912,106824 -CZ,GR,2,257,201912,208830 -CZ,GR,2,259,201912,184569 -CZ,GR,2,261,201912,254315 -CZ,GR,2,262,201912,4732372 -CZ,GR,2,263,201912,4127809 -CZ,GR,2,264,201912,658965 -CZ,GR,2,265,201912,112593 -CZ,GR,2,266,201912,95 -CZ,GR,2,267,201912,19602 -CZ,GR,2,268,201912,3420 -CZ,GR,2,271,201912,519954 -CZ,GR,2,272,201912,56736 -CZ,GR,2,273,201912,132058 -CZ,GR,2,274,201912,50246 -CZ,GR,2,275,201912,278979 -CZ,GR,2,279,201912,177490 -CZ,GR,2,281,201912,208228 -CZ,GR,2,282,201912,1142299 -CZ,GR,2,283,201912,18618 -CZ,GR,2,284,201912,80170 -CZ,GR,2,289,201912,577160 -CZ,GR,2,291,201912,6215828 -CZ,GR,2,293,201912,88557 -CZ,GR,2,302,201912,9165 -CZ,GR,2,309,201912,50241 -CZ,GR,2,310,201912,217407 -CZ,GR,2,321,201912,943 -CZ,GR,2,322,201912,63 -CZ,GR,2,323,201912,74922 -CZ,GR,2,324,201912,892326 -CZ,GR,2,325,201912,986752 -CZ,GR,2,329,201912,120515 -CZ,GT,1,108,201912,351 -CZ,GT,1,303,201912,48831 -CZ,GT,2,089,201912,8678 -CZ,GT,2,201,201912,34469 -CZ,GT,2,205,201912,875 -CZ,GT,2,221,201912,55 -CZ,GT,2,222,201912,210385 -CZ,GT,2,231,201912,125689 -CZ,GT,2,265,201912,1767 -CZ,GT,2,279,201912,13 -CZ,GT,2,282,201912,568 -CZ,HK,1,012,201912,1492 -CZ,HK,1,101,201912,136 -CZ,HK,1,108,201912,47863 -CZ,HK,1,110,201912,84 -CZ,HK,1,131,201912,255 -CZ,HK,1,132,201912,53878 -CZ,HK,1,139,201912,108795 -CZ,HK,1,141,201912,596662 -CZ,HK,1,143,201912,18627 -CZ,HK,1,151,201912,472067 -CZ,HK,1,152,201912,297846 -CZ,HK,1,162,201912,4536 -CZ,HK,1,171,201912,937 -CZ,HK,1,172,201912,118012 -CZ,HK,1,201,201912,86623 -CZ,HK,1,203,201912,7286 -CZ,HK,1,204,201912,13409 -CZ,HK,1,205,201912,45000 -CZ,HK,1,211,201912,7251 -CZ,HK,1,212,201912,121 -CZ,HK,1,221,201912,174935 -CZ,HK,1,222,201912,2171002 -CZ,HK,1,231,201912,376432 -CZ,HK,1,234,201912,76679 -CZ,HK,1,236,201912,787 -CZ,HK,1,239,201912,22139 -CZ,HK,1,241,201912,924 -CZ,HK,1,242,201912,1418 -CZ,HK,1,243,201912,465 -CZ,HK,1,244,201912,805160 -CZ,HK,1,251,201912,7636 -CZ,HK,1,254,201912,170706 -CZ,HK,1,257,201912,1388064 -CZ,HK,1,259,201912,1140960 -CZ,HK,1,261,201912,10430063 -CZ,HK,1,262,201912,34871462 -CZ,HK,1,263,201912,57121561 -CZ,HK,1,264,201912,3764490 -CZ,HK,1,265,201912,3620991 -CZ,HK,1,266,201912,282359 -CZ,HK,1,267,201912,643609 -CZ,HK,1,268,201912,115807 -CZ,HK,1,271,201912,3543716 -CZ,HK,1,272,201912,2566746 -CZ,HK,1,273,201912,966249 -CZ,HK,1,274,201912,642821 -CZ,HK,1,275,201912,3393374 -CZ,HK,1,279,201912,12226595 -CZ,HK,1,281,201912,334329 -CZ,HK,1,282,201912,1335097 -CZ,HK,1,283,201912,1562 -CZ,HK,1,284,201912,43159 -CZ,HK,1,289,201912,162291 -CZ,HK,1,293,201912,228234 -CZ,HK,1,303,201912,2164 -CZ,HK,1,309,201912,2014452 -CZ,HK,1,310,201912,687396 -CZ,HK,1,321,201912,635601 -CZ,HK,1,322,201912,4896 -CZ,HK,1,323,201912,305846 -CZ,HK,1,324,201912,317663 -CZ,HK,1,325,201912,844713 -CZ,HK,1,329,201912,114792 -CZ,HK,2,014,201912,19073 -CZ,HK,2,022,201912,261409 -CZ,HK,2,030,201912,2307 -CZ,HK,2,108,201912,55528 -CZ,HK,2,110,201912,14452 -CZ,HK,2,131,201912,19571 -CZ,HK,2,132,201912,49325 -CZ,HK,2,139,201912,95449 -CZ,HK,2,141,201912,29450 -CZ,HK,2,143,201912,1052 -CZ,HK,2,151,201912,4320 -CZ,HK,2,162,201912,764 -CZ,HK,2,172,201912,3046 -CZ,HK,2,192,201912,1095 -CZ,HK,2,201,201912,104420 -CZ,HK,2,203,201912,32 -CZ,HK,2,204,201912,149225 -CZ,HK,2,205,201912,49015 -CZ,HK,2,211,201912,97915 -CZ,HK,2,221,201912,63059 -CZ,HK,2,222,201912,282686 -CZ,HK,2,231,201912,640424 -CZ,HK,2,234,201912,71428 -CZ,HK,2,242,201912,268 -CZ,HK,2,244,201912,82127 -CZ,HK,2,257,201912,22463 -CZ,HK,2,259,201912,94430 -CZ,HK,2,261,201912,14816637 -CZ,HK,2,262,201912,1783509 -CZ,HK,2,263,201912,2831341 -CZ,HK,2,264,201912,191774 -CZ,HK,2,265,201912,1663652 -CZ,HK,2,267,201912,136560 -CZ,HK,2,271,201912,1727205 -CZ,HK,2,272,201912,52769 -CZ,HK,2,273,201912,756459 -CZ,HK,2,274,201912,53387 -CZ,HK,2,279,201912,3874972 -CZ,HK,2,281,201912,63767 -CZ,HK,2,282,201912,851014 -CZ,HK,2,289,201912,428048 -CZ,HK,2,293,201912,85880 -CZ,HK,2,302,201912,790 -CZ,HK,2,303,201912,209318 -CZ,HK,2,309,201912,5097 -CZ,HK,2,310,201912,16900 -CZ,HK,2,321,201912,498283 -CZ,HK,2,322,201912,35465 -CZ,HK,2,323,201912,52633 -CZ,HK,2,324,201912,385351 -CZ,HK,2,325,201912,425287 -CZ,HK,2,329,201912,46564 -CZ,HN,1,120,201912,4179 -CZ,HN,2,162,201912,117004 -CZ,HN,2,201,201912,39587 -CZ,HN,2,221,201912,87 -CZ,HN,2,222,201912,125069 -CZ,HN,2,231,201912,5018 -CZ,HN,2,251,201912,6116 -CZ,HN,2,257,201912,157796 -CZ,HN,2,259,201912,193 -CZ,HN,2,265,201912,591 -CZ,HN,2,271,201912,15837 -CZ,HN,2,273,201912,3559 -CZ,HN,2,281,201912,45 -CZ,HR,1,011,201912,141815 -CZ,HR,1,012,201912,78342 -CZ,HR,1,013,201912,1457 -CZ,HR,1,022,201912,74357 -CZ,HR,1,030,201912,86531 -CZ,HR,1,081,201912,7353 -CZ,HR,1,101,201912,97186 -CZ,HR,1,103,201912,34859 -CZ,HR,1,104,201912,79832 -CZ,HR,1,105,201912,11556 -CZ,HR,1,106,201912,245 -CZ,HR,1,107,201912,15903 -CZ,HR,1,108,201912,271718 -CZ,HR,1,109,201912,3739 -CZ,HR,1,110,201912,41572 -CZ,HR,1,120,201912,42242 -CZ,HR,1,132,201912,568 -CZ,HR,1,139,201912,22256 -CZ,HR,1,141,201912,17305 -CZ,HR,1,143,201912,1674 -CZ,HR,1,151,201912,69939 -CZ,HR,1,152,201912,39447 -CZ,HR,1,161,201912,69859 -CZ,HR,1,162,201912,92369 -CZ,HR,1,171,201912,168162 -CZ,HR,1,172,201912,126788 -CZ,HR,1,201,201912,572052 -CZ,HR,1,203,201912,722 -CZ,HR,1,204,201912,435910 -CZ,HR,1,205,201912,235859 -CZ,HR,1,206,201912,62489 -CZ,HR,1,212,201912,2534918 -CZ,HR,1,221,201912,187629 -CZ,HR,1,222,201912,778453 -CZ,HR,1,231,201912,116168 -CZ,HR,1,233,201912,13534 -CZ,HR,1,235,201912,27660 -CZ,HR,1,239,201912,45477 -CZ,HR,1,242,201912,5771 -CZ,HR,1,244,201912,963859 -CZ,HR,1,245,201912,9000 -CZ,HR,1,251,201912,107443 -CZ,HR,1,252,201912,6545 -CZ,HR,1,257,201912,448940 -CZ,HR,1,259,201912,244843 -CZ,HR,1,261,201912,149218 -CZ,HR,1,262,201912,89513 -CZ,HR,1,263,201912,142023 -CZ,HR,1,264,201912,479981 -CZ,HR,1,265,201912,244312 -CZ,HR,1,271,201912,1136151 -CZ,HR,1,273,201912,845 -CZ,HR,1,274,201912,6307 -CZ,HR,1,275,201912,276589 -CZ,HR,1,279,201912,35991 -CZ,HR,1,281,201912,186352 -CZ,HR,1,282,201912,94582 -CZ,HR,1,283,201912,56260 -CZ,HR,1,284,201912,46221 -CZ,HR,1,289,201912,12911 -CZ,HR,1,293,201912,231560 -CZ,HR,1,309,201912,16400 -CZ,HR,1,310,201912,2791532 -CZ,HR,1,321,201912,36457 -CZ,HR,1,323,201912,235 -CZ,HR,1,324,201912,1972 -CZ,HR,1,325,201912,13692 -CZ,HR,1,329,201912,31368 -CZ,HR,2,011,201912,38907 -CZ,HR,2,012,201912,57053 -CZ,HR,2,014,201912,402874 -CZ,HR,2,030,201912,170264 -CZ,HR,2,052,201912,6425 -CZ,HR,2,081,201912,96577 -CZ,HR,2,089,201912,1318 -CZ,HR,2,101,201912,181638 -CZ,HR,2,102,201912,129045 -CZ,HR,2,103,201912,309401 -CZ,HR,2,104,201912,1470 -CZ,HR,2,105,201912,806858 -CZ,HR,2,106,201912,248168 -CZ,HR,2,107,201912,539509 -CZ,HR,2,108,201912,606450 -CZ,HR,2,109,201912,187554 -CZ,HR,2,110,201912,637240 -CZ,HR,2,120,201912,157536 -CZ,HR,2,132,201912,66406 -CZ,HR,2,139,201912,227050 -CZ,HR,2,141,201912,519158 -CZ,HR,2,143,201912,77199 -CZ,HR,2,151,201912,92590 -CZ,HR,2,152,201912,267061 -CZ,HR,2,161,201912,40736 -CZ,HR,2,162,201912,379563 -CZ,HR,2,171,201912,533570 -CZ,HR,2,172,201912,765415 -CZ,HR,2,192,201912,29431 -CZ,HR,2,201,201912,1040553 -CZ,HR,2,202,201912,7 -CZ,HR,2,203,201912,302061 -CZ,HR,2,204,201912,2673900 -CZ,HR,2,205,201912,595410 -CZ,HR,2,206,201912,57 -CZ,HR,2,211,201912,187104 -CZ,HR,2,212,201912,2412360 -CZ,HR,2,221,201912,505366 -CZ,HR,2,222,201912,1139154 -CZ,HR,2,231,201912,552010 -CZ,HR,2,232,201912,33305 -CZ,HR,2,233,201912,8219 -CZ,HR,2,234,201912,194887 -CZ,HR,2,235,201912,11059 -CZ,HR,2,236,201912,159683 -CZ,HR,2,239,201912,74136 -CZ,HR,2,241,201912,859511 -CZ,HR,2,242,201912,64142 -CZ,HR,2,243,201912,61846 -CZ,HR,2,244,201912,248304 -CZ,HR,2,245,201912,13014 -CZ,HR,2,251,201912,106895 -CZ,HR,2,252,201912,95868 -CZ,HR,2,254,201912,38313 -CZ,HR,2,257,201912,428040 -CZ,HR,2,259,201912,317483 -CZ,HR,2,261,201912,757984 -CZ,HR,2,262,201912,2983105 -CZ,HR,2,263,201912,2948693 -CZ,HR,2,264,201912,497036 -CZ,HR,2,265,201912,103459 -CZ,HR,2,267,201912,40822 -CZ,HR,2,268,201912,2604 -CZ,HR,2,271,201912,664701 -CZ,HR,2,272,201912,345890 -CZ,HR,2,273,201912,88809 -CZ,HR,2,274,201912,176918 -CZ,HR,2,275,201912,449098 -CZ,HR,2,279,201912,168042 -CZ,HR,2,281,201912,423747 -CZ,HR,2,282,201912,585159 -CZ,HR,2,283,201912,91815 -CZ,HR,2,284,201912,27116 -CZ,HR,2,289,201912,4106410 -CZ,HR,2,291,201912,6336481 -CZ,HR,2,292,201912,130239 -CZ,HR,2,293,201912,286816 -CZ,HR,2,301,201912,14155 -CZ,HR,2,302,201912,5212 -CZ,HR,2,309,201912,69949 -CZ,HR,2,310,201912,236780 -CZ,HR,2,321,201912,380 -CZ,HR,2,322,201912,27 -CZ,HR,2,323,201912,70671 -CZ,HR,2,324,201912,473305 -CZ,HR,2,325,201912,409786 -CZ,HR,2,329,201912,181119 -CZ,HU,1,011,201912,4607103 -CZ,HU,1,012,201912,868308 -CZ,HU,1,013,201912,84662 -CZ,HU,1,014,201912,386653 -CZ,HU,1,022,201912,123225 -CZ,HU,1,030,201912,149950 -CZ,HU,1,061,201912,10454 -CZ,HU,1,081,201912,11916 -CZ,HU,1,089,201912,37989 -CZ,HU,1,101,201912,5172323 -CZ,HU,1,102,201912,28392 -CZ,HU,1,103,201912,2179281 -CZ,HU,1,104,201912,2806875 -CZ,HU,1,105,201912,591225 -CZ,HU,1,106,201912,1905452 -CZ,HU,1,107,201912,787522 -CZ,HU,1,108,201912,4521587 -CZ,HU,1,109,201912,1929628 -CZ,HU,1,110,201912,3205955 -CZ,HU,1,120,201912,1544720 -CZ,HU,1,131,201912,152012 -CZ,HU,1,132,201912,220212 -CZ,HU,1,139,201912,1189763 -CZ,HU,1,141,201912,935667 -CZ,HU,1,143,201912,380603 -CZ,HU,1,151,201912,466091 -CZ,HU,1,152,201912,555285 -CZ,HU,1,161,201912,53462 -CZ,HU,1,162,201912,511043 -CZ,HU,1,171,201912,1101350 -CZ,HU,1,172,201912,1273896 -CZ,HU,1,181,201912,40229 -CZ,HU,1,192,201912,1430692 -CZ,HU,1,201,201912,14888193 -CZ,HU,1,202,201912,318633 -CZ,HU,1,203,201912,303066 -CZ,HU,1,204,201912,5258877 -CZ,HU,1,205,201912,2560173 -CZ,HU,1,206,201912,48833 -CZ,HU,1,211,201912,464671 -CZ,HU,1,212,201912,18620621 -CZ,HU,1,221,201912,7597393 -CZ,HU,1,222,201912,7580448 -CZ,HU,1,231,201912,2122273 -CZ,HU,1,232,201912,657261 -CZ,HU,1,233,201912,146897 -CZ,HU,1,234,201912,34909 -CZ,HU,1,235,201912,20667 -CZ,HU,1,236,201912,245487 -CZ,HU,1,239,201912,231768 -CZ,HU,1,241,201912,6835185 -CZ,HU,1,242,201912,545099 -CZ,HU,1,243,201912,853776 -CZ,HU,1,244,201912,2093334 -CZ,HU,1,245,201912,1669 -CZ,HU,1,251,201912,486926 -CZ,HU,1,252,201912,377315 -CZ,HU,1,253,201912,4341 -CZ,HU,1,254,201912,24611 -CZ,HU,1,257,201912,2133732 -CZ,HU,1,259,201912,4392400 -CZ,HU,1,261,201912,842893 -CZ,HU,1,262,201912,7546678 -CZ,HU,1,263,201912,5812750 -CZ,HU,1,264,201912,6751306 -CZ,HU,1,265,201912,4086919 -CZ,HU,1,266,201912,469 -CZ,HU,1,267,201912,501296 -CZ,HU,1,268,201912,43448 -CZ,HU,1,271,201912,18661872 -CZ,HU,1,272,201912,3509662 -CZ,HU,1,273,201912,10678735 -CZ,HU,1,274,201912,1521480 -CZ,HU,1,275,201912,3540936 -CZ,HU,1,279,201912,4410175 -CZ,HU,1,281,201912,6506872 -CZ,HU,1,282,201912,4997178 -CZ,HU,1,283,201912,199166 -CZ,HU,1,284,201912,1061079 -CZ,HU,1,289,201912,1546277 -CZ,HU,1,291,201912,31407556 -CZ,HU,1,292,201912,828020 -CZ,HU,1,293,201912,28672708 -CZ,HU,1,302,201912,208135 -CZ,HU,1,303,201912,174995 -CZ,HU,1,309,201912,148802 -CZ,HU,1,310,201912,4589212 -CZ,HU,1,321,201912,19369 -CZ,HU,1,322,201912,149499 -CZ,HU,1,323,201912,147685 -CZ,HU,1,324,201912,13403363 -CZ,HU,1,325,201912,654226 -CZ,HU,1,329,201912,625713 -CZ,HU,1,351,201912,219507 -CZ,HU,2,011,201912,1216278 -CZ,HU,2,012,201912,939817 -CZ,HU,2,014,201912,1990981 -CZ,HU,2,022,201912,29268 -CZ,HU,2,030,201912,365213 -CZ,HU,2,051,201912,2127046 -CZ,HU,2,052,201912,633862 -CZ,HU,2,081,201912,313347 -CZ,HU,2,089,201912,68715 -CZ,HU,2,101,201912,3339361 -CZ,HU,2,102,201912,1060561 -CZ,HU,2,103,201912,1608533 -CZ,HU,2,104,201912,4869131 -CZ,HU,2,105,201912,1297172 -CZ,HU,2,106,201912,963452 -CZ,HU,2,107,201912,2537359 -CZ,HU,2,108,201912,6349106 -CZ,HU,2,109,201912,1745488 -CZ,HU,2,110,201912,3081676 -CZ,HU,2,120,201912,1724378 -CZ,HU,2,131,201912,5035 -CZ,HU,2,132,201912,365796 -CZ,HU,2,139,201912,2469420 -CZ,HU,2,141,201912,1464865 -CZ,HU,2,142,201912,15 -CZ,HU,2,143,201912,261013 -CZ,HU,2,151,201912,407605 -CZ,HU,2,152,201912,1066743 -CZ,HU,2,161,201912,362599 -CZ,HU,2,162,201912,1173493 -CZ,HU,2,171,201912,879781 -CZ,HU,2,172,201912,4806366 -CZ,HU,2,181,201912,64483 -CZ,HU,2,191,201912,119129 -CZ,HU,2,192,201912,6571584 -CZ,HU,2,201,201912,12541777 -CZ,HU,2,202,201912,1024017 -CZ,HU,2,203,201912,917643 -CZ,HU,2,204,201912,14026500 -CZ,HU,2,205,201912,3023852 -CZ,HU,2,206,201912,1852 -CZ,HU,2,211,201912,169864 -CZ,HU,2,212,201912,4939012 -CZ,HU,2,221,201912,5395528 -CZ,HU,2,222,201912,9630238 -CZ,HU,2,231,201912,4965914 -CZ,HU,2,232,201912,125265 -CZ,HU,2,233,201912,213188 -CZ,HU,2,234,201912,280057 -CZ,HU,2,235,201912,94030 -CZ,HU,2,236,201912,218998 -CZ,HU,2,237,201912,3900 -CZ,HU,2,239,201912,601628 -CZ,HU,2,241,201912,3557830 -CZ,HU,2,242,201912,525963 -CZ,HU,2,243,201912,2546170 -CZ,HU,2,244,201912,1416059 -CZ,HU,2,245,201912,27140 -CZ,HU,2,251,201912,946417 -CZ,HU,2,252,201912,449213 -CZ,HU,2,253,201912,377 -CZ,HU,2,254,201912,191737 -CZ,HU,2,257,201912,5229464 -CZ,HU,2,259,201912,9536095 -CZ,HU,2,261,201912,3960735 -CZ,HU,2,262,201912,21080803 -CZ,HU,2,263,201912,57812212 -CZ,HU,2,264,201912,12034870 -CZ,HU,2,265,201912,3304091 -CZ,HU,2,266,201912,152880 -CZ,HU,2,267,201912,212857 -CZ,HU,2,268,201912,21637 -CZ,HU,2,271,201912,8186718 -CZ,HU,2,272,201912,1453940 -CZ,HU,2,273,201912,10469398 -CZ,HU,2,274,201912,3021647 -CZ,HU,2,275,201912,4285072 -CZ,HU,2,279,201912,6193640 -CZ,HU,2,281,201912,13962037 -CZ,HU,2,282,201912,12750849 -CZ,HU,2,283,201912,2456212 -CZ,HU,2,284,201912,4201590 -CZ,HU,2,289,201912,5439895 -CZ,HU,2,291,201912,36708187 -CZ,HU,2,292,201912,473907 -CZ,HU,2,293,201912,43856846 -CZ,HU,2,301,201912,8669 -CZ,HU,2,302,201912,344927 -CZ,HU,2,303,201912,2359193 -CZ,HU,2,309,201912,348457 -CZ,HU,2,310,201912,4161374 -CZ,HU,2,321,201912,26040 -CZ,HU,2,322,201912,161186 -CZ,HU,2,323,201912,373446 -CZ,HU,2,324,201912,4388845 -CZ,HU,2,325,201912,694837 -CZ,HU,2,329,201912,1172716 -CZ,HU,2,351,201912,173841 -CZ,ID,1,012,201912,1098400 -CZ,ID,1,013,201912,1717 -CZ,ID,1,014,201912,16477 -CZ,ID,1,030,201912,39484 -CZ,ID,1,101,201912,658 -CZ,ID,1,102,201912,988 -CZ,ID,1,103,201912,87608 -CZ,ID,1,108,201912,20024 -CZ,ID,1,120,201912,3635 -CZ,ID,1,139,201912,4938 -CZ,ID,1,141,201912,32356 -CZ,ID,1,143,201912,272 -CZ,ID,1,151,201912,13000 -CZ,ID,1,152,201912,855833 -CZ,ID,1,161,201912,32626 -CZ,ID,1,162,201912,134563 -CZ,ID,1,172,201912,56758 -CZ,ID,1,201,201912,75600 -CZ,ID,1,204,201912,102 -CZ,ID,1,221,201912,98039 -CZ,ID,1,222,201912,126124 -CZ,ID,1,234,201912,50141 -CZ,ID,1,237,201912,143 -CZ,ID,1,239,201912,64 -CZ,ID,1,259,201912,5584 -CZ,ID,1,262,201912,193 -CZ,ID,1,263,201912,24450 -CZ,ID,1,264,201912,995309 -CZ,ID,1,271,201912,871935 -CZ,ID,1,273,201912,2988 -CZ,ID,1,275,201912,230 -CZ,ID,1,279,201912,224802 -CZ,ID,1,281,201912,76309 -CZ,ID,1,282,201912,232 -CZ,ID,1,293,201912,439690 -CZ,ID,1,309,201912,23811 -CZ,ID,1,310,201912,409085 -CZ,ID,1,321,201912,12259 -CZ,ID,1,322,201912,4773 -CZ,ID,1,324,201912,869341 -CZ,ID,1,325,201912,3918 -CZ,ID,1,329,201912,203219 -CZ,ID,2,089,201912,18570 -CZ,ID,2,106,201912,13885 -CZ,ID,2,120,201912,186 -CZ,ID,2,131,201912,380 -CZ,ID,2,139,201912,101540 -CZ,ID,2,143,201912,76 -CZ,ID,2,171,201912,110597 -CZ,ID,2,172,201912,8992 -CZ,ID,2,192,201912,1990 -CZ,ID,2,201,201912,355182 -CZ,ID,2,204,201912,23608 -CZ,ID,2,205,201912,145137 -CZ,ID,2,211,201912,110338 -CZ,ID,2,212,201912,28522 -CZ,ID,2,221,201912,37974 -CZ,ID,2,222,201912,584542 -CZ,ID,2,231,201912,129845 -CZ,ID,2,239,201912,15424 -CZ,ID,2,243,201912,1094 -CZ,ID,2,244,201912,253 -CZ,ID,2,254,201912,12456 -CZ,ID,2,257,201912,305899 -CZ,ID,2,259,201912,81838 -CZ,ID,2,262,201912,296679 -CZ,ID,2,263,201912,408311 -CZ,ID,2,265,201912,83364 -CZ,ID,2,271,201912,64569 -CZ,ID,2,272,201912,1371 -CZ,ID,2,273,201912,22898 -CZ,ID,2,274,201912,67230 -CZ,ID,2,279,201912,15604 -CZ,ID,2,281,201912,6014117 -CZ,ID,2,282,201912,60863 -CZ,ID,2,284,201912,11748 -CZ,ID,2,289,201912,1359904 -CZ,ID,2,293,201912,2459 -CZ,ID,2,303,201912,9809 -CZ,ID,2,323,201912,21933 -CZ,ID,2,325,201912,88714 -CZ,ID,2,329,201912,39539 -CZ,IE,1,089,201912,65 -CZ,IE,1,101,201912,1604852 -CZ,IE,1,103,201912,56019 -CZ,IE,1,105,201912,86397 -CZ,IE,1,106,201912,14187 -CZ,IE,1,107,201912,86133 -CZ,IE,1,108,201912,1058651 -CZ,IE,1,109,201912,159665 -CZ,IE,1,110,201912,1677715 -CZ,IE,1,132,201912,80092 -CZ,IE,1,139,201912,42896 -CZ,IE,1,141,201912,254033 -CZ,IE,1,143,201912,94999 -CZ,IE,1,151,201912,912690 -CZ,IE,1,152,201912,9330 -CZ,IE,1,162,201912,33678 -CZ,IE,1,171,201912,3189 -CZ,IE,1,172,201912,35941 -CZ,IE,1,192,201912,2396 -CZ,IE,1,201,201912,305033 -CZ,IE,1,203,201912,11274 -CZ,IE,1,204,201912,522459 -CZ,IE,1,205,201912,4761347 -CZ,IE,1,211,201912,2212606 -CZ,IE,1,212,201912,9013593 -CZ,IE,1,221,201912,60047 -CZ,IE,1,222,201912,1136845 -CZ,IE,1,231,201912,32949 -CZ,IE,1,234,201912,3502 -CZ,IE,1,236,201912,3925 -CZ,IE,1,239,201912,33200 -CZ,IE,1,241,201912,2747 -CZ,IE,1,242,201912,4136 -CZ,IE,1,243,201912,36374 -CZ,IE,1,244,201912,9968 -CZ,IE,1,254,201912,26268 -CZ,IE,1,257,201912,292038 -CZ,IE,1,259,201912,232406 -CZ,IE,1,261,201912,3766779 -CZ,IE,1,262,201912,71465795 -CZ,IE,1,263,201912,102878941 -CZ,IE,1,264,201912,17777905 -CZ,IE,1,265,201912,692533 -CZ,IE,1,266,201912,15873 -CZ,IE,1,267,201912,332579 -CZ,IE,1,268,201912,1178 -CZ,IE,1,271,201912,1118452 -CZ,IE,1,272,201912,591165 -CZ,IE,1,273,201912,467352 -CZ,IE,1,274,201912,108681 -CZ,IE,1,275,201912,26961 -CZ,IE,1,279,201912,4443105 -CZ,IE,1,281,201912,55346 -CZ,IE,1,282,201912,841127 -CZ,IE,1,283,201912,201111 -CZ,IE,1,284,201912,198 -CZ,IE,1,289,201912,142483 -CZ,IE,1,291,201912,39430 -CZ,IE,1,293,201912,161794 -CZ,IE,1,309,201912,425 -CZ,IE,1,310,201912,690322 -CZ,IE,1,322,201912,1070 -CZ,IE,1,323,201912,12393 -CZ,IE,1,324,201912,396068 -CZ,IE,1,325,201912,444537 -CZ,IE,1,329,201912,687073 -CZ,IE,2,012,201912,366 -CZ,IE,2,081,201912,9588 -CZ,IE,2,089,201912,14 -CZ,IE,2,101,201912,36557 -CZ,IE,2,103,201912,74 -CZ,IE,2,107,201912,217753 -CZ,IE,2,108,201912,130584 -CZ,IE,2,109,201912,56754 -CZ,IE,2,110,201912,54621 -CZ,IE,2,132,201912,303 -CZ,IE,2,139,201912,78269 -CZ,IE,2,141,201912,219938 -CZ,IE,2,143,201912,81618 -CZ,IE,2,151,201912,10035 -CZ,IE,2,152,201912,179654 -CZ,IE,2,161,201912,942 -CZ,IE,2,162,201912,245996 -CZ,IE,2,171,201912,139207 -CZ,IE,2,172,201912,1263515 -CZ,IE,2,192,201912,99318 -CZ,IE,2,201,201912,580128 -CZ,IE,2,203,201912,4376 -CZ,IE,2,204,201912,25824 -CZ,IE,2,205,201912,113327 -CZ,IE,2,211,201912,7097 -CZ,IE,2,212,201912,422962 -CZ,IE,2,221,201912,18398 -CZ,IE,2,222,201912,618048 -CZ,IE,2,231,201912,145619 -CZ,IE,2,232,201912,31635 -CZ,IE,2,233,201912,90 -CZ,IE,2,234,201912,763 -CZ,IE,2,236,201912,716614 -CZ,IE,2,239,201912,6559 -CZ,IE,2,241,201912,20692 -CZ,IE,2,242,201912,286215 -CZ,IE,2,243,201912,33845 -CZ,IE,2,244,201912,6334 -CZ,IE,2,251,201912,24360 -CZ,IE,2,252,201912,142598 -CZ,IE,2,254,201912,330 -CZ,IE,2,257,201912,38192 -CZ,IE,2,259,201912,367749 -CZ,IE,2,261,201912,446686 -CZ,IE,2,262,201912,41142604 -CZ,IE,2,263,201912,990283 -CZ,IE,2,264,201912,41689 -CZ,IE,2,265,201912,71111 -CZ,IE,2,266,201912,42736 -CZ,IE,2,267,201912,4471 -CZ,IE,2,268,201912,11010 -CZ,IE,2,271,201912,827074 -CZ,IE,2,272,201912,9525 -CZ,IE,2,273,201912,552358 -CZ,IE,2,274,201912,92696 -CZ,IE,2,275,201912,74784 -CZ,IE,2,279,201912,765410 -CZ,IE,2,281,201912,1754669 -CZ,IE,2,282,201912,1264194 -CZ,IE,2,283,201912,123756 -CZ,IE,2,284,201912,30265 -CZ,IE,2,289,201912,698917 -CZ,IE,2,291,201912,23218229 -CZ,IE,2,292,201912,10342 -CZ,IE,2,293,201912,203082 -CZ,IE,2,302,201912,138654 -CZ,IE,2,309,201912,590 -CZ,IE,2,310,201912,219822 -CZ,IE,2,321,201912,769 -CZ,IE,2,322,201912,349 -CZ,IE,2,323,201912,18143 -CZ,IE,2,324,201912,1069929 -CZ,IE,2,325,201912,75109 -CZ,IE,2,329,201912,231971 -CZ,IL,1,011,201912,22822 -CZ,IL,1,012,201912,35375 -CZ,IL,1,013,201912,72951 -CZ,IL,1,030,201912,3526 -CZ,IL,1,089,201912,58614 -CZ,IL,1,106,201912,18397 -CZ,IL,1,108,201912,187789 -CZ,IL,1,110,201912,257 -CZ,IL,1,139,201912,280714 -CZ,IL,1,141,201912,10577 -CZ,IL,1,143,201912,1071 -CZ,IL,1,151,201912,37918 -CZ,IL,1,162,201912,1157 -CZ,IL,1,172,201912,104172 -CZ,IL,1,201,201912,932904 -CZ,IL,1,203,201912,2354 -CZ,IL,1,204,201912,194992 -CZ,IL,1,205,201912,13851 -CZ,IL,1,211,201912,65291 -CZ,IL,1,212,201912,329 -CZ,IL,1,221,201912,545 -CZ,IL,1,222,201912,237812 -CZ,IL,1,231,201912,11649 -CZ,IL,1,234,201912,17273 -CZ,IL,1,242,201912,14090 -CZ,IL,1,244,201912,176667 -CZ,IL,1,252,201912,18731 -CZ,IL,1,254,201912,99461 -CZ,IL,1,257,201912,242515 -CZ,IL,1,259,201912,87056 -CZ,IL,1,261,201912,1425535 -CZ,IL,1,262,201912,458197 -CZ,IL,1,263,201912,2705735 -CZ,IL,1,264,201912,76413 -CZ,IL,1,265,201912,426961 -CZ,IL,1,266,201912,38718 -CZ,IL,1,267,201912,1756312 -CZ,IL,1,271,201912,53253 -CZ,IL,1,273,201912,14822 -CZ,IL,1,274,201912,127 -CZ,IL,1,275,201912,507161 -CZ,IL,1,279,201912,120945 -CZ,IL,1,281,201912,209652 -CZ,IL,1,282,201912,244326 -CZ,IL,1,283,201912,17582 -CZ,IL,1,284,201912,1583835 -CZ,IL,1,289,201912,13671 -CZ,IL,1,293,201912,35283 -CZ,IL,1,303,201912,54978 -CZ,IL,1,310,201912,87125 -CZ,IL,1,321,201912,114556 -CZ,IL,1,324,201912,759 -CZ,IL,1,325,201912,408943 -CZ,IL,1,329,201912,71666 -CZ,IL,2,081,201912,3234 -CZ,IL,2,089,201912,55753 -CZ,IL,2,106,201912,37387 -CZ,IL,2,107,201912,222752 -CZ,IL,2,108,201912,221334 -CZ,IL,2,109,201912,267894 -CZ,IL,2,110,201912,130772 -CZ,IL,2,139,201912,657728 -CZ,IL,2,141,201912,125761 -CZ,IL,2,143,201912,2190 -CZ,IL,2,151,201912,26740 -CZ,IL,2,152,201912,33198 -CZ,IL,2,161,201912,45187 -CZ,IL,2,162,201912,215896 -CZ,IL,2,171,201912,103517 -CZ,IL,2,172,201912,1664284 -CZ,IL,2,192,201912,51878 -CZ,IL,2,201,201912,920334 -CZ,IL,2,204,201912,52820 -CZ,IL,2,205,201912,371785 -CZ,IL,2,211,201912,42834 -CZ,IL,2,212,201912,19791 -CZ,IL,2,221,201912,47242 -CZ,IL,2,222,201912,573168 -CZ,IL,2,231,201912,151700 -CZ,IL,2,232,201912,1708 -CZ,IL,2,233,201912,25650 -CZ,IL,2,234,201912,95426 -CZ,IL,2,236,201912,10480 -CZ,IL,2,239,201912,32959 -CZ,IL,2,242,201912,6637 -CZ,IL,2,243,201912,219497 -CZ,IL,2,244,201912,315386 -CZ,IL,2,251,201912,362298 -CZ,IL,2,252,201912,112502 -CZ,IL,2,254,201912,63 -CZ,IL,2,257,201912,182433 -CZ,IL,2,259,201912,1008633 -CZ,IL,2,261,201912,673463 -CZ,IL,2,262,201912,8930467 -CZ,IL,2,263,201912,1463115 -CZ,IL,2,264,201912,502433 -CZ,IL,2,265,201912,3517671 -CZ,IL,2,267,201912,1325423 -CZ,IL,2,268,201912,152541 -CZ,IL,2,271,201912,655844 -CZ,IL,2,272,201912,180689 -CZ,IL,2,273,201912,141005 -CZ,IL,2,274,201912,255513 -CZ,IL,2,275,201912,2712 -CZ,IL,2,279,201912,625418 -CZ,IL,2,281,201912,289584 -CZ,IL,2,282,201912,1203946 -CZ,IL,2,284,201912,1300 -CZ,IL,2,289,201912,1941262 -CZ,IL,2,291,201912,45693044 -CZ,IL,2,293,201912,533801 -CZ,IL,2,302,201912,13998 -CZ,IL,2,303,201912,197285 -CZ,IL,2,309,201912,22329 -CZ,IL,2,310,201912,426747 -CZ,IL,2,322,201912,1400 -CZ,IL,2,323,201912,128982 -CZ,IL,2,324,201912,438165 -CZ,IL,2,325,201912,112032 -CZ,IL,2,329,201912,39608 -CZ,IN,1,011,201912,136614 -CZ,IN,1,012,201912,70084 -CZ,IN,1,081,201912,177388 -CZ,IN,1,089,201912,7914 -CZ,IN,1,103,201912,212280 -CZ,IN,1,104,201912,154 -CZ,IN,1,106,201912,47252 -CZ,IN,1,108,201912,116659 -CZ,IN,1,120,201912,88348 -CZ,IN,1,131,201912,526108 -CZ,IN,1,132,201912,108937 -CZ,IN,1,139,201912,547249 -CZ,IN,1,141,201912,396329 -CZ,IN,1,143,201912,10821 -CZ,IN,1,151,201912,598004 -CZ,IN,1,152,201912,472029 -CZ,IN,1,162,201912,4225 -CZ,IN,1,172,201912,12623 -CZ,IN,1,192,201912,18468 -CZ,IN,1,201,201912,3365781 -CZ,IN,1,203,201912,19 -CZ,IN,1,204,201912,85139 -CZ,IN,1,205,201912,200894 -CZ,IN,1,206,201912,42905 -CZ,IN,1,211,201912,339441 -CZ,IN,1,212,201912,3266133 -CZ,IN,1,221,201912,244249 -CZ,IN,1,222,201912,197448 -CZ,IN,1,231,201912,70139 -CZ,IN,1,232,201912,39155 -CZ,IN,1,233,201912,186668 -CZ,IN,1,234,201912,669 -CZ,IN,1,236,201912,11069 -CZ,IN,1,237,201912,36556 -CZ,IN,1,239,201912,27881 -CZ,IN,1,241,201912,527314 -CZ,IN,1,242,201912,1530861 -CZ,IN,1,243,201912,541802 -CZ,IN,1,244,201912,103825 -CZ,IN,1,245,201912,1189 -CZ,IN,1,251,201912,31449 -CZ,IN,1,254,201912,83410 -CZ,IN,1,257,201912,501128 -CZ,IN,1,259,201912,812306 -CZ,IN,1,261,201912,111846 -CZ,IN,1,262,201912,10368 -CZ,IN,1,263,201912,567205 -CZ,IN,1,264,201912,408 -CZ,IN,1,265,201912,254465 -CZ,IN,1,267,201912,301 -CZ,IN,1,271,201912,1541752 -CZ,IN,1,272,201912,1004 -CZ,IN,1,273,201912,165443 -CZ,IN,1,274,201912,82957 -CZ,IN,1,275,201912,25650 -CZ,IN,1,279,201912,314915 -CZ,IN,1,281,201912,4196608 -CZ,IN,1,282,201912,626194 -CZ,IN,1,284,201912,7164 -CZ,IN,1,289,201912,790070 -CZ,IN,1,293,201912,2805639 -CZ,IN,1,303,201912,15964 -CZ,IN,1,309,201912,4421 -CZ,IN,1,310,201912,216119 -CZ,IN,1,321,201912,175810 -CZ,IN,1,322,201912,4232 -CZ,IN,1,323,201912,12284 -CZ,IN,1,324,201912,20264 -CZ,IN,1,325,201912,138375 -CZ,IN,1,329,201912,105767 -CZ,IN,2,089,201912,4884 -CZ,IN,2,108,201912,306964 -CZ,IN,2,109,201912,28600 -CZ,IN,2,132,201912,2865 -CZ,IN,2,139,201912,100512 -CZ,IN,2,141,201912,1485 -CZ,IN,2,151,201912,2582 -CZ,IN,2,152,201912,548 -CZ,IN,2,162,201912,202188 -CZ,IN,2,171,201912,22122 -CZ,IN,2,172,201912,24025 -CZ,IN,2,181,201912,329 -CZ,IN,2,192,201912,26716 -CZ,IN,2,201,201912,5688436 -CZ,IN,2,203,201912,20843 -CZ,IN,2,204,201912,35233 -CZ,IN,2,205,201912,249846 -CZ,IN,2,211,201912,822767 -CZ,IN,2,212,201912,128659 -CZ,IN,2,221,201912,304409 -CZ,IN,2,222,201912,441444 -CZ,IN,2,231,201912,909434 -CZ,IN,2,232,201912,25018 -CZ,IN,2,234,201912,38129 -CZ,IN,2,236,201912,28594 -CZ,IN,2,239,201912,79259 -CZ,IN,2,241,201912,339231 -CZ,IN,2,242,201912,31442 -CZ,IN,2,243,201912,161205 -CZ,IN,2,244,201912,95324 -CZ,IN,2,245,201912,142 -CZ,IN,2,251,201912,43955 -CZ,IN,2,257,201912,65893 -CZ,IN,2,259,201912,1202151 -CZ,IN,2,261,201912,203505 -CZ,IN,2,262,201912,423982 -CZ,IN,2,263,201912,386316 -CZ,IN,2,264,201912,6863 -CZ,IN,2,265,201912,2034190 -CZ,IN,2,266,201912,749401 -CZ,IN,2,267,201912,88521 -CZ,IN,2,268,201912,5897 -CZ,IN,2,271,201912,2214238 -CZ,IN,2,272,201912,294 -CZ,IN,2,273,201912,464051 -CZ,IN,2,274,201912,333141 -CZ,IN,2,275,201912,6752 -CZ,IN,2,279,201912,5311911 -CZ,IN,2,281,201912,6688252 -CZ,IN,2,282,201912,2290509 -CZ,IN,2,283,201912,34903 -CZ,IN,2,284,201912,333025 -CZ,IN,2,289,201912,2650441 -CZ,IN,2,291,201912,7329151 -CZ,IN,2,292,201912,2762 -CZ,IN,2,293,201912,5029290 -CZ,IN,2,302,201912,2231055 -CZ,IN,2,303,201912,30480 -CZ,IN,2,309,201912,16868 -CZ,IN,2,310,201912,5238 -CZ,IN,2,321,201912,3072 -CZ,IN,2,323,201912,20998 -CZ,IN,2,324,201912,37 -CZ,IN,2,325,201912,397287 -CZ,IN,2,329,201912,9602 -CZ,IQ,2,014,201912,230151 -CZ,IQ,2,110,201912,15634 -CZ,IQ,2,162,201912,1126 -CZ,IQ,2,172,201912,232568 -CZ,IQ,2,204,201912,7408 -CZ,IQ,2,205,201912,13 -CZ,IQ,2,211,201912,31675 -CZ,IQ,2,212,201912,28978 -CZ,IQ,2,222,201912,1440 -CZ,IQ,2,231,201912,129856 -CZ,IQ,2,234,201912,2677 -CZ,IQ,2,257,201912,1524 -CZ,IQ,2,259,201912,58638 -CZ,IQ,2,262,201912,109078 -CZ,IQ,2,263,201912,61514 -CZ,IQ,2,265,201912,34136 -CZ,IQ,2,267,201912,1002 -CZ,IQ,2,271,201912,155490 -CZ,IQ,2,273,201912,7920 -CZ,IQ,2,274,201912,62138 -CZ,IQ,2,279,201912,1929 -CZ,IQ,2,281,201912,2669406 -CZ,IQ,2,282,201912,68822 -CZ,IQ,2,289,201912,1075218 -CZ,IQ,2,291,201912,405913 -CZ,IQ,2,293,201912,329 -CZ,IQ,2,329,201912,1673 -CZ,IR,1,012,201912,40154 -CZ,IR,1,103,201912,139289 -CZ,IR,1,108,201912,1377 -CZ,IR,1,139,201912,3235 -CZ,IR,2,081,201912,162973 -CZ,IR,2,139,201912,13448 -CZ,IR,2,201,201912,761801 -CZ,IR,2,203,201912,1803 -CZ,IR,2,205,201912,59068 -CZ,IR,2,211,201912,162104 -CZ,IR,2,212,201912,143945 -CZ,IR,2,221,201912,14847 -CZ,IR,2,231,201912,59417 -CZ,IR,2,234,201912,68051 -CZ,IR,2,257,201912,83024 -CZ,IR,2,259,201912,96 -CZ,IR,2,262,201912,8466 -CZ,IR,2,265,201912,33932 -CZ,IR,2,271,201912,102917 -CZ,IR,2,279,201912,7014 -CZ,IR,2,281,201912,870505 -CZ,IR,2,289,201912,111384 -CZ,IS,1,110,201912,8202 -CZ,IS,1,141,201912,1761 -CZ,IS,1,143,201912,2290 -CZ,IS,1,262,201912,566 -CZ,IS,1,271,201912,170 -CZ,IS,1,274,201912,1784 -CZ,IS,1,324,201912,44 -CZ,IS,2,081,201912,15 -CZ,IS,2,107,201912,9275 -CZ,IS,2,108,201912,17112 -CZ,IS,2,110,201912,21282 -CZ,IS,2,131,201912,237 -CZ,IS,2,132,201912,398 -CZ,IS,2,139,201912,4443 -CZ,IS,2,141,201912,9142 -CZ,IS,2,143,201912,361 -CZ,IS,2,151,201912,927 -CZ,IS,2,162,201912,214 -CZ,IS,2,172,201912,16430 -CZ,IS,2,192,201912,355 -CZ,IS,2,201,201912,136 -CZ,IS,2,203,201912,100 -CZ,IS,2,204,201912,8301 -CZ,IS,2,205,201912,1848 -CZ,IS,2,221,201912,2323 -CZ,IS,2,222,201912,45225 -CZ,IS,2,231,201912,491 -CZ,IS,2,234,201912,3838 -CZ,IS,2,236,201912,187 -CZ,IS,2,239,201912,7301 -CZ,IS,2,242,201912,12866 -CZ,IS,2,243,201912,6895 -CZ,IS,2,244,201912,1188 -CZ,IS,2,245,201912,3320 -CZ,IS,2,251,201912,17045 -CZ,IS,2,257,201912,12053 -CZ,IS,2,259,201912,113831 -CZ,IS,2,262,201912,600401 -CZ,IS,2,263,201912,47583 -CZ,IS,2,264,201912,2007 -CZ,IS,2,265,201912,447 -CZ,IS,2,267,201912,1063 -CZ,IS,2,268,201912,500 -CZ,IS,2,271,201912,645 -CZ,IS,2,273,201912,1024 -CZ,IS,2,274,201912,50640 -CZ,IS,2,275,201912,1188 -CZ,IS,2,279,201912,7443 -CZ,IS,2,281,201912,215288 -CZ,IS,2,282,201912,76896 -CZ,IS,2,289,201912,30006 -CZ,IS,2,291,201912,354793 -CZ,IS,2,293,201912,12293 -CZ,IS,2,310,201912,6713 -CZ,IS,2,323,201912,5649 -CZ,IS,2,324,201912,28553 -CZ,IS,2,325,201912,1933 -CZ,IS,2,329,201912,3004 -CZ,IT,1,011,201912,4504423 -CZ,IT,1,012,201912,4000396 -CZ,IT,1,013,201912,44876 -CZ,IT,1,014,201912,17023 -CZ,IT,1,023,201912,189236 -CZ,IT,1,030,201912,270865 -CZ,IT,1,051,201912,3377 -CZ,IT,1,072,201912,61710 -CZ,IT,1,081,201912,463743 -CZ,IT,1,089,201912,129388 -CZ,IT,1,101,201912,3649942 -CZ,IT,1,102,201912,2608220 -CZ,IT,1,103,201912,2693529 -CZ,IT,1,104,201912,891678 -CZ,IT,1,105,201912,2841482 -CZ,IT,1,106,201912,2983406 -CZ,IT,1,107,201912,2783782 -CZ,IT,1,108,201912,7750592 -CZ,IT,1,109,201912,1439841 -CZ,IT,1,110,201912,5938655 -CZ,IT,1,120,201912,50230 -CZ,IT,1,131,201912,2988595 -CZ,IT,1,132,201912,1593233 -CZ,IT,1,139,201912,8235788 -CZ,IT,1,141,201912,11123292 -CZ,IT,1,142,201912,108116 -CZ,IT,1,143,201912,2048497 -CZ,IT,1,151,201912,6146567 -CZ,IT,1,152,201912,4422075 -CZ,IT,1,161,201912,376028 -CZ,IT,1,162,201912,906223 -CZ,IT,1,171,201912,3370955 -CZ,IT,1,172,201912,4806441 -CZ,IT,1,181,201912,114553 -CZ,IT,1,191,201912,129433 -CZ,IT,1,192,201912,630382 -CZ,IT,1,201,201912,19848173 -CZ,IT,1,202,201912,758163 -CZ,IT,1,203,201912,4148750 -CZ,IT,1,204,201912,9611658 -CZ,IT,1,205,201912,5004102 -CZ,IT,1,206,201912,2434536 -CZ,IT,1,211,201912,489341 -CZ,IT,1,212,201912,11813300 -CZ,IT,1,221,201912,5468546 -CZ,IT,1,222,201912,18140949 -CZ,IT,1,231,201912,1576294 -CZ,IT,1,232,201912,332066 -CZ,IT,1,233,201912,2295249 -CZ,IT,1,234,201912,770807 -CZ,IT,1,235,201912,19509 -CZ,IT,1,236,201912,111226 -CZ,IT,1,237,201912,143989 -CZ,IT,1,239,201912,1572504 -CZ,IT,1,241,201912,16901414 -CZ,IT,1,242,201912,9682817 -CZ,IT,1,243,201912,5583667 -CZ,IT,1,244,201912,8302534 -CZ,IT,1,245,201912,76337 -CZ,IT,1,251,201912,1308377 -CZ,IT,1,252,201912,1440803 -CZ,IT,1,253,201912,572366 -CZ,IT,1,254,201912,459735 -CZ,IT,1,257,201912,8673069 -CZ,IT,1,259,201912,15814833 -CZ,IT,1,261,201912,2057309 -CZ,IT,1,262,201912,3093065 -CZ,IT,1,263,201912,2925690 -CZ,IT,1,264,201912,6830365 -CZ,IT,1,265,201912,5077473 -CZ,IT,1,266,201912,420400 -CZ,IT,1,267,201912,1453910 -CZ,IT,1,268,201912,14398 -CZ,IT,1,271,201912,15717954 -CZ,IT,1,272,201912,1259145 -CZ,IT,1,273,201912,8574128 -CZ,IT,1,274,201912,1857549 -CZ,IT,1,275,201912,12507825 -CZ,IT,1,279,201912,4368370 -CZ,IT,1,281,201912,25745814 -CZ,IT,1,282,201912,29118006 -CZ,IT,1,283,201912,4169330 -CZ,IT,1,284,201912,9243539 -CZ,IT,1,289,201912,16944851 -CZ,IT,1,291,201912,18370851 -CZ,IT,1,292,201912,877611 -CZ,IT,1,293,201912,24461523 -CZ,IT,1,302,201912,285425 -CZ,IT,1,303,201912,1176289 -CZ,IT,1,309,201912,2360387 -CZ,IT,1,310,201912,5627624 -CZ,IT,1,321,201912,1822858 -CZ,IT,1,322,201912,106388 -CZ,IT,1,323,201912,1292317 -CZ,IT,1,324,201912,1280022 -CZ,IT,1,325,201912,3305149 -CZ,IT,1,329,201912,1131055 -CZ,IT,2,011,201912,998712 -CZ,IT,2,012,201912,253560 -CZ,IT,2,013,201912,2172 -CZ,IT,2,014,201912,442301 -CZ,IT,2,022,201912,7123 -CZ,IT,2,030,201912,266847 -CZ,IT,2,081,201912,555599 -CZ,IT,2,089,201912,12566 -CZ,IT,2,101,201912,226785 -CZ,IT,2,102,201912,106124 -CZ,IT,2,103,201912,549355 -CZ,IT,2,104,201912,179455 -CZ,IT,2,105,201912,9614917 -CZ,IT,2,106,201912,350606 -CZ,IT,2,107,201912,454314 -CZ,IT,2,108,201912,2674671 -CZ,IT,2,109,201912,639124 -CZ,IT,2,110,201912,1573822 -CZ,IT,2,120,201912,37674170 -CZ,IT,2,131,201912,3862330 -CZ,IT,2,132,201912,7660624 -CZ,IT,2,139,201912,2579949 -CZ,IT,2,141,201912,7667370 -CZ,IT,2,142,201912,3211 -CZ,IT,2,143,201912,1415324 -CZ,IT,2,151,201912,1320217 -CZ,IT,2,152,201912,2215280 -CZ,IT,2,161,201912,1631332 -CZ,IT,2,162,201912,3140741 -CZ,IT,2,171,201912,3662369 -CZ,IT,2,172,201912,5342505 -CZ,IT,2,191,201912,131398 -CZ,IT,2,192,201912,202266 -CZ,IT,2,201,201912,10651382 -CZ,IT,2,202,201912,101982 -CZ,IT,2,203,201912,345954 -CZ,IT,2,204,201912,11706415 -CZ,IT,2,205,201912,2581813 -CZ,IT,2,206,201912,2148770 -CZ,IT,2,211,201912,104948 -CZ,IT,2,212,201912,2139066 -CZ,IT,2,221,201912,8019687 -CZ,IT,2,222,201912,5384725 -CZ,IT,2,231,201912,6403907 -CZ,IT,2,232,201912,951881 -CZ,IT,2,233,201912,11540 -CZ,IT,2,234,201912,676530 -CZ,IT,2,235,201912,94979 -CZ,IT,2,236,201912,119764 -CZ,IT,2,237,201912,1740 -CZ,IT,2,239,201912,1279768 -CZ,IT,2,241,201912,10439664 -CZ,IT,2,242,201912,2102721 -CZ,IT,2,243,201912,2913578 -CZ,IT,2,244,201912,2494139 -CZ,IT,2,245,201912,15640 -CZ,IT,2,251,201912,606256 -CZ,IT,2,252,201912,978570 -CZ,IT,2,254,201912,99397 -CZ,IT,2,257,201912,2954731 -CZ,IT,2,259,201912,7908708 -CZ,IT,2,261,201912,3511297 -CZ,IT,2,262,201912,39719843 -CZ,IT,2,263,201912,9627641 -CZ,IT,2,264,201912,8579197 -CZ,IT,2,265,201912,6872885 -CZ,IT,2,266,201912,8012 -CZ,IT,2,267,201912,752328 -CZ,IT,2,268,201912,155775 -CZ,IT,2,271,201912,12709586 -CZ,IT,2,272,201912,4353581 -CZ,IT,2,273,201912,3231327 -CZ,IT,2,274,201912,1702530 -CZ,IT,2,275,201912,2092036 -CZ,IT,2,279,201912,2963923 -CZ,IT,2,281,201912,15157520 -CZ,IT,2,282,201912,21056534 -CZ,IT,2,283,201912,461870 -CZ,IT,2,284,201912,3871343 -CZ,IT,2,289,201912,10919726 -CZ,IT,2,291,201912,45488405 -CZ,IT,2,292,201912,225893 -CZ,IT,2,293,201912,11798201 -CZ,IT,2,301,201912,17865 -CZ,IT,2,302,201912,1131792 -CZ,IT,2,303,201912,1797356 -CZ,IT,2,309,201912,254290 -CZ,IT,2,310,201912,2859746 -CZ,IT,2,321,201912,666040 -CZ,IT,2,322,201912,203542 -CZ,IT,2,323,201912,449468 -CZ,IT,2,324,201912,10414668 -CZ,IT,2,325,201912,3096338 -CZ,IT,2,329,201912,2842482 -CZ,JO,1,204,201912,169 -CZ,JO,1,262,201912,37316 -CZ,JO,1,263,201912,4264 -CZ,JO,2,108,201912,78913 -CZ,JO,2,139,201912,181 -CZ,JO,2,141,201912,45794 -CZ,JO,2,143,201912,3362 -CZ,JO,2,151,201912,2218 -CZ,JO,2,162,201912,207 -CZ,JO,2,171,201912,33760 -CZ,JO,2,172,201912,317 -CZ,JO,2,201,201912,45792 -CZ,JO,2,204,201912,37629 -CZ,JO,2,205,201912,6859 -CZ,JO,2,212,201912,24122 -CZ,JO,2,221,201912,21972 -CZ,JO,2,222,201912,31309 -CZ,JO,2,231,201912,32810 -CZ,JO,2,244,201912,39 -CZ,JO,2,257,201912,24224 -CZ,JO,2,259,201912,59844 -CZ,JO,2,261,201912,4196 -CZ,JO,2,262,201912,156355 -CZ,JO,2,263,201912,101233 -CZ,JO,2,264,201912,98 -CZ,JO,2,265,201912,5012 -CZ,JO,2,268,201912,2763 -CZ,JO,2,271,201912,25186 -CZ,JO,2,273,201912,1234 -CZ,JO,2,274,201912,27918 -CZ,JO,2,279,201912,91696 -CZ,JO,2,281,201912,78709 -CZ,JO,2,282,201912,6790 -CZ,JO,2,284,201912,1405 -CZ,JO,2,289,201912,21094 -CZ,JO,2,291,201912,18111496 -CZ,JO,2,292,201912,10223 -CZ,JO,2,293,201912,6713 -CZ,JO,2,310,201912,1664 -CZ,JO,2,325,201912,11239 -CZ,JO,2,329,201912,2774 -CZ,JP,1,012,201912,1785 -CZ,JP,1,089,201912,21427 -CZ,JP,1,108,201912,18340 -CZ,JP,1,110,201912,453 -CZ,JP,1,131,201912,28472 -CZ,JP,1,132,201912,93448 -CZ,JP,1,139,201912,249227 -CZ,JP,1,141,201912,2930 -CZ,JP,1,143,201912,259 -CZ,JP,1,151,201912,3494 -CZ,JP,1,152,201912,3413 -CZ,JP,1,162,201912,4429 -CZ,JP,1,171,201912,60264 -CZ,JP,1,172,201912,11694 -CZ,JP,1,192,201912,39041 -CZ,JP,1,201,201912,2314408 -CZ,JP,1,202,201912,30669 -CZ,JP,1,203,201912,31369 -CZ,JP,1,204,201912,358352 -CZ,JP,1,205,201912,1088851 -CZ,JP,1,206,201912,94169 -CZ,JP,1,211,201912,3716 -CZ,JP,1,212,201912,22100 -CZ,JP,1,221,201912,2172145 -CZ,JP,1,222,201912,3007409 -CZ,JP,1,231,201912,290529 -CZ,JP,1,234,201912,123988 -CZ,JP,1,239,201912,160839 -CZ,JP,1,241,201912,278840 -CZ,JP,1,242,201912,174511 -CZ,JP,1,243,201912,1498727 -CZ,JP,1,244,201912,1857061 -CZ,JP,1,245,201912,3213 -CZ,JP,1,254,201912,3769 -CZ,JP,1,257,201912,1056514 -CZ,JP,1,259,201912,4575347 -CZ,JP,1,261,201912,9425010 -CZ,JP,1,262,201912,96835 -CZ,JP,1,263,201912,11399972 -CZ,JP,1,264,201912,176097 -CZ,JP,1,265,201912,5498366 -CZ,JP,1,266,201912,447141 -CZ,JP,1,267,201912,294414 -CZ,JP,1,268,201912,49659 -CZ,JP,1,271,201912,8102027 -CZ,JP,1,272,201912,24434 -CZ,JP,1,273,201912,1473468 -CZ,JP,1,274,201912,62052 -CZ,JP,1,275,201912,71232 -CZ,JP,1,279,201912,2639172 -CZ,JP,1,281,201912,11385786 -CZ,JP,1,282,201912,2157168 -CZ,JP,1,283,201912,120148 -CZ,JP,1,284,201912,2905581 -CZ,JP,1,289,201912,2203338 -CZ,JP,1,291,201912,5256668 -CZ,JP,1,292,201912,79 -CZ,JP,1,293,201912,13586615 -CZ,JP,1,309,201912,719264 -CZ,JP,1,310,201912,8137 -CZ,JP,1,321,201912,12488 -CZ,JP,1,322,201912,95242 -CZ,JP,1,323,201912,88246 -CZ,JP,1,324,201912,53322 -CZ,JP,1,325,201912,408807 -CZ,JP,1,329,201912,186969 -CZ,JP,2,012,201912,215275 -CZ,JP,2,014,201912,42887 -CZ,JP,2,030,201912,10813 -CZ,JP,2,106,201912,27729 -CZ,JP,2,108,201912,38308 -CZ,JP,2,109,201912,3056090 -CZ,JP,2,110,201912,144174 -CZ,JP,2,132,201912,4146 -CZ,JP,2,139,201912,304371 -CZ,JP,2,141,201912,65866 -CZ,JP,2,143,201912,5313 -CZ,JP,2,151,201912,573532 -CZ,JP,2,152,201912,482 -CZ,JP,2,161,201912,1686915 -CZ,JP,2,162,201912,3037 -CZ,JP,2,171,201912,65436 -CZ,JP,2,172,201912,4696 -CZ,JP,2,192,201912,138 -CZ,JP,2,201,201912,722824 -CZ,JP,2,203,201912,1452 -CZ,JP,2,204,201912,3112 -CZ,JP,2,205,201912,766127 -CZ,JP,2,206,201912,2970 -CZ,JP,2,211,201912,4672 -CZ,JP,2,212,201912,259109 -CZ,JP,2,221,201912,793473 -CZ,JP,2,222,201912,545954 -CZ,JP,2,231,201912,243408 -CZ,JP,2,232,201912,957423 -CZ,JP,2,234,201912,6228 -CZ,JP,2,239,201912,13804 -CZ,JP,2,241,201912,780618 -CZ,JP,2,242,201912,2495 -CZ,JP,2,243,201912,6457 -CZ,JP,2,244,201912,136893 -CZ,JP,2,251,201912,100875 -CZ,JP,2,252,201912,35068 -CZ,JP,2,254,201912,5690 -CZ,JP,2,257,201912,56037 -CZ,JP,2,259,201912,330221 -CZ,JP,2,261,201912,751158 -CZ,JP,2,262,201912,848317 -CZ,JP,2,263,201912,985910 -CZ,JP,2,264,201912,5494395 -CZ,JP,2,265,201912,6578571 -CZ,JP,2,266,201912,51184 -CZ,JP,2,267,201912,109300 -CZ,JP,2,271,201912,2526845 -CZ,JP,2,272,201912,72106 -CZ,JP,2,273,201912,621870 -CZ,JP,2,274,201912,193181 -CZ,JP,2,275,201912,27330 -CZ,JP,2,279,201912,333523 -CZ,JP,2,281,201912,9306779 -CZ,JP,2,282,201912,1232594 -CZ,JP,2,283,201912,157639 -CZ,JP,2,284,201912,1313571 -CZ,JP,2,289,201912,1029405 -CZ,JP,2,291,201912,275 -CZ,JP,2,293,201912,2810528 -CZ,JP,2,301,201912,1484 -CZ,JP,2,302,201912,460187 -CZ,JP,2,303,201912,370 -CZ,JP,2,309,201912,25783 -CZ,JP,2,310,201912,185127 -CZ,JP,2,321,201912,16658 -CZ,JP,2,322,201912,326416 -CZ,JP,2,323,201912,198221 -CZ,JP,2,324,201912,637501 -CZ,JP,2,325,201912,147519 -CZ,JP,2,329,201912,544793 -CZ,KE,1,030,201912,5509 -CZ,KE,1,262,201912,158 -CZ,KE,1,321,201912,186 -CZ,KE,2,151,201912,1353 -CZ,KE,2,172,201912,50159 -CZ,KE,2,222,201912,129921 -CZ,KE,2,257,201912,5283 -CZ,KE,2,262,201912,328914 -CZ,KE,2,263,201912,114462 -CZ,KE,2,273,201912,524 -CZ,KE,2,279,201912,3426 -CZ,KE,2,325,201912,2524 -CZ,KG,2,011,201912,3669 -CZ,KG,2,108,201912,11848 -CZ,KG,2,110,201912,4600 -CZ,KG,2,141,201912,13362 -CZ,KG,2,143,201912,185 -CZ,KG,2,204,201912,23342 -CZ,KG,2,212,201912,368174 -CZ,KG,2,222,201912,12829 -CZ,KG,2,231,201912,633 -CZ,KG,2,234,201912,22562 -CZ,KG,2,257,201912,1156 -CZ,KG,2,259,201912,4501 -CZ,KG,2,262,201912,81239 -CZ,KG,2,263,201912,173106 -CZ,KG,2,265,201912,47 -CZ,KG,2,271,201912,59 -CZ,KG,2,273,201912,208 -CZ,KG,2,279,201912,477 -CZ,KG,2,282,201912,508 -CZ,KG,2,289,201912,14781 -CZ,KG,2,291,201912,93362 -CZ,KG,2,292,201912,12689 -CZ,KG,2,310,201912,8293 -CZ,KG,2,323,201912,1796 -CZ,KG,2,325,201912,1244 -CZ,KG,2,329,201912,614 -CZ,KH,1,011,201912,37008 -CZ,KH,1,012,201912,77000 -CZ,KH,1,106,201912,95959 -CZ,KH,1,141,201912,1301171 -CZ,KH,1,143,201912,9060 -CZ,KH,1,152,201912,394487 -CZ,KH,2,222,201912,13494 -CZ,KH,2,251,201912,50381 -CZ,KN,1,265,201912,29638 -CZ,KR,1,012,201912,7151 -CZ,KR,1,102,201912,346114 -CZ,KR,1,103,201912,78274 -CZ,KR,1,106,201912,9007 -CZ,KR,1,107,201912,7250 -CZ,KR,1,108,201912,219394 -CZ,KR,1,110,201912,60945 -CZ,KR,1,131,201912,16046 -CZ,KR,1,132,201912,211436 -CZ,KR,1,139,201912,484339 -CZ,KR,1,141,201912,77149 -CZ,KR,1,143,201912,5861 -CZ,KR,1,151,201912,25356 -CZ,KR,1,152,201912,219 -CZ,KR,1,162,201912,528 -CZ,KR,1,171,201912,111 -CZ,KR,1,172,201912,17437 -CZ,KR,1,192,201912,61074 -CZ,KR,1,201,201912,7462152 -CZ,KR,1,203,201912,127914 -CZ,KR,1,204,201912,306698 -CZ,KR,1,205,201912,517601 -CZ,KR,1,206,201912,92792 -CZ,KR,1,211,201912,131704 -CZ,KR,1,212,201912,16907 -CZ,KR,1,221,201912,3541747 -CZ,KR,1,222,201912,4250223 -CZ,KR,1,231,201912,59531 -CZ,KR,1,234,201912,28738 -CZ,KR,1,239,201912,313811 -CZ,KR,1,241,201912,1124770 -CZ,KR,1,242,201912,218384 -CZ,KR,1,243,201912,183961 -CZ,KR,1,244,201912,371029 -CZ,KR,1,245,201912,322 -CZ,KR,1,251,201912,217231 -CZ,KR,1,254,201912,541 -CZ,KR,1,257,201912,6761162 -CZ,KR,1,259,201912,4314339 -CZ,KR,1,261,201912,1569400 -CZ,KR,1,262,201912,4222770 -CZ,KR,1,263,201912,819744 -CZ,KR,1,264,201912,1838073 -CZ,KR,1,265,201912,10412038 -CZ,KR,1,266,201912,735192 -CZ,KR,1,267,201912,180725 -CZ,KR,1,271,201912,5569998 -CZ,KR,1,272,201912,1697186 -CZ,KR,1,273,201912,1278051 -CZ,KR,1,274,201912,3433816 -CZ,KR,1,275,201912,269543 -CZ,KR,1,279,201912,1555260 -CZ,KR,1,281,201912,5523624 -CZ,KR,1,282,201912,4519477 -CZ,KR,1,283,201912,93513 -CZ,KR,1,284,201912,323363 -CZ,KR,1,289,201912,5510240 -CZ,KR,1,291,201912,11101543 -CZ,KR,1,292,201912,24197 -CZ,KR,1,293,201912,50020280 -CZ,KR,1,309,201912,1341 -CZ,KR,1,310,201912,1495667 -CZ,KR,1,321,201912,11519 -CZ,KR,1,322,201912,18122 -CZ,KR,1,323,201912,20804 -CZ,KR,1,324,201912,75900 -CZ,KR,1,325,201912,762041 -CZ,KR,1,329,201912,24932 -CZ,KR,2,012,201912,4673 -CZ,KR,2,014,201912,2011 -CZ,KR,2,022,201912,232456 -CZ,KR,2,089,201912,38430 -CZ,KR,2,103,201912,75 -CZ,KR,2,105,201912,110795 -CZ,KR,2,107,201912,64181 -CZ,KR,2,108,201912,289822 -CZ,KR,2,109,201912,1864 -CZ,KR,2,110,201912,297466 -CZ,KR,2,132,201912,778 -CZ,KR,2,139,201912,93310 -CZ,KR,2,141,201912,26851 -CZ,KR,2,143,201912,2342 -CZ,KR,2,151,201912,1916 -CZ,KR,2,161,201912,175038 -CZ,KR,2,162,201912,54643 -CZ,KR,2,171,201912,39905 -CZ,KR,2,172,201912,53252 -CZ,KR,2,192,201912,377827 -CZ,KR,2,201,201912,3071254 -CZ,KR,2,204,201912,28628 -CZ,KR,2,205,201912,249089 -CZ,KR,2,211,201912,505531 -CZ,KR,2,212,201912,96131 -CZ,KR,2,221,201912,2114459 -CZ,KR,2,222,201912,1231252 -CZ,KR,2,231,201912,202869 -CZ,KR,2,232,201912,63291 -CZ,KR,2,234,201912,46983 -CZ,KR,2,239,201912,176501 -CZ,KR,2,241,201912,90039 -CZ,KR,2,242,201912,32664 -CZ,KR,2,243,201912,168040 -CZ,KR,2,244,201912,156873 -CZ,KR,2,251,201912,205187 -CZ,KR,2,252,201912,34380 -CZ,KR,2,254,201912,13717 -CZ,KR,2,257,201912,251437 -CZ,KR,2,259,201912,943628 -CZ,KR,2,261,201912,150077 -CZ,KR,2,262,201912,87696 -CZ,KR,2,263,201912,396129 -CZ,KR,2,264,201912,7018 -CZ,KR,2,265,201912,4378790 -CZ,KR,2,267,201912,8459 -CZ,KR,2,271,201912,980085 -CZ,KR,2,272,201912,16069 -CZ,KR,2,273,201912,1419566 -CZ,KR,2,274,201912,44469 -CZ,KR,2,275,201912,77099 -CZ,KR,2,279,201912,359874 -CZ,KR,2,281,201912,4983929 -CZ,KR,2,282,201912,478755 -CZ,KR,2,284,201912,28436 -CZ,KR,2,289,201912,1635324 -CZ,KR,2,291,201912,31460 -CZ,KR,2,293,201912,2581563 -CZ,KR,2,302,201912,829484 -CZ,KR,2,303,201912,75489 -CZ,KR,2,309,201912,17272 -CZ,KR,2,310,201912,149665 -CZ,KR,2,321,201912,11967 -CZ,KR,2,322,201912,69189 -CZ,KR,2,323,201912,112046 -CZ,KR,2,324,201912,461238 -CZ,KR,2,325,201912,684196 -CZ,KR,2,329,201912,236513 -CZ,KW,1,282,201912,131 -CZ,KW,2,014,201912,58092 -CZ,KW,2,105,201912,52674 -CZ,KW,2,108,201912,133671 -CZ,KW,2,139,201912,6984 -CZ,KW,2,141,201912,62444 -CZ,KW,2,143,201912,92 -CZ,KW,2,151,201912,324 -CZ,KW,2,162,201912,1768 -CZ,KW,2,171,201912,750 -CZ,KW,2,172,201912,27683 -CZ,KW,2,201,201912,37772 -CZ,KW,2,204,201912,2459 -CZ,KW,2,205,201912,27319 -CZ,KW,2,221,201912,60614 -CZ,KW,2,222,201912,39253 -CZ,KW,2,231,201912,34887 -CZ,KW,2,234,201912,1177 -CZ,KW,2,243,201912,20297 -CZ,KW,2,254,201912,16577 -CZ,KW,2,257,201912,10911 -CZ,KW,2,259,201912,16056 -CZ,KW,2,261,201912,2560 -CZ,KW,2,262,201912,512800 -CZ,KW,2,263,201912,98447 -CZ,KW,2,264,201912,3903 -CZ,KW,2,265,201912,12366 -CZ,KW,2,267,201912,5235 -CZ,KW,2,271,201912,124798 -CZ,KW,2,273,201912,75405 -CZ,KW,2,274,201912,345660 -CZ,KW,2,275,201912,1001 -CZ,KW,2,279,201912,33075 -CZ,KW,2,281,201912,25116 -CZ,KW,2,282,201912,66025 -CZ,KW,2,289,201912,639861 -CZ,KW,2,291,201912,1151919 -CZ,KW,2,293,201912,6959 -CZ,KW,2,310,201912,65786 -CZ,KW,2,324,201912,59802 -CZ,KW,2,325,201912,115567 -CZ,KW,2,329,201912,22216 -CZ,KZ,1,011,201912,275388 -CZ,KZ,1,061,201912,35896451 -CZ,KZ,1,201,201912,2444012 -CZ,KZ,1,239,201912,59913 -CZ,KZ,1,241,201912,1353474 -CZ,KZ,1,262,201912,24445 -CZ,KZ,1,263,201912,197811 -CZ,KZ,1,264,201912,21163 -CZ,KZ,1,279,201912,854 -CZ,KZ,2,011,201912,5422 -CZ,KZ,2,014,201912,131786 -CZ,KZ,2,089,201912,15086 -CZ,KZ,2,106,201912,3052 -CZ,KZ,2,110,201912,13971 -CZ,KZ,2,139,201912,20490 -CZ,KZ,2,141,201912,2168 -CZ,KZ,2,143,201912,702 -CZ,KZ,2,151,201912,31142 -CZ,KZ,2,162,201912,19 -CZ,KZ,2,172,201912,4323 -CZ,KZ,2,192,201912,11528 -CZ,KZ,2,201,201912,114147 -CZ,KZ,2,203,201912,8 -CZ,KZ,2,204,201912,107950 -CZ,KZ,2,205,201912,29137 -CZ,KZ,2,211,201912,37635 -CZ,KZ,2,212,201912,561659 -CZ,KZ,2,221,201912,20546 -CZ,KZ,2,222,201912,150861 -CZ,KZ,2,231,201912,216806 -CZ,KZ,2,234,201912,122367 -CZ,KZ,2,242,201912,1234 -CZ,KZ,2,244,201912,555 -CZ,KZ,2,252,201912,170480 -CZ,KZ,2,257,201912,14863 -CZ,KZ,2,259,201912,260499 -CZ,KZ,2,261,201912,34558 -CZ,KZ,2,262,201912,5553297 -CZ,KZ,2,263,201912,3381542 -CZ,KZ,2,264,201912,528668 -CZ,KZ,2,265,201912,73862 -CZ,KZ,2,267,201912,4809 -CZ,KZ,2,268,201912,28385 -CZ,KZ,2,271,201912,441552 -CZ,KZ,2,272,201912,30632 -CZ,KZ,2,273,201912,19198 -CZ,KZ,2,274,201912,1476803 -CZ,KZ,2,275,201912,17994 -CZ,KZ,2,279,201912,74462 -CZ,KZ,2,281,201912,1848038 -CZ,KZ,2,282,201912,1463428 -CZ,KZ,2,284,201912,136 -CZ,KZ,2,289,201912,72400 -CZ,KZ,2,291,201912,237756 -CZ,KZ,2,292,201912,5388305 -CZ,KZ,2,293,201912,2654519 -CZ,KZ,2,302,201912,671654 -CZ,KZ,2,303,201912,2679 -CZ,KZ,2,310,201912,4609 -CZ,KZ,2,324,201912,5216 -CZ,KZ,2,325,201912,14501 -CZ,KZ,2,329,201912,6464 -CZ,LA,2,273,201912,988 -CZ,LA,2,303,201912,168 -CZ,LB,1,262,201912,196 -CZ,LB,1,263,201912,34 -CZ,LB,1,265,201912,543 -CZ,LB,2,105,201912,115759 -CZ,LB,2,108,201912,30465 -CZ,LB,2,139,201912,2513 -CZ,LB,2,141,201912,0 -CZ,LB,2,143,201912,3 -CZ,LB,2,161,201912,124 -CZ,LB,2,162,201912,126 -CZ,LB,2,171,201912,50142 -CZ,LB,2,172,201912,383618 -CZ,LB,2,204,201912,45882 -CZ,LB,2,212,201912,45003 -CZ,LB,2,221,201912,51 -CZ,LB,2,222,201912,162013 -CZ,LB,2,231,201912,45848 -CZ,LB,2,234,201912,66965 -CZ,LB,2,251,201912,4101 -CZ,LB,2,257,201912,120 -CZ,LB,2,259,201912,18584 -CZ,LB,2,261,201912,49 -CZ,LB,2,262,201912,358585 -CZ,LB,2,263,201912,127916 -CZ,LB,2,265,201912,47251 -CZ,LB,2,271,201912,264189 -CZ,LB,2,273,201912,1457 -CZ,LB,2,274,201912,2802 -CZ,LB,2,279,201912,5504 -CZ,LB,2,281,201912,53381 -CZ,LB,2,282,201912,1197 -CZ,LB,2,289,201912,865 -CZ,LB,2,310,201912,36013 -CZ,LB,2,325,201912,103951 -CZ,LB,2,329,201912,3217 -CZ,LI,1,201,201912,2446 -CZ,LI,1,222,201912,334 -CZ,LI,1,244,201912,3448 -CZ,LI,1,259,201912,140 -CZ,LI,1,267,201912,60034 -CZ,LI,1,271,201912,481 -CZ,LI,1,273,201912,5295 -CZ,LI,1,275,201912,4124 -CZ,LI,1,281,201912,495 -CZ,LI,1,282,201912,813 -CZ,LI,2,151,201912,354 -CZ,LI,2,162,201912,561 -CZ,LI,2,222,201912,135003 -CZ,LI,2,244,201912,14642 -CZ,LI,2,257,201912,1720 -CZ,LI,2,259,201912,121782 -CZ,LI,2,262,201912,66293 -CZ,LI,2,265,201912,2686 -CZ,LI,2,271,201912,9960 -CZ,LI,2,273,201912,886 -CZ,LI,2,274,201912,1280 -CZ,LI,2,279,201912,8128 -CZ,LI,2,281,201912,15875 -CZ,LI,2,282,201912,47527 -CZ,LI,2,289,201912,87952 -CZ,LI,2,310,201912,14181 -CZ,LI,2,324,201912,12271 -CZ,LK,1,013,201912,265 -CZ,LK,1,023,201912,4053 -CZ,LK,1,030,201912,27894 -CZ,LK,1,103,201912,56842 -CZ,LK,1,104,201912,33648 -CZ,LK,1,108,201912,247777 -CZ,LK,1,141,201912,1002110 -CZ,LK,1,143,201912,20778 -CZ,LK,1,204,201912,8349 -CZ,LK,1,221,201912,417750 -CZ,LK,2,089,201912,2129 -CZ,LK,2,139,201912,73327 -CZ,LK,2,162,201912,193 -CZ,LK,2,205,201912,2 -CZ,LK,2,211,201912,3714 -CZ,LK,2,222,201912,108841 -CZ,LK,2,257,201912,163688 -CZ,LK,2,259,201912,22004 -CZ,LK,2,263,201912,150 -CZ,LK,2,265,201912,72230 -CZ,LK,2,271,201912,19886 -CZ,LK,2,279,201912,1621 -CZ,LK,2,281,201912,31971 -CZ,LK,2,282,201912,6071 -CZ,LK,2,289,201912,6223 -CZ,LK,2,325,201912,129 -CZ,LR,1,071,201912,2820137 -CZ,LT,1,011,201912,25790 -CZ,LT,1,014,201912,165974 -CZ,LT,1,030,201912,67005 -CZ,LT,1,089,201912,87401 -CZ,LT,1,101,201912,93906 -CZ,LT,1,102,201912,589824 -CZ,LT,1,103,201912,6325 -CZ,LT,1,104,201912,165224 -CZ,LT,1,105,201912,580747 -CZ,LT,1,106,201912,145787 -CZ,LT,1,107,201912,432429 -CZ,LT,1,108,201912,227216 -CZ,LT,1,109,201912,471325 -CZ,LT,1,110,201912,18519 -CZ,LT,1,120,201912,4842802 -CZ,LT,1,132,201912,234727 -CZ,LT,1,139,201912,60025 -CZ,LT,1,141,201912,142122 -CZ,LT,1,143,201912,9789 -CZ,LT,1,151,201912,12835 -CZ,LT,1,161,201912,357755 -CZ,LT,1,162,201912,195165 -CZ,LT,1,171,201912,107639 -CZ,LT,1,172,201912,211992 -CZ,LT,1,181,201912,478 -CZ,LT,1,192,201912,14889 -CZ,LT,1,201,201912,4074475 -CZ,LT,1,203,201912,1 -CZ,LT,1,204,201912,136536 -CZ,LT,1,205,201912,638601 -CZ,LT,1,211,201912,270503 -CZ,LT,1,212,201912,1271840 -CZ,LT,1,221,201912,133271 -CZ,LT,1,222,201912,1128045 -CZ,LT,1,231,201912,1767 -CZ,LT,1,234,201912,1195 -CZ,LT,1,239,201912,46041 -CZ,LT,1,241,201912,174594 -CZ,LT,1,242,201912,11711 -CZ,LT,1,243,201912,58178 -CZ,LT,1,244,201912,8191 -CZ,LT,1,251,201912,5406 -CZ,LT,1,252,201912,24901 -CZ,LT,1,257,201912,7853 -CZ,LT,1,259,201912,116941 -CZ,LT,1,261,201912,5551 -CZ,LT,1,262,201912,64090 -CZ,LT,1,263,201912,502520 -CZ,LT,1,264,201912,69095 -CZ,LT,1,265,201912,80645 -CZ,LT,1,266,201912,2523 -CZ,LT,1,267,201912,219491 -CZ,LT,1,271,201912,257342 -CZ,LT,1,272,201912,16454 -CZ,LT,1,273,201912,51272 -CZ,LT,1,274,201912,15287 -CZ,LT,1,275,201912,320830 -CZ,LT,1,279,201912,53176 -CZ,LT,1,281,201912,373936 -CZ,LT,1,282,201912,384718 -CZ,LT,1,283,201912,609321 -CZ,LT,1,284,201912,205855 -CZ,LT,1,289,201912,63793 -CZ,LT,1,291,201912,532925 -CZ,LT,1,293,201912,95906 -CZ,LT,1,309,201912,153768 -CZ,LT,1,310,201912,1113010 -CZ,LT,1,321,201912,146 -CZ,LT,1,324,201912,43251 -CZ,LT,1,325,201912,1012906 -CZ,LT,1,329,201912,61699 -CZ,LT,2,011,201912,61434 -CZ,LT,2,012,201912,11112 -CZ,LT,2,014,201912,19228 -CZ,LT,2,022,201912,535282 -CZ,LT,2,030,201912,4418 -CZ,LT,2,081,201912,129954 -CZ,LT,2,089,201912,2621 -CZ,LT,2,101,201912,275112 -CZ,LT,2,102,201912,217666 -CZ,LT,2,103,201912,106319 -CZ,LT,2,104,201912,9464 -CZ,LT,2,105,201912,146815 -CZ,LT,2,106,201912,142870 -CZ,LT,2,107,201912,69868 -CZ,LT,2,108,201912,1036713 -CZ,LT,2,109,201912,804795 -CZ,LT,2,110,201912,194113 -CZ,LT,2,120,201912,22918 -CZ,LT,2,131,201912,268750 -CZ,LT,2,132,201912,165299 -CZ,LT,2,139,201912,647521 -CZ,LT,2,141,201912,247185 -CZ,LT,2,143,201912,40476 -CZ,LT,2,151,201912,24326 -CZ,LT,2,152,201912,31775 -CZ,LT,2,162,201912,130790 -CZ,LT,2,171,201912,69162 -CZ,LT,2,172,201912,651430 -CZ,LT,2,181,201912,9693 -CZ,LT,2,191,201912,231101 -CZ,LT,2,192,201912,84346 -CZ,LT,2,201,201912,868847 -CZ,LT,2,202,201912,14349 -CZ,LT,2,203,201912,104776 -CZ,LT,2,204,201912,1817931 -CZ,LT,2,205,201912,295246 -CZ,LT,2,206,201912,37696 -CZ,LT,2,211,201912,286055 -CZ,LT,2,212,201912,3496667 -CZ,LT,2,221,201912,396867 -CZ,LT,2,222,201912,1327791 -CZ,LT,2,231,201912,742410 -CZ,LT,2,232,201912,461 -CZ,LT,2,233,201912,6412 -CZ,LT,2,234,201912,51230 -CZ,LT,2,236,201912,129300 -CZ,LT,2,237,201912,21645 -CZ,LT,2,239,201912,79058 -CZ,LT,2,241,201912,373456 -CZ,LT,2,242,201912,199369 -CZ,LT,2,243,201912,211894 -CZ,LT,2,244,201912,199701 -CZ,LT,2,251,201912,212283 -CZ,LT,2,252,201912,262991 -CZ,LT,2,254,201912,77861 -CZ,LT,2,257,201912,282783 -CZ,LT,2,259,201912,360018 -CZ,LT,2,261,201912,69826 -CZ,LT,2,262,201912,4665864 -CZ,LT,2,263,201912,10698239 -CZ,LT,2,264,201912,533768 -CZ,LT,2,265,201912,124299 -CZ,LT,2,266,201912,1344 -CZ,LT,2,267,201912,11674 -CZ,LT,2,271,201912,470386 -CZ,LT,2,272,201912,251188 -CZ,LT,2,273,201912,864978 -CZ,LT,2,274,201912,183697 -CZ,LT,2,275,201912,608234 -CZ,LT,2,279,201912,574790 -CZ,LT,2,281,201912,617524 -CZ,LT,2,282,201912,1739299 -CZ,LT,2,283,201912,336615 -CZ,LT,2,284,201912,49571 -CZ,LT,2,289,201912,524300 -CZ,LT,2,291,201912,4816826 -CZ,LT,2,292,201912,39806 -CZ,LT,2,293,201912,644449 -CZ,LT,2,302,201912,230544 -CZ,LT,2,303,201912,6827 -CZ,LT,2,309,201912,533751 -CZ,LT,2,310,201912,225615 -CZ,LT,2,321,201912,2208 -CZ,LT,2,322,201912,14919 -CZ,LT,2,323,201912,103419 -CZ,LT,2,324,201912,342081 -CZ,LT,2,325,201912,189849 -CZ,LT,2,329,201912,265753 -CZ,LU,1,012,201912,665340 -CZ,LU,1,081,201912,79844 -CZ,LU,1,089,201912,5325 -CZ,LU,1,102,201912,107601 -CZ,LU,1,103,201912,4941 -CZ,LU,1,105,201912,33034 -CZ,LU,1,107,201912,200952 -CZ,LU,1,108,201912,38221 -CZ,LU,1,132,201912,4383 -CZ,LU,1,139,201912,1161849 -CZ,LU,1,141,201912,33403 -CZ,LU,1,152,201912,75620 -CZ,LU,1,162,201912,14774 -CZ,LU,1,171,201912,339791 -CZ,LU,1,172,201912,95854 -CZ,LU,1,192,201912,63984 -CZ,LU,1,201,201912,2178647 -CZ,LU,1,203,201912,1748 -CZ,LU,1,204,201912,100776 -CZ,LU,1,205,201912,162024 -CZ,LU,1,206,201912,137994 -CZ,LU,1,221,201912,194357 -CZ,LU,1,222,201912,1126571 -CZ,LU,1,232,201912,14893 -CZ,LU,1,234,201912,19235 -CZ,LU,1,239,201912,4312 -CZ,LU,1,241,201912,1194184 -CZ,LU,1,242,201912,359189 -CZ,LU,1,243,201912,844883 -CZ,LU,1,244,201912,208402 -CZ,LU,1,245,201912,1041 -CZ,LU,1,251,201912,99708 -CZ,LU,1,254,201912,147 -CZ,LU,1,257,201912,145240 -CZ,LU,1,259,201912,2071993 -CZ,LU,1,261,201912,4390 -CZ,LU,1,262,201912,9309 -CZ,LU,1,263,201912,226519 -CZ,LU,1,265,201912,157206 -CZ,LU,1,267,201912,73963 -CZ,LU,1,271,201912,141626 -CZ,LU,1,272,201912,12313 -CZ,LU,1,273,201912,111939 -CZ,LU,1,274,201912,26848 -CZ,LU,1,275,201912,59420 -CZ,LU,1,279,201912,311518 -CZ,LU,1,281,201912,1028165 -CZ,LU,1,282,201912,783459 -CZ,LU,1,283,201912,3007 -CZ,LU,1,284,201912,375453 -CZ,LU,1,289,201912,395472 -CZ,LU,1,291,201912,7613 -CZ,LU,1,293,201912,42243 -CZ,LU,1,310,201912,158245 -CZ,LU,1,325,201912,532 -CZ,LU,1,329,201912,6746 -CZ,LU,2,011,201912,39 -CZ,LU,2,012,201912,3217 -CZ,LU,2,081,201912,7307 -CZ,LU,2,101,201912,1120 -CZ,LU,2,102,201912,148 -CZ,LU,2,103,201912,1629 -CZ,LU,2,104,201912,805 -CZ,LU,2,105,201912,7491 -CZ,LU,2,106,201912,632 -CZ,LU,2,107,201912,445 -CZ,LU,2,108,201912,12239 -CZ,LU,2,109,201912,15299 -CZ,LU,2,110,201912,1706 -CZ,LU,2,132,201912,11145 -CZ,LU,2,139,201912,381477 -CZ,LU,2,141,201912,46337 -CZ,LU,2,142,201912,721 -CZ,LU,2,143,201912,2325 -CZ,LU,2,151,201912,22594 -CZ,LU,2,152,201912,6588 -CZ,LU,2,161,201912,1883 -CZ,LU,2,162,201912,600879 -CZ,LU,2,171,201912,212 -CZ,LU,2,172,201912,31478 -CZ,LU,2,192,201912,5 -CZ,LU,2,201,201912,1826975 -CZ,LU,2,202,201912,44 -CZ,LU,2,203,201912,195 -CZ,LU,2,204,201912,353214 -CZ,LU,2,205,201912,19676 -CZ,LU,2,206,201912,608110 -CZ,LU,2,211,201912,228 -CZ,LU,2,212,201912,919 -CZ,LU,2,221,201912,233576 -CZ,LU,2,222,201912,104999 -CZ,LU,2,231,201912,145741 -CZ,LU,2,233,201912,28817 -CZ,LU,2,234,201912,1826 -CZ,LU,2,236,201912,2544 -CZ,LU,2,239,201912,3890 -CZ,LU,2,241,201912,163573 -CZ,LU,2,242,201912,57108 -CZ,LU,2,243,201912,611418 -CZ,LU,2,244,201912,31209 -CZ,LU,2,251,201912,72431 -CZ,LU,2,252,201912,70770 -CZ,LU,2,257,201912,1086829 -CZ,LU,2,259,201912,335276 -CZ,LU,2,261,201912,62184 -CZ,LU,2,262,201912,1608890 -CZ,LU,2,263,201912,246409 -CZ,LU,2,264,201912,67002 -CZ,LU,2,265,201912,171348 -CZ,LU,2,267,201912,7201 -CZ,LU,2,268,201912,2941 -CZ,LU,2,271,201912,128147 -CZ,LU,2,272,201912,16414 -CZ,LU,2,273,201912,91498 -CZ,LU,2,274,201912,25445 -CZ,LU,2,275,201912,20420 -CZ,LU,2,279,201912,138441 -CZ,LU,2,281,201912,1161204 -CZ,LU,2,282,201912,238698 -CZ,LU,2,283,201912,42 -CZ,LU,2,284,201912,8818 -CZ,LU,2,289,201912,608738 -CZ,LU,2,291,201912,2209712 -CZ,LU,2,293,201912,77624 -CZ,LU,2,302,201912,36808 -CZ,LU,2,309,201912,10962 -CZ,LU,2,310,201912,131385 -CZ,LU,2,321,201912,1795 -CZ,LU,2,322,201912,4537 -CZ,LU,2,323,201912,61794 -CZ,LU,2,324,201912,257683 -CZ,LU,2,325,201912,10576 -CZ,LU,2,329,201912,20271 -CZ,LV,1,012,201912,3209 -CZ,LV,1,014,201912,439628 -CZ,LV,1,022,201912,106792 -CZ,LV,1,089,201912,218586 -CZ,LV,1,102,201912,267329 -CZ,LV,1,103,201912,1193 -CZ,LV,1,105,201912,11876 -CZ,LV,1,106,201912,102061 -CZ,LV,1,108,201912,526520 -CZ,LV,1,109,201912,12992 -CZ,LV,1,110,201912,55898 -CZ,LV,1,132,201912,27530 -CZ,LV,1,139,201912,26158 -CZ,LV,1,141,201912,167362 -CZ,LV,1,151,201912,878 -CZ,LV,1,152,201912,132 -CZ,LV,1,162,201912,179536 -CZ,LV,1,171,201912,273867 -CZ,LV,1,172,201912,1504 -CZ,LV,1,201,201912,353347 -CZ,LV,1,203,201912,13543 -CZ,LV,1,204,201912,463104 -CZ,LV,1,205,201912,19044 -CZ,LV,1,206,201912,88727 -CZ,LV,1,212,201912,999280 -CZ,LV,1,221,201912,26324 -CZ,LV,1,222,201912,14988 -CZ,LV,1,231,201912,75834 -CZ,LV,1,233,201912,9878 -CZ,LV,1,239,201912,37884 -CZ,LV,1,241,201912,199570 -CZ,LV,1,244,201912,31564 -CZ,LV,1,257,201912,5982 -CZ,LV,1,259,201912,9084 -CZ,LV,1,262,201912,15016 -CZ,LV,1,263,201912,1591412 -CZ,LV,1,264,201912,253838 -CZ,LV,1,265,201912,39401 -CZ,LV,1,266,201912,41658 -CZ,LV,1,267,201912,761 -CZ,LV,1,271,201912,56679 -CZ,LV,1,272,201912,32 -CZ,LV,1,273,201912,24988 -CZ,LV,1,274,201912,1567 -CZ,LV,1,275,201912,41294 -CZ,LV,1,279,201912,105601 -CZ,LV,1,281,201912,1938 -CZ,LV,1,282,201912,25667 -CZ,LV,1,283,201912,100009 -CZ,LV,1,289,201912,17247 -CZ,LV,1,293,201912,265534 -CZ,LV,1,303,201912,698 -CZ,LV,1,310,201912,164323 -CZ,LV,1,321,201912,1028062 -CZ,LV,1,323,201912,18940 -CZ,LV,1,324,201912,18780 -CZ,LV,1,325,201912,2350 -CZ,LV,1,329,201912,8609 -CZ,LV,2,011,201912,7811 -CZ,LV,2,012,201912,2301 -CZ,LV,2,030,201912,5156 -CZ,LV,2,081,201912,111166 -CZ,LV,2,089,201912,29950 -CZ,LV,2,101,201912,53818 -CZ,LV,2,103,201912,18555 -CZ,LV,2,104,201912,1742 -CZ,LV,2,105,201912,13583 -CZ,LV,2,106,201912,67601 -CZ,LV,2,107,201912,5310 -CZ,LV,2,108,201912,244721 -CZ,LV,2,109,201912,143621 -CZ,LV,2,110,201912,538963 -CZ,LV,2,120,201912,421958 -CZ,LV,2,131,201912,594 -CZ,LV,2,132,201912,2096 -CZ,LV,2,139,201912,115298 -CZ,LV,2,141,201912,140328 -CZ,LV,2,143,201912,36387 -CZ,LV,2,151,201912,25929 -CZ,LV,2,152,201912,25885 -CZ,LV,2,162,201912,46917 -CZ,LV,2,171,201912,29402 -CZ,LV,2,172,201912,470766 -CZ,LV,2,192,201912,66699 -CZ,LV,2,201,201912,136460 -CZ,LV,2,202,201912,14466 -CZ,LV,2,203,201912,51795 -CZ,LV,2,204,201912,321260 -CZ,LV,2,205,201912,124645 -CZ,LV,2,206,201912,1506 -CZ,LV,2,212,201912,3331343 -CZ,LV,2,221,201912,220707 -CZ,LV,2,222,201912,336394 -CZ,LV,2,231,201912,337917 -CZ,LV,2,232,201912,14819 -CZ,LV,2,233,201912,38301 -CZ,LV,2,234,201912,6212 -CZ,LV,2,236,201912,26231 -CZ,LV,2,239,201912,61629 -CZ,LV,2,241,201912,85661 -CZ,LV,2,242,201912,13652 -CZ,LV,2,243,201912,70287 -CZ,LV,2,244,201912,19375 -CZ,LV,2,245,201912,519 -CZ,LV,2,251,201912,374262 -CZ,LV,2,252,201912,122363 -CZ,LV,2,254,201912,1294 -CZ,LV,2,257,201912,242241 -CZ,LV,2,259,201912,264757 -CZ,LV,2,261,201912,763378 -CZ,LV,2,262,201912,1378496 -CZ,LV,2,263,201912,4001980 -CZ,LV,2,264,201912,300693 -CZ,LV,2,265,201912,149448 -CZ,LV,2,267,201912,26634 -CZ,LV,2,268,201912,76 -CZ,LV,2,271,201912,480776 -CZ,LV,2,272,201912,280812 -CZ,LV,2,273,201912,150280 -CZ,LV,2,274,201912,125317 -CZ,LV,2,275,201912,344250 -CZ,LV,2,279,201912,177824 -CZ,LV,2,281,201912,539600 -CZ,LV,2,282,201912,558791 -CZ,LV,2,283,201912,59248 -CZ,LV,2,284,201912,95154 -CZ,LV,2,289,201912,36207 -CZ,LV,2,291,201912,8062347 -CZ,LV,2,292,201912,1105 -CZ,LV,2,293,201912,358490 -CZ,LV,2,301,201912,911 -CZ,LV,2,302,201912,91028 -CZ,LV,2,309,201912,194185 -CZ,LV,2,310,201912,84618 -CZ,LV,2,321,201912,532 -CZ,LV,2,322,201912,29 -CZ,LV,2,323,201912,52531 -CZ,LV,2,324,201912,364755 -CZ,LV,2,325,201912,227467 -CZ,LV,2,329,201912,168506 -CZ,LY,2,106,201912,3767 -CZ,LY,2,107,201912,5000 -CZ,LY,2,151,201912,17 -CZ,LY,2,162,201912,313 -CZ,LY,2,172,201912,8 -CZ,LY,2,204,201912,1308 -CZ,LY,2,222,201912,19145 -CZ,LY,2,231,201912,42050 -CZ,LY,2,234,201912,31269 -CZ,LY,2,259,201912,3416 -CZ,LY,2,262,201912,22295 -CZ,LY,2,263,201912,4076 -CZ,LY,2,273,201912,97 -CZ,LY,2,274,201912,49801 -CZ,LY,2,279,201912,349760 -CZ,LY,2,281,201912,10045 -CZ,LY,2,282,201912,17914 -CZ,LY,2,291,201912,81000 -CZ,LY,2,310,201912,2628 -CZ,LY,2,325,201912,170828 -CZ,LY,2,329,201912,210 -CZ,MA,1,102,201912,820331 -CZ,MA,1,103,201912,36760 -CZ,MA,1,104,201912,33998 -CZ,MA,1,139,201912,81537 -CZ,MA,1,152,201912,2519 -CZ,MA,1,204,201912,769062 -CZ,MA,1,222,201912,76985 -CZ,MA,1,231,201912,8995 -CZ,MA,1,259,201912,15238 -CZ,MA,1,262,201912,717 -CZ,MA,1,263,201912,7244 -CZ,MA,1,271,201912,88792 -CZ,MA,1,273,201912,633155 -CZ,MA,1,274,201912,831 -CZ,MA,1,279,201912,140576 -CZ,MA,1,281,201912,1485884 -CZ,MA,1,293,201912,2008671 -CZ,MA,1,329,201912,186 -CZ,MA,2,101,201912,37207 -CZ,MA,2,106,201912,72538 -CZ,MA,2,108,201912,63523 -CZ,MA,2,132,201912,55893 -CZ,MA,2,139,201912,200670 -CZ,MA,2,141,201912,1446 -CZ,MA,2,151,201912,4325 -CZ,MA,2,162,201912,824 -CZ,MA,2,171,201912,27939 -CZ,MA,2,172,201912,31071 -CZ,MA,2,201,201912,117278 -CZ,MA,2,203,201912,5197 -CZ,MA,2,204,201912,27753 -CZ,MA,2,205,201912,39543 -CZ,MA,2,212,201912,4233 -CZ,MA,2,221,201912,903148 -CZ,MA,2,222,201912,2154613 -CZ,MA,2,231,201912,633193 -CZ,MA,2,239,201912,43541 -CZ,MA,2,242,201912,5551 -CZ,MA,2,243,201912,38776 -CZ,MA,2,244,201912,98646 -CZ,MA,2,251,201912,1778 -CZ,MA,2,252,201912,8870 -CZ,MA,2,257,201912,87083 -CZ,MA,2,259,201912,495212 -CZ,MA,2,261,201912,296260 -CZ,MA,2,262,201912,877490 -CZ,MA,2,263,201912,86073 -CZ,MA,2,264,201912,55463 -CZ,MA,2,265,201912,44945 -CZ,MA,2,268,201912,2852 -CZ,MA,2,271,201912,2193292 -CZ,MA,2,272,201912,15180 -CZ,MA,2,273,201912,6356353 -CZ,MA,2,274,201912,10223 -CZ,MA,2,279,201912,1101365 -CZ,MA,2,281,201912,412621 -CZ,MA,2,282,201912,551160 -CZ,MA,2,284,201912,9379 -CZ,MA,2,289,201912,442223 -CZ,MA,2,291,201912,7044226 -CZ,MA,2,293,201912,1026934 -CZ,MA,2,310,201912,27357 -CZ,MA,2,325,201912,88563 -CZ,MA,2,329,201912,33936 -CZ,MD,1,011,201912,263662 -CZ,MD,1,014,201912,44307 -CZ,MD,1,103,201912,90917 -CZ,MD,1,110,201912,985841 -CZ,MD,1,132,201912,105824 -CZ,MD,1,141,201912,1137 -CZ,MD,1,143,201912,6 -CZ,MD,1,162,201912,988 -CZ,MD,1,222,201912,267198 -CZ,MD,1,259,201912,39829 -CZ,MD,1,262,201912,4299 -CZ,MD,1,263,201912,4906 -CZ,MD,1,293,201912,3987109 -CZ,MD,1,310,201912,325772 -CZ,MD,2,011,201912,36515 -CZ,MD,2,103,201912,2191 -CZ,MD,2,106,201912,15003 -CZ,MD,2,108,201912,50702 -CZ,MD,2,109,201912,23839 -CZ,MD,2,110,201912,106141 -CZ,MD,2,139,201912,38590 -CZ,MD,2,141,201912,101680 -CZ,MD,2,143,201912,3124 -CZ,MD,2,151,201912,20783 -CZ,MD,2,152,201912,4054 -CZ,MD,2,162,201912,7419 -CZ,MD,2,171,201912,152421 -CZ,MD,2,172,201912,279817 -CZ,MD,2,192,201912,1339 -CZ,MD,2,201,201912,116246 -CZ,MD,2,203,201912,12291 -CZ,MD,2,204,201912,115418 -CZ,MD,2,205,201912,23307 -CZ,MD,2,212,201912,110076 -CZ,MD,2,221,201912,60249 -CZ,MD,2,222,201912,527544 -CZ,MD,2,231,201912,85226 -CZ,MD,2,234,201912,32034 -CZ,MD,2,236,201912,11496 -CZ,MD,2,239,201912,4514 -CZ,MD,2,242,201912,19 -CZ,MD,2,243,201912,22903 -CZ,MD,2,244,201912,120 -CZ,MD,2,251,201912,938 -CZ,MD,2,252,201912,4627 -CZ,MD,2,257,201912,14360 -CZ,MD,2,259,201912,373639 -CZ,MD,2,261,201912,36173 -CZ,MD,2,262,201912,336099 -CZ,MD,2,263,201912,1452460 -CZ,MD,2,264,201912,132153 -CZ,MD,2,265,201912,47445 -CZ,MD,2,271,201912,47325 -CZ,MD,2,272,201912,1939 -CZ,MD,2,273,201912,1062678 -CZ,MD,2,274,201912,8172 -CZ,MD,2,275,201912,51831 -CZ,MD,2,279,201912,31773 -CZ,MD,2,281,201912,5853 -CZ,MD,2,282,201912,213393 -CZ,MD,2,283,201912,16676 -CZ,MD,2,289,201912,21713 -CZ,MD,2,291,201912,1681394 -CZ,MD,2,293,201912,173075 -CZ,MD,2,310,201912,20146 -CZ,MD,2,323,201912,24836 -CZ,MD,2,324,201912,28785 -CZ,MD,2,325,201912,6496 -CZ,MD,2,329,201912,17535 -CZ,ME,1,243,201912,14853 -CZ,ME,1,251,201912,58942 -CZ,ME,2,106,201912,9103 -CZ,ME,2,110,201912,8092 -CZ,ME,2,139,201912,14 -CZ,ME,2,141,201912,22260 -CZ,ME,2,151,201912,948 -CZ,ME,2,162,201912,219 -CZ,ME,2,172,201912,64428 -CZ,ME,2,204,201912,113464 -CZ,ME,2,205,201912,20891 -CZ,ME,2,221,201912,13 -CZ,ME,2,222,201912,12479 -CZ,ME,2,231,201912,11538 -CZ,ME,2,234,201912,3530 -CZ,ME,2,239,201912,13593 -CZ,ME,2,243,201912,6489 -CZ,ME,2,244,201912,5299 -CZ,ME,2,251,201912,799 -CZ,ME,2,254,201912,350 -CZ,ME,2,257,201912,1084 -CZ,ME,2,259,201912,1184 -CZ,ME,2,261,201912,1047 -CZ,ME,2,262,201912,319083 -CZ,ME,2,263,201912,141201 -CZ,ME,2,264,201912,22920 -CZ,ME,2,265,201912,101 -CZ,ME,2,268,201912,447 -CZ,ME,2,271,201912,1044 -CZ,ME,2,273,201912,192 -CZ,ME,2,275,201912,10846 -CZ,ME,2,279,201912,1473 -CZ,ME,2,281,201912,31 -CZ,ME,2,282,201912,8881 -CZ,ME,2,284,201912,3066 -CZ,ME,2,289,201912,6766 -CZ,ME,2,291,201912,506530 -CZ,ME,2,323,201912,5312 -CZ,ME,2,324,201912,67 -CZ,ME,2,325,201912,13305 -CZ,ME,2,329,201912,9448 -CZ,MG,1,141,201912,2973 -CZ,MG,2,151,201912,400 -CZ,MG,2,262,201912,99849 -CZ,MG,2,275,201912,8340 -CZ,MG,2,289,201912,103773 -CZ,MK,1,107,201912,20390 -CZ,MK,1,110,201912,14972 -CZ,MK,1,139,201912,1284 -CZ,MK,1,141,201912,425426 -CZ,MK,1,152,201912,14217 -CZ,MK,1,172,201912,1663 -CZ,MK,1,222,201912,20198 -CZ,MK,1,241,201912,293703 -CZ,MK,1,242,201912,505685 -CZ,MK,1,257,201912,104778 -CZ,MK,1,259,201912,44679 -CZ,MK,1,261,201912,2080 -CZ,MK,1,262,201912,478 -CZ,MK,1,263,201912,31 -CZ,MK,1,271,201912,309822 -CZ,MK,1,272,201912,100908 -CZ,MK,1,273,201912,42582 -CZ,MK,1,279,201912,562079 -CZ,MK,1,293,201912,16563 -CZ,MK,1,310,201912,827490 -CZ,MK,1,351,201912,235081 -CZ,MK,2,105,201912,86111 -CZ,MK,2,106,201912,56762 -CZ,MK,2,108,201912,148399 -CZ,MK,2,110,201912,51841 -CZ,MK,2,131,201912,5183 -CZ,MK,2,132,201912,103023 -CZ,MK,2,139,201912,1403767 -CZ,MK,2,141,201912,21282 -CZ,MK,2,143,201912,1553 -CZ,MK,2,151,201912,21778 -CZ,MK,2,152,201912,1981 -CZ,MK,2,162,201912,14584 -CZ,MK,2,171,201912,30585 -CZ,MK,2,172,201912,57612 -CZ,MK,2,192,201912,762262 -CZ,MK,2,201,201912,50766 -CZ,MK,2,204,201912,214168 -CZ,MK,2,205,201912,146916 -CZ,MK,2,212,201912,6177 -CZ,MK,2,221,201912,6887 -CZ,MK,2,222,201912,93442 -CZ,MK,2,231,201912,260858 -CZ,MK,2,232,201912,4320 -CZ,MK,2,234,201912,420 -CZ,MK,2,239,201912,12008 -CZ,MK,2,241,201912,25411 -CZ,MK,2,242,201912,168 -CZ,MK,2,243,201912,28482 -CZ,MK,2,244,201912,36748 -CZ,MK,2,251,201912,17520 -CZ,MK,2,252,201912,13112 -CZ,MK,2,257,201912,73497 -CZ,MK,2,259,201912,29526 -CZ,MK,2,262,201912,299911 -CZ,MK,2,263,201912,1111417 -CZ,MK,2,264,201912,23595 -CZ,MK,2,265,201912,18343 -CZ,MK,2,268,201912,1650 -CZ,MK,2,271,201912,99652 -CZ,MK,2,272,201912,2034 -CZ,MK,2,273,201912,52952 -CZ,MK,2,274,201912,706 -CZ,MK,2,275,201912,37910 -CZ,MK,2,279,201912,75895 -CZ,MK,2,281,201912,291350 -CZ,MK,2,282,201912,56613 -CZ,MK,2,283,201912,18 -CZ,MK,2,284,201912,10227 -CZ,MK,2,289,201912,5008 -CZ,MK,2,291,201912,2696804 -CZ,MK,2,293,201912,3821 -CZ,MK,2,302,201912,65134 -CZ,MK,2,303,201912,7164 -CZ,MK,2,309,201912,499 -CZ,MK,2,310,201912,1734754 -CZ,MK,2,321,201912,10592 -CZ,MK,2,324,201912,7355 -CZ,MK,2,325,201912,16916 -CZ,MK,2,329,201912,71391 -CZ,MK,2,351,201912,379406 -CZ,ML,2,132,201912,703757 -CZ,ML,2,141,201912,53599 -CZ,ML,2,172,201912,54253 -CZ,ML,2,222,201912,225 -CZ,MM,1,106,201912,647175 -CZ,MM,1,141,201912,237234 -CZ,MM,1,143,201912,2739 -CZ,MM,2,108,201912,108806 -CZ,MM,2,231,201912,68850 -CZ,MM,2,263,201912,8676 -CZ,MM,2,265,201912,329 -CZ,MM,2,273,201912,851 -CZ,MM,2,279,201912,139 -CZ,MM,2,281,201912,88966 -CZ,MM,2,282,201912,1747 -CZ,MM,2,289,201912,808539 -CZ,MN,2,011,201912,1846 -CZ,MN,2,106,201912,20100 -CZ,MN,2,108,201912,32604 -CZ,MN,2,139,201912,5904 -CZ,MN,2,152,201912,38 -CZ,MN,2,172,201912,122474 -CZ,MN,2,201,201912,1375 -CZ,MN,2,204,201912,351547 -CZ,MN,2,205,201912,229455 -CZ,MN,2,221,201912,4302 -CZ,MN,2,222,201912,13702 -CZ,MN,2,231,201912,30894 -CZ,MN,2,244,201912,2538 -CZ,MN,2,254,201912,12338 -CZ,MN,2,257,201912,52080 -CZ,MN,2,259,201912,955 -CZ,MN,2,263,201912,1488 -CZ,MN,2,264,201912,1140 -CZ,MN,2,271,201912,4310 -CZ,MN,2,273,201912,9103 -CZ,MN,2,274,201912,955 -CZ,MN,2,275,201912,15464 -CZ,MN,2,279,201912,166 -CZ,MN,2,281,201912,55 -CZ,MN,2,282,201912,47986 -CZ,MN,2,289,201912,2727508 -CZ,MN,2,291,201912,17453 -CZ,MN,2,292,201912,13562 -CZ,MN,2,309,201912,180 -CZ,MN,2,329,201912,6624 -CZ,MO,1,141,201912,359 -CZ,MO,2,139,201912,1447 -CZ,MO,2,273,201912,686 -CZ,MO,2,274,201912,410417 -CZ,MO,2,279,201912,801 -CZ,MO,2,282,201912,538 -CZ,MO,2,310,201912,250 -CZ,MT,1,139,201912,18 -CZ,MT,1,141,201912,18233 -CZ,MT,1,172,201912,168851 -CZ,MT,1,201,201912,35491 -CZ,MT,1,204,201912,632310 -CZ,MT,1,212,201912,1139057 -CZ,MT,1,221,201912,1649 -CZ,MT,1,222,201912,19417 -CZ,MT,1,231,201912,16168 -CZ,MT,1,233,201912,1320 -CZ,MT,1,265,201912,21519 -CZ,MT,1,271,201912,9147 -CZ,MT,1,273,201912,1822 -CZ,MT,1,274,201912,26622 -CZ,MT,1,281,201912,35996 -CZ,MT,1,289,201912,859 -CZ,MT,1,293,201912,4275 -CZ,MT,1,309,201912,5131 -CZ,MT,1,329,201912,2739 -CZ,MT,2,030,201912,3109 -CZ,MT,2,101,201912,6231 -CZ,MT,2,103,201912,6947 -CZ,MT,2,107,201912,17184 -CZ,MT,2,108,201912,17461 -CZ,MT,2,109,201912,53538 -CZ,MT,2,120,201912,240190 -CZ,MT,2,139,201912,607 -CZ,MT,2,141,201912,35321 -CZ,MT,2,143,201912,9827 -CZ,MT,2,151,201912,3592 -CZ,MT,2,152,201912,881 -CZ,MT,2,162,201912,20544 -CZ,MT,2,171,201912,18891 -CZ,MT,2,172,201912,7558 -CZ,MT,2,201,201912,22401 -CZ,MT,2,203,201912,18208 -CZ,MT,2,204,201912,2295 -CZ,MT,2,205,201912,5089 -CZ,MT,2,212,201912,28584 -CZ,MT,2,221,201912,31654 -CZ,MT,2,222,201912,23162 -CZ,MT,2,231,201912,6787 -CZ,MT,2,234,201912,8322 -CZ,MT,2,239,201912,80 -CZ,MT,2,251,201912,11297 -CZ,MT,2,252,201912,6032 -CZ,MT,2,257,201912,5225 -CZ,MT,2,259,201912,11915 -CZ,MT,2,261,201912,324141 -CZ,MT,2,262,201912,82213 -CZ,MT,2,263,201912,57522 -CZ,MT,2,264,201912,1298 -CZ,MT,2,265,201912,4440 -CZ,MT,2,267,201912,2547 -CZ,MT,2,268,201912,17 -CZ,MT,2,271,201912,14941 -CZ,MT,2,272,201912,18913 -CZ,MT,2,273,201912,2000 -CZ,MT,2,274,201912,1356 -CZ,MT,2,275,201912,3723 -CZ,MT,2,279,201912,19944 -CZ,MT,2,281,201912,55025 -CZ,MT,2,282,201912,80235 -CZ,MT,2,289,201912,17931 -CZ,MT,2,291,201912,63251 -CZ,MT,2,293,201912,2496 -CZ,MT,2,301,201912,36 -CZ,MT,2,310,201912,4521 -CZ,MT,2,321,201912,239 -CZ,MT,2,322,201912,17 -CZ,MT,2,323,201912,12317 -CZ,MT,2,324,201912,102523 -CZ,MT,2,325,201912,48503 -CZ,MT,2,329,201912,15270 -CZ,MU,1,108,201912,103408 -CZ,MU,1,141,201912,247293 -CZ,MU,2,141,201912,8 -CZ,MU,2,151,201912,2039 -CZ,MU,2,172,201912,9264 -CZ,MU,2,221,201912,112 -CZ,MU,2,222,201912,2984 -CZ,MU,2,257,201912,2122 -CZ,MU,2,259,201912,178 -CZ,MU,2,262,201912,213622 -CZ,MU,2,263,201912,50451 -CZ,MU,2,264,201912,71410 -CZ,MU,2,265,201912,569 -CZ,MU,2,271,201912,13331 -CZ,MU,2,273,201912,898 -CZ,MU,2,279,201912,24474 -CZ,MU,2,289,201912,101758 -CZ,MU,2,293,201912,992 -CZ,MU,2,329,201912,90 -CZ,MV,2,104,201912,4307 -CZ,MV,2,139,201912,18753 -CZ,MV,2,141,201912,2118 -CZ,MV,2,152,201912,737 -CZ,MV,2,204,201912,7722 -CZ,MV,2,205,201912,601 -CZ,MV,2,221,201912,1205 -CZ,MV,2,222,201912,32887 -CZ,MV,2,231,201912,4546 -CZ,MV,2,234,201912,12440 -CZ,MV,2,244,201912,278 -CZ,MV,2,254,201912,2518 -CZ,MV,2,257,201912,5546 -CZ,MV,2,259,201912,3307 -CZ,MV,2,262,201912,100905 -CZ,MV,2,263,201912,62699 -CZ,MV,2,264,201912,177075 -CZ,MV,2,267,201912,123395 -CZ,MV,2,271,201912,1276 -CZ,MV,2,274,201912,550776 -CZ,MV,2,275,201912,521 -CZ,MV,2,279,201912,160892 -CZ,MV,2,282,201912,9287 -CZ,MV,2,289,201912,10708 -CZ,MV,2,310,201912,34591 -CZ,MV,2,322,201912,10714 -CZ,MV,2,323,201912,2042 -CZ,MV,2,329,201912,25455 -CZ,MX,1,012,201912,16400 -CZ,MX,1,103,201912,64736 -CZ,MX,1,106,201912,33059 -CZ,MX,1,108,201912,510846 -CZ,MX,1,110,201912,90186 -CZ,MX,1,139,201912,10406 -CZ,MX,1,141,201912,1367 -CZ,MX,1,143,201912,277 -CZ,MX,1,151,201912,3921 -CZ,MX,1,172,201912,10330 -CZ,MX,1,203,201912,4787 -CZ,MX,1,204,201912,14209 -CZ,MX,1,205,201912,13394 -CZ,MX,1,206,201912,771531 -CZ,MX,1,221,201912,105801 -CZ,MX,1,222,201912,268514 -CZ,MX,1,231,201912,268406 -CZ,MX,1,234,201912,9156 -CZ,MX,1,239,201912,29462 -CZ,MX,1,244,201912,454834 -CZ,MX,1,257,201912,129187 -CZ,MX,1,259,201912,205841 -CZ,MX,1,261,201912,5340345 -CZ,MX,1,262,201912,3797449 -CZ,MX,1,263,201912,9377327 -CZ,MX,1,264,201912,2472017 -CZ,MX,1,265,201912,246266 -CZ,MX,1,267,201912,93607 -CZ,MX,1,268,201912,37114 -CZ,MX,1,271,201912,1423422 -CZ,MX,1,272,201912,6639 -CZ,MX,1,273,201912,897491 -CZ,MX,1,274,201912,34667 -CZ,MX,1,279,201912,384973 -CZ,MX,1,281,201912,109943 -CZ,MX,1,282,201912,467605 -CZ,MX,1,289,201912,501845 -CZ,MX,1,293,201912,570589 -CZ,MX,1,303,201912,2531 -CZ,MX,1,310,201912,85725 -CZ,MX,1,321,201912,28 -CZ,MX,1,323,201912,13753 -CZ,MX,1,324,201912,587414 -CZ,MX,1,325,201912,399964 -CZ,MX,1,329,201912,264 -CZ,MX,2,089,201912,8010 -CZ,MX,2,131,201912,90758 -CZ,MX,2,132,201912,43131 -CZ,MX,2,139,201912,191159 -CZ,MX,2,141,201912,170668 -CZ,MX,2,143,201912,36970 -CZ,MX,2,151,201912,24956 -CZ,MX,2,162,201912,1262 -CZ,MX,2,171,201912,55978 -CZ,MX,2,172,201912,751320 -CZ,MX,2,201,201912,985161 -CZ,MX,2,203,201912,3843 -CZ,MX,2,204,201912,12231 -CZ,MX,2,205,201912,312762 -CZ,MX,2,206,201912,83778 -CZ,MX,2,211,201912,56569 -CZ,MX,2,221,201912,2425029 -CZ,MX,2,222,201912,1748879 -CZ,MX,2,231,201912,668435 -CZ,MX,2,232,201912,260507 -CZ,MX,2,234,201912,34743 -CZ,MX,2,236,201912,16029 -CZ,MX,2,239,201912,13716 -CZ,MX,2,241,201912,738565 -CZ,MX,2,242,201912,135160 -CZ,MX,2,243,201912,16781 -CZ,MX,2,244,201912,656676 -CZ,MX,2,253,201912,665 -CZ,MX,2,254,201912,87551 -CZ,MX,2,257,201912,3356261 -CZ,MX,2,259,201912,1299949 -CZ,MX,2,261,201912,1036151 -CZ,MX,2,262,201912,529787 -CZ,MX,2,263,201912,54146800 -CZ,MX,2,264,201912,11824 -CZ,MX,2,265,201912,732767 -CZ,MX,2,267,201912,13940 -CZ,MX,2,271,201912,1366437 -CZ,MX,2,272,201912,23939 -CZ,MX,2,273,201912,2203189 -CZ,MX,2,274,201912,258125 -CZ,MX,2,275,201912,620 -CZ,MX,2,279,201912,1985261 -CZ,MX,2,281,201912,4564079 -CZ,MX,2,282,201912,2561042 -CZ,MX,2,284,201912,591124 -CZ,MX,2,289,201912,2296113 -CZ,MX,2,291,201912,6461975 -CZ,MX,2,293,201912,5118105 -CZ,MX,2,309,201912,1567 -CZ,MX,2,310,201912,468152 -CZ,MX,2,321,201912,97 -CZ,MX,2,324,201912,569924 -CZ,MX,2,325,201912,284807 -CZ,MX,2,329,201912,29726 -CZ,MY,1,012,201912,1849234 -CZ,MY,1,013,201912,892 -CZ,MY,1,030,201912,5755 -CZ,MY,1,104,201912,15260 -CZ,MY,1,108,201912,58527 -CZ,MY,1,139,201912,1707 -CZ,MY,1,141,201912,87399 -CZ,MY,1,152,201912,14172 -CZ,MY,1,162,201912,99103 -CZ,MY,1,172,201912,606 -CZ,MY,1,201,201912,290692 -CZ,MY,1,204,201912,22856 -CZ,MY,1,205,201912,51208 -CZ,MY,1,206,201912,76730 -CZ,MY,1,221,201912,1352134 -CZ,MY,1,222,201912,350682 -CZ,MY,1,231,201912,11230 -CZ,MY,1,243,201912,302292 -CZ,MY,1,244,201912,400092 -CZ,MY,1,245,201912,71031 -CZ,MY,1,257,201912,123012 -CZ,MY,1,259,201912,294945 -CZ,MY,1,261,201912,48488696 -CZ,MY,1,262,201912,25398307 -CZ,MY,1,263,201912,14682100 -CZ,MY,1,264,201912,79838 -CZ,MY,1,265,201912,74654 -CZ,MY,1,266,201912,35673 -CZ,MY,1,267,201912,2720 -CZ,MY,1,271,201912,330623 -CZ,MY,1,272,201912,266313 -CZ,MY,1,273,201912,164214 -CZ,MY,1,274,201912,824 -CZ,MY,1,275,201912,16854 -CZ,MY,1,279,201912,2318097 -CZ,MY,1,281,201912,136184 -CZ,MY,1,282,201912,154712 -CZ,MY,1,289,201912,1061 -CZ,MY,1,293,201912,604384 -CZ,MY,1,310,201912,95664 -CZ,MY,1,322,201912,350 -CZ,MY,1,323,201912,28638 -CZ,MY,1,324,201912,809053 -CZ,MY,1,325,201912,50200 -CZ,MY,1,329,201912,73219 -CZ,MY,2,081,201912,10641 -CZ,MY,2,105,201912,398851 -CZ,MY,2,108,201912,35517 -CZ,MY,2,109,201912,113677 -CZ,MY,2,139,201912,44490 -CZ,MY,2,141,201912,69 -CZ,MY,2,151,201912,454 -CZ,MY,2,161,201912,41733 -CZ,MY,2,162,201912,1051287 -CZ,MY,2,171,201912,146814 -CZ,MY,2,172,201912,8239 -CZ,MY,2,201,201912,416082 -CZ,MY,2,203,201912,3193 -CZ,MY,2,204,201912,77213 -CZ,MY,2,205,201912,2578317 -CZ,MY,2,212,201912,34783 -CZ,MY,2,221,201912,109077 -CZ,MY,2,222,201912,139881 -CZ,MY,2,231,201912,62403 -CZ,MY,2,239,201912,9261 -CZ,MY,2,254,201912,2177339 -CZ,MY,2,257,201912,38436 -CZ,MY,2,259,201912,136992 -CZ,MY,2,261,201912,1893464 -CZ,MY,2,262,201912,190889 -CZ,MY,2,263,201912,32987 -CZ,MY,2,264,201912,2881 -CZ,MY,2,265,201912,166463 -CZ,MY,2,271,201912,298975 -CZ,MY,2,272,201912,48605 -CZ,MY,2,273,201912,173473 -CZ,MY,2,274,201912,110950 -CZ,MY,2,275,201912,117 -CZ,MY,2,279,201912,419916 -CZ,MY,2,281,201912,356986 -CZ,MY,2,282,201912,114507 -CZ,MY,2,289,201912,2289913 -CZ,MY,2,293,201912,317653 -CZ,MY,2,303,201912,6354 -CZ,MY,2,310,201912,3270 -CZ,MY,2,323,201912,22581 -CZ,MY,2,324,201912,182692 -CZ,MY,2,325,201912,277 -CZ,MY,2,329,201912,2283 -CZ,NC,2,263,201912,9644 -CZ,NG,1,012,201912,25011 -CZ,NG,2,132,201912,9654 -CZ,NG,2,141,201912,128174 -CZ,NG,2,151,201912,14257 -CZ,NG,2,162,201912,338 -CZ,NG,2,201,201912,88706 -CZ,NG,2,205,201912,12741 -CZ,NG,2,211,201912,846 -CZ,NG,2,212,201912,1 -CZ,NG,2,221,201912,2035 -CZ,NG,2,222,201912,26204 -CZ,NG,2,231,201912,683 -CZ,NG,2,234,201912,10548 -CZ,NG,2,242,201912,4220 -CZ,NG,2,243,201912,9828 -CZ,NG,2,244,201912,64 -CZ,NG,2,251,201912,3316 -CZ,NG,2,257,201912,770490 -CZ,NG,2,259,201912,113305 -CZ,NG,2,262,201912,455307 -CZ,NG,2,263,201912,74301 -CZ,NG,2,264,201912,3808 -CZ,NG,2,265,201912,6390220 -CZ,NG,2,268,201912,186 -CZ,NG,2,271,201912,23785 -CZ,NG,2,273,201912,3908 -CZ,NG,2,274,201912,1690 -CZ,NG,2,275,201912,7902 -CZ,NG,2,279,201912,9886 -CZ,NG,2,281,201912,10275377 -CZ,NG,2,282,201912,52508 -CZ,NG,2,289,201912,442933 -CZ,NG,2,291,201912,30307 -CZ,NG,2,292,201912,11895 -CZ,NG,2,293,201912,31 -CZ,NG,2,310,201912,31515 -CZ,NI,1,120,201912,27976 -CZ,NI,1,310,201912,9 -CZ,NI,2,222,201912,7344 -CZ,NL,1,011,201912,13122166 -CZ,NL,1,012,201912,9157616 -CZ,NL,1,013,201912,3656067 -CZ,NL,1,014,201912,255926 -CZ,NL,1,021,201912,25718 -CZ,NL,1,023,201912,907981 -CZ,NL,1,030,201912,157531 -CZ,NL,1,071,201912,71156 -CZ,NL,1,072,201912,8675 -CZ,NL,1,081,201912,102454 -CZ,NL,1,089,201912,512521 -CZ,NL,1,101,201912,14208110 -CZ,NL,1,102,201912,1669761 -CZ,NL,1,103,201912,3702652 -CZ,NL,1,104,201912,4392798 -CZ,NL,1,105,201912,2538480 -CZ,NL,1,106,201912,829232 -CZ,NL,1,107,201912,639364 -CZ,NL,1,108,201912,9321656 -CZ,NL,1,109,201912,5049461 -CZ,NL,1,110,201912,3301425 -CZ,NL,1,120,201912,575866 -CZ,NL,1,131,201912,11003 -CZ,NL,1,132,201912,523444 -CZ,NL,1,139,201912,5682140 -CZ,NL,1,141,201912,17785389 -CZ,NL,1,142,201912,1813 -CZ,NL,1,143,201912,4660160 -CZ,NL,1,151,201912,3421894 -CZ,NL,1,152,201912,4003415 -CZ,NL,1,161,201912,406840 -CZ,NL,1,162,201912,525817 -CZ,NL,1,171,201912,3712975 -CZ,NL,1,172,201912,2317150 -CZ,NL,1,192,201912,20371257 -CZ,NL,1,201,201912,37446250 -CZ,NL,1,202,201912,266473 -CZ,NL,1,203,201912,1964600 -CZ,NL,1,204,201912,9386322 -CZ,NL,1,205,201912,30684656 -CZ,NL,1,206,201912,1789512 -CZ,NL,1,211,201912,814762 -CZ,NL,1,212,201912,55525643 -CZ,NL,1,221,201912,3286457 -CZ,NL,1,222,201912,13308914 -CZ,NL,1,231,201912,485824 -CZ,NL,1,232,201912,215560 -CZ,NL,1,233,201912,14435 -CZ,NL,1,234,201912,285681 -CZ,NL,1,236,201912,11952 -CZ,NL,1,237,201912,11825 -CZ,NL,1,239,201912,595166 -CZ,NL,1,241,201912,8270143 -CZ,NL,1,242,201912,568282 -CZ,NL,1,243,201912,1156131 -CZ,NL,1,244,201912,13993938 -CZ,NL,1,245,201912,139596 -CZ,NL,1,251,201912,1123862 -CZ,NL,1,252,201912,501855 -CZ,NL,1,254,201912,769176 -CZ,NL,1,257,201912,3945332 -CZ,NL,1,259,201912,6261818 -CZ,NL,1,261,201912,108287197 -CZ,NL,1,262,201912,127831269 -CZ,NL,1,263,201912,133816156 -CZ,NL,1,264,201912,16895598 -CZ,NL,1,265,201912,11527955 -CZ,NL,1,266,201912,4789746 -CZ,NL,1,267,201912,1988974 -CZ,NL,1,268,201912,298472 -CZ,NL,1,271,201912,3890028 -CZ,NL,1,272,201912,1895012 -CZ,NL,1,273,201912,3297857 -CZ,NL,1,274,201912,1016744 -CZ,NL,1,275,201912,2904629 -CZ,NL,1,279,201912,18195760 -CZ,NL,1,281,201912,25115053 -CZ,NL,1,282,201912,19038822 -CZ,NL,1,283,201912,1697734 -CZ,NL,1,284,201912,1190600 -CZ,NL,1,289,201912,10459281 -CZ,NL,1,291,201912,11123145 -CZ,NL,1,292,201912,2270331 -CZ,NL,1,293,201912,2997435 -CZ,NL,1,301,201912,6157 -CZ,NL,1,302,201912,200524 -CZ,NL,1,303,201912,20035 -CZ,NL,1,309,201912,2406555 -CZ,NL,1,310,201912,2090264 -CZ,NL,1,321,201912,386660 -CZ,NL,1,322,201912,159831 -CZ,NL,1,323,201912,913979 -CZ,NL,1,324,201912,6154637 -CZ,NL,1,325,201912,18757267 -CZ,NL,1,329,201912,1685395 -CZ,NL,2,011,201912,1347921 -CZ,NL,2,012,201912,200909 -CZ,NL,2,013,201912,25422 -CZ,NL,2,014,201912,264513 -CZ,NL,2,023,201912,120 -CZ,NL,2,030,201912,22790 -CZ,NL,2,081,201912,97318 -CZ,NL,2,089,201912,6062 -CZ,NL,2,101,201912,1107663 -CZ,NL,2,102,201912,23 -CZ,NL,2,103,201912,39861 -CZ,NL,2,104,201912,978639 -CZ,NL,2,105,201912,298893 -CZ,NL,2,106,201912,167251 -CZ,NL,2,107,201912,512467 -CZ,NL,2,108,201912,4338581 -CZ,NL,2,109,201912,2904423 -CZ,NL,2,110,201912,209991 -CZ,NL,2,120,201912,1503570 -CZ,NL,2,131,201912,834450 -CZ,NL,2,132,201912,1372525 -CZ,NL,2,139,201912,4128894 -CZ,NL,2,141,201912,3571321 -CZ,NL,2,142,201912,900 -CZ,NL,2,143,201912,1063692 -CZ,NL,2,151,201912,624998 -CZ,NL,2,152,201912,1658087 -CZ,NL,2,161,201912,181521 -CZ,NL,2,162,201912,2388390 -CZ,NL,2,171,201912,2494664 -CZ,NL,2,172,201912,4371414 -CZ,NL,2,181,201912,161 -CZ,NL,2,192,201912,1402378 -CZ,NL,2,201,201912,4054834 -CZ,NL,2,202,201912,82658 -CZ,NL,2,203,201912,138902 -CZ,NL,2,204,201912,2809034 -CZ,NL,2,205,201912,5444983 -CZ,NL,2,206,201912,317300 -CZ,NL,2,211,201912,150001 -CZ,NL,2,212,201912,8212103 -CZ,NL,2,221,201912,4984035 -CZ,NL,2,222,201912,7590423 -CZ,NL,2,231,201912,1621090 -CZ,NL,2,232,201912,13383 -CZ,NL,2,233,201912,261547 -CZ,NL,2,234,201912,274318 -CZ,NL,2,236,201912,230902 -CZ,NL,2,239,201912,1150478 -CZ,NL,2,241,201912,5845453 -CZ,NL,2,242,201912,1414453 -CZ,NL,2,243,201912,679124 -CZ,NL,2,244,201912,374923 -CZ,NL,2,245,201912,38091 -CZ,NL,2,251,201912,4332119 -CZ,NL,2,252,201912,1817998 -CZ,NL,2,253,201912,6433 -CZ,NL,2,254,201912,68703 -CZ,NL,2,257,201912,4307806 -CZ,NL,2,259,201912,10815508 -CZ,NL,2,261,201912,23810332 -CZ,NL,2,262,201912,122637527 -CZ,NL,2,263,201912,73620717 -CZ,NL,2,264,201912,7899899 -CZ,NL,2,265,201912,36588363 -CZ,NL,2,266,201912,2054111 -CZ,NL,2,267,201912,81586 -CZ,NL,2,268,201912,2297398 -CZ,NL,2,271,201912,8929026 -CZ,NL,2,272,201912,617242 -CZ,NL,2,273,201912,3995783 -CZ,NL,2,274,201912,2321213 -CZ,NL,2,275,201912,1557140 -CZ,NL,2,279,201912,9033253 -CZ,NL,2,281,201912,5841983 -CZ,NL,2,282,201912,14759343 -CZ,NL,2,283,201912,423753 -CZ,NL,2,284,201912,2094521 -CZ,NL,2,289,201912,17324648 -CZ,NL,2,291,201912,19302755 -CZ,NL,2,292,201912,1311705 -CZ,NL,2,293,201912,11291531 -CZ,NL,2,301,201912,2284278 -CZ,NL,2,302,201912,1015084 -CZ,NL,2,303,201912,73585 -CZ,NL,2,309,201912,4127543 -CZ,NL,2,310,201912,1966683 -CZ,NL,2,321,201912,115795 -CZ,NL,2,322,201912,71731 -CZ,NL,2,323,201912,638135 -CZ,NL,2,324,201912,6811947 -CZ,NL,2,325,201912,4520730 -CZ,NL,2,329,201912,749561 -CZ,NO,1,011,201912,3871 -CZ,NO,1,012,201912,1509 -CZ,NO,1,103,201912,8151 -CZ,NO,1,104,201912,64881 -CZ,NO,1,106,201912,200846 -CZ,NO,1,108,201912,353263 -CZ,NO,1,110,201912,126 -CZ,NO,1,139,201912,185 -CZ,NO,1,141,201912,16763 -CZ,NO,1,143,201912,7235 -CZ,NO,1,151,201912,12860 -CZ,NO,1,152,201912,63 -CZ,NO,1,162,201912,4603 -CZ,NO,1,171,201912,48762 -CZ,NO,1,172,201912,10022 -CZ,NO,1,192,201912,6100 -CZ,NO,1,201,201912,100400 -CZ,NO,1,204,201912,48611 -CZ,NO,1,205,201912,16135 -CZ,NO,1,212,201912,5115 -CZ,NO,1,221,201912,35454 -CZ,NO,1,222,201912,42657 -CZ,NO,1,231,201912,5306 -CZ,NO,1,232,201912,75 -CZ,NO,1,234,201912,77 -CZ,NO,1,239,201912,1619 -CZ,NO,1,241,201912,1726 -CZ,NO,1,242,201912,43 -CZ,NO,1,243,201912,2401 -CZ,NO,1,244,201912,91333 -CZ,NO,1,257,201912,202272 -CZ,NO,1,259,201912,145890 -CZ,NO,1,261,201912,5136 -CZ,NO,1,262,201912,126059 -CZ,NO,1,263,201912,601476 -CZ,NO,1,264,201912,34116 -CZ,NO,1,265,201912,81568 -CZ,NO,1,266,201912,201390 -CZ,NO,1,267,201912,17585 -CZ,NO,1,268,201912,457 -CZ,NO,1,271,201912,143352 -CZ,NO,1,272,201912,6063 -CZ,NO,1,273,201912,13885 -CZ,NO,1,274,201912,18312 -CZ,NO,1,275,201912,272116 -CZ,NO,1,279,201912,383065 -CZ,NO,1,281,201912,26363 -CZ,NO,1,282,201912,38728 -CZ,NO,1,289,201912,54114 -CZ,NO,1,293,201912,293735 -CZ,NO,1,310,201912,7553 -CZ,NO,1,323,201912,17717 -CZ,NO,1,324,201912,183 -CZ,NO,1,325,201912,3788 -CZ,NO,1,329,201912,5074 -CZ,NO,2,011,201912,1656 -CZ,NO,2,012,201912,95075 -CZ,NO,2,081,201912,670 -CZ,NO,2,103,201912,46051 -CZ,NO,2,106,201912,123696 -CZ,NO,2,107,201912,108198 -CZ,NO,2,108,201912,1283246 -CZ,NO,2,110,201912,61594 -CZ,NO,2,131,201912,142248 -CZ,NO,2,132,201912,45090 -CZ,NO,2,139,201912,290932 -CZ,NO,2,141,201912,450918 -CZ,NO,2,143,201912,27419 -CZ,NO,2,151,201912,38129 -CZ,NO,2,152,201912,115653 -CZ,NO,2,161,201912,2599 -CZ,NO,2,162,201912,440553 -CZ,NO,2,171,201912,70895 -CZ,NO,2,172,201912,1325754 -CZ,NO,2,192,201912,6609 -CZ,NO,2,201,201912,107042 -CZ,NO,2,202,201912,1263 -CZ,NO,2,203,201912,7817 -CZ,NO,2,204,201912,84863 -CZ,NO,2,205,201912,256268 -CZ,NO,2,206,201912,33734 -CZ,NO,2,211,201912,2781 -CZ,NO,2,212,201912,108259 -CZ,NO,2,221,201912,603390 -CZ,NO,2,222,201912,542155 -CZ,NO,2,231,201912,216969 -CZ,NO,2,232,201912,226170 -CZ,NO,2,233,201912,127943 -CZ,NO,2,234,201912,225993 -CZ,NO,2,236,201912,31564 -CZ,NO,2,237,201912,15528 -CZ,NO,2,239,201912,100272 -CZ,NO,2,241,201912,220534 -CZ,NO,2,242,201912,382082 -CZ,NO,2,243,201912,519466 -CZ,NO,2,244,201912,215715 -CZ,NO,2,245,201912,54701 -CZ,NO,2,251,201912,987355 -CZ,NO,2,252,201912,108068 -CZ,NO,2,254,201912,37206 -CZ,NO,2,257,201912,135459 -CZ,NO,2,259,201912,976936 -CZ,NO,2,261,201912,1533733 -CZ,NO,2,262,201912,8594482 -CZ,NO,2,263,201912,2309443 -CZ,NO,2,264,201912,53569 -CZ,NO,2,265,201912,96631 -CZ,NO,2,266,201912,39784 -CZ,NO,2,267,201912,30188 -CZ,NO,2,268,201912,24846 -CZ,NO,2,271,201912,626809 -CZ,NO,2,272,201912,13858 -CZ,NO,2,273,201912,175791 -CZ,NO,2,274,201912,316263 -CZ,NO,2,275,201912,278344 -CZ,NO,2,279,201912,305174 -CZ,NO,2,281,201912,791344 -CZ,NO,2,282,201912,2590364 -CZ,NO,2,283,201912,12789 -CZ,NO,2,284,201912,133929 -CZ,NO,2,289,201912,1625638 -CZ,NO,2,291,201912,9124611 -CZ,NO,2,292,201912,1197823 -CZ,NO,2,293,201912,474366 -CZ,NO,2,301,201912,20621 -CZ,NO,2,302,201912,75217 -CZ,NO,2,309,201912,30486 -CZ,NO,2,310,201912,509016 -CZ,NO,2,321,201912,548 -CZ,NO,2,322,201912,18249 -CZ,NO,2,323,201912,331332 -CZ,NO,2,324,201912,2645828 -CZ,NO,2,325,201912,116785 -CZ,NO,2,329,201912,101923 -CZ,NP,1,012,201912,1818 -CZ,NP,1,108,201912,1718 -CZ,NP,1,139,201912,894 -CZ,NP,1,141,201912,38133 -CZ,NP,1,143,201912,12049 -CZ,NP,1,151,201912,320 -CZ,NP,1,162,201912,572 -CZ,NP,1,204,201912,2339 -CZ,NP,1,259,201912,1106 -CZ,NP,1,321,201912,207 -CZ,NP,1,322,201912,199 -CZ,NP,2,139,201912,89 -CZ,NP,2,141,201912,6 -CZ,NP,2,162,201912,481 -CZ,NP,2,172,201912,156 -CZ,NP,2,204,201912,14956 -CZ,NP,2,205,201912,28323 -CZ,NP,2,221,201912,1755 -CZ,NP,2,222,201912,6077 -CZ,NP,2,231,201912,4178 -CZ,NP,2,257,201912,232 -CZ,NP,2,259,201912,1469 -CZ,NP,2,265,201912,14603 -CZ,NP,2,271,201912,156322 -CZ,NP,2,273,201912,570 -CZ,NP,2,274,201912,5434 -CZ,NP,2,281,201912,7359 -CZ,NP,2,282,201912,3193 -CZ,NP,2,289,201912,8509 -CZ,NP,2,293,201912,2980 -CZ,NP,2,303,201912,47754 -CZ,NP,2,321,201912,12 -CZ,NP,2,329,201912,74 -CZ,NZ,1,014,201912,2258530 -CZ,NZ,1,101,201912,488912 -CZ,NZ,1,108,201912,105 -CZ,NZ,1,110,201912,90985 -CZ,NZ,1,131,201912,45 -CZ,NZ,1,139,201912,634 -CZ,NZ,1,141,201912,514 -CZ,NZ,1,143,201912,90 -CZ,NZ,1,151,201912,242 -CZ,NZ,1,162,201912,60 -CZ,NZ,1,172,201912,143 -CZ,NZ,1,201,201912,687 -CZ,NZ,1,204,201912,447 -CZ,NZ,1,221,201912,9055 -CZ,NZ,1,222,201912,39308 -CZ,NZ,1,257,201912,5323 -CZ,NZ,1,259,201912,2990 -CZ,NZ,1,262,201912,725 -CZ,NZ,1,263,201912,18027 -CZ,NZ,1,265,201912,750 -CZ,NZ,1,267,201912,194 -CZ,NZ,1,271,201912,2248 -CZ,NZ,1,279,201912,1273 -CZ,NZ,1,281,201912,48242 -CZ,NZ,1,282,201912,127 -CZ,NZ,1,283,201912,186373 -CZ,NZ,1,289,201912,7036 -CZ,NZ,1,293,201912,1902 -CZ,NZ,1,321,201912,516 -CZ,NZ,1,323,201912,1003 -CZ,NZ,1,329,201912,459 -CZ,NZ,2,108,201912,69952 -CZ,NZ,2,139,201912,16281 -CZ,NZ,2,141,201912,1227 -CZ,NZ,2,143,201912,347 -CZ,NZ,2,151,201912,728 -CZ,NZ,2,152,201912,114 -CZ,NZ,2,162,201912,168 -CZ,NZ,2,171,201912,39322 -CZ,NZ,2,172,201912,32432 -CZ,NZ,2,201,201912,22508 -CZ,NZ,2,204,201912,2824 -CZ,NZ,2,205,201912,71 -CZ,NZ,2,212,201912,56613 -CZ,NZ,2,221,201912,132552 -CZ,NZ,2,222,201912,251159 -CZ,NZ,2,231,201912,37044 -CZ,NZ,2,241,201912,214698 -CZ,NZ,2,243,201912,76 -CZ,NZ,2,244,201912,3675 -CZ,NZ,2,254,201912,2168 -CZ,NZ,2,257,201912,1846 -CZ,NZ,2,259,201912,280973 -CZ,NZ,2,261,201912,5393 -CZ,NZ,2,262,201912,4505 -CZ,NZ,2,263,201912,30561 -CZ,NZ,2,265,201912,29591 -CZ,NZ,2,267,201912,562 -CZ,NZ,2,271,201912,36261 -CZ,NZ,2,273,201912,17965 -CZ,NZ,2,274,201912,32730 -CZ,NZ,2,275,201912,43231 -CZ,NZ,2,279,201912,27930 -CZ,NZ,2,281,201912,69563 -CZ,NZ,2,282,201912,42299 -CZ,NZ,2,283,201912,1048 -CZ,NZ,2,289,201912,293534 -CZ,NZ,2,291,201912,4803137 -CZ,NZ,2,293,201912,7159 -CZ,NZ,2,309,201912,4691 -CZ,NZ,2,310,201912,2396 -CZ,NZ,2,322,201912,440 -CZ,NZ,2,323,201912,27309 -CZ,NZ,2,324,201912,117541 -CZ,NZ,2,329,201912,1595 -CZ,OM,1,201,201912,1259 -CZ,OM,1,293,201912,412861 -CZ,OM,2,139,201912,8447 -CZ,OM,2,141,201912,42 -CZ,OM,2,151,201912,251 -CZ,OM,2,161,201912,115 -CZ,OM,2,162,201912,19374 -CZ,OM,2,171,201912,283061 -CZ,OM,2,172,201912,4497 -CZ,OM,2,201,201912,42582 -CZ,OM,2,205,201912,31427 -CZ,OM,2,221,201912,4187 -CZ,OM,2,222,201912,14742 -CZ,OM,2,231,201912,349 -CZ,OM,2,233,201912,112697 -CZ,OM,2,234,201912,49711 -CZ,OM,2,243,201912,10878 -CZ,OM,2,254,201912,29554 -CZ,OM,2,257,201912,5225 -CZ,OM,2,259,201912,70884 -CZ,OM,2,262,201912,281223 -CZ,OM,2,263,201912,5647 -CZ,OM,2,264,201912,161 -CZ,OM,2,265,201912,79005 -CZ,OM,2,268,201912,2764 -CZ,OM,2,271,201912,568500 -CZ,OM,2,272,201912,467 -CZ,OM,2,273,201912,2875 -CZ,OM,2,274,201912,145406 -CZ,OM,2,279,201912,4770 -CZ,OM,2,281,201912,64028 -CZ,OM,2,282,201912,23209 -CZ,OM,2,289,201912,150157 -CZ,OM,2,310,201912,15204 -CZ,OM,2,324,201912,17625 -CZ,OM,2,325,201912,2974 -CZ,OM,2,329,201912,13888 -CZ,PA,1,110,201912,996124 -CZ,PA,2,221,201912,25712 -CZ,PA,2,222,201912,5 -CZ,PA,2,231,201912,8380 -CZ,PA,2,262,201912,2690 -CZ,PA,2,263,201912,3599 -CZ,PA,2,271,201912,4399 -CZ,PA,2,273,201912,1077 -CZ,PA,2,279,201912,21484 -CZ,PA,2,281,201912,594 -CZ,PE,1,012,201912,44357 -CZ,PE,1,030,201912,4079 -CZ,PE,1,103,201912,53331 -CZ,PE,1,106,201912,9124 -CZ,PE,1,108,201912,2249 -CZ,PE,1,139,201912,147 -CZ,PE,1,141,201912,420 -CZ,PE,2,103,201912,5915 -CZ,PE,2,109,201912,79809 -CZ,PE,2,139,201912,30472 -CZ,PE,2,151,201912,63 -CZ,PE,2,162,201912,1009 -CZ,PE,2,172,201912,7176 -CZ,PE,2,201,201912,85596 -CZ,PE,2,205,201912,9960 -CZ,PE,2,212,201912,1324 -CZ,PE,2,221,201912,44157 -CZ,PE,2,222,201912,117912 -CZ,PE,2,231,201912,33357 -CZ,PE,2,243,201912,17068 -CZ,PE,2,251,201912,114084 -CZ,PE,2,254,201912,65321 -CZ,PE,2,259,201912,102181 -CZ,PE,2,263,201912,3263 -CZ,PE,2,265,201912,1599084 -CZ,PE,2,271,201912,18606 -CZ,PE,2,273,201912,3813 -CZ,PE,2,275,201912,8640 -CZ,PE,2,279,201912,17221 -CZ,PE,2,281,201912,1377651 -CZ,PE,2,282,201912,236098 -CZ,PE,2,289,201912,1851510 -CZ,PE,2,309,201912,47 -CZ,PE,2,325,201912,91395 -CZ,PE,2,329,201912,4325 -CZ,PF,2,171,201912,16677 -CZ,PF,2,221,201912,21549 -CZ,PH,1,012,201912,41138 -CZ,PH,1,102,201912,272101 -CZ,PH,1,103,201912,42138 -CZ,PH,1,108,201912,172954 -CZ,PH,1,141,201912,412 -CZ,PH,1,152,201912,583 -CZ,PH,1,204,201912,523 -CZ,PH,1,221,201912,1242 -CZ,PH,1,222,201912,97234 -CZ,PH,1,254,201912,287 -CZ,PH,1,257,201912,84847 -CZ,PH,1,259,201912,9908 -CZ,PH,1,261,201912,230901 -CZ,PH,1,262,201912,150483 -CZ,PH,1,263,201912,901468 -CZ,PH,1,265,201912,354733 -CZ,PH,1,271,201912,16339 -CZ,PH,1,273,201912,128012 -CZ,PH,1,275,201912,365222 -CZ,PH,1,279,201912,64530 -CZ,PH,1,281,201912,17264 -CZ,PH,1,282,201912,876528 -CZ,PH,1,289,201912,758850 -CZ,PH,1,293,201912,813453 -CZ,PH,1,309,201912,19579 -CZ,PH,1,323,201912,1543 -CZ,PH,2,105,201912,89828 -CZ,PH,2,139,201912,4552 -CZ,PH,2,143,201912,104 -CZ,PH,2,162,201912,1144 -CZ,PH,2,172,201912,106080 -CZ,PH,2,201,201912,163742 -CZ,PH,2,204,201912,15435 -CZ,PH,2,205,201912,855 -CZ,PH,2,211,201912,12342 -CZ,PH,2,212,201912,115502 -CZ,PH,2,221,201912,87176 -CZ,PH,2,222,201912,384721 -CZ,PH,2,231,201912,423 -CZ,PH,2,251,201912,37449 -CZ,PH,2,254,201912,62692 -CZ,PH,2,257,201912,14267 -CZ,PH,2,259,201912,85148 -CZ,PH,2,261,201912,2336125 -CZ,PH,2,262,201912,28851 -CZ,PH,2,263,201912,1336 -CZ,PH,2,265,201912,501589 -CZ,PH,2,271,201912,278948 -CZ,PH,2,272,201912,9899 -CZ,PH,2,273,201912,1057126 -CZ,PH,2,274,201912,14093 -CZ,PH,2,279,201912,382539 -CZ,PH,2,281,201912,32850 -CZ,PH,2,282,201912,231893 -CZ,PH,2,289,201912,490228 -CZ,PH,2,293,201912,23360 -CZ,PH,2,323,201912,15148 -CZ,PH,2,324,201912,22605 -CZ,PH,2,325,201912,42154 -CZ,PH,2,329,201912,1 -CZ,PK,1,106,201912,25181 -CZ,PK,1,108,201912,29974 -CZ,PK,1,132,201912,814832 -CZ,PK,1,139,201912,915388 -CZ,PK,1,141,201912,1556895 -CZ,PK,1,143,201912,61028 -CZ,PK,1,151,201912,13038 -CZ,PK,1,152,201912,356 -CZ,PK,1,201,201912,343631 -CZ,PK,1,204,201912,696726 -CZ,PK,1,221,201912,11602 -CZ,PK,1,222,201912,9912 -CZ,PK,1,257,201912,51966 -CZ,PK,1,259,201912,33553 -CZ,PK,1,323,201912,67497 -CZ,PK,1,325,201912,356249 -CZ,PK,1,329,201912,571607 -CZ,PK,2,014,201912,11644 -CZ,PK,2,139,201912,23010 -CZ,PK,2,141,201912,38859 -CZ,PK,2,151,201912,212 -CZ,PK,2,161,201912,210429 -CZ,PK,2,162,201912,6486 -CZ,PK,2,201,201912,65753 -CZ,PK,2,205,201912,7277 -CZ,PK,2,211,201912,247428 -CZ,PK,2,212,201912,15469 -CZ,PK,2,221,201912,4353 -CZ,PK,2,222,201912,93870 -CZ,PK,2,231,201912,6566 -CZ,PK,2,239,201912,5216 -CZ,PK,2,244,201912,917 -CZ,PK,2,257,201912,8950 -CZ,PK,2,259,201912,5249 -CZ,PK,2,262,201912,464 -CZ,PK,2,263,201912,97500 -CZ,PK,2,265,201912,60474 -CZ,PK,2,271,201912,10361 -CZ,PK,2,273,201912,813 -CZ,PK,2,279,201912,89973 -CZ,PK,2,281,201912,310944 -CZ,PK,2,282,201912,38033 -CZ,PK,2,284,201912,6617 -CZ,PK,2,289,201912,278754 -CZ,PK,2,324,201912,8538 -CZ,PK,2,329,201912,153729 -CZ,PL,1,011,201912,6032665 -CZ,PL,1,012,201912,3668667 -CZ,PL,1,013,201912,178480 -CZ,PL,1,014,201912,1323831 -CZ,PL,1,021,201912,191807 -CZ,PL,1,022,201912,1842349 -CZ,PL,1,023,201912,20407 -CZ,PL,1,030,201912,102029 -CZ,PL,1,051,201912,20499713 -CZ,PL,1,052,201912,24986 -CZ,PL,1,061,201912,201 -CZ,PL,1,072,201912,35 -CZ,PL,1,081,201912,877046 -CZ,PL,1,089,201912,641008 -CZ,PL,1,101,201912,33610778 -CZ,PL,1,102,201912,8583914 -CZ,PL,1,103,201912,7591004 -CZ,PL,1,104,201912,5830556 -CZ,PL,1,105,201912,12713038 -CZ,PL,1,106,201912,2133374 -CZ,PL,1,107,201912,11427538 -CZ,PL,1,108,201912,17809207 -CZ,PL,1,109,201912,5803524 -CZ,PL,1,110,201912,5608540 -CZ,PL,1,120,201912,10335945 -CZ,PL,1,131,201912,281340 -CZ,PL,1,132,201912,1097148 -CZ,PL,1,139,201912,11900518 -CZ,PL,1,141,201912,24088844 -CZ,PL,1,142,201912,12872 -CZ,PL,1,143,201912,5746736 -CZ,PL,1,151,201912,3206435 -CZ,PL,1,152,201912,10708070 -CZ,PL,1,161,201912,2030706 -CZ,PL,1,162,201912,11566636 -CZ,PL,1,171,201912,6470003 -CZ,PL,1,172,201912,19068941 -CZ,PL,1,181,201912,23951 -CZ,PL,1,191,201912,2004531 -CZ,PL,1,192,201912,9814417 -CZ,PL,1,201,201912,45745145 -CZ,PL,1,202,201912,225960 -CZ,PL,1,203,201912,4050679 -CZ,PL,1,204,201912,22539907 -CZ,PL,1,205,201912,15623505 -CZ,PL,1,206,201912,491888 -CZ,PL,1,211,201912,857495 -CZ,PL,1,212,201912,13464393 -CZ,PL,1,221,201912,14362962 -CZ,PL,1,222,201912,35995712 -CZ,PL,1,231,201912,11794111 -CZ,PL,1,232,201912,1766413 -CZ,PL,1,233,201912,1899661 -CZ,PL,1,234,201912,2040629 -CZ,PL,1,235,201912,580450 -CZ,PL,1,236,201912,1686079 -CZ,PL,1,237,201912,116789 -CZ,PL,1,239,201912,2879202 -CZ,PL,1,241,201912,57842165 -CZ,PL,1,242,201912,5190049 -CZ,PL,1,243,201912,12244870 -CZ,PL,1,244,201912,44957800 -CZ,PL,1,245,201912,521483 -CZ,PL,1,251,201912,5283181 -CZ,PL,1,252,201912,1835438 -CZ,PL,1,253,201912,166011 -CZ,PL,1,254,201912,201276 -CZ,PL,1,257,201912,8714836 -CZ,PL,1,259,201912,18463681 -CZ,PL,1,261,201912,1224660 -CZ,PL,1,262,201912,15606365 -CZ,PL,1,263,201912,13674394 -CZ,PL,1,264,201912,20526661 -CZ,PL,1,265,201912,13653465 -CZ,PL,1,266,201912,413373 -CZ,PL,1,267,201912,2015135 -CZ,PL,1,268,201912,59909 -CZ,PL,1,271,201912,8432405 -CZ,PL,1,272,201912,3331619 -CZ,PL,1,273,201912,9365617 -CZ,PL,1,274,201912,9466003 -CZ,PL,1,275,201912,10701418 -CZ,PL,1,279,201912,5119002 -CZ,PL,1,281,201912,18578345 -CZ,PL,1,282,201912,21646044 -CZ,PL,1,283,201912,2252997 -CZ,PL,1,284,201912,1240563 -CZ,PL,1,289,201912,6135666 -CZ,PL,1,291,201912,59926564 -CZ,PL,1,292,201912,4145756 -CZ,PL,1,293,201912,91881259 -CZ,PL,1,301,201912,86066 -CZ,PL,1,302,201912,1587158 -CZ,PL,1,303,201912,160729 -CZ,PL,1,304,201912,94212 -CZ,PL,1,309,201912,1613169 -CZ,PL,1,310,201912,61657168 -CZ,PL,1,321,201912,901594 -CZ,PL,1,322,201912,71314 -CZ,PL,1,323,201912,3046818 -CZ,PL,1,324,201912,6438336 -CZ,PL,1,325,201912,3884783 -CZ,PL,1,329,201912,4916528 -CZ,PL,1,351,201912,925637 -CZ,PL,2,011,201912,5102845 -CZ,PL,2,012,201912,895090 -CZ,PL,2,013,201912,359670 -CZ,PL,2,014,201912,2663217 -CZ,PL,2,022,201912,3768806 -CZ,PL,2,023,201912,7 -CZ,PL,2,030,201912,3050598 -CZ,PL,2,051,201912,1786537 -CZ,PL,2,052,201912,578291 -CZ,PL,2,072,201912,56086 -CZ,PL,2,081,201912,1250789 -CZ,PL,2,089,201912,644094 -CZ,PL,2,101,201912,2476396 -CZ,PL,2,102,201912,296099 -CZ,PL,2,103,201912,1599392 -CZ,PL,2,104,201912,6780521 -CZ,PL,2,105,201912,5124754 -CZ,PL,2,106,201912,2683247 -CZ,PL,2,107,201912,2401293 -CZ,PL,2,108,201912,9878500 -CZ,PL,2,109,201912,5332671 -CZ,PL,2,110,201912,6257305 -CZ,PL,2,120,201912,936738 -CZ,PL,2,131,201912,2150086 -CZ,PL,2,132,201912,1995943 -CZ,PL,2,139,201912,8748464 -CZ,PL,2,141,201912,7706887 -CZ,PL,2,142,201912,2967 -CZ,PL,2,143,201912,1606393 -CZ,PL,2,151,201912,1415699 -CZ,PL,2,152,201912,3795453 -CZ,PL,2,161,201912,1063576 -CZ,PL,2,162,201912,3376045 -CZ,PL,2,171,201912,4646365 -CZ,PL,2,172,201912,15476719 -CZ,PL,2,181,201912,58318 -CZ,PL,2,191,201912,1606148 -CZ,PL,2,192,201912,22406372 -CZ,PL,2,201,201912,32509810 -CZ,PL,2,202,201912,474436 -CZ,PL,2,203,201912,1750626 -CZ,PL,2,204,201912,35600176 -CZ,PL,2,205,201912,15663003 -CZ,PL,2,206,201912,201777 -CZ,PL,2,211,201912,1297913 -CZ,PL,2,212,201912,8672573 -CZ,PL,2,221,201912,9434841 -CZ,PL,2,222,201912,19856870 -CZ,PL,2,231,201912,8560658 -CZ,PL,2,232,201912,375624 -CZ,PL,2,233,201912,1190391 -CZ,PL,2,234,201912,773839 -CZ,PL,2,235,201912,910947 -CZ,PL,2,236,201912,963860 -CZ,PL,2,237,201912,43409 -CZ,PL,2,239,201912,2758409 -CZ,PL,2,241,201912,23167459 -CZ,PL,2,242,201912,4897150 -CZ,PL,2,243,201912,7526513 -CZ,PL,2,244,201912,4156083 -CZ,PL,2,245,201912,934376 -CZ,PL,2,251,201912,7777869 -CZ,PL,2,252,201912,3131681 -CZ,PL,2,253,201912,2053720 -CZ,PL,2,254,201912,427238 -CZ,PL,2,257,201912,9044546 -CZ,PL,2,259,201912,18566408 -CZ,PL,2,261,201912,14149611 -CZ,PL,2,262,201912,43497359 -CZ,PL,2,263,201912,52467665 -CZ,PL,2,264,201912,13176243 -CZ,PL,2,265,201912,5609219 -CZ,PL,2,266,201912,44040 -CZ,PL,2,267,201912,652405 -CZ,PL,2,268,201912,125329 -CZ,PL,2,271,201912,13587770 -CZ,PL,2,272,201912,4391079 -CZ,PL,2,273,201912,12527887 -CZ,PL,2,274,201912,5342568 -CZ,PL,2,275,201912,5810459 -CZ,PL,2,279,201912,9354287 -CZ,PL,2,281,201912,17280784 -CZ,PL,2,282,201912,29013355 -CZ,PL,2,283,201912,4240055 -CZ,PL,2,284,201912,5546672 -CZ,PL,2,289,201912,15280105 -CZ,PL,2,291,201912,56561268 -CZ,PL,2,292,201912,1202106 -CZ,PL,2,293,201912,39481094 -CZ,PL,2,301,201912,41128 -CZ,PL,2,302,201912,4791704 -CZ,PL,2,303,201912,4568765 -CZ,PL,2,304,201912,141275 -CZ,PL,2,309,201912,1445227 -CZ,PL,2,310,201912,13873002 -CZ,PL,2,321,201912,516634 -CZ,PL,2,322,201912,257385 -CZ,PL,2,323,201912,1877514 -CZ,PL,2,324,201912,8784925 -CZ,PL,2,325,201912,3841201 -CZ,PL,2,329,201912,2553803 -CZ,PL,2,351,201912,5043256 -CZ,PS,2,271,201912,220 -CZ,PS,2,293,201912,182 -CZ,PS,2,325,201912,5528 -CZ,PT,1,011,201912,551898 -CZ,PT,1,014,201912,2131 -CZ,PT,1,101,201912,115502 -CZ,PT,1,103,201912,23520 -CZ,PT,1,104,201912,13385 -CZ,PT,1,105,201912,58948 -CZ,PT,1,108,201912,372362 -CZ,PT,1,110,201912,212208 -CZ,PT,1,131,201912,45478 -CZ,PT,1,132,201912,1074370 -CZ,PT,1,139,201912,1697878 -CZ,PT,1,141,201912,43604 -CZ,PT,1,143,201912,19 -CZ,PT,1,151,201912,127464 -CZ,PT,1,152,201912,53576 -CZ,PT,1,161,201912,1436 -CZ,PT,1,162,201912,355535 -CZ,PT,1,171,201912,711041 -CZ,PT,1,172,201912,193520 -CZ,PT,1,201,201912,285232 -CZ,PT,1,203,201912,4475 -CZ,PT,1,204,201912,38847 -CZ,PT,1,205,201912,23077 -CZ,PT,1,206,201912,15988 -CZ,PT,1,212,201912,3195966 -CZ,PT,1,221,201912,143864 -CZ,PT,1,222,201912,2646877 -CZ,PT,1,231,201912,210823 -CZ,PT,1,233,201912,22066 -CZ,PT,1,234,201912,20824 -CZ,PT,1,239,201912,1668 -CZ,PT,1,241,201912,20476 -CZ,PT,1,243,201912,67097 -CZ,PT,1,244,201912,13097 -CZ,PT,1,257,201912,1744526 -CZ,PT,1,259,201912,1051681 -CZ,PT,1,261,201912,39209 -CZ,PT,1,262,201912,217067 -CZ,PT,1,263,201912,16214 -CZ,PT,1,264,201912,1798 -CZ,PT,1,265,201912,278522 -CZ,PT,1,266,201912,1939 -CZ,PT,1,267,201912,0 -CZ,PT,1,271,201912,410021 -CZ,PT,1,272,201912,78 -CZ,PT,1,273,201912,147756 -CZ,PT,1,274,201912,15096 -CZ,PT,1,275,201912,729 -CZ,PT,1,279,201912,1891496 -CZ,PT,1,281,201912,467465 -CZ,PT,1,282,201912,351294 -CZ,PT,1,284,201912,19608 -CZ,PT,1,289,201912,412550 -CZ,PT,1,291,201912,1961841 -CZ,PT,1,293,201912,3684697 -CZ,PT,1,309,201912,18048 -CZ,PT,1,310,201912,1427922 -CZ,PT,1,321,201912,1558 -CZ,PT,1,323,201912,37041 -CZ,PT,1,324,201912,16720 -CZ,PT,1,325,201912,20461 -CZ,PT,1,329,201912,63233 -CZ,PT,2,012,201912,561 -CZ,PT,2,014,201912,24733 -CZ,PT,2,030,201912,8034 -CZ,PT,2,102,201912,6806 -CZ,PT,2,103,201912,28153 -CZ,PT,2,104,201912,401 -CZ,PT,2,106,201912,100365 -CZ,PT,2,107,201912,286316 -CZ,PT,2,108,201912,240402 -CZ,PT,2,109,201912,10762 -CZ,PT,2,110,201912,64963 -CZ,PT,2,120,201912,399027 -CZ,PT,2,131,201912,1117697 -CZ,PT,2,132,201912,669542 -CZ,PT,2,139,201912,215665 -CZ,PT,2,141,201912,198290 -CZ,PT,2,143,201912,69422 -CZ,PT,2,151,201912,102654 -CZ,PT,2,152,201912,428356 -CZ,PT,2,161,201912,57315 -CZ,PT,2,162,201912,60812 -CZ,PT,2,171,201912,207500 -CZ,PT,2,172,201912,112700 -CZ,PT,2,192,201912,888 -CZ,PT,2,201,201912,363532 -CZ,PT,2,202,201912,44821 -CZ,PT,2,203,201912,62549 -CZ,PT,2,204,201912,1197662 -CZ,PT,2,205,201912,397952 -CZ,PT,2,206,201912,1983 -CZ,PT,2,211,201912,137892 -CZ,PT,2,212,201912,744944 -CZ,PT,2,221,201912,1399157 -CZ,PT,2,222,201912,979161 -CZ,PT,2,231,201912,166291 -CZ,PT,2,232,201912,23187 -CZ,PT,2,234,201912,24209 -CZ,PT,2,239,201912,65977 -CZ,PT,2,241,201912,1938 -CZ,PT,2,242,201912,52489 -CZ,PT,2,243,201912,220866 -CZ,PT,2,244,201912,88528 -CZ,PT,2,251,201912,44041 -CZ,PT,2,252,201912,128210 -CZ,PT,2,254,201912,9742 -CZ,PT,2,257,201912,1349880 -CZ,PT,2,259,201912,955856 -CZ,PT,2,261,201912,536945 -CZ,PT,2,262,201912,4336763 -CZ,PT,2,263,201912,1306700 -CZ,PT,2,264,201912,312392 -CZ,PT,2,265,201912,540267 -CZ,PT,2,267,201912,21622 -CZ,PT,2,268,201912,11712 -CZ,PT,2,271,201912,1237990 -CZ,PT,2,272,201912,44964 -CZ,PT,2,273,201912,674300 -CZ,PT,2,274,201912,112711 -CZ,PT,2,275,201912,59720 -CZ,PT,2,279,201912,949970 -CZ,PT,2,281,201912,657272 -CZ,PT,2,282,201912,2761221 -CZ,PT,2,283,201912,49783 -CZ,PT,2,284,201912,96044 -CZ,PT,2,289,201912,1699523 -CZ,PT,2,291,201912,3421826 -CZ,PT,2,292,201912,376 -CZ,PT,2,293,201912,7328853 -CZ,PT,2,301,201912,11 -CZ,PT,2,302,201912,67793 -CZ,PT,2,309,201912,244392 -CZ,PT,2,310,201912,470815 -CZ,PT,2,321,201912,184 -CZ,PT,2,322,201912,11285 -CZ,PT,2,323,201912,28505 -CZ,PT,2,324,201912,247799 -CZ,PT,2,325,201912,601281 -CZ,PT,2,329,201912,130299 -CZ,PY,2,222,201912,20362 -CZ,PY,2,257,201912,1578 -CZ,PY,2,259,201912,3938 -CZ,PY,2,265,201912,1904 -CZ,PY,2,271,201912,30016 -CZ,PY,2,273,201912,135025 -CZ,PY,2,279,201912,12481 -CZ,PY,2,281,201912,74821 -CZ,PY,2,282,201912,2739 -CZ,PY,2,289,201912,6991 -CZ,PY,2,293,201912,91342 -CZ,PY,2,303,201912,3678 -CZ,QA,1,201,201912,91 -CZ,QA,1,262,201912,987 -CZ,QA,2,014,201912,9407 -CZ,QA,2,108,201912,59924 -CZ,QA,2,110,201912,18002 -CZ,QA,2,139,201912,118379 -CZ,QA,2,143,201912,216 -CZ,QA,2,151,201912,8232 -CZ,QA,2,162,201912,3325 -CZ,QA,2,172,201912,103276 -CZ,QA,2,201,201912,38685 -CZ,QA,2,204,201912,15674 -CZ,QA,2,205,201912,1393 -CZ,QA,2,212,201912,142 -CZ,QA,2,221,201912,984 -CZ,QA,2,222,201912,36795 -CZ,QA,2,231,201912,47418 -CZ,QA,2,234,201912,7160 -CZ,QA,2,236,201912,753 -CZ,QA,2,239,201912,1524 -CZ,QA,2,242,201912,545 -CZ,QA,2,243,201912,19964 -CZ,QA,2,244,201912,2395 -CZ,QA,2,251,201912,4821 -CZ,QA,2,257,201912,28675 -CZ,QA,2,259,201912,96038 -CZ,QA,2,261,201912,3296 -CZ,QA,2,262,201912,2540458 -CZ,QA,2,263,201912,484535 -CZ,QA,2,264,201912,6193 -CZ,QA,2,265,201912,86990 -CZ,QA,2,267,201912,966 -CZ,QA,2,271,201912,2738908 -CZ,QA,2,272,201912,94136 -CZ,QA,2,273,201912,120671 -CZ,QA,2,274,201912,115840 -CZ,QA,2,279,201912,193581 -CZ,QA,2,281,201912,414841 -CZ,QA,2,282,201912,239880 -CZ,QA,2,284,201912,790 -CZ,QA,2,289,201912,477680 -CZ,QA,2,291,201912,231074 -CZ,QA,2,293,201912,5119 -CZ,QA,2,310,201912,94763 -CZ,QA,2,325,201912,9742 -CZ,QA,2,329,201912,1973 -CZ,QV,1,062,201912,103764727 -CZ,QV,1,103,201912,36927 -CZ,QV,1,132,201912,59445 -CZ,QV,1,139,201912,236607 -CZ,QV,1,141,201912,247898 -CZ,QV,1,143,201912,37838 -CZ,QV,1,151,201912,221803 -CZ,QV,1,162,201912,269920 -CZ,QV,1,201,201912,227087 -CZ,QV,1,204,201912,5569651 -CZ,QV,1,205,201912,81966 -CZ,QV,1,221,201912,77400 -CZ,QV,1,222,201912,527805 -CZ,QV,1,231,201912,75399 -CZ,QV,1,234,201912,5192 -CZ,QV,1,241,201912,88350 -CZ,QV,1,242,201912,148339 -CZ,QV,1,243,201912,74386 -CZ,QV,1,244,201912,1071988 -CZ,QV,1,257,201912,959853 -CZ,QV,1,259,201912,423513 -CZ,QV,1,263,201912,370406 -CZ,QV,1,265,201912,1180274 -CZ,QV,1,267,201912,61352 -CZ,QV,1,271,201912,401719 -CZ,QV,1,272,201912,73422 -CZ,QV,1,273,201912,254696 -CZ,QV,1,274,201912,38294 -CZ,QV,1,275,201912,56005 -CZ,QV,1,279,201912,627362 -CZ,QV,1,281,201912,674678 -CZ,QV,1,282,201912,379769 -CZ,QV,1,284,201912,92007 -CZ,QV,1,289,201912,113315 -CZ,QV,1,303,201912,353698 -CZ,QV,1,323,201912,23526 -CZ,QV,1,324,201912,17932 -CZ,QV,1,325,201912,287795 -CZ,QV,1,329,201912,84074 -CZ,QV,2,222,201912,3032 -CZ,QV,2,271,201912,234697 -CZ,QV,2,284,201912,24390 -CZ,QV,2,289,201912,6089 -CZ,QV,2,291,201912,40920 -CZ,QV,2,323,201912,16861 -CZ,QW,1,131,201912,37016 -CZ,QW,1,132,201912,55828 -CZ,QW,1,139,201912,11161 -CZ,QW,1,141,201912,343 -CZ,QW,1,143,201912,2 -CZ,QW,1,151,201912,16936 -CZ,QW,1,152,201912,184 -CZ,QW,1,162,201912,43802 -CZ,QW,1,172,201912,3258 -CZ,QW,1,192,201912,7571 -CZ,QW,1,201,201912,4191 -CZ,QW,1,203,201912,3939 -CZ,QW,1,204,201912,418873 -CZ,QW,1,205,201912,3165 -CZ,QW,1,211,201912,651 -CZ,QW,1,221,201912,49297 -CZ,QW,1,222,201912,687768 -CZ,QW,1,231,201912,74955 -CZ,QW,1,234,201912,6202 -CZ,QW,1,239,201912,10540 -CZ,QW,1,242,201912,1365 -CZ,QW,1,243,201912,24243 -CZ,QW,1,244,201912,36581 -CZ,QW,1,251,201912,22204 -CZ,QW,1,252,201912,4916 -CZ,QW,1,257,201912,719749 -CZ,QW,1,259,201912,736610 -CZ,QW,1,261,201912,154015 -CZ,QW,1,262,201912,11803 -CZ,QW,1,263,201912,100247 -CZ,QW,1,264,201912,6524 -CZ,QW,1,265,201912,79821 -CZ,QW,1,267,201912,53377 -CZ,QW,1,271,201912,189490 -CZ,QW,1,272,201912,21357 -CZ,QW,1,273,201912,344714 -CZ,QW,1,274,201912,30483 -CZ,QW,1,275,201912,4770 -CZ,QW,1,279,201912,95855 -CZ,QW,1,281,201912,505373 -CZ,QW,1,282,201912,121299 -CZ,QW,1,283,201912,9328 -CZ,QW,1,284,201912,119591 -CZ,QW,1,289,201912,326035 -CZ,QW,1,291,201912,859250 -CZ,QW,1,292,201912,40986 -CZ,QW,1,293,201912,158536 -CZ,QW,1,302,201912,34462 -CZ,QW,1,303,201912,164278 -CZ,QW,1,309,201912,50398 -CZ,QW,1,310,201912,7483 -CZ,QW,1,321,201912,840 -CZ,QW,1,323,201912,27444 -CZ,QW,1,324,201912,792 -CZ,QW,1,325,201912,2683 -CZ,QW,1,329,201912,43494 -CZ,QW,2,192,201912,736596 -CZ,QW,2,234,201912,298 -CZ,QW,2,324,201912,1815 -CZ,QY,1,25S,201912,1821549 -CZ,QY,2,25S,201912,4634985 -CZ,QZ,1,25S,201912,1115981 -CZ,QZ,2,25S,201912,3223029 -CZ,RO,1,011,201912,3149041 -CZ,RO,1,012,201912,33388 -CZ,RO,1,013,201912,67 -CZ,RO,1,014,201912,80231 -CZ,RO,1,030,201912,77269 -CZ,RO,1,081,201912,30705 -CZ,RO,1,101,201912,639747 -CZ,RO,1,102,201912,9941 -CZ,RO,1,103,201912,160623 -CZ,RO,1,104,201912,133556 -CZ,RO,1,105,201912,3189 -CZ,RO,1,106,201912,118668 -CZ,RO,1,107,201912,137856 -CZ,RO,1,108,201912,481999 -CZ,RO,1,109,201912,177242 -CZ,RO,1,110,201912,255760 -CZ,RO,1,120,201912,3863861 -CZ,RO,1,131,201912,8109 -CZ,RO,1,132,201912,3230 -CZ,RO,1,139,201912,400088 -CZ,RO,1,141,201912,225314 -CZ,RO,1,143,201912,5514 -CZ,RO,1,151,201912,17376 -CZ,RO,1,152,201912,610221 -CZ,RO,1,161,201912,18331 -CZ,RO,1,162,201912,669790 -CZ,RO,1,171,201912,367575 -CZ,RO,1,172,201912,400423 -CZ,RO,1,192,201912,596 -CZ,RO,1,201,201912,1410620 -CZ,RO,1,203,201912,31837 -CZ,RO,1,204,201912,1836880 -CZ,RO,1,205,201912,59939 -CZ,RO,1,206,201912,687056 -CZ,RO,1,211,201912,26 -CZ,RO,1,212,201912,4620808 -CZ,RO,1,221,201912,2349247 -CZ,RO,1,222,201912,3178339 -CZ,RO,1,231,201912,1561028 -CZ,RO,1,232,201912,97683 -CZ,RO,1,233,201912,7291 -CZ,RO,1,234,201912,348937 -CZ,RO,1,236,201912,1847 -CZ,RO,1,239,201912,174 -CZ,RO,1,241,201912,1003289 -CZ,RO,1,242,201912,856869 -CZ,RO,1,243,201912,1092972 -CZ,RO,1,244,201912,2969772 -CZ,RO,1,251,201912,179047 -CZ,RO,1,252,201912,9701 -CZ,RO,1,257,201912,617515 -CZ,RO,1,259,201912,3388232 -CZ,RO,1,261,201912,478030 -CZ,RO,1,262,201912,309410 -CZ,RO,1,263,201912,5197053 -CZ,RO,1,264,201912,38658 -CZ,RO,1,265,201912,1728156 -CZ,RO,1,267,201912,712 -CZ,RO,1,268,201912,664 -CZ,RO,1,271,201912,15715204 -CZ,RO,1,272,201912,14331 -CZ,RO,1,273,201912,1186037 -CZ,RO,1,274,201912,4026884 -CZ,RO,1,275,201912,900301 -CZ,RO,1,279,201912,898066 -CZ,RO,1,281,201912,7727957 -CZ,RO,1,282,201912,868215 -CZ,RO,1,283,201912,316217 -CZ,RO,1,284,201912,58608 -CZ,RO,1,289,201912,642212 -CZ,RO,1,291,201912,7838084 -CZ,RO,1,292,201912,36181 -CZ,RO,1,293,201912,39408425 -CZ,RO,1,302,201912,2020420 -CZ,RO,1,309,201912,37996 -CZ,RO,1,310,201912,11679099 -CZ,RO,1,321,201912,2200427 -CZ,RO,1,322,201912,1493 -CZ,RO,1,323,201912,12239 -CZ,RO,1,324,201912,386487 -CZ,RO,1,325,201912,180092 -CZ,RO,1,329,201912,82761 -CZ,RO,2,011,201912,236987 -CZ,RO,2,012,201912,595740 -CZ,RO,2,013,201912,586 -CZ,RO,2,014,201912,739512 -CZ,RO,2,022,201912,2974205 -CZ,RO,2,023,201912,30820 -CZ,RO,2,030,201912,473289 -CZ,RO,2,052,201912,20417 -CZ,RO,2,081,201912,102202 -CZ,RO,2,089,201912,38036 -CZ,RO,2,101,201912,976550 -CZ,RO,2,102,201912,1121826 -CZ,RO,2,103,201912,772696 -CZ,RO,2,104,201912,210296 -CZ,RO,2,105,201912,1066257 -CZ,RO,2,106,201912,420128 -CZ,RO,2,107,201912,1104185 -CZ,RO,2,108,201912,2261087 -CZ,RO,2,109,201912,487738 -CZ,RO,2,110,201912,496894 -CZ,RO,2,120,201912,1419827 -CZ,RO,2,131,201912,558898 -CZ,RO,2,132,201912,1447307 -CZ,RO,2,139,201912,2746770 -CZ,RO,2,141,201912,2610411 -CZ,RO,2,142,201912,61 -CZ,RO,2,143,201912,390253 -CZ,RO,2,151,201912,244537 -CZ,RO,2,152,201912,1236340 -CZ,RO,2,161,201912,23939 -CZ,RO,2,162,201912,1680564 -CZ,RO,2,171,201912,481930 -CZ,RO,2,172,201912,2023989 -CZ,RO,2,191,201912,763468 -CZ,RO,2,192,201912,248650 -CZ,RO,2,201,201912,2623643 -CZ,RO,2,202,201912,734235 -CZ,RO,2,203,201912,131528 -CZ,RO,2,204,201912,9302076 -CZ,RO,2,205,201912,3662117 -CZ,RO,2,206,201912,10587 -CZ,RO,2,211,201912,288237 -CZ,RO,2,212,201912,2087758 -CZ,RO,2,221,201912,3192036 -CZ,RO,2,222,201912,6883602 -CZ,RO,2,231,201912,996856 -CZ,RO,2,232,201912,168767 -CZ,RO,2,233,201912,28891 -CZ,RO,2,234,201912,82808 -CZ,RO,2,235,201912,16764 -CZ,RO,2,236,201912,95491 -CZ,RO,2,239,201912,199750 -CZ,RO,2,241,201912,1596736 -CZ,RO,2,242,201912,531327 -CZ,RO,2,243,201912,1640197 -CZ,RO,2,244,201912,671418 -CZ,RO,2,245,201912,58678 -CZ,RO,2,251,201912,609521 -CZ,RO,2,252,201912,1183466 -CZ,RO,2,253,201912,3984 -CZ,RO,2,254,201912,122667 -CZ,RO,2,257,201912,2635476 -CZ,RO,2,259,201912,4622544 -CZ,RO,2,261,201912,1237539 -CZ,RO,2,262,201912,3936051 -CZ,RO,2,263,201912,9908897 -CZ,RO,2,264,201912,1394909 -CZ,RO,2,265,201912,4627739 -CZ,RO,2,266,201912,41950 -CZ,RO,2,267,201912,144518 -CZ,RO,2,268,201912,15599 -CZ,RO,2,271,201912,5404721 -CZ,RO,2,272,201912,497313 -CZ,RO,2,273,201912,9164006 -CZ,RO,2,274,201912,1368267 -CZ,RO,2,275,201912,910876 -CZ,RO,2,279,201912,3540106 -CZ,RO,2,281,201912,8852178 -CZ,RO,2,282,201912,6492112 -CZ,RO,2,283,201912,468075 -CZ,RO,2,284,201912,1041683 -CZ,RO,2,289,201912,4652314 -CZ,RO,2,291,201912,22493710 -CZ,RO,2,292,201912,276379 -CZ,RO,2,293,201912,19199386 -CZ,RO,2,301,201912,94 -CZ,RO,2,302,201912,2488418 -CZ,RO,2,303,201912,578453 -CZ,RO,2,309,201912,178662 -CZ,RO,2,310,201912,1069575 -CZ,RO,2,321,201912,2324572 -CZ,RO,2,322,201912,77665 -CZ,RO,2,323,201912,341247 -CZ,RO,2,324,201912,550990 -CZ,RO,2,325,201912,1036905 -CZ,RO,2,329,201912,519209 -CZ,RU,1,011,201912,462019 -CZ,RU,1,012,201912,339 -CZ,RU,1,014,201912,7241 -CZ,RU,1,051,201912,3915375 -CZ,RU,1,061,201912,139676007 -CZ,RU,1,062,201912,50541609 -CZ,RU,1,071,201912,2144699 -CZ,RU,1,089,201912,10469 -CZ,RU,1,101,201912,100746 -CZ,RU,1,104,201912,17806 -CZ,RU,1,106,201912,62339 -CZ,RU,1,108,201912,357625 -CZ,RU,1,109,201912,16312 -CZ,RU,1,110,201912,299368 -CZ,RU,1,131,201912,2240 -CZ,RU,1,132,201912,15197 -CZ,RU,1,139,201912,185589 -CZ,RU,1,141,201912,92348 -CZ,RU,1,143,201912,4000 -CZ,RU,1,151,201912,3178 -CZ,RU,1,152,201912,119672 -CZ,RU,1,161,201912,557860 -CZ,RU,1,162,201912,1454665 -CZ,RU,1,171,201912,935798 -CZ,RU,1,172,201912,198831 -CZ,RU,1,192,201912,113151 -CZ,RU,1,201,201912,15842896 -CZ,RU,1,203,201912,17213 -CZ,RU,1,204,201912,392719 -CZ,RU,1,205,201912,205367 -CZ,RU,1,211,201912,16354 -CZ,RU,1,212,201912,4 -CZ,RU,1,221,201912,1889113 -CZ,RU,1,222,201912,893306 -CZ,RU,1,231,201912,795162 -CZ,RU,1,234,201912,33958 -CZ,RU,1,236,201912,15338 -CZ,RU,1,237,201912,12103 -CZ,RU,1,239,201912,1005690 -CZ,RU,1,241,201912,8348685 -CZ,RU,1,242,201912,163230 -CZ,RU,1,243,201912,1875478 -CZ,RU,1,244,201912,1201900 -CZ,RU,1,251,201912,90137 -CZ,RU,1,254,201912,13 -CZ,RU,1,257,201912,102839 -CZ,RU,1,259,201912,466711 -CZ,RU,1,261,201912,46050 -CZ,RU,1,262,201912,111313 -CZ,RU,1,263,201912,88368 -CZ,RU,1,264,201912,95790 -CZ,RU,1,265,201912,256300 -CZ,RU,1,266,201912,17395 -CZ,RU,1,267,201912,66100 -CZ,RU,1,271,201912,626375 -CZ,RU,1,272,201912,4892 -CZ,RU,1,273,201912,42702 -CZ,RU,1,274,201912,51965 -CZ,RU,1,275,201912,595038 -CZ,RU,1,279,201912,83186 -CZ,RU,1,281,201912,1124592 -CZ,RU,1,282,201912,146993 -CZ,RU,1,283,201912,89665 -CZ,RU,1,284,201912,27476 -CZ,RU,1,289,201912,140591 -CZ,RU,1,291,201912,1103240 -CZ,RU,1,292,201912,1817 -CZ,RU,1,293,201912,241678 -CZ,RU,1,303,201912,363089 -CZ,RU,1,309,201912,1120 -CZ,RU,1,310,201912,348257 -CZ,RU,1,321,201912,5866 -CZ,RU,1,322,201912,8784 -CZ,RU,1,323,201912,15758 -CZ,RU,1,324,201912,3281 -CZ,RU,1,325,201912,67487 -CZ,RU,1,329,201912,35807 -CZ,RU,2,011,201912,1188541 -CZ,RU,2,012,201912,123849 -CZ,RU,2,014,201912,2391975 -CZ,RU,2,081,201912,78450 -CZ,RU,2,089,201912,12890 -CZ,RU,2,101,201912,250 -CZ,RU,2,103,201912,2017 -CZ,RU,2,106,201912,108697 -CZ,RU,2,107,201912,271047 -CZ,RU,2,108,201912,689669 -CZ,RU,2,109,201912,2954092 -CZ,RU,2,110,201912,2903921 -CZ,RU,2,120,201912,55986 -CZ,RU,2,131,201912,47502 -CZ,RU,2,132,201912,96158 -CZ,RU,2,139,201912,1997291 -CZ,RU,2,141,201912,1270289 -CZ,RU,2,143,201912,130895 -CZ,RU,2,151,201912,146324 -CZ,RU,2,152,201912,303937 -CZ,RU,2,161,201912,39533 -CZ,RU,2,162,201912,232029 -CZ,RU,2,171,201912,540674 -CZ,RU,2,172,201912,1706320 -CZ,RU,2,181,201912,13071 -CZ,RU,2,192,201912,1224243 -CZ,RU,2,201,201912,5500598 -CZ,RU,2,202,201912,9953 -CZ,RU,2,203,201912,573173 -CZ,RU,2,204,201912,3118260 -CZ,RU,2,205,201912,764549 -CZ,RU,2,206,201912,4138 -CZ,RU,2,211,201912,1330937 -CZ,RU,2,212,201912,5891137 -CZ,RU,2,221,201912,5603245 -CZ,RU,2,222,201912,7225969 -CZ,RU,2,231,201912,3154058 -CZ,RU,2,232,201912,1012882 -CZ,RU,2,233,201912,9251 -CZ,RU,2,234,201912,819082 -CZ,RU,2,235,201912,5807 -CZ,RU,2,236,201912,292679 -CZ,RU,2,239,201912,1094578 -CZ,RU,2,241,201912,335749 -CZ,RU,2,242,201912,487926 -CZ,RU,2,243,201912,828552 -CZ,RU,2,244,201912,249894 -CZ,RU,2,245,201912,112 -CZ,RU,2,251,201912,378233 -CZ,RU,2,252,201912,1514256 -CZ,RU,2,257,201912,3430553 -CZ,RU,2,259,201912,5271656 -CZ,RU,2,261,201912,2775557 -CZ,RU,2,262,201912,29942401 -CZ,RU,2,263,201912,5216347 -CZ,RU,2,264,201912,461736 -CZ,RU,2,265,201912,3747566 -CZ,RU,2,266,201912,1128657 -CZ,RU,2,267,201912,667123 -CZ,RU,2,268,201912,143129 -CZ,RU,2,271,201912,8763356 -CZ,RU,2,272,201912,157781 -CZ,RU,2,273,201912,1665929 -CZ,RU,2,274,201912,4329745 -CZ,RU,2,275,201912,5155909 -CZ,RU,2,279,201912,2561606 -CZ,RU,2,281,201912,19718904 -CZ,RU,2,282,201912,12256107 -CZ,RU,2,283,201912,5336013 -CZ,RU,2,284,201912,3139490 -CZ,RU,2,289,201912,13227946 -CZ,RU,2,291,201912,10108361 -CZ,RU,2,292,201912,8308510 -CZ,RU,2,293,201912,39461967 -CZ,RU,2,302,201912,1940088 -CZ,RU,2,303,201912,17888611 -CZ,RU,2,309,201912,145424 -CZ,RU,2,310,201912,1689120 -CZ,RU,2,321,201912,68681 -CZ,RU,2,322,201912,515391 -CZ,RU,2,323,201912,1234513 -CZ,RU,2,324,201912,7453626 -CZ,RU,2,325,201912,3035223 -CZ,RU,2,329,201912,928407 -CZ,SA,1,012,201912,18 -CZ,SA,1,108,201912,78 -CZ,SA,1,201,201912,2446 -CZ,SA,1,222,201912,342179 -CZ,SA,1,259,201912,740 -CZ,SA,1,261,201912,124 -CZ,SA,1,262,201912,21988 -CZ,SA,1,263,201912,4507 -CZ,SA,1,264,201912,9 -CZ,SA,1,265,201912,1797 -CZ,SA,1,279,201912,337 -CZ,SA,1,281,201912,1477 -CZ,SA,1,282,201912,224 -CZ,SA,2,105,201912,161715 -CZ,SA,2,107,201912,106111 -CZ,SA,2,108,201912,564489 -CZ,SA,2,109,201912,9934 -CZ,SA,2,139,201912,399005 -CZ,SA,2,141,201912,110984 -CZ,SA,2,143,201912,109 -CZ,SA,2,151,201912,41058 -CZ,SA,2,162,201912,1871 -CZ,SA,2,171,201912,223826 -CZ,SA,2,172,201912,292425 -CZ,SA,2,192,201912,3175 -CZ,SA,2,201,201912,517454 -CZ,SA,2,203,201912,44508 -CZ,SA,2,204,201912,92601 -CZ,SA,2,205,201912,249063 -CZ,SA,2,212,201912,531468 -CZ,SA,2,221,201912,543125 -CZ,SA,2,222,201912,192369 -CZ,SA,2,231,201912,231837 -CZ,SA,2,234,201912,956 -CZ,SA,2,239,201912,32896 -CZ,SA,2,243,201912,473623 -CZ,SA,2,244,201912,16591 -CZ,SA,2,251,201912,119029 -CZ,SA,2,254,201912,522330 -CZ,SA,2,257,201912,114341 -CZ,SA,2,259,201912,759201 -CZ,SA,2,261,201912,24370 -CZ,SA,2,262,201912,13141121 -CZ,SA,2,263,201912,442023 -CZ,SA,2,264,201912,18383 -CZ,SA,2,265,201912,406355 -CZ,SA,2,267,201912,5449 -CZ,SA,2,268,201912,51273 -CZ,SA,2,271,201912,1850708 -CZ,SA,2,272,201912,34354 -CZ,SA,2,273,201912,295843 -CZ,SA,2,274,201912,402861 -CZ,SA,2,275,201912,10268 -CZ,SA,2,279,201912,385356 -CZ,SA,2,281,201912,1372535 -CZ,SA,2,282,201912,233383 -CZ,SA,2,284,201912,55593 -CZ,SA,2,289,201912,851906 -CZ,SA,2,291,201912,13826150 -CZ,SA,2,293,201912,24819 -CZ,SA,2,310,201912,78679 -CZ,SA,2,323,201912,170265 -CZ,SA,2,324,201912,105572 -CZ,SA,2,325,201912,433841 -CZ,SA,2,329,201912,36913 -CZ,SC,2,105,201912,1230 -CZ,SC,2,107,201912,28 -CZ,SC,2,108,201912,180 -CZ,SC,2,211,201912,31259 -CZ,SC,2,222,201912,11 -CZ,SC,2,231,201912,21433 -CZ,SD,2,172,201912,264800 -CZ,SD,2,221,201912,1460 -CZ,SD,2,222,201912,7983 -CZ,SD,2,231,201912,139031 -CZ,SD,2,234,201912,18923 -CZ,SD,2,259,201912,223 -CZ,SD,2,263,201912,1514 -CZ,SD,2,271,201912,764 -CZ,SD,2,273,201912,46 -CZ,SD,2,281,201912,6742 -CZ,SD,2,282,201912,13019 -CZ,SD,2,293,201912,8000 -CZ,SE,1,011,201912,1285 -CZ,SE,1,012,201912,13729 -CZ,SE,1,014,201912,307954 -CZ,SE,1,030,201912,3134255 -CZ,SE,1,089,201912,140 -CZ,SE,1,101,201912,185414 -CZ,SE,1,102,201912,445894 -CZ,SE,1,103,201912,146301 -CZ,SE,1,104,201912,597933 -CZ,SE,1,105,201912,9995 -CZ,SE,1,106,201912,133759 -CZ,SE,1,107,201912,214184 -CZ,SE,1,108,201912,1932658 -CZ,SE,1,109,201912,145064 -CZ,SE,1,110,201912,129473 -CZ,SE,1,131,201912,301471 -CZ,SE,1,132,201912,4147 -CZ,SE,1,139,201912,1315909 -CZ,SE,1,141,201912,1119405 -CZ,SE,1,143,201912,163032 -CZ,SE,1,151,201912,1495402 -CZ,SE,1,152,201912,187620 -CZ,SE,1,161,201912,148303 -CZ,SE,1,162,201912,292425 -CZ,SE,1,171,201912,4215311 -CZ,SE,1,172,201912,765476 -CZ,SE,1,181,201912,16310 -CZ,SE,1,192,201912,41860 -CZ,SE,1,201,201912,2840261 -CZ,SE,1,202,201912,34061 -CZ,SE,1,203,201912,1037714 -CZ,SE,1,204,201912,259030 -CZ,SE,1,205,201912,1761173 -CZ,SE,1,211,201912,95165 -CZ,SE,1,212,201912,663271 -CZ,SE,1,221,201912,545245 -CZ,SE,1,222,201912,1598389 -CZ,SE,1,231,201912,346241 -CZ,SE,1,232,201912,25070 -CZ,SE,1,234,201912,10525 -CZ,SE,1,236,201912,6737 -CZ,SE,1,237,201912,126347 -CZ,SE,1,239,201912,38737 -CZ,SE,1,241,201912,4569806 -CZ,SE,1,242,201912,4903545 -CZ,SE,1,243,201912,988896 -CZ,SE,1,244,201912,5926235 -CZ,SE,1,245,201912,1628 -CZ,SE,1,251,201912,703936 -CZ,SE,1,252,201912,31986 -CZ,SE,1,254,201912,22437 -CZ,SE,1,257,201912,1112892 -CZ,SE,1,259,201912,3939500 -CZ,SE,1,261,201912,333455 -CZ,SE,1,262,201912,1492063 -CZ,SE,1,263,201912,2851562 -CZ,SE,1,264,201912,407414 -CZ,SE,1,265,201912,1483020 -CZ,SE,1,266,201912,342974 -CZ,SE,1,267,201912,154363 -CZ,SE,1,268,201912,37014 -CZ,SE,1,271,201912,1608012 -CZ,SE,1,272,201912,349046 -CZ,SE,1,273,201912,553900 -CZ,SE,1,274,201912,114577 -CZ,SE,1,275,201912,829175 -CZ,SE,1,279,201912,1709562 -CZ,SE,1,281,201912,1571935 -CZ,SE,1,282,201912,9625175 -CZ,SE,1,283,201912,1279930 -CZ,SE,1,284,201912,112779 -CZ,SE,1,289,201912,5492562 -CZ,SE,1,291,201912,12077948 -CZ,SE,1,292,201912,19325 -CZ,SE,1,293,201912,3396308 -CZ,SE,1,302,201912,247136 -CZ,SE,1,309,201912,77570 -CZ,SE,1,310,201912,630481 -CZ,SE,1,321,201912,42269 -CZ,SE,1,322,201912,57317 -CZ,SE,1,323,201912,327488 -CZ,SE,1,324,201912,115116 -CZ,SE,1,325,201912,449241 -CZ,SE,1,329,201912,241357 -CZ,SE,2,011,201912,3506 -CZ,SE,2,012,201912,7838 -CZ,SE,2,013,201912,2014 -CZ,SE,2,014,201912,8121 -CZ,SE,2,023,201912,11976 -CZ,SE,2,030,201912,41163 -CZ,SE,2,051,201912,26733 -CZ,SE,2,081,201912,56473 -CZ,SE,2,089,201912,12228 -CZ,SE,2,101,201912,84127 -CZ,SE,2,103,201912,91120 -CZ,SE,2,104,201912,3268 -CZ,SE,2,105,201912,72066 -CZ,SE,2,106,201912,40592 -CZ,SE,2,107,201912,200842 -CZ,SE,2,108,201912,1591811 -CZ,SE,2,109,201912,535660 -CZ,SE,2,110,201912,1420110 -CZ,SE,2,131,201912,119278 -CZ,SE,2,132,201912,109965 -CZ,SE,2,139,201912,609795 -CZ,SE,2,141,201912,2032402 -CZ,SE,2,143,201912,174161 -CZ,SE,2,151,201912,140129 -CZ,SE,2,152,201912,336680 -CZ,SE,2,161,201912,8086 -CZ,SE,2,162,201912,364710 -CZ,SE,2,171,201912,663393 -CZ,SE,2,172,201912,1111086 -CZ,SE,2,191,201912,204149 -CZ,SE,2,192,201912,22152 -CZ,SE,2,201,201912,1549000 -CZ,SE,2,202,201912,10101 -CZ,SE,2,203,201912,157565 -CZ,SE,2,204,201912,809654 -CZ,SE,2,205,201912,1293921 -CZ,SE,2,206,201912,125182 -CZ,SE,2,211,201912,7671 -CZ,SE,2,212,201912,1807592 -CZ,SE,2,221,201912,2023954 -CZ,SE,2,222,201912,3373892 -CZ,SE,2,231,201912,2895369 -CZ,SE,2,232,201912,65186 -CZ,SE,2,233,201912,266335 -CZ,SE,2,234,201912,209272 -CZ,SE,2,235,201912,41102 -CZ,SE,2,236,201912,136120 -CZ,SE,2,237,201912,68638 -CZ,SE,2,239,201912,157889 -CZ,SE,2,241,201912,1082024 -CZ,SE,2,242,201912,676727 -CZ,SE,2,243,201912,1454917 -CZ,SE,2,244,201912,561604 -CZ,SE,2,245,201912,1436 -CZ,SE,2,251,201912,1169072 -CZ,SE,2,252,201912,493323 -CZ,SE,2,254,201912,40371 -CZ,SE,2,257,201912,3780504 -CZ,SE,2,259,201912,5542475 -CZ,SE,2,261,201912,5696948 -CZ,SE,2,262,201912,21096565 -CZ,SE,2,263,201912,14913728 -CZ,SE,2,264,201912,1412051 -CZ,SE,2,265,201912,2528630 -CZ,SE,2,266,201912,66274 -CZ,SE,2,267,201912,255640 -CZ,SE,2,268,201912,58776 -CZ,SE,2,271,201912,4421367 -CZ,SE,2,272,201912,612819 -CZ,SE,2,273,201912,948083 -CZ,SE,2,274,201912,687910 -CZ,SE,2,275,201912,503472 -CZ,SE,2,279,201912,2904520 -CZ,SE,2,281,201912,5094593 -CZ,SE,2,282,201912,11301819 -CZ,SE,2,283,201912,320303 -CZ,SE,2,284,201912,332246 -CZ,SE,2,289,201912,5603119 -CZ,SE,2,291,201912,27413107 -CZ,SE,2,292,201912,257360 -CZ,SE,2,293,201912,25398661 -CZ,SE,2,302,201912,217650 -CZ,SE,2,303,201912,136345 -CZ,SE,2,309,201912,281674 -CZ,SE,2,310,201912,16136890 -CZ,SE,2,321,201912,805 -CZ,SE,2,322,201912,6247 -CZ,SE,2,323,201912,753587 -CZ,SE,2,324,201912,4176799 -CZ,SE,2,325,201912,2806484 -CZ,SE,2,329,201912,291612 -CZ,SG,1,014,201912,509 -CZ,SG,1,030,201912,5424 -CZ,SG,1,089,201912,157 -CZ,SG,1,108,201912,103 -CZ,SG,1,139,201912,461 -CZ,SG,1,141,201912,2014 -CZ,SG,1,143,201912,159 -CZ,SG,1,151,201912,539 -CZ,SG,1,152,201912,109 -CZ,SG,1,162,201912,4440 -CZ,SG,1,172,201912,2406 -CZ,SG,1,201,201912,267 -CZ,SG,1,204,201912,2665 -CZ,SG,1,205,201912,40312 -CZ,SG,1,221,201912,5722 -CZ,SG,1,222,201912,119446 -CZ,SG,1,231,201912,435 -CZ,SG,1,234,201912,268 -CZ,SG,1,239,201912,933 -CZ,SG,1,242,201912,8808 -CZ,SG,1,243,201912,12895 -CZ,SG,1,244,201912,1083 -CZ,SG,1,254,201912,77 -CZ,SG,1,257,201912,9555 -CZ,SG,1,259,201912,134983 -CZ,SG,1,261,201912,8768043 -CZ,SG,1,262,201912,10073395 -CZ,SG,1,263,201912,2694018 -CZ,SG,1,264,201912,16993 -CZ,SG,1,265,201912,268563 -CZ,SG,1,266,201912,151598 -CZ,SG,1,267,201912,227673 -CZ,SG,1,268,201912,26527 -CZ,SG,1,271,201912,605127 -CZ,SG,1,272,201912,368 -CZ,SG,1,273,201912,516596 -CZ,SG,1,274,201912,11813 -CZ,SG,1,275,201912,46850 -CZ,SG,1,279,201912,282977 -CZ,SG,1,281,201912,45552 -CZ,SG,1,282,201912,568539 -CZ,SG,1,284,201912,1124 -CZ,SG,1,289,201912,1045 -CZ,SG,1,293,201912,528 -CZ,SG,1,303,201912,181508 -CZ,SG,1,309,201912,782964 -CZ,SG,1,310,201912,10729 -CZ,SG,1,321,201912,6127 -CZ,SG,1,322,201912,793 -CZ,SG,1,323,201912,63 -CZ,SG,1,324,201912,20108 -CZ,SG,1,325,201912,60011 -CZ,SG,1,329,201912,5561 -CZ,SG,2,089,201912,6491 -CZ,SG,2,108,201912,2971 -CZ,SG,2,110,201912,8902 -CZ,SG,2,139,201912,17166 -CZ,SG,2,141,201912,7144 -CZ,SG,2,143,201912,349 -CZ,SG,2,151,201912,2165 -CZ,SG,2,152,201912,361 -CZ,SG,2,162,201912,1320 -CZ,SG,2,171,201912,41129 -CZ,SG,2,172,201912,2580 -CZ,SG,2,201,201912,33657 -CZ,SG,2,203,201912,681 -CZ,SG,2,204,201912,42544 -CZ,SG,2,205,201912,16385 -CZ,SG,2,212,201912,21751 -CZ,SG,2,221,201912,25870 -CZ,SG,2,222,201912,792752 -CZ,SG,2,231,201912,116326 -CZ,SG,2,234,201912,1196 -CZ,SG,2,236,201912,1260 -CZ,SG,2,239,201912,15519 -CZ,SG,2,242,201912,461 -CZ,SG,2,243,201912,89947 -CZ,SG,2,244,201912,47941 -CZ,SG,2,251,201912,169967 -CZ,SG,2,254,201912,59442 -CZ,SG,2,257,201912,34725 -CZ,SG,2,259,201912,116018 -CZ,SG,2,261,201912,1908695 -CZ,SG,2,262,201912,5651209 -CZ,SG,2,263,201912,3850231 -CZ,SG,2,264,201912,954722 -CZ,SG,2,265,201912,908192 -CZ,SG,2,267,201912,391560 -CZ,SG,2,268,201912,13577 -CZ,SG,2,271,201912,521012 -CZ,SG,2,272,201912,129663 -CZ,SG,2,273,201912,766315 -CZ,SG,2,274,201912,123511 -CZ,SG,2,275,201912,1931848 -CZ,SG,2,279,201912,2154451 -CZ,SG,2,281,201912,1972112 -CZ,SG,2,282,201912,1926186 -CZ,SG,2,284,201912,34215 -CZ,SG,2,289,201912,456651 -CZ,SG,2,291,201912,639227 -CZ,SG,2,293,201912,27037 -CZ,SG,2,303,201912,1926153 -CZ,SG,2,309,201912,1055 -CZ,SG,2,310,201912,28750 -CZ,SG,2,321,201912,8172 -CZ,SG,2,322,201912,1231 -CZ,SG,2,323,201912,95952 -CZ,SG,2,324,201912,68322 -CZ,SG,2,325,201912,3608 -CZ,SG,2,329,201912,57603 -CZ,SH,2,281,201912,27316 -CZ,SI,1,011,201912,488 -CZ,SI,1,012,201912,114866 -CZ,SI,1,081,201912,147699 -CZ,SI,1,089,201912,174 -CZ,SI,1,101,201912,138129 -CZ,SI,1,103,201912,23823 -CZ,SI,1,104,201912,2154 -CZ,SI,1,105,201912,34290 -CZ,SI,1,106,201912,852 -CZ,SI,1,107,201912,44433 -CZ,SI,1,108,201912,932416 -CZ,SI,1,109,201912,2993 -CZ,SI,1,110,201912,52331 -CZ,SI,1,131,201912,55613 -CZ,SI,1,132,201912,124122 -CZ,SI,1,139,201912,688279 -CZ,SI,1,141,201912,97918 -CZ,SI,1,143,201912,4664 -CZ,SI,1,151,201912,302277 -CZ,SI,1,152,201912,58298 -CZ,SI,1,161,201912,195156 -CZ,SI,1,162,201912,93726 -CZ,SI,1,171,201912,653623 -CZ,SI,1,172,201912,210750 -CZ,SI,1,201,201912,1038675 -CZ,SI,1,202,201912,162523 -CZ,SI,1,203,201912,584629 -CZ,SI,1,204,201912,1435747 -CZ,SI,1,205,201912,537863 -CZ,SI,1,212,201912,7070221 -CZ,SI,1,221,201912,1021584 -CZ,SI,1,222,201912,1591226 -CZ,SI,1,231,201912,223230 -CZ,SI,1,232,201912,18036 -CZ,SI,1,233,201912,42515 -CZ,SI,1,234,201912,25116 -CZ,SI,1,235,201912,1391 -CZ,SI,1,236,201912,22547 -CZ,SI,1,239,201912,164788 -CZ,SI,1,241,201912,5429282 -CZ,SI,1,242,201912,269210 -CZ,SI,1,243,201912,1815523 -CZ,SI,1,244,201912,3077164 -CZ,SI,1,245,201912,2162 -CZ,SI,1,251,201912,206020 -CZ,SI,1,252,201912,13148 -CZ,SI,1,257,201912,1483540 -CZ,SI,1,259,201912,1091193 -CZ,SI,1,261,201912,200017 -CZ,SI,1,262,201912,91831 -CZ,SI,1,263,201912,231277 -CZ,SI,1,264,201912,40378 -CZ,SI,1,265,201912,485693 -CZ,SI,1,267,201912,9544 -CZ,SI,1,268,201912,7424 -CZ,SI,1,271,201912,1479371 -CZ,SI,1,272,201912,581792 -CZ,SI,1,273,201912,214829 -CZ,SI,1,274,201912,364213 -CZ,SI,1,275,201912,3089101 -CZ,SI,1,279,201912,712381 -CZ,SI,1,281,201912,1103136 -CZ,SI,1,282,201912,1327213 -CZ,SI,1,283,201912,718824 -CZ,SI,1,284,201912,74295 -CZ,SI,1,289,201912,612755 -CZ,SI,1,291,201912,5148789 -CZ,SI,1,292,201912,579 -CZ,SI,1,293,201912,3936051 -CZ,SI,1,302,201912,307773 -CZ,SI,1,309,201912,16875 -CZ,SI,1,310,201912,2270350 -CZ,SI,1,323,201912,370825 -CZ,SI,1,324,201912,111922 -CZ,SI,1,325,201912,158300 -CZ,SI,1,329,201912,174114 -CZ,SI,2,011,201912,118561 -CZ,SI,2,012,201912,8937 -CZ,SI,2,014,201912,1236325 -CZ,SI,2,022,201912,491851 -CZ,SI,2,030,201912,91746 -CZ,SI,2,052,201912,8263 -CZ,SI,2,081,201912,70211 -CZ,SI,2,089,201912,6139 -CZ,SI,2,101,201912,136450 -CZ,SI,2,102,201912,87233 -CZ,SI,2,103,201912,38600 -CZ,SI,2,104,201912,16562 -CZ,SI,2,105,201912,537692 -CZ,SI,2,106,201912,39163 -CZ,SI,2,107,201912,50109 -CZ,SI,2,108,201912,811532 -CZ,SI,2,109,201912,162112 -CZ,SI,2,110,201912,349361 -CZ,SI,2,120,201912,357963 -CZ,SI,2,131,201912,3852 -CZ,SI,2,132,201912,40197 -CZ,SI,2,139,201912,383139 -CZ,SI,2,141,201912,1364817 -CZ,SI,2,143,201912,442817 -CZ,SI,2,151,201912,213170 -CZ,SI,2,152,201912,368910 -CZ,SI,2,161,201912,2174423 -CZ,SI,2,162,201912,603027 -CZ,SI,2,171,201912,459261 -CZ,SI,2,172,201912,501187 -CZ,SI,2,191,201912,151829 -CZ,SI,2,192,201912,582930 -CZ,SI,2,201,201912,1633628 -CZ,SI,2,202,201912,42964 -CZ,SI,2,203,201912,36840 -CZ,SI,2,204,201912,1309131 -CZ,SI,2,205,201912,116436 -CZ,SI,2,206,201912,67445 -CZ,SI,2,211,201912,9039 -CZ,SI,2,212,201912,728633 -CZ,SI,2,221,201912,867413 -CZ,SI,2,222,201912,1025279 -CZ,SI,2,231,201912,575113 -CZ,SI,2,232,201912,47305 -CZ,SI,2,233,201912,7351 -CZ,SI,2,234,201912,84773 -CZ,SI,2,236,201912,158320 -CZ,SI,2,239,201912,132447 -CZ,SI,2,241,201912,1341415 -CZ,SI,2,242,201912,177011 -CZ,SI,2,243,201912,535560 -CZ,SI,2,244,201912,1443938 -CZ,SI,2,245,201912,27 -CZ,SI,2,251,201912,684293 -CZ,SI,2,252,201912,203858 -CZ,SI,2,254,201912,2114 -CZ,SI,2,257,201912,592051 -CZ,SI,2,259,201912,1090223 -CZ,SI,2,261,201912,202685 -CZ,SI,2,262,201912,1823700 -CZ,SI,2,263,201912,2221359 -CZ,SI,2,264,201912,876937 -CZ,SI,2,265,201912,528535 -CZ,SI,2,266,201912,49 -CZ,SI,2,267,201912,160321 -CZ,SI,2,268,201912,328 -CZ,SI,2,271,201912,656457 -CZ,SI,2,272,201912,139939 -CZ,SI,2,273,201912,400892 -CZ,SI,2,274,201912,938263 -CZ,SI,2,275,201912,764376 -CZ,SI,2,279,201912,381079 -CZ,SI,2,281,201912,871288 -CZ,SI,2,282,201912,941529 -CZ,SI,2,283,201912,44479 -CZ,SI,2,284,201912,196758 -CZ,SI,2,289,201912,1445375 -CZ,SI,2,291,201912,9364430 -CZ,SI,2,292,201912,147590 -CZ,SI,2,293,201912,2951469 -CZ,SI,2,301,201912,4295 -CZ,SI,2,302,201912,100156 -CZ,SI,2,303,201912,14237 -CZ,SI,2,309,201912,52460 -CZ,SI,2,310,201912,761430 -CZ,SI,2,321,201912,13792 -CZ,SI,2,322,201912,8935 -CZ,SI,2,323,201912,130078 -CZ,SI,2,324,201912,725154 -CZ,SI,2,325,201912,1568000 -CZ,SI,2,329,201912,274418 -CZ,SK,1,011,201912,12195679 -CZ,SK,1,012,201912,2575462 -CZ,SK,1,013,201912,32055 -CZ,SK,1,014,201912,1974561 -CZ,SK,1,022,201912,3059526 -CZ,SK,1,023,201912,17830 -CZ,SK,1,030,201912,35040 -CZ,SK,1,051,201912,106467 -CZ,SK,1,052,201912,328 -CZ,SK,1,062,201912,45366 -CZ,SK,1,071,201912,50786 -CZ,SK,1,081,201912,830757 -CZ,SK,1,089,201912,1096393 -CZ,SK,1,101,201912,8374630 -CZ,SK,1,102,201912,539388 -CZ,SK,1,103,201912,5527414 -CZ,SK,1,104,201912,1468659 -CZ,SK,1,105,201912,13938788 -CZ,SK,1,106,201912,2509470 -CZ,SK,1,107,201912,4148052 -CZ,SK,1,108,201912,10266429 -CZ,SK,1,109,201912,243856 -CZ,SK,1,110,201912,6427728 -CZ,SK,1,120,201912,6045 -CZ,SK,1,131,201912,102625 -CZ,SK,1,132,201912,224553 -CZ,SK,1,139,201912,3044100 -CZ,SK,1,141,201912,12304832 -CZ,SK,1,142,201912,9168 -CZ,SK,1,143,201912,2787308 -CZ,SK,1,151,201912,1183327 -CZ,SK,1,152,201912,4133994 -CZ,SK,1,161,201912,1928575 -CZ,SK,1,162,201912,3157318 -CZ,SK,1,171,201912,4487405 -CZ,SK,1,172,201912,7776043 -CZ,SK,1,181,201912,19317 -CZ,SK,1,191,201912,3391 -CZ,SK,1,192,201912,51636778 -CZ,SK,1,201,201912,21357292 -CZ,SK,1,202,201912,208786 -CZ,SK,1,203,201912,1749177 -CZ,SK,1,204,201912,6646335 -CZ,SK,1,205,201912,6522873 -CZ,SK,1,206,201912,1283075 -CZ,SK,1,211,201912,208082 -CZ,SK,1,212,201912,20286233 -CZ,SK,1,221,201912,9332449 -CZ,SK,1,222,201912,15405838 -CZ,SK,1,231,201912,3271427 -CZ,SK,1,232,201912,1753261 -CZ,SK,1,233,201912,430028 -CZ,SK,1,234,201912,398267 -CZ,SK,1,235,201912,1266202 -CZ,SK,1,236,201912,1500684 -CZ,SK,1,237,201912,1705 -CZ,SK,1,239,201912,848846 -CZ,SK,1,241,201912,43210676 -CZ,SK,1,242,201912,1558076 -CZ,SK,1,243,201912,4908556 -CZ,SK,1,244,201912,7010884 -CZ,SK,1,245,201912,51473 -CZ,SK,1,251,201912,3565005 -CZ,SK,1,252,201912,1360497 -CZ,SK,1,253,201912,30097 -CZ,SK,1,254,201912,161795 -CZ,SK,1,257,201912,4673236 -CZ,SK,1,259,201912,12422687 -CZ,SK,1,261,201912,1452197 -CZ,SK,1,262,201912,12364661 -CZ,SK,1,263,201912,25572815 -CZ,SK,1,264,201912,24000715 -CZ,SK,1,265,201912,4130943 -CZ,SK,1,266,201912,251752 -CZ,SK,1,267,201912,1329949 -CZ,SK,1,268,201912,4150 -CZ,SK,1,271,201912,6560623 -CZ,SK,1,272,201912,556298 -CZ,SK,1,273,201912,2266487 -CZ,SK,1,274,201912,5419794 -CZ,SK,1,275,201912,15314030 -CZ,SK,1,279,201912,2912562 -CZ,SK,1,281,201912,11494967 -CZ,SK,1,282,201912,13060715 -CZ,SK,1,283,201912,3234360 -CZ,SK,1,284,201912,2267284 -CZ,SK,1,289,201912,7453234 -CZ,SK,1,291,201912,32474599 -CZ,SK,1,292,201912,1679977 -CZ,SK,1,293,201912,62998840 -CZ,SK,1,301,201912,50780 -CZ,SK,1,302,201912,4666141 -CZ,SK,1,303,201912,1310823 -CZ,SK,1,309,201912,1441214 -CZ,SK,1,310,201912,9295662 -CZ,SK,1,321,201912,3249004 -CZ,SK,1,322,201912,205573 -CZ,SK,1,323,201912,819093 -CZ,SK,1,324,201912,13085966 -CZ,SK,1,325,201912,2546101 -CZ,SK,1,329,201912,2020755 -CZ,SK,1,351,201912,15363796 -CZ,SK,2,011,201912,8668770 -CZ,SK,2,012,201912,8048992 -CZ,SK,2,013,201912,307612 -CZ,SK,2,014,201912,4239198 -CZ,SK,2,022,201912,3434225 -CZ,SK,2,023,201912,24244 -CZ,SK,2,030,201912,1674008 -CZ,SK,2,051,201912,2786142 -CZ,SK,2,052,201912,1578705 -CZ,SK,2,062,201912,126790 -CZ,SK,2,081,201912,1216293 -CZ,SK,2,089,201912,700795 -CZ,SK,2,101,201912,20081698 -CZ,SK,2,102,201912,6054347 -CZ,SK,2,103,201912,7624899 -CZ,SK,2,104,201912,3899341 -CZ,SK,2,105,201912,19849157 -CZ,SK,2,106,201912,3878268 -CZ,SK,2,107,201912,10477665 -CZ,SK,2,108,201912,25319386 -CZ,SK,2,109,201912,6116627 -CZ,SK,2,110,201912,14130021 -CZ,SK,2,120,201912,1677554 -CZ,SK,2,131,201912,189704 -CZ,SK,2,132,201912,2142913 -CZ,SK,2,139,201912,7471187 -CZ,SK,2,141,201912,9075167 -CZ,SK,2,142,201912,74571 -CZ,SK,2,143,201912,1766060 -CZ,SK,2,151,201912,2072174 -CZ,SK,2,152,201912,4186613 -CZ,SK,2,161,201912,3063747 -CZ,SK,2,162,201912,5240369 -CZ,SK,2,171,201912,3369849 -CZ,SK,2,172,201912,10623321 -CZ,SK,2,181,201912,52602 -CZ,SK,2,191,201912,1079503 -CZ,SK,2,192,201912,23131381 -CZ,SK,2,201,201912,15719921 -CZ,SK,2,202,201912,1155560 -CZ,SK,2,203,201912,5322925 -CZ,SK,2,204,201912,23576741 -CZ,SK,2,205,201912,9053833 -CZ,SK,2,206,201912,355565 -CZ,SK,2,211,201912,636768 -CZ,SK,2,212,201912,28867843 -CZ,SK,2,221,201912,15631002 -CZ,SK,2,222,201912,28785915 -CZ,SK,2,231,201912,6189590 -CZ,SK,2,232,201912,694608 -CZ,SK,2,233,201912,1729364 -CZ,SK,2,234,201912,2187510 -CZ,SK,2,235,201912,1232564 -CZ,SK,2,236,201912,2509225 -CZ,SK,2,237,201912,97995 -CZ,SK,2,239,201912,2472279 -CZ,SK,2,241,201912,18922707 -CZ,SK,2,242,201912,3327228 -CZ,SK,2,243,201912,5444113 -CZ,SK,2,244,201912,7908903 -CZ,SK,2,245,201912,77784 -CZ,SK,2,251,201912,8413030 -CZ,SK,2,252,201912,2306910 -CZ,SK,2,253,201912,22539 -CZ,SK,2,254,201912,424687 -CZ,SK,2,257,201912,9106216 -CZ,SK,2,259,201912,20029087 -CZ,SK,2,261,201912,4242964 -CZ,SK,2,262,201912,39667130 -CZ,SK,2,263,201912,43511611 -CZ,SK,2,264,201912,15795762 -CZ,SK,2,265,201912,10792861 -CZ,SK,2,266,201912,1027997 -CZ,SK,2,267,201912,2232114 -CZ,SK,2,268,201912,121556 -CZ,SK,2,271,201912,11259105 -CZ,SK,2,272,201912,2855053 -CZ,SK,2,273,201912,8633799 -CZ,SK,2,274,201912,12860003 -CZ,SK,2,275,201912,21706777 -CZ,SK,2,279,201912,7048239 -CZ,SK,2,281,201912,19075124 -CZ,SK,2,282,201912,28134055 -CZ,SK,2,283,201912,8656364 -CZ,SK,2,284,201912,8780094 -CZ,SK,2,289,201912,15427957 -CZ,SK,2,291,201912,56305089 -CZ,SK,2,292,201912,2464781 -CZ,SK,2,293,201912,82722529 -CZ,SK,2,301,201912,35133 -CZ,SK,2,302,201912,5272729 -CZ,SK,2,303,201912,2423115 -CZ,SK,2,309,201912,2639257 -CZ,SK,2,310,201912,20120907 -CZ,SK,2,321,201912,3439409 -CZ,SK,2,322,201912,799000 -CZ,SK,2,323,201912,3520686 -CZ,SK,2,324,201912,14021678 -CZ,SK,2,325,201912,9376545 -CZ,SK,2,329,201912,4784773 -CZ,SK,2,351,201912,52333374 -CZ,SM,2,162,201912,49 -CZ,SM,2,172,201912,3925 -CZ,SM,2,231,201912,2094 -CZ,SM,2,257,201912,5136 -CZ,SM,2,282,201912,1 -CZ,SN,2,132,201912,912444 -CZ,SN,2,141,201912,185496 -CZ,SN,2,151,201912,2557 -CZ,SN,2,171,201912,3375 -CZ,SN,2,201,201912,58430 -CZ,SN,2,257,201912,1710 -CZ,SN,2,259,201912,7653 -CZ,SN,2,262,201912,107374 -CZ,SN,2,279,201912,2655 -CZ,SN,2,281,201912,3999 -CZ,SN,2,310,201912,41 -CZ,SN,2,329,201912,2881 -CZ,SV,1,279,201912,1083399 -CZ,SV,2,201,201912,457 -CZ,SV,2,205,201912,146 -CZ,SV,2,222,201912,145 -CZ,SV,2,265,201912,10 -CZ,SV,2,279,201912,1590 -CZ,SV,2,282,201912,2735 -CZ,SV,2,289,201912,99075 -CZ,SY,2,105,201912,184835 -CZ,SY,2,139,201912,3 -CZ,SY,2,151,201912,664 -CZ,SY,2,203,201912,29988 -CZ,SY,2,204,201912,31184 -CZ,SY,2,222,201912,4 -CZ,SY,2,231,201912,76205 -CZ,SY,2,236,201912,21437 -CZ,SZ,2,201,201912,1396 -CZ,TG,2,221,201912,142839 -CZ,TG,2,257,201912,84723 -CZ,TG,2,259,201912,61 -CZ,TH,1,011,201912,89740 -CZ,TH,1,012,201912,288999 -CZ,TH,1,013,201912,5319 -CZ,TH,1,014,201912,1338 -CZ,TH,1,030,201912,27656 -CZ,TH,1,103,201912,88438 -CZ,TH,1,106,201912,955112 -CZ,TH,1,108,201912,69937 -CZ,TH,1,110,201912,22627 -CZ,TH,1,139,201912,166951 -CZ,TH,1,141,201912,138826 -CZ,TH,1,143,201912,4602 -CZ,TH,1,151,201912,10880 -CZ,TH,1,162,201912,3119 -CZ,TH,1,171,201912,440 -CZ,TH,1,172,201912,398871 -CZ,TH,1,201,201912,358412 -CZ,TH,1,203,201912,17945 -CZ,TH,1,204,201912,525 -CZ,TH,1,206,201912,420593 -CZ,TH,1,212,201912,55 -CZ,TH,1,221,201912,905788 -CZ,TH,1,222,201912,986023 -CZ,TH,1,231,201912,32493 -CZ,TH,1,233,201912,42079 -CZ,TH,1,234,201912,262 -CZ,TH,1,239,201912,916186 -CZ,TH,1,242,201912,79642 -CZ,TH,1,243,201912,119883 -CZ,TH,1,244,201912,861569 -CZ,TH,1,257,201912,870905 -CZ,TH,1,259,201912,224118 -CZ,TH,1,261,201912,1779936 -CZ,TH,1,262,201912,26882396 -CZ,TH,1,263,201912,5116254 -CZ,TH,1,264,201912,2224991 -CZ,TH,1,265,201912,1519306 -CZ,TH,1,267,201912,116614 -CZ,TH,1,271,201912,1351835 -CZ,TH,1,272,201912,41530 -CZ,TH,1,273,201912,251683 -CZ,TH,1,274,201912,137237 -CZ,TH,1,275,201912,8687 -CZ,TH,1,279,201912,1832007 -CZ,TH,1,281,201912,1526653 -CZ,TH,1,282,201912,3297040 -CZ,TH,1,289,201912,56178 -CZ,TH,1,293,201912,2625921 -CZ,TH,1,310,201912,164786 -CZ,TH,1,321,201912,169667 -CZ,TH,1,323,201912,2324 -CZ,TH,1,324,201912,414386 -CZ,TH,1,325,201912,793217 -CZ,TH,1,329,201912,4183 -CZ,TH,2,014,201912,13176 -CZ,TH,2,105,201912,126300 -CZ,TH,2,108,201912,18 -CZ,TH,2,109,201912,19149 -CZ,TH,2,131,201912,69293 -CZ,TH,2,139,201912,120669 -CZ,TH,2,141,201912,3014 -CZ,TH,2,143,201912,3330 -CZ,TH,2,162,201912,1305 -CZ,TH,2,171,201912,30096 -CZ,TH,2,172,201912,17681 -CZ,TH,2,201,201912,1479659 -CZ,TH,2,204,201912,44917 -CZ,TH,2,205,201912,19067 -CZ,TH,2,211,201912,135845 -CZ,TH,2,212,201912,118427 -CZ,TH,2,221,201912,122686 -CZ,TH,2,222,201912,1328078 -CZ,TH,2,231,201912,45670 -CZ,TH,2,236,201912,37242 -CZ,TH,2,241,201912,60029 -CZ,TH,2,242,201912,57 -CZ,TH,2,243,201912,97 -CZ,TH,2,244,201912,2567 -CZ,TH,2,254,201912,336967 -CZ,TH,2,257,201912,60124 -CZ,TH,2,259,201912,229745 -CZ,TH,2,261,201912,88743 -CZ,TH,2,262,201912,8325 -CZ,TH,2,263,201912,36521 -CZ,TH,2,264,201912,6345 -CZ,TH,2,265,201912,114363 -CZ,TH,2,267,201912,61373 -CZ,TH,2,271,201912,414814 -CZ,TH,2,272,201912,47998 -CZ,TH,2,273,201912,540798 -CZ,TH,2,274,201912,27544 -CZ,TH,2,275,201912,9236 -CZ,TH,2,279,201912,89541 -CZ,TH,2,281,201912,1972613 -CZ,TH,2,282,201912,687512 -CZ,TH,2,284,201912,92743 -CZ,TH,2,289,201912,372983 -CZ,TH,2,293,201912,194832 -CZ,TH,2,302,201912,53893 -CZ,TH,2,309,201912,58515 -CZ,TH,2,310,201912,11603 -CZ,TH,2,321,201912,92110 -CZ,TH,2,322,201912,4191 -CZ,TH,2,323,201912,30509 -CZ,TH,2,324,201912,16194 -CZ,TH,2,325,201912,500638 -CZ,TH,2,329,201912,22075 -CZ,TJ,2,162,201912,143 -CZ,TJ,2,172,201912,5663 -CZ,TJ,2,204,201912,108853 -CZ,TJ,2,221,201912,11 -CZ,TJ,2,222,201912,78426 -CZ,TJ,2,243,201912,828 -CZ,TJ,2,257,201912,2472 -CZ,TJ,2,259,201912,2380 -CZ,TJ,2,262,201912,273010 -CZ,TJ,2,263,201912,135 -CZ,TJ,2,273,201912,212 -CZ,TJ,2,279,201912,2598 -CZ,TJ,2,281,201912,3209 -CZ,TJ,2,282,201912,38 -CZ,TJ,2,289,201912,2666 -CZ,TJ,2,293,201912,6 -CZ,TJ,2,329,201912,796 -CZ,TL,2,162,201912,112 -CZ,TL,2,262,201912,11424 -CZ,TL,2,263,201912,4044 -CZ,TL,2,273,201912,177 -CZ,TM,1,131,201912,33711 -CZ,TM,2,204,201912,43089 -CZ,TM,2,212,201912,37854 -CZ,TM,2,221,201912,50461 -CZ,TM,2,257,201912,1877 -CZ,TM,2,259,201912,705 -CZ,TM,2,262,201912,42758 -CZ,TM,2,263,201912,52356 -CZ,TM,2,264,201912,82512 -CZ,TM,2,265,201912,3213 -CZ,TM,2,271,201912,11616 -CZ,TM,2,274,201912,7670 -CZ,TM,2,275,201912,6405 -CZ,TM,2,279,201912,8068 -CZ,TM,2,281,201912,2862 -CZ,TM,2,282,201912,4900 -CZ,TN,1,141,201912,1415587 -CZ,TN,1,201,201912,200 -CZ,TN,1,222,201912,20938 -CZ,TN,1,257,201912,24148 -CZ,TN,1,259,201912,5102 -CZ,TN,1,261,201912,3472 -CZ,TN,1,262,201912,23726 -CZ,TN,1,263,201912,2035 -CZ,TN,1,271,201912,2726 -CZ,TN,1,273,201912,4332 -CZ,TN,1,279,201912,74653 -CZ,TN,1,281,201912,793557 -CZ,TN,1,282,201912,608081 -CZ,TN,1,293,201912,551784 -CZ,TN,1,310,201912,893715 -CZ,TN,1,329,201912,12683 -CZ,TN,2,106,201912,20666 -CZ,TN,2,109,201912,31000 -CZ,TN,2,132,201912,196510 -CZ,TN,2,139,201912,83814 -CZ,TN,2,151,201912,6793 -CZ,TN,2,162,201912,63451 -CZ,TN,2,172,201912,134 -CZ,TN,2,201,201912,225656 -CZ,TN,2,203,201912,5644 -CZ,TN,2,205,201912,31913 -CZ,TN,2,211,201912,421 -CZ,TN,2,221,201912,217694 -CZ,TN,2,222,201912,345835 -CZ,TN,2,231,201912,140515 -CZ,TN,2,234,201912,205 -CZ,TN,2,239,201912,1287 -CZ,TN,2,242,201912,57211 -CZ,TN,2,244,201912,22026 -CZ,TN,2,257,201912,120184 -CZ,TN,2,259,201912,81060 -CZ,TN,2,261,201912,59138 -CZ,TN,2,262,201912,651292 -CZ,TN,2,263,201912,78087 -CZ,TN,2,264,201912,1442 -CZ,TN,2,265,201912,30739 -CZ,TN,2,271,201912,480002 -CZ,TN,2,272,201912,1433 -CZ,TN,2,273,201912,1978998 -CZ,TN,2,274,201912,14311 -CZ,TN,2,279,201912,572775 -CZ,TN,2,281,201912,1771622 -CZ,TN,2,282,201912,60280 -CZ,TN,2,284,201912,3914 -CZ,TN,2,289,201912,456633 -CZ,TN,2,293,201912,86504 -CZ,TN,2,303,201912,1258 -CZ,TN,2,310,201912,28411 -CZ,TN,2,324,201912,8147 -CZ,TN,2,325,201912,82920 -CZ,TN,2,329,201912,165 -CZ,TR,1,011,201912,176589 -CZ,TR,1,012,201912,1880145 -CZ,TR,1,081,201912,306843 -CZ,TR,1,089,201912,112145 -CZ,TR,1,102,201912,348065 -CZ,TR,1,103,201912,1208851 -CZ,TR,1,106,201912,76180 -CZ,TR,1,107,201912,68142 -CZ,TR,1,108,201912,1806275 -CZ,TR,1,110,201912,124 -CZ,TR,1,131,201912,657526 -CZ,TR,1,132,201912,376353 -CZ,TR,1,139,201912,3694506 -CZ,TR,1,141,201912,5471441 -CZ,TR,1,142,201912,7368 -CZ,TR,1,143,201912,1995742 -CZ,TR,1,151,201912,32222 -CZ,TR,1,152,201912,112460 -CZ,TR,1,162,201912,35700 -CZ,TR,1,171,201912,13161 -CZ,TR,1,172,201912,409744 -CZ,TR,1,201,201912,812874 -CZ,TR,1,203,201912,82558 -CZ,TR,1,204,201912,4747064 -CZ,TR,1,205,201912,49659 -CZ,TR,1,206,201912,237392 -CZ,TR,1,212,201912,126273 -CZ,TR,1,221,201912,1875066 -CZ,TR,1,222,201912,4662645 -CZ,TR,1,231,201912,327377 -CZ,TR,1,232,201912,246 -CZ,TR,1,233,201912,185070 -CZ,TR,1,234,201912,576261 -CZ,TR,1,237,201912,25822 -CZ,TR,1,239,201912,64122 -CZ,TR,1,241,201912,144648 -CZ,TR,1,242,201912,475126 -CZ,TR,1,243,201912,43899 -CZ,TR,1,244,201912,3346132 -CZ,TR,1,251,201912,236691 -CZ,TR,1,252,201912,636983 -CZ,TR,1,254,201912,257055 -CZ,TR,1,257,201912,621422 -CZ,TR,1,259,201912,2382867 -CZ,TR,1,261,201912,16787 -CZ,TR,1,262,201912,38138 -CZ,TR,1,263,201912,126431 -CZ,TR,1,264,201912,3051985 -CZ,TR,1,265,201912,197383 -CZ,TR,1,267,201912,3489 -CZ,TR,1,271,201912,1114116 -CZ,TR,1,272,201912,44539 -CZ,TR,1,273,201912,446882 -CZ,TR,1,274,201912,241726 -CZ,TR,1,275,201912,5076507 -CZ,TR,1,279,201912,95709 -CZ,TR,1,281,201912,6095958 -CZ,TR,1,282,201912,974901 -CZ,TR,1,283,201912,239722 -CZ,TR,1,284,201912,918427 -CZ,TR,1,289,201912,1388099 -CZ,TR,1,291,201912,5225707 -CZ,TR,1,292,201912,23232 -CZ,TR,1,293,201912,7885323 -CZ,TR,1,302,201912,73649 -CZ,TR,1,309,201912,36730 -CZ,TR,1,310,201912,3091875 -CZ,TR,1,321,201912,1290940 -CZ,TR,1,322,201912,15792 -CZ,TR,1,324,201912,24596 -CZ,TR,1,325,201912,375516 -CZ,TR,1,329,201912,53413 -CZ,TR,1,351,201912,839507 -CZ,TR,2,014,201912,1820303 -CZ,TR,2,081,201912,18395 -CZ,TR,2,103,201912,8 -CZ,TR,2,105,201912,62347 -CZ,TR,2,106,201912,4600 -CZ,TR,2,107,201912,62619 -CZ,TR,2,108,201912,382418 -CZ,TR,2,109,201912,226429 -CZ,TR,2,110,201912,42506 -CZ,TR,2,131,201912,1847623 -CZ,TR,2,132,201912,1363023 -CZ,TR,2,139,201912,1506530 -CZ,TR,2,141,201912,183011 -CZ,TR,2,143,201912,12291 -CZ,TR,2,151,201912,155174 -CZ,TR,2,152,201912,220637 -CZ,TR,2,162,201912,3141 -CZ,TR,2,171,201912,1157619 -CZ,TR,2,172,201912,1496919 -CZ,TR,2,181,201912,6165 -CZ,TR,2,192,201912,20416 -CZ,TR,2,201,201912,5113758 -CZ,TR,2,202,201912,18199 -CZ,TR,2,203,201912,70857 -CZ,TR,2,204,201912,2321293 -CZ,TR,2,205,201912,704470 -CZ,TR,2,206,201912,82942 -CZ,TR,2,211,201912,17247 -CZ,TR,2,212,201912,24046 -CZ,TR,2,221,201912,2698007 -CZ,TR,2,222,201912,3767687 -CZ,TR,2,231,201912,655605 -CZ,TR,2,232,201912,425927 -CZ,TR,2,234,201912,38533 -CZ,TR,2,235,201912,10702 -CZ,TR,2,236,201912,14142 -CZ,TR,2,239,201912,62533 -CZ,TR,2,241,201912,487894 -CZ,TR,2,242,201912,101092 -CZ,TR,2,243,201912,54699 -CZ,TR,2,244,201912,1520502 -CZ,TR,2,251,201912,246506 -CZ,TR,2,252,201912,25380 -CZ,TR,2,257,201912,1840307 -CZ,TR,2,259,201912,1610809 -CZ,TR,2,261,201912,1380150 -CZ,TR,2,262,201912,12560816 -CZ,TR,2,263,201912,799130 -CZ,TR,2,264,201912,738810 -CZ,TR,2,265,201912,3437818 -CZ,TR,2,267,201912,57744 -CZ,TR,2,268,201912,58101 -CZ,TR,2,271,201912,4527283 -CZ,TR,2,272,201912,2556 -CZ,TR,2,273,201912,2446693 -CZ,TR,2,274,201912,235743 -CZ,TR,2,275,201912,433562 -CZ,TR,2,279,201912,3072377 -CZ,TR,2,281,201912,13778935 -CZ,TR,2,282,201912,6890067 -CZ,TR,2,284,201912,4725059 -CZ,TR,2,289,201912,1845951 -CZ,TR,2,291,201912,45837145 -CZ,TR,2,292,201912,165341 -CZ,TR,2,293,201912,15051560 -CZ,TR,2,302,201912,480581 -CZ,TR,2,303,201912,260150 -CZ,TR,2,309,201912,145313 -CZ,TR,2,310,201912,141142 -CZ,TR,2,321,201912,27920 -CZ,TR,2,323,201912,19658 -CZ,TR,2,324,201912,1517330 -CZ,TR,2,325,201912,327552 -CZ,TR,2,329,201912,131816 -CZ,TR,2,351,201912,775906 -CZ,TT,2,293,201912,1124 -CZ,TW,1,012,201912,5179 -CZ,TW,1,014,201912,1027 -CZ,TW,1,103,201912,2410 -CZ,TW,1,108,201912,160469 -CZ,TW,1,110,201912,56079 -CZ,TW,1,131,201912,1815 -CZ,TW,1,132,201912,42134 -CZ,TW,1,139,201912,940966 -CZ,TW,1,141,201912,12362 -CZ,TW,1,143,201912,133 -CZ,TW,1,151,201912,14395 -CZ,TW,1,152,201912,2094 -CZ,TW,1,162,201912,9218 -CZ,TW,1,171,201912,950 -CZ,TW,1,172,201912,63049 -CZ,TW,1,192,201912,1644 -CZ,TW,1,201,201912,200495 -CZ,TW,1,203,201912,994 -CZ,TW,1,204,201912,5354 -CZ,TW,1,205,201912,97301 -CZ,TW,1,206,201912,72801 -CZ,TW,1,211,201912,98717 -CZ,TW,1,212,201912,26334 -CZ,TW,1,221,201912,184315 -CZ,TW,1,222,201912,490979 -CZ,TW,1,231,201912,213811 -CZ,TW,1,234,201912,2730 -CZ,TW,1,239,201912,18698 -CZ,TW,1,241,201912,1451932 -CZ,TW,1,242,201912,32394 -CZ,TW,1,243,201912,52396 -CZ,TW,1,244,201912,74752 -CZ,TW,1,254,201912,148553 -CZ,TW,1,257,201912,1449810 -CZ,TW,1,259,201912,1869607 -CZ,TW,1,261,201912,1824709 -CZ,TW,1,262,201912,11062045 -CZ,TW,1,263,201912,4518325 -CZ,TW,1,264,201912,216594 -CZ,TW,1,265,201912,462668 -CZ,TW,1,266,201912,819 -CZ,TW,1,267,201912,277249 -CZ,TW,1,271,201912,221306 -CZ,TW,1,272,201912,268124 -CZ,TW,1,273,201912,379831 -CZ,TW,1,274,201912,399553 -CZ,TW,1,275,201912,113738 -CZ,TW,1,279,201912,1168266 -CZ,TW,1,281,201912,1095950 -CZ,TW,1,282,201912,988789 -CZ,TW,1,283,201912,705436 -CZ,TW,1,284,201912,3736553 -CZ,TW,1,289,201912,524979 -CZ,TW,1,292,201912,12008 -CZ,TW,1,293,201912,295883 -CZ,TW,1,309,201912,2187364 -CZ,TW,1,310,201912,389697 -CZ,TW,1,321,201912,3104 -CZ,TW,1,322,201912,36668 -CZ,TW,1,323,201912,143266 -CZ,TW,1,324,201912,919916 -CZ,TW,1,325,201912,745288 -CZ,TW,1,329,201912,660282 -CZ,TW,2,089,201912,3221 -CZ,TW,2,108,201912,203320 -CZ,TW,2,110,201912,37198 -CZ,TW,2,132,201912,5416 -CZ,TW,2,139,201912,30988 -CZ,TW,2,141,201912,7090 -CZ,TW,2,151,201912,274704 -CZ,TW,2,152,201912,406 -CZ,TW,2,161,201912,404832 -CZ,TW,2,162,201912,431 -CZ,TW,2,171,201912,26057 -CZ,TW,2,172,201912,13508 -CZ,TW,2,192,201912,634 -CZ,TW,2,201,201912,73106 -CZ,TW,2,204,201912,1666 -CZ,TW,2,205,201912,4351 -CZ,TW,2,211,201912,106493 -CZ,TW,2,212,201912,103837 -CZ,TW,2,221,201912,457557 -CZ,TW,2,222,201912,271982 -CZ,TW,2,231,201912,324609 -CZ,TW,2,239,201912,7627 -CZ,TW,2,241,201912,1996313 -CZ,TW,2,257,201912,4900 -CZ,TW,2,259,201912,62764 -CZ,TW,2,261,201912,17348 -CZ,TW,2,262,201912,115962 -CZ,TW,2,263,201912,3118 -CZ,TW,2,264,201912,16931 -CZ,TW,2,265,201912,258094 -CZ,TW,2,267,201912,5942 -CZ,TW,2,271,201912,877765 -CZ,TW,2,273,201912,51567 -CZ,TW,2,274,201912,26823 -CZ,TW,2,279,201912,295758 -CZ,TW,2,281,201912,1102631 -CZ,TW,2,282,201912,518342 -CZ,TW,2,284,201912,252 -CZ,TW,2,289,201912,180865 -CZ,TW,2,291,201912,3121384 -CZ,TW,2,293,201912,54447 -CZ,TW,2,309,201912,20941 -CZ,TW,2,323,201912,3907 -CZ,TW,2,324,201912,77959 -CZ,TW,2,329,201912,11593 -CZ,TZ,1,271,201912,2333 -CZ,TZ,2,141,201912,102232 -CZ,TZ,2,201,201912,21 -CZ,TZ,2,205,201912,248448 -CZ,TZ,2,221,201912,319 -CZ,TZ,2,222,201912,14845 -CZ,TZ,2,231,201912,9197 -CZ,TZ,2,242,201912,187 -CZ,TZ,2,259,201912,3644 -CZ,TZ,2,261,201912,5261 -CZ,TZ,2,262,201912,216078 -CZ,TZ,2,263,201912,4550 -CZ,TZ,2,271,201912,1814 -CZ,TZ,2,273,201912,842 -CZ,TZ,2,279,201912,2585 -CZ,TZ,2,281,201912,28629 -CZ,TZ,2,282,201912,16925 -CZ,TZ,2,289,201912,742002 -CZ,TZ,2,310,201912,357 -CZ,UA,1,011,201912,241661 -CZ,UA,1,022,201912,29433 -CZ,UA,1,071,201912,25542837 -CZ,UA,1,072,201912,2254177 -CZ,UA,1,081,201912,63837 -CZ,UA,1,089,201912,33261 -CZ,UA,1,103,201912,1948598 -CZ,UA,1,104,201912,561264 -CZ,UA,1,106,201912,226952 -CZ,UA,1,107,201912,170851 -CZ,UA,1,108,201912,766684 -CZ,UA,1,109,201912,14376 -CZ,UA,1,110,201912,27371 -CZ,UA,1,139,201912,184474 -CZ,UA,1,141,201912,754913 -CZ,UA,1,143,201912,921 -CZ,UA,1,151,201912,606 -CZ,UA,1,152,201912,39961 -CZ,UA,1,161,201912,811832 -CZ,UA,1,162,201912,1299144 -CZ,UA,1,171,201912,435295 -CZ,UA,1,172,201912,1077624 -CZ,UA,1,181,201912,3093 -CZ,UA,1,201,201912,2003700 -CZ,UA,1,203,201912,28 -CZ,UA,1,204,201912,185827 -CZ,UA,1,205,201912,14719 -CZ,UA,1,221,201912,4003 -CZ,UA,1,222,201912,81009 -CZ,UA,1,231,201912,50818 -CZ,UA,1,233,201912,32321 -CZ,UA,1,234,201912,23460 -CZ,UA,1,236,201912,46011 -CZ,UA,1,239,201912,165986 -CZ,UA,1,241,201912,1148304 -CZ,UA,1,242,201912,136759 -CZ,UA,1,243,201912,332855 -CZ,UA,1,244,201912,255668 -CZ,UA,1,251,201912,184343 -CZ,UA,1,254,201912,106223 -CZ,UA,1,257,201912,15183 -CZ,UA,1,259,201912,572009 -CZ,UA,1,261,201912,47779 -CZ,UA,1,262,201912,392981 -CZ,UA,1,263,201912,341941 -CZ,UA,1,264,201912,85517 -CZ,UA,1,265,201912,260519 -CZ,UA,1,266,201912,73574 -CZ,UA,1,271,201912,1959762 -CZ,UA,1,272,201912,6381 -CZ,UA,1,273,201912,600936 -CZ,UA,1,274,201912,6271 -CZ,UA,1,275,201912,374886 -CZ,UA,1,279,201912,1169774 -CZ,UA,1,281,201912,156465 -CZ,UA,1,282,201912,496215 -CZ,UA,1,284,201912,29129 -CZ,UA,1,289,201912,168993 -CZ,UA,1,291,201912,64839 -CZ,UA,1,292,201912,160381 -CZ,UA,1,293,201912,2042386 -CZ,UA,1,301,201912,46995 -CZ,UA,1,302,201912,74771 -CZ,UA,1,303,201912,288854 -CZ,UA,1,309,201912,14929 -CZ,UA,1,310,201912,1073099 -CZ,UA,1,321,201912,4331 -CZ,UA,1,323,201912,9327 -CZ,UA,1,324,201912,30392 -CZ,UA,1,325,201912,65240 -CZ,UA,1,329,201912,23124 -CZ,UA,2,011,201912,94202 -CZ,UA,2,012,201912,55714 -CZ,UA,2,014,201912,502193 -CZ,UA,2,062,201912,3706676 -CZ,UA,2,081,201912,9516 -CZ,UA,2,089,201912,29580 -CZ,UA,2,101,201912,12 -CZ,UA,2,103,201912,12877 -CZ,UA,2,104,201912,42647 -CZ,UA,2,105,201912,62744 -CZ,UA,2,106,201912,169533 -CZ,UA,2,107,201912,32476 -CZ,UA,2,108,201912,947687 -CZ,UA,2,109,201912,363525 -CZ,UA,2,110,201912,239794 -CZ,UA,2,131,201912,15242 -CZ,UA,2,132,201912,367405 -CZ,UA,2,139,201912,682794 -CZ,UA,2,141,201912,381395 -CZ,UA,2,143,201912,75422 -CZ,UA,2,151,201912,181046 -CZ,UA,2,152,201912,99602 -CZ,UA,2,162,201912,205445 -CZ,UA,2,171,201912,324231 -CZ,UA,2,172,201912,2343100 -CZ,UA,2,181,201912,7700 -CZ,UA,2,192,201912,363747 -CZ,UA,2,201,201912,3141804 -CZ,UA,2,202,201912,138433 -CZ,UA,2,203,201912,708071 -CZ,UA,2,204,201912,3344971 -CZ,UA,2,205,201912,1293556 -CZ,UA,2,206,201912,32813 -CZ,UA,2,211,201912,49991 -CZ,UA,2,212,201912,2479842 -CZ,UA,2,221,201912,1334215 -CZ,UA,2,222,201912,3123328 -CZ,UA,2,231,201912,989013 -CZ,UA,2,232,201912,83805 -CZ,UA,2,233,201912,203746 -CZ,UA,2,234,201912,121377 -CZ,UA,2,235,201912,110489 -CZ,UA,2,236,201912,26642 -CZ,UA,2,237,201912,328 -CZ,UA,2,239,201912,65399 -CZ,UA,2,241,201912,608787 -CZ,UA,2,242,201912,124113 -CZ,UA,2,243,201912,298842 -CZ,UA,2,244,201912,282761 -CZ,UA,2,251,201912,3694258 -CZ,UA,2,252,201912,187709 -CZ,UA,2,253,201912,5023201 -CZ,UA,2,254,201912,123246 -CZ,UA,2,257,201912,444135 -CZ,UA,2,259,201912,1400796 -CZ,UA,2,261,201912,2055449 -CZ,UA,2,262,201912,8569257 -CZ,UA,2,263,201912,36075279 -CZ,UA,2,264,201912,3245161 -CZ,UA,2,265,201912,1412792 -CZ,UA,2,266,201912,815593 -CZ,UA,2,267,201912,77064 -CZ,UA,2,271,201912,5850175 -CZ,UA,2,272,201912,58012 -CZ,UA,2,273,201912,2046216 -CZ,UA,2,274,201912,270123 -CZ,UA,2,275,201912,1358482 -CZ,UA,2,279,201912,2771550 -CZ,UA,2,281,201912,2445807 -CZ,UA,2,282,201912,3522040 -CZ,UA,2,283,201912,419736 -CZ,UA,2,284,201912,4815961 -CZ,UA,2,289,201912,3200732 -CZ,UA,2,291,201912,3797805 -CZ,UA,2,292,201912,5982169 -CZ,UA,2,293,201912,3956149 -CZ,UA,2,302,201912,499774 -CZ,UA,2,303,201912,47842 -CZ,UA,2,309,201912,419333 -CZ,UA,2,310,201912,211559 -CZ,UA,2,321,201912,8969 -CZ,UA,2,322,201912,149250 -CZ,UA,2,323,201912,106017 -CZ,UA,2,324,201912,1102300 -CZ,UA,2,325,201912,2678553 -CZ,UA,2,329,201912,532076 -CZ,UG,1,011,201912,327 -CZ,UG,1,012,201912,17977 -CZ,UG,1,103,201912,1487 -CZ,UG,1,108,201912,282 -CZ,UG,2,151,201912,136 -CZ,UG,2,221,201912,8676 -CZ,UG,2,222,201912,86510 -CZ,UG,2,261,201912,1154 -CZ,UG,2,262,201912,762477 -CZ,UG,2,263,201912,666 -CZ,UG,2,265,201912,25288 -CZ,UG,2,271,201912,6044 -CZ,UG,2,279,201912,2665 -CZ,UG,2,303,201912,14116 -CZ,US,1,011,201912,6783 -CZ,US,1,012,201912,519176 -CZ,US,1,014,201912,107588 -CZ,US,1,022,201912,231362 -CZ,US,1,023,201912,8081 -CZ,US,1,030,201912,745 -CZ,US,1,051,201912,1768850 -CZ,US,1,081,201912,363 -CZ,US,1,089,201912,5734 -CZ,US,1,101,201912,8682 -CZ,US,1,102,201912,312942 -CZ,US,1,103,201912,247057 -CZ,US,1,104,201912,65422 -CZ,US,1,106,201912,92 -CZ,US,1,107,201912,414 -CZ,US,1,108,201912,436050 -CZ,US,1,109,201912,630350 -CZ,US,1,110,201912,751835 -CZ,US,1,120,201912,346675 -CZ,US,1,131,201912,2249 -CZ,US,1,132,201912,170405 -CZ,US,1,139,201912,1315353 -CZ,US,1,141,201912,520390 -CZ,US,1,143,201912,67320 -CZ,US,1,151,201912,274660 -CZ,US,1,152,201912,81928 -CZ,US,1,161,201912,10149 -CZ,US,1,162,201912,67081 -CZ,US,1,171,201912,1636935 -CZ,US,1,172,201912,1047435 -CZ,US,1,181,201912,2879 -CZ,US,1,192,201912,14356 -CZ,US,1,201,201912,3462997 -CZ,US,1,202,201912,77882 -CZ,US,1,203,201912,170327 -CZ,US,1,204,201912,3666925 -CZ,US,1,205,201912,2856687 -CZ,US,1,206,201912,223156 -CZ,US,1,211,201912,101491 -CZ,US,1,212,201912,1110997 -CZ,US,1,221,201912,951508 -CZ,US,1,222,201912,4983621 -CZ,US,1,231,201912,2050327 -CZ,US,1,232,201912,54405 -CZ,US,1,234,201912,267278 -CZ,US,1,236,201912,88613 -CZ,US,1,239,201912,403693 -CZ,US,1,241,201912,132428 -CZ,US,1,242,201912,357568 -CZ,US,1,243,201912,64779 -CZ,US,1,244,201912,1381150 -CZ,US,1,245,201912,383 -CZ,US,1,251,201912,643321 -CZ,US,1,252,201912,166340 -CZ,US,1,253,201912,78113 -CZ,US,1,254,201912,218759 -CZ,US,1,257,201912,2425790 -CZ,US,1,259,201912,3591239 -CZ,US,1,261,201912,13428561 -CZ,US,1,262,201912,38853603 -CZ,US,1,263,201912,17235412 -CZ,US,1,264,201912,1014608 -CZ,US,1,265,201912,8210310 -CZ,US,1,266,201912,1224043 -CZ,US,1,267,201912,1360428 -CZ,US,1,268,201912,54471 -CZ,US,1,271,201912,3934601 -CZ,US,1,272,201912,218853 -CZ,US,1,273,201912,4381622 -CZ,US,1,274,201912,450137 -CZ,US,1,275,201912,1048167 -CZ,US,1,279,201912,12969362 -CZ,US,1,281,201912,17309529 -CZ,US,1,282,201912,4050172 -CZ,US,1,283,201912,729068 -CZ,US,1,284,201912,1008880 -CZ,US,1,289,201912,8278343 -CZ,US,1,291,201912,574116 -CZ,US,1,292,201912,194310 -CZ,US,1,293,201912,1430720 -CZ,US,1,301,201912,8931 -CZ,US,1,303,201912,8496639 -CZ,US,1,309,201912,109675 -CZ,US,1,310,201912,927527 -CZ,US,1,321,201912,336424 -CZ,US,1,322,201912,256307 -CZ,US,1,323,201912,276757 -CZ,US,1,324,201912,219469 -CZ,US,1,325,201912,2771317 -CZ,US,1,329,201912,1285490 -CZ,US,2,012,201912,434067 -CZ,US,2,014,201912,152506 -CZ,US,2,030,201912,12411 -CZ,US,2,081,201912,10579 -CZ,US,2,089,201912,76066 -CZ,US,2,101,201912,210865 -CZ,US,2,103,201912,1797 -CZ,US,2,104,201912,953 -CZ,US,2,106,201912,382250 -CZ,US,2,107,201912,245428 -CZ,US,2,108,201912,1441588 -CZ,US,2,110,201912,574123 -CZ,US,2,131,201912,53988 -CZ,US,2,132,201912,87896 -CZ,US,2,139,201912,3854154 -CZ,US,2,141,201912,611356 -CZ,US,2,143,201912,41487 -CZ,US,2,151,201912,49600 -CZ,US,2,152,201912,5413 -CZ,US,2,161,201912,1790790 -CZ,US,2,162,201912,910983 -CZ,US,2,171,201912,656179 -CZ,US,2,172,201912,1099981 -CZ,US,2,181,201912,2870 -CZ,US,2,192,201912,111223 -CZ,US,2,201,201912,10914383 -CZ,US,2,203,201912,12024 -CZ,US,2,204,201912,774229 -CZ,US,2,205,201912,5680832 -CZ,US,2,206,201912,19892 -CZ,US,2,211,201912,7768555 -CZ,US,2,212,201912,5965857 -CZ,US,2,221,201912,10349462 -CZ,US,2,222,201912,10132537 -CZ,US,2,231,201912,3357285 -CZ,US,2,232,201912,225154 -CZ,US,2,233,201912,1523 -CZ,US,2,234,201912,186433 -CZ,US,2,236,201912,2784756 -CZ,US,2,239,201912,1649245 -CZ,US,2,241,201912,6754636 -CZ,US,2,242,201912,7777200 -CZ,US,2,243,201912,363352 -CZ,US,2,244,201912,1066908 -CZ,US,2,245,201912,22 -CZ,US,2,251,201912,1502130 -CZ,US,2,252,201912,512402 -CZ,US,2,253,201912,6330 -CZ,US,2,254,201912,4777372 -CZ,US,2,257,201912,5547619 -CZ,US,2,259,201912,5110819 -CZ,US,2,261,201912,5702918 -CZ,US,2,262,201912,14871274 -CZ,US,2,263,201912,24684833 -CZ,US,2,264,201912,2412055 -CZ,US,2,265,201912,22693707 -CZ,US,2,266,201912,1865094 -CZ,US,2,267,201912,691878 -CZ,US,2,268,201912,41883 -CZ,US,2,271,201912,10325740 -CZ,US,2,272,201912,139036 -CZ,US,2,273,201912,4607609 -CZ,US,2,274,201912,4165987 -CZ,US,2,275,201912,1183068 -CZ,US,2,279,201912,6248496 -CZ,US,2,281,201912,30143388 -CZ,US,2,282,201912,14148068 -CZ,US,2,283,201912,1761118 -CZ,US,2,284,201912,4501316 -CZ,US,2,289,201912,17022240 -CZ,US,2,291,201912,4163 -CZ,US,2,292,201912,281860 -CZ,US,2,293,201912,12861948 -CZ,US,2,301,201912,11452 -CZ,US,2,302,201912,1652665 -CZ,US,2,303,201912,15691327 -CZ,US,2,309,201912,176035 -CZ,US,2,310,201912,4382696 -CZ,US,2,321,201912,149832 -CZ,US,2,322,201912,145834 -CZ,US,2,323,201912,903281 -CZ,US,2,324,201912,1530606 -CZ,US,2,325,201912,2283896 -CZ,US,2,329,201912,543362 -CZ,UY,2,172,201912,77 -CZ,UY,2,221,201912,55353 -CZ,UY,2,222,201912,669 -CZ,UY,2,231,201912,25961 -CZ,UY,2,259,201912,587 -CZ,UY,2,262,201912,121 -CZ,UY,2,263,201912,20088 -CZ,UY,2,265,201912,15773 -CZ,UY,2,271,201912,57 -CZ,UY,2,273,201912,111 -CZ,UY,2,282,201912,62476 -CZ,UY,2,289,201912,71526 -CZ,UZ,1,103,201912,20196 -CZ,UZ,1,131,201912,32705 -CZ,UZ,1,132,201912,109357 -CZ,UZ,1,141,201912,71269 -CZ,UZ,2,014,201912,740309 -CZ,UZ,2,106,201912,4488 -CZ,UZ,2,108,201912,17317 -CZ,UZ,2,139,201912,2434 -CZ,UZ,2,141,201912,156 -CZ,UZ,2,143,201912,43 -CZ,UZ,2,151,201912,1 -CZ,UZ,2,162,201912,112 -CZ,UZ,2,201,201912,51186 -CZ,UZ,2,205,201912,129305 -CZ,UZ,2,211,201912,14401 -CZ,UZ,2,212,201912,571758 -CZ,UZ,2,221,201912,114462 -CZ,UZ,2,222,201912,177114 -CZ,UZ,2,231,201912,106705 -CZ,UZ,2,232,201912,96435 -CZ,UZ,2,234,201912,21941 -CZ,UZ,2,241,201912,41 -CZ,UZ,2,244,201912,11490 -CZ,UZ,2,251,201912,288 -CZ,UZ,2,257,201912,5633 -CZ,UZ,2,259,201912,8442 -CZ,UZ,2,262,201912,91572 -CZ,UZ,2,263,201912,112388 -CZ,UZ,2,264,201912,5390 -CZ,UZ,2,265,201912,3156647 -CZ,UZ,2,271,201912,2813 -CZ,UZ,2,273,201912,226048 -CZ,UZ,2,274,201912,3322 -CZ,UZ,2,275,201912,25752 -CZ,UZ,2,279,201912,15995 -CZ,UZ,2,281,201912,110295 -CZ,UZ,2,282,201912,149651 -CZ,UZ,2,289,201912,381599 -CZ,UZ,2,291,201912,208457 -CZ,UZ,2,292,201912,863 -CZ,UZ,2,293,201912,113503 -CZ,UZ,2,303,201912,9775 -CZ,UZ,2,310,201912,9424 -CZ,UZ,2,325,201912,3579 -CZ,UZ,2,329,201912,52 -CZ,VE,2,221,201912,8206 -CZ,VE,2,222,201912,8425 -CZ,VE,2,259,201912,3368 -CZ,VE,2,274,201912,12788 -CZ,VE,2,281,201912,50681 -CZ,VE,2,303,201912,17302 -CZ,VG,2,139,201912,14641 -CZ,VG,2,162,201912,100930 -CZ,VG,2,221,201912,54 -CZ,VG,2,222,201912,171 -CZ,VG,2,231,201912,67947 -CZ,VG,2,251,201912,30 -CZ,VG,2,257,201912,19273 -CZ,VG,2,259,201912,5493 -CZ,VG,2,265,201912,71 -CZ,VG,2,310,201912,94993 -CZ,VG,2,329,201912,134 -CZ,VN,1,011,201912,173010 -CZ,VN,1,012,201912,295646 -CZ,VN,1,014,201912,18454 -CZ,VN,1,030,201912,35731 -CZ,VN,1,102,201912,1112031 -CZ,VN,1,103,201912,151849 -CZ,VN,1,106,201912,217732 -CZ,VN,1,107,201912,24920 -CZ,VN,1,108,201912,263610 -CZ,VN,1,110,201912,4207 -CZ,VN,1,139,201912,82091 -CZ,VN,1,141,201912,733186 -CZ,VN,1,143,201912,6572 -CZ,VN,1,151,201912,162643 -CZ,VN,1,152,201912,653796 -CZ,VN,1,162,201912,80308 -CZ,VN,1,172,201912,141257 -CZ,VN,1,201,201912,885890 -CZ,VN,1,204,201912,18457 -CZ,VN,1,205,201912,1790 -CZ,VN,1,211,201912,2121 -CZ,VN,1,212,201912,5357 -CZ,VN,1,221,201912,315447 -CZ,VN,1,222,201912,372728 -CZ,VN,1,234,201912,10664 -CZ,VN,1,236,201912,10375 -CZ,VN,1,237,201912,33869 -CZ,VN,1,244,201912,21343 -CZ,VN,1,257,201912,113271 -CZ,VN,1,259,201912,623819 -CZ,VN,1,261,201912,1064083 -CZ,VN,1,262,201912,1860879 -CZ,VN,1,263,201912,670894 -CZ,VN,1,264,201912,407378 -CZ,VN,1,265,201912,54627 -CZ,VN,1,267,201912,300 -CZ,VN,1,271,201912,549068 -CZ,VN,1,272,201912,523804 -CZ,VN,1,273,201912,113988 -CZ,VN,1,275,201912,17841 -CZ,VN,1,279,201912,1259297 -CZ,VN,1,281,201912,122224 -CZ,VN,1,282,201912,347330 -CZ,VN,1,284,201912,143313 -CZ,VN,1,289,201912,18575 -CZ,VN,1,293,201912,2855007 -CZ,VN,1,309,201912,22756 -CZ,VN,1,310,201912,579441 -CZ,VN,1,323,201912,14646 -CZ,VN,1,324,201912,164361 -CZ,VN,1,325,201912,77120 -CZ,VN,1,329,201912,59489 -CZ,VN,2,012,201912,13075 -CZ,VN,2,101,201912,24351 -CZ,VN,2,108,201912,56028 -CZ,VN,2,109,201912,44566 -CZ,VN,2,110,201912,62008 -CZ,VN,2,132,201912,16899 -CZ,VN,2,139,201912,28919 -CZ,VN,2,151,201912,47955 -CZ,VN,2,162,201912,28976 -CZ,VN,2,172,201912,3113 -CZ,VN,2,201,201912,65412 -CZ,VN,2,204,201912,67729 -CZ,VN,2,205,201912,276824 -CZ,VN,2,211,201912,14239 -CZ,VN,2,212,201912,179285 -CZ,VN,2,221,201912,57396 -CZ,VN,2,222,201912,285847 -CZ,VN,2,231,201912,15416 -CZ,VN,2,234,201912,11201 -CZ,VN,2,242,201912,13397 -CZ,VN,2,243,201912,20173 -CZ,VN,2,244,201912,19458 -CZ,VN,2,257,201912,156112 -CZ,VN,2,259,201912,55274 -CZ,VN,2,261,201912,2217 -CZ,VN,2,262,201912,50110 -CZ,VN,2,263,201912,7041 -CZ,VN,2,265,201912,212287 -CZ,VN,2,271,201912,221033 -CZ,VN,2,273,201912,81071 -CZ,VN,2,274,201912,344199 -CZ,VN,2,275,201912,160 -CZ,VN,2,279,201912,180879 -CZ,VN,2,281,201912,37471 -CZ,VN,2,282,201912,311634 -CZ,VN,2,284,201912,3428 -CZ,VN,2,289,201912,346583 -CZ,VN,2,292,201912,38367 -CZ,VN,2,293,201912,59790 -CZ,VN,2,302,201912,102040 -CZ,VN,2,310,201912,916670 -CZ,VN,2,324,201912,3112 -CZ,VN,2,325,201912,50577 -CZ,VN,2,329,201912,12182 -CZ,XC,2,291,201912,15351 -CZ,XK,1,103,201912,44630 -CZ,XK,1,265,201912,1533 -CZ,XK,2,014,201912,215277 -CZ,XK,2,103,201912,9459 -CZ,XK,2,110,201912,37750 -CZ,XK,2,120,201912,159663 -CZ,XK,2,141,201912,379 -CZ,XK,2,151,201912,3330 -CZ,XK,2,162,201912,158613 -CZ,XK,2,171,201912,38794 -CZ,XK,2,172,201912,130418 -CZ,XK,2,204,201912,112711 -CZ,XK,2,205,201912,45187 -CZ,XK,2,221,201912,13285 -CZ,XK,2,222,201912,458 -CZ,XK,2,231,201912,16536 -CZ,XK,2,234,201912,25 -CZ,XK,2,257,201912,207 -CZ,XK,2,259,201912,45 -CZ,XK,2,261,201912,3997 -CZ,XK,2,262,201912,240254 -CZ,XK,2,263,201912,29944 -CZ,XK,2,264,201912,63049 -CZ,XK,2,265,201912,1746 -CZ,XK,2,267,201912,3744 -CZ,XK,2,268,201912,10 -CZ,XK,2,271,201912,3406 -CZ,XK,2,272,201912,4753 -CZ,XK,2,273,201912,235 -CZ,XK,2,274,201912,23 -CZ,XK,2,275,201912,414 -CZ,XK,2,279,201912,6062 -CZ,XK,2,282,201912,15953 -CZ,XK,2,291,201912,140862 -CZ,XK,2,293,201912,2682 -CZ,XK,2,310,201912,2127 -CZ,XK,2,321,201912,159 -CZ,XK,2,325,201912,3700 -CZ,XK,2,329,201912,6205 -CZ,XS,1,011,201912,16914 -CZ,XS,1,103,201912,178360 -CZ,XS,1,104,201912,232819 -CZ,XS,1,106,201912,42103 -CZ,XS,1,108,201912,140723 -CZ,XS,1,110,201912,23640 -CZ,XS,1,120,201912,71 -CZ,XS,1,139,201912,212740 -CZ,XS,1,141,201912,23769 -CZ,XS,1,143,201912,17894 -CZ,XS,1,151,201912,430469 -CZ,XS,1,161,201912,10171 -CZ,XS,1,162,201912,10662 -CZ,XS,1,171,201912,530311 -CZ,XS,1,172,201912,171812 -CZ,XS,1,201,201912,768601 -CZ,XS,1,204,201912,191804 -CZ,XS,1,205,201912,20398 -CZ,XS,1,212,201912,126206 -CZ,XS,1,221,201912,1472532 -CZ,XS,1,222,201912,2446011 -CZ,XS,1,231,201912,38696 -CZ,XS,1,233,201912,25466 -CZ,XS,1,234,201912,6802 -CZ,XS,1,236,201912,2764 -CZ,XS,1,241,201912,3864279 -CZ,XS,1,242,201912,32057 -CZ,XS,1,243,201912,20136 -CZ,XS,1,244,201912,1538206 -CZ,XS,1,251,201912,19127 -CZ,XS,1,252,201912,1010 -CZ,XS,1,257,201912,7716 -CZ,XS,1,259,201912,406434 -CZ,XS,1,261,201912,10492 -CZ,XS,1,262,201912,18303 -CZ,XS,1,263,201912,4390 -CZ,XS,1,264,201912,11571 -CZ,XS,1,265,201912,1574 -CZ,XS,1,271,201912,5488727 -CZ,XS,1,272,201912,1974 -CZ,XS,1,273,201912,222375 -CZ,XS,1,275,201912,558933 -CZ,XS,1,279,201912,414379 -CZ,XS,1,281,201912,320429 -CZ,XS,1,282,201912,135960 -CZ,XS,1,284,201912,152675 -CZ,XS,1,293,201912,2856952 -CZ,XS,1,302,201912,189753 -CZ,XS,1,309,201912,96028 -CZ,XS,1,310,201912,7273833 -CZ,XS,1,323,201912,30553 -CZ,XS,1,324,201912,42 -CZ,XS,1,325,201912,39694 -CZ,XS,1,329,201912,15745 -CZ,XS,1,351,201912,2118626 -CZ,XS,2,011,201912,3920 -CZ,XS,2,012,201912,15118 -CZ,XS,2,014,201912,148616 -CZ,XS,2,030,201912,166435 -CZ,XS,2,052,201912,120889 -CZ,XS,2,081,201912,14502 -CZ,XS,2,089,201912,135 -CZ,XS,2,101,201912,49660 -CZ,XS,2,102,201912,1126 -CZ,XS,2,103,201912,42244 -CZ,XS,2,104,201912,2612 -CZ,XS,2,105,201912,188865 -CZ,XS,2,106,201912,287523 -CZ,XS,2,107,201912,18921 -CZ,XS,2,108,201912,325234 -CZ,XS,2,109,201912,198178 -CZ,XS,2,110,201912,384918 -CZ,XS,2,131,201912,3609 -CZ,XS,2,132,201912,71109 -CZ,XS,2,139,201912,679686 -CZ,XS,2,141,201912,47462 -CZ,XS,2,143,201912,2023 -CZ,XS,2,151,201912,933908 -CZ,XS,2,152,201912,73875 -CZ,XS,2,161,201912,7947 -CZ,XS,2,162,201912,127942 -CZ,XS,2,171,201912,908424 -CZ,XS,2,172,201912,213580 -CZ,XS,2,191,201912,935555 -CZ,XS,2,192,201912,532860 -CZ,XS,2,201,201912,1150129 -CZ,XS,2,202,201912,242 -CZ,XS,2,203,201912,167679 -CZ,XS,2,204,201912,1020218 -CZ,XS,2,205,201912,585980 -CZ,XS,2,211,201912,5767 -CZ,XS,2,212,201912,83808 -CZ,XS,2,221,201912,521911 -CZ,XS,2,222,201912,1557294 -CZ,XS,2,231,201912,470866 -CZ,XS,2,232,201912,98951 -CZ,XS,2,234,201912,29025 -CZ,XS,2,236,201912,127090 -CZ,XS,2,239,201912,24604 -CZ,XS,2,241,201912,693321 -CZ,XS,2,242,201912,199354 -CZ,XS,2,243,201912,509880 -CZ,XS,2,244,201912,86503 -CZ,XS,2,251,201912,258933 -CZ,XS,2,252,201912,384976 -CZ,XS,2,253,201912,191435 -CZ,XS,2,254,201912,13812 -CZ,XS,2,257,201912,507847 -CZ,XS,2,259,201912,413348 -CZ,XS,2,261,201912,319630 -CZ,XS,2,262,201912,1526733 -CZ,XS,2,263,201912,3268582 -CZ,XS,2,264,201912,193702 -CZ,XS,2,265,201912,109964 -CZ,XS,2,267,201912,15165 -CZ,XS,2,271,201912,695966 -CZ,XS,2,272,201912,188671 -CZ,XS,2,273,201912,2583836 -CZ,XS,2,274,201912,73747 -CZ,XS,2,275,201912,429424 -CZ,XS,2,279,201912,847816 -CZ,XS,2,281,201912,763608 -CZ,XS,2,282,201912,1236410 -CZ,XS,2,283,201912,317 -CZ,XS,2,284,201912,402690 -CZ,XS,2,289,201912,453394 -CZ,XS,2,291,201912,6922825 -CZ,XS,2,292,201912,456217 -CZ,XS,2,293,201912,819196 -CZ,XS,2,302,201912,70980 -CZ,XS,2,303,201912,40515 -CZ,XS,2,309,201912,11646 -CZ,XS,2,310,201912,288260 -CZ,XS,2,321,201912,17122 -CZ,XS,2,323,201912,539 -CZ,XS,2,324,201912,327931 -CZ,XS,2,325,201912,133052 -CZ,XS,2,329,201912,41605 -CZ,XS,2,351,201912,2925332 -CZ,YE,2,271,201912,93250 -CZ,YE,2,282,201912,3565 -CZ,YE,2,289,201912,920824 -CZ,ZA,1,014,201912,4681746 -CZ,ZA,1,103,201912,52310 -CZ,ZA,1,110,201912,101839 -CZ,ZA,1,139,201912,720362 -CZ,ZA,1,141,201912,69936 -CZ,ZA,1,151,201912,128 -CZ,ZA,1,162,201912,841 -CZ,ZA,1,201,201912,2990 -CZ,ZA,1,203,201912,85151 -CZ,ZA,1,205,201912,75644 -CZ,ZA,1,222,201912,14773 -CZ,ZA,1,232,201912,5116 -CZ,ZA,1,237,201912,27802 -CZ,ZA,1,239,201912,87589 -CZ,ZA,1,241,201912,184965 -CZ,ZA,1,244,201912,91084 -CZ,ZA,1,257,201912,2244 -CZ,ZA,1,259,201912,506946 -CZ,ZA,1,261,201912,10881 -CZ,ZA,1,262,201912,20590 -CZ,ZA,1,263,201912,47573 -CZ,ZA,1,265,201912,1832 -CZ,ZA,1,267,201912,31808 -CZ,ZA,1,271,201912,10923 -CZ,ZA,1,273,201912,814 -CZ,ZA,1,274,201912,6743 -CZ,ZA,1,279,201912,7877 -CZ,ZA,1,281,201912,350 -CZ,ZA,1,282,201912,160486 -CZ,ZA,1,289,201912,2457 -CZ,ZA,1,293,201912,280882 -CZ,ZA,1,303,201912,344537 -CZ,ZA,1,310,201912,440 -CZ,ZA,1,321,201912,52 -CZ,ZA,1,325,201912,70798 -CZ,ZA,2,089,201912,16952 -CZ,ZA,2,108,201912,776051 -CZ,ZA,2,109,201912,1239833 -CZ,ZA,2,132,201912,1719 -CZ,ZA,2,139,201912,357611 -CZ,ZA,2,141,201912,4919 -CZ,ZA,2,143,201912,900 -CZ,ZA,2,151,201912,45591 -CZ,ZA,2,162,201912,12043 -CZ,ZA,2,171,201912,995724 -CZ,ZA,2,172,201912,1642701 -CZ,ZA,2,201,201912,1364478 -CZ,ZA,2,203,201912,164327 -CZ,ZA,2,204,201912,1644 -CZ,ZA,2,205,201912,139598 -CZ,ZA,2,212,201912,1760 -CZ,ZA,2,221,201912,659420 -CZ,ZA,2,222,201912,837847 -CZ,ZA,2,231,201912,149076 -CZ,ZA,2,232,201912,13915 -CZ,ZA,2,234,201912,129457 -CZ,ZA,2,236,201912,874 -CZ,ZA,2,239,201912,41865 -CZ,ZA,2,241,201912,46421 -CZ,ZA,2,242,201912,24202 -CZ,ZA,2,243,201912,137811 -CZ,ZA,2,244,201912,95565 -CZ,ZA,2,251,201912,68043 -CZ,ZA,2,252,201912,33246 -CZ,ZA,2,254,201912,104281 -CZ,ZA,2,257,201912,787594 -CZ,ZA,2,259,201912,555160 -CZ,ZA,2,261,201912,20844 -CZ,ZA,2,262,201912,7172282 -CZ,ZA,2,263,201912,609145 -CZ,ZA,2,264,201912,427525 -CZ,ZA,2,265,201912,164138 -CZ,ZA,2,267,201912,6848 -CZ,ZA,2,268,201912,121267 -CZ,ZA,2,271,201912,3208072 -CZ,ZA,2,272,201912,17315 -CZ,ZA,2,273,201912,131294 -CZ,ZA,2,274,201912,136611 -CZ,ZA,2,275,201912,1154 -CZ,ZA,2,279,201912,184375 -CZ,ZA,2,281,201912,819532 -CZ,ZA,2,282,201912,2418085 -CZ,ZA,2,284,201912,149353 -CZ,ZA,2,289,201912,1613316 -CZ,ZA,2,291,201912,17519359 -CZ,ZA,2,293,201912,7397477 -CZ,ZA,2,309,201912,38511 -CZ,ZA,2,310,201912,606154 -CZ,ZA,2,321,201912,3150 -CZ,ZA,2,323,201912,796 -CZ,ZA,2,324,201912,603748 -CZ,ZA,2,325,201912,168627 -CZ,ZA,2,329,201912,29296 -CZ,ZM,2,222,201912,3081 -CZ,ZM,2,265,201912,1938 -CZ,ZM,2,279,201912,28 -CZ,ZM,2,282,201912,56760 -CZ,ZW,2,262,201912,54140 -DE,AD,1,141,201912,3973 -DE,AD,1,143,201912,155 -DE,AD,1,152,201912,298 -DE,AD,1,321,201912,25116 -DE,AD,2,101,201912,27402 -DE,AD,2,108,201912,65386 -DE,AD,2,120,201912,100112 -DE,AD,2,139,201912,2801 -DE,AD,2,141,201912,70343 -DE,AD,2,143,201912,10061 -DE,AD,2,151,201912,25654 -DE,AD,2,152,201912,18252 -DE,AD,2,162,201912,1104 -DE,AD,2,171,201912,17604 -DE,AD,2,172,201912,348432 -DE,AD,2,203,201912,595 -DE,AD,2,204,201912,47329 -DE,AD,2,205,201912,5047 -DE,AD,2,212,201912,12750 -DE,AD,2,221,201912,1586 -DE,AD,2,222,201912,10157 -DE,AD,2,231,201912,2058 -DE,AD,2,234,201912,6777 -DE,AD,2,239,201912,284 -DE,AD,2,244,201912,3269 -DE,AD,2,251,201912,770 -DE,AD,2,254,201912,5829 -DE,AD,2,257,201912,4281 -DE,AD,2,259,201912,2253 -DE,AD,2,262,201912,42964 -DE,AD,2,263,201912,156986 -DE,AD,2,264,201912,4530 -DE,AD,2,265,201912,134844 -DE,AD,2,267,201912,167652 -DE,AD,2,268,201912,1500 -DE,AD,2,271,201912,7429 -DE,AD,2,272,201912,1352 -DE,AD,2,273,201912,1448 -DE,AD,2,274,201912,61643 -DE,AD,2,275,201912,14886 -DE,AD,2,279,201912,7876 -DE,AD,2,281,201912,7877 -DE,AD,2,282,201912,2294 -DE,AD,2,284,201912,60 -DE,AD,2,289,201912,7362 -DE,AD,2,291,201912,816036 -DE,AD,2,293,201912,17659 -DE,AD,2,309,201912,72886 -DE,AD,2,310,201912,79297 -DE,AD,2,321,201912,383 -DE,AD,2,322,201912,2078 -DE,AD,2,323,201912,15305 -DE,AD,2,324,201912,18942 -DE,AD,2,325,201912,15223 -DE,AD,2,329,201912,35200 -DE,AE,1,012,201912,85865 -DE,AE,1,014,201912,6700 -DE,AE,1,103,201912,1165 -DE,AE,1,105,201912,11025 -DE,AE,1,106,201912,2 -DE,AE,1,107,201912,18 -DE,AE,1,108,201912,136985 -DE,AE,1,110,201912,1044 -DE,AE,1,120,201912,284 -DE,AE,1,132,201912,27 -DE,AE,1,139,201912,16942 -DE,AE,1,141,201912,1141915 -DE,AE,1,142,201912,1187 -DE,AE,1,143,201912,53247 -DE,AE,1,151,201912,57561 -DE,AE,1,152,201912,230473 -DE,AE,1,162,201912,6261 -DE,AE,1,172,201912,49155 -DE,AE,1,192,201912,13105 -DE,AE,1,201,201912,1263509 -DE,AE,1,204,201912,149280 -DE,AE,1,205,201912,2878 -DE,AE,1,211,201912,48200 -DE,AE,1,212,201912,45 -DE,AE,1,221,201912,140785 -DE,AE,1,222,201912,899114 -DE,AE,1,231,201912,498494 -DE,AE,1,233,201912,71592 -DE,AE,1,234,201912,37655 -DE,AE,1,236,201912,48076 -DE,AE,1,239,201912,4609 -DE,AE,1,242,201912,93115 -DE,AE,1,243,201912,65086 -DE,AE,1,244,201912,19834130 -DE,AE,1,251,201912,225254 -DE,AE,1,257,201912,297407 -DE,AE,1,259,201912,300770 -DE,AE,1,261,201912,31044 -DE,AE,1,262,201912,443764 -DE,AE,1,263,201912,241984 -DE,AE,1,264,201912,9437 -DE,AE,1,265,201912,171944 -DE,AE,1,266,201912,3384 -DE,AE,1,267,201912,100289 -DE,AE,1,268,201912,11363 -DE,AE,1,271,201912,307401 -DE,AE,1,272,201912,2496091 -DE,AE,1,273,201912,90139 -DE,AE,1,274,201912,3584 -DE,AE,1,275,201912,13540 -DE,AE,1,279,201912,639140 -DE,AE,1,281,201912,1012707 -DE,AE,1,282,201912,159216 -DE,AE,1,284,201912,32973 -DE,AE,1,289,201912,535219 -DE,AE,1,291,201912,431820 -DE,AE,1,292,201912,140307 -DE,AE,1,293,201912,519211 -DE,AE,1,303,201912,2089551 -DE,AE,1,310,201912,37384 -DE,AE,1,321,201912,168525 -DE,AE,1,323,201912,54616 -DE,AE,1,324,201912,3496 -DE,AE,1,325,201912,46744 -DE,AE,1,329,201912,15083 -DE,AE,2,011,201912,338813 -DE,AE,2,012,201912,148819 -DE,AE,2,014,201912,876701 -DE,AE,2,023,201912,17337 -DE,AE,2,030,201912,2838 -DE,AE,2,081,201912,112539 -DE,AE,2,089,201912,38695 -DE,AE,2,101,201912,800142 -DE,AE,2,102,201912,353098 -DE,AE,2,103,201912,1286547 -DE,AE,2,104,201912,243512 -DE,AE,2,105,201912,6332209 -DE,AE,2,106,201912,1190944 -DE,AE,2,107,201912,962275 -DE,AE,2,108,201912,6883616 -DE,AE,2,109,201912,105107 -DE,AE,2,110,201912,1884160 -DE,AE,2,120,201912,2836013 -DE,AE,2,131,201912,19540 -DE,AE,2,132,201912,1508650 -DE,AE,2,139,201912,1349940 -DE,AE,2,141,201912,3408775 -DE,AE,2,142,201912,5290 -DE,AE,2,143,201912,516153 -DE,AE,2,151,201912,1489518 -DE,AE,2,152,201912,1049292 -DE,AE,2,161,201912,1539924 -DE,AE,2,162,201912,808922 -DE,AE,2,171,201912,3577992 -DE,AE,2,172,201912,2986415 -DE,AE,2,17S,201912,328 -DE,AE,2,181,201912,5151 -DE,AE,2,192,201912,1671905 -DE,AE,2,201,201912,14573645 -DE,AE,2,202,201912,310423 -DE,AE,2,203,201912,3130402 -DE,AE,2,204,201912,18943154 -DE,AE,2,205,201912,15590147 -DE,AE,2,206,201912,5599 -DE,AE,2,211,201912,5085700 -DE,AE,2,212,201912,25317072 -DE,AE,2,221,201912,5667863 -DE,AE,2,222,201912,10281386 -DE,AE,2,231,201912,1103559 -DE,AE,2,232,201912,2351872 -DE,AE,2,233,201912,117030 -DE,AE,2,234,201912,955971 -DE,AE,2,235,201912,166713 -DE,AE,2,236,201912,263460 -DE,AE,2,237,201912,59397 -DE,AE,2,239,201912,1215599 -DE,AE,2,241,201912,1908038 -DE,AE,2,242,201912,1476128 -DE,AE,2,243,201912,601766 -DE,AE,2,244,201912,3915732 -DE,AE,2,245,201912,47843 -DE,AE,2,251,201912,3455658 -DE,AE,2,252,201912,966412 -DE,AE,2,253,201912,24649 -DE,AE,2,254,201912,190645 -DE,AE,2,257,201912,6245711 -DE,AE,2,259,201912,8245318 -DE,AE,2,261,201912,1259474 -DE,AE,2,262,201912,9720635 -DE,AE,2,263,201912,14961707 -DE,AE,2,264,201912,3196188 -DE,AE,2,265,201912,18190176 -DE,AE,2,266,201912,2700016 -DE,AE,2,267,201912,3418212 -DE,AE,2,268,201912,17857 -DE,AE,2,271,201912,18009686 -DE,AE,2,272,201912,2285313 -DE,AE,2,273,201912,7765119 -DE,AE,2,274,201912,4614168 -DE,AE,2,275,201912,5921816 -DE,AE,2,279,201912,6375871 -DE,AE,2,281,201912,45286990 -DE,AE,2,282,201912,43547579 -DE,AE,2,283,201912,680806 -DE,AE,2,284,201912,5405012 -DE,AE,2,289,201912,19118758 -DE,AE,2,291,201912,137618915 -DE,AE,2,292,201912,2527407 -DE,AE,2,293,201912,12601046 -DE,AE,2,301,201912,591434 -DE,AE,2,302,201912,153192 -DE,AE,2,303,201912,626163078 -DE,AE,2,309,201912,1232874 -DE,AE,2,310,201912,3290215 -DE,AE,2,321,201912,817219 -DE,AE,2,322,201912,318745 -DE,AE,2,323,201912,383280 -DE,AE,2,324,201912,74762 -DE,AE,2,325,201912,11365842 -DE,AE,2,329,201912,4658094 -DE,AE,2,32S,201912,494 -DE,AF,1,012,201912,366311 -DE,AF,1,101,201912,126810 -DE,AF,1,103,201912,278139 -DE,AF,1,108,201912,2506 -DE,AF,1,139,201912,977404 -DE,AF,1,141,201912,5464 -DE,AF,1,211,201912,526 -DE,AF,1,263,201912,1148 -DE,AF,1,303,201912,1175 -DE,AF,1,321,201912,1379 -DE,AF,2,101,201912,74851 -DE,AF,2,105,201912,59955 -DE,AF,2,107,201912,46086 -DE,AF,2,108,201912,357221 -DE,AF,2,110,201912,49043 -DE,AF,2,120,201912,14536 -DE,AF,2,139,201912,666 -DE,AF,2,141,201912,640 -DE,AF,2,151,201912,962 -DE,AF,2,152,201912,2943 -DE,AF,2,204,201912,170961 -DE,AF,2,205,201912,86842 -DE,AF,2,221,201912,379877 -DE,AF,2,222,201912,11833 -DE,AF,2,231,201912,23060 -DE,AF,2,251,201912,5875 -DE,AF,2,257,201912,4367 -DE,AF,2,259,201912,9759 -DE,AF,2,261,201912,16905 -DE,AF,2,262,201912,53191 -DE,AF,2,263,201912,1941 -DE,AF,2,265,201912,91083 -DE,AF,2,266,201912,10000 -DE,AF,2,271,201912,19791 -DE,AF,2,272,201912,193695 -DE,AF,2,273,201912,23882 -DE,AF,2,274,201912,891 -DE,AF,2,275,201912,81571 -DE,AF,2,279,201912,93042 -DE,AF,2,281,201912,45021 -DE,AF,2,282,201912,42121 -DE,AF,2,289,201912,391812 -DE,AF,2,291,201912,1158910 -DE,AF,2,292,201912,215550 -DE,AF,2,293,201912,4050 -DE,AF,2,309,201912,1200 -DE,AF,2,310,201912,3675 -DE,AF,2,324,201912,25 -DE,AF,2,325,201912,173283 -DE,AF,2,329,201912,61147 -DE,AG,1,281,201912,3200 -DE,AG,2,101,201912,3967 -DE,AG,2,102,201912,26721 -DE,AG,2,103,201912,3 -DE,AG,2,105,201912,54538 -DE,AG,2,110,201912,10915 -DE,AG,2,139,201912,35672 -DE,AG,2,152,201912,13616 -DE,AG,2,221,201912,2304 -DE,AG,2,222,201912,4937 -DE,AG,2,257,201912,2563 -DE,AG,2,259,201912,69292 -DE,AG,2,274,201912,1890 -DE,AG,2,281,201912,189631 -DE,AG,2,282,201912,20907 -DE,AI,2,279,201912,16047 -DE,AL,1,011,201912,1958 -DE,AL,1,012,201912,1260947 -DE,AL,1,013,201912,9325 -DE,AL,1,103,201912,207924 -DE,AL,1,139,201912,3807 -DE,AL,1,141,201912,2560018 -DE,AL,1,143,201912,625 -DE,AL,1,152,201912,501514 -DE,AL,1,162,201912,140058 -DE,AL,1,205,201912,2800 -DE,AL,1,222,201912,4192 -DE,AL,1,237,201912,82840 -DE,AL,1,241,201912,670375 -DE,AL,1,251,201912,1050 -DE,AL,1,259,201912,1135 -DE,AL,1,261,201912,117 -DE,AL,1,262,201912,1550 -DE,AL,1,265,201912,186816 -DE,AL,1,279,201912,268675 -DE,AL,1,281,201912,112 -DE,AL,1,289,201912,60174 -DE,AL,1,310,201912,42880 -DE,AL,1,321,201912,4762 -DE,AL,1,325,201912,10390 -DE,AL,2,011,201912,81284 -DE,AL,2,012,201912,98731 -DE,AL,2,014,201912,275552 -DE,AL,2,081,201912,534 -DE,AL,2,089,201912,1012 -DE,AL,2,101,201912,128604 -DE,AL,2,103,201912,88965 -DE,AL,2,104,201912,415 -DE,AL,2,105,201912,242452 -DE,AL,2,106,201912,44904 -DE,AL,2,107,201912,69887 -DE,AL,2,108,201912,550144 -DE,AL,2,109,201912,83813 -DE,AL,2,110,201912,334563 -DE,AL,2,120,201912,121182 -DE,AL,2,131,201912,71677 -DE,AL,2,132,201912,778265 -DE,AL,2,139,201912,375453 -DE,AL,2,141,201912,394217 -DE,AL,2,142,201912,993 -DE,AL,2,143,201912,17715 -DE,AL,2,151,201912,468790 -DE,AL,2,152,201912,133283 -DE,AL,2,161,201912,6500 -DE,AL,2,162,201912,65848 -DE,AL,2,171,201912,29425 -DE,AL,2,172,201912,234458 -DE,AL,2,192,201912,284764 -DE,AL,2,201,201912,210999 -DE,AL,2,202,201912,9452 -DE,AL,2,203,201912,76514 -DE,AL,2,204,201912,542017 -DE,AL,2,205,201912,299269 -DE,AL,2,206,201912,2043 -DE,AL,2,211,201912,22374 -DE,AL,2,212,201912,871342 -DE,AL,2,221,201912,179202 -DE,AL,2,222,201912,455268 -DE,AL,2,231,201912,19026 -DE,AL,2,233,201912,25102 -DE,AL,2,234,201912,14561 -DE,AL,2,236,201912,36916 -DE,AL,2,239,201912,78261 -DE,AL,2,242,201912,1186 -DE,AL,2,243,201912,12950 -DE,AL,2,244,201912,140273 -DE,AL,2,245,201912,57450 -DE,AL,2,251,201912,95830 -DE,AL,2,257,201912,139258 -DE,AL,2,259,201912,106192 -DE,AL,2,261,201912,16941 -DE,AL,2,262,201912,494338 -DE,AL,2,263,201912,103353 -DE,AL,2,264,201912,215571 -DE,AL,2,265,201912,439783 -DE,AL,2,266,201912,193973 -DE,AL,2,267,201912,41146 -DE,AL,2,268,201912,12309 -DE,AL,2,271,201912,42828 -DE,AL,2,272,201912,109053 -DE,AL,2,273,201912,9510 -DE,AL,2,274,201912,35050 -DE,AL,2,275,201912,173009 -DE,AL,2,279,201912,547862 -DE,AL,2,281,201912,245423 -DE,AL,2,282,201912,383008 -DE,AL,2,283,201912,12401 -DE,AL,2,284,201912,1530 -DE,AL,2,289,201912,311643 -DE,AL,2,291,201912,5284000 -DE,AL,2,292,201912,44000 -DE,AL,2,293,201912,327713 -DE,AL,2,309,201912,9973 -DE,AL,2,310,201912,33404 -DE,AL,2,321,201912,817 -DE,AL,2,322,201912,3886 -DE,AL,2,323,201912,1340 -DE,AL,2,324,201912,3232 -DE,AL,2,325,201912,224039 -DE,AL,2,329,201912,130534 -DE,AM,1,089,201912,47000 -DE,AM,1,110,201912,258928 -DE,AM,1,139,201912,1467 -DE,AM,1,141,201912,2136834 -DE,AM,1,143,201912,35190 -DE,AM,1,152,201912,1031 -DE,AM,1,201,201912,1535 -DE,AM,1,205,201912,19800 -DE,AM,1,222,201912,40 -DE,AM,1,231,201912,6720 -DE,AM,1,244,201912,52510 -DE,AM,1,259,201912,475 -DE,AM,1,265,201912,25042 -DE,AM,1,267,201912,1852 -DE,AM,1,271,201912,3021 -DE,AM,1,279,201912,2338 -DE,AM,1,321,201912,21085 -DE,AM,2,011,201912,2850 -DE,AM,2,089,201912,995 -DE,AM,2,101,201912,81621 -DE,AM,2,103,201912,12065 -DE,AM,2,105,201912,119632 -DE,AM,2,108,201912,315654 -DE,AM,2,109,201912,424098 -DE,AM,2,110,201912,16559 -DE,AM,2,131,201912,39879 -DE,AM,2,132,201912,794903 -DE,AM,2,139,201912,395299 -DE,AM,2,141,201912,323387 -DE,AM,2,143,201912,51346 -DE,AM,2,151,201912,9702 -DE,AM,2,152,201912,9685 -DE,AM,2,162,201912,8110 -DE,AM,2,171,201912,113417 -DE,AM,2,172,201912,332755 -DE,AM,2,181,201912,2022 -DE,AM,2,192,201912,68179 -DE,AM,2,201,201912,101137 -DE,AM,2,203,201912,68631 -DE,AM,2,204,201912,121182 -DE,AM,2,205,201912,472536 -DE,AM,2,211,201912,10289 -DE,AM,2,212,201912,458482 -DE,AM,2,221,201912,207379 -DE,AM,2,222,201912,293061 -DE,AM,2,231,201912,8370 -DE,AM,2,234,201912,24676 -DE,AM,2,239,201912,2260 -DE,AM,2,242,201912,1330 -DE,AM,2,244,201912,6631 -DE,AM,2,251,201912,9275 -DE,AM,2,252,201912,24509 -DE,AM,2,257,201912,44314 -DE,AM,2,259,201912,53255 -DE,AM,2,261,201912,1592 -DE,AM,2,262,201912,114602 -DE,AM,2,263,201912,77299 -DE,AM,2,264,201912,222298 -DE,AM,2,265,201912,839975 -DE,AM,2,266,201912,178555 -DE,AM,2,267,201912,79702 -DE,AM,2,271,201912,115397 -DE,AM,2,272,201912,164447 -DE,AM,2,273,201912,126958 -DE,AM,2,274,201912,73547 -DE,AM,2,275,201912,26747 -DE,AM,2,279,201912,129271 -DE,AM,2,281,201912,191110 -DE,AM,2,282,201912,244268 -DE,AM,2,284,201912,534 -DE,AM,2,289,201912,605412 -DE,AM,2,291,201912,4343316 -DE,AM,2,292,201912,250954 -DE,AM,2,293,201912,133285 -DE,AM,2,310,201912,24560 -DE,AM,2,321,201912,230583 -DE,AM,2,322,201912,5437 -DE,AM,2,324,201912,4049 -DE,AM,2,325,201912,1845267 -DE,AM,2,329,201912,115789 -DE,AO,1,271,201912,12000 -DE,AO,1,282,201912,7388 -DE,AO,2,101,201912,112370 -DE,AO,2,108,201912,295485 -DE,AO,2,110,201912,334784 -DE,AO,2,120,201912,639 -DE,AO,2,139,201912,1351 -DE,AO,2,141,201912,138786 -DE,AO,2,151,201912,10 -DE,AO,2,171,201912,76168 -DE,AO,2,172,201912,12647 -DE,AO,2,201,201912,58439 -DE,AO,2,202,201912,347 -DE,AO,2,203,201912,385063 -DE,AO,2,204,201912,304372 -DE,AO,2,205,201912,571958 -DE,AO,2,211,201912,8237 -DE,AO,2,212,201912,349449 -DE,AO,2,221,201912,192044 -DE,AO,2,222,201912,53372 -DE,AO,2,231,201912,1028 -DE,AO,2,235,201912,48915 -DE,AO,2,239,201912,70 -DE,AO,2,241,201912,540 -DE,AO,2,242,201912,1422 -DE,AO,2,251,201912,13919 -DE,AO,2,257,201912,180698 -DE,AO,2,259,201912,188469 -DE,AO,2,261,201912,240 -DE,AO,2,262,201912,190533 -DE,AO,2,263,201912,15494 -DE,AO,2,264,201912,16050 -DE,AO,2,265,201912,343120 -DE,AO,2,266,201912,2553 -DE,AO,2,267,201912,30872 -DE,AO,2,271,201912,117762 -DE,AO,2,272,201912,169697 -DE,AO,2,273,201912,23351 -DE,AO,2,274,201912,20499 -DE,AO,2,275,201912,5600 -DE,AO,2,279,201912,23585 -DE,AO,2,281,201912,1533926 -DE,AO,2,282,201912,857746 -DE,AO,2,283,201912,118 -DE,AO,2,284,201912,25279 -DE,AO,2,289,201912,165066 -DE,AO,2,291,201912,1490320 -DE,AO,2,293,201912,51579 -DE,AO,2,309,201912,120 -DE,AO,2,310,201912,2822 -DE,AO,2,325,201912,67828 -DE,AO,2,329,201912,12111 -DE,AQ,1,259,201912,4453 -DE,AR,1,011,201912,1922530 -DE,AR,1,012,201912,677162 -DE,AR,1,014,201912,2564456 -DE,AR,1,072,201912,1787206 -DE,AR,1,101,201912,14422983 -DE,AR,1,102,201912,97276 -DE,AR,1,103,201912,4176134 -DE,AR,1,104,201912,1220 -DE,AR,1,108,201912,548880 -DE,AR,1,110,201912,1028300 -DE,AR,1,120,201912,442643 -DE,AR,1,131,201912,2183488 -DE,AR,1,141,201912,3393 -DE,AR,1,151,201912,564318 -DE,AR,1,152,201912,1453 -DE,AR,1,172,201912,146 -DE,AR,1,201,201912,3986998 -DE,AR,1,204,201912,50391 -DE,AR,1,205,201912,333337 -DE,AR,1,211,201912,3550426 -DE,AR,1,221,201912,39258 -DE,AR,1,222,201912,19964 -DE,AR,1,231,201912,22279 -DE,AR,1,242,201912,16398 -DE,AR,1,244,201912,600 -DE,AR,1,257,201912,24307 -DE,AR,1,259,201912,38985 -DE,AR,1,262,201912,23603 -DE,AR,1,265,201912,11404 -DE,AR,1,271,201912,22787 -DE,AR,1,272,201912,468 -DE,AR,1,279,201912,61467 -DE,AR,1,281,201912,750616 -DE,AR,1,282,201912,208932 -DE,AR,1,283,201912,58817 -DE,AR,1,289,201912,3612 -DE,AR,1,291,201912,63153 -DE,AR,1,293,201912,4595345 -DE,AR,1,309,201912,166 -DE,AR,1,310,201912,7539 -DE,AR,1,321,201912,11324 -DE,AR,1,322,201912,2511 -DE,AR,1,323,201912,2793 -DE,AR,1,325,201912,210427 -DE,AR,1,329,201912,3213 -DE,AR,2,011,201912,20 -DE,AR,2,012,201912,153260 -DE,AR,2,014,201912,664 -DE,AR,2,030,201912,246 -DE,AR,2,081,201912,8400 -DE,AR,2,089,201912,120668 -DE,AR,2,101,201912,295050 -DE,AR,2,102,201912,23799 -DE,AR,2,103,201912,168192 -DE,AR,2,104,201912,75402 -DE,AR,2,105,201912,78504 -DE,AR,2,106,201912,415361 -DE,AR,2,107,201912,11296 -DE,AR,2,108,201912,903059 -DE,AR,2,110,201912,1363758 -DE,AR,2,120,201912,34925 -DE,AR,2,131,201912,3226 -DE,AR,2,132,201912,43593 -DE,AR,2,139,201912,597956 -DE,AR,2,141,201912,73406 -DE,AR,2,142,201912,1839 -DE,AR,2,143,201912,17595 -DE,AR,2,151,201912,60732 -DE,AR,2,152,201912,3600 -DE,AR,2,162,201912,203967 -DE,AR,2,171,201912,2787279 -DE,AR,2,172,201912,255004 -DE,AR,2,192,201912,579270 -DE,AR,2,201,201912,9207084 -DE,AR,2,202,201912,897016 -DE,AR,2,203,201912,888274 -DE,AR,2,204,201912,1194338 -DE,AR,2,205,201912,5150952 -DE,AR,2,206,201912,42320 -DE,AR,2,20S,201912,70515 -DE,AR,2,211,201912,607911 -DE,AR,2,212,201912,8740738 -DE,AR,2,221,201912,1445334 -DE,AR,2,222,201912,3423014 -DE,AR,2,231,201912,550577 -DE,AR,2,232,201912,437346 -DE,AR,2,234,201912,170129 -DE,AR,2,239,201912,782126 -DE,AR,2,241,201912,596173 -DE,AR,2,242,201912,108385 -DE,AR,2,243,201912,811863 -DE,AR,2,244,201912,1483948 -DE,AR,2,245,201912,548 -DE,AR,2,251,201912,342403 -DE,AR,2,252,201912,22034 -DE,AR,2,253,201912,524 -DE,AR,2,257,201912,1568758 -DE,AR,2,259,201912,1717604 -DE,AR,2,261,201912,88368 -DE,AR,2,262,201912,986580 -DE,AR,2,263,201912,672942 -DE,AR,2,264,201912,385449 -DE,AR,2,265,201912,6203115 -DE,AR,2,266,201912,668012 -DE,AR,2,267,201912,891272 -DE,AR,2,268,201912,441 -DE,AR,2,271,201912,6009752 -DE,AR,2,272,201912,212796 -DE,AR,2,273,201912,796905 -DE,AR,2,274,201912,1511716 -DE,AR,2,275,201912,124348 -DE,AR,2,279,201912,1290806 -DE,AR,2,281,201912,9324703 -DE,AR,2,282,201912,9831960 -DE,AR,2,283,201912,2272439 -DE,AR,2,284,201912,10016694 -DE,AR,2,289,201912,10350335 -DE,AR,2,291,201912,6511734 -DE,AR,2,292,201912,216 -DE,AR,2,293,201912,12520825 -DE,AR,2,302,201912,16684 -DE,AR,2,303,201912,125146 -DE,AR,2,309,201912,815169 -DE,AR,2,310,201912,573464 -DE,AR,2,322,201912,61536 -DE,AR,2,323,201912,6772 -DE,AR,2,324,201912,21091 -DE,AR,2,325,201912,5757679 -DE,AR,2,329,201912,114245 -DE,AT,1,011,201912,24625184 -DE,AT,1,012,201912,8996685 -DE,AT,1,013,201912,234999 -DE,AT,1,014,201912,3475952 -DE,AT,1,01M,201912,419975 -DE,AT,1,021,201912,79369 -DE,AT,1,022,201912,661673 -DE,AT,1,023,201912,27300 -DE,AT,1,030,201912,34780 -DE,AT,1,051,201912,153812 -DE,AT,1,061,201912,3636 -DE,AT,1,072,201912,29857 -DE,AT,1,081,201912,4739207 -DE,AT,1,089,201912,3277128 -DE,AT,1,101,201912,61369825 -DE,AT,1,102,201912,3621416 -DE,AT,1,103,201912,31399614 -DE,AT,1,104,201912,9532730 -DE,AT,1,105,201912,52436128 -DE,AT,1,106,201912,26021020 -DE,AT,1,107,201912,17838971 -DE,AT,1,108,201912,42738823 -DE,AT,1,109,201912,23245332 -DE,AT,1,10M,201912,13781195 -DE,AT,1,110,201912,47965448 -DE,AT,1,131,201912,1212712 -DE,AT,1,132,201912,4925025 -DE,AT,1,139,201912,21654788 -DE,AT,1,13M,201912,1481500 -DE,AT,1,141,201912,29880610 -DE,AT,1,142,201912,83905 -DE,AT,1,143,201912,5137004 -DE,AT,1,14M,201912,5012425 -DE,AT,1,151,201912,4834682 -DE,AT,1,152,201912,14358934 -DE,AT,1,161,201912,12279133 -DE,AT,1,162,201912,49565784 -DE,AT,1,16M,201912,40687 -DE,AT,1,171,201912,69585189 -DE,AT,1,172,201912,29401108 -DE,AT,1,17M,201912,10134729 -DE,AT,1,181,201912,320163 -DE,AT,1,191,201912,11378 -DE,AT,1,192,201912,17412397 -DE,AT,1,201,201912,96977763 -DE,AT,1,202,201912,1273697 -DE,AT,1,203,201912,7167725 -DE,AT,1,204,201912,21368597 -DE,AT,1,205,201912,30693769 -DE,AT,1,206,201912,5052067 -DE,AT,1,20M,201912,3253091 -DE,AT,1,211,201912,1719943 -DE,AT,1,212,201912,75117378 -DE,AT,1,221,201912,13032045 -DE,AT,1,222,201912,89626864 -DE,AT,1,231,201912,9364073 -DE,AT,1,232,201912,3314779 -DE,AT,1,233,201912,2144044 -DE,AT,1,234,201912,5054752 -DE,AT,1,235,201912,934097 -DE,AT,1,236,201912,2734191 -DE,AT,1,237,201912,186199 -DE,AT,1,239,201912,11072099 -DE,AT,1,23M,201912,3133923 -DE,AT,1,241,201912,88013276 -DE,AT,1,242,201912,12986485 -DE,AT,1,243,201912,23657171 -DE,AT,1,244,201912,90485028 -DE,AT,1,245,201912,1866332 -DE,AT,1,251,201912,25622586 -DE,AT,1,252,201912,15025627 -DE,AT,1,253,201912,302227 -DE,AT,1,254,201912,1437026 -DE,AT,1,257,201912,52682045 -DE,AT,1,259,201912,42599431 -DE,AT,1,25M,201912,6662892 -DE,AT,1,261,201912,44933218 -DE,AT,1,262,201912,17041353 -DE,AT,1,263,201912,36137382 -DE,AT,1,264,201912,12618601 -DE,AT,1,265,201912,42745708 -DE,AT,1,266,201912,6951824 -DE,AT,1,267,201912,5290930 -DE,AT,1,268,201912,415279 -DE,AT,1,271,201912,75654964 -DE,AT,1,272,201912,17575525 -DE,AT,1,273,201912,29396926 -DE,AT,1,274,201912,33611506 -DE,AT,1,275,201912,20356650 -DE,AT,1,279,201912,42325595 -DE,AT,1,281,201912,96584255 -DE,AT,1,282,201912,111369212 -DE,AT,1,283,201912,17528833 -DE,AT,1,284,201912,32227882 -DE,AT,1,289,201912,84354551 -DE,AT,1,291,201912,279881411 -DE,AT,1,292,201912,10431563 -DE,AT,1,293,201912,152473455 -DE,AT,1,301,201912,613570 -DE,AT,1,302,201912,60118543 -DE,AT,1,303,201912,30661587 -DE,AT,1,309,201912,25503845 -DE,AT,1,30M,201912,96073 -DE,AT,1,310,201912,19470163 -DE,AT,1,321,201912,67135336 -DE,AT,1,322,201912,930443 -DE,AT,1,323,201912,8672041 -DE,AT,1,324,201912,3531112 -DE,AT,1,325,201912,60918975 -DE,AT,1,329,201912,9896096 -DE,AT,1,32M,201912,129371 -DE,AT,1,351,201912,18590020 -DE,AT,2,011,201912,13900825 -DE,AT,2,012,201912,19609295 -DE,AT,2,013,201912,4026353 -DE,AT,2,014,201912,9231704 -DE,AT,2,01M,201912,683904 -DE,AT,2,021,201912,36076 -DE,AT,2,022,201912,9836368 -DE,AT,2,023,201912,231305 -DE,AT,2,030,201912,2204961 -DE,AT,2,051,201912,3661300 -DE,AT,2,052,201912,265915 -DE,AT,2,061,201912,108522 -DE,AT,2,071,201912,8324403 -DE,AT,2,072,201912,77466 -DE,AT,2,081,201912,1791388 -DE,AT,2,089,201912,4580594 -DE,AT,2,101,201912,64982172 -DE,AT,2,102,201912,23988285 -DE,AT,2,103,201912,34731407 -DE,AT,2,104,201912,14650243 -DE,AT,2,105,201912,44316400 -DE,AT,2,106,201912,16779945 -DE,AT,2,107,201912,35426145 -DE,AT,2,108,201912,91103972 -DE,AT,2,109,201912,22376952 -DE,AT,2,10M,201912,9214855 -DE,AT,2,110,201912,24664710 -DE,AT,2,120,201912,3487848 -DE,AT,2,131,201912,3103935 -DE,AT,2,132,201912,9376942 -DE,AT,2,139,201912,41344768 -DE,AT,2,13M,201912,750125 -DE,AT,2,141,201912,130253919 -DE,AT,2,142,201912,319271 -DE,AT,2,143,201912,30556711 -DE,AT,2,14M,201912,9034551 -DE,AT,2,151,201912,13864306 -DE,AT,2,152,201912,20930527 -DE,AT,2,161,201912,11893494 -DE,AT,2,162,201912,26759539 -DE,AT,2,16M,201912,48926 -DE,AT,2,171,201912,45630680 -DE,AT,2,172,201912,48765094 -DE,AT,2,17M,201912,3170542 -DE,AT,2,17S,201912,19104 -DE,AT,2,181,201912,1138766 -DE,AT,2,191,201912,450906 -DE,AT,2,192,201912,175006373 -DE,AT,2,201,201912,93831804 -DE,AT,2,202,201912,5688889 -DE,AT,2,203,201912,20625634 -DE,AT,2,204,201912,66662801 -DE,AT,2,205,201912,58988125 -DE,AT,2,206,201912,634788 -DE,AT,2,20M,201912,4425418 -DE,AT,2,20S,201912,2566658 -DE,AT,2,211,201912,5821442 -DE,AT,2,212,201912,136656419 -DE,AT,2,221,201912,41399235 -DE,AT,2,222,201912,111769165 -DE,AT,2,231,201912,21951751 -DE,AT,2,232,201912,3765708 -DE,AT,2,233,201912,3440560 -DE,AT,2,234,201912,9934143 -DE,AT,2,235,201912,6673824 -DE,AT,2,236,201912,7088639 -DE,AT,2,237,201912,683249 -DE,AT,2,239,201912,13019572 -DE,AT,2,23M,201912,3111038 -DE,AT,2,241,201912,30335489 -DE,AT,2,242,201912,15396399 -DE,AT,2,243,201912,18102635 -DE,AT,2,244,201912,114299013 -DE,AT,2,245,201912,1074906 -DE,AT,2,251,201912,28759825 -DE,AT,2,252,201912,9382710 -DE,AT,2,253,201912,577189 -DE,AT,2,254,201912,2411157 -DE,AT,2,257,201912,65685107 -DE,AT,2,259,201912,77387513 -DE,AT,2,25M,201912,4658321 -DE,AT,2,261,201912,47008160 -DE,AT,2,262,201912,116794321 -DE,AT,2,263,201912,80314951 -DE,AT,2,264,201912,34858283 -DE,AT,2,265,201912,87323975 -DE,AT,2,266,201912,15788095 -DE,AT,2,267,201912,20879653 -DE,AT,2,268,201912,655198 -DE,AT,2,271,201912,89746699 -DE,AT,2,272,201912,8531537 -DE,AT,2,273,201912,31680548 -DE,AT,2,274,201912,31272620 -DE,AT,2,275,201912,71754680 -DE,AT,2,279,201912,53838665 -DE,AT,2,281,201912,196847841 -DE,AT,2,282,201912,164152066 -DE,AT,2,283,201912,28312680 -DE,AT,2,284,201912,94488292 -DE,AT,2,289,201912,115596536 -DE,AT,2,291,201912,295854164 -DE,AT,2,292,201912,20803790 -DE,AT,2,293,201912,129488358 -DE,AT,2,301,201912,682330 -DE,AT,2,302,201912,19754901 -DE,AT,2,303,201912,27254157 -DE,AT,2,309,201912,18722217 -DE,AT,2,30M,201912,15465 -DE,AT,2,310,201912,77318484 -DE,AT,2,321,201912,14256005 -DE,AT,2,322,201912,4019866 -DE,AT,2,323,201912,11819501 -DE,AT,2,324,201912,32376559 -DE,AT,2,325,201912,64834733 -DE,AT,2,329,201912,22069151 -DE,AT,2,32M,201912,219751 -DE,AT,2,32S,201912,21034 -DE,AT,2,351,201912,74307940 -DE,AU,1,011,201912,870 -DE,AU,1,012,201912,505214 -DE,AU,1,013,201912,366 -DE,AU,1,014,201912,234945 -DE,AU,1,030,201912,204183 -DE,AU,1,051,201912,22885771 -DE,AU,1,071,201912,289200 -DE,AU,1,072,201912,51500650 -DE,AU,1,081,201912,24 -DE,AU,1,089,201912,5767 -DE,AU,1,101,201912,1653406 -DE,AU,1,102,201912,38983 -DE,AU,1,103,201912,1100984 -DE,AU,1,104,201912,5091 -DE,AU,1,107,201912,3217 -DE,AU,1,108,201912,46323 -DE,AU,1,110,201912,1914056 -DE,AU,1,131,201912,318519 -DE,AU,1,139,201912,95027 -DE,AU,1,141,201912,294809 -DE,AU,1,143,201912,23781 -DE,AU,1,151,201912,50399 -DE,AU,1,152,201912,20773 -DE,AU,1,162,201912,9135 -DE,AU,1,171,201912,141312 -DE,AU,1,172,201912,9524 -DE,AU,1,192,201912,18328 -DE,AU,1,201,201912,1470303 -DE,AU,1,203,201912,15339 -DE,AU,1,204,201912,325651 -DE,AU,1,205,201912,1056629 -DE,AU,1,211,201912,719647 -DE,AU,1,212,201912,30712888 -DE,AU,1,221,201912,101093 -DE,AU,1,222,201912,376607 -DE,AU,1,231,201912,54831 -DE,AU,1,234,201912,80535 -DE,AU,1,236,201912,776 -DE,AU,1,239,201912,222860 -DE,AU,1,242,201912,5546 -DE,AU,1,244,201912,12503837 -DE,AU,1,245,201912,738 -DE,AU,1,251,201912,2652 -DE,AU,1,254,201912,9818 -DE,AU,1,257,201912,143388 -DE,AU,1,259,201912,80150 -DE,AU,1,261,201912,61735 -DE,AU,1,262,201912,245014 -DE,AU,1,263,201912,552085 -DE,AU,1,264,201912,1206931 -DE,AU,1,265,201912,1227659 -DE,AU,1,266,201912,233094 -DE,AU,1,267,201912,242278 -DE,AU,1,268,201912,43776 -DE,AU,1,271,201912,327307 -DE,AU,1,272,201912,81931 -DE,AU,1,273,201912,105785 -DE,AU,1,274,201912,170684 -DE,AU,1,275,201912,45137 -DE,AU,1,279,201912,839296 -DE,AU,1,281,201912,755381 -DE,AU,1,282,201912,662983 -DE,AU,1,283,201912,124970 -DE,AU,1,284,201912,623794 -DE,AU,1,289,201912,1912321 -DE,AU,1,291,201912,166204 -DE,AU,1,292,201912,8093 -DE,AU,1,293,201912,467370 -DE,AU,1,302,201912,4806 -DE,AU,1,303,201912,124252 -DE,AU,1,309,201912,65571 -DE,AU,1,310,201912,69759 -DE,AU,1,321,201912,79583452 -DE,AU,1,322,201912,77129 -DE,AU,1,323,201912,15393 -DE,AU,1,324,201912,68048 -DE,AU,1,325,201912,4883728 -DE,AU,1,329,201912,111657 -DE,AU,2,011,201912,38908 -DE,AU,2,012,201912,626303 -DE,AU,2,013,201912,3745 -DE,AU,2,014,201912,205720 -DE,AU,2,023,201912,50214 -DE,AU,2,081,201912,30054 -DE,AU,2,089,201912,174100 -DE,AU,2,101,201912,587958 -DE,AU,2,102,201912,819342 -DE,AU,2,103,201912,1166249 -DE,AU,2,104,201912,190503 -DE,AU,2,105,201912,1759201 -DE,AU,2,106,201912,1085355 -DE,AU,2,107,201912,1466113 -DE,AU,2,108,201912,16666616 -DE,AU,2,109,201912,496793 -DE,AU,2,110,201912,1804295 -DE,AU,2,120,201912,24195 -DE,AU,2,131,201912,403844 -DE,AU,2,132,201912,325882 -DE,AU,2,139,201912,2013489 -DE,AU,2,141,201912,2292077 -DE,AU,2,142,201912,2234 -DE,AU,2,143,201912,391949 -DE,AU,2,151,201912,776759 -DE,AU,2,152,201912,3793376 -DE,AU,2,161,201912,1050879 -DE,AU,2,162,201912,2078145 -DE,AU,2,171,201912,5744672 -DE,AU,2,172,201912,3046428 -DE,AU,2,181,201912,6286 -DE,AU,2,192,201912,1037121 -DE,AU,2,201,201912,12084553 -DE,AU,2,202,201912,893900 -DE,AU,2,203,201912,4062263 -DE,AU,2,204,201912,8015780 -DE,AU,2,205,201912,9332856 -DE,AU,2,206,201912,65152 -DE,AU,2,20S,201912,2706611 -DE,AU,2,211,201912,829675 -DE,AU,2,212,201912,83327846 -DE,AU,2,221,201912,6858287 -DE,AU,2,222,201912,15721921 -DE,AU,2,231,201912,2047917 -DE,AU,2,232,201912,197440 -DE,AU,2,233,201912,512691 -DE,AU,2,234,201912,626217 -DE,AU,2,235,201912,6290 -DE,AU,2,236,201912,793976 -DE,AU,2,237,201912,151 -DE,AU,2,239,201912,3031890 -DE,AU,2,241,201912,2606307 -DE,AU,2,242,201912,1399982 -DE,AU,2,243,201912,377625 -DE,AU,2,244,201912,3855140 -DE,AU,2,245,201912,12124 -DE,AU,2,251,201912,3125005 -DE,AU,2,252,201912,258947 -DE,AU,2,253,201912,36391 -DE,AU,2,254,201912,309407 -DE,AU,2,257,201912,7887554 -DE,AU,2,259,201912,8759431 -DE,AU,2,261,201912,1046199 -DE,AU,2,262,201912,3237110 -DE,AU,2,263,201912,4674103 -DE,AU,2,264,201912,2365908 -DE,AU,2,265,201912,17768021 -DE,AU,2,266,201912,22583093 -DE,AU,2,267,201912,4150127 -DE,AU,2,268,201912,8602 -DE,AU,2,271,201912,9359489 -DE,AU,2,272,201912,1465248 -DE,AU,2,273,201912,4118943 -DE,AU,2,274,201912,3174479 -DE,AU,2,275,201912,14972805 -DE,AU,2,279,201912,10160403 -DE,AU,2,281,201912,30620359 -DE,AU,2,282,201912,44597743 -DE,AU,2,283,201912,8452595 -DE,AU,2,284,201912,4140689 -DE,AU,2,289,201912,40787815 -DE,AU,2,291,201912,182565673 -DE,AU,2,292,201912,2466188 -DE,AU,2,293,201912,9507405 -DE,AU,2,301,201912,457650 -DE,AU,2,302,201912,1637086 -DE,AU,2,303,201912,4674080 -DE,AU,2,309,201912,3886604 -DE,AU,2,310,201912,3324463 -DE,AU,2,321,201912,674898 -DE,AU,2,322,201912,715911 -DE,AU,2,323,201912,704773 -DE,AU,2,324,201912,481803 -DE,AU,2,325,201912,18172031 -DE,AU,2,329,201912,2728519 -DE,AW,2,012,201912,1287 -DE,AW,2,089,201912,1526 -DE,AW,2,101,201912,22866 -DE,AW,2,105,201912,63671 -DE,AW,2,106,201912,3063 -DE,AW,2,107,201912,342 -DE,AW,2,108,201912,21659 -DE,AW,2,110,201912,22657 -DE,AW,2,139,201912,270 -DE,AW,2,141,201912,3777 -DE,AW,2,143,201912,1966 -DE,AW,2,151,201912,1563 -DE,AW,2,152,201912,2005 -DE,AW,2,171,201912,678 -DE,AW,2,172,201912,2060 -DE,AW,2,201,201912,11281 -DE,AW,2,204,201912,22561 -DE,AW,2,205,201912,16033 -DE,AW,2,211,201912,209 -DE,AW,2,212,201912,941 -DE,AW,2,221,201912,2348 -DE,AW,2,222,201912,9282 -DE,AW,2,231,201912,3061 -DE,AW,2,234,201912,6839 -DE,AW,2,239,201912,36 -DE,AW,2,244,201912,2408 -DE,AW,2,257,201912,7631 -DE,AW,2,259,201912,13706 -DE,AW,2,265,201912,3113 -DE,AW,2,271,201912,32563 -DE,AW,2,272,201912,706 -DE,AW,2,273,201912,35 -DE,AW,2,275,201912,1692 -DE,AW,2,279,201912,1064 -DE,AW,2,281,201912,10963 -DE,AW,2,282,201912,42998 -DE,AW,2,289,201912,49634 -DE,AW,2,293,201912,5191 -DE,AW,2,310,201912,3772 -DE,AW,2,325,201912,3029 -DE,AW,2,329,201912,1606 -DE,AZ,1,061,201912,57480164 -DE,AZ,1,103,201912,2132580 -DE,AZ,2,011,201912,112064 -DE,AZ,2,012,201912,63904 -DE,AZ,2,014,201912,646462 -DE,AZ,2,089,201912,3749 -DE,AZ,2,101,201912,290640 -DE,AZ,2,102,201912,586 -DE,AZ,2,103,201912,7406 -DE,AZ,2,104,201912,7705 -DE,AZ,2,105,201912,192875 -DE,AZ,2,106,201912,3612 -DE,AZ,2,107,201912,27127 -DE,AZ,2,108,201912,351661 -DE,AZ,2,110,201912,467010 -DE,AZ,2,120,201912,18767 -DE,AZ,2,132,201912,12604 -DE,AZ,2,139,201912,44383 -DE,AZ,2,141,201912,462383 -DE,AZ,2,142,201912,1052 -DE,AZ,2,143,201912,185178 -DE,AZ,2,151,201912,39254 -DE,AZ,2,152,201912,142577 -DE,AZ,2,161,201912,12002 -DE,AZ,2,162,201912,38294 -DE,AZ,2,171,201912,31331 -DE,AZ,2,172,201912,106297 -DE,AZ,2,192,201912,611352 -DE,AZ,2,201,201912,55415 -DE,AZ,2,202,201912,4715 -DE,AZ,2,203,201912,12288 -DE,AZ,2,204,201912,1111180 -DE,AZ,2,205,201912,1386607 -DE,AZ,2,211,201912,93661 -DE,AZ,2,212,201912,2006243 -DE,AZ,2,221,201912,212816 -DE,AZ,2,222,201912,213223 -DE,AZ,2,231,201912,58889 -DE,AZ,2,234,201912,170863 -DE,AZ,2,239,201912,21421 -DE,AZ,2,241,201912,84476 -DE,AZ,2,242,201912,1530967 -DE,AZ,2,243,201912,4201 -DE,AZ,2,244,201912,76951 -DE,AZ,2,251,201912,17018 -DE,AZ,2,252,201912,38244 -DE,AZ,2,257,201912,134817 -DE,AZ,2,259,201912,271367 -DE,AZ,2,261,201912,407627 -DE,AZ,2,262,201912,223310 -DE,AZ,2,263,201912,478604 -DE,AZ,2,264,201912,90404 -DE,AZ,2,265,201912,491930 -DE,AZ,2,266,201912,585204 -DE,AZ,2,267,201912,180921 -DE,AZ,2,271,201912,337852 -DE,AZ,2,272,201912,121321 -DE,AZ,2,273,201912,84252 -DE,AZ,2,274,201912,67809 -DE,AZ,2,275,201912,79087 -DE,AZ,2,279,201912,376092 -DE,AZ,2,281,201912,2052313 -DE,AZ,2,282,201912,1570386 -DE,AZ,2,283,201912,389598 -DE,AZ,2,284,201912,246365 -DE,AZ,2,289,201912,1561314 -DE,AZ,2,291,201912,8677898 -DE,AZ,2,292,201912,244150 -DE,AZ,2,293,201912,299512 -DE,AZ,2,303,201912,128836 -DE,AZ,2,309,201912,98588 -DE,AZ,2,310,201912,176019 -DE,AZ,2,321,201912,130700 -DE,AZ,2,323,201912,28586 -DE,AZ,2,324,201912,12743 -DE,AZ,2,325,201912,1038738 -DE,AZ,2,329,201912,33242 -DE,BA,1,012,201912,318173 -DE,BA,1,022,201912,102797 -DE,BA,1,103,201912,813109 -DE,BA,1,106,201912,22700 -DE,BA,1,107,201912,5737 -DE,BA,1,108,201912,34963 -DE,BA,1,110,201912,187072 -DE,BA,1,132,201912,30560 -DE,BA,1,139,201912,454536 -DE,BA,1,141,201912,6385981 -DE,BA,1,143,201912,191730 -DE,BA,1,151,201912,107155 -DE,BA,1,152,201912,2149413 -DE,BA,1,161,201912,1043210 -DE,BA,1,162,201912,2139923 -DE,BA,1,171,201912,220690 -DE,BA,1,172,201912,44230 -DE,BA,1,201,201912,1284070 -DE,BA,1,203,201912,1074 -DE,BA,1,204,201912,3047 -DE,BA,1,205,201912,5950 -DE,BA,1,211,201912,71 -DE,BA,1,212,201912,89977 -DE,BA,1,221,201912,90726 -DE,BA,1,222,201912,3878395 -DE,BA,1,231,201912,149288 -DE,BA,1,233,201912,23508 -DE,BA,1,234,201912,18908 -DE,BA,1,237,201912,28099 -DE,BA,1,242,201912,87511 -DE,BA,1,243,201912,15490 -DE,BA,1,244,201912,1265127 -DE,BA,1,251,201912,864423 -DE,BA,1,252,201912,187979 -DE,BA,1,254,201912,254548 -DE,BA,1,257,201912,1716178 -DE,BA,1,259,201912,1055759 -DE,BA,1,262,201912,30864 -DE,BA,1,263,201912,92087 -DE,BA,1,264,201912,136627 -DE,BA,1,265,201912,54914 -DE,BA,1,271,201912,774995 -DE,BA,1,273,201912,99813 -DE,BA,1,274,201912,103590 -DE,BA,1,275,201912,1163 -DE,BA,1,279,201912,278249 -DE,BA,1,281,201912,960301 -DE,BA,1,282,201912,2502072 -DE,BA,1,283,201912,31394 -DE,BA,1,284,201912,527918 -DE,BA,1,289,201912,411214 -DE,BA,1,291,201912,84016 -DE,BA,1,292,201912,1887 -DE,BA,1,293,201912,1817074 -DE,BA,1,303,201912,573746 -DE,BA,1,309,201912,21929 -DE,BA,1,310,201912,5820784 -DE,BA,1,324,201912,1070301 -DE,BA,1,325,201912,5616 -DE,BA,1,329,201912,956 -DE,BA,2,011,201912,95540 -DE,BA,2,012,201912,18896 -DE,BA,2,014,201912,83721 -DE,BA,2,052,201912,233233 -DE,BA,2,081,201912,2862 -DE,BA,2,089,201912,91169 -DE,BA,2,101,201912,807125 -DE,BA,2,102,201912,129515 -DE,BA,2,103,201912,215513 -DE,BA,2,104,201912,10966 -DE,BA,2,105,201912,2636633 -DE,BA,2,106,201912,166182 -DE,BA,2,107,201912,265947 -DE,BA,2,108,201912,1638624 -DE,BA,2,109,201912,201243 -DE,BA,2,110,201912,472695 -DE,BA,2,120,201912,49870 -DE,BA,2,131,201912,125651 -DE,BA,2,132,201912,2864176 -DE,BA,2,139,201912,2099425 -DE,BA,2,141,201912,1425349 -DE,BA,2,143,201912,213011 -DE,BA,2,151,201912,1159725 -DE,BA,2,152,201912,271003 -DE,BA,2,161,201912,76760 -DE,BA,2,162,201912,267359 -DE,BA,2,171,201912,1110815 -DE,BA,2,172,201912,457553 -DE,BA,2,192,201912,433110 -DE,BA,2,201,201912,1137010 -DE,BA,2,202,201912,68789 -DE,BA,2,203,201912,377116 -DE,BA,2,204,201912,616721 -DE,BA,2,205,201912,964100 -DE,BA,2,211,201912,117180 -DE,BA,2,212,201912,2249257 -DE,BA,2,221,201912,744900 -DE,BA,2,222,201912,4312100 -DE,BA,2,231,201912,140398 -DE,BA,2,232,201912,313426 -DE,BA,2,233,201912,83238 -DE,BA,2,234,201912,63832 -DE,BA,2,236,201912,56740 -DE,BA,2,237,201912,118 -DE,BA,2,239,201912,147642 -DE,BA,2,241,201912,389787 -DE,BA,2,242,201912,71777 -DE,BA,2,243,201912,115472 -DE,BA,2,244,201912,1722837 -DE,BA,2,245,201912,23195 -DE,BA,2,251,201912,228997 -DE,BA,2,252,201912,270557 -DE,BA,2,254,201912,87014 -DE,BA,2,257,201912,1406652 -DE,BA,2,259,201912,900278 -DE,BA,2,261,201912,257424 -DE,BA,2,262,201912,702841 -DE,BA,2,263,201912,341935 -DE,BA,2,264,201912,317894 -DE,BA,2,265,201912,489519 -DE,BA,2,266,201912,703062 -DE,BA,2,267,201912,169101 -DE,BA,2,268,201912,12965 -DE,BA,2,271,201912,534115 -DE,BA,2,272,201912,225569 -DE,BA,2,273,201912,897901 -DE,BA,2,274,201912,98563 -DE,BA,2,275,201912,129402 -DE,BA,2,279,201912,272432 -DE,BA,2,281,201912,1527652 -DE,BA,2,282,201912,2159310 -DE,BA,2,283,201912,161886 -DE,BA,2,284,201912,671185 -DE,BA,2,289,201912,2426643 -DE,BA,2,291,201912,6933235 -DE,BA,2,292,201912,465975 -DE,BA,2,293,201912,1310535 -DE,BA,2,303,201912,4402 -DE,BA,2,309,201912,58022 -DE,BA,2,310,201912,256968 -DE,BA,2,321,201912,2285 -DE,BA,2,322,201912,21297 -DE,BA,2,323,201912,32709 -DE,BA,2,324,201912,242836 -DE,BA,2,325,201912,962644 -DE,BA,2,329,201912,353773 -DE,BB,1,110,201912,864 -DE,BB,1,279,201912,25954 -DE,BB,1,292,201912,5250 -DE,BB,1,325,201912,42801 -DE,BB,2,012,201912,4384 -DE,BB,2,101,201912,379869 -DE,BB,2,102,201912,153714 -DE,BB,2,103,201912,55671 -DE,BB,2,104,201912,10811 -DE,BB,2,105,201912,138754 -DE,BB,2,106,201912,32724 -DE,BB,2,107,201912,27459 -DE,BB,2,108,201912,132125 -DE,BB,2,110,201912,153534 -DE,BB,2,120,201912,10243 -DE,BB,2,139,201912,42446 -DE,BB,2,141,201912,120018 -DE,BB,2,143,201912,13119 -DE,BB,2,151,201912,6408 -DE,BB,2,152,201912,17943 -DE,BB,2,162,201912,5582 -DE,BB,2,171,201912,6452 -DE,BB,2,172,201912,38817 -DE,BB,2,201,201912,753 -DE,BB,2,202,201912,19877 -DE,BB,2,203,201912,87 -DE,BB,2,204,201912,52271 -DE,BB,2,205,201912,33483 -DE,BB,2,211,201912,3519 -DE,BB,2,212,201912,66603 -DE,BB,2,221,201912,23047 -DE,BB,2,222,201912,56105 -DE,BB,2,231,201912,19399 -DE,BB,2,234,201912,42986 -DE,BB,2,239,201912,915 -DE,BB,2,244,201912,3700 -DE,BB,2,257,201912,4107 -DE,BB,2,259,201912,22593 -DE,BB,2,261,201912,32 -DE,BB,2,262,201912,29 -DE,BB,2,263,201912,2023 -DE,BB,2,264,201912,166 -DE,BB,2,265,201912,152159 -DE,BB,2,268,201912,6695 -DE,BB,2,271,201912,8927 -DE,BB,2,272,201912,981 -DE,BB,2,273,201912,358 -DE,BB,2,274,201912,3978 -DE,BB,2,275,201912,32724 -DE,BB,2,279,201912,5704 -DE,BB,2,281,201912,166310 -DE,BB,2,282,201912,360966 -DE,BB,2,289,201912,71491 -DE,BB,2,291,201912,58323 -DE,BB,2,293,201912,7770 -DE,BB,2,309,201912,920 -DE,BB,2,310,201912,5291 -DE,BB,2,321,201912,35739 -DE,BB,2,323,201912,12179 -DE,BB,2,324,201912,728 -DE,BB,2,325,201912,41489 -DE,BB,2,329,201912,17681 -DE,BD,1,011,201912,105991 -DE,BD,1,012,201912,3185 -DE,BD,1,102,201912,4810792 -DE,BD,1,120,201912,55807 -DE,BD,1,131,201912,39296 -DE,BD,1,132,201912,18954 -DE,BD,1,139,201912,5830737 -DE,BD,1,141,201912,185625137 -DE,BD,1,143,201912,41594904 -DE,BD,1,151,201912,849485 -DE,BD,1,152,201912,4886535 -DE,BD,1,162,201912,54201 -DE,BD,1,171,201912,1581 -DE,BD,1,172,201912,66393 -DE,BD,1,201,201912,13289 -DE,BD,1,205,201912,2290 -DE,BD,1,222,201912,76690 -DE,BD,1,234,201912,155341 -DE,BD,1,259,201912,253491 -DE,BD,1,263,201912,12457 -DE,BD,1,267,201912,27461 -DE,BD,1,309,201912,1974051 -DE,BD,1,321,201912,16885 -DE,BD,1,323,201912,7532 -DE,BD,1,324,201912,134351 -DE,BD,1,325,201912,298814 -DE,BD,1,329,201912,430422 -DE,BD,2,081,201912,26232 -DE,BD,2,089,201912,56956 -DE,BD,2,103,201912,26432 -DE,BD,2,104,201912,31415 -DE,BD,2,105,201912,31888 -DE,BD,2,106,201912,323079 -DE,BD,2,108,201912,42652 -DE,BD,2,109,201912,332543 -DE,BD,2,131,201912,13789 -DE,BD,2,132,201912,64082 -DE,BD,2,139,201912,115782 -DE,BD,2,141,201912,8814 -DE,BD,2,151,201912,29169 -DE,BD,2,161,201912,208622 -DE,BD,2,162,201912,2004 -DE,BD,2,171,201912,335222 -DE,BD,2,172,201912,463290 -DE,BD,2,192,201912,42459 -DE,BD,2,201,201912,3790209 -DE,BD,2,202,201912,151087 -DE,BD,2,203,201912,83936 -DE,BD,2,204,201912,641520 -DE,BD,2,205,201912,3034974 -DE,BD,2,206,201912,2400 -DE,BD,2,211,201912,176952 -DE,BD,2,212,201912,855329 -DE,BD,2,221,201912,209907 -DE,BD,2,222,201912,887322 -DE,BD,2,231,201912,111223 -DE,BD,2,232,201912,19930 -DE,BD,2,234,201912,4311 -DE,BD,2,236,201912,254015 -DE,BD,2,239,201912,35586 -DE,BD,2,241,201912,346989 -DE,BD,2,242,201912,35588 -DE,BD,2,243,201912,98812 -DE,BD,2,244,201912,9400 -DE,BD,2,245,201912,2048 -DE,BD,2,251,201912,349393 -DE,BD,2,252,201912,8973 -DE,BD,2,253,201912,448902 -DE,BD,2,257,201912,256113 -DE,BD,2,259,201912,271612 -DE,BD,2,261,201912,76011 -DE,BD,2,262,201912,623504 -DE,BD,2,263,201912,834173 -DE,BD,2,264,201912,179822 -DE,BD,2,265,201912,1157108 -DE,BD,2,266,201912,1913807 -DE,BD,2,267,201912,387624 -DE,BD,2,271,201912,5051275 -DE,BD,2,272,201912,4465 -DE,BD,2,273,201912,492806 -DE,BD,2,274,201912,86088 -DE,BD,2,275,201912,15195 -DE,BD,2,279,201912,322412 -DE,BD,2,281,201912,3543457 -DE,BD,2,282,201912,16107261 -DE,BD,2,283,201912,7966 -DE,BD,2,284,201912,1080481 -DE,BD,2,289,201912,13179347 -DE,BD,2,291,201912,275410 -DE,BD,2,292,201912,23537 -DE,BD,2,293,201912,114028 -DE,BD,2,309,201912,62920 -DE,BD,2,310,201912,246307 -DE,BD,2,323,201912,792 -DE,BD,2,325,201912,3377534 -DE,BD,2,329,201912,79707 -DE,BE,1,011,201912,38049685 -DE,BE,1,012,201912,34102631 -DE,BE,1,013,201912,879835 -DE,BE,1,014,201912,12162951 -DE,BE,1,01M,201912,939444 -DE,BE,1,021,201912,234208 -DE,BE,1,022,201912,1561281 -DE,BE,1,023,201912,13820 -DE,BE,1,030,201912,192071 -DE,BE,1,051,201912,12373922 -DE,BE,1,072,201912,16192369 -DE,BE,1,081,201912,4046417 -DE,BE,1,089,201912,3065982 -DE,BE,1,101,201912,82600880 -DE,BE,1,102,201912,7772295 -DE,BE,1,103,201912,53533550 -DE,BE,1,104,201912,10005099 -DE,BE,1,105,201912,23896833 -DE,BE,1,106,201912,17535586 -DE,BE,1,107,201912,16889377 -DE,BE,1,108,201912,73998720 -DE,BE,1,109,201912,10063888 -DE,BE,1,10M,201912,21927080 -DE,BE,1,110,201912,9462107 -DE,BE,1,120,201912,10418730 -DE,BE,1,131,201912,1965331 -DE,BE,1,132,201912,4750757 -DE,BE,1,139,201912,29834738 -DE,BE,1,13M,201912,1951254 -DE,BE,1,141,201912,56207745 -DE,BE,1,142,201912,5532 -DE,BE,1,143,201912,13431328 -DE,BE,1,14M,201912,5900658 -DE,BE,1,151,201912,10059358 -DE,BE,1,152,201912,49019119 -DE,BE,1,161,201912,5117691 -DE,BE,1,162,201912,14487385 -DE,BE,1,16M,201912,8572 -DE,BE,1,171,201912,20346701 -DE,BE,1,172,201912,12416153 -DE,BE,1,17M,201912,2776276 -DE,BE,1,181,201912,780461 -DE,BE,1,191,201912,529108 -DE,BE,1,192,201912,348822780 -DE,BE,1,201,201912,683652371 -DE,BE,1,202,201912,12649433 -DE,BE,1,203,201912,16701322 -DE,BE,1,204,201912,43926268 -DE,BE,1,205,201912,109374411 -DE,BE,1,206,201912,5916930 -DE,BE,1,20M,201912,8181173 -DE,BE,1,211,201912,25257615 -DE,BE,1,212,201912,391495502 -DE,BE,1,221,201912,28019038 -DE,BE,1,222,201912,64597238 -DE,BE,1,231,201912,22735562 -DE,BE,1,232,201912,1024951 -DE,BE,1,233,201912,3261732 -DE,BE,1,234,201912,11191137 -DE,BE,1,235,201912,1453566 -DE,BE,1,236,201912,2322787 -DE,BE,1,237,201912,1202054 -DE,BE,1,239,201912,3659162 -DE,BE,1,23M,201912,2504496 -DE,BE,1,241,201912,177296364 -DE,BE,1,242,201912,4391747 -DE,BE,1,243,201912,13756622 -DE,BE,1,244,201912,119582455 -DE,BE,1,245,201912,189209 -DE,BE,1,251,201912,7667892 -DE,BE,1,252,201912,2857143 -DE,BE,1,253,201912,3391 -DE,BE,1,254,201912,157085 -DE,BE,1,257,201912,14757429 -DE,BE,1,259,201912,19557840 -DE,BE,1,25M,201912,3028856 -DE,BE,1,261,201912,29152850 -DE,BE,1,262,201912,27722440 -DE,BE,1,263,201912,18609517 -DE,BE,1,264,201912,23663102 -DE,BE,1,265,201912,19038102 -DE,BE,1,266,201912,12384335 -DE,BE,1,267,201912,4077280 -DE,BE,1,268,201912,67690 -DE,BE,1,271,201912,12974391 -DE,BE,1,272,201912,14259751 -DE,BE,1,273,201912,13186400 -DE,BE,1,274,201912,6192084 -DE,BE,1,275,201912,20735405 -DE,BE,1,279,201912,13230199 -DE,BE,1,281,201912,45586906 -DE,BE,1,282,201912,89943795 -DE,BE,1,283,201912,15341867 -DE,BE,1,284,201912,16258332 -DE,BE,1,289,201912,32769325 -DE,BE,1,291,201912,435618518 -DE,BE,1,292,201912,4843088 -DE,BE,1,293,201912,51661525 -DE,BE,1,301,201912,253416 -DE,BE,1,302,201912,402982 -DE,BE,1,303,201912,62383702 -DE,BE,1,309,201912,14702522 -DE,BE,1,30M,201912,227919 -DE,BE,1,310,201912,10664436 -DE,BE,1,321,201912,8398086 -DE,BE,1,322,201912,829030 -DE,BE,1,323,201912,1291995 -DE,BE,1,324,201912,11349034 -DE,BE,1,325,201912,90146645 -DE,BE,1,329,201912,6238489 -DE,BE,1,32M,201912,233830 -DE,BE,2,011,201912,12811861 -DE,BE,2,012,201912,2152533 -DE,BE,2,013,201912,893046 -DE,BE,2,014,201912,3624854 -DE,BE,2,01M,201912,209406 -DE,BE,2,021,201912,6883 -DE,BE,2,022,201912,2970929 -DE,BE,2,023,201912,136366 -DE,BE,2,030,201912,273420 -DE,BE,2,052,201912,2359735 -DE,BE,2,072,201912,734881 -DE,BE,2,081,201912,3204545 -DE,BE,2,089,201912,5412951 -DE,BE,2,101,201912,26347353 -DE,BE,2,102,201912,5489002 -DE,BE,2,103,201912,16702215 -DE,BE,2,104,201912,10774165 -DE,BE,2,105,201912,33224286 -DE,BE,2,106,201912,10164575 -DE,BE,2,107,201912,11546516 -DE,BE,2,108,201912,66759309 -DE,BE,2,109,201912,8834283 -DE,BE,2,10M,201912,4107730 -DE,BE,2,110,201912,20866058 -DE,BE,2,120,201912,7020505 -DE,BE,2,131,201912,1378113 -DE,BE,2,132,201912,5861837 -DE,BE,2,139,201912,15104078 -DE,BE,2,13M,201912,233271 -DE,BE,2,141,201912,52863384 -DE,BE,2,142,201912,82393 -DE,BE,2,143,201912,14849539 -DE,BE,2,14M,201912,2930879 -DE,BE,2,151,201912,3942082 -DE,BE,2,152,201912,18946233 -DE,BE,2,161,201912,7671738 -DE,BE,2,162,201912,13884592 -DE,BE,2,16M,201912,13476 -DE,BE,2,171,201912,45622085 -DE,BE,2,172,201912,43453376 -DE,BE,2,17M,201912,2696233 -DE,BE,2,17S,201912,5905 -DE,BE,2,181,201912,585943 -DE,BE,2,191,201912,9750119 -DE,BE,2,192,201912,56333279 -DE,BE,2,201,201912,315509294 -DE,BE,2,202,201912,7018646 -DE,BE,2,203,201912,26591605 -DE,BE,2,204,201912,38628308 -DE,BE,2,205,201912,76316796 -DE,BE,2,206,201912,1297839 -DE,BE,2,20M,201912,1873318 -DE,BE,2,20S,201912,11700662 -DE,BE,2,211,201912,6294947 -DE,BE,2,212,201912,259806947 -DE,BE,2,221,201912,24646826 -DE,BE,2,222,201912,89505520 -DE,BE,2,231,201912,24249637 -DE,BE,2,232,201912,1133899 -DE,BE,2,233,201912,2037214 -DE,BE,2,234,201912,2776277 -DE,BE,2,235,201912,3744989 -DE,BE,2,236,201912,3620087 -DE,BE,2,237,201912,67800 -DE,BE,2,239,201912,5046377 -DE,BE,2,23M,201912,1197914 -DE,BE,2,241,201912,65519378 -DE,BE,2,242,201912,15326022 -DE,BE,2,243,201912,7015142 -DE,BE,2,244,201912,94249151 -DE,BE,2,245,201912,382859 -DE,BE,2,251,201912,17239183 -DE,BE,2,252,201912,11393255 -DE,BE,2,253,201912,4781008 -DE,BE,2,254,201912,472702 -DE,BE,2,257,201912,25348559 -DE,BE,2,259,201912,38197291 -DE,BE,2,25M,201912,1818353 -DE,BE,2,261,201912,32075950 -DE,BE,2,262,201912,50654038 -DE,BE,2,263,201912,14409708 -DE,BE,2,264,201912,9638026 -DE,BE,2,265,201912,62499866 -DE,BE,2,266,201912,10492732 -DE,BE,2,267,201912,10027808 -DE,BE,2,268,201912,249249 -DE,BE,2,271,201912,42113008 -DE,BE,2,272,201912,7704500 -DE,BE,2,273,201912,19982078 -DE,BE,2,274,201912,13371504 -DE,BE,2,275,201912,33121335 -DE,BE,2,279,201912,25546850 -DE,BE,2,281,201912,98293430 -DE,BE,2,282,201912,136099334 -DE,BE,2,283,201912,21900095 -DE,BE,2,284,201912,17919500 -DE,BE,2,289,201912,84171734 -DE,BE,2,291,201912,457427475 -DE,BE,2,292,201912,13824838 -DE,BE,2,293,201912,113081558 -DE,BE,2,301,201912,99864 -DE,BE,2,302,201912,2085965 -DE,BE,2,303,201912,13115475 -DE,BE,2,309,201912,13362334 -DE,BE,2,30M,201912,1537 -DE,BE,2,310,201912,36914429 -DE,BE,2,321,201912,10133167 -DE,BE,2,322,201912,1618518 -DE,BE,2,323,201912,1360375 -DE,BE,2,324,201912,4800753 -DE,BE,2,325,201912,57381937 -DE,BE,2,329,201912,8028648 -DE,BE,2,32M,201912,108977 -DE,BE,2,32S,201912,8356 -DE,BF,1,011,201912,2 -DE,BF,1,012,201912,168486 -DE,BF,1,103,201912,183144 -DE,BF,1,104,201912,48403 -DE,BF,1,259,201912,862 -DE,BF,2,104,201912,20 -DE,BF,2,108,201912,90 -DE,BF,2,110,201912,537885 -DE,BF,2,139,201912,1885 -DE,BF,2,141,201912,3044 -DE,BF,2,151,201912,4857 -DE,BF,2,172,201912,4790 -DE,BF,2,192,201912,2837 -DE,BF,2,201,201912,81095 -DE,BF,2,204,201912,3765 -DE,BF,2,205,201912,92349 -DE,BF,2,211,201912,46830 -DE,BF,2,212,201912,51319 -DE,BF,2,221,201912,7609 -DE,BF,2,222,201912,465131 -DE,BF,2,234,201912,90 -DE,BF,2,239,201912,796 -DE,BF,2,251,201912,3182 -DE,BF,2,257,201912,110234 -DE,BF,2,259,201912,12109 -DE,BF,2,261,201912,235324 -DE,BF,2,262,201912,11203 -DE,BF,2,263,201912,309822 -DE,BF,2,264,201912,6211 -DE,BF,2,265,201912,95567 -DE,BF,2,266,201912,24305 -DE,BF,2,267,201912,217614 -DE,BF,2,271,201912,138470 -DE,BF,2,273,201912,1670 -DE,BF,2,274,201912,1160 -DE,BF,2,275,201912,12860 -DE,BF,2,279,201912,180819 -DE,BF,2,281,201912,118354 -DE,BF,2,282,201912,369550 -DE,BF,2,284,201912,15080 -DE,BF,2,289,201912,540354 -DE,BF,2,291,201912,404345 -DE,BF,2,292,201912,26420 -DE,BF,2,293,201912,81095 -DE,BF,2,309,201912,2310 -DE,BF,2,310,201912,32411 -DE,BF,2,323,201912,130 -DE,BF,2,325,201912,46639 -DE,BF,2,329,201912,56580 -DE,BG,1,011,201912,3367690 -DE,BG,1,012,201912,763801 -DE,BG,1,014,201912,1001512 -DE,BG,1,01M,201912,1123 -DE,BG,1,022,201912,27041 -DE,BG,1,081,201912,27907 -DE,BG,1,089,201912,45 -DE,BG,1,101,201912,230102 -DE,BG,1,102,201912,145929 -DE,BG,1,103,201912,2433225 -DE,BG,1,104,201912,540294 -DE,BG,1,105,201912,446117 -DE,BG,1,106,201912,1585848 -DE,BG,1,107,201912,949194 -DE,BG,1,108,201912,1839300 -DE,BG,1,109,201912,2026470 -DE,BG,1,10M,201912,372693 -DE,BG,1,110,201912,9860 -DE,BG,1,131,201912,1354656 -DE,BG,1,132,201912,132621 -DE,BG,1,139,201912,1364922 -DE,BG,1,13M,201912,17174 -DE,BG,1,141,201912,20866111 -DE,BG,1,143,201912,1773099 -DE,BG,1,14M,201912,4819231 -DE,BG,1,151,201912,8574 -DE,BG,1,152,201912,39745 -DE,BG,1,161,201912,15923 -DE,BG,1,162,201912,1794301 -DE,BG,1,171,201912,306008 -DE,BG,1,172,201912,2559686 -DE,BG,1,17M,201912,267539 -DE,BG,1,192,201912,400886 -DE,BG,1,201,201912,1770706 -DE,BG,1,202,201912,392119 -DE,BG,1,203,201912,48835 -DE,BG,1,204,201912,1167870 -DE,BG,1,205,201912,3215607 -DE,BG,1,206,201912,67365 -DE,BG,1,20M,201912,189834 -DE,BG,1,211,201912,141298 -DE,BG,1,212,201912,8779249 -DE,BG,1,221,201912,3053082 -DE,BG,1,222,201912,7664596 -DE,BG,1,231,201912,2395833 -DE,BG,1,232,201912,3298 -DE,BG,1,233,201912,6739 -DE,BG,1,234,201912,655973 -DE,BG,1,237,201912,605 -DE,BG,1,239,201912,137734 -DE,BG,1,23M,201912,113049 -DE,BG,1,241,201912,1113594 -DE,BG,1,242,201912,1877135 -DE,BG,1,243,201912,515911 -DE,BG,1,244,201912,43667599 -DE,BG,1,245,201912,4272 -DE,BG,1,251,201912,894706 -DE,BG,1,252,201912,460549 -DE,BG,1,254,201912,206317 -DE,BG,1,257,201912,1724145 -DE,BG,1,259,201912,3760658 -DE,BG,1,25M,201912,358800 -DE,BG,1,261,201912,1579813 -DE,BG,1,262,201912,10632902 -DE,BG,1,263,201912,3150418 -DE,BG,1,264,201912,1381886 -DE,BG,1,265,201912,6884320 -DE,BG,1,266,201912,9747 -DE,BG,1,267,201912,830392 -DE,BG,1,268,201912,838 -DE,BG,1,271,201912,14972019 -DE,BG,1,272,201912,1002407 -DE,BG,1,273,201912,5483546 -DE,BG,1,274,201912,675804 -DE,BG,1,275,201912,4297401 -DE,BG,1,279,201912,6919452 -DE,BG,1,281,201912,11142826 -DE,BG,1,282,201912,6577495 -DE,BG,1,283,201912,181440 -DE,BG,1,284,201912,833229 -DE,BG,1,289,201912,1984466 -DE,BG,1,291,201912,19283853 -DE,BG,1,292,201912,432139 -DE,BG,1,293,201912,13179106 -DE,BG,1,302,201912,3784989 -DE,BG,1,303,201912,163064 -DE,BG,1,309,201912,10511741 -DE,BG,1,30M,201912,465 -DE,BG,1,310,201912,1524661 -DE,BG,1,321,201912,27744 -DE,BG,1,322,201912,116822 -DE,BG,1,323,201912,8122 -DE,BG,1,324,201912,335063 -DE,BG,1,325,201912,1314491 -DE,BG,1,329,201912,453540 -DE,BG,1,32M,201912,9443 -DE,BG,2,011,201912,338907 -DE,BG,2,012,201912,571470 -DE,BG,2,013,201912,175949 -DE,BG,2,014,201912,27139 -DE,BG,2,01M,201912,12220 -DE,BG,2,023,201912,10239 -DE,BG,2,030,201912,52727 -DE,BG,2,081,201912,15627 -DE,BG,2,089,201912,57218 -DE,BG,2,101,201912,4243079 -DE,BG,2,102,201912,490834 -DE,BG,2,103,201912,899168 -DE,BG,2,104,201912,147927 -DE,BG,2,105,201912,6133169 -DE,BG,2,106,201912,689731 -DE,BG,2,107,201912,875888 -DE,BG,2,108,201912,8624357 -DE,BG,2,109,201912,633406 -DE,BG,2,10M,201912,501386 -DE,BG,2,110,201912,824652 -DE,BG,2,120,201912,575462 -DE,BG,2,131,201912,936301 -DE,BG,2,132,201912,5476160 -DE,BG,2,139,201912,2655320 -DE,BG,2,13M,201912,116243 -DE,BG,2,141,201912,2776323 -DE,BG,2,143,201912,434588 -DE,BG,2,14M,201912,140622 -DE,BG,2,151,201912,723115 -DE,BG,2,152,201912,1174951 -DE,BG,2,161,201912,306137 -DE,BG,2,162,201912,1671280 -DE,BG,2,16M,201912,1177 -DE,BG,2,171,201912,2096499 -DE,BG,2,172,201912,1464766 -DE,BG,2,17M,201912,166433 -DE,BG,2,181,201912,16876 -DE,BG,2,192,201912,827613 -DE,BG,2,201,201912,5895167 -DE,BG,2,202,201912,1234718 -DE,BG,2,203,201912,1051075 -DE,BG,2,204,201912,2133017 -DE,BG,2,205,201912,4515226 -DE,BG,2,206,201912,28173 -DE,BG,2,20M,201912,205647 -DE,BG,2,20S,201912,358182 -DE,BG,2,211,201912,267318 -DE,BG,2,212,201912,21158666 -DE,BG,2,221,201912,2859005 -DE,BG,2,222,201912,8569337 -DE,BG,2,231,201912,614651 -DE,BG,2,232,201912,511435 -DE,BG,2,233,201912,43360 -DE,BG,2,234,201912,242722 -DE,BG,2,235,201912,729 -DE,BG,2,236,201912,196248 -DE,BG,2,237,201912,7559 -DE,BG,2,239,201912,642474 -DE,BG,2,23M,201912,93373 -DE,BG,2,241,201912,2305521 -DE,BG,2,242,201912,701202 -DE,BG,2,243,201912,801601 -DE,BG,2,244,201912,3978110 -DE,BG,2,245,201912,23160 -DE,BG,2,251,201912,912422 -DE,BG,2,252,201912,248531 -DE,BG,2,253,201912,3198 -DE,BG,2,254,201912,261785 -DE,BG,2,257,201912,3195945 -DE,BG,2,259,201912,6350006 -DE,BG,2,25M,201912,229699 -DE,BG,2,261,201912,7792237 -DE,BG,2,262,201912,5467164 -DE,BG,2,263,201912,4099012 -DE,BG,2,264,201912,671220 -DE,BG,2,265,201912,5877332 -DE,BG,2,266,201912,717667 -DE,BG,2,267,201912,1527431 -DE,BG,2,268,201912,10938 -DE,BG,2,271,201912,6548664 -DE,BG,2,272,201912,460450 -DE,BG,2,273,201912,5945324 -DE,BG,2,274,201912,533282 -DE,BG,2,275,201912,2473751 -DE,BG,2,279,201912,7036655 -DE,BG,2,281,201912,12090960 -DE,BG,2,282,201912,9399973 -DE,BG,2,283,201912,6968973 -DE,BG,2,284,201912,2414591 -DE,BG,2,289,201912,12170732 -DE,BG,2,291,201912,26963763 -DE,BG,2,292,201912,2567058 -DE,BG,2,293,201912,5320049 -DE,BG,2,302,201912,3154580 -DE,BG,2,303,201912,2831138 -DE,BG,2,309,201912,634671 -DE,BG,2,30M,201912,14454 -DE,BG,2,310,201912,1600022 -DE,BG,2,321,201912,972837 -DE,BG,2,322,201912,104294 -DE,BG,2,323,201912,233519 -DE,BG,2,324,201912,188758 -DE,BG,2,325,201912,2877271 -DE,BG,2,329,201912,1422724 -DE,BG,2,32M,201912,6574 -DE,BG,2,32S,201912,1477 -DE,BH,1,139,201912,2621 -DE,BH,1,141,201912,1835 -DE,BH,1,152,201912,755 -DE,BH,1,204,201912,76 -DE,BH,1,211,201912,803 -DE,BH,1,222,201912,83694 -DE,BH,1,231,201912,93986 -DE,BH,1,244,201912,4218334 -DE,BH,1,262,201912,971 -DE,BH,1,263,201912,25658 -DE,BH,1,265,201912,1548 -DE,BH,1,271,201912,1927 -DE,BH,1,281,201912,38148 -DE,BH,1,291,201912,19041 -DE,BH,1,293,201912,24027 -DE,BH,1,302,201912,452935 -DE,BH,1,321,201912,378 -DE,BH,1,325,201912,1189 -DE,BH,1,329,201912,1057 -DE,BH,2,011,201912,39959 -DE,BH,2,012,201912,211 -DE,BH,2,089,201912,10111 -DE,BH,2,103,201912,81512 -DE,BH,2,105,201912,189195 -DE,BH,2,106,201912,23257 -DE,BH,2,107,201912,139079 -DE,BH,2,108,201912,574696 -DE,BH,2,109,201912,17500 -DE,BH,2,110,201912,315296 -DE,BH,2,120,201912,39950 -DE,BH,2,132,201912,132956 -DE,BH,2,139,201912,68218 -DE,BH,2,141,201912,94983 -DE,BH,2,143,201912,5778 -DE,BH,2,151,201912,36779 -DE,BH,2,152,201912,13081 -DE,BH,2,161,201912,142096 -DE,BH,2,162,201912,47291 -DE,BH,2,171,201912,167923 -DE,BH,2,172,201912,15861 -DE,BH,2,192,201912,82797 -DE,BH,2,201,201912,1539015 -DE,BH,2,203,201912,129617 -DE,BH,2,204,201912,380374 -DE,BH,2,205,201912,463625 -DE,BH,2,211,201912,18846 -DE,BH,2,212,201912,1962780 -DE,BH,2,221,201912,394835 -DE,BH,2,222,201912,646408 -DE,BH,2,231,201912,29715 -DE,BH,2,232,201912,58596 -DE,BH,2,234,201912,88833 -DE,BH,2,236,201912,60 -DE,BH,2,239,201912,47913 -DE,BH,2,241,201912,443719 -DE,BH,2,242,201912,112014 -DE,BH,2,244,201912,1074500 -DE,BH,2,251,201912,76195 -DE,BH,2,252,201912,8154 -DE,BH,2,257,201912,150712 -DE,BH,2,259,201912,1011279 -DE,BH,2,261,201912,10542 -DE,BH,2,262,201912,95290 -DE,BH,2,263,201912,577775 -DE,BH,2,264,201912,35145 -DE,BH,2,265,201912,926469 -DE,BH,2,266,201912,94626 -DE,BH,2,267,201912,237766 -DE,BH,2,271,201912,3204636 -DE,BH,2,272,201912,144832 -DE,BH,2,273,201912,148013 -DE,BH,2,274,201912,147121 -DE,BH,2,275,201912,176433 -DE,BH,2,279,201912,405540 -DE,BH,2,281,201912,2272293 -DE,BH,2,282,201912,3931328 -DE,BH,2,284,201912,51755 -DE,BH,2,289,201912,1983937 -DE,BH,2,291,201912,7689508 -DE,BH,2,292,201912,1251 -DE,BH,2,293,201912,367303 -DE,BH,2,303,201912,78203 -DE,BH,2,309,201912,8853 -DE,BH,2,310,201912,327094 -DE,BH,2,321,201912,61911 -DE,BH,2,322,201912,3476 -DE,BH,2,323,201912,2637 -DE,BH,2,325,201912,962599 -DE,BH,2,329,201912,127261 -DE,BI,1,012,201912,1346701 -DE,BI,2,108,201912,10147 -DE,BI,2,201,201912,317 -DE,BI,2,205,201912,61096 -DE,BI,2,212,201912,133729 -DE,BI,2,221,201912,1058 -DE,BI,2,222,201912,3770 -DE,BI,2,239,201912,64760 -DE,BI,2,257,201912,2683 -DE,BI,2,259,201912,34 -DE,BI,2,262,201912,2142 -DE,BI,2,265,201912,31646 -DE,BI,2,267,201912,1968 -DE,BI,2,271,201912,205 -DE,BI,2,273,201912,3111 -DE,BI,2,274,201912,10242 -DE,BI,2,279,201912,3046 -DE,BI,2,281,201912,13301 -DE,BI,2,282,201912,21264 -DE,BI,2,289,201912,6402 -DE,BI,2,293,201912,9656 -DE,BI,2,325,201912,5564 -DE,BJ,2,104,201912,670 -DE,BJ,2,105,201912,40724 -DE,BJ,2,106,201912,150 -DE,BJ,2,108,201912,27118 -DE,BJ,2,110,201912,30 -DE,BJ,2,139,201912,60 -DE,BJ,2,141,201912,72981 -DE,BJ,2,151,201912,1484 -DE,BJ,2,162,201912,700 -DE,BJ,2,172,201912,8674 -DE,BJ,2,201,201912,50979 -DE,BJ,2,204,201912,2986 -DE,BJ,2,205,201912,25884 -DE,BJ,2,211,201912,342 -DE,BJ,2,212,201912,393568 -DE,BJ,2,221,201912,16508 -DE,BJ,2,222,201912,4839 -DE,BJ,2,231,201912,23968 -DE,BJ,2,234,201912,240 -DE,BJ,2,239,201912,648 -DE,BJ,2,257,201912,5972 -DE,BJ,2,259,201912,13618 -DE,BJ,2,262,201912,27810 -DE,BJ,2,263,201912,54305 -DE,BJ,2,264,201912,1820 -DE,BJ,2,265,201912,388853 -DE,BJ,2,267,201912,19231 -DE,BJ,2,271,201912,7119 -DE,BJ,2,274,201912,191 -DE,BJ,2,275,201912,72978 -DE,BJ,2,279,201912,123 -DE,BJ,2,281,201912,25685 -DE,BJ,2,282,201912,67396 -DE,BJ,2,283,201912,80 -DE,BJ,2,289,201912,149965 -DE,BJ,2,291,201912,717083 -DE,BJ,2,292,201912,11628 -DE,BJ,2,293,201912,1952 -DE,BJ,2,309,201912,3543 -DE,BJ,2,310,201912,70008 -DE,BJ,2,323,201912,110 -DE,BJ,2,324,201912,80 -DE,BJ,2,325,201912,38715 -DE,BJ,2,329,201912,13035 -DE,BL,1,204,201912,165002 -DE,BL,2,274,201912,1171 -DE,BL,2,321,201912,21320 -DE,BM,2,110,201912,7172 -DE,BM,2,141,201912,1303 -DE,BM,2,151,201912,635 -DE,BM,2,152,201912,2055 -DE,BM,2,205,201912,3116 -DE,BM,2,212,201912,6885 -DE,BM,2,221,201912,14874 -DE,BM,2,222,201912,10134 -DE,BM,2,231,201912,334 -DE,BM,2,257,201912,3468 -DE,BM,2,259,201912,2984 -DE,BM,2,263,201912,15 -DE,BM,2,265,201912,44154 -DE,BM,2,271,201912,24191 -DE,BM,2,272,201912,886 -DE,BM,2,273,201912,93 -DE,BM,2,274,201912,842 -DE,BM,2,281,201912,9121 -DE,BM,2,282,201912,7020 -DE,BM,2,289,201912,2518 -DE,BM,2,291,201912,49484 -DE,BM,2,293,201912,25033 -DE,BM,2,325,201912,1697 -DE,BM,2,329,201912,8000 -DE,BN,1,265,201912,675 -DE,BN,2,107,201912,46660 -DE,BN,2,139,201912,31776 -DE,BN,2,141,201912,9135 -DE,BN,2,143,201912,586 -DE,BN,2,151,201912,23297 -DE,BN,2,152,201912,6731 -DE,BN,2,204,201912,48880 -DE,BN,2,205,201912,268079 -DE,BN,2,211,201912,749 -DE,BN,2,212,201912,10084 -DE,BN,2,221,201912,21158 -DE,BN,2,222,201912,11043 -DE,BN,2,242,201912,19815 -DE,BN,2,244,201912,835 -DE,BN,2,257,201912,30315 -DE,BN,2,259,201912,81376 -DE,BN,2,263,201912,9580 -DE,BN,2,264,201912,70628 -DE,BN,2,265,201912,885025 -DE,BN,2,271,201912,603843 -DE,BN,2,273,201912,51123 -DE,BN,2,274,201912,12731 -DE,BN,2,275,201912,474 -DE,BN,2,279,201912,17048 -DE,BN,2,281,201912,748406 -DE,BN,2,282,201912,958526 -DE,BN,2,289,201912,64959 -DE,BN,2,291,201912,518295 -DE,BN,2,293,201912,84940 -DE,BN,2,303,201912,5806 -DE,BN,2,309,201912,22821 -DE,BN,2,310,201912,98 -DE,BN,2,325,201912,30719 -DE,BN,2,329,201912,104192 -DE,BO,1,011,201912,891013 -DE,BO,1,103,201912,2839402 -DE,BO,1,108,201912,157643 -DE,BO,1,131,201912,13052 -DE,BO,1,141,201912,9862 -DE,BO,1,143,201912,15188 -DE,BO,1,161,201912,157145 -DE,BO,1,244,201912,382730 -DE,BO,1,321,201912,434 -DE,BO,2,014,201912,50 -DE,BO,2,089,201912,215 -DE,BO,2,105,201912,333 -DE,BO,2,108,201912,10202 -DE,BO,2,139,201912,26785 -DE,BO,2,141,201912,624 -DE,BO,2,151,201912,2146 -DE,BO,2,162,201912,15110 -DE,BO,2,171,201912,13865 -DE,BO,2,172,201912,105303 -DE,BO,2,192,201912,5 -DE,BO,2,201,201912,793440 -DE,BO,2,203,201912,207703 -DE,BO,2,204,201912,203936 -DE,BO,2,205,201912,279864 -DE,BO,2,211,201912,14532 -DE,BO,2,212,201912,1317122 -DE,BO,2,221,201912,136132 -DE,BO,2,222,201912,174983 -DE,BO,2,231,201912,11094 -DE,BO,2,234,201912,1011 -DE,BO,2,239,201912,9975 -DE,BO,2,242,201912,4655 -DE,BO,2,243,201912,670 -DE,BO,2,244,201912,3041 -DE,BO,2,251,201912,28803 -DE,BO,2,257,201912,301400 -DE,BO,2,259,201912,72235 -DE,BO,2,261,201912,14372 -DE,BO,2,262,201912,9393 -DE,BO,2,263,201912,34531 -DE,BO,2,264,201912,14361 -DE,BO,2,265,201912,479345 -DE,BO,2,266,201912,231708 -DE,BO,2,267,201912,280214 -DE,BO,2,271,201912,123284 -DE,BO,2,272,201912,27102 -DE,BO,2,273,201912,56392 -DE,BO,2,274,201912,36441 -DE,BO,2,275,201912,15340 -DE,BO,2,279,201912,48395 -DE,BO,2,281,201912,1180873 -DE,BO,2,282,201912,744552 -DE,BO,2,283,201912,99104 -DE,BO,2,284,201912,122125 -DE,BO,2,289,201912,1096458 -DE,BO,2,291,201912,716024 -DE,BO,2,293,201912,126548 -DE,BO,2,309,201912,9043 -DE,BO,2,310,201912,10730 -DE,BO,2,324,201912,20288 -DE,BO,2,325,201912,1138817 -DE,BO,2,329,201912,122481 -DE,BQ,2,263,201912,391 -DE,BQ,2,279,201912,670 -DE,BQ,2,281,201912,6270 -DE,BQ,2,282,201912,6797 -DE,BQ,2,310,201912,2080 -DE,BR,1,011,201912,46805 -DE,BR,1,012,201912,56656175 -DE,BR,1,013,201912,3374 -DE,BR,1,014,201912,682986 -DE,BR,1,022,201912,36562 -DE,BR,1,030,201912,85840 -DE,BR,1,071,201912,19924669 -DE,BR,1,072,201912,31500006 -DE,BR,1,081,201912,57335 -DE,BR,1,089,201912,719103 -DE,BR,1,101,201912,11491620 -DE,BR,1,103,201912,3790573 -DE,BR,1,104,201912,42625737 -DE,BR,1,105,201912,663 -DE,BR,1,106,201912,126263 -DE,BR,1,107,201912,7918 -DE,BR,1,108,201912,1609549 -DE,BR,1,109,201912,79788 -DE,BR,1,110,201912,47034 -DE,BR,1,120,201912,8033366 -DE,BR,1,131,201912,9720 -DE,BR,1,132,201912,3983 -DE,BR,1,139,201912,93894 -DE,BR,1,141,201912,134391 -DE,BR,1,142,201912,12563 -DE,BR,1,143,201912,97 -DE,BR,1,151,201912,1716295 -DE,BR,1,152,201912,5423173 -DE,BR,1,161,201912,409596 -DE,BR,1,162,201912,716698 -DE,BR,1,171,201912,23077620 -DE,BR,1,172,201912,25015 -DE,BR,1,181,201912,127340 -DE,BR,1,192,201912,54 -DE,BR,1,201,201912,9565377 -DE,BR,1,202,201912,64 -DE,BR,1,203,201912,1544 -DE,BR,1,204,201912,445479 -DE,BR,1,205,201912,2561124 -DE,BR,1,211,201912,172043 -DE,BR,1,212,201912,446138 -DE,BR,1,221,201912,2352542 -DE,BR,1,222,201912,557662 -DE,BR,1,231,201912,125503 -DE,BR,1,232,201912,2440 -DE,BR,1,233,201912,8256 -DE,BR,1,234,201912,15570 -DE,BR,1,237,201912,303936 -DE,BR,1,239,201912,1121182 -DE,BR,1,241,201912,559320 -DE,BR,1,242,201912,1820 -DE,BR,1,243,201912,213350 -DE,BR,1,244,201912,6360644 -DE,BR,1,257,201912,222607 -DE,BR,1,259,201912,1604309 -DE,BR,1,261,201912,535435 -DE,BR,1,262,201912,33165 -DE,BR,1,263,201912,463798 -DE,BR,1,264,201912,1345394 -DE,BR,1,265,201912,2092387 -DE,BR,1,266,201912,17966 -DE,BR,1,267,201912,4105 -DE,BR,1,271,201912,889127 -DE,BR,1,273,201912,620207 -DE,BR,1,274,201912,115377 -DE,BR,1,279,201912,2352519 -DE,BR,1,281,201912,12865527 -DE,BR,1,282,201912,4109823 -DE,BR,1,283,201912,103818 -DE,BR,1,284,201912,2529375 -DE,BR,1,289,201912,3169471 -DE,BR,1,291,201912,2786904 -DE,BR,1,292,201912,21049 -DE,BR,1,293,201912,5404744 -DE,BR,1,303,201912,31016216 -DE,BR,1,309,201912,12212 -DE,BR,1,310,201912,590298 -DE,BR,1,321,201912,243651 -DE,BR,1,322,201912,46926 -DE,BR,1,323,201912,12811 -DE,BR,1,324,201912,256 -DE,BR,1,325,201912,956860 -DE,BR,1,329,201912,55605 -DE,BR,2,012,201912,904586 -DE,BR,2,014,201912,1874 -DE,BR,2,023,201912,43074 -DE,BR,2,071,201912,268 -DE,BR,2,081,201912,4711 -DE,BR,2,089,201912,1022813 -DE,BR,2,101,201912,2705634 -DE,BR,2,103,201912,1058896 -DE,BR,2,104,201912,69548 -DE,BR,2,105,201912,208211 -DE,BR,2,106,201912,468920 -DE,BR,2,107,201912,620764 -DE,BR,2,108,201912,4795409 -DE,BR,2,109,201912,673359 -DE,BR,2,110,201912,1240866 -DE,BR,2,120,201912,757489 -DE,BR,2,131,201912,331656 -DE,BR,2,132,201912,271561 -DE,BR,2,139,201912,2756631 -DE,BR,2,141,201912,307901 -DE,BR,2,143,201912,29988 -DE,BR,2,151,201912,247113 -DE,BR,2,152,201912,140831 -DE,BR,2,161,201912,42464 -DE,BR,2,162,201912,236244 -DE,BR,2,171,201912,8031998 -DE,BR,2,172,201912,837474 -DE,BR,2,181,201912,182525 -DE,BR,2,192,201912,1418287 -DE,BR,2,201,201912,50820738 -DE,BR,2,202,201912,3692452 -DE,BR,2,203,201912,3343481 -DE,BR,2,204,201912,4489979 -DE,BR,2,205,201912,19202548 -DE,BR,2,206,201912,342674 -DE,BR,2,20S,201912,18929695 -DE,BR,2,211,201912,21324124 -DE,BR,2,212,201912,38510822 -DE,BR,2,221,201912,7662154 -DE,BR,2,222,201912,12324559 -DE,BR,2,231,201912,941963 -DE,BR,2,232,201912,1096406 -DE,BR,2,233,201912,31679 -DE,BR,2,234,201912,795997 -DE,BR,2,235,201912,18468 -DE,BR,2,236,201912,59256 -DE,BR,2,237,201912,5370 -DE,BR,2,239,201912,2954316 -DE,BR,2,241,201912,4463525 -DE,BR,2,242,201912,2721111 -DE,BR,2,243,201912,1210584 -DE,BR,2,244,201912,36048849 -DE,BR,2,245,201912,22784 -DE,BR,2,251,201912,926586 -DE,BR,2,252,201912,174581 -DE,BR,2,253,201912,998145 -DE,BR,2,254,201912,71013 -DE,BR,2,257,201912,6185888 -DE,BR,2,259,201912,13550839 -DE,BR,2,261,201912,3886375 -DE,BR,2,262,201912,2269130 -DE,BR,2,263,201912,3926620 -DE,BR,2,264,201912,896291 -DE,BR,2,265,201912,28155851 -DE,BR,2,266,201912,6992458 -DE,BR,2,267,201912,7176315 -DE,BR,2,268,201912,11561 -DE,BR,2,271,201912,25761180 -DE,BR,2,272,201912,928314 -DE,BR,2,273,201912,8963514 -DE,BR,2,274,201912,3661115 -DE,BR,2,275,201912,780472 -DE,BR,2,279,201912,11796359 -DE,BR,2,281,201912,65618207 -DE,BR,2,282,201912,53782643 -DE,BR,2,283,201912,1913077 -DE,BR,2,284,201912,11345056 -DE,BR,2,289,201912,43568299 -DE,BR,2,291,201912,28481663 -DE,BR,2,292,201912,350547 -DE,BR,2,293,201912,53785635 -DE,BR,2,302,201912,268154 -DE,BR,2,303,201912,63637622 -DE,BR,2,309,201912,2321377 -DE,BR,2,310,201912,1952176 -DE,BR,2,321,201912,119632 -DE,BR,2,322,201912,23295 -DE,BR,2,323,201912,31626 -DE,BR,2,324,201912,12256 -DE,BR,2,325,201912,14824840 -DE,BR,2,329,201912,1962658 -DE,BS,2,012,201912,2384 -DE,BS,2,105,201912,64722 -DE,BS,2,108,201912,13362 -DE,BS,2,139,201912,7212 -DE,BS,2,141,201912,12388 -DE,BS,2,143,201912,730 -DE,BS,2,152,201912,1098 -DE,BS,2,201,201912,45 -DE,BS,2,203,201912,41965 -DE,BS,2,205,201912,11382 -DE,BS,2,211,201912,15 -DE,BS,2,212,201912,96290 -DE,BS,2,221,201912,5313 -DE,BS,2,222,201912,17304 -DE,BS,2,231,201912,66631 -DE,BS,2,234,201912,3430 -DE,BS,2,242,201912,5 -DE,BS,2,244,201912,17436 -DE,BS,2,251,201912,713 -DE,BS,2,257,201912,2655 -DE,BS,2,259,201912,73997 -DE,BS,2,262,201912,50682 -DE,BS,2,264,201912,19354 -DE,BS,2,265,201912,77976 -DE,BS,2,267,201912,2476 -DE,BS,2,271,201912,366582 -DE,BS,2,273,201912,20962 -DE,BS,2,274,201912,287 -DE,BS,2,275,201912,532 -DE,BS,2,279,201912,100334 -DE,BS,2,281,201912,103883 -DE,BS,2,282,201912,177834 -DE,BS,2,289,201912,420702 -DE,BS,2,291,201912,84378 -DE,BS,2,293,201912,13806 -DE,BS,2,321,201912,23735 -DE,BT,2,265,201912,40210 -DE,BT,2,271,201912,43501 -DE,BT,2,279,201912,3312 -DE,BT,2,281,201912,333544 -DE,BT,2,282,201912,16820 -DE,BT,2,309,201912,5911 -DE,BT,2,325,201912,9978 -DE,BW,1,089,201912,12472 -DE,BW,1,265,201912,27895 -DE,BW,1,293,201912,12738 -DE,BW,2,139,201912,83400 -DE,BW,2,141,201912,7045 -DE,BW,2,162,201912,5050 -DE,BW,2,172,201912,700 -DE,BW,2,205,201912,194611 -DE,BW,2,212,201912,28353 -DE,BW,2,221,201912,189656 -DE,BW,2,222,201912,301079 -DE,BW,2,231,201912,4300 -DE,BW,2,257,201912,109700 -DE,BW,2,259,201912,6826 -DE,BW,2,262,201912,2525 -DE,BW,2,263,201912,27164 -DE,BW,2,265,201912,63481 -DE,BW,2,266,201912,7233 -DE,BW,2,271,201912,1512776 -DE,BW,2,272,201912,3100 -DE,BW,2,273,201912,2811833 -DE,BW,2,279,201912,765472 -DE,BW,2,281,201912,1698 -DE,BW,2,282,201912,16056 -DE,BW,2,284,201912,23370 -DE,BW,2,289,201912,142736 -DE,BW,2,325,201912,42411 -DE,BY,1,011,201912,18383 -DE,BY,1,022,201912,444712 -DE,BY,1,089,201912,1543 -DE,BY,1,101,201912,197628 -DE,BY,1,102,201912,106106 -DE,BY,1,103,201912,95974 -DE,BY,1,107,201912,17519 -DE,BY,1,108,201912,57337 -DE,BY,1,110,201912,53076 -DE,BY,1,120,201912,1076 -DE,BY,1,132,201912,401676 -DE,BY,1,139,201912,880818 -DE,BY,1,141,201912,252969 -DE,BY,1,161,201912,4802548 -DE,BY,1,162,201912,2451309 -DE,BY,1,171,201912,57312 -DE,BY,1,172,201912,844 -DE,BY,1,201,201912,780861 -DE,BY,1,205,201912,750943 -DE,BY,1,206,201912,530005 -DE,BY,1,221,201912,623594 -DE,BY,1,222,201912,218191 -DE,BY,1,231,201912,275647 -DE,BY,1,234,201912,49007 -DE,BY,1,236,201912,791 -DE,BY,1,239,201912,259180 -DE,BY,1,241,201912,1430020 -DE,BY,1,242,201912,852082 -DE,BY,1,243,201912,1633761 -DE,BY,1,251,201912,31913 -DE,BY,1,257,201912,15858 -DE,BY,1,259,201912,1552018 -DE,BY,1,261,201912,6243 -DE,BY,1,262,201912,2052 -DE,BY,1,263,201912,66447 -DE,BY,1,265,201912,212046 -DE,BY,1,267,201912,855685 -DE,BY,1,271,201912,500713 -DE,BY,1,273,201912,1523843 -DE,BY,1,274,201912,14802 -DE,BY,1,275,201912,28582 -DE,BY,1,279,201912,1825 -DE,BY,1,281,201912,591839 -DE,BY,1,282,201912,147522 -DE,BY,1,283,201912,15506 -DE,BY,1,284,201912,13810 -DE,BY,1,289,201912,76564 -DE,BY,1,291,201912,151175 -DE,BY,1,293,201912,133665 -DE,BY,1,310,201912,4884715 -DE,BY,1,324,201912,58221 -DE,BY,1,325,201912,249833 -DE,BY,2,011,201912,516955 -DE,BY,2,012,201912,79968 -DE,BY,2,014,201912,351300 -DE,BY,2,081,201912,28274 -DE,BY,2,089,201912,14764 -DE,BY,2,101,201912,34423 -DE,BY,2,103,201912,163145 -DE,BY,2,104,201912,48915 -DE,BY,2,105,201912,132400 -DE,BY,2,106,201912,235635 -DE,BY,2,107,201912,112044 -DE,BY,2,108,201912,2337687 -DE,BY,2,109,201912,1210145 -DE,BY,2,110,201912,2341087 -DE,BY,2,120,201912,356234 -DE,BY,2,131,201912,146089 -DE,BY,2,132,201912,626530 -DE,BY,2,139,201912,390469 -DE,BY,2,141,201912,536440 -DE,BY,2,143,201912,113015 -DE,BY,2,151,201912,182784 -DE,BY,2,152,201912,29856 -DE,BY,2,161,201912,12136 -DE,BY,2,162,201912,321060 -DE,BY,2,171,201912,1266135 -DE,BY,2,172,201912,461335 -DE,BY,2,181,201912,82880 -DE,BY,2,192,201912,1167399 -DE,BY,2,201,201912,4343490 -DE,BY,2,202,201912,54372 -DE,BY,2,203,201912,875341 -DE,BY,2,204,201912,2057736 -DE,BY,2,205,201912,2747593 -DE,BY,2,206,201912,5352 -DE,BY,2,211,201912,95386 -DE,BY,2,212,201912,6822610 -DE,BY,2,221,201912,753812 -DE,BY,2,222,201912,2415596 -DE,BY,2,231,201912,214777 -DE,BY,2,232,201912,22816 -DE,BY,2,233,201912,46092 -DE,BY,2,234,201912,126702 -DE,BY,2,235,201912,19263 -DE,BY,2,236,201912,26641 -DE,BY,2,239,201912,331889 -DE,BY,2,241,201912,736089 -DE,BY,2,242,201912,296220 -DE,BY,2,243,201912,449781 -DE,BY,2,244,201912,382961 -DE,BY,2,245,201912,2659 -DE,BY,2,251,201912,637998 -DE,BY,2,252,201912,348674 -DE,BY,2,253,201912,574652 -DE,BY,2,254,201912,38099 -DE,BY,2,257,201912,1850273 -DE,BY,2,259,201912,1294345 -DE,BY,2,261,201912,437628 -DE,BY,2,262,201912,912183 -DE,BY,2,263,201912,1100129 -DE,BY,2,264,201912,218487 -DE,BY,2,265,201912,2476134 -DE,BY,2,266,201912,515647 -DE,BY,2,267,201912,394991 -DE,BY,2,268,201912,8114 -DE,BY,2,271,201912,3190035 -DE,BY,2,272,201912,716489 -DE,BY,2,273,201912,753511 -DE,BY,2,274,201912,582129 -DE,BY,2,275,201912,512157 -DE,BY,2,279,201912,1317199 -DE,BY,2,281,201912,5845376 -DE,BY,2,282,201912,5177065 -DE,BY,2,283,201912,2637246 -DE,BY,2,284,201912,1366935 -DE,BY,2,289,201912,4324123 -DE,BY,2,291,201912,14331823 -DE,BY,2,292,201912,1640620 -DE,BY,2,293,201912,2136695 -DE,BY,2,301,201912,21040 -DE,BY,2,302,201912,222405 -DE,BY,2,309,201912,134037 -DE,BY,2,310,201912,226441 -DE,BY,2,321,201912,9855 -DE,BY,2,322,201912,10660 -DE,BY,2,323,201912,115621 -DE,BY,2,324,201912,32790 -DE,BY,2,325,201912,2839536 -DE,BY,2,329,201912,353685 -DE,BZ,1,030,201912,8218 -DE,BZ,2,103,201912,28744 -DE,BZ,2,172,201912,26472 -DE,BZ,2,204,201912,757 -DE,BZ,2,205,201912,33856 -DE,BZ,2,212,201912,1398 -DE,BZ,2,222,201912,5443 -DE,BZ,2,259,201912,4666 -DE,BZ,2,289,201912,8667 -DE,CA,1,011,201912,10304560 -DE,CA,1,012,201912,631831 -DE,CA,1,014,201912,1138413 -DE,CA,1,023,201912,23051 -DE,CA,1,030,201912,2846186 -DE,CA,1,051,201912,11999 -DE,CA,1,071,201912,24718284 -DE,CA,1,072,201912,32382869 -DE,CA,1,081,201912,79326 -DE,CA,1,089,201912,342771 -DE,CA,1,101,201912,20180 -DE,CA,1,102,201912,764143 -DE,CA,1,103,201912,3212407 -DE,CA,1,104,201912,114268 -DE,CA,1,106,201912,33693 -DE,CA,1,107,201912,159386 -DE,CA,1,108,201912,1593535 -DE,CA,1,110,201912,168973 -DE,CA,1,120,201912,198459 -DE,CA,1,131,201912,671 -DE,CA,1,132,201912,520 -DE,CA,1,139,201912,220384 -DE,CA,1,141,201912,936267 -DE,CA,1,143,201912,185631 -DE,CA,1,151,201912,85215 -DE,CA,1,152,201912,236154 -DE,CA,1,161,201912,683564 -DE,CA,1,162,201912,150957 -DE,CA,1,171,201912,836879 -DE,CA,1,172,201912,220666 -DE,CA,1,192,201912,467582 -DE,CA,1,201,201912,3169081 -DE,CA,1,202,201912,6933 -DE,CA,1,203,201912,1070961 -DE,CA,1,204,201912,2405410 -DE,CA,1,205,201912,7380000 -DE,CA,1,211,201912,117663 -DE,CA,1,212,201912,7014473 -DE,CA,1,221,201912,1443130 -DE,CA,1,222,201912,1877435 -DE,CA,1,231,201912,290033 -DE,CA,1,232,201912,16231 -DE,CA,1,234,201912,1112 -DE,CA,1,236,201912,1542 -DE,CA,1,239,201912,161583 -DE,CA,1,241,201912,1072471 -DE,CA,1,242,201912,79784 -DE,CA,1,243,201912,209 -DE,CA,1,244,201912,14732935 -DE,CA,1,245,201912,10767 -DE,CA,1,251,201912,97956 -DE,CA,1,252,201912,25965 -DE,CA,1,254,201912,36036 -DE,CA,1,257,201912,2943511 -DE,CA,1,259,201912,2975492 -DE,CA,1,261,201912,714425 -DE,CA,1,262,201912,3043960 -DE,CA,1,263,201912,6408802 -DE,CA,1,264,201912,569060 -DE,CA,1,265,201912,11796189 -DE,CA,1,266,201912,3608839 -DE,CA,1,267,201912,4648991 -DE,CA,1,268,201912,13354 -DE,CA,1,271,201912,5351127 -DE,CA,1,272,201912,35308 -DE,CA,1,273,201912,568618 -DE,CA,1,274,201912,309890 -DE,CA,1,275,201912,314789 -DE,CA,1,279,201912,1653472 -DE,CA,1,281,201912,10856394 -DE,CA,1,282,201912,4387509 -DE,CA,1,283,201912,534465 -DE,CA,1,284,201912,541709 -DE,CA,1,289,201912,4028177 -DE,CA,1,291,201912,6540120 -DE,CA,1,292,201912,54229 -DE,CA,1,293,201912,2142501 -DE,CA,1,301,201912,296960 -DE,CA,1,302,201912,19205 -DE,CA,1,303,201912,127522974 -DE,CA,1,309,201912,147782 -DE,CA,1,310,201912,148523 -DE,CA,1,321,201912,109088330 -DE,CA,1,322,201912,336275 -DE,CA,1,323,201912,160428 -DE,CA,1,324,201912,159744 -DE,CA,1,325,201912,2263818 -DE,CA,1,329,201912,643938 -DE,CA,2,011,201912,614093 -DE,CA,2,012,201912,575188 -DE,CA,2,013,201912,4798 -DE,CA,2,014,201912,930716 -DE,CA,2,023,201912,51892 -DE,CA,2,030,201912,19643 -DE,CA,2,072,201912,655 -DE,CA,2,081,201912,24536 -DE,CA,2,089,201912,88860 -DE,CA,2,101,201912,4412204 -DE,CA,2,102,201912,108193 -DE,CA,2,103,201912,488752 -DE,CA,2,104,201912,153233 -DE,CA,2,105,201912,665013 -DE,CA,2,106,201912,492422 -DE,CA,2,107,201912,1111709 -DE,CA,2,108,201912,6765474 -DE,CA,2,109,201912,258949 -DE,CA,2,110,201912,3996843 -DE,CA,2,120,201912,5333 -DE,CA,2,131,201912,288257 -DE,CA,2,132,201912,199899 -DE,CA,2,139,201912,2939558 -DE,CA,2,141,201912,2488951 -DE,CA,2,142,201912,22047 -DE,CA,2,143,201912,692334 -DE,CA,2,151,201912,1121534 -DE,CA,2,152,201912,3273461 -DE,CA,2,161,201912,591886 -DE,CA,2,162,201912,4978496 -DE,CA,2,171,201912,4145881 -DE,CA,2,172,201912,1066876 -DE,CA,2,181,201912,2929 -DE,CA,2,192,201912,777615 -DE,CA,2,201,201912,21047156 -DE,CA,2,202,201912,5193420 -DE,CA,2,203,201912,1972969 -DE,CA,2,204,201912,3897313 -DE,CA,2,205,201912,6276803 -DE,CA,2,206,201912,323913 -DE,CA,2,20S,201912,36422 -DE,CA,2,211,201912,1983196 -DE,CA,2,212,201912,79465030 -DE,CA,2,221,201912,5925688 -DE,CA,2,222,201912,8897613 -DE,CA,2,231,201912,3236916 -DE,CA,2,232,201912,641560 -DE,CA,2,233,201912,161793 -DE,CA,2,234,201912,1279735 -DE,CA,2,235,201912,7723 -DE,CA,2,236,201912,202355 -DE,CA,2,237,201912,17370 -DE,CA,2,239,201912,1730651 -DE,CA,2,241,201912,6797514 -DE,CA,2,242,201912,3226245 -DE,CA,2,243,201912,1552592 -DE,CA,2,244,201912,27046989 -DE,CA,2,245,201912,58836 -DE,CA,2,251,201912,1876691 -DE,CA,2,252,201912,1426548 -DE,CA,2,253,201912,1030 -DE,CA,2,254,201912,224044 -DE,CA,2,257,201912,6061656 -DE,CA,2,259,201912,6785885 -DE,CA,2,261,201912,3112731 -DE,CA,2,262,201912,3903223 -DE,CA,2,263,201912,4783578 -DE,CA,2,264,201912,1767763 -DE,CA,2,265,201912,24939774 -DE,CA,2,266,201912,9158779 -DE,CA,2,267,201912,6028480 -DE,CA,2,268,201912,18513 -DE,CA,2,271,201912,22201483 -DE,CA,2,272,201912,1731491 -DE,CA,2,273,201912,3321582 -DE,CA,2,274,201912,2841245 -DE,CA,2,275,201912,5049226 -DE,CA,2,279,201912,7649644 -DE,CA,2,281,201912,40488747 -DE,CA,2,282,201912,54617149 -DE,CA,2,283,201912,6908149 -DE,CA,2,284,201912,18702046 -DE,CA,2,289,201912,43344720 -DE,CA,2,291,201912,117862061 -DE,CA,2,292,201912,341044 -DE,CA,2,293,201912,22619833 -DE,CA,2,301,201912,1165582 -DE,CA,2,302,201912,357244 -DE,CA,2,303,201912,69173168 -DE,CA,2,309,201912,2827835 -DE,CA,2,310,201912,2873189 -DE,CA,2,321,201912,1098138 -DE,CA,2,322,201912,501758 -DE,CA,2,323,201912,782436 -DE,CA,2,324,201912,1014085 -DE,CA,2,325,201912,11457629 -DE,CA,2,329,201912,2094979 -DE,CA,2,32S,201912,2083 -DE,CD,1,012,201912,105967 -DE,CD,1,089,201912,34000 -DE,CD,2,101,201912,742619 -DE,CD,2,108,201912,322941 -DE,CD,2,139,201912,122 -DE,CD,2,141,201912,308974 -DE,CD,2,151,201912,1701 -DE,CD,2,171,201912,27278 -DE,CD,2,172,201912,75508 -DE,CD,2,201,201912,389378 -DE,CD,2,203,201912,2108 -DE,CD,2,204,201912,159205 -DE,CD,2,205,201912,943150 -DE,CD,2,211,201912,8328 -DE,CD,2,212,201912,368894 -DE,CD,2,221,201912,26488 -DE,CD,2,222,201912,48903 -DE,CD,2,231,201912,79028 -DE,CD,2,244,201912,24254 -DE,CD,2,257,201912,225408 -DE,CD,2,259,201912,81863 -DE,CD,2,261,201912,656 -DE,CD,2,262,201912,17271 -DE,CD,2,263,201912,222806 -DE,CD,2,265,201912,638754 -DE,CD,2,266,201912,1800 -DE,CD,2,267,201912,63336 -DE,CD,2,271,201912,24994 -DE,CD,2,272,201912,52 -DE,CD,2,273,201912,224 -DE,CD,2,274,201912,26720 -DE,CD,2,279,201912,3523 -DE,CD,2,281,201912,109665 -DE,CD,2,282,201912,6216917 -DE,CD,2,289,201912,531205 -DE,CD,2,291,201912,168707 -DE,CD,2,292,201912,2697 -DE,CD,2,293,201912,184957 -DE,CD,2,310,201912,2730 -DE,CD,2,325,201912,7681 -DE,CD,2,329,201912,23370 -DE,CF,2,105,201912,10368 -DE,CF,2,141,201912,81814 -DE,CF,2,204,201912,82 -DE,CF,2,205,201912,1611 -DE,CF,2,212,201912,7953 -DE,CF,2,221,201912,2091 -DE,CF,2,222,201912,47135 -DE,CF,2,263,201912,7614 -DE,CF,2,265,201912,912 -DE,CF,2,275,201912,50 -DE,CF,2,279,201912,44699 -DE,CF,2,281,201912,2165 -DE,CF,2,282,201912,93394 -DE,CF,2,289,201912,1016 -DE,CF,2,291,201912,6100 -DE,CG,1,012,201912,144759 -DE,CG,1,161,201912,98577 -DE,CG,2,101,201912,522623 -DE,CG,2,105,201912,16796 -DE,CG,2,108,201912,510 -DE,CG,2,139,201912,5831 -DE,CG,2,141,201912,338899 -DE,CG,2,151,201912,7262 -DE,CG,2,171,201912,380 -DE,CG,2,172,201912,8586 -DE,CG,2,204,201912,1576 -DE,CG,2,205,201912,52848 -DE,CG,2,212,201912,663 -DE,CG,2,221,201912,4821 -DE,CG,2,222,201912,16749 -DE,CG,2,242,201912,87 -DE,CG,2,244,201912,349212 -DE,CG,2,251,201912,9587 -DE,CG,2,257,201912,102 -DE,CG,2,259,201912,72607 -DE,CG,2,261,201912,501 -DE,CG,2,262,201912,7844 -DE,CG,2,264,201912,50 -DE,CG,2,265,201912,147297 -DE,CG,2,271,201912,23841 -DE,CG,2,272,201912,1155 -DE,CG,2,273,201912,3993 -DE,CG,2,274,201912,6086 -DE,CG,2,275,201912,855 -DE,CG,2,279,201912,10346 -DE,CG,2,281,201912,11602 -DE,CG,2,282,201912,45081 -DE,CG,2,283,201912,70981 -DE,CG,2,284,201912,160302 -DE,CG,2,289,201912,33797 -DE,CG,2,291,201912,366203 -DE,CG,2,293,201912,2614 -DE,CG,2,309,201912,300 -DE,CG,2,310,201912,173 -DE,CG,2,321,201912,1734 -DE,CG,2,324,201912,1166 -DE,CG,2,325,201912,35670 -DE,CG,2,329,201912,820 -DE,CH,1,011,201912,171846 -DE,CH,1,012,201912,330086 -DE,CH,1,013,201912,63827 -DE,CH,1,014,201912,374543 -DE,CH,1,022,201912,201466 -DE,CH,1,023,201912,2797 -DE,CH,1,081,201912,130697 -DE,CH,1,089,201912,239519 -DE,CH,1,101,201912,2366518 -DE,CH,1,102,201912,504976 -DE,CH,1,103,201912,1598018 -DE,CH,1,104,201912,2321200 -DE,CH,1,105,201912,32357942 -DE,CH,1,106,201912,3595677 -DE,CH,1,107,201912,2851890 -DE,CH,1,108,201912,64826280 -DE,CH,1,109,201912,1633510 -DE,CH,1,110,201912,5847368 -DE,CH,1,120,201912,222136 -DE,CH,1,131,201912,822893 -DE,CH,1,132,201912,4121442 -DE,CH,1,139,201912,15263840 -DE,CH,1,141,201912,5936034 -DE,CH,1,142,201912,14999 -DE,CH,1,143,201912,1258998 -DE,CH,1,151,201912,4329449 -DE,CH,1,152,201912,7851894 -DE,CH,1,161,201912,218094 -DE,CH,1,162,201912,10246851 -DE,CH,1,171,201912,24207008 -DE,CH,1,172,201912,14898353 -DE,CH,1,181,201912,667659 -DE,CH,1,192,201912,1491904 -DE,CH,1,201,201912,120296287 -DE,CH,1,202,201912,2218345 -DE,CH,1,203,201912,20331679 -DE,CH,1,204,201912,44042095 -DE,CH,1,205,201912,47510273 -DE,CH,1,206,201912,787518 -DE,CH,1,211,201912,173268393 -DE,CH,1,212,201912,394311190 -DE,CH,1,221,201912,7806124 -DE,CH,1,222,201912,84317762 -DE,CH,1,231,201912,6897127 -DE,CH,1,232,201912,323972 -DE,CH,1,233,201912,27766 -DE,CH,1,234,201912,4373799 -DE,CH,1,235,201912,209974 -DE,CH,1,236,201912,627333 -DE,CH,1,237,201912,169186 -DE,CH,1,239,201912,7089296 -DE,CH,1,241,201912,11224126 -DE,CH,1,242,201912,10510874 -DE,CH,1,243,201912,5812334 -DE,CH,1,244,201912,556247499 -DE,CH,1,245,201912,186254 -DE,CH,1,251,201912,11954205 -DE,CH,1,252,201912,4354158 -DE,CH,1,253,201912,59743 -DE,CH,1,254,201912,1936616 -DE,CH,1,257,201912,51617211 -DE,CH,1,259,201912,38378381 -DE,CH,1,261,201912,11374682 -DE,CH,1,262,201912,11938310 -DE,CH,1,263,201912,10951988 -DE,CH,1,264,201912,1734001 -DE,CH,1,265,201912,167418232 -DE,CH,1,266,201912,17365811 -DE,CH,1,267,201912,34910633 -DE,CH,1,268,201912,29998 -DE,CH,1,271,201912,74872813 -DE,CH,1,272,201912,1328999 -DE,CH,1,273,201912,42283006 -DE,CH,1,274,201912,3043733 -DE,CH,1,275,201912,9884774 -DE,CH,1,279,201912,25475041 -DE,CH,1,281,201912,83243253 -DE,CH,1,282,201912,86299421 -DE,CH,1,283,201912,1407597 -DE,CH,1,284,201912,99920231 -DE,CH,1,289,201912,116657990 -DE,CH,1,291,201912,21964308 -DE,CH,1,292,201912,728494 -DE,CH,1,293,201912,23713754 -DE,CH,1,301,201912,426900 -DE,CH,1,302,201912,40403164 -DE,CH,1,303,201912,32258294 -DE,CH,1,309,201912,3565725 -DE,CH,1,310,201912,13865382 -DE,CH,1,321,201912,39075030 -DE,CH,1,322,201912,435950 -DE,CH,1,323,201912,547152 -DE,CH,1,324,201912,597576 -DE,CH,1,325,201912,75641190 -DE,CH,1,329,201912,7686715 -DE,CH,1,351,201912,8989540 -DE,CH,2,011,201912,9516750 -DE,CH,2,012,201912,6619225 -DE,CH,2,013,201912,2179803 -DE,CH,2,014,201912,3422849 -DE,CH,2,021,201912,17225 -DE,CH,2,022,201912,437408 -DE,CH,2,023,201912,150284 -DE,CH,2,030,201912,454826 -DE,CH,2,051,201912,226982 -DE,CH,2,052,201912,554560 -DE,CH,2,071,201912,67265 -DE,CH,2,072,201912,4103 -DE,CH,2,081,201912,4362156 -DE,CH,2,089,201912,1111259 -DE,CH,2,101,201912,9696879 -DE,CH,2,102,201912,7392411 -DE,CH,2,103,201912,12278174 -DE,CH,2,104,201912,7357681 -DE,CH,2,105,201912,7918750 -DE,CH,2,106,201912,6443108 -DE,CH,2,107,201912,11719766 -DE,CH,2,108,201912,39140835 -DE,CH,2,109,201912,10832514 -DE,CH,2,110,201912,18286368 -DE,CH,2,120,201912,3127241 -DE,CH,2,131,201912,1383490 -DE,CH,2,132,201912,2933035 -DE,CH,2,139,201912,31396430 -DE,CH,2,141,201912,188891741 -DE,CH,2,142,201912,322796 -DE,CH,2,143,201912,38588009 -DE,CH,2,151,201912,17975448 -DE,CH,2,152,201912,60588247 -DE,CH,2,161,201912,5582957 -DE,CH,2,162,201912,34932521 -DE,CH,2,171,201912,15316788 -DE,CH,2,172,201912,40807239 -DE,CH,2,17S,201912,200800 -DE,CH,2,181,201912,685827 -DE,CH,2,192,201912,209650573 -DE,CH,2,201,201912,115004295 -DE,CH,2,202,201912,3560576 -DE,CH,2,203,201912,16358262 -DE,CH,2,204,201912,48004551 -DE,CH,2,205,201912,63450583 -DE,CH,2,206,201912,515685 -DE,CH,2,20S,201912,296695 -DE,CH,2,211,201912,7996606 -DE,CH,2,212,201912,447059545 -DE,CH,2,221,201912,25085912 -DE,CH,2,222,201912,94234932 -DE,CH,2,231,201912,20608915 -DE,CH,2,232,201912,835089 -DE,CH,2,233,201912,3380987 -DE,CH,2,234,201912,8132436 -DE,CH,2,235,201912,2607183 -DE,CH,2,236,201912,11410227 -DE,CH,2,237,201912,1789497 -DE,CH,2,239,201912,9638201 -DE,CH,2,241,201912,21029793 -DE,CH,2,242,201912,10705028 -DE,CH,2,243,201912,13344188 -DE,CH,2,244,201912,249869730 -DE,CH,2,245,201912,1645160 -DE,CH,2,251,201912,30482969 -DE,CH,2,252,201912,4734898 -DE,CH,2,253,201912,681629 -DE,CH,2,254,201912,1405785 -DE,CH,2,257,201912,49806993 -DE,CH,2,259,201912,50560122 -DE,CH,2,261,201912,20452383 -DE,CH,2,262,201912,84937642 -DE,CH,2,263,201912,37264767 -DE,CH,2,264,201912,17218930 -DE,CH,2,265,201912,89608472 -DE,CH,2,266,201912,11945589 -DE,CH,2,267,201912,33859554 -DE,CH,2,268,201912,389075 -DE,CH,2,271,201912,62777505 -DE,CH,2,272,201912,11123336 -DE,CH,2,273,201912,25085025 -DE,CH,2,274,201912,20215252 -DE,CH,2,275,201912,38532693 -DE,CH,2,279,201912,38953194 -DE,CH,2,281,201912,85104301 -DE,CH,2,282,201912,136115104 -DE,CH,2,283,201912,15524529 -DE,CH,2,284,201912,52575845 -DE,CH,2,289,201912,98677402 -DE,CH,2,291,201912,314429967 -DE,CH,2,292,201912,12221423 -DE,CH,2,293,201912,31126979 -DE,CH,2,301,201912,663195 -DE,CH,2,302,201912,24541749 -DE,CH,2,303,201912,147706982 -DE,CH,2,309,201912,15089798 -DE,CH,2,310,201912,81286060 -DE,CH,2,321,201912,32715822 -DE,CH,2,322,201912,3447171 -DE,CH,2,323,201912,7505597 -DE,CH,2,324,201912,15716268 -DE,CH,2,325,201912,73480571 -DE,CH,2,329,201912,18713946 -DE,CH,2,32S,201912,28916 -DE,CH,2,351,201912,64442312 -DE,CI,1,012,201912,15736089 -DE,CI,1,103,201912,417828 -DE,CI,1,108,201912,43273 -DE,CI,1,162,201912,101207 -DE,CI,1,204,201912,60 -DE,CI,2,101,201912,352852 -DE,CI,2,104,201912,9849 -DE,CI,2,105,201912,64365 -DE,CI,2,106,201912,219876 -DE,CI,2,107,201912,21375 -DE,CI,2,109,201912,7432 -DE,CI,2,110,201912,1218735 -DE,CI,2,132,201912,46000 -DE,CI,2,139,201912,62787 -DE,CI,2,141,201912,589096 -DE,CI,2,151,201912,6301 -DE,CI,2,162,201912,309 -DE,CI,2,171,201912,703482 -DE,CI,2,172,201912,275650 -DE,CI,2,192,201912,226826 -DE,CI,2,201,201912,1004806 -DE,CI,2,202,201912,237 -DE,CI,2,203,201912,27275 -DE,CI,2,204,201912,36525 -DE,CI,2,205,201912,269356 -DE,CI,2,211,201912,14604 -DE,CI,2,212,201912,101371 -DE,CI,2,221,201912,171007 -DE,CI,2,222,201912,718216 -DE,CI,2,231,201912,33650 -DE,CI,2,234,201912,8797 -DE,CI,2,239,201912,22363 -DE,CI,2,242,201912,9225 -DE,CI,2,244,201912,688208 -DE,CI,2,245,201912,180 -DE,CI,2,251,201912,11000 -DE,CI,2,257,201912,60801 -DE,CI,2,259,201912,171451 -DE,CI,2,261,201912,6283 -DE,CI,2,262,201912,105105 -DE,CI,2,263,201912,179492 -DE,CI,2,264,201912,1643 -DE,CI,2,265,201912,250301 -DE,CI,2,266,201912,34358 -DE,CI,2,267,201912,99710 -DE,CI,2,271,201912,125777 -DE,CI,2,272,201912,17827 -DE,CI,2,273,201912,11026 -DE,CI,2,274,201912,10846 -DE,CI,2,275,201912,30240 -DE,CI,2,279,201912,83612 -DE,CI,2,281,201912,868807 -DE,CI,2,282,201912,1045743 -DE,CI,2,284,201912,40802 -DE,CI,2,289,201912,2461023 -DE,CI,2,291,201912,1389028 -DE,CI,2,292,201912,750 -DE,CI,2,293,201912,214198 -DE,CI,2,303,201912,16992 -DE,CI,2,309,201912,16 -DE,CI,2,310,201912,10473 -DE,CI,2,321,201912,2729 -DE,CI,2,323,201912,4213 -DE,CI,2,324,201912,3654 -DE,CI,2,325,201912,170541 -DE,CI,2,329,201912,11590 -DE,CL,1,011,201912,65596 -DE,CL,1,012,201912,1629002 -DE,CL,1,014,201912,143 -DE,CL,1,030,201912,5367 -DE,CL,1,072,201912,18240641 -DE,CL,1,081,201912,1940 -DE,CL,1,101,201912,2388788 -DE,CL,1,102,201912,804916 -DE,CL,1,103,201912,3683575 -DE,CL,1,104,201912,33838 -DE,CL,1,107,201912,49 -DE,CL,1,108,201912,49130 -DE,CL,1,109,201912,333 -DE,CL,1,110,201912,3132541 -DE,CL,1,141,201912,2722 -DE,CL,1,151,201912,446 -DE,CL,1,162,201912,62685 -DE,CL,1,171,201912,7083684 -DE,CL,1,172,201912,356 -DE,CL,1,201,201912,5149686 -DE,CL,1,204,201912,144 -DE,CL,1,211,201912,17338 -DE,CL,1,221,201912,4072 -DE,CL,1,222,201912,5211 -DE,CL,1,242,201912,4853 -DE,CL,1,244,201912,3258987 -DE,CL,1,257,201912,10 -DE,CL,1,259,201912,1951 -DE,CL,1,262,201912,908 -DE,CL,1,263,201912,850 -DE,CL,1,265,201912,21563 -DE,CL,1,268,201912,312 -DE,CL,1,271,201912,4551 -DE,CL,1,273,201912,1078 -DE,CL,1,279,201912,455 -DE,CL,1,281,201912,23553 -DE,CL,1,282,201912,826 -DE,CL,1,289,201912,2071 -DE,CL,1,293,201912,5 -DE,CL,1,321,201912,3957 -DE,CL,1,325,201912,5726 -DE,CL,2,011,201912,27607 -DE,CL,2,012,201912,124423 -DE,CL,2,014,201912,14094 -DE,CL,2,081,201912,29284 -DE,CL,2,089,201912,33263 -DE,CL,2,101,201912,1583829 -DE,CL,2,102,201912,74153 -DE,CL,2,103,201912,998111 -DE,CL,2,104,201912,31261 -DE,CL,2,105,201912,1914846 -DE,CL,2,106,201912,89871 -DE,CL,2,107,201912,259960 -DE,CL,2,108,201912,2577067 -DE,CL,2,109,201912,1056711 -DE,CL,2,110,201912,1427775 -DE,CL,2,120,201912,7937 -DE,CL,2,131,201912,59645 -DE,CL,2,132,201912,9501 -DE,CL,2,139,201912,651752 -DE,CL,2,141,201912,1246702 -DE,CL,2,142,201912,795 -DE,CL,2,143,201912,303755 -DE,CL,2,151,201912,90201 -DE,CL,2,152,201912,203712 -DE,CL,2,161,201912,3656 -DE,CL,2,162,201912,3064735 -DE,CL,2,171,201912,3155283 -DE,CL,2,172,201912,358203 -DE,CL,2,192,201912,809610 -DE,CL,2,201,201912,4403780 -DE,CL,2,202,201912,319699 -DE,CL,2,203,201912,761109 -DE,CL,2,204,201912,1477409 -DE,CL,2,205,201912,2457081 -DE,CL,2,206,201912,1321 -DE,CL,2,20S,201912,79754 -DE,CL,2,211,201912,397057 -DE,CL,2,212,201912,5578868 -DE,CL,2,221,201912,2394536 -DE,CL,2,222,201912,3763669 -DE,CL,2,231,201912,453139 -DE,CL,2,232,201912,1933592 -DE,CL,2,233,201912,78411 -DE,CL,2,234,201912,59784 -DE,CL,2,235,201912,3051 -DE,CL,2,236,201912,31988 -DE,CL,2,239,201912,764878 -DE,CL,2,241,201912,1277803 -DE,CL,2,242,201912,304316 -DE,CL,2,243,201912,230336 -DE,CL,2,244,201912,698530 -DE,CL,2,245,201912,2073 -DE,CL,2,251,201912,718252 -DE,CL,2,252,201912,516145 -DE,CL,2,253,201912,1015547 -DE,CL,2,254,201912,140822 -DE,CL,2,257,201912,1702241 -DE,CL,2,259,201912,1892363 -DE,CL,2,261,201912,56628 -DE,CL,2,262,201912,356665 -DE,CL,2,263,201912,968857 -DE,CL,2,264,201912,131022 -DE,CL,2,265,201912,4106332 -DE,CL,2,266,201912,2085697 -DE,CL,2,267,201912,1805344 -DE,CL,2,268,201912,24511 -DE,CL,2,271,201912,5028945 -DE,CL,2,272,201912,126667 -DE,CL,2,273,201912,1076668 -DE,CL,2,274,201912,1037304 -DE,CL,2,275,201912,484081 -DE,CL,2,279,201912,1390254 -DE,CL,2,281,201912,7311077 -DE,CL,2,282,201912,17474460 -DE,CL,2,283,201912,1130002 -DE,CL,2,284,201912,1540118 -DE,CL,2,289,201912,7854820 -DE,CL,2,291,201912,26568996 -DE,CL,2,292,201912,63020 -DE,CL,2,293,201912,2358343 -DE,CL,2,302,201912,156766 -DE,CL,2,303,201912,57313785 -DE,CL,2,309,201912,884307 -DE,CL,2,310,201912,692378 -DE,CL,2,321,201912,14189 -DE,CL,2,322,201912,77790 -DE,CL,2,323,201912,66644 -DE,CL,2,324,201912,39098 -DE,CL,2,325,201912,5010369 -DE,CL,2,329,201912,867032 -DE,CL,2,32S,201912,52 -DE,CM,1,012,201912,2596173 -DE,CM,1,108,201912,2577 -DE,CM,1,110,201912,578 -DE,CM,1,141,201912,50 -DE,CM,1,161,201912,200818 -DE,CM,1,204,201912,25 -DE,CM,1,289,201912,1391 -DE,CM,2,103,201912,795 -DE,CM,2,106,201912,35045 -DE,CM,2,107,201912,1000 -DE,CM,2,108,201912,258469 -DE,CM,2,110,201912,76865 -DE,CM,2,139,201912,3068 -DE,CM,2,141,201912,835149 -DE,CM,2,151,201912,9275 -DE,CM,2,152,201912,10 -DE,CM,2,162,201912,280 -DE,CM,2,171,201912,117778 -DE,CM,2,172,201912,25605 -DE,CM,2,192,201912,14763 -DE,CM,2,201,201912,528388 -DE,CM,2,203,201912,8630 -DE,CM,2,204,201912,56716 -DE,CM,2,205,201912,729576 -DE,CM,2,211,201912,8216 -DE,CM,2,212,201912,121506 -DE,CM,2,221,201912,49957 -DE,CM,2,222,201912,113804 -DE,CM,2,231,201912,31874 -DE,CM,2,234,201912,2124 -DE,CM,2,236,201912,4840 -DE,CM,2,239,201912,349 -DE,CM,2,243,201912,4700 -DE,CM,2,244,201912,1344 -DE,CM,2,251,201912,4824 -DE,CM,2,257,201912,165431 -DE,CM,2,259,201912,51681 -DE,CM,2,262,201912,60608 -DE,CM,2,263,201912,21198 -DE,CM,2,264,201912,16341 -DE,CM,2,265,201912,301929 -DE,CM,2,266,201912,14083 -DE,CM,2,267,201912,20367 -DE,CM,2,271,201912,99004 -DE,CM,2,272,201912,27134 -DE,CM,2,273,201912,5795 -DE,CM,2,274,201912,11495 -DE,CM,2,275,201912,49825 -DE,CM,2,279,201912,23680 -DE,CM,2,281,201912,222207 -DE,CM,2,282,201912,646388 -DE,CM,2,284,201912,650 -DE,CM,2,289,201912,675678 -DE,CM,2,291,201912,1884838 -DE,CM,2,292,201912,8600 -DE,CM,2,293,201912,74495 -DE,CM,2,309,201912,1290 -DE,CM,2,310,201912,41630 -DE,CM,2,321,201912,3209 -DE,CM,2,323,201912,290 -DE,CM,2,324,201912,35 -DE,CM,2,325,201912,106396 -DE,CM,2,329,201912,214059 -DE,CN,1,011,201912,2848287 -DE,CN,1,012,201912,17487173 -DE,CN,1,013,201912,622574 -DE,CN,1,014,201912,1806890 -DE,CN,1,023,201912,172333 -DE,CN,1,030,201912,78180 -DE,CN,1,051,201912,157892 -DE,CN,1,072,201912,523233 -DE,CN,1,081,201912,371080 -DE,CN,1,089,201912,1667694 -DE,CN,1,101,201912,21206362 -DE,CN,1,102,201912,31055084 -DE,CN,1,103,201912,22979888 -DE,CN,1,104,201912,582459 -DE,CN,1,105,201912,563 -DE,CN,1,106,201912,247994 -DE,CN,1,107,201912,697756 -DE,CN,1,108,201912,15211062 -DE,CN,1,109,201912,9501075 -DE,CN,1,110,201912,586833 -DE,CN,1,120,201912,998536 -DE,CN,1,131,201912,4881887 -DE,CN,1,132,201912,15244904 -DE,CN,1,139,201912,108360133 -DE,CN,1,141,201912,252705457 -DE,CN,1,142,201912,454663 -DE,CN,1,143,201912,56828941 -DE,CN,1,151,201912,74584237 -DE,CN,1,152,201912,123299727 -DE,CN,1,161,201912,344713 -DE,CN,1,162,201912,37748584 -DE,CN,1,171,201912,2762147 -DE,CN,1,172,201912,21596839 -DE,CN,1,181,201912,74767 -DE,CN,1,192,201912,2352470 -DE,CN,1,201,201912,153106837 -DE,CN,1,202,201912,919530 -DE,CN,1,203,201912,887136 -DE,CN,1,204,201912,7691672 -DE,CN,1,205,201912,42062015 -DE,CN,1,206,201912,4528717 -DE,CN,1,211,201912,44117731 -DE,CN,1,212,201912,9913278 -DE,CN,1,221,201912,34853341 -DE,CN,1,222,201912,117385591 -DE,CN,1,231,201912,30236804 -DE,CN,1,232,201912,2863550 -DE,CN,1,233,201912,687126 -DE,CN,1,234,201912,29253803 -DE,CN,1,235,201912,3802 -DE,CN,1,236,201912,2742692 -DE,CN,1,237,201912,9932206 -DE,CN,1,239,201912,7479193 -DE,CN,1,241,201912,4679229 -DE,CN,1,242,201912,10749589 -DE,CN,1,243,201912,2609052 -DE,CN,1,244,201912,34093829 -DE,CN,1,245,201912,2375203 -DE,CN,1,251,201912,15638344 -DE,CN,1,252,201912,2255604 -DE,CN,1,253,201912,74027 -DE,CN,1,254,201912,654876 -DE,CN,1,257,201912,121981755 -DE,CN,1,259,201912,154174867 -DE,CN,1,261,201912,210022489 -DE,CN,1,262,201912,760634569 -DE,CN,1,263,201912,605337108 -DE,CN,1,264,201912,125208176 -DE,CN,1,265,201912,133038377 -DE,CN,1,266,201912,34530371 -DE,CN,1,267,201912,56735814 -DE,CN,1,268,201912,477255 -DE,CN,1,271,201912,159742947 -DE,CN,1,272,201912,106438389 -DE,CN,1,273,201912,66418782 -DE,CN,1,274,201912,114794477 -DE,CN,1,275,201912,179743376 -DE,CN,1,279,201912,199605404 -DE,CN,1,281,201912,161208987 -DE,CN,1,282,201912,201435355 -DE,CN,1,283,201912,10172024 -DE,CN,1,284,201912,24423721 -DE,CN,1,289,201912,68975372 -DE,CN,1,291,201912,11329606 -DE,CN,1,292,201912,7337332 -DE,CN,1,293,201912,76181031 -DE,CN,1,301,201912,50437065 -DE,CN,1,302,201912,5248426 -DE,CN,1,303,201912,17125331 -DE,CN,1,309,201912,51272222 -DE,CN,1,310,201912,137892111 -DE,CN,1,321,201912,28684174 -DE,CN,1,322,201912,15624275 -DE,CN,1,323,201912,38068870 -DE,CN,1,324,201912,60914377 -DE,CN,1,325,201912,70006165 -DE,CN,1,329,201912,75759797 -DE,CN,2,011,201912,1998848 -DE,CN,2,012,201912,950273 -DE,CN,2,013,201912,10950 -DE,CN,2,014,201912,25975 -DE,CN,2,022,201912,20878536 -DE,CN,2,023,201912,41887 -DE,CN,2,030,201912,101936 -DE,CN,2,071,201912,608 -DE,CN,2,072,201912,11075 -DE,CN,2,081,201912,573888 -DE,CN,2,089,201912,965237 -DE,CN,2,101,201912,191130938 -DE,CN,2,102,201912,893541 -DE,CN,2,103,201912,694738 -DE,CN,2,104,201912,1035873 -DE,CN,2,105,201912,18593642 -DE,CN,2,106,201912,1921857 -DE,CN,2,107,201912,812230 -DE,CN,2,108,201912,33836393 -DE,CN,2,109,201912,661520 -DE,CN,2,110,201912,10229498 -DE,CN,2,120,201912,258360 -DE,CN,2,131,201912,850391 -DE,CN,2,132,201912,2632661 -DE,CN,2,139,201912,22761812 -DE,CN,2,141,201912,7555467 -DE,CN,2,142,201912,19768 -DE,CN,2,143,201912,489201 -DE,CN,2,151,201912,5170370 -DE,CN,2,152,201912,3211107 -DE,CN,2,161,201912,9714221 -DE,CN,2,162,201912,3443400 -DE,CN,2,171,201912,17555232 -DE,CN,2,172,201912,2905189 -DE,CN,2,17S,201912,93720 -DE,CN,2,181,201912,264787 -DE,CN,2,192,201912,15007159 -DE,CN,2,201,201912,249376352 -DE,CN,2,202,201912,4191657 -DE,CN,2,203,201912,21056927 -DE,CN,2,204,201912,28077606 -DE,CN,2,205,201912,113056984 -DE,CN,2,206,201912,4650712 -DE,CN,2,20S,201912,2460243 -DE,CN,2,211,201912,7405220 -DE,CN,2,212,201912,252095584 -DE,CN,2,221,201912,57495321 -DE,CN,2,222,201912,101600492 -DE,CN,2,231,201912,28927974 -DE,CN,2,232,201912,5127261 -DE,CN,2,233,201912,3417 -DE,CN,2,234,201912,11947629 -DE,CN,2,235,201912,71128 -DE,CN,2,236,201912,594829 -DE,CN,2,237,201912,24332 -DE,CN,2,239,201912,18270721 -DE,CN,2,23I,201912,106 -DE,CN,2,241,201912,40646737 -DE,CN,2,242,201912,14410160 -DE,CN,2,243,201912,15104937 -DE,CN,2,244,201912,84265247 -DE,CN,2,245,201912,72528 -DE,CN,2,251,201912,4888114 -DE,CN,2,252,201912,7645505 -DE,CN,2,253,201912,863770 -DE,CN,2,254,201912,2052769 -DE,CN,2,257,201912,93459226 -DE,CN,2,259,201912,113904457 -DE,CN,2,25I,201912,240 -DE,CN,2,261,201912,189457401 -DE,CN,2,262,201912,26853069 -DE,CN,2,263,201912,129632682 -DE,CN,2,264,201912,20437914 -DE,CN,2,265,201912,436899585 -DE,CN,2,266,201912,128329798 -DE,CN,2,267,201912,124236564 -DE,CN,2,268,201912,264926 -DE,CN,2,271,201912,359171398 -DE,CN,2,272,201912,50259118 -DE,CN,2,273,201912,127263406 -DE,CN,2,274,201912,86039348 -DE,CN,2,275,201912,26693047 -DE,CN,2,279,201912,160012724 -DE,CN,2,281,201912,588996609 -DE,CN,2,282,201912,333411644 -DE,CN,2,283,201912,4812549 -DE,CN,2,284,201912,187590109 -DE,CN,2,289,201912,512028440 -DE,CN,2,291,201912,1019417098 -DE,CN,2,292,201912,2928081 -DE,CN,2,293,201912,730681241 -DE,CN,2,301,201912,68959325 -DE,CN,2,302,201912,20047178 -DE,CN,2,303,201912,997890171 -DE,CN,2,309,201912,3136190 -DE,CN,2,310,201912,21434985 -DE,CN,2,321,201912,1386889 -DE,CN,2,322,201912,3518198 -DE,CN,2,323,201912,1792413 -DE,CN,2,324,201912,2603370 -DE,CN,2,325,201912,140010756 -DE,CN,2,329,201912,13099581 -DE,CO,1,011,201912,210544 -DE,CO,1,012,201912,20124496 -DE,CO,1,013,201912,13858 -DE,CO,1,030,201912,70455 -DE,CO,1,051,201912,11158510 -DE,CO,1,103,201912,568 -DE,CO,1,104,201912,680904 -DE,CO,1,108,201912,3074788 -DE,CO,1,120,201912,6635 -DE,CO,1,139,201912,74749 -DE,CO,1,141,201912,395119 -DE,CO,1,143,201912,4857 -DE,CO,1,151,201912,116240 -DE,CO,1,152,201912,1767 -DE,CO,1,162,201912,4788 -DE,CO,1,172,201912,318 -DE,CO,1,201,201912,40483 -DE,CO,1,204,201912,40489 -DE,CO,1,205,201912,3 -DE,CO,1,211,201912,65 -DE,CO,1,212,201912,39 -DE,CO,1,222,201912,202880 -DE,CO,1,231,201912,6483 -DE,CO,1,234,201912,3713 -DE,CO,1,257,201912,822 -DE,CO,1,259,201912,194 -DE,CO,1,262,201912,2765 -DE,CO,1,263,201912,1551 -DE,CO,1,265,201912,7908 -DE,CO,1,266,201912,391 -DE,CO,1,271,201912,38925 -DE,CO,1,279,201912,2232 -DE,CO,1,281,201912,583 -DE,CO,1,282,201912,21002 -DE,CO,1,289,201912,3645 -DE,CO,1,293,201912,5500 -DE,CO,1,310,201912,19910 -DE,CO,1,321,201912,313608 -DE,CO,1,322,201912,130645 -DE,CO,1,325,201912,16668 -DE,CO,1,329,201912,74929 -DE,CO,2,011,201912,12514 -DE,CO,2,012,201912,201485 -DE,CO,2,014,201912,14111 -DE,CO,2,081,201912,81 -DE,CO,2,089,201912,1119146 -DE,CO,2,102,201912,53688 -DE,CO,2,103,201912,146178 -DE,CO,2,104,201912,96304 -DE,CO,2,105,201912,80071 -DE,CO,2,106,201912,148731 -DE,CO,2,107,201912,8420 -DE,CO,2,108,201912,758741 -DE,CO,2,109,201912,127209 -DE,CO,2,110,201912,643842 -DE,CO,2,120,201912,857 -DE,CO,2,131,201912,15409 -DE,CO,2,132,201912,112791 -DE,CO,2,139,201912,427663 -DE,CO,2,141,201912,319671 -DE,CO,2,143,201912,37539 -DE,CO,2,151,201912,115996 -DE,CO,2,152,201912,49704 -DE,CO,2,161,201912,14967 -DE,CO,2,162,201912,627397 -DE,CO,2,171,201912,2106573 -DE,CO,2,172,201912,353160 -DE,CO,2,181,201912,12169 -DE,CO,2,192,201912,594679 -DE,CO,2,201,201912,8303918 -DE,CO,2,202,201912,642639 -DE,CO,2,203,201912,734497 -DE,CO,2,204,201912,2990543 -DE,CO,2,205,201912,4928850 -DE,CO,2,206,201912,66830 -DE,CO,2,20S,201912,2431730 -DE,CO,2,211,201912,687896 -DE,CO,2,212,201912,16814917 -DE,CO,2,221,201912,908463 -DE,CO,2,222,201912,3041746 -DE,CO,2,231,201912,116456 -DE,CO,2,232,201912,1191012 -DE,CO,2,234,201912,106159 -DE,CO,2,235,201912,167885 -DE,CO,2,236,201912,10430 -DE,CO,2,239,201912,145923 -DE,CO,2,241,201912,1109460 -DE,CO,2,242,201912,53636 -DE,CO,2,243,201912,28585 -DE,CO,2,244,201912,1792458 -DE,CO,2,245,201912,225 -DE,CO,2,251,201912,337291 -DE,CO,2,252,201912,36539 -DE,CO,2,253,201912,50305 -DE,CO,2,257,201912,906961 -DE,CO,2,259,201912,648269 -DE,CO,2,261,201912,225950 -DE,CO,2,262,201912,264656 -DE,CO,2,263,201912,474252 -DE,CO,2,264,201912,57133 -DE,CO,2,265,201912,2117307 -DE,CO,2,266,201912,2451202 -DE,CO,2,267,201912,843579 -DE,CO,2,268,201912,132557 -DE,CO,2,271,201912,6107208 -DE,CO,2,272,201912,254921 -DE,CO,2,273,201912,697003 -DE,CO,2,274,201912,402463 -DE,CO,2,275,201912,69893 -DE,CO,2,279,201912,825659 -DE,CO,2,281,201912,4964549 -DE,CO,2,282,201912,11161298 -DE,CO,2,283,201912,1016682 -DE,CO,2,284,201912,1228475 -DE,CO,2,289,201912,4648904 -DE,CO,2,291,201912,11608971 -DE,CO,2,292,201912,369 -DE,CO,2,293,201912,1470011 -DE,CO,2,303,201912,33557 -DE,CO,2,309,201912,1284292 -DE,CO,2,310,201912,301925 -DE,CO,2,321,201912,24826 -DE,CO,2,322,201912,17646 -DE,CO,2,323,201912,241178 -DE,CO,2,324,201912,9301 -DE,CO,2,325,201912,4112033 -DE,CO,2,329,201912,549989 -DE,CR,1,012,201912,4516826 -DE,CR,1,013,201912,70451 -DE,CR,1,014,201912,24205 -DE,CR,1,089,201912,19482 -DE,CR,1,102,201912,355758 -DE,CR,1,103,201912,264770 -DE,CR,1,108,201912,66060 -DE,CR,1,110,201912,227007 -DE,CR,1,120,201912,30576 -DE,CR,1,139,201912,139019 -DE,CR,1,141,201912,2505 -DE,CR,1,222,201912,372520 -DE,CR,1,242,201912,10013 -DE,CR,1,244,201912,3331 -DE,CR,1,259,201912,24068 -DE,CR,1,261,201912,96331 -DE,CR,1,262,201912,794 -DE,CR,1,263,201912,21907 -DE,CR,1,264,201912,5864 -DE,CR,1,265,201912,33348 -DE,CR,1,266,201912,1153 -DE,CR,1,267,201912,348982 -DE,CR,1,271,201912,173878 -DE,CR,1,272,201912,10036 -DE,CR,1,273,201912,145438 -DE,CR,1,274,201912,2449 -DE,CR,1,279,201912,643597 -DE,CR,1,281,201912,305 -DE,CR,1,282,201912,89785 -DE,CR,1,310,201912,341 -DE,CR,1,325,201912,475747 -DE,CR,1,329,201912,32 -DE,CR,2,012,201912,7014 -DE,CR,2,013,201912,10997 -DE,CR,2,101,201912,12762 -DE,CR,2,102,201912,11974 -DE,CR,2,103,201912,93498 -DE,CR,2,104,201912,6787 -DE,CR,2,105,201912,9913 -DE,CR,2,106,201912,123846 -DE,CR,2,107,201912,17905 -DE,CR,2,108,201912,89460 -DE,CR,2,110,201912,150888 -DE,CR,2,132,201912,9019 -DE,CR,2,139,201912,19290 -DE,CR,2,141,201912,14313 -DE,CR,2,143,201912,3188 -DE,CR,2,151,201912,5482 -DE,CR,2,152,201912,92046 -DE,CR,2,162,201912,25438 -DE,CR,2,171,201912,233786 -DE,CR,2,172,201912,23402 -DE,CR,2,181,201912,787 -DE,CR,2,192,201912,76270 -DE,CR,2,201,201912,854605 -DE,CR,2,202,201912,305405 -DE,CR,2,203,201912,119130 -DE,CR,2,204,201912,345833 -DE,CR,2,205,201912,261121 -DE,CR,2,211,201912,9361 -DE,CR,2,212,201912,435163 -DE,CR,2,221,201912,139801 -DE,CR,2,222,201912,571460 -DE,CR,2,231,201912,22818 -DE,CR,2,232,201912,2068 -DE,CR,2,234,201912,180137 -DE,CR,2,239,201912,212208 -DE,CR,2,242,201912,9323 -DE,CR,2,244,201912,103770 -DE,CR,2,245,201912,1058 -DE,CR,2,251,201912,70899 -DE,CR,2,252,201912,879 -DE,CR,2,257,201912,51523 -DE,CR,2,259,201912,170005 -DE,CR,2,261,201912,35616 -DE,CR,2,262,201912,31080 -DE,CR,2,263,201912,70904 -DE,CR,2,264,201912,69245 -DE,CR,2,265,201912,348871 -DE,CR,2,266,201912,228276 -DE,CR,2,267,201912,184876 -DE,CR,2,271,201912,224325 -DE,CR,2,272,201912,11917 -DE,CR,2,273,201912,156260 -DE,CR,2,274,201912,135820 -DE,CR,2,275,201912,20032 -DE,CR,2,279,201912,544622 -DE,CR,2,281,201912,663528 -DE,CR,2,282,201912,1831613 -DE,CR,2,283,201912,6683 -DE,CR,2,284,201912,209210 -DE,CR,2,289,201912,1266294 -DE,CR,2,291,201912,2034463 -DE,CR,2,292,201912,1356 -DE,CR,2,293,201912,168312 -DE,CR,2,303,201912,77725 -DE,CR,2,309,201912,504791 -DE,CR,2,310,201912,14403 -DE,CR,2,323,201912,8001 -DE,CR,2,324,201912,11795 -DE,CR,2,325,201912,1830263 -DE,CR,2,329,201912,68963 -DE,CU,1,014,201912,714595 -DE,CU,1,110,201912,82619 -DE,CU,1,120,201912,792658 -DE,CU,2,089,201912,12672 -DE,CU,2,101,201912,3194 -DE,CU,2,105,201912,297569 -DE,CU,2,106,201912,3654 -DE,CU,2,107,201912,1560 -DE,CU,2,108,201912,449 -DE,CU,2,110,201912,23172 -DE,CU,2,139,201912,625612 -DE,CU,2,141,201912,70685 -DE,CU,2,151,201912,164 -DE,CU,2,171,201912,11660 -DE,CU,2,172,201912,403 -DE,CU,2,192,201912,794 -DE,CU,2,201,201912,128615 -DE,CU,2,203,201912,21006 -DE,CU,2,204,201912,99811 -DE,CU,2,205,201912,549222 -DE,CU,2,211,201912,60960 -DE,CU,2,212,201912,413128 -DE,CU,2,221,201912,55732 -DE,CU,2,222,201912,147121 -DE,CU,2,231,201912,318973 -DE,CU,2,234,201912,279 -DE,CU,2,239,201912,112730 -DE,CU,2,242,201912,3918 -DE,CU,2,251,201912,253120 -DE,CU,2,257,201912,41099 -DE,CU,2,259,201912,366181 -DE,CU,2,261,201912,3090 -DE,CU,2,262,201912,28298 -DE,CU,2,263,201912,49980 -DE,CU,2,264,201912,886 -DE,CU,2,265,201912,418395 -DE,CU,2,266,201912,1148769 -DE,CU,2,267,201912,193259 -DE,CU,2,271,201912,255629 -DE,CU,2,272,201912,28904 -DE,CU,2,273,201912,131202 -DE,CU,2,274,201912,9749 -DE,CU,2,275,201912,4343 -DE,CU,2,279,201912,163241 -DE,CU,2,281,201912,848182 -DE,CU,2,282,201912,3411628 -DE,CU,2,284,201912,789562 -DE,CU,2,289,201912,1557026 -DE,CU,2,291,201912,487453 -DE,CU,2,292,201912,2311 -DE,CU,2,293,201912,154216 -DE,CU,2,310,201912,3696 -DE,CU,2,325,201912,344659 -DE,CU,2,329,201912,38313 -DE,CV,2,101,201912,58830 -DE,CV,2,105,201912,30494 -DE,CV,2,139,201912,18666 -DE,CV,2,141,201912,2924 -DE,CV,2,151,201912,859 -DE,CV,2,162,201912,2227 -DE,CV,2,204,201912,6029 -DE,CV,2,205,201912,850 -DE,CV,2,221,201912,1100 -DE,CV,2,222,201912,85987 -DE,CV,2,231,201912,1288 -DE,CV,2,251,201912,17305 -DE,CV,2,259,201912,1187 -DE,CV,2,265,201912,15363 -DE,CV,2,274,201912,738 -DE,CV,2,279,201912,1034 -DE,CV,2,281,201912,23409 -DE,CV,2,282,201912,142414 -DE,CV,2,291,201912,14650 -DE,CV,2,293,201912,11500 -DE,CV,2,323,201912,9118 -DE,CV,2,325,201912,2211 -DE,CV,2,329,201912,11474 -DE,CW,2,012,201912,1765 -DE,CW,2,089,201912,27896 -DE,CW,2,101,201912,3200 -DE,CW,2,105,201912,2246 -DE,CW,2,108,201912,3487 -DE,CW,2,110,201912,13820 -DE,CW,2,139,201912,5176 -DE,CW,2,143,201912,1012 -DE,CW,2,152,201912,195 -DE,CW,2,192,201912,100 -DE,CW,2,204,201912,13826 -DE,CW,2,205,201912,31032 -DE,CW,2,211,201912,2147 -DE,CW,2,212,201912,114176 -DE,CW,2,221,201912,26427 -DE,CW,2,222,201912,34863 -DE,CW,2,231,201912,181 -DE,CW,2,239,201912,384 -DE,CW,2,242,201912,13329 -DE,CW,2,244,201912,5 -DE,CW,2,257,201912,12917 -DE,CW,2,259,201912,152261 -DE,CW,2,262,201912,3607 -DE,CW,2,263,201912,9132 -DE,CW,2,264,201912,2900 -DE,CW,2,265,201912,83530 -DE,CW,2,271,201912,83626 -DE,CW,2,273,201912,7541 -DE,CW,2,274,201912,5265 -DE,CW,2,275,201912,11971 -DE,CW,2,279,201912,1044 -DE,CW,2,281,201912,331421 -DE,CW,2,282,201912,134332 -DE,CW,2,289,201912,38010 -DE,CW,2,291,201912,39000 -DE,CW,2,293,201912,13751 -DE,CW,2,310,201912,53227 -DE,CW,2,325,201912,117159 -DE,CW,2,329,201912,7720 -DE,CY,1,011,201912,172511 -DE,CY,1,012,201912,63234 -DE,CY,1,01M,201912,245 -DE,CY,1,101,201912,15725 -DE,CY,1,103,201912,293573 -DE,CY,1,104,201912,26746 -DE,CY,1,105,201912,1495697 -DE,CY,1,107,201912,4342 -DE,CY,1,108,201912,160416 -DE,CY,1,109,201912,1353 -DE,CY,1,10M,201912,22822 -DE,CY,1,110,201912,29082 -DE,CY,1,120,201912,705637 -DE,CY,1,139,201912,54156 -DE,CY,1,13M,201912,646 -DE,CY,1,141,201912,19437 -DE,CY,1,143,201912,5326 -DE,CY,1,14M,201912,6738 -DE,CY,1,151,201912,1206 -DE,CY,1,152,201912,3843 -DE,CY,1,162,201912,5551 -DE,CY,1,172,201912,320 -DE,CY,1,17M,201912,841 -DE,CY,1,192,201912,46533 -DE,CY,1,201,201912,1732124 -DE,CY,1,202,201912,179 -DE,CY,1,203,201912,62067 -DE,CY,1,204,201912,118370 -DE,CY,1,205,201912,63590 -DE,CY,1,20M,201912,25408 -DE,CY,1,212,201912,1373773 -DE,CY,1,221,201912,504 -DE,CY,1,222,201912,39687 -DE,CY,1,234,201912,400 -DE,CY,1,239,201912,13386 -DE,CY,1,23M,201912,1462 -DE,CY,1,244,201912,264696 -DE,CY,1,257,201912,5557 -DE,CY,1,259,201912,637 -DE,CY,1,25M,201912,38 -DE,CY,1,261,201912,40348 -DE,CY,1,262,201912,1017357 -DE,CY,1,263,201912,205501 -DE,CY,1,264,201912,8700 -DE,CY,1,265,201912,10903 -DE,CY,1,266,201912,21338 -DE,CY,1,267,201912,164275 -DE,CY,1,271,201912,127868 -DE,CY,1,272,201912,5471 -DE,CY,1,273,201912,29339 -DE,CY,1,274,201912,4834 -DE,CY,1,279,201912,2872 -DE,CY,1,281,201912,17468 -DE,CY,1,282,201912,163641 -DE,CY,1,293,201912,12693 -DE,CY,1,303,201912,3083 -DE,CY,1,309,201912,362 -DE,CY,1,310,201912,658977 -DE,CY,1,321,201912,3266 -DE,CY,1,324,201912,8475 -DE,CY,1,325,201912,44037 -DE,CY,1,329,201912,472 -DE,CY,2,011,201912,210962 -DE,CY,2,012,201912,426220 -DE,CY,2,013,201912,110972 -DE,CY,2,014,201912,123989 -DE,CY,2,01M,201912,752 -DE,CY,2,081,201912,4735 -DE,CY,2,089,201912,109807 -DE,CY,2,101,201912,963345 -DE,CY,2,102,201912,555750 -DE,CY,2,103,201912,312452 -DE,CY,2,104,201912,124652 -DE,CY,2,105,201912,1503578 -DE,CY,2,106,201912,185075 -DE,CY,2,107,201912,445119 -DE,CY,2,108,201912,1671833 -DE,CY,2,109,201912,227332 -DE,CY,2,10M,201912,147179 -DE,CY,2,110,201912,340940 -DE,CY,2,120,201912,377743 -DE,CY,2,131,201912,2644 -DE,CY,2,132,201912,5824 -DE,CY,2,139,201912,98363 -DE,CY,2,13M,201912,1917 -DE,CY,2,141,201912,1301362 -DE,CY,2,143,201912,311355 -DE,CY,2,14M,201912,63544 -DE,CY,2,151,201912,207585 -DE,CY,2,152,201912,480278 -DE,CY,2,161,201912,99297 -DE,CY,2,162,201912,236159 -DE,CY,2,16M,201912,152 -DE,CY,2,171,201912,377777 -DE,CY,2,172,201912,257735 -DE,CY,2,17M,201912,33535 -DE,CY,2,192,201912,169084 -DE,CY,2,201,201912,926461 -DE,CY,2,202,201912,67551 -DE,CY,2,203,201912,484212 -DE,CY,2,204,201912,517987 -DE,CY,2,205,201912,544501 -DE,CY,2,206,201912,48 -DE,CY,2,20M,201912,34522 -DE,CY,2,211,201912,67855 -DE,CY,2,212,201912,2566610 -DE,CY,2,221,201912,634811 -DE,CY,2,222,201912,2147308 -DE,CY,2,231,201912,299803 -DE,CY,2,232,201912,103561 -DE,CY,2,233,201912,30397 -DE,CY,2,234,201912,63767 -DE,CY,2,235,201912,8539 -DE,CY,2,236,201912,1185 -DE,CY,2,237,201912,27 -DE,CY,2,239,201912,182706 -DE,CY,2,23M,201912,10776 -DE,CY,2,241,201912,7536 -DE,CY,2,242,201912,53130 -DE,CY,2,243,201912,7138 -DE,CY,2,244,201912,133468 -DE,CY,2,245,201912,618 -DE,CY,2,251,201912,41274 -DE,CY,2,252,201912,4148 -DE,CY,2,253,201912,1300574 -DE,CY,2,254,201912,9388 -DE,CY,2,257,201912,222272 -DE,CY,2,259,201912,334501 -DE,CY,2,25M,201912,20617 -DE,CY,2,261,201912,99987 -DE,CY,2,262,201912,1743537 -DE,CY,2,263,201912,1888853 -DE,CY,2,264,201912,307727 -DE,CY,2,265,201912,1250012 -DE,CY,2,266,201912,161582 -DE,CY,2,267,201912,449481 -DE,CY,2,268,201912,4868 -DE,CY,2,271,201912,271978 -DE,CY,2,272,201912,76980 -DE,CY,2,273,201912,183882 -DE,CY,2,274,201912,129718 -DE,CY,2,275,201912,448078 -DE,CY,2,279,201912,201538 -DE,CY,2,281,201912,1762679 -DE,CY,2,282,201912,4499192 -DE,CY,2,283,201912,129377 -DE,CY,2,284,201912,67527 -DE,CY,2,289,201912,1528078 -DE,CY,2,291,201912,4428152 -DE,CY,2,292,201912,6657 -DE,CY,2,293,201912,969188 -DE,CY,2,301,201912,38009 -DE,CY,2,303,201912,187544 -DE,CY,2,309,201912,91870 -DE,CY,2,30M,201912,4657 -DE,CY,2,310,201912,158379 -DE,CY,2,321,201912,65356 -DE,CY,2,322,201912,83296 -DE,CY,2,323,201912,70258 -DE,CY,2,324,201912,46196 -DE,CY,2,325,201912,4974988 -DE,CY,2,329,201912,195049 -DE,CY,2,32M,201912,2249 -DE,CZ,1,011,201912,29033036 -DE,CZ,1,012,201912,531762 -DE,CZ,1,013,201912,340 -DE,CZ,1,014,201912,4044087 -DE,CZ,1,01M,201912,697641 -DE,CZ,1,021,201912,97 -DE,CZ,1,022,201912,10252820 -DE,CZ,1,023,201912,3146489 -DE,CZ,1,030,201912,1681139 -DE,CZ,1,051,201912,29453 -DE,CZ,1,052,201912,361818 -DE,CZ,1,081,201912,2324681 -DE,CZ,1,089,201912,711588 -DE,CZ,1,101,201912,3732747 -DE,CZ,1,102,201912,67545 -DE,CZ,1,103,201912,2530025 -DE,CZ,1,104,201912,12335655 -DE,CZ,1,105,201912,20711209 -DE,CZ,1,106,201912,3444572 -DE,CZ,1,107,201912,2315868 -DE,CZ,1,108,201912,13326995 -DE,CZ,1,109,201912,2935898 -DE,CZ,1,10M,201912,1931003 -DE,CZ,1,110,201912,8326425 -DE,CZ,1,120,201912,4416718 -DE,CZ,1,131,201912,5117339 -DE,CZ,1,132,201912,7264414 -DE,CZ,1,139,201912,26007865 -DE,CZ,1,13M,201912,734803 -DE,CZ,1,141,201912,44866991 -DE,CZ,1,142,201912,28437 -DE,CZ,1,143,201912,10434992 -DE,CZ,1,14M,201912,3250895 -DE,CZ,1,151,201912,8839368 -DE,CZ,1,152,201912,8578208 -DE,CZ,1,161,201912,6054416 -DE,CZ,1,162,201912,30994055 -DE,CZ,1,16M,201912,8183 -DE,CZ,1,171,201912,13193110 -DE,CZ,1,172,201912,21918034 -DE,CZ,1,17M,201912,2764907 -DE,CZ,1,181,201912,484619 -DE,CZ,1,191,201912,4092470 -DE,CZ,1,192,201912,35434475 -DE,CZ,1,201,201912,48936900 -DE,CZ,1,202,201912,540393 -DE,CZ,1,203,201912,2384723 -DE,CZ,1,204,201912,24996946 -DE,CZ,1,205,201912,16195237 -DE,CZ,1,206,201912,1521217 -DE,CZ,1,20M,201912,2513252 -DE,CZ,1,211,201912,1087647 -DE,CZ,1,212,201912,70295368 -DE,CZ,1,221,201912,48323945 -DE,CZ,1,222,201912,77650188 -DE,CZ,1,231,201912,18776534 -DE,CZ,1,232,201912,755364 -DE,CZ,1,233,201912,1917778 -DE,CZ,1,234,201912,5636764 -DE,CZ,1,235,201912,918269 -DE,CZ,1,236,201912,6437012 -DE,CZ,1,237,201912,241430 -DE,CZ,1,239,201912,4288897 -DE,CZ,1,23M,201912,3313119 -DE,CZ,1,241,201912,25359847 -DE,CZ,1,242,201912,9572554 -DE,CZ,1,243,201912,22796973 -DE,CZ,1,244,201912,20939722 -DE,CZ,1,245,201912,133453 -DE,CZ,1,251,201912,31356833 -DE,CZ,1,252,201912,10998380 -DE,CZ,1,253,201912,82461 -DE,CZ,1,254,201912,1194935 -DE,CZ,1,257,201912,56593663 -DE,CZ,1,259,201912,78362364 -DE,CZ,1,25M,201912,5789635 -DE,CZ,1,261,201912,22082488 -DE,CZ,1,262,201912,481680907 -DE,CZ,1,263,201912,275178550 -DE,CZ,1,264,201912,87517818 -DE,CZ,1,265,201912,51077367 -DE,CZ,1,266,201912,109842 -DE,CZ,1,267,201912,6255088 -DE,CZ,1,268,201912,371430 -DE,CZ,1,271,201912,99472390 -DE,CZ,1,272,201912,18311770 -DE,CZ,1,273,201912,58627048 -DE,CZ,1,274,201912,52530731 -DE,CZ,1,275,201912,47390218 -DE,CZ,1,279,201912,46852005 -DE,CZ,1,281,201912,133236147 -DE,CZ,1,282,201912,146264221 -DE,CZ,1,283,201912,13626714 -DE,CZ,1,284,201912,25806834 -DE,CZ,1,289,201912,63975423 -DE,CZ,1,291,201912,349108789 -DE,CZ,1,292,201912,15551949 -DE,CZ,1,293,201912,334577924 -DE,CZ,1,301,201912,22134 -DE,CZ,1,302,201912,8388208 -DE,CZ,1,303,201912,14733610 -DE,CZ,1,309,201912,10907035 -DE,CZ,1,30M,201912,6169 -DE,CZ,1,310,201912,84288173 -DE,CZ,1,321,201912,1766000 -DE,CZ,1,322,201912,2070318 -DE,CZ,1,323,201912,3324216 -DE,CZ,1,324,201912,68645957 -DE,CZ,1,325,201912,32635780 -DE,CZ,1,329,201912,18808932 -DE,CZ,1,32M,201912,131159 -DE,CZ,1,351,201912,16917064 -DE,CZ,2,011,201912,3510233 -DE,CZ,2,012,201912,10496720 -DE,CZ,2,013,201912,1267673 -DE,CZ,2,014,201912,2247227 -DE,CZ,2,01M,201912,144942 -DE,CZ,2,022,201912,365727 -DE,CZ,2,023,201912,66104 -DE,CZ,2,030,201912,344202 -DE,CZ,2,052,201912,149162 -DE,CZ,2,071,201912,44633 -DE,CZ,2,072,201912,144130 -DE,CZ,2,081,201912,783185 -DE,CZ,2,089,201912,1936599 -DE,CZ,2,101,201912,37035758 -DE,CZ,2,102,201912,4681672 -DE,CZ,2,103,201912,11443997 -DE,CZ,2,104,201912,8572076 -DE,CZ,2,105,201912,16480639 -DE,CZ,2,106,201912,3402277 -DE,CZ,2,107,201912,6408467 -DE,CZ,2,108,201912,37169779 -DE,CZ,2,109,201912,10220396 -DE,CZ,2,10M,201912,2938051 -DE,CZ,2,110,201912,9885741 -DE,CZ,2,120,201912,7412461 -DE,CZ,2,131,201912,2798148 -DE,CZ,2,132,201912,4784446 -DE,CZ,2,139,201912,30872560 -DE,CZ,2,13M,201912,746012 -DE,CZ,2,141,201912,36776830 -DE,CZ,2,142,201912,26800 -DE,CZ,2,143,201912,9220505 -DE,CZ,2,14M,201912,1493003 -DE,CZ,2,151,201912,6182902 -DE,CZ,2,152,201912,9546299 -DE,CZ,2,161,201912,3215315 -DE,CZ,2,162,201912,7803388 -DE,CZ,2,16M,201912,15993 -DE,CZ,2,171,201912,29597164 -DE,CZ,2,172,201912,22117295 -DE,CZ,2,17M,201912,1757281 -DE,CZ,2,17S,201912,36139 -DE,CZ,2,181,201912,144146 -DE,CZ,2,191,201912,402706 -DE,CZ,2,192,201912,76470961 -DE,CZ,2,201,201912,88905702 -DE,CZ,2,202,201912,1857358 -DE,CZ,2,203,201912,18516020 -DE,CZ,2,204,201912,31621539 -DE,CZ,2,205,201912,76247213 -DE,CZ,2,206,201912,1343289 -DE,CZ,2,20M,201912,1983404 -DE,CZ,2,20S,201912,1260024 -DE,CZ,2,211,201912,1600897 -DE,CZ,2,212,201912,65282500 -DE,CZ,2,221,201912,32433535 -DE,CZ,2,222,201912,99088992 -DE,CZ,2,231,201912,12149885 -DE,CZ,2,232,201912,885633 -DE,CZ,2,233,201912,1318048 -DE,CZ,2,234,201912,6193833 -DE,CZ,2,235,201912,567145 -DE,CZ,2,236,201912,1326005 -DE,CZ,2,237,201912,106149 -DE,CZ,2,239,201912,5946936 -DE,CZ,2,23M,201912,944235 -DE,CZ,2,241,201912,39616801 -DE,CZ,2,242,201912,14317742 -DE,CZ,2,243,201912,15311238 -DE,CZ,2,244,201912,56147533 -DE,CZ,2,245,201912,398070 -DE,CZ,2,251,201912,8022239 -DE,CZ,2,252,201912,2737488 -DE,CZ,2,253,201912,477434 -DE,CZ,2,254,201912,495956 -DE,CZ,2,257,201912,50381519 -DE,CZ,2,259,201912,72564211 -DE,CZ,2,25M,201912,3076010 -DE,CZ,2,261,201912,46495043 -DE,CZ,2,262,201912,208972586 -DE,CZ,2,263,201912,158385423 -DE,CZ,2,264,201912,25415609 -DE,CZ,2,265,201912,79969590 -DE,CZ,2,266,201912,5192828 -DE,CZ,2,267,201912,11817064 -DE,CZ,2,268,201912,1930205 -DE,CZ,2,271,201912,103863542 -DE,CZ,2,272,201912,10597106 -DE,CZ,2,273,201912,64657313 -DE,CZ,2,274,201912,12112374 -DE,CZ,2,275,201912,25379164 -DE,CZ,2,279,201912,46047122 -DE,CZ,2,281,201912,142599866 -DE,CZ,2,282,201912,131988039 -DE,CZ,2,283,201912,17729040 -DE,CZ,2,284,201912,45125493 -DE,CZ,2,289,201912,88545897 -DE,CZ,2,291,201912,168847390 -DE,CZ,2,292,201912,9684044 -DE,CZ,2,293,201912,233869383 -DE,CZ,2,301,201912,128764 -DE,CZ,2,302,201912,3592403 -DE,CZ,2,303,201912,27134640 -DE,CZ,2,309,201912,5908315 -DE,CZ,2,30M,201912,45514 -DE,CZ,2,310,201912,25813441 -DE,CZ,2,321,201912,3705170 -DE,CZ,2,322,201912,3021823 -DE,CZ,2,323,201912,2633940 -DE,CZ,2,324,201912,19265016 -DE,CZ,2,325,201912,31391482 -DE,CZ,2,329,201912,10776827 -DE,CZ,2,32M,201912,117929 -DE,CZ,2,32S,201912,18520 -DE,CZ,2,351,201912,36917489 -DE,DJ,2,139,201912,13440 -DE,DJ,2,141,201912,520 -DE,DJ,2,201,201912,163641 -DE,DJ,2,204,201912,52992 -DE,DJ,2,205,201912,19784 -DE,DJ,2,212,201912,18335 -DE,DJ,2,221,201912,5814 -DE,DJ,2,222,201912,2247 -DE,DJ,2,251,201912,192345 -DE,DJ,2,259,201912,612 -DE,DJ,2,265,201912,9277 -DE,DJ,2,266,201912,4921 -DE,DJ,2,271,201912,4987 -DE,DJ,2,273,201912,1568 -DE,DJ,2,274,201912,4701 -DE,DJ,2,279,201912,2480 -DE,DJ,2,281,201912,18930 -DE,DJ,2,282,201912,34025 -DE,DJ,2,289,201912,59090 -DE,DJ,2,291,201912,190790 -DE,DJ,2,293,201912,6597 -DE,DJ,2,325,201912,7303 -DE,DJ,2,329,201912,1173 -DE,DK,1,011,201912,16975244 -DE,DK,1,012,201912,12411963 -DE,DK,1,013,201912,4946086 -DE,DK,1,014,201912,54184757 -DE,DK,1,01M,201912,5556461 -DE,DK,1,021,201912,2269 -DE,DK,1,022,201912,349055 -DE,DK,1,023,201912,1395467 -DE,DK,1,030,201912,20605221 -DE,DK,1,081,201912,660634 -DE,DK,1,089,201912,570397 -DE,DK,1,101,201912,70669893 -DE,DK,1,102,201912,33772411 -DE,DK,1,103,201912,4662044 -DE,DK,1,104,201912,1140844 -DE,DK,1,105,201912,47258742 -DE,DK,1,106,201912,4412841 -DE,DK,1,107,201912,5275833 -DE,DK,1,108,201912,21796810 -DE,DK,1,109,201912,2556986 -DE,DK,1,10M,201912,6436015 -DE,DK,1,110,201912,34346539 -DE,DK,1,120,201912,2823445 -DE,DK,1,131,201912,531838 -DE,DK,1,132,201912,1250597 -DE,DK,1,139,201912,8777982 -DE,DK,1,13M,201912,485055 -DE,DK,1,141,201912,49380381 -DE,DK,1,142,201912,13709 -DE,DK,1,143,201912,14192603 -DE,DK,1,14M,201912,5726681 -DE,DK,1,151,201912,2215062 -DE,DK,1,152,201912,11984445 -DE,DK,1,161,201912,280636 -DE,DK,1,162,201912,8938176 -DE,DK,1,16M,201912,6928 -DE,DK,1,171,201912,1777212 -DE,DK,1,172,201912,8516867 -DE,DK,1,17M,201912,1530349 -DE,DK,1,181,201912,96085 -DE,DK,1,192,201912,2617858 -DE,DK,1,201,201912,15093560 -DE,DK,1,202,201912,789961 -DE,DK,1,203,201912,1273077 -DE,DK,1,204,201912,9657895 -DE,DK,1,205,201912,6804296 -DE,DK,1,206,201912,5952446 -DE,DK,1,20M,201912,842407 -DE,DK,1,211,201912,4379433 -DE,DK,1,212,201912,69483803 -DE,DK,1,221,201912,2786804 -DE,DK,1,222,201912,22241675 -DE,DK,1,231,201912,2604427 -DE,DK,1,232,201912,401098 -DE,DK,1,233,201912,431395 -DE,DK,1,234,201912,1406868 -DE,DK,1,235,201912,454246 -DE,DK,1,236,201912,1672502 -DE,DK,1,237,201912,49550 -DE,DK,1,239,201912,928438 -DE,DK,1,23M,201912,656964 -DE,DK,1,241,201912,10739715 -DE,DK,1,242,201912,2720332 -DE,DK,1,243,201912,984288 -DE,DK,1,244,201912,6280738 -DE,DK,1,245,201912,40581 -DE,DK,1,251,201912,5889042 -DE,DK,1,252,201912,239516 -DE,DK,1,253,201912,11100 -DE,DK,1,254,201912,37982 -DE,DK,1,257,201912,3512956 -DE,DK,1,259,201912,17929877 -DE,DK,1,25M,201912,804120 -DE,DK,1,261,201912,1626811 -DE,DK,1,262,201912,7590473 -DE,DK,1,263,201912,14884359 -DE,DK,1,264,201912,10625357 -DE,DK,1,265,201912,9905321 -DE,DK,1,266,201912,8538077 -DE,DK,1,267,201912,2577464 -DE,DK,1,268,201912,6889 -DE,DK,1,271,201912,10194383 -DE,DK,1,272,201912,1078482 -DE,DK,1,273,201912,2474120 -DE,DK,1,274,201912,4058277 -DE,DK,1,275,201912,2770202 -DE,DK,1,279,201912,13372888 -DE,DK,1,281,201912,26189608 -DE,DK,1,282,201912,25084958 -DE,DK,1,283,201912,3993263 -DE,DK,1,284,201912,4741569 -DE,DK,1,289,201912,16158543 -DE,DK,1,291,201912,35598283 -DE,DK,1,292,201912,2594491 -DE,DK,1,293,201912,13536740 -DE,DK,1,301,201912,9507 -DE,DK,1,302,201912,790032 -DE,DK,1,303,201912,1124889 -DE,DK,1,309,201912,2030336 -DE,DK,1,30M,201912,193147 -DE,DK,1,310,201912,18121467 -DE,DK,1,321,201912,3180515 -DE,DK,1,322,201912,233762 -DE,DK,1,323,201912,607879 -DE,DK,1,324,201912,1903452 -DE,DK,1,325,201912,10452075 -DE,DK,1,329,201912,3369849 -DE,DK,1,32M,201912,28432 -DE,DK,1,351,201912,16623372 -DE,DK,2,011,201912,4854633 -DE,DK,2,012,201912,8411392 -DE,DK,2,013,201912,1254814 -DE,DK,2,014,201912,2546967 -DE,DK,2,01M,201912,49045 -DE,DK,2,021,201912,26612 -DE,DK,2,022,201912,1110511 -DE,DK,2,023,201912,37085 -DE,DK,2,030,201912,2036815 -DE,DK,2,072,201912,34260 -DE,DK,2,081,201912,426399 -DE,DK,2,089,201912,822171 -DE,DK,2,101,201912,50800323 -DE,DK,2,102,201912,6732109 -DE,DK,2,103,201912,10337154 -DE,DK,2,104,201912,37789899 -DE,DK,2,105,201912,24366893 -DE,DK,2,106,201912,5702799 -DE,DK,2,107,201912,8587087 -DE,DK,2,108,201912,22709017 -DE,DK,2,109,201912,11110556 -DE,DK,2,10M,201912,4067140 -DE,DK,2,110,201912,10516322 -DE,DK,2,120,201912,1090437 -DE,DK,2,131,201912,1473391 -DE,DK,2,132,201912,986066 -DE,DK,2,139,201912,7960617 -DE,DK,2,13M,201912,123296 -DE,DK,2,141,201912,14621200 -DE,DK,2,142,201912,35517 -DE,DK,2,143,201912,3280524 -DE,DK,2,14M,201912,1130359 -DE,DK,2,151,201912,2327950 -DE,DK,2,152,201912,8616053 -DE,DK,2,161,201912,3249377 -DE,DK,2,162,201912,17013342 -DE,DK,2,16M,201912,4826 -DE,DK,2,171,201912,9252061 -DE,DK,2,172,201912,10875136 -DE,DK,2,17M,201912,1042684 -DE,DK,2,17S,201912,261 -DE,DK,2,181,201912,288862 -DE,DK,2,192,201912,4654603 -DE,DK,2,201,201912,55777828 -DE,DK,2,202,201912,943456 -DE,DK,2,203,201912,4180548 -DE,DK,2,204,201912,15236280 -DE,DK,2,205,201912,16465552 -DE,DK,2,206,201912,167239 -DE,DK,2,20M,201912,842515 -DE,DK,2,20S,201912,2532454 -DE,DK,2,211,201912,4132856 -DE,DK,2,212,201912,47148879 -DE,DK,2,221,201912,14050270 -DE,DK,2,222,201912,33449669 -DE,DK,2,231,201912,7277502 -DE,DK,2,232,201912,270057 -DE,DK,2,233,201912,1138968 -DE,DK,2,234,201912,1257833 -DE,DK,2,235,201912,1224920 -DE,DK,2,236,201912,3008911 -DE,DK,2,237,201912,32729 -DE,DK,2,239,201912,3107662 -DE,DK,2,23M,201912,860505 -DE,DK,2,241,201912,17871724 -DE,DK,2,242,201912,5792374 -DE,DK,2,243,201912,2782114 -DE,DK,2,244,201912,25315008 -DE,DK,2,245,201912,92662 -DE,DK,2,251,201912,5479400 -DE,DK,2,252,201912,1655400 -DE,DK,2,253,201912,242862 -DE,DK,2,254,201912,403286 -DE,DK,2,257,201912,10937509 -DE,DK,2,259,201912,21500455 -DE,DK,2,25M,201912,945822 -DE,DK,2,261,201912,9875271 -DE,DK,2,262,201912,64531822 -DE,DK,2,263,201912,21532866 -DE,DK,2,264,201912,7006897 -DE,DK,2,265,201912,27946112 -DE,DK,2,266,201912,7533186 -DE,DK,2,267,201912,6221472 -DE,DK,2,268,201912,125321 -DE,DK,2,271,201912,28612222 -DE,DK,2,272,201912,3914977 -DE,DK,2,273,201912,43558398 -DE,DK,2,274,201912,5448249 -DE,DK,2,275,201912,12430610 -DE,DK,2,279,201912,15943383 -DE,DK,2,281,201912,61347941 -DE,DK,2,282,201912,59976793 -DE,DK,2,283,201912,16980317 -DE,DK,2,284,201912,13038403 -DE,DK,2,289,201912,35779597 -DE,DK,2,291,201912,135549702 -DE,DK,2,292,201912,10746250 -DE,DK,2,293,201912,14192842 -DE,DK,2,301,201912,898007 -DE,DK,2,302,201912,1373999 -DE,DK,2,303,201912,99012240 -DE,DK,2,309,201912,2569212 -DE,DK,2,30M,201912,14946 -DE,DK,2,310,201912,9177684 -DE,DK,2,321,201912,1548698 -DE,DK,2,322,201912,691096 -DE,DK,2,323,201912,1745567 -DE,DK,2,324,201912,4471014 -DE,DK,2,325,201912,18943440 -DE,DK,2,329,201912,4170452 -DE,DK,2,32M,201912,31664 -DE,DK,2,32S,201912,1515 -DE,DK,2,351,201912,35975251 -DE,DM,2,110,201912,11100 -DE,DM,2,141,201912,143 -DE,DM,2,271,201912,3000 -DE,DM,2,281,201912,1008 -DE,DM,2,329,201912,10000 -DE,DO,1,011,201912,122236 -DE,DO,1,012,201912,1192340 -DE,DO,1,108,201912,20000 -DE,DO,1,110,201912,457438 -DE,DO,1,120,201912,1481989 -DE,DO,1,139,201912,532 -DE,DO,1,141,201912,235941 -DE,DO,1,143,201912,8964 -DE,DO,1,152,201912,47162 -DE,DO,1,221,201912,17444 -DE,DO,1,222,201912,26161 -DE,DO,1,259,201912,7231 -DE,DO,1,262,201912,36326 -DE,DO,1,263,201912,66 -DE,DO,1,265,201912,151223 -DE,DO,1,266,201912,82484 -DE,DO,1,271,201912,25246 -DE,DO,1,273,201912,165083 -DE,DO,1,279,201912,125829 -DE,DO,1,282,201912,915 -DE,DO,1,321,201912,598 -DE,DO,1,325,201912,3455572 -DE,DO,1,329,201912,150 -DE,DO,2,011,201912,10371 -DE,DO,2,012,201912,72095 -DE,DO,2,014,201912,3454 -DE,DO,2,030,201912,1339 -DE,DO,2,089,201912,726 -DE,DO,2,101,201912,649701 -DE,DO,2,102,201912,329391 -DE,DO,2,103,201912,282693 -DE,DO,2,104,201912,42092 -DE,DO,2,105,201912,2555662 -DE,DO,2,106,201912,140345 -DE,DO,2,107,201912,60704 -DE,DO,2,108,201912,515172 -DE,DO,2,109,201912,14862 -DE,DO,2,110,201912,807345 -DE,DO,2,120,201912,53335 -DE,DO,2,132,201912,1408 -DE,DO,2,139,201912,575913 -DE,DO,2,141,201912,256925 -DE,DO,2,143,201912,68010 -DE,DO,2,151,201912,196568 -DE,DO,2,152,201912,30899 -DE,DO,2,162,201912,4668 -DE,DO,2,171,201912,131117 -DE,DO,2,172,201912,342209 -DE,DO,2,192,201912,90050 -DE,DO,2,201,201912,406187 -DE,DO,2,202,201912,77349 -DE,DO,2,203,201912,55386 -DE,DO,2,204,201912,528007 -DE,DO,2,205,201912,303701 -DE,DO,2,211,201912,120 -DE,DO,2,212,201912,519575 -DE,DO,2,221,201912,80739 -DE,DO,2,222,201912,651819 -DE,DO,2,231,201912,16817 -DE,DO,2,232,201912,1049 -DE,DO,2,234,201912,62761 -DE,DO,2,235,201912,1570 -DE,DO,2,236,201912,1402 -DE,DO,2,239,201912,63153 -DE,DO,2,23I,201912,8057 -DE,DO,2,241,201912,958 -DE,DO,2,242,201912,11836 -DE,DO,2,244,201912,244234 -DE,DO,2,251,201912,8289 -DE,DO,2,257,201912,56666 -DE,DO,2,259,201912,527900 -DE,DO,2,261,201912,28046 -DE,DO,2,262,201912,62556 -DE,DO,2,263,201912,83108 -DE,DO,2,264,201912,19151 -DE,DO,2,265,201912,729259 -DE,DO,2,266,201912,109991 -DE,DO,2,267,201912,28238 -DE,DO,2,268,201912,2271 -DE,DO,2,271,201912,291704 -DE,DO,2,272,201912,44478 -DE,DO,2,273,201912,48627 -DE,DO,2,274,201912,155965 -DE,DO,2,275,201912,13005 -DE,DO,2,279,201912,178995 -DE,DO,2,281,201912,1135978 -DE,DO,2,282,201912,1391409 -DE,DO,2,284,201912,25928 -DE,DO,2,289,201912,3129663 -DE,DO,2,291,201912,2102397 -DE,DO,2,293,201912,141247 -DE,DO,2,309,201912,3524 -DE,DO,2,310,201912,95801 -DE,DO,2,321,201912,172691 -DE,DO,2,322,201912,2495 -DE,DO,2,323,201912,20321 -DE,DO,2,324,201912,10952 -DE,DO,2,325,201912,1074026 -DE,DO,2,329,201912,77356 -DE,DZ,1,012,201912,104830 -DE,DZ,1,061,201912,6359661 -DE,DZ,1,108,201912,1034206 -DE,DZ,1,120,201912,128 -DE,DZ,1,192,201912,17143338 -DE,DZ,1,222,201912,153 -DE,DZ,1,263,201912,74 -DE,DZ,2,089,201912,250516 -DE,DZ,2,103,201912,213895 -DE,DZ,2,105,201912,2055346 -DE,DZ,2,106,201912,695662 -DE,DZ,2,108,201912,2094704 -DE,DZ,2,109,201912,191293 -DE,DZ,2,132,201912,13100 -DE,DZ,2,139,201912,846260 -DE,DZ,2,141,201912,14289 -DE,DZ,2,143,201912,1335 -DE,DZ,2,151,201912,6885 -DE,DZ,2,161,201912,1704524 -DE,DZ,2,162,201912,4830 -DE,DZ,2,171,201912,1483244 -DE,DZ,2,172,201912,352948 -DE,DZ,2,192,201912,238640 -DE,DZ,2,201,201912,4704977 -DE,DZ,2,202,201912,591022 -DE,DZ,2,203,201912,358369 -DE,DZ,2,204,201912,1219377 -DE,DZ,2,205,201912,2378510 -DE,DZ,2,20S,201912,56611 -DE,DZ,2,211,201912,173045 -DE,DZ,2,212,201912,14667623 -DE,DZ,2,221,201912,509260 -DE,DZ,2,222,201912,1657462 -DE,DZ,2,231,201912,349616 -DE,DZ,2,232,201912,259785 -DE,DZ,2,233,201912,41000 -DE,DZ,2,234,201912,74726 -DE,DZ,2,239,201912,87242 -DE,DZ,2,241,201912,75879 -DE,DZ,2,242,201912,254813 -DE,DZ,2,243,201912,651003 -DE,DZ,2,244,201912,903230 -DE,DZ,2,251,201912,150756 -DE,DZ,2,252,201912,116285 -DE,DZ,2,253,201912,1107 -DE,DZ,2,257,201912,1045752 -DE,DZ,2,259,201912,484071 -DE,DZ,2,261,201912,265385 -DE,DZ,2,262,201912,1285810 -DE,DZ,2,263,201912,1069417 -DE,DZ,2,264,201912,130376 -DE,DZ,2,265,201912,9877365 -DE,DZ,2,266,201912,1744857 -DE,DZ,2,267,201912,824186 -DE,DZ,2,271,201912,2371453 -DE,DZ,2,272,201912,32291 -DE,DZ,2,273,201912,339512 -DE,DZ,2,274,201912,182581 -DE,DZ,2,275,201912,295812 -DE,DZ,2,279,201912,1495472 -DE,DZ,2,281,201912,8596595 -DE,DZ,2,282,201912,8634179 -DE,DZ,2,283,201912,563019 -DE,DZ,2,284,201912,3430395 -DE,DZ,2,289,201912,11427876 -DE,DZ,2,291,201912,32316112 -DE,DZ,2,292,201912,42839 -DE,DZ,2,293,201912,1489877 -DE,DZ,2,302,201912,75497 -DE,DZ,2,303,201912,17164 -DE,DZ,2,309,201912,278813 -DE,DZ,2,310,201912,38376 -DE,DZ,2,321,201912,3711 -DE,DZ,2,325,201912,3285320 -DE,DZ,2,329,201912,148097 -DE,EC,1,011,201912,540140 -DE,EC,1,012,201912,9672325 -DE,EC,1,013,201912,22980 -DE,EC,1,023,201912,9746 -DE,EC,1,102,201912,2971442 -DE,EC,1,103,201912,659662 -DE,EC,1,104,201912,4141 -DE,EC,1,106,201912,235 -DE,EC,1,108,201912,3986661 -DE,EC,1,110,201912,708 -DE,EC,1,120,201912,320169 -DE,EC,1,141,201912,266790 -DE,EC,1,143,201912,28092 -DE,EC,1,161,201912,108953 -DE,EC,1,162,201912,192799 -DE,EC,1,204,201912,523 -DE,EC,1,211,201912,3 -DE,EC,1,212,201912,26 -DE,EC,1,221,201912,42549 -DE,EC,1,222,201912,2283 -DE,EC,1,259,201912,261 -DE,EC,1,279,201912,87738 -DE,EC,1,282,201912,2209 -DE,EC,1,321,201912,209 -DE,EC,1,325,201912,1384 -DE,EC,1,329,201912,509 -DE,EC,2,012,201912,160349 -DE,EC,2,013,201912,60 -DE,EC,2,089,201912,7 -DE,EC,2,103,201912,88865 -DE,EC,2,106,201912,59494 -DE,EC,2,108,201912,336870 -DE,EC,2,110,201912,162632 -DE,EC,2,131,201912,531 -DE,EC,2,139,201912,126631 -DE,EC,2,141,201912,130939 -DE,EC,2,142,201912,2666 -DE,EC,2,143,201912,12241 -DE,EC,2,151,201912,15894 -DE,EC,2,152,201912,77553 -DE,EC,2,162,201912,14324 -DE,EC,2,171,201912,391040 -DE,EC,2,172,201912,99879 -DE,EC,2,192,201912,243878 -DE,EC,2,201,201912,1456768 -DE,EC,2,202,201912,616570 -DE,EC,2,203,201912,315878 -DE,EC,2,204,201912,367045 -DE,EC,2,205,201912,1053132 -DE,EC,2,20S,201912,193693 -DE,EC,2,211,201912,192312 -DE,EC,2,212,201912,5640588 -DE,EC,2,221,201912,242331 -DE,EC,2,222,201912,601545 -DE,EC,2,231,201912,43871 -DE,EC,2,232,201912,21141 -DE,EC,2,234,201912,23865 -DE,EC,2,235,201912,62870 -DE,EC,2,239,201912,76161 -DE,EC,2,241,201912,3240924 -DE,EC,2,242,201912,4103 -DE,EC,2,243,201912,68813 -DE,EC,2,244,201912,66795 -DE,EC,2,251,201912,21320 -DE,EC,2,257,201912,258925 -DE,EC,2,259,201912,160231 -DE,EC,2,261,201912,27798 -DE,EC,2,262,201912,164079 -DE,EC,2,263,201912,176514 -DE,EC,2,264,201912,4303 -DE,EC,2,265,201912,1229068 -DE,EC,2,266,201912,298872 -DE,EC,2,267,201912,523844 -DE,EC,2,271,201912,436557 -DE,EC,2,272,201912,92440 -DE,EC,2,273,201912,116058 -DE,EC,2,274,201912,117072 -DE,EC,2,275,201912,32747 -DE,EC,2,279,201912,283380 -DE,EC,2,281,201912,938132 -DE,EC,2,282,201912,1494390 -DE,EC,2,283,201912,89685 -DE,EC,2,284,201912,17020 -DE,EC,2,289,201912,2094199 -DE,EC,2,291,201912,1837312 -DE,EC,2,293,201912,157310 -DE,EC,2,303,201912,19709 -DE,EC,2,309,201912,59421 -DE,EC,2,310,201912,68508 -DE,EC,2,321,201912,1849 -DE,EC,2,324,201912,531 -DE,EC,2,325,201912,2339054 -DE,EC,2,329,201912,369242 -DE,EE,1,011,201912,903104 -DE,EE,1,012,201912,62594 -DE,EE,1,01M,201912,183 -DE,EE,1,022,201912,368130 -DE,EE,1,030,201912,5191 -DE,EE,1,089,201912,519057 -DE,EE,1,101,201912,171690 -DE,EE,1,102,201912,214432 -DE,EE,1,103,201912,259522 -DE,EE,1,104,201912,209420 -DE,EE,1,105,201912,1438 -DE,EE,1,108,201912,94746 -DE,EE,1,10M,201912,49589 -DE,EE,1,110,201912,266293 -DE,EE,1,132,201912,212462 -DE,EE,1,139,201912,1594828 -DE,EE,1,13M,201912,6398 -DE,EE,1,141,201912,471627 -DE,EE,1,143,201912,7914 -DE,EE,1,14M,201912,31757 -DE,EE,1,151,201912,4097 -DE,EE,1,152,201912,13421 -DE,EE,1,161,201912,883993 -DE,EE,1,162,201912,6397470 -DE,EE,1,16M,201912,8 -DE,EE,1,171,201912,1809045 -DE,EE,1,172,201912,354713 -DE,EE,1,17M,201912,60479 -DE,EE,1,201,201912,1908222 -DE,EE,1,203,201912,196820 -DE,EE,1,204,201912,8877 -DE,EE,1,205,201912,434043 -DE,EE,1,20M,201912,50904 -DE,EE,1,212,201912,1072249 -DE,EE,1,221,201912,313740 -DE,EE,1,222,201912,411286 -DE,EE,1,231,201912,125812 -DE,EE,1,234,201912,244649 -DE,EE,1,236,201912,191486 -DE,EE,1,239,201912,3236 -DE,EE,1,23M,201912,18303 -DE,EE,1,241,201912,80823 -DE,EE,1,242,201912,1623 -DE,EE,1,243,201912,813 -DE,EE,1,244,201912,476654 -DE,EE,1,251,201912,259120 -DE,EE,1,252,201912,158687 -DE,EE,1,253,201912,162317 -DE,EE,1,257,201912,64478 -DE,EE,1,259,201912,896591 -DE,EE,1,25M,201912,47543 -DE,EE,1,261,201912,22715 -DE,EE,1,262,201912,78164 -DE,EE,1,263,201912,6530371 -DE,EE,1,264,201912,158222 -DE,EE,1,265,201912,375776 -DE,EE,1,266,201912,340986 -DE,EE,1,267,201912,10204 -DE,EE,1,271,201912,1553739 -DE,EE,1,272,201912,4160 -DE,EE,1,273,201912,164421 -DE,EE,1,274,201912,298693 -DE,EE,1,275,201912,191388 -DE,EE,1,279,201912,541845 -DE,EE,1,281,201912,1286906 -DE,EE,1,282,201912,1895749 -DE,EE,1,283,201912,1755588 -DE,EE,1,284,201912,1417448 -DE,EE,1,289,201912,370210 -DE,EE,1,291,201912,2148255 -DE,EE,1,292,201912,290361 -DE,EE,1,293,201912,2031318 -DE,EE,1,301,201912,3086 -DE,EE,1,303,201912,8832837 -DE,EE,1,309,201912,110576 -DE,EE,1,30M,201912,6548 -DE,EE,1,310,201912,2911530 -DE,EE,1,321,201912,39606 -DE,EE,1,323,201912,96348 -DE,EE,1,325,201912,2281701 -DE,EE,1,329,201912,126222 -DE,EE,1,32M,201912,4 -DE,EE,2,011,201912,20829 -DE,EE,2,012,201912,207462 -DE,EE,2,014,201912,6030 -DE,EE,2,01M,201912,7280 -DE,EE,2,022,201912,4500 -DE,EE,2,030,201912,51026 -DE,EE,2,081,201912,20567 -DE,EE,2,089,201912,28217 -DE,EE,2,101,201912,1289341 -DE,EE,2,102,201912,129285 -DE,EE,2,103,201912,455245 -DE,EE,2,104,201912,144698 -DE,EE,2,105,201912,484665 -DE,EE,2,106,201912,393617 -DE,EE,2,107,201912,352312 -DE,EE,2,108,201912,2159702 -DE,EE,2,109,201912,550981 -DE,EE,2,10M,201912,209481 -DE,EE,2,110,201912,1368365 -DE,EE,2,120,201912,142352 -DE,EE,2,131,201912,191639 -DE,EE,2,132,201912,156674 -DE,EE,2,139,201912,1052597 -DE,EE,2,13M,201912,29083 -DE,EE,2,141,201912,2549508 -DE,EE,2,142,201912,150 -DE,EE,2,143,201912,520359 -DE,EE,2,14M,201912,148260 -DE,EE,2,151,201912,364663 -DE,EE,2,152,201912,1006141 -DE,EE,2,161,201912,411480 -DE,EE,2,162,201912,985179 -DE,EE,2,16M,201912,1657 -DE,EE,2,171,201912,745452 -DE,EE,2,172,201912,615990 -DE,EE,2,17M,201912,85637 -DE,EE,2,17S,201912,75 -DE,EE,2,181,201912,9681 -DE,EE,2,192,201912,602553 -DE,EE,2,201,201912,4438321 -DE,EE,2,202,201912,95202 -DE,EE,2,203,201912,705532 -DE,EE,2,204,201912,2644323 -DE,EE,2,205,201912,1413148 -DE,EE,2,206,201912,96800 -DE,EE,2,20M,201912,114222 -DE,EE,2,20S,201912,235880 -DE,EE,2,211,201912,117942 -DE,EE,2,212,201912,2859616 -DE,EE,2,221,201912,885561 -DE,EE,2,222,201912,3565804 -DE,EE,2,231,201912,644752 -DE,EE,2,232,201912,29176 -DE,EE,2,233,201912,365868 -DE,EE,2,234,201912,437376 -DE,EE,2,235,201912,6486 -DE,EE,2,236,201912,104678 -DE,EE,2,237,201912,51299 -DE,EE,2,239,201912,394062 -DE,EE,2,23M,201912,162986 -DE,EE,2,241,201912,1714742 -DE,EE,2,242,201912,211626 -DE,EE,2,243,201912,545803 -DE,EE,2,244,201912,1527290 -DE,EE,2,245,201912,4542 -DE,EE,2,251,201912,432469 -DE,EE,2,252,201912,75170 -DE,EE,2,253,201912,94122 -DE,EE,2,254,201912,158181 -DE,EE,2,257,201912,1586727 -DE,EE,2,259,201912,1737451 -DE,EE,2,25M,201912,139546 -DE,EE,2,261,201912,2790055 -DE,EE,2,262,201912,2727418 -DE,EE,2,263,201912,5368284 -DE,EE,2,264,201912,756288 -DE,EE,2,265,201912,3716812 -DE,EE,2,266,201912,452124 -DE,EE,2,267,201912,851378 -DE,EE,2,268,201912,1198 -DE,EE,2,271,201912,2299370 -DE,EE,2,272,201912,283970 -DE,EE,2,273,201912,2535141 -DE,EE,2,274,201912,633963 -DE,EE,2,275,201912,1274152 -DE,EE,2,279,201912,4309112 -DE,EE,2,281,201912,4411357 -DE,EE,2,282,201912,6984024 -DE,EE,2,283,201912,1666916 -DE,EE,2,284,201912,1920139 -DE,EE,2,289,201912,3825748 -DE,EE,2,291,201912,14837103 -DE,EE,2,292,201912,1261518 -DE,EE,2,293,201912,1024379 -DE,EE,2,301,201912,38193 -DE,EE,2,302,201912,30441 -DE,EE,2,303,201912,3211040 -DE,EE,2,309,201912,175659 -DE,EE,2,30M,201912,2314 -DE,EE,2,310,201912,777946 -DE,EE,2,321,201912,768558 -DE,EE,2,322,201912,478197 -DE,EE,2,323,201912,153385 -DE,EE,2,324,201912,515917 -DE,EE,2,325,201912,2340100 -DE,EE,2,329,201912,522563 -DE,EE,2,32M,201912,11729 -DE,EE,2,32S,201912,962 -DE,EG,1,011,201912,6987393 -DE,EG,1,012,201912,8618158 -DE,EG,1,030,201912,37984 -DE,EG,1,089,201912,15500 -DE,EG,1,101,201912,1451779 -DE,EG,1,103,201912,2384624 -DE,EG,1,104,201912,8929 -DE,EG,1,106,201912,361 -DE,EG,1,107,201912,10715 -DE,EG,1,108,201912,405498 -DE,EG,1,120,201912,320 -DE,EG,1,131,201912,377488 -DE,EG,1,132,201912,35325 -DE,EG,1,139,201912,5302913 -DE,EG,1,141,201912,8936510 -DE,EG,1,143,201912,2190401 -DE,EG,1,152,201912,6524 -DE,EG,1,162,201912,6564 -DE,EG,1,172,201912,89319 -DE,EG,1,201,201912,168243 -DE,EG,1,204,201912,1505 -DE,EG,1,205,201912,598766 -DE,EG,1,206,201912,58070 -DE,EG,1,211,201912,346 -DE,EG,1,212,201912,525660 -DE,EG,1,221,201912,353881 -DE,EG,1,222,201912,521331 -DE,EG,1,231,201912,308050 -DE,EG,1,234,201912,688124 -DE,EG,1,235,201912,8 -DE,EG,1,237,201912,39647 -DE,EG,1,241,201912,795131 -DE,EG,1,244,201912,2090427 -DE,EG,1,257,201912,321411 -DE,EG,1,259,201912,36813 -DE,EG,1,261,201912,925 -DE,EG,1,262,201912,3258 -DE,EG,1,263,201912,8681 -DE,EG,1,264,201912,671 -DE,EG,1,265,201912,116905 -DE,EG,1,266,201912,4894 -DE,EG,1,267,201912,7967 -DE,EG,1,271,201912,13345 -DE,EG,1,273,201912,32541 -DE,EG,1,274,201912,6881 -DE,EG,1,279,201912,2529 -DE,EG,1,281,201912,49420 -DE,EG,1,282,201912,431763 -DE,EG,1,289,201912,179156 -DE,EG,1,293,201912,1155599 -DE,EG,1,310,201912,181038 -DE,EG,1,321,201912,10324 -DE,EG,1,322,201912,738 -DE,EG,1,324,201912,49464 -DE,EG,1,325,201912,154076 -DE,EG,1,329,201912,108066 -DE,EG,2,011,201912,299077 -DE,EG,2,012,201912,239858 -DE,EG,2,014,201912,61945 -DE,EG,2,081,201912,89705 -DE,EG,2,089,201912,45462 -DE,EG,2,101,201912,290295 -DE,EG,2,102,201912,160 -DE,EG,2,103,201912,215696 -DE,EG,2,104,201912,177900 -DE,EG,2,105,201912,3423999 -DE,EG,2,106,201912,547654 -DE,EG,2,107,201912,95352 -DE,EG,2,108,201912,4597432 -DE,EG,2,109,201912,534736 -DE,EG,2,110,201912,330144 -DE,EG,2,120,201912,641905 -DE,EG,2,131,201912,34369 -DE,EG,2,132,201912,221601 -DE,EG,2,139,201912,1534882 -DE,EG,2,141,201912,643391 -DE,EG,2,143,201912,212738 -DE,EG,2,151,201912,106987 -DE,EG,2,152,201912,171689 -DE,EG,2,161,201912,105923 -DE,EG,2,162,201912,497032 -DE,EG,2,171,201912,3989024 -DE,EG,2,172,201912,899115 -DE,EG,2,181,201912,39108 -DE,EG,2,192,201912,808681 -DE,EG,2,201,201912,16316905 -DE,EG,2,202,201912,329845 -DE,EG,2,203,201912,742163 -DE,EG,2,204,201912,1626964 -DE,EG,2,205,201912,8112977 -DE,EG,2,206,201912,1241305 -DE,EG,2,20S,201912,1532777 -DE,EG,2,211,201912,1374966 -DE,EG,2,212,201912,16571681 -DE,EG,2,221,201912,1836753 -DE,EG,2,222,201912,7267816 -DE,EG,2,231,201912,375186 -DE,EG,2,232,201912,332539 -DE,EG,2,234,201912,431937 -DE,EG,2,235,201912,57316 -DE,EG,2,236,201912,111695 -DE,EG,2,237,201912,13098 -DE,EG,2,239,201912,500117 -DE,EG,2,23I,201912,649 -DE,EG,2,241,201912,1068941 -DE,EG,2,242,201912,697494 -DE,EG,2,243,201912,274157 -DE,EG,2,244,201912,1862917 -DE,EG,2,245,201912,1527 -DE,EG,2,251,201912,843479 -DE,EG,2,252,201912,124535 -DE,EG,2,253,201912,239188 -DE,EG,2,257,201912,1744099 -DE,EG,2,259,201912,3072926 -DE,EG,2,25I,201912,466 -DE,EG,2,261,201912,805062 -DE,EG,2,262,201912,2025634 -DE,EG,2,263,201912,2128805 -DE,EG,2,264,201912,649278 -DE,EG,2,265,201912,4778686 -DE,EG,2,266,201912,2015819 -DE,EG,2,267,201912,1833888 -DE,EG,2,268,201912,3206 -DE,EG,2,271,201912,12669535 -DE,EG,2,272,201912,1900637 -DE,EG,2,273,201912,3060725 -DE,EG,2,274,201912,1996430 -DE,EG,2,275,201912,1688003 -DE,EG,2,279,201912,2866449 -DE,EG,2,281,201912,27997362 -DE,EG,2,282,201912,32977033 -DE,EG,2,283,201912,1558930 -DE,EG,2,284,201912,4816309 -DE,EG,2,289,201912,18651689 -DE,EG,2,291,201912,47847150 -DE,EG,2,292,201912,442421 -DE,EG,2,293,201912,5543551 -DE,EG,2,301,201912,2859956 -DE,EG,2,302,201912,19910 -DE,EG,2,303,201912,209154 -DE,EG,2,309,201912,184475 -DE,EG,2,310,201912,757844 -DE,EG,2,321,201912,35509 -DE,EG,2,323,201912,28159 -DE,EG,2,324,201912,33490 -DE,EG,2,325,201912,15527915 -DE,EG,2,329,201912,453676 -DE,ER,1,110,201912,13314 -DE,ER,2,222,201912,446 -DE,ER,2,259,201912,2468 -DE,ER,2,261,201912,15786 -DE,ER,2,265,201912,4111 -DE,ER,2,271,201912,4296 -DE,ER,2,273,201912,5683 -DE,ER,2,279,201912,3885 -DE,ER,2,281,201912,37030 -DE,ER,2,282,201912,6190 -DE,ER,2,329,201912,7450 -DE,ES,1,011,201912,174485193 -DE,ES,1,012,201912,180826251 -DE,ES,1,013,201912,511226 -DE,ES,1,014,201912,2698882 -DE,ES,1,01M,201912,103304 -DE,ES,1,022,201912,31949 -DE,ES,1,023,201912,69138 -DE,ES,1,030,201912,1783554 -DE,ES,1,051,201912,191452 -DE,ES,1,081,201912,497795 -DE,ES,1,089,201912,1661460 -DE,ES,1,101,201912,28284634 -DE,ES,1,102,201912,5920149 -DE,ES,1,103,201912,36527526 -DE,ES,1,104,201912,5274774 -DE,ES,1,105,201912,2861894 -DE,ES,1,106,201912,3788247 -DE,ES,1,107,201912,2312420 -DE,ES,1,108,201912,18354113 -DE,ES,1,109,201912,2120892 -DE,ES,1,10M,201912,7959659 -DE,ES,1,110,201912,38788128 -DE,ES,1,120,201912,3414458 -DE,ES,1,131,201912,1045390 -DE,ES,1,132,201912,3481912 -DE,ES,1,139,201912,6522203 -DE,ES,1,13M,201912,256068 -DE,ES,1,141,201912,51214543 -DE,ES,1,142,201912,19060 -DE,ES,1,143,201912,10067296 -DE,ES,1,14M,201912,3578693 -DE,ES,1,151,201912,5300129 -DE,ES,1,152,201912,23227060 -DE,ES,1,161,201912,74453 -DE,ES,1,162,201912,3049506 -DE,ES,1,16M,201912,73066 -DE,ES,1,171,201912,12208130 -DE,ES,1,172,201912,5139988 -DE,ES,1,17M,201912,1718882 -DE,ES,1,181,201912,11603 -DE,ES,1,192,201912,4174023 -DE,ES,1,201,201912,83888617 -DE,ES,1,202,201912,10299486 -DE,ES,1,203,201912,3627644 -DE,ES,1,204,201912,39740195 -DE,ES,1,205,201912,14543090 -DE,ES,1,206,201912,1693739 -DE,ES,1,20M,201912,3786568 -DE,ES,1,211,201912,8553065 -DE,ES,1,212,201912,124652385 -DE,ES,1,221,201912,22351883 -DE,ES,1,222,201912,28377961 -DE,ES,1,231,201912,6516773 -DE,ES,1,232,201912,763070 -DE,ES,1,233,201912,4342979 -DE,ES,1,234,201912,1082647 -DE,ES,1,235,201912,71781 -DE,ES,1,236,201912,412234 -DE,ES,1,237,201912,1557750 -DE,ES,1,239,201912,5496255 -DE,ES,1,23M,201912,2619161 -DE,ES,1,241,201912,31540249 -DE,ES,1,242,201912,6442546 -DE,ES,1,243,201912,14494563 -DE,ES,1,244,201912,30474081 -DE,ES,1,245,201912,440796 -DE,ES,1,251,201912,4495230 -DE,ES,1,252,201912,1846891 -DE,ES,1,254,201912,141883 -DE,ES,1,257,201912,14428043 -DE,ES,1,259,201912,29363368 -DE,ES,1,25M,201912,1349428 -DE,ES,1,261,201912,4754847 -DE,ES,1,262,201912,10447821 -DE,ES,1,263,201912,15719612 -DE,ES,1,264,201912,5101771 -DE,ES,1,265,201912,19890677 -DE,ES,1,266,201912,3621957 -DE,ES,1,267,201912,1536677 -DE,ES,1,268,201912,33215 -DE,ES,1,271,201912,23588116 -DE,ES,1,272,201912,7875010 -DE,ES,1,273,201912,8282833 -DE,ES,1,274,201912,29120556 -DE,ES,1,275,201912,25060761 -DE,ES,1,279,201912,14880893 -DE,ES,1,281,201912,55784149 -DE,ES,1,282,201912,26408923 -DE,ES,1,283,201912,1519154 -DE,ES,1,284,201912,10905861 -DE,ES,1,289,201912,13264515 -DE,ES,1,291,201912,566563164 -DE,ES,1,292,201912,3407453 -DE,ES,1,293,201912,108275474 -DE,ES,1,301,201912,85156 -DE,ES,1,302,201912,11372580 -DE,ES,1,303,201912,36512581 -DE,ES,1,309,201912,3326046 -DE,ES,1,30M,201912,4479 -DE,ES,1,310,201912,8205719 -DE,ES,1,321,201912,1691752 -DE,ES,1,322,201912,513060 -DE,ES,1,323,201912,3873797 -DE,ES,1,324,201912,5834025 -DE,ES,1,325,201912,6472199 -DE,ES,1,329,201912,3896259 -DE,ES,1,32M,201912,16249 -DE,ES,2,011,201912,1973719 -DE,ES,2,012,201912,3119821 -DE,ES,2,013,201912,1134472 -DE,ES,2,014,201912,1798329 -DE,ES,2,01M,201912,193910 -DE,ES,2,021,201912,214 -DE,ES,2,022,201912,6671 -DE,ES,2,023,201912,83265 -DE,ES,2,030,201912,635613 -DE,ES,2,072,201912,4202 -DE,ES,2,081,201912,520584 -DE,ES,2,089,201912,1557990 -DE,ES,2,101,201912,30070541 -DE,ES,2,102,201912,6199258 -DE,ES,2,103,201912,11144815 -DE,ES,2,104,201912,9671419 -DE,ES,2,105,201912,29272430 -DE,ES,2,106,201912,8860199 -DE,ES,2,107,201912,13861873 -DE,ES,2,108,201912,44210562 -DE,ES,2,109,201912,5660641 -DE,ES,2,10M,201912,3638915 -DE,ES,2,110,201912,15484903 -DE,ES,2,120,201912,25476703 -DE,ES,2,131,201912,800591 -DE,ES,2,132,201912,1706352 -DE,ES,2,139,201912,21550195 -DE,ES,2,13M,201912,160642 -DE,ES,2,141,201912,54316724 -DE,ES,2,142,201912,82634 -DE,ES,2,143,201912,12498032 -DE,ES,2,14M,201912,1867689 -DE,ES,2,151,201912,6817549 -DE,ES,2,152,201912,20471053 -DE,ES,2,161,201912,1203699 -DE,ES,2,162,201912,8628386 -DE,ES,2,16M,201912,7420 -DE,ES,2,171,201912,24202225 -DE,ES,2,172,201912,19357927 -DE,ES,2,17M,201912,1383579 -DE,ES,2,17S,201912,1988 -DE,ES,2,181,201912,203057 -DE,ES,2,191,201912,27582 -DE,ES,2,192,201912,3950315 -DE,ES,2,201,201912,151050355 -DE,ES,2,202,201912,10597699 -DE,ES,2,203,201912,15908393 -DE,ES,2,204,201912,34605896 -DE,ES,2,205,201912,64047354 -DE,ES,2,206,201912,1150111 -DE,ES,2,20M,201912,1655536 -DE,ES,2,20S,201912,1122590 -DE,ES,2,211,201912,23169631 -DE,ES,2,212,201912,185666513 -DE,ES,2,221,201912,34226968 -DE,ES,2,222,201912,70755665 -DE,ES,2,231,201912,13094677 -DE,ES,2,232,201912,1036568 -DE,ES,2,233,201912,1164081 -DE,ES,2,234,201912,3632743 -DE,ES,2,235,201912,63844 -DE,ES,2,236,201912,799874 -DE,ES,2,237,201912,50772 -DE,ES,2,239,201912,9698243 -DE,ES,2,23M,201912,761291 -DE,ES,2,241,201912,60546871 -DE,ES,2,242,201912,4682524 -DE,ES,2,243,201912,5976782 -DE,ES,2,244,201912,31211469 -DE,ES,2,245,201912,158907 -DE,ES,2,251,201912,12007014 -DE,ES,2,252,201912,5105291 -DE,ES,2,253,201912,393701 -DE,ES,2,254,201912,1379695 -DE,ES,2,257,201912,34096464 -DE,ES,2,259,201912,36265721 -DE,ES,2,25M,201912,2018843 -DE,ES,2,261,201912,28342522 -DE,ES,2,262,201912,64382777 -DE,ES,2,263,201912,43157149 -DE,ES,2,264,201912,14535017 -DE,ES,2,265,201912,82584483 -DE,ES,2,266,201912,21046245 -DE,ES,2,267,201912,19415205 -DE,ES,2,268,201912,395754 -DE,ES,2,271,201912,68212154 -DE,ES,2,272,201912,13064773 -DE,ES,2,273,201912,21549070 -DE,ES,2,274,201912,11922535 -DE,ES,2,275,201912,40035629 -DE,ES,2,279,201912,52750649 -DE,ES,2,281,201912,188938468 -DE,ES,2,282,201912,150200745 -DE,ES,2,283,201912,24019082 -DE,ES,2,284,201912,38357997 -DE,ES,2,289,201912,76257235 -DE,ES,2,291,201912,412004108 -DE,ES,2,292,201912,13406668 -DE,ES,2,293,201912,132953415 -DE,ES,2,301,201912,533901 -DE,ES,2,302,201912,5462517 -DE,ES,2,303,201912,52525837 -DE,ES,2,309,201912,16640472 -DE,ES,2,30M,201912,86891 -DE,ES,2,310,201912,25864987 -DE,ES,2,321,201912,10404165 -DE,ES,2,322,201912,2435573 -DE,ES,2,323,201912,3011858 -DE,ES,2,324,201912,13745866 -DE,ES,2,325,201912,52500052 -DE,ES,2,329,201912,10181091 -DE,ES,2,32M,201912,131974 -DE,ES,2,32S,201912,7957 -DE,ET,1,011,201912,978385 -DE,ET,1,012,201912,7625660 -DE,ET,1,013,201912,207395 -DE,ET,1,014,201912,33 -DE,ET,1,106,201912,1496 -DE,ET,1,107,201912,5618 -DE,ET,1,108,201912,36534 -DE,ET,1,139,201912,805 -DE,ET,1,141,201912,534347 -DE,ET,1,143,201912,19138 -DE,ET,1,151,201912,937 -DE,ET,1,152,201912,1327 -DE,ET,1,205,201912,2 -DE,ET,1,211,201912,173 -DE,ET,1,234,201912,1569 -DE,ET,1,265,201912,607 -DE,ET,1,271,201912,716 -DE,ET,1,281,201912,2405 -DE,ET,1,321,201912,3465 -DE,ET,2,013,201912,1130 -DE,ET,2,105,201912,75828 -DE,ET,2,106,201912,38016 -DE,ET,2,108,201912,234887 -DE,ET,2,131,201912,843 -DE,ET,2,139,201912,125928 -DE,ET,2,141,201912,50153 -DE,ET,2,143,201912,15833 -DE,ET,2,151,201912,37866 -DE,ET,2,152,201912,70751 -DE,ET,2,162,201912,17489 -DE,ET,2,171,201912,487977 -DE,ET,2,172,201912,154173 -DE,ET,2,192,201912,284856 -DE,ET,2,201,201912,431560 -DE,ET,2,202,201912,16590 -DE,ET,2,203,201912,28183 -DE,ET,2,204,201912,29667 -DE,ET,2,205,201912,313696 -DE,ET,2,211,201912,6587 -DE,ET,2,212,201912,460934 -DE,ET,2,221,201912,38229 -DE,ET,2,222,201912,255044 -DE,ET,2,231,201912,8751 -DE,ET,2,239,201912,422659 -DE,ET,2,242,201912,12076 -DE,ET,2,243,201912,5180 -DE,ET,2,244,201912,22209 -DE,ET,2,251,201912,284607 -DE,ET,2,253,201912,95900 -DE,ET,2,257,201912,27570 -DE,ET,2,259,201912,166639 -DE,ET,2,261,201912,53847 -DE,ET,2,262,201912,168403 -DE,ET,2,263,201912,69745 -DE,ET,2,264,201912,4986 -DE,ET,2,265,201912,1718215 -DE,ET,2,266,201912,516556 -DE,ET,2,267,201912,379409 -DE,ET,2,271,201912,389900 -DE,ET,2,272,201912,2851 -DE,ET,2,273,201912,29366 -DE,ET,2,274,201912,101912 -DE,ET,2,275,201912,32894 -DE,ET,2,279,201912,206622 -DE,ET,2,281,201912,1098471 -DE,ET,2,282,201912,2507595 -DE,ET,2,283,201912,26172 -DE,ET,2,284,201912,44806 -DE,ET,2,289,201912,830326 -DE,ET,2,291,201912,3152113 -DE,ET,2,293,201912,45581 -DE,ET,2,303,201912,106998 -DE,ET,2,310,201912,60063 -DE,ET,2,321,201912,15121 -DE,ET,2,323,201912,22021 -DE,ET,2,325,201912,39211 -DE,ET,2,329,201912,481508 -DE,FI,1,011,201912,3657555 -DE,FI,1,012,201912,31589 -DE,FI,1,014,201912,55879 -DE,FI,1,022,201912,87003 -DE,FI,1,030,201912,1573 -DE,FI,1,081,201912,8922 -DE,FI,1,089,201912,135290 -DE,FI,1,101,201912,103617 -DE,FI,1,102,201912,340774 -DE,FI,1,103,201912,189699 -DE,FI,1,105,201912,522845 -DE,FI,1,106,201912,353601 -DE,FI,1,107,201912,678876 -DE,FI,1,108,201912,1059845 -DE,FI,1,109,201912,63736 -DE,FI,1,10M,201912,116184 -DE,FI,1,110,201912,1437405 -DE,FI,1,132,201912,39229 -DE,FI,1,139,201912,1709518 -DE,FI,1,13M,201912,18928 -DE,FI,1,141,201912,2501806 -DE,FI,1,143,201912,91264 -DE,FI,1,14M,201912,856581 -DE,FI,1,151,201912,70043 -DE,FI,1,152,201912,161686 -DE,FI,1,161,201912,5093256 -DE,FI,1,162,201912,4751967 -DE,FI,1,16M,201912,56 -DE,FI,1,171,201912,138861228 -DE,FI,1,172,201912,2278009 -DE,FI,1,17M,201912,6227517 -DE,FI,1,192,201912,24492575 -DE,FI,1,201,201912,32053090 -DE,FI,1,202,201912,36913 -DE,FI,1,203,201912,204899 -DE,FI,1,204,201912,162889 -DE,FI,1,205,201912,3112551 -DE,FI,1,20M,201912,329822 -DE,FI,1,211,201912,314820 -DE,FI,1,212,201912,1775265 -DE,FI,1,221,201912,4401859 -DE,FI,1,222,201912,5707079 -DE,FI,1,231,201912,2222350 -DE,FI,1,232,201912,1483 -DE,FI,1,234,201912,455729 -DE,FI,1,236,201912,168331 -DE,FI,1,239,201912,113136 -DE,FI,1,23M,201912,94337 -DE,FI,1,241,201912,87157234 -DE,FI,1,242,201912,2106593 -DE,FI,1,243,201912,5213703 -DE,FI,1,244,201912,32382150 -DE,FI,1,245,201912,82 -DE,FI,1,251,201912,1690739 -DE,FI,1,252,201912,51771 -DE,FI,1,253,201912,6541 -DE,FI,1,254,201912,292452 -DE,FI,1,257,201912,1530284 -DE,FI,1,259,201912,2911832 -DE,FI,1,25M,201912,232623 -DE,FI,1,261,201912,625916 -DE,FI,1,262,201912,594889 -DE,FI,1,263,201912,7630415 -DE,FI,1,264,201912,238809 -DE,FI,1,265,201912,4333573 -DE,FI,1,266,201912,5074011 -DE,FI,1,267,201912,950236 -DE,FI,1,271,201912,6933682 -DE,FI,1,272,201912,2387003 -DE,FI,1,273,201912,3584044 -DE,FI,1,274,201912,1529681 -DE,FI,1,275,201912,434178 -DE,FI,1,279,201912,8858086 -DE,FI,1,281,201912,5033792 -DE,FI,1,282,201912,9946994 -DE,FI,1,283,201912,18179822 -DE,FI,1,284,201912,3544015 -DE,FI,1,289,201912,10800409 -DE,FI,1,291,201912,72085464 -DE,FI,1,292,201912,1091757 -DE,FI,1,293,201912,4469268 -DE,FI,1,301,201912,456787 -DE,FI,1,302,201912,624842 -DE,FI,1,303,201912,959363 -DE,FI,1,309,201912,183553 -DE,FI,1,30M,201912,64087 -DE,FI,1,310,201912,1951300 -DE,FI,1,321,201912,13728 -DE,FI,1,322,201912,7535 -DE,FI,1,323,201912,133833 -DE,FI,1,324,201912,4590 -DE,FI,1,325,201912,6469222 -DE,FI,1,329,201912,296490 -DE,FI,1,32M,201912,1650 -DE,FI,2,011,201912,3011761 -DE,FI,2,012,201912,7704304 -DE,FI,2,013,201912,172690 -DE,FI,2,014,201912,358818 -DE,FI,2,01M,201912,6942 -DE,FI,2,022,201912,392878 -DE,FI,2,023,201912,385 -DE,FI,2,030,201912,3485 -DE,FI,2,071,201912,2244 -DE,FI,2,081,201912,300882 -DE,FI,2,089,201912,852591 -DE,FI,2,101,201912,8232473 -DE,FI,2,102,201912,1500389 -DE,FI,2,103,201912,4179712 -DE,FI,2,104,201912,5382983 -DE,FI,2,105,201912,7046242 -DE,FI,2,106,201912,1713184 -DE,FI,2,107,201912,4930563 -DE,FI,2,108,201912,9880356 -DE,FI,2,109,201912,1560029 -DE,FI,2,10M,201912,1042641 -DE,FI,2,110,201912,3102536 -DE,FI,2,120,201912,1348499 -DE,FI,2,131,201912,462696 -DE,FI,2,132,201912,481010 -DE,FI,2,139,201912,4538498 -DE,FI,2,13M,201912,89115 -DE,FI,2,141,201912,8082884 -DE,FI,2,142,201912,5701 -DE,FI,2,143,201912,2246992 -DE,FI,2,14M,201912,720323 -DE,FI,2,151,201912,737211 -DE,FI,2,152,201912,2529367 -DE,FI,2,161,201912,140441 -DE,FI,2,162,201912,3240112 -DE,FI,2,16M,201912,2430 -DE,FI,2,171,201912,2906044 -DE,FI,2,172,201912,3027245 -DE,FI,2,17M,201912,322798 -DE,FI,2,17S,201912,178515 -DE,FI,2,181,201912,31239 -DE,FI,2,192,201912,6768834 -DE,FI,2,201,201912,28195344 -DE,FI,2,202,201912,652087 -DE,FI,2,203,201912,2437849 -DE,FI,2,204,201912,6038250 -DE,FI,2,205,201912,11771880 -DE,FI,2,206,201912,888132 -DE,FI,2,20M,201912,384569 -DE,FI,2,20S,201912,600657 -DE,FI,2,211,201912,548142 -DE,FI,2,212,201912,24869417 -DE,FI,2,221,201912,6394612 -DE,FI,2,222,201912,15190851 -DE,FI,2,231,201912,3328626 -DE,FI,2,232,201912,430072 -DE,FI,2,233,201912,491944 -DE,FI,2,234,201912,692705 -DE,FI,2,235,201912,142230 -DE,FI,2,236,201912,375575 -DE,FI,2,237,201912,40427 -DE,FI,2,239,201912,1565758 -DE,FI,2,23M,201912,240390 -DE,FI,2,241,201912,7616650 -DE,FI,2,242,201912,5990445 -DE,FI,2,243,201912,1495000 -DE,FI,2,244,201912,21514283 -DE,FI,2,245,201912,552614 -DE,FI,2,251,201912,4702933 -DE,FI,2,252,201912,1134812 -DE,FI,2,253,201912,593615 -DE,FI,2,254,201912,337834 -DE,FI,2,257,201912,6591206 -DE,FI,2,259,201912,10334508 -DE,FI,2,25M,201912,565496 -DE,FI,2,261,201912,9320353 -DE,FI,2,262,201912,30143034 -DE,FI,2,263,201912,18979627 -DE,FI,2,264,201912,2961971 -DE,FI,2,265,201912,19800749 -DE,FI,2,266,201912,3929505 -DE,FI,2,267,201912,3683722 -DE,FI,2,268,201912,46490 -DE,FI,2,271,201912,20104153 -DE,FI,2,272,201912,2924547 -DE,FI,2,273,201912,8119681 -DE,FI,2,274,201912,4082254 -DE,FI,2,275,201912,3108926 -DE,FI,2,279,201912,12916451 -DE,FI,2,281,201912,52513791 -DE,FI,2,282,201912,34988883 -DE,FI,2,283,201912,3610577 -DE,FI,2,284,201912,9397158 -DE,FI,2,289,201912,25121663 -DE,FI,2,291,201912,90904395 -DE,FI,2,292,201912,4149173 -DE,FI,2,293,201912,25109120 -DE,FI,2,301,201912,643328 -DE,FI,2,302,201912,683630 -DE,FI,2,303,201912,1136324 -DE,FI,2,309,201912,1735217 -DE,FI,2,30M,201912,60246 -DE,FI,2,310,201912,8461970 -DE,FI,2,321,201912,338137 -DE,FI,2,322,201912,1158171 -DE,FI,2,323,201912,686674 -DE,FI,2,324,201912,1403903 -DE,FI,2,325,201912,12354890 -DE,FI,2,329,201912,1857706 -DE,FI,2,32M,201912,44298 -DE,FI,2,32S,201912,2394 -DE,FJ,1,141,201912,10235 -DE,FJ,1,321,201912,25601 -DE,FJ,2,259,201912,13907 -DE,FJ,2,265,201912,4627 -DE,FJ,2,271,201912,81 -DE,FJ,2,273,201912,1793 -DE,FJ,2,279,201912,250 -DE,FJ,2,281,201912,7336 -DE,FJ,2,282,201912,362794 -DE,FJ,2,289,201912,24107 -DE,FJ,2,325,201912,4784 -DE,FK,2,281,201912,6341 -DE,FO,1,030,201912,6508 -DE,FO,1,102,201912,716876 -DE,FO,1,141,201912,3376 -DE,FO,2,101,201912,13839 -DE,FO,2,103,201912,6169 -DE,FO,2,106,201912,16737 -DE,FO,2,107,201912,7465 -DE,FO,2,108,201912,51279 -DE,FO,2,110,201912,74761 -DE,FO,2,120,201912,40446 -DE,FO,2,139,201912,3714 -DE,FO,2,141,201912,38977 -DE,FO,2,143,201912,7620 -DE,FO,2,151,201912,5868 -DE,FO,2,152,201912,12145 -DE,FO,2,162,201912,11678 -DE,FO,2,172,201912,160 -DE,FO,2,192,201912,586948 -DE,FO,2,201,201912,2124390 -DE,FO,2,203,201912,1684 -DE,FO,2,204,201912,16293 -DE,FO,2,205,201912,8603 -DE,FO,2,212,201912,11302 -DE,FO,2,221,201912,5365 -DE,FO,2,222,201912,63848 -DE,FO,2,233,201912,229 -DE,FO,2,234,201912,3269 -DE,FO,2,239,201912,3253 -DE,FO,2,244,201912,23373 -DE,FO,2,251,201912,27321 -DE,FO,2,257,201912,27698 -DE,FO,2,259,201912,101090 -DE,FO,2,261,201912,36845 -DE,FO,2,262,201912,6945 -DE,FO,2,263,201912,13435 -DE,FO,2,264,201912,3081 -DE,FO,2,265,201912,34723 -DE,FO,2,266,201912,27594 -DE,FO,2,267,201912,7891 -DE,FO,2,271,201912,79449 -DE,FO,2,272,201912,2120 -DE,FO,2,273,201912,23764 -DE,FO,2,274,201912,8134 -DE,FO,2,275,201912,1294 -DE,FO,2,279,201912,15359 -DE,FO,2,281,201912,29112 -DE,FO,2,282,201912,150889 -DE,FO,2,284,201912,13558 -DE,FO,2,289,201912,30756 -DE,FO,2,291,201912,18890 -DE,FO,2,310,201912,4771 -DE,FO,2,321,201912,46 -DE,FO,2,322,201912,9546 -DE,FO,2,323,201912,3358 -DE,FO,2,324,201912,2678 -DE,FO,2,325,201912,130303 -DE,FO,2,329,201912,6658 -DE,FR,1,011,201912,103598979 -DE,FR,1,012,201912,13893426 -DE,FR,1,013,201912,226778 -DE,FR,1,014,201912,4454204 -DE,FR,1,01M,201912,504424 -DE,FR,1,022,201912,2168864 -DE,FR,1,023,201912,452708 -DE,FR,1,030,201912,4358492 -DE,FR,1,051,201912,503410 -DE,FR,1,061,201912,155941 -DE,FR,1,071,201912,4967 -DE,FR,1,072,201912,84406 -DE,FR,1,081,201912,4645419 -DE,FR,1,089,201912,2784551 -DE,FR,1,101,201912,66492772 -DE,FR,1,102,201912,10252763 -DE,FR,1,103,201912,23850646 -DE,FR,1,104,201912,9193773 -DE,FR,1,105,201912,88384554 -DE,FR,1,106,201912,30086998 -DE,FR,1,107,201912,24539294 -DE,FR,1,108,201912,61983566 -DE,FR,1,109,201912,20228928 -DE,FR,1,10M,201912,15222029 -DE,FR,1,110,201912,99464495 -DE,FR,1,120,201912,832910 -DE,FR,1,131,201912,836632 -DE,FR,1,132,201912,3733986 -DE,FR,1,139,201912,17217984 -DE,FR,1,13M,201912,472941 -DE,FR,1,141,201912,77912558 -DE,FR,1,142,201912,270152 -DE,FR,1,143,201912,11951944 -DE,FR,1,14M,201912,7526111 -DE,FR,1,151,201912,47193718 -DE,FR,1,152,201912,38503527 -DE,FR,1,161,201912,1858820 -DE,FR,1,162,201912,10124161 -DE,FR,1,16M,201912,52306 -DE,FR,1,171,201912,56161111 -DE,FR,1,172,201912,26948549 -DE,FR,1,17M,201912,10454406 -DE,FR,1,181,201912,46376 -DE,FR,1,191,201912,2007 -DE,FR,1,192,201912,51202446 -DE,FR,1,201,201912,240059822 -DE,FR,1,202,201912,25282222 -DE,FR,1,203,201912,15300822 -DE,FR,1,204,201912,136404679 -DE,FR,1,205,201912,112608440 -DE,FR,1,206,201912,2287865 -DE,FR,1,20M,201912,11467527 -DE,FR,1,211,201912,17755851 -DE,FR,1,212,201912,320909783 -DE,FR,1,221,201912,51897302 -DE,FR,1,222,201912,82448552 -DE,FR,1,231,201912,25706430 -DE,FR,1,232,201912,1794507 -DE,FR,1,233,201912,646196 -DE,FR,1,234,201912,3853830 -DE,FR,1,235,201912,5068082 -DE,FR,1,236,201912,1277344 -DE,FR,1,237,201912,246208 -DE,FR,1,239,201912,19562526 -DE,FR,1,23M,201912,2318726 -DE,FR,1,241,201912,104906496 -DE,FR,1,242,201912,13701925 -DE,FR,1,243,201912,23408338 -DE,FR,1,244,201912,95331642 -DE,FR,1,245,201912,2355243 -DE,FR,1,251,201912,6221233 -DE,FR,1,252,201912,5328239 -DE,FR,1,253,201912,260144 -DE,FR,1,254,201912,90397 -DE,FR,1,257,201912,19697828 -DE,FR,1,259,201912,63825138 -DE,FR,1,25M,201912,3251001 -DE,FR,1,261,201912,36337840 -DE,FR,1,262,201912,35234779 -DE,FR,1,263,201912,52994866 -DE,FR,1,264,201912,18906663 -DE,FR,1,265,201912,113559784 -DE,FR,1,266,201912,14487392 -DE,FR,1,267,201912,9658434 -DE,FR,1,268,201912,1118622 -DE,FR,1,271,201912,79363562 -DE,FR,1,272,201912,8483608 -DE,FR,1,273,201912,40558071 -DE,FR,1,274,201912,31801605 -DE,FR,1,275,201912,44791192 -DE,FR,1,279,201912,33462637 -DE,FR,1,281,201912,175988546 -DE,FR,1,282,201912,120233801 -DE,FR,1,283,201912,31845882 -DE,FR,1,284,201912,7567475 -DE,FR,1,289,201912,54731707 -DE,FR,1,291,201912,623558996 -DE,FR,1,292,201912,7128919 -DE,FR,1,293,201912,224138467 -DE,FR,1,301,201912,3614973 -DE,FR,1,302,201912,6023809 -DE,FR,1,303,201912,514566241 -DE,FR,1,309,201912,6073289 -DE,FR,1,30M,201912,531550 -DE,FR,1,310,201912,24926185 -DE,FR,1,321,201912,25375558 -DE,FR,1,322,201912,2569247 -DE,FR,1,323,201912,8537306 -DE,FR,1,324,201912,9874233 -DE,FR,1,325,201912,57931851 -DE,FR,1,329,201912,13115526 -DE,FR,1,32M,201912,358448 -DE,FR,1,351,201912,48377665 -DE,FR,2,011,201912,14249837 -DE,FR,2,012,201912,13494951 -DE,FR,2,013,201912,3844024 -DE,FR,2,014,201912,3262981 -DE,FR,2,01M,201912,64602 -DE,FR,2,021,201912,15962 -DE,FR,2,022,201912,473315 -DE,FR,2,023,201912,75169 -DE,FR,2,030,201912,2363676 -DE,FR,2,051,201912,127583 -DE,FR,2,052,201912,647030 -DE,FR,2,071,201912,242 -DE,FR,2,072,201912,226761 -DE,FR,2,081,201912,2044778 -DE,FR,2,089,201912,5654573 -DE,FR,2,101,201912,74231541 -DE,FR,2,102,201912,19580628 -DE,FR,2,103,201912,50926451 -DE,FR,2,104,201912,12089771 -DE,FR,2,105,201912,49878726 -DE,FR,2,106,201912,25403899 -DE,FR,2,107,201912,32085725 -DE,FR,2,108,201912,120997728 -DE,FR,2,109,201912,15621786 -DE,FR,2,10M,201912,9212594 -DE,FR,2,110,201912,23372821 -DE,FR,2,120,201912,47483821 -DE,FR,2,131,201912,3888434 -DE,FR,2,132,201912,4809267 -DE,FR,2,139,201912,38023773 -DE,FR,2,13M,201912,509694 -DE,FR,2,141,201912,127630332 -DE,FR,2,142,201912,295596 -DE,FR,2,143,201912,29408758 -DE,FR,2,14M,201912,5344815 -DE,FR,2,151,201912,20307867 -DE,FR,2,152,201912,61297744 -DE,FR,2,161,201912,13828623 -DE,FR,2,162,201912,33816296 -DE,FR,2,16M,201912,42365 -DE,FR,2,171,201912,81447340 -DE,FR,2,172,201912,78099586 -DE,FR,2,17M,201912,5424811 -DE,FR,2,17S,201912,10214 -DE,FR,2,181,201912,653825 -DE,FR,2,191,201912,5058433 -DE,FR,2,192,201912,68133365 -DE,FR,2,201,201912,296896534 -DE,FR,2,202,201912,59344180 -DE,FR,2,203,201912,27930443 -DE,FR,2,204,201912,75935290 -DE,FR,2,205,201912,141534228 -DE,FR,2,206,201912,2192425 -DE,FR,2,20M,201912,3417072 -DE,FR,2,20S,201912,9488517 -DE,FR,2,211,201912,30384215 -DE,FR,2,212,201912,352303251 -DE,FR,2,221,201912,93510782 -DE,FR,2,222,201912,187887054 -DE,FR,2,231,201912,38129732 -DE,FR,2,232,201912,2460884 -DE,FR,2,233,201912,1988577 -DE,FR,2,234,201912,8423058 -DE,FR,2,235,201912,3016193 -DE,FR,2,236,201912,8883008 -DE,FR,2,237,201912,610713 -DE,FR,2,239,201912,15901960 -DE,FR,2,23M,201912,2293332 -DE,FR,2,241,201912,67143750 -DE,FR,2,242,201912,31139807 -DE,FR,2,243,201912,25178972 -DE,FR,2,244,201912,154141423 -DE,FR,2,245,201912,898165 -DE,FR,2,251,201912,41740787 -DE,FR,2,252,201912,12094947 -DE,FR,2,253,201912,406505 -DE,FR,2,254,201912,3626925 -DE,FR,2,257,201912,69004517 -DE,FR,2,259,201912,109188033 -DE,FR,2,25M,201912,4467677 -DE,FR,2,261,201912,64729167 -DE,FR,2,262,201912,201016116 -DE,FR,2,263,201912,76973849 -DE,FR,2,264,201912,37499085 -DE,FR,2,265,201912,174006896 -DE,FR,2,266,201912,30993074 -DE,FR,2,267,201912,39034643 -DE,FR,2,268,201912,1070459 -DE,FR,2,271,201912,122897880 -DE,FR,2,272,201912,20681397 -DE,FR,2,273,201912,52934446 -DE,FR,2,274,201912,37139755 -DE,FR,2,275,201912,67453652 -DE,FR,2,279,201912,85590693 -DE,FR,2,281,201912,257519802 -DE,FR,2,282,201912,322374569 -DE,FR,2,283,201912,117207023 -DE,FR,2,284,201912,59672481 -DE,FR,2,289,201912,213005977 -DE,FR,2,291,201912,809343082 -DE,FR,2,292,201912,34962009 -DE,FR,2,293,201912,184399268 -DE,FR,2,301,201912,1009322 -DE,FR,2,302,201912,6079792 -DE,FR,2,303,201912,447318488 -DE,FR,2,309,201912,32191909 -DE,FR,2,30M,201912,141097 -DE,FR,2,310,201912,112534101 -DE,FR,2,321,201912,25922875 -DE,FR,2,322,201912,5967501 -DE,FR,2,323,201912,14252293 -DE,FR,2,324,201912,24364466 -DE,FR,2,325,201912,111755596 -DE,FR,2,329,201912,27280324 -DE,FR,2,32M,201912,372490 -DE,FR,2,32S,201912,34486 -DE,FR,2,351,201912,9570924 -DE,GA,1,012,201912,309926 -DE,GA,2,101,201912,299951 -DE,GA,2,105,201912,9751 -DE,GA,2,108,201912,58780 -DE,GA,2,139,201912,1640 -DE,GA,2,141,201912,162707 -DE,GA,2,151,201912,3849 -DE,GA,2,162,201912,43 -DE,GA,2,171,201912,254 -DE,GA,2,172,201912,10398 -DE,GA,2,192,201912,17498 -DE,GA,2,201,201912,215302 -DE,GA,2,203,201912,1439 -DE,GA,2,204,201912,685 -DE,GA,2,205,201912,29825 -DE,GA,2,211,201912,648 -DE,GA,2,212,201912,153410 -DE,GA,2,221,201912,11720 -DE,GA,2,222,201912,44936 -DE,GA,2,231,201912,41385 -DE,GA,2,239,201912,36836 -DE,GA,2,244,201912,10707 -DE,GA,2,257,201912,6239 -DE,GA,2,259,201912,96044 -DE,GA,2,263,201912,66050 -DE,GA,2,265,201912,10456 -DE,GA,2,266,201912,266 -DE,GA,2,271,201912,55611 -DE,GA,2,272,201912,56581 -DE,GA,2,273,201912,3714 -DE,GA,2,274,201912,1105 -DE,GA,2,275,201912,13413 -DE,GA,2,279,201912,5056 -DE,GA,2,281,201912,401897 -DE,GA,2,282,201912,177345 -DE,GA,2,283,201912,507 -DE,GA,2,284,201912,1071 -DE,GA,2,289,201912,922314 -DE,GA,2,291,201912,612400 -DE,GA,2,293,201912,59345 -DE,GA,2,310,201912,3725 -DE,GA,2,321,201912,3921 -DE,GA,2,325,201912,109460 -DE,GA,2,329,201912,3294 -DE,GB,1,011,201912,3843261 -DE,GB,1,012,201912,3328096 -DE,GB,1,013,201912,8557 -DE,GB,1,014,201912,1540899 -DE,GB,1,01M,201912,178850 -DE,GB,1,021,201912,8537 -DE,GB,1,022,201912,112139 -DE,GB,1,023,201912,47423 -DE,GB,1,030,201912,1828767 -DE,GB,1,051,201912,11888219 -DE,GB,1,061,201912,221669827 -DE,GB,1,072,201912,652177 -DE,GB,1,081,201912,3827351 -DE,GB,1,089,201912,1262011 -DE,GB,1,101,201912,21845462 -DE,GB,1,102,201912,5032515 -DE,GB,1,103,201912,5786255 -DE,GB,1,104,201912,9155772 -DE,GB,1,105,201912,8657802 -DE,GB,1,106,201912,6681802 -DE,GB,1,107,201912,3455383 -DE,GB,1,108,201912,13831826 -DE,GB,1,109,201912,4755622 -DE,GB,1,10M,201912,6206374 -DE,GB,1,110,201912,30601837 -DE,GB,1,120,201912,19103 -DE,GB,1,131,201912,1231716 -DE,GB,1,132,201912,3317695 -DE,GB,1,139,201912,10008371 -DE,GB,1,13M,201912,282132 -DE,GB,1,141,201912,64446489 -DE,GB,1,142,201912,167023 -DE,GB,1,143,201912,14009359 -DE,GB,1,14M,201912,6982001 -DE,GB,1,151,201912,8094808 -DE,GB,1,152,201912,33013701 -DE,GB,1,161,201912,108507 -DE,GB,1,162,201912,3430444 -DE,GB,1,16M,201912,9403 -DE,GB,1,171,201912,13609683 -DE,GB,1,172,201912,7568545 -DE,GB,1,17M,201912,2585866 -DE,GB,1,181,201912,94581 -DE,GB,1,191,201912,303164 -DE,GB,1,192,201912,10065028 -DE,GB,1,201,201912,112829515 -DE,GB,1,202,201912,3177504 -DE,GB,1,203,201912,8459342 -DE,GB,1,204,201912,35719442 -DE,GB,1,205,201912,96512996 -DE,GB,1,206,201912,1384017 -DE,GB,1,20M,201912,6172345 -DE,GB,1,211,201912,347065721 -DE,GB,1,212,201912,212385296 -DE,GB,1,221,201912,13867168 -DE,GB,1,222,201912,48942032 -DE,GB,1,231,201912,5533675 -DE,GB,1,232,201912,2247114 -DE,GB,1,233,201912,67459 -DE,GB,1,234,201912,3653070 -DE,GB,1,235,201912,409136 -DE,GB,1,236,201912,214571 -DE,GB,1,237,201912,57423 -DE,GB,1,239,201912,9906054 -DE,GB,1,23M,201912,1609154 -DE,GB,1,241,201912,13149884 -DE,GB,1,242,201912,3310345 -DE,GB,1,243,201912,3337509 -DE,GB,1,244,201912,185899090 -DE,GB,1,245,201912,1757480 -DE,GB,1,251,201912,4974770 -DE,GB,1,252,201912,1634425 -DE,GB,1,253,201912,314780 -DE,GB,1,254,201912,303166 -DE,GB,1,257,201912,9793188 -DE,GB,1,259,201912,25037628 -DE,GB,1,25M,201912,1371713 -DE,GB,1,261,201912,56394698 -DE,GB,1,262,201912,113916339 -DE,GB,1,263,201912,101761471 -DE,GB,1,264,201912,21202815 -DE,GB,1,265,201912,84350797 -DE,GB,1,266,201912,30094810 -DE,GB,1,267,201912,10204502 -DE,GB,1,268,201912,354745 -DE,GB,1,271,201912,30537826 -DE,GB,1,272,201912,7841127 -DE,GB,1,273,201912,18172302 -DE,GB,1,274,201912,8551206 -DE,GB,1,275,201912,7794423 -DE,GB,1,279,201912,45423070 -DE,GB,1,281,201912,75747304 -DE,GB,1,282,201912,76836110 -DE,GB,1,283,201912,16821735 -DE,GB,1,284,201912,9767560 -DE,GB,1,289,201912,33677138 -DE,GB,1,291,201912,173577175 -DE,GB,1,292,201912,2601280 -DE,GB,1,293,201912,68033002 -DE,GB,1,301,201912,1226914 -DE,GB,1,302,201912,2226799 -DE,GB,1,303,201912,152765242 -DE,GB,1,309,201912,6697031 -DE,GB,1,30M,201912,137686 -DE,GB,1,310,201912,7841473 -DE,GB,1,321,201912,41084154 -DE,GB,1,322,201912,3037619 -DE,GB,1,323,201912,2550673 -DE,GB,1,324,201912,16061815 -DE,GB,1,325,201912,23150613 -DE,GB,1,329,201912,12898541 -DE,GB,1,32M,201912,210810 -DE,GB,2,011,201912,4493215 -DE,GB,2,012,201912,9724492 -DE,GB,2,013,201912,1613125 -DE,GB,2,014,201912,1863518 -DE,GB,2,01M,201912,106608 -DE,GB,2,021,201912,716 -DE,GB,2,022,201912,4788 -DE,GB,2,023,201912,13544 -DE,GB,2,030,201912,259760 -DE,GB,2,072,201912,845 -DE,GB,2,081,201912,357024 -DE,GB,2,089,201912,1213135 -DE,GB,2,101,201912,57095307 -DE,GB,2,102,201912,21785023 -DE,GB,2,103,201912,21109467 -DE,GB,2,104,201912,5598102 -DE,GB,2,105,201912,29430687 -DE,GB,2,106,201912,22932269 -DE,GB,2,107,201912,32187985 -DE,GB,2,108,201912,84104687 -DE,GB,2,109,201912,11456227 -DE,GB,2,10M,201912,7642806 -DE,GB,2,110,201912,30688528 -DE,GB,2,120,201912,874437 -DE,GB,2,131,201912,4594182 -DE,GB,2,132,201912,2536579 -DE,GB,2,139,201912,23688445 -DE,GB,2,13M,201912,285357 -DE,GB,2,141,201912,57711426 -DE,GB,2,142,201912,296578 -DE,GB,2,143,201912,12624348 -DE,GB,2,14M,201912,2861439 -DE,GB,2,151,201912,11441978 -DE,GB,2,152,201912,44800478 -DE,GB,2,161,201912,4118053 -DE,GB,2,162,201912,17787264 -DE,GB,2,16M,201912,13459 -DE,GB,2,171,201912,50911306 -DE,GB,2,172,201912,29123340 -DE,GB,2,17M,201912,2693906 -DE,GB,2,17S,201912,17779 -DE,GB,2,181,201912,552526 -DE,GB,2,191,201912,48312 -DE,GB,2,192,201912,28785034 -DE,GB,2,201,201912,156358566 -DE,GB,2,202,201912,17815754 -DE,GB,2,203,201912,16840585 -DE,GB,2,204,201912,64127132 -DE,GB,2,205,201912,84165051 -DE,GB,2,206,201912,1113029 -DE,GB,2,20M,201912,2835431 -DE,GB,2,20S,201912,821904 -DE,GB,2,211,201912,18458492 -DE,GB,2,212,201912,209826481 -DE,GB,2,221,201912,38980514 -DE,GB,2,222,201912,114094012 -DE,GB,2,231,201912,17203014 -DE,GB,2,232,201912,1753324 -DE,GB,2,233,201912,2451451 -DE,GB,2,234,201912,10057903 -DE,GB,2,235,201912,2134749 -DE,GB,2,236,201912,2585226 -DE,GB,2,237,201912,175031 -DE,GB,2,239,201912,13817844 -DE,GB,2,23M,201912,1517281 -DE,GB,2,241,201912,33959793 -DE,GB,2,242,201912,17595775 -DE,GB,2,243,201912,7163390 -DE,GB,2,244,201912,179652313 -DE,GB,2,245,201912,183655 -DE,GB,2,251,201912,21090225 -DE,GB,2,252,201912,10569459 -DE,GB,2,253,201912,1106889 -DE,GB,2,254,201912,1320759 -DE,GB,2,257,201912,43744163 -DE,GB,2,259,201912,53331026 -DE,GB,2,25M,201912,2595537 -DE,GB,2,261,201912,36812078 -DE,GB,2,262,201912,86491551 -DE,GB,2,263,201912,53917260 -DE,GB,2,264,201912,28346789 -DE,GB,2,265,201912,130673295 -DE,GB,2,266,201912,18040465 -DE,GB,2,267,201912,33396957 -DE,GB,2,268,201912,661716 -DE,GB,2,271,201912,80689325 -DE,GB,2,272,201912,13488891 -DE,GB,2,273,201912,31214426 -DE,GB,2,274,201912,21202848 -DE,GB,2,275,201912,36601378 -DE,GB,2,279,201912,51685297 -DE,GB,2,281,201912,215462370 -DE,GB,2,282,201912,202144855 -DE,GB,2,283,201912,58107822 -DE,GB,2,284,201912,49601898 -DE,GB,2,289,201912,110030278 -DE,GB,2,291,201912,1153383410 -DE,GB,2,292,201912,42613072 -DE,GB,2,293,201912,203353633 -DE,GB,2,301,201912,930273 -DE,GB,2,302,201912,38528133 -DE,GB,2,303,201912,233887849 -DE,GB,2,309,201912,17326709 -DE,GB,2,30M,201912,92186 -DE,GB,2,310,201912,38970274 -DE,GB,2,321,201912,44484994 -DE,GB,2,322,201912,3464475 -DE,GB,2,323,201912,4931020 -DE,GB,2,324,201912,16897671 -DE,GB,2,325,201912,59159709 -DE,GB,2,329,201912,14570506 -DE,GB,2,32M,201912,224776 -DE,GB,2,32S,201912,23102 -DE,GD,1,012,201912,135289 -DE,GD,2,231,201912,622 -DE,GD,2,234,201912,802 -DE,GD,2,242,201912,3500 -DE,GD,2,244,201912,1776 -DE,GD,2,259,201912,35816 -DE,GD,2,281,201912,136969 -DE,GD,2,282,201912,15688 -DE,GE,1,012,201912,151822 -DE,GE,1,081,201912,82405 -DE,GE,1,103,201912,1729739 -DE,GE,1,106,201912,79279 -DE,GE,1,108,201912,557 -DE,GE,1,110,201912,70671 -DE,GE,1,139,201912,298610 -DE,GE,1,141,201912,426813 -DE,GE,1,143,201912,9819 -DE,GE,1,201,201912,370591 -DE,GE,1,211,201912,1550 -DE,GE,1,221,201912,217115 -DE,GE,1,234,201912,1112 -DE,GE,1,242,201912,38800 -DE,GE,1,265,201912,10395 -DE,GE,1,281,201912,24671 -DE,GE,1,289,201912,54623 -DE,GE,1,325,201912,21785 -DE,GE,2,011,201912,45784 -DE,GE,2,012,201912,38504 -DE,GE,2,014,201912,148210 -DE,GE,2,081,201912,2894 -DE,GE,2,089,201912,9455 -DE,GE,2,101,201912,137464 -DE,GE,2,102,201912,55880 -DE,GE,2,103,201912,48770 -DE,GE,2,104,201912,7331 -DE,GE,2,105,201912,604069 -DE,GE,2,106,201912,88694 -DE,GE,2,107,201912,105812 -DE,GE,2,108,201912,927538 -DE,GE,2,109,201912,97555 -DE,GE,2,110,201912,463140 -DE,GE,2,120,201912,99091 -DE,GE,2,131,201912,2626 -DE,GE,2,132,201912,53018 -DE,GE,2,139,201912,251104 -DE,GE,2,141,201912,356914 -DE,GE,2,142,201912,1507 -DE,GE,2,143,201912,45323 -DE,GE,2,151,201912,89690 -DE,GE,2,152,201912,50788 -DE,GE,2,161,201912,62129 -DE,GE,2,162,201912,337098 -DE,GE,2,171,201912,195384 -DE,GE,2,172,201912,353472 -DE,GE,2,192,201912,849707 -DE,GE,2,201,201912,97104 -DE,GE,2,202,201912,78413 -DE,GE,2,203,201912,121595 -DE,GE,2,204,201912,496557 -DE,GE,2,205,201912,841869 -DE,GE,2,211,201912,50052 -DE,GE,2,212,201912,2763865 -DE,GE,2,221,201912,605381 -DE,GE,2,222,201912,977427 -DE,GE,2,231,201912,47645 -DE,GE,2,232,201912,32700 -DE,GE,2,233,201912,29295 -DE,GE,2,234,201912,44312 -DE,GE,2,235,201912,2832 -DE,GE,2,236,201912,24197 -DE,GE,2,239,201912,37979 -DE,GE,2,241,201912,1500 -DE,GE,2,242,201912,3347 -DE,GE,2,243,201912,6102 -DE,GE,2,244,201912,252256 -DE,GE,2,245,201912,54 -DE,GE,2,251,201912,80312 -DE,GE,2,252,201912,252144 -DE,GE,2,254,201912,72 -DE,GE,2,257,201912,151608 -DE,GE,2,259,201912,206560 -DE,GE,2,261,201912,5083 -DE,GE,2,262,201912,180828 -DE,GE,2,263,201912,113576 -DE,GE,2,264,201912,71549 -DE,GE,2,265,201912,392836 -DE,GE,2,266,201912,397921 -DE,GE,2,267,201912,381907 -DE,GE,2,268,201912,4800 -DE,GE,2,271,201912,411680 -DE,GE,2,272,201912,71663 -DE,GE,2,273,201912,108275 -DE,GE,2,274,201912,192865 -DE,GE,2,275,201912,240117 -DE,GE,2,279,201912,184717 -DE,GE,2,281,201912,457993 -DE,GE,2,282,201912,1486908 -DE,GE,2,283,201912,11532 -DE,GE,2,284,201912,100195 -DE,GE,2,289,201912,1360127 -DE,GE,2,291,201912,8862414 -DE,GE,2,292,201912,71700 -DE,GE,2,293,201912,541586 -DE,GE,2,303,201912,72281 -DE,GE,2,309,201912,15465 -DE,GE,2,310,201912,147764 -DE,GE,2,321,201912,28983 -DE,GE,2,322,201912,283293 -DE,GE,2,323,201912,18464 -DE,GE,2,324,201912,241399 -DE,GE,2,325,201912,870800 -DE,GE,2,329,201912,36188 -DE,GH,1,011,201912,15703 -DE,GH,1,012,201912,4339807 -DE,GH,1,102,201912,1007812 -DE,GH,1,103,201912,4141 -DE,GH,1,104,201912,715381 -DE,GH,1,106,201912,3042 -DE,GH,1,108,201912,6677343 -DE,GH,1,110,201912,275 -DE,GH,1,141,201912,901 -DE,GH,1,151,201912,26 -DE,GH,1,152,201912,27 -DE,GH,1,161,201912,767149 -DE,GH,1,162,201912,1064 -DE,GH,1,204,201912,5424 -DE,GH,1,211,201912,129 -DE,GH,1,212,201912,18 -DE,GH,1,222,201912,1006 -DE,GH,1,262,201912,560 -DE,GH,1,263,201912,910 -DE,GH,1,321,201912,3233 -DE,GH,1,322,201912,24394 -DE,GH,1,329,201912,1101 -DE,GH,2,101,201912,389783 -DE,GH,2,102,201912,417387 -DE,GH,2,103,201912,4860 -DE,GH,2,104,201912,4846 -DE,GH,2,105,201912,782330 -DE,GH,2,106,201912,290434 -DE,GH,2,107,201912,864 -DE,GH,2,108,201912,1174745 -DE,GH,2,110,201912,495301 -DE,GH,2,132,201912,40139 -DE,GH,2,139,201912,120848 -DE,GH,2,141,201912,414203 -DE,GH,2,151,201912,8261 -DE,GH,2,152,201912,4279 -DE,GH,2,162,201912,4454 -DE,GH,2,171,201912,31616 -DE,GH,2,172,201912,134692 -DE,GH,2,192,201912,220311 -DE,GH,2,201,201912,437369 -DE,GH,2,202,201912,1227 -DE,GH,2,203,201912,129214 -DE,GH,2,204,201912,417747 -DE,GH,2,205,201912,539394 -DE,GH,2,211,201912,6326 -DE,GH,2,212,201912,622207 -DE,GH,2,221,201912,254896 -DE,GH,2,222,201912,355456 -DE,GH,2,231,201912,36474 -DE,GH,2,232,201912,12605 -DE,GH,2,234,201912,21249 -DE,GH,2,236,201912,3451 -DE,GH,2,239,201912,156085 -DE,GH,2,242,201912,774 -DE,GH,2,244,201912,276753 -DE,GH,2,251,201912,14587 -DE,GH,2,252,201912,22428 -DE,GH,2,257,201912,181540 -DE,GH,2,259,201912,70232 -DE,GH,2,261,201912,19872 -DE,GH,2,262,201912,183054 -DE,GH,2,263,201912,58656 -DE,GH,2,264,201912,226027 -DE,GH,2,265,201912,345010 -DE,GH,2,266,201912,1788907 -DE,GH,2,267,201912,96363 -DE,GH,2,271,201912,194883 -DE,GH,2,272,201912,23403 -DE,GH,2,273,201912,169763 -DE,GH,2,274,201912,16430 -DE,GH,2,275,201912,21856 -DE,GH,2,279,201912,150599 -DE,GH,2,281,201912,1119252 -DE,GH,2,282,201912,868940 -DE,GH,2,283,201912,43150 -DE,GH,2,284,201912,1064 -DE,GH,2,289,201912,1732552 -DE,GH,2,291,201912,1314513 -DE,GH,2,292,201912,257449 -DE,GH,2,293,201912,92293 -DE,GH,2,309,201912,8788 -DE,GH,2,310,201912,355803 -DE,GH,2,322,201912,23428 -DE,GH,2,323,201912,16395 -DE,GH,2,324,201912,5528 -DE,GH,2,325,201912,199599 -DE,GH,2,329,201912,4060 -DE,GI,1,257,201912,5 -DE,GI,1,291,201912,449075 -DE,GI,2,120,201912,967077 -DE,GI,2,139,201912,14231 -DE,GI,2,141,201912,13962 -DE,GI,2,143,201912,2822 -DE,GI,2,151,201912,1696 -DE,GI,2,152,201912,3474 -DE,GI,2,162,201912,2100 -DE,GI,2,172,201912,15 -DE,GI,2,201,201912,413 -DE,GI,2,203,201912,18173 -DE,GI,2,204,201912,2945 -DE,GI,2,205,201912,4855 -DE,GI,2,212,201912,47641 -DE,GI,2,221,201912,5579 -DE,GI,2,222,201912,8290 -DE,GI,2,239,201912,2930 -DE,GI,2,251,201912,51643 -DE,GI,2,257,201912,6944 -DE,GI,2,259,201912,339 -DE,GI,2,262,201912,70101 -DE,GI,2,263,201912,392764 -DE,GI,2,264,201912,38254 -DE,GI,2,265,201912,92351 -DE,GI,2,267,201912,7159 -DE,GI,2,271,201912,13132 -DE,GI,2,273,201912,3442 -DE,GI,2,274,201912,3120 -DE,GI,2,279,201912,5236 -DE,GI,2,281,201912,1616084 -DE,GI,2,282,201912,2933 -DE,GI,2,289,201912,74 -DE,GI,2,291,201912,59836 -DE,GI,2,309,201912,58496 -DE,GI,2,310,201912,1790 -DE,GI,2,321,201912,22620 -DE,GI,2,325,201912,9014 -DE,GL,1,102,201912,2582 -DE,GL,2,108,201912,2050 -DE,GL,2,139,201912,1222 -DE,GL,2,141,201912,17138 -DE,GL,2,143,201912,4175 -DE,GL,2,151,201912,3698 -DE,GL,2,152,201912,11067 -DE,GL,2,172,201912,32000 -DE,GL,2,205,201912,9765 -DE,GL,2,212,201912,966 -DE,GL,2,221,201912,1923 -DE,GL,2,222,201912,31054 -DE,GL,2,257,201912,1647 -DE,GL,2,259,201912,7630 -DE,GL,2,262,201912,17011 -DE,GL,2,263,201912,50527 -DE,GL,2,264,201912,8769 -DE,GL,2,265,201912,11252 -DE,GL,2,267,201912,3601 -DE,GL,2,271,201912,8904 -DE,GL,2,273,201912,331 -DE,GL,2,274,201912,5912 -DE,GL,2,275,201912,1368 -DE,GL,2,279,201912,8782 -DE,GL,2,281,201912,4351 -DE,GL,2,282,201912,10227 -DE,GL,2,289,201912,321 -DE,GL,2,291,201912,118826 -DE,GL,2,303,201912,62925 -DE,GL,2,322,201912,3062 -DE,GL,2,323,201912,3418 -DE,GL,2,325,201912,1897 -DE,GL,2,329,201912,575 -DE,GM,2,101,201912,17643 -DE,GM,2,103,201912,6565 -DE,GM,2,104,201912,1698 -DE,GM,2,105,201912,61333 -DE,GM,2,106,201912,1322 -DE,GM,2,107,201912,1086 -DE,GM,2,108,201912,8010 -DE,GM,2,110,201912,21795 -DE,GM,2,139,201912,1562 -DE,GM,2,141,201912,6105 -DE,GM,2,151,201912,590 -DE,GM,2,162,201912,4350 -DE,GM,2,204,201912,2157 -DE,GM,2,205,201912,26909 -DE,GM,2,212,201912,18088 -DE,GM,2,221,201912,2045 -DE,GM,2,222,201912,517 -DE,GM,2,234,201912,871 -DE,GM,2,242,201912,120 -DE,GM,2,257,201912,2482 -DE,GM,2,259,201912,15051 -DE,GM,2,262,201912,10 -DE,GM,2,263,201912,20369 -DE,GM,2,264,201912,8358 -DE,GM,2,265,201912,56692 -DE,GM,2,271,201912,7725 -DE,GM,2,273,201912,7017 -DE,GM,2,275,201912,6921 -DE,GM,2,279,201912,10141 -DE,GM,2,281,201912,76072 -DE,GM,2,282,201912,18818 -DE,GM,2,289,201912,8950 -DE,GM,2,291,201912,266929 -DE,GM,2,292,201912,4050 -DE,GM,2,293,201912,15674 -DE,GM,2,309,201912,3761 -DE,GM,2,310,201912,30768 -DE,GM,2,323,201912,431 -DE,GM,2,324,201912,30 -DE,GN,2,101,201912,86117 -DE,GN,2,104,201912,623 -DE,GN,2,105,201912,13187 -DE,GN,2,106,201912,1372 -DE,GN,2,108,201912,143234 -DE,GN,2,110,201912,51580 -DE,GN,2,139,201912,102953 -DE,GN,2,141,201912,117355 -DE,GN,2,151,201912,6880 -DE,GN,2,172,201912,878 -DE,GN,2,192,201912,33752 -DE,GN,2,201,201912,32765 -DE,GN,2,203,201912,3598 -DE,GN,2,204,201912,11659 -DE,GN,2,205,201912,163156 -DE,GN,2,211,201912,251 -DE,GN,2,212,201912,180565 -DE,GN,2,221,201912,17558 -DE,GN,2,222,201912,6231 -DE,GN,2,231,201912,19201 -DE,GN,2,234,201912,9398 -DE,GN,2,242,201912,10521 -DE,GN,2,244,201912,27541 -DE,GN,2,252,201912,2313 -DE,GN,2,257,201912,235167 -DE,GN,2,259,201912,45001 -DE,GN,2,261,201912,100 -DE,GN,2,262,201912,9050 -DE,GN,2,263,201912,35732 -DE,GN,2,264,201912,9328 -DE,GN,2,265,201912,435685 -DE,GN,2,266,201912,20900 -DE,GN,2,271,201912,70032 -DE,GN,2,272,201912,181 -DE,GN,2,273,201912,55951 -DE,GN,2,274,201912,3945 -DE,GN,2,275,201912,45235 -DE,GN,2,279,201912,11902 -DE,GN,2,281,201912,1053586 -DE,GN,2,282,201912,572084 -DE,GN,2,289,201912,5264045 -DE,GN,2,291,201912,300471 -DE,GN,2,292,201912,142604 -DE,GN,2,293,201912,202141 -DE,GN,2,309,201912,1140 -DE,GN,2,310,201912,79929 -DE,GN,2,323,201912,5 -DE,GN,2,324,201912,45 -DE,GN,2,325,201912,23032 -DE,GN,2,329,201912,182 -DE,GQ,2,101,201912,72730 -DE,GQ,2,110,201912,851994 -DE,GQ,2,141,201912,20905 -DE,GQ,2,151,201912,6166 -DE,GQ,2,172,201912,384 -DE,GQ,2,204,201912,1071 -DE,GQ,2,221,201912,2 -DE,GQ,2,222,201912,8 -DE,GQ,2,231,201912,9816 -DE,GQ,2,234,201912,385 -DE,GQ,2,242,201912,3 -DE,GQ,2,257,201912,2477 -DE,GQ,2,259,201912,4 -DE,GQ,2,264,201912,150 -DE,GQ,2,265,201912,921 -DE,GQ,2,266,201912,35264 -DE,GQ,2,279,201912,1298 -DE,GQ,2,281,201912,25502 -DE,GQ,2,282,201912,26823 -DE,GQ,2,291,201912,2472760 -DE,GQ,2,293,201912,1003 -DE,GQ,2,325,201912,16736 -DE,GR,1,011,201912,2294209 -DE,GR,1,012,201912,8287399 -DE,GR,1,013,201912,1616 -DE,GR,1,014,201912,144316 -DE,GR,1,023,201912,1980 -DE,GR,1,030,201912,916173 -DE,GR,1,081,201912,2188 -DE,GR,1,089,201912,48952 -DE,GR,1,101,201912,1231894 -DE,GR,1,102,201912,1020106 -DE,GR,1,103,201912,15033146 -DE,GR,1,104,201912,2679875 -DE,GR,1,105,201912,9715356 -DE,GR,1,106,201912,2706091 -DE,GR,1,107,201912,1204584 -DE,GR,1,108,201912,4759236 -DE,GR,1,10M,201912,2097648 -DE,GR,1,110,201912,5896894 -DE,GR,1,120,201912,796042 -DE,GR,1,131,201912,541294 -DE,GR,1,132,201912,189181 -DE,GR,1,139,201912,2376158 -DE,GR,1,13M,201912,83916 -DE,GR,1,141,201912,5240951 -DE,GR,1,142,201912,136990 -DE,GR,1,143,201912,746279 -DE,GR,1,14M,201912,1329226 -DE,GR,1,151,201912,86089 -DE,GR,1,152,201912,11159 -DE,GR,1,162,201912,172292 -DE,GR,1,171,201912,499767 -DE,GR,1,172,201912,1018972 -DE,GR,1,17M,201912,92904 -DE,GR,1,181,201912,2955 -DE,GR,1,201,201912,397004 -DE,GR,1,203,201912,133070 -DE,GR,1,204,201912,1185191 -DE,GR,1,205,201912,1530397 -DE,GR,1,206,201912,18285 -DE,GR,1,20M,201912,126139 -DE,GR,1,211,201912,601062 -DE,GR,1,212,201912,35745009 -DE,GR,1,221,201912,141127 -DE,GR,1,222,201912,3071391 -DE,GR,1,231,201912,24662 -DE,GR,1,234,201912,18234 -DE,GR,1,236,201912,25998 -DE,GR,1,237,201912,37713 -DE,GR,1,239,201912,585 -DE,GR,1,23M,201912,31937 -DE,GR,1,241,201912,342443 -DE,GR,1,242,201912,406282 -DE,GR,1,243,201912,58817 -DE,GR,1,244,201912,19235137 -DE,GR,1,251,201912,417460 -DE,GR,1,252,201912,2565 -DE,GR,1,257,201912,51366 -DE,GR,1,259,201912,1263527 -DE,GR,1,25M,201912,15351 -DE,GR,1,261,201912,2646019 -DE,GR,1,262,201912,334885 -DE,GR,1,263,201912,771015 -DE,GR,1,264,201912,570441 -DE,GR,1,265,201912,1485572 -DE,GR,1,267,201912,2916739 -DE,GR,1,271,201912,229454 -DE,GR,1,272,201912,2823947 -DE,GR,1,273,201912,3488574 -DE,GR,1,274,201912,163438 -DE,GR,1,275,201912,1819907 -DE,GR,1,279,201912,516174 -DE,GR,1,281,201912,240330 -DE,GR,1,282,201912,1229399 -DE,GR,1,283,201912,18528 -DE,GR,1,284,201912,5556 -DE,GR,1,289,201912,169530 -DE,GR,1,291,201912,654400 -DE,GR,1,292,201912,159105 -DE,GR,1,293,201912,59579 -DE,GR,1,303,201912,51548 -DE,GR,1,309,201912,821390 -DE,GR,1,30M,201912,10231 -DE,GR,1,310,201912,1253373 -DE,GR,1,321,201912,10165 -DE,GR,1,322,201912,96111 -DE,GR,1,323,201912,29997 -DE,GR,1,324,201912,27612 -DE,GR,1,325,201912,118489 -DE,GR,1,329,201912,70612 -DE,GR,1,32M,201912,1541 -DE,GR,2,011,201912,415675 -DE,GR,2,012,201912,838073 -DE,GR,2,013,201912,197614 -DE,GR,2,014,201912,1203834 -DE,GR,2,01M,201912,18151 -DE,GR,2,022,201912,1051 -DE,GR,2,023,201912,2699 -DE,GR,2,030,201912,4393 -DE,GR,2,081,201912,99870 -DE,GR,2,089,201912,98972 -DE,GR,2,101,201912,16000252 -DE,GR,2,102,201912,2356883 -DE,GR,2,103,201912,2996425 -DE,GR,2,104,201912,339480 -DE,GR,2,105,201912,16240528 -DE,GR,2,106,201912,1907719 -DE,GR,2,107,201912,2557917 -DE,GR,2,108,201912,11178681 -DE,GR,2,109,201912,1328321 -DE,GR,2,10M,201912,1004581 -DE,GR,2,110,201912,1743161 -DE,GR,2,120,201912,3391330 -DE,GR,2,131,201912,199614 -DE,GR,2,132,201912,187107 -DE,GR,2,139,201912,1625980 -DE,GR,2,13M,201912,17885 -DE,GR,2,141,201912,5357005 -DE,GR,2,142,201912,52946 -DE,GR,2,143,201912,1466336 -DE,GR,2,14M,201912,352086 -DE,GR,2,151,201912,800477 -DE,GR,2,152,201912,3030856 -DE,GR,2,161,201912,72071 -DE,GR,2,162,201912,560615 -DE,GR,2,16M,201912,1254 -DE,GR,2,171,201912,3892952 -DE,GR,2,172,201912,4057096 -DE,GR,2,17M,201912,260970 -DE,GR,2,181,201912,33459 -DE,GR,2,192,201912,1841726 -DE,GR,2,201,201912,14872678 -DE,GR,2,202,201912,1150734 -DE,GR,2,203,201912,2223612 -DE,GR,2,204,201912,7358329 -DE,GR,2,205,201912,10932431 -DE,GR,2,206,201912,31599 -DE,GR,2,20M,201912,316397 -DE,GR,2,20S,201912,2134650 -DE,GR,2,211,201912,1319654 -DE,GR,2,212,201912,43638597 -DE,GR,2,221,201912,3531963 -DE,GR,2,222,201912,8107752 -DE,GR,2,231,201912,531429 -DE,GR,2,232,201912,139093 -DE,GR,2,233,201912,49446 -DE,GR,2,234,201912,280114 -DE,GR,2,235,201912,2434 -DE,GR,2,236,201912,840229 -DE,GR,2,237,201912,3094 -DE,GR,2,239,201912,632043 -DE,GR,2,23M,201912,104208 -DE,GR,2,241,201912,1569436 -DE,GR,2,242,201912,326772 -DE,GR,2,243,201912,253644 -DE,GR,2,244,201912,3441771 -DE,GR,2,245,201912,52904 -DE,GR,2,251,201912,1789301 -DE,GR,2,252,201912,747409 -DE,GR,2,253,201912,182556 -DE,GR,2,254,201912,83696 -DE,GR,2,257,201912,2838397 -DE,GR,2,259,201912,2570466 -DE,GR,2,25M,201912,182208 -DE,GR,2,261,201912,2638240 -DE,GR,2,262,201912,10807424 -DE,GR,2,263,201912,12591261 -DE,GR,2,264,201912,2019293 -DE,GR,2,265,201912,11599519 -DE,GR,2,266,201912,4268189 -DE,GR,2,267,201912,2727499 -DE,GR,2,268,201912,88748 -DE,GR,2,271,201912,5692704 -DE,GR,2,272,201912,730591 -DE,GR,2,273,201912,1672298 -DE,GR,2,274,201912,1084399 -DE,GR,2,275,201912,4537557 -DE,GR,2,279,201912,4139222 -DE,GR,2,281,201912,19056520 -DE,GR,2,282,201912,22768985 -DE,GR,2,283,201912,2498706 -DE,GR,2,284,201912,14293061 -DE,GR,2,289,201912,6868920 -DE,GR,2,291,201912,22477164 -DE,GR,2,292,201912,1493811 -DE,GR,2,293,201912,6550133 -DE,GR,2,302,201912,78796 -DE,GR,2,303,201912,1509921 -DE,GR,2,309,201912,1042189 -DE,GR,2,30M,201912,26423 -DE,GR,2,310,201912,1109945 -DE,GR,2,321,201912,321812 -DE,GR,2,322,201912,673338 -DE,GR,2,323,201912,245511 -DE,GR,2,324,201912,2675152 -DE,GR,2,325,201912,7923516 -DE,GR,2,329,201912,1881989 -DE,GR,2,32M,201912,20897 -DE,GR,2,32S,201912,1810 -DE,GT,1,011,201912,1374552 -DE,GT,1,012,201912,1244955 -DE,GT,1,013,201912,21984 -DE,GT,1,023,201912,124273 -DE,GT,1,103,201912,497964 -DE,GT,1,108,201912,62836 -DE,GT,1,110,201912,939090 -DE,GT,1,139,201912,29236 -DE,GT,1,141,201912,81492 -DE,GT,1,143,201912,1298 -DE,GT,1,151,201912,2931 -DE,GT,1,161,201912,160028 -DE,GT,1,205,201912,215214 -DE,GT,1,265,201912,967 -DE,GT,1,321,201912,25 -DE,GT,1,323,201912,3156 -DE,GT,1,324,201912,3622 -DE,GT,2,011,201912,150 -DE,GT,2,012,201912,15580 -DE,GT,2,013,201912,359 -DE,GT,2,023,201912,61935 -DE,GT,2,089,201912,1140 -DE,GT,2,103,201912,79887 -DE,GT,2,105,201912,53856 -DE,GT,2,107,201912,25085 -DE,GT,2,108,201912,306946 -DE,GT,2,109,201912,37001 -DE,GT,2,110,201912,14929 -DE,GT,2,132,201912,985 -DE,GT,2,139,201912,57115 -DE,GT,2,141,201912,5922 -DE,GT,2,151,201912,5942 -DE,GT,2,152,201912,637 -DE,GT,2,162,201912,15835 -DE,GT,2,171,201912,763410 -DE,GT,2,172,201912,180963 -DE,GT,2,192,201912,228885 -DE,GT,2,201,201912,1996158 -DE,GT,2,202,201912,661197 -DE,GT,2,203,201912,276942 -DE,GT,2,204,201912,511320 -DE,GT,2,205,201912,679706 -DE,GT,2,211,201912,192925 -DE,GT,2,212,201912,961001 -DE,GT,2,221,201912,125026 -DE,GT,2,222,201912,428535 -DE,GT,2,231,201912,38646 -DE,GT,2,234,201912,66885 -DE,GT,2,239,201912,100155 -DE,GT,2,241,201912,15777 -DE,GT,2,242,201912,78094 -DE,GT,2,243,201912,3745 -DE,GT,2,244,201912,87521 -DE,GT,2,251,201912,3610 -DE,GT,2,257,201912,796606 -DE,GT,2,259,201912,130447 -DE,GT,2,261,201912,4589 -DE,GT,2,262,201912,23284 -DE,GT,2,263,201912,72773 -DE,GT,2,264,201912,12791 -DE,GT,2,265,201912,189562 -DE,GT,2,266,201912,57649 -DE,GT,2,267,201912,34888 -DE,GT,2,271,201912,233508 -DE,GT,2,272,201912,17391 -DE,GT,2,273,201912,198508 -DE,GT,2,274,201912,143767 -DE,GT,2,275,201912,736728 -DE,GT,2,279,201912,239573 -DE,GT,2,281,201912,636665 -DE,GT,2,282,201912,1154377 -DE,GT,2,283,201912,206723 -DE,GT,2,284,201912,2420 -DE,GT,2,289,201912,677583 -DE,GT,2,291,201912,781177 -DE,GT,2,293,201912,161211 -DE,GT,2,309,201912,85105 -DE,GT,2,310,201912,13918 -DE,GT,2,321,201912,172 -DE,GT,2,324,201912,12255 -DE,GT,2,325,201912,508047 -DE,GT,2,329,201912,123573 -DE,GU,2,162,201912,3358 -DE,GU,2,203,201912,686 -DE,GU,2,205,201912,849 -DE,GU,2,222,201912,136803 -DE,GU,2,259,201912,4386 -DE,GU,2,282,201912,4943 -DE,GU,2,289,201912,406925 -DE,GW,2,141,201912,10480 -DE,GW,2,275,201912,576 -DE,GW,2,289,201912,1660 -DE,GW,2,291,201912,151090 -DE,GW,2,310,201912,1480 -DE,GY,1,282,201912,8138 -DE,GY,2,105,201912,98155 -DE,GY,2,201,201912,31225 -DE,GY,2,205,201912,8214 -DE,GY,2,212,201912,496 -DE,GY,2,221,201912,180 -DE,GY,2,222,201912,11005 -DE,GY,2,241,201912,266169 -DE,GY,2,243,201912,1050 -DE,GY,2,251,201912,22800 -DE,GY,2,259,201912,4335 -DE,GY,2,265,201912,21079 -DE,GY,2,279,201912,5815 -DE,GY,2,281,201912,9097 -DE,GY,2,282,201912,68871 -DE,GY,2,283,201912,2700 -DE,GY,2,289,201912,3125 -DE,GY,2,325,201912,2546 -DE,HK,1,011,201912,159 -DE,HK,1,012,201912,23369 -DE,HK,1,030,201912,11661 -DE,HK,1,089,201912,97812 -DE,HK,1,103,201912,95277 -DE,HK,1,105,201912,28 -DE,HK,1,107,201912,885 -DE,HK,1,108,201912,87741 -DE,HK,1,110,201912,816 -DE,HK,1,131,201912,15811 -DE,HK,1,132,201912,235291 -DE,HK,1,139,201912,332336 -DE,HK,1,141,201912,2443169 -DE,HK,1,142,201912,56648 -DE,HK,1,143,201912,1083556 -DE,HK,1,151,201912,1836375 -DE,HK,1,152,201912,103296 -DE,HK,1,162,201912,298535 -DE,HK,1,171,201912,3446 -DE,HK,1,172,201912,213386 -DE,HK,1,201,201912,826504 -DE,HK,1,203,201912,6461 -DE,HK,1,204,201912,136107 -DE,HK,1,205,201912,630981 -DE,HK,1,211,201912,257835 -DE,HK,1,212,201912,3907 -DE,HK,1,221,201912,172731 -DE,HK,1,222,201912,2832701 -DE,HK,1,231,201912,171175 -DE,HK,1,234,201912,106583 -DE,HK,1,236,201912,23493 -DE,HK,1,237,201912,1570 -DE,HK,1,239,201912,1277 -DE,HK,1,241,201912,7637 -DE,HK,1,242,201912,63118 -DE,HK,1,243,201912,2662 -DE,HK,1,244,201912,327919 -DE,HK,1,251,201912,20173 -DE,HK,1,254,201912,37770 -DE,HK,1,257,201912,1385216 -DE,HK,1,259,201912,1189401 -DE,HK,1,261,201912,6042360 -DE,HK,1,262,201912,11719835 -DE,HK,1,263,201912,7430575 -DE,HK,1,264,201912,2617276 -DE,HK,1,265,201912,9021845 -DE,HK,1,266,201912,350199 -DE,HK,1,267,201912,1281780 -DE,HK,1,271,201912,5847303 -DE,HK,1,272,201912,1562418 -DE,HK,1,273,201912,4438761 -DE,HK,1,274,201912,3458175 -DE,HK,1,275,201912,3068900 -DE,HK,1,279,201912,3797174 -DE,HK,1,281,201912,4298728 -DE,HK,1,282,201912,876217 -DE,HK,1,283,201912,12676 -DE,HK,1,284,201912,83985 -DE,HK,1,289,201912,285561 -DE,HK,1,292,201912,44119 -DE,HK,1,293,201912,328292 -DE,HK,1,301,201912,1228 -DE,HK,1,303,201912,543196 -DE,HK,1,309,201912,786706 -DE,HK,1,310,201912,1231385 -DE,HK,1,321,201912,3698067 -DE,HK,1,322,201912,29544 -DE,HK,1,323,201912,296916 -DE,HK,1,324,201912,597173 -DE,HK,1,325,201912,2418663 -DE,HK,1,329,201912,1403101 -DE,HK,2,011,201912,22647 -DE,HK,2,012,201912,27997 -DE,HK,2,014,201912,81021 -DE,HK,2,023,201912,4310 -DE,HK,2,030,201912,11741 -DE,HK,2,081,201912,2806 -DE,HK,2,089,201912,54524 -DE,HK,2,101,201912,3745053 -DE,HK,2,102,201912,45906 -DE,HK,2,103,201912,201798 -DE,HK,2,104,201912,55057 -DE,HK,2,105,201912,466564 -DE,HK,2,106,201912,368506 -DE,HK,2,107,201912,263162 -DE,HK,2,108,201912,6958936 -DE,HK,2,109,201912,1096571 -DE,HK,2,110,201912,1764028 -DE,HK,2,120,201912,178009 -DE,HK,2,131,201912,7371 -DE,HK,2,132,201912,1511756 -DE,HK,2,139,201912,1980432 -DE,HK,2,141,201912,8877683 -DE,HK,2,142,201912,63861 -DE,HK,2,143,201912,1070224 -DE,HK,2,151,201912,4003297 -DE,HK,2,152,201912,3542345 -DE,HK,2,161,201912,26020 -DE,HK,2,162,201912,597052 -DE,HK,2,171,201912,2485911 -DE,HK,2,172,201912,857849 -DE,HK,2,192,201912,364070 -DE,HK,2,201,201912,27485198 -DE,HK,2,202,201912,37160 -DE,HK,2,203,201912,1365372 -DE,HK,2,204,201912,8819639 -DE,HK,2,205,201912,5946597 -DE,HK,2,206,201912,48523 -DE,HK,2,211,201912,1276809 -DE,HK,2,212,201912,21758156 -DE,HK,2,221,201912,3220691 -DE,HK,2,222,201912,4756094 -DE,HK,2,231,201912,1315871 -DE,HK,2,232,201912,102695 -DE,HK,2,233,201912,81891 -DE,HK,2,234,201912,726361 -DE,HK,2,236,201912,155213 -DE,HK,2,239,201912,499078 -DE,HK,2,241,201912,948076 -DE,HK,2,242,201912,81497 -DE,HK,2,243,201912,1074556 -DE,HK,2,244,201912,2299598 -DE,HK,2,245,201912,81632 -DE,HK,2,251,201912,282446 -DE,HK,2,252,201912,24387 -DE,HK,2,253,201912,138142 -DE,HK,2,254,201912,7585 -DE,HK,2,257,201912,4105359 -DE,HK,2,259,201912,3231876 -DE,HK,2,261,201912,32799851 -DE,HK,2,262,201912,9298849 -DE,HK,2,263,201912,9813317 -DE,HK,2,264,201912,4630774 -DE,HK,2,265,201912,41017547 -DE,HK,2,266,201912,5146829 -DE,HK,2,267,201912,7832374 -DE,HK,2,268,201912,27308 -DE,HK,2,271,201912,23570778 -DE,HK,2,272,201912,680350 -DE,HK,2,273,201912,10598788 -DE,HK,2,274,201912,1424245 -DE,HK,2,275,201912,3487810 -DE,HK,2,279,201912,17520741 -DE,HK,2,281,201912,32650557 -DE,HK,2,282,201912,14887600 -DE,HK,2,283,201912,49926 -DE,HK,2,284,201912,1180027 -DE,HK,2,289,201912,16589006 -DE,HK,2,291,201912,23311262 -DE,HK,2,292,201912,11851 -DE,HK,2,293,201912,2281251 -DE,HK,2,301,201912,2951681 -DE,HK,2,302,201912,1527289 -DE,HK,2,303,201912,5484627 -DE,HK,2,309,201912,385571 -DE,HK,2,310,201912,1925856 -DE,HK,2,321,201912,3389668 -DE,HK,2,322,201912,1070972 -DE,HK,2,323,201912,249884 -DE,HK,2,324,201912,917993 -DE,HK,2,325,201912,15238962 -DE,HK,2,329,201912,3317078 -DE,HK,2,32S,201912,1503 -DE,HM,2,279,201912,2359 -DE,HN,1,012,201912,6283365 -DE,HN,1,102,201912,899468 -DE,HN,1,104,201912,973387 -DE,HN,1,108,201912,110 -DE,HN,1,120,201912,65086 -DE,HN,1,139,201912,262 -DE,HN,1,141,201912,868568 -DE,HN,1,143,201912,523030 -DE,HN,1,222,201912,20955 -DE,HN,1,271,201912,17636 -DE,HN,1,273,201912,89586 -DE,HN,1,279,201912,9399 -DE,HN,1,293,201912,7034 -DE,HN,2,103,201912,43116 -DE,HN,2,104,201912,48094 -DE,HN,2,106,201912,8183 -DE,HN,2,108,201912,53570 -DE,HN,2,110,201912,66570 -DE,HN,2,139,201912,21267 -DE,HN,2,151,201912,859 -DE,HN,2,162,201912,92650 -DE,HN,2,171,201912,138817 -DE,HN,2,172,201912,8492 -DE,HN,2,192,201912,528 -DE,HN,2,201,201912,329172 -DE,HN,2,203,201912,20157 -DE,HN,2,204,201912,165588 -DE,HN,2,205,201912,206425 -DE,HN,2,211,201912,14732 -DE,HN,2,212,201912,538164 -DE,HN,2,221,201912,166273 -DE,HN,2,222,201912,252921 -DE,HN,2,231,201912,23394 -DE,HN,2,234,201912,2441 -DE,HN,2,239,201912,352092 -DE,HN,2,242,201912,5589 -DE,HN,2,244,201912,1354 -DE,HN,2,251,201912,5876 -DE,HN,2,257,201912,112977 -DE,HN,2,259,201912,176555 -DE,HN,2,262,201912,19887 -DE,HN,2,263,201912,62897 -DE,HN,2,265,201912,158879 -DE,HN,2,267,201912,34866 -DE,HN,2,271,201912,79300 -DE,HN,2,272,201912,2177 -DE,HN,2,273,201912,727106 -DE,HN,2,274,201912,60835 -DE,HN,2,279,201912,40461 -DE,HN,2,281,201912,2271265 -DE,HN,2,282,201912,608578 -DE,HN,2,284,201912,71573 -DE,HN,2,289,201912,698567 -DE,HN,2,291,201912,60356 -DE,HN,2,292,201912,3068 -DE,HN,2,293,201912,21356 -DE,HN,2,325,201912,415432 -DE,HN,2,329,201912,24817 -DE,HR,1,011,201912,1317780 -DE,HR,1,012,201912,608283 -DE,HR,1,014,201912,894410 -DE,HR,1,01M,201912,9429 -DE,HR,1,022,201912,235231 -DE,HR,1,030,201912,728261 -DE,HR,1,081,201912,474708 -DE,HR,1,101,201912,318053 -DE,HR,1,102,201912,89344 -DE,HR,1,103,201912,204379 -DE,HR,1,105,201912,17361 -DE,HR,1,106,201912,344696 -DE,HR,1,107,201912,863028 -DE,HR,1,108,201912,4172070 -DE,HR,1,109,201912,99415 -DE,HR,1,10M,201912,453420 -DE,HR,1,110,201912,547437 -DE,HR,1,120,201912,105433 -DE,HR,1,131,201912,58103 -DE,HR,1,132,201912,397298 -DE,HR,1,139,201912,800215 -DE,HR,1,13M,201912,28078 -DE,HR,1,141,201912,4400256 -DE,HR,1,143,201912,787956 -DE,HR,1,14M,201912,912585 -DE,HR,1,151,201912,141675 -DE,HR,1,152,201912,7266638 -DE,HR,1,161,201912,441568 -DE,HR,1,162,201912,2274271 -DE,HR,1,16M,201912,1 -DE,HR,1,171,201912,35474 -DE,HR,1,172,201912,1423618 -DE,HR,1,17M,201912,239384 -DE,HR,1,201,201912,6192565 -DE,HR,1,202,201912,18879 -DE,HR,1,203,201912,25376 -DE,HR,1,204,201912,64380 -DE,HR,1,205,201912,306490 -DE,HR,1,20M,201912,26985 -DE,HR,1,212,201912,6563282 -DE,HR,1,221,201912,1656436 -DE,HR,1,222,201912,3447762 -DE,HR,1,231,201912,888642 -DE,HR,1,234,201912,17358 -DE,HR,1,235,201912,452808 -DE,HR,1,236,201912,1408640 -DE,HR,1,237,201912,16607 -DE,HR,1,239,201912,261439 -DE,HR,1,23M,201912,69461 -DE,HR,1,241,201912,186750 -DE,HR,1,242,201912,987982 -DE,HR,1,243,201912,45370 -DE,HR,1,244,201912,2550789 -DE,HR,1,245,201912,24352 -DE,HR,1,251,201912,2601341 -DE,HR,1,252,201912,826929 -DE,HR,1,257,201912,623881 -DE,HR,1,259,201912,3730746 -DE,HR,1,25M,201912,40365 -DE,HR,1,261,201912,412214 -DE,HR,1,262,201912,178108 -DE,HR,1,263,201912,1868815 -DE,HR,1,264,201912,709902 -DE,HR,1,265,201912,2643374 -DE,HR,1,267,201912,132248 -DE,HR,1,271,201912,5534900 -DE,HR,1,272,201912,279 -DE,HR,1,273,201912,2093254 -DE,HR,1,274,201912,291864 -DE,HR,1,275,201912,386818 -DE,HR,1,279,201912,732583 -DE,HR,1,281,201912,1608553 -DE,HR,1,282,201912,4454212 -DE,HR,1,283,201912,132793 -DE,HR,1,284,201912,629780 -DE,HR,1,289,201912,6401705 -DE,HR,1,291,201912,11511806 -DE,HR,1,292,201912,1148424 -DE,HR,1,293,201912,2803785 -DE,HR,1,302,201912,576984 -DE,HR,1,303,201912,1430719 -DE,HR,1,309,201912,33639 -DE,HR,1,310,201912,2606160 -DE,HR,1,321,201912,14383 -DE,HR,1,322,201912,1663 -DE,HR,1,323,201912,21459 -DE,HR,1,324,201912,78584 -DE,HR,1,325,201912,50025 -DE,HR,1,329,201912,178632 -DE,HR,1,32M,201912,621 -DE,HR,2,011,201912,690391 -DE,HR,2,012,201912,421531 -DE,HR,2,013,201912,197772 -DE,HR,2,014,201912,1301199 -DE,HR,2,01M,201912,49322 -DE,HR,2,023,201912,540 -DE,HR,2,030,201912,1666 -DE,HR,2,081,201912,37811 -DE,HR,2,089,201912,198393 -DE,HR,2,101,201912,5855099 -DE,HR,2,102,201912,1019864 -DE,HR,2,103,201912,1251791 -DE,HR,2,104,201912,254603 -DE,HR,2,105,201912,5556689 -DE,HR,2,106,201912,1481194 -DE,HR,2,107,201912,1799010 -DE,HR,2,108,201912,10327630 -DE,HR,2,109,201912,1471744 -DE,HR,2,10M,201912,601694 -DE,HR,2,110,201912,3822151 -DE,HR,2,120,201912,355900 -DE,HR,2,131,201912,74510 -DE,HR,2,132,201912,997253 -DE,HR,2,139,201912,2932779 -DE,HR,2,13M,201912,90799 -DE,HR,2,141,201912,4536335 -DE,HR,2,142,201912,3599 -DE,HR,2,143,201912,1574952 -DE,HR,2,14M,201912,287594 -DE,HR,2,151,201912,813912 -DE,HR,2,152,201912,1018113 -DE,HR,2,161,201912,190062 -DE,HR,2,162,201912,1771254 -DE,HR,2,16M,201912,2220 -DE,HR,2,171,201912,3326974 -DE,HR,2,172,201912,3072107 -DE,HR,2,17M,201912,174595 -DE,HR,2,17S,201912,31 -DE,HR,2,181,201912,5063 -DE,HR,2,192,201912,522457 -DE,HR,2,201,201912,3517936 -DE,HR,2,202,201912,441289 -DE,HR,2,203,201912,2933022 -DE,HR,2,204,201912,5927823 -DE,HR,2,205,201912,3319623 -DE,HR,2,206,201912,42869 -DE,HR,2,20M,201912,192000 -DE,HR,2,20S,201912,20763 -DE,HR,2,211,201912,496303 -DE,HR,2,212,201912,27071908 -DE,HR,2,221,201912,1778562 -DE,HR,2,222,201912,7331609 -DE,HR,2,231,201912,604841 -DE,HR,2,232,201912,321193 -DE,HR,2,233,201912,144974 -DE,HR,2,234,201912,318128 -DE,HR,2,235,201912,8800 -DE,HR,2,236,201912,292572 -DE,HR,2,237,201912,8971 -DE,HR,2,239,201912,500494 -DE,HR,2,23M,201912,85727 -DE,HR,2,241,201912,1868752 -DE,HR,2,242,201912,898091 -DE,HR,2,243,201912,615308 -DE,HR,2,244,201912,8217278 -DE,HR,2,245,201912,106754 -DE,HR,2,251,201912,1272518 -DE,HR,2,252,201912,178769 -DE,HR,2,253,201912,4537 -DE,HR,2,254,201912,74911 -DE,HR,2,257,201912,2794683 -DE,HR,2,259,201912,3056727 -DE,HR,2,25M,201912,191057 -DE,HR,2,261,201912,456795 -DE,HR,2,262,201912,6614442 -DE,HR,2,263,201912,3629753 -DE,HR,2,264,201912,685050 -DE,HR,2,265,201912,3417017 -DE,HR,2,266,201912,2297871 -DE,HR,2,267,201912,927506 -DE,HR,2,268,201912,50325 -DE,HR,2,271,201912,5120381 -DE,HR,2,272,201912,485570 -DE,HR,2,273,201912,1481418 -DE,HR,2,274,201912,1164514 -DE,HR,2,275,201912,2320545 -DE,HR,2,279,201912,1291743 -DE,HR,2,281,201912,8030863 -DE,HR,2,282,201912,10540558 -DE,HR,2,283,201912,1939021 -DE,HR,2,284,201912,2300602 -DE,HR,2,289,201912,19637464 -DE,HR,2,291,201912,32487703 -DE,HR,2,292,201912,1261937 -DE,HR,2,293,201912,4424167 -DE,HR,2,301,201912,705703 -DE,HR,2,302,201912,1105758 -DE,HR,2,303,201912,2052876 -DE,HR,2,309,201912,978260 -DE,HR,2,30M,201912,94383 -DE,HR,2,310,201912,3135956 -DE,HR,2,321,201912,229516 -DE,HR,2,322,201912,491791 -DE,HR,2,323,201912,141008 -DE,HR,2,324,201912,1988883 -DE,HR,2,325,201912,5282532 -DE,HR,2,329,201912,1110431 -DE,HR,2,32M,201912,11111 -DE,HR,2,32S,201912,640 -DE,HT,1,141,201912,7199 -DE,HT,1,143,201912,63 -DE,HT,2,101,201912,130397 -DE,HT,2,108,201912,11833 -DE,HT,2,141,201912,164 -DE,HT,2,171,201912,40118 -DE,HT,2,172,201912,52000 -DE,HT,2,201,201912,7720 -DE,HT,2,205,201912,10750 -DE,HT,2,211,201912,4205 -DE,HT,2,212,201912,168547 -DE,HT,2,221,201912,875 -DE,HT,2,222,201912,83890 -DE,HT,2,231,201912,2125 -DE,HT,2,257,201912,28361 -DE,HT,2,259,201912,10180 -DE,HT,2,262,201912,600 -DE,HT,2,263,201912,712 -DE,HT,2,265,201912,343 -DE,HT,2,271,201912,2610 -DE,HT,2,272,201912,3300 -DE,HT,2,273,201912,3147 -DE,HT,2,274,201912,1339 -DE,HT,2,279,201912,5608 -DE,HT,2,281,201912,12087 -DE,HT,2,282,201912,11957 -DE,HT,2,289,201912,42729 -DE,HT,2,291,201912,17857 -DE,HT,2,293,201912,14852 -DE,HT,2,325,201912,698 -DE,HU,1,011,201912,29502905 -DE,HU,1,012,201912,1295792 -DE,HU,1,013,201912,188857 -DE,HU,1,014,201912,3752235 -DE,HU,1,01M,201912,212028 -DE,HU,1,021,201912,25469 -DE,HU,1,022,201912,276259 -DE,HU,1,030,201912,111590 -DE,HU,1,081,201912,236992 -DE,HU,1,089,201912,69165 -DE,HU,1,101,201912,20356218 -DE,HU,1,102,201912,450 -DE,HU,1,103,201912,10974680 -DE,HU,1,104,201912,17333427 -DE,HU,1,105,201912,877488 -DE,HU,1,106,201912,1426209 -DE,HU,1,107,201912,1211429 -DE,HU,1,108,201912,7775692 -DE,HU,1,109,201912,3433029 -DE,HU,1,10M,201912,3133572 -DE,HU,1,110,201912,1793301 -DE,HU,1,120,201912,5351676 -DE,HU,1,131,201912,469317 -DE,HU,1,132,201912,960993 -DE,HU,1,139,201912,5002244 -DE,HU,1,13M,201912,144185 -DE,HU,1,141,201912,9394975 -DE,HU,1,142,201912,22654 -DE,HU,1,143,201912,1828079 -DE,HU,1,14M,201912,2079354 -DE,HU,1,151,201912,788764 -DE,HU,1,152,201912,3587150 -DE,HU,1,161,201912,814954 -DE,HU,1,162,201912,2836843 -DE,HU,1,16M,201912,11673 -DE,HU,1,171,201912,3564172 -DE,HU,1,172,201912,4798056 -DE,HU,1,17M,201912,871695 -DE,HU,1,181,201912,1500 -DE,HU,1,191,201912,777613 -DE,HU,1,192,201912,1882632 -DE,HU,1,201,201912,39075780 -DE,HU,1,202,201912,556963 -DE,HU,1,203,201912,275870 -DE,HU,1,204,201912,7368310 -DE,HU,1,205,201912,5458575 -DE,HU,1,206,201912,174986 -DE,HU,1,20M,201912,454379 -DE,HU,1,211,201912,295110 -DE,HU,1,212,201912,32932202 -DE,HU,1,221,201912,19602198 -DE,HU,1,222,201912,27151504 -DE,HU,1,231,201912,15461771 -DE,HU,1,232,201912,1074569 -DE,HU,1,233,201912,16856 -DE,HU,1,234,201912,3374405 -DE,HU,1,236,201912,928858 -DE,HU,1,237,201912,909 -DE,HU,1,239,201912,3038094 -DE,HU,1,23M,201912,1641534 -DE,HU,1,241,201912,3030017 -DE,HU,1,242,201912,1658617 -DE,HU,1,243,201912,1829506 -DE,HU,1,244,201912,12270396 -DE,HU,1,245,201912,80102 -DE,HU,1,251,201912,8010227 -DE,HU,1,252,201912,3465638 -DE,HU,1,253,201912,96043 -DE,HU,1,254,201912,1277 -DE,HU,1,257,201912,9866031 -DE,HU,1,259,201912,18208853 -DE,HU,1,25M,201912,1539782 -DE,HU,1,261,201912,20668012 -DE,HU,1,262,201912,43640190 -DE,HU,1,263,201912,81664534 -DE,HU,1,264,201912,52034865 -DE,HU,1,265,201912,86397608 -DE,HU,1,266,201912,4308868 -DE,HU,1,267,201912,3509705 -DE,HU,1,268,201912,129560 -DE,HU,1,271,201912,127128811 -DE,HU,1,272,201912,20986141 -DE,HU,1,273,201912,22578160 -DE,HU,1,274,201912,3278108 -DE,HU,1,275,201912,33131283 -DE,HU,1,279,201912,41440964 -DE,HU,1,281,201912,86126595 -DE,HU,1,282,201912,69165613 -DE,HU,1,283,201912,9631486 -DE,HU,1,284,201912,1932570 -DE,HU,1,289,201912,20334370 -DE,HU,1,291,201912,412727986 -DE,HU,1,292,201912,14967648 -DE,HU,1,293,201912,154376083 -DE,HU,1,302,201912,20789576 -DE,HU,1,303,201912,3183445 -DE,HU,1,309,201912,26588461 -DE,HU,1,30M,201912,4477 -DE,HU,1,310,201912,28236122 -DE,HU,1,321,201912,10443 -DE,HU,1,322,201912,571 -DE,HU,1,323,201912,294262 -DE,HU,1,324,201912,709347 -DE,HU,1,325,201912,15385033 -DE,HU,1,329,201912,3585054 -DE,HU,1,32M,201912,3352 -DE,HU,2,011,201912,1324158 -DE,HU,2,012,201912,2359445 -DE,HU,2,013,201912,637754 -DE,HU,2,014,201912,6589010 -DE,HU,2,01M,201912,301951 -DE,HU,2,022,201912,800 -DE,HU,2,023,201912,5475 -DE,HU,2,030,201912,600743 -DE,HU,2,052,201912,63448 -DE,HU,2,071,201912,9178 -DE,HU,2,072,201912,24187 -DE,HU,2,081,201912,368178 -DE,HU,2,089,201912,587360 -DE,HU,2,101,201912,14846708 -DE,HU,2,102,201912,1287990 -DE,HU,2,103,201912,5527906 -DE,HU,2,104,201912,4106112 -DE,HU,2,105,201912,12864544 -DE,HU,2,106,201912,2548160 -DE,HU,2,107,201912,4517302 -DE,HU,2,108,201912,21467081 -DE,HU,2,109,201912,5556302 -DE,HU,2,10M,201912,1437168 -DE,HU,2,110,201912,4449556 -DE,HU,2,120,201912,2418913 -DE,HU,2,131,201912,455156 -DE,HU,2,132,201912,2369048 -DE,HU,2,139,201912,11775663 -DE,HU,2,13M,201912,545966 -DE,HU,2,141,201912,12337749 -DE,HU,2,142,201912,30933 -DE,HU,2,143,201912,2790402 -DE,HU,2,14M,201912,663481 -DE,HU,2,151,201912,5510664 -DE,HU,2,152,201912,3378234 -DE,HU,2,161,201912,766533 -DE,HU,2,162,201912,6124342 -DE,HU,2,16M,201912,5148 -DE,HU,2,171,201912,9182602 -DE,HU,2,172,201912,7293633 -DE,HU,2,17M,201912,716626 -DE,HU,2,181,201912,101391 -DE,HU,2,192,201912,3270025 -DE,HU,2,201,201912,41732556 -DE,HU,2,202,201912,2205140 -DE,HU,2,203,201912,8080119 -DE,HU,2,204,201912,13557484 -DE,HU,2,205,201912,21789646 -DE,HU,2,206,201912,857724 -DE,HU,2,20M,201912,1101658 -DE,HU,2,20S,201912,576579 -DE,HU,2,211,201912,1455723 -DE,HU,2,212,201912,55317708 -DE,HU,2,221,201912,19500595 -DE,HU,2,222,201912,50905430 -DE,HU,2,231,201912,4943339 -DE,HU,2,232,201912,1076909 -DE,HU,2,233,201912,498263 -DE,HU,2,234,201912,2635564 -DE,HU,2,235,201912,87630 -DE,HU,2,236,201912,364317 -DE,HU,2,237,201912,102706 -DE,HU,2,239,201912,5061985 -DE,HU,2,23M,201912,440227 -DE,HU,2,241,201912,13087440 -DE,HU,2,242,201912,4749493 -DE,HU,2,243,201912,7398713 -DE,HU,2,244,201912,25522998 -DE,HU,2,245,201912,51862 -DE,HU,2,251,201912,4723284 -DE,HU,2,252,201912,1239134 -DE,HU,2,253,201912,216266 -DE,HU,2,254,201912,452579 -DE,HU,2,257,201912,25540001 -DE,HU,2,259,201912,37622910 -DE,HU,2,25M,201912,1412130 -DE,HU,2,261,201912,112072312 -DE,HU,2,262,201912,43221471 -DE,HU,2,263,201912,30007399 -DE,HU,2,264,201912,9202197 -DE,HU,2,265,201912,60151010 -DE,HU,2,266,201912,3536724 -DE,HU,2,267,201912,5324509 -DE,HU,2,268,201912,129373 -DE,HU,2,271,201912,57264362 -DE,HU,2,272,201912,9610913 -DE,HU,2,273,201912,48701986 -DE,HU,2,274,201912,3960161 -DE,HU,2,275,201912,17783253 -DE,HU,2,279,201912,49639685 -DE,HU,2,281,201912,108705515 -DE,HU,2,282,201912,69693591 -DE,HU,2,283,201912,13328424 -DE,HU,2,284,201912,46266039 -DE,HU,2,289,201912,72238713 -DE,HU,2,291,201912,116013855 -DE,HU,2,292,201912,7038773 -DE,HU,2,293,201912,147527157 -DE,HU,2,301,201912,349973 -DE,HU,2,302,201912,2585854 -DE,HU,2,303,201912,26688792 -DE,HU,2,309,201912,8172816 -DE,HU,2,30M,201912,22675 -DE,HU,2,310,201912,11524943 -DE,HU,2,321,201912,1697464 -DE,HU,2,322,201912,1031520 -DE,HU,2,323,201912,692846 -DE,HU,2,324,201912,2703056 -DE,HU,2,325,201912,10142539 -DE,HU,2,329,201912,4398829 -DE,HU,2,32M,201912,37452 -DE,HU,2,32S,201912,1693 -DE,ID,1,011,201912,96341 -DE,ID,1,012,201912,10845937 -DE,ID,1,013,201912,8416 -DE,ID,1,014,201912,33303 -DE,ID,1,023,201912,140714 -DE,ID,1,030,201912,171420 -DE,ID,1,081,201912,650 -DE,ID,1,101,201912,42472 -DE,ID,1,102,201912,796988 -DE,ID,1,103,201912,812373 -DE,ID,1,104,201912,9854897 -DE,ID,1,105,201912,1436 -DE,ID,1,106,201912,114838 -DE,ID,1,107,201912,83584 -DE,ID,1,108,201912,3532907 -DE,ID,1,109,201912,1689052 -DE,ID,1,110,201912,1 -DE,ID,1,120,201912,2851484 -DE,ID,1,131,201912,1322170 -DE,ID,1,132,201912,89926 -DE,ID,1,139,201912,281268 -DE,ID,1,141,201912,20153814 -DE,ID,1,143,201912,5314749 -DE,ID,1,151,201912,1493862 -DE,ID,1,152,201912,36606265 -DE,ID,1,161,201912,1079579 -DE,ID,1,162,201912,3901499 -DE,ID,1,171,201912,112691 -DE,ID,1,172,201912,254293 -DE,ID,1,201,201912,5973729 -DE,ID,1,204,201912,94193 -DE,ID,1,205,201912,565483 -DE,ID,1,206,201912,788161 -DE,ID,1,211,201912,95925 -DE,ID,1,212,201912,863 -DE,ID,1,221,201912,3276599 -DE,ID,1,222,201912,487034 -DE,ID,1,231,201912,115316 -DE,ID,1,233,201912,513 -DE,ID,1,234,201912,196592 -DE,ID,1,236,201912,2729 -DE,ID,1,237,201912,64130 -DE,ID,1,239,201912,208674 -DE,ID,1,241,201912,113804 -DE,ID,1,242,201912,2067 -DE,ID,1,244,201912,797891 -DE,ID,1,257,201912,227981 -DE,ID,1,259,201912,1272023 -DE,ID,1,261,201912,8383057 -DE,ID,1,262,201912,460120 -DE,ID,1,263,201912,916452 -DE,ID,1,264,201912,2024569 -DE,ID,1,265,201912,1441987 -DE,ID,1,266,201912,160 -DE,ID,1,267,201912,865145 -DE,ID,1,271,201912,1142102 -DE,ID,1,272,201912,1008383 -DE,ID,1,273,201912,1161862 -DE,ID,1,274,201912,95650 -DE,ID,1,275,201912,272070 -DE,ID,1,279,201912,3926148 -DE,ID,1,281,201912,2335807 -DE,ID,1,282,201912,1200152 -DE,ID,1,284,201912,1437 -DE,ID,1,289,201912,201493 -DE,ID,1,293,201912,1450664 -DE,ID,1,303,201912,25602 -DE,ID,1,309,201912,1270646 -DE,ID,1,310,201912,4566762 -DE,ID,1,321,201912,758506 -DE,ID,1,322,201912,9955905 -DE,ID,1,323,201912,295267 -DE,ID,1,324,201912,1219403 -DE,ID,1,325,201912,992786 -DE,ID,1,329,201912,2015255 -DE,ID,2,011,201912,219 -DE,ID,2,012,201912,15121 -DE,ID,2,014,201912,479152 -DE,ID,2,023,201912,22900 -DE,ID,2,081,201912,27202 -DE,ID,2,089,201912,377216 -DE,ID,2,101,201912,84600 -DE,ID,2,103,201912,199842 -DE,ID,2,104,201912,78759 -DE,ID,2,105,201912,1378280 -DE,ID,2,106,201912,839162 -DE,ID,2,107,201912,25841 -DE,ID,2,108,201912,1780756 -DE,ID,2,109,201912,441047 -DE,ID,2,110,201912,43292 -DE,ID,2,120,201912,655104 -DE,ID,2,131,201912,45174 -DE,ID,2,132,201912,132599 -DE,ID,2,139,201912,1840194 -DE,ID,2,141,201912,337695 -DE,ID,2,143,201912,22858 -DE,ID,2,151,201912,516141 -DE,ID,2,152,201912,659393 -DE,ID,2,161,201912,396770 -DE,ID,2,162,201912,261663 -DE,ID,2,171,201912,1463814 -DE,ID,2,172,201912,600942 -DE,ID,2,181,201912,12199 -DE,ID,2,192,201912,247738 -DE,ID,2,201,201912,10989146 -DE,ID,2,202,201912,497939 -DE,ID,2,203,201912,1035948 -DE,ID,2,204,201912,1934727 -DE,ID,2,205,201912,8583440 -DE,ID,2,20S,201912,2397561 -DE,ID,2,211,201912,643163 -DE,ID,2,212,201912,4749180 -DE,ID,2,221,201912,1078640 -DE,ID,2,222,201912,4263286 -DE,ID,2,231,201912,413928 -DE,ID,2,232,201912,137054 -DE,ID,2,234,201912,54487 -DE,ID,2,236,201912,14760 -DE,ID,2,239,201912,351639 -DE,ID,2,241,201912,671200 -DE,ID,2,242,201912,2301837 -DE,ID,2,243,201912,348027 -DE,ID,2,244,201912,1562644 -DE,ID,2,245,201912,58212 -DE,ID,2,251,201912,262133 -DE,ID,2,252,201912,355396 -DE,ID,2,253,201912,69428 -DE,ID,2,254,201912,101300 -DE,ID,2,257,201912,2272859 -DE,ID,2,259,201912,1960873 -DE,ID,2,261,201912,6981739 -DE,ID,2,262,201912,923024 -DE,ID,2,263,201912,767470 -DE,ID,2,264,201912,343838 -DE,ID,2,265,201912,8635543 -DE,ID,2,266,201912,1211997 -DE,ID,2,267,201912,854517 -DE,ID,2,271,201912,8104280 -DE,ID,2,272,201912,270795 -DE,ID,2,273,201912,1305892 -DE,ID,2,274,201912,1500457 -DE,ID,2,275,201912,172239 -DE,ID,2,279,201912,2210550 -DE,ID,2,281,201912,25508097 -DE,ID,2,282,201912,43091500 -DE,ID,2,283,201912,107349 -DE,ID,2,284,201912,1097680 -DE,ID,2,289,201912,30067408 -DE,ID,2,291,201912,4227721 -DE,ID,2,292,201912,746730 -DE,ID,2,293,201912,3694466 -DE,ID,2,301,201912,267910 -DE,ID,2,302,201912,226641 -DE,ID,2,303,201912,71118230 -DE,ID,2,309,201912,89999 -DE,ID,2,310,201912,379223 -DE,ID,2,321,201912,3622107 -DE,ID,2,322,201912,136527 -DE,ID,2,323,201912,22646 -DE,ID,2,324,201912,2659 -DE,ID,2,325,201912,9002959 -DE,ID,2,329,201912,1401811 -DE,IE,1,011,201912,11911 -DE,IE,1,01M,201912,31603 -DE,IE,1,030,201912,126796 -DE,IE,1,089,201912,20515 -DE,IE,1,101,201912,23240004 -DE,IE,1,102,201912,543600 -DE,IE,1,103,201912,2235501 -DE,IE,1,104,201912,117876 -DE,IE,1,105,201912,14414211 -DE,IE,1,106,201912,79419 -DE,IE,1,107,201912,332973 -DE,IE,1,108,201912,16697352 -DE,IE,1,109,201912,1798561 -DE,IE,1,10M,201912,2982813 -DE,IE,1,110,201912,13270167 -DE,IE,1,132,201912,445585 -DE,IE,1,139,201912,845052 -DE,IE,1,13M,201912,11633 -DE,IE,1,141,201912,1601842 -DE,IE,1,143,201912,414453 -DE,IE,1,14M,201912,102166 -DE,IE,1,151,201912,1071728 -DE,IE,1,152,201912,493713 -DE,IE,1,162,201912,1294123 -DE,IE,1,171,201912,57299 -DE,IE,1,172,201912,573543 -DE,IE,1,17M,201912,130903 -DE,IE,1,192,201912,6621 -DE,IE,1,201,201912,347620753 -DE,IE,1,202,201912,477390 -DE,IE,1,203,201912,857100 -DE,IE,1,204,201912,3378806 -DE,IE,1,205,201912,84182468 -DE,IE,1,206,201912,3731556 -DE,IE,1,20M,201912,1633596 -DE,IE,1,211,201912,18083059 -DE,IE,1,212,201912,203441233 -DE,IE,1,221,201912,1591150 -DE,IE,1,222,201912,6862306 -DE,IE,1,231,201912,520331 -DE,IE,1,232,201912,514499 -DE,IE,1,234,201912,188612 -DE,IE,1,239,201912,141936 -DE,IE,1,23M,201912,204519 -DE,IE,1,241,201912,108897 -DE,IE,1,242,201912,227035 -DE,IE,1,243,201912,25490 -DE,IE,1,244,201912,4385085 -DE,IE,1,245,201912,41 -DE,IE,1,251,201912,32557 -DE,IE,1,252,201912,23654 -DE,IE,1,257,201912,3075368 -DE,IE,1,259,201912,1370837 -DE,IE,1,25M,201912,391367 -DE,IE,1,261,201912,50430929 -DE,IE,1,262,201912,108382521 -DE,IE,1,263,201912,29303678 -DE,IE,1,264,201912,7282451 -DE,IE,1,265,201912,8964470 -DE,IE,1,266,201912,40533827 -DE,IE,1,267,201912,2222470 -DE,IE,1,268,201912,4931 -DE,IE,1,271,201912,6550743 -DE,IE,1,272,201912,393105 -DE,IE,1,273,201912,2765785 -DE,IE,1,274,201912,193447 -DE,IE,1,275,201912,124982 -DE,IE,1,279,201912,3821205 -DE,IE,1,281,201912,4515172 -DE,IE,1,282,201912,12421475 -DE,IE,1,283,201912,189968 -DE,IE,1,284,201912,80184 -DE,IE,1,289,201912,3614804 -DE,IE,1,291,201912,275100 -DE,IE,1,292,201912,1028904 -DE,IE,1,293,201912,1990780 -DE,IE,1,301,201912,60699 -DE,IE,1,303,201912,12871550 -DE,IE,1,309,201912,375476 -DE,IE,1,30M,201912,2427 -DE,IE,1,310,201912,205462 -DE,IE,1,321,201912,1725741 -DE,IE,1,322,201912,20156 -DE,IE,1,323,201912,84685 -DE,IE,1,324,201912,991206 -DE,IE,1,325,201912,24956370 -DE,IE,1,329,201912,4861645 -DE,IE,1,32M,201912,496 -DE,IE,2,011,201912,31786 -DE,IE,2,012,201912,329836 -DE,IE,2,013,201912,237235 -DE,IE,2,014,201912,126283 -DE,IE,2,01M,201912,26067 -DE,IE,2,022,201912,204 -DE,IE,2,023,201912,850 -DE,IE,2,030,201912,121431 -DE,IE,2,081,201912,28433 -DE,IE,2,089,201912,48356 -DE,IE,2,101,201912,12497906 -DE,IE,2,102,201912,1181848 -DE,IE,2,103,201912,3944056 -DE,IE,2,104,201912,4771772 -DE,IE,2,105,201912,8467855 -DE,IE,2,106,201912,1968843 -DE,IE,2,107,201912,2562132 -DE,IE,2,108,201912,9793764 -DE,IE,2,109,201912,1699515 -DE,IE,2,10M,201912,706510 -DE,IE,2,110,201912,6398880 -DE,IE,2,120,201912,28093 -DE,IE,2,131,201912,57679 -DE,IE,2,132,201912,104851 -DE,IE,2,139,201912,2583831 -DE,IE,2,13M,201912,32530 -DE,IE,2,141,201912,4312312 -DE,IE,2,142,201912,11555 -DE,IE,2,143,201912,751834 -DE,IE,2,14M,201912,337650 -DE,IE,2,151,201912,982819 -DE,IE,2,152,201912,2862008 -DE,IE,2,161,201912,219076 -DE,IE,2,162,201912,1795421 -DE,IE,2,16M,201912,551 -DE,IE,2,171,201912,1894068 -DE,IE,2,172,201912,1869736 -DE,IE,2,17M,201912,153006 -DE,IE,2,181,201912,31604 -DE,IE,2,192,201912,1426099 -DE,IE,2,201,201912,20447131 -DE,IE,2,202,201912,95545 -DE,IE,2,203,201912,732411 -DE,IE,2,204,201912,4010204 -DE,IE,2,205,201912,11120910 -DE,IE,2,206,201912,69229 -DE,IE,2,20M,201912,227351 -DE,IE,2,20S,201912,2098658 -DE,IE,2,211,201912,3105430 -DE,IE,2,212,201912,69809913 -DE,IE,2,221,201912,2337101 -DE,IE,2,222,201912,10984136 -DE,IE,2,231,201912,1645655 -DE,IE,2,232,201912,249427 -DE,IE,2,233,201912,61234 -DE,IE,2,234,201912,495353 -DE,IE,2,235,201912,3957 -DE,IE,2,236,201912,181119 -DE,IE,2,237,201912,34944 -DE,IE,2,239,201912,890056 -DE,IE,2,23M,201912,87093 -DE,IE,2,241,201912,1062711 -DE,IE,2,242,201912,1310547 -DE,IE,2,243,201912,404675 -DE,IE,2,244,201912,17508242 -DE,IE,2,245,201912,27392 -DE,IE,2,251,201912,2803119 -DE,IE,2,252,201912,251474 -DE,IE,2,253,201912,272536 -DE,IE,2,254,201912,67367 -DE,IE,2,257,201912,3056198 -DE,IE,2,259,201912,5027211 -DE,IE,2,25M,201912,143469 -DE,IE,2,261,201912,8554102 -DE,IE,2,262,201912,127361998 -DE,IE,2,263,201912,5471350 -DE,IE,2,264,201912,716691 -DE,IE,2,265,201912,13666105 -DE,IE,2,266,201912,3006693 -DE,IE,2,267,201912,1700384 -DE,IE,2,268,201912,25637 -DE,IE,2,271,201912,13298325 -DE,IE,2,272,201912,1758514 -DE,IE,2,273,201912,3209027 -DE,IE,2,274,201912,1809052 -DE,IE,2,275,201912,1862464 -DE,IE,2,279,201912,4148614 -DE,IE,2,281,201912,14416236 -DE,IE,2,282,201912,15774758 -DE,IE,2,283,201912,4105730 -DE,IE,2,284,201912,3692423 -DE,IE,2,289,201912,21371669 -DE,IE,2,291,201912,43351784 -DE,IE,2,292,201912,969664 -DE,IE,2,293,201912,1241536 -DE,IE,2,301,201912,297792 -DE,IE,2,302,201912,170859 -DE,IE,2,303,201912,10490863 -DE,IE,2,309,201912,1154643 -DE,IE,2,30M,201912,713 -DE,IE,2,310,201912,3772724 -DE,IE,2,321,201912,2067823 -DE,IE,2,322,201912,212315 -DE,IE,2,323,201912,380832 -DE,IE,2,324,201912,637243 -DE,IE,2,325,201912,21025908 -DE,IE,2,329,201912,1381888 -DE,IE,2,32M,201912,6814 -DE,IE,2,32S,201912,1562 -DE,IL,1,011,201912,1035462 -DE,IL,1,012,201912,791893 -DE,IL,1,013,201912,172646 -DE,IL,1,014,201912,1753 -DE,IL,1,023,201912,81475 -DE,IL,1,030,201912,50959 -DE,IL,1,089,201912,704641 -DE,IL,1,101,201912,33 -DE,IL,1,103,201912,163412 -DE,IL,1,104,201912,326936 -DE,IL,1,106,201912,57480 -DE,IL,1,107,201912,134850 -DE,IL,1,108,201912,1239558 -DE,IL,1,110,201912,195294 -DE,IL,1,132,201912,1544 -DE,IL,1,139,201912,826145 -DE,IL,1,141,201912,185649 -DE,IL,1,143,201912,39424 -DE,IL,1,151,201912,331569 -DE,IL,1,152,201912,3080 -DE,IL,1,162,201912,39731 -DE,IL,1,171,201912,6223 -DE,IL,1,172,201912,124486 -DE,IL,1,181,201912,10812 -DE,IL,1,201,201912,5544685 -DE,IL,1,202,201912,713525 -DE,IL,1,203,201912,67846 -DE,IL,1,204,201912,687741 -DE,IL,1,205,201912,1755188 -DE,IL,1,206,201912,246724 -DE,IL,1,211,201912,866575 -DE,IL,1,212,201912,5809011 -DE,IL,1,221,201912,855836 -DE,IL,1,222,201912,5318287 -DE,IL,1,231,201912,292061 -DE,IL,1,234,201912,76009 -DE,IL,1,236,201912,237896 -DE,IL,1,239,201912,198648 -DE,IL,1,242,201912,591557 -DE,IL,1,244,201912,1003318 -DE,IL,1,245,201912,80892 -DE,IL,1,251,201912,94880 -DE,IL,1,254,201912,148494 -DE,IL,1,257,201912,3862446 -DE,IL,1,259,201912,766643 -DE,IL,1,261,201912,1935965 -DE,IL,1,262,201912,2339951 -DE,IL,1,263,201912,9810533 -DE,IL,1,264,201912,173266 -DE,IL,1,265,201912,5017429 -DE,IL,1,266,201912,952262 -DE,IL,1,267,201912,3362779 -DE,IL,1,271,201912,2389099 -DE,IL,1,272,201912,12366 -DE,IL,1,273,201912,439305 -DE,IL,1,274,201912,63567 -DE,IL,1,275,201912,80130 -DE,IL,1,279,201912,9565343 -DE,IL,1,281,201912,2811067 -DE,IL,1,282,201912,2884371 -DE,IL,1,283,201912,583360 -DE,IL,1,284,201912,297463 -DE,IL,1,289,201912,3345046 -DE,IL,1,291,201912,35015 -DE,IL,1,292,201912,13596 -DE,IL,1,293,201912,451537 -DE,IL,1,302,201912,12008 -DE,IL,1,303,201912,3424545 -DE,IL,1,309,201912,1247 -DE,IL,1,310,201912,651457 -DE,IL,1,321,201912,1745914 -DE,IL,1,322,201912,16292 -DE,IL,1,323,201912,63458 -DE,IL,1,324,201912,51897 -DE,IL,1,325,201912,13004929 -DE,IL,1,329,201912,218778 -DE,IL,2,011,201912,60552 -DE,IL,2,012,201912,178862 -DE,IL,2,013,201912,3570 -DE,IL,2,014,201912,11544 -DE,IL,2,081,201912,85620 -DE,IL,2,089,201912,43727 -DE,IL,2,101,201912,118874 -DE,IL,2,103,201912,454815 -DE,IL,2,104,201912,267392 -DE,IL,2,105,201912,1501243 -DE,IL,2,106,201912,1036014 -DE,IL,2,107,201912,722214 -DE,IL,2,108,201912,5986719 -DE,IL,2,109,201912,568836 -DE,IL,2,110,201912,2459183 -DE,IL,2,120,201912,132387 -DE,IL,2,131,201912,34114 -DE,IL,2,132,201912,73323 -DE,IL,2,139,201912,648568 -DE,IL,2,141,201912,1058229 -DE,IL,2,142,201912,23 -DE,IL,2,143,201912,207604 -DE,IL,2,151,201912,320331 -DE,IL,2,152,201912,876371 -DE,IL,2,161,201912,1181270 -DE,IL,2,162,201912,1092235 -DE,IL,2,171,201912,2729546 -DE,IL,2,172,201912,6072385 -DE,IL,2,181,201912,8967 -DE,IL,2,192,201912,1187757 -DE,IL,2,201,201912,22095531 -DE,IL,2,202,201912,300986 -DE,IL,2,203,201912,2579803 -DE,IL,2,204,201912,6393949 -DE,IL,2,205,201912,12597354 -DE,IL,2,206,201912,392945 -DE,IL,2,20S,201912,4840 -DE,IL,2,211,201912,1575389 -DE,IL,2,212,201912,32372025 -DE,IL,2,221,201912,3103871 -DE,IL,2,222,201912,8941689 -DE,IL,2,231,201912,1205103 -DE,IL,2,232,201912,130670 -DE,IL,2,233,201912,250382 -DE,IL,2,234,201912,688771 -DE,IL,2,235,201912,282257 -DE,IL,2,236,201912,411628 -DE,IL,2,239,201912,1078841 -DE,IL,2,241,201912,1486575 -DE,IL,2,242,201912,651571 -DE,IL,2,243,201912,143342 -DE,IL,2,244,201912,3104246 -DE,IL,2,245,201912,8408 -DE,IL,2,251,201912,1350101 -DE,IL,2,252,201912,74426 -DE,IL,2,253,201912,1448 -DE,IL,2,254,201912,68269 -DE,IL,2,257,201912,4048433 -DE,IL,2,259,201912,3179606 -DE,IL,2,261,201912,11780813 -DE,IL,2,262,201912,6167426 -DE,IL,2,263,201912,4931264 -DE,IL,2,264,201912,1284318 -DE,IL,2,265,201912,15038268 -DE,IL,2,266,201912,4671499 -DE,IL,2,267,201912,8318983 -DE,IL,2,268,201912,37741 -DE,IL,2,271,201912,7871418 -DE,IL,2,272,201912,1916538 -DE,IL,2,273,201912,4257462 -DE,IL,2,274,201912,1724676 -DE,IL,2,275,201912,6133351 -DE,IL,2,279,201912,8751390 -DE,IL,2,281,201912,14760162 -DE,IL,2,282,201912,23988203 -DE,IL,2,283,201912,1153021 -DE,IL,2,284,201912,3101444 -DE,IL,2,289,201912,16000131 -DE,IL,2,291,201912,27076641 -DE,IL,2,292,201912,663750 -DE,IL,2,293,201912,4417603 -DE,IL,2,301,201912,11100000 -DE,IL,2,302,201912,363583 -DE,IL,2,303,201912,2811552 -DE,IL,2,309,201912,701982 -DE,IL,2,310,201912,1807608 -DE,IL,2,321,201912,529132 -DE,IL,2,322,201912,166702 -DE,IL,2,323,201912,964306 -DE,IL,2,324,201912,698163 -DE,IL,2,325,201912,12203790 -DE,IL,2,329,201912,1742554 -DE,IL,2,32S,201912,23 -DE,IN,1,011,201912,2193206 -DE,IN,1,012,201912,9373890 -DE,IN,1,013,201912,9079 -DE,IN,1,014,201912,2739 -DE,IN,1,023,201912,506339 -DE,IN,1,030,201912,58653 -DE,IN,1,081,201912,201240 -DE,IN,1,089,201912,246518 -DE,IN,1,101,201912,1145948 -DE,IN,1,102,201912,2592958 -DE,IN,1,103,201912,7425319 -DE,IN,1,104,201912,8305832 -DE,IN,1,105,201912,510 -DE,IN,1,106,201912,1697255 -DE,IN,1,107,201912,61191 -DE,IN,1,108,201912,3925516 -DE,IN,1,109,201912,57405 -DE,IN,1,110,201912,2127 -DE,IN,1,120,201912,2020211 -DE,IN,1,131,201912,3226972 -DE,IN,1,132,201912,1832625 -DE,IN,1,139,201912,21230470 -DE,IN,1,141,201912,46931925 -DE,IN,1,142,201912,29053 -DE,IN,1,143,201912,3071549 -DE,IN,1,151,201912,16024200 -DE,IN,1,152,201912,20716796 -DE,IN,1,161,201912,2660 -DE,IN,1,162,201912,1325073 -DE,IN,1,171,201912,316055 -DE,IN,1,172,201912,326611 -DE,IN,1,181,201912,608 -DE,IN,1,192,201912,33 -DE,IN,1,201,201912,54506766 -DE,IN,1,202,201912,253741 -DE,IN,1,203,201912,909936 -DE,IN,1,204,201912,1848912 -DE,IN,1,205,201912,5743539 -DE,IN,1,206,201912,751155 -DE,IN,1,211,201912,16141988 -DE,IN,1,212,201912,27023217 -DE,IN,1,221,201912,10528356 -DE,IN,1,222,201912,6238987 -DE,IN,1,231,201912,1545975 -DE,IN,1,232,201912,373951 -DE,IN,1,233,201912,160749 -DE,IN,1,234,201912,991733 -DE,IN,1,235,201912,206 -DE,IN,1,236,201912,3354 -DE,IN,1,237,201912,2015730 -DE,IN,1,239,201912,4933995 -DE,IN,1,241,201912,4890791 -DE,IN,1,242,201912,2674435 -DE,IN,1,243,201912,4071124 -DE,IN,1,244,201912,1380446 -DE,IN,1,245,201912,66470 -DE,IN,1,251,201912,877079 -DE,IN,1,252,201912,24854 -DE,IN,1,253,201912,1569 -DE,IN,1,257,201912,5757561 -DE,IN,1,259,201912,15301522 -DE,IN,1,261,201912,2010352 -DE,IN,1,262,201912,366285 -DE,IN,1,263,201912,20281907 -DE,IN,1,264,201912,658951 -DE,IN,1,265,201912,5472078 -DE,IN,1,266,201912,1225811 -DE,IN,1,267,201912,179342 -DE,IN,1,268,201912,36662 -DE,IN,1,271,201912,9871785 -DE,IN,1,272,201912,1705593 -DE,IN,1,273,201912,4495494 -DE,IN,1,274,201912,2484343 -DE,IN,1,275,201912,165958 -DE,IN,1,279,201912,7047086 -DE,IN,1,281,201912,32555446 -DE,IN,1,282,201912,4825195 -DE,IN,1,283,201912,1194354 -DE,IN,1,284,201912,1721515 -DE,IN,1,289,201912,3989957 -DE,IN,1,291,201912,75253 -DE,IN,1,292,201912,1606663 -DE,IN,1,293,201912,13847783 -DE,IN,1,302,201912,186573 -DE,IN,1,303,201912,3456162 -DE,IN,1,309,201912,1263568 -DE,IN,1,310,201912,5409188 -DE,IN,1,321,201912,6732440 -DE,IN,1,322,201912,287926 -DE,IN,1,323,201912,388357 -DE,IN,1,324,201912,337024 -DE,IN,1,325,201912,4836105 -DE,IN,1,329,201912,2916489 -DE,IN,2,011,201912,7670 -DE,IN,2,012,201912,386267 -DE,IN,2,013,201912,10 -DE,IN,2,014,201912,89647 -DE,IN,2,022,201912,141702 -DE,IN,2,023,201912,12138 -DE,IN,2,072,201912,183600 -DE,IN,2,081,201912,130369 -DE,IN,2,089,201912,682679 -DE,IN,2,101,201912,76856 -DE,IN,2,103,201912,99689 -DE,IN,2,104,201912,197835 -DE,IN,2,105,201912,872346 -DE,IN,2,106,201912,143014 -DE,IN,2,107,201912,22260 -DE,IN,2,108,201912,891178 -DE,IN,2,109,201912,260121 -DE,IN,2,110,201912,354736 -DE,IN,2,120,201912,30507 -DE,IN,2,131,201912,462383 -DE,IN,2,132,201912,169749 -DE,IN,2,139,201912,4647099 -DE,IN,2,141,201912,614797 -DE,IN,2,142,201912,33 -DE,IN,2,143,201912,19804 -DE,IN,2,151,201912,877526 -DE,IN,2,152,201912,203141 -DE,IN,2,161,201912,4427798 -DE,IN,2,162,201912,544763 -DE,IN,2,171,201912,4995803 -DE,IN,2,172,201912,1146332 -DE,IN,2,181,201912,51638 -DE,IN,2,192,201912,2003396 -DE,IN,2,201,201912,71284066 -DE,IN,2,202,201912,1239615 -DE,IN,2,203,201912,4799612 -DE,IN,2,204,201912,7408369 -DE,IN,2,205,201912,23222238 -DE,IN,2,206,201912,793896 -DE,IN,2,20S,201912,10294907 -DE,IN,2,211,201912,5402714 -DE,IN,2,212,201912,17331619 -DE,IN,2,221,201912,7073012 -DE,IN,2,222,201912,13977861 -DE,IN,2,231,201912,2709272 -DE,IN,2,232,201912,2102596 -DE,IN,2,233,201912,51983 -DE,IN,2,234,201912,1685655 -DE,IN,2,235,201912,23769 -DE,IN,2,236,201912,364662 -DE,IN,2,237,201912,3292 -DE,IN,2,239,201912,3089160 -DE,IN,2,241,201912,8354506 -DE,IN,2,242,201912,2686106 -DE,IN,2,243,201912,2917863 -DE,IN,2,244,201912,15255774 -DE,IN,2,245,201912,14155 -DE,IN,2,251,201912,1493844 -DE,IN,2,252,201912,261998 -DE,IN,2,253,201912,267082 -DE,IN,2,254,201912,591198 -DE,IN,2,257,201912,11578681 -DE,IN,2,259,201912,13609629 -DE,IN,2,261,201912,8617536 -DE,IN,2,262,201912,4352256 -DE,IN,2,263,201912,18559967 -DE,IN,2,264,201912,1618702 -DE,IN,2,265,201912,57963909 -DE,IN,2,266,201912,10852413 -DE,IN,2,267,201912,10245615 -DE,IN,2,268,201912,14386 -DE,IN,2,271,201912,34647852 -DE,IN,2,272,201912,738550 -DE,IN,2,273,201912,10695196 -DE,IN,2,274,201912,5685703 -DE,IN,2,275,201912,698524 -DE,IN,2,279,201912,22617218 -DE,IN,2,281,201912,80070012 -DE,IN,2,282,201912,104450110 -DE,IN,2,283,201912,410786 -DE,IN,2,284,201912,21028864 -DE,IN,2,289,201912,99414327 -DE,IN,2,291,201912,1070877 -DE,IN,2,292,201912,2154272 -DE,IN,2,293,201912,27176211 -DE,IN,2,302,201912,1832001 -DE,IN,2,303,201912,499402469 -DE,IN,2,309,201912,784633 -DE,IN,2,310,201912,3714326 -DE,IN,2,321,201912,650031 -DE,IN,2,322,201912,41367 -DE,IN,2,323,201912,50764 -DE,IN,2,324,201912,110019 -DE,IN,2,325,201912,19008721 -DE,IN,2,329,201912,1761335 -DE,IQ,1,011,201912,4892 -DE,IQ,1,061,201912,82455766 -DE,IQ,1,103,201912,71215 -DE,IQ,1,106,201912,1500 -DE,IQ,1,108,201912,21717 -DE,IQ,1,139,201912,9750 -DE,IQ,1,141,201912,3626 -DE,IQ,1,152,201912,311 -DE,IQ,1,211,201912,23 -DE,IQ,1,222,201912,1119 -DE,IQ,1,263,201912,1933 -DE,IQ,1,275,201912,3340 -DE,IQ,1,310,201912,1580 -DE,IQ,2,011,201912,840218 -DE,IQ,2,014,201912,257310 -DE,IQ,2,081,201912,5336 -DE,IQ,2,089,201912,185 -DE,IQ,2,101,201912,1630 -DE,IQ,2,103,201912,139 -DE,IQ,2,105,201912,483551 -DE,IQ,2,106,201912,47466 -DE,IQ,2,107,201912,87831 -DE,IQ,2,108,201912,2700270 -DE,IQ,2,109,201912,174530 -DE,IQ,2,110,201912,387342 -DE,IQ,2,120,201912,34626 -DE,IQ,2,139,201912,439355 -DE,IQ,2,141,201912,940337 -DE,IQ,2,143,201912,103611 -DE,IQ,2,151,201912,100517 -DE,IQ,2,152,201912,140236 -DE,IQ,2,162,201912,107440 -DE,IQ,2,171,201912,458633 -DE,IQ,2,172,201912,61827 -DE,IQ,2,192,201912,1194412 -DE,IQ,2,201,201912,621041 -DE,IQ,2,202,201912,3601 -DE,IQ,2,203,201912,83223 -DE,IQ,2,204,201912,1449319 -DE,IQ,2,205,201912,1549804 -DE,IQ,2,211,201912,64076 -DE,IQ,2,212,201912,4116833 -DE,IQ,2,221,201912,246318 -DE,IQ,2,222,201912,1189182 -DE,IQ,2,231,201912,9565 -DE,IQ,2,232,201912,54387 -DE,IQ,2,233,201912,28200 -DE,IQ,2,234,201912,27588 -DE,IQ,2,239,201912,19773 -DE,IQ,2,242,201912,85543 -DE,IQ,2,243,201912,6930 -DE,IQ,2,244,201912,105033 -DE,IQ,2,251,201912,16955 -DE,IQ,2,252,201912,14821 -DE,IQ,2,257,201912,126151 -DE,IQ,2,259,201912,1560899 -DE,IQ,2,261,201912,2956162 -DE,IQ,2,262,201912,175127 -DE,IQ,2,263,201912,464418 -DE,IQ,2,264,201912,159493 -DE,IQ,2,265,201912,1725784 -DE,IQ,2,266,201912,4324023 -DE,IQ,2,267,201912,1893999 -DE,IQ,2,268,201912,1505 -DE,IQ,2,271,201912,10956020 -DE,IQ,2,272,201912,161963 -DE,IQ,2,273,201912,280472 -DE,IQ,2,274,201912,252387 -DE,IQ,2,275,201912,1046721 -DE,IQ,2,279,201912,650487 -DE,IQ,2,281,201912,7239795 -DE,IQ,2,282,201912,3858049 -DE,IQ,2,283,201912,398906 -DE,IQ,2,284,201912,179694 -DE,IQ,2,289,201912,1836912 -DE,IQ,2,291,201912,7104744 -DE,IQ,2,292,201912,18000 -DE,IQ,2,293,201912,280518 -DE,IQ,2,303,201912,231032 -DE,IQ,2,309,201912,760 -DE,IQ,2,310,201912,160366 -DE,IQ,2,323,201912,2036 -DE,IQ,2,324,201912,11590 -DE,IQ,2,325,201912,3538691 -DE,IQ,2,329,201912,95398 -DE,IR,1,011,201912,29815 -DE,IR,1,012,201912,6598216 -DE,IR,1,023,201912,390891 -DE,IR,1,101,201912,1659757 -DE,IR,1,102,201912,11845 -DE,IR,1,103,201912,3414212 -DE,IR,1,106,201912,10804 -DE,IR,1,107,201912,33660 -DE,IR,1,108,201912,490704 -DE,IR,1,110,201912,7403 -DE,IR,1,120,201912,793 -DE,IR,1,139,201912,1076689 -DE,IR,1,141,201912,7839 -DE,IR,1,151,201912,10763 -DE,IR,1,162,201912,480 -DE,IR,1,172,201912,3141 -DE,IR,1,201,201912,222805 -DE,IR,1,204,201912,1305 -DE,IR,1,205,201912,21656 -DE,IR,1,211,201912,17 -DE,IR,1,222,201912,45449 -DE,IR,1,231,201912,1914 -DE,IR,1,233,201912,8083 -DE,IR,1,234,201912,11779 -DE,IR,1,237,201912,29 -DE,IR,1,251,201912,192 -DE,IR,1,257,201912,33853 -DE,IR,1,259,201912,7107 -DE,IR,1,262,201912,76 -DE,IR,1,274,201912,2941 -DE,IR,1,275,201912,5452 -DE,IR,1,279,201912,5 -DE,IR,1,282,201912,23612 -DE,IR,1,289,201912,25266 -DE,IR,1,292,201912,41040 -DE,IR,1,293,201912,330 -DE,IR,1,303,201912,5635 -DE,IR,1,310,201912,8422 -DE,IR,1,329,201912,92 -DE,IR,2,011,201912,11316043 -DE,IR,2,012,201912,30753 -DE,IR,2,014,201912,660 -DE,IR,2,081,201912,18710 -DE,IR,2,089,201912,12360 -DE,IR,2,101,201912,1470 -DE,IR,2,104,201912,49165 -DE,IR,2,106,201912,121874 -DE,IR,2,107,201912,5022 -DE,IR,2,108,201912,4766815 -DE,IR,2,109,201912,439587 -DE,IR,2,110,201912,10066 -DE,IR,2,120,201912,2627226 -DE,IR,2,132,201912,37319 -DE,IR,2,139,201912,881568 -DE,IR,2,141,201912,25 -DE,IR,2,151,201912,791 -DE,IR,2,152,201912,5186 -DE,IR,2,161,201912,56375 -DE,IR,2,171,201912,1015811 -DE,IR,2,172,201912,920543 -DE,IR,2,181,201912,16350 -DE,IR,2,192,201912,313732 -DE,IR,2,201,201912,4904926 -DE,IR,2,202,201912,379061 -DE,IR,2,203,201912,916037 -DE,IR,2,204,201912,674339 -DE,IR,2,205,201912,6460597 -DE,IR,2,211,201912,6446909 -DE,IR,2,212,201912,20318594 -DE,IR,2,221,201912,1329356 -DE,IR,2,222,201912,2009031 -DE,IR,2,231,201912,4919 -DE,IR,2,232,201912,405211 -DE,IR,2,234,201912,44908 -DE,IR,2,239,201912,235799 -DE,IR,2,241,201912,519504 -DE,IR,2,242,201912,61328 -DE,IR,2,243,201912,616341 -DE,IR,2,244,201912,525579 -DE,IR,2,245,201912,28 -DE,IR,2,251,201912,344181 -DE,IR,2,252,201912,3932 -DE,IR,2,257,201912,1978966 -DE,IR,2,259,201912,2444800 -DE,IR,2,261,201912,884559 -DE,IR,2,262,201912,2241023 -DE,IR,2,263,201912,230359 -DE,IR,2,264,201912,61038 -DE,IR,2,265,201912,4859870 -DE,IR,2,266,201912,1231624 -DE,IR,2,267,201912,804646 -DE,IR,2,271,201912,6888594 -DE,IR,2,272,201912,114499 -DE,IR,2,273,201912,423057 -DE,IR,2,274,201912,216455 -DE,IR,2,275,201912,38025 -DE,IR,2,279,201912,484438 -DE,IR,2,281,201912,22179585 -DE,IR,2,282,201912,27339230 -DE,IR,2,283,201912,176580 -DE,IR,2,284,201912,982908 -DE,IR,2,289,201912,4880652 -DE,IR,2,291,201912,961790 -DE,IR,2,293,201912,190346 -DE,IR,2,302,201912,1168968 -DE,IR,2,303,201912,635194 -DE,IR,2,309,201912,2628 -DE,IR,2,310,201912,68545 -DE,IR,2,323,201912,59476 -DE,IR,2,324,201912,867 -DE,IR,2,325,201912,6827932 -DE,IR,2,329,201912,56422 -DE,IS,1,014,201912,448602 -DE,IS,1,030,201912,910287 -DE,IS,1,089,201912,3207 -DE,IS,1,101,201912,121840 -DE,IS,1,102,201912,6443516 -DE,IS,1,104,201912,173112 -DE,IS,1,108,201912,312901 -DE,IS,1,109,201912,12670 -DE,IS,1,110,201912,174 -DE,IS,1,131,201912,8768 -DE,IS,1,139,201912,12181 -DE,IS,1,141,201912,54911 -DE,IS,1,143,201912,115033 -DE,IS,1,151,201912,95 -DE,IS,1,162,201912,4832 -DE,IS,1,192,201912,1566 -DE,IS,1,201,201912,307558 -DE,IS,1,204,201912,116295 -DE,IS,1,205,201912,94146 -DE,IS,1,211,201912,5164 -DE,IS,1,212,201912,886 -DE,IS,1,222,201912,29619 -DE,IS,1,252,201912,310 -DE,IS,1,257,201912,5330 -DE,IS,1,259,201912,62 -DE,IS,1,262,201912,4878 -DE,IS,1,263,201912,13118 -DE,IS,1,265,201912,73201 -DE,IS,1,266,201912,7518 -DE,IS,1,271,201912,2816 -DE,IS,1,274,201912,1018 -DE,IS,1,281,201912,1567 -DE,IS,1,282,201912,21573 -DE,IS,1,289,201912,26701 -DE,IS,1,303,201912,2862 -DE,IS,1,321,201912,1327 -DE,IS,1,325,201912,34711 -DE,IS,2,011,201912,382733 -DE,IS,2,012,201912,174667 -DE,IS,2,081,201912,7759 -DE,IS,2,089,201912,131 -DE,IS,2,101,201912,158054 -DE,IS,2,102,201912,14530 -DE,IS,2,103,201912,112274 -DE,IS,2,104,201912,362688 -DE,IS,2,105,201912,43516 -DE,IS,2,106,201912,139262 -DE,IS,2,107,201912,256635 -DE,IS,2,108,201912,468796 -DE,IS,2,109,201912,53560 -DE,IS,2,110,201912,102685 -DE,IS,2,131,201912,3254 -DE,IS,2,132,201912,15586 -DE,IS,2,139,201912,314826 -DE,IS,2,141,201912,563809 -DE,IS,2,142,201912,7121 -DE,IS,2,143,201912,77141 -DE,IS,2,151,201912,38270 -DE,IS,2,152,201912,87311 -DE,IS,2,161,201912,9892 -DE,IS,2,162,201912,584257 -DE,IS,2,171,201912,138100 -DE,IS,2,172,201912,206000 -DE,IS,2,17S,201912,82 -DE,IS,2,192,201912,94829 -DE,IS,2,201,201912,277519 -DE,IS,2,202,201912,24666 -DE,IS,2,203,201912,207000 -DE,IS,2,204,201912,309649 -DE,IS,2,205,201912,1074759 -DE,IS,2,211,201912,12355 -DE,IS,2,212,201912,872412 -DE,IS,2,221,201912,293433 -DE,IS,2,222,201912,1194877 -DE,IS,2,231,201912,139203 -DE,IS,2,232,201912,76965 -DE,IS,2,233,201912,2058 -DE,IS,2,234,201912,65044 -DE,IS,2,235,201912,19296 -DE,IS,2,236,201912,71049 -DE,IS,2,237,201912,788 -DE,IS,2,239,201912,138385 -DE,IS,2,241,201912,117105 -DE,IS,2,242,201912,412692 -DE,IS,2,243,201912,25068 -DE,IS,2,244,201912,855666 -DE,IS,2,245,201912,13737 -DE,IS,2,251,201912,199363 -DE,IS,2,252,201912,26111 -DE,IS,2,254,201912,31006 -DE,IS,2,257,201912,435514 -DE,IS,2,259,201912,563412 -DE,IS,2,261,201912,94045 -DE,IS,2,262,201912,493135 -DE,IS,2,263,201912,718660 -DE,IS,2,264,201912,198847 -DE,IS,2,265,201912,395903 -DE,IS,2,266,201912,95715 -DE,IS,2,267,201912,207181 -DE,IS,2,271,201912,658162 -DE,IS,2,272,201912,50538 -DE,IS,2,273,201912,453403 -DE,IS,2,274,201912,374492 -DE,IS,2,275,201912,164639 -DE,IS,2,279,201912,292030 -DE,IS,2,281,201912,1046908 -DE,IS,2,282,201912,1919109 -DE,IS,2,283,201912,163755 -DE,IS,2,284,201912,63051 -DE,IS,2,289,201912,777041 -DE,IS,2,291,201912,4574308 -DE,IS,2,292,201912,332527 -DE,IS,2,293,201912,272387 -DE,IS,2,303,201912,4258 -DE,IS,2,309,201912,66038 -DE,IS,2,310,201912,724997 -DE,IS,2,321,201912,122247 -DE,IS,2,322,201912,12445 -DE,IS,2,323,201912,37556 -DE,IS,2,324,201912,56104 -DE,IS,2,325,201912,948507 -DE,IS,2,329,201912,217804 -DE,IS,2,32S,201912,54 -DE,IT,1,011,201912,59325116 -DE,IT,1,012,201912,58688124 -DE,IT,1,013,201912,1250562 -DE,IT,1,014,201912,1147580 -DE,IT,1,01M,201912,26714 -DE,IT,1,022,201912,12514 -DE,IT,1,023,201912,1274490 -DE,IT,1,030,201912,3495154 -DE,IT,1,051,201912,15561 -DE,IT,1,072,201912,745127 -DE,IT,1,081,201912,2027187 -DE,IT,1,089,201912,2240372 -DE,IT,1,101,201912,54564803 -DE,IT,1,102,201912,7095643 -DE,IT,1,103,201912,59694323 -DE,IT,1,104,201912,20114899 -DE,IT,1,105,201912,50916839 -DE,IT,1,106,201912,17609428 -DE,IT,1,107,201912,51353250 -DE,IT,1,108,201912,67860177 -DE,IT,1,109,201912,3861329 -DE,IT,1,10M,201912,19329093 -DE,IT,1,110,201912,113234429 -DE,IT,1,120,201912,862443 -DE,IT,1,131,201912,7388184 -DE,IT,1,132,201912,24560483 -DE,IT,1,139,201912,27806545 -DE,IT,1,13M,201912,1703491 -DE,IT,1,141,201912,146415918 -DE,IT,1,142,201912,534615 -DE,IT,1,143,201912,33447168 -DE,IT,1,14M,201912,19054841 -DE,IT,1,151,201912,41781684 -DE,IT,1,152,201912,91389305 -DE,IT,1,161,201912,869529 -DE,IT,1,162,201912,12322557 -DE,IT,1,16M,201912,21375 -DE,IT,1,171,201912,35877488 -DE,IT,1,172,201912,35121395 -DE,IT,1,17M,201912,8380930 -DE,IT,1,181,201912,41640 -DE,IT,1,191,201912,152154 -DE,IT,1,192,201912,7265673 -DE,IT,1,201,201912,152641850 -DE,IT,1,202,201912,1037744 -DE,IT,1,203,201912,11807284 -DE,IT,1,204,201912,44635560 -DE,IT,1,205,201912,45696411 -DE,IT,1,206,201912,6463851 -DE,IT,1,20M,201912,6636656 -DE,IT,1,211,201912,22515151 -DE,IT,1,212,201912,344310491 -DE,IT,1,221,201912,57545198 -DE,IT,1,222,201912,115394922 -DE,IT,1,231,201912,17176443 -DE,IT,1,232,201912,2250032 -DE,IT,1,233,201912,21706975 -DE,IT,1,234,201912,4162899 -DE,IT,1,235,201912,1068047 -DE,IT,1,236,201912,1557394 -DE,IT,1,237,201912,4410186 -DE,IT,1,239,201912,3940412 -DE,IT,1,23M,201912,5724375 -DE,IT,1,241,201912,91149162 -DE,IT,1,242,201912,54461032 -DE,IT,1,243,201912,28269455 -DE,IT,1,244,201912,134907132 -DE,IT,1,245,201912,787373 -DE,IT,1,251,201912,8554746 -DE,IT,1,252,201912,9365744 -DE,IT,1,253,201912,245585 -DE,IT,1,254,201912,1218249 -DE,IT,1,257,201912,38462971 -DE,IT,1,259,201912,102834968 -DE,IT,1,25M,201912,5864861 -DE,IT,1,261,201912,5592123 -DE,IT,1,262,201912,22512598 -DE,IT,1,263,201912,18520058 -DE,IT,1,264,201912,16014762 -DE,IT,1,265,201912,36953844 -DE,IT,1,266,201912,5363290 -DE,IT,1,267,201912,4995104 -DE,IT,1,268,201912,44677 -DE,IT,1,271,201912,70476103 -DE,IT,1,272,201912,5148118 -DE,IT,1,273,201912,44283231 -DE,IT,1,274,201912,20427722 -DE,IT,1,275,201912,43384649 -DE,IT,1,279,201912,30642672 -DE,IT,1,281,201912,220353427 -DE,IT,1,282,201912,155177150 -DE,IT,1,283,201912,31002802 -DE,IT,1,284,201912,49618511 -DE,IT,1,289,201912,122446770 -DE,IT,1,291,201912,264126289 -DE,IT,1,292,201912,13506005 -DE,IT,1,293,201912,155034166 -DE,IT,1,301,201912,1607819 -DE,IT,1,302,201912,8812510 -DE,IT,1,303,201912,11452324 -DE,IT,1,309,201912,23125715 -DE,IT,1,30M,201912,116825 -DE,IT,1,310,201912,59093480 -DE,IT,1,321,201912,11584202 -DE,IT,1,322,201912,1088488 -DE,IT,1,323,201912,6925990 -DE,IT,1,324,201912,8560597 -DE,IT,1,325,201912,37084807 -DE,IT,1,329,201912,10867754 -DE,IT,1,32M,201912,95153 -DE,IT,2,011,201912,11021573 -DE,IT,2,012,201912,10958157 -DE,IT,2,013,201912,2376319 -DE,IT,2,014,201912,9191145 -DE,IT,2,01M,201912,264413 -DE,IT,2,022,201912,197781 -DE,IT,2,023,201912,87699 -DE,IT,2,030,201912,116796 -DE,IT,2,072,201912,3209017 -DE,IT,2,081,201912,2754257 -DE,IT,2,089,201912,2330046 -DE,IT,2,101,201912,103854835 -DE,IT,2,102,201912,21485145 -DE,IT,2,103,201912,21079466 -DE,IT,2,104,201912,3577710 -DE,IT,2,105,201912,95340747 -DE,IT,2,106,201912,10148027 -DE,IT,2,107,201912,18947958 -DE,IT,2,108,201912,75966058 -DE,IT,2,109,201912,14609012 -DE,IT,2,10M,201912,6255558 -DE,IT,2,110,201912,25167562 -DE,IT,2,120,201912,25978700 -DE,IT,2,131,201912,6567340 -DE,IT,2,132,201912,4429559 -DE,IT,2,139,201912,27121125 -DE,IT,2,13M,201912,405046 -DE,IT,2,141,201912,66084949 -DE,IT,2,142,201912,480898 -DE,IT,2,143,201912,16466788 -DE,IT,2,14M,201912,3130696 -DE,IT,2,151,201912,12405191 -DE,IT,2,152,201912,40342394 -DE,IT,2,161,201912,5104177 -DE,IT,2,162,201912,14693688 -DE,IT,2,16M,201912,18551 -DE,IT,2,171,201912,60016865 -DE,IT,2,172,201912,19613481 -DE,IT,2,17M,201912,2860917 -DE,IT,2,17S,201912,124923 -DE,IT,2,181,201912,815279 -DE,IT,2,191,201912,14080595 -DE,IT,2,192,201912,6816482 -DE,IT,2,201,201912,238772766 -DE,IT,2,202,201912,7361535 -DE,IT,2,203,201912,20281887 -DE,IT,2,204,201912,38309678 -DE,IT,2,205,201912,104255900 -DE,IT,2,206,201912,3708505 -DE,IT,2,20M,201912,2352911 -DE,IT,2,20S,201912,3491314 -DE,IT,2,211,201912,12275040 -DE,IT,2,212,201912,308389007 -DE,IT,2,221,201912,48328058 -DE,IT,2,222,201912,109266182 -DE,IT,2,231,201912,16027710 -DE,IT,2,232,201912,3136621 -DE,IT,2,233,201912,1799383 -DE,IT,2,234,201912,10160963 -DE,IT,2,235,201912,154452 -DE,IT,2,236,201912,3333791 -DE,IT,2,237,201912,259430 -DE,IT,2,239,201912,13904224 -DE,IT,2,23M,201912,1788997 -DE,IT,2,241,201912,57478153 -DE,IT,2,242,201912,32947950 -DE,IT,2,243,201912,11825520 -DE,IT,2,244,201912,124267666 -DE,IT,2,245,201912,596370 -DE,IT,2,251,201912,17070779 -DE,IT,2,252,201912,7552843 -DE,IT,2,253,201912,383703 -DE,IT,2,254,201912,374945 -DE,IT,2,257,201912,44138350 -DE,IT,2,259,201912,44544418 -DE,IT,2,25M,201912,3029608 -DE,IT,2,261,201912,35613265 -DE,IT,2,262,201912,91399469 -DE,IT,2,263,201912,86318751 -DE,IT,2,264,201912,19775142 -DE,IT,2,265,201912,129206435 -DE,IT,2,266,201912,30309208 -DE,IT,2,267,201912,28090378 -DE,IT,2,268,201912,523105 -DE,IT,2,271,201912,106180474 -DE,IT,2,272,201912,10987040 -DE,IT,2,273,201912,38770144 -DE,IT,2,274,201912,17072323 -DE,IT,2,275,201912,34307894 -DE,IT,2,279,201912,67477319 -DE,IT,2,281,201912,245129594 -DE,IT,2,282,201912,209336237 -DE,IT,2,283,201912,39257592 -DE,IT,2,284,201912,82253746 -DE,IT,2,289,201912,188496873 -DE,IT,2,291,201912,605103292 -DE,IT,2,292,201912,19074040 -DE,IT,2,293,201912,131624018 -DE,IT,2,301,201912,2944614 -DE,IT,2,302,201912,8687360 -DE,IT,2,303,201912,118048382 -DE,IT,2,309,201912,20000082 -DE,IT,2,30M,201912,194059 -DE,IT,2,310,201912,23804297 -DE,IT,2,321,201912,16388723 -DE,IT,2,322,201912,2616764 -DE,IT,2,323,201912,4397495 -DE,IT,2,324,201912,10238465 -DE,IT,2,325,201912,73278334 -DE,IT,2,329,201912,15745856 -DE,IT,2,32M,201912,114943 -DE,IT,2,32S,201912,13328 -DE,JM,1,012,201912,193732 -DE,JM,1,110,201912,190524 -DE,JM,2,012,201912,9269 -DE,JM,2,014,201912,111 -DE,JM,2,101,201912,9112 -DE,JM,2,102,201912,2319 -DE,JM,2,103,201912,473 -DE,JM,2,104,201912,251 -DE,JM,2,105,201912,1635 -DE,JM,2,106,201912,38654 -DE,JM,2,107,201912,541 -DE,JM,2,108,201912,39991 -DE,JM,2,110,201912,188857 -DE,JM,2,120,201912,4187 -DE,JM,2,139,201912,2951 -DE,JM,2,141,201912,5036 -DE,JM,2,143,201912,39 -DE,JM,2,151,201912,463 -DE,JM,2,152,201912,1045 -DE,JM,2,171,201912,80629 -DE,JM,2,172,201912,31732 -DE,JM,2,192,201912,26090 -DE,JM,2,201,201912,130013 -DE,JM,2,202,201912,5638 -DE,JM,2,203,201912,6387 -DE,JM,2,204,201912,27853 -DE,JM,2,205,201912,42968 -DE,JM,2,211,201912,1649 -DE,JM,2,212,201912,171466 -DE,JM,2,221,201912,145537 -DE,JM,2,222,201912,26672 -DE,JM,2,231,201912,36338 -DE,JM,2,239,201912,2189 -DE,JM,2,242,201912,351 -DE,JM,2,244,201912,8 -DE,JM,2,245,201912,123 -DE,JM,2,251,201912,2808 -DE,JM,2,257,201912,13692 -DE,JM,2,259,201912,122201 -DE,JM,2,261,201912,400 -DE,JM,2,262,201912,19775 -DE,JM,2,263,201912,7268 -DE,JM,2,265,201912,164544 -DE,JM,2,271,201912,365548 -DE,JM,2,272,201912,8040 -DE,JM,2,273,201912,16044 -DE,JM,2,274,201912,17566 -DE,JM,2,275,201912,102 -DE,JM,2,279,201912,16833 -DE,JM,2,281,201912,136258 -DE,JM,2,282,201912,158091 -DE,JM,2,289,201912,104123 -DE,JM,2,291,201912,1021265 -DE,JM,2,293,201912,139449 -DE,JM,2,310,201912,2470 -DE,JM,2,323,201912,2101 -DE,JM,2,325,201912,343653 -DE,JM,2,329,201912,904 -DE,JO,1,011,201912,31355 -DE,JO,1,012,201912,33750 -DE,JO,1,103,201912,116750 -DE,JO,1,104,201912,8815 -DE,JO,1,106,201912,9817 -DE,JO,1,107,201912,29589 -DE,JO,1,108,201912,94606 -DE,JO,1,110,201912,2713 -DE,JO,1,120,201912,151444 -DE,JO,1,141,201912,2673 -DE,JO,1,143,201912,4072 -DE,JO,1,172,201912,2274 -DE,JO,1,204,201912,22740 -DE,JO,1,205,201912,1365 -DE,JO,1,211,201912,344 -DE,JO,1,212,201912,1 -DE,JO,1,222,201912,501 -DE,JO,1,244,201912,187394 -DE,JO,1,259,201912,5013 -DE,JO,1,261,201912,1307 -DE,JO,1,262,201912,1043 -DE,JO,1,263,201912,162 -DE,JO,1,265,201912,74757 -DE,JO,1,271,201912,14391 -DE,JO,1,273,201912,1086 -DE,JO,1,279,201912,113 -DE,JO,1,281,201912,101184 -DE,JO,1,282,201912,31926 -DE,JO,1,289,201912,1274 -DE,JO,1,291,201912,3501 -DE,JO,1,293,201912,10368 -DE,JO,1,303,201912,3329 -DE,JO,1,310,201912,2132 -DE,JO,1,321,201912,171 -DE,JO,1,325,201912,398224 -DE,JO,1,329,201912,26780 -DE,JO,2,014,201912,65250 -DE,JO,2,089,201912,35611 -DE,JO,2,101,201912,45742 -DE,JO,2,103,201912,554025 -DE,JO,2,105,201912,432858 -DE,JO,2,106,201912,339748 -DE,JO,2,107,201912,70459 -DE,JO,2,108,201912,870397 -DE,JO,2,109,201912,123495 -DE,JO,2,110,201912,34259 -DE,JO,2,120,201912,423146 -DE,JO,2,131,201912,3332 -DE,JO,2,132,201912,47008 -DE,JO,2,139,201912,245822 -DE,JO,2,141,201912,519335 -DE,JO,2,143,201912,31572 -DE,JO,2,151,201912,37529 -DE,JO,2,152,201912,37430 -DE,JO,2,161,201912,420057 -DE,JO,2,162,201912,71510 -DE,JO,2,171,201912,1020866 -DE,JO,2,172,201912,224024 -DE,JO,2,181,201912,26610 -DE,JO,2,192,201912,712547 -DE,JO,2,201,201912,1504190 -DE,JO,2,202,201912,55392 -DE,JO,2,203,201912,354519 -DE,JO,2,204,201912,897180 -DE,JO,2,205,201912,1572027 -DE,JO,2,211,201912,33242 -DE,JO,2,212,201912,5917168 -DE,JO,2,221,201912,619265 -DE,JO,2,222,201912,1016892 -DE,JO,2,231,201912,46317 -DE,JO,2,232,201912,129230 -DE,JO,2,233,201912,55994 -DE,JO,2,234,201912,97727 -DE,JO,2,235,201912,1095 -DE,JO,2,236,201912,33593 -DE,JO,2,237,201912,712 -DE,JO,2,239,201912,138486 -DE,JO,2,241,201912,164837 -DE,JO,2,242,201912,65719 -DE,JO,2,243,201912,3124 -DE,JO,2,244,201912,985193 -DE,JO,2,251,201912,260576 -DE,JO,2,252,201912,25645 -DE,JO,2,254,201912,20880 -DE,JO,2,257,201912,538283 -DE,JO,2,259,201912,294815 -DE,JO,2,261,201912,58781 -DE,JO,2,262,201912,477053 -DE,JO,2,263,201912,817393 -DE,JO,2,264,201912,98123 -DE,JO,2,265,201912,3092900 -DE,JO,2,266,201912,756615 -DE,JO,2,267,201912,313467 -DE,JO,2,271,201912,637876 -DE,JO,2,272,201912,91122 -DE,JO,2,273,201912,136214 -DE,JO,2,274,201912,194556 -DE,JO,2,275,201912,194231 -DE,JO,2,279,201912,1373426 -DE,JO,2,281,201912,2593397 -DE,JO,2,282,201912,3473385 -DE,JO,2,283,201912,57464 -DE,JO,2,284,201912,20734 -DE,JO,2,289,201912,1364111 -DE,JO,2,291,201912,9670438 -DE,JO,2,292,201912,240692 -DE,JO,2,293,201912,600838 -DE,JO,2,303,201912,17844296 -DE,JO,2,309,201912,47457 -DE,JO,2,310,201912,241698 -DE,JO,2,321,201912,18657 -DE,JO,2,324,201912,4432 -DE,JO,2,325,201912,2108420 -DE,JO,2,329,201912,132813 -DE,JP,1,011,201912,28926 -DE,JP,1,012,201912,375708 -DE,JP,1,014,201912,7211 -DE,JP,1,023,201912,7584 -DE,JP,1,030,201912,488124 -DE,JP,1,072,201912,62054 -DE,JP,1,081,201912,297189 -DE,JP,1,089,201912,567895 -DE,JP,1,101,201912,333790 -DE,JP,1,102,201912,180034 -DE,JP,1,103,201912,127705 -DE,JP,1,104,201912,47969 -DE,JP,1,106,201912,85565 -DE,JP,1,107,201912,91081 -DE,JP,1,108,201912,1964868 -DE,JP,1,109,201912,16 -DE,JP,1,110,201912,244623 -DE,JP,1,131,201912,755513 -DE,JP,1,132,201912,1446942 -DE,JP,1,139,201912,2445729 -DE,JP,1,141,201912,464703 -DE,JP,1,143,201912,96366 -DE,JP,1,151,201912,298545 -DE,JP,1,152,201912,58433 -DE,JP,1,162,201912,74686 -DE,JP,1,171,201912,1199665 -DE,JP,1,172,201912,345943 -DE,JP,1,181,201912,2340 -DE,JP,1,192,201912,78798 -DE,JP,1,201,201912,79656669 -DE,JP,1,202,201912,944929 -DE,JP,1,203,201912,9129205 -DE,JP,1,204,201912,2111490 -DE,JP,1,205,201912,41731912 -DE,JP,1,206,201912,1618194 -DE,JP,1,211,201912,4955355 -DE,JP,1,212,201912,14781460 -DE,JP,1,221,201912,7742886 -DE,JP,1,222,201912,16342832 -DE,JP,1,231,201912,4458038 -DE,JP,1,232,201912,2621799 -DE,JP,1,233,201912,2855 -DE,JP,1,234,201912,3761972 -DE,JP,1,239,201912,8646781 -DE,JP,1,241,201912,2052103 -DE,JP,1,242,201912,904023 -DE,JP,1,243,201912,1008531 -DE,JP,1,244,201912,10762497 -DE,JP,1,245,201912,5884 -DE,JP,1,251,201912,153347 -DE,JP,1,252,201912,3133 -DE,JP,1,254,201912,59456 -DE,JP,1,257,201912,13957302 -DE,JP,1,259,201912,5912353 -DE,JP,1,261,201912,89708603 -DE,JP,1,262,201912,43540974 -DE,JP,1,263,201912,24518121 -DE,JP,1,264,201912,52050582 -DE,JP,1,265,201912,68915344 -DE,JP,1,266,201912,17517844 -DE,JP,1,267,201912,55410061 -DE,JP,1,268,201912,6922068 -DE,JP,1,271,201912,34256561 -DE,JP,1,272,201912,12648714 -DE,JP,1,273,201912,14671615 -DE,JP,1,274,201912,4577074 -DE,JP,1,275,201912,1070599 -DE,JP,1,279,201912,83410875 -DE,JP,1,281,201912,75963881 -DE,JP,1,282,201912,29584650 -DE,JP,1,283,201912,2358909 -DE,JP,1,284,201912,14764036 -DE,JP,1,289,201912,50603071 -DE,JP,1,291,201912,27420995 -DE,JP,1,292,201912,81250 -DE,JP,1,293,201912,38826400 -DE,JP,1,302,201912,57770 -DE,JP,1,303,201912,38743467 -DE,JP,1,309,201912,12330734 -DE,JP,1,310,201912,660224 -DE,JP,1,321,201912,850814 -DE,JP,1,322,201912,3143174 -DE,JP,1,323,201912,925160 -DE,JP,1,324,201912,1004439 -DE,JP,1,325,201912,41307531 -DE,JP,1,329,201912,3611398 -DE,JP,2,011,201912,266490 -DE,JP,2,012,201912,2821899 -DE,JP,2,013,201912,32580 -DE,JP,2,014,201912,469658 -DE,JP,2,022,201912,653665 -DE,JP,2,023,201912,711 -DE,JP,2,030,201912,10951 -DE,JP,2,081,201912,115308 -DE,JP,2,089,201912,447660 -DE,JP,2,101,201912,7418834 -DE,JP,2,102,201912,1893667 -DE,JP,2,103,201912,1025183 -DE,JP,2,104,201912,609176 -DE,JP,2,105,201912,6381218 -DE,JP,2,106,201912,2628335 -DE,JP,2,107,201912,242656 -DE,JP,2,108,201912,6396707 -DE,JP,2,109,201912,508954 -DE,JP,2,110,201912,4002082 -DE,JP,2,120,201912,3481484 -DE,JP,2,131,201912,168759 -DE,JP,2,132,201912,387948 -DE,JP,2,139,201912,4070107 -DE,JP,2,141,201912,2267550 -DE,JP,2,142,201912,8224 -DE,JP,2,143,201912,328599 -DE,JP,2,151,201912,2811703 -DE,JP,2,152,201912,4425891 -DE,JP,2,161,201912,2980200 -DE,JP,2,162,201912,3069966 -DE,JP,2,171,201912,2096420 -DE,JP,2,172,201912,1194818 -DE,JP,2,17S,201912,754 -DE,JP,2,181,201912,16889 -DE,JP,2,192,201912,1139093 -DE,JP,2,201,201912,81412041 -DE,JP,2,202,201912,1240435 -DE,JP,2,203,201912,2990668 -DE,JP,2,204,201912,8464117 -DE,JP,2,205,201912,28066977 -DE,JP,2,206,201912,527004 -DE,JP,2,20S,201912,923762 -DE,JP,2,211,201912,23510413 -DE,JP,2,212,201912,115355117 -DE,JP,2,221,201912,7420196 -DE,JP,2,222,201912,13583809 -DE,JP,2,231,201912,6216813 -DE,JP,2,232,201912,677241 -DE,JP,2,233,201912,180273 -DE,JP,2,234,201912,2917294 -DE,JP,2,235,201912,5852 -DE,JP,2,236,201912,143838 -DE,JP,2,237,201912,26579 -DE,JP,2,239,201912,2533859 -DE,JP,2,241,201912,1294459 -DE,JP,2,242,201912,584940 -DE,JP,2,243,201912,1324008 -DE,JP,2,244,201912,24521201 -DE,JP,2,245,201912,13919 -DE,JP,2,251,201912,970762 -DE,JP,2,252,201912,1274640 -DE,JP,2,253,201912,617196 -DE,JP,2,254,201912,114259 -DE,JP,2,257,201912,9289365 -DE,JP,2,259,201912,9690283 -DE,JP,2,261,201912,14432657 -DE,JP,2,262,201912,14598840 -DE,JP,2,263,201912,10168742 -DE,JP,2,264,201912,3797709 -DE,JP,2,265,201912,73313939 -DE,JP,2,266,201912,21844519 -DE,JP,2,267,201912,26137588 -DE,JP,2,268,201912,23716 -DE,JP,2,271,201912,29780140 -DE,JP,2,272,201912,2320850 -DE,JP,2,273,201912,10955861 -DE,JP,2,274,201912,6382465 -DE,JP,2,275,201912,5852317 -DE,JP,2,279,201912,33441102 -DE,JP,2,281,201912,71850961 -DE,JP,2,282,201912,55513123 -DE,JP,2,283,201912,15434446 -DE,JP,2,284,201912,23131667 -DE,JP,2,289,201912,61266229 -DE,JP,2,291,201912,280701693 -DE,JP,2,292,201912,3715465 -DE,JP,2,293,201912,46496513 -DE,JP,2,301,201912,99000 -DE,JP,2,302,201912,5634379 -DE,JP,2,303,201912,21821959 -DE,JP,2,309,201912,6099014 -DE,JP,2,310,201912,4801500 -DE,JP,2,321,201912,1400695 -DE,JP,2,322,201912,2674088 -DE,JP,2,323,201912,847571 -DE,JP,2,324,201912,1294587 -DE,JP,2,325,201912,29464397 -DE,JP,2,329,201912,4621476 -DE,JP,2,32S,201912,229 -DE,KE,1,011,201912,3233840 -DE,KE,1,012,201912,1741580 -DE,KE,1,013,201912,591324 -DE,KE,1,023,201912,45256 -DE,KE,1,030,201912,12781 -DE,KE,1,103,201912,794456 -DE,KE,1,108,201912,1092218 -DE,KE,1,110,201912,1 -DE,KE,1,139,201912,1699 -DE,KE,1,141,201912,40627 -DE,KE,1,151,201912,1190 -DE,KE,1,152,201912,171 -DE,KE,1,162,201912,12224 -DE,KE,1,205,201912,2 -DE,KE,1,211,201912,443 -DE,KE,1,212,201912,243 -DE,KE,1,222,201912,10358 -DE,KE,1,237,201912,35697 -DE,KE,1,259,201912,954 -DE,KE,1,262,201912,138 -DE,KE,1,263,201912,72 -DE,KE,1,265,201912,1000 -DE,KE,1,271,201912,582 -DE,KE,1,274,201912,599 -DE,KE,1,281,201912,23 -DE,KE,1,321,201912,14122 -DE,KE,1,323,201912,168 -DE,KE,1,324,201912,143323 -DE,KE,1,325,201912,2419 -DE,KE,1,329,201912,4 -DE,KE,2,012,201912,328595 -DE,KE,2,013,201912,2275 -DE,KE,2,014,201912,400 -DE,KE,2,089,201912,3701 -DE,KE,2,101,201912,142540 -DE,KE,2,104,201912,331812 -DE,KE,2,106,201912,3646 -DE,KE,2,107,201912,8798 -DE,KE,2,108,201912,513587 -DE,KE,2,109,201912,141788 -DE,KE,2,110,201912,23188 -DE,KE,2,139,201912,90803 -DE,KE,2,141,201912,241528 -DE,KE,2,143,201912,6172 -DE,KE,2,151,201912,16743 -DE,KE,2,152,201912,22717 -DE,KE,2,162,201912,865 -DE,KE,2,171,201912,445722 -DE,KE,2,172,201912,69562 -DE,KE,2,181,201912,7410 -DE,KE,2,192,201912,15749 -DE,KE,2,201,201912,1625434 -DE,KE,2,202,201912,212242 -DE,KE,2,203,201912,68608 -DE,KE,2,204,201912,153359 -DE,KE,2,205,201912,1217093 -DE,KE,2,20S,201912,562 -DE,KE,2,211,201912,169286 -DE,KE,2,212,201912,1037594 -DE,KE,2,221,201912,241573 -DE,KE,2,222,201912,198774 -DE,KE,2,231,201912,60204 -DE,KE,2,234,201912,19979 -DE,KE,2,239,201912,75139 -DE,KE,2,241,201912,130247 -DE,KE,2,242,201912,11277 -DE,KE,2,244,201912,30570 -DE,KE,2,251,201912,36222 -DE,KE,2,252,201912,1099 -DE,KE,2,253,201912,440 -DE,KE,2,257,201912,213369 -DE,KE,2,259,201912,109671 -DE,KE,2,261,201912,134023 -DE,KE,2,262,201912,197223 -DE,KE,2,263,201912,232886 -DE,KE,2,264,201912,18560 -DE,KE,2,265,201912,680601 -DE,KE,2,266,201912,35328 -DE,KE,2,267,201912,550374 -DE,KE,2,271,201912,376723 -DE,KE,2,272,201912,306511 -DE,KE,2,273,201912,53158 -DE,KE,2,274,201912,39911 -DE,KE,2,275,201912,9368 -DE,KE,2,279,201912,504506 -DE,KE,2,281,201912,1269777 -DE,KE,2,282,201912,1733652 -DE,KE,2,283,201912,9001 -DE,KE,2,284,201912,5662 -DE,KE,2,289,201912,1868784 -DE,KE,2,291,201912,2271348 -DE,KE,2,292,201912,99804 -DE,KE,2,293,201912,501738 -DE,KE,2,303,201912,50881 -DE,KE,2,309,201912,3853 -DE,KE,2,310,201912,161541 -DE,KE,2,321,201912,2874 -DE,KE,2,324,201912,206 -DE,KE,2,325,201912,1033400 -DE,KE,2,329,201912,443328 -DE,KG,1,011,201912,292798 -DE,KG,1,103,201912,227341 -DE,KG,1,108,201912,17500 -DE,KG,1,141,201912,19910 -DE,KG,1,152,201912,11320 -DE,KG,2,012,201912,4270 -DE,KG,2,108,201912,59776 -DE,KG,2,110,201912,12084 -DE,KG,2,139,201912,1496 -DE,KG,2,141,201912,23492 -DE,KG,2,143,201912,13013 -DE,KG,2,151,201912,4462 -DE,KG,2,152,201912,11436 -DE,KG,2,162,201912,11714 -DE,KG,2,172,201912,22896 -DE,KG,2,192,201912,191689 -DE,KG,2,201,201912,6965 -DE,KG,2,202,201912,1968 -DE,KG,2,203,201912,21585 -DE,KG,2,204,201912,8396 -DE,KG,2,205,201912,135063 -DE,KG,2,211,201912,5010 -DE,KG,2,212,201912,554680 -DE,KG,2,221,201912,9030 -DE,KG,2,222,201912,14685 -DE,KG,2,231,201912,1015 -DE,KG,2,234,201912,2078 -DE,KG,2,239,201912,2238 -DE,KG,2,244,201912,988 -DE,KG,2,251,201912,1998 -DE,KG,2,254,201912,202973 -DE,KG,2,257,201912,15084 -DE,KG,2,259,201912,8855 -DE,KG,2,261,201912,1650 -DE,KG,2,262,201912,12020 -DE,KG,2,263,201912,853 -DE,KG,2,265,201912,106072 -DE,KG,2,266,201912,21892 -DE,KG,2,267,201912,87928 -DE,KG,2,271,201912,305284 -DE,KG,2,272,201912,11412 -DE,KG,2,273,201912,10107 -DE,KG,2,274,201912,4921 -DE,KG,2,275,201912,30525 -DE,KG,2,279,201912,5980 -DE,KG,2,281,201912,97921 -DE,KG,2,282,201912,416506 -DE,KG,2,283,201912,5800 -DE,KG,2,289,201912,32390 -DE,KG,2,291,201912,1505345 -DE,KG,2,292,201912,158170 -DE,KG,2,293,201912,25331 -DE,KG,2,309,201912,77765 -DE,KG,2,310,201912,13742 -DE,KG,2,321,201912,90 -DE,KG,2,322,201912,4501 -DE,KG,2,323,201912,8191 -DE,KG,2,325,201912,392882 -DE,KG,2,329,201912,256 -DE,KH,1,011,201912,2439 -DE,KH,1,012,201912,12458 -DE,KH,1,106,201912,1018284 -DE,KH,1,108,201912,1 -DE,KH,1,139,201912,171257 -DE,KH,1,141,201912,37765200 -DE,KH,1,143,201912,9005362 -DE,KH,1,151,201912,1755484 -DE,KH,1,152,201912,9768627 -DE,KH,1,162,201912,687 -DE,KH,1,171,201912,213 -DE,KH,1,221,201912,196 -DE,KH,1,222,201912,14442 -DE,KH,1,259,201912,2754 -DE,KH,1,261,201912,2733 -DE,KH,1,262,201912,359 -DE,KH,1,265,201912,182 -DE,KH,1,271,201912,70786 -DE,KH,1,279,201912,72766 -DE,KH,1,281,201912,35912 -DE,KH,1,282,201912,157690 -DE,KH,1,309,201912,8814332 -DE,KH,1,323,201912,15165 -DE,KH,1,324,201912,243463 -DE,KH,1,325,201912,63726 -DE,KH,1,329,201912,117953 -DE,KH,2,012,201912,113040 -DE,KH,2,103,201912,1014 -DE,KH,2,108,201912,556504 -DE,KH,2,110,201912,440095 -DE,KH,2,132,201912,6794 -DE,KH,2,139,201912,355339 -DE,KH,2,141,201912,82079 -DE,KH,2,143,201912,1584 -DE,KH,2,151,201912,9491 -DE,KH,2,152,201912,8424 -DE,KH,2,171,201912,640838 -DE,KH,2,172,201912,12730 -DE,KH,2,192,201912,43243 -DE,KH,2,201,201912,37366 -DE,KH,2,203,201912,20617 -DE,KH,2,204,201912,482082 -DE,KH,2,205,201912,243437 -DE,KH,2,211,201912,11753 -DE,KH,2,212,201912,245174 -DE,KH,2,221,201912,37451 -DE,KH,2,222,201912,80738 -DE,KH,2,231,201912,16085 -DE,KH,2,234,201912,64063 -DE,KH,2,242,201912,1208 -DE,KH,2,244,201912,1105 -DE,KH,2,257,201912,6996 -DE,KH,2,259,201912,20049 -DE,KH,2,262,201912,174611 -DE,KH,2,263,201912,22036 -DE,KH,2,265,201912,168508 -DE,KH,2,267,201912,90806 -DE,KH,2,271,201912,3039978 -DE,KH,2,272,201912,70000 -DE,KH,2,273,201912,16653 -DE,KH,2,274,201912,3068 -DE,KH,2,275,201912,13345 -DE,KH,2,279,201912,15533 -DE,KH,2,281,201912,205154 -DE,KH,2,282,201912,953449 -DE,KH,2,284,201912,4486 -DE,KH,2,289,201912,1935619 -DE,KH,2,291,201912,3723518 -DE,KH,2,293,201912,31963 -DE,KH,2,303,201912,53 -DE,KH,2,309,201912,86576 -DE,KH,2,321,201912,403 -DE,KH,2,325,201912,185133 -DE,KH,2,329,201912,15937 -DE,KM,1,012,201912,714024 -DE,KM,2,101,201912,27000 -DE,KM,2,105,201912,24220 -DE,KM,2,281,201912,3561 -DE,KN,1,110,201912,2273 -DE,KN,1,265,201912,226358 -DE,KN,1,271,201912,11960 -DE,KN,2,204,201912,94 -DE,KN,2,205,201912,845 -DE,KN,2,211,201912,161157 -DE,KN,2,265,201912,72282 -DE,KN,2,281,201912,19000 -DE,KN,2,282,201912,15200 -DE,KP,2,212,201912,51360 -DE,KR,1,011,201912,328533 -DE,KR,1,012,201912,92794 -DE,KR,1,030,201912,72183 -DE,KR,1,102,201912,242306 -DE,KR,1,103,201912,883741 -DE,KR,1,104,201912,22222 -DE,KR,1,106,201912,159528 -DE,KR,1,107,201912,193560 -DE,KR,1,108,201912,1647787 -DE,KR,1,110,201912,67642 -DE,KR,1,120,201912,530 -DE,KR,1,131,201912,76 -DE,KR,1,132,201912,600968 -DE,KR,1,139,201912,1971251 -DE,KR,1,141,201912,955021 -DE,KR,1,142,201912,2000 -DE,KR,1,143,201912,85567 -DE,KR,1,151,201912,992898 -DE,KR,1,152,201912,72479 -DE,KR,1,162,201912,12516 -DE,KR,1,171,201912,128181 -DE,KR,1,172,201912,285100 -DE,KR,1,181,201912,1864 -DE,KR,1,192,201912,293589 -DE,KR,1,201,201912,26305647 -DE,KR,1,202,201912,57 -DE,KR,1,203,201912,469907 -DE,KR,1,204,201912,987191 -DE,KR,1,205,201912,8306637 -DE,KR,1,206,201912,4176823 -DE,KR,1,211,201912,1049472 -DE,KR,1,212,201912,21727783 -DE,KR,1,221,201912,11415862 -DE,KR,1,222,201912,12030335 -DE,KR,1,231,201912,695641 -DE,KR,1,232,201912,108399 -DE,KR,1,234,201912,2275720 -DE,KR,1,239,201912,1724117 -DE,KR,1,241,201912,7578539 -DE,KR,1,242,201912,2308568 -DE,KR,1,243,201912,2508283 -DE,KR,1,244,201912,1661553 -DE,KR,1,245,201912,18077 -DE,KR,1,251,201912,2176529 -DE,KR,1,252,201912,37 -DE,KR,1,253,201912,915 -DE,KR,1,254,201912,69 -DE,KR,1,257,201912,10090379 -DE,KR,1,259,201912,3016729 -DE,KR,1,261,201912,51706392 -DE,KR,1,262,201912,104793121 -DE,KR,1,263,201912,32057772 -DE,KR,1,264,201912,4040344 -DE,KR,1,265,201912,6932077 -DE,KR,1,266,201912,8914628 -DE,KR,1,267,201912,6695333 -DE,KR,1,268,201912,3525 -DE,KR,1,271,201912,5407586 -DE,KR,1,272,201912,70055016 -DE,KR,1,273,201912,4281203 -DE,KR,1,274,201912,4085511 -DE,KR,1,275,201912,2145364 -DE,KR,1,279,201912,14002260 -DE,KR,1,281,201912,27447400 -DE,KR,1,282,201912,15162214 -DE,KR,1,283,201912,1300246 -DE,KR,1,284,201912,11136829 -DE,KR,1,289,201912,42071138 -DE,KR,1,291,201912,94397129 -DE,KR,1,292,201912,275498 -DE,KR,1,293,201912,17778328 -DE,KR,1,302,201912,1 -DE,KR,1,303,201912,5598784 -DE,KR,1,309,201912,116296 -DE,KR,1,310,201912,141657 -DE,KR,1,321,201912,840008 -DE,KR,1,322,201912,433666 -DE,KR,1,323,201912,234272 -DE,KR,1,324,201912,1053231 -DE,KR,1,325,201912,6386222 -DE,KR,1,329,201912,1515263 -DE,KR,2,011,201912,16032 -DE,KR,2,012,201912,1010772 -DE,KR,2,013,201912,64125 -DE,KR,2,014,201912,414256 -DE,KR,2,022,201912,1251355 -DE,KR,2,030,201912,174 -DE,KR,2,072,201912,4390 -DE,KR,2,081,201912,41071 -DE,KR,2,089,201912,434939 -DE,KR,2,101,201912,27547407 -DE,KR,2,103,201912,1037829 -DE,KR,2,104,201912,479513 -DE,KR,2,105,201912,7133456 -DE,KR,2,106,201912,3250176 -DE,KR,2,107,201912,1130046 -DE,KR,2,108,201912,15666937 -DE,KR,2,109,201912,576921 -DE,KR,2,110,201912,4944353 -DE,KR,2,120,201912,5432 -DE,KR,2,131,201912,162077 -DE,KR,2,132,201912,191068 -DE,KR,2,139,201912,3946071 -DE,KR,2,141,201912,3601805 -DE,KR,2,142,201912,81349 -DE,KR,2,143,201912,554550 -DE,KR,2,151,201912,3195193 -DE,KR,2,152,201912,8991393 -DE,KR,2,161,201912,2538172 -DE,KR,2,162,201912,496094 -DE,KR,2,171,201912,2367796 -DE,KR,2,172,201912,1478046 -DE,KR,2,181,201912,19672 -DE,KR,2,191,201912,29608 -DE,KR,2,192,201912,5862343 -DE,KR,2,201,201912,86344976 -DE,KR,2,202,201912,554936 -DE,KR,2,203,201912,4146075 -DE,KR,2,204,201912,15770285 -DE,KR,2,205,201912,34058945 -DE,KR,2,206,201912,227120 -DE,KR,2,211,201912,6772209 -DE,KR,2,212,201912,64712836 -DE,KR,2,221,201912,6737719 -DE,KR,2,222,201912,11925466 -DE,KR,2,231,201912,4240144 -DE,KR,2,232,201912,824266 -DE,KR,2,233,201912,91820 -DE,KR,2,234,201912,3960513 -DE,KR,2,235,201912,48320 -DE,KR,2,236,201912,45281 -DE,KR,2,237,201912,46 -DE,KR,2,239,201912,1676958 -DE,KR,2,241,201912,2595362 -DE,KR,2,242,201912,1727768 -DE,KR,2,243,201912,2119171 -DE,KR,2,244,201912,17039318 -DE,KR,2,245,201912,36591 -DE,KR,2,251,201912,407733 -DE,KR,2,252,201912,1210186 -DE,KR,2,253,201912,490596 -DE,KR,2,254,201912,132914 -DE,KR,2,257,201912,8955209 -DE,KR,2,259,201912,12036023 -DE,KR,2,261,201912,15789781 -DE,KR,2,262,201912,4577595 -DE,KR,2,263,201912,4514180 -DE,KR,2,264,201912,3784123 -DE,KR,2,265,201912,72378887 -DE,KR,2,266,201912,16224917 -DE,KR,2,267,201912,28392256 -DE,KR,2,268,201912,39252 -DE,KR,2,271,201912,31290805 -DE,KR,2,272,201912,3544388 -DE,KR,2,273,201912,10231759 -DE,KR,2,274,201912,7122127 -DE,KR,2,275,201912,4761265 -DE,KR,2,279,201912,31134422 -DE,KR,2,281,201912,117005130 -DE,KR,2,282,201912,60185434 -DE,KR,2,283,201912,5192537 -DE,KR,2,284,201912,25891305 -DE,KR,2,289,201912,89858309 -DE,KR,2,291,201912,402895749 -DE,KR,2,292,201912,1161977 -DE,KR,2,293,201912,36377997 -DE,KR,2,302,201912,504374 -DE,KR,2,303,201912,16798617 -DE,KR,2,309,201912,1663661 -DE,KR,2,310,201912,3771703 -DE,KR,2,321,201912,256770 -DE,KR,2,322,201912,1096021 -DE,KR,2,323,201912,426826 -DE,KR,2,324,201912,729476 -DE,KR,2,325,201912,21539014 -DE,KR,2,329,201912,2280104 -DE,KR,2,32S,201912,172 -DE,KW,1,141,201912,4252 -DE,KW,1,151,201912,2263 -DE,KW,1,152,201912,579 -DE,KW,1,204,201912,866 -DE,KW,1,211,201912,50 -DE,KW,1,259,201912,14989 -DE,KW,1,262,201912,50831 -DE,KW,1,263,201912,16165 -DE,KW,1,265,201912,41740 -DE,KW,1,271,201912,1891 -DE,KW,1,272,201912,3675 -DE,KW,1,279,201912,3254 -DE,KW,1,281,201912,55973 -DE,KW,1,282,201912,18434 -DE,KW,1,293,201912,498 -DE,KW,1,321,201912,183 -DE,KW,1,325,201912,36137 -DE,KW,2,011,201912,374403 -DE,KW,2,012,201912,2328 -DE,KW,2,014,201912,279110 -DE,KW,2,089,201912,52609 -DE,KW,2,103,201912,66333 -DE,KW,2,105,201912,1273443 -DE,KW,2,106,201912,185050 -DE,KW,2,107,201912,244824 -DE,KW,2,108,201912,1861103 -DE,KW,2,109,201912,35966 -DE,KW,2,110,201912,211890 -DE,KW,2,120,201912,2129091 -DE,KW,2,132,201912,26333 -DE,KW,2,139,201912,167033 -DE,KW,2,141,201912,739772 -DE,KW,2,142,201912,1524 -DE,KW,2,143,201912,89763 -DE,KW,2,151,201912,168629 -DE,KW,2,152,201912,187527 -DE,KW,2,161,201912,275260 -DE,KW,2,162,201912,199631 -DE,KW,2,171,201912,364516 -DE,KW,2,172,201912,871978 -DE,KW,2,192,201912,257686 -DE,KW,2,201,201912,1451369 -DE,KW,2,202,201912,102590 -DE,KW,2,203,201912,58764 -DE,KW,2,204,201912,1806162 -DE,KW,2,205,201912,1346782 -DE,KW,2,211,201912,294943 -DE,KW,2,212,201912,9199655 -DE,KW,2,221,201912,350107 -DE,KW,2,222,201912,2204566 -DE,KW,2,231,201912,215144 -DE,KW,2,232,201912,394889 -DE,KW,2,233,201912,307984 -DE,KW,2,234,201912,138535 -DE,KW,2,236,201912,123426 -DE,KW,2,237,201912,158456 -DE,KW,2,239,201912,71836 -DE,KW,2,242,201912,190710 -DE,KW,2,243,201912,50515 -DE,KW,2,244,201912,247589 -DE,KW,2,245,201912,3 -DE,KW,2,251,201912,834631 -DE,KW,2,252,201912,20816 -DE,KW,2,254,201912,105324 -DE,KW,2,257,201912,601736 -DE,KW,2,259,201912,450166 -DE,KW,2,261,201912,43544 -DE,KW,2,262,201912,296619 -DE,KW,2,263,201912,664429 -DE,KW,2,264,201912,156649 -DE,KW,2,265,201912,3609889 -DE,KW,2,266,201912,787452 -DE,KW,2,267,201912,702401 -DE,KW,2,271,201912,3941856 -DE,KW,2,272,201912,204031 -DE,KW,2,273,201912,219139 -DE,KW,2,274,201912,650386 -DE,KW,2,275,201912,157638 -DE,KW,2,279,201912,993082 -DE,KW,2,281,201912,7727744 -DE,KW,2,282,201912,5566562 -DE,KW,2,283,201912,1328 -DE,KW,2,284,201912,30907 -DE,KW,2,289,201912,2139179 -DE,KW,2,291,201912,18428398 -DE,KW,2,292,201912,1076823 -DE,KW,2,293,201912,755435 -DE,KW,2,303,201912,64243956 -DE,KW,2,309,201912,263724 -DE,KW,2,310,201912,1610185 -DE,KW,2,321,201912,38245 -DE,KW,2,323,201912,8068 -DE,KW,2,324,201912,6989 -DE,KW,2,325,201912,3605444 -DE,KW,2,329,201912,402746 -DE,KY,2,011,201912,975 -DE,KY,2,105,201912,10591 -DE,KY,2,141,201912,2429 -DE,KY,2,161,201912,15921 -DE,KY,2,205,201912,1160 -DE,KY,2,212,201912,20437 -DE,KY,2,221,201912,9591 -DE,KY,2,222,201912,7378 -DE,KY,2,231,201912,959 -DE,KY,2,234,201912,1083 -DE,KY,2,257,201912,4453 -DE,KY,2,259,201912,166 -DE,KY,2,265,201912,20775 -DE,KY,2,266,201912,39735 -DE,KY,2,271,201912,2506 -DE,KY,2,272,201912,2980 -DE,KY,2,273,201912,154 -DE,KY,2,274,201912,1285 -DE,KY,2,279,201912,269 -DE,KY,2,281,201912,62776 -DE,KY,2,282,201912,92611 -DE,KY,2,291,201912,45000 -DE,KY,2,293,201912,22833 -DE,KY,2,310,201912,743 -DE,KY,2,321,201912,124295 -DE,KY,2,325,201912,59363 -DE,KZ,1,011,201912,1161810 -DE,KZ,1,061,201912,257596134 -DE,KZ,1,102,201912,425111 -DE,KZ,1,104,201912,133690 -DE,KZ,1,107,201912,3485 -DE,KZ,1,108,201912,65910 -DE,KZ,1,120,201912,1087 -DE,KZ,1,201,201912,3701984 -DE,KZ,1,211,201912,280 -DE,KZ,1,212,201912,50 -DE,KZ,1,241,201912,28468 -DE,KZ,1,244,201912,3859703 -DE,KZ,1,259,201912,800 -DE,KZ,1,263,201912,660 -DE,KZ,1,271,201912,9265 -DE,KZ,1,281,201912,240 -DE,KZ,1,293,201912,616 -DE,KZ,2,011,201912,24411 -DE,KZ,2,012,201912,181465 -DE,KZ,2,013,201912,1560 -DE,KZ,2,014,201912,103175 -DE,KZ,2,081,201912,1768 -DE,KZ,2,089,201912,1709 -DE,KZ,2,101,201912,12902 -DE,KZ,2,103,201912,112877 -DE,KZ,2,104,201912,13517 -DE,KZ,2,105,201912,164313 -DE,KZ,2,106,201912,193638 -DE,KZ,2,107,201912,69876 -DE,KZ,2,108,201912,1792472 -DE,KZ,2,109,201912,210325 -DE,KZ,2,110,201912,145768 -DE,KZ,2,120,201912,73700 -DE,KZ,2,132,201912,29693 -DE,KZ,2,139,201912,235074 -DE,KZ,2,141,201912,1292419 -DE,KZ,2,142,201912,17770 -DE,KZ,2,143,201912,215669 -DE,KZ,2,151,201912,119621 -DE,KZ,2,152,201912,256055 -DE,KZ,2,162,201912,530874 -DE,KZ,2,171,201912,2912086 -DE,KZ,2,172,201912,142666 -DE,KZ,2,192,201912,1060213 -DE,KZ,2,201,201912,897791 -DE,KZ,2,202,201912,28087 -DE,KZ,2,203,201912,232349 -DE,KZ,2,204,201912,667501 -DE,KZ,2,205,201912,1631839 -DE,KZ,2,211,201912,40647 -DE,KZ,2,212,201912,10692710 -DE,KZ,2,221,201912,720742 -DE,KZ,2,222,201912,1167407 -DE,KZ,2,231,201912,96160 -DE,KZ,2,232,201912,160831 -DE,KZ,2,233,201912,191669 -DE,KZ,2,234,201912,125080 -DE,KZ,2,236,201912,31180 -DE,KZ,2,239,201912,316461 -DE,KZ,2,241,201912,118847 -DE,KZ,2,242,201912,541283 -DE,KZ,2,243,201912,7698 -DE,KZ,2,244,201912,511836 -DE,KZ,2,245,201912,1498 -DE,KZ,2,251,201912,635203 -DE,KZ,2,252,201912,1734385 -DE,KZ,2,254,201912,16989 -DE,KZ,2,257,201912,516863 -DE,KZ,2,259,201912,1377241 -DE,KZ,2,261,201912,348646 -DE,KZ,2,262,201912,1693229 -DE,KZ,2,263,201912,1039723 -DE,KZ,2,264,201912,221074 -DE,KZ,2,265,201912,3474025 -DE,KZ,2,266,201912,1539884 -DE,KZ,2,267,201912,560789 -DE,KZ,2,268,201912,10260 -DE,KZ,2,271,201912,3923181 -DE,KZ,2,272,201912,667219 -DE,KZ,2,273,201912,384985 -DE,KZ,2,274,201912,255866 -DE,KZ,2,275,201912,483980 -DE,KZ,2,279,201912,439842 -DE,KZ,2,281,201912,9264311 -DE,KZ,2,282,201912,6475538 -DE,KZ,2,283,201912,528611 -DE,KZ,2,284,201912,641686 -DE,KZ,2,289,201912,7020206 -DE,KZ,2,291,201912,3083202 -DE,KZ,2,292,201912,574689 -DE,KZ,2,293,201912,678917 -DE,KZ,2,302,201912,634091 -DE,KZ,2,303,201912,8384234 -DE,KZ,2,309,201912,20739 -DE,KZ,2,310,201912,545547 -DE,KZ,2,321,201912,120180 -DE,KZ,2,322,201912,44383 -DE,KZ,2,323,201912,940616 -DE,KZ,2,324,201912,10554 -DE,KZ,2,325,201912,3686398 -DE,KZ,2,329,201912,210076 -DE,LA,1,011,201912,66911 -DE,LA,1,012,201912,730203 -DE,LA,1,139,201912,21697 -DE,LA,1,141,201912,5695565 -DE,LA,1,143,201912,748434 -DE,LA,1,152,201912,385284 -DE,LA,1,279,201912,47800 -DE,LA,2,108,201912,208703 -DE,LA,2,110,201912,129685 -DE,LA,2,139,201912,2474 -DE,LA,2,141,201912,142 -DE,LA,2,204,201912,368004 -DE,LA,2,212,201912,10796 -DE,LA,2,221,201912,1006 -DE,LA,2,222,201912,1547 -DE,LA,2,239,201912,2441 -DE,LA,2,242,201912,51 -DE,LA,2,244,201912,150 -DE,LA,2,251,201912,16899 -DE,LA,2,257,201912,211 -DE,LA,2,259,201912,32292 -DE,LA,2,261,201912,1311 -DE,LA,2,263,201912,23970 -DE,LA,2,265,201912,55753 -DE,LA,2,271,201912,7416 -DE,LA,2,273,201912,3222 -DE,LA,2,274,201912,157 -DE,LA,2,275,201912,36720 -DE,LA,2,279,201912,7545 -DE,LA,2,281,201912,14572 -DE,LA,2,282,201912,226380 -DE,LA,2,289,201912,39694 -DE,LA,2,291,201912,148288 -DE,LA,2,293,201912,22605 -DE,LA,2,325,201912,4689 -DE,LA,2,329,201912,43006 -DE,LB,1,011,201912,11500 -DE,LB,1,012,201912,10507 -DE,LB,1,101,201912,501709 -DE,LB,1,103,201912,472256 -DE,LB,1,104,201912,10858 -DE,LB,1,106,201912,12478 -DE,LB,1,107,201912,48586 -DE,LB,1,108,201912,156345 -DE,LB,1,110,201912,113446 -DE,LB,1,141,201912,128323 -DE,LB,1,151,201912,329 -DE,LB,1,204,201912,33223 -DE,LB,1,205,201912,14812 -DE,LB,1,211,201912,1285 -DE,LB,1,212,201912,9 -DE,LB,1,222,201912,16128 -DE,LB,1,237,201912,1367 -DE,LB,1,257,201912,2476 -DE,LB,1,259,201912,825 -DE,LB,1,262,201912,3560 -DE,LB,1,265,201912,59894 -DE,LB,1,271,201912,6528 -DE,LB,1,274,201912,136019 -DE,LB,1,279,201912,904 -DE,LB,1,281,201912,16705 -DE,LB,1,293,201912,1400 -DE,LB,1,321,201912,3450 -DE,LB,1,322,201912,117 -DE,LB,1,325,201912,392 -DE,LB,1,329,201912,2691 -DE,LB,2,011,201912,114819 -DE,LB,2,013,201912,2995 -DE,LB,2,014,201912,7000 -DE,LB,2,081,201912,3940 -DE,LB,2,089,201912,53966 -DE,LB,2,101,201912,16290 -DE,LB,2,103,201912,1815 -DE,LB,2,105,201912,670051 -DE,LB,2,106,201912,393280 -DE,LB,2,107,201912,356 -DE,LB,2,108,201912,1068467 -DE,LB,2,109,201912,276911 -DE,LB,2,110,201912,73950 -DE,LB,2,120,201912,365715 -DE,LB,2,131,201912,6 -DE,LB,2,132,201912,31302 -DE,LB,2,139,201912,142710 -DE,LB,2,141,201912,409505 -DE,LB,2,143,201912,93454 -DE,LB,2,151,201912,18724 -DE,LB,2,152,201912,6468 -DE,LB,2,162,201912,48856 -DE,LB,2,171,201912,332053 -DE,LB,2,172,201912,15855 -DE,LB,2,181,201912,397 -DE,LB,2,192,201912,125818 -DE,LB,2,201,201912,771889 -DE,LB,2,202,201912,167864 -DE,LB,2,203,201912,64799 -DE,LB,2,204,201912,459708 -DE,LB,2,205,201912,938388 -DE,LB,2,211,201912,748630 -DE,LB,2,212,201912,4906915 -DE,LB,2,221,201912,1221238 -DE,LB,2,222,201912,263263 -DE,LB,2,231,201912,76447 -DE,LB,2,232,201912,358 -DE,LB,2,234,201912,9072 -DE,LB,2,239,201912,29660 -DE,LB,2,241,201912,6026 -DE,LB,2,242,201912,3518 -DE,LB,2,243,201912,5972 -DE,LB,2,244,201912,123237 -DE,LB,2,251,201912,91603 -DE,LB,2,252,201912,1400 -DE,LB,2,254,201912,2710 -DE,LB,2,257,201912,174398 -DE,LB,2,259,201912,422971 -DE,LB,2,261,201912,11633 -DE,LB,2,262,201912,68224 -DE,LB,2,263,201912,370294 -DE,LB,2,264,201912,33846 -DE,LB,2,265,201912,793419 -DE,LB,2,266,201912,2724316 -DE,LB,2,267,201912,160587 -DE,LB,2,271,201912,1292474 -DE,LB,2,272,201912,34773 -DE,LB,2,273,201912,120282 -DE,LB,2,274,201912,64943 -DE,LB,2,275,201912,91086 -DE,LB,2,279,201912,147437 -DE,LB,2,281,201912,1239351 -DE,LB,2,282,201912,990219 -DE,LB,2,283,201912,3517 -DE,LB,2,284,201912,2988 -DE,LB,2,289,201912,1399869 -DE,LB,2,291,201912,1327574 -DE,LB,2,292,201912,1850 -DE,LB,2,293,201912,887930 -DE,LB,2,303,201912,8190375 -DE,LB,2,309,201912,100804 -DE,LB,2,310,201912,52254 -DE,LB,2,321,201912,75298 -DE,LB,2,322,201912,20 -DE,LB,2,323,201912,5201 -DE,LB,2,324,201912,2415 -DE,LB,2,325,201912,1226800 -DE,LB,2,329,201912,58728 -DE,LC,2,141,201912,6068 -DE,LC,2,152,201912,2129 -DE,LC,2,205,201912,16652 -DE,LC,2,212,201912,957 -DE,LC,2,221,201912,1353 -DE,LC,2,222,201912,238 -DE,LC,2,257,201912,823 -DE,LC,2,259,201912,1114 -DE,LC,2,265,201912,10679 -DE,LC,2,271,201912,893 -DE,LC,2,273,201912,150 -DE,LC,2,274,201912,10 -DE,LC,2,275,201912,13373 -DE,LC,2,279,201912,2874 -DE,LC,2,281,201912,3132 -DE,LC,2,282,201912,2880 -DE,LC,2,284,201912,26650 -DE,LC,2,289,201912,166 -DE,LC,2,293,201912,6155 -DE,LC,2,310,201912,324 -DE,LC,2,329,201912,1000 -DE,LI,1,012,201912,139 -DE,LI,1,103,201912,3260 -DE,LI,1,108,201912,26758 -DE,LI,1,110,201912,95 -DE,LI,1,139,201912,91273 -DE,LI,1,141,201912,19610 -DE,LI,1,162,201912,64733 -DE,LI,1,172,201912,63044 -DE,LI,1,201,201912,105478 -DE,LI,1,203,201912,101006 -DE,LI,1,204,201912,39851 -DE,LI,1,205,201912,901450 -DE,LI,1,221,201912,16931 -DE,LI,1,222,201912,104291 -DE,LI,1,231,201912,359032 -DE,LI,1,232,201912,698 -DE,LI,1,234,201912,5194 -DE,LI,1,239,201912,1687 -DE,LI,1,242,201912,7215 -DE,LI,1,244,201912,1430386 -DE,LI,1,251,201912,158 -DE,LI,1,257,201912,599930 -DE,LI,1,259,201912,2540437 -DE,LI,1,262,201912,5386 -DE,LI,1,263,201912,26726 -DE,LI,1,265,201912,1181881 -DE,LI,1,267,201912,494822 -DE,LI,1,268,201912,28969 -DE,LI,1,271,201912,415634 -DE,LI,1,273,201912,355742 -DE,LI,1,274,201912,17187 -DE,LI,1,275,201912,45990 -DE,LI,1,279,201912,97322 -DE,LI,1,281,201912,1346429 -DE,LI,1,282,201912,244831 -DE,LI,1,284,201912,6282 -DE,LI,1,289,201912,109415 -DE,LI,1,293,201912,3254353 -DE,LI,1,303,201912,54850 -DE,LI,1,321,201912,101025 -DE,LI,1,325,201912,2201867 -DE,LI,1,329,201912,220 -DE,LI,2,011,201912,1503 -DE,LI,2,012,201912,61387 -DE,LI,2,013,201912,19 -DE,LI,2,081,201912,2916 -DE,LI,2,089,201912,33697 -DE,LI,2,101,201912,1172073 -DE,LI,2,102,201912,9061 -DE,LI,2,103,201912,50758 -DE,LI,2,104,201912,10319 -DE,LI,2,105,201912,61567 -DE,LI,2,106,201912,67892 -DE,LI,2,107,201912,5165 -DE,LI,2,108,201912,192010 -DE,LI,2,109,201912,684838 -DE,LI,2,110,201912,15649 -DE,LI,2,132,201912,1986 -DE,LI,2,139,201912,362218 -DE,LI,2,141,201912,69551 -DE,LI,2,143,201912,19253 -DE,LI,2,151,201912,20990 -DE,LI,2,152,201912,12988 -DE,LI,2,161,201912,42542 -DE,LI,2,162,201912,319268 -DE,LI,2,171,201912,31627 -DE,LI,2,172,201912,561667 -DE,LI,2,192,201912,98968 -DE,LI,2,201,201912,280050 -DE,LI,2,202,201912,2088 -DE,LI,2,203,201912,2482093 -DE,LI,2,204,201912,67162 -DE,LI,2,205,201912,295271 -DE,LI,2,211,201912,24099 -DE,LI,2,212,201912,90140 -DE,LI,2,221,201912,360111 -DE,LI,2,222,201912,1214353 -DE,LI,2,231,201912,123991 -DE,LI,2,232,201912,435000 -DE,LI,2,234,201912,46118 -DE,LI,2,235,201912,75259 -DE,LI,2,236,201912,129000 -DE,LI,2,239,201912,500329 -DE,LI,2,241,201912,1286944 -DE,LI,2,242,201912,255860 -DE,LI,2,243,201912,341485 -DE,LI,2,244,201912,302606 -DE,LI,2,245,201912,2046 -DE,LI,2,251,201912,288309 -DE,LI,2,252,201912,1709 -DE,LI,2,254,201912,689184 -DE,LI,2,257,201912,5674967 -DE,LI,2,259,201912,3367596 -DE,LI,2,261,201912,381327 -DE,LI,2,262,201912,524847 -DE,LI,2,263,201912,138611 -DE,LI,2,264,201912,35118 -DE,LI,2,265,201912,1334418 -DE,LI,2,267,201912,963896 -DE,LI,2,271,201912,1064101 -DE,LI,2,272,201912,11793 -DE,LI,2,273,201912,106591 -DE,LI,2,274,201912,298604 -DE,LI,2,275,201912,120223 -DE,LI,2,279,201912,742974 -DE,LI,2,281,201912,2515913 -DE,LI,2,282,201912,2584918 -DE,LI,2,283,201912,58477 -DE,LI,2,284,201912,217096 -DE,LI,2,289,201912,158384 -DE,LI,2,291,201912,1896209 -DE,LI,2,292,201912,40761 -DE,LI,2,293,201912,985329 -DE,LI,2,303,201912,5830 -DE,LI,2,309,201912,8068 -DE,LI,2,310,201912,790951 -DE,LI,2,321,201912,743331 -DE,LI,2,322,201912,4656 -DE,LI,2,323,201912,4701 -DE,LI,2,324,201912,37679 -DE,LI,2,325,201912,430899 -DE,LI,2,329,201912,34585 -DE,LK,1,011,201912,55084 -DE,LK,1,012,201912,2127619 -DE,LK,1,013,201912,48018 -DE,LK,1,030,201912,231193 -DE,LK,1,102,201912,2099105 -DE,LK,1,103,201912,155857 -DE,LK,1,104,201912,252590 -DE,LK,1,106,201912,9925 -DE,LK,1,107,201912,25 -DE,LK,1,108,201912,2208007 -DE,LK,1,110,201912,1173 -DE,LK,1,120,201912,468207 -DE,LK,1,131,201912,69220 -DE,LK,1,132,201912,63367 -DE,LK,1,139,201912,844225 -DE,LK,1,141,201912,10989190 -DE,LK,1,143,201912,999711 -DE,LK,1,151,201912,39504 -DE,LK,1,152,201912,30577 -DE,LK,1,162,201912,37982 -DE,LK,1,171,201912,196 -DE,LK,1,172,201912,106643 -DE,LK,1,204,201912,8769 -DE,LK,1,205,201912,359225 -DE,LK,1,221,201912,5427241 -DE,LK,1,222,201912,265495 -DE,LK,1,234,201912,121689 -DE,LK,1,252,201912,11611 -DE,LK,1,257,201912,140750 -DE,LK,1,259,201912,736 -DE,LK,1,261,201912,329641 -DE,LK,1,262,201912,184961 -DE,LK,1,263,201912,150596 -DE,LK,1,265,201912,776001 -DE,LK,1,266,201912,18954 -DE,LK,1,271,201912,1564638 -DE,LK,1,273,201912,40532 -DE,LK,1,279,201912,178906 -DE,LK,1,281,201912,16678 -DE,LK,1,282,201912,646859 -DE,LK,1,289,201912,384020 -DE,LK,1,293,201912,15729 -DE,LK,1,302,201912,49356 -DE,LK,1,309,201912,249424 -DE,LK,1,310,201912,29426 -DE,LK,1,321,201912,368264 -DE,LK,1,323,201912,292601 -DE,LK,1,324,201912,345591 -DE,LK,1,325,201912,2397 -DE,LK,1,329,201912,130900 -DE,LK,2,012,201912,204733 -DE,LK,2,023,201912,9630 -DE,LK,2,081,201912,7488 -DE,LK,2,089,201912,23311 -DE,LK,2,101,201912,108963 -DE,LK,2,103,201912,51138 -DE,LK,2,105,201912,15275 -DE,LK,2,106,201912,24480 -DE,LK,2,107,201912,649 -DE,LK,2,108,201912,543257 -DE,LK,2,110,201912,166340 -DE,LK,2,131,201912,67555 -DE,LK,2,132,201912,577951 -DE,LK,2,139,201912,945781 -DE,LK,2,141,201912,26530 -DE,LK,2,151,201912,23380 -DE,LK,2,161,201912,34519 -DE,LK,2,162,201912,5712 -DE,LK,2,171,201912,405137 -DE,LK,2,172,201912,608849 -DE,LK,2,192,201912,16430 -DE,LK,2,201,201912,960350 -DE,LK,2,202,201912,75072 -DE,LK,2,203,201912,221176 -DE,LK,2,204,201912,326067 -DE,LK,2,205,201912,1020209 -DE,LK,2,206,201912,11221 -DE,LK,2,20S,201912,139644 -DE,LK,2,211,201912,53635 -DE,LK,2,212,201912,439454 -DE,LK,2,221,201912,58192 -DE,LK,2,222,201912,722242 -DE,LK,2,231,201912,15809 -DE,LK,2,232,201912,147 -DE,LK,2,234,201912,22300 -DE,LK,2,235,201912,7923 -DE,LK,2,236,201912,35909 -DE,LK,2,239,201912,21244 -DE,LK,2,241,201912,3898 -DE,LK,2,242,201912,14645 -DE,LK,2,243,201912,5390 -DE,LK,2,244,201912,75834 -DE,LK,2,245,201912,20595 -DE,LK,2,251,201912,58935 -DE,LK,2,252,201912,13938 -DE,LK,2,253,201912,187 -DE,LK,2,254,201912,14895 -DE,LK,2,257,201912,180305 -DE,LK,2,259,201912,434809 -DE,LK,2,261,201912,198773 -DE,LK,2,262,201912,46894 -DE,LK,2,263,201912,92976 -DE,LK,2,264,201912,31940 -DE,LK,2,265,201912,3321470 -DE,LK,2,266,201912,1050611 -DE,LK,2,267,201912,186087 -DE,LK,2,271,201912,2539253 -DE,LK,2,272,201912,4284 -DE,LK,2,273,201912,161013 -DE,LK,2,274,201912,84587 -DE,LK,2,275,201912,44462 -DE,LK,2,279,201912,339222 -DE,LK,2,281,201912,2068849 -DE,LK,2,282,201912,1201372 -DE,LK,2,283,201912,4049 -DE,LK,2,284,201912,76442 -DE,LK,2,289,201912,1583324 -DE,LK,2,291,201912,2267772 -DE,LK,2,292,201912,2507 -DE,LK,2,293,201912,13892 -DE,LK,2,301,201912,117 -DE,LK,2,303,201912,16839 -DE,LK,2,309,201912,40805 -DE,LK,2,310,201912,341267 -DE,LK,2,321,201912,14748 -DE,LK,2,323,201912,38671 -DE,LK,2,325,201912,1359286 -DE,LK,2,329,201912,30622 -DE,LR,2,101,201912,75238 -DE,LR,2,106,201912,49680 -DE,LR,2,108,201912,44010 -DE,LR,2,141,201912,5948 -DE,LR,2,162,201912,9900 -DE,LR,2,172,201912,9300 -DE,LR,2,201,201912,38187 -DE,LR,2,205,201912,6147 -DE,LR,2,231,201912,12440 -DE,LR,2,251,201912,42800 -DE,LR,2,281,201912,65809 -DE,LR,2,282,201912,6974 -DE,LR,2,289,201912,5384 -DE,LR,2,291,201912,12000 -DE,LR,2,310,201912,30 -DE,LS,1,012,201912,64038 -DE,LS,1,103,201912,60561 -DE,LS,1,141,201912,29537 -DE,LS,2,222,201912,5256 -DE,LS,2,271,201912,1045 -DE,LS,2,279,201912,12941 -DE,LS,2,281,201912,6002 -DE,LS,2,289,201912,11183 -DE,LT,1,011,201912,4518738 -DE,LT,1,012,201912,64857 -DE,LT,1,014,201912,247239 -DE,LT,1,01M,201912,710 -DE,LT,1,022,201912,208695 -DE,LT,1,089,201912,1160861 -DE,LT,1,101,201912,303473 -DE,LT,1,102,201912,19082597 -DE,LT,1,103,201912,1071692 -DE,LT,1,104,201912,152613 -DE,LT,1,105,201912,3390687 -DE,LT,1,106,201912,438513 -DE,LT,1,107,201912,231831 -DE,LT,1,108,201912,814548 -DE,LT,1,109,201912,1279384 -DE,LT,1,10M,201912,729976 -DE,LT,1,110,201912,171148 -DE,LT,1,120,201912,17866 -DE,LT,1,132,201912,359810 -DE,LT,1,139,201912,2040533 -DE,LT,1,13M,201912,9985 -DE,LT,1,141,201912,3982962 -DE,LT,1,143,201912,440352 -DE,LT,1,14M,201912,919701 -DE,LT,1,151,201912,17259 -DE,LT,1,152,201912,456366 -DE,LT,1,161,201912,1265820 -DE,LT,1,162,201912,3793377 -DE,LT,1,16M,201912,7064 -DE,LT,1,171,201912,134225 -DE,LT,1,172,201912,1397310 -DE,LT,1,17M,201912,173330 -DE,LT,1,181,201912,270 -DE,LT,1,192,201912,239450 -DE,LT,1,201,201912,13539642 -DE,LT,1,203,201912,130054 -DE,LT,1,204,201912,259108 -DE,LT,1,205,201912,1659282 -DE,LT,1,20M,201912,1113802 -DE,LT,1,211,201912,229263 -DE,LT,1,212,201912,5399944 -DE,LT,1,221,201912,466621 -DE,LT,1,222,201912,5382251 -DE,LT,1,231,201912,340898 -DE,LT,1,233,201912,32432 -DE,LT,1,234,201912,1231 -DE,LT,1,236,201912,618868 -DE,LT,1,239,201912,211631 -DE,LT,1,23M,201912,197679 -DE,LT,1,241,201912,164507 -DE,LT,1,242,201912,2006 -DE,LT,1,243,201912,231253 -DE,LT,1,244,201912,1553848 -DE,LT,1,245,201912,450 -DE,LT,1,251,201912,2473399 -DE,LT,1,252,201912,8400 -DE,LT,1,257,201912,323700 -DE,LT,1,259,201912,1297503 -DE,LT,1,25M,201912,91195 -DE,LT,1,261,201912,811499 -DE,LT,1,262,201912,1380234 -DE,LT,1,263,201912,1289942 -DE,LT,1,264,201912,689042 -DE,LT,1,265,201912,2564791 -DE,LT,1,266,201912,7062 -DE,LT,1,267,201912,778667 -DE,LT,1,268,201912,562 -DE,LT,1,271,201912,1803659 -DE,LT,1,272,201912,67289 -DE,LT,1,273,201912,484038 -DE,LT,1,274,201912,362603 -DE,LT,1,275,201912,2144581 -DE,LT,1,279,201912,714384 -DE,LT,1,281,201912,1105550 -DE,LT,1,282,201912,2638874 -DE,LT,1,283,201912,245002 -DE,LT,1,284,201912,141417 -DE,LT,1,289,201912,1722773 -DE,LT,1,291,201912,6105498 -DE,LT,1,292,201912,1702080 -DE,LT,1,293,201912,2065403 -DE,LT,1,301,201912,280647 -DE,LT,1,302,201912,3576 -DE,LT,1,303,201912,72250 -DE,LT,1,309,201912,788524 -DE,LT,1,30M,201912,42703 -DE,LT,1,310,201912,12841790 -DE,LT,1,321,201912,22193 -DE,LT,1,322,201912,142762 -DE,LT,1,323,201912,11601 -DE,LT,1,324,201912,13462 -DE,LT,1,325,201912,1344125 -DE,LT,1,329,201912,540583 -DE,LT,1,32M,201912,107 -DE,LT,2,011,201912,294961 -DE,LT,2,012,201912,1116033 -DE,LT,2,013,201912,77758 -DE,LT,2,014,201912,65663 -DE,LT,2,01M,201912,1036 -DE,LT,2,022,201912,133622 -DE,LT,2,023,201912,784 -DE,LT,2,030,201912,51250 -DE,LT,2,081,201912,153805 -DE,LT,2,089,201912,36111 -DE,LT,2,101,201912,2241609 -DE,LT,2,102,201912,824321 -DE,LT,2,103,201912,1320352 -DE,LT,2,104,201912,780397 -DE,LT,2,105,201912,1208233 -DE,LT,2,106,201912,692268 -DE,LT,2,107,201912,880454 -DE,LT,2,108,201912,8503640 -DE,LT,2,109,201912,1058690 -DE,LT,2,10M,201912,434865 -DE,LT,2,110,201912,1978204 -DE,LT,2,120,201912,796276 -DE,LT,2,131,201912,1202580 -DE,LT,2,132,201912,1572827 -DE,LT,2,139,201912,2094246 -DE,LT,2,13M,201912,64229 -DE,LT,2,141,201912,3238160 -DE,LT,2,142,201912,1181 -DE,LT,2,143,201912,718570 -DE,LT,2,14M,201912,198142 -DE,LT,2,151,201912,370696 -DE,LT,2,152,201912,709645 -DE,LT,2,161,201912,161491 -DE,LT,2,162,201912,1390636 -DE,LT,2,16M,201912,1413 -DE,LT,2,171,201912,1878962 -DE,LT,2,172,201912,2266808 -DE,LT,2,17M,201912,183492 -DE,LT,2,181,201912,24234 -DE,LT,2,192,201912,883999 -DE,LT,2,201,201912,8591155 -DE,LT,2,202,201912,462139 -DE,LT,2,203,201912,1749309 -DE,LT,2,204,201912,2336710 -DE,LT,2,205,201912,4622549 -DE,LT,2,206,201912,52286 -DE,LT,2,20M,201912,191085 -DE,LT,2,20S,201912,14839 -DE,LT,2,211,201912,264970 -DE,LT,2,212,201912,13191311 -DE,LT,2,221,201912,2103856 -DE,LT,2,222,201912,8431421 -DE,LT,2,231,201912,708190 -DE,LT,2,232,201912,13695 -DE,LT,2,233,201912,800284 -DE,LT,2,234,201912,275720 -DE,LT,2,235,201912,7361 -DE,LT,2,236,201912,393450 -DE,LT,2,237,201912,7495 -DE,LT,2,239,201912,613850 -DE,LT,2,23M,201912,130371 -DE,LT,2,241,201912,3190613 -DE,LT,2,242,201912,467838 -DE,LT,2,243,201912,443714 -DE,LT,2,244,201912,3225946 -DE,LT,2,245,201912,40583 -DE,LT,2,251,201912,946878 -DE,LT,2,252,201912,308441 -DE,LT,2,253,201912,41890 -DE,LT,2,254,201912,386910 -DE,LT,2,257,201912,3007842 -DE,LT,2,259,201912,2741314 -DE,LT,2,25M,201912,168749 -DE,LT,2,261,201912,3072814 -DE,LT,2,262,201912,5351616 -DE,LT,2,263,201912,18162483 -DE,LT,2,264,201912,863995 -DE,LT,2,265,201912,4283523 -DE,LT,2,266,201912,1242130 -DE,LT,2,267,201912,951001 -DE,LT,2,268,201912,2523 -DE,LT,2,271,201912,5679754 -DE,LT,2,272,201912,475794 -DE,LT,2,273,201912,3200096 -DE,LT,2,274,201912,692244 -DE,LT,2,275,201912,1467894 -DE,LT,2,279,201912,4195300 -DE,LT,2,281,201912,6756693 -DE,LT,2,282,201912,10376230 -DE,LT,2,283,201912,2843176 -DE,LT,2,284,201912,5335485 -DE,LT,2,289,201912,13286763 -DE,LT,2,291,201912,18544905 -DE,LT,2,292,201912,4532653 -DE,LT,2,293,201912,3788223 -DE,LT,2,303,201912,518828 -DE,LT,2,309,201912,652412 -DE,LT,2,30M,201912,2209 -DE,LT,2,310,201912,1910211 -DE,LT,2,321,201912,1504209 -DE,LT,2,322,201912,332210 -DE,LT,2,323,201912,298764 -DE,LT,2,324,201912,245911 -DE,LT,2,325,201912,3782051 -DE,LT,2,329,201912,1502279 -DE,LT,2,32M,201912,7346 -DE,LT,2,32S,201912,114 -DE,LU,1,011,201912,672160 -DE,LU,1,012,201912,4763460 -DE,LU,1,013,201912,129 -DE,LU,1,014,201912,713347 -DE,LU,1,01M,201912,140614 -DE,LU,1,022,201912,653386 -DE,LU,1,023,201912,447 -DE,LU,1,030,201912,8232 -DE,LU,1,072,201912,27855 -DE,LU,1,081,201912,62854 -DE,LU,1,089,201912,163796 -DE,LU,1,101,201912,978731 -DE,LU,1,102,201912,33305 -DE,LU,1,103,201912,8388638 -DE,LU,1,104,201912,4000017 -DE,LU,1,105,201912,9561073 -DE,LU,1,106,201912,473718 -DE,LU,1,107,201912,895491 -DE,LU,1,108,201912,974859 -DE,LU,1,109,201912,46386 -DE,LU,1,10M,201912,756039 -DE,LU,1,110,201912,161338 -DE,LU,1,120,201912,3147486 -DE,LU,1,132,201912,95332 -DE,LU,1,139,201912,3596119 -DE,LU,1,13M,201912,1352 -DE,LU,1,141,201912,1161553 -DE,LU,1,143,201912,337365 -DE,LU,1,14M,201912,191293 -DE,LU,1,151,201912,108399 -DE,LU,1,152,201912,3978349 -DE,LU,1,161,201912,35488 -DE,LU,1,162,201912,2584473 -DE,LU,1,16M,201912,260 -DE,LU,1,171,201912,4089480 -DE,LU,1,172,201912,515244 -DE,LU,1,17M,201912,530401 -DE,LU,1,192,201912,27468 -DE,LU,1,201,201912,16055439 -DE,LU,1,202,201912,10979 -DE,LU,1,203,201912,1296038 -DE,LU,1,204,201912,7376673 -DE,LU,1,205,201912,6180926 -DE,LU,1,206,201912,728652 -DE,LU,1,20M,201912,745216 -DE,LU,1,211,201912,290602 -DE,LU,1,212,201912,5466006 -DE,LU,1,221,201912,14159727 -DE,LU,1,222,201912,16828851 -DE,LU,1,231,201912,5119968 -DE,LU,1,232,201912,105101 -DE,LU,1,233,201912,42402 -DE,LU,1,234,201912,374438 -DE,LU,1,235,201912,568680 -DE,LU,1,236,201912,10573 -DE,LU,1,237,201912,24901 -DE,LU,1,239,201912,539575 -DE,LU,1,23M,201912,130808 -DE,LU,1,241,201912,34434786 -DE,LU,1,242,201912,325142 -DE,LU,1,243,201912,3329441 -DE,LU,1,244,201912,14045924 -DE,LU,1,245,201912,51678 -DE,LU,1,251,201912,5095569 -DE,LU,1,252,201912,111526 -DE,LU,1,257,201912,2712610 -DE,LU,1,259,201912,3460156 -DE,LU,1,25M,201912,833470 -DE,LU,1,261,201912,1694559 -DE,LU,1,262,201912,689599 -DE,LU,1,263,201912,3046577 -DE,LU,1,264,201912,49518 -DE,LU,1,265,201912,1178923 -DE,LU,1,266,201912,21956 -DE,LU,1,267,201912,356543 -DE,LU,1,268,201912,41 -DE,LU,1,271,201912,2660944 -DE,LU,1,272,201912,1042442 -DE,LU,1,273,201912,1469627 -DE,LU,1,274,201912,1259882 -DE,LU,1,275,201912,2403670 -DE,LU,1,279,201912,1000071 -DE,LU,1,281,201912,5664276 -DE,LU,1,282,201912,5192255 -DE,LU,1,283,201912,18709 -DE,LU,1,284,201912,1602302 -DE,LU,1,289,201912,3610467 -DE,LU,1,291,201912,8319334 -DE,LU,1,292,201912,1844001 -DE,LU,1,293,201912,3593293 -DE,LU,1,302,201912,85778 -DE,LU,1,303,201912,1295524 -DE,LU,1,309,201912,253472 -DE,LU,1,310,201912,159609 -DE,LU,1,321,201912,5071432 -DE,LU,1,322,201912,3427 -DE,LU,1,323,201912,1457 -DE,LU,1,324,201912,255385 -DE,LU,1,325,201912,91778 -DE,LU,1,329,201912,85362 -DE,LU,1,32M,201912,680 -DE,LU,2,011,201912,806841 -DE,LU,2,012,201912,678047 -DE,LU,2,013,201912,313433 -DE,LU,2,014,201912,157470 -DE,LU,2,01M,201912,45918 -DE,LU,2,022,201912,269638 -DE,LU,2,023,201912,10261 -DE,LU,2,030,201912,29080 -DE,LU,2,052,201912,49242 -DE,LU,2,081,201912,1647094 -DE,LU,2,089,201912,216076 -DE,LU,2,101,201912,2258307 -DE,LU,2,102,201912,495759 -DE,LU,2,103,201912,4032347 -DE,LU,2,104,201912,569580 -DE,LU,2,105,201912,2056017 -DE,LU,2,106,201912,2360890 -DE,LU,2,107,201912,1152833 -DE,LU,2,108,201912,9194323 -DE,LU,2,109,201912,3062867 -DE,LU,2,10M,201912,536253 -DE,LU,2,110,201912,5944202 -DE,LU,2,120,201912,1800372 -DE,LU,2,131,201912,69869 -DE,LU,2,132,201912,214030 -DE,LU,2,139,201912,2781960 -DE,LU,2,13M,201912,23107 -DE,LU,2,141,201912,8235884 -DE,LU,2,142,201912,19800 -DE,LU,2,143,201912,1062968 -DE,LU,2,14M,201912,427905 -DE,LU,2,151,201912,620168 -DE,LU,2,152,201912,3507237 -DE,LU,2,161,201912,978013 -DE,LU,2,162,201912,5444173 -DE,LU,2,16M,201912,5177 -DE,LU,2,171,201912,2333962 -DE,LU,2,172,201912,2713143 -DE,LU,2,17M,201912,245113 -DE,LU,2,17S,201912,100 -DE,LU,2,181,201912,41654 -DE,LU,2,192,201912,25478642 -DE,LU,2,201,201912,14396430 -DE,LU,2,202,201912,293653 -DE,LU,2,203,201912,1466651 -DE,LU,2,204,201912,4790130 -DE,LU,2,205,201912,7005700 -DE,LU,2,206,201912,5472 -DE,LU,2,20M,201912,368579 -DE,LU,2,211,201912,174893 -DE,LU,2,212,201912,5107660 -DE,LU,2,221,201912,4724641 -DE,LU,2,222,201912,14942020 -DE,LU,2,231,201912,2936196 -DE,LU,2,232,201912,258313 -DE,LU,2,233,201912,883783 -DE,LU,2,234,201912,992872 -DE,LU,2,235,201912,506750 -DE,LU,2,236,201912,3318803 -DE,LU,2,237,201912,170628 -DE,LU,2,239,201912,816791 -DE,LU,2,23M,201912,596684 -DE,LU,2,241,201912,7313996 -DE,LU,2,242,201912,1341292 -DE,LU,2,243,201912,1014416 -DE,LU,2,244,201912,17326461 -DE,LU,2,245,201912,109129 -DE,LU,2,251,201912,6119859 -DE,LU,2,252,201912,1177587 -DE,LU,2,253,201912,41212 -DE,LU,2,254,201912,212994 -DE,LU,2,257,201912,4017253 -DE,LU,2,259,201912,6416130 -DE,LU,2,25M,201912,335699 -DE,LU,2,261,201912,671837 -DE,LU,2,262,201912,5441814 -DE,LU,2,263,201912,7250431 -DE,LU,2,264,201912,1252009 -DE,LU,2,265,201912,4534240 -DE,LU,2,266,201912,405818 -DE,LU,2,267,201912,1061031 -DE,LU,2,268,201912,190653 -DE,LU,2,271,201912,5637587 -DE,LU,2,272,201912,626622 -DE,LU,2,273,201912,2621475 -DE,LU,2,274,201912,4208479 -DE,LU,2,275,201912,4567633 -DE,LU,2,279,201912,4101992 -DE,LU,2,281,201912,7594036 -DE,LU,2,282,201912,10859017 -DE,LU,2,283,201912,3264901 -DE,LU,2,284,201912,4146319 -DE,LU,2,289,201912,12073695 -DE,LU,2,291,201912,58536559 -DE,LU,2,292,201912,910808 -DE,LU,2,293,201912,5361120 -DE,LU,2,301,201912,4056 -DE,LU,2,302,201912,612625 -DE,LU,2,303,201912,11677099 -DE,LU,2,309,201912,673964 -DE,LU,2,310,201912,8167507 -DE,LU,2,321,201912,724855 -DE,LU,2,322,201912,211479 -DE,LU,2,323,201912,665272 -DE,LU,2,324,201912,1738190 -DE,LU,2,325,201912,2582454 -DE,LU,2,329,201912,1278336 -DE,LU,2,32M,201912,12935 -DE,LU,2,32S,201912,1568 -DE,LU,2,351,201912,13431509 -DE,LV,1,011,201912,795760 -DE,LV,1,012,201912,70636 -DE,LV,1,01M,201912,6144 -DE,LV,1,022,201912,94862 -DE,LV,1,089,201912,1183155 -DE,LV,1,101,201912,281371 -DE,LV,1,102,201912,997208 -DE,LV,1,103,201912,201765 -DE,LV,1,105,201912,2091690 -DE,LV,1,106,201912,552475 -DE,LV,1,107,201912,357430 -DE,LV,1,108,201912,452752 -DE,LV,1,109,201912,5784 -DE,LV,1,10M,201912,268147 -DE,LV,1,110,201912,967331 -DE,LV,1,132,201912,166709 -DE,LV,1,139,201912,191270 -DE,LV,1,13M,201912,14865 -DE,LV,1,141,201912,215598 -DE,LV,1,143,201912,13794 -DE,LV,1,14M,201912,78574 -DE,LV,1,151,201912,57137 -DE,LV,1,152,201912,24160 -DE,LV,1,161,201912,2605771 -DE,LV,1,162,201912,4310306 -DE,LV,1,171,201912,701 -DE,LV,1,172,201912,23768 -DE,LV,1,17M,201912,19936 -DE,LV,1,192,201912,136066 -DE,LV,1,201,201912,823026 -DE,LV,1,202,201912,8358 -DE,LV,1,203,201912,13044 -DE,LV,1,204,201912,67818 -DE,LV,1,205,201912,541310 -DE,LV,1,20M,201912,9754 -DE,LV,1,211,201912,83069 -DE,LV,1,212,201912,3658032 -DE,LV,1,221,201912,38399 -DE,LV,1,222,201912,456463 -DE,LV,1,231,201912,1556276 -DE,LV,1,233,201912,31005 -DE,LV,1,234,201912,486 -DE,LV,1,239,201912,105224 -DE,LV,1,23M,201912,24296 -DE,LV,1,241,201912,1638294 -DE,LV,1,242,201912,45366 -DE,LV,1,243,201912,1268 -DE,LV,1,244,201912,2364943 -DE,LV,1,251,201912,271836 -DE,LV,1,252,201912,27958 -DE,LV,1,257,201912,881392 -DE,LV,1,259,201912,295792 -DE,LV,1,25M,201912,8039 -DE,LV,1,261,201912,350786 -DE,LV,1,262,201912,1378638 -DE,LV,1,263,201912,1512532 -DE,LV,1,264,201912,715760 -DE,LV,1,265,201912,87942 -DE,LV,1,267,201912,8002 -DE,LV,1,271,201912,1032165 -DE,LV,1,272,201912,12529 -DE,LV,1,273,201912,1136352 -DE,LV,1,274,201912,54693 -DE,LV,1,275,201912,75758 -DE,LV,1,279,201912,354817 -DE,LV,1,281,201912,222608 -DE,LV,1,282,201912,2654073 -DE,LV,1,283,201912,74421 -DE,LV,1,284,201912,26266 -DE,LV,1,289,201912,295342 -DE,LV,1,291,201912,1176778 -DE,LV,1,292,201912,125306 -DE,LV,1,293,201912,1906162 -DE,LV,1,303,201912,41543 -DE,LV,1,309,201912,26440 -DE,LV,1,310,201912,1426037 -DE,LV,1,321,201912,1312 -DE,LV,1,322,201912,52674 -DE,LV,1,323,201912,4621 -DE,LV,1,324,201912,53859 -DE,LV,1,325,201912,27468 -DE,LV,1,329,201912,308133 -DE,LV,1,32M,201912,64 -DE,LV,2,011,201912,51153 -DE,LV,2,012,201912,616106 -DE,LV,2,013,201912,116697 -DE,LV,2,014,201912,59832 -DE,LV,2,01M,201912,12831 -DE,LV,2,022,201912,529 -DE,LV,2,030,201912,71245 -DE,LV,2,081,201912,67712 -DE,LV,2,089,201912,19330 -DE,LV,2,101,201912,669549 -DE,LV,2,102,201912,226173 -DE,LV,2,103,201912,397171 -DE,LV,2,104,201912,440363 -DE,LV,2,105,201912,1044926 -DE,LV,2,106,201912,135829 -DE,LV,2,107,201912,306386 -DE,LV,2,108,201912,3502646 -DE,LV,2,109,201912,911356 -DE,LV,2,10M,201912,222707 -DE,LV,2,110,201912,2103879 -DE,LV,2,120,201912,393710 -DE,LV,2,131,201912,182587 -DE,LV,2,132,201912,152298 -DE,LV,2,139,201912,1088813 -DE,LV,2,13M,201912,30972 -DE,LV,2,141,201912,2525267 -DE,LV,2,142,201912,1977 -DE,LV,2,143,201912,525031 -DE,LV,2,14M,201912,112498 -DE,LV,2,151,201912,553219 -DE,LV,2,152,201912,870169 -DE,LV,2,161,201912,84276 -DE,LV,2,162,201912,492031 -DE,LV,2,16M,201912,1603 -DE,LV,2,171,201912,1153490 -DE,LV,2,172,201912,920582 -DE,LV,2,17M,201912,81533 -DE,LV,2,181,201912,9016 -DE,LV,2,192,201912,620800 -DE,LV,2,201,201912,3991177 -DE,LV,2,202,201912,127569 -DE,LV,2,203,201912,686244 -DE,LV,2,204,201912,1999858 -DE,LV,2,205,201912,1664877 -DE,LV,2,206,201912,76028 -DE,LV,2,20M,201912,137176 -DE,LV,2,20S,201912,229604 -DE,LV,2,211,201912,52958 -DE,LV,2,212,201912,4479750 -DE,LV,2,221,201912,851232 -DE,LV,2,222,201912,3244465 -DE,LV,2,231,201912,674615 -DE,LV,2,232,201912,2709 -DE,LV,2,233,201912,88901 -DE,LV,2,234,201912,271341 -DE,LV,2,235,201912,17449 -DE,LV,2,236,201912,136705 -DE,LV,2,237,201912,11690 -DE,LV,2,239,201912,334374 -DE,LV,2,23M,201912,72256 -DE,LV,2,241,201912,1043020 -DE,LV,2,242,201912,525163 -DE,LV,2,243,201912,117653 -DE,LV,2,244,201912,762452 -DE,LV,2,245,201912,31829 -DE,LV,2,251,201912,459093 -DE,LV,2,252,201912,160548 -DE,LV,2,253,201912,1066 -DE,LV,2,254,201912,175304 -DE,LV,2,257,201912,2178092 -DE,LV,2,259,201912,2063050 -DE,LV,2,25M,201912,96433 -DE,LV,2,261,201912,729014 -DE,LV,2,262,201912,2900745 -DE,LV,2,263,201912,3581667 -DE,LV,2,264,201912,728473 -DE,LV,2,265,201912,2681463 -DE,LV,2,266,201912,1742914 -DE,LV,2,267,201912,832351 -DE,LV,2,268,201912,18157 -DE,LV,2,271,201912,1735652 -DE,LV,2,272,201912,327184 -DE,LV,2,273,201912,1580374 -DE,LV,2,274,201912,443812 -DE,LV,2,275,201912,1252592 -DE,LV,2,279,201912,1141078 -DE,LV,2,281,201912,3779890 -DE,LV,2,282,201912,5173545 -DE,LV,2,283,201912,778720 -DE,LV,2,284,201912,2246838 -DE,LV,2,289,201912,4168342 -DE,LV,2,291,201912,15281258 -DE,LV,2,292,201912,836398 -DE,LV,2,293,201912,2776818 -DE,LV,2,302,201912,67321 -DE,LV,2,303,201912,704506 -DE,LV,2,309,201912,288285 -DE,LV,2,30M,201912,1957 -DE,LV,2,310,201912,959051 -DE,LV,2,321,201912,231157 -DE,LV,2,322,201912,289846 -DE,LV,2,323,201912,391139 -DE,LV,2,324,201912,270327 -DE,LV,2,325,201912,3506450 -DE,LV,2,329,201912,618285 -DE,LV,2,32M,201912,10568 -DE,LV,2,32S,201912,797 -DE,LY,1,061,201912,382151431 -DE,LY,1,141,201912,6 -DE,LY,1,204,201912,12 -DE,LY,2,014,201912,153550 -DE,LY,2,089,201912,64794 -DE,LY,2,105,201912,1305261 -DE,LY,2,106,201912,10884 -DE,LY,2,107,201912,107952 -DE,LY,2,108,201912,1490564 -DE,LY,2,109,201912,28716 -DE,LY,2,139,201912,51940 -DE,LY,2,141,201912,42388 -DE,LY,2,143,201912,2444 -DE,LY,2,151,201912,1166 -DE,LY,2,152,201912,33981 -DE,LY,2,171,201912,30 -DE,LY,2,172,201912,80147 -DE,LY,2,192,201912,983537 -DE,LY,2,201,201912,429770 -DE,LY,2,202,201912,212298 -DE,LY,2,203,201912,141361 -DE,LY,2,204,201912,484920 -DE,LY,2,205,201912,1448136 -DE,LY,2,211,201912,96497 -DE,LY,2,212,201912,8755453 -DE,LY,2,221,201912,93935 -DE,LY,2,222,201912,947836 -DE,LY,2,231,201912,7137 -DE,LY,2,232,201912,23330 -DE,LY,2,234,201912,100407 -DE,LY,2,235,201912,42987 -DE,LY,2,239,201912,38564 -DE,LY,2,242,201912,76139 -DE,LY,2,244,201912,310808 -DE,LY,2,251,201912,121535 -DE,LY,2,252,201912,7025 -DE,LY,2,257,201912,80657 -DE,LY,2,259,201912,820918 -DE,LY,2,261,201912,21791 -DE,LY,2,262,201912,159950 -DE,LY,2,263,201912,42199 -DE,LY,2,264,201912,11183 -DE,LY,2,265,201912,481273 -DE,LY,2,266,201912,1411336 -DE,LY,2,267,201912,903532 -DE,LY,2,271,201912,373195 -DE,LY,2,272,201912,51611 -DE,LY,2,273,201912,465023 -DE,LY,2,274,201912,295897 -DE,LY,2,275,201912,190370 -DE,LY,2,279,201912,126387 -DE,LY,2,281,201912,1185887 -DE,LY,2,282,201912,2190767 -DE,LY,2,283,201912,66502 -DE,LY,2,284,201912,6648 -DE,LY,2,289,201912,822821 -DE,LY,2,291,201912,2383420 -DE,LY,2,292,201912,59640 -DE,LY,2,293,201912,246426 -DE,LY,2,303,201912,25681 -DE,LY,2,309,201912,855 -DE,LY,2,310,201912,128836 -DE,LY,2,324,201912,3607 -DE,LY,2,325,201912,2688082 -DE,LY,2,329,201912,177281 -DE,MA,1,011,201912,1540365 -DE,MA,1,012,201912,2336727 -DE,MA,1,013,201912,14133 -DE,MA,1,014,201912,20 -DE,MA,1,072,201912,113592 -DE,MA,1,081,201912,2340 -DE,MA,1,089,201912,24958 -DE,MA,1,102,201912,2286662 -DE,MA,1,103,201912,464851 -DE,MA,1,104,201912,216030 -DE,MA,1,107,201912,6946 -DE,MA,1,108,201912,1545082 -DE,MA,1,110,201912,283 -DE,MA,1,131,201912,607 -DE,MA,1,132,201912,36394 -DE,MA,1,139,201912,700179 -DE,MA,1,141,201912,5494505 -DE,MA,1,143,201912,1808168 -DE,MA,1,151,201912,2694 -DE,MA,1,152,201912,8481485 -DE,MA,1,162,201912,66796 -DE,MA,1,172,201912,7457 -DE,MA,1,201,201912,21321 -DE,MA,1,204,201912,13320 -DE,MA,1,205,201912,140623 -DE,MA,1,211,201912,2 -DE,MA,1,212,201912,73012 -DE,MA,1,221,201912,1762818 -DE,MA,1,222,201912,487972 -DE,MA,1,231,201912,9454 -DE,MA,1,233,201912,78 -DE,MA,1,234,201912,5972 -DE,MA,1,236,201912,12318 -DE,MA,1,237,201912,7410 -DE,MA,1,242,201912,88 -DE,MA,1,251,201912,6752 -DE,MA,1,252,201912,447 -DE,MA,1,257,201912,21656 -DE,MA,1,259,201912,21110 -DE,MA,1,261,201912,1589827 -DE,MA,1,262,201912,1461 -DE,MA,1,263,201912,18933 -DE,MA,1,264,201912,3053 -DE,MA,1,265,201912,152989 -DE,MA,1,267,201912,57983 -DE,MA,1,271,201912,778840 -DE,MA,1,273,201912,1597194 -DE,MA,1,274,201912,156800 -DE,MA,1,279,201912,481866 -DE,MA,1,281,201912,479541 -DE,MA,1,282,201912,209191 -DE,MA,1,289,201912,84877 -DE,MA,1,293,201912,8186406 -DE,MA,1,303,201912,168980 -DE,MA,1,310,201912,12114 -DE,MA,1,325,201912,16435 -DE,MA,1,329,201912,1560 -DE,MA,2,011,201912,6143229 -DE,MA,2,012,201912,267862 -DE,MA,2,014,201912,2303490 -DE,MA,2,030,201912,96807 -DE,MA,2,081,201912,1516 -DE,MA,2,089,201912,63538 -DE,MA,2,101,201912,453574 -DE,MA,2,102,201912,249175 -DE,MA,2,103,201912,85473 -DE,MA,2,104,201912,78716 -DE,MA,2,105,201912,506533 -DE,MA,2,106,201912,574721 -DE,MA,2,107,201912,86867 -DE,MA,2,108,201912,1456443 -DE,MA,2,109,201912,114489 -DE,MA,2,110,201912,447537 -DE,MA,2,120,201912,93801 -DE,MA,2,131,201912,217871 -DE,MA,2,132,201912,1135859 -DE,MA,2,139,201912,4881051 -DE,MA,2,141,201912,511098 -DE,MA,2,143,201912,90824 -DE,MA,2,151,201912,100790 -DE,MA,2,152,201912,510056 -DE,MA,2,161,201912,549481 -DE,MA,2,162,201912,265902 -DE,MA,2,171,201912,2756661 -DE,MA,2,172,201912,807724 -DE,MA,2,181,201912,3718 -DE,MA,2,192,201912,987690 -DE,MA,2,201,201912,6326312 -DE,MA,2,202,201912,632464 -DE,MA,2,203,201912,914164 -DE,MA,2,204,201912,2110423 -DE,MA,2,205,201912,6202041 -DE,MA,2,206,201912,83996 -DE,MA,2,20S,201912,8987 -DE,MA,2,211,201912,768626 -DE,MA,2,212,201912,8088586 -DE,MA,2,221,201912,3718263 -DE,MA,2,222,201912,7607560 -DE,MA,2,231,201912,238187 -DE,MA,2,232,201912,81508 -DE,MA,2,234,201912,33257 -DE,MA,2,236,201912,7032 -DE,MA,2,237,201912,64 -DE,MA,2,239,201912,272437 -DE,MA,2,241,201912,6320198 -DE,MA,2,242,201912,38777 -DE,MA,2,243,201912,96947 -DE,MA,2,244,201912,822904 -DE,MA,2,245,201912,578 -DE,MA,2,251,201912,532497 -DE,MA,2,252,201912,20129 -DE,MA,2,253,201912,418116 -DE,MA,2,257,201912,1252378 -DE,MA,2,259,201912,1568318 -DE,MA,2,261,201912,819975 -DE,MA,2,262,201912,1296827 -DE,MA,2,263,201912,704220 -DE,MA,2,264,201912,206115 -DE,MA,2,265,201912,3661025 -DE,MA,2,266,201912,1337666 -DE,MA,2,267,201912,1230340 -DE,MA,2,268,201912,785 -DE,MA,2,271,201912,3458056 -DE,MA,2,272,201912,132248 -DE,MA,2,273,201912,12892553 -DE,MA,2,274,201912,650149 -DE,MA,2,275,201912,777209 -DE,MA,2,279,201912,4178148 -DE,MA,2,281,201912,3790184 -DE,MA,2,282,201912,12050584 -DE,MA,2,283,201912,522964 -DE,MA,2,284,201912,385792 -DE,MA,2,289,201912,4750494 -DE,MA,2,291,201912,37520859 -DE,MA,2,292,201912,238437 -DE,MA,2,293,201912,2353600 -DE,MA,2,303,201912,1447446 -DE,MA,2,309,201912,499841 -DE,MA,2,310,201912,1380744 -DE,MA,2,321,201912,16785 -DE,MA,2,322,201912,655 -DE,MA,2,323,201912,24458 -DE,MA,2,324,201912,192766 -DE,MA,2,325,201912,3481966 -DE,MA,2,329,201912,341147 -DE,MA,2,32S,201912,72 -DE,MD,1,011,201912,337919 -DE,MD,1,014,201912,15 -DE,MD,1,101,201912,2707 -DE,MD,1,102,201912,74999 -DE,MD,1,103,201912,2076387 -DE,MD,1,106,201912,16504 -DE,MD,1,107,201912,140704 -DE,MD,1,108,201912,21089 -DE,MD,1,110,201912,121762 -DE,MD,1,132,201912,69165 -DE,MD,1,139,201912,217676 -DE,MD,1,141,201912,1002817 -DE,MD,1,143,201912,383 -DE,MD,1,151,201912,9605 -DE,MD,1,152,201912,992967 -DE,MD,1,172,201912,1796 -DE,MD,1,205,201912,121325 -DE,MD,1,211,201912,387 -DE,MD,1,222,201912,27095 -DE,MD,1,251,201912,7210 -DE,MD,1,259,201912,15334 -DE,MD,1,265,201912,135843 -DE,MD,1,273,201912,1131411 -DE,MD,1,274,201912,433156 -DE,MD,1,275,201912,45474 -DE,MD,1,279,201912,61436 -DE,MD,1,281,201912,3615 -DE,MD,1,282,201912,221319 -DE,MD,1,289,201912,356 -DE,MD,1,293,201912,4004071 -DE,MD,1,310,201912,3975454 -DE,MD,1,325,201912,6926 -DE,MD,2,011,201912,49984 -DE,MD,2,012,201912,22130 -DE,MD,2,014,201912,413265 -DE,MD,2,081,201912,6800 -DE,MD,2,089,201912,4466 -DE,MD,2,101,201912,176067 -DE,MD,2,102,201912,4640 -DE,MD,2,103,201912,37680 -DE,MD,2,104,201912,2380 -DE,MD,2,105,201912,226599 -DE,MD,2,106,201912,128522 -DE,MD,2,107,201912,63874 -DE,MD,2,108,201912,654493 -DE,MD,2,109,201912,213661 -DE,MD,2,110,201912,812566 -DE,MD,2,120,201912,34793 -DE,MD,2,131,201912,37236 -DE,MD,2,132,201912,684920 -DE,MD,2,139,201912,1319972 -DE,MD,2,141,201912,267402 -DE,MD,2,143,201912,17301 -DE,MD,2,151,201912,293928 -DE,MD,2,152,201912,116460 -DE,MD,2,162,201912,121117 -DE,MD,2,171,201912,105530 -DE,MD,2,172,201912,199948 -DE,MD,2,192,201912,367673 -DE,MD,2,201,201912,378368 -DE,MD,2,202,201912,1221929 -DE,MD,2,203,201912,207376 -DE,MD,2,204,201912,401099 -DE,MD,2,205,201912,490083 -DE,MD,2,211,201912,49056 -DE,MD,2,212,201912,1553327 -DE,MD,2,221,201912,379242 -DE,MD,2,222,201912,1546888 -DE,MD,2,231,201912,32778 -DE,MD,2,232,201912,26944 -DE,MD,2,234,201912,47294 -DE,MD,2,236,201912,10853 -DE,MD,2,237,201912,817 -DE,MD,2,239,201912,73277 -DE,MD,2,241,201912,3475 -DE,MD,2,242,201912,62840 -DE,MD,2,243,201912,11143 -DE,MD,2,244,201912,559011 -DE,MD,2,251,201912,13457 -DE,MD,2,252,201912,437402 -DE,MD,2,257,201912,420195 -DE,MD,2,259,201912,173193 -DE,MD,2,261,201912,144409 -DE,MD,2,262,201912,400326 -DE,MD,2,263,201912,475113 -DE,MD,2,264,201912,62328 -DE,MD,2,265,201912,535349 -DE,MD,2,266,201912,32710 -DE,MD,2,267,201912,34155 -DE,MD,2,271,201912,220805 -DE,MD,2,272,201912,189147 -DE,MD,2,273,201912,433745 -DE,MD,2,274,201912,124721 -DE,MD,2,275,201912,518049 -DE,MD,2,279,201912,211029 -DE,MD,2,281,201912,591600 -DE,MD,2,282,201912,1126921 -DE,MD,2,283,201912,883554 -DE,MD,2,284,201912,207889 -DE,MD,2,289,201912,1285895 -DE,MD,2,291,201912,7554627 -DE,MD,2,292,201912,661583 -DE,MD,2,293,201912,771241 -DE,MD,2,303,201912,72946 -DE,MD,2,309,201912,25041 -DE,MD,2,310,201912,130458 -DE,MD,2,321,201912,21045 -DE,MD,2,322,201912,1410 -DE,MD,2,323,201912,22636 -DE,MD,2,324,201912,56724 -DE,MD,2,325,201912,780494 -DE,MD,2,329,201912,102996 -DE,ME,1,012,201912,71350 -DE,ME,1,110,201912,13954 -DE,ME,1,141,201912,2536 -DE,ME,1,162,201912,124908 -DE,ME,1,212,201912,450202 -DE,ME,1,222,201912,8110 -DE,ME,1,241,201912,91260 -DE,ME,1,251,201912,4750 -DE,ME,1,263,201912,733 -DE,ME,1,271,201912,1514 -DE,ME,1,279,201912,545 -DE,ME,1,281,201912,74517 -DE,ME,2,011,201912,16540 -DE,ME,2,012,201912,1997 -DE,ME,2,089,201912,6502 -DE,ME,2,101,201912,1370043 -DE,ME,2,102,201912,6091 -DE,ME,2,103,201912,13263 -DE,ME,2,105,201912,605004 -DE,ME,2,106,201912,2623 -DE,ME,2,107,201912,11169 -DE,ME,2,108,201912,222277 -DE,ME,2,110,201912,43413 -DE,ME,2,120,201912,4352 -DE,ME,2,132,201912,9411 -DE,ME,2,139,201912,11093 -DE,ME,2,141,201912,168198 -DE,ME,2,143,201912,63617 -DE,ME,2,151,201912,3177 -DE,ME,2,152,201912,35990 -DE,ME,2,162,201912,14532 -DE,ME,2,171,201912,527 -DE,ME,2,172,201912,68455 -DE,ME,2,192,201912,22758 -DE,ME,2,201,201912,5835 -DE,ME,2,202,201912,4291 -DE,ME,2,203,201912,13680 -DE,ME,2,204,201912,174824 -DE,ME,2,205,201912,89632 -DE,ME,2,212,201912,213046 -DE,ME,2,221,201912,47189 -DE,ME,2,222,201912,200124 -DE,ME,2,231,201912,17263 -DE,ME,2,234,201912,22978 -DE,ME,2,236,201912,27785 -DE,ME,2,237,201912,116 -DE,ME,2,239,201912,26968 -DE,ME,2,241,201912,10850 -DE,ME,2,242,201912,15250 -DE,ME,2,243,201912,10695 -DE,ME,2,244,201912,23586 -DE,ME,2,251,201912,42512 -DE,ME,2,257,201912,50010 -DE,ME,2,259,201912,96133 -DE,ME,2,261,201912,28963 -DE,ME,2,262,201912,141030 -DE,ME,2,263,201912,25880 -DE,ME,2,264,201912,6850 -DE,ME,2,265,201912,95910 -DE,ME,2,266,201912,129494 -DE,ME,2,267,201912,21209 -DE,ME,2,271,201912,53152 -DE,ME,2,272,201912,6886 -DE,ME,2,273,201912,84929 -DE,ME,2,274,201912,57656 -DE,ME,2,275,201912,84066 -DE,ME,2,279,201912,60131 -DE,ME,2,281,201912,168669 -DE,ME,2,282,201912,192468 -DE,ME,2,284,201912,134844 -DE,ME,2,289,201912,93451 -DE,ME,2,291,201912,1995930 -DE,ME,2,292,201912,30000 -DE,ME,2,293,201912,78404 -DE,ME,2,309,201912,109 -DE,ME,2,310,201912,43792 -DE,ME,2,321,201912,2762 -DE,ME,2,322,201912,17126 -DE,ME,2,323,201912,4055 -DE,ME,2,324,201912,62061 -DE,ME,2,325,201912,103943 -DE,ME,2,329,201912,511751 -DE,MG,1,011,201912,27528 -DE,MG,1,012,201912,2953273 -DE,MG,1,089,201912,73952 -DE,MG,1,103,201912,28455 -DE,MG,1,108,201912,297525 -DE,MG,1,139,201912,86767 -DE,MG,1,141,201912,738602 -DE,MG,1,143,201912,1325033 -DE,MG,1,151,201912,1579 -DE,MG,1,162,201912,4832 -DE,MG,1,205,201912,2119 -DE,MG,1,259,201912,112 -DE,MG,1,279,201912,1286 -DE,MG,1,321,201912,37131 -DE,MG,1,329,201912,2985 -DE,MG,2,108,201912,11124 -DE,MG,2,131,201912,5986 -DE,MG,2,139,201912,56428 -DE,MG,2,141,201912,49172 -DE,MG,2,151,201912,4489 -DE,MG,2,171,201912,17319 -DE,MG,2,172,201912,7064 -DE,MG,2,192,201912,215659 -DE,MG,2,201,201912,2928 -DE,MG,2,203,201912,1238 -DE,MG,2,204,201912,6124 -DE,MG,2,205,201912,55330 -DE,MG,2,211,201912,7670 -DE,MG,2,212,201912,116318 -DE,MG,2,221,201912,26699 -DE,MG,2,222,201912,29043 -DE,MG,2,231,201912,14266 -DE,MG,2,234,201912,516 -DE,MG,2,239,201912,2239 -DE,MG,2,241,201912,27400 -DE,MG,2,242,201912,4162 -DE,MG,2,251,201912,184926 -DE,MG,2,257,201912,20407 -DE,MG,2,259,201912,97294 -DE,MG,2,261,201912,1247 -DE,MG,2,262,201912,130969 -DE,MG,2,263,201912,601 -DE,MG,2,265,201912,50370 -DE,MG,2,271,201912,19463 -DE,MG,2,273,201912,32015 -DE,MG,2,279,201912,76791 -DE,MG,2,281,201912,166122 -DE,MG,2,282,201912,660097 -DE,MG,2,289,201912,176900 -DE,MG,2,291,201912,214293 -DE,MG,2,293,201912,54315 -DE,MG,2,310,201912,8887 -DE,MG,2,323,201912,6395 -DE,MG,2,324,201912,1442 -DE,MG,2,325,201912,53004 -DE,MG,2,329,201912,257066 -DE,MH,2,259,201912,3352 -DE,MH,2,281,201912,9261 -DE,MH,2,301,201912,51540660 -DE,MK,1,011,201912,3505368 -DE,MK,1,012,201912,222962 -DE,MK,1,013,201912,556759 -DE,MK,1,103,201912,667451 -DE,MK,1,105,201912,2 -DE,MK,1,106,201912,53585 -DE,MK,1,107,201912,167603 -DE,MK,1,108,201912,149507 -DE,MK,1,110,201912,977296 -DE,MK,1,120,201912,129 -DE,MK,1,131,201912,105727 -DE,MK,1,132,201912,209573 -DE,MK,1,139,201912,1040053 -DE,MK,1,141,201912,15951564 -DE,MK,1,142,201912,1550 -DE,MK,1,143,201912,802985 -DE,MK,1,151,201912,3653 -DE,MK,1,152,201912,15931 -DE,MK,1,162,201912,18671 -DE,MK,1,172,201912,75566 -DE,MK,1,201,201912,19844 -DE,MK,1,203,201912,35733 -DE,MK,1,205,201912,105410580 -DE,MK,1,211,201912,65 -DE,MK,1,221,201912,86899 -DE,MK,1,222,201912,255467 -DE,MK,1,231,201912,1950 -DE,MK,1,232,201912,122038 -DE,MK,1,237,201912,6205 -DE,MK,1,241,201912,2680658 -DE,MK,1,242,201912,687688 -DE,MK,1,244,201912,6213 -DE,MK,1,251,201912,456163 -DE,MK,1,257,201912,127190 -DE,MK,1,259,201912,107907 -DE,MK,1,261,201912,466821 -DE,MK,1,262,201912,10137 -DE,MK,1,263,201912,1631 -DE,MK,1,265,201912,12210 -DE,MK,1,271,201912,11442077 -DE,MK,1,273,201912,2548225 -DE,MK,1,274,201912,174566 -DE,MK,1,275,201912,28144 -DE,MK,1,279,201912,367051 -DE,MK,1,281,201912,15176 -DE,MK,1,282,201912,70439276 -DE,MK,1,289,201912,492938 -DE,MK,1,291,201912,290 -DE,MK,1,292,201912,12914 -DE,MK,1,293,201912,14746951 -DE,MK,1,309,201912,24915 -DE,MK,1,310,201912,6786129 -DE,MK,1,324,201912,8 -DE,MK,1,325,201912,23161 -DE,MK,1,329,201912,35541 -DE,MK,2,011,201912,2540 -DE,MK,2,012,201912,24021 -DE,MK,2,081,201912,2419 -DE,MK,2,089,201912,30963 -DE,MK,2,101,201912,331682 -DE,MK,2,103,201912,156798 -DE,MK,2,104,201912,9072 -DE,MK,2,105,201912,2140054 -DE,MK,2,106,201912,86792 -DE,MK,2,107,201912,236563 -DE,MK,2,108,201912,1097803 -DE,MK,2,109,201912,138131 -DE,MK,2,110,201912,114462 -DE,MK,2,120,201912,294102 -DE,MK,2,131,201912,322364 -DE,MK,2,132,201912,6535115 -DE,MK,2,139,201912,2788247 -DE,MK,2,141,201912,381885 -DE,MK,2,142,201912,393 -DE,MK,2,143,201912,43246 -DE,MK,2,151,201912,69877 -DE,MK,2,152,201912,7617 -DE,MK,2,161,201912,140 -DE,MK,2,162,201912,49542 -DE,MK,2,171,201912,359253 -DE,MK,2,172,201912,448028 -DE,MK,2,191,201912,47136 -DE,MK,2,192,201912,172402 -DE,MK,2,201,201912,1039966 -DE,MK,2,202,201912,83664 -DE,MK,2,203,201912,109660 -DE,MK,2,204,201912,354410 -DE,MK,2,205,201912,11714365 -DE,MK,2,206,201912,5740 -DE,MK,2,211,201912,21797 -DE,MK,2,212,201912,861705 -DE,MK,2,221,201912,448999 -DE,MK,2,222,201912,2673284 -DE,MK,2,231,201912,51211 -DE,MK,2,232,201912,37063 -DE,MK,2,234,201912,20327977 -DE,MK,2,236,201912,9523 -DE,MK,2,239,201912,19967 -DE,MK,2,241,201912,27721 -DE,MK,2,242,201912,13715 -DE,MK,2,243,201912,52235 -DE,MK,2,244,201912,1020687 -DE,MK,2,245,201912,97 -DE,MK,2,251,201912,46931 -DE,MK,2,252,201912,39892 -DE,MK,2,257,201912,1088928 -DE,MK,2,259,201912,565843 -DE,MK,2,261,201912,4400311 -DE,MK,2,262,201912,367214 -DE,MK,2,263,201912,176305 -DE,MK,2,264,201912,65652 -DE,MK,2,265,201912,1229715 -DE,MK,2,266,201912,123112 -DE,MK,2,267,201912,291696 -DE,MK,2,268,201912,6343 -DE,MK,2,271,201912,4315143 -DE,MK,2,272,201912,219208 -DE,MK,2,273,201912,6348807 -DE,MK,2,274,201912,123392 -DE,MK,2,275,201912,242885 -DE,MK,2,279,201912,1223385 -DE,MK,2,281,201912,841226 -DE,MK,2,282,201912,5553509 -DE,MK,2,283,201912,338948 -DE,MK,2,284,201912,327881 -DE,MK,2,289,201912,1320172 -DE,MK,2,291,201912,4051307 -DE,MK,2,292,201912,657609 -DE,MK,2,293,201912,2055572 -DE,MK,2,302,201912,27231 -DE,MK,2,309,201912,12902 -DE,MK,2,310,201912,578894 -DE,MK,2,321,201912,10618 -DE,MK,2,322,201912,16235 -DE,MK,2,323,201912,39870 -DE,MK,2,324,201912,39507 -DE,MK,2,325,201912,688109 -DE,MK,2,329,201912,615563 -DE,ML,1,011,201912,755527 -DE,ML,1,103,201912,17283 -DE,ML,2,101,201912,2523 -DE,ML,2,102,201912,873 -DE,ML,2,103,201912,4000 -DE,ML,2,104,201912,488 -DE,ML,2,105,201912,185120 -DE,ML,2,106,201912,8732 -DE,ML,2,107,201912,6282 -DE,ML,2,108,201912,196768 -DE,ML,2,109,201912,568 -DE,ML,2,110,201912,115352 -DE,ML,2,120,201912,18761 -DE,ML,2,132,201912,725993 -DE,ML,2,139,201912,2343 -DE,ML,2,141,201912,486064 -DE,ML,2,151,201912,26771 -DE,ML,2,152,201912,1632 -DE,ML,2,171,201912,14426 -DE,ML,2,172,201912,71491 -DE,ML,2,201,201912,124556 -DE,ML,2,204,201912,10511 -DE,ML,2,205,201912,143288 -DE,ML,2,211,201912,1792 -DE,ML,2,212,201912,25840 -DE,ML,2,221,201912,1433 -DE,ML,2,222,201912,7552 -DE,ML,2,231,201912,5062 -DE,ML,2,239,201912,276645 -DE,ML,2,244,201912,2428 -DE,ML,2,251,201912,90466 -DE,ML,2,257,201912,46876 -DE,ML,2,259,201912,3529 -DE,ML,2,261,201912,109480 -DE,ML,2,262,201912,29581 -DE,ML,2,263,201912,41244 -DE,ML,2,264,201912,10561 -DE,ML,2,265,201912,192696 -DE,ML,2,267,201912,2260 -DE,ML,2,271,201912,123011 -DE,ML,2,272,201912,96536 -DE,ML,2,273,201912,33443 -DE,ML,2,274,201912,11909 -DE,ML,2,275,201912,19160 -DE,ML,2,279,201912,190161 -DE,ML,2,281,201912,53728 -DE,ML,2,282,201912,239192 -DE,ML,2,284,201912,5500 -DE,ML,2,289,201912,144997 -DE,ML,2,291,201912,631271 -DE,ML,2,293,201912,9683 -DE,ML,2,309,201912,90 -DE,ML,2,310,201912,8813 -DE,ML,2,324,201912,1384 -DE,ML,2,325,201912,14480 -DE,ML,2,329,201912,34780 -DE,MM,1,011,201912,70830 -DE,MM,1,014,201912,1 -DE,MM,1,106,201912,391987 -DE,MM,1,139,201912,2835 -DE,MM,1,141,201912,30909488 -DE,MM,1,143,201912,8358196 -DE,MM,1,151,201912,479504 -DE,MM,1,152,201912,4270509 -DE,MM,1,171,201912,333 -DE,MM,1,172,201912,8 -DE,MM,1,221,201912,206769 -DE,MM,1,222,201912,1325 -DE,MM,1,271,201912,122545 -DE,MM,1,279,201912,94 -DE,MM,1,323,201912,105 -DE,MM,1,329,201912,130025 -DE,MM,2,101,201912,675017 -DE,MM,2,104,201912,97 -DE,MM,2,105,201912,300961 -DE,MM,2,108,201912,1044660 -DE,MM,2,110,201912,91753 -DE,MM,2,132,201912,730 -DE,MM,2,139,201912,152877 -DE,MM,2,141,201912,6047 -DE,MM,2,151,201912,41629 -DE,MM,2,171,201912,62889 -DE,MM,2,172,201912,2678 -DE,MM,2,181,201912,80960 -DE,MM,2,192,201912,146205 -DE,MM,2,201,201912,503851 -DE,MM,2,203,201912,2622309 -DE,MM,2,204,201912,160783 -DE,MM,2,205,201912,424178 -DE,MM,2,211,201912,42847 -DE,MM,2,212,201912,1570942 -DE,MM,2,221,201912,54088 -DE,MM,2,222,201912,568996 -DE,MM,2,231,201912,3080 -DE,MM,2,232,201912,32391 -DE,MM,2,233,201912,12700 -DE,MM,2,234,201912,3092 -DE,MM,2,239,201912,19183 -DE,MM,2,242,201912,17679 -DE,MM,2,257,201912,83010 -DE,MM,2,259,201912,28697 -DE,MM,2,262,201912,133788 -DE,MM,2,263,201912,83678 -DE,MM,2,264,201912,40393 -DE,MM,2,265,201912,462497 -DE,MM,2,266,201912,35798 -DE,MM,2,267,201912,24611 -DE,MM,2,271,201912,976219 -DE,MM,2,272,201912,4859 -DE,MM,2,273,201912,164736 -DE,MM,2,274,201912,76385 -DE,MM,2,275,201912,2981 -DE,MM,2,279,201912,192741 -DE,MM,2,281,201912,934892 -DE,MM,2,282,201912,938303 -DE,MM,2,284,201912,35543 -DE,MM,2,289,201912,809336 -DE,MM,2,291,201912,635043 -DE,MM,2,293,201912,68406 -DE,MM,2,325,201912,534495 -DE,MM,2,329,201912,21754 -DE,MN,1,014,201912,361581 -DE,MN,1,101,201912,1042 -DE,MN,1,131,201912,118329 -DE,MN,1,139,201912,10975 -DE,MN,1,141,201912,370185 -DE,MN,1,143,201912,371891 -DE,MN,1,204,201912,1267 -DE,MN,1,205,201912,226 -DE,MN,2,011,201912,2768 -DE,MN,2,012,201912,2805 -DE,MN,2,014,201912,1036 -DE,MN,2,089,201912,22 -DE,MN,2,101,201912,2613 -DE,MN,2,102,201912,5557 -DE,MN,2,103,201912,194123 -DE,MN,2,104,201912,1890 -DE,MN,2,105,201912,95250 -DE,MN,2,106,201912,37882 -DE,MN,2,107,201912,87809 -DE,MN,2,108,201912,856171 -DE,MN,2,109,201912,5751 -DE,MN,2,110,201912,179552 -DE,MN,2,120,201912,113608 -DE,MN,2,139,201912,97930 -DE,MN,2,141,201912,61346 -DE,MN,2,143,201912,12901 -DE,MN,2,151,201912,20921 -DE,MN,2,152,201912,55342 -DE,MN,2,162,201912,511359 -DE,MN,2,171,201912,5547 -DE,MN,2,172,201912,62108 -DE,MN,2,192,201912,163091 -DE,MN,2,201,201912,20734 -DE,MN,2,202,201912,429 -DE,MN,2,203,201912,2635 -DE,MN,2,204,201912,357016 -DE,MN,2,205,201912,256653 -DE,MN,2,211,201912,6374 -DE,MN,2,212,201912,552792 -DE,MN,2,221,201912,147557 -DE,MN,2,222,201912,94526 -DE,MN,2,231,201912,61598 -DE,MN,2,234,201912,12809 -DE,MN,2,236,201912,43643 -DE,MN,2,239,201912,5487 -DE,MN,2,242,201912,26607 -DE,MN,2,244,201912,45728 -DE,MN,2,251,201912,10303 -DE,MN,2,252,201912,55616 -DE,MN,2,254,201912,54293 -DE,MN,2,257,201912,83480 -DE,MN,2,259,201912,131106 -DE,MN,2,261,201912,1133 -DE,MN,2,262,201912,43682 -DE,MN,2,263,201912,4347 -DE,MN,2,264,201912,31598 -DE,MN,2,265,201912,149869 -DE,MN,2,266,201912,2245 -DE,MN,2,267,201912,10150 -DE,MN,2,271,201912,42915 -DE,MN,2,272,201912,9270 -DE,MN,2,273,201912,870221 -DE,MN,2,274,201912,64759 -DE,MN,2,275,201912,177133 -DE,MN,2,279,201912,10449 -DE,MN,2,281,201912,1683447 -DE,MN,2,282,201912,504208 -DE,MN,2,284,201912,49133 -DE,MN,2,289,201912,73983 -DE,MN,2,291,201912,1104517 -DE,MN,2,293,201912,28269 -DE,MN,2,310,201912,316373 -DE,MN,2,321,201912,1885 -DE,MN,2,323,201912,5241 -DE,MN,2,324,201912,8214 -DE,MN,2,325,201912,210591 -DE,MN,2,329,201912,61916 -DE,MO,1,139,201912,244 -DE,MO,1,141,201912,41502 -DE,MO,1,257,201912,1232 -DE,MO,1,259,201912,35 -DE,MO,1,261,201912,56543 -DE,MO,1,265,201912,1377 -DE,MO,1,281,201912,5056 -DE,MO,1,282,201912,7331 -DE,MO,1,324,201912,19440 -DE,MO,2,105,201912,93182 -DE,MO,2,108,201912,2157 -DE,MO,2,110,201912,30795 -DE,MO,2,139,201912,2353 -DE,MO,2,141,201912,561945 -DE,MO,2,142,201912,9850 -DE,MO,2,143,201912,120011 -DE,MO,2,151,201912,810351 -DE,MO,2,152,201912,352308 -DE,MO,2,172,201912,27 -DE,MO,2,204,201912,33770 -DE,MO,2,205,201912,32986 -DE,MO,2,212,201912,43114 -DE,MO,2,221,201912,869 -DE,MO,2,222,201912,29352 -DE,MO,2,231,201912,1479 -DE,MO,2,234,201912,170664 -DE,MO,2,239,201912,231 -DE,MO,2,257,201912,760 -DE,MO,2,259,201912,341651 -DE,MO,2,261,201912,16230 -DE,MO,2,262,201912,552966 -DE,MO,2,263,201912,31368 -DE,MO,2,264,201912,241507 -DE,MO,2,265,201912,388657 -DE,MO,2,267,201912,10410 -DE,MO,2,271,201912,19021 -DE,MO,2,273,201912,10239 -DE,MO,2,274,201912,24505 -DE,MO,2,275,201912,196099 -DE,MO,2,279,201912,10453 -DE,MO,2,281,201912,280137 -DE,MO,2,282,201912,102707 -DE,MO,2,284,201912,1877 -DE,MO,2,289,201912,8616 -DE,MO,2,303,201912,66413667 -DE,MO,2,309,201912,14692 -DE,MO,2,310,201912,92 -DE,MO,2,321,201912,29056 -DE,MO,2,322,201912,17327 -DE,MO,2,324,201912,4045 -DE,MO,2,325,201912,42155 -DE,MO,2,329,201912,3221 -DE,MP,2,222,201912,8408 -DE,MP,2,281,201912,140177 -DE,MP,2,282,201912,1139 -DE,MR,2,105,201912,2046233 -DE,MR,2,108,201912,78643 -DE,MR,2,132,201912,54000 -DE,MR,2,141,201912,93615 -DE,MR,2,151,201912,140 -DE,MR,2,171,201912,10571 -DE,MR,2,192,201912,64865 -DE,MR,2,201,201912,9980 -DE,MR,2,203,201912,837 -DE,MR,2,204,201912,32441 -DE,MR,2,205,201912,86632 -DE,MR,2,211,201912,245 -DE,MR,2,212,201912,47451 -DE,MR,2,221,201912,102456 -DE,MR,2,222,201912,8208 -DE,MR,2,231,201912,67 -DE,MR,2,234,201912,38 -DE,MR,2,239,201912,4426 -DE,MR,2,242,201912,880 -DE,MR,2,251,201912,176244 -DE,MR,2,257,201912,5671 -DE,MR,2,259,201912,3019 -DE,MR,2,262,201912,10895 -DE,MR,2,264,201912,14691 -DE,MR,2,265,201912,42778 -DE,MR,2,267,201912,24569 -DE,MR,2,271,201912,18215 -DE,MR,2,273,201912,4257 -DE,MR,2,274,201912,7144 -DE,MR,2,279,201912,19542 -DE,MR,2,281,201912,73599 -DE,MR,2,282,201912,365836 -DE,MR,2,283,201912,309785 -DE,MR,2,289,201912,65472 -DE,MR,2,291,201912,954854 -DE,MR,2,293,201912,21144 -DE,MR,2,309,201912,90 -DE,MR,2,310,201912,4817 -DE,MR,2,325,201912,87612 -DE,MR,2,329,201912,1127 -DE,MS,2,212,201912,156 -DE,MS,2,222,201912,1835 -DE,MS,2,257,201912,20 -DE,MS,2,259,201912,3220 -DE,MT,1,10M,201912,3199 -DE,MT,1,139,201912,43618 -DE,MT,1,141,201912,20527 -DE,MT,1,14M,201912,44987 -DE,MT,1,151,201912,4075 -DE,MT,1,152,201912,46306 -DE,MT,1,172,201912,557262 -DE,MT,1,17M,201912,90 -DE,MT,1,201,201912,92145 -DE,MT,1,203,201912,56464 -DE,MT,1,204,201912,54955 -DE,MT,1,205,201912,7093 -DE,MT,1,20M,201912,101216 -DE,MT,1,212,201912,5644213 -DE,MT,1,221,201912,484677 -DE,MT,1,222,201912,1569381 -DE,MT,1,231,201912,96522 -DE,MT,1,23M,201912,47 -DE,MT,1,242,201912,201 -DE,MT,1,244,201912,45591 -DE,MT,1,257,201912,90937 -DE,MT,1,259,201912,10968 -DE,MT,1,25M,201912,3306 -DE,MT,1,261,201912,21856 -DE,MT,1,262,201912,101332 -DE,MT,1,263,201912,65470 -DE,MT,1,264,201912,8805 -DE,MT,1,265,201912,741293 -DE,MT,1,267,201912,8885 -DE,MT,1,271,201912,1000414 -DE,MT,1,272,201912,80771 -DE,MT,1,273,201912,1725886 -DE,MT,1,274,201912,41686 -DE,MT,1,275,201912,161200 -DE,MT,1,279,201912,86900 -DE,MT,1,281,201912,271640 -DE,MT,1,282,201912,1479043 -DE,MT,1,289,201912,350044 -DE,MT,1,293,201912,753172 -DE,MT,1,303,201912,180593 -DE,MT,1,310,201912,105 -DE,MT,1,323,201912,22404 -DE,MT,1,324,201912,8486014 -DE,MT,1,325,201912,659488 -DE,MT,1,329,201912,4088 -DE,MT,1,32M,201912,194 -DE,MT,2,011,201912,1085 -DE,MT,2,012,201912,2711 -DE,MT,2,014,201912,4792 -DE,MT,2,01M,201912,3221 -DE,MT,2,081,201912,279 -DE,MT,2,089,201912,32660 -DE,MT,2,101,201912,506409 -DE,MT,2,102,201912,213533 -DE,MT,2,103,201912,69997 -DE,MT,2,104,201912,13131 -DE,MT,2,105,201912,221391 -DE,MT,2,106,201912,54791 -DE,MT,2,107,201912,239202 -DE,MT,2,108,201912,499843 -DE,MT,2,109,201912,112192 -DE,MT,2,10M,201912,65325 -DE,MT,2,110,201912,137893 -DE,MT,2,120,201912,200788 -DE,MT,2,131,201912,996 -DE,MT,2,132,201912,7241 -DE,MT,2,139,201912,195582 -DE,MT,2,13M,201912,3647 -DE,MT,2,141,201912,887574 -DE,MT,2,142,201912,454 -DE,MT,2,143,201912,319043 -DE,MT,2,14M,201912,33817 -DE,MT,2,151,201912,114823 -DE,MT,2,152,201912,309097 -DE,MT,2,161,201912,155 -DE,MT,2,162,201912,201620 -DE,MT,2,16M,201912,190 -DE,MT,2,171,201912,1281499 -DE,MT,2,172,201912,369567 -DE,MT,2,17M,201912,14275 -DE,MT,2,181,201912,19480 -DE,MT,2,192,201912,88290 -DE,MT,2,201,201912,2433047 -DE,MT,2,202,201912,4534 -DE,MT,2,203,201912,250598 -DE,MT,2,204,201912,535276 -DE,MT,2,205,201912,458226 -DE,MT,2,206,201912,50 -DE,MT,2,20M,201912,34270 -DE,MT,2,211,201912,34329 -DE,MT,2,212,201912,1673773 -DE,MT,2,221,201912,302871 -DE,MT,2,222,201912,1076804 -DE,MT,2,231,201912,173333 -DE,MT,2,232,201912,1269 -DE,MT,2,233,201912,280 -DE,MT,2,234,201912,39914 -DE,MT,2,235,201912,39733 -DE,MT,2,236,201912,39926 -DE,MT,2,237,201912,341 -DE,MT,2,239,201912,165662 -DE,MT,2,23M,201912,14064 -DE,MT,2,241,201912,18956 -DE,MT,2,242,201912,10385 -DE,MT,2,243,201912,14346 -DE,MT,2,244,201912,585869 -DE,MT,2,251,201912,46242 -DE,MT,2,252,201912,13115 -DE,MT,2,254,201912,20900 -DE,MT,2,257,201912,363036 -DE,MT,2,259,201912,635869 -DE,MT,2,25M,201912,20980 -DE,MT,2,261,201912,453873 -DE,MT,2,262,201912,1453009 -DE,MT,2,263,201912,3574882 -DE,MT,2,264,201912,371399 -DE,MT,2,265,201912,3227293 -DE,MT,2,266,201912,96733 -DE,MT,2,267,201912,146248 -DE,MT,2,268,201912,556 -DE,MT,2,271,201912,550321 -DE,MT,2,272,201912,38670 -DE,MT,2,273,201912,444374 -DE,MT,2,274,201912,97688 -DE,MT,2,275,201912,539802 -DE,MT,2,279,201912,844823 -DE,MT,2,281,201912,5128040 -DE,MT,2,282,201912,2944310 -DE,MT,2,283,201912,4 -DE,MT,2,284,201912,26226 -DE,MT,2,289,201912,1924418 -DE,MT,2,291,201912,1437789 -DE,MT,2,292,201912,66570 -DE,MT,2,293,201912,229896 -DE,MT,2,302,201912,11037 -DE,MT,2,303,201912,3942710 -DE,MT,2,309,201912,125591 -DE,MT,2,30M,201912,8645 -DE,MT,2,310,201912,253836 -DE,MT,2,321,201912,47379 -DE,MT,2,322,201912,39858 -DE,MT,2,323,201912,15209 -DE,MT,2,324,201912,720724 -DE,MT,2,325,201912,440580 -DE,MT,2,329,201912,120287 -DE,MT,2,32M,201912,2100 -DE,MT,2,32S,201912,8 -DE,MU,1,030,201912,3411 -DE,MU,1,102,201912,10272 -DE,MU,1,108,201912,488867 -DE,MU,1,110,201912,358 -DE,MU,1,141,201912,1034565 -DE,MU,1,143,201912,124981 -DE,MU,1,151,201912,2947 -DE,MU,1,162,201912,2359 -DE,MU,1,205,201912,8995 -DE,MU,1,265,201912,2549 -DE,MU,1,279,201912,525 -DE,MU,1,321,201912,50820 -DE,MU,1,324,201912,62780 -DE,MU,1,325,201912,103681 -DE,MU,2,011,201912,1978514 -DE,MU,2,012,201912,5707 -DE,MU,2,089,201912,4939 -DE,MU,2,101,201912,35806 -DE,MU,2,103,201912,63784 -DE,MU,2,104,201912,23015 -DE,MU,2,105,201912,24440 -DE,MU,2,106,201912,3219 -DE,MU,2,107,201912,7802 -DE,MU,2,108,201912,543941 -DE,MU,2,110,201912,1062910 -DE,MU,2,120,201912,6434 -DE,MU,2,131,201912,6502 -DE,MU,2,132,201912,3541 -DE,MU,2,139,201912,22696 -DE,MU,2,141,201912,172233 -DE,MU,2,143,201912,15988 -DE,MU,2,151,201912,12337 -DE,MU,2,152,201912,41492 -DE,MU,2,162,201912,2507 -DE,MU,2,171,201912,30212 -DE,MU,2,172,201912,20674 -DE,MU,2,192,201912,21216 -DE,MU,2,201,201912,181522 -DE,MU,2,202,201912,15540 -DE,MU,2,203,201912,20294 -DE,MU,2,204,201912,1132641 -DE,MU,2,205,201912,307686 -DE,MU,2,211,201912,1377 -DE,MU,2,212,201912,211616 -DE,MU,2,221,201912,92840 -DE,MU,2,222,201912,132754 -DE,MU,2,231,201912,22319 -DE,MU,2,234,201912,29749 -DE,MU,2,236,201912,645 -DE,MU,2,239,201912,21722 -DE,MU,2,242,201912,3089 -DE,MU,2,244,201912,167241 -DE,MU,2,251,201912,4459 -DE,MU,2,257,201912,57822 -DE,MU,2,259,201912,70760 -DE,MU,2,261,201912,68772 -DE,MU,2,262,201912,499093 -DE,MU,2,263,201912,65442 -DE,MU,2,264,201912,29222 -DE,MU,2,265,201912,177544 -DE,MU,2,266,201912,173757 -DE,MU,2,267,201912,219709 -DE,MU,2,271,201912,87694 -DE,MU,2,272,201912,5522 -DE,MU,2,273,201912,26192 -DE,MU,2,274,201912,42704 -DE,MU,2,275,201912,5772 -DE,MU,2,279,201912,74929 -DE,MU,2,281,201912,422806 -DE,MU,2,282,201912,335096 -DE,MU,2,283,201912,18254 -DE,MU,2,284,201912,43270 -DE,MU,2,289,201912,778466 -DE,MU,2,291,201912,2550148 -DE,MU,2,292,201912,1894 -DE,MU,2,293,201912,199380 -DE,MU,2,303,201912,61049 -DE,MU,2,309,201912,4421 -DE,MU,2,310,201912,66557 -DE,MU,2,321,201912,24587 -DE,MU,2,322,201912,2128 -DE,MU,2,323,201912,9529 -DE,MU,2,324,201912,26991 -DE,MU,2,325,201912,110582 -DE,MU,2,329,201912,30337 -DE,MV,1,030,201912,31634 -DE,MV,1,102,201912,1662867 -DE,MV,1,265,201912,716 -DE,MV,2,011,201912,77855 -DE,MV,2,012,201912,60337 -DE,MV,2,014,201912,4551 -DE,MV,2,030,201912,13710 -DE,MV,2,101,201912,266309 -DE,MV,2,102,201912,57230 -DE,MV,2,103,201912,73550 -DE,MV,2,104,201912,2627 -DE,MV,2,105,201912,286925 -DE,MV,2,106,201912,43824 -DE,MV,2,107,201912,41443 -DE,MV,2,108,201912,103654 -DE,MV,2,110,201912,26518 -DE,MV,2,139,201912,7505 -DE,MV,2,141,201912,28152 -DE,MV,2,161,201912,11668 -DE,MV,2,162,201912,12916 -DE,MV,2,171,201912,2616 -DE,MV,2,172,201912,8992 -DE,MV,2,203,201912,10890 -DE,MV,2,204,201912,58978 -DE,MV,2,205,201912,154792 -DE,MV,2,211,201912,475 -DE,MV,2,212,201912,240103 -DE,MV,2,221,201912,6653 -DE,MV,2,222,201912,27733 -DE,MV,2,231,201912,41159 -DE,MV,2,234,201912,32213 -DE,MV,2,237,201912,999 -DE,MV,2,239,201912,1100 -DE,MV,2,242,201912,60 -DE,MV,2,244,201912,2139 -DE,MV,2,251,201912,30118 -DE,MV,2,257,201912,18236 -DE,MV,2,259,201912,42741 -DE,MV,2,261,201912,28508 -DE,MV,2,262,201912,852 -DE,MV,2,263,201912,12066 -DE,MV,2,264,201912,6633 -DE,MV,2,265,201912,110506 -DE,MV,2,267,201912,4998 -DE,MV,2,271,201912,168007 -DE,MV,2,272,201912,84 -DE,MV,2,273,201912,4693 -DE,MV,2,274,201912,29612 -DE,MV,2,275,201912,198095 -DE,MV,2,279,201912,7616 -DE,MV,2,281,201912,137085 -DE,MV,2,282,201912,191214 -DE,MV,2,283,201912,4500 -DE,MV,2,289,201912,129357 -DE,MV,2,292,201912,424 -DE,MV,2,293,201912,5534 -DE,MV,2,301,201912,4917 -DE,MV,2,303,201912,90624 -DE,MV,2,309,201912,2697 -DE,MV,2,310,201912,183554 -DE,MV,2,321,201912,55179 -DE,MV,2,322,201912,1122 -DE,MV,2,323,201912,16208 -DE,MV,2,325,201912,104286 -DE,MV,2,329,201912,27887 -DE,MW,1,011,201912,638 -DE,MW,1,012,201912,171792 -DE,MW,1,030,201912,7071 -DE,MW,1,120,201912,428128 -DE,MW,1,141,201912,1206 -DE,MW,1,267,201912,10490 -DE,MW,2,108,201912,13647 -DE,MW,2,172,201912,1217 -DE,MW,2,201,201912,4736 -DE,MW,2,204,201912,10724 -DE,MW,2,205,201912,43816 -DE,MW,2,211,201912,25424 -DE,MW,2,212,201912,216515 -DE,MW,2,221,201912,7796 -DE,MW,2,222,201912,1363 -DE,MW,2,242,201912,1768 -DE,MW,2,259,201912,1078 -DE,MW,2,265,201912,26818 -DE,MW,2,266,201912,429 -DE,MW,2,271,201912,650 -DE,MW,2,273,201912,5237 -DE,MW,2,279,201912,1846 -DE,MW,2,281,201912,38951 -DE,MW,2,282,201912,5621 -DE,MW,2,289,201912,33832 -DE,MW,2,325,201912,28705 -DE,MW,2,329,201912,6691 -DE,MX,1,011,201912,137901 -DE,MX,1,012,201912,1934841 -DE,MX,1,014,201912,2306724 -DE,MX,1,023,201912,29139 -DE,MX,1,072,201912,5113386 -DE,MX,1,081,201912,25783 -DE,MX,1,089,201912,157937 -DE,MX,1,101,201912,84144 -DE,MX,1,103,201912,941332 -DE,MX,1,104,201912,322656 -DE,MX,1,106,201912,1417518 -DE,MX,1,107,201912,769 -DE,MX,1,108,201912,3520881 -DE,MX,1,109,201912,16407 -DE,MX,1,110,201912,2170508 -DE,MX,1,120,201912,74524 -DE,MX,1,132,201912,42154 -DE,MX,1,139,201912,456547 -DE,MX,1,141,201912,549504 -DE,MX,1,143,201912,134746 -DE,MX,1,151,201912,300651 -DE,MX,1,152,201912,133490 -DE,MX,1,162,201912,5822 -DE,MX,1,171,201912,123805 -DE,MX,1,172,201912,184438 -DE,MX,1,201,201912,8298134 -DE,MX,1,203,201912,87766 -DE,MX,1,204,201912,1513826 -DE,MX,1,205,201912,6481277 -DE,MX,1,206,201912,274662 -DE,MX,1,211,201912,3663443 -DE,MX,1,212,201912,1126821 -DE,MX,1,221,201912,1433776 -DE,MX,1,222,201912,2731117 -DE,MX,1,231,201912,1051133 -DE,MX,1,233,201912,36490 -DE,MX,1,234,201912,36538 -DE,MX,1,235,201912,28709 -DE,MX,1,237,201912,170 -DE,MX,1,239,201912,97071 -DE,MX,1,241,201912,123788 -DE,MX,1,242,201912,192180 -DE,MX,1,243,201912,90860 -DE,MX,1,244,201912,371425 -DE,MX,1,245,201912,7471 -DE,MX,1,251,201912,16339 -DE,MX,1,252,201912,3853 -DE,MX,1,257,201912,830990 -DE,MX,1,259,201912,1625376 -DE,MX,1,261,201912,6004010 -DE,MX,1,262,201912,22318395 -DE,MX,1,263,201912,20996117 -DE,MX,1,264,201912,4087490 -DE,MX,1,265,201912,18402208 -DE,MX,1,266,201912,3076808 -DE,MX,1,267,201912,376599 -DE,MX,1,268,201912,113613 -DE,MX,1,271,201912,13668912 -DE,MX,1,272,201912,821906 -DE,MX,1,273,201912,12654582 -DE,MX,1,274,201912,3976768 -DE,MX,1,275,201912,80637 -DE,MX,1,279,201912,5559152 -DE,MX,1,281,201912,5251315 -DE,MX,1,282,201912,4154033 -DE,MX,1,283,201912,143918 -DE,MX,1,284,201912,603058 -DE,MX,1,289,201912,1695025 -DE,MX,1,291,201912,433964624 -DE,MX,1,292,201912,87072 -DE,MX,1,293,201912,27939509 -DE,MX,1,303,201912,6516434 -DE,MX,1,309,201912,7739 -DE,MX,1,310,201912,839799 -DE,MX,1,321,201912,2098211 -DE,MX,1,322,201912,127931 -DE,MX,1,323,201912,312887 -DE,MX,1,324,201912,46701 -DE,MX,1,325,201912,58577281 -DE,MX,1,329,201912,344061 -DE,MX,2,012,201912,189755 -DE,MX,2,013,201912,9949 -DE,MX,2,014,201912,910634 -DE,MX,2,023,201912,103382 -DE,MX,2,081,201912,16856 -DE,MX,2,089,201912,49384 -DE,MX,2,103,201912,187542 -DE,MX,2,104,201912,224501 -DE,MX,2,105,201912,1201280 -DE,MX,2,106,201912,855596 -DE,MX,2,107,201912,3843 -DE,MX,2,108,201912,3843010 -DE,MX,2,109,201912,203114 -DE,MX,2,110,201912,347421 -DE,MX,2,131,201912,535392 -DE,MX,2,132,201912,589337 -DE,MX,2,139,201912,6121526 -DE,MX,2,141,201912,1480424 -DE,MX,2,143,201912,74530 -DE,MX,2,151,201912,737270 -DE,MX,2,152,201912,1270972 -DE,MX,2,161,201912,1588713 -DE,MX,2,162,201912,2205581 -DE,MX,2,171,201912,11540417 -DE,MX,2,172,201912,4315504 -DE,MX,2,181,201912,3949 -DE,MX,2,192,201912,1172547 -DE,MX,2,201,201912,29723535 -DE,MX,2,202,201912,1427006 -DE,MX,2,203,201912,3953232 -DE,MX,2,204,201912,5435972 -DE,MX,2,205,201912,20659809 -DE,MX,2,206,201912,305763 -DE,MX,2,211,201912,4245241 -DE,MX,2,212,201912,27044136 -DE,MX,2,221,201912,14970675 -DE,MX,2,222,201912,26722490 -DE,MX,2,231,201912,2399271 -DE,MX,2,232,201912,851428 -DE,MX,2,233,201912,196268 -DE,MX,2,234,201912,1209698 -DE,MX,2,235,201912,5470 -DE,MX,2,236,201912,40225 -DE,MX,2,237,201912,944 -DE,MX,2,239,201912,5081050 -DE,MX,2,241,201912,14552319 -DE,MX,2,242,201912,4678890 -DE,MX,2,243,201912,5125849 -DE,MX,2,244,201912,9890466 -DE,MX,2,245,201912,10639 -DE,MX,2,251,201912,1363639 -DE,MX,2,252,201912,375369 -DE,MX,2,253,201912,605720 -DE,MX,2,254,201912,73758 -DE,MX,2,257,201912,30556633 -DE,MX,2,259,201912,22265124 -DE,MX,2,261,201912,18262985 -DE,MX,2,262,201912,3865579 -DE,MX,2,263,201912,11465415 -DE,MX,2,264,201912,2730135 -DE,MX,2,265,201912,46693386 -DE,MX,2,266,201912,5540289 -DE,MX,2,267,201912,5409421 -DE,MX,2,268,201912,6979 -DE,MX,2,271,201912,42985435 -DE,MX,2,272,201912,9997552 -DE,MX,2,273,201912,24606307 -DE,MX,2,274,201912,6320132 -DE,MX,2,275,201912,753101 -DE,MX,2,279,201912,13897736 -DE,MX,2,281,201912,70114452 -DE,MX,2,282,201912,47741999 -DE,MX,2,283,201912,910034 -DE,MX,2,284,201912,43794473 -DE,MX,2,289,201912,55880233 -DE,MX,2,291,201912,90452819 -DE,MX,2,292,201912,57593 -DE,MX,2,293,201912,171451998 -DE,MX,2,301,201912,2000000 -DE,MX,2,302,201912,196810 -DE,MX,2,303,201912,61246942 -DE,MX,2,309,201912,3000719 -DE,MX,2,310,201912,5570832 -DE,MX,2,321,201912,53819 -DE,MX,2,322,201912,63348 -DE,MX,2,323,201912,108589 -DE,MX,2,324,201912,452550 -DE,MX,2,325,201912,15903708 -DE,MX,2,329,201912,1887263 -DE,MY,1,011,201912,17492 -DE,MY,1,012,201912,1257020 -DE,MY,1,013,201912,10057 -DE,MY,1,014,201912,1189 -DE,MY,1,030,201912,10934 -DE,MY,1,103,201912,750 -DE,MY,1,104,201912,4089624 -DE,MY,1,105,201912,2 -DE,MY,1,107,201912,179089 -DE,MY,1,108,201912,250199 -DE,MY,1,109,201912,51030 -DE,MY,1,120,201912,13972 -DE,MY,1,131,201912,129716 -DE,MY,1,132,201912,41081 -DE,MY,1,139,201912,745502 -DE,MY,1,141,201912,648727 -DE,MY,1,142,201912,29353 -DE,MY,1,143,201912,177023 -DE,MY,1,151,201912,57276 -DE,MY,1,152,201912,22377 -DE,MY,1,161,201912,451322 -DE,MY,1,162,201912,1114151 -DE,MY,1,171,201912,444870 -DE,MY,1,172,201912,56395 -DE,MY,1,181,201912,2500 -DE,MY,1,192,201912,1735 -DE,MY,1,201,201912,1613242 -DE,MY,1,203,201912,38114 -DE,MY,1,204,201912,340207 -DE,MY,1,205,201912,3906922 -DE,MY,1,206,201912,156754 -DE,MY,1,211,201912,181615 -DE,MY,1,212,201912,81511 -DE,MY,1,221,201912,16816433 -DE,MY,1,222,201912,2305113 -DE,MY,1,231,201912,1350842 -DE,MY,1,234,201912,567005 -DE,MY,1,239,201912,180011 -DE,MY,1,241,201912,2241637 -DE,MY,1,242,201912,255443 -DE,MY,1,243,201912,545326 -DE,MY,1,244,201912,1006341 -DE,MY,1,245,201912,698 -DE,MY,1,251,201912,351878 -DE,MY,1,257,201912,718857 -DE,MY,1,259,201912,2667477 -DE,MY,1,261,201912,147542814 -DE,MY,1,262,201912,50515289 -DE,MY,1,263,201912,19226632 -DE,MY,1,264,201912,11261832 -DE,MY,1,265,201912,28698729 -DE,MY,1,266,201912,2148848 -DE,MY,1,267,201912,4085646 -DE,MY,1,268,201912,74546 -DE,MY,1,271,201912,7203577 -DE,MY,1,272,201912,2909619 -DE,MY,1,273,201912,3948990 -DE,MY,1,274,201912,401022 -DE,MY,1,275,201912,2824607 -DE,MY,1,279,201912,13145997 -DE,MY,1,281,201912,1559999 -DE,MY,1,282,201912,33770605 -DE,MY,1,283,201912,44157 -DE,MY,1,284,201912,80605 -DE,MY,1,289,201912,7356635 -DE,MY,1,293,201912,1700353 -DE,MY,1,303,201912,6895106 -DE,MY,1,309,201912,3234750 -DE,MY,1,310,201912,1036689 -DE,MY,1,321,201912,24522 -DE,MY,1,322,201912,265663 -DE,MY,1,323,201912,44867 -DE,MY,1,324,201912,217003 -DE,MY,1,325,201912,19923881 -DE,MY,1,329,201912,213376 -DE,MY,2,011,201912,275313 -DE,MY,2,012,201912,4946 -DE,MY,2,014,201912,49656 -DE,MY,2,023,201912,15529 -DE,MY,2,081,201912,6138 -DE,MY,2,089,201912,167462 -DE,MY,2,101,201912,778793 -DE,MY,2,103,201912,2990415 -DE,MY,2,104,201912,36291 -DE,MY,2,105,201912,2454921 -DE,MY,2,106,201912,298031 -DE,MY,2,107,201912,1837 -DE,MY,2,108,201912,1698326 -DE,MY,2,109,201912,323037 -DE,MY,2,110,201912,550062 -DE,MY,2,120,201912,231643 -DE,MY,2,132,201912,33342 -DE,MY,2,139,201912,557964 -DE,MY,2,141,201912,124031 -DE,MY,2,142,201912,81 -DE,MY,2,143,201912,19748 -DE,MY,2,151,201912,266983 -DE,MY,2,152,201912,730704 -DE,MY,2,161,201912,277216 -DE,MY,2,162,201912,141457 -DE,MY,2,171,201912,5057833 -DE,MY,2,172,201912,521939 -DE,MY,2,181,201912,43998 -DE,MY,2,192,201912,1336715 -DE,MY,2,201,201912,15023088 -DE,MY,2,202,201912,498639 -DE,MY,2,203,201912,1136287 -DE,MY,2,204,201912,3012167 -DE,MY,2,205,201912,12834653 -DE,MY,2,206,201912,398689 -DE,MY,2,20S,201912,359757 -DE,MY,2,211,201912,257954 -DE,MY,2,212,201912,11415726 -DE,MY,2,221,201912,2693741 -DE,MY,2,222,201912,4496144 -DE,MY,2,231,201912,4326407 -DE,MY,2,232,201912,336876 -DE,MY,2,234,201912,405047 -DE,MY,2,235,201912,35010 -DE,MY,2,236,201912,11649 -DE,MY,2,239,201912,755244 -DE,MY,2,241,201912,1668094 -DE,MY,2,242,201912,18522133 -DE,MY,2,243,201912,658508 -DE,MY,2,244,201912,7766542 -DE,MY,2,245,201912,1545 -DE,MY,2,251,201912,672259 -DE,MY,2,252,201912,14172 -DE,MY,2,253,201912,161825 -DE,MY,2,254,201912,1910 -DE,MY,2,257,201912,2617401 -DE,MY,2,259,201912,3815094 -DE,MY,2,261,201912,91557052 -DE,MY,2,262,201912,5049461 -DE,MY,2,263,201912,7796533 -DE,MY,2,264,201912,723933 -DE,MY,2,265,201912,30678270 -DE,MY,2,266,201912,1444325 -DE,MY,2,267,201912,3239435 -DE,MY,2,268,201912,20318 -DE,MY,2,271,201912,10498935 -DE,MY,2,272,201912,2754669 -DE,MY,2,273,201912,6093745 -DE,MY,2,274,201912,3024044 -DE,MY,2,275,201912,1212390 -DE,MY,2,279,201912,6639398 -DE,MY,2,281,201912,20228845 -DE,MY,2,282,201912,27112360 -DE,MY,2,283,201912,1406103 -DE,MY,2,284,201912,2544748 -DE,MY,2,289,201912,21299837 -DE,MY,2,291,201912,12375143 -DE,MY,2,292,201912,1339712 -DE,MY,2,293,201912,27383658 -DE,MY,2,302,201912,92374 -DE,MY,2,303,201912,74136747 -DE,MY,2,309,201912,893206 -DE,MY,2,310,201912,638956 -DE,MY,2,321,201912,137786 -DE,MY,2,322,201912,6448 -DE,MY,2,323,201912,62344 -DE,MY,2,324,201912,23571 -DE,MY,2,325,201912,6393325 -DE,MY,2,329,201912,461997 -DE,MZ,1,011,201912,32596 -DE,MZ,1,089,201912,392892 -DE,MZ,1,101,201912,775 -DE,MZ,1,120,201912,1018220 -DE,MZ,2,101,201912,84802 -DE,MZ,2,108,201912,19100 -DE,MZ,2,141,201912,18139 -DE,MZ,2,201,201912,65805 -DE,MZ,2,203,201912,724 -DE,MZ,2,205,201912,23456 -DE,MZ,2,212,201912,188508 -DE,MZ,2,221,201912,2139 -DE,MZ,2,222,201912,9695 -DE,MZ,2,231,201912,2323 -DE,MZ,2,239,201912,147 -DE,MZ,2,251,201912,10559 -DE,MZ,2,257,201912,200563 -DE,MZ,2,259,201912,17228 -DE,MZ,2,262,201912,125633 -DE,MZ,2,264,201912,1550 -DE,MZ,2,265,201912,535917 -DE,MZ,2,267,201912,17478 -DE,MZ,2,271,201912,21301 -DE,MZ,2,273,201912,16169 -DE,MZ,2,274,201912,28954 -DE,MZ,2,279,201912,33052 -DE,MZ,2,281,201912,233839 -DE,MZ,2,282,201912,1250532 -DE,MZ,2,289,201912,239219 -DE,MZ,2,293,201912,2225 -DE,MZ,2,310,201912,90703 -DE,MZ,2,325,201912,60772 -DE,MZ,2,329,201912,6621 -DE,NC,2,103,201912,3913 -DE,NC,2,108,201912,3682 -DE,NC,2,139,201912,7203 -DE,NC,2,141,201912,9675 -DE,NC,2,143,201912,1205 -DE,NC,2,151,201912,2700 -DE,NC,2,152,201912,1502 -DE,NC,2,162,201912,25292 -DE,NC,2,171,201912,22993 -DE,NC,2,172,201912,118160 -DE,NC,2,201,201912,30669 -DE,NC,2,203,201912,4183 -DE,NC,2,204,201912,8382 -DE,NC,2,205,201912,37988 -DE,NC,2,212,201912,1100 -DE,NC,2,221,201912,19037 -DE,NC,2,222,201912,196879 -DE,NC,2,231,201912,5705 -DE,NC,2,232,201912,70500 -DE,NC,2,234,201912,565 -DE,NC,2,239,201912,55262 -DE,NC,2,242,201912,14957 -DE,NC,2,244,201912,15676 -DE,NC,2,251,201912,1049 -DE,NC,2,257,201912,14011 -DE,NC,2,259,201912,43439 -DE,NC,2,262,201912,26278 -DE,NC,2,263,201912,32977 -DE,NC,2,264,201912,6816 -DE,NC,2,265,201912,15625 -DE,NC,2,266,201912,571 -DE,NC,2,271,201912,12776 -DE,NC,2,272,201912,7706 -DE,NC,2,273,201912,1666 -DE,NC,2,274,201912,4159 -DE,NC,2,275,201912,2420 -DE,NC,2,279,201912,24999 -DE,NC,2,281,201912,87878 -DE,NC,2,282,201912,170992 -DE,NC,2,289,201912,83130 -DE,NC,2,291,201912,2015640 -DE,NC,2,293,201912,34190 -DE,NC,2,303,201912,11528 -DE,NC,2,309,201912,17351 -DE,NC,2,310,201912,3799 -DE,NC,2,321,201912,24840 -DE,NC,2,322,201912,23 -DE,NC,2,325,201912,21435 -DE,NC,2,329,201912,3577 -DE,NE,2,102,201912,15 -DE,NE,2,104,201912,93 -DE,NE,2,106,201912,64 -DE,NE,2,108,201912,164 -DE,NE,2,110,201912,36332 -DE,NE,2,139,201912,17717 -DE,NE,2,141,201912,45180 -DE,NE,2,204,201912,560 -DE,NE,2,205,201912,5248 -DE,NE,2,212,201912,14349 -DE,NE,2,222,201912,23151 -DE,NE,2,259,201912,21363 -DE,NE,2,261,201912,116 -DE,NE,2,262,201912,25378 -DE,NE,2,264,201912,3406 -DE,NE,2,265,201912,246290 -DE,NE,2,271,201912,765820 -DE,NE,2,275,201912,9183 -DE,NE,2,279,201912,24776 -DE,NE,2,281,201912,5468216 -DE,NE,2,282,201912,22930 -DE,NE,2,289,201912,43581 -DE,NE,2,291,201912,245845 -DE,NE,2,292,201912,800 -DE,NE,2,293,201912,580410 -DE,NE,2,309,201912,11903 -DE,NE,2,310,201912,13813 -DE,NE,2,325,201912,1530 -DE,NE,2,329,201912,50 -DE,NG,1,011,201912,733051 -DE,NG,1,012,201912,5836617 -DE,NG,1,030,201912,13247 -DE,NG,1,061,201912,222742466 -DE,NG,1,089,201912,198346 -DE,NG,1,103,201912,18 -DE,NG,1,104,201912,33 -DE,NG,1,108,201912,1214757 -DE,NG,1,110,201912,958 -DE,NG,1,120,201912,88 -DE,NG,1,139,201912,212 -DE,NG,1,141,201912,6146 -DE,NG,1,152,201912,290 -DE,NG,1,201,201912,11804 -DE,NG,1,204,201912,4956 -DE,NG,1,205,201912,2 -DE,NG,1,211,201912,124 -DE,NG,1,222,201912,859 -DE,NG,1,261,201912,512 -DE,NG,1,262,201912,11293 -DE,NG,1,263,201912,748 -DE,NG,1,265,201912,50415 -DE,NG,1,267,201912,601 -DE,NG,1,279,201912,834 -DE,NG,1,281,201912,131 -DE,NG,1,289,201912,1134 -DE,NG,1,321,201912,803 -DE,NG,1,329,201912,1655 -DE,NG,2,011,201912,70 -DE,NG,2,012,201912,30636 -DE,NG,2,014,201912,206 -DE,NG,2,081,201912,900 -DE,NG,2,089,201912,25759 -DE,NG,2,101,201912,14155 -DE,NG,2,103,201912,37079 -DE,NG,2,104,201912,14816 -DE,NG,2,105,201912,3068684 -DE,NG,2,106,201912,33302 -DE,NG,2,107,201912,21980 -DE,NG,2,108,201912,7316218 -DE,NG,2,109,201912,204430 -DE,NG,2,110,201912,304364 -DE,NG,2,120,201912,1938144 -DE,NG,2,132,201912,12938 -DE,NG,2,139,201912,92455 -DE,NG,2,141,201912,69200 -DE,NG,2,143,201912,2154 -DE,NG,2,151,201912,71191 -DE,NG,2,152,201912,3952 -DE,NG,2,162,201912,110676 -DE,NG,2,171,201912,1158164 -DE,NG,2,172,201912,38813 -DE,NG,2,181,201912,26775 -DE,NG,2,192,201912,1017952 -DE,NG,2,201,201912,6279177 -DE,NG,2,202,201912,30853 -DE,NG,2,203,201912,2291978 -DE,NG,2,204,201912,319446 -DE,NG,2,205,201912,3556878 -DE,NG,2,211,201912,245390 -DE,NG,2,212,201912,2841615 -DE,NG,2,221,201912,881076 -DE,NG,2,222,201912,2436155 -DE,NG,2,231,201912,151278 -DE,NG,2,232,201912,15 -DE,NG,2,233,201912,175297 -DE,NG,2,234,201912,36204 -DE,NG,2,235,201912,1310 -DE,NG,2,236,201912,7500 -DE,NG,2,239,201912,81459 -DE,NG,2,23I,201912,114923 -DE,NG,2,241,201912,802540 -DE,NG,2,242,201912,92964 -DE,NG,2,243,201912,3236 -DE,NG,2,244,201912,380351 -DE,NG,2,251,201912,236731 -DE,NG,2,252,201912,35159 -DE,NG,2,253,201912,6272 -DE,NG,2,254,201912,10076 -DE,NG,2,257,201912,1254317 -DE,NG,2,259,201912,591753 -DE,NG,2,25I,201912,38336 -DE,NG,2,261,201912,19605 -DE,NG,2,262,201912,608769 -DE,NG,2,263,201912,162348 -DE,NG,2,264,201912,154474 -DE,NG,2,265,201912,1754352 -DE,NG,2,266,201912,186120 -DE,NG,2,267,201912,340358 -DE,NG,2,271,201912,3084497 -DE,NG,2,272,201912,49280 -DE,NG,2,273,201912,239165 -DE,NG,2,274,201912,136150 -DE,NG,2,275,201912,102629 -DE,NG,2,279,201912,449003 -DE,NG,2,281,201912,4276863 -DE,NG,2,282,201912,9052773 -DE,NG,2,283,201912,94298 -DE,NG,2,284,201912,726036 -DE,NG,2,289,201912,4665617 -DE,NG,2,291,201912,7098907 -DE,NG,2,292,201912,636768 -DE,NG,2,293,201912,507948 -DE,NG,2,303,201912,233272 -DE,NG,2,309,201912,75573 -DE,NG,2,310,201912,55825 -DE,NG,2,321,201912,2979 -DE,NG,2,322,201912,1473 -DE,NG,2,323,201912,9834 -DE,NG,2,324,201912,1923 -DE,NG,2,325,201912,454711 -DE,NG,2,329,201912,150504 -DE,NI,1,012,201912,2278137 -DE,NI,1,014,201912,17 -DE,NI,1,102,201912,2174 -DE,NI,1,110,201912,260 -DE,NI,1,120,201912,438931 -DE,NI,1,139,201912,99 -DE,NI,1,141,201912,22439 -DE,NI,1,143,201912,3717 -DE,NI,1,151,201912,22 -DE,NI,1,259,201912,69836 -DE,NI,1,293,201912,2453 -DE,NI,1,325,201912,10549 -DE,NI,2,103,201912,13646 -DE,NI,2,106,201912,3660 -DE,NI,2,108,201912,27996 -DE,NI,2,120,201912,225247 -DE,NI,2,139,201912,17223 -DE,NI,2,141,201912,34592 -DE,NI,2,171,201912,655 -DE,NI,2,172,201912,2998 -DE,NI,2,192,201912,34169 -DE,NI,2,201,201912,31876 -DE,NI,2,202,201912,31604 -DE,NI,2,203,201912,113 -DE,NI,2,204,201912,614 -DE,NI,2,205,201912,55801 -DE,NI,2,211,201912,18466 -DE,NI,2,212,201912,73322 -DE,NI,2,221,201912,88918 -DE,NI,2,222,201912,100912 -DE,NI,2,231,201912,364 -DE,NI,2,239,201912,109217 -DE,NI,2,242,201912,3325 -DE,NI,2,244,201912,1156 -DE,NI,2,257,201912,14946 -DE,NI,2,259,201912,103672 -DE,NI,2,262,201912,1627 -DE,NI,2,263,201912,4194 -DE,NI,2,265,201912,103480 -DE,NI,2,266,201912,31371 -DE,NI,2,267,201912,6054 -DE,NI,2,271,201912,134430 -DE,NI,2,272,201912,58 -DE,NI,2,273,201912,330339 -DE,NI,2,274,201912,2042 -DE,NI,2,279,201912,34864 -DE,NI,2,281,201912,69891 -DE,NI,2,282,201912,335532 -DE,NI,2,284,201912,505 -DE,NI,2,289,201912,10190 -DE,NI,2,292,201912,8923 -DE,NI,2,293,201912,3473 -DE,NI,2,325,201912,34427 -DE,NI,2,329,201912,36041 -DE,NL,1,011,201912,348356407 -DE,NL,1,012,201912,176300526 -DE,NL,1,013,201912,66401808 -DE,NL,1,014,201912,93196086 -DE,NL,1,01M,201912,7233774 -DE,NL,1,021,201912,214989 -DE,NL,1,022,201912,794959 -DE,NL,1,023,201912,4447387 -DE,NL,1,030,201912,10027287 -DE,NL,1,051,201912,163322377 -DE,NL,1,061,201912,435821245 -DE,NL,1,071,201912,125141591 -DE,NL,1,072,201912,63363363 -DE,NL,1,081,201912,7135928 -DE,NL,1,089,201912,26756112 -DE,NL,1,101,201912,169601781 -DE,NL,1,102,201912,49126832 -DE,NL,1,103,201912,151200526 -DE,NL,1,104,201912,103980076 -DE,NL,1,105,201912,179949420 -DE,NL,1,106,201912,25362837 -DE,NL,1,107,201912,32126504 -DE,NL,1,108,201912,157435996 -DE,NL,1,109,201912,48483490 -DE,NL,1,10M,201912,52538422 -DE,NL,1,110,201912,28389333 -DE,NL,1,120,201912,24761379 -DE,NL,1,131,201912,794004 -DE,NL,1,132,201912,5655096 -DE,NL,1,139,201912,52021371 -DE,NL,1,13M,201912,2714730 -DE,NL,1,141,201912,158602016 -DE,NL,1,142,201912,251116 -DE,NL,1,143,201912,35709558 -DE,NL,1,14M,201912,22247327 -DE,NL,1,151,201912,35448132 -DE,NL,1,152,201912,68918246 -DE,NL,1,161,201912,4232911 -DE,NL,1,162,201912,16351727 -DE,NL,1,16M,201912,113679 -DE,NL,1,171,201912,60858591 -DE,NL,1,172,201912,29624890 -DE,NL,1,17M,201912,9428372 -DE,NL,1,181,201912,170491 -DE,NL,1,191,201912,5507727 -DE,NL,1,192,201912,835031798 -DE,NL,1,201,201912,579125273 -DE,NL,1,202,201912,2905320 -DE,NL,1,203,201912,17549964 -DE,NL,1,204,201912,69207333 -DE,NL,1,205,201912,249064301 -DE,NL,1,206,201912,13716237 -DE,NL,1,20M,201912,11852979 -DE,NL,1,211,201912,54003584 -DE,NL,1,212,201912,819381059 -DE,NL,1,221,201912,56372616 -DE,NL,1,222,201912,125918928 -DE,NL,1,231,201912,23485295 -DE,NL,1,232,201912,1812296 -DE,NL,1,233,201912,1341153 -DE,NL,1,234,201912,6387976 -DE,NL,1,235,201912,570938 -DE,NL,1,236,201912,6567297 -DE,NL,1,237,201912,1757062 -DE,NL,1,239,201912,9701459 -DE,NL,1,23M,201912,3805181 -DE,NL,1,241,201912,115026944 -DE,NL,1,242,201912,15719242 -DE,NL,1,243,201912,14722122 -DE,NL,1,244,201912,225164315 -DE,NL,1,245,201912,1488731 -DE,NL,1,251,201912,19414227 -DE,NL,1,252,201912,15133258 -DE,NL,1,253,201912,428571 -DE,NL,1,254,201912,219547 -DE,NL,1,257,201912,39956970 -DE,NL,1,259,201912,86224052 -DE,NL,1,25M,201912,5651290 -DE,NL,1,261,201912,261107230 -DE,NL,1,262,201912,807820853 -DE,NL,1,263,201912,473318174 -DE,NL,1,264,201912,178847933 -DE,NL,1,265,201912,99554082 -DE,NL,1,266,201912,53016238 -DE,NL,1,267,201912,80899125 -DE,NL,1,268,201912,3027768 -DE,NL,1,271,201912,75081836 -DE,NL,1,272,201912,26929551 -DE,NL,1,273,201912,27149986 -DE,NL,1,274,201912,28335961 -DE,NL,1,275,201912,134979367 -DE,NL,1,279,201912,87422110 -DE,NL,1,281,201912,90400803 -DE,NL,1,282,201912,289871813 -DE,NL,1,283,201912,24931221 -DE,NL,1,284,201912,19779297 -DE,NL,1,289,201912,75887396 -DE,NL,1,291,201912,175482161 -DE,NL,1,292,201912,20999619 -DE,NL,1,293,201912,48791184 -DE,NL,1,301,201912,3976060 -DE,NL,1,302,201912,1700590 -DE,NL,1,303,201912,169295658 -DE,NL,1,309,201912,30185355 -DE,NL,1,30M,201912,1034204 -DE,NL,1,310,201912,42773854 -DE,NL,1,321,201912,1557546 -DE,NL,1,322,201912,8665526 -DE,NL,1,323,201912,26421470 -DE,NL,1,324,201912,22275375 -DE,NL,1,325,201912,229282667 -DE,NL,1,329,201912,25366636 -DE,NL,1,32M,201912,934266 -DE,NL,1,351,201912,9731241 -DE,NL,2,011,201912,43600200 -DE,NL,2,012,201912,11787414 -DE,NL,2,013,201912,12027275 -DE,NL,2,014,201912,58174860 -DE,NL,2,01M,201912,2904939 -DE,NL,2,021,201912,39850 -DE,NL,2,022,201912,944446 -DE,NL,2,023,201912,2219574 -DE,NL,2,030,201912,9565545 -DE,NL,2,051,201912,145413 -DE,NL,2,052,201912,68787 -DE,NL,2,072,201912,45100 -DE,NL,2,081,201912,11963468 -DE,NL,2,089,201912,7179679 -DE,NL,2,101,201912,123517411 -DE,NL,2,102,201912,16889368 -DE,NL,2,103,201912,41685231 -DE,NL,2,104,201912,70979898 -DE,NL,2,105,201912,133582129 -DE,NL,2,106,201912,44763947 -DE,NL,2,107,201912,31885876 -DE,NL,2,108,201912,112001214 -DE,NL,2,109,201912,30218227 -DE,NL,2,10M,201912,11212407 -DE,NL,2,110,201912,55728832 -DE,NL,2,120,201912,6429495 -DE,NL,2,131,201912,1325167 -DE,NL,2,132,201912,4060463 -DE,NL,2,139,201912,37428133 -DE,NL,2,13M,201912,532098 -DE,NL,2,141,201912,106178910 -DE,NL,2,142,201912,74648 -DE,NL,2,143,201912,27427766 -DE,NL,2,14M,201912,5569671 -DE,NL,2,151,201912,7553951 -DE,NL,2,152,201912,49811675 -DE,NL,2,161,201912,13068114 -DE,NL,2,162,201912,25187610 -DE,NL,2,16M,201912,9595 -DE,NL,2,171,201912,48583559 -DE,NL,2,172,201912,72890937 -DE,NL,2,17M,201912,4559648 -DE,NL,2,17S,201912,21984 -DE,NL,2,181,201912,1598057 -DE,NL,2,191,201912,630215 -DE,NL,2,192,201912,181634487 -DE,NL,2,201,201912,338740096 -DE,NL,2,202,201912,7643108 -DE,NL,2,203,201912,22567320 -DE,NL,2,204,201912,69688654 -DE,NL,2,205,201912,192723071 -DE,NL,2,206,201912,1274594 -DE,NL,2,20M,201912,3470918 -DE,NL,2,20S,201912,1831340 -DE,NL,2,211,201912,19498918 -DE,NL,2,212,201912,471307269 -DE,NL,2,221,201912,39896004 -DE,NL,2,222,201912,158491664 -DE,NL,2,231,201912,31308128 -DE,NL,2,232,201912,1953049 -DE,NL,2,233,201912,5899882 -DE,NL,2,234,201912,10172508 -DE,NL,2,235,201912,15320583 -DE,NL,2,236,201912,16622142 -DE,NL,2,237,201912,357527 -DE,NL,2,239,201912,9937220 -DE,NL,2,23M,201912,2509782 -DE,NL,2,241,201912,58255871 -DE,NL,2,242,201912,20782517 -DE,NL,2,243,201912,17038935 -DE,NL,2,244,201912,70909548 -DE,NL,2,245,201912,598359 -DE,NL,2,251,201912,46260076 -DE,NL,2,252,201912,8041566 -DE,NL,2,253,201912,5828113 -DE,NL,2,254,201912,362251 -DE,NL,2,257,201912,62194793 -DE,NL,2,259,201912,74750507 -DE,NL,2,25M,201912,3069580 -DE,NL,2,261,201912,76829205 -DE,NL,2,262,201912,121010532 -DE,NL,2,263,201912,62015814 -DE,NL,2,264,201912,19970963 -DE,NL,2,265,201912,79301078 -DE,NL,2,266,201912,25808395 -DE,NL,2,267,201912,161375527 -DE,NL,2,268,201912,505818 -DE,NL,2,271,201912,77347144 -DE,NL,2,272,201912,18347044 -DE,NL,2,273,201912,49261390 -DE,NL,2,274,201912,19296153 -DE,NL,2,275,201912,68386985 -DE,NL,2,279,201912,57055469 -DE,NL,2,281,201912,185936302 -DE,NL,2,282,201912,232690278 -DE,NL,2,283,201912,33963585 -DE,NL,2,284,201912,35544319 -DE,NL,2,289,201912,136236677 -DE,NL,2,291,201912,411673465 -DE,NL,2,292,201912,32448866 -DE,NL,2,293,201912,103259706 -DE,NL,2,301,201912,24622330 -DE,NL,2,302,201912,2738916 -DE,NL,2,303,201912,57268968 -DE,NL,2,309,201912,69150934 -DE,NL,2,30M,201912,856614 -DE,NL,2,310,201912,69599634 -DE,NL,2,321,201912,6051084 -DE,NL,2,322,201912,3706177 -DE,NL,2,323,201912,6480453 -DE,NL,2,324,201912,9734798 -DE,NL,2,325,201912,89293406 -DE,NL,2,329,201912,14037362 -DE,NL,2,32M,201912,164803 -DE,NL,2,32S,201912,13652 -DE,NL,2,351,201912,55454619 -DE,NO,1,011,201912,12 -DE,NO,1,014,201912,11 -DE,NO,1,022,201912,2875518 -DE,NO,1,030,201912,6380423 -DE,NO,1,061,201912,208875431 -DE,NO,1,071,201912,632384 -DE,NO,1,072,201912,1651164 -DE,NO,1,081,201912,5236403 -DE,NO,1,089,201912,419027 -DE,NO,1,101,201912,85550 -DE,NO,1,102,201912,11328311 -DE,NO,1,103,201912,327 -DE,NO,1,104,201912,400217 -DE,NO,1,105,201912,233945 -DE,NO,1,106,201912,157926 -DE,NO,1,107,201912,41724 -DE,NO,1,108,201912,1785354 -DE,NO,1,109,201912,963035 -DE,NO,1,110,201912,1470945 -DE,NO,1,132,201912,1700 -DE,NO,1,139,201912,658279 -DE,NO,1,141,201912,120345 -DE,NO,1,143,201912,59554 -DE,NO,1,151,201912,19443 -DE,NO,1,152,201912,13381 -DE,NO,1,161,201912,528636 -DE,NO,1,162,201912,175512 -DE,NO,1,171,201912,5689948 -DE,NO,1,172,201912,23566 -DE,NO,1,192,201912,19064787 -DE,NO,1,201,201912,22787154 -DE,NO,1,202,201912,74621 -DE,NO,1,203,201912,269333 -DE,NO,1,204,201912,132453 -DE,NO,1,205,201912,949087 -DE,NO,1,211,201912,875396 -DE,NO,1,212,201912,6613529 -DE,NO,1,221,201912,156372 -DE,NO,1,222,201912,2690171 -DE,NO,1,231,201912,32498 -DE,NO,1,232,201912,35275 -DE,NO,1,234,201912,4496 -DE,NO,1,235,201912,12021 -DE,NO,1,236,201912,355 -DE,NO,1,237,201912,5848 -DE,NO,1,239,201912,38169 -DE,NO,1,241,201912,3561024 -DE,NO,1,242,201912,149843 -DE,NO,1,243,201912,4587 -DE,NO,1,244,201912,5852759 -DE,NO,1,245,201912,10852 -DE,NO,1,251,201912,311745 -DE,NO,1,252,201912,21401 -DE,NO,1,254,201912,84315 -DE,NO,1,257,201912,476750 -DE,NO,1,259,201912,508039 -DE,NO,1,261,201912,285497 -DE,NO,1,262,201912,480753 -DE,NO,1,263,201912,2914975 -DE,NO,1,264,201912,689348 -DE,NO,1,265,201912,2143802 -DE,NO,1,266,201912,1232962 -DE,NO,1,267,201912,89430 -DE,NO,1,268,201912,725 -DE,NO,1,271,201912,1159863 -DE,NO,1,272,201912,9088 -DE,NO,1,273,201912,200342 -DE,NO,1,274,201912,352017 -DE,NO,1,275,201912,174488 -DE,NO,1,279,201912,548657 -DE,NO,1,281,201912,1174879 -DE,NO,1,282,201912,1764007 -DE,NO,1,283,201912,604230 -DE,NO,1,284,201912,658436 -DE,NO,1,289,201912,934563 -DE,NO,1,291,201912,2435622 -DE,NO,1,292,201912,44760 -DE,NO,1,293,201912,5660036 -DE,NO,1,301,201912,146085613 -DE,NO,1,302,201912,386 -DE,NO,1,303,201912,2044566 -DE,NO,1,309,201912,81395 -DE,NO,1,310,201912,6560827 -DE,NO,1,321,201912,110630 -DE,NO,1,322,201912,8318 -DE,NO,1,323,201912,48754 -DE,NO,1,324,201912,2670 -DE,NO,1,325,201912,921020 -DE,NO,1,329,201912,28691 -DE,NO,2,011,201912,1337568 -DE,NO,2,012,201912,473180 -DE,NO,2,013,201912,234198 -DE,NO,2,014,201912,64360 -DE,NO,2,023,201912,91 -DE,NO,2,030,201912,437 -DE,NO,2,051,201912,66709 -DE,NO,2,081,201912,82766 -DE,NO,2,089,201912,2054096 -DE,NO,2,101,201912,1453254 -DE,NO,2,102,201912,1180382 -DE,NO,2,103,201912,750191 -DE,NO,2,104,201912,2293980 -DE,NO,2,105,201912,812247 -DE,NO,2,106,201912,2078991 -DE,NO,2,107,201912,2394603 -DE,NO,2,108,201912,6357339 -DE,NO,2,109,201912,631108 -DE,NO,2,110,201912,6638817 -DE,NO,2,120,201912,1661359 -DE,NO,2,131,201912,497220 -DE,NO,2,132,201912,220583 -DE,NO,2,139,201912,3417815 -DE,NO,2,141,201912,17310290 -DE,NO,2,142,201912,21457 -DE,NO,2,143,201912,5221411 -DE,NO,2,151,201912,2068553 -DE,NO,2,152,201912,7178832 -DE,NO,2,161,201912,126433 -DE,NO,2,162,201912,2976151 -DE,NO,2,171,201912,1814631 -DE,NO,2,172,201912,2391848 -DE,NO,2,181,201912,8438 -DE,NO,2,191,201912,16520 -DE,NO,2,192,201912,1173122 -DE,NO,2,201,201912,11485275 -DE,NO,2,202,201912,790151 -DE,NO,2,203,201912,1235725 -DE,NO,2,204,201912,8244909 -DE,NO,2,205,201912,9769331 -DE,NO,2,206,201912,4225 -DE,NO,2,20S,201912,614050 -DE,NO,2,211,201912,1565813 -DE,NO,2,212,201912,24905298 -DE,NO,2,221,201912,5769401 -DE,NO,2,222,201912,12791437 -DE,NO,2,231,201912,2246693 -DE,NO,2,232,201912,321161 -DE,NO,2,233,201912,206332 -DE,NO,2,234,201912,1155167 -DE,NO,2,235,201912,1573975 -DE,NO,2,236,201912,1147581 -DE,NO,2,237,201912,80471 -DE,NO,2,239,201912,2249595 -DE,NO,2,241,201912,1532581 -DE,NO,2,242,201912,3108261 -DE,NO,2,243,201912,882638 -DE,NO,2,244,201912,5237991 -DE,NO,2,245,201912,536530 -DE,NO,2,251,201912,3928368 -DE,NO,2,252,201912,464155 -DE,NO,2,253,201912,35864 -DE,NO,2,254,201912,423611 -DE,NO,2,257,201912,4932023 -DE,NO,2,259,201912,8153202 -DE,NO,2,261,201912,1974643 -DE,NO,2,262,201912,4011654 -DE,NO,2,263,201912,4769515 -DE,NO,2,264,201912,2340045 -DE,NO,2,265,201912,15681326 -DE,NO,2,266,201912,2834199 -DE,NO,2,267,201912,3388611 -DE,NO,2,268,201912,17653 -DE,NO,2,271,201912,13500593 -DE,NO,2,272,201912,4287309 -DE,NO,2,273,201912,5931420 -DE,NO,2,274,201912,8812301 -DE,NO,2,275,201912,2078150 -DE,NO,2,279,201912,5890648 -DE,NO,2,281,201912,22651139 -DE,NO,2,282,201912,29019577 -DE,NO,2,283,201912,4341607 -DE,NO,2,284,201912,5746382 -DE,NO,2,289,201912,18102797 -DE,NO,2,291,201912,198001602 -DE,NO,2,292,201912,3474910 -DE,NO,2,293,201912,9453938 -DE,NO,2,301,201912,54221 -DE,NO,2,302,201912,1794662 -DE,NO,2,303,201912,7526112 -DE,NO,2,309,201912,1828283 -DE,NO,2,310,201912,4901088 -DE,NO,2,321,201912,1012415 -DE,NO,2,322,201912,565659 -DE,NO,2,323,201912,912065 -DE,NO,2,324,201912,888643 -DE,NO,2,325,201912,12542984 -DE,NO,2,329,201912,2113138 -DE,NO,2,32S,201912,545 -DE,NP,1,012,201912,65432 -DE,NP,1,106,201912,23248 -DE,NP,1,108,201912,7 -DE,NP,1,139,201912,583743 -DE,NP,1,141,201912,1001126 -DE,NP,1,143,201912,255991 -DE,NP,1,151,201912,13921 -DE,NP,1,152,201912,548 -DE,NP,1,162,201912,18582 -DE,NP,1,171,201912,14632 -DE,NP,1,172,201912,13266 -DE,NP,1,204,201912,7209 -DE,NP,1,222,201912,2797 -DE,NP,1,234,201912,1604 -DE,NP,1,257,201912,620 -DE,NP,1,259,201912,24452 -DE,NP,1,265,201912,10080 -DE,NP,1,271,201912,5018 -DE,NP,1,274,201912,393 -DE,NP,1,279,201912,4380 -DE,NP,1,310,201912,136 -DE,NP,1,321,201912,16038 -DE,NP,1,322,201912,47955 -DE,NP,1,324,201912,68 -DE,NP,1,329,201912,20644 -DE,NP,2,012,201912,11150 -DE,NP,2,101,201912,358 -DE,NP,2,105,201912,437 -DE,NP,2,108,201912,94 -DE,NP,2,110,201912,67290 -DE,NP,2,139,201912,5187 -DE,NP,2,172,201912,5075 -DE,NP,2,201,201912,212680 -DE,NP,2,204,201912,68883 -DE,NP,2,205,201912,142614 -DE,NP,2,211,201912,1250 -DE,NP,2,212,201912,51254 -DE,NP,2,221,201912,10733 -DE,NP,2,222,201912,31119 -DE,NP,2,234,201912,6 -DE,NP,2,239,201912,5195 -DE,NP,2,242,201912,4064 -DE,NP,2,244,201912,1298 -DE,NP,2,257,201912,4103 -DE,NP,2,259,201912,11815 -DE,NP,2,261,201912,6952 -DE,NP,2,262,201912,13746 -DE,NP,2,263,201912,50757 -DE,NP,2,264,201912,15696 -DE,NP,2,265,201912,109456 -DE,NP,2,266,201912,83959 -DE,NP,2,267,201912,13025 -DE,NP,2,271,201912,77054 -DE,NP,2,272,201912,20238 -DE,NP,2,273,201912,7350 -DE,NP,2,274,201912,1978 -DE,NP,2,275,201912,4769 -DE,NP,2,279,201912,15001 -DE,NP,2,281,201912,31203 -DE,NP,2,282,201912,148267 -DE,NP,2,283,201912,239058 -DE,NP,2,284,201912,1304 -DE,NP,2,289,201912,631298 -DE,NP,2,303,201912,1300 -DE,NP,2,310,201912,19884 -DE,NP,2,325,201912,702492 -DE,NP,2,329,201912,5144 -DE,NU,1,321,201912,9930 -DE,NZ,1,011,201912,338369 -DE,NZ,1,012,201912,114801 -DE,NZ,1,014,201912,1960385 -DE,NZ,1,030,201912,33200 -DE,NZ,1,081,201912,16195 -DE,NZ,1,101,201912,9586353 -DE,NZ,1,102,201912,490368 -DE,NZ,1,105,201912,786656 -DE,NZ,1,106,201912,81 -DE,NZ,1,108,201912,155521 -DE,NZ,1,110,201912,2416383 -DE,NZ,1,131,201912,166707 -DE,NZ,1,132,201912,563 -DE,NZ,1,139,201912,65658 -DE,NZ,1,141,201912,9069 -DE,NZ,1,143,201912,3081 -DE,NZ,1,151,201912,1768 -DE,NZ,1,152,201912,20115 -DE,NZ,1,161,201912,129367 -DE,NZ,1,162,201912,604 -DE,NZ,1,172,201912,9820 -DE,NZ,1,201,201912,18657 -DE,NZ,1,204,201912,262521 -DE,NZ,1,205,201912,91585 -DE,NZ,1,211,201912,3937 -DE,NZ,1,212,201912,190490 -DE,NZ,1,221,201912,85434 -DE,NZ,1,222,201912,341783 -DE,NZ,1,234,201912,21126 -DE,NZ,1,239,201912,47313 -DE,NZ,1,242,201912,32789 -DE,NZ,1,244,201912,135068 -DE,NZ,1,251,201912,34519 -DE,NZ,1,257,201912,22367 -DE,NZ,1,259,201912,240924 -DE,NZ,1,261,201912,16581 -DE,NZ,1,262,201912,82656 -DE,NZ,1,263,201912,40551 -DE,NZ,1,264,201912,1477 -DE,NZ,1,265,201912,248315 -DE,NZ,1,266,201912,6052 -DE,NZ,1,271,201912,173642 -DE,NZ,1,272,201912,797 -DE,NZ,1,273,201912,52069 -DE,NZ,1,274,201912,174086 -DE,NZ,1,275,201912,59 -DE,NZ,1,279,201912,121857 -DE,NZ,1,281,201912,97472 -DE,NZ,1,282,201912,104015 -DE,NZ,1,283,201912,202076 -DE,NZ,1,284,201912,1838 -DE,NZ,1,289,201912,248615 -DE,NZ,1,291,201912,10842 -DE,NZ,1,293,201912,17583 -DE,NZ,1,303,201912,1576 -DE,NZ,1,309,201912,77484 -DE,NZ,1,321,201912,2135916 -DE,NZ,1,322,201912,13555 -DE,NZ,1,323,201912,31157 -DE,NZ,1,324,201912,36030 -DE,NZ,1,325,201912,4221885 -DE,NZ,1,329,201912,7542 -DE,NZ,2,011,201912,21879 -DE,NZ,2,012,201912,14220 -DE,NZ,2,014,201912,3055 -DE,NZ,2,081,201912,53267 -DE,NZ,2,089,201912,1402 -DE,NZ,2,101,201912,173335 -DE,NZ,2,102,201912,305678 -DE,NZ,2,103,201912,170038 -DE,NZ,2,104,201912,141755 -DE,NZ,2,105,201912,2678519 -DE,NZ,2,106,201912,187128 -DE,NZ,2,107,201912,102858 -DE,NZ,2,108,201912,753353 -DE,NZ,2,109,201912,691 -DE,NZ,2,110,201912,687663 -DE,NZ,2,120,201912,321502 -DE,NZ,2,131,201912,38522 -DE,NZ,2,132,201912,94631 -DE,NZ,2,139,201912,723170 -DE,NZ,2,141,201912,132456 -DE,NZ,2,142,201912,86 -DE,NZ,2,143,201912,186879 -DE,NZ,2,151,201912,143356 -DE,NZ,2,152,201912,318019 -DE,NZ,2,161,201912,38218 -DE,NZ,2,162,201912,392158 -DE,NZ,2,171,201912,508980 -DE,NZ,2,172,201912,1033376 -DE,NZ,2,192,201912,248722 -DE,NZ,2,201,201912,2089223 -DE,NZ,2,202,201912,457966 -DE,NZ,2,203,201912,787170 -DE,NZ,2,204,201912,1071742 -DE,NZ,2,205,201912,1406640 -DE,NZ,2,206,201912,1133 -DE,NZ,2,20S,201912,7353 -DE,NZ,2,211,201912,163155 -DE,NZ,2,212,201912,4088803 -DE,NZ,2,221,201912,763762 -DE,NZ,2,222,201912,2286661 -DE,NZ,2,231,201912,519371 -DE,NZ,2,232,201912,306 -DE,NZ,2,234,201912,223883 -DE,NZ,2,236,201912,167424 -DE,NZ,2,237,201912,41631 -DE,NZ,2,239,201912,367172 -DE,NZ,2,241,201912,18620 -DE,NZ,2,242,201912,92328 -DE,NZ,2,243,201912,30112 -DE,NZ,2,244,201912,263677 -DE,NZ,2,245,201912,2229 -DE,NZ,2,251,201912,84750 -DE,NZ,2,252,201912,1328 -DE,NZ,2,253,201912,305 -DE,NZ,2,254,201912,80145 -DE,NZ,2,257,201912,1274872 -DE,NZ,2,259,201912,980403 -DE,NZ,2,261,201912,206522 -DE,NZ,2,262,201912,311013 -DE,NZ,2,263,201912,540264 -DE,NZ,2,264,201912,126869 -DE,NZ,2,265,201912,2937062 -DE,NZ,2,266,201912,291001 -DE,NZ,2,267,201912,520777 -DE,NZ,2,268,201912,2336 -DE,NZ,2,271,201912,2243989 -DE,NZ,2,272,201912,133853 -DE,NZ,2,273,201912,560172 -DE,NZ,2,274,201912,1195686 -DE,NZ,2,275,201912,1420219 -DE,NZ,2,279,201912,1154321 -DE,NZ,2,281,201912,3227185 -DE,NZ,2,282,201912,11189543 -DE,NZ,2,283,201912,4967359 -DE,NZ,2,284,201912,2387997 -DE,NZ,2,289,201912,4612119 -DE,NZ,2,291,201912,23540046 -DE,NZ,2,292,201912,1150828 -DE,NZ,2,293,201912,915216 -DE,NZ,2,303,201912,229356 -DE,NZ,2,309,201912,710332 -DE,NZ,2,310,201912,781394 -DE,NZ,2,321,201912,36699 -DE,NZ,2,322,201912,105851 -DE,NZ,2,323,201912,66287 -DE,NZ,2,324,201912,20115 -DE,NZ,2,325,201912,1516982 -DE,NZ,2,329,201912,233375 -DE,OM,1,023,201912,161 -DE,OM,1,204,201912,289 -DE,OM,1,211,201912,452 -DE,OM,1,263,201912,1170 -DE,OM,1,265,201912,31693 -DE,OM,1,271,201912,7847 -DE,OM,1,281,201912,2972 -DE,OM,1,282,201912,12968 -DE,OM,1,289,201912,3800 -DE,OM,1,293,201912,52246 -DE,OM,1,303,201912,3305 -DE,OM,1,325,201912,1272 -DE,OM,2,011,201912,761400 -DE,OM,2,089,201912,84940 -DE,OM,2,103,201912,122873 -DE,OM,2,105,201912,2184785 -DE,OM,2,106,201912,41799 -DE,OM,2,107,201912,69086 -DE,OM,2,108,201912,2023691 -DE,OM,2,109,201912,49022 -DE,OM,2,110,201912,183151 -DE,OM,2,132,201912,44974 -DE,OM,2,139,201912,71371 -DE,OM,2,141,201912,64580 -DE,OM,2,143,201912,7133 -DE,OM,2,151,201912,20060 -DE,OM,2,152,201912,13045 -DE,OM,2,161,201912,452507 -DE,OM,2,162,201912,12091 -DE,OM,2,171,201912,67655 -DE,OM,2,172,201912,32162 -DE,OM,2,192,201912,150462 -DE,OM,2,201,201912,1027206 -DE,OM,2,202,201912,120928 -DE,OM,2,203,201912,185098 -DE,OM,2,204,201912,676223 -DE,OM,2,205,201912,7999850 -DE,OM,2,211,201912,51497 -DE,OM,2,212,201912,2356609 -DE,OM,2,221,201912,549855 -DE,OM,2,222,201912,1357595 -DE,OM,2,231,201912,111052 -DE,OM,2,232,201912,1540972 -DE,OM,2,234,201912,102166 -DE,OM,2,236,201912,33465 -DE,OM,2,239,201912,97748 -DE,OM,2,242,201912,305148 -DE,OM,2,243,201912,43758 -DE,OM,2,244,201912,546469 -DE,OM,2,245,201912,10176 -DE,OM,2,251,201912,424668 -DE,OM,2,252,201912,1870 -DE,OM,2,254,201912,21036 -DE,OM,2,257,201912,414625 -DE,OM,2,259,201912,660927 -DE,OM,2,261,201912,36327 -DE,OM,2,262,201912,556253 -DE,OM,2,263,201912,789516 -DE,OM,2,264,201912,155048 -DE,OM,2,265,201912,3487340 -DE,OM,2,266,201912,2145917 -DE,OM,2,267,201912,863605 -DE,OM,2,268,201912,14184 -DE,OM,2,271,201912,9652999 -DE,OM,2,272,201912,305946 -DE,OM,2,273,201912,398214 -DE,OM,2,274,201912,197682 -DE,OM,2,275,201912,180706 -DE,OM,2,279,201912,730237 -DE,OM,2,281,201912,15761370 -DE,OM,2,282,201912,4220671 -DE,OM,2,283,201912,161048 -DE,OM,2,284,201912,156359 -DE,OM,2,289,201912,4992691 -DE,OM,2,291,201912,5369669 -DE,OM,2,293,201912,914016 -DE,OM,2,301,201912,33523 -DE,OM,2,302,201912,40 -DE,OM,2,303,201912,64487394 -DE,OM,2,309,201912,13176 -DE,OM,2,310,201912,300132 -DE,OM,2,321,201912,8552 -DE,OM,2,323,201912,8761 -DE,OM,2,324,201912,125 -DE,OM,2,325,201912,1132424 -DE,OM,2,329,201912,135810 -DE,PA,1,012,201912,116708 -DE,PA,1,102,201912,665800 -DE,PA,1,104,201912,6 -DE,PA,1,110,201912,1249 -DE,PA,1,139,201912,19730 -DE,PA,1,141,201912,39 -DE,PA,1,222,201912,37696 -DE,PA,1,263,201912,70 -DE,PA,1,265,201912,2075 -DE,PA,1,267,201912,6468 -DE,PA,1,279,201912,14900 -DE,PA,1,281,201912,1244 -DE,PA,1,282,201912,7437 -DE,PA,2,012,201912,5089 -DE,PA,2,089,201912,5759 -DE,PA,2,101,201912,67456 -DE,PA,2,102,201912,24165 -DE,PA,2,103,201912,49570 -DE,PA,2,105,201912,23701 -DE,PA,2,106,201912,76122 -DE,PA,2,107,201912,4589 -DE,PA,2,108,201912,368644 -DE,PA,2,110,201912,62980 -DE,PA,2,132,201912,135 -DE,PA,2,139,201912,48002 -DE,PA,2,141,201912,180897 -DE,PA,2,143,201912,10215 -DE,PA,2,151,201912,24779 -DE,PA,2,152,201912,60954 -DE,PA,2,162,201912,4469 -DE,PA,2,171,201912,2058 -DE,PA,2,172,201912,10245 -DE,PA,2,192,201912,36030 -DE,PA,2,201,201912,133387 -DE,PA,2,202,201912,59580 -DE,PA,2,203,201912,51609 -DE,PA,2,204,201912,535937 -DE,PA,2,205,201912,219164 -DE,PA,2,211,201912,149689 -DE,PA,2,212,201912,15462242 -DE,PA,2,221,201912,1019940 -DE,PA,2,222,201912,360354 -DE,PA,2,231,201912,44544 -DE,PA,2,234,201912,24940 -DE,PA,2,239,201912,63857 -DE,PA,2,241,201912,172615 -DE,PA,2,242,201912,16526 -DE,PA,2,243,201912,10356 -DE,PA,2,244,201912,153623 -DE,PA,2,251,201912,188395 -DE,PA,2,253,201912,2262 -DE,PA,2,257,201912,176750 -DE,PA,2,259,201912,341630 -DE,PA,2,261,201912,6312 -DE,PA,2,262,201912,94606 -DE,PA,2,263,201912,45491 -DE,PA,2,264,201912,70173 -DE,PA,2,265,201912,1871471 -DE,PA,2,266,201912,98499 -DE,PA,2,267,201912,2896 -DE,PA,2,271,201912,214987 -DE,PA,2,272,201912,53870 -DE,PA,2,273,201912,239337 -DE,PA,2,274,201912,55504 -DE,PA,2,275,201912,6948 -DE,PA,2,279,201912,174442 -DE,PA,2,281,201912,1399368 -DE,PA,2,282,201912,1470643 -DE,PA,2,283,201912,1400 -DE,PA,2,284,201912,17134 -DE,PA,2,289,201912,1499114 -DE,PA,2,291,201912,2442822 -DE,PA,2,293,201912,174961 -DE,PA,2,303,201912,15487 -DE,PA,2,309,201912,127032 -DE,PA,2,310,201912,34881 -DE,PA,2,321,201912,4463 -DE,PA,2,324,201912,1771 -DE,PA,2,325,201912,1014909 -DE,PA,2,329,201912,148087 -DE,PE,1,011,201912,1030010 -DE,PE,1,012,201912,20775421 -DE,PE,1,023,201912,2052 -DE,PE,1,030,201912,29829 -DE,PE,1,072,201912,43250530 -DE,PE,1,089,201912,16080 -DE,PE,1,102,201912,410700 -DE,PE,1,103,201912,2987035 -DE,PE,1,104,201912,13906 -DE,PE,1,106,201912,183518 -DE,PE,1,108,201912,1295716 -DE,PE,1,110,201912,27218 -DE,PE,1,131,201912,779660 -DE,PE,1,132,201912,240430 -DE,PE,1,139,201912,101642 -DE,PE,1,141,201912,2996659 -DE,PE,1,143,201912,214618 -DE,PE,1,151,201912,64076 -DE,PE,1,152,201912,4690 -DE,PE,1,162,201912,8038 -DE,PE,1,172,201912,1 -DE,PE,1,201,201912,1045482 -DE,PE,1,203,201912,132 -DE,PE,1,211,201912,123 -DE,PE,1,221,201912,381 -DE,PE,1,222,201912,374 -DE,PE,1,231,201912,3008 -DE,PE,1,234,201912,38 -DE,PE,1,244,201912,2009838 -DE,PE,1,259,201912,124998 -DE,PE,1,262,201912,1512 -DE,PE,1,265,201912,25093 -DE,PE,1,271,201912,11093 -DE,PE,1,281,201912,93075 -DE,PE,1,282,201912,67230 -DE,PE,1,289,201912,26489 -DE,PE,1,321,201912,10799 -DE,PE,1,322,201912,186 -DE,PE,1,324,201912,3799 -DE,PE,1,325,201912,506789 -DE,PE,1,329,201912,29139 -DE,PE,2,012,201912,192160 -DE,PE,2,023,201912,16874 -DE,PE,2,030,201912,4918 -DE,PE,2,081,201912,6641 -DE,PE,2,089,201912,27660 -DE,PE,2,101,201912,15910 -DE,PE,2,103,201912,71875 -DE,PE,2,104,201912,20564 -DE,PE,2,105,201912,333714 -DE,PE,2,106,201912,949500 -DE,PE,2,107,201912,232 -DE,PE,2,108,201912,410072 -DE,PE,2,109,201912,75850 -DE,PE,2,110,201912,178840 -DE,PE,2,131,201912,6499 -DE,PE,2,132,201912,5709 -DE,PE,2,139,201912,155700 -DE,PE,2,141,201912,418011 -DE,PE,2,143,201912,20640 -DE,PE,2,151,201912,50230 -DE,PE,2,152,201912,43459 -DE,PE,2,162,201912,636862 -DE,PE,2,171,201912,651036 -DE,PE,2,172,201912,92055 -DE,PE,2,192,201912,219957 -DE,PE,2,201,201912,3453393 -DE,PE,2,202,201912,202632 -DE,PE,2,203,201912,723209 -DE,PE,2,204,201912,1658241 -DE,PE,2,205,201912,1602993 -DE,PE,2,206,201912,327425 -DE,PE,2,20S,201912,219995 -DE,PE,2,211,201912,207066 -DE,PE,2,212,201912,5430344 -DE,PE,2,221,201912,4021500 -DE,PE,2,222,201912,1513788 -DE,PE,2,231,201912,80373 -DE,PE,2,232,201912,110998 -DE,PE,2,234,201912,58985 -DE,PE,2,236,201912,1110 -DE,PE,2,239,201912,368090 -DE,PE,2,241,201912,1063214 -DE,PE,2,242,201912,85046 -DE,PE,2,243,201912,17447 -DE,PE,2,244,201912,161322 -DE,PE,2,245,201912,1885 -DE,PE,2,251,201912,1405269 -DE,PE,2,252,201912,1544 -DE,PE,2,257,201912,1147179 -DE,PE,2,259,201912,1031758 -DE,PE,2,261,201912,69346 -DE,PE,2,262,201912,281571 -DE,PE,2,263,201912,353255 -DE,PE,2,264,201912,80167 -DE,PE,2,265,201912,3409418 -DE,PE,2,266,201912,1797253 -DE,PE,2,267,201912,574645 -DE,PE,2,271,201912,6136991 -DE,PE,2,272,201912,120786 -DE,PE,2,273,201912,703293 -DE,PE,2,274,201912,343619 -DE,PE,2,275,201912,310982 -DE,PE,2,279,201912,643757 -DE,PE,2,281,201912,3868325 -DE,PE,2,282,201912,5200303 -DE,PE,2,283,201912,231071 -DE,PE,2,284,201912,464946 -DE,PE,2,289,201912,6588027 -DE,PE,2,291,201912,4100217 -DE,PE,2,292,201912,9925 -DE,PE,2,293,201912,1371035 -DE,PE,2,303,201912,29358 -DE,PE,2,309,201912,197534 -DE,PE,2,310,201912,641419 -DE,PE,2,321,201912,3109 -DE,PE,2,322,201912,36598 -DE,PE,2,323,201912,14137 -DE,PE,2,324,201912,3466 -DE,PE,2,325,201912,3113688 -DE,PE,2,329,201912,616529 -DE,PE,2,32S,201912,6137 -DE,PF,1,321,201912,31990 -DE,PF,2,105,201912,34930 -DE,PF,2,108,201912,2794 -DE,PF,2,110,201912,35644 -DE,PF,2,139,201912,386 -DE,PF,2,141,201912,345 -DE,PF,2,151,201912,1101 -DE,PF,2,162,201912,12 -DE,PF,2,171,201912,28234 -DE,PF,2,203,201912,4662 -DE,PF,2,204,201912,2340 -DE,PF,2,205,201912,5262 -DE,PF,2,212,201912,1627 -DE,PF,2,221,201912,55697 -DE,PF,2,222,201912,19328 -DE,PF,2,231,201912,9533 -DE,PF,2,234,201912,1990 -DE,PF,2,239,201912,2088 -DE,PF,2,244,201912,86471 -DE,PF,2,254,201912,8912 -DE,PF,2,257,201912,54353 -DE,PF,2,259,201912,60235 -DE,PF,2,262,201912,11417 -DE,PF,2,264,201912,5167 -DE,PF,2,265,201912,5536 -DE,PF,2,271,201912,12296 -DE,PF,2,273,201912,11110 -DE,PF,2,274,201912,6268 -DE,PF,2,275,201912,1077 -DE,PF,2,279,201912,29159 -DE,PF,2,281,201912,41656 -DE,PF,2,282,201912,46111 -DE,PF,2,283,201912,2077 -DE,PF,2,284,201912,250 -DE,PF,2,289,201912,44198 -DE,PF,2,291,201912,138397 -DE,PF,2,293,201912,44325 -DE,PF,2,309,201912,3765 -DE,PF,2,310,201912,11451 -DE,PF,2,322,201912,1854 -DE,PF,2,325,201912,12324 -DE,PF,2,329,201912,1038 -DE,PG,1,012,201912,2442325 -DE,PG,1,102,201912,4312760 -DE,PG,2,201,201912,195 -DE,PG,2,203,201912,1595 -DE,PG,2,205,201912,40734 -DE,PG,2,221,201912,5159 -DE,PG,2,222,201912,15011 -DE,PG,2,244,201912,1778 -DE,PG,2,257,201912,8159 -DE,PG,2,259,201912,11938 -DE,PG,2,261,201912,1480 -DE,PG,2,263,201912,5413 -DE,PG,2,265,201912,636004 -DE,PG,2,271,201912,116393 -DE,PG,2,272,201912,2116 -DE,PG,2,273,201912,13140 -DE,PG,2,275,201912,107 -DE,PG,2,279,201912,8841 -DE,PG,2,281,201912,398444 -DE,PG,2,282,201912,702091 -DE,PG,2,289,201912,246426 -DE,PG,2,325,201912,13079 -DE,PH,1,011,201912,292 -DE,PH,1,012,201912,611848 -DE,PH,1,013,201912,7393 -DE,PH,1,014,201912,26642 -DE,PH,1,023,201912,10642 -DE,PH,1,030,201912,26194 -DE,PH,1,081,201912,18421 -DE,PH,1,102,201912,5580373 -DE,PH,1,103,201912,512859 -DE,PH,1,104,201912,2081471 -DE,PH,1,106,201912,22130 -DE,PH,1,108,201912,191529 -DE,PH,1,110,201912,30816 -DE,PH,1,120,201912,2074955 -DE,PH,1,139,201912,72138 -DE,PH,1,141,201912,2606929 -DE,PH,1,142,201912,180783 -DE,PH,1,143,201912,341912 -DE,PH,1,151,201912,518461 -DE,PH,1,152,201912,69685 -DE,PH,1,162,201912,35131 -DE,PH,1,172,201912,45098 -DE,PH,1,181,201912,1497 -DE,PH,1,201,201912,115392 -DE,PH,1,204,201912,170 -DE,PH,1,205,201912,1980781 -DE,PH,1,221,201912,143309 -DE,PH,1,222,201912,449302 -DE,PH,1,231,201912,94 -DE,PH,1,234,201912,5160 -DE,PH,1,236,201912,302 -DE,PH,1,239,201912,21782 -DE,PH,1,244,201912,17460 -DE,PH,1,251,201912,36892 -DE,PH,1,257,201912,16123 -DE,PH,1,259,201912,2060255 -DE,PH,1,261,201912,75270280 -DE,PH,1,262,201912,53857746 -DE,PH,1,263,201912,3705743 -DE,PH,1,264,201912,2853872 -DE,PH,1,265,201912,7127513 -DE,PH,1,266,201912,138452 -DE,PH,1,267,201912,1622783 -DE,PH,1,268,201912,33503 -DE,PH,1,271,201912,8169319 -DE,PH,1,272,201912,590791 -DE,PH,1,273,201912,1578850 -DE,PH,1,274,201912,136978 -DE,PH,1,275,201912,2980894 -DE,PH,1,279,201912,13977589 -DE,PH,1,281,201912,3152667 -DE,PH,1,282,201912,2480197 -DE,PH,1,289,201912,127427 -DE,PH,1,293,201912,422303 -DE,PH,1,303,201912,34983 -DE,PH,1,309,201912,1005061 -DE,PH,1,310,201912,120239 -DE,PH,1,321,201912,72943 -DE,PH,1,323,201912,169087 -DE,PH,1,324,201912,22379 -DE,PH,1,325,201912,3296760 -DE,PH,1,329,201912,246146 -DE,PH,2,011,201912,325703 -DE,PH,2,012,201912,108842 -DE,PH,2,014,201912,32548 -DE,PH,2,081,201912,29050 -DE,PH,2,089,201912,8224 -DE,PH,2,101,201912,1585 -DE,PH,2,102,201912,1768 -DE,PH,2,103,201912,614206 -DE,PH,2,104,201912,45873 -DE,PH,2,105,201912,1739899 -DE,PH,2,106,201912,366928 -DE,PH,2,107,201912,90134 -DE,PH,2,108,201912,2972071 -DE,PH,2,109,201912,162287 -DE,PH,2,110,201912,502574 -DE,PH,2,120,201912,556979 -DE,PH,2,131,201912,2093 -DE,PH,2,132,201912,127008 -DE,PH,2,139,201912,537665 -DE,PH,2,141,201912,30596 -DE,PH,2,142,201912,150 -DE,PH,2,143,201912,2446 -DE,PH,2,151,201912,171072 -DE,PH,2,152,201912,20929 -DE,PH,2,161,201912,244069 -DE,PH,2,162,201912,102835 -DE,PH,2,171,201912,585277 -DE,PH,2,172,201912,60495 -DE,PH,2,181,201912,20379 -DE,PH,2,192,201912,64532 -DE,PH,2,201,201912,6605402 -DE,PH,2,202,201912,985017 -DE,PH,2,203,201912,844951 -DE,PH,2,204,201912,1097766 -DE,PH,2,205,201912,1630654 -DE,PH,2,20S,201912,192170 -DE,PH,2,211,201912,279586 -DE,PH,2,212,201912,11067729 -DE,PH,2,221,201912,1037129 -DE,PH,2,222,201912,2027400 -DE,PH,2,231,201912,115521 -DE,PH,2,232,201912,9812 -DE,PH,2,234,201912,345771 -DE,PH,2,236,201912,68865 -DE,PH,2,239,201912,32721 -DE,PH,2,241,201912,241269 -DE,PH,2,242,201912,18108 -DE,PH,2,243,201912,33878 -DE,PH,2,244,201912,549993 -DE,PH,2,245,201912,1337 -DE,PH,2,251,201912,278380 -DE,PH,2,252,201912,19594 -DE,PH,2,253,201912,511023 -DE,PH,2,257,201912,1293297 -DE,PH,2,259,201912,2368859 -DE,PH,2,261,201912,25911456 -DE,PH,2,262,201912,286638 -DE,PH,2,263,201912,1261848 -DE,PH,2,264,201912,270904 -DE,PH,2,265,201912,10777707 -DE,PH,2,266,201912,1817347 -DE,PH,2,267,201912,1448849 -DE,PH,2,271,201912,3534788 -DE,PH,2,272,201912,25816 -DE,PH,2,273,201912,1757473 -DE,PH,2,274,201912,196538 -DE,PH,2,275,201912,308087 -DE,PH,2,279,201912,1574065 -DE,PH,2,281,201912,16453714 -DE,PH,2,282,201912,12296443 -DE,PH,2,283,201912,793048 -DE,PH,2,284,201912,353486 -DE,PH,2,289,201912,11657543 -DE,PH,2,291,201912,11228892 -DE,PH,2,292,201912,324854 -DE,PH,2,293,201912,394553 -DE,PH,2,302,201912,1191 -DE,PH,2,303,201912,9517728 -DE,PH,2,309,201912,273415 -DE,PH,2,310,201912,281398 -DE,PH,2,321,201912,23622 -DE,PH,2,322,201912,1553 -DE,PH,2,323,201912,16727 -DE,PH,2,324,201912,23754 -DE,PH,2,325,201912,2547966 -DE,PH,2,329,201912,615558 -DE,PK,1,011,201912,263625 -DE,PK,1,012,201912,422083 -DE,PK,1,089,201912,32576 -DE,PK,1,101,201912,66837 -DE,PK,1,103,201912,364116 -DE,PK,1,106,201912,1634172 -DE,PK,1,108,201912,286140 -DE,PK,1,110,201912,19029 -DE,PK,1,120,201912,3525 -DE,PK,1,131,201912,1093981 -DE,PK,1,132,201912,5922216 -DE,PK,1,139,201912,28317069 -DE,PK,1,141,201912,48234631 -DE,PK,1,143,201912,11811029 -DE,PK,1,151,201912,1606017 -DE,PK,1,152,201912,2012537 -DE,PK,1,162,201912,7480 -DE,PK,1,172,201912,123452 -DE,PK,1,201,201912,6 -DE,PK,1,204,201912,2257 -DE,PK,1,205,201912,130692 -DE,PK,1,211,201912,475 -DE,PK,1,212,201912,744 -DE,PK,1,221,201912,256838 -DE,PK,1,222,201912,117501 -DE,PK,1,231,201912,1117 -DE,PK,1,234,201912,232 -DE,PK,1,237,201912,20979 -DE,PK,1,239,201912,9938 -DE,PK,1,254,201912,49890 -DE,PK,1,257,201912,877705 -DE,PK,1,259,201912,163192 -DE,PK,1,263,201912,54206 -DE,PK,1,265,201912,99678 -DE,PK,1,266,201912,3717 -DE,PK,1,274,201912,39001 -DE,PK,1,279,201912,10913 -DE,PK,1,281,201912,79481 -DE,PK,1,282,201912,17534 -DE,PK,1,284,201912,500 -DE,PK,1,289,201912,933 -DE,PK,1,293,201912,13567 -DE,PK,1,309,201912,16416 -DE,PK,1,310,201912,22162 -DE,PK,1,321,201912,4157 -DE,PK,1,322,201912,37000 -DE,PK,1,323,201912,2255803 -DE,PK,1,324,201912,82165 -DE,PK,1,325,201912,3039118 -DE,PK,1,329,201912,977437 -DE,PK,2,012,201912,2724 -DE,PK,2,014,201912,122308 -DE,PK,2,022,201912,22656 -DE,PK,2,023,201912,15720 -DE,PK,2,030,201912,5818 -DE,PK,2,081,201912,5713 -DE,PK,2,089,201912,351983 -DE,PK,2,101,201912,225005 -DE,PK,2,103,201912,18008 -DE,PK,2,104,201912,70466 -DE,PK,2,105,201912,1062932 -DE,PK,2,106,201912,19490 -DE,PK,2,107,201912,33540 -DE,PK,2,108,201912,719270 -DE,PK,2,109,201912,238478 -DE,PK,2,131,201912,8577 -DE,PK,2,132,201912,52946 -DE,PK,2,139,201912,394696 -DE,PK,2,141,201912,481813 -DE,PK,2,142,201912,207 -DE,PK,2,143,201912,165482 -DE,PK,2,151,201912,96635 -DE,PK,2,161,201912,1197680 -DE,PK,2,162,201912,20667 -DE,PK,2,171,201912,254049 -DE,PK,2,172,201912,37234 -DE,PK,2,181,201912,1650 -DE,PK,2,192,201912,166610 -DE,PK,2,201,201912,5951173 -DE,PK,2,202,201912,184014 -DE,PK,2,203,201912,578296 -DE,PK,2,204,201912,1439038 -DE,PK,2,205,201912,4489327 -DE,PK,2,206,201912,115541 -DE,PK,2,20S,201912,30104 -DE,PK,2,211,201912,1768552 -DE,PK,2,212,201912,6795444 -DE,PK,2,221,201912,888025 -DE,PK,2,222,201912,1017557 -DE,PK,2,231,201912,53307 -DE,PK,2,232,201912,1051352 -DE,PK,2,234,201912,65412 -DE,PK,2,236,201912,8658 -DE,PK,2,239,201912,127647 -DE,PK,2,241,201912,695874 -DE,PK,2,242,201912,113488 -DE,PK,2,243,201912,388981 -DE,PK,2,244,201912,794305 -DE,PK,2,245,201912,872 -DE,PK,2,251,201912,14195 -DE,PK,2,252,201912,13539 -DE,PK,2,257,201912,257906 -DE,PK,2,259,201912,618588 -DE,PK,2,261,201912,346719 -DE,PK,2,262,201912,766945 -DE,PK,2,263,201912,490928 -DE,PK,2,264,201912,72308 -DE,PK,2,265,201912,8908727 -DE,PK,2,266,201912,315935 -DE,PK,2,267,201912,437118 -DE,PK,2,271,201912,4452937 -DE,PK,2,272,201912,182218 -DE,PK,2,273,201912,483809 -DE,PK,2,274,201912,133563 -DE,PK,2,275,201912,177444 -DE,PK,2,279,201912,476150 -DE,PK,2,281,201912,5155574 -DE,PK,2,282,201912,3709347 -DE,PK,2,283,201912,206133 -DE,PK,2,284,201912,140540 -DE,PK,2,289,201912,15246188 -DE,PK,2,291,201912,1172431 -DE,PK,2,293,201912,132885 -DE,PK,2,303,201912,105649 -DE,PK,2,310,201912,9659 -DE,PK,2,323,201912,2998 -DE,PK,2,324,201912,9142 -DE,PK,2,325,201912,3047535 -DE,PK,2,329,201912,151032 -DE,PL,1,011,201912,64970223 -DE,PL,1,012,201912,6495895 -DE,PL,1,013,201912,366379 -DE,PL,1,014,201912,9656998 -DE,PL,1,01M,201912,729082 -DE,PL,1,021,201912,15088 -DE,PL,1,022,201912,8506039 -DE,PL,1,023,201912,3514613 -DE,PL,1,030,201912,1458399 -DE,PL,1,051,201912,3682299 -DE,PL,1,061,201912,15775743 -DE,PL,1,081,201912,2150772 -DE,PL,1,089,201912,203037 -DE,PL,1,101,201912,80119412 -DE,PL,1,102,201912,64327995 -DE,PL,1,103,201912,38982082 -DE,PL,1,104,201912,13444296 -DE,PL,1,105,201912,34717035 -DE,PL,1,106,201912,12939224 -DE,PL,1,107,201912,34492100 -DE,PL,1,108,201912,66360545 -DE,PL,1,109,201912,31811601 -DE,PL,1,10M,201912,21838554 -DE,PL,1,110,201912,5880177 -DE,PL,1,120,201912,79653116 -DE,PL,1,131,201912,6316922 -DE,PL,1,132,201912,997592 -DE,PL,1,139,201912,57704712 -DE,PL,1,13M,201912,337275 -DE,PL,1,141,201912,306709982 -DE,PL,1,142,201912,244482 -DE,PL,1,143,201912,60656500 -DE,PL,1,14M,201912,7160174 -DE,PL,1,151,201912,21886797 -DE,PL,1,152,201912,70505198 -DE,PL,1,161,201912,3762220 -DE,PL,1,162,201912,57910144 -DE,PL,1,16M,201912,83452 -DE,PL,1,171,201912,39681628 -DE,PL,1,172,201912,66687558 -DE,PL,1,17M,201912,9684026 -DE,PL,1,181,201912,208754 -DE,PL,1,191,201912,20358259 -DE,PL,1,192,201912,17614114 -DE,PL,1,201,201912,112536461 -DE,PL,1,202,201912,1017770 -DE,PL,1,203,201912,4261099 -DE,PL,1,204,201912,73042947 -DE,PL,1,205,201912,41763277 -DE,PL,1,206,201912,3233272 -DE,PL,1,20M,201912,4169068 -DE,PL,1,211,201912,2013274 -DE,PL,1,212,201912,73961371 -DE,PL,1,221,201912,57162728 -DE,PL,1,222,201912,130636859 -DE,PL,1,231,201912,26571687 -DE,PL,1,232,201912,1923633 -DE,PL,1,233,201912,3099581 -DE,PL,1,234,201912,16914757 -DE,PL,1,235,201912,677546 -DE,PL,1,236,201912,3777352 -DE,PL,1,237,201912,486770 -DE,PL,1,239,201912,12576626 -DE,PL,1,23M,201912,3791549 -DE,PL,1,241,201912,32761957 -DE,PL,1,242,201912,13586147 -DE,PL,1,243,201912,7546811 -DE,PL,1,244,201912,55958699 -DE,PL,1,245,201912,850379 -DE,PL,1,251,201912,36342716 -DE,PL,1,252,201912,12356305 -DE,PL,1,253,201912,742530 -DE,PL,1,254,201912,194231 -DE,PL,1,257,201912,43400562 -DE,PL,1,259,201912,82818497 -DE,PL,1,25M,201912,4435427 -DE,PL,1,261,201912,6940208 -DE,PL,1,262,201912,125198311 -DE,PL,1,263,201912,90432890 -DE,PL,1,264,201912,203595875 -DE,PL,1,265,201912,39292400 -DE,PL,1,266,201912,28694552 -DE,PL,1,267,201912,12482037 -DE,PL,1,268,201912,163702 -DE,PL,1,271,201912,78806171 -DE,PL,1,272,201912,59104252 -DE,PL,1,273,201912,34798587 -DE,PL,1,274,201912,49846215 -DE,PL,1,275,201912,127162244 -DE,PL,1,279,201912,39705061 -DE,PL,1,281,201912,120384316 -DE,PL,1,282,201912,106747753 -DE,PL,1,283,201912,12515801 -DE,PL,1,284,201912,15648688 -DE,PL,1,289,201912,49056793 -DE,PL,1,291,201912,242938508 -DE,PL,1,292,201912,17980751 -DE,PL,1,293,201912,269526856 -DE,PL,1,301,201912,3395187 -DE,PL,1,302,201912,44614105 -DE,PL,1,303,201912,48118594 -DE,PL,1,309,201912,13191112 -DE,PL,1,30M,201912,414016 -DE,PL,1,310,201912,269718758 -DE,PL,1,321,201912,7081552 -DE,PL,1,322,201912,1328033 -DE,PL,1,323,201912,7730041 -DE,PL,1,324,201912,61463177 -DE,PL,1,325,201912,33211678 -DE,PL,1,329,201912,33891584 -DE,PL,1,32M,201912,15853 -DE,PL,1,351,201912,777144 -DE,PL,2,011,201912,8170990 -DE,PL,2,012,201912,26405991 -DE,PL,2,013,201912,1720043 -DE,PL,2,014,201912,8700497 -DE,PL,2,01M,201912,494356 -DE,PL,2,022,201912,565368 -DE,PL,2,023,201912,907757 -DE,PL,2,030,201912,337200 -DE,PL,2,051,201912,223914 -DE,PL,2,052,201912,1227643 -DE,PL,2,071,201912,19178 -DE,PL,2,072,201912,323291 -DE,PL,2,081,201912,1967183 -DE,PL,2,089,201912,4798405 -DE,PL,2,101,201912,50205069 -DE,PL,2,102,201912,10764496 -DE,PL,2,103,201912,19351736 -DE,PL,2,104,201912,19646567 -DE,PL,2,105,201912,31676947 -DE,PL,2,106,201912,14609950 -DE,PL,2,107,201912,13742897 -DE,PL,2,108,201912,104240093 -DE,PL,2,109,201912,31331914 -DE,PL,2,10M,201912,5260793 -DE,PL,2,110,201912,14735938 -DE,PL,2,120,201912,9641633 -DE,PL,2,131,201912,4355079 -DE,PL,2,132,201912,15814613 -DE,PL,2,139,201912,51366397 -DE,PL,2,13M,201912,802851 -DE,PL,2,141,201912,211660057 -DE,PL,2,142,201912,94589 -DE,PL,2,143,201912,41869392 -DE,PL,2,14M,201912,12833302 -DE,PL,2,151,201912,21688018 -DE,PL,2,152,201912,86088790 -DE,PL,2,161,201912,5311073 -DE,PL,2,162,201912,17700819 -DE,PL,2,16M,201912,31485 -DE,PL,2,171,201912,98442643 -DE,PL,2,172,201912,34436719 -DE,PL,2,17M,201912,4132349 -DE,PL,2,17S,201912,46664 -DE,PL,2,181,201912,1066514 -DE,PL,2,191,201912,107979 -DE,PL,2,192,201912,56722233 -DE,PL,2,201,201912,178276517 -DE,PL,2,202,201912,7223838 -DE,PL,2,203,201912,33907865 -DE,PL,2,204,201912,55995818 -DE,PL,2,205,201912,106750874 -DE,PL,2,206,201912,1569294 -DE,PL,2,20M,201912,4135719 -DE,PL,2,20S,201912,6936193 -DE,PL,2,211,201912,5284382 -DE,PL,2,212,201912,109886460 -DE,PL,2,221,201912,48941986 -DE,PL,2,222,201912,153558962 -DE,PL,2,231,201912,19439355 -DE,PL,2,232,201912,2561515 -DE,PL,2,233,201912,6779768 -DE,PL,2,234,201912,13187073 -DE,PL,2,235,201912,1962525 -DE,PL,2,236,201912,4544018 -DE,PL,2,237,201912,262388 -DE,PL,2,239,201912,13354645 -DE,PL,2,23M,201912,1943044 -DE,PL,2,241,201912,86630870 -DE,PL,2,242,201912,19529423 -DE,PL,2,243,201912,21890315 -DE,PL,2,244,201912,95772039 -DE,PL,2,245,201912,742762 -DE,PL,2,251,201912,15904066 -DE,PL,2,252,201912,8602496 -DE,PL,2,253,201912,1331865 -DE,PL,2,254,201912,743137 -DE,PL,2,257,201912,82338104 -DE,PL,2,259,201912,82697476 -DE,PL,2,25M,201912,3742923 -DE,PL,2,261,201912,45592825 -DE,PL,2,262,201912,126264146 -DE,PL,2,263,201912,85162160 -DE,PL,2,264,201912,98858677 -DE,PL,2,265,201912,95728781 -DE,PL,2,266,201912,19520957 -DE,PL,2,267,201912,24315260 -DE,PL,2,268,201912,1090380 -DE,PL,2,271,201912,71791643 -DE,PL,2,272,201912,16616692 -DE,PL,2,273,201912,46127497 -DE,PL,2,274,201912,21598391 -DE,PL,2,275,201912,54383089 -DE,PL,2,279,201912,76793816 -DE,PL,2,281,201912,164347979 -DE,PL,2,282,201912,213969713 -DE,PL,2,283,201912,26325106 -DE,PL,2,284,201912,62066252 -DE,PL,2,289,201912,191849768 -DE,PL,2,291,201912,201352821 -DE,PL,2,292,201912,32305440 -DE,PL,2,293,201912,215060658 -DE,PL,2,301,201912,551772 -DE,PL,2,302,201912,18134220 -DE,PL,2,303,201912,75901394 -DE,PL,2,309,201912,10400653 -DE,PL,2,30M,201912,30680 -DE,PL,2,310,201912,39856042 -DE,PL,2,321,201912,14602048 -DE,PL,2,322,201912,3278249 -DE,PL,2,323,201912,5111258 -DE,PL,2,324,201912,30435747 -DE,PL,2,325,201912,40281942 -DE,PL,2,329,201912,22065829 -DE,PL,2,32M,201912,120361 -DE,PL,2,32S,201912,44008 -DE,PL,2,351,201912,49384761 -DE,PM,2,293,201912,5022 -DE,PS,1,011,201912,943 -DE,PS,1,012,201912,334609 -DE,PS,2,108,201912,260539 -DE,PS,2,151,201912,22 -DE,PS,2,171,201912,12675 -DE,PS,2,172,201912,81513 -DE,PS,2,192,201912,74176 -DE,PS,2,201,201912,6300 -DE,PS,2,203,201912,14563 -DE,PS,2,204,201912,149066 -DE,PS,2,205,201912,179634 -DE,PS,2,211,201912,481 -DE,PS,2,212,201912,847136 -DE,PS,2,221,201912,23340 -DE,PS,2,222,201912,31908 -DE,PS,2,231,201912,17523 -DE,PS,2,239,201912,103 -DE,PS,2,251,201912,12495 -DE,PS,2,257,201912,25104 -DE,PS,2,259,201912,12644 -DE,PS,2,261,201912,1196 -DE,PS,2,262,201912,161608 -DE,PS,2,263,201912,4521 -DE,PS,2,265,201912,106421 -DE,PS,2,266,201912,208428 -DE,PS,2,267,201912,155655 -DE,PS,2,271,201912,38961 -DE,PS,2,272,201912,200664 -DE,PS,2,273,201912,19756 -DE,PS,2,274,201912,79416 -DE,PS,2,275,201912,3657 -DE,PS,2,279,201912,73367 -DE,PS,2,281,201912,197160 -DE,PS,2,282,201912,311618 -DE,PS,2,289,201912,40683 -DE,PS,2,291,201912,1557440 -DE,PS,2,293,201912,460347 -DE,PS,2,310,201912,14331 -DE,PS,2,325,201912,412889 -DE,PS,2,329,201912,22956 -DE,PT,1,011,201912,729022 -DE,PT,1,012,201912,2417902 -DE,PT,1,013,201912,13453 -DE,PT,1,014,201912,304430 -DE,PT,1,01M,201912,10 -DE,PT,1,023,201912,12586 -DE,PT,1,030,201912,88343 -DE,PT,1,081,201912,152787 -DE,PT,1,089,201912,259 -DE,PT,1,101,201912,1440697 -DE,PT,1,102,201912,875770 -DE,PT,1,103,201912,1699312 -DE,PT,1,104,201912,718323 -DE,PT,1,105,201912,324592 -DE,PT,1,106,201912,73170 -DE,PT,1,107,201912,671077 -DE,PT,1,108,201912,1202061 -DE,PT,1,10M,201912,474809 -DE,PT,1,110,201912,4917227 -DE,PT,1,131,201912,280978 -DE,PT,1,132,201912,2467259 -DE,PT,1,139,201912,5403133 -DE,PT,1,13M,201912,96447 -DE,PT,1,141,201912,15665387 -DE,PT,1,143,201912,4163769 -DE,PT,1,14M,201912,3543289 -DE,PT,1,151,201912,851558 -DE,PT,1,152,201912,20785540 -DE,PT,1,161,201912,251015 -DE,PT,1,162,201912,5210481 -DE,PT,1,16M,201912,1066633 -DE,PT,1,171,201912,22110284 -DE,PT,1,172,201912,256612 -DE,PT,1,17M,201912,1223907 -DE,PT,1,181,201912,5500 -DE,PT,1,201,201912,16092114 -DE,PT,1,202,201912,128129 -DE,PT,1,203,201912,19783 -DE,PT,1,204,201912,883187 -DE,PT,1,205,201912,845501 -DE,PT,1,206,201912,552122 -DE,PT,1,20M,201912,272334 -DE,PT,1,211,201912,389476 -DE,PT,1,212,201912,16089423 -DE,PT,1,221,201912,12474410 -DE,PT,1,222,201912,5931163 -DE,PT,1,231,201912,1472353 -DE,PT,1,232,201912,5744 -DE,PT,1,233,201912,818388 -DE,PT,1,234,201912,2118697 -DE,PT,1,236,201912,18314 -DE,PT,1,237,201912,989917 -DE,PT,1,239,201912,224999 -DE,PT,1,23M,201912,703901 -DE,PT,1,241,201912,472712 -DE,PT,1,242,201912,598200 -DE,PT,1,243,201912,800109 -DE,PT,1,244,201912,3755890 -DE,PT,1,245,201912,253 -DE,PT,1,251,201912,1479349 -DE,PT,1,252,201912,17344 -DE,PT,1,253,201912,31768 -DE,PT,1,254,201912,22658 -DE,PT,1,257,201912,10350364 -DE,PT,1,259,201912,5517388 -DE,PT,1,25M,201912,479858 -DE,PT,1,261,201912,189600 -DE,PT,1,262,201912,822588 -DE,PT,1,263,201912,6706767 -DE,PT,1,264,201912,9663901 -DE,PT,1,265,201912,39104094 -DE,PT,1,266,201912,15594 -DE,PT,1,267,201912,2004368 -DE,PT,1,271,201912,36262292 -DE,PT,1,272,201912,1498035 -DE,PT,1,273,201912,4418945 -DE,PT,1,274,201912,564151 -DE,PT,1,275,201912,7635725 -DE,PT,1,279,201912,4260464 -DE,PT,1,281,201912,28723022 -DE,PT,1,282,201912,3892572 -DE,PT,1,283,201912,84919 -DE,PT,1,284,201912,412232 -DE,PT,1,289,201912,6491859 -DE,PT,1,291,201912,76862940 -DE,PT,1,292,201912,306689 -DE,PT,1,293,201912,21058037 -DE,PT,1,303,201912,9076592 -DE,PT,1,309,201912,5394533 -DE,PT,1,30M,201912,7603 -DE,PT,1,310,201912,6210445 -DE,PT,1,321,201912,738044 -DE,PT,1,322,201912,155036 -DE,PT,1,323,201912,134217 -DE,PT,1,324,201912,166062 -DE,PT,1,325,201912,2467865 -DE,PT,1,329,201912,1550831 -DE,PT,1,32M,201912,3834 -DE,PT,2,011,201912,2762637 -DE,PT,2,012,201912,273707 -DE,PT,2,013,201912,303995 -DE,PT,2,014,201912,226477 -DE,PT,2,01M,201912,1475 -DE,PT,2,022,201912,620 -DE,PT,2,023,201912,3632 -DE,PT,2,030,201912,36596 -DE,PT,2,072,201912,18026 -DE,PT,2,081,201912,155024 -DE,PT,2,089,201912,160016 -DE,PT,2,101,201912,4128298 -DE,PT,2,102,201912,5503199 -DE,PT,2,103,201912,3332465 -DE,PT,2,104,201912,1317150 -DE,PT,2,105,201912,5050287 -DE,PT,2,106,201912,1183923 -DE,PT,2,107,201912,3201060 -DE,PT,2,108,201912,8300384 -DE,PT,2,109,201912,769270 -DE,PT,2,10M,201912,741920 -DE,PT,2,110,201912,2036586 -DE,PT,2,120,201912,871404 -DE,PT,2,131,201912,1031943 -DE,PT,2,132,201912,4155557 -DE,PT,2,139,201912,4232951 -DE,PT,2,13M,201912,99594 -DE,PT,2,141,201912,8360347 -DE,PT,2,142,201912,13623 -DE,PT,2,143,201912,1926662 -DE,PT,2,14M,201912,323212 -DE,PT,2,151,201912,1975986 -DE,PT,2,152,201912,4792551 -DE,PT,2,161,201912,421042 -DE,PT,2,162,201912,2047690 -DE,PT,2,16M,201912,1684 -DE,PT,2,171,201912,5749971 -DE,PT,2,172,201912,4221556 -DE,PT,2,17M,201912,254447 -DE,PT,2,181,201912,78883 -DE,PT,2,192,201912,722702 -DE,PT,2,201,201912,19779661 -DE,PT,2,202,201912,603125 -DE,PT,2,203,201912,3852914 -DE,PT,2,204,201912,4737063 -DE,PT,2,205,201912,46558916 -DE,PT,2,206,201912,174406 -DE,PT,2,20M,201912,439934 -DE,PT,2,20S,201912,1927 -DE,PT,2,211,201912,1174197 -DE,PT,2,212,201912,40591037 -DE,PT,2,221,201912,3785431 -DE,PT,2,222,201912,16962783 -DE,PT,2,231,201912,2067439 -DE,PT,2,232,201912,2249896 -DE,PT,2,233,201912,5191 -DE,PT,2,234,201912,1497242 -DE,PT,2,235,201912,36893 -DE,PT,2,236,201912,287318 -DE,PT,2,237,201912,10371 -DE,PT,2,239,201912,1470683 -DE,PT,2,23M,201912,104618 -DE,PT,2,241,201912,4019670 -DE,PT,2,242,201912,831100 -DE,PT,2,243,201912,1455533 -DE,PT,2,244,201912,7934376 -DE,PT,2,245,201912,10234 -DE,PT,2,251,201912,1205706 -DE,PT,2,252,201912,536942 -DE,PT,2,253,201912,26766 -DE,PT,2,254,201912,103207 -DE,PT,2,257,201912,9417016 -DE,PT,2,259,201912,9503478 -DE,PT,2,25M,201912,336123 -DE,PT,2,261,201912,29186126 -DE,PT,2,262,201912,19919581 -DE,PT,2,263,201912,17610672 -DE,PT,2,264,201912,4602724 -DE,PT,2,265,201912,16700620 -DE,PT,2,266,201912,4649574 -DE,PT,2,267,201912,2527950 -DE,PT,2,268,201912,32592 -DE,PT,2,271,201912,22178177 -DE,PT,2,272,201912,1309880 -DE,PT,2,273,201912,10180556 -DE,PT,2,274,201912,3362967 -DE,PT,2,275,201912,2128867 -DE,PT,2,279,201912,11741796 -DE,PT,2,281,201912,42654943 -DE,PT,2,282,201912,38069987 -DE,PT,2,283,201912,1994406 -DE,PT,2,284,201912,9585396 -DE,PT,2,289,201912,17237432 -DE,PT,2,291,201912,108211871 -DE,PT,2,292,201912,5393127 -DE,PT,2,293,201912,36022217 -DE,PT,2,301,201912,888 -DE,PT,2,302,201912,161243 -DE,PT,2,303,201912,4595316 -DE,PT,2,309,201912,3842780 -DE,PT,2,30M,201912,9455 -DE,PT,2,310,201912,4528628 -DE,PT,2,321,201912,705255 -DE,PT,2,322,201912,412242 -DE,PT,2,323,201912,208468 -DE,PT,2,324,201912,731499 -DE,PT,2,325,201912,7968208 -DE,PT,2,329,201912,2044416 -DE,PT,2,32M,201912,18906 -DE,PT,2,32S,201912,2181 -DE,PY,1,011,201912,742539 -DE,PY,1,012,201912,105401 -DE,PY,1,014,201912,252337 -DE,PY,1,101,201912,402221 -DE,PY,1,103,201912,302057 -DE,PY,1,108,201912,300808 -DE,PY,1,141,201912,1445 -DE,PY,1,151,201912,233557 -DE,PY,1,162,201912,19627 -DE,PY,1,201,201912,413839 -DE,PY,1,205,201912,1 -DE,PY,1,211,201912,102 -DE,PY,1,321,201912,1 -DE,PY,1,324,201912,195 -DE,PY,2,012,201912,5613 -DE,PY,2,103,201912,69741 -DE,PY,2,106,201912,17120 -DE,PY,2,107,201912,29708 -DE,PY,2,108,201912,342501 -DE,PY,2,110,201912,184836 -DE,PY,2,131,201912,1644 -DE,PY,2,139,201912,154686 -DE,PY,2,141,201912,1412 -DE,PY,2,151,201912,44240 -DE,PY,2,171,201912,126620 -DE,PY,2,172,201912,99126 -DE,PY,2,181,201912,471 -DE,PY,2,192,201912,93202 -DE,PY,2,201,201912,287871 -DE,PY,2,202,201912,447826 -DE,PY,2,203,201912,111 -DE,PY,2,204,201912,729693 -DE,PY,2,205,201912,467096 -DE,PY,2,211,201912,5064 -DE,PY,2,212,201912,539914 -DE,PY,2,221,201912,114132 -DE,PY,2,222,201912,613017 -DE,PY,2,231,201912,175356 -DE,PY,2,232,201912,51389 -DE,PY,2,234,201912,16379 -DE,PY,2,239,201912,61417 -DE,PY,2,242,201912,3416 -DE,PY,2,244,201912,45160 -DE,PY,2,251,201912,8361 -DE,PY,2,252,201912,91182 -DE,PY,2,257,201912,62001 -DE,PY,2,259,201912,505124 -DE,PY,2,261,201912,8656 -DE,PY,2,262,201912,15377 -DE,PY,2,263,201912,190384 -DE,PY,2,264,201912,6892 -DE,PY,2,265,201912,122026 -DE,PY,2,266,201912,364371 -DE,PY,2,267,201912,15158 -DE,PY,2,271,201912,198817 -DE,PY,2,272,201912,24470 -DE,PY,2,273,201912,418105 -DE,PY,2,274,201912,65704 -DE,PY,2,275,201912,33166 -DE,PY,2,279,201912,160410 -DE,PY,2,281,201912,520973 -DE,PY,2,282,201912,855055 -DE,PY,2,283,201912,745510 -DE,PY,2,284,201912,13844 -DE,PY,2,289,201912,2434403 -DE,PY,2,291,201912,989140 -DE,PY,2,292,201912,6470 -DE,PY,2,293,201912,303782 -DE,PY,2,309,201912,4343 -DE,PY,2,310,201912,5336 -DE,PY,2,321,201912,200 -DE,PY,2,324,201912,4650 -DE,PY,2,325,201912,614622 -DE,PY,2,329,201912,111628 -DE,QA,1,141,201912,50 -DE,QA,1,192,201912,585578 -DE,QA,1,201,201912,3491131 -DE,QA,1,205,201912,247679 -DE,QA,1,211,201912,821 -DE,QA,1,212,201912,39 -DE,QA,1,222,201912,19620 -DE,QA,1,231,201912,210 -DE,QA,1,257,201912,1720 -DE,QA,1,259,201912,105764 -DE,QA,1,261,201912,579 -DE,QA,1,262,201912,1910 -DE,QA,1,263,201912,2068 -DE,QA,1,264,201912,1042 -DE,QA,1,265,201912,55054 -DE,QA,1,267,201912,16067 -DE,QA,1,271,201912,9393 -DE,QA,1,279,201912,2407 -DE,QA,1,281,201912,2278 -DE,QA,1,282,201912,36789 -DE,QA,1,289,201912,121240 -DE,QA,1,293,201912,116 -DE,QA,1,303,201912,6763 -DE,QA,1,325,201912,15604 -DE,QA,2,011,201912,46828 -DE,QA,2,012,201912,10174 -DE,QA,2,014,201912,7500 -DE,QA,2,089,201912,29068 -DE,QA,2,101,201912,3488 -DE,QA,2,103,201912,13867 -DE,QA,2,105,201912,146242 -DE,QA,2,106,201912,90581 -DE,QA,2,107,201912,248745 -DE,QA,2,108,201912,1250670 -DE,QA,2,109,201912,25867 -DE,QA,2,110,201912,135806 -DE,QA,2,120,201912,124677 -DE,QA,2,131,201912,16670 -DE,QA,2,132,201912,11013 -DE,QA,2,139,201912,278086 -DE,QA,2,141,201912,789751 -DE,QA,2,142,201912,1593 -DE,QA,2,143,201912,97645 -DE,QA,2,151,201912,547668 -DE,QA,2,152,201912,206445 -DE,QA,2,161,201912,147245 -DE,QA,2,162,201912,268167 -DE,QA,2,171,201912,58613 -DE,QA,2,172,201912,1307062 -DE,QA,2,192,201912,325066 -DE,QA,2,201,201912,1413387 -DE,QA,2,202,201912,3717 -DE,QA,2,203,201912,720087 -DE,QA,2,204,201912,1651476 -DE,QA,2,205,201912,8858323 -DE,QA,2,211,201912,78392 -DE,QA,2,212,201912,4247003 -DE,QA,2,221,201912,947067 -DE,QA,2,222,201912,2147531 -DE,QA,2,231,201912,312986 -DE,QA,2,232,201912,130173 -DE,QA,2,233,201912,82085 -DE,QA,2,234,201912,402877 -DE,QA,2,236,201912,141924 -DE,QA,2,237,201912,1251 -DE,QA,2,239,201912,225035 -DE,QA,2,241,201912,89005 -DE,QA,2,242,201912,531871 -DE,QA,2,243,201912,32459 -DE,QA,2,244,201912,9973305 -DE,QA,2,245,201912,261768 -DE,QA,2,251,201912,676325 -DE,QA,2,252,201912,80316 -DE,QA,2,257,201912,881569 -DE,QA,2,259,201912,1688133 -DE,QA,2,261,201912,102966 -DE,QA,2,262,201912,632117 -DE,QA,2,263,201912,1627905 -DE,QA,2,264,201912,208193 -DE,QA,2,265,201912,4492259 -DE,QA,2,266,201912,1478082 -DE,QA,2,267,201912,677035 -DE,QA,2,268,201912,13850 -DE,QA,2,271,201912,5973577 -DE,QA,2,272,201912,1956171 -DE,QA,2,273,201912,475563 -DE,QA,2,274,201912,828091 -DE,QA,2,275,201912,431552 -DE,QA,2,279,201912,1538804 -DE,QA,2,281,201912,10494730 -DE,QA,2,282,201912,9528382 -DE,QA,2,284,201912,623359 -DE,QA,2,289,201912,5632019 -DE,QA,2,291,201912,18326826 -DE,QA,2,292,201912,48330 -DE,QA,2,293,201912,2747776 -DE,QA,2,302,201912,312300 -DE,QA,2,303,201912,1633671 -DE,QA,2,309,201912,107715 -DE,QA,2,310,201912,375012 -DE,QA,2,321,201912,68693 -DE,QA,2,322,201912,16768 -DE,QA,2,323,201912,25161 -DE,QA,2,324,201912,2487 -DE,QA,2,325,201912,2288143 -DE,QA,2,329,201912,752263 -DE,QA,2,32S,201912,34 -DE,QS,2,011,201912,187281 -DE,QS,2,012,201912,149851 -DE,QS,2,013,201912,19622 -DE,QS,2,014,201912,38087 -DE,QS,2,021,201912,1334 -DE,QS,2,030,201912,4971 -DE,QS,2,089,201912,36728 -DE,QS,2,101,201912,1741674 -DE,QS,2,102,201912,889628 -DE,QS,2,103,201912,627842 -DE,QS,2,104,201912,112131 -DE,QS,2,105,201912,873769 -DE,QS,2,106,201912,160213 -DE,QS,2,107,201912,179972 -DE,QS,2,108,201912,1064983 -DE,QS,2,109,201912,31195 -DE,QS,2,110,201912,2189991 -DE,QS,2,120,201912,577835 -DE,QS,2,131,201912,362 -DE,QS,2,132,201912,2414 -DE,QS,2,139,201912,196520 -DE,QS,2,141,201912,194488 -DE,QS,2,143,201912,43710 -DE,QS,2,151,201912,32694 -DE,QS,2,152,201912,36080 -DE,QS,2,162,201912,9975 -DE,QS,2,171,201912,11453 -DE,QS,2,172,201912,56741 -DE,QS,2,192,201912,390722 -DE,QS,2,201,201912,59119 -DE,QS,2,202,201912,19578 -DE,QS,2,203,201912,74458 -DE,QS,2,204,201912,800203 -DE,QS,2,205,201912,301403 -DE,QS,2,211,201912,648 -DE,QS,2,212,201912,102173 -DE,QS,2,221,201912,219940 -DE,QS,2,222,201912,224678 -DE,QS,2,231,201912,296901 -DE,QS,2,234,201912,285088 -DE,QS,2,239,201912,14017 -DE,QS,2,241,201912,89262 -DE,QS,2,242,201912,200413 -DE,QS,2,243,201912,12 -DE,QS,2,244,201912,78775 -DE,QS,2,245,201912,67479 -DE,QS,2,251,201912,95275 -DE,QS,2,252,201912,4153 -DE,QS,2,257,201912,62360 -DE,QS,2,259,201912,913711 -DE,QS,2,261,201912,15046 -DE,QS,2,262,201912,18922 -DE,QS,2,263,201912,229687 -DE,QS,2,264,201912,338936 -DE,QS,2,265,201912,396457 -DE,QS,2,267,201912,13720 -DE,QS,2,268,201912,52627 -DE,QS,2,271,201912,486731 -DE,QS,2,272,201912,8799 -DE,QS,2,273,201912,84212 -DE,QS,2,274,201912,17121 -DE,QS,2,275,201912,16128 -DE,QS,2,279,201912,34823 -DE,QS,2,281,201912,2003318 -DE,QS,2,282,201912,1436504 -DE,QS,2,284,201912,926 -DE,QS,2,289,201912,651955 -DE,QS,2,292,201912,13951 -DE,QS,2,293,201912,20798 -DE,QS,2,301,201912,80042 -DE,QS,2,309,201912,1869 -DE,QS,2,310,201912,226123 -DE,QS,2,321,201912,110921 -DE,QS,2,323,201912,161182 -DE,QS,2,324,201912,17229 -DE,QS,2,325,201912,27637 -DE,QS,2,329,201912,31785 -DE,QV,2,011,201912,43622 -DE,QV,2,012,201912,26102 -DE,QV,2,014,201912,2702 -DE,QV,2,030,201912,3830 -DE,QV,2,089,201912,735 -DE,QV,2,101,201912,37791 -DE,QV,2,102,201912,141685 -DE,QV,2,103,201912,7124 -DE,QV,2,104,201912,1227 -DE,QV,2,105,201912,9938 -DE,QV,2,106,201912,2610 -DE,QV,2,107,201912,10085 -DE,QV,2,108,201912,50416 -DE,QV,2,110,201912,326782 -DE,QV,2,120,201912,481248 -DE,QV,2,139,201912,2684 -DE,QV,2,141,201912,92968 -DE,QV,2,151,201912,17985 -DE,QV,2,172,201912,974 -DE,QV,2,201,201912,21093 -DE,QV,2,203,201912,1143 -DE,QV,2,204,201912,118440 -DE,QV,2,205,201912,30531 -DE,QV,2,211,201912,13 -DE,QV,2,221,201912,6775 -DE,QV,2,222,201912,91622 -DE,QV,2,231,201912,5940 -DE,QV,2,239,201912,158 -DE,QV,2,257,201912,197 -DE,QV,2,259,201912,62094 -DE,QV,2,265,201912,91979 -DE,QV,2,274,201912,1284 -DE,QV,2,279,201912,190 -DE,QV,2,281,201912,1785359 -DE,QV,2,282,201912,25309 -DE,QV,2,284,201912,182 -DE,QV,2,301,201912,18263 -DE,QV,2,310,201912,69 -DE,QV,2,321,201912,38304 -DE,QV,2,324,201912,17763 -DE,QV,2,325,201912,143205 -DE,QV,2,329,201912,5256 -DE,QY,1,10S,201912,1349478 -DE,QY,1,25S,201912,202389 -DE,QY,2,10S,201912,2265384 -DE,QY,2,20S,201912,7030410 -DE,QZ,2,20S,201912,896977 -DE,RO,1,011,201912,13785878 -DE,RO,1,012,201912,386465 -DE,RO,1,013,201912,12 -DE,RO,1,014,201912,749478 -DE,RO,1,01M,201912,88521 -DE,RO,1,022,201912,47168 -DE,RO,1,081,201912,1197 -DE,RO,1,089,201912,5801 -DE,RO,1,101,201912,1289347 -DE,RO,1,102,201912,29618 -DE,RO,1,103,201912,680720 -DE,RO,1,104,201912,414876 -DE,RO,1,105,201912,86631 -DE,RO,1,106,201912,155618 -DE,RO,1,107,201912,1026201 -DE,RO,1,108,201912,2914404 -DE,RO,1,109,201912,40 -DE,RO,1,10M,201912,778942 -DE,RO,1,110,201912,490032 -DE,RO,1,120,201912,2233474 -DE,RO,1,131,201912,9811371 -DE,RO,1,132,201912,255536 -DE,RO,1,139,201912,5254850 -DE,RO,1,13M,201912,94635 -DE,RO,1,141,201912,19006999 -DE,RO,1,143,201912,1948874 -DE,RO,1,14M,201912,6536240 -DE,RO,1,151,201912,1692830 -DE,RO,1,152,201912,6077634 -DE,RO,1,161,201912,461496 -DE,RO,1,162,201912,4598792 -DE,RO,1,16M,201912,11002 -DE,RO,1,171,201912,99235 -DE,RO,1,172,201912,555789 -DE,RO,1,17M,201912,171553 -DE,RO,1,192,201912,6636765 -DE,RO,1,201,201912,4239074 -DE,RO,1,202,201912,380835 -DE,RO,1,203,201912,92396 -DE,RO,1,204,201912,3590082 -DE,RO,1,205,201912,3576445 -DE,RO,1,206,201912,1355119 -DE,RO,1,20M,201912,85431 -DE,RO,1,211,201912,645582 -DE,RO,1,212,201912,18143780 -DE,RO,1,221,201912,30100062 -DE,RO,1,222,201912,7691173 -DE,RO,1,231,201912,827971 -DE,RO,1,232,201912,8947 -DE,RO,1,234,201912,2994281 -DE,RO,1,236,201912,205848 -DE,RO,1,239,201912,274554 -DE,RO,1,23M,201912,222839 -DE,RO,1,241,201912,3233624 -DE,RO,1,242,201912,5794442 -DE,RO,1,243,201912,6111557 -DE,RO,1,244,201912,9043282 -DE,RO,1,245,201912,52089 -DE,RO,1,251,201912,3690560 -DE,RO,1,252,201912,569546 -DE,RO,1,253,201912,300 -DE,RO,1,254,201912,1713 -DE,RO,1,257,201912,10228730 -DE,RO,1,259,201912,9923523 -DE,RO,1,25M,201912,858738 -DE,RO,1,261,201912,3585959 -DE,RO,1,262,201912,3643800 -DE,RO,1,263,201912,10476327 -DE,RO,1,264,201912,1537807 -DE,RO,1,265,201912,40211941 -DE,RO,1,266,201912,416861 -DE,RO,1,267,201912,847721 -DE,RO,1,271,201912,108962075 -DE,RO,1,272,201912,7991619 -DE,RO,1,273,201912,22059548 -DE,RO,1,274,201912,14625630 -DE,RO,1,275,201912,9655404 -DE,RO,1,279,201912,23543576 -DE,RO,1,281,201912,74819384 -DE,RO,1,282,201912,22344866 -DE,RO,1,283,201912,823127 -DE,RO,1,284,201912,1234830 -DE,RO,1,289,201912,10057443 -DE,RO,1,291,201912,107467544 -DE,RO,1,292,201912,1406791 -DE,RO,1,293,201912,246013550 -DE,RO,1,302,201912,7791335 -DE,RO,1,303,201912,16360717 -DE,RO,1,309,201912,1164560 -DE,RO,1,310,201912,26095195 -DE,RO,1,321,201912,124 -DE,RO,1,322,201912,494456 -DE,RO,1,323,201912,142165 -DE,RO,1,324,201912,1874196 -DE,RO,1,325,201912,1916453 -DE,RO,1,329,201912,1356141 -DE,RO,1,32M,201912,46283 -DE,RO,2,011,201912,1423668 -DE,RO,2,012,201912,1489818 -DE,RO,2,013,201912,999462 -DE,RO,2,014,201912,1769912 -DE,RO,2,01M,201912,195988 -DE,RO,2,022,201912,12687 -DE,RO,2,023,201912,2305 -DE,RO,2,030,201912,5858 -DE,RO,2,052,201912,10900 -DE,RO,2,072,201912,14542 -DE,RO,2,081,201912,200116 -DE,RO,2,089,201912,197812 -DE,RO,2,101,201912,21271569 -DE,RO,2,102,201912,1983422 -DE,RO,2,103,201912,6932182 -DE,RO,2,104,201912,572564 -DE,RO,2,105,201912,14039588 -DE,RO,2,106,201912,1504642 -DE,RO,2,107,201912,4176319 -DE,RO,2,108,201912,33429821 -DE,RO,2,109,201912,1697346 -DE,RO,2,10M,201912,1532743 -DE,RO,2,110,201912,3596726 -DE,RO,2,120,201912,7199899 -DE,RO,2,131,201912,6335767 -DE,RO,2,132,201912,9079257 -DE,RO,2,139,201912,11402049 -DE,RO,2,13M,201912,381418 -DE,RO,2,141,201912,12691014 -DE,RO,2,142,201912,10964 -DE,RO,2,143,201912,2359513 -DE,RO,2,14M,201912,360072 -DE,RO,2,151,201912,2915736 -DE,RO,2,152,201912,3376093 -DE,RO,2,161,201912,978590 -DE,RO,2,162,201912,3730800 -DE,RO,2,16M,201912,9130 -DE,RO,2,171,201912,8091399 -DE,RO,2,172,201912,6097766 -DE,RO,2,17M,201912,472583 -DE,RO,2,181,201912,27089 -DE,RO,2,192,201912,2962755 -DE,RO,2,201,201912,24769109 -DE,RO,2,202,201912,808495 -DE,RO,2,203,201912,3853501 -DE,RO,2,204,201912,9327157 -DE,RO,2,205,201912,25161249 -DE,RO,2,206,201912,333208 -DE,RO,2,20M,201912,547298 -DE,RO,2,20S,201912,1160099 -DE,RO,2,211,201912,939861 -DE,RO,2,212,201912,65302596 -DE,RO,2,221,201912,12617365 -DE,RO,2,222,201912,34856444 -DE,RO,2,231,201912,2022746 -DE,RO,2,232,201912,299086 -DE,RO,2,233,201912,349427 -DE,RO,2,234,201912,1552335 -DE,RO,2,235,201912,140565 -DE,RO,2,236,201912,441497 -DE,RO,2,237,201912,6698 -DE,RO,2,239,201912,3423622 -DE,RO,2,23M,201912,265221 -DE,RO,2,241,201912,11055112 -DE,RO,2,242,201912,3369247 -DE,RO,2,243,201912,3191697 -DE,RO,2,244,201912,21812961 -DE,RO,2,245,201912,10680 -DE,RO,2,251,201912,3024394 -DE,RO,2,252,201912,2055986 -DE,RO,2,253,201912,84469 -DE,RO,2,254,201912,189252 -DE,RO,2,257,201912,13872519 -DE,RO,2,259,201912,28309698 -DE,RO,2,25M,201912,836517 -DE,RO,2,261,201912,56665151 -DE,RO,2,262,201912,15470720 -DE,RO,2,263,201912,13369540 -DE,RO,2,264,201912,3335896 -DE,RO,2,265,201912,35435202 -DE,RO,2,266,201912,5176659 -DE,RO,2,267,201912,4663245 -DE,RO,2,268,201912,52616 -DE,RO,2,271,201912,56966698 -DE,RO,2,272,201912,4514679 -DE,RO,2,273,201912,39721400 -DE,RO,2,274,201912,3015258 -DE,RO,2,275,201912,5602412 -DE,RO,2,279,201912,35254170 -DE,RO,2,281,201912,52090314 -DE,RO,2,282,201912,46205020 -DE,RO,2,283,201912,11309478 -DE,RO,2,284,201912,28396602 -DE,RO,2,289,201912,50626538 -DE,RO,2,291,201912,95360019 -DE,RO,2,292,201912,4826144 -DE,RO,2,293,201912,62124803 -DE,RO,2,301,201912,47 -DE,RO,2,302,201912,919416 -DE,RO,2,303,201912,4670022 -DE,RO,2,309,201912,1344662 -DE,RO,2,30M,201912,1778 -DE,RO,2,310,201912,6716312 -DE,RO,2,321,201912,1774279 -DE,RO,2,322,201912,1056312 -DE,RO,2,323,201912,390307 -DE,RO,2,324,201912,424802 -DE,RO,2,325,201912,12260485 -DE,RO,2,329,201912,3492817 -DE,RO,2,32M,201912,30154 -DE,RO,2,32S,201912,2545 -DE,RU,1,011,201912,4003326 -DE,RU,1,012,201912,1164501 -DE,RU,1,014,201912,63099 -DE,RU,1,022,201912,86169 -DE,RU,1,051,201912,59908511 -DE,RU,1,061,201912,899120915 -DE,RU,1,071,201912,4101973 -DE,RU,1,081,201912,53669 -DE,RU,1,089,201912,1049303 -DE,RU,1,101,201912,895021 -DE,RU,1,102,201912,4852910 -DE,RU,1,103,201912,1410478 -DE,RU,1,104,201912,3682482 -DE,RU,1,105,201912,30127 -DE,RU,1,106,201912,106294 -DE,RU,1,107,201912,409360 -DE,RU,1,108,201912,1729074 -DE,RU,1,109,201912,187962 -DE,RU,1,110,201912,2931981 -DE,RU,1,120,201912,654855 -DE,RU,1,131,201912,13048 -DE,RU,1,132,201912,155427 -DE,RU,1,139,201912,648495 -DE,RU,1,141,201912,151524 -DE,RU,1,143,201912,11628 -DE,RU,1,151,201912,31042 -DE,RU,1,152,201912,23150 -DE,RU,1,161,201912,10703231 -DE,RU,1,162,201912,8167578 -DE,RU,1,171,201912,5934032 -DE,RU,1,172,201912,641661 -DE,RU,1,181,201912,87362 -DE,RU,1,192,201912,285493097 -DE,RU,1,201,201912,55800340 -DE,RU,1,203,201912,21435 -DE,RU,1,204,201912,338172 -DE,RU,1,205,201912,8835586 -DE,RU,1,211,201912,98809 -DE,RU,1,212,201912,40657 -DE,RU,1,221,201912,7671239 -DE,RU,1,222,201912,758353 -DE,RU,1,231,201912,2364557 -DE,RU,1,233,201912,50032 -DE,RU,1,234,201912,52427 -DE,RU,1,236,201912,285865 -DE,RU,1,237,201912,5603 -DE,RU,1,239,201912,975195 -DE,RU,1,241,201912,7706914 -DE,RU,1,242,201912,692338 -DE,RU,1,243,201912,5684724 -DE,RU,1,244,201912,121822365 -DE,RU,1,245,201912,14390 -DE,RU,1,251,201912,642860 -DE,RU,1,252,201912,78125 -DE,RU,1,254,201912,7295 -DE,RU,1,257,201912,1499272 -DE,RU,1,259,201912,1747575 -DE,RU,1,261,201912,639947 -DE,RU,1,262,201912,423658 -DE,RU,1,263,201912,107724 -DE,RU,1,264,201912,86256 -DE,RU,1,265,201912,3199475 -DE,RU,1,266,201912,301432 -DE,RU,1,267,201912,2493883 -DE,RU,1,268,201912,393 -DE,RU,1,271,201912,1033757 -DE,RU,1,272,201912,546 -DE,RU,1,273,201912,756814 -DE,RU,1,274,201912,148435 -DE,RU,1,275,201912,783184 -DE,RU,1,279,201912,3000733 -DE,RU,1,281,201912,4902726 -DE,RU,1,282,201912,4123750 -DE,RU,1,283,201912,629475 -DE,RU,1,284,201912,131577 -DE,RU,1,289,201912,1522357 -DE,RU,1,291,201912,1299498 -DE,RU,1,292,201912,228757 -DE,RU,1,293,201912,1883821 -DE,RU,1,301,201912,15582 -DE,RU,1,302,201912,113247 -DE,RU,1,303,201912,30759764 -DE,RU,1,310,201912,1700321 -DE,RU,1,321,201912,924872 -DE,RU,1,322,201912,54684 -DE,RU,1,323,201912,130336 -DE,RU,1,324,201912,47425 -DE,RU,1,325,201912,209651 -DE,RU,1,329,201912,156976 -DE,RU,2,011,201912,6741344 -DE,RU,2,012,201912,1693230 -DE,RU,2,014,201912,10147414 -DE,RU,2,023,201912,75636 -DE,RU,2,030,201912,3817 -DE,RU,2,072,201912,69500 -DE,RU,2,081,201912,237783 -DE,RU,2,089,201912,439272 -DE,RU,2,101,201912,344264 -DE,RU,2,102,201912,21119 -DE,RU,2,103,201912,2116477 -DE,RU,2,104,201912,658466 -DE,RU,2,105,201912,178332 -DE,RU,2,106,201912,2297269 -DE,RU,2,107,201912,4162205 -DE,RU,2,108,201912,36382391 -DE,RU,2,109,201912,4068045 -DE,RU,2,110,201912,7195597 -DE,RU,2,120,201912,1528995 -DE,RU,2,131,201912,864810 -DE,RU,2,132,201912,1592470 -DE,RU,2,139,201912,6708030 -DE,RU,2,141,201912,22052750 -DE,RU,2,142,201912,163253 -DE,RU,2,143,201912,4946229 -DE,RU,2,151,201912,2943552 -DE,RU,2,152,201912,4289214 -DE,RU,2,161,201912,150048 -DE,RU,2,162,201912,3799685 -DE,RU,2,171,201912,16493313 -DE,RU,2,172,201912,10039589 -DE,RU,2,17S,201912,3580 -DE,RU,2,181,201912,531188 -DE,RU,2,192,201912,5644084 -DE,RU,2,201,201912,57157629 -DE,RU,2,202,201912,1763273 -DE,RU,2,203,201912,12679375 -DE,RU,2,204,201912,33307549 -DE,RU,2,205,201912,53617950 -DE,RU,2,206,201912,253050 -DE,RU,2,20S,201912,10895 -DE,RU,2,211,201912,5799473 -DE,RU,2,212,201912,77589306 -DE,RU,2,221,201912,22467974 -DE,RU,2,222,201912,39516837 -DE,RU,2,231,201912,4931088 -DE,RU,2,232,201912,2713756 -DE,RU,2,233,201912,1040277 -DE,RU,2,234,201912,2317807 -DE,RU,2,235,201912,78933 -DE,RU,2,236,201912,935220 -DE,RU,2,237,201912,631152 -DE,RU,2,239,201912,5039016 -DE,RU,2,241,201912,5933696 -DE,RU,2,242,201912,4408094 -DE,RU,2,243,201912,2467341 -DE,RU,2,244,201912,15069488 -DE,RU,2,245,201912,237123 -DE,RU,2,251,201912,6609500 -DE,RU,2,252,201912,5151231 -DE,RU,2,253,201912,1394604 -DE,RU,2,254,201912,329577 -DE,RU,2,257,201912,25496717 -DE,RU,2,259,201912,20280679 -DE,RU,2,261,201912,10323533 -DE,RU,2,262,201912,24718558 -DE,RU,2,263,201912,16752542 -DE,RU,2,264,201912,6257891 -DE,RU,2,265,201912,79600800 -DE,RU,2,266,201912,19895372 -DE,RU,2,267,201912,9674045 -DE,RU,2,268,201912,23919 -DE,RU,2,271,201912,67599307 -DE,RU,2,272,201912,12190014 -DE,RU,2,273,201912,14675422 -DE,RU,2,274,201912,10261158 -DE,RU,2,275,201912,23925576 -DE,RU,2,279,201912,21278243 -DE,RU,2,281,201912,128984267 -DE,RU,2,282,201912,135274044 -DE,RU,2,283,201912,20640624 -DE,RU,2,284,201912,26025416 -DE,RU,2,289,201912,110536729 -DE,RU,2,291,201912,100865295 -DE,RU,2,292,201912,21547905 -DE,RU,2,293,201912,77203530 -DE,RU,2,301,201912,867938 -DE,RU,2,302,201912,4988466 -DE,RU,2,303,201912,87125666 -DE,RU,2,309,201912,1354448 -DE,RU,2,310,201912,8174089 -DE,RU,2,321,201912,1429782 -DE,RU,2,322,201912,1035433 -DE,RU,2,323,201912,901016 -DE,RU,2,324,201912,1621663 -DE,RU,2,325,201912,56767493 -DE,RU,2,329,201912,4355261 -DE,RU,2,32S,201912,10290 -DE,RW,1,012,201912,303884 -DE,RW,1,108,201912,32258 -DE,RW,1,265,201912,918 -DE,RW,2,089,201912,441 -DE,RW,2,108,201912,39871 -DE,RW,2,110,201912,4886 -DE,RW,2,139,201912,1923 -DE,RW,2,172,201912,13477 -DE,RW,2,201,201912,74817 -DE,RW,2,203,201912,300 -DE,RW,2,204,201912,10861 -DE,RW,2,205,201912,244360 -DE,RW,2,211,201912,26990 -DE,RW,2,212,201912,399212 -DE,RW,2,221,201912,10773 -DE,RW,2,222,201912,14550 -DE,RW,2,239,201912,67907 -DE,RW,2,251,201912,6165 -DE,RW,2,252,201912,14146 -DE,RW,2,257,201912,5650 -DE,RW,2,259,201912,13020 -DE,RW,2,261,201912,2744 -DE,RW,2,262,201912,29692 -DE,RW,2,263,201912,809 -DE,RW,2,264,201912,4094 -DE,RW,2,265,201912,792944 -DE,RW,2,267,201912,12290 -DE,RW,2,271,201912,13588 -DE,RW,2,272,201912,10974 -DE,RW,2,273,201912,2747 -DE,RW,2,274,201912,25014 -DE,RW,2,275,201912,330144 -DE,RW,2,279,201912,18268 -DE,RW,2,281,201912,162226 -DE,RW,2,282,201912,271715 -DE,RW,2,289,201912,118696 -DE,RW,2,291,201912,430715 -DE,RW,2,293,201912,3315 -DE,RW,2,303,201912,661882 -DE,RW,2,310,201912,14596 -DE,RW,2,325,201912,101656 -DE,RW,2,329,201912,7811 -DE,SA,1,012,201912,48821 -DE,SA,1,014,201912,673 -DE,SA,1,061,201912,20197366 -DE,SA,1,107,201912,9 -DE,SA,1,108,201912,350 -DE,SA,1,110,201912,17 -DE,SA,1,139,201912,1270751 -DE,SA,1,141,201912,7073 -DE,SA,1,143,201912,2291 -DE,SA,1,151,201912,261 -DE,SA,1,152,201912,9010 -DE,SA,1,172,201912,317 -DE,SA,1,201,201912,3667298 -DE,SA,1,204,201912,2235 -DE,SA,1,205,201912,636537 -DE,SA,1,206,201912,197161 -DE,SA,1,211,201912,10527 -DE,SA,1,212,201912,2896 -DE,SA,1,221,201912,225 -DE,SA,1,222,201912,26431 -DE,SA,1,231,201912,51917 -DE,SA,1,244,201912,582 -DE,SA,1,257,201912,221275 -DE,SA,1,259,201912,217569 -DE,SA,1,261,201912,2278 -DE,SA,1,262,201912,15736 -DE,SA,1,263,201912,3229 -DE,SA,1,264,201912,32557 -DE,SA,1,265,201912,125211 -DE,SA,1,266,201912,28354 -DE,SA,1,267,201912,21662 -DE,SA,1,271,201912,47879 -DE,SA,1,273,201912,624 -DE,SA,1,274,201912,2031 -DE,SA,1,279,201912,45899 -DE,SA,1,281,201912,55731 -DE,SA,1,282,201912,49570 -DE,SA,1,289,201912,48651 -DE,SA,1,291,201912,22255 -DE,SA,1,293,201912,735 -DE,SA,1,303,201912,9186 -DE,SA,1,309,201912,81 -DE,SA,1,321,201912,627 -DE,SA,1,325,201912,168212 -DE,SA,1,329,201912,2287 -DE,SA,2,011,201912,1122353 -DE,SA,2,014,201912,1199238 -DE,SA,2,081,201912,330585 -DE,SA,2,089,201912,169071 -DE,SA,2,101,201912,130 -DE,SA,2,103,201912,1366447 -DE,SA,2,104,201912,169051 -DE,SA,2,105,201912,7571115 -DE,SA,2,106,201912,639435 -DE,SA,2,107,201912,910341 -DE,SA,2,108,201912,11192276 -DE,SA,2,109,201912,263434 -DE,SA,2,110,201912,101824 -DE,SA,2,120,201912,7819876 -DE,SA,2,132,201912,56075 -DE,SA,2,139,201912,1805770 -DE,SA,2,141,201912,1214956 -DE,SA,2,142,201912,3521 -DE,SA,2,143,201912,262096 -DE,SA,2,151,201912,289751 -DE,SA,2,152,201912,272200 -DE,SA,2,161,201912,1514256 -DE,SA,2,162,201912,1658664 -DE,SA,2,171,201912,2471801 -DE,SA,2,172,201912,641262 -DE,SA,2,181,201912,5160 -DE,SA,2,192,201912,574402 -DE,SA,2,201,201912,17256174 -DE,SA,2,202,201912,109135 -DE,SA,2,203,201912,2840283 -DE,SA,2,204,201912,12516897 -DE,SA,2,205,201912,23878001 -DE,SA,2,20S,201912,251 -DE,SA,2,211,201912,1626184 -DE,SA,2,212,201912,56048769 -DE,SA,2,221,201912,2045038 -DE,SA,2,222,201912,6925084 -DE,SA,2,231,201912,1001374 -DE,SA,2,232,201912,1191116 -DE,SA,2,233,201912,6825 -DE,SA,2,234,201912,3342407 -DE,SA,2,236,201912,217691 -DE,SA,2,237,201912,4952 -DE,SA,2,239,201912,631375 -DE,SA,2,241,201912,1791718 -DE,SA,2,242,201912,6165300 -DE,SA,2,243,201912,95653 -DE,SA,2,244,201912,3866628 -DE,SA,2,245,201912,4012 -DE,SA,2,251,201912,2825782 -DE,SA,2,252,201912,233343 -DE,SA,2,253,201912,107867 -DE,SA,2,257,201912,4017025 -DE,SA,2,259,201912,5180048 -DE,SA,2,261,201912,451155 -DE,SA,2,262,201912,4213700 -DE,SA,2,263,201912,6418870 -DE,SA,2,264,201912,1573131 -DE,SA,2,265,201912,20671559 -DE,SA,2,266,201912,6076161 -DE,SA,2,267,201912,9161411 -DE,SA,2,268,201912,100724 -DE,SA,2,271,201912,14767367 -DE,SA,2,272,201912,859231 -DE,SA,2,273,201912,1338393 -DE,SA,2,274,201912,1847628 -DE,SA,2,275,201912,1927627 -DE,SA,2,279,201912,4733115 -DE,SA,2,281,201912,39173776 -DE,SA,2,282,201912,44989232 -DE,SA,2,283,201912,1591825 -DE,SA,2,284,201912,2201774 -DE,SA,2,289,201912,19673617 -DE,SA,2,291,201912,101164273 -DE,SA,2,292,201912,1112744 -DE,SA,2,293,201912,3792477 -DE,SA,2,301,201912,44369 -DE,SA,2,302,201912,12612437 -DE,SA,2,303,201912,4693286 -DE,SA,2,309,201912,252388 -DE,SA,2,310,201912,3992675 -DE,SA,2,321,201912,421571 -DE,SA,2,322,201912,27381 -DE,SA,2,323,201912,139814 -DE,SA,2,324,201912,11305 -DE,SA,2,325,201912,23255695 -DE,SA,2,329,201912,2482455 -DE,SA,2,32S,201912,1657 -DE,SB,1,014,201912,4458 -DE,SB,2,281,201912,2185 -DE,SB,2,289,201912,6616 -DE,SB,2,325,201912,2318 -DE,SC,2,103,201912,2208 -DE,SC,2,105,201912,46211 -DE,SC,2,107,201912,2248 -DE,SC,2,108,201912,17436 -DE,SC,2,139,201912,7198 -DE,SC,2,151,201912,182 -DE,SC,2,162,201912,680 -DE,SC,2,172,201912,192 -DE,SC,2,201,201912,376 -DE,SC,2,203,201912,4682 -DE,SC,2,204,201912,13274 -DE,SC,2,205,201912,10730 -DE,SC,2,221,201912,504 -DE,SC,2,222,201912,108409 -DE,SC,2,231,201912,10151 -DE,SC,2,234,201912,1123 -DE,SC,2,244,201912,7442 -DE,SC,2,257,201912,11554 -DE,SC,2,259,201912,2595 -DE,SC,2,261,201912,28257 -DE,SC,2,262,201912,494 -DE,SC,2,263,201912,49026 -DE,SC,2,264,201912,463 -DE,SC,2,265,201912,33164 -DE,SC,2,267,201912,14020 -DE,SC,2,271,201912,588 -DE,SC,2,273,201912,6318 -DE,SC,2,275,201912,32132 -DE,SC,2,279,201912,16704 -DE,SC,2,281,201912,6402 -DE,SC,2,282,201912,241142 -DE,SC,2,284,201912,5324 -DE,SC,2,289,201912,78178 -DE,SC,2,303,201912,379786 -DE,SC,2,310,201912,10432 -DE,SC,2,322,201912,2426 -DE,SC,2,325,201912,34723 -DE,SC,2,329,201912,15904 -DE,SD,1,023,201912,121931 -DE,SD,1,211,201912,44 -DE,SD,2,108,201912,75130 -DE,SD,2,109,201912,205706 -DE,SD,2,139,201912,13865 -DE,SD,2,151,201912,1281 -DE,SD,2,171,201912,967433 -DE,SD,2,172,201912,307 -DE,SD,2,181,201912,211614 -DE,SD,2,192,201912,92500 -DE,SD,2,201,201912,396112 -DE,SD,2,202,201912,39600 -DE,SD,2,203,201912,16094 -DE,SD,2,204,201912,129867 -DE,SD,2,205,201912,202270 -DE,SD,2,211,201912,79551 -DE,SD,2,212,201912,308015 -DE,SD,2,221,201912,53160 -DE,SD,2,222,201912,1826510 -DE,SD,2,231,201912,19942 -DE,SD,2,234,201912,23500 -DE,SD,2,239,201912,1098 -DE,SD,2,242,201912,20608 -DE,SD,2,244,201912,41 -DE,SD,2,257,201912,15402 -DE,SD,2,259,201912,28342 -DE,SD,2,261,201912,106241 -DE,SD,2,262,201912,14307 -DE,SD,2,263,201912,58040 -DE,SD,2,265,201912,276944 -DE,SD,2,266,201912,18868 -DE,SD,2,267,201912,226385 -DE,SD,2,271,201912,19529 -DE,SD,2,272,201912,14654 -DE,SD,2,273,201912,16972 -DE,SD,2,274,201912,28150 -DE,SD,2,275,201912,5962 -DE,SD,2,279,201912,8126 -DE,SD,2,281,201912,335787 -DE,SD,2,282,201912,518685 -DE,SD,2,283,201912,813988 -DE,SD,2,289,201912,263238 -DE,SD,2,291,201912,87090 -DE,SD,2,292,201912,286215 -DE,SD,2,293,201912,114487 -DE,SD,2,309,201912,4422 -DE,SD,2,310,201912,7282 -DE,SD,2,325,201912,488602 -DE,SD,2,329,201912,18681 -DE,SE,1,011,201912,6654593 -DE,SE,1,012,201912,519762 -DE,SE,1,014,201912,431260 -DE,SE,1,01M,201912,7793 -DE,SE,1,022,201912,186554 -DE,SE,1,023,201912,210 -DE,SE,1,030,201912,15682417 -DE,SE,1,071,201912,17878976 -DE,SE,1,072,201912,14021001 -DE,SE,1,081,201912,21353 -DE,SE,1,089,201912,157945 -DE,SE,1,101,201912,2296661 -DE,SE,1,102,201912,5523122 -DE,SE,1,103,201912,2662008 -DE,SE,1,104,201912,1764011 -DE,SE,1,105,201912,1693132 -DE,SE,1,106,201912,1331307 -DE,SE,1,107,201912,5882104 -DE,SE,1,108,201912,6021236 -DE,SE,1,109,201912,811691 -DE,SE,1,10M,201912,1452232 -DE,SE,1,110,201912,6120089 -DE,SE,1,120,201912,162252 -DE,SE,1,131,201912,12648 -DE,SE,1,132,201912,347463 -DE,SE,1,139,201912,5158295 -DE,SE,1,13M,201912,50069 -DE,SE,1,141,201912,10730784 -DE,SE,1,142,201912,2058 -DE,SE,1,143,201912,1473042 -DE,SE,1,14M,201912,1383887 -DE,SE,1,151,201912,764712 -DE,SE,1,152,201912,2743748 -DE,SE,1,161,201912,9021752 -DE,SE,1,162,201912,2465847 -DE,SE,1,16M,201912,2086 -DE,SE,1,171,201912,140085309 -DE,SE,1,172,201912,12930481 -DE,SE,1,17M,201912,13016910 -DE,SE,1,181,201912,118 -DE,SE,1,192,201912,12777512 -DE,SE,1,201,201912,41097612 -DE,SE,1,202,201912,87325 -DE,SE,1,203,201912,1857848 -DE,SE,1,204,201912,4012844 -DE,SE,1,205,201912,8893731 -DE,SE,1,206,201912,88838 -DE,SE,1,20M,201912,377219 -DE,SE,1,211,201912,24311861 -DE,SE,1,212,201912,81837592 -DE,SE,1,221,201912,3205205 -DE,SE,1,222,201912,11512250 -DE,SE,1,231,201912,1663182 -DE,SE,1,232,201912,295605 -DE,SE,1,233,201912,5415 -DE,SE,1,234,201912,696364 -DE,SE,1,235,201912,24017 -DE,SE,1,236,201912,97694 -DE,SE,1,237,201912,392 -DE,SE,1,239,201912,1029465 -DE,SE,1,23M,201912,256534 -DE,SE,1,241,201912,54064599 -DE,SE,1,242,201912,3982865 -DE,SE,1,243,201912,12095524 -DE,SE,1,244,201912,41901269 -DE,SE,1,245,201912,19332 -DE,SE,1,251,201912,6150860 -DE,SE,1,252,201912,586867 -DE,SE,1,254,201912,157406 -DE,SE,1,257,201912,7908304 -DE,SE,1,259,201912,7604672 -DE,SE,1,25M,201912,606342 -DE,SE,1,261,201912,2821355 -DE,SE,1,262,201912,4008099 -DE,SE,1,263,201912,24577326 -DE,SE,1,264,201912,6926530 -DE,SE,1,265,201912,13009875 -DE,SE,1,266,201912,961018 -DE,SE,1,267,201912,4655472 -DE,SE,1,268,201912,2064 -DE,SE,1,271,201912,7687683 -DE,SE,1,272,201912,1523666 -DE,SE,1,273,201912,4171734 -DE,SE,1,274,201912,1750453 -DE,SE,1,275,201912,3069791 -DE,SE,1,279,201912,13206287 -DE,SE,1,281,201912,20733504 -DE,SE,1,282,201912,50770626 -DE,SE,1,283,201912,9070979 -DE,SE,1,284,201912,4791961 -DE,SE,1,289,201912,44930812 -DE,SE,1,291,201912,141645983 -DE,SE,1,292,201912,2220023 -DE,SE,1,293,201912,16974334 -DE,SE,1,301,201912,520169 -DE,SE,1,302,201912,2115706 -DE,SE,1,303,201912,6434208 -DE,SE,1,309,201912,1534190 -DE,SE,1,30M,201912,237527 -DE,SE,1,310,201912,20305606 -DE,SE,1,321,201912,349834 -DE,SE,1,322,201912,1256093 -DE,SE,1,323,201912,1032128 -DE,SE,1,324,201912,246045 -DE,SE,1,325,201912,10293601 -DE,SE,1,329,201912,2688828 -DE,SE,1,32M,201912,80351 -DE,SE,1,351,201912,4542775 -DE,SE,2,011,201912,1720974 -DE,SE,2,012,201912,5137184 -DE,SE,2,013,201912,1071812 -DE,SE,2,014,201912,1640787 -DE,SE,2,01M,201912,51659 -DE,SE,2,021,201912,519358 -DE,SE,2,022,201912,427511 -DE,SE,2,023,201912,23977 -DE,SE,2,030,201912,20914 -DE,SE,2,051,201912,94630 -DE,SE,2,072,201912,1294567 -DE,SE,2,081,201912,368942 -DE,SE,2,089,201912,2467369 -DE,SE,2,101,201912,21691539 -DE,SE,2,102,201912,3843007 -DE,SE,2,103,201912,9890344 -DE,SE,2,104,201912,3737701 -DE,SE,2,105,201912,10210646 -DE,SE,2,106,201912,5038515 -DE,SE,2,107,201912,7432114 -DE,SE,2,108,201912,26230449 -DE,SE,2,109,201912,2193396 -DE,SE,2,10M,201912,2381833 -DE,SE,2,110,201912,10306362 -DE,SE,2,120,201912,961632 -DE,SE,2,131,201912,1020302 -DE,SE,2,132,201912,698142 -DE,SE,2,139,201912,13904717 -DE,SE,2,13M,201912,135250 -DE,SE,2,141,201912,27862640 -DE,SE,2,142,201912,16634 -DE,SE,2,143,201912,6442977 -DE,SE,2,14M,201912,1237546 -DE,SE,2,151,201912,2743145 -DE,SE,2,152,201912,15133659 -DE,SE,2,161,201912,727565 -DE,SE,2,162,201912,7753921 -DE,SE,2,16M,201912,3289 -DE,SE,2,171,201912,7653925 -DE,SE,2,172,201912,11688028 -DE,SE,2,17M,201912,754490 -DE,SE,2,17S,201912,43939 -DE,SE,2,181,201912,267353 -DE,SE,2,192,201912,7995433 -DE,SE,2,201,201912,87303193 -DE,SE,2,202,201912,1424779 -DE,SE,2,203,201912,5715293 -DE,SE,2,204,201912,13616867 -DE,SE,2,205,201912,31468343 -DE,SE,2,206,201912,663746 -DE,SE,2,20M,201912,818156 -DE,SE,2,20S,201912,2674341 -DE,SE,2,211,201912,4828950 -DE,SE,2,212,201912,49610146 -DE,SE,2,221,201912,13605188 -DE,SE,2,222,201912,38455730 -DE,SE,2,231,201912,8021654 -DE,SE,2,232,201912,601653 -DE,SE,2,233,201912,803321 -DE,SE,2,234,201912,2501832 -DE,SE,2,235,201912,753538 -DE,SE,2,236,201912,2436423 -DE,SE,2,237,201912,75996 -DE,SE,2,239,201912,3910544 -DE,SE,2,23M,201912,720835 -DE,SE,2,241,201912,29474128 -DE,SE,2,242,201912,5498217 -DE,SE,2,243,201912,7842641 -DE,SE,2,244,201912,21432998 -DE,SE,2,245,201912,398317 -DE,SE,2,251,201912,8633000 -DE,SE,2,252,201912,2674544 -DE,SE,2,253,201912,613599 -DE,SE,2,254,201912,699183 -DE,SE,2,257,201912,18796550 -DE,SE,2,259,201912,23927787 -DE,SE,2,25M,201912,1222437 -DE,SE,2,261,201912,12631636 -DE,SE,2,262,201912,48370940 -DE,SE,2,263,201912,67573647 -DE,SE,2,264,201912,9054374 -DE,SE,2,265,201912,36945037 -DE,SE,2,266,201912,6802121 -DE,SE,2,267,201912,9959198 -DE,SE,2,268,201912,110814 -DE,SE,2,271,201912,31342715 -DE,SE,2,272,201912,8591000 -DE,SE,2,273,201912,15097227 -DE,SE,2,274,201912,10953236 -DE,SE,2,275,201912,23214389 -DE,SE,2,279,201912,21712883 -DE,SE,2,281,201912,106271446 -DE,SE,2,282,201912,74107687 -DE,SE,2,283,201912,11476436 -DE,SE,2,284,201912,17357942 -DE,SE,2,289,201912,54521271 -DE,SE,2,291,201912,217456460 -DE,SE,2,292,201912,8220654 -DE,SE,2,293,201912,84214157 -DE,SE,2,301,201912,240650 -DE,SE,2,302,201912,3008440 -DE,SE,2,303,201912,128319272 -DE,SE,2,309,201912,2821330 -DE,SE,2,30M,201912,27353 -DE,SE,2,310,201912,12380000 -DE,SE,2,321,201912,1572150 -DE,SE,2,322,201912,2264401 -DE,SE,2,323,201912,2051099 -DE,SE,2,324,201912,4089314 -DE,SE,2,325,201912,26968640 -DE,SE,2,329,201912,4178417 -DE,SE,2,32M,201912,66490 -DE,SE,2,32S,201912,4245 -DE,SE,2,351,201912,2397038 -DE,SG,1,012,201912,64521 -DE,SG,1,013,201912,80632 -DE,SG,1,014,201912,67410 -DE,SG,1,030,201912,178565 -DE,SG,1,104,201912,277075 -DE,SG,1,107,201912,47765 -DE,SG,1,108,201912,123311 -DE,SG,1,109,201912,333 -DE,SG,1,110,201912,5984 -DE,SG,1,131,201912,313647 -DE,SG,1,139,201912,6627 -DE,SG,1,141,201912,22344 -DE,SG,1,143,201912,3545 -DE,SG,1,151,201912,1792315 -DE,SG,1,152,201912,968 -DE,SG,1,162,201912,5284 -DE,SG,1,172,201912,90946 -DE,SG,1,192,201912,10 -DE,SG,1,201,201912,6505600 -DE,SG,1,203,201912,435011 -DE,SG,1,204,201912,2944 -DE,SG,1,205,201912,16619594 -DE,SG,1,211,201912,3369342 -DE,SG,1,212,201912,159475048 -DE,SG,1,221,201912,285304 -DE,SG,1,222,201912,2775976 -DE,SG,1,231,201912,51035 -DE,SG,1,234,201912,6749 -DE,SG,1,239,201912,68564 -DE,SG,1,242,201912,153359 -DE,SG,1,243,201912,25106 -DE,SG,1,244,201912,489499 -DE,SG,1,251,201912,324051 -DE,SG,1,254,201912,502 -DE,SG,1,257,201912,3477328 -DE,SG,1,259,201912,263143 -DE,SG,1,261,201912,10651050 -DE,SG,1,262,201912,2717483 -DE,SG,1,263,201912,407927 -DE,SG,1,264,201912,220310 -DE,SG,1,265,201912,19041513 -DE,SG,1,266,201912,5508244 -DE,SG,1,267,201912,14748743 -DE,SG,1,268,201912,457908 -DE,SG,1,271,201912,1417897 -DE,SG,1,272,201912,1415548 -DE,SG,1,273,201912,1833216 -DE,SG,1,274,201912,24963 -DE,SG,1,275,201912,15674 -DE,SG,1,279,201912,3654561 -DE,SG,1,281,201912,1939783 -DE,SG,1,282,201912,5028822 -DE,SG,1,284,201912,1045477 -DE,SG,1,289,201912,7864123 -DE,SG,1,291,201912,2975 -DE,SG,1,292,201912,42034 -DE,SG,1,293,201912,21558 -DE,SG,1,303,201912,5142220 -DE,SG,1,309,201912,9057 -DE,SG,1,310,201912,15004 -DE,SG,1,321,201912,100256 -DE,SG,1,322,201912,5633 -DE,SG,1,323,201912,308 -DE,SG,1,324,201912,3027 -DE,SG,1,325,201912,10457968 -DE,SG,1,329,201912,21537 -DE,SG,2,011,201912,19716 -DE,SG,2,012,201912,117611 -DE,SG,2,014,201912,3077 -DE,SG,2,023,201912,16604 -DE,SG,2,030,201912,242 -DE,SG,2,081,201912,2969 -DE,SG,2,089,201912,97033 -DE,SG,2,101,201912,2499836 -DE,SG,2,102,201912,239101 -DE,SG,2,103,201912,247846 -DE,SG,2,104,201912,344683 -DE,SG,2,105,201912,977662 -DE,SG,2,106,201912,182565 -DE,SG,2,107,201912,379175 -DE,SG,2,108,201912,3870586 -DE,SG,2,109,201912,152855 -DE,SG,2,110,201912,1238473 -DE,SG,2,120,201912,184986 -DE,SG,2,131,201912,3146 -DE,SG,2,132,201912,162256 -DE,SG,2,139,201912,1655442 -DE,SG,2,141,201912,697161 -DE,SG,2,142,201912,10594 -DE,SG,2,143,201912,161546 -DE,SG,2,151,201912,626853 -DE,SG,2,152,201912,645122 -DE,SG,2,162,201912,124228 -DE,SG,2,171,201912,826807 -DE,SG,2,172,201912,611857 -DE,SG,2,181,201912,62868 -DE,SG,2,192,201912,1444810 -DE,SG,2,201,201912,24587570 -DE,SG,2,202,201912,130581 -DE,SG,2,203,201912,2458761 -DE,SG,2,204,201912,13237680 -DE,SG,2,205,201912,14477763 -DE,SG,2,206,201912,36 -DE,SG,2,20S,201912,8784 -DE,SG,2,211,201912,26156284 -DE,SG,2,212,201912,10758388 -DE,SG,2,221,201912,5959720 -DE,SG,2,222,201912,8236120 -DE,SG,2,231,201912,1612930 -DE,SG,2,232,201912,42452 -DE,SG,2,233,201912,36415 -DE,SG,2,234,201912,408159 -DE,SG,2,236,201912,181807 -DE,SG,2,237,201912,97402 -DE,SG,2,239,201912,1175851 -DE,SG,2,241,201912,1850608 -DE,SG,2,242,201912,4518717 -DE,SG,2,243,201912,1326811 -DE,SG,2,244,201912,10438544 -DE,SG,2,245,201912,18741 -DE,SG,2,251,201912,470324 -DE,SG,2,252,201912,50510 -DE,SG,2,253,201912,12612 -DE,SG,2,254,201912,104842 -DE,SG,2,257,201912,3945313 -DE,SG,2,259,201912,4958276 -DE,SG,2,261,201912,30023920 -DE,SG,2,262,201912,6006918 -DE,SG,2,263,201912,7270817 -DE,SG,2,264,201912,1654224 -DE,SG,2,265,201912,32742172 -DE,SG,2,266,201912,5438775 -DE,SG,2,267,201912,9686025 -DE,SG,2,268,201912,46065 -DE,SG,2,271,201912,19573184 -DE,SG,2,272,201912,4016041 -DE,SG,2,273,201912,9465846 -DE,SG,2,274,201912,4350560 -DE,SG,2,275,201912,3163603 -DE,SG,2,279,201912,20134529 -DE,SG,2,281,201912,53629683 -DE,SG,2,282,201912,27793201 -DE,SG,2,283,201912,367620 -DE,SG,2,284,201912,8462013 -DE,SG,2,289,201912,25534048 -DE,SG,2,291,201912,21147474 -DE,SG,2,292,201912,117618 -DE,SG,2,293,201912,18004972 -DE,SG,2,301,201912,16622931 -DE,SG,2,302,201912,53351 -DE,SG,2,303,201912,21127300 -DE,SG,2,309,201912,2176073 -DE,SG,2,310,201912,1371424 -DE,SG,2,321,201912,536276 -DE,SG,2,322,201912,571811 -DE,SG,2,323,201912,291263 -DE,SG,2,324,201912,139463 -DE,SG,2,325,201912,14027521 -DE,SG,2,329,201912,1488231 -DE,SH,2,279,201912,11987 -DE,SI,1,011,201912,415533 -DE,SI,1,012,201912,332556 -DE,SI,1,013,201912,193306 -DE,SI,1,014,201912,23403 -DE,SI,1,022,201912,67581 -DE,SI,1,081,201912,3076651 -DE,SI,1,089,201912,76240 -DE,SI,1,101,201912,1052421 -DE,SI,1,103,201912,264151 -DE,SI,1,104,201912,79775 -DE,SI,1,105,201912,1068746 -DE,SI,1,106,201912,94009 -DE,SI,1,107,201912,77118 -DE,SI,1,108,201912,1178044 -DE,SI,1,109,201912,3211 -DE,SI,1,10M,201912,414664 -DE,SI,1,110,201912,200053 -DE,SI,1,131,201912,191406 -DE,SI,1,132,201912,381593 -DE,SI,1,139,201912,1700425 -DE,SI,1,13M,201912,12223 -DE,SI,1,141,201912,795309 -DE,SI,1,142,201912,273 -DE,SI,1,143,201912,518287 -DE,SI,1,14M,201912,263588 -DE,SI,1,151,201912,317962 -DE,SI,1,152,201912,3095123 -DE,SI,1,161,201912,574042 -DE,SI,1,162,201912,2509458 -DE,SI,1,16M,201912,2812 -DE,SI,1,171,201912,1830701 -DE,SI,1,172,201912,3536451 -DE,SI,1,17M,201912,872900 -DE,SI,1,192,201912,3018059 -DE,SI,1,201,201912,7653904 -DE,SI,1,202,201912,543388 -DE,SI,1,203,201912,876314 -DE,SI,1,204,201912,2956261 -DE,SI,1,205,201912,1519861 -DE,SI,1,206,201912,243332 -DE,SI,1,20M,201912,826104 -DE,SI,1,212,201912,21480252 -DE,SI,1,221,201912,8697333 -DE,SI,1,222,201912,11381034 -DE,SI,1,231,201912,700019 -DE,SI,1,232,201912,614955 -DE,SI,1,234,201912,407886 -DE,SI,1,235,201912,20930 -DE,SI,1,236,201912,1988349 -DE,SI,1,237,201912,2662 -DE,SI,1,239,201912,5145060 -DE,SI,1,23M,201912,981784 -DE,SI,1,241,201912,10263024 -DE,SI,1,242,201912,750781 -DE,SI,1,243,201912,1390730 -DE,SI,1,244,201912,12900022 -DE,SI,1,245,201912,37718 -DE,SI,1,251,201912,6606013 -DE,SI,1,252,201912,460992 -DE,SI,1,257,201912,15458123 -DE,SI,1,259,201912,7718604 -DE,SI,1,25M,201912,947454 -DE,SI,1,261,201912,901540 -DE,SI,1,262,201912,1097328 -DE,SI,1,263,201912,2191223 -DE,SI,1,264,201912,129092 -DE,SI,1,265,201912,2981535 -DE,SI,1,266,201912,4836 -DE,SI,1,267,201912,455721 -DE,SI,1,268,201912,1833 -DE,SI,1,271,201912,22863739 -DE,SI,1,272,201912,1443537 -DE,SI,1,273,201912,1249080 -DE,SI,1,274,201912,7629295 -DE,SI,1,275,201912,22320998 -DE,SI,1,279,201912,4028147 -DE,SI,1,281,201912,14477785 -DE,SI,1,282,201912,12240113 -DE,SI,1,283,201912,1033349 -DE,SI,1,284,201912,2626819 -DE,SI,1,289,201912,11549763 -DE,SI,1,291,201912,91146201 -DE,SI,1,292,201912,5256451 -DE,SI,1,293,201912,30425620 -DE,SI,1,301,201912,70368 -DE,SI,1,302,201912,1279417 -DE,SI,1,303,201912,2538922 -DE,SI,1,309,201912,1598263 -DE,SI,1,30M,201912,12659 -DE,SI,1,310,201912,8043912 -DE,SI,1,321,201912,52301 -DE,SI,1,322,201912,56251 -DE,SI,1,323,201912,593167 -DE,SI,1,324,201912,1706003 -DE,SI,1,325,201912,6748529 -DE,SI,1,329,201912,877149 -DE,SI,1,32M,201912,5603 -DE,SI,2,011,201912,469727 -DE,SI,2,012,201912,957000 -DE,SI,2,013,201912,116325 -DE,SI,2,014,201912,112778 -DE,SI,2,01M,201912,5968 -DE,SI,2,022,201912,21349 -DE,SI,2,023,201912,2623 -DE,SI,2,030,201912,8143 -DE,SI,2,051,201912,28386 -DE,SI,2,072,201912,18230 -DE,SI,2,081,201912,79203 -DE,SI,2,089,201912,273221 -DE,SI,2,101,201912,2968500 -DE,SI,2,102,201912,380235 -DE,SI,2,103,201912,2013609 -DE,SI,2,104,201912,314138 -DE,SI,2,105,201912,4386929 -DE,SI,2,106,201912,768816 -DE,SI,2,107,201912,1627064 -DE,SI,2,108,201912,9812894 -DE,SI,2,109,201912,1138607 -DE,SI,2,10M,201912,537771 -DE,SI,2,110,201912,1525839 -DE,SI,2,120,201912,467625 -DE,SI,2,131,201912,133244 -DE,SI,2,132,201912,375365 -DE,SI,2,139,201912,2945983 -DE,SI,2,13M,201912,63201 -DE,SI,2,141,201912,5927741 -DE,SI,2,142,201912,20310 -DE,SI,2,143,201912,1673079 -DE,SI,2,14M,201912,377080 -DE,SI,2,151,201912,915767 -DE,SI,2,152,201912,920413 -DE,SI,2,161,201912,312688 -DE,SI,2,162,201912,3053519 -DE,SI,2,16M,201912,2485 -DE,SI,2,171,201912,5270606 -DE,SI,2,172,201912,2802074 -DE,SI,2,17M,201912,289290 -DE,SI,2,17S,201912,295 -DE,SI,2,181,201912,81168 -DE,SI,2,192,201912,1634650 -DE,SI,2,201,201912,16466618 -DE,SI,2,202,201912,549771 -DE,SI,2,203,201912,2440131 -DE,SI,2,204,201912,6197632 -DE,SI,2,205,201912,10586797 -DE,SI,2,206,201912,124201 -DE,SI,2,20M,201912,261120 -DE,SI,2,20S,201912,26058 -DE,SI,2,211,201912,247536 -DE,SI,2,212,201912,22970826 -DE,SI,2,221,201912,4384615 -DE,SI,2,222,201912,14472701 -DE,SI,2,231,201912,1448248 -DE,SI,2,232,201912,737079 -DE,SI,2,233,201912,310061 -DE,SI,2,234,201912,659569 -DE,SI,2,235,201912,33953 -DE,SI,2,236,201912,88352 -DE,SI,2,237,201912,77367 -DE,SI,2,239,201912,891086 -DE,SI,2,23M,201912,162973 -DE,SI,2,241,201912,5723183 -DE,SI,2,242,201912,1394454 -DE,SI,2,243,201912,1904966 -DE,SI,2,244,201912,9112980 -DE,SI,2,245,201912,19561 -DE,SI,2,251,201912,1377291 -DE,SI,2,252,201912,356369 -DE,SI,2,253,201912,235030 -DE,SI,2,254,201912,109182 -DE,SI,2,257,201912,6622900 -DE,SI,2,259,201912,6439165 -DE,SI,2,25M,201912,310087 -DE,SI,2,261,201912,4402064 -DE,SI,2,262,201912,7721859 -DE,SI,2,263,201912,2961844 -DE,SI,2,264,201912,1036479 -DE,SI,2,265,201912,5970217 -DE,SI,2,266,201912,529275 -DE,SI,2,267,201912,1457316 -DE,SI,2,268,201912,78379 -DE,SI,2,271,201912,8831958 -DE,SI,2,272,201912,3944949 -DE,SI,2,273,201912,4663341 -DE,SI,2,274,201912,2046952 -DE,SI,2,275,201912,6512466 -DE,SI,2,279,201912,4726520 -DE,SI,2,281,201912,10987494 -DE,SI,2,282,201912,19650053 -DE,SI,2,283,201912,2425357 -DE,SI,2,284,201912,6390192 -DE,SI,2,289,201912,12605138 -DE,SI,2,291,201912,40629490 -DE,SI,2,292,201912,5604900 -DE,SI,2,293,201912,11412965 -DE,SI,2,301,201912,144183 -DE,SI,2,302,201912,266868 -DE,SI,2,303,201912,3309775 -DE,SI,2,309,201912,644115 -DE,SI,2,30M,201912,55258 -DE,SI,2,310,201912,5660405 -DE,SI,2,321,201912,250469 -DE,SI,2,322,201912,378723 -DE,SI,2,323,201912,311008 -DE,SI,2,324,201912,1719589 -DE,SI,2,325,201912,5222614 -DE,SI,2,329,201912,1996487 -DE,SI,2,32M,201912,12467 -DE,SI,2,32S,201912,1058 -DE,SK,1,011,201912,5074954 -DE,SK,1,012,201912,830975 -DE,SK,1,013,201912,186335 -DE,SK,1,014,201912,54113 -DE,SK,1,01M,201912,5173 -DE,SK,1,022,201912,106250 -DE,SK,1,051,201912,79060 -DE,SK,1,081,201912,12509 -DE,SK,1,089,201912,867270 -DE,SK,1,101,201912,402215 -DE,SK,1,102,201912,111 -DE,SK,1,103,201912,1301919 -DE,SK,1,104,201912,33894 -DE,SK,1,105,201912,4269959 -DE,SK,1,106,201912,2210711 -DE,SK,1,107,201912,164412 -DE,SK,1,108,201912,2624695 -DE,SK,1,109,201912,39241 -DE,SK,1,10M,201912,288392 -DE,SK,1,110,201912,100653 -DE,SK,1,131,201912,3514400 -DE,SK,1,132,201912,151678 -DE,SK,1,139,201912,4302018 -DE,SK,1,13M,201912,190601 -DE,SK,1,141,201912,7324605 -DE,SK,1,143,201912,3214886 -DE,SK,1,14M,201912,1804191 -DE,SK,1,151,201912,4651665 -DE,SK,1,152,201912,20491856 -DE,SK,1,161,201912,529612 -DE,SK,1,162,201912,6282218 -DE,SK,1,16M,201912,92 -DE,SK,1,171,201912,4918767 -DE,SK,1,172,201912,4016988 -DE,SK,1,17M,201912,439312 -DE,SK,1,192,201912,5245796 -DE,SK,1,201,201912,13258701 -DE,SK,1,202,201912,60918 -DE,SK,1,203,201912,76537 -DE,SK,1,204,201912,1649933 -DE,SK,1,205,201912,6881340 -DE,SK,1,206,201912,610845 -DE,SK,1,20M,201912,654931 -DE,SK,1,211,201912,151060 -DE,SK,1,212,201912,7597761 -DE,SK,1,221,201912,22308414 -DE,SK,1,222,201912,14106582 -DE,SK,1,231,201912,8898526 -DE,SK,1,232,201912,756572 -DE,SK,1,233,201912,193984 -DE,SK,1,234,201912,526513 -DE,SK,1,235,201912,69749 -DE,SK,1,236,201912,422444 -DE,SK,1,237,201912,35 -DE,SK,1,239,201912,864934 -DE,SK,1,23M,201912,271062 -DE,SK,1,241,201912,16184907 -DE,SK,1,242,201912,2059354 -DE,SK,1,243,201912,2759606 -DE,SK,1,244,201912,4871089 -DE,SK,1,245,201912,13028 -DE,SK,1,251,201912,5806259 -DE,SK,1,252,201912,12934003 -DE,SK,1,253,201912,30341 -DE,SK,1,254,201912,1173 -DE,SK,1,257,201912,9112694 -DE,SK,1,259,201912,19299540 -DE,SK,1,25M,201912,842242 -DE,SK,1,261,201912,5334353 -DE,SK,1,262,201912,9846845 -DE,SK,1,263,201912,25329593 -DE,SK,1,264,201912,69727115 -DE,SK,1,265,201912,9480671 -DE,SK,1,266,201912,42528 -DE,SK,1,267,201912,1590157 -DE,SK,1,268,201912,9644 -DE,SK,1,271,201912,17446158 -DE,SK,1,272,201912,8477733 -DE,SK,1,273,201912,9778982 -DE,SK,1,274,201912,24251579 -DE,SK,1,275,201912,7345086 -DE,SK,1,279,201912,15564641 -DE,SK,1,281,201912,56486524 -DE,SK,1,282,201912,29024518 -DE,SK,1,283,201912,985444 -DE,SK,1,284,201912,3653151 -DE,SK,1,289,201912,44730461 -DE,SK,1,291,201912,539709544 -DE,SK,1,292,201912,4258962 -DE,SK,1,293,201912,120852065 -DE,SK,1,301,201912,22440 -DE,SK,1,302,201912,24118589 -DE,SK,1,303,201912,134235 -DE,SK,1,309,201912,413108 -DE,SK,1,30M,201912,11291 -DE,SK,1,310,201912,17520546 -DE,SK,1,321,201912,310177 -DE,SK,1,322,201912,72374 -DE,SK,1,323,201912,384485 -DE,SK,1,324,201912,2435624 -DE,SK,1,325,201912,1908666 -DE,SK,1,329,201912,1505577 -DE,SK,1,32M,201912,5882 -DE,SK,2,011,201912,818306 -DE,SK,2,012,201912,3168630 -DE,SK,2,013,201912,512890 -DE,SK,2,014,201912,356885 -DE,SK,2,01M,201912,17452 -DE,SK,2,022,201912,227495 -DE,SK,2,023,201912,698 -DE,SK,2,030,201912,24405 -DE,SK,2,072,201912,242446 -DE,SK,2,081,201912,186310 -DE,SK,2,089,201912,425002 -DE,SK,2,101,201912,14646947 -DE,SK,2,102,201912,917368 -DE,SK,2,103,201912,6033573 -DE,SK,2,104,201912,1911723 -DE,SK,2,105,201912,7348441 -DE,SK,2,106,201912,868852 -DE,SK,2,107,201912,1878408 -DE,SK,2,108,201912,12383229 -DE,SK,2,109,201912,851672 -DE,SK,2,10M,201912,993925 -DE,SK,2,110,201912,1607946 -DE,SK,2,120,201912,773246 -DE,SK,2,131,201912,489857 -DE,SK,2,132,201912,1862231 -DE,SK,2,139,201912,8026750 -DE,SK,2,13M,201912,171001 -DE,SK,2,141,201912,18944277 -DE,SK,2,142,201912,2071 -DE,SK,2,143,201912,5807194 -DE,SK,2,14M,201912,901955 -DE,SK,2,151,201912,4403588 -DE,SK,2,152,201912,15614272 -DE,SK,2,161,201912,700991 -DE,SK,2,162,201912,2313229 -DE,SK,2,16M,201912,3309 -DE,SK,2,171,201912,4084057 -DE,SK,2,172,201912,4627781 -DE,SK,2,17M,201912,365055 -DE,SK,2,181,201912,31127 -DE,SK,2,192,201912,6320069 -DE,SK,2,201,201912,18973202 -DE,SK,2,202,201912,237692 -DE,SK,2,203,201912,4769193 -DE,SK,2,204,201912,7592440 -DE,SK,2,205,201912,9874616 -DE,SK,2,206,201912,187999 -DE,SK,2,20M,201912,403099 -DE,SK,2,20S,201912,14071 -DE,SK,2,211,201912,571532 -DE,SK,2,212,201912,16254039 -DE,SK,2,221,201912,14744831 -DE,SK,2,222,201912,23537542 -DE,SK,2,231,201912,3234910 -DE,SK,2,232,201912,724708 -DE,SK,2,233,201912,174167 -DE,SK,2,234,201912,1057050 -DE,SK,2,235,201912,28380 -DE,SK,2,236,201912,698981 -DE,SK,2,237,201912,27080 -DE,SK,2,239,201912,2743019 -DE,SK,2,23M,201912,322827 -DE,SK,2,241,201912,12303823 -DE,SK,2,242,201912,4319144 -DE,SK,2,243,201912,4198065 -DE,SK,2,244,201912,14295784 -DE,SK,2,245,201912,64507 -DE,SK,2,251,201912,3455185 -DE,SK,2,252,201912,3104356 -DE,SK,2,253,201912,41990 -DE,SK,2,254,201912,318157 -DE,SK,2,257,201912,15448500 -DE,SK,2,259,201912,24275628 -DE,SK,2,25M,201912,1085855 -DE,SK,2,261,201912,15489020 -DE,SK,2,262,201912,8252317 -DE,SK,2,263,201912,34694817 -DE,SK,2,264,201912,4750923 -DE,SK,2,265,201912,18593548 -DE,SK,2,266,201912,2351295 -DE,SK,2,267,201912,3540144 -DE,SK,2,268,201912,15848 -DE,SK,2,271,201912,29171564 -DE,SK,2,272,201912,23468604 -DE,SK,2,273,201912,14398532 -DE,SK,2,274,201912,12105488 -DE,SK,2,275,201912,8601561 -DE,SK,2,279,201912,13268401 -DE,SK,2,281,201912,34134888 -DE,SK,2,282,201912,24004202 -DE,SK,2,283,201912,5399477 -DE,SK,2,284,201912,22695781 -DE,SK,2,289,201912,18252057 -DE,SK,2,291,201912,65193709 -DE,SK,2,292,201912,1457830 -DE,SK,2,293,201912,128923316 -DE,SK,2,301,201912,8422 -DE,SK,2,302,201912,17360480 -DE,SK,2,303,201912,68395 -DE,SK,2,309,201912,1995744 -DE,SK,2,30M,201912,1369 -DE,SK,2,310,201912,7750483 -DE,SK,2,321,201912,8656763 -DE,SK,2,322,201912,1211213 -DE,SK,2,323,201912,436022 -DE,SK,2,324,201912,1788288 -DE,SK,2,325,201912,6292217 -DE,SK,2,329,201912,2510321 -DE,SK,2,32M,201912,39392 -DE,SK,2,32S,201912,3874 -DE,SL,2,106,201912,5850 -DE,SL,2,110,201912,75741 -DE,SL,2,139,201912,1200 -DE,SL,2,141,201912,37657 -DE,SL,2,204,201912,924 -DE,SL,2,205,201912,38788 -DE,SL,2,212,201912,34812 -DE,SL,2,221,201912,42748 -DE,SL,2,222,201912,2154 -DE,SL,2,233,201912,1135 -DE,SL,2,234,201912,400 -DE,SL,2,259,201912,19848 -DE,SL,2,261,201912,16248 -DE,SL,2,262,201912,14210 -DE,SL,2,264,201912,780 -DE,SL,2,265,201912,140748 -DE,SL,2,271,201912,26927 -DE,SL,2,273,201912,2223 -DE,SL,2,274,201912,5973 -DE,SL,2,275,201912,3748 -DE,SL,2,279,201912,5332 -DE,SL,2,281,201912,32543 -DE,SL,2,282,201912,491472 -DE,SL,2,289,201912,31184 -DE,SL,2,291,201912,441523 -DE,SL,2,292,201912,2200 -DE,SL,2,293,201912,1063 -DE,SL,2,309,201912,50 -DE,SL,2,310,201912,12212 -DE,SM,1,151,201912,8797 -DE,SM,1,204,201912,141904 -DE,SM,1,221,201912,110312 -DE,SM,1,222,201912,6099 -DE,SM,1,244,201912,39673 -DE,SM,1,257,201912,3115 -DE,SM,1,259,201912,15638 -DE,SM,1,271,201912,6818 -DE,SM,1,282,201912,561098 -DE,SM,1,284,201912,34558 -DE,SM,1,310,201912,653 -DE,SM,1,321,201912,88576 -DE,SM,1,325,201912,1669 -DE,SM,2,012,201912,29 -DE,SM,2,089,201912,5482 -DE,SM,2,106,201912,37392 -DE,SM,2,108,201912,4602 -DE,SM,2,109,201912,50573 -DE,SM,2,110,201912,10464 -DE,SM,2,139,201912,15361 -DE,SM,2,141,201912,1578 -DE,SM,2,151,201912,3585 -DE,SM,2,152,201912,7874 -DE,SM,2,161,201912,8248 -DE,SM,2,162,201912,288 -DE,SM,2,171,201912,36196 -DE,SM,2,172,201912,17408 -DE,SM,2,201,201912,53654 -DE,SM,2,204,201912,50508 -DE,SM,2,205,201912,38856 -DE,SM,2,212,201912,5808 -DE,SM,2,221,201912,1804 -DE,SM,2,222,201912,161901 -DE,SM,2,244,201912,1212 -DE,SM,2,251,201912,1481 -DE,SM,2,257,201912,13450 -DE,SM,2,259,201912,9216 -DE,SM,2,261,201912,44575 -DE,SM,2,262,201912,3445 -DE,SM,2,263,201912,5137 -DE,SM,2,264,201912,20776 -DE,SM,2,265,201912,6771 -DE,SM,2,267,201912,75 -DE,SM,2,271,201912,12702 -DE,SM,2,273,201912,2411 -DE,SM,2,274,201912,23051 -DE,SM,2,275,201912,6138 -DE,SM,2,279,201912,154712 -DE,SM,2,281,201912,60693 -DE,SM,2,282,201912,131790 -DE,SM,2,283,201912,3227 -DE,SM,2,284,201912,28704 -DE,SM,2,291,201912,1034550 -DE,SM,2,309,201912,16389 -DE,SM,2,310,201912,664 -DE,SM,2,323,201912,2260 -DE,SM,2,324,201912,18038 -DE,SM,2,325,201912,5527 -DE,SM,2,329,201912,93090 -DE,SN,1,011,201912,95036 -DE,SN,1,030,201912,57213 -DE,SN,1,102,201912,13183 -DE,SN,1,103,201912,1611 -DE,SN,1,162,201912,821 -DE,SN,1,325,201912,209 -DE,SN,2,103,201912,42114 -DE,SN,2,105,201912,95217 -DE,SN,2,106,201912,106399 -DE,SN,2,108,201912,205847 -DE,SN,2,109,201912,13764 -DE,SN,2,110,201912,98484 -DE,SN,2,132,201912,215218 -DE,SN,2,139,201912,43059 -DE,SN,2,141,201912,65366 -DE,SN,2,151,201912,4080 -DE,SN,2,161,201912,231360 -DE,SN,2,162,201912,400 -DE,SN,2,171,201912,82151 -DE,SN,2,172,201912,24965 -DE,SN,2,192,201912,2058 -DE,SN,2,201,201912,443676 -DE,SN,2,202,201912,2732 -DE,SN,2,203,201912,258 -DE,SN,2,204,201912,97466 -DE,SN,2,205,201912,308504 -DE,SN,2,211,201912,35646 -DE,SN,2,212,201912,286359 -DE,SN,2,221,201912,379656 -DE,SN,2,222,201912,144278 -DE,SN,2,231,201912,32210 -DE,SN,2,232,201912,70771 -DE,SN,2,234,201912,18095 -DE,SN,2,239,201912,122781 -DE,SN,2,242,201912,27915 -DE,SN,2,244,201912,89390 -DE,SN,2,251,201912,153146 -DE,SN,2,257,201912,62351 -DE,SN,2,259,201912,37433 -DE,SN,2,261,201912,13242 -DE,SN,2,262,201912,12863 -DE,SN,2,263,201912,103605 -DE,SN,2,264,201912,14872 -DE,SN,2,265,201912,174986 -DE,SN,2,266,201912,15160 -DE,SN,2,271,201912,50120 -DE,SN,2,272,201912,37574 -DE,SN,2,273,201912,33986 -DE,SN,2,274,201912,4348 -DE,SN,2,275,201912,20740 -DE,SN,2,279,201912,43846 -DE,SN,2,281,201912,2944308 -DE,SN,2,282,201912,637221 -DE,SN,2,283,201912,55184 -DE,SN,2,289,201912,224725 -DE,SN,2,291,201912,728344 -DE,SN,2,292,201912,30600 -DE,SN,2,293,201912,38518 -DE,SN,2,303,201912,8373 -DE,SN,2,309,201912,2205 -DE,SN,2,310,201912,43751 -DE,SN,2,321,201912,1724 -DE,SN,2,323,201912,470 -DE,SN,2,324,201912,5466 -DE,SN,2,325,201912,226971 -DE,SN,2,329,201912,7598 -DE,SO,2,108,201912,6243 -DE,SO,2,139,201912,31504 -DE,SO,2,141,201912,40808 -DE,SO,2,151,201912,1350 -DE,SO,2,161,201912,476184 -DE,SO,2,201,201912,9942 -DE,SO,2,204,201912,2936 -DE,SO,2,205,201912,14574 -DE,SO,2,212,201912,22921 -DE,SO,2,221,201912,122 -DE,SO,2,222,201912,47303 -DE,SO,2,242,201912,3233 -DE,SO,2,257,201912,1400 -DE,SO,2,259,201912,7862 -DE,SO,2,262,201912,106472 -DE,SO,2,263,201912,70690 -DE,SO,2,264,201912,20500 -DE,SO,2,265,201912,12053 -DE,SO,2,271,201912,14197 -DE,SO,2,273,201912,37566 -DE,SO,2,279,201912,50238 -DE,SO,2,282,201912,214225 -DE,SO,2,325,201912,6111 -DE,SR,2,103,201912,2194 -DE,SR,2,106,201912,12087 -DE,SR,2,107,201912,21224 -DE,SR,2,108,201912,55787 -DE,SR,2,110,201912,72125 -DE,SR,2,171,201912,5069 -DE,SR,2,172,201912,41934 -DE,SR,2,201,201912,251286 -DE,SR,2,203,201912,845 -DE,SR,2,204,201912,8946 -DE,SR,2,205,201912,31748 -DE,SR,2,212,201912,32330 -DE,SR,2,221,201912,15321 -DE,SR,2,222,201912,28597 -DE,SR,2,231,201912,2860 -DE,SR,2,234,201912,49569 -DE,SR,2,239,201912,8466 -DE,SR,2,242,201912,1028 -DE,SR,2,257,201912,2733 -DE,SR,2,259,201912,44923 -DE,SR,2,265,201912,38448 -DE,SR,2,271,201912,3958 -DE,SR,2,273,201912,800 -DE,SR,2,274,201912,1684 -DE,SR,2,279,201912,702 -DE,SR,2,281,201912,62093 -DE,SR,2,282,201912,41444 -DE,SR,2,284,201912,15000 -DE,SR,2,289,201912,14840 -DE,SR,2,293,201912,2497 -DE,SR,2,310,201912,78004 -DE,SR,2,325,201912,24477 -DE,SR,2,329,201912,8035 -DE,SS,2,212,201912,176684 -DE,SS,2,221,201912,16 -DE,SS,2,222,201912,15465 -DE,SS,2,231,201912,896 -DE,SS,2,263,201912,4472 -DE,SS,2,265,201912,481 -DE,SS,2,271,201912,161 -DE,SS,2,273,201912,850 -DE,SS,2,281,201912,2338 -DE,SS,2,289,201912,2870 -DE,SS,2,325,201912,43246 -DE,ST,2,141,201912,28720 -DE,ST,2,151,201912,105 -DE,ST,2,324,201912,225 -DE,SV,1,012,201912,42260 -DE,SV,1,014,201912,136 -DE,SV,1,108,201912,84 -DE,SV,1,141,201912,92386 -DE,SV,1,143,201912,4713 -DE,SV,1,257,201912,14672 -DE,SV,1,261,201912,138 -DE,SV,1,262,201912,98 -DE,SV,1,265,201912,2766 -DE,SV,1,279,201912,1439544 -DE,SV,1,281,201912,15647 -DE,SV,2,013,201912,5159 -DE,SV,2,103,201912,51487 -DE,SV,2,104,201912,3786 -DE,SV,2,106,201912,42606 -DE,SV,2,107,201912,2803 -DE,SV,2,108,201912,182539 -DE,SV,2,110,201912,38924 -DE,SV,2,139,201912,22481 -DE,SV,2,141,201912,211 -DE,SV,2,151,201912,316 -DE,SV,2,162,201912,11650 -DE,SV,2,171,201912,287308 -DE,SV,2,172,201912,11206 -DE,SV,2,192,201912,46431 -DE,SV,2,201,201912,258560 -DE,SV,2,203,201912,70641 -DE,SV,2,204,201912,49814 -DE,SV,2,205,201912,170583 -DE,SV,2,211,201912,18310 -DE,SV,2,212,201912,370350 -DE,SV,2,221,201912,135741 -DE,SV,2,222,201912,154349 -DE,SV,2,231,201912,75190 -DE,SV,2,234,201912,15938 -DE,SV,2,239,201912,362121 -DE,SV,2,241,201912,19630 -DE,SV,2,242,201912,5016 -DE,SV,2,244,201912,124668 -DE,SV,2,251,201912,275 -DE,SV,2,257,201912,133590 -DE,SV,2,259,201912,117303 -DE,SV,2,261,201912,7328 -DE,SV,2,262,201912,286153 -DE,SV,2,263,201912,47876 -DE,SV,2,264,201912,5705 -DE,SV,2,265,201912,179734 -DE,SV,2,266,201912,238690 -DE,SV,2,267,201912,9119 -DE,SV,2,271,201912,287709 -DE,SV,2,272,201912,12128 -DE,SV,2,273,201912,38837 -DE,SV,2,274,201912,15705 -DE,SV,2,275,201912,23830 -DE,SV,2,279,201912,209367 -DE,SV,2,281,201912,296959 -DE,SV,2,282,201912,473829 -DE,SV,2,284,201912,8657 -DE,SV,2,289,201912,551413 -DE,SV,2,291,201912,569519 -DE,SV,2,292,201912,14898 -DE,SV,2,293,201912,53534 -DE,SV,2,303,201912,896486 -DE,SV,2,309,201912,47077 -DE,SV,2,310,201912,7178 -DE,SV,2,325,201912,512589 -DE,SV,2,329,201912,126567 -DE,SX,2,102,201912,2700 -DE,SX,2,110,201912,1559 -DE,SX,2,139,201912,49642 -DE,SX,2,151,201912,59 -DE,SX,2,204,201912,8547 -DE,SX,2,205,201912,541 -DE,SX,2,212,201912,240 -DE,SX,2,221,201912,621 -DE,SX,2,222,201912,368 -DE,SX,2,231,201912,689 -DE,SX,2,234,201912,3508 -DE,SX,2,257,201912,6362 -DE,SX,2,259,201912,2064 -DE,SX,2,261,201912,3873 -DE,SX,2,262,201912,1239 -DE,SX,2,263,201912,4389 -DE,SX,2,264,201912,4326 -DE,SX,2,265,201912,2900 -DE,SX,2,271,201912,3436 -DE,SX,2,273,201912,1106 -DE,SX,2,275,201912,310 -DE,SX,2,281,201912,10870 -DE,SX,2,282,201912,1337 -DE,SX,2,293,201912,4598 -DE,SX,2,310,201912,106345 -DE,SY,1,011,201912,875 -DE,SY,1,012,201912,385680 -DE,SY,1,101,201912,267639 -DE,SY,1,103,201912,131757 -DE,SY,1,104,201912,17383 -DE,SY,1,106,201912,21377 -DE,SY,1,107,201912,12694 -DE,SY,1,108,201912,45305 -DE,SY,1,110,201912,5263 -DE,SY,1,139,201912,5529 -DE,SY,1,141,201912,52299 -DE,SY,1,151,201912,501 -DE,SY,1,152,201912,3897 -DE,SY,1,162,201912,1480 -DE,SY,1,172,201912,316 -DE,SY,1,204,201912,10482 -DE,SY,1,222,201912,53 -DE,SY,1,234,201912,475 -DE,SY,1,259,201912,388 -DE,SY,1,321,201912,2708 -DE,SY,1,329,201912,331 -DE,SY,2,103,201912,61055 -DE,SY,2,106,201912,198634 -DE,SY,2,108,201912,596039 -DE,SY,2,139,201912,27292 -DE,SY,2,141,201912,770 -DE,SY,2,143,201912,140 -DE,SY,2,152,201912,15 -DE,SY,2,171,201912,383345 -DE,SY,2,172,201912,5741 -DE,SY,2,192,201912,70366 -DE,SY,2,201,201912,258108 -DE,SY,2,202,201912,6188 -DE,SY,2,203,201912,82924 -DE,SY,2,204,201912,63546 -DE,SY,2,205,201912,625852 -DE,SY,2,211,201912,16018 -DE,SY,2,212,201912,434965 -DE,SY,2,221,201912,90461 -DE,SY,2,222,201912,151233 -DE,SY,2,231,201912,2687 -DE,SY,2,234,201912,13952 -DE,SY,2,239,201912,126 -DE,SY,2,241,201912,70200 -DE,SY,2,244,201912,5898 -DE,SY,2,257,201912,49046 -DE,SY,2,259,201912,18963 -DE,SY,2,261,201912,11792 -DE,SY,2,262,201912,144 -DE,SY,2,263,201912,49940 -DE,SY,2,265,201912,111235 -DE,SY,2,266,201912,77372 -DE,SY,2,267,201912,54463 -DE,SY,2,271,201912,70284 -DE,SY,2,273,201912,13649 -DE,SY,2,274,201912,460 -DE,SY,2,279,201912,17890 -DE,SY,2,281,201912,265206 -DE,SY,2,282,201912,636820 -DE,SY,2,284,201912,9731 -DE,SY,2,289,201912,166093 -DE,SY,2,291,201912,5575 -DE,SY,2,293,201912,11855 -DE,SY,2,325,201912,454868 -DE,SY,2,329,201912,1595 -DE,SZ,1,110,201912,20831 -DE,SZ,1,265,201912,207 -DE,SZ,2,108,201912,35927 -DE,SZ,2,201,201912,300315 -DE,SZ,2,205,201912,7092 -DE,SZ,2,281,201912,9858 -DE,TC,2,105,201912,21574 -DE,TC,2,205,201912,693 -DE,TC,2,212,201912,1948 -DE,TD,1,023,201912,121880 -DE,TD,2,108,201912,10777 -DE,TD,2,110,201912,319406 -DE,TD,2,141,201912,296450 -DE,TD,2,151,201912,17316 -DE,TD,2,204,201912,58 -DE,TD,2,205,201912,24572 -DE,TD,2,212,201912,21439 -DE,TD,2,222,201912,143574 -DE,TD,2,231,201912,3701 -DE,TD,2,259,201912,47034 -DE,TD,2,262,201912,87840 -DE,TD,2,263,201912,2444 -DE,TD,2,265,201912,660365 -DE,TD,2,267,201912,965 -DE,TD,2,274,201912,122 -DE,TD,2,279,201912,29778 -DE,TD,2,281,201912,54393 -DE,TD,2,282,201912,58262 -DE,TD,2,321,201912,11300 -DE,TD,2,325,201912,88 -DE,TF,2,141,201912,3446 -DE,TF,2,152,201912,533 -DE,TF,2,221,201912,548 -DE,TF,2,222,201912,2284 -DE,TF,2,231,201912,8418 -DE,TF,2,259,201912,4796 -DE,TF,2,263,201912,2020 -DE,TF,2,272,201912,2621 -DE,TF,2,279,201912,3648 -DE,TF,2,281,201912,7027 -DE,TF,2,282,201912,10400 -DE,TF,2,289,201912,133900 -DE,TF,2,323,201912,1432 -DE,TF,2,329,201912,944 -DE,TG,1,162,201912,4748 -DE,TG,1,259,201912,1323 -DE,TG,1,321,201912,8801 -DE,TG,2,101,201912,10575 -DE,TG,2,103,201912,126 -DE,TG,2,104,201912,348 -DE,TG,2,105,201912,51 -DE,TG,2,106,201912,16 -DE,TG,2,107,201912,35 -DE,TG,2,108,201912,97723 -DE,TG,2,110,201912,625 -DE,TG,2,139,201912,116949 -DE,TG,2,141,201912,150987 -DE,TG,2,151,201912,2583 -DE,TG,2,152,201912,90 -DE,TG,2,171,201912,2 -DE,TG,2,172,201912,10672 -DE,TG,2,192,201912,1707 -DE,TG,2,201,201912,329510 -DE,TG,2,203,201912,1216 -DE,TG,2,204,201912,46266 -DE,TG,2,205,201912,342560 -DE,TG,2,211,201912,70768 -DE,TG,2,212,201912,68456 -DE,TG,2,221,201912,16729 -DE,TG,2,222,201912,126140 -DE,TG,2,231,201912,247830 -DE,TG,2,234,201912,754 -DE,TG,2,239,201912,127 -DE,TG,2,242,201912,20854 -DE,TG,2,244,201912,46 -DE,TG,2,251,201912,1899 -DE,TG,2,257,201912,25506 -DE,TG,2,259,201912,58045 -DE,TG,2,261,201912,1656 -DE,TG,2,262,201912,41098 -DE,TG,2,263,201912,38969 -DE,TG,2,264,201912,13049 -DE,TG,2,265,201912,131829 -DE,TG,2,267,201912,34899 -DE,TG,2,271,201912,182676 -DE,TG,2,272,201912,109206 -DE,TG,2,273,201912,220480 -DE,TG,2,274,201912,1106 -DE,TG,2,275,201912,6421 -DE,TG,2,279,201912,14827 -DE,TG,2,281,201912,123576 -DE,TG,2,282,201912,290728 -DE,TG,2,289,201912,28048 -DE,TG,2,291,201912,541394 -DE,TG,2,292,201912,21659 -DE,TG,2,293,201912,59294 -DE,TG,2,309,201912,2493 -DE,TG,2,310,201912,28467 -DE,TG,2,323,201912,30 -DE,TG,2,324,201912,2924 -DE,TG,2,325,201912,129697 -DE,TG,2,329,201912,30157 -DE,TH,1,011,201912,425904 -DE,TH,1,012,201912,4313442 -DE,TH,1,013,201912,158152 -DE,TH,1,014,201912,10672 -DE,TH,1,023,201912,419 -DE,TH,1,030,201912,112833 -DE,TH,1,072,201912,34389 -DE,TH,1,089,201912,613681 -DE,TH,1,101,201912,5753202 -DE,TH,1,102,201912,1251671 -DE,TH,1,103,201912,1957775 -DE,TH,1,104,201912,1167 -DE,TH,1,106,201912,1787657 -DE,TH,1,107,201912,191055 -DE,TH,1,108,201912,5199259 -DE,TH,1,109,201912,2220973 -DE,TH,1,110,201912,96956 -DE,TH,1,120,201912,54710 -DE,TH,1,131,201912,229565 -DE,TH,1,132,201912,212535 -DE,TH,1,139,201912,1668695 -DE,TH,1,141,201912,4313884 -DE,TH,1,142,201912,17519 -DE,TH,1,143,201912,1213391 -DE,TH,1,151,201912,2003223 -DE,TH,1,152,201912,1849785 -DE,TH,1,161,201912,51730 -DE,TH,1,162,201912,343235 -DE,TH,1,171,201912,127 -DE,TH,1,172,201912,209060 -DE,TH,1,201,201912,3623426 -DE,TH,1,203,201912,19016 -DE,TH,1,204,201912,353934 -DE,TH,1,205,201912,58962 -DE,TH,1,206,201912,316198 -DE,TH,1,211,201912,4951 -DE,TH,1,212,201912,11008 -DE,TH,1,221,201912,6940731 -DE,TH,1,222,201912,2866544 -DE,TH,1,231,201912,171419 -DE,TH,1,233,201912,42114 -DE,TH,1,234,201912,1294373 -DE,TH,1,235,201912,16 -DE,TH,1,236,201912,288 -DE,TH,1,237,201912,966 -DE,TH,1,239,201912,327156 -DE,TH,1,241,201912,1662403 -DE,TH,1,242,201912,226978 -DE,TH,1,244,201912,3031787 -DE,TH,1,251,201912,45743 -DE,TH,1,257,201912,1006179 -DE,TH,1,259,201912,4223653 -DE,TH,1,261,201912,51485161 -DE,TH,1,262,201912,37785390 -DE,TH,1,263,201912,8929466 -DE,TH,1,264,201912,1121279 -DE,TH,1,265,201912,6403723 -DE,TH,1,266,201912,9398 -DE,TH,1,267,201912,2025004 -DE,TH,1,268,201912,34 -DE,TH,1,271,201912,6364137 -DE,TH,1,272,201912,7830 -DE,TH,1,273,201912,1946130 -DE,TH,1,274,201912,476549 -DE,TH,1,275,201912,269775 -DE,TH,1,279,201912,9509043 -DE,TH,1,281,201912,16895385 -DE,TH,1,282,201912,10364315 -DE,TH,1,283,201912,12268 -DE,TH,1,284,201912,1308936 -DE,TH,1,289,201912,1909133 -DE,TH,1,291,201912,7741138 -DE,TH,1,293,201912,4434403 -DE,TH,1,303,201912,2682779 -DE,TH,1,309,201912,2117700 -DE,TH,1,310,201912,1418972 -DE,TH,1,321,201912,72606642 -DE,TH,1,322,201912,183388 -DE,TH,1,323,201912,516552 -DE,TH,1,324,201912,300030 -DE,TH,1,325,201912,12286390 -DE,TH,1,329,201912,368968 -DE,TH,2,012,201912,451403 -DE,TH,2,030,201912,4587 -DE,TH,2,081,201912,13963 -DE,TH,2,089,201912,63181 -DE,TH,2,101,201912,2272398 -DE,TH,2,102,201912,124000 -DE,TH,2,103,201912,385168 -DE,TH,2,104,201912,153509 -DE,TH,2,105,201912,1461611 -DE,TH,2,106,201912,1026617 -DE,TH,2,107,201912,223190 -DE,TH,2,108,201912,2419920 -DE,TH,2,109,201912,660509 -DE,TH,2,110,201912,2743960 -DE,TH,2,120,201912,11100 -DE,TH,2,131,201912,28134 -DE,TH,2,132,201912,543416 -DE,TH,2,139,201912,1502837 -DE,TH,2,141,201912,300360 -DE,TH,2,143,201912,8369 -DE,TH,2,151,201912,403673 -DE,TH,2,152,201912,34643 -DE,TH,2,161,201912,35871 -DE,TH,2,162,201912,612906 -DE,TH,2,171,201912,4321526 -DE,TH,2,172,201912,810950 -DE,TH,2,17S,201912,37481 -DE,TH,2,181,201912,57818 -DE,TH,2,192,201912,634813 -DE,TH,2,201,201912,26407959 -DE,TH,2,202,201912,522519 -DE,TH,2,203,201912,2786995 -DE,TH,2,204,201912,4163431 -DE,TH,2,205,201912,11541470 -DE,TH,2,206,201912,163474 -DE,TH,2,20S,201912,499531 -DE,TH,2,211,201912,818887 -DE,TH,2,212,201912,18004019 -DE,TH,2,221,201912,3924067 -DE,TH,2,222,201912,7302432 -DE,TH,2,231,201912,1154602 -DE,TH,2,232,201912,237892 -DE,TH,2,233,201912,17556 -DE,TH,2,234,201912,337183 -DE,TH,2,235,201912,48580 -DE,TH,2,236,201912,115373 -DE,TH,2,239,201912,621823 -DE,TH,2,241,201912,2446186 -DE,TH,2,242,201912,473314 -DE,TH,2,243,201912,446127 -DE,TH,2,244,201912,8115934 -DE,TH,2,245,201912,53528 -DE,TH,2,251,201912,1219122 -DE,TH,2,252,201912,314574 -DE,TH,2,253,201912,43100 -DE,TH,2,254,201912,8554 -DE,TH,2,257,201912,4214328 -DE,TH,2,259,201912,3608118 -DE,TH,2,261,201912,15234288 -DE,TH,2,262,201912,810176 -DE,TH,2,263,201912,8021433 -DE,TH,2,264,201912,1695491 -DE,TH,2,265,201912,15743367 -DE,TH,2,266,201912,2129839 -DE,TH,2,267,201912,1734007 -DE,TH,2,268,201912,7456 -DE,TH,2,271,201912,14872883 -DE,TH,2,272,201912,3166606 -DE,TH,2,273,201912,4327277 -DE,TH,2,274,201912,2098714 -DE,TH,2,275,201912,1266364 -DE,TH,2,279,201912,8773427 -DE,TH,2,281,201912,30896063 -DE,TH,2,282,201912,34569372 -DE,TH,2,283,201912,206402 -DE,TH,2,284,201912,6050179 -DE,TH,2,289,201912,40403762 -DE,TH,2,291,201912,12711132 -DE,TH,2,292,201912,892866 -DE,TH,2,293,201912,21265793 -DE,TH,2,301,201912,6500 -DE,TH,2,302,201912,79279 -DE,TH,2,303,201912,137030091 -DE,TH,2,309,201912,2693297 -DE,TH,2,310,201912,704254 -DE,TH,2,321,201912,1035394 -DE,TH,2,322,201912,220414 -DE,TH,2,323,201912,62119 -DE,TH,2,324,201912,22698 -DE,TH,2,325,201912,6139681 -DE,TH,2,329,201912,1308475 -DE,TJ,2,141,201912,1498 -DE,TJ,2,143,201912,125 -DE,TJ,2,151,201912,51 -DE,TJ,2,192,201912,101378 -DE,TJ,2,201,201912,76001 -DE,TJ,2,203,201912,15574 -DE,TJ,2,204,201912,21182 -DE,TJ,2,205,201912,48584 -DE,TJ,2,211,201912,1639 -DE,TJ,2,212,201912,96788 -DE,TJ,2,221,201912,3763 -DE,TJ,2,222,201912,428575 -DE,TJ,2,234,201912,1438 -DE,TJ,2,251,201912,47672 -DE,TJ,2,257,201912,668 -DE,TJ,2,259,201912,3967 -DE,TJ,2,262,201912,43627 -DE,TJ,2,263,201912,44660 -DE,TJ,2,264,201912,2750 -DE,TJ,2,265,201912,32344 -DE,TJ,2,266,201912,200 -DE,TJ,2,267,201912,10045 -DE,TJ,2,271,201912,116094 -DE,TJ,2,273,201912,2383 -DE,TJ,2,274,201912,348 -DE,TJ,2,279,201912,1630 -DE,TJ,2,281,201912,222427 -DE,TJ,2,282,201912,51503 -DE,TJ,2,289,201912,1354880 -DE,TJ,2,291,201912,83748 -DE,TJ,2,292,201912,15453 -DE,TJ,2,293,201912,18316 -DE,TJ,2,325,201912,176878 -DE,TJ,2,329,201912,2090 -DE,TK,2,222,201912,23650 -DE,TL,1,012,201912,54188 -DE,TM,2,014,201912,198590 -DE,TM,2,120,201912,723850 -DE,TM,2,139,201912,53617 -DE,TM,2,141,201912,17556 -DE,TM,2,151,201912,80 -DE,TM,2,162,201912,3916 -DE,TM,2,172,201912,10490 -DE,TM,2,192,201912,268859 -DE,TM,2,201,201912,43152 -DE,TM,2,203,201912,27382 -DE,TM,2,204,201912,67728 -DE,TM,2,205,201912,270044 -DE,TM,2,212,201912,454658 -DE,TM,2,221,201912,312038 -DE,TM,2,222,201912,68847 -DE,TM,2,231,201912,17310 -DE,TM,2,234,201912,23555 -DE,TM,2,236,201912,500 -DE,TM,2,239,201912,15 -DE,TM,2,242,201912,27126 -DE,TM,2,244,201912,3676 -DE,TM,2,257,201912,81435 -DE,TM,2,259,201912,31777 -DE,TM,2,262,201912,33728 -DE,TM,2,263,201912,1950 -DE,TM,2,264,201912,14650 -DE,TM,2,265,201912,549210 -DE,TM,2,266,201912,88633 -DE,TM,2,267,201912,197389 -DE,TM,2,271,201912,980839 -DE,TM,2,272,201912,115802 -DE,TM,2,273,201912,9113 -DE,TM,2,274,201912,252365 -DE,TM,2,275,201912,135540 -DE,TM,2,279,201912,29128 -DE,TM,2,281,201912,649571 -DE,TM,2,282,201912,1419691 -DE,TM,2,283,201912,6089830 -DE,TM,2,289,201912,159742 -DE,TM,2,291,201912,380802 -DE,TM,2,292,201912,209955 -DE,TM,2,293,201912,199798 -DE,TM,2,310,201912,174814 -DE,TM,2,323,201912,5765 -DE,TM,2,325,201912,2776242 -DE,TM,2,329,201912,18614 -DE,TN,1,011,201912,297964 -DE,TN,1,012,201912,2624437 -DE,TN,1,103,201912,2248 -DE,TN,1,104,201912,3299 -DE,TN,1,106,201912,8 -DE,TN,1,107,201912,16211 -DE,TN,1,108,201912,89517 -DE,TN,1,110,201912,34 -DE,TN,1,131,201912,23286 -DE,TN,1,132,201912,3589 -DE,TN,1,139,201912,248992 -DE,TN,1,141,201912,22476780 -DE,TN,1,143,201912,1745077 -DE,TN,1,151,201912,300680 -DE,TN,1,152,201912,6523222 -DE,TN,1,162,201912,210185 -DE,TN,1,172,201912,34565 -DE,TN,1,201,201912,2410 -DE,TN,1,202,201912,1507 -DE,TN,1,204,201912,17439 -DE,TN,1,205,201912,1091 -DE,TN,1,211,201912,89 -DE,TN,1,212,201912,570 -DE,TN,1,221,201912,99844 -DE,TN,1,222,201912,484527 -DE,TN,1,231,201912,55 -DE,TN,1,234,201912,91908 -DE,TN,1,239,201912,223196 -DE,TN,1,242,201912,43389 -DE,TN,1,244,201912,1153 -DE,TN,1,245,201912,5453 -DE,TN,1,257,201912,4082 -DE,TN,1,259,201912,629079 -DE,TN,1,261,201912,2325511 -DE,TN,1,262,201912,4129 -DE,TN,1,263,201912,329005 -DE,TN,1,265,201912,1220493 -DE,TN,1,267,201912,6065 -DE,TN,1,271,201912,7570449 -DE,TN,1,273,201912,7558960 -DE,TN,1,274,201912,1210544 -DE,TN,1,275,201912,241360 -DE,TN,1,279,201912,4620959 -DE,TN,1,281,201912,18419 -DE,TN,1,282,201912,1058303 -DE,TN,1,284,201912,1 -DE,TN,1,289,201912,58631 -DE,TN,1,291,201912,1500 -DE,TN,1,293,201912,33533130 -DE,TN,1,310,201912,194814 -DE,TN,1,321,201912,546 -DE,TN,1,323,201912,46508 -DE,TN,1,324,201912,1146281 -DE,TN,1,325,201912,184314 -DE,TN,1,329,201912,37809 -DE,TN,2,012,201912,1248 -DE,TN,2,014,201912,1231 -DE,TN,2,022,201912,724 -DE,TN,2,081,201912,5188 -DE,TN,2,089,201912,26527 -DE,TN,2,101,201912,51400 -DE,TN,2,104,201912,55282 -DE,TN,2,105,201912,379858 -DE,TN,2,106,201912,112682 -DE,TN,2,107,201912,18395 -DE,TN,2,108,201912,684288 -DE,TN,2,110,201912,303464 -DE,TN,2,120,201912,376210 -DE,TN,2,131,201912,491071 -DE,TN,2,132,201912,7184746 -DE,TN,2,139,201912,4900610 -DE,TN,2,141,201912,758072 -DE,TN,2,142,201912,1623 -DE,TN,2,143,201912,688029 -DE,TN,2,151,201912,707139 -DE,TN,2,152,201912,660693 -DE,TN,2,162,201912,340178 -DE,TN,2,171,201912,1435131 -DE,TN,2,172,201912,1312436 -DE,TN,2,181,201912,24913 -DE,TN,2,192,201912,351128 -DE,TN,2,201,201912,3274430 -DE,TN,2,202,201912,154 -DE,TN,2,203,201912,589305 -DE,TN,2,204,201912,806798 -DE,TN,2,205,201912,1597861 -DE,TN,2,206,201912,13095 -DE,TN,2,20S,201912,3914 -DE,TN,2,211,201912,152008 -DE,TN,2,212,201912,4740459 -DE,TN,2,221,201912,1264017 -DE,TN,2,222,201912,7006868 -DE,TN,2,231,201912,468644 -DE,TN,2,232,201912,247075 -DE,TN,2,234,201912,22969 -DE,TN,2,235,201912,7344 -DE,TN,2,236,201912,11490 -DE,TN,2,239,201912,68959 -DE,TN,2,241,201912,205714 -DE,TN,2,242,201912,85491 -DE,TN,2,243,201912,112750 -DE,TN,2,244,201912,1498492 -DE,TN,2,245,201912,65 -DE,TN,2,251,201912,195795 -DE,TN,2,252,201912,1200 -DE,TN,2,253,201912,208951 -DE,TN,2,257,201912,925253 -DE,TN,2,259,201912,1379990 -DE,TN,2,261,201912,3437088 -DE,TN,2,262,201912,625816 -DE,TN,2,263,201912,1741925 -DE,TN,2,264,201912,47197 -DE,TN,2,265,201912,1939144 -DE,TN,2,266,201912,539294 -DE,TN,2,267,201912,561273 -DE,TN,2,268,201912,10769 -DE,TN,2,271,201912,4948676 -DE,TN,2,272,201912,169422 -DE,TN,2,273,201912,12710565 -DE,TN,2,274,201912,222114 -DE,TN,2,275,201912,269555 -DE,TN,2,279,201912,3778358 -DE,TN,2,281,201912,2496623 -DE,TN,2,282,201912,3638342 -DE,TN,2,283,201912,862903 -DE,TN,2,284,201912,398412 -DE,TN,2,289,201912,5014881 -DE,TN,2,291,201912,7090451 -DE,TN,2,292,201912,103755 -DE,TN,2,293,201912,7178869 -DE,TN,2,303,201912,3025404 -DE,TN,2,309,201912,46013 -DE,TN,2,310,201912,109534 -DE,TN,2,321,201912,6996 -DE,TN,2,323,201912,32843 -DE,TN,2,324,201912,71147 -DE,TN,2,325,201912,1381007 -DE,TN,2,329,201912,1062810 -DE,TR,1,011,201912,6866539 -DE,TR,1,012,201912,6011935 -DE,TR,1,013,201912,253484 -DE,TR,1,014,201912,765427 -DE,TR,1,023,201912,9579 -DE,TR,1,030,201912,662830 -DE,TR,1,071,201912,62720 -DE,TR,1,081,201912,1345629 -DE,TR,1,089,201912,1237582 -DE,TR,1,101,201912,412640 -DE,TR,1,102,201912,1487038 -DE,TR,1,103,201912,71998886 -DE,TR,1,104,201912,352739 -DE,TR,1,105,201912,102081 -DE,TR,1,106,201912,1378297 -DE,TR,1,107,201912,2317519 -DE,TR,1,108,201912,5108350 -DE,TR,1,109,201912,12158 -DE,TR,1,110,201912,3026516 -DE,TR,1,120,201912,451133 -DE,TR,1,131,201912,4307668 -DE,TR,1,132,201912,7211891 -DE,TR,1,139,201912,50769042 -DE,TR,1,141,201912,143644103 -DE,TR,1,142,201912,278282 -DE,TR,1,143,201912,46010165 -DE,TR,1,151,201912,2196476 -DE,TR,1,152,201912,3682155 -DE,TR,1,161,201912,12958 -DE,TR,1,162,201912,518338 -DE,TR,1,171,201912,2087775 -DE,TR,1,172,201912,4592873 -DE,TR,1,181,201912,208939 -DE,TR,1,192,201912,3085598 -DE,TR,1,201,201912,5181340 -DE,TR,1,202,201912,43328 -DE,TR,1,203,201912,1329521 -DE,TR,1,204,201912,3522847 -DE,TR,1,205,201912,1904645 -DE,TR,1,206,201912,909330 -DE,TR,1,211,201912,113710 -DE,TR,1,212,201912,3690724 -DE,TR,1,221,201912,24768945 -DE,TR,1,222,201912,21533399 -DE,TR,1,231,201912,4299292 -DE,TR,1,232,201912,96815 -DE,TR,1,233,201912,4831351 -DE,TR,1,234,201912,3204368 -DE,TR,1,235,201912,47 -DE,TR,1,236,201912,223871 -DE,TR,1,237,201912,976901 -DE,TR,1,239,201912,746937 -DE,TR,1,241,201912,2040104 -DE,TR,1,242,201912,2103081 -DE,TR,1,243,201912,751884 -DE,TR,1,244,201912,22092961 -DE,TR,1,245,201912,107446 -DE,TR,1,251,201912,4371105 -DE,TR,1,252,201912,12190868 -DE,TR,1,253,201912,123644 -DE,TR,1,254,201912,46030 -DE,TR,1,257,201912,6810485 -DE,TR,1,259,201912,23503562 -DE,TR,1,261,201912,402877 -DE,TR,1,262,201912,152511 -DE,TR,1,263,201912,684207 -DE,TR,1,264,201912,14231571 -DE,TR,1,265,201912,5196675 -DE,TR,1,266,201912,110532 -DE,TR,1,267,201912,1395703 -DE,TR,1,268,201912,735 -DE,TR,1,271,201912,6969089 -DE,TR,1,272,201912,511196 -DE,TR,1,273,201912,4661395 -DE,TR,1,274,201912,2647080 -DE,TR,1,275,201912,34126606 -DE,TR,1,279,201912,3499098 -DE,TR,1,281,201912,104380200 -DE,TR,1,282,201912,13285014 -DE,TR,1,283,201912,370383 -DE,TR,1,284,201912,5617957 -DE,TR,1,289,201912,11258466 -DE,TR,1,291,201912,99856802 -DE,TR,1,292,201912,6684679 -DE,TR,1,293,201912,52541521 -DE,TR,1,302,201912,1153243 -DE,TR,1,303,201912,25025675 -DE,TR,1,309,201912,393569 -DE,TR,1,310,201912,18969404 -DE,TR,1,321,201912,8160093 -DE,TR,1,322,201912,94305 -DE,TR,1,323,201912,115516 -DE,TR,1,324,201912,227138 -DE,TR,1,325,201912,9901790 -DE,TR,1,329,201912,905082 -DE,TR,2,011,201912,458219 -DE,TR,2,012,201912,608092 -DE,TR,2,013,201912,114045 -DE,TR,2,014,201912,110796 -DE,TR,2,022,201912,8050 -DE,TR,2,023,201912,53775 -DE,TR,2,081,201912,190519 -DE,TR,2,089,201912,384755 -DE,TR,2,101,201912,518942 -DE,TR,2,102,201912,62741 -DE,TR,2,103,201912,886018 -DE,TR,2,104,201912,176413 -DE,TR,2,105,201912,1029718 -DE,TR,2,106,201912,1356782 -DE,TR,2,107,201912,389964 -DE,TR,2,108,201912,10668861 -DE,TR,2,109,201912,1093252 -DE,TR,2,110,201912,5353333 -DE,TR,2,120,201912,6823780 -DE,TR,2,131,201912,1612415 -DE,TR,2,132,201912,9888709 -DE,TR,2,139,201912,10471698 -DE,TR,2,141,201912,2360841 -DE,TR,2,142,201912,19159 -DE,TR,2,143,201912,184922 -DE,TR,2,151,201912,1762425 -DE,TR,2,152,201912,2062511 -DE,TR,2,161,201912,225898 -DE,TR,2,162,201912,1225243 -DE,TR,2,171,201912,22774489 -DE,TR,2,172,201912,5955025 -DE,TR,2,17S,201912,14180 -DE,TR,2,181,201912,118976 -DE,TR,2,191,201912,38819 -DE,TR,2,192,201912,2682787 -DE,TR,2,201,201912,87604671 -DE,TR,2,202,201912,9362627 -DE,TR,2,203,201912,13130177 -DE,TR,2,204,201912,21976884 -DE,TR,2,205,201912,43756931 -DE,TR,2,206,201912,1741612 -DE,TR,2,20S,201912,178229 -DE,TR,2,211,201912,3769836 -DE,TR,2,212,201912,75424175 -DE,TR,2,221,201912,18535740 -DE,TR,2,222,201912,35057664 -DE,TR,2,231,201912,4571175 -DE,TR,2,232,201912,1438508 -DE,TR,2,233,201912,39843 -DE,TR,2,234,201912,1310016 -DE,TR,2,235,201912,144197 -DE,TR,2,236,201912,283121 -DE,TR,2,237,201912,10689 -DE,TR,2,239,201912,5048513 -DE,TR,2,241,201912,17906707 -DE,TR,2,242,201912,6210103 -DE,TR,2,243,201912,4258992 -DE,TR,2,244,201912,83113001 -DE,TR,2,245,201912,92252 -DE,TR,2,251,201912,1818349 -DE,TR,2,252,201912,4996845 -DE,TR,2,253,201912,821046 -DE,TR,2,254,201912,24422 -DE,TR,2,257,201912,19306357 -DE,TR,2,259,201912,23122017 -DE,TR,2,261,201912,11264496 -DE,TR,2,262,201912,15735560 -DE,TR,2,263,201912,9365002 -DE,TR,2,264,201912,5664793 -DE,TR,2,265,201912,50596710 -DE,TR,2,266,201912,6586293 -DE,TR,2,267,201912,7626570 -DE,TR,2,268,201912,59617 -DE,TR,2,271,201912,43424183 -DE,TR,2,272,201912,3787120 -DE,TR,2,273,201912,17391799 -DE,TR,2,274,201912,5514367 -DE,TR,2,275,201912,10220711 -DE,TR,2,279,201912,21606788 -DE,TR,2,281,201912,127611971 -DE,TR,2,282,201912,92987175 -DE,TR,2,283,201912,911860 -DE,TR,2,284,201912,23160147 -DE,TR,2,289,201912,107341817 -DE,TR,2,291,201912,135147307 -DE,TR,2,292,201912,6350224 -DE,TR,2,293,201912,89908977 -DE,TR,2,301,201912,921953 -DE,TR,2,302,201912,27432486 -DE,TR,2,303,201912,280585452 -DE,TR,2,309,201912,283307 -DE,TR,2,310,201912,3269421 -DE,TR,2,321,201912,1646260 -DE,TR,2,322,201912,316400 -DE,TR,2,323,201912,213738 -DE,TR,2,324,201912,249661 -DE,TR,2,325,201912,18684316 -DE,TR,2,329,201912,4632671 -DE,TT,1,110,201912,38 -DE,TT,1,201,201912,206538 -DE,TT,1,241,201912,846829 -DE,TT,1,282,201912,5845 -DE,TT,2,103,201912,118114 -DE,TT,2,105,201912,538219 -DE,TT,2,106,201912,21850 -DE,TT,2,107,201912,24450 -DE,TT,2,108,201912,47554 -DE,TT,2,139,201912,14641 -DE,TT,2,141,201912,3748 -DE,TT,2,152,201912,9914 -DE,TT,2,171,201912,105222 -DE,TT,2,172,201912,10182 -DE,TT,2,192,201912,38681 -DE,TT,2,201,201912,58237 -DE,TT,2,203,201912,44590 -DE,TT,2,204,201912,6787 -DE,TT,2,205,201912,52796 -DE,TT,2,211,201912,7695 -DE,TT,2,212,201912,185803 -DE,TT,2,221,201912,42291 -DE,TT,2,222,201912,153413 -DE,TT,2,231,201912,13543 -DE,TT,2,232,201912,2442 -DE,TT,2,234,201912,6312 -DE,TT,2,239,201912,23616 -DE,TT,2,241,201912,1650661 -DE,TT,2,242,201912,5715 -DE,TT,2,244,201912,38370 -DE,TT,2,251,201912,149887 -DE,TT,2,257,201912,58896 -DE,TT,2,259,201912,100899 -DE,TT,2,261,201912,3058 -DE,TT,2,262,201912,69383 -DE,TT,2,263,201912,24345 -DE,TT,2,264,201912,3510 -DE,TT,2,265,201912,681143 -DE,TT,2,266,201912,64572 -DE,TT,2,267,201912,114690 -DE,TT,2,271,201912,2927985 -DE,TT,2,272,201912,1701549 -DE,TT,2,273,201912,165666 -DE,TT,2,274,201912,23774 -DE,TT,2,275,201912,343 -DE,TT,2,279,201912,46708 -DE,TT,2,281,201912,426969 -DE,TT,2,282,201912,461618 -DE,TT,2,283,201912,256725 -DE,TT,2,289,201912,336863 -DE,TT,2,291,201912,766312 -DE,TT,2,293,201912,193474 -DE,TT,2,310,201912,3028 -DE,TT,2,325,201912,82090 -DE,TT,2,329,201912,28323 -DE,TV,1,321,201912,13969 -DE,TW,1,012,201912,35717 -DE,TW,1,013,201912,112862 -DE,TW,1,014,201912,815 -DE,TW,1,030,201912,96281 -DE,TW,1,089,201912,17487 -DE,TW,1,101,201912,98404 -DE,TW,1,102,201912,304383 -DE,TW,1,103,201912,379956 -DE,TW,1,104,201912,120300 -DE,TW,1,106,201912,30748 -DE,TW,1,107,201912,10203 -DE,TW,1,108,201912,308496 -DE,TW,1,109,201912,12971 -DE,TW,1,110,201912,126578 -DE,TW,1,120,201912,1648 -DE,TW,1,131,201912,4768 -DE,TW,1,132,201912,1283512 -DE,TW,1,139,201912,5558828 -DE,TW,1,141,201912,901471 -DE,TW,1,143,201912,83633 -DE,TW,1,151,201912,672345 -DE,TW,1,152,201912,193830 -DE,TW,1,162,201912,499477 -DE,TW,1,171,201912,221895 -DE,TW,1,172,201912,735757 -DE,TW,1,181,201912,6185 -DE,TW,1,192,201912,378276 -DE,TW,1,201,201912,8392452 -DE,TW,1,203,201912,53076 -DE,TW,1,204,201912,657998 -DE,TW,1,205,201912,6065226 -DE,TW,1,206,201912,905097 -DE,TW,1,211,201912,4239667 -DE,TW,1,212,201912,133829 -DE,TW,1,221,201912,3064506 -DE,TW,1,222,201912,8227461 -DE,TW,1,231,201912,1424790 -DE,TW,1,234,201912,242273 -DE,TW,1,237,201912,24478 -DE,TW,1,239,201912,229424 -DE,TW,1,241,201912,863722 -DE,TW,1,242,201912,1454854 -DE,TW,1,243,201912,267763 -DE,TW,1,244,201912,2178277 -DE,TW,1,245,201912,108245 -DE,TW,1,251,201912,138207 -DE,TW,1,252,201912,31044 -DE,TW,1,253,201912,10146 -DE,TW,1,254,201912,768648 -DE,TW,1,257,201912,15309171 -DE,TW,1,259,201912,27453882 -DE,TW,1,261,201912,172076418 -DE,TW,1,262,201912,41714687 -DE,TW,1,263,201912,38071834 -DE,TW,1,264,201912,4716597 -DE,TW,1,265,201912,10199260 -DE,TW,1,266,201912,163575 -DE,TW,1,267,201912,3158158 -DE,TW,1,268,201912,224226 -DE,TW,1,271,201912,4872321 -DE,TW,1,272,201912,1804421 -DE,TW,1,273,201912,6810306 -DE,TW,1,274,201912,4568760 -DE,TW,1,275,201912,712386 -DE,TW,1,279,201912,23538209 -DE,TW,1,281,201912,13887940 -DE,TW,1,282,201912,11902008 -DE,TW,1,283,201912,836122 -DE,TW,1,284,201912,8199096 -DE,TW,1,289,201912,5646808 -DE,TW,1,291,201912,1410424 -DE,TW,1,292,201912,36004 -DE,TW,1,293,201912,6542232 -DE,TW,1,302,201912,1572 -DE,TW,1,303,201912,3665256 -DE,TW,1,309,201912,43854184 -DE,TW,1,310,201912,4390165 -DE,TW,1,321,201912,117152 -DE,TW,1,322,201912,746017 -DE,TW,1,323,201912,4822717 -DE,TW,1,324,201912,1927807 -DE,TW,1,325,201912,5730293 -DE,TW,1,329,201912,1173774 -DE,TW,2,011,201912,90192 -DE,TW,2,012,201912,188552 -DE,TW,2,014,201912,2101 -DE,TW,2,023,201912,140 -DE,TW,2,081,201912,39833 -DE,TW,2,089,201912,170074 -DE,TW,2,101,201912,258371 -DE,TW,2,103,201912,168048 -DE,TW,2,104,201912,81715 -DE,TW,2,105,201912,962916 -DE,TW,2,106,201912,538158 -DE,TW,2,107,201912,82746 -DE,TW,2,108,201912,2782126 -DE,TW,2,109,201912,326687 -DE,TW,2,110,201912,716788 -DE,TW,2,120,201912,4397031 -DE,TW,2,131,201912,15714 -DE,TW,2,132,201912,124168 -DE,TW,2,139,201912,851054 -DE,TW,2,141,201912,580623 -DE,TW,2,142,201912,2770 -DE,TW,2,143,201912,116059 -DE,TW,2,151,201912,1169676 -DE,TW,2,152,201912,742995 -DE,TW,2,161,201912,618382 -DE,TW,2,162,201912,601389 -DE,TW,2,171,201912,1614227 -DE,TW,2,172,201912,902482 -DE,TW,2,17S,201912,22930 -DE,TW,2,192,201912,1145320 -DE,TW,2,201,201912,40137580 -DE,TW,2,202,201912,612410 -DE,TW,2,203,201912,1395429 -DE,TW,2,204,201912,5038614 -DE,TW,2,205,201912,25389959 -DE,TW,2,206,201912,314693 -DE,TW,2,20S,201912,194392 -DE,TW,2,211,201912,5212956 -DE,TW,2,212,201912,33179241 -DE,TW,2,221,201912,3225817 -DE,TW,2,222,201912,4548502 -DE,TW,2,231,201912,1937346 -DE,TW,2,232,201912,774540 -DE,TW,2,233,201912,75686 -DE,TW,2,234,201912,2703401 -DE,TW,2,235,201912,181 -DE,TW,2,236,201912,86946 -DE,TW,2,239,201912,1398334 -DE,TW,2,241,201912,1886933 -DE,TW,2,242,201912,1087616 -DE,TW,2,243,201912,1251788 -DE,TW,2,244,201912,6160508 -DE,TW,2,245,201912,36626 -DE,TW,2,251,201912,30475190 -DE,TW,2,252,201912,47348 -DE,TW,2,253,201912,3415 -DE,TW,2,254,201912,6783 -DE,TW,2,257,201912,5127185 -DE,TW,2,259,201912,2475919 -DE,TW,2,261,201912,75803300 -DE,TW,2,262,201912,3759489 -DE,TW,2,263,201912,4473189 -DE,TW,2,264,201912,982796 -DE,TW,2,265,201912,30279603 -DE,TW,2,266,201912,6427518 -DE,TW,2,267,201912,8773685 -DE,TW,2,268,201912,1116 -DE,TW,2,271,201912,22431880 -DE,TW,2,272,201912,805854 -DE,TW,2,273,201912,3823096 -DE,TW,2,274,201912,1650709 -DE,TW,2,275,201912,1522688 -DE,TW,2,279,201912,9301553 -DE,TW,2,281,201912,24254533 -DE,TW,2,282,201912,32265082 -DE,TW,2,283,201912,1029564 -DE,TW,2,284,201912,7430896 -DE,TW,2,289,201912,43582611 -DE,TW,2,291,201912,25045966 -DE,TW,2,292,201912,601828 -DE,TW,2,293,201912,3612085 -DE,TW,2,301,201912,50 -DE,TW,2,302,201912,67474 -DE,TW,2,303,201912,72063040 -DE,TW,2,309,201912,1299969 -DE,TW,2,310,201912,1332000 -DE,TW,2,321,201912,650981 -DE,TW,2,322,201912,512608 -DE,TW,2,323,201912,317221 -DE,TW,2,324,201912,304360 -DE,TW,2,325,201912,6768535 -DE,TW,2,329,201912,1319702 -DE,TZ,1,011,201912,634 -DE,TZ,1,012,201912,3383193 -DE,TZ,1,014,201912,169348 -DE,TZ,1,030,201912,15492 -DE,TZ,1,102,201912,429594 -DE,TZ,1,103,201912,10119 -DE,TZ,1,110,201912,2 -DE,TZ,1,120,201912,4263246 -DE,TZ,1,265,201912,2260 -DE,TZ,1,321,201912,13 -DE,TZ,2,108,201912,739536 -DE,TZ,2,132,201912,7136 -DE,TZ,2,139,201912,101661 -DE,TZ,2,141,201912,86052 -DE,TZ,2,151,201912,4752 -DE,TZ,2,162,201912,13177 -DE,TZ,2,171,201912,135326 -DE,TZ,2,172,201912,817 -DE,TZ,2,181,201912,1000 -DE,TZ,2,192,201912,2703 -DE,TZ,2,201,201912,916538 -DE,TZ,2,202,201912,22446 -DE,TZ,2,203,201912,6310 -DE,TZ,2,204,201912,212196 -DE,TZ,2,205,201912,608887 -DE,TZ,2,211,201912,12952 -DE,TZ,2,212,201912,716109 -DE,TZ,2,221,201912,265119 -DE,TZ,2,222,201912,848323 -DE,TZ,2,231,201912,7955 -DE,TZ,2,239,201912,820 -DE,TZ,2,241,201912,664051 -DE,TZ,2,242,201912,41407 -DE,TZ,2,244,201912,20608 -DE,TZ,2,251,201912,113867 -DE,TZ,2,257,201912,376228 -DE,TZ,2,259,201912,657799 -DE,TZ,2,261,201912,423269 -DE,TZ,2,262,201912,113555 -DE,TZ,2,263,201912,10159 -DE,TZ,2,264,201912,2894 -DE,TZ,2,265,201912,177651 -DE,TZ,2,266,201912,51358 -DE,TZ,2,267,201912,375868 -DE,TZ,2,271,201912,198349 -DE,TZ,2,272,201912,273233 -DE,TZ,2,273,201912,105428 -DE,TZ,2,274,201912,7398 -DE,TZ,2,275,201912,14464 -DE,TZ,2,279,201912,209246 -DE,TZ,2,281,201912,586790 -DE,TZ,2,282,201912,775475 -DE,TZ,2,283,201912,422 -DE,TZ,2,284,201912,3449 -DE,TZ,2,289,201912,932331 -DE,TZ,2,291,201912,1963116 -DE,TZ,2,292,201912,14224 -DE,TZ,2,293,201912,212719 -DE,TZ,2,303,201912,9031 -DE,TZ,2,309,201912,4143 -DE,TZ,2,310,201912,40262 -DE,TZ,2,323,201912,2722 -DE,TZ,2,325,201912,347132 -DE,TZ,2,329,201912,51988 -DE,UA,1,011,201912,73707510 -DE,UA,1,012,201912,471042 -DE,UA,1,013,201912,10295 -DE,UA,1,014,201912,294967 -DE,UA,1,021,201912,4883 -DE,UA,1,022,201912,557275 -DE,UA,1,071,201912,1089622 -DE,UA,1,072,201912,25300 -DE,UA,1,081,201912,126608 -DE,UA,1,089,201912,5849 -DE,UA,1,101,201912,363082 -DE,UA,1,102,201912,571057 -DE,UA,1,103,201912,3405657 -DE,UA,1,104,201912,283529 -DE,UA,1,105,201912,29544 -DE,UA,1,106,201912,154528 -DE,UA,1,107,201912,742192 -DE,UA,1,108,201912,2665621 -DE,UA,1,110,201912,384052 -DE,UA,1,120,201912,4469 -DE,UA,1,132,201912,18350 -DE,UA,1,139,201912,2033891 -DE,UA,1,141,201912,12052957 -DE,UA,1,143,201912,156669 -DE,UA,1,151,201912,300090 -DE,UA,1,152,201912,20166 -DE,UA,1,161,201912,1685167 -DE,UA,1,162,201912,4680465 -DE,UA,1,171,201912,748264 -DE,UA,1,172,201912,1208983 -DE,UA,1,181,201912,10032 -DE,UA,1,192,201912,10215 -DE,UA,1,201,201912,6111453 -DE,UA,1,204,201912,310615 -DE,UA,1,205,201912,89578 -DE,UA,1,211,201912,29906 -DE,UA,1,212,201912,196 -DE,UA,1,221,201912,409257 -DE,UA,1,222,201912,892454 -DE,UA,1,231,201912,883218 -DE,UA,1,232,201912,14310 -DE,UA,1,233,201912,90827 -DE,UA,1,234,201912,96274 -DE,UA,1,236,201912,110 -DE,UA,1,237,201912,12129 -DE,UA,1,239,201912,552331 -DE,UA,1,241,201912,1278082 -DE,UA,1,242,201912,5117030 -DE,UA,1,243,201912,5499978 -DE,UA,1,244,201912,676700 -DE,UA,1,251,201912,285954 -DE,UA,1,252,201912,62452 -DE,UA,1,257,201912,167556 -DE,UA,1,259,201912,1835415 -DE,UA,1,261,201912,30617 -DE,UA,1,262,201912,20294 -DE,UA,1,263,201912,33176 -DE,UA,1,264,201912,38051 -DE,UA,1,265,201912,213244 -DE,UA,1,266,201912,1279 -DE,UA,1,267,201912,97420 -DE,UA,1,271,201912,1078631 -DE,UA,1,272,201912,52158 -DE,UA,1,273,201912,2536870 -DE,UA,1,274,201912,757786 -DE,UA,1,275,201912,288293 -DE,UA,1,279,201912,823788 -DE,UA,1,281,201912,3976070 -DE,UA,1,282,201912,941096 -DE,UA,1,283,201912,229225 -DE,UA,1,284,201912,72883 -DE,UA,1,289,201912,1494319 -DE,UA,1,291,201912,27271 -DE,UA,1,292,201912,105561 -DE,UA,1,293,201912,30710747 -DE,UA,1,301,201912,117081 -DE,UA,1,302,201912,1039131 -DE,UA,1,303,201912,159914 -DE,UA,1,309,201912,31886 -DE,UA,1,310,201912,6165437 -DE,UA,1,321,201912,34248 -DE,UA,1,322,201912,4932 -DE,UA,1,323,201912,180453 -DE,UA,1,324,201912,137752 -DE,UA,1,325,201912,78380 -DE,UA,1,329,201912,332367 -DE,UA,2,011,201912,561133 -DE,UA,2,012,201912,617209 -DE,UA,2,013,201912,63700 -DE,UA,2,014,201912,1304316 -DE,UA,2,023,201912,8620 -DE,UA,2,030,201912,955 -DE,UA,2,072,201912,17335 -DE,UA,2,081,201912,128577 -DE,UA,2,089,201912,104794 -DE,UA,2,101,201912,1376734 -DE,UA,2,102,201912,674064 -DE,UA,2,103,201912,128587 -DE,UA,2,104,201912,73096 -DE,UA,2,105,201912,2406585 -DE,UA,2,106,201912,1326713 -DE,UA,2,107,201912,616481 -DE,UA,2,108,201912,10875395 -DE,UA,2,109,201912,1255268 -DE,UA,2,110,201912,3010417 -DE,UA,2,120,201912,1614797 -DE,UA,2,131,201912,209929 -DE,UA,2,132,201912,4648890 -DE,UA,2,139,201912,4077065 -DE,UA,2,141,201912,3566012 -DE,UA,2,142,201912,74402 -DE,UA,2,143,201912,593728 -DE,UA,2,151,201912,542178 -DE,UA,2,152,201912,496833 -DE,UA,2,161,201912,90183 -DE,UA,2,162,201912,1561158 -DE,UA,2,171,201912,6292536 -DE,UA,2,172,201912,2974439 -DE,UA,2,181,201912,541296 -DE,UA,2,192,201912,2450911 -DE,UA,2,201,201912,10716996 -DE,UA,2,202,201912,19899571 -DE,UA,2,203,201912,2408002 -DE,UA,2,204,201912,8741243 -DE,UA,2,205,201912,8165671 -DE,UA,2,206,201912,240735 -DE,UA,2,211,201912,903996 -DE,UA,2,212,201912,21364770 -DE,UA,2,221,201912,2784622 -DE,UA,2,222,201912,8428750 -DE,UA,2,231,201912,411983 -DE,UA,2,232,201912,1650901 -DE,UA,2,233,201912,126909 -DE,UA,2,234,201912,296648 -DE,UA,2,235,201912,27153 -DE,UA,2,236,201912,209217 -DE,UA,2,237,201912,20445 -DE,UA,2,239,201912,1371137 -DE,UA,2,241,201912,644739 -DE,UA,2,242,201912,192527 -DE,UA,2,243,201912,481141 -DE,UA,2,244,201912,2772933 -DE,UA,2,245,201912,73998 -DE,UA,2,251,201912,1167214 -DE,UA,2,252,201912,560430 -DE,UA,2,253,201912,133783 -DE,UA,2,254,201912,54914 -DE,UA,2,257,201912,2829157 -DE,UA,2,259,201912,3163401 -DE,UA,2,261,201912,2920396 -DE,UA,2,262,201912,6663755 -DE,UA,2,263,201912,1129893 -DE,UA,2,264,201912,1009360 -DE,UA,2,265,201912,7147889 -DE,UA,2,266,201912,5264676 -DE,UA,2,267,201912,1337356 -DE,UA,2,268,201912,66719 -DE,UA,2,271,201912,7164441 -DE,UA,2,272,201912,1588107 -DE,UA,2,273,201912,4414342 -DE,UA,2,274,201912,734347 -DE,UA,2,275,201912,4431244 -DE,UA,2,279,201912,3880733 -DE,UA,2,281,201912,30162693 -DE,UA,2,282,201912,24892024 -DE,UA,2,283,201912,6454953 -DE,UA,2,284,201912,5761952 -DE,UA,2,289,201912,19288351 -DE,UA,2,291,201912,39526672 -DE,UA,2,292,201912,2853302 -DE,UA,2,293,201912,8911792 -DE,UA,2,301,201912,9 -DE,UA,2,302,201912,23303 -DE,UA,2,303,201912,877271 -DE,UA,2,309,201912,918509 -DE,UA,2,310,201912,1787371 -DE,UA,2,321,201912,731626 -DE,UA,2,322,201912,362735 -DE,UA,2,323,201912,833365 -DE,UA,2,324,201912,264190 -DE,UA,2,325,201912,7814663 -DE,UA,2,329,201912,1242844 -DE,UA,2,32S,201912,59 -DE,UG,1,011,201912,244443 -DE,UG,1,012,201912,5791359 -DE,UG,1,013,201912,109907 -DE,UG,1,104,201912,4358 -DE,UG,1,108,201912,10602 -DE,UG,1,141,201912,256722 -DE,UG,1,143,201912,14868 -DE,UG,1,162,201912,27941 -DE,UG,1,321,201912,11756 -DE,UG,2,012,201912,76500 -DE,UG,2,013,201912,1791 -DE,UG,2,107,201912,5474 -DE,UG,2,108,201912,108127 -DE,UG,2,110,201912,81614 -DE,UG,2,139,201912,15047 -DE,UG,2,141,201912,258204 -DE,UG,2,151,201912,3048 -DE,UG,2,171,201912,58823 -DE,UG,2,172,201912,69 -DE,UG,2,192,201912,78110 -DE,UG,2,201,201912,497680 -DE,UG,2,202,201912,29384 -DE,UG,2,203,201912,1939 -DE,UG,2,204,201912,120700 -DE,UG,2,205,201912,1006735 -DE,UG,2,211,201912,102829 -DE,UG,2,212,201912,629633 -DE,UG,2,221,201912,28070 -DE,UG,2,222,201912,240404 -DE,UG,2,244,201912,29597 -DE,UG,2,257,201912,27750 -DE,UG,2,259,201912,14970 -DE,UG,2,261,201912,47348 -DE,UG,2,262,201912,207535 -DE,UG,2,263,201912,24451 -DE,UG,2,264,201912,21230 -DE,UG,2,265,201912,756895 -DE,UG,2,266,201912,158572 -DE,UG,2,267,201912,275896 -DE,UG,2,271,201912,228639 -DE,UG,2,272,201912,22924 -DE,UG,2,273,201912,61402 -DE,UG,2,274,201912,18137 -DE,UG,2,275,201912,4735 -DE,UG,2,279,201912,214443 -DE,UG,2,281,201912,255212 -DE,UG,2,282,201912,831530 -DE,UG,2,283,201912,6018 -DE,UG,2,289,201912,439975 -DE,UG,2,291,201912,13450 -DE,UG,2,293,201912,34538 -DE,UG,2,310,201912,5453 -DE,UG,2,324,201912,258 -DE,UG,2,325,201912,102338 -DE,UG,2,329,201912,90011 -DE,US,1,011,201912,45977014 -DE,US,1,012,201912,13034204 -DE,US,1,013,201912,41138 -DE,US,1,014,201912,4778481 -DE,US,1,021,201912,18624 -DE,US,1,022,201912,477485 -DE,US,1,023,201912,57335 -DE,US,1,030,201912,172781 -DE,US,1,051,201912,28099145 -DE,US,1,061,201912,231181145 -DE,US,1,072,201912,22676850 -DE,US,1,081,201912,3315319 -DE,US,1,089,201912,1119590 -DE,US,1,101,201912,1193148 -DE,US,1,102,201912,13511960 -DE,US,1,103,201912,32194740 -DE,US,1,104,201912,233307 -DE,US,1,105,201912,410714 -DE,US,1,106,201912,1814002 -DE,US,1,107,201912,541235 -DE,US,1,108,201912,12955571 -DE,US,1,109,201912,801734 -DE,US,1,110,201912,6399909 -DE,US,1,120,201912,5932620 -DE,US,1,131,201912,63015 -DE,US,1,132,201912,1418382 -DE,US,1,139,201912,9443602 -DE,US,1,141,201912,3559845 -DE,US,1,142,201912,35317 -DE,US,1,143,201912,1112333 -DE,US,1,151,201912,1868982 -DE,US,1,152,201912,605469 -DE,US,1,161,201912,1803310 -DE,US,1,162,201912,1748486 -DE,US,1,171,201912,21841502 -DE,US,1,172,201912,4298549 -DE,US,1,181,201912,571980 -DE,US,1,192,201912,25754776 -DE,US,1,201,201912,102190353 -DE,US,1,202,201912,947950 -DE,US,1,203,201912,7426898 -DE,US,1,204,201912,21404354 -DE,US,1,205,201912,120668421 -DE,US,1,206,201912,2446398 -DE,US,1,211,201912,26728493 -DE,US,1,212,201912,392446905 -DE,US,1,221,201912,25369510 -DE,US,1,222,201912,58676049 -DE,US,1,231,201912,29564282 -DE,US,1,232,201912,1153641 -DE,US,1,233,201912,10606 -DE,US,1,234,201912,12289284 -DE,US,1,235,201912,10456 -DE,US,1,236,201912,76922 -DE,US,1,237,201912,10499 -DE,US,1,239,201912,17298660 -DE,US,1,241,201912,2915522 -DE,US,1,242,201912,3680060 -DE,US,1,243,201912,1341720 -DE,US,1,244,201912,55304923 -DE,US,1,245,201912,98606 -DE,US,1,251,201912,893927 -DE,US,1,252,201912,1121929 -DE,US,1,253,201912,268350 -DE,US,1,254,201912,1868835 -DE,US,1,257,201912,19120676 -DE,US,1,259,201912,41140402 -DE,US,1,261,201912,92013565 -DE,US,1,262,201912,33185600 -DE,US,1,263,201912,61624516 -DE,US,1,264,201912,15321452 -DE,US,1,265,201912,223920046 -DE,US,1,266,201912,45986198 -DE,US,1,267,201912,68286585 -DE,US,1,268,201912,402441 -DE,US,1,271,201912,81541466 -DE,US,1,272,201912,5624394 -DE,US,1,273,201912,25941618 -DE,US,1,274,201912,6876252 -DE,US,1,275,201912,3524960 -DE,US,1,279,201912,50195446 -DE,US,1,281,201912,196735615 -DE,US,1,282,201912,90814214 -DE,US,1,283,201912,12563831 -DE,US,1,284,201912,9689951 -DE,US,1,289,201912,67714731 -DE,US,1,291,201912,474402168 -DE,US,1,292,201912,2056360 -DE,US,1,293,201912,50140801 -DE,US,1,301,201912,4536180 -DE,US,1,302,201912,175108 -DE,US,1,303,201912,646231998 -DE,US,1,309,201912,3830061 -DE,US,1,310,201912,1775920 -DE,US,1,321,201912,28124332 -DE,US,1,322,201912,3745290 -DE,US,1,323,201912,3387215 -DE,US,1,324,201912,4842458 -DE,US,1,325,201912,153658970 -DE,US,1,329,201912,7361950 -DE,US,2,011,201912,719934 -DE,US,2,012,201912,8898356 -DE,US,2,013,201912,10071 -DE,US,2,014,201912,18728910 -DE,US,2,021,201912,4403 -DE,US,2,023,201912,202793 -DE,US,2,030,201912,124652 -DE,US,2,081,201912,700689 -DE,US,2,089,201912,1138508 -DE,US,2,101,201912,1651735 -DE,US,2,102,201912,5394399 -DE,US,2,103,201912,7471866 -DE,US,2,104,201912,968205 -DE,US,2,105,201912,4170455 -DE,US,2,106,201912,12459586 -DE,US,2,107,201912,5277273 -DE,US,2,108,201912,54054343 -DE,US,2,109,201912,3012462 -DE,US,2,110,201912,21850125 -DE,US,2,120,201912,941150 -DE,US,2,131,201912,2404752 -DE,US,2,132,201912,4958984 -DE,US,2,139,201912,32909484 -DE,US,2,141,201912,11710916 -DE,US,2,142,201912,252061 -DE,US,2,143,201912,2080365 -DE,US,2,151,201912,6256829 -DE,US,2,152,201912,19902572 -DE,US,2,161,201912,27798314 -DE,US,2,162,201912,16755706 -DE,US,2,171,201912,38849572 -DE,US,2,172,201912,10595883 -DE,US,2,17S,201912,276709 -DE,US,2,181,201912,484578 -DE,US,2,192,201912,7272305 -DE,US,2,201,201912,333920612 -DE,US,2,202,201912,8725144 -DE,US,2,203,201912,21725494 -DE,US,2,204,201912,32175269 -DE,US,2,205,201912,137426196 -DE,US,2,206,201912,7917166 -DE,US,2,20S,201912,10042896 -DE,US,2,211,201912,57547864 -DE,US,2,212,201912,1171187411 -DE,US,2,221,201912,63694218 -DE,US,2,222,201912,125109956 -DE,US,2,231,201912,35465531 -DE,US,2,232,201912,3325775 -DE,US,2,233,201912,1407521 -DE,US,2,234,201912,11429467 -DE,US,2,235,201912,43199 -DE,US,2,236,201912,4117574 -DE,US,2,237,201912,369698 -DE,US,2,239,201912,22698465 -DE,US,2,241,201912,21826566 -DE,US,2,242,201912,34975727 -DE,US,2,243,201912,10322494 -DE,US,2,244,201912,222059168 -DE,US,2,245,201912,223955 -DE,US,2,251,201912,17407980 -DE,US,2,252,201912,5851622 -DE,US,2,253,201912,1085697 -DE,US,2,254,201912,8863929 -DE,US,2,257,201912,87024166 -DE,US,2,259,201912,100997675 -DE,US,2,261,201912,54651616 -DE,US,2,262,201912,58933570 -DE,US,2,263,201912,65701510 -DE,US,2,264,201912,23877006 -DE,US,2,265,201912,378562591 -DE,US,2,266,201912,146885571 -DE,US,2,267,201912,100315964 -DE,US,2,268,201912,480170 -DE,US,2,271,201912,219733538 -DE,US,2,272,201912,50010901 -DE,US,2,273,201912,75568792 -DE,US,2,274,201912,40688375 -DE,US,2,275,201912,36042244 -DE,US,2,279,201912,131631807 -DE,US,2,281,201912,506650697 -DE,US,2,282,201912,440474438 -DE,US,2,283,201912,108588326 -DE,US,2,284,201912,143503596 -DE,US,2,289,201912,514724128 -DE,US,2,291,201912,1093343544 -DE,US,2,292,201912,19609882 -DE,US,2,293,201912,376252330 -DE,US,2,301,201912,2909387 -DE,US,2,302,201912,5063590 -DE,US,2,303,201912,429040530 -DE,US,2,309,201912,13561586 -DE,US,2,310,201912,32228341 -DE,US,2,321,201912,10127538 -DE,US,2,322,201912,5402847 -DE,US,2,323,201912,4413014 -DE,US,2,324,201912,6799922 -DE,US,2,325,201912,226968051 -DE,US,2,329,201912,17562864 -DE,US,2,32S,201912,15150 -DE,UY,1,014,201912,68657 -DE,UY,1,101,201912,1747192 -DE,UY,1,102,201912,26582 -DE,UY,1,106,201912,60979 -DE,UY,1,110,201912,16754 -DE,UY,1,131,201912,446762 -DE,UY,1,139,201912,1103 -DE,UY,1,141,201912,13772 -DE,UY,1,142,201912,34890 -DE,UY,1,143,201912,269 -DE,UY,1,151,201912,473508 -DE,UY,1,171,201912,9666901 -DE,UY,1,257,201912,5374 -DE,UY,1,262,201912,16 -DE,UY,1,266,201912,156965 -DE,UY,1,310,201912,212 -DE,UY,1,321,201912,10601 -DE,UY,1,325,201912,67775 -DE,UY,2,012,201912,994 -DE,UY,2,014,201912,327 -DE,UY,2,089,201912,360 -DE,UY,2,101,201912,98361 -DE,UY,2,102,201912,33821 -DE,UY,2,103,201912,71855 -DE,UY,2,104,201912,3622 -DE,UY,2,105,201912,20970 -DE,UY,2,106,201912,30056 -DE,UY,2,107,201912,10926 -DE,UY,2,108,201912,431321 -DE,UY,2,110,201912,188537 -DE,UY,2,120,201912,2148 -DE,UY,2,132,201912,4981 -DE,UY,2,139,201912,67820 -DE,UY,2,141,201912,50867 -DE,UY,2,143,201912,55684 -DE,UY,2,151,201912,15681 -DE,UY,2,152,201912,8497 -DE,UY,2,162,201912,73850 -DE,UY,2,171,201912,74294 -DE,UY,2,172,201912,44887 -DE,UY,2,192,201912,58765 -DE,UY,2,201,201912,940158 -DE,UY,2,203,201912,151701 -DE,UY,2,204,201912,153067 -DE,UY,2,205,201912,682942 -DE,UY,2,211,201912,38732 -DE,UY,2,212,201912,4453933 -DE,UY,2,221,201912,164732 -DE,UY,2,222,201912,316950 -DE,UY,2,231,201912,85419 -DE,UY,2,234,201912,44117 -DE,UY,2,239,201912,53449 -DE,UY,2,242,201912,24471 -DE,UY,2,243,201912,2272 -DE,UY,2,244,201912,33679 -DE,UY,2,251,201912,1257 -DE,UY,2,254,201912,13777 -DE,UY,2,257,201912,122842 -DE,UY,2,259,201912,146278 -DE,UY,2,261,201912,12077 -DE,UY,2,262,201912,24886 -DE,UY,2,263,201912,139706 -DE,UY,2,264,201912,6245 -DE,UY,2,265,201912,314599 -DE,UY,2,266,201912,186742 -DE,UY,2,267,201912,266579 -DE,UY,2,271,201912,373755 -DE,UY,2,272,201912,105223 -DE,UY,2,273,201912,92661 -DE,UY,2,274,201912,78657 -DE,UY,2,275,201912,22722 -DE,UY,2,279,201912,161603 -DE,UY,2,281,201912,948827 -DE,UY,2,282,201912,1194836 -DE,UY,2,283,201912,293298 -DE,UY,2,284,201912,32336 -DE,UY,2,289,201912,677072 -DE,UY,2,291,201912,1702200 -DE,UY,2,293,201912,104585 -DE,UY,2,303,201912,128345 -DE,UY,2,309,201912,1646 -DE,UY,2,310,201912,18414 -DE,UY,2,323,201912,7373 -DE,UY,2,324,201912,12834 -DE,UY,2,325,201912,784576 -DE,UY,2,329,201912,367586 -DE,UZ,1,011,201912,13269 -DE,UZ,1,012,201912,190544 -DE,UZ,1,013,201912,70227 -DE,UZ,1,014,201912,7000 -DE,UZ,1,103,201912,1130616 -DE,UZ,1,108,201912,6927 -DE,UZ,1,132,201912,9065 -DE,UZ,1,141,201912,292385 -DE,UZ,1,143,201912,1203 -DE,UZ,1,201,201912,206 -DE,UZ,1,241,201912,131 -DE,UZ,1,262,201912,7546 -DE,UZ,1,263,201912,70 -DE,UZ,1,265,201912,43071 -DE,UZ,1,271,201912,23967 -DE,UZ,1,281,201912,10907 -DE,UZ,1,282,201912,597 -DE,UZ,1,289,201912,3277 -DE,UZ,1,303,201912,158666 -DE,UZ,1,329,201912,2225 -DE,UZ,2,011,201912,215698 -DE,UZ,2,012,201912,38552 -DE,UZ,2,014,201912,67000 -DE,UZ,2,105,201912,129033 -DE,UZ,2,107,201912,1582 -DE,UZ,2,108,201912,412234 -DE,UZ,2,109,201912,204137 -DE,UZ,2,131,201912,1751 -DE,UZ,2,132,201912,64384 -DE,UZ,2,139,201912,172649 -DE,UZ,2,141,201912,112702 -DE,UZ,2,143,201912,2554 -DE,UZ,2,151,201912,6663 -DE,UZ,2,152,201912,21715 -DE,UZ,2,162,201912,22324 -DE,UZ,2,171,201912,141824 -DE,UZ,2,172,201912,103407 -DE,UZ,2,192,201912,712367 -DE,UZ,2,201,201912,1211487 -DE,UZ,2,202,201912,2331 -DE,UZ,2,203,201912,72138 -DE,UZ,2,204,201912,723245 -DE,UZ,2,205,201912,959047 -DE,UZ,2,211,201912,29259 -DE,UZ,2,212,201912,6007271 -DE,UZ,2,221,201912,180938 -DE,UZ,2,222,201912,1715907 -DE,UZ,2,231,201912,9345 -DE,UZ,2,232,201912,15439 -DE,UZ,2,234,201912,86918 -DE,UZ,2,239,201912,236975 -DE,UZ,2,241,201912,521 -DE,UZ,2,242,201912,52704 -DE,UZ,2,243,201912,3928 -DE,UZ,2,244,201912,237665 -DE,UZ,2,251,201912,19022 -DE,UZ,2,252,201912,48737 -DE,UZ,2,257,201912,505844 -DE,UZ,2,259,201912,312524 -DE,UZ,2,261,201912,290096 -DE,UZ,2,262,201912,79956 -DE,UZ,2,263,201912,432874 -DE,UZ,2,264,201912,154819 -DE,UZ,2,265,201912,3377439 -DE,UZ,2,266,201912,561993 -DE,UZ,2,267,201912,210481 -DE,UZ,2,271,201912,868358 -DE,UZ,2,272,201912,151764 -DE,UZ,2,273,201912,85428 -DE,UZ,2,274,201912,111242 -DE,UZ,2,275,201912,451493 -DE,UZ,2,279,201912,525114 -DE,UZ,2,281,201912,9469946 -DE,UZ,2,282,201912,7133574 -DE,UZ,2,283,201912,2262893 -DE,UZ,2,284,201912,1567958 -DE,UZ,2,289,201912,10074404 -DE,UZ,2,291,201912,3922232 -DE,UZ,2,292,201912,20005 -DE,UZ,2,293,201912,272082 -DE,UZ,2,301,201912,221886 -DE,UZ,2,303,201912,201471 -DE,UZ,2,310,201912,33497 -DE,UZ,2,321,201912,6818 -DE,UZ,2,322,201912,10457 -DE,UZ,2,323,201912,3361 -DE,UZ,2,324,201912,11270 -DE,UZ,2,325,201912,2569800 -DE,UZ,2,329,201912,117629 -DE,VA,1,321,201912,56493 -DE,VA,2,204,201912,2983 -DE,VA,2,205,201912,114493 -DE,VA,2,212,201912,11208 -DE,VA,2,222,201912,2243 -DE,VA,2,265,201912,18272 -DE,VA,2,325,201912,231 -DE,VC,2,139,201912,532 -DE,VC,2,201,201912,145 -DE,VC,2,203,201912,4595 -DE,VC,2,204,201912,522 -DE,VC,2,205,201912,12439 -DE,VC,2,211,201912,2237 -DE,VC,2,212,201912,36176 -DE,VC,2,221,201912,244 -DE,VC,2,222,201912,1618 -DE,VC,2,239,201912,1103 -DE,VC,2,257,201912,604 -DE,VC,2,259,201912,1320 -DE,VC,2,265,201912,9903 -DE,VC,2,281,201912,25586 -DE,VC,2,282,201912,4356 -DE,VC,2,293,201912,28 -DE,VE,1,012,201912,299 -DE,VE,1,110,201912,601752 -DE,VE,1,201,201912,35120 -DE,VE,1,204,201912,74 -DE,VE,1,241,201912,1107399 -DE,VE,1,265,201912,382 -DE,VE,1,321,201912,20 -DE,VE,2,139,201912,14934 -DE,VE,2,141,201912,42602 -DE,VE,2,151,201912,1509 -DE,VE,2,171,201912,284965 -DE,VE,2,172,201912,19 -DE,VE,2,201,201912,71572 -DE,VE,2,203,201912,44378 -DE,VE,2,204,201912,10825 -DE,VE,2,205,201912,11341 -DE,VE,2,212,201912,5080 -DE,VE,2,221,201912,61498 -DE,VE,2,222,201912,70789 -DE,VE,2,231,201912,83 -DE,VE,2,235,201912,2699 -DE,VE,2,239,201912,2270 -DE,VE,2,257,201912,223840 -DE,VE,2,259,201912,10313 -DE,VE,2,263,201912,69230 -DE,VE,2,265,201912,33547 -DE,VE,2,266,201912,8150 -DE,VE,2,271,201912,16121 -DE,VE,2,273,201912,952 -DE,VE,2,274,201912,2973 -DE,VE,2,275,201912,111 -DE,VE,2,279,201912,7035 -DE,VE,2,281,201912,117083 -DE,VE,2,282,201912,185529 -DE,VE,2,289,201912,240292 -DE,VE,2,310,201912,14338 -DE,VE,2,325,201912,45537 -DE,VE,2,329,201912,8398 -DE,VG,2,105,201912,57898 -DE,VG,2,281,201912,29566 -DE,VG,2,282,201912,6574 -DE,VI,2,222,201912,5039 -DE,VN,1,011,201912,35100 -DE,VN,1,012,201912,21633485 -DE,VN,1,014,201912,200118 -DE,VN,1,030,201912,67473 -DE,VN,1,089,201912,841798 -DE,VN,1,101,201912,1153025 -DE,VN,1,102,201912,10940156 -DE,VN,1,103,201912,15877526 -DE,VN,1,106,201912,627358 -DE,VN,1,107,201912,198296 -DE,VN,1,108,201912,3281095 -DE,VN,1,110,201912,57876 -DE,VN,1,120,201912,247 -DE,VN,1,131,201912,53024 -DE,VN,1,132,201912,196008 -DE,VN,1,139,201912,6692697 -DE,VN,1,141,201912,54810579 -DE,VN,1,142,201912,50 -DE,VN,1,143,201912,4493415 -DE,VN,1,151,201912,12353837 -DE,VN,1,152,201912,68159735 -DE,VN,1,162,201912,3249603 -DE,VN,1,171,201912,432 -DE,VN,1,172,201912,68870 -DE,VN,1,201,201912,219359 -DE,VN,1,203,201912,373 -DE,VN,1,204,201912,117328 -DE,VN,1,205,201912,504164 -DE,VN,1,206,201912,178315 -DE,VN,1,211,201912,248728 -DE,VN,1,212,201912,312758 -DE,VN,1,221,201912,3249612 -DE,VN,1,222,201912,8215320 -DE,VN,1,231,201912,170547 -DE,VN,1,234,201912,997485 -DE,VN,1,236,201912,306199 -DE,VN,1,237,201912,235076 -DE,VN,1,239,201912,2916 -DE,VN,1,241,201912,1305 -DE,VN,1,242,201912,657 -DE,VN,1,243,201912,1923 -DE,VN,1,244,201912,5329 -DE,VN,1,251,201912,129548 -DE,VN,1,254,201912,62 -DE,VN,1,257,201912,3924757 -DE,VN,1,259,201912,4836368 -DE,VN,1,261,201912,11185332 -DE,VN,1,262,201912,40828204 -DE,VN,1,263,201912,117476751 -DE,VN,1,264,201912,12395741 -DE,VN,1,265,201912,503069 -DE,VN,1,266,201912,51646 -DE,VN,1,267,201912,14937813 -DE,VN,1,271,201912,1367856 -DE,VN,1,272,201912,1567590 -DE,VN,1,273,201912,2746930 -DE,VN,1,274,201912,1101413 -DE,VN,1,275,201912,605787 -DE,VN,1,279,201912,10201721 -DE,VN,1,281,201912,1925136 -DE,VN,1,282,201912,7630796 -DE,VN,1,284,201912,164904 -DE,VN,1,289,201912,4884128 -DE,VN,1,291,201912,169418 -DE,VN,1,293,201912,467012 -DE,VN,1,303,201912,102942 -DE,VN,1,309,201912,11523363 -DE,VN,1,310,201912,17499646 -DE,VN,1,321,201912,704628 -DE,VN,1,322,201912,216112 -DE,VN,1,323,201912,1346284 -DE,VN,1,324,201912,2706073 -DE,VN,1,325,201912,3216036 -DE,VN,1,329,201912,1403054 -DE,VN,2,011,201912,35078 -DE,VN,2,012,201912,325343 -DE,VN,2,014,201912,3452 -DE,VN,2,022,201912,1159225 -DE,VN,2,072,201912,141932 -DE,VN,2,081,201912,20627 -DE,VN,2,089,201912,29480 -DE,VN,2,101,201912,3594599 -DE,VN,2,102,201912,188693 -DE,VN,2,103,201912,58813 -DE,VN,2,104,201912,95856 -DE,VN,2,105,201912,1282242 -DE,VN,2,106,201912,496766 -DE,VN,2,107,201912,179111 -DE,VN,2,108,201912,3547452 -DE,VN,2,109,201912,421953 -DE,VN,2,110,201912,651254 -DE,VN,2,120,201912,477969 -DE,VN,2,131,201912,39596 -DE,VN,2,132,201912,650754 -DE,VN,2,139,201912,4436097 -DE,VN,2,141,201912,393150 -DE,VN,2,143,201912,46056 -DE,VN,2,151,201912,730113 -DE,VN,2,152,201912,335186 -DE,VN,2,161,201912,328510 -DE,VN,2,162,201912,223252 -DE,VN,2,171,201912,364755 -DE,VN,2,172,201912,437898 -DE,VN,2,181,201912,34139 -DE,VN,2,192,201912,279118 -DE,VN,2,201,201912,9185599 -DE,VN,2,202,201912,2452181 -DE,VN,2,203,201912,946072 -DE,VN,2,204,201912,2478487 -DE,VN,2,205,201912,5623824 -DE,VN,2,206,201912,83403 -DE,VN,2,20S,201912,20892 -DE,VN,2,211,201912,399941 -DE,VN,2,212,201912,23812481 -DE,VN,2,221,201912,1526412 -DE,VN,2,222,201912,2878367 -DE,VN,2,231,201912,527477 -DE,VN,2,232,201912,1222678 -DE,VN,2,234,201912,561802 -DE,VN,2,236,201912,41020 -DE,VN,2,237,201912,464 -DE,VN,2,239,201912,344537 -DE,VN,2,241,201912,405292 -DE,VN,2,242,201912,1356139 -DE,VN,2,243,201912,1981854 -DE,VN,2,244,201912,1525592 -DE,VN,2,245,201912,1013 -DE,VN,2,251,201912,684328 -DE,VN,2,252,201912,23126 -DE,VN,2,253,201912,73565 -DE,VN,2,254,201912,9288 -DE,VN,2,257,201912,2211590 -DE,VN,2,259,201912,2253829 -DE,VN,2,261,201912,1149536 -DE,VN,2,262,201912,3713542 -DE,VN,2,263,201912,1952603 -DE,VN,2,264,201912,711671 -DE,VN,2,265,201912,11897747 -DE,VN,2,266,201912,7463795 -DE,VN,2,267,201912,5280578 -DE,VN,2,268,201912,13336 -DE,VN,2,271,201912,18316909 -DE,VN,2,272,201912,2764262 -DE,VN,2,273,201912,1048192 -DE,VN,2,274,201912,1308042 -DE,VN,2,275,201912,2083165 -DE,VN,2,279,201912,3874042 -DE,VN,2,281,201912,11576763 -DE,VN,2,282,201912,19861294 -DE,VN,2,283,201912,52874 -DE,VN,2,284,201912,2949010 -DE,VN,2,289,201912,24047096 -DE,VN,2,291,201912,6366881 -DE,VN,2,292,201912,5040 -DE,VN,2,293,201912,11241142 -DE,VN,2,303,201912,393910636 -DE,VN,2,309,201912,426982 -DE,VN,2,310,201912,825636 -DE,VN,2,321,201912,63366 -DE,VN,2,322,201912,10598 -DE,VN,2,323,201912,25911 -DE,VN,2,324,201912,16698 -DE,VN,2,325,201912,11380389 -DE,VN,2,329,201912,824435 -DE,VN,2,32S,201912,160 -DE,VU,2,265,201912,935 -DE,VU,2,282,201912,5138 -DE,XC,2,141,201912,11674 -DE,XC,2,151,201912,384 -DE,XC,2,152,201912,22311 -DE,XC,2,192,201912,124 -DE,XC,2,205,201912,960 -DE,XC,2,221,201912,5036 -DE,XC,2,222,201912,79 -DE,XC,2,257,201912,110 -DE,XC,2,259,201912,42 -DE,XC,2,263,201912,8872 -DE,XC,2,265,201912,5024 -DE,XC,2,281,201912,4699 -DE,XC,2,282,201912,613 -DE,XC,2,291,201912,70800 -DE,XC,2,293,201912,9204 -DE,XC,2,309,201912,3927 -DE,XC,2,310,201912,16752 -DE,XC,2,321,201912,26245 -DE,XC,2,322,201912,1272 -DE,XK,1,012,201912,216918 -DE,XK,1,103,201912,134989 -DE,XK,1,106,201912,1383 -DE,XK,1,107,201912,13661 -DE,XK,1,108,201912,47383 -DE,XK,1,110,201912,12472 -DE,XK,1,139,201912,49326 -DE,XK,1,141,201912,29359 -DE,XK,1,143,201912,178 -DE,XK,1,162,201912,203879 -DE,XK,1,203,201912,20389 -DE,XK,1,222,201912,491929 -DE,XK,1,231,201912,28592 -DE,XK,1,233,201912,14185 -DE,XK,1,234,201912,829 -DE,XK,1,236,201912,33249 -DE,XK,1,237,201912,20929 -DE,XK,1,251,201912,189701 -DE,XK,1,259,201912,79987 -DE,XK,1,271,201912,125773 -DE,XK,1,274,201912,880 -DE,XK,1,275,201912,13443 -DE,XK,1,282,201912,4405 -DE,XK,1,289,201912,14373 -DE,XK,1,293,201912,16604 -DE,XK,1,310,201912,453498 -DE,XK,1,329,201912,37 -DE,XK,2,011,201912,37810 -DE,XK,2,012,201912,4569 -DE,XK,2,014,201912,54133 -DE,XK,2,081,201912,30 -DE,XK,2,089,201912,12236 -DE,XK,2,101,201912,180321 -DE,XK,2,102,201912,988 -DE,XK,2,103,201912,47506 -DE,XK,2,104,201912,3924 -DE,XK,2,105,201912,1245839 -DE,XK,2,106,201912,56402 -DE,XK,2,107,201912,151502 -DE,XK,2,108,201912,604131 -DE,XK,2,109,201912,105625 -DE,XK,2,110,201912,187444 -DE,XK,2,120,201912,330572 -DE,XK,2,132,201912,14907 -DE,XK,2,139,201912,122558 -DE,XK,2,141,201912,183961 -DE,XK,2,143,201912,34579 -DE,XK,2,151,201912,34210 -DE,XK,2,152,201912,459423 -DE,XK,2,161,201912,18100 -DE,XK,2,162,201912,578214 -DE,XK,2,171,201912,55172 -DE,XK,2,172,201912,332570 -DE,XK,2,192,201912,204335 -DE,XK,2,201,201912,261359 -DE,XK,2,202,201912,11007 -DE,XK,2,203,201912,128078 -DE,XK,2,204,201912,134376 -DE,XK,2,205,201912,215919 -DE,XK,2,211,201912,570 -DE,XK,2,212,201912,283194 -DE,XK,2,221,201912,97338 -DE,XK,2,222,201912,1186436 -DE,XK,2,231,201912,22721 -DE,XK,2,234,201912,107 -DE,XK,2,236,201912,20479 -DE,XK,2,239,201912,63589 -DE,XK,2,242,201912,11211 -DE,XK,2,243,201912,33469 -DE,XK,2,244,201912,55818 -DE,XK,2,251,201912,95343 -DE,XK,2,254,201912,675 -DE,XK,2,257,201912,310998 -DE,XK,2,259,201912,54364 -DE,XK,2,261,201912,146768 -DE,XK,2,262,201912,699347 -DE,XK,2,263,201912,90394 -DE,XK,2,264,201912,27805 -DE,XK,2,265,201912,78330 -DE,XK,2,266,201912,409548 -DE,XK,2,267,201912,32177 -DE,XK,2,268,201912,1473 -DE,XK,2,271,201912,272144 -DE,XK,2,272,201912,164740 -DE,XK,2,273,201912,101723 -DE,XK,2,274,201912,41978 -DE,XK,2,275,201912,53686 -DE,XK,2,279,201912,811126 -DE,XK,2,281,201912,297779 -DE,XK,2,282,201912,359922 -DE,XK,2,283,201912,38540 -DE,XK,2,284,201912,56185 -DE,XK,2,289,201912,1600339 -DE,XK,2,291,201912,4821118 -DE,XK,2,292,201912,50211 -DE,XK,2,293,201912,104016 -DE,XK,2,309,201912,35270 -DE,XK,2,310,201912,101062 -DE,XK,2,321,201912,964 -DE,XK,2,323,201912,3211 -DE,XK,2,325,201912,447988 -DE,XK,2,329,201912,28503 -DE,XL,2,141,201912,87872 -DE,XL,2,143,201912,3180 -DE,XL,2,151,201912,16 -DE,XL,2,152,201912,30916 -DE,XL,2,205,201912,650 -DE,XL,2,221,201912,141 -DE,XL,2,222,201912,4 -DE,XL,2,259,201912,11 -DE,XL,2,263,201912,3540 -DE,XL,2,264,201912,1558 -DE,XL,2,265,201912,127 -DE,XL,2,279,201912,2344 -DE,XL,2,281,201912,10649 -DE,XL,2,291,201912,82912 -DE,XL,2,293,201912,19402 -DE,XL,2,309,201912,7744 -DE,XS,1,011,201912,86791 -DE,XS,1,012,201912,621180 -DE,XS,1,014,201912,94015 -DE,XS,1,022,201912,13951 -DE,XS,1,023,201912,1254 -DE,XS,1,101,201912,88112 -DE,XS,1,103,201912,8710435 -DE,XS,1,104,201912,970231 -DE,XS,1,105,201912,111172 -DE,XS,1,107,201912,239696 -DE,XS,1,108,201912,358289 -DE,XS,1,109,201912,149319 -DE,XS,1,110,201912,241026 -DE,XS,1,120,201912,1137 -DE,XS,1,131,201912,48734 -DE,XS,1,132,201912,139 -DE,XS,1,139,201912,874420 -DE,XS,1,141,201912,3279462 -DE,XS,1,143,201912,4743766 -DE,XS,1,151,201912,118117 -DE,XS,1,152,201912,405331 -DE,XS,1,161,201912,114651 -DE,XS,1,162,201912,746836 -DE,XS,1,171,201912,702337 -DE,XS,1,172,201912,920762 -DE,XS,1,181,201912,24065 -DE,XS,1,201,201912,3116598 -DE,XS,1,203,201912,33058 -DE,XS,1,204,201912,4057213 -DE,XS,1,205,201912,60078 -DE,XS,1,206,201912,6382 -DE,XS,1,211,201912,593 -DE,XS,1,212,201912,5642365 -DE,XS,1,221,201912,4300302 -DE,XS,1,222,201912,3765271 -DE,XS,1,231,201912,157111 -DE,XS,1,233,201912,6924 -DE,XS,1,235,201912,1017 -DE,XS,1,236,201912,309066 -DE,XS,1,237,201912,5363 -DE,XS,1,239,201912,15159 -DE,XS,1,241,201912,118796 -DE,XS,1,242,201912,532274 -DE,XS,1,243,201912,100294 -DE,XS,1,244,201912,2130332 -DE,XS,1,245,201912,3393 -DE,XS,1,251,201912,1657853 -DE,XS,1,252,201912,209024 -DE,XS,1,254,201912,339143 -DE,XS,1,257,201912,1021510 -DE,XS,1,259,201912,1256107 -DE,XS,1,261,201912,553439 -DE,XS,1,262,201912,139453 -DE,XS,1,263,201912,48568 -DE,XS,1,264,201912,7322 -DE,XS,1,265,201912,1182819 -DE,XS,1,266,201912,44032 -DE,XS,1,267,201912,76869 -DE,XS,1,271,201912,22527314 -DE,XS,1,272,201912,51747 -DE,XS,1,273,201912,998745 -DE,XS,1,274,201912,17573 -DE,XS,1,275,201912,6437720 -DE,XS,1,279,201912,1888054 -DE,XS,1,281,201912,2249749 -DE,XS,1,282,201912,2464365 -DE,XS,1,283,201912,128072 -DE,XS,1,284,201912,412440 -DE,XS,1,289,201912,2495968 -DE,XS,1,291,201912,795867 -DE,XS,1,292,201912,38874 -DE,XS,1,293,201912,31531835 -DE,XS,1,302,201912,2149872 -DE,XS,1,303,201912,171468 -DE,XS,1,309,201912,37249 -DE,XS,1,310,201912,2478475 -DE,XS,1,321,201912,2480 -DE,XS,1,322,201912,843 -DE,XS,1,323,201912,71948 -DE,XS,1,324,201912,82310 -DE,XS,1,325,201912,599818 -DE,XS,1,329,201912,117174 -DE,XS,2,011,201912,500952 -DE,XS,2,012,201912,223862 -DE,XS,2,014,201912,293750 -DE,XS,2,023,201912,4148 -DE,XS,2,030,201912,359 -DE,XS,2,081,201912,45823 -DE,XS,2,089,201912,71674 -DE,XS,2,101,201912,1473837 -DE,XS,2,102,201912,252740 -DE,XS,2,103,201912,744321 -DE,XS,2,104,201912,121425 -DE,XS,2,105,201912,2138042 -DE,XS,2,106,201912,193562 -DE,XS,2,107,201912,1010502 -DE,XS,2,108,201912,4193169 -DE,XS,2,109,201912,646907 -DE,XS,2,110,201912,560201 -DE,XS,2,120,201912,889063 -DE,XS,2,131,201912,331674 -DE,XS,2,132,201912,1451874 -DE,XS,2,139,201912,3812849 -DE,XS,2,141,201912,1653256 -DE,XS,2,143,201912,772905 -DE,XS,2,151,201912,1086684 -DE,XS,2,152,201912,631857 -DE,XS,2,161,201912,61916 -DE,XS,2,162,201912,562313 -DE,XS,2,171,201912,2383488 -DE,XS,2,172,201912,2264958 -DE,XS,2,17S,201912,343 -DE,XS,2,181,201912,62995 -DE,XS,2,192,201912,654025 -DE,XS,2,201,201912,8141561 -DE,XS,2,202,201912,894322 -DE,XS,2,203,201912,1452760 -DE,XS,2,204,201912,3486520 -DE,XS,2,205,201912,5648985 -DE,XS,2,206,201912,281617 -DE,XS,2,211,201912,167167 -DE,XS,2,212,201912,7434578 -DE,XS,2,221,201912,1983307 -DE,XS,2,222,201912,10645190 -DE,XS,2,231,201912,732462 -DE,XS,2,232,201912,229960 -DE,XS,2,233,201912,79863 -DE,XS,2,234,201912,204213 -DE,XS,2,235,201912,16810 -DE,XS,2,236,201912,251240 -DE,XS,2,237,201912,733 -DE,XS,2,239,201912,492609 -DE,XS,2,241,201912,622349 -DE,XS,2,242,201912,761422 -DE,XS,2,243,201912,369496 -DE,XS,2,244,201912,17062889 -DE,XS,2,245,201912,24169 -DE,XS,2,251,201912,1127364 -DE,XS,2,252,201912,193533 -DE,XS,2,253,201912,492280 -DE,XS,2,254,201912,41494 -DE,XS,2,257,201912,2585264 -DE,XS,2,259,201912,4375403 -DE,XS,2,261,201912,3087217 -DE,XS,2,262,201912,3054775 -DE,XS,2,263,201912,1819499 -DE,XS,2,264,201912,237751 -DE,XS,2,265,201912,5323434 -DE,XS,2,266,201912,2760393 -DE,XS,2,267,201912,629501 -DE,XS,2,268,201912,45561 -DE,XS,2,271,201912,14048471 -DE,XS,2,272,201912,321280 -DE,XS,2,273,201912,10071396 -DE,XS,2,274,201912,721053 -DE,XS,2,275,201912,576882 -DE,XS,2,279,201912,2728802 -DE,XS,2,281,201912,6711191 -DE,XS,2,282,201912,9370126 -DE,XS,2,283,201912,947794 -DE,XS,2,284,201912,1475626 -DE,XS,2,289,201912,9623581 -DE,XS,2,291,201912,15141678 -DE,XS,2,292,201912,1261673 -DE,XS,2,293,201912,3172521 -DE,XS,2,301,201912,71 -DE,XS,2,302,201912,4212484 -DE,XS,2,303,201912,4873088 -DE,XS,2,309,201912,68623 -DE,XS,2,310,201912,1763610 -DE,XS,2,321,201912,269972 -DE,XS,2,322,201912,106230 -DE,XS,2,323,201912,176469 -DE,XS,2,324,201912,200599 -DE,XS,2,325,201912,2204001 -DE,XS,2,329,201912,1212804 -DE,XS,2,32S,201912,78 -DE,YE,2,089,201912,35 -DE,YE,2,105,201912,16268 -DE,YE,2,107,201912,51213 -DE,YE,2,108,201912,517155 -DE,YE,2,139,201912,6606 -DE,YE,2,171,201912,37898 -DE,YE,2,172,201912,9000 -DE,YE,2,192,201912,213578 -DE,YE,2,201,201912,95224 -DE,YE,2,203,201912,81995 -DE,YE,2,204,201912,26122 -DE,YE,2,205,201912,506949 -DE,YE,2,211,201912,28151 -DE,YE,2,212,201912,754023 -DE,YE,2,221,201912,7174 -DE,YE,2,222,201912,68202 -DE,YE,2,231,201912,353 -DE,YE,2,232,201912,82350 -DE,YE,2,257,201912,13360 -DE,YE,2,259,201912,49361 -DE,YE,2,261,201912,4989 -DE,YE,2,262,201912,2140 -DE,YE,2,265,201912,317727 -DE,YE,2,266,201912,566514 -DE,YE,2,271,201912,201339 -DE,YE,2,273,201912,5160 -DE,YE,2,274,201912,3833 -DE,YE,2,275,201912,360 -DE,YE,2,279,201912,34606 -DE,YE,2,281,201912,449563 -DE,YE,2,282,201912,344120 -DE,YE,2,289,201912,144887 -DE,YE,2,293,201912,26811 -DE,YE,2,325,201912,260223 -DE,YE,2,329,201912,12864 -DE,ZA,1,011,201912,254341 -DE,ZA,1,012,201912,3409738 -DE,ZA,1,014,201912,7091 -DE,ZA,1,023,201912,46513 -DE,ZA,1,071,201912,64 -DE,ZA,1,072,201912,50422142 -DE,ZA,1,081,201912,536193 -DE,ZA,1,089,201912,1073628 -DE,ZA,1,101,201912,324011 -DE,ZA,1,102,201912,444048 -DE,ZA,1,103,201912,4748590 -DE,ZA,1,104,201912,1618 -DE,ZA,1,108,201912,502337 -DE,ZA,1,109,201912,35161 -DE,ZA,1,110,201912,7666394 -DE,ZA,1,131,201912,270442 -DE,ZA,1,132,201912,25122 -DE,ZA,1,139,201912,298753 -DE,ZA,1,141,201912,18391 -DE,ZA,1,142,201912,2866 -DE,ZA,1,143,201912,23711 -DE,ZA,1,151,201912,120804 -DE,ZA,1,152,201912,6842 -DE,ZA,1,162,201912,26541 -DE,ZA,1,171,201912,211968 -DE,ZA,1,172,201912,3302 -DE,ZA,1,201,201912,6379133 -DE,ZA,1,202,201912,68409 -DE,ZA,1,203,201912,60703 -DE,ZA,1,204,201912,319209 -DE,ZA,1,205,201912,10213346 -DE,ZA,1,211,201912,6860 -DE,ZA,1,212,201912,2914495 -DE,ZA,1,221,201912,1765246 -DE,ZA,1,222,201912,698444 -DE,ZA,1,231,201912,35194 -DE,ZA,1,234,201912,824548 -DE,ZA,1,237,201912,136666 -DE,ZA,1,239,201912,180049 -DE,ZA,1,241,201912,1758546 -DE,ZA,1,242,201912,10512 -DE,ZA,1,244,201912,71804781 -DE,ZA,1,254,201912,162654 -DE,ZA,1,257,201912,520196 -DE,ZA,1,259,201912,418045 -DE,ZA,1,261,201912,21085 -DE,ZA,1,262,201912,32489 -DE,ZA,1,263,201912,1152253 -DE,ZA,1,264,201912,65837 -DE,ZA,1,265,201912,2459432 -DE,ZA,1,266,201912,163369 -DE,ZA,1,267,201912,2835339 -DE,ZA,1,271,201912,88207 -DE,ZA,1,272,201912,26381 -DE,ZA,1,273,201912,73847 -DE,ZA,1,274,201912,554210 -DE,ZA,1,279,201912,358381 -DE,ZA,1,281,201912,6764024 -DE,ZA,1,282,201912,45650283 -DE,ZA,1,283,201912,48228 -DE,ZA,1,284,201912,59236 -DE,ZA,1,289,201912,1589317 -DE,ZA,1,291,201912,383412047 -DE,ZA,1,292,201912,153 -DE,ZA,1,293,201912,6466911 -DE,ZA,1,301,201912,63383 -DE,ZA,1,302,201912,140900 -DE,ZA,1,303,201912,8026156 -DE,ZA,1,309,201912,5678 -DE,ZA,1,310,201912,66141 -DE,ZA,1,321,201912,105939325 -DE,ZA,1,323,201912,7190 -DE,ZA,1,324,201912,3648 -DE,ZA,1,325,201912,246376 -DE,ZA,1,329,201912,59654 -DE,ZA,2,011,201912,10715069 -DE,ZA,2,012,201912,293979 -DE,ZA,2,014,201912,10705 -DE,ZA,2,081,201912,14724 -DE,ZA,2,089,201912,187714 -DE,ZA,2,101,201912,3213375 -DE,ZA,2,102,201912,46269 -DE,ZA,2,103,201912,1315295 -DE,ZA,2,104,201912,63530 -DE,ZA,2,105,201912,1257717 -DE,ZA,2,106,201912,601945 -DE,ZA,2,107,201912,236385 -DE,ZA,2,108,201912,3743419 -DE,ZA,2,109,201912,503811 -DE,ZA,2,110,201912,1202204 -DE,ZA,2,120,201912,55321 -DE,ZA,2,131,201912,136756 -DE,ZA,2,132,201912,462603 -DE,ZA,2,139,201912,3578892 -DE,ZA,2,141,201912,989345 -DE,ZA,2,142,201912,160 -DE,ZA,2,143,201912,98059 -DE,ZA,2,151,201912,449711 -DE,ZA,2,152,201912,891567 -DE,ZA,2,161,201912,89025 -DE,ZA,2,162,201912,860198 -DE,ZA,2,171,201912,8827922 -DE,ZA,2,172,201912,3749935 -DE,ZA,2,17S,201912,311 -DE,ZA,2,181,201912,9676 -DE,ZA,2,192,201912,1952019 -DE,ZA,2,201,201912,35575128 -DE,ZA,2,202,201912,732346 -DE,ZA,2,203,201912,4696128 -DE,ZA,2,204,201912,8379554 -DE,ZA,2,205,201912,17708411 -DE,ZA,2,206,201912,28392 -DE,ZA,2,20S,201912,1760666 -DE,ZA,2,211,201912,987239 -DE,ZA,2,212,201912,16288119 -DE,ZA,2,221,201912,10783145 -DE,ZA,2,222,201912,17016528 -DE,ZA,2,231,201912,3627445 -DE,ZA,2,232,201912,594650 -DE,ZA,2,233,201912,58044 -DE,ZA,2,234,201912,1498527 -DE,ZA,2,235,201912,15468 -DE,ZA,2,236,201912,75105 -DE,ZA,2,239,201912,1916984 -DE,ZA,2,241,201912,7623264 -DE,ZA,2,242,201912,857113 -DE,ZA,2,243,201912,733979 -DE,ZA,2,244,201912,11183520 -DE,ZA,2,245,201912,8743 -DE,ZA,2,251,201912,762221 -DE,ZA,2,252,201912,233028 -DE,ZA,2,253,201912,1410320 -DE,ZA,2,254,201912,180400 -DE,ZA,2,257,201912,8830240 -DE,ZA,2,259,201912,9391607 -DE,ZA,2,261,201912,1554701 -DE,ZA,2,262,201912,2125698 -DE,ZA,2,263,201912,10991974 -DE,ZA,2,264,201912,4890529 -DE,ZA,2,265,201912,26215755 -DE,ZA,2,266,201912,3068065 -DE,ZA,2,267,201912,2093725 -DE,ZA,2,268,201912,66400 -DE,ZA,2,271,201912,18251656 -DE,ZA,2,272,201912,4268369 -DE,ZA,2,273,201912,4820929 -DE,ZA,2,274,201912,7069228 -DE,ZA,2,275,201912,2841128 -DE,ZA,2,279,201912,9343376 -DE,ZA,2,281,201912,42113907 -DE,ZA,2,282,201912,39932973 -DE,ZA,2,283,201912,10251768 -DE,ZA,2,284,201912,2644170 -DE,ZA,2,289,201912,23242553 -DE,ZA,2,291,201912,88966764 -DE,ZA,2,292,201912,2473645 -DE,ZA,2,293,201912,110853267 -DE,ZA,2,302,201912,33126 -DE,ZA,2,303,201912,150886449 -DE,ZA,2,309,201912,1626324 -DE,ZA,2,310,201912,1984995 -DE,ZA,2,321,201912,658216 -DE,ZA,2,322,201912,72343 -DE,ZA,2,323,201912,119507 -DE,ZA,2,324,201912,234962 -DE,ZA,2,325,201912,11170537 -DE,ZA,2,329,201912,1648534 -DE,ZM,1,011,201912,362474 -DE,ZM,1,012,201912,199150 -DE,ZM,1,089,201912,1985 -DE,ZM,1,101,201912,838 -DE,ZM,1,120,201912,807609 -DE,ZM,1,329,201912,150 -DE,ZM,2,108,201912,164034 -DE,ZM,2,141,201912,128293 -DE,ZM,2,151,201912,2888 -DE,ZM,2,201,201912,80962 -DE,ZM,2,202,201912,930 -DE,ZM,2,204,201912,2818 -DE,ZM,2,205,201912,343186 -DE,ZM,2,211,201912,38403 -DE,ZM,2,212,201912,96554 -DE,ZM,2,221,201912,7187 -DE,ZM,2,222,201912,51370 -DE,ZM,2,231,201912,1408 -DE,ZM,2,239,201912,40608 -DE,ZM,2,242,201912,773 -DE,ZM,2,244,201912,19035 -DE,ZM,2,251,201912,61027 -DE,ZM,2,254,201912,6545 -DE,ZM,2,257,201912,12063 -DE,ZM,2,259,201912,46069 -DE,ZM,2,261,201912,3673 -DE,ZM,2,262,201912,288 -DE,ZM,2,263,201912,38 -DE,ZM,2,265,201912,210829 -DE,ZM,2,266,201912,1970 -DE,ZM,2,267,201912,984 -DE,ZM,2,271,201912,44084 -DE,ZM,2,272,201912,7150 -DE,ZM,2,273,201912,10973 -DE,ZM,2,274,201912,11012 -DE,ZM,2,275,201912,5773 -DE,ZM,2,279,201912,26304 -DE,ZM,2,281,201912,247135 -DE,ZM,2,282,201912,1035617 -DE,ZM,2,289,201912,495201 -DE,ZM,2,293,201912,18543 -DE,ZM,2,310,201912,7467 -DE,ZM,2,324,201912,80 -DE,ZM,2,325,201912,42856 -DE,ZW,1,011,201912,49796 -DE,ZW,1,012,201912,86278 -DE,ZW,1,013,201912,21382 -DE,ZW,1,101,201912,18788 -DE,ZW,1,120,201912,421174 -DE,ZW,1,139,201912,403 -DE,ZW,1,141,201912,355120 -DE,ZW,1,151,201912,1281 -DE,ZW,1,237,201912,34359 -DE,ZW,1,329,201912,587 -DE,ZW,2,172,201912,4867 -DE,ZW,2,201,201912,34061 -DE,ZW,2,204,201912,4800 -DE,ZW,2,205,201912,38948 -DE,ZW,2,211,201912,4503 -DE,ZW,2,212,201912,53702 -DE,ZW,2,221,201912,4654 -DE,ZW,2,222,201912,31568 -DE,ZW,2,231,201912,366 -DE,ZW,2,239,201912,462 -DE,ZW,2,257,201912,3575 -DE,ZW,2,259,201912,32659 -DE,ZW,2,262,201912,61876 -DE,ZW,2,265,201912,28688 -DE,ZW,2,271,201912,14986 -DE,ZW,2,272,201912,5295 -DE,ZW,2,274,201912,890 -DE,ZW,2,279,201912,20734 -DE,ZW,2,281,201912,36071 -DE,ZW,2,282,201912,76577 -DE,ZW,2,284,201912,9535 -DE,ZW,2,289,201912,17997 -DE,ZW,2,293,201912,7531 -DE,ZW,2,321,201912,2151 -DE,ZW,2,325,201912,14192 -DK,AD,2,139,201912,2287 -DK,AD,2,141,201912,18256 -DK,AD,2,143,201912,429 -DK,AD,2,152,201912,1376 -DK,AD,2,222,201912,831 -DK,AD,2,231,201912,1528 -DK,AD,2,257,201912,243 -DK,AD,2,259,201912,1454 -DK,AD,2,274,201912,1779 -DK,AD,2,281,201912,713 -DK,AD,2,310,201912,2199 -DK,AD,2,329,201912,666 -DK,AE,1,139,201912,7283 -DK,AE,1,141,201912,12379 -DK,AE,1,143,201912,378 -DK,AE,1,151,201912,7446 -DK,AE,1,172,201912,1660 -DK,AE,1,221,201912,3158 -DK,AE,1,231,201912,3638 -DK,AE,1,257,201912,2999 -DK,AE,1,262,201912,49269 -DK,AE,1,263,201912,45004 -DK,AE,1,264,201912,527 -DK,AE,1,265,201912,14175 -DK,AE,1,271,201912,4068 -DK,AE,1,279,201912,1286 -DK,AE,1,281,201912,41021 -DK,AE,1,282,201912,1223 -DK,AE,1,289,201912,56991 -DK,AE,1,291,201912,6827 -DK,AE,1,293,201912,15158 -DK,AE,1,303,201912,1381 -DK,AE,1,310,201912,2010 -DK,AE,1,321,201912,277386 -DK,AE,1,324,201912,94 -DK,AE,1,329,201912,31804 -DK,AE,2,014,201912,17690 -DK,AE,2,030,201912,5569 -DK,AE,2,081,201912,1710 -DK,AE,2,103,201912,20455 -DK,AE,2,105,201912,3470971 -DK,AE,2,108,201912,4880267 -DK,AE,2,110,201912,407000 -DK,AE,2,120,201912,37638 -DK,AE,2,132,201912,32611 -DK,AE,2,139,201912,166633 -DK,AE,2,141,201912,224015 -DK,AE,2,143,201912,51415 -DK,AE,2,151,201912,8395 -DK,AE,2,152,201912,36152 -DK,AE,2,162,201912,18475 -DK,AE,2,171,201912,6905 -DK,AE,2,172,201912,129423 -DK,AE,2,201,201912,533957 -DK,AE,2,203,201912,12224 -DK,AE,2,204,201912,811750 -DK,AE,2,205,201912,488669 -DK,AE,2,211,201912,127790 -DK,AE,2,212,201912,137996 -DK,AE,2,221,201912,60680 -DK,AE,2,222,201912,73557 -DK,AE,2,231,201912,3884 -DK,AE,2,232,201912,29501 -DK,AE,2,234,201912,8014 -DK,AE,2,236,201912,300583 -DK,AE,2,239,201912,2079 -DK,AE,2,241,201912,12210 -DK,AE,2,242,201912,279311 -DK,AE,2,243,201912,523 -DK,AE,2,244,201912,739007 -DK,AE,2,245,201912,2743 -DK,AE,2,251,201912,54510 -DK,AE,2,253,201912,20839 -DK,AE,2,257,201912,92294 -DK,AE,2,259,201912,611267 -DK,AE,2,261,201912,185164 -DK,AE,2,262,201912,756524 -DK,AE,2,263,201912,3402931 -DK,AE,2,264,201912,402891 -DK,AE,2,265,201912,1842725 -DK,AE,2,266,201912,89661 -DK,AE,2,267,201912,482373 -DK,AE,2,271,201912,767716 -DK,AE,2,272,201912,7633 -DK,AE,2,273,201912,27487 -DK,AE,2,274,201912,170407 -DK,AE,2,275,201912,25872 -DK,AE,2,279,201912,108769 -DK,AE,2,281,201912,3477157 -DK,AE,2,282,201912,3380154 -DK,AE,2,283,201912,234898 -DK,AE,2,284,201912,3448 -DK,AE,2,289,201912,997441 -DK,AE,2,291,201912,52437 -DK,AE,2,293,201912,457943 -DK,AE,2,301,201912,8515047 -DK,AE,2,303,201912,371356 -DK,AE,2,309,201912,15295 -DK,AE,2,310,201912,563546 -DK,AE,2,321,201912,7792 -DK,AE,2,324,201912,3941 -DK,AE,2,325,201912,775381 -DK,AE,2,329,201912,101483 -DK,AF,1,139,201912,2364 -DK,AF,1,262,201912,5406 -DK,AF,2,108,201912,280 -DK,AF,2,151,201912,685 -DK,AF,2,212,201912,37947 -DK,AF,2,257,201912,160 -DK,AF,2,262,201912,266036 -DK,AF,2,263,201912,268814 -DK,AF,2,271,201912,35 -DK,AF,2,273,201912,51 -DK,AF,2,279,201912,23375 -DK,AF,2,281,201912,1037 -DK,AF,2,282,201912,34129 -DK,AF,2,289,201912,2061 -DK,AF,2,292,201912,64772 -DK,AG,2,310,201912,74404 -DK,AI,2,110,201912,20322 -DK,AL,1,011,201912,46637 -DK,AL,1,102,201912,12066 -DK,AL,1,141,201912,363 -DK,AL,1,152,201912,128 -DK,AL,1,162,201912,5259 -DK,AL,2,102,201912,734097 -DK,AL,2,105,201912,54501 -DK,AL,2,108,201912,42148 -DK,AL,2,139,201912,10960 -DK,AL,2,141,201912,6554 -DK,AL,2,143,201912,1033 -DK,AL,2,151,201912,838 -DK,AL,2,152,201912,177 -DK,AL,2,162,201912,749 -DK,AL,2,172,201912,4656 -DK,AL,2,204,201912,24077 -DK,AL,2,222,201912,1725 -DK,AL,2,231,201912,567 -DK,AL,2,234,201912,309 -DK,AL,2,257,201912,235 -DK,AL,2,259,201912,591 -DK,AL,2,262,201912,18223 -DK,AL,2,263,201912,28237 -DK,AL,2,264,201912,2212 -DK,AL,2,265,201912,101 -DK,AL,2,266,201912,24570 -DK,AL,2,271,201912,3128 -DK,AL,2,274,201912,1625 -DK,AL,2,275,201912,3634 -DK,AL,2,279,201912,58 -DK,AL,2,282,201912,20635 -DK,AL,2,289,201912,229 -DK,AL,2,293,201912,6680 -DK,AL,2,310,201912,17803 -DK,AL,2,329,201912,581 -DK,AM,2,262,201912,6495 -DK,AM,2,264,201912,5592 -DK,AM,2,279,201912,3388 -DK,AM,2,281,201912,58 -DK,AO,1,289,201912,3595 -DK,AO,2,205,201912,2288 -DK,AO,2,262,201912,11081 -DK,AO,2,271,201912,577 -DK,AO,2,281,201912,48004 -DK,AO,2,282,201912,17578 -DK,AO,2,289,201912,25889 -DK,AR,1,101,201912,27048 -DK,AR,1,102,201912,55521 -DK,AR,1,103,201912,827574 -DK,AR,1,108,201912,73003 -DK,AR,1,110,201912,531480 -DK,AR,1,151,201912,7989 -DK,AR,1,201,201912,49199 -DK,AR,1,263,201912,71 -DK,AR,1,281,201912,14467 -DK,AR,2,011,201912,81326 -DK,AR,2,101,201912,88288 -DK,AR,2,108,201912,162426 -DK,AR,2,120,201912,23791 -DK,AR,2,132,201912,1058 -DK,AR,2,139,201912,41 -DK,AR,2,141,201912,1031 -DK,AR,2,151,201912,243 -DK,AR,2,172,201912,97752 -DK,AR,2,201,201912,424542 -DK,AR,2,203,201912,20732 -DK,AR,2,204,201912,77404 -DK,AR,2,205,201912,181701 -DK,AR,2,211,201912,318092 -DK,AR,2,212,201912,5244 -DK,AR,2,221,201912,2328 -DK,AR,2,222,201912,21789 -DK,AR,2,231,201912,54 -DK,AR,2,239,201912,43 -DK,AR,2,241,201912,18772 -DK,AR,2,242,201912,11056 -DK,AR,2,245,201912,886 -DK,AR,2,257,201912,173 -DK,AR,2,259,201912,26527 -DK,AR,2,261,201912,20047 -DK,AR,2,262,201912,51269 -DK,AR,2,263,201912,4780 -DK,AR,2,264,201912,10766 -DK,AR,2,265,201912,286721 -DK,AR,2,266,201912,2119875 -DK,AR,2,267,201912,4201 -DK,AR,2,271,201912,469190 -DK,AR,2,272,201912,10983 -DK,AR,2,273,201912,21458 -DK,AR,2,274,201912,6265 -DK,AR,2,279,201912,120510 -DK,AR,2,281,201912,418403 -DK,AR,2,282,201912,117180 -DK,AR,2,283,201912,7649 -DK,AR,2,284,201912,124899 -DK,AR,2,289,201912,234960 -DK,AR,2,293,201912,5251 -DK,AR,2,309,201912,3796 -DK,AR,2,321,201912,78 -DK,AR,2,325,201912,182394 -DK,AR,2,329,201912,726 -DK,AT,1,011,201912,248528 -DK,AT,1,012,201912,56276 -DK,AT,1,013,201912,2243 -DK,AT,1,014,201912,2507 -DK,AT,1,022,201912,20356 -DK,AT,1,030,201912,275 -DK,AT,1,081,201912,28628 -DK,AT,1,089,201912,51211 -DK,AT,1,101,201912,830412 -DK,AT,1,102,201912,29071 -DK,AT,1,103,201912,556137 -DK,AT,1,104,201912,46137 -DK,AT,1,105,201912,1033529 -DK,AT,1,106,201912,491059 -DK,AT,1,107,201912,72997 -DK,AT,1,108,201912,954872 -DK,AT,1,109,201912,103726 -DK,AT,1,110,201912,2378921 -DK,AT,1,131,201912,2741 -DK,AT,1,132,201912,121255 -DK,AT,1,139,201912,286209 -DK,AT,1,141,201912,661507 -DK,AT,1,143,201912,393662 -DK,AT,1,151,201912,55889 -DK,AT,1,152,201912,75759 -DK,AT,1,161,201912,22684 -DK,AT,1,162,201912,508433 -DK,AT,1,171,201912,983688 -DK,AT,1,172,201912,72666 -DK,AT,1,181,201912,1360 -DK,AT,1,192,201912,190328 -DK,AT,1,201,201912,3880439 -DK,AT,1,202,201912,3861 -DK,AT,1,203,201912,132947 -DK,AT,1,204,201912,799802 -DK,AT,1,205,201912,341804 -DK,AT,1,206,201912,282677 -DK,AT,1,211,201912,100236 -DK,AT,1,212,201912,7614308 -DK,AT,1,221,201912,175660 -DK,AT,1,222,201912,2042663 -DK,AT,1,231,201912,235363 -DK,AT,1,232,201912,3174 -DK,AT,1,234,201912,17466 -DK,AT,1,236,201912,50869 -DK,AT,1,237,201912,4916 -DK,AT,1,239,201912,104466 -DK,AT,1,241,201912,2930661 -DK,AT,1,242,201912,1021429 -DK,AT,1,243,201912,329887 -DK,AT,1,244,201912,982071 -DK,AT,1,245,201912,186848 -DK,AT,1,251,201912,284835 -DK,AT,1,252,201912,39942 -DK,AT,1,253,201912,36812 -DK,AT,1,254,201912,19132 -DK,AT,1,257,201912,1633892 -DK,AT,1,259,201912,511252 -DK,AT,1,261,201912,389680 -DK,AT,1,262,201912,388221 -DK,AT,1,263,201912,244648 -DK,AT,1,264,201912,162980 -DK,AT,1,265,201912,878815 -DK,AT,1,266,201912,538697 -DK,AT,1,267,201912,85586 -DK,AT,1,271,201912,2270096 -DK,AT,1,272,201912,171177 -DK,AT,1,273,201912,466284 -DK,AT,1,274,201912,711570 -DK,AT,1,275,201912,378866 -DK,AT,1,279,201912,1211091 -DK,AT,1,281,201912,1341349 -DK,AT,1,282,201912,2933030 -DK,AT,1,283,201912,2019516 -DK,AT,1,284,201912,96424 -DK,AT,1,289,201912,4261923 -DK,AT,1,291,201912,130961 -DK,AT,1,292,201912,73386 -DK,AT,1,293,201912,198399 -DK,AT,1,302,201912,47288 -DK,AT,1,309,201912,303484 -DK,AT,1,310,201912,1972139 -DK,AT,1,321,201912,19238 -DK,AT,1,322,201912,1244 -DK,AT,1,323,201912,229855 -DK,AT,1,324,201912,151017 -DK,AT,1,325,201912,1934375 -DK,AT,1,329,201912,99008 -DK,AT,2,011,201912,841988 -DK,AT,2,012,201912,707806 -DK,AT,2,013,201912,187793 -DK,AT,2,014,201912,138232 -DK,AT,2,023,201912,124530 -DK,AT,2,030,201912,536795 -DK,AT,2,081,201912,1 -DK,AT,2,089,201912,52 -DK,AT,2,101,201912,854379 -DK,AT,2,102,201912,2194896 -DK,AT,2,103,201912,57589 -DK,AT,2,104,201912,57365 -DK,AT,2,105,201912,255429 -DK,AT,2,106,201912,66939 -DK,AT,2,107,201912,201959 -DK,AT,2,108,201912,387033 -DK,AT,2,109,201912,329483 -DK,AT,2,110,201912,95414 -DK,AT,2,120,201912,50634 -DK,AT,2,131,201912,9237 -DK,AT,2,132,201912,253997 -DK,AT,2,139,201912,404694 -DK,AT,2,141,201912,3785721 -DK,AT,2,142,201912,48862 -DK,AT,2,143,201912,953512 -DK,AT,2,151,201912,131423 -DK,AT,2,152,201912,335192 -DK,AT,2,161,201912,10429 -DK,AT,2,162,201912,98432 -DK,AT,2,171,201912,148869 -DK,AT,2,172,201912,437529 -DK,AT,2,181,201912,911 -DK,AT,2,192,201912,877 -DK,AT,2,201,201912,576830 -DK,AT,2,202,201912,45 -DK,AT,2,203,201912,119193 -DK,AT,2,204,201912,656286 -DK,AT,2,205,201912,525228 -DK,AT,2,206,201912,10557 -DK,AT,2,211,201912,284440 -DK,AT,2,212,201912,157994 -DK,AT,2,221,201912,130647 -DK,AT,2,222,201912,796771 -DK,AT,2,231,201912,78447 -DK,AT,2,232,201912,30876 -DK,AT,2,233,201912,3804 -DK,AT,2,234,201912,153290 -DK,AT,2,236,201912,10528 -DK,AT,2,237,201912,4715 -DK,AT,2,239,201912,8506 -DK,AT,2,241,201912,87353 -DK,AT,2,242,201912,193156 -DK,AT,2,243,201912,10851 -DK,AT,2,244,201912,107743 -DK,AT,2,245,201912,12 -DK,AT,2,251,201912,157974 -DK,AT,2,252,201912,289390 -DK,AT,2,253,201912,1714 -DK,AT,2,254,201912,54445 -DK,AT,2,257,201912,155308 -DK,AT,2,259,201912,689076 -DK,AT,2,261,201912,508065 -DK,AT,2,262,201912,1225383 -DK,AT,2,263,201912,232452 -DK,AT,2,264,201912,1131204 -DK,AT,2,265,201912,960696 -DK,AT,2,266,201912,250596 -DK,AT,2,267,201912,236512 -DK,AT,2,268,201912,8951 -DK,AT,2,271,201912,321378 -DK,AT,2,272,201912,43457 -DK,AT,2,273,201912,126713 -DK,AT,2,274,201912,240494 -DK,AT,2,275,201912,255925 -DK,AT,2,279,201912,396368 -DK,AT,2,281,201912,2364586 -DK,AT,2,282,201912,3815010 -DK,AT,2,283,201912,220213 -DK,AT,2,284,201912,384641 -DK,AT,2,289,201912,1464630 -DK,AT,2,291,201912,3246940 -DK,AT,2,292,201912,162966 -DK,AT,2,293,201912,364418 -DK,AT,2,302,201912,2171 -DK,AT,2,303,201912,39862 -DK,AT,2,309,201912,195893 -DK,AT,2,310,201912,1035541 -DK,AT,2,321,201912,135596 -DK,AT,2,322,201912,23177 -DK,AT,2,323,201912,79433 -DK,AT,2,324,201912,164925 -DK,AT,2,325,201912,688291 -DK,AT,2,329,201912,164118 -DK,AU,1,012,201912,8 -DK,AU,1,030,201912,24664 -DK,AU,1,101,201912,1014397 -DK,AU,1,103,201912,239008 -DK,AU,1,107,201912,700 -DK,AU,1,108,201912,315 -DK,AU,1,110,201912,2034984 -DK,AU,1,139,201912,9827 -DK,AU,1,141,201912,20070 -DK,AU,1,143,201912,3436 -DK,AU,1,151,201912,1767 -DK,AU,1,152,201912,1889 -DK,AU,1,172,201912,11641 -DK,AU,1,201,201912,12830 -DK,AU,1,203,201912,441 -DK,AU,1,204,201912,36185 -DK,AU,1,205,201912,59879 -DK,AU,1,211,201912,365564 -DK,AU,1,221,201912,7831 -DK,AU,1,222,201912,11888 -DK,AU,1,231,201912,8994 -DK,AU,1,234,201912,469 -DK,AU,1,257,201912,47131 -DK,AU,1,259,201912,5338 -DK,AU,1,261,201912,1987 -DK,AU,1,262,201912,39070 -DK,AU,1,263,201912,48385 -DK,AU,1,264,201912,69791 -DK,AU,1,265,201912,84386 -DK,AU,1,266,201912,14589 -DK,AU,1,267,201912,1735 -DK,AU,1,271,201912,3773 -DK,AU,1,273,201912,21693 -DK,AU,1,274,201912,40294 -DK,AU,1,279,201912,21325 -DK,AU,1,281,201912,88878 -DK,AU,1,282,201912,11464 -DK,AU,1,284,201912,181 -DK,AU,1,289,201912,519390 -DK,AU,1,293,201912,3185 -DK,AU,1,303,201912,78456 -DK,AU,1,309,201912,106 -DK,AU,1,321,201912,72631 -DK,AU,1,322,201912,62 -DK,AU,1,323,201912,134 -DK,AU,1,324,201912,32269 -DK,AU,1,325,201912,81680 -DK,AU,1,329,201912,68936 -DK,AU,2,011,201912,1341 -DK,AU,2,081,201912,759 -DK,AU,2,101,201912,9329570 -DK,AU,2,102,201912,4700270 -DK,AU,2,105,201912,1657687 -DK,AU,2,106,201912,397685 -DK,AU,2,107,201912,30647 -DK,AU,2,108,201912,3353114 -DK,AU,2,110,201912,45863 -DK,AU,2,132,201912,107632 -DK,AU,2,139,201912,679184 -DK,AU,2,141,201912,362656 -DK,AU,2,143,201912,65338 -DK,AU,2,151,201912,193606 -DK,AU,2,152,201912,116643 -DK,AU,2,161,201912,15785 -DK,AU,2,162,201912,14819 -DK,AU,2,172,201912,900627 -DK,AU,2,192,201912,8706 -DK,AU,2,201,201912,1636951 -DK,AU,2,202,201912,6041 -DK,AU,2,203,201912,23478 -DK,AU,2,204,201912,410865 -DK,AU,2,205,201912,666666 -DK,AU,2,211,201912,612072 -DK,AU,2,212,201912,134266 -DK,AU,2,221,201912,164127 -DK,AU,2,222,201912,728001 -DK,AU,2,231,201912,25671 -DK,AU,2,234,201912,31791 -DK,AU,2,236,201912,81362 -DK,AU,2,237,201912,608 -DK,AU,2,239,201912,307 -DK,AU,2,241,201912,255266 -DK,AU,2,242,201912,226890 -DK,AU,2,243,201912,4261 -DK,AU,2,244,201912,123045 -DK,AU,2,245,201912,4590 -DK,AU,2,251,201912,114276 -DK,AU,2,257,201912,127841 -DK,AU,2,259,201912,666124 -DK,AU,2,261,201912,78234 -DK,AU,2,262,201912,341814 -DK,AU,2,263,201912,1004685 -DK,AU,2,264,201912,585603 -DK,AU,2,265,201912,1891807 -DK,AU,2,266,201912,1672353 -DK,AU,2,267,201912,89514 -DK,AU,2,271,201912,2361538 -DK,AU,2,272,201912,83082 -DK,AU,2,273,201912,95553 -DK,AU,2,274,201912,130947 -DK,AU,2,275,201912,172511 -DK,AU,2,279,201912,1107059 -DK,AU,2,281,201912,3268171 -DK,AU,2,282,201912,3902981 -DK,AU,2,283,201912,686551 -DK,AU,2,284,201912,151933 -DK,AU,2,289,201912,6346131 -DK,AU,2,292,201912,23054 -DK,AU,2,293,201912,1230083 -DK,AU,2,301,201912,14234 -DK,AU,2,302,201912,10435 -DK,AU,2,303,201912,168378 -DK,AU,2,309,201912,125092 -DK,AU,2,310,201912,2082770 -DK,AU,2,321,201912,353250 -DK,AU,2,322,201912,12508 -DK,AU,2,323,201912,85187 -DK,AU,2,324,201912,41260 -DK,AU,2,325,201912,2283725 -DK,AU,2,329,201912,178369 -DK,AW,2,222,201912,156136 -DK,AW,2,281,201912,10853 -DK,AZ,2,107,201912,6572 -DK,AZ,2,108,201912,105101 -DK,AZ,2,110,201912,2936 -DK,AZ,2,141,201912,18088 -DK,AZ,2,151,201912,218 -DK,AZ,2,192,201912,2466 -DK,AZ,2,204,201912,47109 -DK,AZ,2,205,201912,226 -DK,AZ,2,221,201912,4156 -DK,AZ,2,222,201912,12878 -DK,AZ,2,234,201912,179 -DK,AZ,2,257,201912,1958 -DK,AZ,2,259,201912,8778 -DK,AZ,2,262,201912,11691 -DK,AZ,2,263,201912,34174 -DK,AZ,2,264,201912,2625 -DK,AZ,2,265,201912,12640 -DK,AZ,2,273,201912,11636 -DK,AZ,2,275,201912,192831 -DK,AZ,2,281,201912,31011 -DK,AZ,2,282,201912,25444 -DK,AZ,2,289,201912,106652 -DK,AZ,2,329,201912,2529 -DK,BA,1,103,201912,115163 -DK,BA,1,107,201912,19058 -DK,BA,1,141,201912,351 -DK,BA,1,161,201912,75464 -DK,BA,1,162,201912,1218 -DK,BA,1,201,201912,51709 -DK,BA,1,205,201912,52008 -DK,BA,1,222,201912,34027 -DK,BA,1,231,201912,611 -DK,BA,1,237,201912,8801 -DK,BA,1,251,201912,4357 -DK,BA,1,259,201912,2391 -DK,BA,1,262,201912,3600 -DK,BA,1,274,201912,1459 -DK,BA,1,289,201912,36461 -DK,BA,1,310,201912,306329 -DK,BA,2,105,201912,10127 -DK,BA,2,108,201912,107067 -DK,BA,2,139,201912,2201 -DK,BA,2,141,201912,1463 -DK,BA,2,151,201912,3686 -DK,BA,2,152,201912,52219 -DK,BA,2,172,201912,88659 -DK,BA,2,201,201912,1844 -DK,BA,2,202,201912,23376 -DK,BA,2,203,201912,17476 -DK,BA,2,204,201912,457 -DK,BA,2,205,201912,2107 -DK,BA,2,211,201912,34789 -DK,BA,2,212,201912,10337 -DK,BA,2,221,201912,840 -DK,BA,2,222,201912,11766 -DK,BA,2,244,201912,109 -DK,BA,2,257,201912,19754 -DK,BA,2,259,201912,537 -DK,BA,2,262,201912,81958 -DK,BA,2,263,201912,35027 -DK,BA,2,265,201912,89993 -DK,BA,2,266,201912,88307 -DK,BA,2,271,201912,6937 -DK,BA,2,273,201912,5 -DK,BA,2,275,201912,1277 -DK,BA,2,279,201912,252 -DK,BA,2,281,201912,35360 -DK,BA,2,282,201912,15144 -DK,BA,2,284,201912,5802 -DK,BA,2,291,201912,140070 -DK,BA,2,293,201912,17431 -DK,BA,2,310,201912,1732 -DK,BA,2,325,201912,8754 -DK,BA,2,329,201912,2045 -DK,BB,2,271,201912,121745 -DK,BD,1,102,201912,553849 -DK,BD,1,139,201912,174930 -DK,BD,1,141,201912,19993412 -DK,BD,1,143,201912,12955327 -DK,BD,1,151,201912,64 -DK,BD,1,162,201912,41050 -DK,BD,1,172,201912,205 -DK,BD,1,222,201912,5286 -DK,BD,1,309,201912,70472 -DK,BD,1,325,201912,117373 -DK,BD,1,329,201912,39355 -DK,BD,2,105,201912,954296 -DK,BD,2,108,201912,2211010 -DK,BD,2,139,201912,12994 -DK,BD,2,151,201912,7326 -DK,BD,2,201,201912,14746 -DK,BD,2,205,201912,22426 -DK,BD,2,211,201912,145075 -DK,BD,2,212,201912,133961 -DK,BD,2,222,201912,1062 -DK,BD,2,259,201912,12243 -DK,BD,2,262,201912,206042 -DK,BD,2,263,201912,86062 -DK,BD,2,264,201912,1566 -DK,BD,2,265,201912,24016 -DK,BD,2,266,201912,11710 -DK,BD,2,272,201912,1229 -DK,BD,2,273,201912,1599 -DK,BD,2,279,201912,3588 -DK,BD,2,281,201912,64045 -DK,BD,2,282,201912,37085 -DK,BD,2,283,201912,11155 -DK,BD,2,289,201912,1513956 -DK,BE,1,011,201912,620631 -DK,BE,1,012,201912,1458463 -DK,BE,1,013,201912,186379 -DK,BE,1,014,201912,590935 -DK,BE,1,021,201912,26 -DK,BE,1,022,201912,48507 -DK,BE,1,023,201912,711 -DK,BE,1,030,201912,37092 -DK,BE,1,081,201912,3491 -DK,BE,1,089,201912,196999 -DK,BE,1,101,201912,1273956 -DK,BE,1,102,201912,565749 -DK,BE,1,103,201912,4468615 -DK,BE,1,104,201912,347725 -DK,BE,1,105,201912,5784192 -DK,BE,1,106,201912,2848075 -DK,BE,1,107,201912,1331158 -DK,BE,1,108,201912,5206960 -DK,BE,1,109,201912,1463772 -DK,BE,1,110,201912,1565714 -DK,BE,1,120,201912,20 -DK,BE,1,131,201912,53592 -DK,BE,1,132,201912,255429 -DK,BE,1,139,201912,1216042 -DK,BE,1,141,201912,3467702 -DK,BE,1,143,201912,850852 -DK,BE,1,151,201912,732714 -DK,BE,1,152,201912,1126925 -DK,BE,1,161,201912,101179 -DK,BE,1,162,201912,354882 -DK,BE,1,171,201912,697142 -DK,BE,1,172,201912,376254 -DK,BE,1,181,201912,74795 -DK,BE,1,192,201912,1358048 -DK,BE,1,201,201912,19294021 -DK,BE,1,202,201912,526783 -DK,BE,1,203,201912,826303 -DK,BE,1,204,201912,3123761 -DK,BE,1,205,201912,3682033 -DK,BE,1,206,201912,267748 -DK,BE,1,211,201912,450287 -DK,BE,1,212,201912,18821974 -DK,BE,1,221,201912,1855077 -DK,BE,1,222,201912,5663048 -DK,BE,1,231,201912,956746 -DK,BE,1,232,201912,317 -DK,BE,1,233,201912,6340 -DK,BE,1,234,201912,104675 -DK,BE,1,235,201912,55511 -DK,BE,1,236,201912,355066 -DK,BE,1,237,201912,2227 -DK,BE,1,239,201912,589962 -DK,BE,1,241,201912,1182895 -DK,BE,1,242,201912,156609 -DK,BE,1,243,201912,336819 -DK,BE,1,244,201912,1177507 -DK,BE,1,245,201912,20704 -DK,BE,1,251,201912,830119 -DK,BE,1,252,201912,17431 -DK,BE,1,253,201912,8755 -DK,BE,1,254,201912,201569 -DK,BE,1,257,201912,742790 -DK,BE,1,259,201912,1669603 -DK,BE,1,261,201912,1426789 -DK,BE,1,262,201912,3272306 -DK,BE,1,263,201912,1472334 -DK,BE,1,264,201912,919667 -DK,BE,1,265,201912,1802277 -DK,BE,1,266,201912,1258988 -DK,BE,1,267,201912,492414 -DK,BE,1,271,201912,1007396 -DK,BE,1,272,201912,516002 -DK,BE,1,273,201912,1348685 -DK,BE,1,274,201912,443367 -DK,BE,1,275,201912,1934533 -DK,BE,1,279,201912,1184964 -DK,BE,1,281,201912,9963426 -DK,BE,1,282,201912,5841957 -DK,BE,1,283,201912,4351157 -DK,BE,1,284,201912,2036769 -DK,BE,1,289,201912,2841102 -DK,BE,1,291,201912,52130179 -DK,BE,1,292,201912,652998 -DK,BE,1,293,201912,4088165 -DK,BE,1,301,201912,60440 -DK,BE,1,302,201912,42457 -DK,BE,1,303,201912,153 -DK,BE,1,309,201912,796125 -DK,BE,1,310,201912,573562 -DK,BE,1,321,201912,625547 -DK,BE,1,322,201912,76477 -DK,BE,1,323,201912,160397 -DK,BE,1,324,201912,529192 -DK,BE,1,325,201912,9493295 -DK,BE,1,329,201912,330978 -DK,BE,2,011,201912,972033 -DK,BE,2,012,201912,145130 -DK,BE,2,013,201912,240838 -DK,BE,2,014,201912,1821160 -DK,BE,2,021,201912,2958 -DK,BE,2,023,201912,113145 -DK,BE,2,030,201912,1856576 -DK,BE,2,081,201912,1083 -DK,BE,2,089,201912,1358 -DK,BE,2,101,201912,841445 -DK,BE,2,102,201912,3573900 -DK,BE,2,103,201912,368697 -DK,BE,2,104,201912,374571 -DK,BE,2,105,201912,1107939 -DK,BE,2,106,201912,917598 -DK,BE,2,107,201912,104324 -DK,BE,2,108,201912,1548490 -DK,BE,2,109,201912,933916 -DK,BE,2,110,201912,540546 -DK,BE,2,120,201912,464425 -DK,BE,2,131,201912,717 -DK,BE,2,132,201912,268278 -DK,BE,2,139,201912,1692839 -DK,BE,2,141,201912,7842024 -DK,BE,2,142,201912,9774 -DK,BE,2,143,201912,2527881 -DK,BE,2,151,201912,273636 -DK,BE,2,152,201912,524873 -DK,BE,2,161,201912,62202 -DK,BE,2,162,201912,6619989 -DK,BE,2,171,201912,1238722 -DK,BE,2,172,201912,390057 -DK,BE,2,181,201912,3690 -DK,BE,2,192,201912,322 -DK,BE,2,201,201912,13393387 -DK,BE,2,202,201912,34303 -DK,BE,2,203,201912,275493 -DK,BE,2,204,201912,2096733 -DK,BE,2,205,201912,737549 -DK,BE,2,206,201912,34804 -DK,BE,2,211,201912,7792052 -DK,BE,2,212,201912,1997789 -DK,BE,2,221,201912,450728 -DK,BE,2,222,201912,7202779 -DK,BE,2,231,201912,1660334 -DK,BE,2,232,201912,872 -DK,BE,2,233,201912,13496 -DK,BE,2,234,201912,70179 -DK,BE,2,236,201912,47333 -DK,BE,2,237,201912,6884 -DK,BE,2,239,201912,38089 -DK,BE,2,241,201912,703967 -DK,BE,2,242,201912,207011 -DK,BE,2,243,201912,3046 -DK,BE,2,244,201912,363522 -DK,BE,2,245,201912,8716 -DK,BE,2,251,201912,615703 -DK,BE,2,252,201912,45221 -DK,BE,2,253,201912,12319 -DK,BE,2,254,201912,80347 -DK,BE,2,257,201912,791343 -DK,BE,2,259,201912,1567848 -DK,BE,2,261,201912,171466 -DK,BE,2,262,201912,767175 -DK,BE,2,263,201912,832715 -DK,BE,2,264,201912,442086 -DK,BE,2,265,201912,2034485 -DK,BE,2,266,201912,469007 -DK,BE,2,267,201912,452190 -DK,BE,2,268,201912,5376 -DK,BE,2,271,201912,1178399 -DK,BE,2,272,201912,94650 -DK,BE,2,273,201912,208882 -DK,BE,2,274,201912,632837 -DK,BE,2,275,201912,474140 -DK,BE,2,279,201912,1231956 -DK,BE,2,281,201912,2220634 -DK,BE,2,282,201912,4271290 -DK,BE,2,283,201912,1906882 -DK,BE,2,284,201912,233885 -DK,BE,2,289,201912,3034700 -DK,BE,2,291,201912,6790639 -DK,BE,2,292,201912,24583 -DK,BE,2,293,201912,1340601 -DK,BE,2,301,201912,4498 -DK,BE,2,302,201912,86074 -DK,BE,2,303,201912,13478 -DK,BE,2,309,201912,385144 -DK,BE,2,310,201912,3837526 -DK,BE,2,321,201912,140259 -DK,BE,2,322,201912,3089 -DK,BE,2,323,201912,156848 -DK,BE,2,324,201912,263754 -DK,BE,2,325,201912,1645688 -DK,BE,2,329,201912,1501245 -DK,BF,2,110,201912,541893 -DK,BF,2,262,201912,44106 -DK,BF,2,279,201912,18682 -DK,BF,2,281,201912,82351 -DK,BG,1,011,201912,398930 -DK,BG,1,012,201912,1432 -DK,BG,1,013,201912,1793 -DK,BG,1,014,201912,736969 -DK,BG,1,021,201912,112 -DK,BG,1,101,201912,92834 -DK,BG,1,103,201912,2736 -DK,BG,1,104,201912,1848 -DK,BG,1,105,201912,32717 -DK,BG,1,106,201912,30569 -DK,BG,1,107,201912,73553 -DK,BG,1,108,201912,36285 -DK,BG,1,109,201912,37753 -DK,BG,1,110,201912,40995 -DK,BG,1,131,201912,17422 -DK,BG,1,132,201912,14075 -DK,BG,1,139,201912,209582 -DK,BG,1,141,201912,1004271 -DK,BG,1,143,201912,198311 -DK,BG,1,151,201912,3415 -DK,BG,1,152,201912,1400 -DK,BG,1,161,201912,76 -DK,BG,1,162,201912,26762 -DK,BG,1,171,201912,2366 -DK,BG,1,172,201912,19997 -DK,BG,1,201,201912,11407 -DK,BG,1,202,201912,1459 -DK,BG,1,203,201912,5376 -DK,BG,1,204,201912,427203 -DK,BG,1,205,201912,20111 -DK,BG,1,211,201912,7074 -DK,BG,1,212,201912,325212 -DK,BG,1,221,201912,10138 -DK,BG,1,222,201912,346416 -DK,BG,1,231,201912,14665 -DK,BG,1,234,201912,2563 -DK,BG,1,236,201912,66 -DK,BG,1,237,201912,587 -DK,BG,1,239,201912,332 -DK,BG,1,241,201912,8140 -DK,BG,1,242,201912,4540 -DK,BG,1,243,201912,2979 -DK,BG,1,244,201912,164717 -DK,BG,1,251,201912,5614 -DK,BG,1,252,201912,11233 -DK,BG,1,253,201912,2418 -DK,BG,1,254,201912,33444 -DK,BG,1,257,201912,3958 -DK,BG,1,259,201912,35470 -DK,BG,1,261,201912,4620 -DK,BG,1,262,201912,21317 -DK,BG,1,263,201912,7787 -DK,BG,1,264,201912,1161 -DK,BG,1,265,201912,193162 -DK,BG,1,267,201912,4701 -DK,BG,1,271,201912,59670 -DK,BG,1,272,201912,148350 -DK,BG,1,273,201912,5510 -DK,BG,1,274,201912,37942 -DK,BG,1,275,201912,66158 -DK,BG,1,279,201912,139321 -DK,BG,1,281,201912,1229743 -DK,BG,1,282,201912,13094539 -DK,BG,1,283,201912,12532 -DK,BG,1,284,201912,7764 -DK,BG,1,289,201912,43492 -DK,BG,1,291,201912,12688 -DK,BG,1,292,201912,3949 -DK,BG,1,293,201912,153508 -DK,BG,1,301,201912,155226 -DK,BG,1,302,201912,408 -DK,BG,1,309,201912,64358 -DK,BG,1,310,201912,1735405 -DK,BG,1,321,201912,259 -DK,BG,1,323,201912,5769 -DK,BG,1,324,201912,1914 -DK,BG,1,325,201912,35305 -DK,BG,1,329,201912,8361 -DK,BG,2,011,201912,1480 -DK,BG,2,012,201912,34892 -DK,BG,2,013,201912,43899 -DK,BG,2,014,201912,189626 -DK,BG,2,030,201912,103443 -DK,BG,2,081,201912,1413 -DK,BG,2,089,201912,17 -DK,BG,2,101,201912,352558 -DK,BG,2,102,201912,553663 -DK,BG,2,103,201912,9033 -DK,BG,2,104,201912,2820 -DK,BG,2,105,201912,411466 -DK,BG,2,106,201912,25254 -DK,BG,2,108,201912,29867 -DK,BG,2,109,201912,381500 -DK,BG,2,110,201912,20725 -DK,BG,2,120,201912,4362 -DK,BG,2,131,201912,838 -DK,BG,2,132,201912,35407 -DK,BG,2,139,201912,185703 -DK,BG,2,141,201912,108627 -DK,BG,2,143,201912,20377 -DK,BG,2,151,201912,5241 -DK,BG,2,152,201912,9995 -DK,BG,2,162,201912,85559 -DK,BG,2,171,201912,6626 -DK,BG,2,172,201912,38531 -DK,BG,2,201,201912,245829 -DK,BG,2,202,201912,10622 -DK,BG,2,203,201912,563 -DK,BG,2,204,201912,97639 -DK,BG,2,205,201912,28033 -DK,BG,2,211,201912,718 -DK,BG,2,212,201912,139708 -DK,BG,2,221,201912,39697 -DK,BG,2,222,201912,398711 -DK,BG,2,231,201912,12514 -DK,BG,2,234,201912,4010 -DK,BG,2,236,201912,361 -DK,BG,2,239,201912,3889 -DK,BG,2,241,201912,1568 -DK,BG,2,242,201912,3655 -DK,BG,2,243,201912,11270 -DK,BG,2,244,201912,16252 -DK,BG,2,251,201912,82723 -DK,BG,2,252,201912,18560 -DK,BG,2,257,201912,20875 -DK,BG,2,259,201912,134194 -DK,BG,2,261,201912,1353 -DK,BG,2,262,201912,132954 -DK,BG,2,263,201912,21563 -DK,BG,2,264,201912,99249 -DK,BG,2,265,201912,85029 -DK,BG,2,266,201912,112800 -DK,BG,2,267,201912,167650 -DK,BG,2,271,201912,349202 -DK,BG,2,272,201912,11799 -DK,BG,2,273,201912,48542 -DK,BG,2,274,201912,22777 -DK,BG,2,275,201912,33042 -DK,BG,2,279,201912,91669 -DK,BG,2,281,201912,199801 -DK,BG,2,282,201912,151284 -DK,BG,2,283,201912,119386 -DK,BG,2,284,201912,1860 -DK,BG,2,289,201912,174678 -DK,BG,2,291,201912,232470 -DK,BG,2,292,201912,18978 -DK,BG,2,293,201912,59663 -DK,BG,2,301,201912,14350 -DK,BG,2,302,201912,1586 -DK,BG,2,303,201912,3934 -DK,BG,2,309,201912,6914 -DK,BG,2,310,201912,422726 -DK,BG,2,321,201912,619 -DK,BG,2,323,201912,15939 -DK,BG,2,324,201912,5915 -DK,BG,2,325,201912,32087 -DK,BG,2,329,201912,32271 -DK,BH,1,141,201912,93 -DK,BH,1,231,201912,12602 -DK,BH,2,105,201912,257164 -DK,BH,2,108,201912,225169 -DK,BH,2,110,201912,41548 -DK,BH,2,139,201912,35863 -DK,BH,2,141,201912,4930 -DK,BH,2,172,201912,1299 -DK,BH,2,201,201912,33516 -DK,BH,2,204,201912,10833 -DK,BH,2,205,201912,8239 -DK,BH,2,212,201912,23945 -DK,BH,2,221,201912,144 -DK,BH,2,222,201912,2536 -DK,BH,2,231,201912,1449 -DK,BH,2,237,201912,26148 -DK,BH,2,242,201912,1507 -DK,BH,2,244,201912,154 -DK,BH,2,259,201912,3706 -DK,BH,2,262,201912,18589 -DK,BH,2,263,201912,1039 -DK,BH,2,265,201912,617436 -DK,BH,2,271,201912,15890 -DK,BH,2,273,201912,279 -DK,BH,2,275,201912,11674 -DK,BH,2,279,201912,607 -DK,BH,2,281,201912,94544 -DK,BH,2,282,201912,17952 -DK,BH,2,289,201912,14009 -DK,BH,2,293,201912,66974 -DK,BH,2,303,201912,9559 -DK,BH,2,325,201912,9868 -DK,BH,2,329,201912,864 -DK,BI,2,262,201912,31395 -DK,BJ,2,221,201912,9480 -DK,BJ,2,262,201912,187418 -DK,BJ,2,263,201912,16429 -DK,BJ,2,271,201912,15702 -DK,BJ,2,275,201912,2803 -DK,BJ,2,289,201912,12442 -DK,BJ,2,293,201912,20 -DK,BM,2,110,201912,70548 -DK,BM,2,271,201912,89860 -DK,BM,2,293,201912,1079 -DK,BN,2,103,201912,2020 -DK,BN,2,104,201912,8136 -DK,BN,2,105,201912,31903 -DK,BN,2,108,201912,2343 -DK,BN,2,204,201912,117 -DK,BN,2,265,201912,44531 -DK,BO,1,139,201912,82844 -DK,BO,1,141,201912,13175 -DK,BO,1,143,201912,34081 -DK,BO,1,151,201912,5339 -DK,BO,1,324,201912,5398 -DK,BO,2,108,201912,22544 -DK,BO,2,162,201912,52 -DK,BO,2,201,201912,26089 -DK,BO,2,205,201912,10560 -DK,BO,2,211,201912,16779 -DK,BO,2,222,201912,142 -DK,BO,2,262,201912,25741 -DK,BO,2,265,201912,69119 -DK,BO,2,266,201912,2407 -DK,BO,2,271,201912,43211 -DK,BO,2,279,201912,4022 -DK,BO,2,281,201912,88925 -DK,BO,2,282,201912,16559 -DK,BO,2,289,201912,180 -DK,BO,2,291,201912,71507 -DK,BR,1,011,201912,488719 -DK,BR,1,012,201912,671598 -DK,BR,1,101,201912,190729 -DK,BR,1,103,201912,1975321 -DK,BR,1,104,201912,9319112 -DK,BR,1,108,201912,155338 -DK,BR,1,120,201912,385853 -DK,BR,1,141,201912,1368 -DK,BR,1,151,201912,108017 -DK,BR,1,152,201912,430 -DK,BR,1,161,201912,1267247 -DK,BR,1,162,201912,55939 -DK,BR,1,201,201912,88375 -DK,BR,1,204,201912,105316 -DK,BR,1,205,201912,418718 -DK,BR,1,211,201912,203 -DK,BR,1,212,201912,280088 -DK,BR,1,221,201912,1592 -DK,BR,1,222,201912,1408 -DK,BR,1,231,201912,1320 -DK,BR,1,234,201912,332564 -DK,BR,1,237,201912,35869 -DK,BR,1,242,201912,5 -DK,BR,1,257,201912,54988 -DK,BR,1,259,201912,549 -DK,BR,1,265,201912,56370 -DK,BR,1,271,201912,4368 -DK,BR,1,273,201912,777 -DK,BR,1,274,201912,2256 -DK,BR,1,279,201912,952 -DK,BR,1,281,201912,35813 -DK,BR,1,282,201912,4 -DK,BR,1,283,201912,114432 -DK,BR,1,289,201912,3048 -DK,BR,1,293,201912,25276 -DK,BR,1,303,201912,454 -DK,BR,1,310,201912,258467 -DK,BR,1,325,201912,767 -DK,BR,1,329,201912,96 -DK,BR,2,104,201912,114609 -DK,BR,2,106,201912,4843 -DK,BR,2,108,201912,204721 -DK,BR,2,110,201912,84176 -DK,BR,2,139,201912,484985 -DK,BR,2,141,201912,271 -DK,BR,2,143,201912,54 -DK,BR,2,151,201912,2151 -DK,BR,2,152,201912,3533 -DK,BR,2,171,201912,15387 -DK,BR,2,172,201912,26268 -DK,BR,2,201,201912,2569787 -DK,BR,2,202,201912,32822 -DK,BR,2,203,201912,15689 -DK,BR,2,204,201912,435854 -DK,BR,2,205,201912,625213 -DK,BR,2,211,201912,1346518 -DK,BR,2,212,201912,181159 -DK,BR,2,221,201912,62164 -DK,BR,2,222,201912,1337475 -DK,BR,2,231,201912,184992 -DK,BR,2,236,201912,34917 -DK,BR,2,239,201912,3686 -DK,BR,2,242,201912,469915 -DK,BR,2,243,201912,6460 -DK,BR,2,244,201912,218010 -DK,BR,2,245,201912,536 -DK,BR,2,251,201912,1934 -DK,BR,2,257,201912,19996 -DK,BR,2,259,201912,2828466 -DK,BR,2,261,201912,14408 -DK,BR,2,262,201912,60730 -DK,BR,2,263,201912,19512 -DK,BR,2,264,201912,28069 -DK,BR,2,265,201912,662508 -DK,BR,2,266,201912,2151517 -DK,BR,2,271,201912,721129 -DK,BR,2,272,201912,7946 -DK,BR,2,273,201912,259171 -DK,BR,2,274,201912,20986 -DK,BR,2,275,201912,19419 -DK,BR,2,279,201912,581151 -DK,BR,2,281,201912,2291619 -DK,BR,2,282,201912,1057939 -DK,BR,2,283,201912,102299 -DK,BR,2,284,201912,909025 -DK,BR,2,289,201912,3525580 -DK,BR,2,292,201912,9122 -DK,BR,2,293,201912,51636 -DK,BR,2,303,201912,43404 -DK,BR,2,310,201912,146145 -DK,BR,2,325,201912,223963 -DK,BR,2,329,201912,38953 -DK,BS,2,101,201912,138418 -DK,BS,2,221,201912,2965 -DK,BS,2,271,201912,5767 -DK,BS,2,281,201912,95927 -DK,BT,2,262,201912,56775 -DK,BY,1,022,201912,39650 -DK,BY,1,108,201912,217588 -DK,BY,1,161,201912,113749 -DK,BY,1,162,201912,346793 -DK,BY,1,172,201912,15196 -DK,BY,1,222,201912,99185 -DK,BY,1,236,201912,27642 -DK,BY,1,259,201912,23 -DK,BY,1,267,201912,54312 -DK,BY,1,272,201912,21929 -DK,BY,1,282,201912,434 -DK,BY,1,310,201912,81373 -DK,BY,2,012,201912,32793 -DK,BY,2,014,201912,255224 -DK,BY,2,030,201912,467482 -DK,BY,2,101,201912,140341 -DK,BY,2,105,201912,142775 -DK,BY,2,109,201912,491358 -DK,BY,2,139,201912,36862 -DK,BY,2,162,201912,1933 -DK,BY,2,171,201912,4033 -DK,BY,2,172,201912,54798 -DK,BY,2,201,201912,72136 -DK,BY,2,202,201912,13920 -DK,BY,2,204,201912,81431 -DK,BY,2,205,201912,23432 -DK,BY,2,211,201912,425 -DK,BY,2,221,201912,3839 -DK,BY,2,222,201912,138639 -DK,BY,2,231,201912,42572 -DK,BY,2,236,201912,35 -DK,BY,2,251,201912,53690 -DK,BY,2,257,201912,36225 -DK,BY,2,259,201912,11286 -DK,BY,2,262,201912,9049 -DK,BY,2,264,201912,58933 -DK,BY,2,265,201912,4389 -DK,BY,2,271,201912,27524 -DK,BY,2,273,201912,2725 -DK,BY,2,274,201912,132 -DK,BY,2,279,201912,10511 -DK,BY,2,281,201912,147646 -DK,BY,2,282,201912,58864 -DK,BY,2,283,201912,65645 -DK,BY,2,284,201912,4220 -DK,BY,2,289,201912,46135 -DK,BY,2,291,201912,14284 -DK,BY,2,293,201912,119476 -DK,BY,2,303,201912,16203 -DK,BY,2,310,201912,5500 -DK,BY,2,325,201912,5529 -DK,BZ,2,101,201912,224268 -DK,CA,1,011,201912,6131 -DK,CA,1,013,201912,34 -DK,CA,1,030,201912,695348 -DK,CA,1,081,201912,9551 -DK,CA,1,089,201912,16925 -DK,CA,1,102,201912,5276094 -DK,CA,1,103,201912,49022 -DK,CA,1,108,201912,351236 -DK,CA,1,109,201912,334657 -DK,CA,1,110,201912,146 -DK,CA,1,132,201912,185 -DK,CA,1,139,201912,20997 -DK,CA,1,141,201912,52332 -DK,CA,1,143,201912,95543 -DK,CA,1,151,201912,17712 -DK,CA,1,152,201912,20750 -DK,CA,1,161,201912,1656178 -DK,CA,1,162,201912,302 -DK,CA,1,171,201912,78355 -DK,CA,1,172,201912,9468 -DK,CA,1,192,201912,2110 -DK,CA,1,201,201912,211753 -DK,CA,1,204,201912,101112 -DK,CA,1,205,201912,153912 -DK,CA,1,211,201912,6356 -DK,CA,1,212,201912,215180 -DK,CA,1,221,201912,15018 -DK,CA,1,222,201912,88142 -DK,CA,1,231,201912,2898 -DK,CA,1,239,201912,44433 -DK,CA,1,242,201912,222 -DK,CA,1,245,201912,855 -DK,CA,1,257,201912,28615 -DK,CA,1,259,201912,214450 -DK,CA,1,261,201912,26991 -DK,CA,1,262,201912,177148 -DK,CA,1,263,201912,1052481 -DK,CA,1,264,201912,26288 -DK,CA,1,265,201912,1746200 -DK,CA,1,266,201912,24910 -DK,CA,1,267,201912,454083 -DK,CA,1,271,201912,153933 -DK,CA,1,272,201912,739 -DK,CA,1,273,201912,49210 -DK,CA,1,274,201912,30752 -DK,CA,1,279,201912,149011 -DK,CA,1,281,201912,59172 -DK,CA,1,282,201912,81882 -DK,CA,1,283,201912,52607 -DK,CA,1,284,201912,23353 -DK,CA,1,289,201912,301670 -DK,CA,1,293,201912,11459 -DK,CA,1,303,201912,464824 -DK,CA,1,309,201912,62376 -DK,CA,1,310,201912,4600 -DK,CA,1,321,201912,4601 -DK,CA,1,322,201912,20384 -DK,CA,1,323,201912,36561 -DK,CA,1,324,201912,4820 -DK,CA,1,325,201912,23937 -DK,CA,1,329,201912,103466 -DK,CA,2,011,201912,35611 -DK,CA,2,013,201912,191723 -DK,CA,2,101,201912,1027599 -DK,CA,2,102,201912,2497832 -DK,CA,2,103,201912,4817 -DK,CA,2,105,201912,1421238 -DK,CA,2,106,201912,113961 -DK,CA,2,108,201912,134205 -DK,CA,2,110,201912,626903 -DK,CA,2,120,201912,15903 -DK,CA,2,132,201912,4177 -DK,CA,2,139,201912,919175 -DK,CA,2,141,201912,513721 -DK,CA,2,143,201912,187502 -DK,CA,2,151,201912,58804 -DK,CA,2,152,201912,42414 -DK,CA,2,162,201912,30649 -DK,CA,2,172,201912,343390 -DK,CA,2,201,201912,235385 -DK,CA,2,203,201912,30583 -DK,CA,2,204,201912,90417 -DK,CA,2,205,201912,435546 -DK,CA,2,211,201912,215789 -DK,CA,2,212,201912,296521 -DK,CA,2,221,201912,75288 -DK,CA,2,222,201912,470855 -DK,CA,2,231,201912,7480 -DK,CA,2,232,201912,6075 -DK,CA,2,234,201912,7050 -DK,CA,2,236,201912,61 -DK,CA,2,237,201912,6118 -DK,CA,2,239,201912,112058 -DK,CA,2,241,201912,60566 -DK,CA,2,242,201912,124157 -DK,CA,2,243,201912,150 -DK,CA,2,244,201912,111359 -DK,CA,2,245,201912,6799 -DK,CA,2,251,201912,221132 -DK,CA,2,253,201912,3689 -DK,CA,2,257,201912,123207 -DK,CA,2,259,201912,1026538 -DK,CA,2,261,201912,45659 -DK,CA,2,262,201912,100515 -DK,CA,2,263,201912,164790 -DK,CA,2,264,201912,282050 -DK,CA,2,265,201912,1365729 -DK,CA,2,266,201912,1306063 -DK,CA,2,267,201912,172414 -DK,CA,2,271,201912,315280 -DK,CA,2,272,201912,948 -DK,CA,2,273,201912,253336 -DK,CA,2,274,201912,107865 -DK,CA,2,275,201912,57315 -DK,CA,2,279,201912,272595 -DK,CA,2,281,201912,1137631 -DK,CA,2,282,201912,2849673 -DK,CA,2,283,201912,2101844 -DK,CA,2,284,201912,1303332 -DK,CA,2,289,201912,3799248 -DK,CA,2,292,201912,63106 -DK,CA,2,293,201912,106365 -DK,CA,2,303,201912,908038 -DK,CA,2,309,201912,25624 -DK,CA,2,310,201912,1960220 -DK,CA,2,321,201912,47366 -DK,CA,2,322,201912,11373 -DK,CA,2,323,201912,13634 -DK,CA,2,324,201912,32627 -DK,CA,2,325,201912,2260539 -DK,CA,2,329,201912,101137 -DK,CD,2,110,201912,46240 -DK,CD,2,151,201912,852 -DK,CD,2,201,201912,2940 -DK,CD,2,262,201912,106928 -DK,CD,2,263,201912,18254 -DK,CD,2,264,201912,2876 -DK,CD,2,272,201912,7088 -DK,CD,2,282,201912,1213 -DK,CF,2,205,201912,6561 -DK,CF,2,262,201912,561244 -DK,CF,2,263,201912,103738 -DK,CF,2,264,201912,2723 -DK,CF,2,267,201912,185 -DK,CF,2,272,201912,2310 -DK,CF,2,279,201912,9976 -DK,CF,2,282,201912,86167 -DK,CG,1,161,201912,123492 -DK,CG,2,107,201912,1363 -DK,CG,2,110,201912,23083 -DK,CG,2,262,201912,137301 -DK,CG,2,263,201912,5454 -DK,CG,2,281,201912,3627 -DK,CG,2,282,201912,6819 -DK,CG,2,289,201912,5788 -DK,CG,2,293,201912,355 -DK,CH,1,101,201912,45989 -DK,CH,1,102,201912,935 -DK,CH,1,103,201912,40 -DK,CH,1,104,201912,136313 -DK,CH,1,105,201912,36478 -DK,CH,1,107,201912,1143 -DK,CH,1,108,201912,1819157 -DK,CH,1,109,201912,18 -DK,CH,1,110,201912,493212 -DK,CH,1,131,201912,56 -DK,CH,1,132,201912,64104 -DK,CH,1,139,201912,23232 -DK,CH,1,141,201912,149097 -DK,CH,1,143,201912,109508 -DK,CH,1,151,201912,757948 -DK,CH,1,152,201912,60083 -DK,CH,1,162,201912,5205 -DK,CH,1,171,201912,18300 -DK,CH,1,172,201912,108060 -DK,CH,1,181,201912,2852 -DK,CH,1,192,201912,32631 -DK,CH,1,201,201912,2987737 -DK,CH,1,202,201912,25715 -DK,CH,1,203,201912,184713 -DK,CH,1,204,201912,258557 -DK,CH,1,205,201912,353174 -DK,CH,1,211,201912,36629 -DK,CH,1,212,201912,11484734 -DK,CH,1,221,201912,77616 -DK,CH,1,222,201912,819342 -DK,CH,1,231,201912,206569 -DK,CH,1,233,201912,953 -DK,CH,1,234,201912,57642 -DK,CH,1,237,201912,29424 -DK,CH,1,239,201912,34921 -DK,CH,1,241,201912,19024 -DK,CH,1,242,201912,98442 -DK,CH,1,243,201912,41366 -DK,CH,1,244,201912,113161 -DK,CH,1,245,201912,136 -DK,CH,1,251,201912,30125 -DK,CH,1,252,201912,78364 -DK,CH,1,253,201912,7407 -DK,CH,1,257,201912,665878 -DK,CH,1,259,201912,376775 -DK,CH,1,261,201912,1646040 -DK,CH,1,262,201912,89272 -DK,CH,1,263,201912,273415 -DK,CH,1,264,201912,57605 -DK,CH,1,265,201912,6249642 -DK,CH,1,266,201912,298272 -DK,CH,1,267,201912,350996 -DK,CH,1,268,201912,16186 -DK,CH,1,271,201912,797768 -DK,CH,1,272,201912,10745 -DK,CH,1,273,201912,919646 -DK,CH,1,274,201912,35365 -DK,CH,1,275,201912,404996 -DK,CH,1,279,201912,384906 -DK,CH,1,281,201912,1508757 -DK,CH,1,282,201912,1480206 -DK,CH,1,283,201912,58320 -DK,CH,1,284,201912,1182049 -DK,CH,1,289,201912,2664459 -DK,CH,1,291,201912,168 -DK,CH,1,293,201912,6793 -DK,CH,1,303,201912,58670 -DK,CH,1,304,201912,8161820 -DK,CH,1,309,201912,3185 -DK,CH,1,310,201912,58984 -DK,CH,1,321,201912,190012 -DK,CH,1,323,201912,75513 -DK,CH,1,324,201912,21 -DK,CH,1,325,201912,1326720 -DK,CH,1,329,201912,474094 -DK,CH,2,011,201912,367874 -DK,CH,2,012,201912,727834 -DK,CH,2,013,201912,273127 -DK,CH,2,014,201912,176712 -DK,CH,2,021,201912,7847 -DK,CH,2,023,201912,54443 -DK,CH,2,030,201912,593349 -DK,CH,2,089,201912,26 -DK,CH,2,101,201912,498259 -DK,CH,2,102,201912,2297160 -DK,CH,2,103,201912,40821 -DK,CH,2,104,201912,87774 -DK,CH,2,105,201912,552777 -DK,CH,2,106,201912,55031 -DK,CH,2,107,201912,346273 -DK,CH,2,108,201912,1417993 -DK,CH,2,109,201912,150064 -DK,CH,2,110,201912,635931 -DK,CH,2,120,201912,290170 -DK,CH,2,131,201912,9077 -DK,CH,2,132,201912,20504 -DK,CH,2,139,201912,699765 -DK,CH,2,141,201912,2006234 -DK,CH,2,142,201912,4350 -DK,CH,2,143,201912,294622 -DK,CH,2,151,201912,426160 -DK,CH,2,152,201912,139397 -DK,CH,2,162,201912,152526 -DK,CH,2,171,201912,40873 -DK,CH,2,172,201912,270067 -DK,CH,2,192,201912,6931 -DK,CH,2,201,201912,2237090 -DK,CH,2,202,201912,2483 -DK,CH,2,203,201912,15236 -DK,CH,2,204,201912,491298 -DK,CH,2,205,201912,529562 -DK,CH,2,211,201912,977482 -DK,CH,2,212,201912,16982 -DK,CH,2,221,201912,125036 -DK,CH,2,222,201912,1360925 -DK,CH,2,231,201912,148344 -DK,CH,2,232,201912,7865 -DK,CH,2,234,201912,97620 -DK,CH,2,236,201912,86819 -DK,CH,2,237,201912,3702 -DK,CH,2,239,201912,8211 -DK,CH,2,241,201912,45573 -DK,CH,2,242,201912,186250 -DK,CH,2,243,201912,36085 -DK,CH,2,244,201912,119532 -DK,CH,2,245,201912,3044 -DK,CH,2,251,201912,257529 -DK,CH,2,252,201912,53178 -DK,CH,2,254,201912,120 -DK,CH,2,257,201912,226181 -DK,CH,2,259,201912,929284 -DK,CH,2,261,201912,197741 -DK,CH,2,262,201912,1649558 -DK,CH,2,263,201912,622473 -DK,CH,2,264,201912,628509 -DK,CH,2,265,201912,2240801 -DK,CH,2,266,201912,383097 -DK,CH,2,267,201912,858307 -DK,CH,2,268,201912,2850 -DK,CH,2,271,201912,387191 -DK,CH,2,272,201912,36923 -DK,CH,2,273,201912,164343 -DK,CH,2,274,201912,520177 -DK,CH,2,275,201912,334713 -DK,CH,2,279,201912,590793 -DK,CH,2,281,201912,1495444 -DK,CH,2,282,201912,2300868 -DK,CH,2,283,201912,327026 -DK,CH,2,284,201912,11494 -DK,CH,2,289,201912,878592 -DK,CH,2,291,201912,1136753 -DK,CH,2,292,201912,57598 -DK,CH,2,293,201912,85738 -DK,CH,2,303,201912,202919 -DK,CH,2,304,201912,297694 -DK,CH,2,309,201912,90861 -DK,CH,2,310,201912,2951572 -DK,CH,2,321,201912,586303 -DK,CH,2,322,201912,13448 -DK,CH,2,323,201912,93981 -DK,CH,2,324,201912,152285 -DK,CH,2,325,201912,840072 -DK,CH,2,329,201912,128540 -DK,CI,2,101,201912,164796 -DK,CI,2,201,201912,136750 -DK,CI,2,231,201912,18 -DK,CI,2,262,201912,68853 -DK,CI,2,264,201912,90 -DK,CI,2,265,201912,620 -DK,CI,2,271,201912,3944 -DK,CI,2,275,201912,897 -DK,CI,2,279,201912,98 -DK,CI,2,281,201912,79672 -DK,CI,2,282,201912,157918 -DK,CI,2,289,201912,110 -DK,CI,2,291,201912,180026 -DK,CI,2,293,201912,3875 -DK,CI,2,310,201912,37 -DK,CL,1,011,201912,330851 -DK,CL,1,102,201912,1726850 -DK,CL,1,103,201912,890541 -DK,CL,1,108,201912,152560 -DK,CL,1,109,201912,307 -DK,CL,1,110,201912,1890610 -DK,CL,1,162,201912,1172045 -DK,CL,1,263,201912,4773 -DK,CL,1,265,201912,20643 -DK,CL,1,271,201912,902 -DK,CL,1,279,201912,814 -DK,CL,2,107,201912,18595 -DK,CL,2,108,201912,477812 -DK,CL,2,110,201912,12264 -DK,CL,2,139,201912,14734 -DK,CL,2,141,201912,3016 -DK,CL,2,143,201912,136 -DK,CL,2,151,201912,2588 -DK,CL,2,172,201912,23011 -DK,CL,2,192,201912,39 -DK,CL,2,201,201912,510849 -DK,CL,2,203,201912,37459 -DK,CL,2,204,201912,47360 -DK,CL,2,205,201912,525858 -DK,CL,2,211,201912,300776 -DK,CL,2,212,201912,81971 -DK,CL,2,221,201912,5077 -DK,CL,2,222,201912,68417 -DK,CL,2,231,201912,8131 -DK,CL,2,241,201912,9406 -DK,CL,2,242,201912,10746 -DK,CL,2,244,201912,1762 -DK,CL,2,251,201912,12597 -DK,CL,2,253,201912,291116 -DK,CL,2,257,201912,9744 -DK,CL,2,259,201912,730341 -DK,CL,2,261,201912,10871 -DK,CL,2,262,201912,81209 -DK,CL,2,263,201912,43177 -DK,CL,2,264,201912,19707 -DK,CL,2,265,201912,360419 -DK,CL,2,266,201912,273019 -DK,CL,2,271,201912,285293 -DK,CL,2,273,201912,15640 -DK,CL,2,274,201912,2446 -DK,CL,2,275,201912,3098 -DK,CL,2,279,201912,145015 -DK,CL,2,281,201912,802466 -DK,CL,2,282,201912,3620777 -DK,CL,2,283,201912,253409 -DK,CL,2,284,201912,270203 -DK,CL,2,289,201912,1769718 -DK,CL,2,293,201912,22506 -DK,CL,2,303,201912,4251 -DK,CL,2,310,201912,559461 -DK,CL,2,323,201912,13662 -DK,CL,2,325,201912,71515 -DK,CL,2,329,201912,122264 -DK,CM,2,151,201912,1025 -DK,CM,2,201,201912,128879 -DK,CM,2,205,201912,26820 -DK,CM,2,259,201912,455 -DK,CM,2,261,201912,2982 -DK,CM,2,262,201912,106174 -DK,CM,2,263,201912,10203 -DK,CM,2,264,201912,27999 -DK,CM,2,266,201912,5101 -DK,CM,2,267,201912,1323 -DK,CM,2,271,201912,7351 -DK,CM,2,275,201912,2637 -DK,CM,2,281,201912,3090 -DK,CM,2,282,201912,200204 -DK,CM,2,289,201912,886 -DK,CM,2,291,201912,34717 -DK,CM,2,293,201912,15438 -DK,CM,2,310,201912,2135 -DK,CN,1,011,201912,1019872 -DK,CN,1,012,201912,307380 -DK,CN,1,013,201912,114897 -DK,CN,1,023,201912,114008 -DK,CN,1,030,201912,686 -DK,CN,1,081,201912,45463 -DK,CN,1,089,201912,258838 -DK,CN,1,101,201912,853723 -DK,CN,1,102,201912,1296365 -DK,CN,1,103,201912,1336332 -DK,CN,1,104,201912,2371549 -DK,CN,1,107,201912,73263 -DK,CN,1,108,201912,1164017 -DK,CN,1,109,201912,2150703 -DK,CN,1,110,201912,1368 -DK,CN,1,131,201912,235290 -DK,CN,1,132,201912,1017826 -DK,CN,1,139,201912,9509627 -DK,CN,1,141,201912,47428293 -DK,CN,1,142,201912,106977 -DK,CN,1,143,201912,9496432 -DK,CN,1,151,201912,5735112 -DK,CN,1,152,201912,5079686 -DK,CN,1,161,201912,93746 -DK,CN,1,162,201912,3230479 -DK,CN,1,171,201912,163132 -DK,CN,1,172,201912,3297466 -DK,CN,1,192,201912,429820 -DK,CN,1,201,201912,8716656 -DK,CN,1,203,201912,310899 -DK,CN,1,204,201912,1387410 -DK,CN,1,205,201912,2341432 -DK,CN,1,206,201912,784189 -DK,CN,1,211,201912,2221970 -DK,CN,1,212,201912,493006 -DK,CN,1,221,201912,2112269 -DK,CN,1,222,201912,11416696 -DK,CN,1,231,201912,4102655 -DK,CN,1,232,201912,31264 -DK,CN,1,233,201912,13196 -DK,CN,1,234,201912,3944099 -DK,CN,1,236,201912,733972 -DK,CN,1,237,201912,727616 -DK,CN,1,239,201912,560332 -DK,CN,1,241,201912,324747 -DK,CN,1,242,201912,1261956 -DK,CN,1,243,201912,454967 -DK,CN,1,244,201912,1484943 -DK,CN,1,245,201912,390305 -DK,CN,1,251,201912,6174394 -DK,CN,1,253,201912,24292 -DK,CN,1,254,201912,201045 -DK,CN,1,257,201912,9750689 -DK,CN,1,259,201912,18264153 -DK,CN,1,261,201912,4037568 -DK,CN,1,262,201912,10411110 -DK,CN,1,263,201912,7783904 -DK,CN,1,264,201912,13216239 -DK,CN,1,265,201912,9228508 -DK,CN,1,266,201912,413196 -DK,CN,1,267,201912,2600120 -DK,CN,1,268,201912,38714 -DK,CN,1,271,201912,16516930 -DK,CN,1,272,201912,2276959 -DK,CN,1,273,201912,3091287 -DK,CN,1,274,201912,12673151 -DK,CN,1,275,201912,11316716 -DK,CN,1,279,201912,12888982 -DK,CN,1,281,201912,20849847 -DK,CN,1,282,201912,10731843 -DK,CN,1,283,201912,2299116 -DK,CN,1,284,201912,1231227 -DK,CN,1,289,201912,3641710 -DK,CN,1,291,201912,290522 -DK,CN,1,292,201912,768381 -DK,CN,1,293,201912,5052917 -DK,CN,1,301,201912,160983 -DK,CN,1,302,201912,17771 -DK,CN,1,303,201912,10976 -DK,CN,1,309,201912,4067842 -DK,CN,1,310,201912,21551311 -DK,CN,1,321,201912,1881435 -DK,CN,1,322,201912,311412 -DK,CN,1,323,201912,3424813 -DK,CN,1,324,201912,7153975 -DK,CN,1,325,201912,4574348 -DK,CN,1,329,201912,5525637 -DK,CN,2,011,201912,499725 -DK,CN,2,012,201912,27810 -DK,CN,2,013,201912,20903 -DK,CN,2,022,201912,1624379 -DK,CN,2,089,201912,5626 -DK,CN,2,101,201912,110217116 -DK,CN,2,102,201912,22678620 -DK,CN,2,104,201912,69726 -DK,CN,2,105,201912,2860088 -DK,CN,2,107,201912,622995 -DK,CN,2,108,201912,7517163 -DK,CN,2,109,201912,962102 -DK,CN,2,110,201912,1120892 -DK,CN,2,131,201912,1232 -DK,CN,2,132,201912,818682 -DK,CN,2,139,201912,965977 -DK,CN,2,141,201912,177753 -DK,CN,2,142,201912,2321 -DK,CN,2,143,201912,4390 -DK,CN,2,151,201912,107092 -DK,CN,2,152,201912,57269 -DK,CN,2,161,201912,375451 -DK,CN,2,162,201912,502257 -DK,CN,2,171,201912,13990 -DK,CN,2,172,201912,849182 -DK,CN,2,192,201912,119 -DK,CN,2,201,201912,2629221 -DK,CN,2,203,201912,153746 -DK,CN,2,204,201912,598204 -DK,CN,2,205,201912,9026059 -DK,CN,2,206,201912,18781 -DK,CN,2,211,201912,5139569 -DK,CN,2,212,201912,2877431 -DK,CN,2,221,201912,1713945 -DK,CN,2,222,201912,3358547 -DK,CN,2,231,201912,504872 -DK,CN,2,234,201912,32911 -DK,CN,2,237,201912,89 -DK,CN,2,239,201912,141478 -DK,CN,2,241,201912,78815 -DK,CN,2,242,201912,643710 -DK,CN,2,243,201912,547823 -DK,CN,2,244,201912,499364 -DK,CN,2,245,201912,49653 -DK,CN,2,251,201912,120146 -DK,CN,2,252,201912,46825 -DK,CN,2,253,201912,1468053 -DK,CN,2,257,201912,785594 -DK,CN,2,259,201912,2474440 -DK,CN,2,261,201912,889778 -DK,CN,2,262,201912,1292887 -DK,CN,2,263,201912,1364995 -DK,CN,2,264,201912,1317346 -DK,CN,2,265,201912,13901337 -DK,CN,2,266,201912,5895226 -DK,CN,2,267,201912,1832754 -DK,CN,2,271,201912,7726051 -DK,CN,2,272,201912,5299 -DK,CN,2,273,201912,2419342 -DK,CN,2,274,201912,214578 -DK,CN,2,275,201912,320294 -DK,CN,2,279,201912,3950151 -DK,CN,2,281,201912,18686602 -DK,CN,2,282,201912,22816722 -DK,CN,2,283,201912,949149 -DK,CN,2,284,201912,800948 -DK,CN,2,289,201912,20277998 -DK,CN,2,292,201912,83959 -DK,CN,2,293,201912,706556 -DK,CN,2,303,201912,1938504 -DK,CN,2,309,201912,27297 -DK,CN,2,310,201912,1707346 -DK,CN,2,321,201912,71608 -DK,CN,2,322,201912,102406 -DK,CN,2,323,201912,40988 -DK,CN,2,324,201912,100943 -DK,CN,2,325,201912,4986439 -DK,CN,2,329,201912,170439 -DK,CO,1,012,201912,359515 -DK,CO,1,102,201912,611966 -DK,CO,1,103,201912,2 -DK,CO,1,141,201912,406 -DK,CO,1,151,201912,5914 -DK,CO,1,262,201912,461 -DK,CO,2,108,201912,280804 -DK,CO,2,139,201912,122062 -DK,CO,2,151,201912,4360 -DK,CO,2,172,201912,118 -DK,CO,2,201,201912,353778 -DK,CO,2,203,201912,96443 -DK,CO,2,204,201912,80032 -DK,CO,2,205,201912,154961 -DK,CO,2,211,201912,14749 -DK,CO,2,212,201912,34125 -DK,CO,2,221,201912,5513 -DK,CO,2,222,201912,1309 -DK,CO,2,242,201912,464 -DK,CO,2,244,201912,30430 -DK,CO,2,257,201912,276 -DK,CO,2,259,201912,67996 -DK,CO,2,261,201912,4184 -DK,CO,2,262,201912,28328 -DK,CO,2,263,201912,4888 -DK,CO,2,264,201912,9914 -DK,CO,2,265,201912,111265 -DK,CO,2,266,201912,251103 -DK,CO,2,267,201912,28141 -DK,CO,2,271,201912,29610 -DK,CO,2,272,201912,883 -DK,CO,2,273,201912,179 -DK,CO,2,274,201912,4259 -DK,CO,2,275,201912,27719 -DK,CO,2,279,201912,150159 -DK,CO,2,281,201912,99373 -DK,CO,2,282,201912,147379 -DK,CO,2,283,201912,47916 -DK,CO,2,289,201912,134447 -DK,CO,2,310,201912,66943 -DK,CO,2,325,201912,63581 -DK,CO,2,329,201912,8063 -DK,CR,1,013,201912,18906 -DK,CR,1,108,201912,27 -DK,CR,1,141,201912,385 -DK,CR,1,222,201912,496 -DK,CR,1,273,201912,538 -DK,CR,1,279,201912,12880 -DK,CR,2,105,201912,116361 -DK,CR,2,108,201912,213924 -DK,CR,2,201,201912,93818 -DK,CR,2,203,201912,21138 -DK,CR,2,204,201912,15464 -DK,CR,2,205,201912,12648 -DK,CR,2,211,201912,77613 -DK,CR,2,212,201912,35214 -DK,CR,2,221,201912,12 -DK,CR,2,259,201912,8458 -DK,CR,2,265,201912,11226 -DK,CR,2,266,201912,20064 -DK,CR,2,271,201912,2353 -DK,CR,2,273,201912,9009 -DK,CR,2,274,201912,1544 -DK,CR,2,279,201912,636 -DK,CR,2,281,201912,2707 -DK,CR,2,282,201912,45520 -DK,CR,2,289,201912,39415 -DK,CR,2,303,201912,13129 -DK,CR,2,310,201912,10603 -DK,CR,2,325,201912,3800 -DK,CU,2,203,201912,643 -DK,CU,2,204,201912,96541 -DK,CU,2,205,201912,96304 -DK,CU,2,221,201912,24247 -DK,CU,2,222,201912,3755 -DK,CU,2,239,201912,9624 -DK,CU,2,241,201912,426 -DK,CU,2,242,201912,3469 -DK,CU,2,245,201912,137 -DK,CU,2,259,201912,39025 -DK,CU,2,262,201912,7610 -DK,CU,2,265,201912,19035 -DK,CU,2,266,201912,10001 -DK,CU,2,267,201912,163 -DK,CU,2,271,201912,20396 -DK,CU,2,273,201912,43 -DK,CU,2,281,201912,584478 -DK,CU,2,282,201912,130887 -DK,CU,2,289,201912,750000 -DK,CV,2,259,201912,242763 -DK,CV,2,271,201912,7651 -DK,CV,2,281,201912,2861 -DK,CW,2,108,201912,110544 -DK,CW,2,110,201912,80513 -DK,CW,2,139,201912,73 -DK,CW,2,172,201912,41148 -DK,CW,2,204,201912,623 -DK,CY,1,014,201912,9656 -DK,CY,1,101,201912,5472 -DK,CY,1,105,201912,423070 -DK,CY,1,108,201912,49394 -DK,CY,1,110,201912,42874 -DK,CY,1,139,201912,315 -DK,CY,1,141,201912,468 -DK,CY,1,171,201912,1877 -DK,CY,1,201,201912,57098 -DK,CY,1,203,201912,219612 -DK,CY,1,204,201912,11694 -DK,CY,1,212,201912,138370 -DK,CY,1,222,201912,1872 -DK,CY,1,262,201912,3138 -DK,CY,1,263,201912,11966 -DK,CY,1,265,201912,158261 -DK,CY,1,267,201912,2929 -DK,CY,1,271,201912,506 -DK,CY,1,274,201912,2298 -DK,CY,1,279,201912,1438 -DK,CY,1,282,201912,9901 -DK,CY,1,292,201912,86 -DK,CY,1,324,201912,12236 -DK,CY,2,011,201912,128096 -DK,CY,2,012,201912,556 -DK,CY,2,013,201912,981 -DK,CY,2,014,201912,136733 -DK,CY,2,030,201912,9161 -DK,CY,2,101,201912,115878 -DK,CY,2,102,201912,302300 -DK,CY,2,105,201912,341298 -DK,CY,2,106,201912,20 -DK,CY,2,107,201912,275 -DK,CY,2,108,201912,149835 -DK,CY,2,109,201912,20959 -DK,CY,2,110,201912,224281 -DK,CY,2,139,201912,37051 -DK,CY,2,141,201912,71864 -DK,CY,2,143,201912,14153 -DK,CY,2,151,201912,6206 -DK,CY,2,152,201912,5259 -DK,CY,2,162,201912,52234 -DK,CY,2,171,201912,37 -DK,CY,2,172,201912,22270 -DK,CY,2,201,201912,37775 -DK,CY,2,203,201912,435049 -DK,CY,2,204,201912,123424 -DK,CY,2,205,201912,6910 -DK,CY,2,211,201912,2081 -DK,CY,2,212,201912,8778 -DK,CY,2,221,201912,38327 -DK,CY,2,222,201912,99993 -DK,CY,2,231,201912,2758 -DK,CY,2,234,201912,924 -DK,CY,2,242,201912,3878 -DK,CY,2,244,201912,382 -DK,CY,2,251,201912,9396 -DK,CY,2,257,201912,679 -DK,CY,2,259,201912,12458 -DK,CY,2,261,201912,555 -DK,CY,2,262,201912,144589 -DK,CY,2,263,201912,79102 -DK,CY,2,264,201912,72345 -DK,CY,2,265,201912,21525 -DK,CY,2,266,201912,51066 -DK,CY,2,271,201912,16678 -DK,CY,2,272,201912,884 -DK,CY,2,273,201912,5608 -DK,CY,2,274,201912,6906 -DK,CY,2,275,201912,22143 -DK,CY,2,279,201912,35090 -DK,CY,2,281,201912,92320 -DK,CY,2,282,201912,250301 -DK,CY,2,283,201912,124087 -DK,CY,2,284,201912,6131 -DK,CY,2,289,201912,44640 -DK,CY,2,293,201912,5605 -DK,CY,2,303,201912,2565 -DK,CY,2,309,201912,7654 -DK,CY,2,310,201912,89600 -DK,CY,2,321,201912,1250 -DK,CY,2,324,201912,7978 -DK,CY,2,325,201912,5551 -DK,CY,2,329,201912,4006 -DK,CZ,1,011,201912,47301 -DK,CZ,1,012,201912,17197 -DK,CZ,1,013,201912,9008 -DK,CZ,1,014,201912,34 -DK,CZ,1,022,201912,1057 -DK,CZ,1,030,201912,84536 -DK,CZ,1,089,201912,1135 -DK,CZ,1,101,201912,198267 -DK,CZ,1,102,201912,827 -DK,CZ,1,103,201912,30291 -DK,CZ,1,104,201912,79238 -DK,CZ,1,105,201912,142218 -DK,CZ,1,106,201912,89081 -DK,CZ,1,107,201912,330880 -DK,CZ,1,108,201912,451058 -DK,CZ,1,109,201912,266900 -DK,CZ,1,110,201912,146100 -DK,CZ,1,120,201912,6991 -DK,CZ,1,131,201912,91548 -DK,CZ,1,132,201912,52163 -DK,CZ,1,139,201912,1438875 -DK,CZ,1,141,201912,806968 -DK,CZ,1,143,201912,149608 -DK,CZ,1,151,201912,72699 -DK,CZ,1,152,201912,314899 -DK,CZ,1,161,201912,17404 -DK,CZ,1,162,201912,427609 -DK,CZ,1,171,201912,268762 -DK,CZ,1,172,201912,1643773 -DK,CZ,1,181,201912,24960 -DK,CZ,1,201,201912,1989245 -DK,CZ,1,202,201912,65076 -DK,CZ,1,203,201912,29339 -DK,CZ,1,204,201912,594126 -DK,CZ,1,205,201912,592981 -DK,CZ,1,206,201912,4131 -DK,CZ,1,211,201912,266515 -DK,CZ,1,212,201912,21627607 -DK,CZ,1,221,201912,537739 -DK,CZ,1,222,201912,2761818 -DK,CZ,1,231,201912,243886 -DK,CZ,1,232,201912,10200 -DK,CZ,1,233,201912,273483 -DK,CZ,1,234,201912,550425 -DK,CZ,1,235,201912,39844 -DK,CZ,1,236,201912,2251879 -DK,CZ,1,237,201912,1502 -DK,CZ,1,239,201912,381522 -DK,CZ,1,241,201912,85708 -DK,CZ,1,242,201912,444676 -DK,CZ,1,243,201912,463340 -DK,CZ,1,244,201912,127786 -DK,CZ,1,251,201912,431134 -DK,CZ,1,252,201912,232685 -DK,CZ,1,253,201912,11268 -DK,CZ,1,254,201912,563369 -DK,CZ,1,257,201912,280988 -DK,CZ,1,259,201912,1599432 -DK,CZ,1,261,201912,685118 -DK,CZ,1,262,201912,14299709 -DK,CZ,1,263,201912,2385399 -DK,CZ,1,264,201912,164966 -DK,CZ,1,265,201912,340103 -DK,CZ,1,266,201912,15851 -DK,CZ,1,267,201912,24322 -DK,CZ,1,268,201912,2023 -DK,CZ,1,271,201912,11889747 -DK,CZ,1,272,201912,738638 \ No newline at end of file diff --git a/terra-backend/python-server/data/tr_extra_ue.csv b/terra-backend/python-server/data/tr_extra_ue.csv deleted file mode 100644 index a2060b9..0000000 --- a/terra-backend/python-server/data/tr_extra_ue.csv +++ /dev/null @@ -1,65534 +0,0 @@ -PRODUCT_NSTR,DECLARANT_ISO,PARTNER_ISO,PERIOD,TRANSPORT_MODE,FLOW,VALUE_IN_EUROS,QUANTITY_IN_KG -893,FR,XC,201812,3,2,299,0 -896,FR,XC,201812,3,2,178,0 -931,FR,XC,201812,3,2,8855,228 -939,FR,XC,201812,3,2,89,0 -939,FR,XC,201812,4,2,12,1 -963,FR,XC,201812,3,2,4675,241 -974,FR,XC,201812,3,2,5,7 -125,FR,XL,201812,1,2,33028,32395 -931,FR,XL,201812,3,2,320,0 -939,FR,XL,201812,3,2,61,1 -939,FR,XL,201812,4,2,25,0 -963,FR,XL,201812,3,2,9927,214 -963,FR,XL,201812,3,2,3323,61 -974,FR,XL,201812,3,2,5,8 -979,FR,XL,201812,3,2,1299,116 -999,FR,XL,201812,4,2,415,3 -020,FR,IS,201812,1,2,25818,34925 -020,FR,IS,201812,4,2,3192,3150 -035,FR,IS,201812,1,2,24864,37296 -035,FR,IS,201812,3,2,2856,3024 -035,FR,IS,201812,3,2,4570,2688 -039,FR,IS,201812,1,2,13942,18900 -039,FR,IS,201812,3,2,62670,28575 -099,FR,IS,201812,4,2,7792,80 -121,FR,IS,201812,1,2,1080,307 -121,FR,IS,201812,1,2,46334,2849 -121,FR,IS,201812,3,2,36919,1162 -121,FR,IS,201812,4,2,553,16 -121,FR,IS,201812,4,2,380,4 -121,FR,IS,201812,4,2,11,1 -121,FR,IS,201812,4,2,5800,187 -122,FR,IS,201812,3,2,10522,6061 -125,FR,IS,201812,1,2,34109,1489 -125,FR,IS,201812,1,2,10822,1221 -125,FR,IS,201812,3,2,383,11 -132,FR,IS,201812,3,1,101,0 -132,FR,IS,201812,0,2,60,2 -132,FR,IS,201812,1,2,10481,1728 -132,FR,IS,201812,3,2,10337,1132 -132,FR,IS,201812,3,2,180654,39000 -136,FR,IS,201812,0,2,35,1 -136,FR,IS,201812,1,2,1501,471 -136,FR,IS,201812,3,2,3807,399 -139,FR,IS,201812,3,1,1337,46 -139,FR,IS,201812,1,2,96670,14295 -142,FR,IS,201812,3,1,910,41 -142,FR,IS,201812,4,1,148,3 -142,FR,IS,201812,4,1,922348,82648 -144,FR,IS,201812,4,1,258,9 -144,FR,IS,201812,4,2,13498,848 -147,FR,IS,201812,0,2,492,34 -147,FR,IS,201812,4,2,5519,115 -147,FR,IS,201812,4,2,2342,22 -147,FR,IS,201812,4,2,7659,700 -163,FR,IS,201812,1,2,3104,1508 -164,FR,IS,201812,1,2,286,69 -164,FR,IS,201812,3,2,36,9 -166,FR,IS,201812,4,2,112,5 -179,FR,IS,201812,1,2,36323,7160 -182,FR,IS,201812,1,2,32527,20906 -341,FR,IS,201812,1,2,692,33 -349,FR,IS,201812,4,1,677,50 -551,FR,IS,201812,3,2,215,4 -551,FR,IS,201812,4,2,7778,1 -551,FR,IS,201812,4,2,6912,6 -552,FR,IS,201812,1,2,9,0 -552,FR,IS,201812,4,2,273,2 -568,FR,IS,201812,3,2,161558,50378 -568,FR,IS,201812,4,2,22,0 -691,FR,IS,201812,4,2,464,12 -819,FR,IS,201812,3,1,71,0 -819,FR,IS,201812,3,2,1875,50 -819,FR,IS,201812,3,2,25076,38520 -891,FR,IS,201812,4,1,97,0 -891,FR,IS,201812,1,2,13,0 -891,FR,IS,201812,3,2,542,195 -891,FR,IS,201812,4,2,80,0 -891,FR,IS,201812,4,2,25,0 -892,FR,IS,201812,1,2,2786,202 -892,FR,IS,201812,1,2,8649,903 -892,FR,IS,201812,4,2,283,38 -893,FR,IS,201812,0,1,53,1 -893,FR,IS,201812,3,1,190,0 -893,FR,IS,201812,4,1,52071,4 -893,FR,IS,201812,0,2,833,9 -893,FR,IS,201812,3,2,10,2 -893,FR,IS,201812,4,2,74693,3127 -893,FR,IS,201812,4,2,2187,5 -893,FR,IS,201812,4,2,20641,123 -893,FR,IS,201812,4,2,35570,1590 -896,FR,IS,201812,3,1,8776,0 -896,FR,IS,201812,1,2,22296,23000 -896,FR,IS,201812,4,2,14651,136 -896,FR,IS,201812,4,2,3718,48 -910,FR,IS,201812,4,1,237,0 -910,FR,IS,201812,0,2,1273,22 -910,FR,IS,201812,1,2,793135,66381 -910,FR,IS,201812,1,2,12942,692 -910,FR,IS,201812,1,2,202870,20590 -910,FR,IS,201812,1,2,24549,2326 -910,FR,IS,201812,1,2,212386,22690 -910,FR,IS,201812,2,2,15156,2065 -910,FR,IS,201812,3,2,430194,34084 -910,FR,IS,201812,3,2,41046,2860 -910,FR,IS,201812,3,2,21310,1430 -910,FR,IS,201812,3,2,64279,5809 -910,FR,IS,201812,3,2,668778,59626 -910,FR,IS,201812,3,2,18321,1320 -910,FR,IS,201812,3,2,13934,1190 -910,FR,IS,201812,3,2,42074,2860 -910,FR,IS,201812,4,2,157814,2018 -910,FR,IS,201812,4,2,463,1 -910,FR,IS,201812,4,2,12745,304 -910,FR,IS,201812,4,2,1181,21 -910,FR,IS,201812,4,2,3370,390 -920,FR,IS,201812,1,2,486378,46200 -920,FR,IS,201812,3,2,7882,242 -920,FR,IS,201812,3,2,264285,24580 -920,FR,IS,201812,4,2,478,12 -931,FR,IS,201812,0,1,440,2 -931,FR,IS,201812,3,1,464,1 -931,FR,IS,201812,3,1,72,1 -931,FR,IS,201812,4,1,2112,1 -931,FR,IS,201812,4,1,3608,0 -931,FR,IS,201812,4,1,392,2 -931,FR,IS,201812,0,2,204,1 -931,FR,IS,201812,1,2,1366,24 -931,FR,IS,201812,1,2,4996,69 -931,FR,IS,201812,1,2,52975,1239 -931,FR,IS,201812,1,2,2881,85 -931,FR,IS,201812,3,2,26232,773 -931,FR,IS,201812,3,2,1636,104 -931,FR,IS,201812,3,2,3921,258 -931,FR,IS,201812,4,2,24727,336 -931,FR,IS,201812,4,2,2315,50 -931,FR,IS,201812,4,2,17599,60 -931,FR,IS,201812,4,2,3674,74 -931,FR,IS,201812,4,2,1718,58 -931,FR,IS,201812,4,2,18260,300 -931,FR,IS,201812,4,2,1316,34 -931,FR,IS,201812,4,2,5412,21 -931,FR,IS,201812,4,2,7742,780 -931,FR,IS,201812,4,2,10998,87 -931,FR,IS,201812,4,2,140509,66 -939,FR,IS,201812,3,1,23487,256 -939,FR,IS,201812,0,2,853,20 -939,FR,IS,201812,1,2,38920,3075 -939,FR,IS,201812,1,2,5756,113 -939,FR,IS,201812,1,2,9937,298 -939,FR,IS,201812,1,2,354840,41527 -939,FR,IS,201812,3,2,41556,2298 -939,FR,IS,201812,3,2,5153,385 -939,FR,IS,201812,3,2,2658,66 -939,FR,IS,201812,3,2,15083,2329 -939,FR,IS,201812,4,2,61962,1042 -939,FR,IS,201812,4,2,10541,281 -939,FR,IS,201812,4,2,38036,306 -939,FR,IS,201812,4,2,880,0 -939,FR,IS,201812,4,2,73185,4260 -939,FR,IS,201812,4,2,10690,98 -939,FR,IS,201812,4,2,13646,110 -941,FR,IS,201812,3,2,2334,1382 -949,FR,IS,201812,4,1,324,7 -949,FR,IS,201812,0,2,670,4 -949,FR,IS,201812,1,2,369,3 -949,FR,IS,201812,1,2,795,4 -949,FR,IS,201812,1,2,40,1 -949,FR,IS,201812,3,2,17320,1728 -949,FR,IS,201812,3,2,5466,250 -949,FR,IS,201812,4,2,15477,196 -949,FR,IS,201812,4,2,1969,200 -949,FR,IS,201812,4,2,4192,100 -949,FR,IS,201812,4,2,15747,150 -949,FR,IS,201812,4,2,2200,30 -951,FR,IS,201812,1,2,42,0 -951,FR,IS,201812,1,2,182,4 -951,FR,IS,201812,3,2,2111,77 -951,FR,IS,201812,4,2,3669,136 -952,FR,IS,201812,3,1,836,21 -952,FR,IS,201812,1,2,2500,417 -952,FR,IS,201812,3,2,207,8 -952,FR,IS,201812,3,2,4237,1376 -952,FR,IS,201812,4,2,1188,4 -962,FR,IS,201812,0,1,1479,55 -962,FR,IS,201812,3,1,717,3 -962,FR,IS,201812,3,1,2587,104 -962,FR,IS,201812,4,1,34,1 -962,FR,IS,201812,1,2,360,33 -962,FR,IS,201812,3,2,814,21 -962,FR,IS,201812,4,2,1053,39 -962,FR,IS,201812,4,2,1974,44 -962,FR,IS,201812,4,2,6023,48 -963,FR,IS,201812,0,1,211,0 -963,FR,IS,201812,3,1,10950,36 -963,FR,IS,201812,0,2,2782,15 -963,FR,IS,201812,1,2,26930,289 -963,FR,IS,201812,3,2,3706,69 -963,FR,IS,201812,4,2,25472,284 -963,FR,IS,201812,4,2,2677,46 -963,FR,IS,201812,4,2,101701,2174 -963,FR,IS,201812,4,2,7506,180 -963,FR,IS,201812,4,2,4345,270 -963,FR,IS,201812,4,2,46171,1239 -963,FR,IS,201812,4,2,22985,170 -971,FR,IS,201812,4,1,1429,53 -971,FR,IS,201812,1,2,497,3 -971,FR,IS,201812,1,2,243,3 -971,FR,IS,201812,3,2,3692,113 -971,FR,IS,201812,4,2,31861,1658 -971,FR,IS,201812,4,2,1133,260 -972,FR,IS,201812,1,2,16690,15984 -972,FR,IS,201812,3,2,9364,24388 -973,FR,IS,201812,0,2,90,3 -973,FR,IS,201812,3,2,15488,5427 -974,FR,IS,201812,4,1,95,1 -974,FR,IS,201812,0,2,73,1 -974,FR,IS,201812,3,2,228,42 -974,FR,IS,201812,4,2,72,17 -974,FR,IS,201812,4,2,3259,80 -975,FR,IS,201812,1,2,7859,1091 -975,FR,IS,201812,4,2,307,4 -975,FR,IS,201812,4,2,1084,19 -976,FR,IS,201812,1,2,8,21 -979,FR,IS,201812,3,1,1194,86 -979,FR,IS,201812,4,1,58,2 -979,FR,IS,201812,4,1,7070,11 -979,FR,IS,201812,4,1,203,15 -979,FR,IS,201812,0,2,14359,49 -979,FR,IS,201812,1,2,19109,5497 -979,FR,IS,201812,1,2,5458,257 -979,FR,IS,201812,1,2,2389,15 -979,FR,IS,201812,1,2,316,9 -979,FR,IS,201812,3,2,13456,449 -979,FR,IS,201812,3,2,5224,98 -979,FR,IS,201812,3,2,67,1 -979,FR,IS,201812,4,2,33082,420 -979,FR,IS,201812,4,2,13646,61 -979,FR,IS,201812,4,2,11398,392 -979,FR,IS,201812,4,2,8583,250 -979,FR,IS,201812,4,2,4198,180 -979,FR,IS,201812,4,2,1448,8 -979,FR,IS,201812,4,2,10828,380 -979,FR,IS,201812,4,2,8278,25 -979,FR,IS,201812,4,2,59889,16 -979,FR,IS,201812,5,2,1450,15 -999,FR,IS,201812,4,1,359,0 -999,FR,IS,201812,4,1,5780,0 -999,FR,IS,201812,1,2,48,0 -999,FR,IS,201812,1,2,28000,0 -999,FR,IS,201812,3,2,2507,15 -999,FR,IS,201812,4,2,258,0 -999,FR,IS,201812,4,2,58,1 -001,FR,NO,201812,4,1,215,4 -001,FR,NO,201812,3,2,4111,1200 -016,FR,NO,201812,3,2,126,25 -031,FR,NO,201812,3,2,86357,104156 -031,FR,NO,201812,3,2,817636,1035421 -031,FR,NO,201812,3,2,183687,232314 -035,FR,NO,201812,1,2,36242,41184 -035,FR,NO,201812,1,2,25265,16948 -035,FR,NO,201812,3,2,21542,16394 -035,FR,NO,201812,3,2,2005,439 -035,FR,NO,201812,3,2,113413,84698 -035,FR,NO,201812,3,2,9363,9856 -035,FR,NO,201812,3,2,98890,51748 -035,FR,NO,201812,3,2,1086,691 -039,FR,NO,201812,3,2,125899,93454 -039,FR,NO,201812,3,2,1333257,1176104 -039,FR,NO,201812,3,2,298618,236710 -039,FR,NO,201812,3,2,1606,1008 -039,FR,NO,201812,4,2,16427,320 -056,FR,NO,201812,3,2,1596,159 -056,FR,NO,201812,4,2,24933,200 -057,FR,NO,201812,4,2,26,1 -099,FR,NO,201812,1,1,401500,3650000 -099,FR,NO,201812,1,2,277700,5000 -099,FR,NO,201812,3,2,32500,15246 -099,FR,NO,201812,3,2,85,24 -099,FR,NO,201812,3,2,34860,10000 -099,FR,NO,201812,4,2,3084,0 -099,FR,NO,201812,4,2,18200,30 -099,FR,NO,201812,4,2,4320,330 -099,FR,NO,201812,4,2,1081,1 -121,FR,NO,201812,0,2,664,74 -121,FR,NO,201812,1,2,22870,3987 -121,FR,NO,201812,1,2,202913,20406 -121,FR,NO,201812,1,2,13801,1115 -121,FR,NO,201812,1,2,49641,18810 -121,FR,NO,201812,1,2,191378,27532 -121,FR,NO,201812,3,2,1600039,103590 -121,FR,NO,201812,3,2,685,9 -121,FR,NO,201812,3,2,2692,432 -121,FR,NO,201812,3,2,40017,2997 -121,FR,NO,201812,4,2,805,47 -121,FR,NO,201812,4,2,307,17 -122,FR,NO,201812,3,1,12129,10938 -122,FR,NO,201812,3,1,2772,9971 -122,FR,NO,201812,1,2,2928,855 -122,FR,NO,201812,3,2,74,31 -122,FR,NO,201812,3,2,14271,52200 -125,FR,NO,201812,3,1,13876,5 -125,FR,NO,201812,1,2,109418,8800 -125,FR,NO,201812,1,2,166900,11402 -125,FR,NO,201812,1,2,153172,11311 -125,FR,NO,201812,1,2,208953,12864 -125,FR,NO,201812,1,2,15806,5702 -125,FR,NO,201812,3,2,203020,23262 -125,FR,NO,201812,3,2,8024,156 -125,FR,NO,201812,3,2,148520,15146 -125,FR,NO,201812,3,2,76670,11611 -125,FR,NO,201812,4,2,2834,450 -128,FR,NO,201812,1,1,528,375 -128,FR,NO,201812,1,1,477,255 -128,FR,NO,201812,3,1,116,2 -128,FR,NO,201812,3,2,8260,3620 -131,FR,NO,201812,3,1,683,24 -131,FR,NO,201812,0,2,150,0 -131,FR,NO,201812,1,2,104413,6193 -131,FR,NO,201812,3,2,14950,2478 -131,FR,NO,201812,4,2,257,0 -132,FR,NO,201812,0,1,86,3 -132,FR,NO,201812,0,2,170,4 -132,FR,NO,201812,1,2,6393,1698 -132,FR,NO,201812,1,2,50231,7603 -132,FR,NO,201812,3,2,54361,5097 -132,FR,NO,201812,3,2,153363,43336 -132,FR,NO,201812,3,2,49,3 -132,FR,NO,201812,3,2,50910,16051 -132,FR,NO,201812,3,2,18673,1957 -132,FR,NO,201812,3,2,68811,18495 -132,FR,NO,201812,3,2,70000,10076 -132,FR,NO,201812,3,2,150754,19286 -132,FR,NO,201812,3,2,113855,24220 -132,FR,NO,201812,3,2,111359,24000 -132,FR,NO,201812,4,2,58,4 -133,FR,NO,201812,0,1,329,6 -133,FR,NO,201812,3,2,9612,342 -133,FR,NO,201812,3,2,539,6 -133,FR,NO,201812,3,2,2920,975 -133,FR,NO,201812,3,2,46,5 -135,FR,NO,201812,4,2,2588,37 -136,FR,NO,201812,1,2,13917,7200 -136,FR,NO,201812,1,2,67262,21919 -136,FR,NO,201812,3,2,58292,9759 -136,FR,NO,201812,3,2,192,16 -136,FR,NO,201812,3,2,1000,300 -136,FR,NO,201812,3,2,18760,13165 -136,FR,NO,201812,4,2,10,0 -136,FR,NO,201812,4,2,3595,196 -139,FR,NO,201812,3,1,2477,176 -139,FR,NO,201812,4,1,619,30 -139,FR,NO,201812,1,2,232150,121754 -139,FR,NO,201812,1,2,5701,1191 -139,FR,NO,201812,3,2,187921,39586 -139,FR,NO,201812,3,2,31674,1590 -139,FR,NO,201812,3,2,26311,3013 -139,FR,NO,201812,3,2,7102,925 -139,FR,NO,201812,3,2,16305,3571 -139,FR,NO,201812,3,2,24027,4058 -139,FR,NO,201812,4,2,76,8 -141,FR,NO,201812,3,2,20942,1930 -141,FR,NO,201812,3,2,7396,211 -142,FR,NO,201812,1,1,84946,15440 -142,FR,NO,201812,1,1,98721,20000 -142,FR,NO,201812,1,1,14874,2097 -142,FR,NO,201812,3,1,153,3 -142,FR,NO,201812,3,1,10,0 -142,FR,NO,201812,4,1,5367,208 -142,FR,NO,201812,4,1,8246,215 -142,FR,NO,201812,4,1,16103,509 -142,FR,NO,201812,3,2,13837,1982 -142,FR,NO,201812,3,2,19605,2012 -144,FR,NO,201812,1,2,22815,1665 -144,FR,NO,201812,3,2,201422,20244 -144,FR,NO,201812,3,2,3529,192 -144,FR,NO,201812,3,2,4612,501 -144,FR,NO,201812,3,2,80588,11768 -145,FR,NO,201812,3,2,3008,1350 -146,FR,NO,201812,3,2,45695,1678 -147,FR,NO,201812,1,2,950,23 -147,FR,NO,201812,3,2,89183,8914 -147,FR,NO,201812,3,2,800,75 -147,FR,NO,201812,3,2,20395,2780 -147,FR,NO,201812,3,2,8652,935 -147,FR,NO,201812,3,2,2783,456 -148,FR,NO,201812,4,1,530,19 -148,FR,NO,201812,3,2,30707,13762 -148,FR,NO,201812,3,2,4072,100 -148,FR,NO,201812,3,2,158031,51015 -148,FR,NO,201812,4,2,3228,5 -163,FR,NO,201812,1,1,1078,252 -163,FR,NO,201812,1,1,1071,252 -163,FR,NO,201812,1,2,30669,10243 -163,FR,NO,201812,1,2,22430,7603 -163,FR,NO,201812,1,2,29645,15753 -163,FR,NO,201812,1,2,30295,8477 -163,FR,NO,201812,1,2,11300,4209 -163,FR,NO,201812,1,2,6000,7762 -163,FR,NO,201812,1,2,61080,61151 -163,FR,NO,201812,1,2,235530,65574 -163,FR,NO,201812,3,2,311004,148833 -163,FR,NO,201812,3,2,148036,20895 -163,FR,NO,201812,3,2,1458,122 -163,FR,NO,201812,3,2,16128,2635 -163,FR,NO,201812,3,2,17257,5544 -163,FR,NO,201812,3,2,13848,7031 -163,FR,NO,201812,3,2,28220,13615 -163,FR,NO,201812,3,2,47696,31690 -163,FR,NO,201812,3,2,88753,63488 -163,FR,NO,201812,3,2,26857,20371 -163,FR,NO,201812,3,2,49779,36980 -163,FR,NO,201812,3,2,302713,195366 -163,FR,NO,201812,3,2,46510,17539 -163,FR,NO,201812,3,2,7090,9314 -164,FR,NO,201812,1,2,16404,18290 -164,FR,NO,201812,3,2,235139,27629 -164,FR,NO,201812,3,2,2576,277 -164,FR,NO,201812,3,2,38,3 -164,FR,NO,201812,3,2,3622,1320 -164,FR,NO,201812,3,2,4803,1174 -164,FR,NO,201812,3,2,42926,9310 -164,FR,NO,201812,3,2,96305,40599 -164,FR,NO,201812,3,2,3168,964 -165,FR,NO,201812,1,2,712250,2200000 -165,FR,NO,201812,3,2,20,5 -166,FR,NO,201812,1,2,12503,2650 -166,FR,NO,201812,3,2,28888,9949 -166,FR,NO,201812,3,2,227,21 -166,FR,NO,201812,3,2,679,34 -166,FR,NO,201812,3,2,10833,1849 -179,FR,NO,201812,3,1,4934,4800 -179,FR,NO,201812,1,2,27446,14470 -179,FR,NO,201812,1,2,543200,2800000 -179,FR,NO,201812,1,2,554400,3300000 -179,FR,NO,201812,3,2,790216,256520 -179,FR,NO,201812,3,2,9852,2970 -179,FR,NO,201812,4,2,225,175 -182,FR,NO,201812,1,1,51830,8000 -182,FR,NO,201812,1,1,25990,4000 -182,FR,NO,201812,1,1,757398,801479 -182,FR,NO,201812,3,1,527,13 -182,FR,NO,201812,4,1,1195,30 -182,FR,NO,201812,1,2,53005,22700 -182,FR,NO,201812,3,2,9038,637 -182,FR,NO,201812,3,2,5083,620 -182,FR,NO,201812,3,2,2781,188 -182,FR,NO,201812,3,2,56581,20160 -182,FR,NO,201812,4,2,16,3 -182,FR,NO,201812,4,2,8823,520 -310,FR,NO,201812,1,1,10138849,24251000 -310,FR,NO,201812,1,1,46682547,113456000 -310,FR,NO,201812,1,1,37621240,72133619 -310,FR,NO,201812,4,1,129,18 -321,FR,NO,201812,1,2,15174,21060 -323,FR,NO,201812,3,2,320,105 -325,FR,NO,201812,1,1,13372351,28977371 -325,FR,NO,201812,4,1,90,4 -325,FR,NO,201812,1,2,686245,1005665 -325,FR,NO,201812,1,2,4624243,10490619 -327,FR,NO,201812,1,2,4833939,12058566 -327,FR,NO,201812,1,2,5679995,12388275 -327,FR,NO,201812,4,2,135,2 -330,FR,NO,201812,1,1,4139500,11378260 -330,FR,NO,201812,1,1,59780339,0 -330,FR,NO,201812,1,1,1141672,2885368 -330,FR,NO,201812,1,1,2294605,5799957 -330,FR,NO,201812,1,1,7506530,19789054 -330,FR,NO,201812,1,1,752012,2100089 -330,FR,NO,201812,3,2,288,1 -330,FR,NO,201812,3,2,4407,246 -341,FR,NO,201812,1,2,2927,150 -341,FR,NO,201812,3,2,74884,33297 -341,FR,NO,201812,3,2,16536,3750 -341,FR,NO,201812,3,2,47080,16401 -341,FR,NO,201812,3,2,10035,2729 -341,FR,NO,201812,3,2,2235,3080 -341,FR,NO,201812,3,2,140,6 -341,FR,NO,201812,4,2,266,16 -349,FR,NO,201812,4,1,142,13 -410,FR,NO,201812,1,1,199822,1437197 -451,FR,NO,201812,1,1,1043619,2043553 -451,FR,NO,201812,3,2,163815,117661 -459,FR,NO,201812,1,2,5187817,6050000 -459,FR,NO,201812,3,2,42290,3075 -465,FR,NO,201812,3,1,407,28 -466,FR,NO,201812,1,1,309258,2129000 -466,FR,NO,201812,1,2,644810,15626000 -532,FR,NO,201812,3,2,71562,118306 -532,FR,NO,201812,3,2,16258,27860 -532,FR,NO,201812,3,2,15117,24760 -533,FR,NO,201812,3,1,5406,1730 -533,FR,NO,201812,1,2,32,1 -533,FR,NO,201812,3,2,21657,4606 -533,FR,NO,201812,3,2,50318,47344 -542,FR,NO,201812,1,2,21934,29710 -542,FR,NO,201812,1,2,57741,79090 -542,FR,NO,201812,3,2,125762,161725 -542,FR,NO,201812,3,2,20376,25390 -542,FR,NO,201812,3,2,60011,19028 -542,FR,NO,201812,3,2,6907,11234 -542,FR,NO,201812,3,2,46198,23392 -542,FR,NO,201812,4,2,137,0 -543,FR,NO,201812,3,1,38321,7573 -543,FR,NO,201812,3,2,211,15 -543,FR,NO,201812,3,2,28353,5688 -551,FR,NO,201812,1,1,1083,13 -551,FR,NO,201812,3,1,164984,9268 -551,FR,NO,201812,3,1,198147,8816 -551,FR,NO,201812,4,1,707,48 -551,FR,NO,201812,0,2,88,3 -551,FR,NO,201812,1,2,1121,16 -551,FR,NO,201812,3,2,304698,25747 -551,FR,NO,201812,3,2,224,55 -551,FR,NO,201812,3,2,483290,48566 -551,FR,NO,201812,3,2,281362,183522 -551,FR,NO,201812,3,2,40671,22599 -551,FR,NO,201812,3,2,99,0 -551,FR,NO,201812,4,2,14733,53 -551,FR,NO,201812,4,2,34034,60 -552,FR,NO,201812,3,1,15506,846 -552,FR,NO,201812,1,2,2498,70 -552,FR,NO,201812,3,2,37692,1090 -552,FR,NO,201812,3,2,140482,65379 -552,FR,NO,201812,3,2,136,14 -552,FR,NO,201812,3,2,26494,10654 -552,FR,NO,201812,4,2,5,0 -562,FR,NO,201812,0,1,680168,328760 -562,FR,NO,201812,1,1,7058154,3485320 -562,FR,NO,201812,3,1,126683,70759 -565,FR,NO,201812,3,2,524102,1629 -565,FR,NO,201812,3,2,11350,20 -565,FR,NO,201812,4,2,2769,4 -568,FR,NO,201812,1,1,13540,766 -568,FR,NO,201812,3,1,30719,1780 -568,FR,NO,201812,3,1,170216,8458 -568,FR,NO,201812,1,2,4751,265 -568,FR,NO,201812,1,2,134890,23232 -568,FR,NO,201812,3,2,85318,9604 -568,FR,NO,201812,3,2,1230,25 -568,FR,NO,201812,3,2,141122,24183 -568,FR,NO,201812,3,2,76642,17456 -568,FR,NO,201812,3,2,21990,1269 -568,FR,NO,201812,4,2,25,0 -568,FR,NO,201812,4,2,2000,330 -611,FR,NO,201812,3,1,110,0 -614,FR,NO,201812,3,2,31600,48000 -614,FR,NO,201812,3,2,6240,24000 -621,FR,NO,201812,3,2,6940,24663 -621,FR,NO,201812,3,2,1237,95 -621,FR,NO,201812,3,2,179,8 -623,FR,NO,201812,1,1,95160,1077597 -631,FR,NO,201812,1,1,1309588,55000000 -631,FR,NO,201812,3,1,150,1090 -632,FR,NO,201812,3,1,28132,72300 -632,FR,NO,201812,3,1,87964,224600 -632,FR,NO,201812,3,1,50557,120400 -633,FR,NO,201812,3,1,10,1000 -634,FR,NO,201812,3,2,130,150 -639,FR,NO,201812,1,1,110871,4461000 -639,FR,NO,201812,8,1,136519,1025759 -639,FR,NO,201812,3,2,6830,5040 -691,FR,NO,201812,3,1,4453,63 -691,FR,NO,201812,1,2,2914,84 -691,FR,NO,201812,3,2,45690,7543 -691,FR,NO,201812,3,2,84871,5835 -692,FR,NO,201812,1,2,1965,550 -692,FR,NO,201812,1,2,5436,820 -692,FR,NO,201812,3,2,2784,3382 -719,FR,NO,201812,3,2,202,43 -719,FR,NO,201812,3,2,709,12 -723,FR,NO,201812,3,2,107,23 -724,FR,NO,201812,1,2,1342,3181 -729,FR,NO,201812,3,2,185,39 -819,FR,NO,201812,1,1,3371866,3257199 -819,FR,NO,201812,1,1,264263,2495051 -819,FR,NO,201812,1,1,279854,3150000 -819,FR,NO,201812,1,1,31272,24000 -819,FR,NO,201812,3,1,2486,1587 -819,FR,NO,201812,3,1,71189,143022 -819,FR,NO,201812,3,1,4338,3000 -819,FR,NO,201812,4,1,335,1 -819,FR,NO,201812,4,1,961,10 -819,FR,NO,201812,1,2,20391,8100 -819,FR,NO,201812,1,2,52370,16000 -819,FR,NO,201812,1,2,145453,118000 -819,FR,NO,201812,1,2,13446,11080 -819,FR,NO,201812,3,2,82832,26617 -819,FR,NO,201812,3,2,893,9600 -819,FR,NO,201812,3,2,3575,375 -819,FR,NO,201812,3,2,734,10800 -819,FR,NO,201812,3,2,7396,2000 -819,FR,NO,201812,3,2,33879,20001 -819,FR,NO,201812,3,2,13533,33060 -819,FR,NO,201812,3,2,168327,126600 -819,FR,NO,201812,3,2,21943,26780 -819,FR,NO,201812,3,2,71260,52840 -819,FR,NO,201812,4,2,1493,1 -819,FR,NO,201812,4,2,6975,10 -820,FR,NO,201812,3,2,65700,95000 -891,FR,NO,201812,3,1,7204,163 -891,FR,NO,201812,4,1,46,0 -891,FR,NO,201812,4,1,814,9 -891,FR,NO,201812,1,2,7048,2043 -891,FR,NO,201812,1,2,5262,1172 -891,FR,NO,201812,1,2,9528,3496 -891,FR,NO,201812,1,2,138401,137500 -891,FR,NO,201812,1,2,176697,145200 -891,FR,NO,201812,1,2,53505,8996 -891,FR,NO,201812,3,2,390104,120998 -891,FR,NO,201812,3,2,3927,1533 -891,FR,NO,201812,3,2,7610,250 -891,FR,NO,201812,3,2,54541,13372 -891,FR,NO,201812,3,2,86452,22880 -891,FR,NO,201812,3,2,67814,26102 -891,FR,NO,201812,3,2,5617,996 -891,FR,NO,201812,3,2,70878,47560 -891,FR,NO,201812,4,2,455,15 -891,FR,NO,201812,4,2,5933,18 -892,FR,NO,201812,1,2,41,0 -892,FR,NO,201812,3,2,134117,8163 -892,FR,NO,201812,3,2,21173,3399 -892,FR,NO,201812,3,2,23796,4093 -892,FR,NO,201812,3,2,327942,8156 -892,FR,NO,201812,4,2,617,4 -892,FR,NO,201812,4,2,1440,30 -892,FR,NO,201812,4,2,3960,6 -893,FR,NO,201812,0,1,378676,6227 -893,FR,NO,201812,1,1,20140,86 -893,FR,NO,201812,3,1,708,4 -893,FR,NO,201812,3,1,432913,27454 -893,FR,NO,201812,3,1,7270,20993 -893,FR,NO,201812,3,1,8268,2080 -893,FR,NO,201812,3,1,1681,1093 -893,FR,NO,201812,4,1,60,0 -893,FR,NO,201812,4,1,47,3 -893,FR,NO,201812,4,1,59,3 -893,FR,NO,201812,4,1,8,0 -893,FR,NO,201812,0,2,163,2 -893,FR,NO,201812,1,2,82361,46158 -893,FR,NO,201812,1,2,9099,581 -893,FR,NO,201812,1,2,16331,1370 -893,FR,NO,201812,1,2,11121,1362 -893,FR,NO,201812,1,2,22846,10531 -893,FR,NO,201812,3,2,4491666,70868 -893,FR,NO,201812,3,2,150012,60759 -893,FR,NO,201812,3,2,95615,9088 -893,FR,NO,201812,3,2,14319,18 -893,FR,NO,201812,3,2,188356,18402 -893,FR,NO,201812,3,2,227678,205061 -893,FR,NO,201812,3,2,6702,1600 -893,FR,NO,201812,3,2,23792,20120 -893,FR,NO,201812,4,2,108647,202 -893,FR,NO,201812,4,2,9376,20 -893,FR,NO,201812,4,2,77055,56 -893,FR,NO,201812,4,2,30471,0 -893,FR,NO,201812,4,2,7704,50 -893,FR,NO,201812,4,2,1617,1 -893,FR,NO,201812,4,2,187,0 -893,FR,NO,201812,4,2,219979,4060 -893,FR,NO,201812,4,2,6626,47 -893,FR,NO,201812,4,2,142253,460 -894,FR,NO,201812,3,1,758700,13000 -894,FR,NO,201812,3,1,48614,1560 -894,FR,NO,201812,3,2,75626,8 -894,FR,NO,201812,4,2,5000,0 -895,FR,NO,201812,1,2,28869,44000 -896,FR,NO,201812,3,1,149179,91 -896,FR,NO,201812,3,1,18315,23691 -896,FR,NO,201812,3,1,76875,120090 -896,FR,NO,201812,4,1,124,1 -896,FR,NO,201812,4,1,221,7 -896,FR,NO,201812,4,1,30588,65 -896,FR,NO,201812,4,1,147406,142 -896,FR,NO,201812,0,2,118,0 -896,FR,NO,201812,1,2,7660,1081 -896,FR,NO,201812,1,2,10873,26980 -896,FR,NO,201812,1,2,13282,26940 -896,FR,NO,201812,3,2,258344,23280 -896,FR,NO,201812,3,2,43182,7026 -896,FR,NO,201812,3,2,1618,600 -896,FR,NO,201812,3,2,413,12 -896,FR,NO,201812,3,2,136116,85040 -896,FR,NO,201812,3,2,89348,28223 -896,FR,NO,201812,3,2,68550,13086 -896,FR,NO,201812,3,2,47932,5300 -896,FR,NO,201812,3,2,26416,22512 -896,FR,NO,201812,4,2,56626,267 -896,FR,NO,201812,4,2,22528,2381 -896,FR,NO,201812,4,2,110586,3850 -896,FR,NO,201812,4,2,7079,32 -896,FR,NO,201812,4,2,32271,114 -910,FR,NO,201812,0,1,1209,107 -910,FR,NO,201812,1,1,4964,209 -910,FR,NO,201812,3,1,143486,6228 -910,FR,NO,201812,3,1,2131,165 -910,FR,NO,201812,3,1,58441,6513 -910,FR,NO,201812,3,1,114508,4386 -910,FR,NO,201812,3,1,81938,7317 -910,FR,NO,201812,4,1,52338,523 -910,FR,NO,201812,4,1,62,3 -910,FR,NO,201812,4,1,1614,3 -910,FR,NO,201812,4,1,30504,484 -910,FR,NO,201812,4,1,829,2 -910,FR,NO,201812,0,2,906,13 -910,FR,NO,201812,1,2,2012066,187026 -910,FR,NO,201812,1,2,584203,41305 -910,FR,NO,201812,1,2,142654,9850 -910,FR,NO,201812,1,2,428956,41173 -910,FR,NO,201812,2,2,3538925,308468 -910,FR,NO,201812,3,2,15062538,1114228 -910,FR,NO,201812,3,2,107906,6573 -910,FR,NO,201812,3,2,359046,22169 -910,FR,NO,201812,3,2,1099,48 -910,FR,NO,201812,3,2,19247,1320 -910,FR,NO,201812,3,2,188806,14705 -910,FR,NO,201812,3,2,63202,4290 -910,FR,NO,201812,3,2,922465,83711 -910,FR,NO,201812,3,2,2238,36 -910,FR,NO,201812,3,2,2254049,192364 -910,FR,NO,201812,3,2,77294,9155 -910,FR,NO,201812,3,2,126181,9400 -910,FR,NO,201812,3,2,24398,2180 -910,FR,NO,201812,3,2,12690,498 -910,FR,NO,201812,4,2,1924669,2639 -910,FR,NO,201812,4,2,195943,223 -910,FR,NO,201812,4,2,23416,259 -910,FR,NO,201812,4,2,2078,2 -910,FR,NO,201812,4,2,51010,97 -910,FR,NO,201812,4,2,210819,7120 -910,FR,NO,201812,4,2,37230,6 -910,FR,NO,201812,4,2,9294,92 -910,FR,NO,201812,9,2,211732,25903 -920,FR,NO,201812,3,1,9006,687 -920,FR,NO,201812,3,1,887,88 -920,FR,NO,201812,4,1,1785,29 -920,FR,NO,201812,1,2,1929402,220350 -920,FR,NO,201812,1,2,28172,4274 -920,FR,NO,201812,3,2,7790,1284 -920,FR,NO,201812,3,2,5798,965 -920,FR,NO,201812,3,2,1792,64 -920,FR,NO,201812,3,2,161299,26868 -920,FR,NO,201812,3,2,33831,5000 -920,FR,NO,201812,3,2,826188,74840 -920,FR,NO,201812,3,2,113643,13000 -920,FR,NO,201812,3,2,91955,11770 -920,FR,NO,201812,4,2,542,57 -931,FR,NO,201812,0,1,58334,269 -931,FR,NO,201812,1,1,174,12 -931,FR,NO,201812,3,1,799851,9768 -931,FR,NO,201812,3,1,65266,141 -931,FR,NO,201812,3,1,5065,63 -931,FR,NO,201812,3,1,360587,3305 -931,FR,NO,201812,3,1,2183,150 -931,FR,NO,201812,3,1,806,32 -931,FR,NO,201812,4,1,378902,402 -931,FR,NO,201812,4,1,15248,1 -931,FR,NO,201812,4,1,185986,186 -931,FR,NO,201812,4,1,442,2 -931,FR,NO,201812,4,1,667950,748 -931,FR,NO,201812,4,1,3023,0 -931,FR,NO,201812,4,1,132062,201 -931,FR,NO,201812,4,1,81830,77 -931,FR,NO,201812,0,2,6147,21 -931,FR,NO,201812,1,2,112743,5006 -931,FR,NO,201812,1,2,321765,95917 -931,FR,NO,201812,1,2,2967,14 -931,FR,NO,201812,3,2,6167223,345626 -931,FR,NO,201812,3,2,23295,1757 -931,FR,NO,201812,3,2,7259,207 -931,FR,NO,201812,3,2,157374,1824 -931,FR,NO,201812,3,2,1360955,353438 -931,FR,NO,201812,3,2,211577,2937 -931,FR,NO,201812,3,2,578366,14864 -931,FR,NO,201812,3,2,3662,300 -931,FR,NO,201812,3,2,19090,5035 -931,FR,NO,201812,3,2,5840,31 -931,FR,NO,201812,3,2,536182,19757 -931,FR,NO,201812,4,2,368074,1412 -931,FR,NO,201812,4,2,16000,300 -931,FR,NO,201812,4,2,253727,1294 -931,FR,NO,201812,4,2,450,7 -931,FR,NO,201812,4,2,63531,267 -931,FR,NO,201812,4,2,2520,0 -931,FR,NO,201812,4,2,140651,624 -931,FR,NO,201812,4,2,3000,1 -931,FR,NO,201812,4,2,1134,13 -931,FR,NO,201812,4,2,273129,1652 -931,FR,NO,201812,4,2,124381,195 -931,FR,NO,201812,4,2,626566,13810 -931,FR,NO,201812,4,2,261032,1198 -931,FR,NO,201812,4,2,429122,740 -931,FR,NO,201812,5,2,1406,14 -939,FR,NO,201812,0,1,1141,26 -939,FR,NO,201812,3,1,317635,7308 -939,FR,NO,201812,3,1,51111,4080 -939,FR,NO,201812,3,1,62719,6081 -939,FR,NO,201812,3,1,160,40 -939,FR,NO,201812,3,1,6072906,4992 -939,FR,NO,201812,3,1,10710,433 -939,FR,NO,201812,3,1,1250,250 -939,FR,NO,201812,4,1,11612,79 -939,FR,NO,201812,4,1,16907,10 -939,FR,NO,201812,4,1,16080,54 -939,FR,NO,201812,4,1,268399,880 -939,FR,NO,201812,4,1,22568,31 -939,FR,NO,201812,4,1,887,2 -939,FR,NO,201812,0,2,5285,13 -939,FR,NO,201812,1,2,293564,6863 -939,FR,NO,201812,1,2,102125,17635 -939,FR,NO,201812,1,2,7959,96 -939,FR,NO,201812,1,2,102378,5630 -939,FR,NO,201812,1,2,878557,128863 -939,FR,NO,201812,1,2,26715,2016 -939,FR,NO,201812,1,2,76770,1298 -939,FR,NO,201812,3,2,5051627,248679 -939,FR,NO,201812,3,2,26430,997 -939,FR,NO,201812,3,2,29904,1241 -939,FR,NO,201812,3,2,344189,9282 -939,FR,NO,201812,3,2,746157,94275 -939,FR,NO,201812,3,2,1771548,155107 -939,FR,NO,201812,3,2,374441,72514 -939,FR,NO,201812,3,2,172041,3120 -939,FR,NO,201812,3,2,4556,667 -939,FR,NO,201812,3,2,53054,7643 -939,FR,NO,201812,3,2,54140,600 -939,FR,NO,201812,3,2,84058,474 -939,FR,NO,201812,4,2,268073,2257 -939,FR,NO,201812,4,2,44382,245 -939,FR,NO,201812,4,2,20142,2 -939,FR,NO,201812,4,2,12375,32 -939,FR,NO,201812,4,2,2791,1 -939,FR,NO,201812,4,2,17432,27 -939,FR,NO,201812,4,2,627,6 -939,FR,NO,201812,4,2,7104,44 -939,FR,NO,201812,4,2,3596959,70995 -939,FR,NO,201812,4,2,102710,448 -939,FR,NO,201812,4,2,131863,415 -939,FR,NO,201812,5,2,2531,17 -941,FR,NO,201812,3,1,9115,1488 -941,FR,NO,201812,3,1,4000,450 -941,FR,NO,201812,3,1,1434,71 -941,FR,NO,201812,3,2,67183,8882 -941,FR,NO,201812,3,2,3458,26 -941,FR,NO,201812,3,2,51198,29935 -941,FR,NO,201812,3,2,730,943 -941,FR,NO,201812,3,2,19260,487 -941,FR,NO,201812,4,2,76,2 -949,FR,NO,201812,0,1,497,6 -949,FR,NO,201812,1,1,167,5 -949,FR,NO,201812,3,1,85600,2719 -949,FR,NO,201812,3,1,409641,4000 -949,FR,NO,201812,3,1,1050,33 -949,FR,NO,201812,3,1,573516,2956 -949,FR,NO,201812,3,1,31614,1778 -949,FR,NO,201812,4,1,20256,278 -949,FR,NO,201812,4,1,15363,21 -949,FR,NO,201812,4,1,1272,0 -949,FR,NO,201812,4,1,25190,177 -949,FR,NO,201812,4,1,433,6 -949,FR,NO,201812,0,2,815,10 -949,FR,NO,201812,1,2,42902,1037 -949,FR,NO,201812,3,2,472358,47818 -949,FR,NO,201812,3,2,54672,2079 -949,FR,NO,201812,3,2,23239,1599 -949,FR,NO,201812,3,2,123239,23493 -949,FR,NO,201812,3,2,325,225 -949,FR,NO,201812,3,2,7114,333 -949,FR,NO,201812,3,2,4538,94 -949,FR,NO,201812,3,2,3712,74 -949,FR,NO,201812,4,2,129392,1349 -949,FR,NO,201812,4,2,13070,33 -949,FR,NO,201812,4,2,9,0 -949,FR,NO,201812,4,2,3000,330 -949,FR,NO,201812,4,2,408410,13190 -949,FR,NO,201812,4,2,18078,259 -949,FR,NO,201812,4,2,71008,395 -951,FR,NO,201812,1,2,20850,1092 -951,FR,NO,201812,3,2,10545,2362 -951,FR,NO,201812,3,2,444,4 -951,FR,NO,201812,4,2,466,21 -951,FR,NO,201812,4,2,1601,28 -952,FR,NO,201812,3,1,50,62 -952,FR,NO,201812,3,1,1656,260 -952,FR,NO,201812,0,2,311,2 -952,FR,NO,201812,1,2,1888,190 -952,FR,NO,201812,1,2,12,70 -952,FR,NO,201812,3,2,25341,8009 -952,FR,NO,201812,3,2,1787,76 -952,FR,NO,201812,3,2,102438,39289 -952,FR,NO,201812,3,2,39380,16082 -952,FR,NO,201812,3,2,1683,353 -952,FR,NO,201812,3,2,58370,21206 -952,FR,NO,201812,4,2,1268,6 -952,FR,NO,201812,4,2,1750,50 -952,FR,NO,201812,4,2,1804,27 -961,FR,NO,201812,3,1,103,0 -961,FR,NO,201812,3,2,6984,133 -961,FR,NO,201812,3,2,76539,1256 -961,FR,NO,201812,4,2,1096,2 -961,FR,NO,201812,4,2,18895,72 -961,FR,NO,201812,4,2,4683,540 -961,FR,NO,201812,4,2,2800,10 -961,FR,NO,201812,4,2,10223,101 -962,FR,NO,201812,0,1,653,7 -962,FR,NO,201812,3,1,5035,121 -962,FR,NO,201812,3,1,3199,6308 -962,FR,NO,201812,4,1,684,8 -962,FR,NO,201812,0,2,173,0 -962,FR,NO,201812,1,2,499,1 -962,FR,NO,201812,1,2,700,46 -962,FR,NO,201812,1,2,2697,1006 -962,FR,NO,201812,3,2,219680,14112 -962,FR,NO,201812,3,2,46186,13117 -962,FR,NO,201812,3,2,1510,115 -962,FR,NO,201812,3,2,2378,142 -962,FR,NO,201812,3,2,48047,12124 -962,FR,NO,201812,3,2,6003,591 -962,FR,NO,201812,3,2,188995,12060 -962,FR,NO,201812,3,2,410,59 -962,FR,NO,201812,4,2,9577,112 -962,FR,NO,201812,4,2,4038,44 -962,FR,NO,201812,4,2,15080,2620 -962,FR,NO,201812,4,2,10015,63 -962,FR,NO,201812,4,2,15080,130 -963,FR,NO,201812,0,1,3522,54 -963,FR,NO,201812,1,1,149,1 -963,FR,NO,201812,3,1,109166,474 -963,FR,NO,201812,3,1,456,35 -963,FR,NO,201812,4,1,41,0 -963,FR,NO,201812,4,1,1819,19 -963,FR,NO,201812,4,1,17696,9 -963,FR,NO,201812,4,1,0,46 -963,FR,NO,201812,4,1,1987,34 -963,FR,NO,201812,0,2,3883,30 -963,FR,NO,201812,1,2,3132,49 -963,FR,NO,201812,1,2,15657,380 -963,FR,NO,201812,1,2,26232,230 -963,FR,NO,201812,3,2,1633444,16515 -963,FR,NO,201812,3,2,1630,36 -963,FR,NO,201812,3,2,1561,35 -963,FR,NO,201812,3,2,117307,3073 -963,FR,NO,201812,3,2,29792,259 -963,FR,NO,201812,4,2,221717,895 -963,FR,NO,201812,4,2,81197,31 -963,FR,NO,201812,4,2,1358,0 -963,FR,NO,201812,4,2,94612,587 -963,FR,NO,201812,4,2,88018,13940 -963,FR,NO,201812,4,2,411168,2816 -963,FR,NO,201812,4,2,165848,769 -963,FR,NO,201812,5,2,12638,46 -971,FR,NO,201812,1,1,425,74 -971,FR,NO,201812,1,1,7805,469 -971,FR,NO,201812,3,1,13753,313 -971,FR,NO,201812,3,1,52410,3229 -971,FR,NO,201812,4,1,2235,6 -971,FR,NO,201812,4,1,1208,7 -971,FR,NO,201812,1,2,21001,1117 -971,FR,NO,201812,1,2,1363,6 -971,FR,NO,201812,1,2,380766,66270 -971,FR,NO,201812,3,2,127953,11299 -971,FR,NO,201812,3,2,4132,21 -971,FR,NO,201812,3,2,20481,2499 -971,FR,NO,201812,3,2,31756,8095 -971,FR,NO,201812,3,2,11804,1229 -971,FR,NO,201812,3,2,344,30 -971,FR,NO,201812,3,2,960,18 -971,FR,NO,201812,3,2,197,44 -971,FR,NO,201812,4,2,4007,28 -971,FR,NO,201812,4,2,27148,183 -971,FR,NO,201812,4,2,101,0 -971,FR,NO,201812,4,2,144,1 -971,FR,NO,201812,4,2,863,0 -971,FR,NO,201812,4,2,3225,5 -971,FR,NO,201812,4,2,122539,8710 -971,FR,NO,201812,4,2,10682,109 -972,FR,NO,201812,4,1,812,23 -972,FR,NO,201812,1,2,4038,3974 -972,FR,NO,201812,1,2,14307,10510 -972,FR,NO,201812,1,2,63540,21945 -972,FR,NO,201812,3,2,370,51 -972,FR,NO,201812,3,2,66,18 -972,FR,NO,201812,3,2,3045,3511 -972,FR,NO,201812,3,2,108654,144024 -972,FR,NO,201812,3,2,21366,7411 -972,FR,NO,201812,3,2,19963,24801 -972,FR,NO,201812,4,2,193,15 -972,FR,NO,201812,4,2,1072,440 -972,FR,NO,201812,4,2,2785,21 -973,FR,NO,201812,3,1,2802,344 -973,FR,NO,201812,1,2,3229,235 -973,FR,NO,201812,1,2,8145,3412 -973,FR,NO,201812,1,2,10047,10548 -973,FR,NO,201812,3,2,63544,12520 -973,FR,NO,201812,3,2,403,19 -973,FR,NO,201812,3,2,11303,4042 -973,FR,NO,201812,3,2,54861,26320 -973,FR,NO,201812,3,2,664,250 -973,FR,NO,201812,3,2,140,24 -973,FR,NO,201812,3,2,10419,3640 -973,FR,NO,201812,4,2,867,66 -973,FR,NO,201812,4,2,4651,2640 -974,FR,NO,201812,0,1,1559,18 -974,FR,NO,201812,3,1,3488,90 -974,FR,NO,201812,4,1,261,1 -974,FR,NO,201812,4,1,47,0 -974,FR,NO,201812,0,2,27245,486 -974,FR,NO,201812,1,2,10146,408 -974,FR,NO,201812,3,2,61356,6363 -974,FR,NO,201812,3,2,69,2 -974,FR,NO,201812,3,2,92,12 -974,FR,NO,201812,3,2,118,65 -974,FR,NO,201812,3,2,10350,2330 -974,FR,NO,201812,4,2,49590,173 -974,FR,NO,201812,4,2,50,6 -974,FR,NO,201812,4,2,175,0 -974,FR,NO,201812,4,2,14775,4550 -974,FR,NO,201812,4,2,1111,11 -974,FR,NO,201812,4,2,12561,49 -975,FR,NO,201812,3,1,4938,173 -975,FR,NO,201812,3,1,18841,2245 -975,FR,NO,201812,3,1,357,9 -975,FR,NO,201812,4,1,1350,52 -975,FR,NO,201812,4,1,30,1 -975,FR,NO,201812,4,1,378,7 -975,FR,NO,201812,0,2,1082,33 -975,FR,NO,201812,1,2,983,17 -975,FR,NO,201812,1,2,8212,520 -975,FR,NO,201812,1,2,18,0 -975,FR,NO,201812,3,2,219311,14100 -975,FR,NO,201812,3,2,7079,208 -975,FR,NO,201812,3,2,21564,1223 -975,FR,NO,201812,3,2,6847,666 -975,FR,NO,201812,3,2,8398,364 -975,FR,NO,201812,3,2,21946,147 -975,FR,NO,201812,3,2,18,0 -975,FR,NO,201812,3,2,217,8 -975,FR,NO,201812,4,2,2461,29 -975,FR,NO,201812,4,2,224,6 -975,FR,NO,201812,4,2,173,1 -975,FR,NO,201812,4,2,12280,180 -976,FR,NO,201812,0,2,172,5 -976,FR,NO,201812,1,2,315,0 -976,FR,NO,201812,1,2,7854,15000 -976,FR,NO,201812,1,2,40,256 -976,FR,NO,201812,1,2,323,783 -976,FR,NO,201812,3,2,26474,7706 -976,FR,NO,201812,3,2,145,15 -976,FR,NO,201812,3,2,40,40 -976,FR,NO,201812,3,2,90,50 -976,FR,NO,201812,3,2,36645,52280 -976,FR,NO,201812,3,2,4082,5296 -976,FR,NO,201812,4,2,550,111 -976,FR,NO,201812,4,2,124,1 -979,FR,NO,201812,0,1,4004,48 -979,FR,NO,201812,1,1,1812,56 -979,FR,NO,201812,3,1,1017633,45528 -979,FR,NO,201812,3,1,688,11 -979,FR,NO,201812,3,1,86709,9262 -979,FR,NO,201812,3,1,85457,2345 -979,FR,NO,201812,4,1,51194,114 -979,FR,NO,201812,4,1,69485,176 -979,FR,NO,201812,4,1,42312,93 -979,FR,NO,201812,4,1,32253,59 -979,FR,NO,201812,4,1,87,1 -979,FR,NO,201812,4,1,22767,29 -979,FR,NO,201812,0,2,10455,34 -979,FR,NO,201812,1,2,81274,4530 -979,FR,NO,201812,1,2,24111,7032 -979,FR,NO,201812,3,2,5052960,92315 -979,FR,NO,201812,3,2,6761,470 -979,FR,NO,201812,3,2,66692,14212 -979,FR,NO,201812,3,2,28298,960 -979,FR,NO,201812,3,2,40893,9076 -979,FR,NO,201812,3,2,362461,16142 -979,FR,NO,201812,3,2,260470,17412 -979,FR,NO,201812,3,2,254,16 -979,FR,NO,201812,3,2,1435,2 -979,FR,NO,201812,3,2,28696,1583 -979,FR,NO,201812,4,2,1832715,1803 -979,FR,NO,201812,4,2,57789,280 -979,FR,NO,201812,4,2,20,7 -979,FR,NO,201812,4,2,7648,80 -979,FR,NO,201812,4,2,4880,3 -979,FR,NO,201812,4,2,8699,6 -979,FR,NO,201812,4,2,35636,56 -979,FR,NO,201812,4,2,988,0 -979,FR,NO,201812,4,2,4894,3 -979,FR,NO,201812,4,2,35853,108 -979,FR,NO,201812,4,2,645293,19080 -979,FR,NO,201812,4,2,179408,916 -979,FR,NO,201812,4,2,259754,877 -979,FR,NO,201812,5,2,3610,7 -994,FR,NO,201812,4,1,21819,4 -999,FR,NO,201812,0,1,6329,0 -999,FR,NO,201812,1,1,0,189386685 -999,FR,NO,201812,3,1,128,0 -999,FR,NO,201812,3,1,14200,0 -999,FR,NO,201812,4,1,851,0 -999,FR,NO,201812,4,1,280,0 -999,FR,NO,201812,1,2,23646,23600 -999,FR,NO,201812,1,2,16731,20850 -999,FR,NO,201812,1,2,23500,1500 -999,FR,NO,201812,1,2,129591,4009 -999,FR,NO,201812,1,2,569,28 -999,FR,NO,201812,1,2,3126,7000 -999,FR,NO,201812,1,2,12516,28440 -999,FR,NO,201812,1,2,36112,65000 -999,FR,NO,201812,1,2,12005,24000 -999,FR,NO,201812,1,2,17772,19150 -999,FR,NO,201812,3,2,375481,152834 -999,FR,NO,201812,3,2,4047,1718 -999,FR,NO,201812,3,2,12828,1301 -999,FR,NO,201812,3,2,191567,189024 -999,FR,NO,201812,3,2,32998,22127 -999,FR,NO,201812,3,2,9480,800 -999,FR,NO,201812,3,2,35339,32602 -999,FR,NO,201812,3,2,4526,2100 -999,FR,NO,201812,3,2,1307,177 -999,FR,NO,201812,3,2,414712,227860 -999,FR,NO,201812,3,2,281227,805540 -999,FR,NO,201812,4,2,2,0 -999,FR,NO,201812,4,2,794,18 -999,FR,NO,201812,4,2,11750,640 -099,FR,LI,201812,3,2,12000,25 -099,FR,LI,201812,3,2,10093,19408 -099,FR,LI,201812,3,2,97306,170841 -121,FR,LI,201812,3,2,43883,1165 -132,FR,LI,201812,0,2,87,2 -133,FR,LI,201812,3,1,2617,43 -139,FR,LI,201812,3,1,79,40 -139,FR,LI,201812,3,2,30,21 -139,FR,LI,201812,4,2,19,1 -144,FR,LI,201812,3,1,122,16 -166,FR,LI,201812,3,1,187,100 -166,FR,LI,201812,3,2,2050,522 -179,FR,LI,201812,3,1,253965,218700 -179,FR,LI,201812,3,1,71230,60669 -551,FR,LI,201812,3,1,296,0 -551,FR,LI,201812,3,2,15869,3908 -551,FR,LI,201812,3,2,7690,2284 -565,FR,LI,201812,3,1,4796,29 -565,FR,LI,201812,3,1,1541,4 -565,FR,LI,201812,3,1,4101,12 -565,FR,LI,201812,3,1,4662,3 -565,FR,LI,201812,3,2,19598,300 -568,FR,LI,201812,3,1,1205,8 -568,FR,LI,201812,3,1,9616,40 -568,FR,LI,201812,3,2,5720,1140 -568,FR,LI,201812,3,2,915,32 -691,FR,LI,201812,3,1,1290,26660 -819,FR,LI,201812,3,1,196,0 -819,FR,LI,201812,3,1,4228,6 -819,FR,LI,201812,3,1,2785,9 -820,FR,LI,201812,4,1,317,2 -891,FR,LI,201812,3,2,4349,210 -891,FR,LI,201812,3,2,9850,2305 -893,FR,LI,201812,3,2,5692,22 -896,FR,LI,201812,1,1,4279,26 -896,FR,LI,201812,4,1,13094,31 -910,FR,LI,201812,3,1,115784,18287 -910,FR,LI,201812,3,1,4964520,488888 -910,FR,LI,201812,3,1,216974,9473 -910,FR,LI,201812,3,1,188027,19444 -910,FR,LI,201812,4,1,32412,45 -910,FR,LI,201812,3,2,13597,1190 -931,FR,LI,201812,3,1,30134,163 -931,FR,LI,201812,3,1,7304,11 -931,FR,LI,201812,3,1,3262,10 -931,FR,LI,201812,3,1,408,13 -931,FR,LI,201812,4,1,550,3 -931,FR,LI,201812,4,1,9501,41 -931,FR,LI,201812,3,2,1450,170 -931,FR,LI,201812,3,2,11950,278 -931,FR,LI,201812,3,2,476,21 -931,FR,LI,201812,3,2,6414,131 -931,FR,LI,201812,3,2,571,2 -939,FR,LI,201812,1,1,28798,2000 -939,FR,LI,201812,3,1,12736,2739 -939,FR,LI,201812,3,1,20488,247 -939,FR,LI,201812,3,1,219576,40572 -939,FR,LI,201812,3,1,7059,1649 -939,FR,LI,201812,1,2,23626,1613 -939,FR,LI,201812,3,2,15837,174 -939,FR,LI,201812,3,2,33,1 -939,FR,LI,201812,3,2,89819,4922 -939,FR,LI,201812,3,2,960,37 -939,FR,LI,201812,4,2,2831,7 -949,FR,LI,201812,3,1,4294,731 -949,FR,LI,201812,3,1,4725,9 -949,FR,LI,201812,3,2,12108,315 -949,FR,LI,201812,3,2,63,2 -949,FR,LI,201812,3,2,51,2 -949,FR,LI,201812,4,2,21098,7 -952,FR,LI,201812,3,2,15399,54 -962,FR,LI,201812,3,2,6537,2372 -963,FR,LI,201812,3,2,200,200 -963,FR,LI,201812,3,2,442,1 -973,FR,LI,201812,3,2,150,11 -974,FR,LI,201812,3,2,598,259 -974,FR,LI,201812,4,2,12,0 -975,FR,LI,201812,3,2,85,4 -976,FR,LI,201812,3,2,209,23 -979,FR,LI,201812,0,1,640,2 -979,FR,LI,201812,3,1,1870,59 -979,FR,LI,201812,3,1,126720,172 -979,FR,LI,201812,3,1,55872,132 -979,FR,LI,201812,3,1,53029,2833 -979,FR,LI,201812,3,1,72669,93 -979,FR,LI,201812,3,1,85272,207 -979,FR,LI,201812,3,1,1745,0 -979,FR,LI,201812,4,1,434,4 -979,FR,LI,201812,4,1,8886,1 -979,FR,LI,201812,4,1,1891,1 -979,FR,LI,201812,5,1,540,42 -979,FR,LI,201812,0,2,1071,1 -979,FR,LI,201812,3,2,3688,500 -979,FR,LI,201812,3,2,6909,145 -979,FR,LI,201812,3,2,1050,1260 -979,FR,LI,201812,4,2,55745,123 -979,FR,LI,201812,4,2,9000,0 -999,FR,LI,201812,3,1,527,1 -999,FR,LI,201812,3,1,317,0 -999,FR,LI,201812,3,2,25687,584 -999,FR,LI,201812,3,2,2723,357 -999,FR,LI,201812,3,2,7745,1080 -001,FR,CH,201812,0,1,22051,500 -001,FR,CH,201812,3,1,42407,31387 -001,FR,CH,201812,3,1,1110,500 -001,FR,CH,201812,3,1,470063,5980 -001,FR,CH,201812,4,1,129,2 -001,FR,CH,201812,3,2,260188,24646 -001,FR,CH,201812,3,2,301266,45143 -001,FR,CH,201812,4,2,14841,107 -011,FR,CH,201812,2,2,956430,4876600 -011,FR,CH,201812,2,2,216738,1110000 -011,FR,CH,201812,3,2,1031004,4561660 -011,FR,CH,201812,3,2,1024429,4950000 -011,FR,CH,201812,3,2,624697,2925800 -011,FR,CH,201812,3,2,176473,552865 -011,FR,CH,201812,3,2,10709,51220 -012,FR,CH,201812,3,2,5,3 -012,FR,CH,201812,3,2,181653,671360 -014,FR,CH,201812,3,2,132549,720660 -014,FR,CH,201812,3,2,91324,497900 -014,FR,CH,201812,3,2,10928,48640 -014,FR,CH,201812,3,2,4528,25180 -015,FR,CH,201812,1,1,6859,10250 -015,FR,CH,201812,3,2,111564,563258 -015,FR,CH,201812,3,2,15333,76660 -015,FR,CH,201812,3,2,133901,461340 -015,FR,CH,201812,3,2,47688,45775 -015,FR,CH,201812,3,2,16764,22638 -016,FR,CH,201812,3,1,3332,2049 -016,FR,CH,201812,0,2,100,26 -016,FR,CH,201812,3,2,4917,2470 -019,FR,CH,201812,3,2,45834,34475 -019,FR,CH,201812,3,2,4861,24700 -019,FR,CH,201812,3,2,10293,3865 -019,FR,CH,201812,3,2,1763,241 -019,FR,CH,201812,3,2,10602,52280 -020,FR,CH,201812,3,2,138013,200579 -020,FR,CH,201812,3,2,44100,105400 -020,FR,CH,201812,3,2,89543,127087 -020,FR,CH,201812,3,2,97800,207290 -020,FR,CH,201812,3,2,15082,13200 -031,FR,CH,201812,3,1,9778,6551 -031,FR,CH,201812,3,2,529489,390379 -031,FR,CH,201812,3,2,5802,6001 -031,FR,CH,201812,3,2,309130,144542 -031,FR,CH,201812,3,2,3155779,3269601 -031,FR,CH,201812,3,2,211,200 -031,FR,CH,201812,3,2,1566147,1578639 -035,FR,CH,201812,3,1,11594,22006 -035,FR,CH,201812,3,2,1708779,379407 -035,FR,CH,201812,3,2,306,10 -035,FR,CH,201812,3,2,143275,42497 -035,FR,CH,201812,3,2,700325,289257 -035,FR,CH,201812,3,2,13030,2362 -035,FR,CH,201812,3,2,3298343,1232132 -035,FR,CH,201812,3,2,17606,1456 -035,FR,CH,201812,3,2,4704,275 -039,FR,CH,201812,3,1,54149,7128 -039,FR,CH,201812,3,1,466,0 -039,FR,CH,201812,0,2,5268,6 -039,FR,CH,201812,1,2,15,6 -039,FR,CH,201812,3,2,2102246,1011581 -039,FR,CH,201812,3,2,29157,4268 -039,FR,CH,201812,3,2,92218,79000 -039,FR,CH,201812,3,2,394492,145552 -039,FR,CH,201812,3,2,4403291,2731601 -039,FR,CH,201812,3,2,30265,24957 -039,FR,CH,201812,3,2,4837109,2789221 -039,FR,CH,201812,3,2,21240,18000 -039,FR,CH,201812,3,2,2629,187 -039,FR,CH,201812,4,2,11630,12 -039,FR,CH,201812,4,2,3780,4 -039,FR,CH,201812,4,2,78967,1630 -039,FR,CH,201812,4,2,23465,33 -041,FR,CH,201812,4,1,1641,13 -042,FR,CH,201812,3,2,1703,418 -043,FR,CH,201812,3,1,19122,127 -043,FR,CH,201812,3,2,131697,36166 -043,FR,CH,201812,3,2,2492,900 -043,FR,CH,201812,5,2,1523,19 -045,FR,CH,201812,3,1,582,167 -045,FR,CH,201812,3,2,30,3 -045,FR,CH,201812,3,2,776,12 -045,FR,CH,201812,3,2,3553,14640 -049,FR,CH,201812,3,1,530,5000 -049,FR,CH,201812,3,1,1,0 -049,FR,CH,201812,3,1,628,16500 -049,FR,CH,201812,3,1,1,1 -049,FR,CH,201812,3,2,1561,124 -049,FR,CH,201812,3,2,24,0 -049,FR,CH,201812,4,2,2210,29 -049,FR,CH,201812,5,2,1206,24 -051,FR,CH,201812,3,1,174405,1476705 -051,FR,CH,201812,3,1,427829,4176646 -051,FR,CH,201812,3,1,60531,660820 -051,FR,CH,201812,1,2,900,22000 -051,FR,CH,201812,3,2,75227,706651 -051,FR,CH,201812,3,2,14000,69900 -051,FR,CH,201812,3,2,5400,23500 -051,FR,CH,201812,3,2,56983,437841 -051,FR,CH,201812,3,2,6000,154000 -051,FR,CH,201812,4,2,30,0 -051,FR,CH,201812,4,2,179,4 -055,FR,CH,201812,3,1,53882,156715 -055,FR,CH,201812,3,2,174024,622289 -055,FR,CH,201812,3,2,17400,17000 -056,FR,CH,201812,0,1,583,12 -056,FR,CH,201812,3,1,646010,1707249 -056,FR,CH,201812,3,1,4381,24000 -056,FR,CH,201812,3,1,97344,120400 -056,FR,CH,201812,3,2,914731,815401 -056,FR,CH,201812,3,2,83,3 -056,FR,CH,201812,3,2,162076,229180 -056,FR,CH,201812,3,2,25127,24000 -056,FR,CH,201812,3,2,102638,6951 -056,FR,CH,201812,4,2,17,2 -056,FR,CH,201812,5,2,8,2 -057,FR,CH,201812,3,1,10388,731660 -057,FR,CH,201812,3,1,5880,408350 -057,FR,CH,201812,3,1,350,22720 -057,FR,CH,201812,3,1,37974,1136870 -057,FR,CH,201812,3,1,350,23460 -057,FR,CH,201812,3,1,6769,874310 -057,FR,CH,201812,3,2,260093,1291877 -057,FR,CH,201812,3,2,192780,933864 -057,FR,CH,201812,3,2,4789,18880 -057,FR,CH,201812,3,2,10680,158200 -057,FR,CH,201812,3,2,304662,2458373 -057,FR,CH,201812,3,2,14380,28472 -057,FR,CH,201812,3,2,14634,57000 -057,FR,CH,201812,3,2,7279,13460 -091,FR,CH,201812,3,1,114845,45784 -091,FR,CH,201812,3,1,169880,73121 -091,FR,CH,201812,4,1,145,4 -091,FR,CH,201812,3,2,265,1 -092,FR,CH,201812,3,1,57,3000 -092,FR,CH,201812,3,1,13162,1747 -092,FR,CH,201812,3,1,150,0 -092,FR,CH,201812,4,1,51,19 -092,FR,CH,201812,3,2,32950,970356 -092,FR,CH,201812,3,2,171,15 -092,FR,CH,201812,4,2,427,32 -099,FR,CH,201812,0,1,159,2 -099,FR,CH,201812,3,1,273690,1114909 -099,FR,CH,201812,3,1,136518,3778 -099,FR,CH,201812,3,1,94150,89838 -099,FR,CH,201812,3,1,136866,1393955 -099,FR,CH,201812,3,1,8232,214 -099,FR,CH,201812,3,1,20837,236162 -099,FR,CH,201812,4,1,81,2 -099,FR,CH,201812,4,1,7723,16 -099,FR,CH,201812,5,1,1530,1 -099,FR,CH,201812,1,2,725,80 -099,FR,CH,201812,3,2,1441585,399303 -099,FR,CH,201812,3,2,20176,985 -099,FR,CH,201812,3,2,12923,1685 -099,FR,CH,201812,3,2,553,240 -099,FR,CH,201812,3,2,45753,30491 -099,FR,CH,201812,3,2,325586,92169 -099,FR,CH,201812,3,2,161333,102487 -099,FR,CH,201812,3,2,73303,24000 -099,FR,CH,201812,3,2,4365,1140 -099,FR,CH,201812,4,2,16968,59 -099,FR,CH,201812,4,2,1249,4 -099,FR,CH,201812,4,2,29185,2590 -099,FR,CH,201812,4,2,72919,193 -111,FR,CH,201812,3,2,10835,6895 -111,FR,CH,201812,4,2,40,16 -112,FR,CH,201812,3,1,128770,6485 -112,FR,CH,201812,4,1,1413,174 -112,FR,CH,201812,1,2,6830,25740 -112,FR,CH,201812,1,2,13272,50080 -112,FR,CH,201812,3,2,326895,1012208 -112,FR,CH,201812,3,2,540242,1676334 -112,FR,CH,201812,3,2,79047,246740 -112,FR,CH,201812,3,2,6756,12000 -112,FR,CH,201812,3,2,39769,140420 -112,FR,CH,201812,3,2,8347,23100 -112,FR,CH,201812,4,2,41,2 -113,FR,CH,201812,3,1,90,36 -113,FR,CH,201812,3,2,766,17 -113,FR,CH,201812,4,2,1,1 -121,FR,CH,201812,0,1,21281,535 -121,FR,CH,201812,3,1,585238,12539 -121,FR,CH,201812,3,1,15870,52 -121,FR,CH,201812,3,1,54670,6343 -121,FR,CH,201812,3,1,81590,391 -121,FR,CH,201812,4,1,404,9 -121,FR,CH,201812,4,1,7257,15 -121,FR,CH,201812,0,2,5510,107 -121,FR,CH,201812,1,2,14288,873 -121,FR,CH,201812,3,2,22112849,1715710 -121,FR,CH,201812,3,2,260454,61749 -121,FR,CH,201812,3,2,283616,23140 -121,FR,CH,201812,3,2,50310,5040 -121,FR,CH,201812,3,2,144381,126560 -121,FR,CH,201812,3,2,4471427,770059 -121,FR,CH,201812,3,2,27775,25245 -121,FR,CH,201812,3,2,127999,10080 -121,FR,CH,201812,3,2,137516,11394 -121,FR,CH,201812,3,2,13230,76 -121,FR,CH,201812,3,2,59516,4737 -121,FR,CH,201812,4,2,14613,421 -121,FR,CH,201812,4,2,1073,17 -121,FR,CH,201812,4,2,9252,66 -121,FR,CH,201812,4,2,73518,2200 -121,FR,CH,201812,4,2,17283,646 -121,FR,CH,201812,4,2,5624,26 -121,FR,CH,201812,5,2,9163,29 -122,FR,CH,201812,0,1,48,3 -122,FR,CH,201812,3,1,19492,8188 -122,FR,CH,201812,3,1,13783,2591 -122,FR,CH,201812,3,1,5296,16020 -122,FR,CH,201812,3,2,406343,324327 -122,FR,CH,201812,3,2,84,1 -122,FR,CH,201812,3,2,5824,1398 -122,FR,CH,201812,3,2,9214,2066 -122,FR,CH,201812,3,2,427876,788636 -122,FR,CH,201812,4,2,183,186 -125,FR,CH,201812,0,1,34969,1185 -125,FR,CH,201812,3,1,14443,999 -125,FR,CH,201812,3,1,19988,390 -125,FR,CH,201812,3,1,1151,25 -125,FR,CH,201812,4,1,606,8 -125,FR,CH,201812,4,1,89,1 -125,FR,CH,201812,3,2,3019119,207754 -125,FR,CH,201812,3,2,105748,11840 -125,FR,CH,201812,3,2,29319,1287 -125,FR,CH,201812,3,2,276345,70799 -125,FR,CH,201812,3,2,199909,39881 -125,FR,CH,201812,4,2,10535,178 -125,FR,CH,201812,4,2,4520,1 -125,FR,CH,201812,4,2,6408,290 -128,FR,CH,201812,0,1,13673,21930 -128,FR,CH,201812,1,1,45918,16613 -128,FR,CH,201812,1,1,45918,16613 -128,FR,CH,201812,3,1,63601,82266 -128,FR,CH,201812,3,1,35655,14102 -128,FR,CH,201812,3,1,196945,377041 -128,FR,CH,201812,3,1,7279,10368 -128,FR,CH,201812,3,1,296,15 -128,FR,CH,201812,4,1,140,53 -128,FR,CH,201812,2,2,169184,1260468 -128,FR,CH,201812,3,2,1330957,2979720 -128,FR,CH,201812,3,2,1760930,8173593 -128,FR,CH,201812,3,2,62984,215244 -128,FR,CH,201812,3,2,16719,47703 -128,FR,CH,201812,3,2,19339,42336 -128,FR,CH,201812,3,2,232189,1279774 -128,FR,CH,201812,3,2,219227,860181 -128,FR,CH,201812,3,2,82673,375850 -128,FR,CH,201812,3,2,24472,42174 -128,FR,CH,201812,3,2,64132,170357 -128,FR,CH,201812,3,2,2736,21924 -128,FR,CH,201812,3,2,4040,18792 -128,FR,CH,201812,4,2,2078,1583 -128,FR,CH,201812,4,2,2749,329 -131,FR,CH,201812,0,1,545,32 -131,FR,CH,201812,1,1,436296,19188 -131,FR,CH,201812,1,1,1056,51 -131,FR,CH,201812,1,1,558257,18873 -131,FR,CH,201812,3,1,100132674,3384465 -131,FR,CH,201812,3,1,29908,3841 -131,FR,CH,201812,3,1,192540,6428 -131,FR,CH,201812,4,1,64,8 -131,FR,CH,201812,4,1,992,80 -131,FR,CH,201812,3,2,668792,41756 -131,FR,CH,201812,3,2,69638,4604 -131,FR,CH,201812,3,2,19040,990 -131,FR,CH,201812,3,2,3486,2323 -131,FR,CH,201812,3,2,17785,915 -131,FR,CH,201812,3,2,64122,15883 -131,FR,CH,201812,4,2,1756,300 -132,FR,CH,201812,0,1,85934,4086 -132,FR,CH,201812,3,1,2147598,294396 -132,FR,CH,201812,3,1,1725,62 -132,FR,CH,201812,3,1,273824,46575 -132,FR,CH,201812,3,1,1241830,156678 -132,FR,CH,201812,3,1,130635,23138 -132,FR,CH,201812,3,1,196165,36236 -132,FR,CH,201812,3,1,3400,640 -132,FR,CH,201812,3,1,52729,16864 -132,FR,CH,201812,4,1,762,21 -132,FR,CH,201812,4,1,46940,4378 -132,FR,CH,201812,4,1,2126,31 -132,FR,CH,201812,4,1,135,2 -132,FR,CH,201812,0,2,61530,1081 -132,FR,CH,201812,3,2,2974052,472627 -132,FR,CH,201812,3,2,320601,72662 -132,FR,CH,201812,3,2,583785,134403 -132,FR,CH,201812,3,2,55728,21020 -132,FR,CH,201812,3,2,17785,1745 -132,FR,CH,201812,3,2,23177,7848 -132,FR,CH,201812,3,2,142903,12451 -132,FR,CH,201812,3,2,10423,5766 -132,FR,CH,201812,3,2,137222,44510 -132,FR,CH,201812,3,2,344844,108486 -132,FR,CH,201812,3,2,58856,20890 -132,FR,CH,201812,3,2,39242,19614 -132,FR,CH,201812,3,2,103449,43200 -132,FR,CH,201812,4,2,2911,101 -132,FR,CH,201812,4,2,1415,17 -132,FR,CH,201812,4,2,1098,630 -132,FR,CH,201812,4,2,4949,1 -132,FR,CH,201812,4,2,3620,71 -133,FR,CH,201812,0,1,287,6 -133,FR,CH,201812,3,1,572586,16295 -133,FR,CH,201812,3,1,988,65 -133,FR,CH,201812,3,1,35955,555 -133,FR,CH,201812,4,1,363,25 -133,FR,CH,201812,0,2,924,17 -133,FR,CH,201812,3,2,562131,47638 -133,FR,CH,201812,3,2,55842,923 -133,FR,CH,201812,3,2,13058,1299 -133,FR,CH,201812,3,2,14719,279 -133,FR,CH,201812,3,2,67,20 -133,FR,CH,201812,3,2,139066,34805 -133,FR,CH,201812,3,2,16705,274 -133,FR,CH,201812,4,2,704,34 -133,FR,CH,201812,4,2,79,1 -135,FR,CH,201812,0,1,145160,1797 -135,FR,CH,201812,4,1,42,2 -135,FR,CH,201812,4,2,18775,71 -135,FR,CH,201812,4,2,3620,13 -135,FR,CH,201812,4,2,13026,161 -136,FR,CH,201812,0,1,6193,463 -136,FR,CH,201812,3,1,193296,64498 -136,FR,CH,201812,3,1,162069,23855 -136,FR,CH,201812,3,1,10777,1584 -136,FR,CH,201812,3,1,64263,5253 -136,FR,CH,201812,3,1,3533,544 -136,FR,CH,201812,3,1,61078,6427 -136,FR,CH,201812,3,1,169699,20937 -136,FR,CH,201812,3,1,74,50 -136,FR,CH,201812,4,1,74,2 -136,FR,CH,201812,0,2,473,25 -136,FR,CH,201812,3,2,995118,512136 -136,FR,CH,201812,3,2,52222,19841 -136,FR,CH,201812,3,2,55473,25284 -136,FR,CH,201812,3,2,10220,2245 -136,FR,CH,201812,3,2,181927,44183 -136,FR,CH,201812,3,2,91630,26139 -136,FR,CH,201812,3,2,113672,27011 -136,FR,CH,201812,3,2,73191,20437 -136,FR,CH,201812,3,2,4977,620 -136,FR,CH,201812,4,2,2119,64 -136,FR,CH,201812,4,2,742,5 -136,FR,CH,201812,4,2,1171,43 -139,FR,CH,201812,0,1,1421,61 -139,FR,CH,201812,3,1,4191557,735965 -139,FR,CH,201812,3,1,533961,41085 -139,FR,CH,201812,3,1,62160,2839 -139,FR,CH,201812,3,1,67215,6141 -139,FR,CH,201812,3,1,377098,27628 -139,FR,CH,201812,3,1,5615,122500 -139,FR,CH,201812,3,1,1247532,319331 -139,FR,CH,201812,3,1,7808,83 -139,FR,CH,201812,3,1,462951,35763 -139,FR,CH,201812,3,1,164199,16981 -139,FR,CH,201812,3,1,186191,14137 -139,FR,CH,201812,4,1,258,24 -139,FR,CH,201812,4,1,421,12 -139,FR,CH,201812,4,1,5423,214 -139,FR,CH,201812,4,1,361,34 -139,FR,CH,201812,5,1,18450,61 -139,FR,CH,201812,0,2,4279,32 -139,FR,CH,201812,1,2,95382,3136 -139,FR,CH,201812,1,2,375,9 -139,FR,CH,201812,3,2,3262543,701021 -139,FR,CH,201812,3,2,357992,51403 -139,FR,CH,201812,3,2,72728,45623 -139,FR,CH,201812,3,2,27224,1834 -139,FR,CH,201812,3,2,481291,179521 -139,FR,CH,201812,3,2,16731,15250 -139,FR,CH,201812,3,2,1114732,337854 -139,FR,CH,201812,3,2,48486,17188 -139,FR,CH,201812,3,2,286827,176434 -139,FR,CH,201812,3,2,120516,27000 -139,FR,CH,201812,3,2,8900,960 -139,FR,CH,201812,3,2,69420,31055 -139,FR,CH,201812,3,2,150100,22233 -139,FR,CH,201812,3,2,135191,522 -139,FR,CH,201812,3,2,25682,17458 -139,FR,CH,201812,3,2,56966,10224 -139,FR,CH,201812,4,2,435,64 -139,FR,CH,201812,4,2,2663,13 -139,FR,CH,201812,4,2,1700,80 -139,FR,CH,201812,4,2,15496,700 -139,FR,CH,201812,5,2,4205,23 -141,FR,CH,201812,3,1,6897,880 -141,FR,CH,201812,3,2,6853286,744619 -141,FR,CH,201812,3,2,1126,229 -141,FR,CH,201812,3,2,3951,417 -141,FR,CH,201812,3,2,985082,79676 -141,FR,CH,201812,3,2,89500,19828 -141,FR,CH,201812,3,2,83700,20861 -141,FR,CH,201812,3,2,10044,450 -141,FR,CH,201812,4,2,1832,104 -141,FR,CH,201812,4,2,494,6 -142,FR,CH,201812,3,1,30174,284 -142,FR,CH,201812,3,2,9545373,674950 -142,FR,CH,201812,3,2,10425,450 -142,FR,CH,201812,3,2,97394,11341 -142,FR,CH,201812,3,2,3096,84 -142,FR,CH,201812,3,2,38838,11600 -142,FR,CH,201812,3,2,14500,4800 -142,FR,CH,201812,3,2,1018089,91642 -142,FR,CH,201812,3,2,11480,18 -142,FR,CH,201812,3,2,6440,2300 -142,FR,CH,201812,4,2,20902,611 -142,FR,CH,201812,4,2,396,30 -143,FR,CH,201812,3,1,52918,10838 -143,FR,CH,201812,3,1,24445,4116 -143,FR,CH,201812,4,1,36,0 -143,FR,CH,201812,3,2,791556,1835647 -143,FR,CH,201812,3,2,1478,400 -143,FR,CH,201812,4,2,19,7 -144,FR,CH,201812,0,1,1232,56 -144,FR,CH,201812,3,1,751330,82801 -144,FR,CH,201812,3,1,39423,224104 -144,FR,CH,201812,3,1,26648,147000 -144,FR,CH,201812,3,1,4566,25520 -144,FR,CH,201812,3,1,4430041,1374501 -144,FR,CH,201812,3,1,35208,198320 -144,FR,CH,201812,3,1,13364,74440 -144,FR,CH,201812,3,1,14054,21000 -144,FR,CH,201812,4,1,6,1 -144,FR,CH,201812,0,2,330,32 -144,FR,CH,201812,3,2,6022942,1071433 -144,FR,CH,201812,3,2,2781219,349979 -144,FR,CH,201812,3,2,25130,5658 -144,FR,CH,201812,3,2,25957,2757 -144,FR,CH,201812,3,2,1026182,118737 -144,FR,CH,201812,3,2,186229,72764 -144,FR,CH,201812,3,2,25204,2669 -144,FR,CH,201812,3,2,35109,11612 -144,FR,CH,201812,3,2,13339,1140 -144,FR,CH,201812,4,2,312,14 -144,FR,CH,201812,4,2,79,3 -145,FR,CH,201812,3,1,310129,19500 -145,FR,CH,201812,3,2,9850,5566 -145,FR,CH,201812,3,2,136258,101982 -145,FR,CH,201812,3,2,122,9 -146,FR,CH,201812,3,1,3830,605 -146,FR,CH,201812,3,2,291463,72878 -146,FR,CH,201812,3,2,466487,190548 -147,FR,CH,201812,3,1,2484458,121079 -147,FR,CH,201812,3,1,214990,8532 -147,FR,CH,201812,3,1,2582529,125367 -147,FR,CH,201812,0,2,1258,67 -147,FR,CH,201812,3,2,1885651,102115 -147,FR,CH,201812,3,2,35516,4863 -147,FR,CH,201812,3,2,2608,400 -147,FR,CH,201812,3,2,35244,10994 -147,FR,CH,201812,3,2,1081630,40691 -147,FR,CH,201812,3,2,137440,36907 -147,FR,CH,201812,4,2,4813,86 -148,FR,CH,201812,4,1,79,1 -148,FR,CH,201812,3,2,1040053,68727 -148,FR,CH,201812,3,2,1482,192 -148,FR,CH,201812,3,2,876,54 -148,FR,CH,201812,3,2,70091,5949 -148,FR,CH,201812,3,2,339213,29843 -148,FR,CH,201812,4,2,320,16 -148,FR,CH,201812,4,2,8067,9 -161,FR,CH,201812,3,1,19842,49980 -161,FR,CH,201812,3,1,98150,249400 -161,FR,CH,201812,4,1,45,0 -161,FR,CH,201812,3,2,16895,16506 -161,FR,CH,201812,3,2,551,140 -161,FR,CH,201812,4,2,7000,4000 -162,FR,CH,201812,2,2,362990,1134300 -162,FR,CH,201812,3,2,9512,19200 -162,FR,CH,201812,3,2,9642,25180 -162,FR,CH,201812,3,2,76811,210320 -163,FR,CH,201812,0,1,10366,449 -163,FR,CH,201812,3,1,7267913,2998169 -163,FR,CH,201812,3,1,22988,2994 -163,FR,CH,201812,3,1,514,112 -163,FR,CH,201812,3,1,81603,17773 -163,FR,CH,201812,3,1,62658,35237 -163,FR,CH,201812,3,1,25002,5258 -163,FR,CH,201812,3,1,33866,8552 -163,FR,CH,201812,3,1,435874,61197 -163,FR,CH,201812,3,1,15414,2482 -163,FR,CH,201812,3,1,522775,101612 -163,FR,CH,201812,3,1,67264,8063 -163,FR,CH,201812,4,1,44,3 -163,FR,CH,201812,4,1,285,41 -163,FR,CH,201812,0,2,8936,195 -163,FR,CH,201812,1,2,2410,234 -163,FR,CH,201812,3,2,5527212,1881422 -163,FR,CH,201812,3,2,26434,22315 -163,FR,CH,201812,3,2,307581,80538 -163,FR,CH,201812,3,2,10618,9373 -163,FR,CH,201812,3,2,126149,25409 -163,FR,CH,201812,3,2,75096,54680 -163,FR,CH,201812,3,2,939551,220965 -163,FR,CH,201812,3,2,23684,8748 -163,FR,CH,201812,3,2,750492,260174 -163,FR,CH,201812,3,2,138062,85086 -163,FR,CH,201812,3,2,17194,9659 -163,FR,CH,201812,3,2,74440,39069 -163,FR,CH,201812,3,2,33046,32662 -163,FR,CH,201812,3,2,63643,37868 -163,FR,CH,201812,3,2,16363,11095 -163,FR,CH,201812,3,2,15215,2794 -163,FR,CH,201812,3,2,350,1053 -163,FR,CH,201812,4,2,1380,189 -164,FR,CH,201812,0,1,2388,1744 -164,FR,CH,201812,3,1,47556,28963 -164,FR,CH,201812,3,1,3630,1377 -164,FR,CH,201812,3,1,7343,4249 -164,FR,CH,201812,4,1,351,291 -164,FR,CH,201812,1,2,748,218 -164,FR,CH,201812,1,2,2,0 -164,FR,CH,201812,3,2,2424543,927856 -164,FR,CH,201812,3,2,2746,177 -164,FR,CH,201812,3,2,13445,25094 -164,FR,CH,201812,3,2,3229,585 -164,FR,CH,201812,3,2,1863,1000 -164,FR,CH,201812,3,2,384577,105753 -164,FR,CH,201812,3,2,54125,13702 -164,FR,CH,201812,3,2,29360,4476 -164,FR,CH,201812,3,2,14990,9806 -164,FR,CH,201812,3,2,3171,778 -164,FR,CH,201812,3,2,12324,9471 -164,FR,CH,201812,4,2,6892,678 -164,FR,CH,201812,4,2,20089,1460 -164,FR,CH,201812,4,2,2148,63 -165,FR,CH,201812,3,1,230,44 -165,FR,CH,201812,3,2,78002,153753 -165,FR,CH,201812,3,2,46547,199950 -165,FR,CH,201812,3,2,29423,3184 -165,FR,CH,201812,3,2,92426,18567 -165,FR,CH,201812,3,2,24029,24150 -165,FR,CH,201812,3,2,26833,72795 -166,FR,CH,201812,0,1,1564,174 -166,FR,CH,201812,3,1,1662,345 -166,FR,CH,201812,3,1,49243,9547 -166,FR,CH,201812,0,2,1643,4 -166,FR,CH,201812,1,2,1308,220 -166,FR,CH,201812,3,2,453308,97642 -166,FR,CH,201812,3,2,2887,252 -166,FR,CH,201812,3,2,17608,3387 -166,FR,CH,201812,3,2,40532,18560 -166,FR,CH,201812,3,2,15455,4035 -166,FR,CH,201812,3,2,402012,68016 -166,FR,CH,201812,3,2,122557,74504 -166,FR,CH,201812,3,2,60,18 -166,FR,CH,201812,3,2,12929,1522 -166,FR,CH,201812,4,2,73,2 -166,FR,CH,201812,5,2,7870,13 -167,FR,CH,201812,3,2,1700,166 -171,FR,CH,201812,1,2,4700,31180 -171,FR,CH,201812,3,2,2092452,11234675 -171,FR,CH,201812,3,2,5140,32888 -171,FR,CH,201812,3,2,7272,48120 -171,FR,CH,201812,3,2,336223,2003590 -171,FR,CH,201812,3,2,17702,95900 -171,FR,CH,201812,3,2,33689,216780 -171,FR,CH,201812,3,2,1734,17340 -171,FR,CH,201812,3,2,1881,14840 -171,FR,CH,201812,3,2,100243,869840 -171,FR,CH,201812,4,2,17134,97020 -171,FR,CH,201812,4,2,10020,66410 -172,FR,CH,201812,3,2,75660,269560 -172,FR,CH,201812,3,2,24005,51680 -172,FR,CH,201812,3,2,176689,497100 -172,FR,CH,201812,3,2,208585,647736 -172,FR,CH,201812,3,2,10381,25580 -179,FR,CH,201812,0,1,238,15 -179,FR,CH,201812,3,1,59572,4235 -179,FR,CH,201812,3,1,5800,22260 -179,FR,CH,201812,3,1,8279,22300 -179,FR,CH,201812,4,1,39,7 -179,FR,CH,201812,1,2,3000,11840 -179,FR,CH,201812,3,2,3547300,8011417 -179,FR,CH,201812,3,2,350290,1185135 -179,FR,CH,201812,3,2,6091,19612 -179,FR,CH,201812,3,2,9180,1130 -179,FR,CH,201812,3,2,5806,24420 -179,FR,CH,201812,3,2,467028,1903448 -179,FR,CH,201812,3,2,118943,252874 -179,FR,CH,201812,3,2,383391,961637 -179,FR,CH,201812,3,2,30337,17424 -179,FR,CH,201812,3,2,5546,22960 -179,FR,CH,201812,3,2,5890,22600 -179,FR,CH,201812,3,2,99533,519430 -179,FR,CH,201812,3,2,7266,24220 -179,FR,CH,201812,4,2,3272,8174 -179,FR,CH,201812,5,2,1098,11 -181,FR,CH,201812,3,2,142835,370710 -181,FR,CH,201812,3,2,22390,45540 -181,FR,CH,201812,3,2,147099,83562 -181,FR,CH,201812,3,2,11273,24820 -181,FR,CH,201812,3,2,6619,329 -181,FR,CH,201812,5,2,110,3 -182,FR,CH,201812,3,1,146067,1785 -182,FR,CH,201812,3,1,6584,375 -182,FR,CH,201812,3,1,287,25 -182,FR,CH,201812,4,1,108,11 -182,FR,CH,201812,1,2,36,5 -182,FR,CH,201812,3,2,415744,157886 -182,FR,CH,201812,3,2,149674,146480 -182,FR,CH,201812,3,2,63971,63532 -182,FR,CH,201812,3,2,10590,7200 -182,FR,CH,201812,3,2,25965,23860 -182,FR,CH,201812,3,2,295000,198937 -182,FR,CH,201812,3,2,59600,23528 -182,FR,CH,201812,3,2,97112,95060 -182,FR,CH,201812,4,2,1068,270 -182,FR,CH,201812,5,2,1,0 -211,FR,CH,201812,3,2,7408,50200 -224,FR,CH,201812,3,2,41832,47493 -224,FR,CH,201812,3,2,5650,17340 -321,FR,CH,201812,3,1,3718,1110 -321,FR,CH,201812,3,1,1721,389 -321,FR,CH,201812,3,1,26643,25896 -321,FR,CH,201812,3,2,48634,43538 -321,FR,CH,201812,3,2,5228,6945 -321,FR,CH,201812,3,2,3373,3836 -321,FR,CH,201812,3,2,19096,19728 -321,FR,CH,201812,7,2,1987784,4346943 -323,FR,CH,201812,3,1,816,1280 -323,FR,CH,201812,3,1,624,12 -323,FR,CH,201812,3,2,3862,844 -323,FR,CH,201812,3,2,83704,3982 -323,FR,CH,201812,3,2,9869,9080 -323,FR,CH,201812,7,2,31424611,52119640 -325,FR,CH,201812,3,1,731766,1120059 -325,FR,CH,201812,3,2,80491,83700 -325,FR,CH,201812,3,2,1966,1578 -325,FR,CH,201812,3,2,63059,68040 -325,FR,CH,201812,7,2,21754112,39167490 -327,FR,CH,201812,3,1,213559,631801 -327,FR,CH,201812,4,1,115,0 -327,FR,CH,201812,3,2,1736,70 -327,FR,CH,201812,4,2,1680,2 -330,FR,CH,201812,0,1,2200118,0 -330,FR,CH,201812,3,1,5437,18 -330,FR,CH,201812,3,1,564,1 -330,FR,CH,201812,0,2,16728598,0 -330,FR,CH,201812,2,2,339985,846890 -330,FR,CH,201812,3,2,21570,48 -341,FR,CH,201812,1,1,1652,100 -341,FR,CH,201812,1,1,9934,1569 -341,FR,CH,201812,3,1,480487,96100 -341,FR,CH,201812,3,1,9165,359 -341,FR,CH,201812,3,1,265,15 -341,FR,CH,201812,3,1,658,3 -341,FR,CH,201812,3,1,25873,410 -341,FR,CH,201812,3,1,9585,1653 -341,FR,CH,201812,4,1,737,6 -341,FR,CH,201812,4,1,2068,45 -341,FR,CH,201812,4,1,14890,1405 -341,FR,CH,201812,4,1,1577,52 -341,FR,CH,201812,3,2,262325,112086 -341,FR,CH,201812,3,2,8546,592 -341,FR,CH,201812,3,2,185106,96352 -341,FR,CH,201812,3,2,10128,1030 -341,FR,CH,201812,3,2,56550,69840 -341,FR,CH,201812,3,2,40240,46900 -341,FR,CH,201812,4,2,2162,209 -343,FR,CH,201812,3,1,2561,3990 -343,FR,CH,201812,3,1,15080,15696 -343,FR,CH,201812,3,2,212963,673400 -343,FR,CH,201812,3,2,157748,299200 -343,FR,CH,201812,3,2,54552,74580 -343,FR,CH,201812,3,2,438749,1761683 -349,FR,CH,201812,3,1,3455,4 -349,FR,CH,201812,5,1,270,10 -349,FR,CH,201812,3,2,23600,13211 -349,FR,CH,201812,3,2,9908,2892 -451,FR,CH,201812,3,1,949409,545282 -451,FR,CH,201812,3,1,16111,11820 -451,FR,CH,201812,3,1,149280,31606 -451,FR,CH,201812,3,1,2466,20440 -451,FR,CH,201812,1,2,7781,15199 -451,FR,CH,201812,1,2,64200,17406 -451,FR,CH,201812,3,2,1553864,589510 -453,FR,CH,201812,3,2,25038,546850 -455,FR,CH,201812,3,2,12300,23800 -459,FR,CH,201812,3,1,1329423,4138 -459,FR,CH,201812,4,1,4996,0 -459,FR,CH,201812,4,1,65490,161 -459,FR,CH,201812,3,2,3927569,5368 -459,FR,CH,201812,4,2,668126,20 -462,FR,CH,201812,3,1,390305,1543096 -462,FR,CH,201812,3,1,208925,1223360 -462,FR,CH,201812,3,1,40955,187680 -462,FR,CH,201812,3,1,11703,139600 -462,FR,CH,201812,1,2,366,715 -462,FR,CH,201812,1,2,17052,47451 -462,FR,CH,201812,2,2,226430,792050 -462,FR,CH,201812,3,2,357562,1356430 -462,FR,CH,201812,3,2,58027,217120 -462,FR,CH,201812,3,2,456841,1755020 -465,FR,CH,201812,0,2,500,7 -465,FR,CH,201812,3,2,2443,24150 -512,FR,CH,201812,3,1,1485,2 -512,FR,CH,201812,3,2,4249,1003 -512,FR,CH,201812,3,2,40,1 -513,FR,CH,201812,3,2,13003,3250 -515,FR,CH,201812,3,2,337,55 -522,FR,CH,201812,3,1,1670,327 -522,FR,CH,201812,3,1,26,0 -522,FR,CH,201812,2,2,837389,1238077 -522,FR,CH,201812,3,2,81342,80295 -532,FR,CH,201812,3,1,105593,4521 -532,FR,CH,201812,3,1,331,7 -532,FR,CH,201812,3,1,2811,551 -532,FR,CH,201812,3,1,95616,57342 -532,FR,CH,201812,3,1,14717,17592 -532,FR,CH,201812,3,1,40531,48478 -532,FR,CH,201812,4,1,303,6 -532,FR,CH,201812,4,1,4629,16 -532,FR,CH,201812,4,1,3797,23 -532,FR,CH,201812,0,2,4215,11 -532,FR,CH,201812,3,2,481618,293746 -532,FR,CH,201812,3,2,53260,60912 -532,FR,CH,201812,3,2,12095,17792 -532,FR,CH,201812,3,2,39741,58682 -532,FR,CH,201812,3,2,157601,30175 -532,FR,CH,201812,3,2,174505,310523 -532,FR,CH,201812,3,2,20670,35885 -532,FR,CH,201812,3,2,39530,48347 -532,FR,CH,201812,3,2,33466,46932 -532,FR,CH,201812,4,2,9155,3 -533,FR,CH,201812,3,1,242403,120042 -533,FR,CH,201812,3,1,26463,19452 -533,FR,CH,201812,3,1,535823,96807 -533,FR,CH,201812,3,1,31877,22789 -533,FR,CH,201812,3,1,18853,3170 -533,FR,CH,201812,3,1,549103,413506 -533,FR,CH,201812,3,1,12022,9633 -533,FR,CH,201812,3,1,74571,41251 -533,FR,CH,201812,3,2,899538,526629 -533,FR,CH,201812,3,2,39565,25441 -533,FR,CH,201812,3,2,10189,8908 -533,FR,CH,201812,3,2,21325,3734 -533,FR,CH,201812,4,2,12491,59 -535,FR,CH,201812,3,1,13287,24578 -535,FR,CH,201812,4,1,308,0 -535,FR,CH,201812,2,2,201788,369550 -535,FR,CH,201812,3,2,1733562,3108704 -535,FR,CH,201812,3,2,725969,1374260 -535,FR,CH,201812,3,2,38174,69800 -535,FR,CH,201812,3,2,8270,800 -535,FR,CH,201812,3,2,40310,43500 -536,FR,CH,201812,3,1,31446,1733 -536,FR,CH,201812,3,1,341492,96678 -536,FR,CH,201812,3,1,1434,24 -536,FR,CH,201812,3,1,51792,23769 -536,FR,CH,201812,3,2,204123,142108 -536,FR,CH,201812,3,2,745,29 -536,FR,CH,201812,3,2,21456,9273 -536,FR,CH,201812,3,2,8019,2486 -536,FR,CH,201812,3,2,6700,230 -536,FR,CH,201812,3,2,20,0 -537,FR,CH,201812,3,1,195239,108000 -537,FR,CH,201812,3,1,83380,7920 -537,FR,CH,201812,4,1,1291,10 -542,FR,CH,201812,1,1,127841,16800 -542,FR,CH,201812,3,1,27816,1664 -542,FR,CH,201812,3,1,119741,757 -542,FR,CH,201812,3,1,14731,24518 -542,FR,CH,201812,3,1,243,6 -542,FR,CH,201812,3,1,19553,5516 -542,FR,CH,201812,3,1,15917,24731 -542,FR,CH,201812,3,1,100822,165958 -542,FR,CH,201812,3,1,11848,18596 -542,FR,CH,201812,4,1,80,5 -542,FR,CH,201812,4,1,4810,3 -542,FR,CH,201812,2,2,31726,46908 -542,FR,CH,201812,3,2,1247210,829430 -542,FR,CH,201812,3,2,27465,14817 -542,FR,CH,201812,3,2,15905,24554 -542,FR,CH,201812,3,2,20165,23072 -542,FR,CH,201812,3,2,1020,374 -542,FR,CH,201812,3,2,12510,24422 -542,FR,CH,201812,3,2,87855,110499 -542,FR,CH,201812,3,2,10635,14490 -542,FR,CH,201812,3,2,77171,47529 -542,FR,CH,201812,4,2,4728,1020 -542,FR,CH,201812,4,2,571,3 -543,FR,CH,201812,0,1,374,4 -543,FR,CH,201812,3,1,159029,34153 -543,FR,CH,201812,3,1,16992,15 -543,FR,CH,201812,3,1,2213,9 -543,FR,CH,201812,3,1,25383,378 -543,FR,CH,201812,3,1,13523,21 -543,FR,CH,201812,3,1,6296,8 -543,FR,CH,201812,3,2,1115297,173372 -543,FR,CH,201812,3,2,25173,6252 -543,FR,CH,201812,3,2,3602,7 -543,FR,CH,201812,3,2,111520,3012 -545,FR,CH,201812,3,1,290,26 -551,FR,CH,201812,0,1,349,3 -551,FR,CH,201812,1,1,8527,2472 -551,FR,CH,201812,1,1,610,124 -551,FR,CH,201812,3,1,198019,76111 -551,FR,CH,201812,3,1,2256,19 -551,FR,CH,201812,3,1,77353,931 -551,FR,CH,201812,3,1,9965,161 -551,FR,CH,201812,3,1,47119,22546 -551,FR,CH,201812,3,1,138933,8655 -551,FR,CH,201812,3,1,48210,987 -551,FR,CH,201812,3,1,19754,21781 -551,FR,CH,201812,3,1,184551,63603 -551,FR,CH,201812,4,1,22891,18 -551,FR,CH,201812,4,1,8970,10 -551,FR,CH,201812,4,1,483,10 -551,FR,CH,201812,4,1,21277,134 -551,FR,CH,201812,4,1,55,0 -551,FR,CH,201812,1,2,1209,0 -551,FR,CH,201812,3,2,433276,156462 -551,FR,CH,201812,3,2,28421,26564 -551,FR,CH,201812,3,2,11553,1507 -551,FR,CH,201812,3,2,36139,50137 -551,FR,CH,201812,3,2,107230,23632 -551,FR,CH,201812,3,2,1514,4 -551,FR,CH,201812,3,2,57087,66661 -551,FR,CH,201812,3,2,121698,139723 -551,FR,CH,201812,3,2,1220,39 -551,FR,CH,201812,4,2,77394,98 -551,FR,CH,201812,4,2,3610,4 -551,FR,CH,201812,4,2,5888,6 -551,FR,CH,201812,4,2,6606,660 -552,FR,CH,201812,3,1,47101,2785 -552,FR,CH,201812,3,1,479,0 -552,FR,CH,201812,3,1,1454,626 -552,FR,CH,201812,3,1,785,0 -552,FR,CH,201812,3,1,3809,3 -552,FR,CH,201812,3,1,12450,940 -552,FR,CH,201812,3,1,1899,948 -552,FR,CH,201812,3,1,140,1 -552,FR,CH,201812,3,1,205,1 -552,FR,CH,201812,4,1,38,0 -552,FR,CH,201812,4,1,931,2 -552,FR,CH,201812,5,1,1692,2 -552,FR,CH,201812,3,2,181910,28183 -552,FR,CH,201812,3,2,20614,1879 -552,FR,CH,201812,3,2,17360,230 -552,FR,CH,201812,3,2,3190,919 -552,FR,CH,201812,4,2,4349,65 -561,FR,CH,201812,3,1,43,63 -561,FR,CH,201812,3,2,188400,42000 -561,FR,CH,201812,4,2,2390,8 -562,FR,CH,201812,2,1,2491090,1251620 -562,FR,CH,201812,3,1,3623328,1775725 -562,FR,CH,201812,3,1,184467,89581 -562,FR,CH,201812,3,1,303306,150080 -562,FR,CH,201812,3,2,49270,20560 -562,FR,CH,201812,4,2,1201,1 -564,FR,CH,201812,3,2,16001,1696 -565,FR,CH,201812,0,1,7998,3 -565,FR,CH,201812,3,1,2964867,28288 -565,FR,CH,201812,3,1,358735,3402 -565,FR,CH,201812,3,1,110345,1045 -565,FR,CH,201812,3,1,885362,415 -565,FR,CH,201812,3,1,60972,581 -565,FR,CH,201812,3,1,163738,1615 -565,FR,CH,201812,3,1,111187,5 -565,FR,CH,201812,4,1,97254,33 -565,FR,CH,201812,4,1,3417,16 -565,FR,CH,201812,4,1,16803,14 -565,FR,CH,201812,4,1,608,9 -565,FR,CH,201812,1,2,50160,417 -565,FR,CH,201812,3,2,2750774,26409 -565,FR,CH,201812,3,2,94464,2202 -565,FR,CH,201812,3,2,268514,1193 -565,FR,CH,201812,4,2,43514,330 -565,FR,CH,201812,4,2,2864,0 -565,FR,CH,201812,4,2,1970,21 -565,FR,CH,201812,4,2,51277,420 -565,FR,CH,201812,4,2,6490,14 -568,FR,CH,201812,0,1,2310,34 -568,FR,CH,201812,1,1,103,21 -568,FR,CH,201812,1,1,9085,1243 -568,FR,CH,201812,3,1,2094165,406467 -568,FR,CH,201812,3,1,40207,501 -568,FR,CH,201812,3,1,121705,5455 -568,FR,CH,201812,3,1,44925,6187 -568,FR,CH,201812,3,1,25909,4488 -568,FR,CH,201812,3,1,37408,11 -568,FR,CH,201812,3,1,291121,55637 -568,FR,CH,201812,3,1,8000,2050 -568,FR,CH,201812,3,1,17459,82 -568,FR,CH,201812,3,1,7070,470 -568,FR,CH,201812,4,1,76805,7 -568,FR,CH,201812,4,1,11591,23 -568,FR,CH,201812,4,1,12925,125 -568,FR,CH,201812,4,1,2789,12 -568,FR,CH,201812,0,2,35,0 -568,FR,CH,201812,3,2,10332912,2151203 -568,FR,CH,201812,3,2,12336,1278 -568,FR,CH,201812,3,2,3600,355 -568,FR,CH,201812,3,2,442397,164120 -568,FR,CH,201812,3,2,683538,121055 -568,FR,CH,201812,3,2,6551,1625 -568,FR,CH,201812,3,2,964924,403050 -568,FR,CH,201812,3,2,550979,92590 -568,FR,CH,201812,3,2,387971,152662 -568,FR,CH,201812,3,2,136026,24854 -568,FR,CH,201812,3,2,50440,21100 -568,FR,CH,201812,3,2,49125,20550 -568,FR,CH,201812,3,2,750,46 -568,FR,CH,201812,4,2,62415,21 -568,FR,CH,201812,4,2,157,1 -568,FR,CH,201812,4,2,11524,1040 -611,FR,CH,201812,3,1,1165,135190 -611,FR,CH,201812,3,1,46105,11467734 -611,FR,CH,201812,1,2,5745,786000 -611,FR,CH,201812,3,2,437843,16992622 -611,FR,CH,201812,3,2,1825,109520 -611,FR,CH,201812,3,2,9260,100000 -611,FR,CH,201812,3,2,6600,24000 -611,FR,CH,201812,3,2,62597,10415982 -611,FR,CH,201812,3,2,4168,24000 -612,FR,CH,201812,3,1,2379,175700 -612,FR,CH,201812,3,1,13484,2525030 -612,FR,CH,201812,3,2,1752324,130812529 -612,FR,CH,201812,3,2,64356,3841226 -612,FR,CH,201812,3,2,748,49000 -612,FR,CH,201812,8,2,246741,23178100 -613,FR,CH,201812,3,2,1888,1940 -614,FR,CH,201812,3,1,1601,502 -614,FR,CH,201812,3,2,9955,168677 -614,FR,CH,201812,3,2,383,100 -615,FR,CH,201812,3,1,2916,319440 -615,FR,CH,201812,3,2,546,27980 -615,FR,CH,201812,3,2,5786,47650 -621,FR,CH,201812,3,1,10880,76400 -621,FR,CH,201812,3,1,1805,10143 -621,FR,CH,201812,5,1,136,3 -621,FR,CH,201812,3,2,168184,159084 -621,FR,CH,201812,3,2,2159,231 -621,FR,CH,201812,3,2,69,36 -621,FR,CH,201812,4,2,66,1 -621,FR,CH,201812,4,2,7,25 -623,FR,CH,201812,3,2,38958,156940 -623,FR,CH,201812,3,2,13720,3600 -631,FR,CH,201812,3,1,66316,10765990 -631,FR,CH,201812,3,1,38089,10770610 -631,FR,CH,201812,3,2,190017,6701333 -631,FR,CH,201812,3,2,15,18 -631,FR,CH,201812,3,2,146234,3082420 -631,FR,CH,201812,8,2,15009,1329500 -632,FR,CH,201812,3,2,65445,1441223 -632,FR,CH,201812,3,2,3560,25400 -632,FR,CH,201812,3,2,52615,440253 -632,FR,CH,201812,3,2,16090,168000 -632,FR,CH,201812,3,2,4344,72000 -632,FR,CH,201812,8,2,5436,190000 -633,FR,CH,201812,3,2,24800,71600 -633,FR,CH,201812,3,2,18000,48200 -634,FR,CH,201812,3,2,7755,59140 -634,FR,CH,201812,3,2,1643,24000 -634,FR,CH,201812,3,2,3935,86050 -639,FR,CH,201812,0,1,376,18 -639,FR,CH,201812,3,1,668088,86178620 -639,FR,CH,201812,3,1,9744,1524710 -639,FR,CH,201812,3,1,274496,35778091 -639,FR,CH,201812,5,1,661,15 -639,FR,CH,201812,3,2,55327,316628 -639,FR,CH,201812,3,2,5974,5 -639,FR,CH,201812,3,2,27672,74000 -639,FR,CH,201812,3,2,4558,5466 -639,FR,CH,201812,3,2,37934,82300 -639,FR,CH,201812,3,2,9466,30905 -639,FR,CH,201812,3,2,14291,18480 -641,FR,CH,201812,3,1,30,300 -641,FR,CH,201812,3,2,64850,501610 -642,FR,CH,201812,3,2,87304,690630 -642,FR,CH,201812,3,2,5711,42540 -650,FR,CH,201812,3,1,560,1900 -650,FR,CH,201812,3,1,1355,574 -650,FR,CH,201812,3,1,4732,58 -650,FR,CH,201812,3,1,1574,719 -650,FR,CH,201812,3,1,1356,465 -650,FR,CH,201812,3,2,1327,2695 -691,FR,CH,201812,0,1,132,27 -691,FR,CH,201812,3,1,564842,699939 -691,FR,CH,201812,3,1,14372,14388 -691,FR,CH,201812,3,1,6429,8 -691,FR,CH,201812,3,1,1048,0 -691,FR,CH,201812,3,1,41134,56348 -691,FR,CH,201812,3,1,14702,19098 -691,FR,CH,201812,3,1,69513,115846 -691,FR,CH,201812,3,1,5102,6638 -691,FR,CH,201812,3,1,5109,6644 -691,FR,CH,201812,4,1,243,11 -691,FR,CH,201812,0,2,159,2 -691,FR,CH,201812,3,2,5259940,6826847 -691,FR,CH,201812,3,2,8600,20350 -691,FR,CH,201812,3,2,159312,129225 -691,FR,CH,201812,3,2,24181,21887 -691,FR,CH,201812,3,2,3042,659 -691,FR,CH,201812,3,2,198548,84598 -691,FR,CH,201812,3,2,153898,16293 -691,FR,CH,201812,3,2,412843,537659 -691,FR,CH,201812,3,2,91580,8987 -691,FR,CH,201812,3,2,83723,29096 -691,FR,CH,201812,3,2,226337,111355 -691,FR,CH,201812,3,2,51317,23047 -691,FR,CH,201812,3,2,28092,21409 -691,FR,CH,201812,4,2,1000,30 -691,FR,CH,201812,4,2,8870,150 -691,FR,CH,201812,4,2,4228,3 -691,FR,CH,201812,4,2,2737,3 -691,FR,CH,201812,5,2,2443,18 -692,FR,CH,201812,3,1,4942,8670 -692,FR,CH,201812,3,1,1228,100 -692,FR,CH,201812,3,1,5150,3060 -692,FR,CH,201812,4,1,1321,0 -692,FR,CH,201812,1,2,859,317 -692,FR,CH,201812,3,2,469794,448195 -692,FR,CH,201812,3,2,1128,0 -692,FR,CH,201812,3,2,292004,55082 -692,FR,CH,201812,3,2,65155,120270 -692,FR,CH,201812,3,2,46223,34519 -692,FR,CH,201812,3,2,28900,19153 -692,FR,CH,201812,3,2,11802,22434 -692,FR,CH,201812,4,2,5691,60 -692,FR,CH,201812,4,2,3049,2 -692,FR,CH,201812,4,2,7934,4 -719,FR,CH,201812,3,1,17,0 -719,FR,CH,201812,3,2,137468,273004 -719,FR,CH,201812,3,2,405,9 -719,FR,CH,201812,3,2,3349,23700 -719,FR,CH,201812,3,2,7450,24750 -722,FR,CH,201812,3,2,9301,26200 -722,FR,CH,201812,3,2,11230,24150 -723,FR,CH,201812,1,2,1286,3000 -723,FR,CH,201812,3,2,55865,128050 -723,FR,CH,201812,3,2,101861,277940 -723,FR,CH,201812,3,2,169684,458700 -723,FR,CH,201812,3,2,967,3150 -723,FR,CH,201812,3,2,17876,45110 -724,FR,CH,201812,3,1,247,20 -724,FR,CH,201812,3,2,90509,305039 -724,FR,CH,201812,3,2,9280,24000 -724,FR,CH,201812,3,2,31209,150860 -724,FR,CH,201812,3,2,68759,97550 -724,FR,CH,201812,3,2,104324,318400 -729,FR,CH,201812,3,1,431,16 -729,FR,CH,201812,3,2,53395,170652 -729,FR,CH,201812,3,2,36,5 -729,FR,CH,201812,3,2,153884,206480 -811,FR,CH,201812,3,1,30481,482310 -811,FR,CH,201812,3,1,22631,356780 -811,FR,CH,201812,3,1,1974,23940 -811,FR,CH,201812,2,2,4807,24650 -811,FR,CH,201812,3,2,9766,31086 -811,FR,CH,201812,3,2,44229,37334 -812,FR,CH,201812,3,1,51389,169575 -812,FR,CH,201812,3,1,14099,51480 -813,FR,CH,201812,4,1,14,0 -813,FR,CH,201812,3,2,284727,1073452 -813,FR,CH,201812,3,2,97410,383090 -813,FR,CH,201812,3,2,711,126 -813,FR,CH,201812,3,2,3024,336 -813,FR,CH,201812,3,2,14252,46500 -819,FR,CH,201812,0,1,99,7 -819,FR,CH,201812,1,1,220105,77790 -819,FR,CH,201812,1,1,3673,60 -819,FR,CH,201812,1,1,368280,130150 -819,FR,CH,201812,2,1,57731,168500 -819,FR,CH,201812,3,1,15640125,1383220 -819,FR,CH,201812,3,1,42976,50 -819,FR,CH,201812,3,1,1708163,29172 -819,FR,CH,201812,3,1,27816,14640 -819,FR,CH,201812,3,1,23619,4050 -819,FR,CH,201812,3,1,717625,5917 -819,FR,CH,201812,3,1,116302,197250 -819,FR,CH,201812,3,1,21319420,1362777 -819,FR,CH,201812,3,1,802651,7733 -819,FR,CH,201812,3,1,3785020,20158 -819,FR,CH,201812,3,1,110821,12985 -819,FR,CH,201812,3,1,18854,583 -819,FR,CH,201812,3,1,4378,27 -819,FR,CH,201812,3,1,1901401,15906 -819,FR,CH,201812,4,1,5291,32 -819,FR,CH,201812,4,1,9780,0 -819,FR,CH,201812,4,1,169544,152 -819,FR,CH,201812,4,1,16828,18 -819,FR,CH,201812,0,2,100,0 -819,FR,CH,201812,1,2,292478,7900 -819,FR,CH,201812,1,2,100917,4200 -819,FR,CH,201812,1,2,15488,280 -819,FR,CH,201812,2,2,2171374,3759980 -819,FR,CH,201812,2,2,1977111,1219203 -819,FR,CH,201812,3,2,7754261,3364132 -819,FR,CH,201812,3,2,2150,760 -819,FR,CH,201812,3,2,28452,148510 -819,FR,CH,201812,3,2,121117,185088 -819,FR,CH,201812,3,2,2009,245 -819,FR,CH,201812,3,2,1215575,6108820 -819,FR,CH,201812,3,2,627107,121940 -819,FR,CH,201812,3,2,36747,68635 -819,FR,CH,201812,3,2,112559,60280 -819,FR,CH,201812,3,2,40754,25525 -819,FR,CH,201812,3,2,175566,15000 -819,FR,CH,201812,3,2,86448,33923 -819,FR,CH,201812,3,2,186763,218160 -819,FR,CH,201812,4,2,3621,9 -819,FR,CH,201812,4,2,337,9 -819,FR,CH,201812,4,2,807,10 -819,FR,CH,201812,4,2,76592,880 -819,FR,CH,201812,4,2,42328,29 -820,FR,CH,201812,3,1,98,0 -820,FR,CH,201812,3,2,332043,44233 -820,FR,CH,201812,3,2,48272,120150 -820,FR,CH,201812,3,2,14166,1000 -820,FR,CH,201812,4,2,3017,100 -839,FR,CH,201812,3,1,159749,436898 -841,FR,CH,201812,3,1,128404,259644 -841,FR,CH,201812,3,1,6984,14196 -841,FR,CH,201812,3,1,6984,14196 -841,FR,CH,201812,3,1,27936,56784 -841,FR,CH,201812,3,1,34920,70980 -841,FR,CH,201812,3,1,90792,184548 -841,FR,CH,201812,3,1,83768,170352 -841,FR,CH,201812,3,1,6984,14196 -841,FR,CH,201812,3,2,26133,48280 -841,FR,CH,201812,3,2,76143,142706 -841,FR,CH,201812,3,2,38338,72400 -841,FR,CH,201812,3,2,13164,24120 -842,FR,CH,201812,3,1,459753,5180475 -842,FR,CH,201812,3,1,38402,405760 -842,FR,CH,201812,3,1,45275,454020 -842,FR,CH,201812,3,1,2160,24000 -842,FR,CH,201812,3,1,2160,24000 -842,FR,CH,201812,3,1,57265,752210 -842,FR,CH,201812,3,1,8273,97350 -842,FR,CH,201812,3,2,333976,2233254 -842,FR,CH,201812,3,2,5280,360526 -842,FR,CH,201812,3,2,31877,474864 -842,FR,CH,201812,3,2,77172,516940 -842,FR,CH,201812,3,2,45891,266400 -842,FR,CH,201812,3,2,660,48820 -891,FR,CH,201812,0,1,7951,50 -891,FR,CH,201812,1,1,222,14 -891,FR,CH,201812,3,1,7448898,1324461 -891,FR,CH,201812,3,1,285541,18459 -891,FR,CH,201812,3,1,147973,54976 -891,FR,CH,201812,3,1,11914,1862 -891,FR,CH,201812,3,1,13786,73 -891,FR,CH,201812,3,1,32355,6297 -891,FR,CH,201812,3,1,110,71 -891,FR,CH,201812,3,1,1382380,422690 -891,FR,CH,201812,3,1,410974,192435 -891,FR,CH,201812,3,1,144882,229878 -891,FR,CH,201812,3,1,60010,8287 -891,FR,CH,201812,3,1,9986,21525 -891,FR,CH,201812,3,1,2,0 -891,FR,CH,201812,3,1,18920,8 -891,FR,CH,201812,3,1,741,36 -891,FR,CH,201812,4,1,2170,124 -891,FR,CH,201812,4,1,4589,72 -891,FR,CH,201812,4,1,1796,0 -891,FR,CH,201812,4,1,18575,252 -891,FR,CH,201812,4,1,2337,26 -891,FR,CH,201812,1,2,79082,32518 -891,FR,CH,201812,1,2,1447,3 -891,FR,CH,201812,2,2,80920,74100 -891,FR,CH,201812,3,2,5913741,2907366 -891,FR,CH,201812,3,2,29228,12003 -891,FR,CH,201812,3,2,188970,11852 -891,FR,CH,201812,3,2,286937,219675 -891,FR,CH,201812,3,2,30120,24371 -891,FR,CH,201812,3,2,104990,96412 -891,FR,CH,201812,3,2,24669,7529 -891,FR,CH,201812,3,2,63700,43512 -891,FR,CH,201812,3,2,1341109,760009 -891,FR,CH,201812,3,2,302952,157776 -891,FR,CH,201812,3,2,596295,229942 -891,FR,CH,201812,3,2,28990,14701 -891,FR,CH,201812,3,2,87787,73900 -891,FR,CH,201812,3,2,29638,20269 -891,FR,CH,201812,3,2,32900,24880 -891,FR,CH,201812,3,2,3182,176 -891,FR,CH,201812,3,2,38411,47140 -891,FR,CH,201812,3,2,87993,44060 -891,FR,CH,201812,4,2,252850,2973 -891,FR,CH,201812,4,2,370,2 -891,FR,CH,201812,4,2,8403,52 -891,FR,CH,201812,4,2,57695,800 -891,FR,CH,201812,4,2,12036,42 -891,FR,CH,201812,4,2,47444,357 -891,FR,CH,201812,5,2,5775,32 -892,FR,CH,201812,0,1,2524,124 -892,FR,CH,201812,1,1,167,200 -892,FR,CH,201812,3,1,677969,331186 -892,FR,CH,201812,3,1,75999,17559 -892,FR,CH,201812,3,1,7101,480 -892,FR,CH,201812,3,1,97788,16201 -892,FR,CH,201812,3,1,875840,114152 -892,FR,CH,201812,3,1,47884,16205 -892,FR,CH,201812,3,1,58912,20820 -892,FR,CH,201812,3,1,19553,6644 -892,FR,CH,201812,4,1,7957,22 -892,FR,CH,201812,4,1,337,22 -892,FR,CH,201812,0,2,517,13 -892,FR,CH,201812,1,2,9372,1490 -892,FR,CH,201812,1,2,3,1 -892,FR,CH,201812,3,2,1602903,536943 -892,FR,CH,201812,3,2,14738,2221 -892,FR,CH,201812,3,2,42870,38635 -892,FR,CH,201812,3,2,1420431,104677 -892,FR,CH,201812,3,2,24455,32162 -892,FR,CH,201812,3,2,40649,77349 -892,FR,CH,201812,3,2,15,0 -892,FR,CH,201812,4,2,2671,118 -892,FR,CH,201812,4,2,401,0 -892,FR,CH,201812,4,2,21000,70 -892,FR,CH,201812,4,2,30715,356 -893,FR,CH,201812,0,1,1365167,36984 -893,FR,CH,201812,1,1,11888,340 -893,FR,CH,201812,1,1,461907,641 -893,FR,CH,201812,1,1,19189,75 -893,FR,CH,201812,1,1,7023,244 -893,FR,CH,201812,1,1,7516,73 -893,FR,CH,201812,1,1,389584,616 -893,FR,CH,201812,1,1,4471,1840 -893,FR,CH,201812,1,1,201,52 -893,FR,CH,201812,1,1,41791,2318 -893,FR,CH,201812,1,1,1737,270 -893,FR,CH,201812,3,1,60834013,1065488 -893,FR,CH,201812,3,1,273013,401 -893,FR,CH,201812,3,1,13843973,427204 -893,FR,CH,201812,3,1,1390157,70033 -893,FR,CH,201812,3,1,5720054,222103 -893,FR,CH,201812,3,1,6116605,10685 -893,FR,CH,201812,3,1,591428,14996 -893,FR,CH,201812,3,1,2358205,1001 -893,FR,CH,201812,3,1,111806101,743381 -893,FR,CH,201812,3,1,364095,54706 -893,FR,CH,201812,3,1,79800,8 -893,FR,CH,201812,3,1,28416,945 -893,FR,CH,201812,3,1,1203297,18965 -893,FR,CH,201812,3,1,739,9 -893,FR,CH,201812,3,1,10725373,601928 -893,FR,CH,201812,3,1,21,0 -893,FR,CH,201812,3,1,32695,8350 -893,FR,CH,201812,4,1,21617,99 -893,FR,CH,201812,4,1,1257,35 -893,FR,CH,201812,4,1,125105,1840 -893,FR,CH,201812,4,1,812,40 -893,FR,CH,201812,4,1,40861,442 -893,FR,CH,201812,5,1,996,5 -893,FR,CH,201812,0,2,18046,107 -893,FR,CH,201812,1,2,971168,156 -893,FR,CH,201812,1,2,2773,182 -893,FR,CH,201812,1,2,49712,89 -893,FR,CH,201812,3,2,91315599,2094715 -893,FR,CH,201812,3,2,241040,4462 -893,FR,CH,201812,3,2,1682609,13204 -893,FR,CH,201812,3,2,48354,326 -893,FR,CH,201812,3,2,6924829,975 -893,FR,CH,201812,3,2,1200608,823 -893,FR,CH,201812,3,2,36428,2325 -893,FR,CH,201812,3,2,9260,438 -893,FR,CH,201812,3,2,257473,8361 -893,FR,CH,201812,3,2,107159,23287 -893,FR,CH,201812,3,2,9052624,96612 -893,FR,CH,201812,3,2,11557,333 -893,FR,CH,201812,3,2,11900,34 -893,FR,CH,201812,3,2,107943,27452 -893,FR,CH,201812,3,2,5918462,146889 -893,FR,CH,201812,3,2,11032,88 -893,FR,CH,201812,3,2,79709,3931 -893,FR,CH,201812,3,2,62535,2798 -893,FR,CH,201812,3,2,48562,6948 -893,FR,CH,201812,3,2,17397,385 -893,FR,CH,201812,3,2,48190,10428 -893,FR,CH,201812,3,2,13262,336 -893,FR,CH,201812,4,2,192671,646 -893,FR,CH,201812,4,2,8015,182 -893,FR,CH,201812,4,2,135766,369 -893,FR,CH,201812,4,2,256161,61 -893,FR,CH,201812,4,2,240,327 -893,FR,CH,201812,4,2,43147,134 -893,FR,CH,201812,4,2,170697,14180 -893,FR,CH,201812,4,2,38449,373 -893,FR,CH,201812,4,2,352399,1311 -893,FR,CH,201812,5,2,22861,158 -894,FR,CH,201812,0,1,3582,26 -894,FR,CH,201812,3,1,7000,300 -894,FR,CH,201812,3,2,369520,4321 -894,FR,CH,201812,3,2,3497,911 -894,FR,CH,201812,4,2,1829,2 -895,FR,CH,201812,3,1,7976,3360 -895,FR,CH,201812,3,2,86046,103648 -895,FR,CH,201812,3,2,96653,71000 -895,FR,CH,201812,3,2,28256,17000 -896,FR,CH,201812,0,1,4926,23 -896,FR,CH,201812,1,1,34626,476 -896,FR,CH,201812,1,1,689,108 -896,FR,CH,201812,3,1,8599676,1826139 -896,FR,CH,201812,3,1,978565,21965 -896,FR,CH,201812,3,1,112331,8497 -896,FR,CH,201812,3,1,23080,1139 -896,FR,CH,201812,3,1,148104,28286 -896,FR,CH,201812,3,1,17745,4400 -896,FR,CH,201812,3,1,17097,4260 -896,FR,CH,201812,3,1,4579818,725250 -896,FR,CH,201812,3,1,11508,479 -896,FR,CH,201812,3,1,995567,37954 -896,FR,CH,201812,3,1,275361,9722 -896,FR,CH,201812,3,1,4794,839 -896,FR,CH,201812,3,1,99615,42900 -896,FR,CH,201812,3,1,28547,6000 -896,FR,CH,201812,4,1,26962,90 -896,FR,CH,201812,4,1,7330,18 -896,FR,CH,201812,4,1,636,0 -896,FR,CH,201812,4,1,190227,2080 -896,FR,CH,201812,4,1,1182,3 -896,FR,CH,201812,4,1,539,1 -896,FR,CH,201812,5,1,164,0 -896,FR,CH,201812,0,2,69939,328 -896,FR,CH,201812,1,2,61,9 -896,FR,CH,201812,1,2,79743,20214 -896,FR,CH,201812,1,2,2799,73 -896,FR,CH,201812,3,2,8672353,16308644 -896,FR,CH,201812,3,2,8658,9153 -896,FR,CH,201812,3,2,338494,132268 -896,FR,CH,201812,3,2,162644,46380 -896,FR,CH,201812,3,2,113878,50485 -896,FR,CH,201812,3,2,61544,15185 -896,FR,CH,201812,3,2,886161,377943 -896,FR,CH,201812,3,2,628138,282988 -896,FR,CH,201812,3,2,473501,174272 -896,FR,CH,201812,3,2,1411,120 -896,FR,CH,201812,3,2,80657,11046 -896,FR,CH,201812,3,2,160026,33403 -896,FR,CH,201812,3,2,6674,4500 -896,FR,CH,201812,3,2,63277,8370 -896,FR,CH,201812,3,2,7362,147 -896,FR,CH,201812,3,2,89826,11904 -896,FR,CH,201812,3,2,27950,22680 -896,FR,CH,201812,4,2,57989,568 -896,FR,CH,201812,4,2,10707,1220 -896,FR,CH,201812,4,2,8969,45 -896,FR,CH,201812,4,2,1493,16 -896,FR,CH,201812,4,2,180,1 -896,FR,CH,201812,4,2,77835,170 -896,FR,CH,201812,4,2,375447,13000 -896,FR,CH,201812,4,2,63347,284 -896,FR,CH,201812,4,2,795184,1964 -896,FR,CH,201812,5,2,1682,4 -910,FR,CH,201812,0,1,29642841,7145 -910,FR,CH,201812,1,1,21988,340 -910,FR,CH,201812,1,1,34000,950 -910,FR,CH,201812,3,1,5050478,597228 -910,FR,CH,201812,3,1,455247,4600 -910,FR,CH,201812,3,1,13425,383 -910,FR,CH,201812,3,1,4368741,325374 -910,FR,CH,201812,3,1,6559,50 -910,FR,CH,201812,3,1,131083,40400 -910,FR,CH,201812,3,1,26307,1041 -910,FR,CH,201812,3,1,56332,3760 -910,FR,CH,201812,3,1,2533,2 -910,FR,CH,201812,3,1,3200,1480 -910,FR,CH,201812,4,1,358912,692 -910,FR,CH,201812,4,1,44476,116 -910,FR,CH,201812,4,1,637,0 -910,FR,CH,201812,4,1,103323,310 -910,FR,CH,201812,4,1,120064,302 -910,FR,CH,201812,5,1,59995,346 -910,FR,CH,201812,9,1,19813936,19295 -910,FR,CH,201812,0,2,24504,178 -910,FR,CH,201812,1,2,2486107,41890 -910,FR,CH,201812,1,2,11535,1421 -910,FR,CH,201812,3,2,38265448,2813185 -910,FR,CH,201812,3,2,4973,400 -910,FR,CH,201812,3,2,10399419,542740 -910,FR,CH,201812,3,2,561,24 -910,FR,CH,201812,3,2,8200,580 -910,FR,CH,201812,3,2,75309,7459 -910,FR,CH,201812,3,2,235261,18690 -910,FR,CH,201812,3,2,53907,5926 -910,FR,CH,201812,3,2,5673,228 -910,FR,CH,201812,3,2,5493773,249079 -910,FR,CH,201812,3,2,77173,7409 -910,FR,CH,201812,3,2,65,5 -910,FR,CH,201812,3,2,10228071,868691 -910,FR,CH,201812,3,2,972709,112648 -910,FR,CH,201812,3,2,693407,69268 -910,FR,CH,201812,3,2,185406,9953 -910,FR,CH,201812,3,2,49219,5404 -910,FR,CH,201812,3,2,94902,11262 -910,FR,CH,201812,3,2,210423,25219 -910,FR,CH,201812,4,2,4393434,7229 -910,FR,CH,201812,4,2,392772,916 -910,FR,CH,201812,4,2,3539133,7216 -910,FR,CH,201812,4,2,123761,81 -910,FR,CH,201812,4,2,5770,0 -910,FR,CH,201812,4,2,32157,147 -910,FR,CH,201812,4,2,385195,5790 -910,FR,CH,201812,4,2,129055,538 -910,FR,CH,201812,4,2,891701,949 -910,FR,CH,201812,5,2,27303,140 -910,FR,CH,201812,9,2,3732002,49349 -920,FR,CH,201812,0,1,2314,30 -920,FR,CH,201812,1,1,225679,15000 -920,FR,CH,201812,3,1,540157,61956 -920,FR,CH,201812,3,1,17664,361 -920,FR,CH,201812,3,1,5330,160 -920,FR,CH,201812,3,1,947,363 -920,FR,CH,201812,3,1,25663,293 -920,FR,CH,201812,3,1,5782,23 -920,FR,CH,201812,4,1,440,0 -920,FR,CH,201812,4,1,350,0 -920,FR,CH,201812,4,1,666,22 -920,FR,CH,201812,0,2,1446,9 -920,FR,CH,201812,3,2,2522678,254395 -920,FR,CH,201812,3,2,739138,67068 -920,FR,CH,201812,3,2,1814,59 -920,FR,CH,201812,3,2,50754,7006 -920,FR,CH,201812,3,2,598200,51156 -920,FR,CH,201812,3,2,25497,5911 -920,FR,CH,201812,3,2,32026,5850 -920,FR,CH,201812,3,2,65670,5840 -920,FR,CH,201812,4,2,6687,37 -920,FR,CH,201812,4,2,1512,7 -920,FR,CH,201812,4,2,5045,1130 -920,FR,CH,201812,5,2,95,0 -920,FR,CH,201812,9,2,1160995,122083 -931,FR,CH,201812,0,1,318471,627 -931,FR,CH,201812,1,1,279,6 -931,FR,CH,201812,1,1,827437,877 -931,FR,CH,201812,1,1,100718,45 -931,FR,CH,201812,1,1,195692,74 -931,FR,CH,201812,1,1,8301,488 -931,FR,CH,201812,1,1,15503,309 -931,FR,CH,201812,1,1,3,0 -931,FR,CH,201812,1,1,16,1 -931,FR,CH,201812,1,1,547,111 -931,FR,CH,201812,3,1,14081339,384819 -931,FR,CH,201812,3,1,122341,17488 -931,FR,CH,201812,3,1,6084452,61422 -931,FR,CH,201812,3,1,6926,35 -931,FR,CH,201812,3,1,134057,235 -931,FR,CH,201812,3,1,2394550,5579 -931,FR,CH,201812,3,1,621426,2740 -931,FR,CH,201812,3,1,10861510,191390 -931,FR,CH,201812,3,1,1171,15 -931,FR,CH,201812,3,1,250911,14772 -931,FR,CH,201812,3,1,2268645,256942 -931,FR,CH,201812,3,1,75060,24084 -931,FR,CH,201812,3,1,28648,1656 -931,FR,CH,201812,3,1,653058,8193 -931,FR,CH,201812,3,1,46726,230 -931,FR,CH,201812,3,1,2012,0 -931,FR,CH,201812,3,1,3262,75 -931,FR,CH,201812,3,1,87264,798 -931,FR,CH,201812,3,1,4711,36 -931,FR,CH,201812,4,1,816190,1340 -931,FR,CH,201812,4,1,869602,1002 -931,FR,CH,201812,4,1,23763,11 -931,FR,CH,201812,4,1,2305263,3731 -931,FR,CH,201812,4,1,1157524,694 -931,FR,CH,201812,4,1,143,0 -931,FR,CH,201812,4,1,4951,0 -931,FR,CH,201812,4,1,42892,400 -931,FR,CH,201812,5,1,5254,3 -931,FR,CH,201812,0,2,115925,965 -931,FR,CH,201812,1,2,372113,6270 -931,FR,CH,201812,1,2,19947,334 -931,FR,CH,201812,1,2,1545,3017 -931,FR,CH,201812,2,2,13150,1 -931,FR,CH,201812,3,2,23738024,785894 -931,FR,CH,201812,3,2,108859,2972 -931,FR,CH,201812,3,2,2855610,356519 -931,FR,CH,201812,3,2,3442,172 -931,FR,CH,201812,3,2,84580,10149 -931,FR,CH,201812,3,2,82001,8325 -931,FR,CH,201812,3,2,19486,3945 -931,FR,CH,201812,3,2,800,1 -931,FR,CH,201812,3,2,2182998,88928 -931,FR,CH,201812,3,2,4248,55 -931,FR,CH,201812,3,2,130600,34330 -931,FR,CH,201812,3,2,384791,126234 -931,FR,CH,201812,3,2,416345,33218 -931,FR,CH,201812,3,2,37100,5920 -931,FR,CH,201812,3,2,69988,807 -931,FR,CH,201812,3,2,41799,4189 -931,FR,CH,201812,3,2,68300,22603 -931,FR,CH,201812,3,2,12568,3363 -931,FR,CH,201812,3,2,937103,33071 -931,FR,CH,201812,3,2,22675,6134 -931,FR,CH,201812,4,2,2954591,4052 -931,FR,CH,201812,4,2,72931,50 -931,FR,CH,201812,4,2,644860,1407 -931,FR,CH,201812,4,2,48825,33 -931,FR,CH,201812,4,2,465,1 -931,FR,CH,201812,4,2,403850,626 -931,FR,CH,201812,4,2,243048,59 -931,FR,CH,201812,4,2,1197,32 -931,FR,CH,201812,4,2,2500,300 -931,FR,CH,201812,4,2,358103,381 -931,FR,CH,201812,4,2,2124776,53550 -931,FR,CH,201812,4,2,1165628,4719 -931,FR,CH,201812,4,2,1868616,3617 -931,FR,CH,201812,5,2,69718,203 -939,FR,CH,201812,0,1,145291,1631 -939,FR,CH,201812,1,1,526669,6853 -939,FR,CH,201812,1,1,142564,294 -939,FR,CH,201812,1,1,17658,11 -939,FR,CH,201812,1,1,73201,69 -939,FR,CH,201812,1,1,17807,215 -939,FR,CH,201812,1,1,22416,1378 -939,FR,CH,201812,1,1,31,2 -939,FR,CH,201812,2,1,3794,0 -939,FR,CH,201812,3,1,34357982,984924 -939,FR,CH,201812,3,1,85279,659 -939,FR,CH,201812,3,1,7028558,118100 -939,FR,CH,201812,3,1,244197,31918 -939,FR,CH,201812,3,1,17412,429 -939,FR,CH,201812,3,1,1110,10 -939,FR,CH,201812,3,1,12606,11 -939,FR,CH,201812,3,1,133164,2520 -939,FR,CH,201812,3,1,1692296,10166 -939,FR,CH,201812,3,1,1701388,32287 -939,FR,CH,201812,3,1,11166,359 -939,FR,CH,201812,3,1,19083211,508412 -939,FR,CH,201812,3,1,55376,1756 -939,FR,CH,201812,3,1,1115614,67359 -939,FR,CH,201812,3,1,7878931,174675 -939,FR,CH,201812,3,1,29900,640 -939,FR,CH,201812,3,1,1972343,20566 -939,FR,CH,201812,3,1,15,0 -939,FR,CH,201812,3,1,12560,9680 -939,FR,CH,201812,3,1,944,2 -939,FR,CH,201812,3,1,2311,23 -939,FR,CH,201812,3,1,34337,531 -939,FR,CH,201812,3,1,391542,18288 -939,FR,CH,201812,4,1,790950,2418 -939,FR,CH,201812,4,1,938671,2085 -939,FR,CH,201812,4,1,23074,6 -939,FR,CH,201812,4,1,75423,120 -939,FR,CH,201812,4,1,3829297,20511 -939,FR,CH,201812,4,1,32033,281 -939,FR,CH,201812,4,1,25460,160 -939,FR,CH,201812,4,1,489495,547 -939,FR,CH,201812,4,1,3836,1 -939,FR,CH,201812,4,1,7344,0 -939,FR,CH,201812,4,1,64617,407 -939,FR,CH,201812,5,1,290,0 -939,FR,CH,201812,0,2,205716,1820 -939,FR,CH,201812,1,2,80786,7492 -939,FR,CH,201812,1,2,2400,72 -939,FR,CH,201812,1,2,17194,224 -939,FR,CH,201812,3,2,41430418,2231340 -939,FR,CH,201812,3,2,11518432,3811 -939,FR,CH,201812,3,2,1806338,76384 -939,FR,CH,201812,3,2,252073,16312 -939,FR,CH,201812,3,2,103027,16137 -939,FR,CH,201812,3,2,8600,514 -939,FR,CH,201812,3,2,195789,5040 -939,FR,CH,201812,3,2,269739,16129 -939,FR,CH,201812,3,2,20900,9680 -939,FR,CH,201812,3,2,6814897,306716 -939,FR,CH,201812,3,2,778480,96044 -939,FR,CH,201812,3,2,45376758,162171 -939,FR,CH,201812,3,2,147883,1650 -939,FR,CH,201812,3,2,151097,7470 -939,FR,CH,201812,3,2,38317,2523 -939,FR,CH,201812,3,2,77832,1380 -939,FR,CH,201812,3,2,396,16 -939,FR,CH,201812,3,2,8248,326 -939,FR,CH,201812,3,2,28490,1074 -939,FR,CH,201812,3,2,1025,29 -939,FR,CH,201812,3,2,1240,58 -939,FR,CH,201812,3,2,25248,208 -939,FR,CH,201812,4,2,1831274,8812 -939,FR,CH,201812,4,2,9958,2 -939,FR,CH,201812,4,2,174371,338 -939,FR,CH,201812,4,2,257210,270 -939,FR,CH,201812,4,2,17509,18 -939,FR,CH,201812,4,2,281951,444 -939,FR,CH,201812,4,2,1115496,61642 -939,FR,CH,201812,4,2,523088,2337 -939,FR,CH,201812,4,2,493435,1011 -939,FR,CH,201812,5,2,37426,235 -941,FR,CH,201812,0,1,105,0 -941,FR,CH,201812,1,1,5974,734 -941,FR,CH,201812,3,1,1464816,663656 -941,FR,CH,201812,3,1,205266,20243 -941,FR,CH,201812,3,1,8032,589 -941,FR,CH,201812,3,1,91544,16071 -941,FR,CH,201812,3,1,114,0 -941,FR,CH,201812,3,1,5959,242 -941,FR,CH,201812,3,1,31527,9699 -941,FR,CH,201812,3,1,1165489,214805 -941,FR,CH,201812,3,1,81763,6907 -941,FR,CH,201812,3,1,114153,36245 -941,FR,CH,201812,3,1,28396,8760 -941,FR,CH,201812,3,1,30980,8594 -941,FR,CH,201812,3,1,31978,20510 -941,FR,CH,201812,4,1,4838,33 -941,FR,CH,201812,4,1,312,9 -941,FR,CH,201812,0,2,524,2 -941,FR,CH,201812,1,2,5167,266 -941,FR,CH,201812,3,2,5449332,1511032 -941,FR,CH,201812,3,2,18020,8815 -941,FR,CH,201812,3,2,47946,6039 -941,FR,CH,201812,3,2,7936,480 -941,FR,CH,201812,3,2,2631,205 -941,FR,CH,201812,3,2,5391,487 -941,FR,CH,201812,3,2,499146,227924 -941,FR,CH,201812,3,2,7960,2851 -941,FR,CH,201812,3,2,106859,51236 -941,FR,CH,201812,3,2,647357,186345 -941,FR,CH,201812,3,2,185371,51165 -941,FR,CH,201812,3,2,190386,56973 -941,FR,CH,201812,3,2,34304,6430 -941,FR,CH,201812,3,2,15708,8653 -941,FR,CH,201812,3,2,5796,3073 -941,FR,CH,201812,3,2,6858,1360 -941,FR,CH,201812,3,2,17143,3923 -941,FR,CH,201812,4,2,24,0 -949,FR,CH,201812,0,1,64390,426 -949,FR,CH,201812,1,1,109188,140 -949,FR,CH,201812,1,1,1271,21 -949,FR,CH,201812,1,1,482,8 -949,FR,CH,201812,1,1,1844,374 -949,FR,CH,201812,3,1,9099397,259457 -949,FR,CH,201812,3,1,75636,667 -949,FR,CH,201812,3,1,1148052,46331 -949,FR,CH,201812,3,1,139628,3375 -949,FR,CH,201812,3,1,3923,8 -949,FR,CH,201812,3,1,9647,3194 -949,FR,CH,201812,3,1,171384,231 -949,FR,CH,201812,3,1,42071,802 -949,FR,CH,201812,3,1,239257,14438 -949,FR,CH,201812,3,1,3237480,102802 -949,FR,CH,201812,3,1,423,16 -949,FR,CH,201812,3,1,255927,15084 -949,FR,CH,201812,3,1,257675,20274 -949,FR,CH,201812,3,1,13903,1606 -949,FR,CH,201812,3,1,717325,42075 -949,FR,CH,201812,3,1,1626,20 -949,FR,CH,201812,3,1,524,200 -949,FR,CH,201812,3,1,443,7 -949,FR,CH,201812,3,1,326,20 -949,FR,CH,201812,4,1,186448,967 -949,FR,CH,201812,4,1,248241,441 -949,FR,CH,201812,4,1,137,0 -949,FR,CH,201812,4,1,323,2 -949,FR,CH,201812,4,1,524871,2530 -949,FR,CH,201812,4,1,365733,568 -949,FR,CH,201812,4,1,788,2 -949,FR,CH,201812,4,1,3790,9 -949,FR,CH,201812,5,1,2940,5 -949,FR,CH,201812,0,2,13580,74 -949,FR,CH,201812,1,2,35866,3059 -949,FR,CH,201812,1,2,16236,431 -949,FR,CH,201812,1,2,12355,20 -949,FR,CH,201812,3,2,11304889,901347 -949,FR,CH,201812,3,2,13518,785 -949,FR,CH,201812,3,2,744999,100687 -949,FR,CH,201812,3,2,77412,3409 -949,FR,CH,201812,3,2,1800,652 -949,FR,CH,201812,3,2,34796,671 -949,FR,CH,201812,3,2,53372,4128 -949,FR,CH,201812,3,2,873914,62321 -949,FR,CH,201812,3,2,2769,355 -949,FR,CH,201812,3,2,142790,11670 -949,FR,CH,201812,3,2,359032,156199 -949,FR,CH,201812,3,2,55604,15458 -949,FR,CH,201812,3,2,5675,655 -949,FR,CH,201812,3,2,32545,7730 -949,FR,CH,201812,3,2,21864,1026 -949,FR,CH,201812,3,2,7346,482 -949,FR,CH,201812,3,2,21100,1120 -949,FR,CH,201812,3,2,1130,70 -949,FR,CH,201812,3,2,1635,34 -949,FR,CH,201812,4,2,1201198,2018 -949,FR,CH,201812,4,2,71997,155 -949,FR,CH,201812,4,2,3467,51 -949,FR,CH,201812,4,2,63382,11 -949,FR,CH,201812,4,2,161509,201 -949,FR,CH,201812,4,2,475456,30090 -949,FR,CH,201812,4,2,216995,778 -949,FR,CH,201812,4,2,488004,1504 -949,FR,CH,201812,5,2,26947,178 -951,FR,CH,201812,0,1,408,0 -951,FR,CH,201812,3,1,180598,1770939 -951,FR,CH,201812,3,1,4192,132 -951,FR,CH,201812,3,1,227210,352116 -951,FR,CH,201812,3,1,3616,12160 -951,FR,CH,201812,3,1,2936,681 -951,FR,CH,201812,3,1,206,0 -951,FR,CH,201812,4,1,73921,7 -951,FR,CH,201812,4,1,14605,63 -951,FR,CH,201812,4,1,8670,1 -951,FR,CH,201812,0,2,135,6 -951,FR,CH,201812,1,2,45,6 -951,FR,CH,201812,3,2,2716200,4983962 -951,FR,CH,201812,3,2,15983,903 -951,FR,CH,201812,3,2,198367,136086 -951,FR,CH,201812,3,2,66591,9589 -951,FR,CH,201812,3,2,2459,130 -951,FR,CH,201812,3,2,45627,44385 -951,FR,CH,201812,3,2,2815,216 -951,FR,CH,201812,4,2,1198,54 -951,FR,CH,201812,4,2,131,0 -951,FR,CH,201812,4,2,10788,38 -951,FR,CH,201812,5,2,1050,0 -952,FR,CH,201812,0,1,93488,85434 -952,FR,CH,201812,1,1,37500,40 -952,FR,CH,201812,1,1,1482,315 -952,FR,CH,201812,1,1,175,9 -952,FR,CH,201812,3,1,2811220,1396486 -952,FR,CH,201812,3,1,94802,1257 -952,FR,CH,201812,3,1,21756,13617 -952,FR,CH,201812,3,1,7107,17846 -952,FR,CH,201812,3,1,14105,15885 -952,FR,CH,201812,3,1,20323,203 -952,FR,CH,201812,3,1,17480,25910 -952,FR,CH,201812,3,1,148363,165017 -952,FR,CH,201812,3,1,5567,15535 -952,FR,CH,201812,3,1,109695,272419 -952,FR,CH,201812,3,1,167272,334652 -952,FR,CH,201812,3,1,43207,71755 -952,FR,CH,201812,3,1,2965,133 -952,FR,CH,201812,3,1,645,39 -952,FR,CH,201812,4,1,351101,169 -952,FR,CH,201812,4,1,13074,25 -952,FR,CH,201812,4,1,124803,102 -952,FR,CH,201812,4,1,15960,6 -952,FR,CH,201812,5,1,710,0 -952,FR,CH,201812,0,2,6448,379 -952,FR,CH,201812,3,2,3854262,1358931 -952,FR,CH,201812,3,2,180720,39834 -952,FR,CH,201812,3,2,260063,36656 -952,FR,CH,201812,3,2,25900,3755 -952,FR,CH,201812,3,2,117391,47690 -952,FR,CH,201812,3,2,496045,77481 -952,FR,CH,201812,3,2,12411,15403 -952,FR,CH,201812,3,2,1705751,107391 -952,FR,CH,201812,3,2,386380,137801 -952,FR,CH,201812,3,2,364758,508128 -952,FR,CH,201812,3,2,17348,35648 -952,FR,CH,201812,3,2,22356,20018 -952,FR,CH,201812,4,2,1400851,164 -952,FR,CH,201812,4,2,3427,104 -952,FR,CH,201812,4,2,15318223,7 -952,FR,CH,201812,4,2,27356,0 -952,FR,CH,201812,4,2,75036,183 -952,FR,CH,201812,4,2,92932,3090 -952,FR,CH,201812,4,2,53334,441 -952,FR,CH,201812,4,2,77513,546 -952,FR,CH,201812,5,2,246,7 -961,FR,CH,201812,0,1,4246,52 -961,FR,CH,201812,3,1,412441,1070 -961,FR,CH,201812,3,1,4279,9 -961,FR,CH,201812,3,1,14192,94 -961,FR,CH,201812,3,1,42631,69 -961,FR,CH,201812,3,1,7219,16 -961,FR,CH,201812,3,1,16109,62 -961,FR,CH,201812,3,1,1865,1 -961,FR,CH,201812,3,1,2455,2 -961,FR,CH,201812,4,1,230,20 -961,FR,CH,201812,4,1,105204,1347 -961,FR,CH,201812,4,1,2959,17 -961,FR,CH,201812,0,2,341,7 -961,FR,CH,201812,3,2,580230,6343 -961,FR,CH,201812,3,2,221,14 -961,FR,CH,201812,3,2,65217,1350 -961,FR,CH,201812,3,2,5953,13 -961,FR,CH,201812,3,2,57,0 -961,FR,CH,201812,3,2,216168,1117 -961,FR,CH,201812,3,2,107769,1090 -961,FR,CH,201812,3,2,630,1 -961,FR,CH,201812,4,2,3859,41 -961,FR,CH,201812,4,2,4185,8 -961,FR,CH,201812,4,2,688701,471 -961,FR,CH,201812,4,2,49297,2630 -961,FR,CH,201812,4,2,14334,67 -961,FR,CH,201812,4,2,23681,295 -961,FR,CH,201812,5,2,30601,199 -962,FR,CH,201812,0,1,3710,156 -962,FR,CH,201812,1,1,670,41 -962,FR,CH,201812,1,1,700,47 -962,FR,CH,201812,1,1,1742,0 -962,FR,CH,201812,3,1,5668561,1280877 -962,FR,CH,201812,3,1,4491,83 -962,FR,CH,201812,3,1,231626,14026 -962,FR,CH,201812,3,1,92531,1020 -962,FR,CH,201812,3,1,5496,5972 -962,FR,CH,201812,3,1,88,0 -962,FR,CH,201812,3,1,17953,15256 -962,FR,CH,201812,3,1,144093,668 -962,FR,CH,201812,3,1,5745,5973 -962,FR,CH,201812,3,1,284398,16521 -962,FR,CH,201812,3,1,19196,4535 -962,FR,CH,201812,3,1,107922,79351 -962,FR,CH,201812,3,1,311423,197038 -962,FR,CH,201812,3,1,61781,40318 -962,FR,CH,201812,3,1,1735,114 -962,FR,CH,201812,4,1,11204,277 -962,FR,CH,201812,4,1,277736,619 -962,FR,CH,201812,4,1,59564,98 -962,FR,CH,201812,4,1,735501,2804 -962,FR,CH,201812,4,1,154015,1338 -962,FR,CH,201812,0,2,4640,75 -962,FR,CH,201812,1,2,15238,989 -962,FR,CH,201812,1,2,20033,3126 -962,FR,CH,201812,1,2,24264,6336 -962,FR,CH,201812,3,2,10878469,1392229 -962,FR,CH,201812,3,2,775436,105401 -962,FR,CH,201812,3,2,79009,20397 -962,FR,CH,201812,3,2,3100,142 -962,FR,CH,201812,3,2,1000,4 -962,FR,CH,201812,3,2,22043,2268 -962,FR,CH,201812,3,2,578,210 -962,FR,CH,201812,3,2,49545,5340 -962,FR,CH,201812,3,2,1588867,116436 -962,FR,CH,201812,3,2,172066,51069 -962,FR,CH,201812,3,2,171489,17476 -962,FR,CH,201812,3,2,2066,31 -962,FR,CH,201812,3,2,54827,1496 -962,FR,CH,201812,4,2,118309,1542 -962,FR,CH,201812,4,2,6701,19 -962,FR,CH,201812,4,2,182,2 -962,FR,CH,201812,4,2,77696,130 -962,FR,CH,201812,4,2,36558,3340 -962,FR,CH,201812,4,2,92592,1295 -962,FR,CH,201812,4,2,68476,681 -962,FR,CH,201812,5,2,13451,136 -963,FR,CH,201812,0,1,33350,423 -963,FR,CH,201812,1,1,32178,56 -963,FR,CH,201812,1,1,1549,3 -963,FR,CH,201812,1,1,28597,72 -963,FR,CH,201812,1,1,279564,502 -963,FR,CH,201812,1,1,26032,45 -963,FR,CH,201812,1,1,257980,620 -963,FR,CH,201812,1,1,4926,8 -963,FR,CH,201812,1,1,11337,22 -963,FR,CH,201812,1,1,2658,5 -963,FR,CH,201812,1,1,335,50 -963,FR,CH,201812,3,1,4646341,34977 -963,FR,CH,201812,3,1,2311224,6791 -963,FR,CH,201812,3,1,22851918,85845 -963,FR,CH,201812,3,1,72403034,235576 -963,FR,CH,201812,3,1,191682,887 -963,FR,CH,201812,3,1,17368337,81018 -963,FR,CH,201812,3,1,113102,6107 -963,FR,CH,201812,3,1,39578561,137717 -963,FR,CH,201812,3,1,6546268,23948 -963,FR,CH,201812,3,1,1316418,6835 -963,FR,CH,201812,3,1,3688592,12607 -963,FR,CH,201812,3,1,28706,573 -963,FR,CH,201812,4,1,18985,150 -963,FR,CH,201812,4,1,46690,265 -963,FR,CH,201812,4,1,29,1 -963,FR,CH,201812,4,1,354900,700 -963,FR,CH,201812,4,1,12008,22 -963,FR,CH,201812,4,1,30,5 -963,FR,CH,201812,5,1,1292,4 -963,FR,CH,201812,0,2,87205,434 -963,FR,CH,201812,1,2,6220,14 -963,FR,CH,201812,3,2,31175066,398942 -963,FR,CH,201812,3,2,2228894,37272 -963,FR,CH,201812,3,2,10430178,17073 -963,FR,CH,201812,3,2,801170,2309 -963,FR,CH,201812,3,2,51620,868 -963,FR,CH,201812,3,2,16280,219 -963,FR,CH,201812,3,2,13600,56 -963,FR,CH,201812,3,2,8024509,47198 -963,FR,CH,201812,3,2,197025,7378 -963,FR,CH,201812,3,2,181364,7738 -963,FR,CH,201812,3,2,243210,9124 -963,FR,CH,201812,3,2,74858,232 -963,FR,CH,201812,3,2,578802,6288 -963,FR,CH,201812,4,2,516452,4230 -963,FR,CH,201812,4,2,218087,317 -963,FR,CH,201812,4,2,88059,38 -963,FR,CH,201812,4,2,1977,7 -963,FR,CH,201812,4,2,33265,368 -963,FR,CH,201812,4,2,731054,39590 -963,FR,CH,201812,4,2,695258,2954 -963,FR,CH,201812,4,2,1139073,5688 -963,FR,CH,201812,5,2,60749,707 -971,FR,CH,201812,0,1,1226,3 -971,FR,CH,201812,1,1,1134,27 -971,FR,CH,201812,1,1,2432,109 -971,FR,CH,201812,1,1,1,0 -971,FR,CH,201812,3,1,436966,154216 -971,FR,CH,201812,3,1,161478,6621 -971,FR,CH,201812,3,1,2891,5 -971,FR,CH,201812,3,1,10546,74 -971,FR,CH,201812,3,1,282858,84781 -971,FR,CH,201812,3,1,26895,644 -971,FR,CH,201812,3,1,5717,209 -971,FR,CH,201812,3,1,3858,77 -971,FR,CH,201812,4,1,5950,9 -971,FR,CH,201812,4,1,7889,18 -971,FR,CH,201812,4,1,2320,0 -971,FR,CH,201812,4,1,155742,1118 -971,FR,CH,201812,4,1,1523,3 -971,FR,CH,201812,0,2,883,3 -971,FR,CH,201812,1,2,20,1 -971,FR,CH,201812,1,2,4386,0 -971,FR,CH,201812,3,2,2751262,288181 -971,FR,CH,201812,3,2,111397,48533 -971,FR,CH,201812,3,2,938116,123116 -971,FR,CH,201812,3,2,79375,3401 -971,FR,CH,201812,3,2,48541,23296 -971,FR,CH,201812,3,2,51501,14237 -971,FR,CH,201812,3,2,17530,312 -971,FR,CH,201812,3,2,317517,63620 -971,FR,CH,201812,3,2,129302,1787 -971,FR,CH,201812,3,2,6575,282 -971,FR,CH,201812,4,2,153992,213 -971,FR,CH,201812,4,2,31311,45 -971,FR,CH,201812,4,2,4568,6 -971,FR,CH,201812,4,2,810,1 -971,FR,CH,201812,4,2,9099,11 -971,FR,CH,201812,4,2,33262,1600 -971,FR,CH,201812,4,2,24574,213 -971,FR,CH,201812,4,2,8071,23 -971,FR,CH,201812,5,2,1113,17 -972,FR,CH,201812,1,1,232,29 -972,FR,CH,201812,3,1,151331,86504 -972,FR,CH,201812,3,1,80,13 -972,FR,CH,201812,3,1,50709,33023 -972,FR,CH,201812,3,1,393,48 -972,FR,CH,201812,3,1,594,7 -972,FR,CH,201812,3,1,23948,10215 -972,FR,CH,201812,3,1,92004,33721 -972,FR,CH,201812,3,1,14531,24380 -972,FR,CH,201812,3,1,23392,47424 -972,FR,CH,201812,3,1,1803,15 -972,FR,CH,201812,4,1,319,3 -972,FR,CH,201812,4,1,11526,510 -972,FR,CH,201812,0,2,65,1 -972,FR,CH,201812,1,2,61531,15762 -972,FR,CH,201812,3,2,3127060,4262559 -972,FR,CH,201812,3,2,26137,32698 -972,FR,CH,201812,3,2,62178,54028 -972,FR,CH,201812,3,2,17757,23428 -972,FR,CH,201812,3,2,308277,565239 -972,FR,CH,201812,3,2,1577,926 -972,FR,CH,201812,3,2,88643,44534 -972,FR,CH,201812,3,2,124582,102719 -972,FR,CH,201812,3,2,10599,24046 -972,FR,CH,201812,3,2,179,17 -972,FR,CH,201812,3,2,7000,2007 -972,FR,CH,201812,3,2,48488,2083 -972,FR,CH,201812,4,2,1010,63 -972,FR,CH,201812,4,2,6164,140 -972,FR,CH,201812,4,2,568,12 -972,FR,CH,201812,5,2,386,0 -973,FR,CH,201812,0,1,7712,100 -973,FR,CH,201812,1,1,42755,6570 -973,FR,CH,201812,1,1,73031,46868 -973,FR,CH,201812,1,1,265,158 -973,FR,CH,201812,1,1,1406,579 -973,FR,CH,201812,3,1,1865669,819770 -973,FR,CH,201812,3,1,2921,687 -973,FR,CH,201812,3,1,77630,55915 -973,FR,CH,201812,3,1,47368,5525 -973,FR,CH,201812,3,1,56951,10299 -973,FR,CH,201812,3,1,2970,443 -973,FR,CH,201812,3,1,5,0 -973,FR,CH,201812,3,1,563278,335587 -973,FR,CH,201812,3,1,28660,15298 -973,FR,CH,201812,3,1,141172,111040 -973,FR,CH,201812,3,1,5717,124 -973,FR,CH,201812,3,1,1907,111 -973,FR,CH,201812,4,1,93,10 -973,FR,CH,201812,4,1,423,35 -973,FR,CH,201812,4,1,6744,95 -973,FR,CH,201812,4,1,273,17 -973,FR,CH,201812,0,2,4214,766 -973,FR,CH,201812,1,2,12243,4301 -973,FR,CH,201812,3,2,6861087,2909412 -973,FR,CH,201812,3,2,82315,29535 -973,FR,CH,201812,3,2,25437,22256 -973,FR,CH,201812,3,2,29,0 -973,FR,CH,201812,3,2,150992,84902 -973,FR,CH,201812,3,2,25788,17779 -973,FR,CH,201812,3,2,258363,60706 -973,FR,CH,201812,3,2,8147,5012 -973,FR,CH,201812,3,2,185486,74739 -973,FR,CH,201812,3,2,1082782,679069 -973,FR,CH,201812,3,2,36073,16877 -973,FR,CH,201812,3,2,201674,95513 -973,FR,CH,201812,3,2,58525,37108 -973,FR,CH,201812,3,2,133934,32563 -973,FR,CH,201812,4,2,10390,434 -973,FR,CH,201812,4,2,54853,930 -973,FR,CH,201812,4,2,6103,127 -973,FR,CH,201812,4,2,10450,207 -973,FR,CH,201812,5,2,1570,12 -974,FR,CH,201812,0,1,213033,782 -974,FR,CH,201812,1,1,48520,90 -974,FR,CH,201812,1,1,124,16 -974,FR,CH,201812,3,1,2255620,104768 -974,FR,CH,201812,3,1,4960,89 -974,FR,CH,201812,3,1,154128,8775 -974,FR,CH,201812,3,1,23037,1878 -974,FR,CH,201812,3,1,29327,836 -974,FR,CH,201812,3,1,292676,20310 -974,FR,CH,201812,3,1,662731,103368 -974,FR,CH,201812,3,1,13568,10246 -974,FR,CH,201812,3,1,10841,1197 -974,FR,CH,201812,3,1,154,7 -974,FR,CH,201812,3,1,100,9 -974,FR,CH,201812,4,1,49882,63 -974,FR,CH,201812,4,1,9743,280 -974,FR,CH,201812,4,1,97957,1250 -974,FR,CH,201812,4,1,3867,72 -974,FR,CH,201812,4,1,28390,1286 -974,FR,CH,201812,5,1,59605,3133 -974,FR,CH,201812,0,2,62647,1223 -974,FR,CH,201812,1,2,3959,311 -974,FR,CH,201812,1,2,40,0 -974,FR,CH,201812,2,2,31454,2525 -974,FR,CH,201812,3,2,9368668,815149 -974,FR,CH,201812,3,2,270552,9443 -974,FR,CH,201812,3,2,174,4 -974,FR,CH,201812,3,2,5,25 -974,FR,CH,201812,3,2,1128,21 -974,FR,CH,201812,3,2,439771,35346 -974,FR,CH,201812,3,2,549905,35049 -974,FR,CH,201812,3,2,2140699,41045 -974,FR,CH,201812,3,2,84701,17948 -974,FR,CH,201812,3,2,200965,15629 -974,FR,CH,201812,3,2,46,0 -974,FR,CH,201812,3,2,94800,5518 -974,FR,CH,201812,3,2,179268,7302 -974,FR,CH,201812,3,2,1225,293 -974,FR,CH,201812,4,2,57708,1015 -974,FR,CH,201812,4,2,15004,68 -974,FR,CH,201812,4,2,2285,257 -974,FR,CH,201812,4,2,233000,23 -974,FR,CH,201812,4,2,3952,9 -974,FR,CH,201812,4,2,40065,5720 -974,FR,CH,201812,4,2,81552,1292 -974,FR,CH,201812,4,2,88136,783 -974,FR,CH,201812,5,2,32874,1961 -975,FR,CH,201812,0,1,89765,655 -975,FR,CH,201812,1,1,8894,467 -975,FR,CH,201812,3,1,887859,88503 -975,FR,CH,201812,3,1,106001,5010 -975,FR,CH,201812,3,1,17852,306 -975,FR,CH,201812,3,1,4634,251 -975,FR,CH,201812,3,1,6800,250 -975,FR,CH,201812,3,1,12448,269 -975,FR,CH,201812,3,1,276,130 -975,FR,CH,201812,3,1,741690,37143 -975,FR,CH,201812,3,1,3863,283 -975,FR,CH,201812,3,1,815821,6876 -975,FR,CH,201812,3,1,1885,60 -975,FR,CH,201812,3,1,700,75 -975,FR,CH,201812,3,1,1294,66 -975,FR,CH,201812,4,1,2202,130 -975,FR,CH,201812,4,1,1719,87 -975,FR,CH,201812,4,1,23966,108 -975,FR,CH,201812,4,1,48250,84 -975,FR,CH,201812,0,2,6829,245 -975,FR,CH,201812,1,2,403,78 -975,FR,CH,201812,3,2,13289554,1662470 -975,FR,CH,201812,3,2,22042,4061 -975,FR,CH,201812,3,2,347284,64167 -975,FR,CH,201812,3,2,14690,13173 -975,FR,CH,201812,3,2,187998,1773 -975,FR,CH,201812,3,2,70088,4669 -975,FR,CH,201812,3,2,5880,506 -975,FR,CH,201812,3,2,58303,8919 -975,FR,CH,201812,3,2,41179,27120 -975,FR,CH,201812,3,2,1166117,99588 -975,FR,CH,201812,3,2,27493,5576 -975,FR,CH,201812,3,2,768323,147570 -975,FR,CH,201812,3,2,689614,60606 -975,FR,CH,201812,3,2,2992,42 -975,FR,CH,201812,3,2,8154,10401 -975,FR,CH,201812,3,2,71585,12207 -975,FR,CH,201812,4,2,4376,262 -975,FR,CH,201812,4,2,6077,3 -975,FR,CH,201812,4,2,12017,58 -975,FR,CH,201812,4,2,7953,3 -975,FR,CH,201812,4,2,18160,1460 -975,FR,CH,201812,4,2,531000,916 -975,FR,CH,201812,4,2,12434,112 -975,FR,CH,201812,5,2,3498,49 -976,FR,CH,201812,0,1,6212,93 -976,FR,CH,201812,3,1,146114,180398 -976,FR,CH,201812,3,1,19492,324 -976,FR,CH,201812,3,1,32962,9179 -976,FR,CH,201812,3,1,20554,375 -976,FR,CH,201812,3,1,508,1320 -976,FR,CH,201812,3,1,2262,52 -976,FR,CH,201812,3,1,10304,237 -976,FR,CH,201812,3,1,611,90 -976,FR,CH,201812,3,1,209112,87428 -976,FR,CH,201812,3,1,56961,106339 -976,FR,CH,201812,3,1,6230,25000 -976,FR,CH,201812,3,1,47556,22602 -976,FR,CH,201812,3,1,793,1830 -976,FR,CH,201812,3,1,49,4 -976,FR,CH,201812,4,1,5953,55 -976,FR,CH,201812,4,1,103,1 -976,FR,CH,201812,4,1,4717,84 -976,FR,CH,201812,4,1,792,5 -976,FR,CH,201812,0,2,142,2 -976,FR,CH,201812,1,2,137,20 -976,FR,CH,201812,1,2,5280,48000 -976,FR,CH,201812,3,2,5628889,4145036 -976,FR,CH,201812,3,2,73864,45581 -976,FR,CH,201812,3,2,5000,290 -976,FR,CH,201812,3,2,1200,4321 -976,FR,CH,201812,3,2,779557,3132655 -976,FR,CH,201812,3,2,132168,483083 -976,FR,CH,201812,3,2,405605,340794 -976,FR,CH,201812,3,2,7036,24607 -976,FR,CH,201812,3,2,7036,24607 -976,FR,CH,201812,3,2,8275,10141 -976,FR,CH,201812,3,2,75332,269067 -976,FR,CH,201812,3,2,11158,26027 -976,FR,CH,201812,3,2,81390,308988 -976,FR,CH,201812,3,2,13984,49214 -976,FR,CH,201812,3,2,49925,5123 -976,FR,CH,201812,3,2,6546,24068 -976,FR,CH,201812,3,2,415,9 -976,FR,CH,201812,4,2,1672,7 -976,FR,CH,201812,4,2,37496,1280 -976,FR,CH,201812,4,2,11485,65 -976,FR,CH,201812,4,2,29456,153 -976,FR,CH,201812,5,2,97,12 -979,FR,CH,201812,0,1,9573646,8122 -979,FR,CH,201812,1,1,400678,1334 -979,FR,CH,201812,1,1,15353,62 -979,FR,CH,201812,1,1,134961,165 -979,FR,CH,201812,1,1,306,8 -979,FR,CH,201812,3,1,70458782,427339 -979,FR,CH,201812,3,1,366370,1513 -979,FR,CH,201812,3,1,21546277,58001 -979,FR,CH,201812,3,1,2309483,7535 -979,FR,CH,201812,3,1,913,3 -979,FR,CH,201812,3,1,182759,368 -979,FR,CH,201812,3,1,7684,19 -979,FR,CH,201812,3,1,2701330,7747 -979,FR,CH,201812,3,1,18736,7843 -979,FR,CH,201812,3,1,935255,3449 -979,FR,CH,201812,3,1,313165303,231780 -979,FR,CH,201812,3,1,121644,34429 -979,FR,CH,201812,3,1,3836179,49314 -979,FR,CH,201812,3,1,5026,5 -979,FR,CH,201812,3,1,887234,11670 -979,FR,CH,201812,3,1,403858,1654 -979,FR,CH,201812,3,1,76929,62 -979,FR,CH,201812,3,1,85955,260 -979,FR,CH,201812,3,1,26469,0 -979,FR,CH,201812,3,1,3738,4 -979,FR,CH,201812,3,1,9699,633 -979,FR,CH,201812,3,1,5645,528 -979,FR,CH,201812,4,1,10528832,1595 -979,FR,CH,201812,4,1,2099143,1411 -979,FR,CH,201812,4,1,339,1 -979,FR,CH,201812,4,1,4054,0 -979,FR,CH,201812,4,1,1566,0 -979,FR,CH,201812,4,1,89947,30 -979,FR,CH,201812,4,1,4466,29 -979,FR,CH,201812,4,1,22692,14 -979,FR,CH,201812,4,1,7357670,4948 -979,FR,CH,201812,4,1,48193,13 -979,FR,CH,201812,4,1,1007508,743 -979,FR,CH,201812,4,1,233101,13 -979,FR,CH,201812,4,1,10219,4 -979,FR,CH,201812,4,1,1763,0 -979,FR,CH,201812,4,1,42081,478 -979,FR,CH,201812,5,1,75438,82 -979,FR,CH,201812,0,2,164745,1059 -979,FR,CH,201812,1,2,201940,1144 -979,FR,CH,201812,1,2,1924,60 -979,FR,CH,201812,1,2,243766,12541 -979,FR,CH,201812,3,2,100272209,1734869 -979,FR,CH,201812,3,2,87654,8898 -979,FR,CH,201812,3,2,2513288,117697 -979,FR,CH,201812,3,2,1753896,449 -979,FR,CH,201812,3,2,23750,890 -979,FR,CH,201812,3,2,163587,784 -979,FR,CH,201812,3,2,330494,40658 -979,FR,CH,201812,3,2,115310,9406 -979,FR,CH,201812,3,2,40757,760 -979,FR,CH,201812,3,2,41400,12386 -979,FR,CH,201812,3,2,38400538,314982 -979,FR,CH,201812,3,2,1483,114 -979,FR,CH,201812,3,2,14200,3872 -979,FR,CH,201812,3,2,553702,51246 -979,FR,CH,201812,3,2,1820852,124774 -979,FR,CH,201812,3,2,750,1 -979,FR,CH,201812,3,2,30800,3426 -979,FR,CH,201812,3,2,165276,12046 -979,FR,CH,201812,3,2,198508,28566 -979,FR,CH,201812,3,2,146998,8185 -979,FR,CH,201812,3,2,18674,153 -979,FR,CH,201812,3,2,1800,34 -979,FR,CH,201812,3,2,4239,295 -979,FR,CH,201812,3,2,105136,5519 -979,FR,CH,201812,4,2,37595336,7233 -979,FR,CH,201812,4,2,1340,27 -979,FR,CH,201812,4,2,391439,1239 -979,FR,CH,201812,4,2,23186,8 -979,FR,CH,201812,4,2,78463765,77 -979,FR,CH,201812,4,2,3070,931 -979,FR,CH,201812,4,2,108484,60 -979,FR,CH,201812,4,2,1684796,97 -979,FR,CH,201812,4,2,71260,10 -979,FR,CH,201812,4,2,1094964,1449 -979,FR,CH,201812,4,2,2627300,74383 -979,FR,CH,201812,4,2,1566283,4984 -979,FR,CH,201812,4,2,4766211,10279 -979,FR,CH,201812,5,2,170565,832 -994,FR,CH,201812,3,1,5946762,168 -994,FR,CH,201812,3,1,33845,1 -994,FR,CH,201812,3,1,1941977,69 -994,FR,CH,201812,3,1,881020,35 -994,FR,CH,201812,4,1,4333,1 -994,FR,CH,201812,4,1,12904,0 -994,FR,CH,201812,4,1,26252,0 -994,FR,CH,201812,3,2,19522560,1068 -994,FR,CH,201812,3,2,821575,30 -994,FR,CH,201812,4,2,3186,8 -994,FR,CH,201812,4,2,437,0 -994,FR,CH,201812,4,2,17308,0 -994,FR,CH,201812,4,2,10408,2 -999,FR,CH,201812,0,1,32924,6446665 -999,FR,CH,201812,3,1,657881,0 -999,FR,CH,201812,3,1,90,0 -999,FR,CH,201812,3,1,854117,0 -999,FR,CH,201812,3,1,10,0 -999,FR,CH,201812,4,1,952,0 -999,FR,CH,201812,4,1,516,0 -999,FR,CH,201812,4,1,9975,48 -999,FR,CH,201812,5,1,1805,0 -999,FR,CH,201812,7,1,21508308,0 -999,FR,CH,201812,0,2,65074,49128986 -999,FR,CH,201812,1,2,56599,40020 -999,FR,CH,201812,1,2,11452,24100 -999,FR,CH,201812,1,2,17245,19200 -999,FR,CH,201812,1,2,6491,443 -999,FR,CH,201812,1,2,105630,0 -999,FR,CH,201812,2,2,8900407,12399280 -999,FR,CH,201812,2,2,148587,62800 -999,FR,CH,201812,3,2,10146912,3948735 -999,FR,CH,201812,3,2,22538,11080 -999,FR,CH,201812,3,2,264340,185043 -999,FR,CH,201812,3,2,5593,0 -999,FR,CH,201812,3,2,12147,21644 -999,FR,CH,201812,3,2,69247,50340 -999,FR,CH,201812,3,2,49002,21663 -999,FR,CH,201812,3,2,1597067,848323 -999,FR,CH,201812,3,2,998656,407638 -999,FR,CH,201812,3,2,638413,373135 -999,FR,CH,201812,3,2,7559,1224 -999,FR,CH,201812,3,2,132330,82445 -999,FR,CH,201812,3,2,93983,63741 -999,FR,CH,201812,3,2,105494,43587 -999,FR,CH,201812,3,2,34660,35000 -999,FR,CH,201812,3,2,47520,24000 -999,FR,CH,201812,3,2,7742,8800 -999,FR,CH,201812,3,2,15708,17600 -999,FR,CH,201812,3,2,91361,22261 -999,FR,CH,201812,3,2,112270,55540 -999,FR,CH,201812,3,2,28070,16600 -999,FR,CH,201812,4,2,143629,2219 -999,FR,CH,201812,4,2,13,0 -999,FR,CH,201812,4,2,33500,7 -999,FR,CH,201812,4,2,19722,10 -999,FR,CH,201812,4,2,129676,33 -999,FR,CH,201812,4,2,312745,5250 -999,FR,CH,201812,4,2,15417,82 -999,FR,CH,201812,4,2,235655,519 -999,FR,CH,201812,5,2,11659,67 -999,FR,CH,201812,7,2,37568670,0 -910,FR,FO,201812,3,2,2910,12 -931,FR,FO,201812,0,2,2379,6 -931,FR,FO,201812,3,2,4,3 -952,FR,FO,201812,3,2,1376,54 -963,FR,FO,201812,4,1,170,1 -963,FR,FO,201812,0,2,125,1 -963,FR,FO,201812,4,2,4569,25 -979,FR,FO,201812,5,1,1147,7 -979,FR,FO,201812,0,2,1052,0 -979,FR,FO,201812,3,2,212,0 -979,FR,FO,201812,4,2,15000,12 -020,FR,AD,201812,3,2,11,12 -031,FR,AD,201812,3,2,231,15 -035,FR,AD,201812,3,2,58,15 -035,FR,AD,201812,3,2,10218,2154 -039,FR,AD,201812,3,2,633,186 -039,FR,AD,201812,3,2,14400,8446 -039,FR,AD,201812,3,2,53676,20405 -042,FR,AD,201812,3,2,37,2 -056,FR,AD,201812,3,2,5009,25000 -057,FR,AD,201812,3,2,84,9 -057,FR,AD,201812,3,2,491,645 -099,FR,AD,201812,3,1,902,50 -099,FR,AD,201812,3,2,591,37 -099,FR,AD,201812,3,2,2758,5155 -112,FR,AD,201812,3,2,10025,21692 -121,FR,AD,201812,3,1,10681,120 -121,FR,AD,201812,0,2,11487,67 -121,FR,AD,201812,3,2,95070,3829 -121,FR,AD,201812,3,2,245,45 -121,FR,AD,201812,3,2,561228,29859 -121,FR,AD,201812,4,2,1714,16 -122,FR,AD,201812,3,2,37243,17227 -122,FR,AD,201812,3,2,17577,7105 -125,FR,AD,201812,1,2,3832,2035 -125,FR,AD,201812,1,2,33967,6336 -125,FR,AD,201812,3,2,20778,14822 -125,FR,AD,201812,3,2,38315,14340 -125,FR,AD,201812,3,2,806838,146165 -128,FR,AD,201812,3,2,42677,75718 -131,FR,AD,201812,3,2,80895,8310 -132,FR,AD,201812,0,2,25,4 -132,FR,AD,201812,1,2,2268,263 -132,FR,AD,201812,3,2,12220,1522 -132,FR,AD,201812,3,2,54164,6483 -133,FR,AD,201812,3,2,1306,42 -136,FR,AD,201812,3,2,2051,121 -136,FR,AD,201812,3,2,1089,273 -136,FR,AD,201812,3,2,57516,15952 -139,FR,AD,201812,0,2,50,9 -139,FR,AD,201812,3,2,11502,3394 -139,FR,AD,201812,3,2,571,144 -139,FR,AD,201812,3,2,971152,365615 -141,FR,AD,201812,3,2,313459,36185 -141,FR,AD,201812,3,2,137216,17563 -142,FR,AD,201812,3,2,1249,351 -142,FR,AD,201812,3,2,128838,15419 -143,FR,AD,201812,3,2,255099,120326 -144,FR,AD,201812,3,2,550,81 -144,FR,AD,201812,3,2,262849,35996 -146,FR,AD,201812,3,2,6614,3245 -147,FR,AD,201812,3,2,21701,2146 -147,FR,AD,201812,3,2,149134,13077 -148,FR,AD,201812,3,2,607,179 -148,FR,AD,201812,3,2,49936,1863 -161,FR,AD,201812,3,2,148,138 -161,FR,AD,201812,3,2,6756,10390 -163,FR,AD,201812,3,2,9081,2653 -163,FR,AD,201812,3,2,8290,7456 -163,FR,AD,201812,3,2,44627,5575 -164,FR,AD,201812,3,2,10919,3930 -164,FR,AD,201812,3,2,2989,597 -166,FR,AD,201812,3,2,284,62 -179,FR,AD,201812,3,2,4415,2177 -179,FR,AD,201812,3,2,59609,30794 -182,FR,AD,201812,3,2,572,139 -224,FR,AD,201812,3,2,808,2049 -321,FR,AD,201812,3,2,545545,912790 -323,FR,AD,201812,3,2,6056,3412 -325,FR,AD,201812,3,2,3745900,6292142 -330,FR,AD,201812,3,2,113866,187780 -330,FR,AD,201812,3,2,41054,30242 -341,FR,AD,201812,3,2,26867,5475 -532,FR,AD,201812,3,2,15022,5755 -543,FR,AD,201812,3,2,218,22 -551,FR,AD,201812,3,2,19128,25695 -562,FR,AD,201812,3,2,390,11 -568,FR,AD,201812,3,2,480,97 -568,FR,AD,201812,3,2,84,19 -614,FR,AD,201812,3,2,58,5 -615,FR,AD,201812,3,1,20,22860 -621,FR,AD,201812,3,2,4277,1972 -632,FR,AD,201812,3,2,284,14 -639,FR,AD,201812,3,2,31,400 -641,FR,AD,201812,3,2,18487,214950 -642,FR,AD,201812,3,2,12173,56380 -691,FR,AD,201812,3,2,365,80 -691,FR,AD,201812,3,2,668,146 -692,FR,AD,201812,3,2,240,100 -724,FR,AD,201812,3,2,270,544 -819,FR,AD,201812,3,1,57572,25000 -819,FR,AD,201812,3,2,6011,3094 -819,FR,AD,201812,3,2,8060,4551 -891,FR,AD,201812,3,1,18,1 -891,FR,AD,201812,0,2,139,1 -891,FR,AD,201812,3,2,812,120 -891,FR,AD,201812,3,2,22224,7387 -892,FR,AD,201812,3,2,14568,1601 -893,FR,AD,201812,3,1,1472,100 -893,FR,AD,201812,0,2,2931,37 -893,FR,AD,201812,1,2,1480280,10000 -893,FR,AD,201812,3,2,245495,4901 -893,FR,AD,201812,3,2,2550,968 -893,FR,AD,201812,3,2,2335368,82356 -894,FR,AD,201812,3,2,5945,161 -896,FR,AD,201812,0,2,1956,7 -896,FR,AD,201812,3,2,2151,303 -896,FR,AD,201812,3,2,30376,2069 -896,FR,AD,201812,4,2,2400,20 -910,FR,AD,201812,3,1,348987,37774 -910,FR,AD,201812,3,1,191150,14853 -910,FR,AD,201812,0,2,117,10 -910,FR,AD,201812,3,2,2109848,77927 -910,FR,AD,201812,3,2,1000,1550 -910,FR,AD,201812,3,2,5500,970 -910,FR,AD,201812,3,2,160841,91213 -910,FR,AD,201812,3,2,58000,1365 -910,FR,AD,201812,3,2,28000,1630 -910,FR,AD,201812,3,2,358973,12675 -910,FR,AD,201812,3,2,25000,1685 -910,FR,AD,201812,3,2,98,1 -910,FR,AD,201812,4,2,17655,55 -910,FR,AD,201812,4,2,6404,32 -920,FR,AD,201812,3,1,20010,12000 -920,FR,AD,201812,3,2,631366,27970 -931,FR,AD,201812,3,1,36159,11 -931,FR,AD,201812,3,1,22197,123 -931,FR,AD,201812,0,2,16285,207 -931,FR,AD,201812,3,2,32462,522 -931,FR,AD,201812,3,2,23805,880 -931,FR,AD,201812,3,2,654867,17439 -931,FR,AD,201812,3,2,72,3 -931,FR,AD,201812,4,2,21587,5 -931,FR,AD,201812,4,2,1620,0 -939,FR,AD,201812,3,1,34846,2178 -939,FR,AD,201812,0,2,2218,12 -939,FR,AD,201812,3,2,147875,12203 -939,FR,AD,201812,3,2,84608,3321 -939,FR,AD,201812,3,2,543053,26159 -939,FR,AD,201812,4,2,4423,770 -941,FR,AD,201812,3,2,850,102 -941,FR,AD,201812,3,2,3988,3500 -949,FR,AD,201812,3,1,2135,435 -949,FR,AD,201812,3,1,38929,2210 -949,FR,AD,201812,0,2,50,1 -949,FR,AD,201812,3,2,94884,7089 -949,FR,AD,201812,3,2,168034,12005 -949,FR,AD,201812,4,2,3930,450 -951,FR,AD,201812,3,2,5187,312 -952,FR,AD,201812,3,1,1890,51 -952,FR,AD,201812,0,2,65,0 -952,FR,AD,201812,3,2,1319,373 -952,FR,AD,201812,3,2,10128,888 -961,FR,AD,201812,3,2,2209,683 -961,FR,AD,201812,3,2,827,50 -961,FR,AD,201812,3,2,5268,197 -961,FR,AD,201812,4,2,1820,270 -962,FR,AD,201812,0,2,101,21 -962,FR,AD,201812,3,2,16972,244 -962,FR,AD,201812,3,2,79036,3649 -963,FR,AD,201812,0,1,11,0 -963,FR,AD,201812,3,1,1147,40 -963,FR,AD,201812,3,1,28670,213 -963,FR,AD,201812,0,2,2896,21 -963,FR,AD,201812,1,2,252,9 -963,FR,AD,201812,1,2,73,9 -963,FR,AD,201812,3,2,148880,3187 -963,FR,AD,201812,3,2,1495259,22696 -963,FR,AD,201812,4,2,965,12 -963,FR,AD,201812,4,2,16341,560 -963,FR,AD,201812,5,2,114,3 -971,FR,AD,201812,3,2,1560,240 -971,FR,AD,201812,3,2,67964,9568 -971,FR,AD,201812,4,2,2362,580 -972,FR,AD,201812,3,2,5587,1458 -973,FR,AD,201812,0,2,533,108 -973,FR,AD,201812,3,2,4236,1069 -973,FR,AD,201812,3,2,25971,2850 -974,FR,AD,201812,3,1,142294,3504 -974,FR,AD,201812,3,1,12950,502 -974,FR,AD,201812,0,2,298,46 -974,FR,AD,201812,3,2,25693,2749 -974,FR,AD,201812,3,2,10032,617 -974,FR,AD,201812,5,2,77,2 -975,FR,AD,201812,3,1,400,19 -975,FR,AD,201812,3,2,70062,962 -975,FR,AD,201812,3,2,90509,17497 -976,FR,AD,201812,3,2,209,44 -976,FR,AD,201812,3,2,10871,6648 -979,FR,AD,201812,3,1,87910,1482 -979,FR,AD,201812,3,1,95907,1984 -979,FR,AD,201812,5,1,84,0 -979,FR,AD,201812,0,2,8710,53 -979,FR,AD,201812,1,2,37,1 -979,FR,AD,201812,1,2,136,3 -979,FR,AD,201812,3,2,135598,2793 -979,FR,AD,201812,3,2,3000,1110 -979,FR,AD,201812,3,2,2299,200 -979,FR,AD,201812,3,2,825254,38735 -979,FR,AD,201812,4,2,16800,2 -979,FR,AD,201812,4,2,19867,0 -979,FR,AD,201812,4,2,7253,0 -979,FR,AD,201812,4,2,26446,1680 -979,FR,AD,201812,5,2,22443,2 -994,FR,AD,201812,5,1,12305,0 -999,FR,AD,201812,3,1,300,0 -999,FR,AD,201812,3,2,2097,128 -999,FR,AD,201812,3,2,15291,469 -999,FR,AD,201812,7,2,692475,0 -121,FR,GI,201812,3,2,7712,247 -125,FR,GI,201812,1,2,12658,514 -125,FR,GI,201812,3,2,21391,845 -132,FR,GI,201812,0,2,26,1 -132,FR,GI,201812,3,2,35,4 -139,FR,GI,201812,3,2,35,4 -143,FR,GI,201812,3,2,100,6 -147,FR,GI,201812,3,2,23,10 -148,FR,GI,201812,3,2,85,4 -163,FR,GI,201812,3,2,450,59 -164,FR,GI,201812,3,2,350,132 -166,FR,GI,201812,3,2,500,86 -321,FR,GI,201812,1,2,8575580,21359850 -327,FR,GI,201812,1,2,17334815,50048829 -839,FR,GI,201812,1,2,9069442,32884150 -893,FR,GI,201812,3,2,164597,1277 -931,FR,GI,201812,4,2,1584,8 -931,FR,GI,201812,4,2,300,1 -931,FR,GI,201812,4,2,12618,300 -939,FR,GI,201812,0,1,95,6 -939,FR,GI,201812,3,1,1041,2 -939,FR,GI,201812,0,2,781,4 -939,FR,GI,201812,1,2,34607,824 -939,FR,GI,201812,1,2,399487,890 -939,FR,GI,201812,3,2,43821,2898 -939,FR,GI,201812,4,2,1200,10 -941,FR,GI,201812,3,2,2995,100 -941,FR,GI,201812,3,2,17919,3583 -949,FR,GI,201812,1,2,31300,440 -949,FR,GI,201812,4,2,21000,410 -962,FR,GI,201812,1,2,41054,1204 -962,FR,GI,201812,3,2,22172,190 -962,FR,GI,201812,5,2,39,2 -963,FR,GI,201812,3,1,60,0 -963,FR,GI,201812,4,2,530,1 -963,FR,GI,201812,4,2,1204,10 -963,FR,GI,201812,5,2,12,1 -973,FR,GI,201812,4,2,1117,20 -974,FR,GI,201812,0,2,560,1 -974,FR,GI,201812,4,2,7579,240 -974,FR,GI,201812,5,2,41,4 -979,FR,GI,201812,0,2,13400,1 -979,FR,GI,201812,3,2,24550,1919 -979,FR,GI,201812,4,2,3188,21 -979,FR,GI,201812,4,2,3175,250 -979,FR,GI,201812,4,2,22290,19 -979,FR,GI,201812,5,2,9,2 -121,FR,VA,201812,4,2,162,9 -893,FR,VA,201812,3,2,3020,52 -931,FR,VA,201812,3,2,13,2 -931,FR,VA,201812,3,2,464,11 -939,FR,VA,201812,3,2,1882,8 -952,FR,VA,201812,3,2,2540,81 -962,FR,VA,201812,3,2,353,4 -963,FR,VA,201812,3,2,3487,47 -974,FR,VA,201812,0,2,60,2 -974,FR,VA,201812,5,2,218,3 -979,FR,VA,201812,5,1,5887,8 -979,FR,VA,201812,3,2,1287,46 -979,FR,VA,201812,5,2,300,0 -056,FR,SM,201812,3,2,13414,22610 -056,FR,SM,201812,3,2,14241,23954 -099,FR,SM,201812,3,2,5125,25 -121,FR,SM,201812,1,2,3169,128 -125,FR,SM,201812,1,1,22767,1344 -125,FR,SM,201812,1,2,8620,100 -139,FR,SM,201812,3,1,81783,6371 -139,FR,SM,201812,1,2,37060,18876 -139,FR,SM,201812,3,2,10606,2963 -144,FR,SM,201812,1,1,12,12 -179,FR,SM,201812,3,2,34020,16156 -179,FR,SM,201812,4,2,15,4 -341,FR,SM,201812,3,1,817,39 -341,FR,SM,201812,4,1,376,17 -568,FR,SM,201812,3,1,10543,443 -691,FR,SM,201812,3,2,215,43 -891,FR,SM,201812,3,2,39200,24847 -891,FR,SM,201812,3,2,807,1100 -893,FR,SM,201812,3,2,3012,52 -893,FR,SM,201812,3,2,3615,10 -893,FR,SM,201812,4,2,11787,274 -896,FR,SM,201812,3,2,64119,5544 -896,FR,SM,201812,3,2,13700,60 -910,FR,SM,201812,4,2,1790,18 -931,FR,SM,201812,3,1,17062,505 -931,FR,SM,201812,0,2,248,0 -931,FR,SM,201812,3,2,12518,1369 -931,FR,SM,201812,3,2,2934,95 -931,FR,SM,201812,3,2,4473,258 -931,FR,SM,201812,3,2,2660,17 -939,FR,SM,201812,3,1,86346,2549 -939,FR,SM,201812,3,1,502722,47257 -939,FR,SM,201812,3,1,2260,151 -939,FR,SM,201812,3,1,2562,325 -939,FR,SM,201812,4,1,22229,266 -939,FR,SM,201812,4,1,607,13 -939,FR,SM,201812,4,1,2299,24 -939,FR,SM,201812,0,2,428,3 -939,FR,SM,201812,3,2,63501,5094 -939,FR,SM,201812,4,2,269,1 -949,FR,SM,201812,3,1,8085,173 -949,FR,SM,201812,3,1,522,37 -949,FR,SM,201812,4,1,3149,10 -949,FR,SM,201812,3,2,5459,704 -949,FR,SM,201812,3,2,17932,8350 -952,FR,SM,201812,4,2,12036,3 -962,FR,SM,201812,3,2,214015,14181 -962,FR,SM,201812,4,2,11189,134 -962,FR,SM,201812,4,2,2189,43 -963,FR,SM,201812,0,1,0,2 -963,FR,SM,201812,1,1,1088,2 -963,FR,SM,201812,3,1,4505,80 -963,FR,SM,201812,3,1,446,8 -963,FR,SM,201812,3,1,10737,286 -963,FR,SM,201812,0,2,192,17 -963,FR,SM,201812,3,2,8117,175 -963,FR,SM,201812,3,2,1905,4 -963,FR,SM,201812,4,2,21323,40 -963,FR,SM,201812,4,2,13380,950 -971,FR,SM,201812,3,1,42506,7966 -972,FR,SM,201812,3,2,8849,21214 -972,FR,SM,201812,3,2,8849,20301 -973,FR,SM,201812,3,2,128095,8677 -974,FR,SM,201812,4,1,304,1 -974,FR,SM,201812,3,2,312,471 -974,FR,SM,201812,4,2,2081,25 -975,FR,SM,201812,3,1,1795,72 -975,FR,SM,201812,3,2,337,66 -979,FR,SM,201812,3,1,16039,278 -979,FR,SM,201812,4,1,4218,43 -979,FR,SM,201812,5,1,1957,0 -979,FR,SM,201812,0,2,753,1 -979,FR,SM,201812,3,2,80169,2509 -979,FR,SM,201812,3,2,3550,70 -979,FR,SM,201812,3,2,7578,815 -979,FR,SM,201812,3,2,8901,171 -979,FR,SM,201812,3,2,6376,178 -979,FR,SM,201812,4,2,460,0 -979,FR,SM,201812,4,2,1917,0 -999,FR,SM,201812,3,2,7637,745 -001,FR,TR,201812,4,1,66730,7459 -011,FR,TR,201812,4,1,154,98 -012,FR,TR,201812,1,2,2544096,10100022 -015,FR,TR,201812,1,1,1831,3000 -015,FR,TR,201812,1,1,725,1080 -015,FR,TR,201812,3,1,212561,102982 -015,FR,TR,201812,4,1,2617,71 -015,FR,TR,201812,4,1,447,69 -015,FR,TR,201812,4,1,955,26 -015,FR,TR,201812,1,2,397565,154832 -015,FR,TR,201812,3,2,197821,50340 -015,FR,TR,201812,4,2,257,118 -015,FR,TR,201812,4,2,29,9 -016,FR,TR,201812,1,1,17518,14000 -020,FR,TR,201812,1,2,82996,178770 -020,FR,TR,201812,1,2,148307,265600 -020,FR,TR,201812,1,2,181804,319000 -031,FR,TR,201812,1,1,68015,95150 -031,FR,TR,201812,1,1,61776,94520 -031,FR,TR,201812,3,1,46279,70012 -035,FR,TR,201812,0,1,5437482,986000 -035,FR,TR,201812,1,1,96402,15000 -035,FR,TR,201812,1,1,3613,600 -035,FR,TR,201812,1,1,177237,25160 -035,FR,TR,201812,1,1,59696,11190 -035,FR,TR,201812,1,1,145088,30000 -035,FR,TR,201812,1,1,53879,38000 -035,FR,TR,201812,1,1,101202,20000 -035,FR,TR,201812,1,1,412793,59950 -035,FR,TR,201812,3,1,358636,179539 -035,FR,TR,201812,4,1,30,2 -035,FR,TR,201812,1,2,216,20 -039,FR,TR,201812,1,1,4038,1000 -039,FR,TR,201812,1,1,561,90 -039,FR,TR,201812,1,1,10386,23000 -039,FR,TR,201812,3,1,322177,140118 -039,FR,TR,201812,3,1,34214,9504 -039,FR,TR,201812,4,1,45731,4859 -039,FR,TR,201812,3,2,8434,450 -039,FR,TR,201812,4,2,12,2 -042,FR,TR,201812,1,1,27498,16504 -042,FR,TR,201812,1,1,113576,62476 -042,FR,TR,201812,1,1,70124,43360 -042,FR,TR,201812,3,1,37596,21674 -042,FR,TR,201812,4,1,1392,71 -042,FR,TR,201812,4,2,2,0 -043,FR,TR,201812,1,1,32893,21390 -043,FR,TR,201812,1,1,58802,23874 -043,FR,TR,201812,3,1,36902,3787 -043,FR,TR,201812,4,1,350,29 -043,FR,TR,201812,1,2,92350,3914 -043,FR,TR,201812,1,2,97618,4297 -043,FR,TR,201812,1,2,50653,22067 -043,FR,TR,201812,1,2,3018,1152 -043,FR,TR,201812,3,2,64979,18441 -049,FR,TR,201812,3,1,4371,1602 -049,FR,TR,201812,4,1,121,0 -049,FR,TR,201812,4,1,785,48 -049,FR,TR,201812,1,2,51667,169180 -049,FR,TR,201812,1,2,13883,20680 -049,FR,TR,201812,1,2,77643,323894 -049,FR,TR,201812,1,2,17958,59433 -049,FR,TR,201812,4,2,5,4 -051,FR,TR,201812,1,2,58253,123340 -056,FR,TR,201812,1,1,22973,23226 -056,FR,TR,201812,3,1,197,307 -056,FR,TR,201812,3,1,6783,2813 -091,FR,TR,201812,1,2,71084,261530 -091,FR,TR,201812,1,2,19808,50378 -091,FR,TR,201812,1,2,48594,49613 -091,FR,TR,201812,4,2,13080,317 -092,FR,TR,201812,1,1,37599,21942 -092,FR,TR,201812,3,1,113,14 -092,FR,TR,201812,3,1,83138,40958 -092,FR,TR,201812,1,2,31430,19023 -092,FR,TR,201812,1,2,3000,1200 -092,FR,TR,201812,1,2,1643,440 -092,FR,TR,201812,1,2,23367,3115600 -092,FR,TR,201812,1,2,30393,6078650 -092,FR,TR,201812,1,2,1,3231260 -092,FR,TR,201812,1,2,45452,19200 -092,FR,TR,201812,1,2,223946,207260 -092,FR,TR,201812,1,2,107766,51000 -092,FR,TR,201812,3,2,1992,39 -092,FR,TR,201812,3,2,7083,5000 -092,FR,TR,201812,4,2,2,0 -099,FR,TR,201812,1,1,597,186 -099,FR,TR,201812,1,1,11225,2000 -099,FR,TR,201812,1,1,197959,57071 -099,FR,TR,201812,1,1,7928,5000 -099,FR,TR,201812,3,1,1082,21 -099,FR,TR,201812,3,1,543,30 -099,FR,TR,201812,3,1,190599,28313 -099,FR,TR,201812,4,1,461,0 -099,FR,TR,201812,1,2,52526,22138 -099,FR,TR,201812,1,2,54601,4375 -099,FR,TR,201812,3,2,734765,3112 -099,FR,TR,201812,3,2,524907,260848 -099,FR,TR,201812,4,2,2,0 -099,FR,TR,201812,4,2,2782,0 -099,FR,TR,201812,4,2,27564,761 -112,FR,TR,201812,1,1,210,75 -112,FR,TR,201812,1,2,5742,9075 -121,FR,TR,201812,3,1,50,1 -121,FR,TR,201812,4,1,171,5 -121,FR,TR,201812,1,2,18240,4477 -121,FR,TR,201812,1,2,3284,450 -121,FR,TR,201812,1,2,20189,10643 -121,FR,TR,201812,1,2,17062,7545 -121,FR,TR,201812,1,2,71990,14956 -121,FR,TR,201812,1,2,17162,4854 -121,FR,TR,201812,3,2,109314,18685 -121,FR,TR,201812,3,2,155380,6615 -121,FR,TR,201812,4,2,4,4 -121,FR,TR,201812,4,2,541580,2400 -122,FR,TR,201812,1,1,34533,46164 -122,FR,TR,201812,1,2,98572,104647 -125,FR,TR,201812,1,1,243316,106785 -125,FR,TR,201812,1,2,141646,12336 -125,FR,TR,201812,1,2,117251,25629 -125,FR,TR,201812,1,2,101949,4109 -125,FR,TR,201812,1,2,19385,10617 -125,FR,TR,201812,1,2,119083,21464 -128,FR,TR,201812,1,1,3817,6912 -128,FR,TR,201812,1,1,10345,26707 -128,FR,TR,201812,1,1,5304,8472 -128,FR,TR,201812,1,1,37702,65831 -128,FR,TR,201812,1,1,20976,58686 -128,FR,TR,201812,1,1,56887,89106 -128,FR,TR,201812,1,2,195157,84850 -128,FR,TR,201812,3,2,293462,122078 -128,FR,TR,201812,4,2,10,0 -131,FR,TR,201812,1,1,1450,142 -131,FR,TR,201812,1,2,6437,882 -132,FR,TR,201812,1,1,11346,6111 -132,FR,TR,201812,3,1,33490,13825 -132,FR,TR,201812,4,1,16,3 -132,FR,TR,201812,4,1,132,4 -132,FR,TR,201812,3,2,295534,46000 -132,FR,TR,201812,3,2,335758,114261 -132,FR,TR,201812,3,2,4010,91 -132,FR,TR,201812,3,2,2516,46 -132,FR,TR,201812,4,2,1209,160 -133,FR,TR,201812,1,1,110102,37301 -133,FR,TR,201812,1,1,90854,18200 -133,FR,TR,201812,1,1,100820,23992 -133,FR,TR,201812,1,1,2812,1400 -133,FR,TR,201812,3,1,32,0 -133,FR,TR,201812,3,1,59937,14062 -133,FR,TR,201812,4,1,283,4 -133,FR,TR,201812,4,1,29,0 -133,FR,TR,201812,4,1,11961,52 -133,FR,TR,201812,4,1,108,2 -133,FR,TR,201812,1,2,38700,2000 -133,FR,TR,201812,3,2,7400,108 -135,FR,TR,201812,1,2,598899,87360 -135,FR,TR,201812,1,2,208335,79200 -135,FR,TR,201812,3,2,52444,19800 -135,FR,TR,201812,4,2,462,1 -136,FR,TR,201812,0,1,191,5 -136,FR,TR,201812,1,1,43084,11906 -136,FR,TR,201812,1,1,29579,1506 -136,FR,TR,201812,1,1,887,120 -136,FR,TR,201812,1,1,7138,612 -136,FR,TR,201812,1,1,16300,20000 -136,FR,TR,201812,1,1,19779,21041 -136,FR,TR,201812,3,1,10322,1104 -136,FR,TR,201812,3,1,111679,24489 -136,FR,TR,201812,3,1,82697,30758 -136,FR,TR,201812,4,1,56,3 -136,FR,TR,201812,4,1,3924,415 -136,FR,TR,201812,4,1,1783,127 -136,FR,TR,201812,1,2,21000,2671 -136,FR,TR,201812,1,2,66448,99000 -136,FR,TR,201812,3,2,46313,5314 -136,FR,TR,201812,3,2,53545,25795 -136,FR,TR,201812,3,2,4344,91 -136,FR,TR,201812,3,2,1734,31 -136,FR,TR,201812,4,2,25,2 -139,FR,TR,201812,1,1,869,435 -139,FR,TR,201812,1,1,10364,4739 -139,FR,TR,201812,1,1,15309,18709 -139,FR,TR,201812,1,1,883,788 -139,FR,TR,201812,1,1,39067,19720 -139,FR,TR,201812,1,1,21760,16244 -139,FR,TR,201812,3,1,1700,87 -139,FR,TR,201812,3,1,123600,9670 -139,FR,TR,201812,3,1,71273,14737 -139,FR,TR,201812,3,1,149737,15485 -139,FR,TR,201812,3,1,149100,10690 -139,FR,TR,201812,3,1,116800,9811 -139,FR,TR,201812,1,2,674618,154598 -139,FR,TR,201812,1,2,28581,13787 -139,FR,TR,201812,1,2,41283,19915 -139,FR,TR,201812,1,2,34300,7440 -139,FR,TR,201812,1,2,27409,8469 -139,FR,TR,201812,3,2,134926,18416 -139,FR,TR,201812,3,2,1116629,220516 -139,FR,TR,201812,3,2,311556,10966 -141,FR,TR,201812,4,1,91757,4775 -142,FR,TR,201812,3,1,1102325,252618 -142,FR,TR,201812,3,1,1094,684 -142,FR,TR,201812,3,1,31680,19800 -142,FR,TR,201812,4,2,1,9 -142,FR,TR,201812,4,2,25833,385 -144,FR,TR,201812,3,2,168419,30122 -147,FR,TR,201812,4,2,207,7 -148,FR,TR,201812,3,1,83202,15520 -148,FR,TR,201812,3,1,84037,17220 -148,FR,TR,201812,4,2,10,0 -161,FR,TR,201812,1,1,535,840 -161,FR,TR,201812,1,1,291,161 -161,FR,TR,201812,3,1,146,60 -163,FR,TR,201812,1,1,10739,4896 -163,FR,TR,201812,1,1,24913,29502 -163,FR,TR,201812,1,1,4179,8000 -163,FR,TR,201812,1,1,21318,2544 -163,FR,TR,201812,1,1,11602,20000 -163,FR,TR,201812,1,1,1221,630 -163,FR,TR,201812,1,1,26601,10146 -163,FR,TR,201812,3,1,37344,13587 -163,FR,TR,201812,4,1,30952,2495 -163,FR,TR,201812,1,2,23760,3600 -163,FR,TR,201812,3,2,10,0 -163,FR,TR,201812,3,2,96431,45436 -163,FR,TR,201812,3,2,22968,18200 -163,FR,TR,201812,4,2,10,9 -164,FR,TR,201812,0,1,31,1 -164,FR,TR,201812,1,1,286602,120900 -164,FR,TR,201812,1,1,44890,22000 -164,FR,TR,201812,1,1,391812,187210 -164,FR,TR,201812,1,1,835382,261919 -164,FR,TR,201812,1,1,765978,212521 -164,FR,TR,201812,1,1,75825,27256 -164,FR,TR,201812,1,1,7986,9300 -164,FR,TR,201812,1,1,787036,315887 -164,FR,TR,201812,1,1,37217,24798 -164,FR,TR,201812,1,1,206669,69472 -164,FR,TR,201812,1,1,1860307,693169 -164,FR,TR,201812,1,1,76954,80861 -164,FR,TR,201812,1,1,164465,71408 -164,FR,TR,201812,1,1,72937,37880 -164,FR,TR,201812,1,1,1547442,646844 -164,FR,TR,201812,1,1,31488,10800 -164,FR,TR,201812,1,1,242488,164910 -164,FR,TR,201812,1,1,1971204,800459 -164,FR,TR,201812,1,1,43457,10701 -164,FR,TR,201812,1,1,254156,74480 -164,FR,TR,201812,1,1,15461,7290 -164,FR,TR,201812,1,1,39744,18400 -164,FR,TR,201812,3,1,263937,63563 -164,FR,TR,201812,3,1,112,28 -164,FR,TR,201812,3,1,1508684,463747 -164,FR,TR,201812,3,1,2382,355 -164,FR,TR,201812,4,1,40498,8020 -164,FR,TR,201812,1,2,57778,12020 -164,FR,TR,201812,1,2,2470,2000 -164,FR,TR,201812,1,2,77400,10800 -164,FR,TR,201812,1,2,160603,64980 -164,FR,TR,201812,1,2,41000,20800 -164,FR,TR,201812,1,2,26496,16560 -164,FR,TR,201812,3,2,13810,4400 -164,FR,TR,201812,3,2,64951,20000 -164,FR,TR,201812,4,2,18,2 -164,FR,TR,201812,4,2,17,0 -165,FR,TR,201812,1,1,92214,95384 -165,FR,TR,201812,1,1,10681,13000 -165,FR,TR,201812,1,1,8153,8640 -165,FR,TR,201812,1,1,47904,64200 -165,FR,TR,201812,1,1,80872,106226 -166,FR,TR,201812,1,1,33899,19454 -166,FR,TR,201812,1,1,9421,2000 -166,FR,TR,201812,1,1,34830,7120 -166,FR,TR,201812,1,1,181731,90747 -166,FR,TR,201812,1,1,63313,38885 -166,FR,TR,201812,1,1,49977,35157 -166,FR,TR,201812,1,1,215592,145193 -166,FR,TR,201812,1,1,860,1356 -166,FR,TR,201812,1,1,8976,3182 -166,FR,TR,201812,3,1,581,88 -166,FR,TR,201812,3,1,192885,42710 -166,FR,TR,201812,1,2,95448,94190 -166,FR,TR,201812,3,2,127929,9800 -179,FR,TR,201812,1,1,73310,11020 -179,FR,TR,201812,4,1,635,31 -179,FR,TR,201812,1,2,202720,148073 -179,FR,TR,201812,1,2,49209,4336 -179,FR,TR,201812,1,2,4395,420 -179,FR,TR,201812,1,2,429996,249081 -179,FR,TR,201812,1,2,61541,800 -179,FR,TR,201812,1,2,312550,189012 -179,FR,TR,201812,1,2,84891,41000 -179,FR,TR,201812,3,2,124967,31020 -179,FR,TR,201812,3,2,567139,229634 -179,FR,TR,201812,3,2,37275,22000 -181,FR,TR,201812,1,1,6853,1800 -181,FR,TR,201812,1,1,2858,760 -181,FR,TR,201812,1,1,77177,18365 -181,FR,TR,201812,3,1,191267,81573 -181,FR,TR,201812,3,1,10766,4728 -181,FR,TR,201812,4,1,2774,28 -181,FR,TR,201812,4,2,182,6 -182,FR,TR,201812,1,1,55000,20000 -182,FR,TR,201812,4,1,1882,100 -182,FR,TR,201812,1,2,8577,1023 -182,FR,TR,201812,1,2,14256,3425 -182,FR,TR,201812,1,2,12000,5625 -182,FR,TR,201812,1,2,83000,5845 -182,FR,TR,201812,3,2,610,400 -182,FR,TR,201812,3,2,12019,2570 -182,FR,TR,201812,3,2,249189,341240 -182,FR,TR,201812,3,2,85266,83740 -182,FR,TR,201812,4,2,1270,60 -321,FR,TR,201812,3,2,2795,3168 -323,FR,TR,201812,1,2,295,0 -323,FR,TR,201812,1,2,69968,89734 -323,FR,TR,201812,3,2,7267,3557 -325,FR,TR,201812,3,2,2114,684 -341,FR,TR,201812,1,1,15576,2499 -341,FR,TR,201812,3,1,139971,71879 -341,FR,TR,201812,1,2,495282,195321 -341,FR,TR,201812,1,2,23221,18940 -341,FR,TR,201812,1,2,9500,3987 -341,FR,TR,201812,3,2,275130,128481 -341,FR,TR,201812,3,2,3381,21 -341,FR,TR,201812,3,2,12781,966 -341,FR,TR,201812,3,2,374226,130888 -341,FR,TR,201812,3,2,26598,20196 -341,FR,TR,201812,3,2,35741,20750 -341,FR,TR,201812,4,2,4634,426 -349,FR,TR,201812,3,2,20,0 -349,FR,TR,201812,3,2,437,76 -349,FR,TR,201812,4,2,5,3 -451,FR,TR,201812,1,1,109232,22900 -451,FR,TR,201812,1,1,555295,334980 -451,FR,TR,201812,4,1,248,7 -451,FR,TR,201812,1,2,22924,20840 -451,FR,TR,201812,1,2,21049,26180 -451,FR,TR,201812,3,2,43000,40570 -453,FR,TR,201812,1,1,617594,10000000 -455,FR,TR,201812,1,1,90466,237179 -459,FR,TR,201812,3,2,41189,21908 -459,FR,TR,201812,4,2,1587,60 -462,FR,TR,201812,1,2,1172751,4552328 -462,FR,TR,201812,1,2,3141519,11706848 -462,FR,TR,201812,1,2,8830641,33499676 -462,FR,TR,201812,1,2,6671629,20898988 -512,FR,TR,201812,1,2,105306,75943 -512,FR,TR,201812,1,2,142693,102822 -512,FR,TR,201812,3,2,8422,1101 -513,FR,TR,201812,1,1,62481,25000 -513,FR,TR,201812,1,2,196419,120000 -513,FR,TR,201812,1,2,223995,11931 -522,FR,TR,201812,1,1,2069053,3533560 -522,FR,TR,201812,1,2,1369447,2412150 -522,FR,TR,201812,1,2,2724331,5527576 -522,FR,TR,201812,1,2,5446877,10131554 -522,FR,TR,201812,3,2,37954,53570 -522,FR,TR,201812,3,2,1936,2100 -522,FR,TR,201812,3,2,8936,17600 -522,FR,TR,201812,3,2,12746,35160 -522,FR,TR,201812,3,2,8916,17560 -532,FR,TR,201812,1,1,45362,81360 -532,FR,TR,201812,1,1,14841,27500 -532,FR,TR,201812,1,1,122918,224030 -532,FR,TR,201812,1,1,505406,966846 -532,FR,TR,201812,1,1,85669,132982 -532,FR,TR,201812,1,1,225399,439228 -532,FR,TR,201812,1,1,9099,11165 -532,FR,TR,201812,1,1,595,603 -532,FR,TR,201812,3,1,87607,81311 -532,FR,TR,201812,1,2,16490,5000 -532,FR,TR,201812,1,2,177063,63139 -532,FR,TR,201812,1,2,182005,278851 -532,FR,TR,201812,1,2,14016,3547 -532,FR,TR,201812,3,2,3822,780 -532,FR,TR,201812,3,2,503192,199147 -532,FR,TR,201812,3,2,21500,22121 -532,FR,TR,201812,3,2,18510,6313 -533,FR,TR,201812,1,1,11094,13644 -533,FR,TR,201812,1,1,48174,69080 -533,FR,TR,201812,3,1,23740,16290 -533,FR,TR,201812,1,2,36532,10042 -533,FR,TR,201812,1,2,35121,26710 -533,FR,TR,201812,1,2,75606,25079 -533,FR,TR,201812,3,2,156843,47494 -533,FR,TR,201812,3,2,5836,6464 -533,FR,TR,201812,3,2,84007,24263 -533,FR,TR,201812,4,2,1840,90 -535,FR,TR,201812,1,2,37140,41922 -535,FR,TR,201812,1,2,354856,535708 -535,FR,TR,201812,4,2,7828,400 -536,FR,TR,201812,1,1,21849,26580 -536,FR,TR,201812,1,1,2915,159 -536,FR,TR,201812,1,1,467370,749890 -536,FR,TR,201812,1,1,11981,14280 -536,FR,TR,201812,1,1,179125,273780 -536,FR,TR,201812,1,1,8867,3050 -536,FR,TR,201812,3,1,8407,4848 -536,FR,TR,201812,4,1,1632,520 -536,FR,TR,201812,1,2,813,131 -536,FR,TR,201812,1,2,109445,51290 -536,FR,TR,201812,3,2,12447,2662 -536,FR,TR,201812,3,2,40296,3551 -536,FR,TR,201812,4,2,1072,58 -537,FR,TR,201812,3,1,28,44 -542,FR,TR,201812,1,1,972117,1682220 -542,FR,TR,201812,1,1,120,85 -542,FR,TR,201812,1,1,72065,110030 -542,FR,TR,201812,1,1,166505,220090 -542,FR,TR,201812,1,1,18842,27210 -542,FR,TR,201812,3,1,46358,34536 -542,FR,TR,201812,1,2,4992344,5709570 -542,FR,TR,201812,1,2,343469,168283 -542,FR,TR,201812,1,2,35360,23100 -542,FR,TR,201812,1,2,19979,22520 -542,FR,TR,201812,1,2,240907,210227 -542,FR,TR,201812,1,2,12825,18100 -542,FR,TR,201812,1,2,480024,277360 -542,FR,TR,201812,1,2,1124569,576257 -542,FR,TR,201812,1,2,81139,44614 -542,FR,TR,201812,2,2,73616,101470 -542,FR,TR,201812,3,2,594319,603797 -542,FR,TR,201812,3,2,85732,98490 -542,FR,TR,201812,3,2,498058,216228 -542,FR,TR,201812,3,2,37738,21363 -542,FR,TR,201812,4,2,450,900 -543,FR,TR,201812,3,1,3425,1800 -543,FR,TR,201812,1,2,91476,10018 -543,FR,TR,201812,1,2,103424,49036 -543,FR,TR,201812,1,2,149342,67550 -543,FR,TR,201812,1,2,119319,68290 -543,FR,TR,201812,1,2,112699,58010 -543,FR,TR,201812,1,2,15715,9894 -543,FR,TR,201812,3,2,3700,2032 -543,FR,TR,201812,3,2,316605,185045 -551,FR,TR,201812,1,1,1028480,1042430 -551,FR,TR,201812,1,1,36895,612 -551,FR,TR,201812,1,1,10721,6993 -551,FR,TR,201812,1,1,1535371,1498536 -551,FR,TR,201812,1,1,9040,1487 -551,FR,TR,201812,1,1,53461,24060 -551,FR,TR,201812,3,1,87326,44172 -551,FR,TR,201812,3,1,481223,123877 -551,FR,TR,201812,3,1,358,11 -551,FR,TR,201812,4,1,12221,1002 -551,FR,TR,201812,4,1,511,4 -551,FR,TR,201812,4,1,12,0 -551,FR,TR,201812,1,2,22734,2976 -551,FR,TR,201812,1,2,152747,62090 -551,FR,TR,201812,1,2,5328,1029 -551,FR,TR,201812,3,2,149250,17218 -551,FR,TR,201812,3,2,242927,125378 -551,FR,TR,201812,4,2,188673,103 -551,FR,TR,201812,4,2,2783,1 -551,FR,TR,201812,4,2,33628,90 -551,FR,TR,201812,4,2,102382,214 -551,FR,TR,201812,4,2,21464,1440 -552,FR,TR,201812,1,1,79442,9010 -552,FR,TR,201812,1,1,26147,22000 -552,FR,TR,201812,1,1,174,45 -552,FR,TR,201812,3,1,15220,2986 -552,FR,TR,201812,3,1,160353,24920 -552,FR,TR,201812,3,1,4262,101 -552,FR,TR,201812,3,1,49860,16347 -552,FR,TR,201812,4,1,24818,3322 -552,FR,TR,201812,4,1,2902,26 -552,FR,TR,201812,1,2,310569,22140 -552,FR,TR,201812,3,2,81311,14674 -552,FR,TR,201812,3,2,34800,7839 -552,FR,TR,201812,4,2,15485,58 -552,FR,TR,201812,4,2,20,0 -561,FR,TR,201812,3,1,4825,333 -561,FR,TR,201812,3,1,9162,751 -561,FR,TR,201812,3,1,673,27 -562,FR,TR,201812,4,1,24,1 -562,FR,TR,201812,1,2,6820,1420 -565,FR,TR,201812,1,1,930600,11390 -565,FR,TR,201812,3,1,80977,303 -565,FR,TR,201812,3,1,196916,4098 -565,FR,TR,201812,4,1,320950,1314 -565,FR,TR,201812,4,1,36611,572 -565,FR,TR,201812,4,1,333,1 -565,FR,TR,201812,3,2,1479,20 -565,FR,TR,201812,3,2,84091,1662 -565,FR,TR,201812,4,2,35198,488 -565,FR,TR,201812,4,2,14080,197 -565,FR,TR,201812,4,2,24867,270 -568,FR,TR,201812,0,1,50354,19498 -568,FR,TR,201812,1,1,55405,23054 -568,FR,TR,201812,1,1,58440,8101 -568,FR,TR,201812,1,1,656750,129678 -568,FR,TR,201812,1,1,2791,547 -568,FR,TR,201812,1,1,77288,23407 -568,FR,TR,201812,1,1,1942,471 -568,FR,TR,201812,1,1,600558,194700 -568,FR,TR,201812,1,1,275900,45210 -568,FR,TR,201812,1,1,29479,4603 -568,FR,TR,201812,1,1,71,88 -568,FR,TR,201812,1,1,291838,106440 -568,FR,TR,201812,1,1,55471,17629 -568,FR,TR,201812,1,1,90278,12728 -568,FR,TR,201812,1,1,123388,18182 -568,FR,TR,201812,1,1,85186,29657 -568,FR,TR,201812,3,1,567064,95345 -568,FR,TR,201812,3,1,2191884,579676 -568,FR,TR,201812,3,1,61578,21299 -568,FR,TR,201812,3,1,12294,2949 -568,FR,TR,201812,4,1,9070,801 -568,FR,TR,201812,4,1,21490,5475 -568,FR,TR,201812,1,2,388194,28659 -568,FR,TR,201812,1,2,21823,319 -568,FR,TR,201812,1,2,246335,24047 -568,FR,TR,201812,1,2,223691,50255 -568,FR,TR,201812,1,2,1514871,266827 -568,FR,TR,201812,1,2,735980,189440 -568,FR,TR,201812,3,2,297713,53400 -568,FR,TR,201812,3,2,645,119 -568,FR,TR,201812,3,2,809455,142312 -568,FR,TR,201812,3,2,307660,81790 -568,FR,TR,201812,3,2,366,16 -568,FR,TR,201812,4,2,1814,90 -568,FR,TR,201812,4,2,997,3 -568,FR,TR,201812,4,2,1401,13 -568,FR,TR,201812,4,2,1181,1 -611,FR,TR,201812,1,2,1095,6000 -614,FR,TR,201812,1,1,5896,50000 -614,FR,TR,201812,1,1,139576,619424 -614,FR,TR,201812,3,1,906,12 -614,FR,TR,201812,1,2,9758,23525 -614,FR,TR,201812,1,2,33142,201000 -614,FR,TR,201812,1,2,5731,26000 -614,FR,TR,201812,1,2,39540,227000 -621,FR,TR,201812,1,1,4675,27250 -621,FR,TR,201812,3,2,1554,222 -621,FR,TR,201812,3,2,3267,3481 -631,FR,TR,201812,3,2,6038,27000 -632,FR,TR,201812,1,1,12991,23645 -632,FR,TR,201812,1,2,7673,96000 -639,FR,TR,201812,1,1,282250,10200000 -639,FR,TR,201812,1,1,3004,20000 -639,FR,TR,201812,3,1,86016,168000 -639,FR,TR,201812,4,1,239,32 -639,FR,TR,201812,4,1,21,1 -639,FR,TR,201812,1,2,6571,18900 -639,FR,TR,201812,1,2,1034,1050 -639,FR,TR,201812,1,2,33288,91200 -639,FR,TR,201812,3,2,57625,52000 -641,FR,TR,201812,1,1,236393,2214000 -641,FR,TR,201812,1,1,67545,675000 -641,FR,TR,201812,1,1,7625,25000 -641,FR,TR,201812,1,2,23579,47600 -642,FR,TR,201812,1,2,31300,236150 -642,FR,TR,201812,3,2,3000,23750 -650,FR,TR,201812,1,1,1108,9610 -691,FR,TR,201812,1,1,7375,21613 -691,FR,TR,201812,1,1,41550,49882 -691,FR,TR,201812,1,1,43661,131979 -691,FR,TR,201812,1,1,86985,273170 -691,FR,TR,201812,1,1,291995,861253 -691,FR,TR,201812,1,1,217255,308919 -691,FR,TR,201812,1,1,7373,25300 -691,FR,TR,201812,1,1,22694,48580 -691,FR,TR,201812,1,1,97252,263620 -691,FR,TR,201812,1,1,206285,644908 -691,FR,TR,201812,1,1,247374,624540 -691,FR,TR,201812,1,1,16979,24835 -691,FR,TR,201812,1,1,23979,79099 -691,FR,TR,201812,1,1,23518,104875 -691,FR,TR,201812,1,1,663776,1937834 -691,FR,TR,201812,1,1,116272,614672 -691,FR,TR,201812,1,1,249946,795479 -691,FR,TR,201812,1,1,45852,158480 -691,FR,TR,201812,3,1,3704,376 -691,FR,TR,201812,3,1,66695,123607 -691,FR,TR,201812,3,1,5050,1068 -691,FR,TR,201812,4,1,50,0 -691,FR,TR,201812,4,1,412,97 -691,FR,TR,201812,4,1,888,137 -691,FR,TR,201812,1,2,304762,11041 -691,FR,TR,201812,1,2,68233,78319 -691,FR,TR,201812,1,2,10729,72000 -691,FR,TR,201812,3,2,19219,7264 -691,FR,TR,201812,3,2,181937,3909 -691,FR,TR,201812,4,2,7652,230 -691,FR,TR,201812,4,2,4,0 -692,FR,TR,201812,1,1,45878,93369 -692,FR,TR,201812,1,1,116793,263695 -692,FR,TR,201812,1,1,424,743 -692,FR,TR,201812,1,1,47926,102692 -692,FR,TR,201812,1,1,24424,53904 -692,FR,TR,201812,1,1,10794,27841 -692,FR,TR,201812,1,1,127331,391167 -692,FR,TR,201812,1,1,68247,143365 -692,FR,TR,201812,1,1,51099,217555 -692,FR,TR,201812,1,1,219103,651024 -692,FR,TR,201812,1,1,38517,93645 -692,FR,TR,201812,1,1,352426,977752 -692,FR,TR,201812,1,1,8781,25960 -692,FR,TR,201812,1,1,76123,205070 -692,FR,TR,201812,1,1,1451084,3275134 -692,FR,TR,201812,1,1,6908,9990 -692,FR,TR,201812,1,1,32962,99070 -692,FR,TR,201812,1,1,186193,537808 -692,FR,TR,201812,1,1,1086,650 -692,FR,TR,201812,1,1,5868,25323 -692,FR,TR,201812,1,1,44141,171095 -692,FR,TR,201812,3,1,223,50 -692,FR,TR,201812,3,1,2168,3375 -692,FR,TR,201812,3,1,24604,57033 -692,FR,TR,201812,3,1,15707,22003 -692,FR,TR,201812,4,1,1032,43 -692,FR,TR,201812,1,2,20070,8483 -692,FR,TR,201812,1,2,77716,89000 -692,FR,TR,201812,3,2,495092,156044 -692,FR,TR,201812,3,2,420448,48810 -723,FR,TR,201812,1,2,444950,1868104 -729,FR,TR,201812,1,2,34716,15331 -811,FR,TR,201812,3,2,2768,722 -813,FR,TR,201812,1,1,6557,40000 -813,FR,TR,201812,1,1,1010700,5170000 -813,FR,TR,201812,1,1,46349,229500 -813,FR,TR,201812,1,1,290640,1390480 -813,FR,TR,201812,1,2,132900,320450 -813,FR,TR,201812,3,2,636,1225 -819,FR,TR,201812,1,1,2979,1800 -819,FR,TR,201812,1,1,116232,160000 -819,FR,TR,201812,1,1,164703,210019 -819,FR,TR,201812,1,1,96380,69000 -819,FR,TR,201812,1,1,8553,20000 -819,FR,TR,201812,1,1,743214,460436 -819,FR,TR,201812,1,1,17625,25000 -819,FR,TR,201812,3,1,39560,21805 -819,FR,TR,201812,3,1,274211,44457 -819,FR,TR,201812,4,1,6434,4 -819,FR,TR,201812,1,2,6329661,8491069 -819,FR,TR,201812,1,2,2,3 -819,FR,TR,201812,1,2,56809,5391 -819,FR,TR,201812,1,2,542708,98324 -819,FR,TR,201812,1,2,2890910,3880281 -819,FR,TR,201812,1,2,474217,308440 -819,FR,TR,201812,1,2,284893,276310 -819,FR,TR,201812,1,2,150864,123269 -819,FR,TR,201812,1,2,43083,16000 -819,FR,TR,201812,1,2,123359,220000 -819,FR,TR,201812,1,2,484960,140591 -819,FR,TR,201812,1,2,69010,46952 -819,FR,TR,201812,3,2,868623,45057 -819,FR,TR,201812,3,2,1938980,59317 -819,FR,TR,201812,3,2,1292,360 -819,FR,TR,201812,3,2,7342,11280 -819,FR,TR,201812,4,2,246267,985 -819,FR,TR,201812,4,2,4824,68 -819,FR,TR,201812,4,2,11328,18 -819,FR,TR,201812,4,2,18699,290 -819,FR,TR,201812,4,2,3199,4 -820,FR,TR,201812,1,2,3250,1000 -820,FR,TR,201812,1,2,34,25 -820,FR,TR,201812,1,2,60314,100000 -820,FR,TR,201812,1,2,11450,20000 -820,FR,TR,201812,1,2,53535,79100 -820,FR,TR,201812,3,2,37734,3800 -820,FR,TR,201812,4,2,2100,300 -839,FR,TR,201812,3,2,880,280 -841,FR,TR,201812,3,2,317043,391753 -842,FR,TR,201812,1,2,38190,381900 -891,FR,TR,201812,0,1,1041,0 -891,FR,TR,201812,1,1,147428,89740 -891,FR,TR,201812,1,1,704830,138618 -891,FR,TR,201812,1,1,2788,210 -891,FR,TR,201812,1,1,218983,135368 -891,FR,TR,201812,1,1,27290,18844 -891,FR,TR,201812,1,1,214037,70297 -891,FR,TR,201812,1,1,76831,40598 -891,FR,TR,201812,1,1,515733,240295 -891,FR,TR,201812,1,1,75763,44538 -891,FR,TR,201812,1,1,41122,21794 -891,FR,TR,201812,1,1,418393,292158 -891,FR,TR,201812,1,1,66,45 -891,FR,TR,201812,1,1,26290,22000 -891,FR,TR,201812,1,1,40990,15512 -891,FR,TR,201812,3,1,73979,21496 -891,FR,TR,201812,3,1,3585,2490 -891,FR,TR,201812,3,1,1083134,344696 -891,FR,TR,201812,3,1,320,3 -891,FR,TR,201812,3,1,632384,171573 -891,FR,TR,201812,3,1,70862,17939 -891,FR,TR,201812,3,1,101753,49308 -891,FR,TR,201812,3,1,224861,139308 -891,FR,TR,201812,4,1,370,163 -891,FR,TR,201812,4,1,1140,27 -891,FR,TR,201812,4,1,1371,229 -891,FR,TR,201812,4,1,5260,1318 -891,FR,TR,201812,4,1,869,12 -891,FR,TR,201812,1,2,306767,135091 -891,FR,TR,201812,1,2,639,5 -891,FR,TR,201812,1,2,33000,20000 -891,FR,TR,201812,1,2,2153924,613423 -891,FR,TR,201812,1,2,108829,24732 -891,FR,TR,201812,1,2,42770,9225 -891,FR,TR,201812,1,2,834,240 -891,FR,TR,201812,1,2,15922,11000 -891,FR,TR,201812,1,2,7454206,4417461 -891,FR,TR,201812,1,2,325964,268125 -891,FR,TR,201812,1,2,257226,273050 -891,FR,TR,201812,1,2,84270,33200 -891,FR,TR,201812,1,2,73140,95000 -891,FR,TR,201812,1,2,1229268,1153950 -891,FR,TR,201812,1,2,1078988,1423500 -891,FR,TR,201812,1,2,1158598,1304878 -891,FR,TR,201812,1,2,775173,780247 -891,FR,TR,201812,1,2,151961,204000 -891,FR,TR,201812,1,2,842717,696690 -891,FR,TR,201812,1,2,2299616,3000000 -891,FR,TR,201812,1,2,16883,11150 -891,FR,TR,201812,1,2,87316,68750 -891,FR,TR,201812,1,2,45585,19200 -891,FR,TR,201812,3,2,2128135,542125 -891,FR,TR,201812,3,2,239095,413856 -891,FR,TR,201812,3,2,18695,2116 -891,FR,TR,201812,3,2,1855964,502851 -891,FR,TR,201812,3,2,3170,1839 -891,FR,TR,201812,3,2,101254,42155 -891,FR,TR,201812,3,2,16700,2600 -891,FR,TR,201812,3,2,15080,4000 -891,FR,TR,201812,3,2,1450,539 -891,FR,TR,201812,3,2,57262,33000 -891,FR,TR,201812,3,2,61391,49980 -891,FR,TR,201812,3,2,459715,354000 -891,FR,TR,201812,3,2,58400,20000 -891,FR,TR,201812,4,2,58257,3709 -891,FR,TR,201812,4,2,16621,167 -891,FR,TR,201812,4,2,2,0 -891,FR,TR,201812,4,2,17190,571 -891,FR,TR,201812,4,2,30647,4731 -891,FR,TR,201812,4,2,62042,1060 -891,FR,TR,201812,4,2,47362,5 -892,FR,TR,201812,1,1,44525,3710 -892,FR,TR,201812,1,1,8156,25230 -892,FR,TR,201812,1,1,117,24 -892,FR,TR,201812,1,1,38900,25000 -892,FR,TR,201812,1,1,8852,3848 -892,FR,TR,201812,1,1,2879,1020 -892,FR,TR,201812,1,1,17148,20000 -892,FR,TR,201812,1,1,604,320 -892,FR,TR,201812,1,1,4037,27200 -892,FR,TR,201812,3,1,2010,98 -892,FR,TR,201812,3,1,231116,107128 -892,FR,TR,201812,4,1,160,4 -892,FR,TR,201812,1,2,835843,209426 -892,FR,TR,201812,1,2,97690,39625 -892,FR,TR,201812,1,2,145112,58600 -892,FR,TR,201812,1,2,154755,55370 -892,FR,TR,201812,3,2,395797,52253 -892,FR,TR,201812,3,2,45373,5550 -892,FR,TR,201812,3,2,1420469,391188 -892,FR,TR,201812,3,2,256299,87391 -892,FR,TR,201812,3,2,108026,35089 -892,FR,TR,201812,3,2,335,46 -892,FR,TR,201812,4,2,92622,1979 -892,FR,TR,201812,4,2,46161,1395 -892,FR,TR,201812,4,2,2701,590 -892,FR,TR,201812,4,2,1654,27 -893,FR,TR,201812,0,1,244538,11527 -893,FR,TR,201812,1,1,1449,1214 -893,FR,TR,201812,1,1,165324,33757 -893,FR,TR,201812,1,1,44007,36089 -893,FR,TR,201812,1,1,53236,27558 -893,FR,TR,201812,1,1,25790,11900 -893,FR,TR,201812,1,1,47848,3711 -893,FR,TR,201812,1,1,535203,8269 -893,FR,TR,201812,1,1,10511,13419 -893,FR,TR,201812,1,1,144180,85713 -893,FR,TR,201812,3,1,201964,36745 -893,FR,TR,201812,3,1,29729,967 -893,FR,TR,201812,3,1,408518,74490 -893,FR,TR,201812,3,1,23079,18973 -893,FR,TR,201812,3,1,6455,1411 -893,FR,TR,201812,4,1,50708,423 -893,FR,TR,201812,4,1,183,10 -893,FR,TR,201812,4,1,277172,359 -893,FR,TR,201812,4,1,132,1 -893,FR,TR,201812,0,2,882,34 -893,FR,TR,201812,1,2,888961,121815 -893,FR,TR,201812,1,2,2235,150 -893,FR,TR,201812,1,2,443770,18680 -893,FR,TR,201812,1,2,189007,45039 -893,FR,TR,201812,1,2,3461518,555784 -893,FR,TR,201812,1,2,869690,389544 -893,FR,TR,201812,1,2,132562,133400 -893,FR,TR,201812,1,2,26448,19469 -893,FR,TR,201812,1,2,86213,38494 -893,FR,TR,201812,1,2,24774,1150 -893,FR,TR,201812,3,2,3732830,129432 -893,FR,TR,201812,3,2,4142563,25580 -893,FR,TR,201812,3,2,18260,223 -893,FR,TR,201812,3,2,5494,900 -893,FR,TR,201812,3,2,8897858,525869 -893,FR,TR,201812,3,2,110687,27918 -893,FR,TR,201812,3,2,70240,31866 -893,FR,TR,201812,3,2,1008,63 -893,FR,TR,201812,3,2,22,2 -893,FR,TR,201812,3,2,162984,59581 -893,FR,TR,201812,3,2,39200,28000 -893,FR,TR,201812,3,2,14937,7950 -893,FR,TR,201812,4,2,1296463,7789 -893,FR,TR,201812,4,2,78204,259 -893,FR,TR,201812,4,2,1702088,4850 -893,FR,TR,201812,4,2,2174,5 -893,FR,TR,201812,4,2,148064,7000 -893,FR,TR,201812,4,2,18601,31 -894,FR,TR,201812,1,2,232740,2042 -894,FR,TR,201812,1,2,150524,1314 -894,FR,TR,201812,3,2,162500,4870 -894,FR,TR,201812,3,2,21687,204 -894,FR,TR,201812,3,2,98567,21247 -894,FR,TR,201812,4,2,190200,7809 -895,FR,TR,201812,1,1,476,303 -895,FR,TR,201812,1,2,30367,21000 -896,FR,TR,201812,1,1,132547,25360 -896,FR,TR,201812,1,1,40969,9760 -896,FR,TR,201812,1,1,1899,1750 -896,FR,TR,201812,1,1,127702,155093 -896,FR,TR,201812,1,1,126570,408403 -896,FR,TR,201812,3,1,5903,135 -896,FR,TR,201812,3,1,4684,13 -896,FR,TR,201812,3,1,185466,76656 -896,FR,TR,201812,4,1,14787,47 -896,FR,TR,201812,4,1,815,5 -896,FR,TR,201812,4,1,27,1 -896,FR,TR,201812,4,1,47724,456 -896,FR,TR,201812,1,2,1755935,149088 -896,FR,TR,201812,1,2,2938980,417147 -896,FR,TR,201812,1,2,590,200 -896,FR,TR,201812,1,2,938328,447985 -896,FR,TR,201812,1,2,53025,76580 -896,FR,TR,201812,1,2,61684,53000 -896,FR,TR,201812,1,2,65875,50000 -896,FR,TR,201812,1,2,836436,342002 -896,FR,TR,201812,1,2,8305,20000 -896,FR,TR,201812,1,2,263520,121353 -896,FR,TR,201812,1,2,12615,20000 -896,FR,TR,201812,1,2,16984,12000 -896,FR,TR,201812,1,2,34888,81900 -896,FR,TR,201812,1,2,8034,1100 -896,FR,TR,201812,3,2,3601079,415417 -896,FR,TR,201812,3,2,309223,4211 -896,FR,TR,201812,3,2,5928396,954663 -896,FR,TR,201812,3,2,4100,608 -896,FR,TR,201812,3,2,866759,157982 -896,FR,TR,201812,3,2,13978,1681 -896,FR,TR,201812,3,2,3836,42000 -896,FR,TR,201812,3,2,3836,42000 -896,FR,TR,201812,3,2,122103,30062 -896,FR,TR,201812,4,2,728155,19672 -896,FR,TR,201812,4,2,35666,505 -896,FR,TR,201812,4,2,527356,8256 -896,FR,TR,201812,4,2,10393,2 -896,FR,TR,201812,4,2,57660,1280 -896,FR,TR,201812,4,2,2531,8 -910,FR,TR,201812,0,1,29193217,2369273 -910,FR,TR,201812,1,1,12755311,1835889 -910,FR,TR,201812,1,1,14097154,1870406 -910,FR,TR,201812,1,1,166555,51875 -910,FR,TR,201812,1,1,9200,983 -910,FR,TR,201812,1,1,3078366,540927 -910,FR,TR,201812,1,1,4129476,712664 -910,FR,TR,201812,1,1,153015,15896 -910,FR,TR,201812,1,1,14975740,2590177 -910,FR,TR,201812,1,1,36233623,5971850 -910,FR,TR,201812,1,1,76019199,9316989 -910,FR,TR,201812,1,1,4930644,863910 -910,FR,TR,201812,1,1,17865064,3085606 -910,FR,TR,201812,1,1,1552769,193410 -910,FR,TR,201812,1,1,107058,64273 -910,FR,TR,201812,1,1,14570,9908 -910,FR,TR,201812,1,1,65326,13502 -910,FR,TR,201812,1,1,14777,7137 -910,FR,TR,201812,1,1,4403939,1224135 -910,FR,TR,201812,1,1,42029,26435 -910,FR,TR,201812,1,1,351642,153211 -910,FR,TR,201812,1,1,18952,1392 -910,FR,TR,201812,1,1,163472,107817 -910,FR,TR,201812,1,1,20212,13766 -910,FR,TR,201812,3,1,1997398,402878 -910,FR,TR,201812,3,1,192,12 -910,FR,TR,201812,3,1,15473,1980 -910,FR,TR,201812,3,1,123560,10884 -910,FR,TR,201812,3,1,24873655,4101815 -910,FR,TR,201812,3,1,62957,6872 -910,FR,TR,201812,3,1,55944,8956 -910,FR,TR,201812,3,1,114296,17538 -910,FR,TR,201812,3,1,280714,15100 -910,FR,TR,201812,3,1,172290,10409 -910,FR,TR,201812,3,1,3168,300 -910,FR,TR,201812,4,1,356151,4708 -910,FR,TR,201812,4,1,3845,264 -910,FR,TR,201812,4,1,753,1 -910,FR,TR,201812,4,1,2560,102 -910,FR,TR,201812,4,1,139164,4895 -910,FR,TR,201812,4,1,1302,18 -910,FR,TR,201812,4,1,3295,200 -910,FR,TR,201812,4,1,17343,235 -910,FR,TR,201812,4,1,1052,20 -910,FR,TR,201812,0,2,454,30 -910,FR,TR,201812,1,2,1205973,114051 -910,FR,TR,201812,1,2,81549,9475 -910,FR,TR,201812,1,2,44706,5160 -910,FR,TR,201812,1,2,6073385,441196 -910,FR,TR,201812,1,2,106585,18930 -910,FR,TR,201812,1,2,285302,74505 -910,FR,TR,201812,2,2,6717,975 -910,FR,TR,201812,3,2,6936195,568345 -910,FR,TR,201812,3,2,15719,563 -910,FR,TR,201812,3,2,15723554,2800743 -910,FR,TR,201812,3,2,20000,7000 -910,FR,TR,201812,3,2,42151,1874 -910,FR,TR,201812,4,2,1172947,11231 -910,FR,TR,201812,4,2,41258,117 -910,FR,TR,201812,4,2,34898,619 -910,FR,TR,201812,4,2,1846854,29458 -910,FR,TR,201812,4,2,4753,2 -910,FR,TR,201812,4,2,1228,3 -910,FR,TR,201812,4,2,225723,77 -910,FR,TR,201812,4,2,67773,5980 -910,FR,TR,201812,4,2,2788,34 -910,FR,TR,201812,4,2,3218,14 -910,FR,TR,201812,5,2,1500,1 -920,FR,TR,201812,1,1,2461178,244033 -920,FR,TR,201812,1,1,1270730,131038 -920,FR,TR,201812,1,1,1207251,145579 -920,FR,TR,201812,1,1,34850,7850 -920,FR,TR,201812,1,1,129,6 -920,FR,TR,201812,1,1,10964,4090 -920,FR,TR,201812,1,1,84519,50968 -920,FR,TR,201812,1,1,400,23 -920,FR,TR,201812,3,1,27996,6236 -920,FR,TR,201812,3,1,732164,272788 -920,FR,TR,201812,4,1,2777,80 -920,FR,TR,201812,4,1,200,10 -920,FR,TR,201812,1,2,555333,138140 -920,FR,TR,201812,3,2,29698,492 -920,FR,TR,201812,3,2,5509,1120 -920,FR,TR,201812,4,2,11785,450 -920,FR,TR,201812,4,2,1238,8 -920,FR,TR,201812,9,2,334444,41476 -931,FR,TR,201812,0,1,62133,4393 -931,FR,TR,201812,1,1,496417,143959 -931,FR,TR,201812,1,1,19739,4644 -931,FR,TR,201812,1,1,36989,8411 -931,FR,TR,201812,1,1,4238144,449937 -931,FR,TR,201812,1,1,1271,60 -931,FR,TR,201812,1,1,19224,4604 -931,FR,TR,201812,1,1,115907,38735 -931,FR,TR,201812,1,1,17780,3288 -931,FR,TR,201812,1,1,44631,23122 -931,FR,TR,201812,1,1,423054,142211 -931,FR,TR,201812,1,1,200191,80023 -931,FR,TR,201812,1,1,161461,56841 -931,FR,TR,201812,1,1,39381,18532 -931,FR,TR,201812,1,1,2201708,793704 -931,FR,TR,201812,1,1,616626,145899 -931,FR,TR,201812,1,1,3035469,854651 -931,FR,TR,201812,1,1,25716,816 -931,FR,TR,201812,1,1,2914233,805853 -931,FR,TR,201812,1,1,15021265,2856367 -931,FR,TR,201812,1,1,641070,115098 -931,FR,TR,201812,1,1,169281,9904 -931,FR,TR,201812,1,1,201598,15343 -931,FR,TR,201812,1,1,218,20 -931,FR,TR,201812,1,1,242479,50670 -931,FR,TR,201812,1,1,523416,129480 -931,FR,TR,201812,2,1,2459098,566722 -931,FR,TR,201812,3,1,5293591,350725 -931,FR,TR,201812,3,1,933,217 -931,FR,TR,201812,3,1,591,124 -931,FR,TR,201812,3,1,2990,75 -931,FR,TR,201812,3,1,11088812,1276085 -931,FR,TR,201812,3,1,177370,33329 -931,FR,TR,201812,3,1,60311,7035 -931,FR,TR,201812,3,1,82196,18455 -931,FR,TR,201812,3,1,6389,3556 -931,FR,TR,201812,3,1,114204,20733 -931,FR,TR,201812,3,1,60121,14079 -931,FR,TR,201812,3,1,11099,401 -931,FR,TR,201812,4,1,101255,2205 -931,FR,TR,201812,4,1,95547,957 -931,FR,TR,201812,4,1,679,10 -931,FR,TR,201812,4,1,418107,3304 -931,FR,TR,201812,4,1,20863,208 -931,FR,TR,201812,0,2,1529,26 -931,FR,TR,201812,1,2,466348,9577 -931,FR,TR,201812,1,2,24568,1033 -931,FR,TR,201812,1,2,6518064,262585 -931,FR,TR,201812,1,2,3163,7 -931,FR,TR,201812,1,2,92334,2680 -931,FR,TR,201812,3,2,16926913,1203312 -931,FR,TR,201812,3,2,16794,1388 -931,FR,TR,201812,3,2,88632,1181 -931,FR,TR,201812,3,2,67439,1586 -931,FR,TR,201812,3,2,85645,3845 -931,FR,TR,201812,3,2,8438146,541491 -931,FR,TR,201812,3,2,50,161 -931,FR,TR,201812,3,2,35250,579 -931,FR,TR,201812,3,2,592,16 -931,FR,TR,201812,3,2,46200,12750 -931,FR,TR,201812,4,2,7206188,18838 -931,FR,TR,201812,4,2,41699,129 -931,FR,TR,201812,4,2,179930,206 -931,FR,TR,201812,4,2,2000651,6479 -931,FR,TR,201812,4,2,36035,265 -931,FR,TR,201812,4,2,8390,30 -931,FR,TR,201812,4,2,181493,2488 -931,FR,TR,201812,4,2,123853,86 -931,FR,TR,201812,4,2,810565,28390 -931,FR,TR,201812,4,2,76968,216 -931,FR,TR,201812,4,2,14815,66 -931,FR,TR,201812,5,2,1605,33 -939,FR,TR,201812,0,1,80960,10364 -939,FR,TR,201812,1,1,29018415,213471 -939,FR,TR,201812,1,1,919157,201691 -939,FR,TR,201812,1,1,89687,34900 -939,FR,TR,201812,1,1,1923773,338193 -939,FR,TR,201812,1,1,2574,600 -939,FR,TR,201812,1,1,48390,10412 -939,FR,TR,201812,1,1,91604,31724 -939,FR,TR,201812,1,1,166284,10304 -939,FR,TR,201812,1,1,30806,2250 -939,FR,TR,201812,1,1,39658,13847 -939,FR,TR,201812,1,1,242963,88857 -939,FR,TR,201812,1,1,76505,10211 -939,FR,TR,201812,1,1,12487,2709 -939,FR,TR,201812,1,1,9211,3030 -939,FR,TR,201812,1,1,9623,3594 -939,FR,TR,201812,1,1,132,164 -939,FR,TR,201812,1,1,53777,22310 -939,FR,TR,201812,1,1,3336115,991927 -939,FR,TR,201812,1,1,539163,249206 -939,FR,TR,201812,1,1,2769292,737649 -939,FR,TR,201812,1,1,941663,380968 -939,FR,TR,201812,1,1,6243992,1752505 -939,FR,TR,201812,1,1,18860,6396 -939,FR,TR,201812,1,1,72424,32358 -939,FR,TR,201812,1,1,128671,27177 -939,FR,TR,201812,1,1,34320,4750 -939,FR,TR,201812,1,1,6,0 -939,FR,TR,201812,1,1,35846,14238 -939,FR,TR,201812,1,1,906486,236257 -939,FR,TR,201812,2,1,1577829,368955 -939,FR,TR,201812,3,1,2060596,300249 -939,FR,TR,201812,3,1,15268,834 -939,FR,TR,201812,3,1,17770329,2522410 -939,FR,TR,201812,3,1,547829,37856 -939,FR,TR,201812,3,1,16265,1087 -939,FR,TR,201812,3,1,12476,1850 -939,FR,TR,201812,3,1,1994,1 -939,FR,TR,201812,3,1,63198,21959 -939,FR,TR,201812,3,1,21210,24167 -939,FR,TR,201812,4,1,185040,13647 -939,FR,TR,201812,4,1,6101100,1660 -939,FR,TR,201812,4,1,338,8 -939,FR,TR,201812,4,1,73,0 -939,FR,TR,201812,4,1,2238178,23663 -939,FR,TR,201812,4,1,11482113,2389 -939,FR,TR,201812,0,2,175,3 -939,FR,TR,201812,1,2,1400725,43764 -939,FR,TR,201812,1,2,11050,50 -939,FR,TR,201812,1,2,183782,20937 -939,FR,TR,201812,1,2,105093,24422 -939,FR,TR,201812,1,2,11251430,609656 -939,FR,TR,201812,1,2,23680,8023 -939,FR,TR,201812,1,2,37613,4933 -939,FR,TR,201812,1,2,424456,43731 -939,FR,TR,201812,1,2,59963,5351 -939,FR,TR,201812,1,2,239446,7857 -939,FR,TR,201812,1,2,87000,7451 -939,FR,TR,201812,3,2,11524123,421777 -939,FR,TR,201812,3,2,469408,28914 -939,FR,TR,201812,3,2,24315,326 -939,FR,TR,201812,3,2,16703874,1536620 -939,FR,TR,201812,3,2,8822,498 -939,FR,TR,201812,3,2,20,21 -939,FR,TR,201812,3,2,207990,12916 -939,FR,TR,201812,3,2,138132,5974 -939,FR,TR,201812,3,2,32828,2409 -939,FR,TR,201812,4,2,30321567,35446 -939,FR,TR,201812,4,2,1759,1 -939,FR,TR,201812,4,2,647543,1835 -939,FR,TR,201812,4,2,1290,31 -939,FR,TR,201812,4,2,1380215,9656 -939,FR,TR,201812,4,2,133039,259 -939,FR,TR,201812,4,2,36192,60 -939,FR,TR,201812,4,2,12749,63 -939,FR,TR,201812,4,2,19126,85 -939,FR,TR,201812,4,2,656307,38870 -939,FR,TR,201812,4,2,48174,81 -939,FR,TR,201812,4,2,20896,108 -941,FR,TR,201812,1,1,2444,840 -941,FR,TR,201812,1,1,191582,114051 -941,FR,TR,201812,1,1,5668,1003 -941,FR,TR,201812,1,1,194,1300 -941,FR,TR,201812,1,1,34234,4299 -941,FR,TR,201812,1,1,11694,12285 -941,FR,TR,201812,1,1,49078,18405 -941,FR,TR,201812,1,1,24093,10278 -941,FR,TR,201812,1,1,1511,572 -941,FR,TR,201812,1,1,245079,164569 -941,FR,TR,201812,1,1,46907,11528 -941,FR,TR,201812,3,1,2769,191 -941,FR,TR,201812,3,1,2043,600 -941,FR,TR,201812,3,1,6924,454 -941,FR,TR,201812,3,1,1601296,457676 -941,FR,TR,201812,3,1,10778,1097 -941,FR,TR,201812,3,1,11725,4370 -941,FR,TR,201812,4,1,34911,659 -941,FR,TR,201812,4,1,114,31 -941,FR,TR,201812,4,1,1821,300 -941,FR,TR,201812,1,2,225865,19061 -941,FR,TR,201812,1,2,61587,19460 -941,FR,TR,201812,3,2,1064,596 -941,FR,TR,201812,3,2,13000,900 -941,FR,TR,201812,4,2,909,19 -949,FR,TR,201812,0,1,592308,131849 -949,FR,TR,201812,1,1,369281,73635 -949,FR,TR,201812,1,1,29184,16500 -949,FR,TR,201812,1,1,110794,31997 -949,FR,TR,201812,1,1,235452,39749 -949,FR,TR,201812,1,1,11772,780 -949,FR,TR,201812,1,1,1558980,303500 -949,FR,TR,201812,1,1,185477,50694 -949,FR,TR,201812,1,1,13200,9240 -949,FR,TR,201812,1,1,226902,57469 -949,FR,TR,201812,1,1,593266,399232 -949,FR,TR,201812,1,1,59487,43810 -949,FR,TR,201812,1,1,113016,22837 -949,FR,TR,201812,1,1,30248,29255 -949,FR,TR,201812,1,1,181260,31823 -949,FR,TR,201812,1,1,182378,61183 -949,FR,TR,201812,1,1,64689,24605 -949,FR,TR,201812,1,1,1393364,373472 -949,FR,TR,201812,1,1,127326,35185 -949,FR,TR,201812,1,1,1282295,430515 -949,FR,TR,201812,1,1,19301,6641 -949,FR,TR,201812,1,1,55506,28677 -949,FR,TR,201812,1,1,62012,27711 -949,FR,TR,201812,1,1,96775,15752 -949,FR,TR,201812,1,1,37214,6241 -949,FR,TR,201812,1,1,13326,1420 -949,FR,TR,201812,3,1,900317,161549 -949,FR,TR,201812,3,1,398,305 -949,FR,TR,201812,3,1,12451,4222 -949,FR,TR,201812,3,1,57225,23675 -949,FR,TR,201812,3,1,13295,212 -949,FR,TR,201812,3,1,6552139,1914483 -949,FR,TR,201812,3,1,168,0 -949,FR,TR,201812,3,1,11248,1802 -949,FR,TR,201812,3,1,36845,8720 -949,FR,TR,201812,3,1,7062,5 -949,FR,TR,201812,3,1,41713,6544 -949,FR,TR,201812,3,1,29039,20400 -949,FR,TR,201812,3,1,78452,17245 -949,FR,TR,201812,3,1,13190,7104 -949,FR,TR,201812,4,1,1361567,31307 -949,FR,TR,201812,4,1,57652,1198 -949,FR,TR,201812,4,1,760,15 -949,FR,TR,201812,4,1,5,0 -949,FR,TR,201812,4,1,79773,4998 -949,FR,TR,201812,4,1,2381,32 -949,FR,TR,201812,0,2,1780,18 -949,FR,TR,201812,1,2,184519,31316 -949,FR,TR,201812,1,2,19432,3578 -949,FR,TR,201812,1,2,1457547,240088 -949,FR,TR,201812,1,2,1020,66 -949,FR,TR,201812,1,2,87380,49200 -949,FR,TR,201812,1,2,161400,69200 -949,FR,TR,201812,1,2,16420,9167 -949,FR,TR,201812,1,2,103230,17969 -949,FR,TR,201812,3,2,1850182,485115 -949,FR,TR,201812,3,2,21725,124 -949,FR,TR,201812,3,2,227,2 -949,FR,TR,201812,3,2,14000,1136 -949,FR,TR,201812,3,2,4456276,881017 -949,FR,TR,201812,3,2,7426,88 -949,FR,TR,201812,3,2,9082,1095 -949,FR,TR,201812,3,2,29392,407 -949,FR,TR,201812,3,2,59510,378 -949,FR,TR,201812,4,2,607719,3677 -949,FR,TR,201812,4,2,38700,121 -949,FR,TR,201812,4,2,33849,131 -949,FR,TR,201812,4,2,177329,1095 -949,FR,TR,201812,4,2,55832,386 -949,FR,TR,201812,4,2,3326,5 -949,FR,TR,201812,4,2,17313,122 -949,FR,TR,201812,4,2,3596,83 -949,FR,TR,201812,4,2,163700,6450 -949,FR,TR,201812,4,2,3692,7 -949,FR,TR,201812,4,2,12374,83 -949,FR,TR,201812,8,2,615093,326341 -951,FR,TR,201812,0,1,3762,69 -951,FR,TR,201812,1,1,671,48 -951,FR,TR,201812,1,1,330665,37836 -951,FR,TR,201812,1,1,47,58 -951,FR,TR,201812,1,1,89168,13628 -951,FR,TR,201812,1,1,420,175 -951,FR,TR,201812,3,1,20770,1924 -951,FR,TR,201812,3,1,20343,29770 -951,FR,TR,201812,3,1,719668,210339 -951,FR,TR,201812,3,1,68629,42772 -951,FR,TR,201812,3,1,20232,10278 -951,FR,TR,201812,4,1,5673,892 -951,FR,TR,201812,4,1,1708,20 -951,FR,TR,201812,4,1,463,105 -951,FR,TR,201812,1,2,1175,389 -951,FR,TR,201812,1,2,358113,28899 -951,FR,TR,201812,1,2,103743,270545 -951,FR,TR,201812,3,2,26748,3529 -951,FR,TR,201812,3,2,461,44 -951,FR,TR,201812,3,2,263124,57498 -951,FR,TR,201812,4,2,493,37 -951,FR,TR,201812,4,2,39,0 -951,FR,TR,201812,4,2,443,57 -952,FR,TR,201812,1,1,2338,3088 -952,FR,TR,201812,1,1,6018,12869 -952,FR,TR,201812,1,1,36370,8881 -952,FR,TR,201812,1,1,198069,143926 -952,FR,TR,201812,1,1,58310,23826 -952,FR,TR,201812,1,1,22824,18360 -952,FR,TR,201812,1,1,39779,31268 -952,FR,TR,201812,1,1,19364,16131 -952,FR,TR,201812,1,1,31549,28498 -952,FR,TR,201812,1,1,59998,28990 -952,FR,TR,201812,1,1,127954,92090 -952,FR,TR,201812,1,1,148403,104603 -952,FR,TR,201812,1,1,40840,33540 -952,FR,TR,201812,3,1,13732,925 -952,FR,TR,201812,3,1,1531,200 -952,FR,TR,201812,3,1,156182,59051 -952,FR,TR,201812,3,1,26186,3930 -952,FR,TR,201812,3,1,1088,70 -952,FR,TR,201812,3,1,371551,967306 -952,FR,TR,201812,4,1,32,0 -952,FR,TR,201812,4,1,137,1 -952,FR,TR,201812,4,1,2989,295 -952,FR,TR,201812,4,1,713,65 -952,FR,TR,201812,1,2,18942,1244 -952,FR,TR,201812,1,2,8581,4860 -952,FR,TR,201812,1,2,211088,156990 -952,FR,TR,201812,1,2,71263,44904 -952,FR,TR,201812,1,2,26542,22589 -952,FR,TR,201812,1,2,150670,192398 -952,FR,TR,201812,3,2,99771,86545 -952,FR,TR,201812,3,2,1776228,107183 -952,FR,TR,201812,3,2,185568,173221 -952,FR,TR,201812,3,2,2841,379 -952,FR,TR,201812,3,2,34333,26805 -952,FR,TR,201812,4,2,54146,5872 -952,FR,TR,201812,4,2,3215,54 -952,FR,TR,201812,4,2,11432,2890 -961,FR,TR,201812,3,1,15118,335 -961,FR,TR,201812,3,1,77,0 -961,FR,TR,201812,3,1,261,0 -961,FR,TR,201812,3,1,254,0 -961,FR,TR,201812,3,1,306586,12764 -961,FR,TR,201812,3,1,168,0 -961,FR,TR,201812,3,1,81,0 -961,FR,TR,201812,4,1,31072,1214 -961,FR,TR,201812,4,1,1889,76 -961,FR,TR,201812,4,1,799,6 -961,FR,TR,201812,1,2,48967,1882 -961,FR,TR,201812,3,2,252,11 -961,FR,TR,201812,3,2,169545,4706 -961,FR,TR,201812,4,2,71406,382 -961,FR,TR,201812,4,2,6243,75 -961,FR,TR,201812,4,2,4462,51 -961,FR,TR,201812,4,2,4749,100 -962,FR,TR,201812,0,1,3470,245 -962,FR,TR,201812,1,1,427560,32959 -962,FR,TR,201812,1,1,1720994,282555 -962,FR,TR,201812,1,1,159347,22312 -962,FR,TR,201812,1,1,17055,1241 -962,FR,TR,201812,1,1,363535,76380 -962,FR,TR,201812,1,1,7160,6336 -962,FR,TR,201812,1,1,28410,9386 -962,FR,TR,201812,1,1,8794,6531 -962,FR,TR,201812,1,1,1193935,258541 -962,FR,TR,201812,1,1,820815,137177 -962,FR,TR,201812,1,1,3297,1776 -962,FR,TR,201812,1,1,12674,5785 -962,FR,TR,201812,3,1,1520775,226675 -962,FR,TR,201812,3,1,72920,5417 -962,FR,TR,201812,3,1,102002,16818 -962,FR,TR,201812,3,1,35895,9873 -962,FR,TR,201812,3,1,821,15 -962,FR,TR,201812,3,1,7153940,1115725 -962,FR,TR,201812,3,1,35,0 -962,FR,TR,201812,3,1,32,0 -962,FR,TR,201812,3,1,142315,16142 -962,FR,TR,201812,3,1,450,7 -962,FR,TR,201812,3,1,1678,90 -962,FR,TR,201812,3,1,28370,2102 -962,FR,TR,201812,3,1,132233,24189 -962,FR,TR,201812,3,1,6605,911 -962,FR,TR,201812,4,1,63008,4836 -962,FR,TR,201812,4,1,63853,2434 -962,FR,TR,201812,4,1,2702,117 -962,FR,TR,201812,4,1,168569,10061 -962,FR,TR,201812,4,1,12169,755 -962,FR,TR,201812,4,1,5521,323 -962,FR,TR,201812,4,1,1962,350 -962,FR,TR,201812,4,1,970,79 -962,FR,TR,201812,4,1,479,24 -962,FR,TR,201812,0,2,28,1 -962,FR,TR,201812,1,2,116156,12571 -962,FR,TR,201812,1,2,63789,6888 -962,FR,TR,201812,1,2,1950948,362122 -962,FR,TR,201812,1,2,92087,31794 -962,FR,TR,201812,1,2,8964,3583 -962,FR,TR,201812,1,2,213387,131933 -962,FR,TR,201812,1,2,62957,10735 -962,FR,TR,201812,3,2,536040,49300 -962,FR,TR,201812,3,2,4870,23 -962,FR,TR,201812,3,2,1970,65 -962,FR,TR,201812,3,2,10960,764 -962,FR,TR,201812,3,2,1193520,100173 -962,FR,TR,201812,3,2,32950,6132 -962,FR,TR,201812,3,2,201,27 -962,FR,TR,201812,4,2,55038,2994 -962,FR,TR,201812,4,2,527,17 -962,FR,TR,201812,4,2,28460,1104 -962,FR,TR,201812,4,2,2721,9 -962,FR,TR,201812,4,2,6552,38 -962,FR,TR,201812,4,2,35859,6494 -962,FR,TR,201812,4,2,4244,54 -962,FR,TR,201812,4,2,93416,15550 -962,FR,TR,201812,4,2,7550,34 -963,FR,TR,201812,0,1,5819445,231235 -963,FR,TR,201812,1,1,533369,15683 -963,FR,TR,201812,1,1,46841,9907 -963,FR,TR,201812,1,1,137,4 -963,FR,TR,201812,1,1,13373,896 -963,FR,TR,201812,1,1,2736669,96110 -963,FR,TR,201812,1,1,65911,912 -963,FR,TR,201812,1,1,39805,4540 -963,FR,TR,201812,1,1,35326,2910 -963,FR,TR,201812,1,1,121990,8927 -963,FR,TR,201812,1,1,312146,16458 -963,FR,TR,201812,1,1,54209,2531 -963,FR,TR,201812,3,1,7964317,246648 -963,FR,TR,201812,3,1,48202,2046 -963,FR,TR,201812,3,1,80374,290 -963,FR,TR,201812,3,1,65394,2297 -963,FR,TR,201812,3,1,260,1 -963,FR,TR,201812,3,1,32676,144 -963,FR,TR,201812,3,1,24238680,1011706 -963,FR,TR,201812,3,1,8752,39 -963,FR,TR,201812,3,1,115813,608 -963,FR,TR,201812,3,1,99201,3618 -963,FR,TR,201812,3,1,51520,722 -963,FR,TR,201812,3,1,9887,509 -963,FR,TR,201812,3,1,45699,1499 -963,FR,TR,201812,3,1,12980,1582 -963,FR,TR,201812,3,1,873133,36335 -963,FR,TR,201812,3,1,6270865,354680 -963,FR,TR,201812,4,1,2230602,15855 -963,FR,TR,201812,4,1,407050,6360 -963,FR,TR,201812,4,1,174,26 -963,FR,TR,201812,4,1,27553,469 -963,FR,TR,201812,4,1,2019,6 -963,FR,TR,201812,4,1,2099,24 -963,FR,TR,201812,4,1,2651214,61117 -963,FR,TR,201812,4,1,25537,552 -963,FR,TR,201812,4,1,117227,785 -963,FR,TR,201812,4,1,34480,336 -963,FR,TR,201812,4,1,5131,639 -963,FR,TR,201812,4,1,300,30 -963,FR,TR,201812,4,1,15296,560 -963,FR,TR,201812,4,1,4063,71 -963,FR,TR,201812,4,1,638,35 -963,FR,TR,201812,0,2,2853,17 -963,FR,TR,201812,1,2,35370,1896 -963,FR,TR,201812,1,2,824521,11652 -963,FR,TR,201812,3,2,947949,24578 -963,FR,TR,201812,3,2,1305954,21875 -963,FR,TR,201812,3,2,122,9 -963,FR,TR,201812,4,2,4270611,9135 -963,FR,TR,201812,4,2,558,2 -963,FR,TR,201812,4,2,15641,286 -963,FR,TR,201812,4,2,3178,61 -963,FR,TR,201812,4,2,16995,3351 -963,FR,TR,201812,4,2,1741,15 -963,FR,TR,201812,4,2,1779,21 -971,FR,TR,201812,0,1,3128,799 -971,FR,TR,201812,1,1,6968,1188 -971,FR,TR,201812,1,1,290849,76485 -971,FR,TR,201812,1,1,11618,2187 -971,FR,TR,201812,1,1,73089,19099 -971,FR,TR,201812,1,1,372422,117293 -971,FR,TR,201812,1,1,55768,7616 -971,FR,TR,201812,1,1,27197,8931 -971,FR,TR,201812,1,1,124472,38344 -971,FR,TR,201812,1,1,58672,18957 -971,FR,TR,201812,1,1,60107,10264 -971,FR,TR,201812,3,1,181999,27755 -971,FR,TR,201812,3,1,1310,360 -971,FR,TR,201812,3,1,48,0 -971,FR,TR,201812,3,1,3410005,826841 -971,FR,TR,201812,3,1,823,115 -971,FR,TR,201812,3,1,4493,538 -971,FR,TR,201812,3,1,37483,10113 -971,FR,TR,201812,3,1,5273,1533 -971,FR,TR,201812,4,1,43810,1001 -971,FR,TR,201812,4,1,379,9 -971,FR,TR,201812,4,1,151479,38801 -971,FR,TR,201812,4,1,890,8 -971,FR,TR,201812,0,2,46,2 -971,FR,TR,201812,1,2,1473,7 -971,FR,TR,201812,1,2,11595,1234 -971,FR,TR,201812,1,2,1970624,210677 -971,FR,TR,201812,1,2,173516,157564 -971,FR,TR,201812,1,2,11464,22580 -971,FR,TR,201812,1,2,22968,9000 -971,FR,TR,201812,1,2,34263,5467 -971,FR,TR,201812,3,2,877659,138671 -971,FR,TR,201812,3,2,57725,569 -971,FR,TR,201812,3,2,858,29 -971,FR,TR,201812,3,2,90525,12912 -971,FR,TR,201812,3,2,2361086,308658 -971,FR,TR,201812,3,2,30,24 -971,FR,TR,201812,4,2,85943,757 -971,FR,TR,201812,4,2,57431,168 -971,FR,TR,201812,4,2,5565,38 -971,FR,TR,201812,4,2,58720,73 -971,FR,TR,201812,4,2,8,0 -971,FR,TR,201812,4,2,18414,2580 -972,FR,TR,201812,1,1,361,447 -972,FR,TR,201812,1,1,50,59 -972,FR,TR,201812,1,1,31363,19180 -972,FR,TR,201812,1,1,407,125 -972,FR,TR,201812,1,1,249,570 -972,FR,TR,201812,3,1,23655,7580 -972,FR,TR,201812,4,1,619,5 -972,FR,TR,201812,1,2,307396,124598 -972,FR,TR,201812,1,2,388962,247135 -972,FR,TR,201812,1,2,38547,14594 -972,FR,TR,201812,1,2,330085,278749 -972,FR,TR,201812,3,2,31554,1843 -972,FR,TR,201812,3,2,61363,23182 -972,FR,TR,201812,3,2,386341,151637 -972,FR,TR,201812,3,2,21955,43702 -972,FR,TR,201812,4,2,395,33 -972,FR,TR,201812,4,2,2056,1 -972,FR,TR,201812,4,2,6998,1740 -973,FR,TR,201812,0,1,147,8 -973,FR,TR,201812,1,1,38977,5904 -973,FR,TR,201812,1,1,11099,12356 -973,FR,TR,201812,1,1,185267,53716 -973,FR,TR,201812,1,1,7595,4068 -973,FR,TR,201812,1,1,26980,11240 -973,FR,TR,201812,1,1,16746,11530 -973,FR,TR,201812,1,1,122798,76628 -973,FR,TR,201812,1,1,11374,11723 -973,FR,TR,201812,1,1,28527,13422 -973,FR,TR,201812,1,1,26882,15814 -973,FR,TR,201812,1,1,93032,91525 -973,FR,TR,201812,1,1,190599,187823 -973,FR,TR,201812,1,1,71692,37991 -973,FR,TR,201812,1,1,42576,28399 -973,FR,TR,201812,1,1,258750,192160 -973,FR,TR,201812,1,1,57773,93630 -973,FR,TR,201812,3,1,86891,20079 -973,FR,TR,201812,3,1,14,1 -973,FR,TR,201812,3,1,548444,168296 -973,FR,TR,201812,3,1,1676,387 -973,FR,TR,201812,4,1,9935,769 -973,FR,TR,201812,4,1,12584,1140 -973,FR,TR,201812,4,1,377,45 -973,FR,TR,201812,4,1,7953,1084 -973,FR,TR,201812,4,1,327,21 -973,FR,TR,201812,1,2,135,41 -973,FR,TR,201812,1,2,7073,1712 -973,FR,TR,201812,1,2,49448,35174 -973,FR,TR,201812,1,2,21974,25724 -973,FR,TR,201812,1,2,57575,43368 -973,FR,TR,201812,1,2,64188,183932 -973,FR,TR,201812,1,2,5429,3312 -973,FR,TR,201812,1,2,27847,24837 -973,FR,TR,201812,3,2,5741,2272 -973,FR,TR,201812,3,2,518,10 -973,FR,TR,201812,3,2,485061,80494 -973,FR,TR,201812,3,2,3498,174 -973,FR,TR,201812,3,2,172064,202605 -973,FR,TR,201812,4,2,17042,2357 -973,FR,TR,201812,4,2,1994,48 -973,FR,TR,201812,4,2,1087,3 -974,FR,TR,201812,0,1,282,22 -974,FR,TR,201812,1,1,10100,1000 -974,FR,TR,201812,1,1,40864,8212 -974,FR,TR,201812,1,1,20453,4900 -974,FR,TR,201812,1,1,2113,576 -974,FR,TR,201812,1,1,25000,5328 -974,FR,TR,201812,1,1,98,10 -974,FR,TR,201812,3,1,30788,4300 -974,FR,TR,201812,3,1,901,125 -974,FR,TR,201812,3,1,68,4 -974,FR,TR,201812,3,1,127007,32640 -974,FR,TR,201812,4,1,4395,287 -974,FR,TR,201812,4,1,9254,717 -974,FR,TR,201812,4,1,34,4 -974,FR,TR,201812,4,1,1122,177 -974,FR,TR,201812,4,1,1742,70 -974,FR,TR,201812,0,2,116,8 -974,FR,TR,201812,1,2,535,47 -974,FR,TR,201812,1,2,673,1 -974,FR,TR,201812,1,2,41448,1402 -974,FR,TR,201812,3,2,26843,2062 -974,FR,TR,201812,3,2,164329,11712 -974,FR,TR,201812,4,2,20095,567 -974,FR,TR,201812,4,2,765,14 -974,FR,TR,201812,4,2,534,13 -974,FR,TR,201812,4,2,20704,320 -974,FR,TR,201812,4,2,7400,50 -974,FR,TR,201812,4,2,10750,1890 -974,FR,TR,201812,5,2,1115,18 -975,FR,TR,201812,0,1,2094,107 -975,FR,TR,201812,1,1,13881,2156 -975,FR,TR,201812,1,1,5712,1350 -975,FR,TR,201812,1,1,9583,5550 -975,FR,TR,201812,1,1,423082,144842 -975,FR,TR,201812,1,1,5740,1016 -975,FR,TR,201812,1,1,11946,4560 -975,FR,TR,201812,1,1,15035,6160 -975,FR,TR,201812,1,1,82008,25645 -975,FR,TR,201812,1,1,368180,139652 -975,FR,TR,201812,1,1,26447,9617 -975,FR,TR,201812,1,1,83416,36059 -975,FR,TR,201812,1,1,858,1064 -975,FR,TR,201812,1,1,216031,23927 -975,FR,TR,201812,1,1,3288,2326 -975,FR,TR,201812,1,1,12206,19240 -975,FR,TR,201812,1,1,284914,83955 -975,FR,TR,201812,1,1,12273,2484 -975,FR,TR,201812,1,1,20115,16087 -975,FR,TR,201812,1,1,1682628,796647 -975,FR,TR,201812,1,1,11565,5450 -975,FR,TR,201812,1,1,1742,7045 -975,FR,TR,201812,1,1,41110,24757 -975,FR,TR,201812,3,1,82492,16115 -975,FR,TR,201812,3,1,30128,12717 -975,FR,TR,201812,3,1,4861,7568 -975,FR,TR,201812,3,1,4729593,1071689 -975,FR,TR,201812,3,1,18171,1472 -975,FR,TR,201812,3,1,47186,7500 -975,FR,TR,201812,3,1,10972,3404 -975,FR,TR,201812,3,1,343,44 -975,FR,TR,201812,4,1,11450,702 -975,FR,TR,201812,4,1,709,40 -975,FR,TR,201812,4,1,23111,1066 -975,FR,TR,201812,4,1,48,2 -975,FR,TR,201812,1,2,85906,12950 -975,FR,TR,201812,1,2,1795,292 -975,FR,TR,201812,1,2,18924,262 -975,FR,TR,201812,1,2,291539,21061 -975,FR,TR,201812,1,2,4500,15000 -975,FR,TR,201812,1,2,302463,3431 -975,FR,TR,201812,1,2,461560,139583 -975,FR,TR,201812,3,2,203691,17975 -975,FR,TR,201812,3,2,606215,149381 -975,FR,TR,201812,4,2,57138,114 -975,FR,TR,201812,4,2,10901,50 -975,FR,TR,201812,4,2,129517,1487 -975,FR,TR,201812,4,2,23638,1950 -976,FR,TR,201812,1,1,3346,311 -976,FR,TR,201812,1,1,47093,10670 -976,FR,TR,201812,1,1,281,722 -976,FR,TR,201812,1,1,10675,11068 -976,FR,TR,201812,1,1,37,46 -976,FR,TR,201812,1,1,688,1395 -976,FR,TR,201812,1,1,261,331 -976,FR,TR,201812,1,1,539,414 -976,FR,TR,201812,1,1,20053,24500 -976,FR,TR,201812,1,1,76258,72380 -976,FR,TR,201812,1,1,627,350 -976,FR,TR,201812,3,1,2104,129 -976,FR,TR,201812,3,1,62,5 -976,FR,TR,201812,3,1,168813,72140 -976,FR,TR,201812,3,1,2683,140 -976,FR,TR,201812,3,1,12672,23515 -976,FR,TR,201812,4,1,340,4 -976,FR,TR,201812,4,1,262,3 -976,FR,TR,201812,4,1,28,2 -976,FR,TR,201812,4,1,360,1 -976,FR,TR,201812,1,2,11341,731 -976,FR,TR,201812,1,2,117436,30156 -976,FR,TR,201812,1,2,23057,108190 -976,FR,TR,201812,1,2,22302,3577 -976,FR,TR,201812,3,2,30620,10370 -976,FR,TR,201812,3,2,53664,27391 -976,FR,TR,201812,4,2,9229,135 -976,FR,TR,201812,4,2,396,0 -979,FR,TR,201812,0,1,64229,1347 -979,FR,TR,201812,1,1,322729,106983 -979,FR,TR,201812,1,1,10041,4008 -979,FR,TR,201812,1,1,22862,9520 -979,FR,TR,201812,1,1,50656,10092 -979,FR,TR,201812,1,1,200,16 -979,FR,TR,201812,1,1,16330,1950 -979,FR,TR,201812,1,1,48972,39984 -979,FR,TR,201812,1,1,1202729,423430 -979,FR,TR,201812,1,1,31480,12385 -979,FR,TR,201812,1,1,4611,2237 -979,FR,TR,201812,1,1,846252,406298 -979,FR,TR,201812,1,1,58805,14175 -979,FR,TR,201812,1,1,108258,72542 -979,FR,TR,201812,1,1,3258,1360 -979,FR,TR,201812,1,1,39292,15401 -979,FR,TR,201812,1,1,704701,310253 -979,FR,TR,201812,1,1,28795,12025 -979,FR,TR,201812,1,1,99114,10929 -979,FR,TR,201812,1,1,182678,114280 -979,FR,TR,201812,1,1,1695812,326213 -979,FR,TR,201812,1,1,93234,43856 -979,FR,TR,201812,1,1,1317262,559914 -979,FR,TR,201812,1,1,166022,101993 -979,FR,TR,201812,1,1,71359,40380 -979,FR,TR,201812,1,1,4208,440 -979,FR,TR,201812,1,1,7995,5163 -979,FR,TR,201812,1,1,317567,133433 -979,FR,TR,201812,1,1,90748,29224 -979,FR,TR,201812,3,1,1154176,113985 -979,FR,TR,201812,3,1,216967,55535 -979,FR,TR,201812,3,1,24802,5801 -979,FR,TR,201812,3,1,12,5 -979,FR,TR,201812,3,1,22150,412 -979,FR,TR,201812,3,1,419964,11023 -979,FR,TR,201812,3,1,4075826,932858 -979,FR,TR,201812,3,1,1391,105 -979,FR,TR,201812,3,1,168212,51667 -979,FR,TR,201812,3,1,2301,676 -979,FR,TR,201812,3,1,27301,15908 -979,FR,TR,201812,3,1,8224,51 -979,FR,TR,201812,3,1,75290,49598 -979,FR,TR,201812,3,1,148073,52370 -979,FR,TR,201812,4,1,503582,3642 -979,FR,TR,201812,4,1,219158,1775 -979,FR,TR,201812,4,1,1412,8 -979,FR,TR,201812,4,1,168,24 -979,FR,TR,201812,4,1,864070,7493 -979,FR,TR,201812,4,1,316325,355 -979,FR,TR,201812,4,1,20161,1 -979,FR,TR,201812,4,1,15123,302 -979,FR,TR,201812,0,2,1984,41 -979,FR,TR,201812,1,2,211728,19793 -979,FR,TR,201812,1,2,28302,1752 -979,FR,TR,201812,1,2,273905,20414 -979,FR,TR,201812,1,2,10316,539 -979,FR,TR,201812,1,2,4686790,389005 -979,FR,TR,201812,1,2,30522,10957 -979,FR,TR,201812,1,2,4507,290 -979,FR,TR,201812,1,2,1012696,37449 -979,FR,TR,201812,1,2,110640,29093 -979,FR,TR,201812,3,2,3668789,143167 -979,FR,TR,201812,3,2,61,4 -979,FR,TR,201812,3,2,10526,514 -979,FR,TR,201812,3,2,1063,48 -979,FR,TR,201812,3,2,6944590,354756 -979,FR,TR,201812,3,2,7697,174 -979,FR,TR,201812,3,2,698,13 -979,FR,TR,201812,3,2,127,352 -979,FR,TR,201812,3,2,192719,14595 -979,FR,TR,201812,3,2,2184,80 -979,FR,TR,201812,3,2,48,0 -979,FR,TR,201812,3,2,121249,23883 -979,FR,TR,201812,4,2,1024298,6142 -979,FR,TR,201812,4,2,2130,27 -979,FR,TR,201812,4,2,712820,172 -979,FR,TR,201812,4,2,18512,2 -979,FR,TR,201812,4,2,1735709,7565 -979,FR,TR,201812,4,2,3340,10 -979,FR,TR,201812,4,2,697,6 -979,FR,TR,201812,4,2,19,0 -979,FR,TR,201812,4,2,3308,21 -979,FR,TR,201812,4,2,32443,98 -979,FR,TR,201812,4,2,394735,15770 -979,FR,TR,201812,4,2,35870,52 -979,FR,TR,201812,4,2,45070,300 -979,FR,TR,201812,5,2,3309,12 -979,FR,TR,201812,8,2,885862,417437 -999,FR,TR,201812,1,1,14398,0 -999,FR,TR,201812,1,1,40550,0 -999,FR,TR,201812,3,1,369,0 -999,FR,TR,201812,4,1,4883,0 -999,FR,TR,201812,0,2,200,1 -999,FR,TR,201812,1,2,2927353,2900959 -999,FR,TR,201812,1,2,39205,3093 -999,FR,TR,201812,1,2,1202639,5131148 -999,FR,TR,201812,1,2,2187818,4195095 -999,FR,TR,201812,1,2,959376,619787 -999,FR,TR,201812,1,2,423406,309040 -999,FR,TR,201812,1,2,72558,71067 -999,FR,TR,201812,1,2,4775,0 -999,FR,TR,201812,1,2,576697,507266 -999,FR,TR,201812,1,2,41837,34700 -999,FR,TR,201812,1,2,395835,194212 -999,FR,TR,201812,1,2,472395,175604 -999,FR,TR,201812,1,2,20288,20000 -999,FR,TR,201812,1,2,12617,22000 -999,FR,TR,201812,1,2,215062,154750 -999,FR,TR,201812,1,2,306435,196475 -999,FR,TR,201812,1,2,39120,20000 -999,FR,TR,201812,1,2,65112,11920 -999,FR,TR,201812,2,2,261111,187280 -999,FR,TR,201812,3,2,1999282,273308 -999,FR,TR,201812,3,2,70804,7625 -999,FR,TR,201812,3,2,1740533,252441 -999,FR,TR,201812,3,2,288610,160417 -999,FR,TR,201812,3,2,100,140 -999,FR,TR,201812,3,2,109314,51926 -999,FR,TR,201812,3,2,13129,2062 -999,FR,TR,201812,3,2,58256,10753 -999,FR,TR,201812,3,2,38640,20000 -999,FR,TR,201812,3,2,36296,20826 -999,FR,TR,201812,3,2,36428,23240 -999,FR,TR,201812,3,2,250287,212194 -999,FR,TR,201812,3,2,6800,1050 -999,FR,TR,201812,3,2,38640,20000 -999,FR,TR,201812,4,2,811221,515 -999,FR,TR,201812,4,2,80,0 -999,FR,TR,201812,4,2,224070,299 -999,FR,TR,201812,4,2,91933,73 -999,FR,TR,201812,4,2,5800,760 -999,FR,TR,201812,4,2,2715,6 -999,FR,TR,201812,4,2,23993,50 -011,FR,AL,201812,1,2,742637,3025000 -016,FR,AL,201812,3,2,319,226 -020,FR,AL,201812,3,2,24005,47750 -035,FR,AL,201812,3,2,1713,313 -039,FR,AL,201812,3,1,2500,2000 -056,FR,AL,201812,3,1,23470,23689 -099,FR,AL,201812,3,1,151535,51955 -099,FR,AL,201812,3,2,1471,21 -099,FR,AL,201812,4,2,6684,500 -099,FR,AL,201812,4,2,55660,27 -112,FR,AL,201812,1,2,578794,1992000 -112,FR,AL,201812,1,2,70538,240000 -112,FR,AL,201812,3,2,9,3 -121,FR,AL,201812,3,2,1487,156 -125,FR,AL,201812,1,1,58680,24000 -125,FR,AL,201812,3,1,101764,48000 -125,FR,AL,201812,3,1,48443,23500 -125,FR,AL,201812,3,2,604,37 -125,FR,AL,201812,3,2,111537,46000 -128,FR,AL,201812,3,2,148,192 -128,FR,AL,201812,3,2,11288,21786 -132,FR,AL,201812,0,2,28,1 -132,FR,AL,201812,3,2,4026,356 -133,FR,AL,201812,3,1,8825,6500 -133,FR,AL,201812,3,2,106,3 -136,FR,AL,201812,3,2,184,34 -139,FR,AL,201812,3,2,4019,1138 -139,FR,AL,201812,3,2,233,106 -141,FR,AL,201812,1,2,54509,47070 -143,FR,AL,201812,3,2,258,234 -144,FR,AL,201812,3,2,1198,112 -147,FR,AL,201812,1,2,1286,1411 -147,FR,AL,201812,3,2,94,11 -147,FR,AL,201812,3,2,513,37 -148,FR,AL,201812,3,2,392,25 -161,FR,AL,201812,3,2,121,35 -163,FR,AL,201812,3,2,1459,530 -163,FR,AL,201812,3,2,289,76 -164,FR,AL,201812,3,1,840,300 -164,FR,AL,201812,3,2,84,20 -166,FR,AL,201812,3,2,985,529 -341,FR,AL,201812,3,2,52078,33406 -632,FR,AL,201812,3,1,18485,45900 -691,FR,AL,201812,3,1,23534,95786 -819,FR,AL,201812,4,1,28866,19 -819,FR,AL,201812,1,2,11528,39500 -819,FR,AL,201812,3,2,3708,556 -819,FR,AL,201812,4,2,458,0 -819,FR,AL,201812,4,2,55,0 -891,FR,AL,201812,1,2,40436,24080 -891,FR,AL,201812,1,2,144510,67500 -891,FR,AL,201812,3,2,57,1 -892,FR,AL,201812,3,2,50418,2012 -893,FR,AL,201812,3,1,110000,4000 -893,FR,AL,201812,0,2,90,1 -893,FR,AL,201812,3,2,189579,13195 -893,FR,AL,201812,3,2,13827,1776 -893,FR,AL,201812,3,2,15869,220 -893,FR,AL,201812,3,2,40045,1296 -893,FR,AL,201812,3,2,35000,456 -893,FR,AL,201812,4,2,39697,357 -893,FR,AL,201812,4,2,11478,131 -893,FR,AL,201812,4,2,9046,41 -893,FR,AL,201812,4,2,1178,140 -896,FR,AL,201812,3,2,43396,3616 -896,FR,AL,201812,3,2,5559,5574 -896,FR,AL,201812,4,2,218,1 -896,FR,AL,201812,4,2,998,1 -896,FR,AL,201812,4,2,2122,35 -910,FR,AL,201812,4,1,616,21 -910,FR,AL,201812,4,1,790,15 -910,FR,AL,201812,0,2,125,0 -910,FR,AL,201812,3,2,34300,2915 -910,FR,AL,201812,3,2,1859,31 -931,FR,AL,201812,1,1,901,16 -931,FR,AL,201812,3,1,539,1 -931,FR,AL,201812,3,1,13225,239 -931,FR,AL,201812,3,1,12900,286 -931,FR,AL,201812,4,1,693,1 -931,FR,AL,201812,4,1,190,6 -931,FR,AL,201812,0,2,224,2 -931,FR,AL,201812,3,2,57461,572 -931,FR,AL,201812,3,2,89674,1294 -931,FR,AL,201812,3,2,20444,1564 -931,FR,AL,201812,4,2,2060,19 -931,FR,AL,201812,4,2,4478,1 -931,FR,AL,201812,4,2,120853,3060 -931,FR,AL,201812,4,2,23475,18 -939,FR,AL,201812,3,1,616,1 -939,FR,AL,201812,4,1,26,0 -939,FR,AL,201812,4,1,199,7 -939,FR,AL,201812,1,2,70000,20000 -939,FR,AL,201812,1,2,75300,6912 -939,FR,AL,201812,1,2,34500,1356 -939,FR,AL,201812,3,2,212394,32402 -939,FR,AL,201812,3,2,4700,279 -939,FR,AL,201812,3,2,32224,1803 -939,FR,AL,201812,3,2,18100,108 -939,FR,AL,201812,4,2,95660,1226 -939,FR,AL,201812,4,2,42324,1680 -939,FR,AL,201812,4,2,1200,3 -941,FR,AL,201812,3,1,23559,4800 -949,FR,AL,201812,3,1,1636,300 -949,FR,AL,201812,0,2,393,2 -949,FR,AL,201812,3,2,6233,3188 -949,FR,AL,201812,3,2,887,14 -949,FR,AL,201812,3,2,11,8 -949,FR,AL,201812,3,2,74,1 -949,FR,AL,201812,4,2,74000,50 -949,FR,AL,201812,4,2,1749,0 -951,FR,AL,201812,3,2,115,12 -952,FR,AL,201812,4,1,106,8 -952,FR,AL,201812,4,1,181,14 -952,FR,AL,201812,3,2,13365,697 -962,FR,AL,201812,3,1,363,17 -962,FR,AL,201812,3,1,733,49 -962,FR,AL,201812,3,1,3853,183 -962,FR,AL,201812,3,1,760851,119370 -962,FR,AL,201812,3,1,22597,8146 -962,FR,AL,201812,4,1,7140,150 -962,FR,AL,201812,3,2,33074,1928 -962,FR,AL,201812,3,2,662714,126380 -962,FR,AL,201812,3,2,138,8 -962,FR,AL,201812,3,2,43625,19814 -962,FR,AL,201812,4,2,3000,500 -963,FR,AL,201812,0,1,951,19 -963,FR,AL,201812,1,1,2748,40 -963,FR,AL,201812,3,1,31218,1206 -963,FR,AL,201812,3,1,77299,4815 -963,FR,AL,201812,3,1,57,0 -963,FR,AL,201812,3,1,39640,2455 -963,FR,AL,201812,3,1,331,9 -963,FR,AL,201812,4,1,93387,1913 -963,FR,AL,201812,0,2,100,2 -963,FR,AL,201812,3,2,5897,159 -963,FR,AL,201812,3,2,99441,5760 -963,FR,AL,201812,3,2,27855,1573 -971,FR,AL,201812,3,1,37840,11246 -971,FR,AL,201812,4,1,158,0 -971,FR,AL,201812,4,1,84,2 -971,FR,AL,201812,3,2,79465,20801 -971,FR,AL,201812,3,2,47,1 -972,FR,AL,201812,3,2,18603,23512 -973,FR,AL,201812,3,2,25500,3016 -973,FR,AL,201812,3,2,14,1 -973,FR,AL,201812,3,2,40,0 -974,FR,AL,201812,3,1,112,1 -974,FR,AL,201812,3,2,135,711 -975,FR,AL,201812,3,1,8500,2648 -976,FR,AL,201812,3,1,11850,1860 -976,FR,AL,201812,3,2,54,160 -976,FR,AL,201812,3,2,1107,2162 -976,FR,AL,201812,3,2,66,40 -976,FR,AL,201812,3,2,15,41 -979,FR,AL,201812,3,1,325,2 -979,FR,AL,201812,3,1,3016,730 -979,FR,AL,201812,3,1,184,12 -979,FR,AL,201812,4,1,2847,2 -979,FR,AL,201812,0,2,110,0 -979,FR,AL,201812,3,2,124973,1306 -979,FR,AL,201812,3,2,355,6 -979,FR,AL,201812,3,2,362,21 -979,FR,AL,201812,3,2,18349,3016 -979,FR,AL,201812,3,2,58800,1100 -979,FR,AL,201812,3,2,6300,58 -979,FR,AL,201812,3,2,18168,1337 -979,FR,AL,201812,4,2,10938,8 -979,FR,AL,201812,4,2,6031,18 -979,FR,AL,201812,4,2,22822,120 -979,FR,AL,201812,4,2,7760,145 -979,FR,AL,201812,4,2,54716,2400 -979,FR,AL,201812,4,2,74999,32 -979,FR,AL,201812,4,2,2014,19 -999,FR,AL,201812,3,1,976,0 -999,FR,AL,201812,3,2,31,0 -999,FR,AL,201812,3,2,7850,0 -999,FR,AL,201812,3,2,2356,129 -999,FR,AL,201812,4,2,3,0 -001,FR,UA,201812,3,2,184800,2836 -001,FR,UA,201812,3,2,241561,41367 -011,FR,UA,201812,1,1,265661,830190 -011,FR,UA,201812,4,1,669,15 -015,FR,UA,201812,4,1,1634,609 -015,FR,UA,201812,4,1,2916,80 -015,FR,UA,201812,4,1,3105,81 -015,FR,UA,201812,3,2,58895,21000 -015,FR,UA,201812,3,2,36010,18683 -015,FR,UA,201812,3,2,434530,156245 -016,FR,UA,201812,3,1,178,80 -019,FR,UA,201812,3,2,1814,312 -031,FR,UA,201812,3,2,203925,211605 -031,FR,UA,201812,3,2,15284,15300 -035,FR,UA,201812,3,1,34128,19430 -035,FR,UA,201812,3,1,71019,17120 -035,FR,UA,201812,3,1,434890,120000 -035,FR,UA,201812,3,1,728882,191680 -035,FR,UA,201812,3,1,215993,59600 -035,FR,UA,201812,3,2,72808,66411 -035,FR,UA,201812,3,2,19879,25502 -039,FR,UA,201812,3,1,57060,10080 -039,FR,UA,201812,3,2,162962,114707 -056,FR,UA,201812,3,1,50495,22135 -056,FR,UA,201812,3,1,224755,136459 -057,FR,UA,201812,3,1,56971,110864 -099,FR,UA,201812,3,1,24152,15160 -099,FR,UA,201812,4,1,1496,96 -099,FR,UA,201812,4,1,4472,159 -099,FR,UA,201812,3,2,21763,296 -099,FR,UA,201812,3,2,52222,39600 -099,FR,UA,201812,3,2,216116,53812 -099,FR,UA,201812,4,2,96,2 -099,FR,UA,201812,4,2,8054,36 -112,FR,UA,201812,1,2,27705,15000 -121,FR,UA,201812,3,2,329329,38980 -121,FR,UA,201812,3,2,99910,50181 -121,FR,UA,201812,3,2,431361,29116 -121,FR,UA,201812,4,2,19487,9 -122,FR,UA,201812,3,1,35,9 -122,FR,UA,201812,3,2,40997,72648 -125,FR,UA,201812,1,2,16472,6452 -125,FR,UA,201812,3,2,6500,60 -125,FR,UA,201812,3,2,26716,1608 -125,FR,UA,201812,3,2,533712,52044 -128,FR,UA,201812,3,1,10046,20088 -128,FR,UA,201812,3,1,7307,20710 -128,FR,UA,201812,3,2,1495,3108 -128,FR,UA,201812,3,2,11814,21651 -128,FR,UA,201812,3,2,10094,19943 -128,FR,UA,201812,3,2,13754,13974 -131,FR,UA,201812,3,2,43640,11335 -132,FR,UA,201812,0,2,87,3 -132,FR,UA,201812,1,2,11108,523 -132,FR,UA,201812,3,2,4512,383 -132,FR,UA,201812,3,2,2879,375 -132,FR,UA,201812,3,2,17669,8320 -132,FR,UA,201812,3,2,71865,7349 -133,FR,UA,201812,3,2,4230,103 -133,FR,UA,201812,3,2,2037,978 -135,FR,UA,201812,0,1,297,2 -135,FR,UA,201812,3,2,481045,70200 -136,FR,UA,201812,0,1,647459,369456 -136,FR,UA,201812,3,1,36784,11653 -136,FR,UA,201812,3,2,2452,183 -136,FR,UA,201812,3,2,5090,1376 -139,FR,UA,201812,3,1,68,2 -139,FR,UA,201812,3,1,36092,12723 -139,FR,UA,201812,3,2,10015,2352 -139,FR,UA,201812,3,2,16351,1859 -139,FR,UA,201812,3,2,5589,1250 -139,FR,UA,201812,3,2,6720,2400 -139,FR,UA,201812,3,2,260374,48814 -139,FR,UA,201812,4,2,15,0 -141,FR,UA,201812,3,2,25250,105000 -141,FR,UA,201812,3,2,1280,173 -142,FR,UA,201812,3,1,282019,33679 -142,FR,UA,201812,3,2,140133,16351 -142,FR,UA,201812,3,2,3052,327 -142,FR,UA,201812,3,2,319437,87504 -143,FR,UA,201812,3,2,646,60 -143,FR,UA,201812,3,2,4480,1432 -144,FR,UA,201812,1,2,40322,9542 -144,FR,UA,201812,3,2,226815,51452 -144,FR,UA,201812,3,2,102726,12268 -144,FR,UA,201812,3,2,240625,46463 -144,FR,UA,201812,3,2,16100,3000 -147,FR,UA,201812,3,2,52146,6483 -147,FR,UA,201812,3,2,17282,1447 -148,FR,UA,201812,4,2,3277,3 -163,FR,UA,201812,1,1,30220,48000 -163,FR,UA,201812,3,1,49097,28910 -163,FR,UA,201812,3,2,36715,12906 -163,FR,UA,201812,3,2,121348,59580 -164,FR,UA,201812,3,1,105840,20000 -164,FR,UA,201812,3,1,89849,39359 -164,FR,UA,201812,3,2,19843,3560 -164,FR,UA,201812,3,2,2917,345 -164,FR,UA,201812,3,2,18865,2714 -164,FR,UA,201812,3,2,7909,2663 -165,FR,UA,201812,3,2,13645,5907 -172,FR,UA,201812,1,1,689278,2999660 -172,FR,UA,201812,1,1,1784480,7230000 -172,FR,UA,201812,1,1,3306286,13962560 -172,FR,UA,201812,1,1,932597,4000000 -172,FR,UA,201812,1,1,1156099,5000000 -179,FR,UA,201812,3,1,75233,47520 -179,FR,UA,201812,3,2,510717,288172 -179,FR,UA,201812,3,2,596796,568150 -179,FR,UA,201812,3,2,365718,229278 -181,FR,UA,201812,1,1,15592186,38346212 -181,FR,UA,201812,1,1,726244,1004330 -181,FR,UA,201812,4,1,234,10 -181,FR,UA,201812,4,1,159,12 -181,FR,UA,201812,3,2,145319,26295 -181,FR,UA,201812,3,2,1528949,171335 -181,FR,UA,201812,3,2,80264,7050 -181,FR,UA,201812,3,2,1340887,172788 -182,FR,UA,201812,1,1,7372340,12025502 -182,FR,UA,201812,1,1,678154,964720 -182,FR,UA,201812,1,1,1966724,3142251 -182,FR,UA,201812,1,1,2503865,3017121 -182,FR,UA,201812,3,1,114504,125510 -182,FR,UA,201812,3,2,18473,2744 -182,FR,UA,201812,3,2,9765,5675 -341,FR,UA,201812,3,2,2242,576 -341,FR,UA,201812,3,2,29060,12552 -341,FR,UA,201812,3,2,79589,32450 -459,FR,UA,201812,1,1,898228,3003755 -515,FR,UA,201812,0,1,211818,470480 -532,FR,UA,201812,4,2,100,5 -533,FR,UA,201812,3,1,56044,43040 -542,FR,UA,201812,3,2,44077,21766 -551,FR,UA,201812,3,1,225,10 -551,FR,UA,201812,3,1,33356,5583 -551,FR,UA,201812,3,1,43,145 -551,FR,UA,201812,1,2,66010,6726 -551,FR,UA,201812,3,2,32206,8234 -551,FR,UA,201812,3,2,111,0 -551,FR,UA,201812,3,2,8036,1002 -551,FR,UA,201812,4,2,817,5 -552,FR,UA,201812,3,1,4684,1000 -552,FR,UA,201812,4,1,92,0 -552,FR,UA,201812,3,2,103,4 -552,FR,UA,201812,3,2,198,24 -552,FR,UA,201812,3,2,8335,633 -568,FR,UA,201812,3,1,95182,21640 -568,FR,UA,201812,3,2,246,2 -568,FR,UA,201812,4,2,2340,28 -614,FR,UA,201812,3,1,14165,61000 -632,FR,UA,201812,3,2,13475,21500 -639,FR,UA,201812,1,1,12340,22000 -639,FR,UA,201812,3,2,8715,21000 -639,FR,UA,201812,3,2,11914,15900 -650,FR,UA,201812,3,2,19262,55700 -691,FR,UA,201812,3,2,58869,7272 -691,FR,UA,201812,3,2,26100,17946 -692,FR,UA,201812,3,2,48496,43600 -719,FR,UA,201812,3,2,65840,8536 -819,FR,UA,201812,3,1,2268,162 -819,FR,UA,201812,3,1,323203,1038750 -819,FR,UA,201812,4,1,86,0 -819,FR,UA,201812,4,1,207817,111 -819,FR,UA,201812,4,1,34077,13 -819,FR,UA,201812,0,2,100,1 -819,FR,UA,201812,1,2,810825,4504581 -819,FR,UA,201812,3,2,3296,1386 -819,FR,UA,201812,3,2,23320,19000 -819,FR,UA,201812,3,2,46000,39000 -819,FR,UA,201812,3,2,107300,25860 -819,FR,UA,201812,3,2,4134,1397 -819,FR,UA,201812,3,2,48989,64800 -819,FR,UA,201812,4,2,5288,200 -819,FR,UA,201812,4,2,132986,542 -819,FR,UA,201812,4,2,5900,25 -839,FR,UA,201812,3,2,82,2 -891,FR,UA,201812,3,1,1861,138 -891,FR,UA,201812,3,1,12282,3110 -891,FR,UA,201812,1,2,26933,20625 -891,FR,UA,201812,3,2,42583,22593 -891,FR,UA,201812,3,2,97485,33536 -891,FR,UA,201812,3,2,372899,195065 -891,FR,UA,201812,4,2,2030,355 -892,FR,UA,201812,3,1,167200,80000 -892,FR,UA,201812,3,2,139738,23880 -892,FR,UA,201812,3,2,57160,5164 -892,FR,UA,201812,3,2,6386,5963 -892,FR,UA,201812,3,2,63311,29758 -892,FR,UA,201812,3,2,11165,1675 -893,FR,UA,201812,3,1,846,5 -893,FR,UA,201812,3,1,26827,38658 -893,FR,UA,201812,3,1,27500,38658 -893,FR,UA,201812,3,1,57641,82840 -893,FR,UA,201812,4,1,1142,1235 -893,FR,UA,201812,0,2,173,2 -893,FR,UA,201812,1,2,98890,1950 -893,FR,UA,201812,3,2,4841857,274593 -893,FR,UA,201812,3,2,79932,7209 -893,FR,UA,201812,3,2,648018,7476 -893,FR,UA,201812,3,2,571605,23154 -893,FR,UA,201812,3,2,4192088,510556 -893,FR,UA,201812,3,2,334850,6809 -893,FR,UA,201812,3,2,10855,1030 -893,FR,UA,201812,3,2,50986,1100 -893,FR,UA,201812,3,2,1969186,89547 -893,FR,UA,201812,3,2,1765,61 -893,FR,UA,201812,3,2,151704,6102 -893,FR,UA,201812,3,2,490244,67270 -893,FR,UA,201812,3,2,23537,22440 -893,FR,UA,201812,4,2,255494,1615 -893,FR,UA,201812,4,2,12841,370 -893,FR,UA,201812,4,2,462859,1164 -893,FR,UA,201812,4,2,1230,83 -893,FR,UA,201812,4,2,1436,60 -893,FR,UA,201812,4,2,648,2 -896,FR,UA,201812,3,1,4390,146 -896,FR,UA,201812,4,1,326,0 -896,FR,UA,201812,4,1,3648,13 -896,FR,UA,201812,4,1,7810,19 -896,FR,UA,201812,0,2,35,0 -896,FR,UA,201812,3,2,687954,130690 -896,FR,UA,201812,3,2,19317,4420 -896,FR,UA,201812,3,2,26206,1872 -896,FR,UA,201812,3,2,12415916,839286 -896,FR,UA,201812,3,2,4157292,626319 -896,FR,UA,201812,3,2,74300,16800 -896,FR,UA,201812,3,2,277358,16640 -896,FR,UA,201812,3,2,392391,35587 -896,FR,UA,201812,3,2,10131,1100 -896,FR,UA,201812,3,2,24898,21780 -896,FR,UA,201812,4,2,685,28 -896,FR,UA,201812,4,2,17351,163 -896,FR,UA,201812,4,2,29363,115 -910,FR,UA,201812,0,1,21913,1996 -910,FR,UA,201812,3,1,63506,3015 -910,FR,UA,201812,3,1,291244,97491 -910,FR,UA,201812,4,1,52,1 -910,FR,UA,201812,4,1,240,25 -910,FR,UA,201812,3,2,1823962,57792 -910,FR,UA,201812,3,2,1529433,218601 -910,FR,UA,201812,3,2,32998,3440 -910,FR,UA,201812,3,2,2064945,167541 -910,FR,UA,201812,4,2,17018249,12853 -910,FR,UA,201812,4,2,1498,1 -910,FR,UA,201812,4,2,55627,197 -910,FR,UA,201812,4,2,7124,360 -910,FR,UA,201812,9,2,286027,116371 -920,FR,UA,201812,3,1,879,7 -920,FR,UA,201812,3,1,39275,3550 -920,FR,UA,201812,1,2,395722,43500 -920,FR,UA,201812,3,2,584902,80015 -920,FR,UA,201812,3,2,308913,52860 -920,FR,UA,201812,3,2,17100,7380 -920,FR,UA,201812,3,2,512390,56100 -920,FR,UA,201812,3,2,1564004,171175 -920,FR,UA,201812,3,2,35100,2775 -920,FR,UA,201812,4,2,267,32 -920,FR,UA,201812,4,2,1156,66 -931,FR,UA,201812,0,1,4650,5 -931,FR,UA,201812,3,1,14246,365 -931,FR,UA,201812,3,1,230343,1668 -931,FR,UA,201812,3,1,270137,54465 -931,FR,UA,201812,4,1,8567,170 -931,FR,UA,201812,4,1,29668,739 -931,FR,UA,201812,4,1,2435,1 -931,FR,UA,201812,4,1,64104,38 -931,FR,UA,201812,0,2,653,11 -931,FR,UA,201812,1,2,91675,10486 -931,FR,UA,201812,3,2,2044142,70757 -931,FR,UA,201812,3,2,26420,90 -931,FR,UA,201812,3,2,75685,1522 -931,FR,UA,201812,3,2,664445,65290 -931,FR,UA,201812,4,2,209692,652 -931,FR,UA,201812,4,2,3610,18 -931,FR,UA,201812,4,2,49641,102 -931,FR,UA,201812,4,2,41574,213 -931,FR,UA,201812,4,2,158294,606 -931,FR,UA,201812,4,2,7139,71 -931,FR,UA,201812,4,2,114176,120 -931,FR,UA,201812,4,2,55482,1710 -931,FR,UA,201812,4,2,1290,12 -931,FR,UA,201812,4,2,10432,15 -931,FR,UA,201812,5,2,824,25 -939,FR,UA,201812,3,1,1888,165 -939,FR,UA,201812,3,1,5196,328 -939,FR,UA,201812,3,1,119,12 -939,FR,UA,201812,3,1,217980,78104 -939,FR,UA,201812,3,1,263749,26745 -939,FR,UA,201812,4,1,1527,102 -939,FR,UA,201812,4,1,2585,87 -939,FR,UA,201812,4,1,1864,20 -939,FR,UA,201812,0,2,3229,20 -939,FR,UA,201812,1,2,131376,64361 -939,FR,UA,201812,1,2,8800,105 -939,FR,UA,201812,1,2,97366,15443 -939,FR,UA,201812,3,2,4483957,101721 -939,FR,UA,201812,3,2,35769,2001 -939,FR,UA,201812,3,2,61747,3009 -939,FR,UA,201812,3,2,32177,1964 -939,FR,UA,201812,3,2,2237650,200208 -939,FR,UA,201812,4,2,244448,2067 -939,FR,UA,201812,4,2,1,1 -939,FR,UA,201812,4,2,10013,22 -939,FR,UA,201812,4,2,221124,1752 -939,FR,UA,201812,4,2,9804,20 -939,FR,UA,201812,4,2,15409,300 -939,FR,UA,201812,4,2,126926,5280 -939,FR,UA,201812,4,2,1515,33 -939,FR,UA,201812,4,2,1166,7 -941,FR,UA,201812,3,1,100798,30985 -941,FR,UA,201812,4,1,125,0 -941,FR,UA,201812,3,2,1400,13 -941,FR,UA,201812,4,2,4800,63 -949,FR,UA,201812,0,1,484,1 -949,FR,UA,201812,1,1,17190,6329 -949,FR,UA,201812,3,1,2454,155 -949,FR,UA,201812,3,1,3215,81 -949,FR,UA,201812,3,1,513417,361413 -949,FR,UA,201812,4,1,99,0 -949,FR,UA,201812,4,1,301,0 -949,FR,UA,201812,4,1,1120,11 -949,FR,UA,201812,0,2,396,2 -949,FR,UA,201812,1,2,1643,93 -949,FR,UA,201812,3,2,189749,14793 -949,FR,UA,201812,3,2,79,16 -949,FR,UA,201812,3,2,31519,5668 -949,FR,UA,201812,3,2,59694,10420 -949,FR,UA,201812,4,2,717,51 -949,FR,UA,201812,4,2,1560,14 -949,FR,UA,201812,4,2,676,6 -949,FR,UA,201812,4,2,396,16 -949,FR,UA,201812,4,2,1669,2 -949,FR,UA,201812,4,2,30612,3130 -949,FR,UA,201812,4,2,3255,114 -949,FR,UA,201812,5,2,1042,13 -951,FR,UA,201812,3,2,3238,849 -951,FR,UA,201812,3,2,143,8 -952,FR,UA,201812,3,1,1603,62 -952,FR,UA,201812,3,1,51001,78703 -952,FR,UA,201812,4,1,1152,12 -952,FR,UA,201812,1,2,24906,14586 -952,FR,UA,201812,1,2,268930,185254 -952,FR,UA,201812,3,2,105822,67299 -952,FR,UA,201812,3,2,1121775,694763 -952,FR,UA,201812,3,2,10967,7646 -952,FR,UA,201812,3,2,9682,1143 -952,FR,UA,201812,4,2,13,3 -952,FR,UA,201812,4,2,614,3 -961,FR,UA,201812,3,1,224,0 -961,FR,UA,201812,3,2,1585,2 -961,FR,UA,201812,4,2,134,0 -962,FR,UA,201812,0,1,1475,20 -962,FR,UA,201812,3,1,7606,161 -962,FR,UA,201812,3,1,268,6 -962,FR,UA,201812,3,1,112661,12806 -962,FR,UA,201812,0,2,101,15 -962,FR,UA,201812,1,2,4358,437 -962,FR,UA,201812,3,2,322839,26417 -962,FR,UA,201812,3,2,57,2 -962,FR,UA,201812,3,2,426,32 -962,FR,UA,201812,3,2,37541,1621 -962,FR,UA,201812,3,2,1554842,165614 -962,FR,UA,201812,3,2,8175,516 -962,FR,UA,201812,4,2,5679,70 -962,FR,UA,201812,4,2,2787,31 -963,FR,UA,201812,0,1,20064,159 -963,FR,UA,201812,3,1,44020,749 -963,FR,UA,201812,3,1,1658,6 -963,FR,UA,201812,3,1,101,0 -963,FR,UA,201812,3,1,557529,12771 -963,FR,UA,201812,3,1,186,2 -963,FR,UA,201812,4,1,16001,33 -963,FR,UA,201812,4,1,4612,76 -963,FR,UA,201812,4,1,0,1 -963,FR,UA,201812,4,1,350,2 -963,FR,UA,201812,4,1,278783,672 -963,FR,UA,201812,4,1,1334,8 -963,FR,UA,201812,0,2,966,10 -963,FR,UA,201812,3,2,558385,4559 -963,FR,UA,201812,3,2,1996,10 -963,FR,UA,201812,3,2,27910,513 -963,FR,UA,201812,3,2,761944,12332 -963,FR,UA,201812,4,2,383301,1096 -963,FR,UA,201812,4,2,377213,54 -963,FR,UA,201812,4,2,12937,600 -963,FR,UA,201812,4,2,3684,72 -963,FR,UA,201812,4,2,1990,4 -971,FR,UA,201812,3,1,1175,6 -971,FR,UA,201812,3,1,630,83 -971,FR,UA,201812,3,2,30220,1241 -971,FR,UA,201812,3,2,18596,696 -971,FR,UA,201812,3,2,11223,1391 -971,FR,UA,201812,4,2,1742,4 -971,FR,UA,201812,4,2,177,1 -971,FR,UA,201812,4,2,3267,80 -972,FR,UA,201812,3,2,26977,21419 -972,FR,UA,201812,3,2,119283,107674 -972,FR,UA,201812,3,2,498,75 -973,FR,UA,201812,3,1,3359,82 -973,FR,UA,201812,3,1,4464,953 -973,FR,UA,201812,3,1,189680,45301 -973,FR,UA,201812,4,1,796,47 -973,FR,UA,201812,3,2,63887,11301 -973,FR,UA,201812,3,2,21,1 -973,FR,UA,201812,3,2,52,74 -973,FR,UA,201812,3,2,254,36 -973,FR,UA,201812,3,2,40964,11781 -973,FR,UA,201812,3,2,9944,5315 -973,FR,UA,201812,3,2,95687,63518 -973,FR,UA,201812,3,2,1114,70 -973,FR,UA,201812,4,2,4057,925 -973,FR,UA,201812,4,2,42012,300 -974,FR,UA,201812,0,1,100,2 -974,FR,UA,201812,3,1,75,0 -974,FR,UA,201812,3,1,143,24 -974,FR,UA,201812,3,1,4472,466 -974,FR,UA,201812,4,1,3186,133 -974,FR,UA,201812,4,1,1620,86 -974,FR,UA,201812,0,2,60,1 -974,FR,UA,201812,1,2,1943,40 -974,FR,UA,201812,3,2,1372,95 -974,FR,UA,201812,3,2,13,15 -974,FR,UA,201812,3,2,54,61 -974,FR,UA,201812,3,2,6970,1178 -974,FR,UA,201812,4,2,2297,417 -974,FR,UA,201812,4,2,21,1 -974,FR,UA,201812,4,2,1035,76 -974,FR,UA,201812,4,2,2125,5 -974,FR,UA,201812,4,2,17447,3220 -975,FR,UA,201812,1,1,25850,6110 -975,FR,UA,201812,1,1,13835,12780 -975,FR,UA,201812,3,1,1222,72 -975,FR,UA,201812,3,1,95,5 -975,FR,UA,201812,3,1,22578,8648 -975,FR,UA,201812,3,1,405452,151020 -975,FR,UA,201812,4,1,8823,5496 -975,FR,UA,201812,0,2,363,11 -975,FR,UA,201812,3,2,34866,3141 -975,FR,UA,201812,3,2,1597,119 -975,FR,UA,201812,3,2,15438,1299 -975,FR,UA,201812,3,2,4562,233 -975,FR,UA,201812,4,2,518,1 -976,FR,UA,201812,2,1,1130,151 -976,FR,UA,201812,3,1,88448,67345 -976,FR,UA,201812,3,1,1951,1105 -976,FR,UA,201812,3,1,14963,12179 -976,FR,UA,201812,3,1,65350,20260 -976,FR,UA,201812,3,1,602996,317721 -976,FR,UA,201812,4,1,290,3 -976,FR,UA,201812,4,1,587,20 -976,FR,UA,201812,1,2,52140,8684 -976,FR,UA,201812,3,2,2988,557 -976,FR,UA,201812,3,2,5168,9173 -976,FR,UA,201812,4,2,10,0 -979,FR,UA,201812,0,1,3108,23 -979,FR,UA,201812,1,1,2855,194 -979,FR,UA,201812,3,1,21532,378 -979,FR,UA,201812,3,1,760,92 -979,FR,UA,201812,3,1,1402,80 -979,FR,UA,201812,3,1,58465,7286 -979,FR,UA,201812,4,1,731,2 -979,FR,UA,201812,4,1,1846,22 -979,FR,UA,201812,4,1,1263,19 -979,FR,UA,201812,4,1,23465,641 -979,FR,UA,201812,4,1,4902,0 -979,FR,UA,201812,0,2,1899,38 -979,FR,UA,201812,1,2,16725,916 -979,FR,UA,201812,1,2,435,53 -979,FR,UA,201812,3,2,497500,39662 -979,FR,UA,201812,3,2,13285,89 -979,FR,UA,201812,3,2,973,43 -979,FR,UA,201812,3,2,13356,644 -979,FR,UA,201812,3,2,342280,20234 -979,FR,UA,201812,3,2,25968,1302 -979,FR,UA,201812,3,2,535650,86833 -979,FR,UA,201812,4,2,117093,767 -979,FR,UA,201812,4,2,104146,201 -979,FR,UA,201812,4,2,1046,0 -979,FR,UA,201812,4,2,67023,367 -979,FR,UA,201812,4,2,109446,487 -979,FR,UA,201812,4,2,19825,56 -979,FR,UA,201812,4,2,3750,2 -979,FR,UA,201812,4,2,180659,4140 -979,FR,UA,201812,4,2,38865,15 -979,FR,UA,201812,4,2,1565,14 -999,FR,UA,201812,4,1,5145,0 -999,FR,UA,201812,3,2,419468,111625 -999,FR,UA,201812,3,2,91,2 -999,FR,UA,201812,3,2,3830,249 -999,FR,UA,201812,3,2,92676,71586 -999,FR,UA,201812,3,2,528972,282111 -999,FR,UA,201812,4,2,93,2 -999,FR,UA,201812,4,2,19080,15 -999,FR,UA,201812,4,2,2686,10 -001,FR,BY,201812,3,2,22774,1600 -015,FR,BY,201812,3,2,38366,12062 -015,FR,BY,201812,3,2,96459,26077 -035,FR,BY,201812,1,2,8618,7593 -045,FR,BY,201812,3,2,194940,64920 -051,FR,BY,201812,3,1,13915,43793 -056,FR,BY,201812,3,1,84534,299700 -056,FR,BY,201812,3,1,5952,24940 -056,FR,BY,201812,3,1,68438,256952 -057,FR,BY,201812,3,1,5165,45500 -099,FR,BY,201812,3,2,136314,86854 -121,FR,BY,201812,0,2,909,19 -121,FR,BY,201812,3,2,29816,10944 -121,FR,BY,201812,3,2,44004,45678 -122,FR,BY,201812,3,2,8100,11975 -122,FR,BY,201812,3,2,16627,23950 -122,FR,BY,201812,3,2,14754,50000 -125,FR,BY,201812,3,2,2026,403 -132,FR,BY,201812,0,2,60,2 -132,FR,BY,201812,3,2,648,264 -134,FR,BY,201812,1,2,25500,62370 -135,FR,BY,201812,3,2,8213,3780 -135,FR,BY,201812,3,2,265544,122220 -136,FR,BY,201812,3,2,9204,4118 -136,FR,BY,201812,3,2,56836,24802 -136,FR,BY,201812,3,2,135,26 -139,FR,BY,201812,1,2,9850,111 -139,FR,BY,201812,3,2,10,6 -139,FR,BY,201812,3,2,2539,1257 -139,FR,BY,201812,3,2,6289,4444 -144,FR,BY,201812,3,2,30948,5449 -144,FR,BY,201812,3,2,36440,2930 -163,FR,BY,201812,0,2,30,2 -163,FR,BY,201812,3,2,135,32 -164,FR,BY,201812,3,1,56814,19530 -164,FR,BY,201812,3,2,10920,2160 -164,FR,BY,201812,3,2,8877,2266 -164,FR,BY,201812,3,2,9058,3612 -179,FR,BY,201812,3,2,248686,198875 -179,FR,BY,201812,3,2,87577,62880 -181,FR,BY,201812,3,2,3895,4 -182,FR,BY,201812,3,2,24400,20331 -182,FR,BY,201812,3,2,27200,40572 -341,FR,BY,201812,3,2,24349,5760 -341,FR,BY,201812,3,2,32470,18324 -341,FR,BY,201812,3,2,27701,14955 -551,FR,BY,201812,3,2,111,0 -552,FR,BY,201812,3,2,981,42 -568,FR,BY,201812,3,2,145,0 -568,FR,BY,201812,3,2,7436,479 -639,FR,BY,201812,3,2,278,60 -639,FR,BY,201812,3,2,2366,2000 -691,FR,BY,201812,3,2,196,13 -723,FR,BY,201812,1,1,1211133,4645700 -723,FR,BY,201812,1,1,99918,273000 -723,FR,BY,201812,1,1,281994,756000 -724,FR,BY,201812,1,1,1177263,3962064 -724,FR,BY,201812,1,1,362316,1798123 -819,FR,BY,201812,3,2,506,27 -819,FR,BY,201812,3,2,10238,225 -819,FR,BY,201812,3,2,2096,1100 -819,FR,BY,201812,3,2,71433,1999 -819,FR,BY,201812,4,2,23433,5 -820,FR,BY,201812,3,2,713,5 -891,FR,BY,201812,3,2,42131,23662 -891,FR,BY,201812,3,2,4000,500 -891,FR,BY,201812,3,2,5014,6300 -891,FR,BY,201812,3,2,43054,21461 -891,FR,BY,201812,3,2,27998,22100 -891,FR,BY,201812,3,2,380614,90782 -891,FR,BY,201812,4,2,1006,46 -891,FR,BY,201812,4,2,660,40 -892,FR,BY,201812,3,1,165,28 -892,FR,BY,201812,3,2,67444,3463 -892,FR,BY,201812,3,2,11514,3509 -892,FR,BY,201812,3,2,3693,2625 -892,FR,BY,201812,3,2,26340,2442 -892,FR,BY,201812,4,2,5,2 -893,FR,BY,201812,1,2,2010,7 -893,FR,BY,201812,3,2,768223,33607 -893,FR,BY,201812,3,2,80433,2405 -893,FR,BY,201812,3,2,154538,666 -893,FR,BY,201812,3,2,88900,2850 -893,FR,BY,201812,3,2,5595,2400 -893,FR,BY,201812,3,2,466950,21888 -893,FR,BY,201812,3,2,25140,152 -893,FR,BY,201812,3,2,282894,18664 -893,FR,BY,201812,4,2,1456771,4387 -893,FR,BY,201812,4,2,32648,221 -893,FR,BY,201812,4,2,2006,370 -893,FR,BY,201812,4,2,4180,70 -896,FR,BY,201812,0,1,31714,600 -896,FR,BY,201812,4,1,979,23 -896,FR,BY,201812,3,2,1164,140 -896,FR,BY,201812,3,2,3374,64 -896,FR,BY,201812,3,2,40240,13900 -896,FR,BY,201812,3,2,105117,8432 -896,FR,BY,201812,3,2,230443,11371 -896,FR,BY,201812,3,2,490,344 -896,FR,BY,201812,4,2,7,0 -896,FR,BY,201812,4,2,2541,1 -896,FR,BY,201812,4,2,4291,13 -910,FR,BY,201812,3,1,22479,3380 -910,FR,BY,201812,4,1,955,11 -910,FR,BY,201812,1,2,16625,1365 -910,FR,BY,201812,3,2,658969,64419 -910,FR,BY,201812,3,2,56480,8178 -910,FR,BY,201812,3,2,7270,27100 -910,FR,BY,201812,4,2,2099,3 -910,FR,BY,201812,9,2,39700,8904 -920,FR,BY,201812,3,2,165067,14087 -920,FR,BY,201812,3,2,16186,998 -920,FR,BY,201812,3,2,11961,2159 -920,FR,BY,201812,4,2,6449,295 -920,FR,BY,201812,9,2,263753,33362 -931,FR,BY,201812,3,1,5747,24 -931,FR,BY,201812,3,1,3698,2086 -931,FR,BY,201812,4,1,299,0 -931,FR,BY,201812,4,1,1884,4 -931,FR,BY,201812,4,1,9903,26 -931,FR,BY,201812,4,1,11385,3 -931,FR,BY,201812,0,2,845,6 -931,FR,BY,201812,3,2,1179776,11311 -931,FR,BY,201812,3,2,545,68 -931,FR,BY,201812,3,2,6274,620 -931,FR,BY,201812,3,2,52056,1586 -931,FR,BY,201812,4,2,25670,156 -931,FR,BY,201812,4,2,8376,43 -931,FR,BY,201812,4,2,26500,20 -931,FR,BY,201812,4,2,2949,1 -931,FR,BY,201812,4,2,4435,41 -939,FR,BY,201812,3,1,142985,51904 -939,FR,BY,201812,4,1,106,0 -939,FR,BY,201812,3,2,556011,27320 -939,FR,BY,201812,3,2,708,89 -939,FR,BY,201812,3,2,31450,2099 -939,FR,BY,201812,3,2,30262,1290 -939,FR,BY,201812,3,2,166304,22512 -939,FR,BY,201812,4,2,3566,22 -939,FR,BY,201812,4,2,47554,51 -939,FR,BY,201812,4,2,565,16 -939,FR,BY,201812,4,2,41103,1140 -949,FR,BY,201812,0,1,330,8 -949,FR,BY,201812,3,1,54,5 -949,FR,BY,201812,3,1,906,1 -949,FR,BY,201812,3,2,19051,351 -949,FR,BY,201812,3,2,4548,573 -949,FR,BY,201812,3,2,19540,6722 -949,FR,BY,201812,3,2,92287,42468 -949,FR,BY,201812,4,2,182,2 -951,FR,BY,201812,3,1,252,97 -951,FR,BY,201812,3,2,9556,306 -951,FR,BY,201812,3,2,8000,308 -952,FR,BY,201812,0,1,895,3 -952,FR,BY,201812,3,1,11746,3151 -952,FR,BY,201812,3,2,121084,73948 -952,FR,BY,201812,3,2,7856,2239 -952,FR,BY,201812,3,2,597,4 -952,FR,BY,201812,4,2,4,0 -962,FR,BY,201812,0,1,133,6 -962,FR,BY,201812,3,1,44881,19290 -962,FR,BY,201812,3,2,11676,314 -962,FR,BY,201812,3,2,220,6 -962,FR,BY,201812,3,2,2482,613 -962,FR,BY,201812,3,2,158722,35889 -962,FR,BY,201812,3,2,1094,8 -962,FR,BY,201812,4,2,3889,138 -962,FR,BY,201812,4,2,4261,2 -963,FR,BY,201812,0,1,1733,5 -963,FR,BY,201812,1,1,499,3 -963,FR,BY,201812,3,1,165,4 -963,FR,BY,201812,4,1,0,1 -963,FR,BY,201812,3,2,81035,1725 -963,FR,BY,201812,3,2,113,1 -963,FR,BY,201812,4,2,30,2 -971,FR,BY,201812,3,2,26252,944 -971,FR,BY,201812,3,2,371,46 -971,FR,BY,201812,4,2,2702,4 -972,FR,BY,201812,3,1,32685,100400 -972,FR,BY,201812,3,2,9799,5637 -973,FR,BY,201812,3,2,5722,1473 -973,FR,BY,201812,3,2,1999,506 -973,FR,BY,201812,4,2,2,0 -974,FR,BY,201812,3,1,30470,2227 -974,FR,BY,201812,0,2,30,0 -974,FR,BY,201812,3,2,2339,345 -975,FR,BY,201812,3,1,531221,334745 -975,FR,BY,201812,3,2,6530,435 -975,FR,BY,201812,3,2,4381,324 -976,FR,BY,201812,3,1,9756,38260 -976,FR,BY,201812,3,1,28196,42847 -976,FR,BY,201812,3,1,273813,795594 -976,FR,BY,201812,4,2,2566,128 -979,FR,BY,201812,1,1,11834,9110 -979,FR,BY,201812,3,1,16728,1820 -979,FR,BY,201812,3,1,29080,14567 -979,FR,BY,201812,4,1,1986,22 -979,FR,BY,201812,4,1,13792,136 -979,FR,BY,201812,4,1,7013,213 -979,FR,BY,201812,5,1,635,2 -979,FR,BY,201812,3,2,27756,1085 -979,FR,BY,201812,3,2,30032,2923 -979,FR,BY,201812,3,2,129552,6217 -979,FR,BY,201812,3,2,398390,2953 -979,FR,BY,201812,3,2,120,3 -979,FR,BY,201812,4,2,84460,60 -979,FR,BY,201812,4,2,23921,166 -979,FR,BY,201812,4,2,13476,70 -979,FR,BY,201812,4,2,8573,11 -979,FR,BY,201812,4,2,2653,11 -999,FR,BY,201812,2,2,19084,49240 -999,FR,BY,201812,3,2,103896,31525 -999,FR,BY,201812,3,2,16253,194 -999,FR,BY,201812,3,2,30724,2482 -999,FR,BY,201812,3,2,164776,158341 -999,FR,BY,201812,3,2,101509,60481 -999,FR,BY,201812,3,2,96,35 -999,FR,BY,201812,4,2,2,0 -016,FR,MD,201812,3,2,424,270 -016,FR,MD,201812,3,2,581,250 -035,FR,MD,201812,3,1,19324,9569 -035,FR,MD,201812,3,1,446114,84047 -035,FR,MD,201812,3,1,1431494,320216 -035,FR,MD,201812,3,2,324745,118650 -035,FR,MD,201812,3,2,28044,37148 -035,FR,MD,201812,3,2,323200,138874 -035,FR,MD,201812,3,2,87640,38400 -035,FR,MD,201812,4,2,24,1 -039,FR,MD,201812,3,2,3036,2200 -099,FR,MD,201812,3,1,1455,22500 -099,FR,MD,201812,3,2,45455,307 -121,FR,MD,201812,3,2,84822,2530 -121,FR,MD,201812,3,2,6080,393 -121,FR,MD,201812,4,2,2,2 -125,FR,MD,201812,3,2,86591,66240 -125,FR,MD,201812,3,2,333056,7865 -131,FR,MD,201812,3,2,10160,2160 -131,FR,MD,201812,3,2,264,38 -132,FR,MD,201812,3,2,28900,15000 -132,FR,MD,201812,3,2,7270,1487 -132,FR,MD,201812,3,2,368,119 -133,FR,MD,201812,4,2,65500,700 -136,FR,MD,201812,3,2,1022,334 -136,FR,MD,201812,3,2,5326,1883 -139,FR,MD,201812,4,1,175,2 -139,FR,MD,201812,3,2,11040,79 -139,FR,MD,201812,3,2,548,385 -139,FR,MD,201812,3,2,36182,2912 -139,FR,MD,201812,3,2,185,42 -141,FR,MD,201812,3,2,8429,21105 -142,FR,MD,201812,3,2,31187,15886 -148,FR,MD,201812,3,2,1487,1080 -163,FR,MD,201812,3,2,7390,6443 -164,FR,MD,201812,3,1,698,396 -164,FR,MD,201812,3,2,14624,2622 -164,FR,MD,201812,3,2,4138,226 -166,FR,MD,201812,3,2,1098,970 -166,FR,MD,201812,3,2,2310,459 -179,FR,MD,201812,3,2,49855,18051 -179,FR,MD,201812,3,2,14020,13073 -179,FR,MD,201812,3,2,22931,19940 -181,FR,MD,201812,3,2,96121,13467 -181,FR,MD,201812,4,2,25907,28 -182,FR,MD,201812,3,2,703,195 -341,FR,MD,201812,3,2,20800,9259 -543,FR,MD,201812,3,2,495,33 -551,FR,MD,201812,3,2,303,45 -552,FR,MD,201812,3,2,147,0 -621,FR,MD,201812,3,2,495,1452 -639,FR,MD,201812,3,2,3063,6660 -891,FR,MD,201812,3,2,93,0 -891,FR,MD,201812,3,2,26,9 -891,FR,MD,201812,3,2,1500,500 -892,FR,MD,201812,3,2,4853,806 -893,FR,MD,201812,3,2,78055,2786 -893,FR,MD,201812,3,2,822,0 -893,FR,MD,201812,3,2,2500,120 -893,FR,MD,201812,3,2,93432,1435 -893,FR,MD,201812,3,2,9068,4576 -893,FR,MD,201812,3,2,136837,7617 -893,FR,MD,201812,4,2,9872,79 -893,FR,MD,201812,4,2,10510,217 -893,FR,MD,201812,4,2,7900,490 -896,FR,MD,201812,3,2,16,3 -896,FR,MD,201812,3,2,5300,334 -896,FR,MD,201812,3,2,42633,12269 -896,FR,MD,201812,3,2,11419,12640 -896,FR,MD,201812,4,2,1954,8 -910,FR,MD,201812,4,1,53029,65 -910,FR,MD,201812,3,2,695754,91780 -910,FR,MD,201812,3,2,2555,233 -910,FR,MD,201812,3,2,456710,69908 -910,FR,MD,201812,4,2,2637,11 -910,FR,MD,201812,4,2,1033,180 -910,FR,MD,201812,9,2,31320,6030 -920,FR,MD,201812,3,1,340,0 -920,FR,MD,201812,3,2,16503,8163 -920,FR,MD,201812,3,2,23036,2002 -920,FR,MD,201812,3,2,509,1200 -920,FR,MD,201812,3,2,8149,15796 -920,FR,MD,201812,4,2,2090,280 -931,FR,MD,201812,3,1,2330,27 -931,FR,MD,201812,3,1,210648,19067 -931,FR,MD,201812,4,1,25642,3 -931,FR,MD,201812,4,1,785,6 -931,FR,MD,201812,0,2,257,11 -931,FR,MD,201812,3,2,39512,549 -931,FR,MD,201812,3,2,2200,6 -931,FR,MD,201812,3,2,5,0 -931,FR,MD,201812,3,2,51831,3755 -931,FR,MD,201812,3,2,112440,12031 -931,FR,MD,201812,4,2,978,2 -931,FR,MD,201812,4,2,631,12 -931,FR,MD,201812,4,2,1409,4 -931,FR,MD,201812,4,2,18800,4190 -931,FR,MD,201812,4,2,1268,23 -939,FR,MD,201812,3,1,11772,308 -939,FR,MD,201812,3,1,41786,1640 -939,FR,MD,201812,4,1,106259,8 -939,FR,MD,201812,0,2,270,1 -939,FR,MD,201812,1,2,163627,23381 -939,FR,MD,201812,3,2,102655,6709 -939,FR,MD,201812,3,2,5040,56 -939,FR,MD,201812,3,2,262,3 -939,FR,MD,201812,3,2,31400,14680 -939,FR,MD,201812,3,2,15,31 -939,FR,MD,201812,3,2,31064,4384 -939,FR,MD,201812,4,2,2395,14 -941,FR,MD,201812,3,2,480,85 -949,FR,MD,201812,3,1,2922,840 -949,FR,MD,201812,3,2,11615,2386 -949,FR,MD,201812,3,2,10644,199 -949,FR,MD,201812,3,2,512,0 -949,FR,MD,201812,3,2,56902,2410 -949,FR,MD,201812,3,2,2016,334 -949,FR,MD,201812,3,2,29,0 -949,FR,MD,201812,4,2,20,4 -949,FR,MD,201812,4,2,3169,410 -951,FR,MD,201812,3,2,187,25 -952,FR,MD,201812,3,1,17746,38646 -952,FR,MD,201812,3,2,2318,74 -952,FR,MD,201812,3,2,113,36 -952,FR,MD,201812,3,2,40640,16323 -961,FR,MD,201812,3,2,1832,85 -962,FR,MD,201812,3,1,77465,11666 -962,FR,MD,201812,3,1,79873,12020 -962,FR,MD,201812,3,2,10709,520 -962,FR,MD,201812,3,2,1251,191 -963,FR,MD,201812,0,1,208,0 -963,FR,MD,201812,3,1,91500,1174 -963,FR,MD,201812,3,1,2616,5 -963,FR,MD,201812,3,1,333,0 -963,FR,MD,201812,3,1,7133,15 -963,FR,MD,201812,3,1,2610,4 -963,FR,MD,201812,3,1,300,0 -963,FR,MD,201812,3,1,294,5 -963,FR,MD,201812,4,1,313,1 -963,FR,MD,201812,3,2,5579,94 -963,FR,MD,201812,3,2,2150,21 -963,FR,MD,201812,3,2,2,2 -963,FR,MD,201812,3,2,562,54 -963,FR,MD,201812,4,2,3038,60 -963,FR,MD,201812,4,2,1389,15 -971,FR,MD,201812,3,2,626,69 -971,FR,MD,201812,3,2,40,0 -971,FR,MD,201812,3,2,398,39 -971,FR,MD,201812,3,2,6096,68 -973,FR,MD,201812,3,2,92,84 -973,FR,MD,201812,3,2,40,0 -973,FR,MD,201812,3,2,1170,195 -974,FR,MD,201812,3,2,143,37 -974,FR,MD,201812,4,2,4,0 -975,FR,MD,201812,3,1,6206,1217 -975,FR,MD,201812,3,1,41488,3850 -975,FR,MD,201812,3,2,8517,406 -975,FR,MD,201812,3,2,1,3 -976,FR,MD,201812,3,1,3897,361 -976,FR,MD,201812,3,1,4274,510 -976,FR,MD,201812,3,2,27670,1224 -976,FR,MD,201812,3,2,90,8 -979,FR,MD,201812,3,1,2082,393 -979,FR,MD,201812,3,1,18853,3308 -979,FR,MD,201812,1,2,2965,13004 -979,FR,MD,201812,3,2,73682,2512 -979,FR,MD,201812,3,2,1467,49 -979,FR,MD,201812,3,2,735,10 -979,FR,MD,201812,3,2,14000,1000 -979,FR,MD,201812,3,2,103,121 -979,FR,MD,201812,3,2,4385,1225 -979,FR,MD,201812,3,2,356,19 -979,FR,MD,201812,4,2,11,0 -979,FR,MD,201812,4,2,3576,18 -979,FR,MD,201812,4,2,16328,0 -979,FR,MD,201812,4,2,39019,570 -979,FR,MD,201812,4,2,6436,34 -999,FR,MD,201812,3,2,625,25 -999,FR,MD,201812,3,2,12172,211 -999,FR,MD,201812,4,2,4,0 -999,FR,MD,201812,4,2,8377,540 -001,FR,RU,201812,4,1,32744,99 -001,FR,RU,201812,4,2,468749,757 -015,FR,RU,201812,4,1,69,24 -015,FR,RU,201812,4,1,157,0 -015,FR,RU,201812,1,2,126045,44197 -015,FR,RU,201812,1,2,49013,88407 -015,FR,RU,201812,3,2,42775,14315 -015,FR,RU,201812,3,2,252002,99910 -015,FR,RU,201812,3,2,576910,192259 -015,FR,RU,201812,3,2,94559,31898 -015,FR,RU,201812,3,2,184677,68971 -035,FR,RU,201812,3,2,10159,1440 -035,FR,RU,201812,3,2,112144,54288 -039,FR,RU,201812,3,2,17200,20000 -042,FR,RU,201812,3,2,18900,60000 -045,FR,RU,201812,3,1,0,1300 -049,FR,RU,201812,4,1,226,0 -056,FR,RU,201812,1,1,13459,17700 -056,FR,RU,201812,1,1,2417876,5607417 -056,FR,RU,201812,1,1,241376,480044 -056,FR,RU,201812,1,1,2408877,5816441 -056,FR,RU,201812,1,1,22378,52710 -056,FR,RU,201812,1,1,48351,106330 -056,FR,RU,201812,1,1,12931,24405 -056,FR,RU,201812,3,1,23033,7825 -056,FR,RU,201812,3,1,49625,14659 -057,FR,RU,201812,1,1,512949,3267188 -057,FR,RU,201812,1,1,920316,6851984 -057,FR,RU,201812,3,1,139880,251041 -092,FR,RU,201812,3,1,174995,99000 -092,FR,RU,201812,3,1,803607,496800 -092,FR,RU,201812,3,2,76132,35227 -092,FR,RU,201812,3,2,257780,133127 -092,FR,RU,201812,3,2,142423,70662 -092,FR,RU,201812,3,2,35555,19015 -092,FR,RU,201812,3,2,35568,19022 -099,FR,RU,201812,3,1,130,3 -099,FR,RU,201812,3,1,14348,4096 -099,FR,RU,201812,1,2,9100,48 -099,FR,RU,201812,1,2,30200,20000 -099,FR,RU,201812,3,2,693735,26285 -099,FR,RU,201812,3,2,1045,15 -099,FR,RU,201812,3,2,281226,4786 -099,FR,RU,201812,3,2,33781,20292 -099,FR,RU,201812,3,2,239300,6490 -099,FR,RU,201812,3,2,54601,12950 -099,FR,RU,201812,4,2,1520,54 -099,FR,RU,201812,4,2,222294,107 -099,FR,RU,201812,4,2,158404,196 -099,FR,RU,201812,4,2,99494,174 -111,FR,RU,201812,4,2,20,8 -112,FR,RU,201812,3,2,6929,1246 -121,FR,RU,201812,1,1,8640,12960 -121,FR,RU,201812,1,2,4741,482 -121,FR,RU,201812,1,2,3044,24 -121,FR,RU,201812,3,2,167472,11889 -121,FR,RU,201812,3,2,222818,29615 -121,FR,RU,201812,3,2,740374,59233 -121,FR,RU,201812,3,2,23562,18064 -121,FR,RU,201812,3,2,61949,5189 -121,FR,RU,201812,4,2,185552,10443 -121,FR,RU,201812,4,2,19575,9234 -122,FR,RU,201812,3,2,42975,117960 -125,FR,RU,201812,0,1,3200,738 -125,FR,RU,201812,1,2,567325,33734 -125,FR,RU,201812,1,2,99345,44338 -125,FR,RU,201812,2,2,498916,209956 -125,FR,RU,201812,3,2,43000,781 -125,FR,RU,201812,3,2,904092,337256 -125,FR,RU,201812,3,2,796,378 -125,FR,RU,201812,4,2,59125,1480 -125,FR,RU,201812,4,2,41873,2301 -128,FR,RU,201812,3,2,1151,820 -128,FR,RU,201812,3,2,2132,2420 -128,FR,RU,201812,4,2,8,3 -131,FR,RU,201812,3,2,26507,1916 -131,FR,RU,201812,3,2,493,77 -132,FR,RU,201812,0,1,5,0 -132,FR,RU,201812,3,1,207,0 -132,FR,RU,201812,4,1,125,3 -132,FR,RU,201812,1,2,29006,17975 -132,FR,RU,201812,3,2,7544,473 -132,FR,RU,201812,3,2,107103,29893 -132,FR,RU,201812,3,2,435780,111939 -132,FR,RU,201812,3,2,90153,33684 -132,FR,RU,201812,3,2,292983,75883 -132,FR,RU,201812,3,2,34200,18000 -132,FR,RU,201812,4,2,3088,73 -132,FR,RU,201812,4,2,2844,33 -133,FR,RU,201812,3,1,98,0 -133,FR,RU,201812,0,2,60,2 -133,FR,RU,201812,3,2,19197,502 -133,FR,RU,201812,4,2,108,7 -135,FR,RU,201812,3,2,45348,7020 -136,FR,RU,201812,0,1,2,0 -136,FR,RU,201812,1,2,87045,175000 -136,FR,RU,201812,3,2,56815,26140 -136,FR,RU,201812,3,2,8632,4160 -136,FR,RU,201812,3,2,55394,32853 -136,FR,RU,201812,3,2,11284,27 -139,FR,RU,201812,3,1,64,0 -139,FR,RU,201812,3,1,255096,60790 -139,FR,RU,201812,3,1,73792,19460 -139,FR,RU,201812,0,2,1355,5 -139,FR,RU,201812,1,2,992,500 -139,FR,RU,201812,3,2,375256,24656 -139,FR,RU,201812,3,2,30265,3060 -139,FR,RU,201812,3,2,70311,18689 -139,FR,RU,201812,3,2,198563,6947 -139,FR,RU,201812,3,2,11516,1508 -139,FR,RU,201812,3,2,49458,13919 -139,FR,RU,201812,3,2,206837,49908 -139,FR,RU,201812,4,2,306754,9270 -139,FR,RU,201812,4,2,14737,380 -142,FR,RU,201812,0,1,543463,103225 -142,FR,RU,201812,1,1,51788,19308 -142,FR,RU,201812,1,1,279048,88877 -142,FR,RU,201812,3,1,384393,10723 -142,FR,RU,201812,3,1,36095,8766 -142,FR,RU,201812,3,1,27335,18006 -142,FR,RU,201812,3,1,228530,35400 -142,FR,RU,201812,3,1,108268,38796 -142,FR,RU,201812,3,2,4960,800 -142,FR,RU,201812,4,2,47906,5774 -146,FR,RU,201812,3,2,86830,8085 -146,FR,RU,201812,3,2,693480,67056 -146,FR,RU,201812,3,2,86000,7110 -146,FR,RU,201812,3,2,531221,47184 -146,FR,RU,201812,4,2,4493,722 -148,FR,RU,201812,4,2,10742,26 -161,FR,RU,201812,1,2,7340,20000 -161,FR,RU,201812,1,2,4607,5000 -161,FR,RU,201812,3,2,486,420 -162,FR,RU,201812,1,2,625,700 -163,FR,RU,201812,1,2,18277,11000 -163,FR,RU,201812,3,2,45570,12334 -163,FR,RU,201812,3,2,30746,10239 -163,FR,RU,201812,3,2,27138,6669 -164,FR,RU,201812,3,2,16651,11906 -164,FR,RU,201812,3,2,3481,600 -164,FR,RU,201812,3,2,81422,18514 -164,FR,RU,201812,3,2,22674,14148 -164,FR,RU,201812,3,2,14153,4882 -164,FR,RU,201812,3,2,22126,4053 -164,FR,RU,201812,3,2,40076,5219 -164,FR,RU,201812,4,2,4,3 -165,FR,RU,201812,1,1,2989,3360 -166,FR,RU,201812,0,2,350,7 -166,FR,RU,201812,1,2,2810,500 -166,FR,RU,201812,3,2,2732,360 -166,FR,RU,201812,3,2,35704,17486 -166,FR,RU,201812,3,2,71908,33027 -166,FR,RU,201812,3,2,85305,50363 -166,FR,RU,201812,3,2,99774,62332 -172,FR,RU,201812,1,1,798522,3378805 -172,FR,RU,201812,1,1,460163,2000000 -179,FR,RU,201812,1,1,1204813,5775780 -179,FR,RU,201812,1,1,662768,3310880 -179,FR,RU,201812,3,1,51423,30490 -179,FR,RU,201812,4,1,1745,161 -179,FR,RU,201812,4,1,817,85 -179,FR,RU,201812,1,2,162,79 -179,FR,RU,201812,1,2,104528,115500 -179,FR,RU,201812,1,2,9131,8000 -179,FR,RU,201812,1,2,147198,161700 -179,FR,RU,201812,1,2,40000,20000 -179,FR,RU,201812,3,2,1161995,602312 -179,FR,RU,201812,3,2,127656,15652 -179,FR,RU,201812,3,2,580059,453325 -179,FR,RU,201812,3,2,480476,206182 -179,FR,RU,201812,3,2,46871,40670 -179,FR,RU,201812,3,2,1164213,559236 -179,FR,RU,201812,3,2,24894,18048 -181,FR,RU,201812,4,1,214,28 -181,FR,RU,201812,4,1,205,0 -181,FR,RU,201812,4,1,362,30 -181,FR,RU,201812,1,2,283702,33347 -181,FR,RU,201812,3,2,214625,25252 -181,FR,RU,201812,3,2,1324551,156671 -181,FR,RU,201812,3,2,361726,55142 -181,FR,RU,201812,3,2,303306,42504 -181,FR,RU,201812,3,2,224443,26500 -181,FR,RU,201812,4,2,1269,2 -182,FR,RU,201812,1,1,109729,136820 -182,FR,RU,201812,3,2,12,0 -182,FR,RU,201812,3,2,24483,21900 -182,FR,RU,201812,3,2,25166,20729 -211,FR,RU,201812,0,1,9852025,161634800 -211,FR,RU,201812,1,1,1882970,15774000 -211,FR,RU,201812,1,1,5058500,37841000 -211,FR,RU,201812,1,1,10378750,92336097 -211,FR,RU,201812,1,1,10594458,101186000 -211,FR,RU,201812,8,1,1217302,5921839 -310,FR,RU,201812,1,1,50631742,92288000 -310,FR,RU,201812,1,1,33975283,100299897 -310,FR,RU,201812,1,1,38462387,99653000 -310,FR,RU,201812,1,1,43158713,106644000 -310,FR,RU,201812,1,1,57703275,146057000 -310,FR,RU,201812,1,1,21633933,53298000 -310,FR,RU,201812,1,1,78514699,197643000 -321,FR,RU,201812,1,1,144220,105950 -321,FR,RU,201812,3,2,15,3 -321,FR,RU,201812,3,2,493,548 -323,FR,RU,201812,3,2,4090,1758 -325,FR,RU,201812,1,1,28825921,59562728 -325,FR,RU,201812,1,1,29056690,59649331 -325,FR,RU,201812,1,1,15964773,29876566 -325,FR,RU,201812,1,1,38134423,73502554 -325,FR,RU,201812,1,1,13916542,29951674 -325,FR,RU,201812,1,1,67216695,125545167 -325,FR,RU,201812,1,2,84970,95960 -325,FR,RU,201812,1,2,105744,119420 -325,FR,RU,201812,3,2,718,684 -325,FR,RU,201812,3,2,154565,161985 -327,FR,RU,201812,1,1,13507164,41697624 -327,FR,RU,201812,1,1,6050295,15386899 -330,FR,RU,201812,1,1,4666165,12105315 -330,FR,RU,201812,1,1,28798241,0 -341,FR,RU,201812,3,2,34533,17370 -341,FR,RU,201812,3,2,13923,70 -341,FR,RU,201812,3,2,8191,5400 -341,FR,RU,201812,3,2,8224,5930 -341,FR,RU,201812,3,2,78286,45653 -341,FR,RU,201812,3,2,7774,5350 -341,FR,RU,201812,3,2,558804,250301 -341,FR,RU,201812,3,2,388487,169629 -341,FR,RU,201812,4,2,23,2 -341,FR,RU,201812,4,2,7,1 -341,FR,RU,201812,4,2,40,1 -349,FR,RU,201812,3,1,16131,18725 -410,FR,RU,201812,1,1,5567185,51302000 -451,FR,RU,201812,3,1,22895,4337 -512,FR,RU,201812,3,1,47720,7000 -522,FR,RU,201812,1,2,43582,52130 -532,FR,RU,201812,3,2,18201,4826 -532,FR,RU,201812,3,2,65000,4099 -533,FR,RU,201812,3,1,121808,143195 -533,FR,RU,201812,3,2,84034,14606 -536,FR,RU,201812,1,1,72228,101360 -536,FR,RU,201812,1,1,100372,152228 -536,FR,RU,201812,1,1,137342,203060 -536,FR,RU,201812,1,1,238307,354422 -536,FR,RU,201812,3,2,13814,1210 -536,FR,RU,201812,3,2,175613,38210 -542,FR,RU,201812,1,2,506827,571540 -542,FR,RU,201812,1,2,216638,34600 -542,FR,RU,201812,1,2,155650,114025 -542,FR,RU,201812,1,2,22616,20588 -542,FR,RU,201812,1,2,41400,37775 -542,FR,RU,201812,1,2,22218,20237 -542,FR,RU,201812,3,2,20525,18900 -542,FR,RU,201812,3,2,31680,34870 -542,FR,RU,201812,3,2,62159,41680 -542,FR,RU,201812,3,2,66624,48808 -542,FR,RU,201812,4,2,35,0 -542,FR,RU,201812,4,2,1306,410 -543,FR,RU,201812,3,2,15526,3975 -545,FR,RU,201812,1,2,23026,20202 -551,FR,RU,201812,1,1,4,0 -551,FR,RU,201812,3,1,101727,234573 -551,FR,RU,201812,4,1,8,0 -551,FR,RU,201812,4,1,23471,8 -551,FR,RU,201812,3,2,108376,15736 -551,FR,RU,201812,3,2,912,15 -551,FR,RU,201812,3,2,218803,123474 -551,FR,RU,201812,4,2,470246,892 -551,FR,RU,201812,4,2,129,2 -551,FR,RU,201812,4,2,246805,305 -552,FR,RU,201812,3,1,1132,362 -552,FR,RU,201812,4,1,1457,1 -552,FR,RU,201812,3,2,28825,5103 -552,FR,RU,201812,3,2,4636,6 -552,FR,RU,201812,3,2,9385,2784 -552,FR,RU,201812,3,2,57910,2333 -552,FR,RU,201812,4,2,12461,6 -561,FR,RU,201812,3,1,11791,1792 -561,FR,RU,201812,3,2,457,10 -561,FR,RU,201812,4,2,54043,40 -562,FR,RU,201812,0,1,3986443,2088413 -562,FR,RU,201812,1,1,44960,24755 -562,FR,RU,201812,1,1,200149,110580 -562,FR,RU,201812,1,1,45265,24923 -562,FR,RU,201812,3,1,2249453,1094631 -565,FR,RU,201812,0,1,464410,14701 -565,FR,RU,201812,1,1,126364,5243 -565,FR,RU,201812,1,1,54296,1178 -565,FR,RU,201812,3,1,32122,865 -565,FR,RU,201812,3,1,3947577,76071 -565,FR,RU,201812,3,1,65446,570 -565,FR,RU,201812,3,1,102254,3276 -565,FR,RU,201812,4,1,5173,125 -565,FR,RU,201812,4,1,143522,2656 -565,FR,RU,201812,4,1,7946,97 -565,FR,RU,201812,4,2,2163,0 -565,FR,RU,201812,4,2,13142,40 -568,FR,RU,201812,3,1,254244,98009 -568,FR,RU,201812,3,1,30924,6739 -568,FR,RU,201812,4,1,1861,25 -568,FR,RU,201812,3,2,31376,3434 -568,FR,RU,201812,3,2,5185,415 -568,FR,RU,201812,3,2,6093,473 -568,FR,RU,201812,3,2,6800,545 -568,FR,RU,201812,3,2,10,0 -568,FR,RU,201812,3,2,57723,5913 -568,FR,RU,201812,4,2,20858,26 -568,FR,RU,201812,4,2,56825,303 -568,FR,RU,201812,4,2,72895,613 -568,FR,RU,201812,4,2,1916,10 -614,FR,RU,201812,1,2,47354,153600 -614,FR,RU,201812,3,2,33026,87450 -614,FR,RU,201812,3,2,39013,126000 -621,FR,RU,201812,3,2,97,8 -621,FR,RU,201812,3,2,8572,16929 -623,FR,RU,201812,3,2,8,0 -632,FR,RU,201812,4,1,10,6 -639,FR,RU,201812,1,1,398062,2038691 -639,FR,RU,201812,1,1,500526,2563467 -639,FR,RU,201812,1,2,3933,8003 -639,FR,RU,201812,1,2,25760,36000 -639,FR,RU,201812,3,2,2520,102 -639,FR,RU,201812,3,2,1849,2000 -639,FR,RU,201812,3,2,851,1000 -639,FR,RU,201812,3,2,6152,7000 -639,FR,RU,201812,3,2,66562,13767 -639,FR,RU,201812,3,2,5085,20000 -691,FR,RU,201812,3,1,196,15 -691,FR,RU,201812,4,1,251,6 -691,FR,RU,201812,3,2,146516,6448 -691,FR,RU,201812,3,2,1199,707 -691,FR,RU,201812,3,2,16960,472 -691,FR,RU,201812,3,2,8714,230 -691,FR,RU,201812,3,2,180,8 -691,FR,RU,201812,3,2,124703,2663 -692,FR,RU,201812,3,1,8468,13552 -692,FR,RU,201812,1,2,23030,21600 -692,FR,RU,201812,1,2,61620,77600 -692,FR,RU,201812,1,2,407615,402800 -692,FR,RU,201812,1,2,264303,546000 -692,FR,RU,201812,2,2,33820,40000 -692,FR,RU,201812,3,2,408333,395000 -692,FR,RU,201812,3,2,36181,84000 -692,FR,RU,201812,3,2,16855,20000 -692,FR,RU,201812,3,2,51572,64662 -722,FR,RU,201812,1,1,5870650,15930400 -723,FR,RU,201812,1,1,2847343,10859240 -723,FR,RU,201812,1,1,4526870,18500000 -724,FR,RU,201812,1,1,5557835,26004635 -724,FR,RU,201812,1,1,60373,168000 -729,FR,RU,201812,1,1,917593,3285450 -813,FR,RU,201812,3,2,4844,6125 -813,FR,RU,201812,3,2,7350,19200 -819,FR,RU,201812,1,1,597485,11070 -819,FR,RU,201812,1,1,19908,228 -819,FR,RU,201812,1,1,83810,50400 -819,FR,RU,201812,3,1,34906,1 -819,FR,RU,201812,3,1,92394,38000 -819,FR,RU,201812,3,1,108062,2402 -819,FR,RU,201812,3,1,17560,20000 -819,FR,RU,201812,3,1,303632,60310 -819,FR,RU,201812,3,1,545936,104000 -819,FR,RU,201812,4,1,111257,16 -819,FR,RU,201812,4,1,2199,2 -819,FR,RU,201812,4,1,43000,59 -819,FR,RU,201812,4,1,3177900,2 -819,FR,RU,201812,4,1,11944,2 -819,FR,RU,201812,1,2,26920,16000 -819,FR,RU,201812,1,2,224344,209280 -819,FR,RU,201812,1,2,53318,34000 -819,FR,RU,201812,1,2,31745,22700 -819,FR,RU,201812,1,2,31197,23000 -819,FR,RU,201812,1,2,43967,19000 -819,FR,RU,201812,1,2,29792,22000 -819,FR,RU,201812,1,2,60687,32175 -819,FR,RU,201812,3,2,183222,123713 -819,FR,RU,201812,3,2,70885,1985 -819,FR,RU,201812,3,2,33600,20000 -819,FR,RU,201812,3,2,204186,15817 -819,FR,RU,201812,3,2,4462218,35251 -819,FR,RU,201812,3,2,54427,16000 -819,FR,RU,201812,3,2,3161891,81432 -819,FR,RU,201812,3,2,152413,11808 -819,FR,RU,201812,3,2,136718,11605 -819,FR,RU,201812,4,2,407588,12154 -819,FR,RU,201812,4,2,2717,10 -820,FR,RU,201812,3,2,13414,1200 -839,FR,RU,201812,1,1,13209688,30159680 -891,FR,RU,201812,3,1,276,95 -891,FR,RU,201812,3,1,34022,14239 -891,FR,RU,201812,4,1,123,1 -891,FR,RU,201812,4,1,237,65 -891,FR,RU,201812,0,2,47,3 -891,FR,RU,201812,1,2,408563,186491 -891,FR,RU,201812,1,2,27997,9900 -891,FR,RU,201812,1,2,572978,341832 -891,FR,RU,201812,1,2,65039,88050 -891,FR,RU,201812,1,2,30950,24750 -891,FR,RU,201812,1,2,208503,186100 -891,FR,RU,201812,1,2,5110,5000 -891,FR,RU,201812,1,2,4129,4000 -891,FR,RU,201812,1,2,13735,22000 -891,FR,RU,201812,1,2,13912,22200 -891,FR,RU,201812,1,2,52792,86000 -891,FR,RU,201812,1,2,29766,36250 -891,FR,RU,201812,1,2,13917,22000 -891,FR,RU,201812,1,2,65563,107000 -891,FR,RU,201812,1,2,132648,31500 -891,FR,RU,201812,1,2,188633,24000 -891,FR,RU,201812,2,2,92025,65220 -891,FR,RU,201812,3,2,1788374,892853 -891,FR,RU,201812,3,2,7456,2540 -891,FR,RU,201812,3,2,56164,40638 -891,FR,RU,201812,3,2,63881,114520 -891,FR,RU,201812,3,2,43126,64460 -891,FR,RU,201812,3,2,39924,14417 -891,FR,RU,201812,3,2,473521,239953 -891,FR,RU,201812,3,2,1410600,616277 -891,FR,RU,201812,3,2,214554,77974 -891,FR,RU,201812,3,2,2387540,1114146 -891,FR,RU,201812,3,2,6823,2000 -891,FR,RU,201812,3,2,35980,21000 -891,FR,RU,201812,3,2,107888,88000 -891,FR,RU,201812,3,2,32750,22000 -891,FR,RU,201812,3,2,13750,22000 -891,FR,RU,201812,4,2,116568,864 -891,FR,RU,201812,4,2,5218,1 -891,FR,RU,201812,4,2,344585,484 -891,FR,RU,201812,4,2,1294,110 -892,FR,RU,201812,4,1,274,22 -892,FR,RU,201812,1,2,76950,20520 -892,FR,RU,201812,1,2,82951,20800 -892,FR,RU,201812,3,2,533798,165295 -892,FR,RU,201812,3,2,58677,2013 -892,FR,RU,201812,3,2,23249,1764 -892,FR,RU,201812,3,2,45943,19234 -892,FR,RU,201812,3,2,105762,28425 -892,FR,RU,201812,3,2,527527,205516 -892,FR,RU,201812,3,2,129624,21650 -892,FR,RU,201812,3,2,384133,49675 -892,FR,RU,201812,3,2,27944,5956 -892,FR,RU,201812,4,2,175,4 -892,FR,RU,201812,4,2,2045,23 -892,FR,RU,201812,4,2,32397,199 -892,FR,RU,201812,4,2,9723,2760 -893,FR,RU,201812,0,1,672,8 -893,FR,RU,201812,3,1,2445,115 -893,FR,RU,201812,3,1,17820,2097 -893,FR,RU,201812,3,1,8649,860 -893,FR,RU,201812,3,1,20839,100 -893,FR,RU,201812,4,1,15365,112 -893,FR,RU,201812,4,1,136,0 -893,FR,RU,201812,4,1,372,7 -893,FR,RU,201812,4,1,59846,500 -893,FR,RU,201812,4,1,141,5 -893,FR,RU,201812,0,2,1642,17 -893,FR,RU,201812,1,2,36227,1713 -893,FR,RU,201812,1,2,656000,16316 -893,FR,RU,201812,1,2,170077,120889 -893,FR,RU,201812,1,2,21788,9278 -893,FR,RU,201812,1,2,44411,12333 -893,FR,RU,201812,1,2,63550,36725 -893,FR,RU,201812,1,2,363567,207308 -893,FR,RU,201812,1,2,92345,71811 -893,FR,RU,201812,1,2,119263,60036 -893,FR,RU,201812,1,2,753251,442229 -893,FR,RU,201812,1,2,203376,94045 -893,FR,RU,201812,1,2,37178,28160 -893,FR,RU,201812,1,2,31818,28324 -893,FR,RU,201812,1,2,22917,9337 -893,FR,RU,201812,3,2,17929972,412752 -893,FR,RU,201812,3,2,169980,20449 -893,FR,RU,201812,3,2,1285113,7337 -893,FR,RU,201812,3,2,255089,8935 -893,FR,RU,201812,3,2,5317,125 -893,FR,RU,201812,3,2,3230823,138252 -893,FR,RU,201812,3,2,1863663,221249 -893,FR,RU,201812,3,2,13755437,1855546 -893,FR,RU,201812,3,2,83285,62108 -893,FR,RU,201812,3,2,2287959,300726 -893,FR,RU,201812,3,2,23120,9149 -893,FR,RU,201812,3,2,15886644,560012 -893,FR,RU,201812,3,2,17628,13904 -893,FR,RU,201812,3,2,704814,38695 -893,FR,RU,201812,3,2,3132751,182058 -893,FR,RU,201812,3,2,27500,23640 -893,FR,RU,201812,3,2,31080,21288 -893,FR,RU,201812,3,2,40868,22830 -893,FR,RU,201812,3,2,56511,13457 -893,FR,RU,201812,4,2,4201910,50544 -893,FR,RU,201812,4,2,17819,169 -893,FR,RU,201812,4,2,34128,610 -893,FR,RU,201812,4,2,2807077,4567 -893,FR,RU,201812,4,2,5047,4 -893,FR,RU,201812,4,2,366,3 -893,FR,RU,201812,4,2,6408,22 -893,FR,RU,201812,4,2,5988,200 -893,FR,RU,201812,4,2,8140,311 -893,FR,RU,201812,4,2,43157,290 -894,FR,RU,201812,3,2,178,20 -895,FR,RU,201812,1,2,78139,62660 -895,FR,RU,201812,1,2,10585,21000 -896,FR,RU,201812,3,1,11649,42 -896,FR,RU,201812,3,1,768233,4574 -896,FR,RU,201812,3,1,3300,500 -896,FR,RU,201812,4,1,95,0 -896,FR,RU,201812,4,1,2937,25 -896,FR,RU,201812,4,1,204,0 -896,FR,RU,201812,4,1,2882,47 -896,FR,RU,201812,4,1,1719,0 -896,FR,RU,201812,1,2,466320,155450 -896,FR,RU,201812,1,2,325171,83435 -896,FR,RU,201812,1,2,155028,58220 -896,FR,RU,201812,1,2,1389468,413796 -896,FR,RU,201812,1,2,430078,255670 -896,FR,RU,201812,1,2,1272560,253236 -896,FR,RU,201812,1,2,6491,5400 -896,FR,RU,201812,1,2,1812,750 -896,FR,RU,201812,1,2,1393,1100 -896,FR,RU,201812,1,2,7991,6600 -896,FR,RU,201812,1,2,958647,325628 -896,FR,RU,201812,1,2,125608,50820 -896,FR,RU,201812,3,2,1825956,337125 -896,FR,RU,201812,3,2,182557,11095 -896,FR,RU,201812,3,2,32605,6079 -896,FR,RU,201812,3,2,1355536,276992 -896,FR,RU,201812,3,2,33698,15390 -896,FR,RU,201812,3,2,83232,35813 -896,FR,RU,201812,3,2,2235974,203341 -896,FR,RU,201812,3,2,7489774,1001252 -896,FR,RU,201812,3,2,425385,34737 -896,FR,RU,201812,3,2,763499,154726 -896,FR,RU,201812,3,2,830648,371521 -896,FR,RU,201812,3,2,471312,23674 -896,FR,RU,201812,3,2,2901212,134244 -896,FR,RU,201812,3,2,4890,660 -896,FR,RU,201812,3,2,897813,339720 -896,FR,RU,201812,3,2,55205,20980 -896,FR,RU,201812,3,2,52094,16725 -896,FR,RU,201812,3,2,7437,5854 -896,FR,RU,201812,4,2,241777,3840 -896,FR,RU,201812,4,2,112022,1145 -896,FR,RU,201812,4,2,18,10 -896,FR,RU,201812,4,2,5109,46 -896,FR,RU,201812,4,2,49,1 -896,FR,RU,201812,4,2,347023,2596 -896,FR,RU,201812,4,2,2450,25 -896,FR,RU,201812,4,2,4116,35 -896,FR,RU,201812,4,2,62,1 -896,FR,RU,201812,4,2,11217,250 -910,FR,RU,201812,0,1,5604,254 -910,FR,RU,201812,1,1,74846,35298 -910,FR,RU,201812,1,1,57663442,67151 -910,FR,RU,201812,3,1,176618,16348 -910,FR,RU,201812,3,1,147432,43745 -910,FR,RU,201812,3,1,2868230,73983 -910,FR,RU,201812,4,1,20409,26 -910,FR,RU,201812,4,1,47893,206 -910,FR,RU,201812,4,1,1112,120 -910,FR,RU,201812,4,1,12509,5 -910,FR,RU,201812,4,1,107004,17498 -910,FR,RU,201812,4,1,618,1039 -910,FR,RU,201812,9,1,42260,2185 -910,FR,RU,201812,1,2,27188,3128 -910,FR,RU,201812,1,2,16,9 -910,FR,RU,201812,3,2,2162201,194075 -910,FR,RU,201812,3,2,324714,20697 -910,FR,RU,201812,3,2,47543,5120 -910,FR,RU,201812,3,2,1152975,67906 -910,FR,RU,201812,3,2,5750869,624788 -910,FR,RU,201812,3,2,1050476,113427 -910,FR,RU,201812,3,2,30867,636 -910,FR,RU,201812,3,2,84548,33716 -910,FR,RU,201812,4,2,7559392,4981 -910,FR,RU,201812,4,2,3352,393 -910,FR,RU,201812,4,2,182125,335 -910,FR,RU,201812,4,2,41280,42 -910,FR,RU,201812,4,2,15908,2225 -910,FR,RU,201812,4,2,2264471,4203 -910,FR,RU,201812,4,2,1665,1 -910,FR,RU,201812,4,2,6003,65 -910,FR,RU,201812,4,2,12858,9 -910,FR,RU,201812,4,2,56022,1360 -910,FR,RU,201812,4,2,5590,6 -910,FR,RU,201812,5,2,1407,8 -910,FR,RU,201812,9,2,54570580,48923 -920,FR,RU,201812,3,1,12720,1220 -920,FR,RU,201812,1,2,93934,14500 -920,FR,RU,201812,3,2,64005,8541 -920,FR,RU,201812,3,2,489645,64460 -920,FR,RU,201812,3,2,150115,35366 -920,FR,RU,201812,3,2,529049,72554 -920,FR,RU,201812,3,2,87134,5276 -920,FR,RU,201812,3,2,802042,87876 -920,FR,RU,201812,4,2,9744,790 -920,FR,RU,201812,4,2,69862,5903 -920,FR,RU,201812,4,2,1759,200 -920,FR,RU,201812,4,2,43195,7060 -920,FR,RU,201812,9,2,433573,64832 -931,FR,RU,201812,0,1,17790,810 -931,FR,RU,201812,1,1,383488,37922 -931,FR,RU,201812,1,1,36755,9339 -931,FR,RU,201812,3,1,212560,1093 -931,FR,RU,201812,3,1,8848,27 -931,FR,RU,201812,3,1,1951,400 -931,FR,RU,201812,3,1,59345,31 -931,FR,RU,201812,3,1,523125,42552 -931,FR,RU,201812,3,1,23,1 -931,FR,RU,201812,4,1,173246,182 -931,FR,RU,201812,4,1,60181,53 -931,FR,RU,201812,4,1,690,3 -931,FR,RU,201812,4,1,16277,142 -931,FR,RU,201812,4,1,943317,390 -931,FR,RU,201812,4,1,45706,36 -931,FR,RU,201812,4,1,41776,223 -931,FR,RU,201812,4,1,80,0 -931,FR,RU,201812,4,1,345729,147 -931,FR,RU,201812,0,2,4185,11 -931,FR,RU,201812,1,2,3770507,49941 -931,FR,RU,201812,1,2,73000,592 -931,FR,RU,201812,1,2,288,27 -931,FR,RU,201812,1,2,13155,81 -931,FR,RU,201812,3,2,13271716,499829 -931,FR,RU,201812,3,2,107348,14116 -931,FR,RU,201812,3,2,283980,2148 -931,FR,RU,201812,3,2,72122,29 -931,FR,RU,201812,3,2,233228,3333 -931,FR,RU,201812,3,2,226937,9057 -931,FR,RU,201812,3,2,766397,92744 -931,FR,RU,201812,3,2,3487643,265634 -931,FR,RU,201812,3,2,496121,39340 -931,FR,RU,201812,3,2,1980548,110023 -931,FR,RU,201812,3,2,8557,32 -931,FR,RU,201812,4,2,6230498,22566 -931,FR,RU,201812,4,2,650650,121 -931,FR,RU,201812,4,2,36487,75 -931,FR,RU,201812,4,2,103879,15 -931,FR,RU,201812,4,2,1315,1 -931,FR,RU,201812,4,2,7004,364 -931,FR,RU,201812,4,2,465,4 -931,FR,RU,201812,4,2,5368440,8254 -931,FR,RU,201812,4,2,7431,16 -931,FR,RU,201812,4,2,39423,11 -931,FR,RU,201812,4,2,160005,50 -931,FR,RU,201812,4,2,416568,6067 -931,FR,RU,201812,4,2,61595,442 -931,FR,RU,201812,4,2,895316,21380 -931,FR,RU,201812,4,2,15034,10 -931,FR,RU,201812,4,2,4823,80 -931,FR,RU,201812,5,2,563,2 -939,FR,RU,201812,0,1,26902,40 -939,FR,RU,201812,1,1,126,0 -939,FR,RU,201812,3,1,1597068,429622 -939,FR,RU,201812,3,1,30,26 -939,FR,RU,201812,3,1,359524,543 -939,FR,RU,201812,3,1,330,22 -939,FR,RU,201812,3,1,62111,392 -939,FR,RU,201812,3,1,62837,396 -939,FR,RU,201812,3,1,210898,28589 -939,FR,RU,201812,3,1,123931,39724 -939,FR,RU,201812,3,1,3590411,249456 -939,FR,RU,201812,4,1,209754,1267 -939,FR,RU,201812,4,1,64468,5863 -939,FR,RU,201812,4,1,2329057,903 -939,FR,RU,201812,4,1,1931,4 -939,FR,RU,201812,4,1,367,7 -939,FR,RU,201812,0,2,595,37 -939,FR,RU,201812,1,2,131714,5824 -939,FR,RU,201812,1,2,1488613,209432 -939,FR,RU,201812,1,2,628,0 -939,FR,RU,201812,1,2,54567,3000 -939,FR,RU,201812,1,2,111862,24199 -939,FR,RU,201812,1,2,424222,82531 -939,FR,RU,201812,1,2,426374,75180 -939,FR,RU,201812,1,2,194173,15930 -939,FR,RU,201812,3,2,7030305,519250 -939,FR,RU,201812,3,2,960276,70859 -939,FR,RU,201812,3,2,35935,170 -939,FR,RU,201812,3,2,5154,877 -939,FR,RU,201812,3,2,13609,91 -939,FR,RU,201812,3,2,12136,98 -939,FR,RU,201812,3,2,615920,21778 -939,FR,RU,201812,3,2,2180907,139038 -939,FR,RU,201812,3,2,5277979,470759 -939,FR,RU,201812,3,2,2513968,75636 -939,FR,RU,201812,3,2,8949456,1170484 -939,FR,RU,201812,3,2,393788,136 -939,FR,RU,201812,3,2,66301,1391 -939,FR,RU,201812,4,2,14757268,12845 -939,FR,RU,201812,4,2,49303,100 -939,FR,RU,201812,4,2,179238,1611 -939,FR,RU,201812,4,2,4146,86 -939,FR,RU,201812,4,2,15685,24 -939,FR,RU,201812,4,2,2776,6 -939,FR,RU,201812,4,2,15353,1280 -939,FR,RU,201812,4,2,7944,45 -939,FR,RU,201812,4,2,197,1 -939,FR,RU,201812,4,2,2413488,13851 -939,FR,RU,201812,4,2,12054,300 -939,FR,RU,201812,4,2,26160,192 -939,FR,RU,201812,4,2,140167,286 -939,FR,RU,201812,4,2,7369,5 -939,FR,RU,201812,4,2,17128,89 -939,FR,RU,201812,4,2,14149,47 -939,FR,RU,201812,4,2,31316,230 -939,FR,RU,201812,4,2,2010,2 -939,FR,RU,201812,4,2,593456,19830 -939,FR,RU,201812,4,2,5588,64 -941,FR,RU,201812,4,1,817,0 -941,FR,RU,201812,3,2,490393,65334 -941,FR,RU,201812,3,2,180778,64713 -941,FR,RU,201812,3,2,19630,1741 -941,FR,RU,201812,3,2,7190,245 -941,FR,RU,201812,4,2,1292,220 -949,FR,RU,201812,0,1,4970,84 -949,FR,RU,201812,3,1,8210,1311 -949,FR,RU,201812,3,1,2830,150 -949,FR,RU,201812,3,1,158178,33074 -949,FR,RU,201812,4,1,5258,125 -949,FR,RU,201812,4,1,331,13 -949,FR,RU,201812,4,1,3483,2 -949,FR,RU,201812,4,1,177065,70 -949,FR,RU,201812,4,1,18,465 -949,FR,RU,201812,0,2,485,9 -949,FR,RU,201812,1,2,11613,503 -949,FR,RU,201812,1,2,172196,39897 -949,FR,RU,201812,3,2,930193,65379 -949,FR,RU,201812,3,2,62117,11336 -949,FR,RU,201812,3,2,121,3 -949,FR,RU,201812,3,2,7351,313 -949,FR,RU,201812,3,2,451,21 -949,FR,RU,201812,3,2,929,16 -949,FR,RU,201812,3,2,437962,18120 -949,FR,RU,201812,3,2,1272875,280368 -949,FR,RU,201812,3,2,8209,1042 -949,FR,RU,201812,3,2,7900,253 -949,FR,RU,201812,3,2,44236,16701 -949,FR,RU,201812,3,2,519297,15235 -949,FR,RU,201812,3,2,13518,2 -949,FR,RU,201812,4,2,1138543,3229 -949,FR,RU,201812,4,2,1985,8 -949,FR,RU,201812,4,2,120,6 -949,FR,RU,201812,4,2,2075,102 -949,FR,RU,201812,4,2,1962,143 -949,FR,RU,201812,4,2,206933,853 -949,FR,RU,201812,4,2,1129,90 -949,FR,RU,201812,4,2,14990,80 -949,FR,RU,201812,4,2,229241,8440 -949,FR,RU,201812,5,2,12,1 -951,FR,RU,201812,3,1,52500,18567 -951,FR,RU,201812,3,1,48355,17376 -951,FR,RU,201812,3,1,1677,215 -951,FR,RU,201812,4,1,5286,9 -951,FR,RU,201812,3,2,18807,2069 -951,FR,RU,201812,3,2,752,20 -951,FR,RU,201812,3,2,11961,270 -951,FR,RU,201812,3,2,41492,1745 -951,FR,RU,201812,3,2,105355,72446 -951,FR,RU,201812,3,2,2456,334 -951,FR,RU,201812,4,2,1927,19 -951,FR,RU,201812,4,2,188,57 -951,FR,RU,201812,4,2,2810,4 -952,FR,RU,201812,0,1,1925,6 -952,FR,RU,201812,3,1,2105,7 -952,FR,RU,201812,3,1,24007,13280 -952,FR,RU,201812,3,1,50889,33000 -952,FR,RU,201812,3,1,42635,45345 -952,FR,RU,201812,4,1,739,91 -952,FR,RU,201812,4,1,63256,139 -952,FR,RU,201812,4,1,404,4 -952,FR,RU,201812,0,2,1335,16 -952,FR,RU,201812,1,2,2992,44 -952,FR,RU,201812,1,2,34486,23538 -952,FR,RU,201812,1,2,36111,66395 -952,FR,RU,201812,3,2,693152,227752 -952,FR,RU,201812,3,2,271168,15843 -952,FR,RU,201812,3,2,839,18 -952,FR,RU,201812,3,2,1389039,809739 -952,FR,RU,201812,3,2,100613,66159 -952,FR,RU,201812,3,2,125006,19087 -952,FR,RU,201812,3,2,45306,20300 -952,FR,RU,201812,3,2,5594,119 -952,FR,RU,201812,3,2,162513,75065 -952,FR,RU,201812,3,2,30842,12320 -952,FR,RU,201812,3,2,756010,615141 -952,FR,RU,201812,4,2,10476,101 -952,FR,RU,201812,4,2,1,0 -952,FR,RU,201812,4,2,4942,32 -952,FR,RU,201812,4,2,13395,108 -952,FR,RU,201812,4,2,5480,390 -961,FR,RU,201812,4,1,365,4 -961,FR,RU,201812,4,1,2974,14 -961,FR,RU,201812,0,2,243,7 -961,FR,RU,201812,3,2,1532,77 -961,FR,RU,201812,3,2,15,1 -961,FR,RU,201812,3,2,761,37 -961,FR,RU,201812,4,2,26452,52 -962,FR,RU,201812,3,1,41880,2455 -962,FR,RU,201812,3,1,578082,236653 -962,FR,RU,201812,4,1,46,1 -962,FR,RU,201812,4,1,458,14 -962,FR,RU,201812,0,2,195,3 -962,FR,RU,201812,1,2,11627,45 -962,FR,RU,201812,1,2,35895,2240 -962,FR,RU,201812,1,2,25077,8454 -962,FR,RU,201812,3,2,273245,9710 -962,FR,RU,201812,3,2,28538,466 -962,FR,RU,201812,3,2,9617,280 -962,FR,RU,201812,3,2,5080,71 -962,FR,RU,201812,3,2,21792,1453 -962,FR,RU,201812,3,2,156931,12467 -962,FR,RU,201812,3,2,152900,28989 -962,FR,RU,201812,3,2,5906,549 -962,FR,RU,201812,3,2,33636,2929 -962,FR,RU,201812,3,2,114766,9675 -962,FR,RU,201812,3,2,33,1 -962,FR,RU,201812,4,2,300413,6494 -962,FR,RU,201812,4,2,1112,30 -962,FR,RU,201812,4,2,2658,25 -962,FR,RU,201812,4,2,4811,35 -962,FR,RU,201812,4,2,296,1 -962,FR,RU,201812,4,2,1275,6 -962,FR,RU,201812,5,2,35,2 -963,FR,RU,201812,0,1,2862,20 -963,FR,RU,201812,1,1,467,1 -963,FR,RU,201812,3,1,9787,113 -963,FR,RU,201812,3,1,8,0 -963,FR,RU,201812,3,1,97720,6122 -963,FR,RU,201812,3,1,88204,2218 -963,FR,RU,201812,4,1,490534,1159 -963,FR,RU,201812,4,1,10208,73 -963,FR,RU,201812,4,1,247,0 -963,FR,RU,201812,4,1,18213,18 -963,FR,RU,201812,4,1,3590,82 -963,FR,RU,201812,0,2,82991,763 -963,FR,RU,201812,3,2,701870,17140 -963,FR,RU,201812,3,2,338204,1682 -963,FR,RU,201812,3,2,32472,19 -963,FR,RU,201812,3,2,41877,826 -963,FR,RU,201812,3,2,28489,22 -963,FR,RU,201812,3,2,21219,1849 -963,FR,RU,201812,3,2,215829,4990 -963,FR,RU,201812,3,2,217563,14569 -963,FR,RU,201812,3,2,23973,1493 -963,FR,RU,201812,3,2,1921278,40100 -963,FR,RU,201812,4,2,12329013,22365 -963,FR,RU,201812,4,2,22640,50 -963,FR,RU,201812,4,2,3148689,4912 -963,FR,RU,201812,4,2,30504,770 -971,FR,RU,201812,1,1,49695,15304 -971,FR,RU,201812,3,1,1213,117 -971,FR,RU,201812,3,1,35302,9473 -971,FR,RU,201812,3,1,556621,147741 -971,FR,RU,201812,3,1,98398,27272 -971,FR,RU,201812,4,1,247,6 -971,FR,RU,201812,1,2,135,1 -971,FR,RU,201812,1,2,92,0 -971,FR,RU,201812,1,2,42677,3077 -971,FR,RU,201812,3,2,1123413,178000 -971,FR,RU,201812,3,2,16440,1944 -971,FR,RU,201812,3,2,16489,205 -971,FR,RU,201812,3,2,2150418,436222 -971,FR,RU,201812,3,2,26195,3066 -971,FR,RU,201812,3,2,439263,20018 -971,FR,RU,201812,4,2,133672,1349 -971,FR,RU,201812,4,2,210,3 -971,FR,RU,201812,4,2,11913,83 -971,FR,RU,201812,4,2,19502,16 -971,FR,RU,201812,4,2,35,0 -971,FR,RU,201812,4,2,20285,1100 -972,FR,RU,201812,1,1,327726,631060 -972,FR,RU,201812,3,1,6417,1362 -972,FR,RU,201812,3,1,11293,20836 -972,FR,RU,201812,1,2,18811,25928 -972,FR,RU,201812,3,2,117630,42337 -972,FR,RU,201812,3,2,42252,40852 -972,FR,RU,201812,3,2,59997,35099 -972,FR,RU,201812,3,2,1081298,416306 -972,FR,RU,201812,3,2,68522,49286 -972,FR,RU,201812,3,2,29017,40894 -972,FR,RU,201812,4,2,6077,1392 -973,FR,RU,201812,3,1,5706,5216 -973,FR,RU,201812,3,1,14437,597 -973,FR,RU,201812,3,1,643,216 -973,FR,RU,201812,4,1,328,5 -973,FR,RU,201812,4,1,121,3 -973,FR,RU,201812,0,2,147,9 -973,FR,RU,201812,1,2,2918,586 -973,FR,RU,201812,1,2,218504,108941 -973,FR,RU,201812,1,2,21107,22464 -973,FR,RU,201812,3,2,350924,136011 -973,FR,RU,201812,3,2,13459,1995 -973,FR,RU,201812,3,2,58941,19610 -973,FR,RU,201812,3,2,370599,146323 -973,FR,RU,201812,3,2,72,17 -973,FR,RU,201812,3,2,52340,19325 -973,FR,RU,201812,4,2,121689,13979 -973,FR,RU,201812,4,2,250,18 -974,FR,RU,201812,0,1,388,17 -974,FR,RU,201812,3,1,12206,504 -974,FR,RU,201812,3,1,6,47 -974,FR,RU,201812,4,1,213134,101 -974,FR,RU,201812,4,1,9082,213 -974,FR,RU,201812,4,1,156,4 -974,FR,RU,201812,4,1,500,60 -974,FR,RU,201812,4,1,1084,107 -974,FR,RU,201812,4,1,4861,65 -974,FR,RU,201812,5,1,2143,40 -974,FR,RU,201812,0,2,1676,34 -974,FR,RU,201812,1,2,15875,794 -974,FR,RU,201812,3,2,140789,2457 -974,FR,RU,201812,3,2,484,101 -974,FR,RU,201812,3,2,13,8 -974,FR,RU,201812,3,2,240,3 -974,FR,RU,201812,3,2,68974,3478 -974,FR,RU,201812,3,2,1162,60 -974,FR,RU,201812,3,2,585,48 -974,FR,RU,201812,3,2,539,38 -974,FR,RU,201812,3,2,68527,6699 -974,FR,RU,201812,3,2,13,8 -974,FR,RU,201812,3,2,756,0 -974,FR,RU,201812,4,2,223835,1465 -974,FR,RU,201812,4,2,28,1 -974,FR,RU,201812,4,2,87708,632 -974,FR,RU,201812,4,2,50,25 -974,FR,RU,201812,4,2,5000,10 -974,FR,RU,201812,5,2,3,2 -975,FR,RU,201812,0,1,164,4 -975,FR,RU,201812,1,1,263,46 -975,FR,RU,201812,3,1,5192,195 -975,FR,RU,201812,3,1,17676,1080 -975,FR,RU,201812,3,1,136454,54950 -975,FR,RU,201812,4,1,96,0 -975,FR,RU,201812,4,1,117,0 -975,FR,RU,201812,1,2,2307,122 -975,FR,RU,201812,3,2,404565,29522 -975,FR,RU,201812,3,2,24712,838 -975,FR,RU,201812,3,2,1271,41 -975,FR,RU,201812,3,2,1400,44 -975,FR,RU,201812,3,2,31800,150 -975,FR,RU,201812,3,2,109313,13386 -975,FR,RU,201812,3,2,168809,7584 -975,FR,RU,201812,3,2,42420,2869 -975,FR,RU,201812,3,2,411703,32327 -975,FR,RU,201812,3,2,2141,121 -975,FR,RU,201812,4,2,143734,469 -975,FR,RU,201812,4,2,58777,53 -976,FR,RU,201812,0,1,68,1 -976,FR,RU,201812,1,1,379692,462855 -976,FR,RU,201812,1,1,40115,50388 -976,FR,RU,201812,1,1,22022,25408 -976,FR,RU,201812,1,1,25450,22757 -976,FR,RU,201812,1,1,64996,72747 -976,FR,RU,201812,1,1,91182,99026 -976,FR,RU,201812,1,1,171506,236872 -976,FR,RU,201812,1,1,62826,72428 -976,FR,RU,201812,1,1,43607,43010 -976,FR,RU,201812,3,1,25593,22815 -976,FR,RU,201812,3,1,17716,21850 -976,FR,RU,201812,3,1,21725,19902 -976,FR,RU,201812,3,1,188442,112011 -976,FR,RU,201812,3,1,488999,402611 -976,FR,RU,201812,4,1,2953,274 -976,FR,RU,201812,4,1,1016,17 -976,FR,RU,201812,3,2,5277,4376 -976,FR,RU,201812,3,2,644,25 -976,FR,RU,201812,3,2,13910,223 -976,FR,RU,201812,3,2,138267,178619 -976,FR,RU,201812,3,2,104982,7506 -976,FR,RU,201812,4,2,4016,120 -976,FR,RU,201812,5,2,10,1 -979,FR,RU,201812,0,1,119513,438 -979,FR,RU,201812,3,1,63131,765 -979,FR,RU,201812,3,1,26709,25 -979,FR,RU,201812,3,1,4103,246 -979,FR,RU,201812,3,1,1598,90 -979,FR,RU,201812,3,1,9802,598 -979,FR,RU,201812,3,1,79834,9499 -979,FR,RU,201812,3,1,5335,825 -979,FR,RU,201812,4,1,617056,455 -979,FR,RU,201812,4,1,43744,183 -979,FR,RU,201812,4,1,608,0 -979,FR,RU,201812,4,1,322,13 -979,FR,RU,201812,4,1,18822,14 -979,FR,RU,201812,4,1,5235,85 -979,FR,RU,201812,4,1,698007,1353 -979,FR,RU,201812,4,1,17154,73 -979,FR,RU,201812,4,1,582,1 -979,FR,RU,201812,4,1,19110,21 -979,FR,RU,201812,0,2,6391,50 -979,FR,RU,201812,1,2,1302,25 -979,FR,RU,201812,1,2,2934,85 -979,FR,RU,201812,1,2,4435,1092 -979,FR,RU,201812,1,2,1193,150 -979,FR,RU,201812,1,2,11881,2283 -979,FR,RU,201812,3,2,1620766,90452 -979,FR,RU,201812,3,2,68686,1482 -979,FR,RU,201812,3,2,1022,21 -979,FR,RU,201812,3,2,2149,10 -979,FR,RU,201812,3,2,153,36 -979,FR,RU,201812,3,2,1548,24 -979,FR,RU,201812,3,2,632123,35161 -979,FR,RU,201812,3,2,1309215,133365 -979,FR,RU,201812,3,2,8870,2184 -979,FR,RU,201812,3,2,1222668,31426 -979,FR,RU,201812,3,2,1744198,72390 -979,FR,RU,201812,3,2,337,19 -979,FR,RU,201812,3,2,28818,4 -979,FR,RU,201812,3,2,45647,620 -979,FR,RU,201812,4,2,3618654,10013 -979,FR,RU,201812,4,2,763548,1030 -979,FR,RU,201812,4,2,574451,21 -979,FR,RU,201812,4,2,3071,30 -979,FR,RU,201812,4,2,141765,152 -979,FR,RU,201812,4,2,5886,38 -979,FR,RU,201812,4,2,2732056,6586 -979,FR,RU,201812,4,2,551,4 -979,FR,RU,201812,4,2,35910,12 -979,FR,RU,201812,4,2,79413,0 -979,FR,RU,201812,4,2,155870,530 -979,FR,RU,201812,4,2,16955,86 -979,FR,RU,201812,4,2,38358,104 -979,FR,RU,201812,4,2,4253,49 -979,FR,RU,201812,4,2,63355,117 -979,FR,RU,201812,4,2,269111,6600 -979,FR,RU,201812,4,2,81005,248 -979,FR,RU,201812,4,2,13056,16 -979,FR,RU,201812,5,2,8,3 -999,FR,RU,201812,0,1,2745,2 -999,FR,RU,201812,1,1,0,72375850 -999,FR,RU,201812,3,1,8383,51 -999,FR,RU,201812,3,1,1000,0 -999,FR,RU,201812,3,1,1200,0 -999,FR,RU,201812,3,1,31210,0 -999,FR,RU,201812,3,1,26595,20760 -999,FR,RU,201812,4,1,4541,0 -999,FR,RU,201812,4,1,85,0 -999,FR,RU,201812,0,2,175,3 -999,FR,RU,201812,1,2,430598,36352 -999,FR,RU,201812,1,2,13170,19000 -999,FR,RU,201812,1,2,101700,60000 -999,FR,RU,201812,1,2,339578,461045 -999,FR,RU,201812,1,2,9717,20800 -999,FR,RU,201812,1,2,446994,713750 -999,FR,RU,201812,1,2,4043,5975 -999,FR,RU,201812,1,2,7236,16000 -999,FR,RU,201812,1,2,25979,49650 -999,FR,RU,201812,1,2,889397,315788 -999,FR,RU,201812,1,2,45706,65060 -999,FR,RU,201812,1,2,7447,11250 -999,FR,RU,201812,1,2,56581,99800 -999,FR,RU,201812,1,2,21158,41600 -999,FR,RU,201812,1,2,74004,177620 -999,FR,RU,201812,1,2,65381,15000 -999,FR,RU,201812,3,2,873080,475285 -999,FR,RU,201812,3,2,35400,748 -999,FR,RU,201812,3,2,4620,210 -999,FR,RU,201812,3,2,69679,109340 -999,FR,RU,201812,3,2,18485,6292 -999,FR,RU,201812,3,2,13977,4700 -999,FR,RU,201812,3,2,588196,76924 -999,FR,RU,201812,3,2,4294838,93751 -999,FR,RU,201812,3,2,69244,18904 -999,FR,RU,201812,3,2,872964,250740 -999,FR,RU,201812,3,2,217822,41940 -999,FR,RU,201812,3,2,79,17 -999,FR,RU,201812,3,2,18551,19500 -999,FR,RU,201812,3,2,12795,46760 -999,FR,RU,201812,4,2,29277,929 -999,FR,RU,201812,4,2,100,0 -999,FR,RU,201812,4,2,492,3 -999,FR,RU,201812,4,2,34063,42 -999,FR,RU,201812,4,2,7200,200 -999,FR,RU,201812,4,2,625,2 -016,FR,GE,201812,1,2,4525,3620 -035,FR,GE,201812,3,1,104086,22000 -049,FR,GE,201812,1,2,6318,14150 -057,FR,GE,201812,3,2,3656,1550 -099,FR,GE,201812,4,1,14963,300 -099,FR,GE,201812,3,2,63610,17904 -099,FR,GE,201812,3,2,14422,2054 -099,FR,GE,201812,4,2,65803,637 -111,FR,GE,201812,1,2,8877,6326 -112,FR,GE,201812,1,2,137838,384000 -121,FR,GE,201812,3,1,57840,12825 -121,FR,GE,201812,3,1,6802,846 -121,FR,GE,201812,0,2,307,12 -121,FR,GE,201812,3,2,14,8 -125,FR,GE,201812,1,1,150692,65569 -125,FR,GE,201812,4,1,44,18 -125,FR,GE,201812,0,2,85,2 -125,FR,GE,201812,1,2,547856,18095 -125,FR,GE,201812,1,2,163531,9109 -125,FR,GE,201812,1,2,70199,20699 -131,FR,GE,201812,1,2,2836,601 -131,FR,GE,201812,1,2,17783,3462 -131,FR,GE,201812,3,2,11506,1045 -132,FR,GE,201812,1,2,17955,6763 -132,FR,GE,201812,1,2,6354,1942 -132,FR,GE,201812,3,2,10,4 -132,FR,GE,201812,4,2,218,112 -132,FR,GE,201812,4,2,4497,1500 -135,FR,GE,201812,0,1,2381,36 -136,FR,GE,201812,1,2,8885,3426 -136,FR,GE,201812,1,2,3376,679 -136,FR,GE,201812,3,2,4441,220 -136,FR,GE,201812,4,2,43,2 -139,FR,GE,201812,1,2,6170,3656 -139,FR,GE,201812,1,2,118071,18362 -139,FR,GE,201812,3,2,2854,581 -139,FR,GE,201812,4,2,1226,80 -139,FR,GE,201812,4,2,4394,1561 -141,FR,GE,201812,1,2,33818,77794 -141,FR,GE,201812,1,2,29299,22680 -142,FR,GE,201812,4,2,1219,135 -143,FR,GE,201812,3,2,39775,17054 -144,FR,GE,201812,3,2,92347,18938 -144,FR,GE,201812,4,2,3859,638 -147,FR,GE,201812,3,2,6888,899 -147,FR,GE,201812,4,2,30,4 -147,FR,GE,201812,4,2,1818,243 -148,FR,GE,201812,1,2,1815,193 -148,FR,GE,201812,4,2,403,32 -163,FR,GE,201812,1,2,6858,2253 -163,FR,GE,201812,1,2,28112,17521 -163,FR,GE,201812,3,2,15588,9173 -163,FR,GE,201812,4,2,1535,635 -164,FR,GE,201812,3,1,108251,18000 -164,FR,GE,201812,1,2,2206,989 -164,FR,GE,201812,3,2,6019,276 -166,FR,GE,201812,3,1,31738,20943 -166,FR,GE,201812,3,1,16063,4000 -166,FR,GE,201812,3,1,78540,22000 -166,FR,GE,201812,1,2,2330,1309 -166,FR,GE,201812,1,2,7653,5248 -166,FR,GE,201812,4,2,22,5 -179,FR,GE,201812,1,2,9220,8798 -179,FR,GE,201812,1,2,74139,36769 -181,FR,GE,201812,4,2,2807,13 -182,FR,GE,201812,1,1,112319,64140 -182,FR,GE,201812,1,2,8512,1853 -341,FR,GE,201812,1,2,69272,53364 -341,FR,GE,201812,4,2,24,0 -568,FR,GE,201812,3,2,4499,143 -568,FR,GE,201812,3,2,119,16 -614,FR,GE,201812,3,2,4549,4800 -621,FR,GE,201812,4,2,56,6 -692,FR,GE,201812,3,2,38500,3315 -819,FR,GE,201812,1,1,121088,175000 -819,FR,GE,201812,1,1,19502,25000 -819,FR,GE,201812,3,2,45624,9788 -819,FR,GE,201812,3,2,36959,7700 -819,FR,GE,201812,3,2,12380,360 -819,FR,GE,201812,4,2,926,20 -842,FR,GE,201812,3,2,156,3 -891,FR,GE,201812,1,2,87176,67200 -891,FR,GE,201812,3,2,1461,59 -891,FR,GE,201812,3,2,3550,14 -891,FR,GE,201812,3,2,4949,130 -893,FR,GE,201812,4,1,10355,13 -893,FR,GE,201812,1,2,57335,19596 -893,FR,GE,201812,1,2,16608,12163 -893,FR,GE,201812,3,2,243867,13731 -893,FR,GE,201812,3,2,832823,5111 -893,FR,GE,201812,3,2,234723,2475 -893,FR,GE,201812,3,2,85544,2912 -893,FR,GE,201812,3,2,33237,1354 -893,FR,GE,201812,3,2,1209947,8110 -893,FR,GE,201812,3,2,49399,488 -893,FR,GE,201812,4,2,733195,3749 -893,FR,GE,201812,4,2,23561,17 -893,FR,GE,201812,4,2,51282,2195 -893,FR,GE,201812,4,2,215250,579 -893,FR,GE,201812,4,2,36432,377 -893,FR,GE,201812,4,2,71896,185 -893,FR,GE,201812,4,2,40483,486 -893,FR,GE,201812,4,2,3302,0 -893,FR,GE,201812,4,2,3809,36 -893,FR,GE,201812,4,2,3047,10 -896,FR,GE,201812,1,2,11058,10164 -896,FR,GE,201812,3,2,3796,579 -896,FR,GE,201812,3,2,66373,53250 -896,FR,GE,201812,4,2,18900,256 -896,FR,GE,201812,4,2,11863,181 -896,FR,GE,201812,4,2,22993,350 -896,FR,GE,201812,4,2,17833,134 -896,FR,GE,201812,4,2,3925,300 -910,FR,GE,201812,0,1,319,4 -910,FR,GE,201812,1,2,5200,10498 -910,FR,GE,201812,1,2,910,4446 -910,FR,GE,201812,2,2,38727,2890 -910,FR,GE,201812,3,2,19835,15419 -910,FR,GE,201812,3,2,3372,107 -910,FR,GE,201812,3,2,5550,225 -910,FR,GE,201812,4,2,2806,552 -910,FR,GE,201812,4,2,275,30 -910,FR,GE,201812,9,2,19298,11048 -920,FR,GE,201812,3,2,200100,5965 -931,FR,GE,201812,3,1,109,1 -931,FR,GE,201812,4,1,532,4 -931,FR,GE,201812,4,1,156,0 -931,FR,GE,201812,1,2,461210,8434 -931,FR,GE,201812,3,2,506960,11380 -931,FR,GE,201812,3,2,16168,312 -931,FR,GE,201812,3,2,31800,1630 -931,FR,GE,201812,3,2,34229,879 -931,FR,GE,201812,4,2,108898,144 -931,FR,GE,201812,4,2,1820,4 -931,FR,GE,201812,4,2,588,1 -931,FR,GE,201812,4,2,2877,6 -931,FR,GE,201812,4,2,21547,280 -931,FR,GE,201812,4,2,7041,10 -939,FR,GE,201812,1,1,59201,6220 -939,FR,GE,201812,0,2,1332,3 -939,FR,GE,201812,1,2,19422,505 -939,FR,GE,201812,1,2,88202,11020 -939,FR,GE,201812,3,2,7290,101 -939,FR,GE,201812,3,2,5990,625 -939,FR,GE,201812,3,2,352158,13494 -939,FR,GE,201812,3,2,22503,7573 -939,FR,GE,201812,3,2,5384,120 -939,FR,GE,201812,3,2,1197,14 -939,FR,GE,201812,3,2,19710,4537 -939,FR,GE,201812,3,2,33300,665 -939,FR,GE,201812,4,2,49727,1505 -939,FR,GE,201812,4,2,34486,1190 -939,FR,GE,201812,4,2,26215,145 -939,FR,GE,201812,4,2,1600,4 -939,FR,GE,201812,4,2,4650,30 -939,FR,GE,201812,4,2,165,1 -939,FR,GE,201812,4,2,8494,170 -939,FR,GE,201812,4,2,1111,1 -949,FR,GE,201812,4,1,489,0 -949,FR,GE,201812,0,2,60,3 -949,FR,GE,201812,3,2,1290,163 -949,FR,GE,201812,3,2,817,13 -949,FR,GE,201812,3,2,25800,1099 -949,FR,GE,201812,3,2,23059,594 -949,FR,GE,201812,3,2,868,18 -949,FR,GE,201812,4,2,30,0 -949,FR,GE,201812,4,2,1890,47 -951,FR,GE,201812,3,2,32000,2767 -952,FR,GE,201812,4,1,547069,1468 -952,FR,GE,201812,1,2,9808,423 -952,FR,GE,201812,1,2,23405,18974 -952,FR,GE,201812,3,2,17664,11147 -952,FR,GE,201812,3,2,19799,432 -952,FR,GE,201812,3,2,5763,104 -952,FR,GE,201812,3,2,39120,27616 -952,FR,GE,201812,4,2,9966,18 -962,FR,GE,201812,1,1,3597,1540 -962,FR,GE,201812,1,1,11373,4058 -962,FR,GE,201812,1,2,352,42 -962,FR,GE,201812,3,2,124,11 -962,FR,GE,201812,3,2,70781,894 -962,FR,GE,201812,3,2,58,1 -962,FR,GE,201812,3,2,371,25 -962,FR,GE,201812,4,2,38000,16 -962,FR,GE,201812,4,2,2914,52 -963,FR,GE,201812,0,1,35786,485 -963,FR,GE,201812,1,1,24649,7929 -963,FR,GE,201812,1,1,6934,2474 -963,FR,GE,201812,3,1,11258,79 -963,FR,GE,201812,3,1,6362,64 -963,FR,GE,201812,3,1,826860,30436 -963,FR,GE,201812,4,1,6939,43 -963,FR,GE,201812,0,2,247,2 -963,FR,GE,201812,3,2,58595,331 -963,FR,GE,201812,3,2,96,2 -963,FR,GE,201812,3,2,13532,33 -963,FR,GE,201812,4,2,24190,219 -963,FR,GE,201812,4,2,13820,230 -963,FR,GE,201812,4,2,7341,30 -963,FR,GE,201812,4,2,67947,1 -971,FR,GE,201812,3,2,3561,162 -971,FR,GE,201812,3,2,330,6 -971,FR,GE,201812,3,2,37313,8557 -971,FR,GE,201812,4,2,69,0 -971,FR,GE,201812,4,2,283,45 -972,FR,GE,201812,1,2,7,4 -972,FR,GE,201812,3,2,25,1 -973,FR,GE,201812,4,1,401,69 -973,FR,GE,201812,1,2,320,54 -973,FR,GE,201812,1,2,7453,2779 -973,FR,GE,201812,3,2,150,25 -973,FR,GE,201812,3,2,264,156 -973,FR,GE,201812,3,2,103081,5359 -973,FR,GE,201812,3,2,12656,584 -973,FR,GE,201812,4,2,136,106 -974,FR,GE,201812,4,1,46,1 -974,FR,GE,201812,0,2,3870,45 -974,FR,GE,201812,3,2,72732,1595 -974,FR,GE,201812,3,2,94,18 -974,FR,GE,201812,3,2,4053,102 -974,FR,GE,201812,3,2,13,11 -974,FR,GE,201812,3,2,13,2 -974,FR,GE,201812,4,2,71,24 -975,FR,GE,201812,4,1,2583,100 -975,FR,GE,201812,1,2,2696,183 -975,FR,GE,201812,1,2,163499,4004 -975,FR,GE,201812,1,2,90,180 -975,FR,GE,201812,3,2,29885,426 -975,FR,GE,201812,3,2,31,29 -975,FR,GE,201812,3,2,138,2 -975,FR,GE,201812,3,2,1084,117 -975,FR,GE,201812,4,2,1620,67 -976,FR,GE,201812,1,2,1566,3042 -976,FR,GE,201812,1,2,15,50 -976,FR,GE,201812,3,2,23618,1598 -976,FR,GE,201812,3,2,648,100 -976,FR,GE,201812,3,2,19750,1751 -979,FR,GE,201812,1,1,33029,2930 -979,FR,GE,201812,4,1,1151,1 -979,FR,GE,201812,4,1,607,55 -979,FR,GE,201812,1,2,25110,3974 -979,FR,GE,201812,1,2,550320,42000 -979,FR,GE,201812,1,2,790,228 -979,FR,GE,201812,3,2,79710,4719 -979,FR,GE,201812,3,2,131,11 -979,FR,GE,201812,3,2,32944,2567 -979,FR,GE,201812,3,2,25249,272 -979,FR,GE,201812,3,2,749,17 -979,FR,GE,201812,3,2,2185,1700 -979,FR,GE,201812,4,2,97884,1660 -979,FR,GE,201812,4,2,6164,39 -979,FR,GE,201812,4,2,42243,0 -979,FR,GE,201812,4,2,52500,268 -979,FR,GE,201812,4,2,13118,80 -979,FR,GE,201812,4,2,6073,0 -999,FR,GE,201812,4,1,594,0 -999,FR,GE,201812,4,2,6,0 -999,FR,GE,201812,4,2,9,0 -999,FR,GE,201812,4,2,2,0 -999,FR,GE,201812,4,2,2500,0 -999,FR,GE,201812,4,2,1,0 -999,FR,GE,201812,4,2,1291,30 -011,FR,AM,201812,3,1,1516,2952 -015,FR,AM,201812,3,2,5601,284 -019,FR,AM,201812,3,1,326,576 -035,FR,AM,201812,3,2,16744,18200 -039,FR,AM,201812,3,1,1581,1152 -049,FR,AM,201812,1,2,18400,3710 -057,FR,AM,201812,3,2,39000,7500 -099,FR,AM,201812,1,2,82000,100000 -099,FR,AM,201812,3,2,6180,100 -121,FR,AM,201812,1,1,22838,7149 -121,FR,AM,201812,3,1,14853,1066 -121,FR,AM,201812,3,1,19242,2061 -121,FR,AM,201812,1,2,17,5 -121,FR,AM,201812,1,2,45916,1180 -122,FR,AM,201812,1,2,108,66 -125,FR,AM,201812,4,1,174,3 -125,FR,AM,201812,4,1,982,18 -125,FR,AM,201812,1,2,695,389 -125,FR,AM,201812,1,2,16819,848 -128,FR,AM,201812,1,2,1162,2951 -128,FR,AM,201812,1,2,857,1533 -131,FR,AM,201812,1,2,2964,407 -132,FR,AM,201812,3,1,8431,931 -136,FR,AM,201812,1,2,1540,560 -139,FR,AM,201812,1,1,126,89 -139,FR,AM,201812,3,1,1484,621 -139,FR,AM,201812,1,2,3893,1636 -139,FR,AM,201812,1,2,1537,530 -139,FR,AM,201812,3,2,43908,2540 -139,FR,AM,201812,4,2,10339,1824 -142,FR,AM,201812,4,2,7770,110 -143,FR,AM,201812,3,2,8320,4415 -144,FR,AM,201812,3,2,141337,32075 -144,FR,AM,201812,4,2,9254,514 -147,FR,AM,201812,1,2,532,11 -148,FR,AM,201812,1,2,306,44 -161,FR,AM,201812,3,1,250,576 -163,FR,AM,201812,3,1,6686,4284 -163,FR,AM,201812,1,2,3258,2791 -163,FR,AM,201812,1,2,757,246 -164,FR,AM,201812,1,1,3908,2535 -164,FR,AM,201812,3,1,3108,3572 -164,FR,AM,201812,4,1,2552,402 -165,FR,AM,201812,3,1,388,576 -166,FR,AM,201812,1,1,1907,1288 -166,FR,AM,201812,3,1,3449,2228 -166,FR,AM,201812,1,2,744,357 -179,FR,AM,201812,1,2,1334,979 -179,FR,AM,201812,1,2,45200,23570 -179,FR,AM,201812,1,2,722,364 -181,FR,AM,201812,3,2,3975,150 -341,FR,AM,201812,4,2,7,0 -568,FR,AM,201812,3,2,7615,1593 -568,FR,AM,201812,4,2,24,0 -691,FR,AM,201812,1,1,468,370 -691,FR,AM,201812,4,1,2363,51 -819,FR,AM,201812,4,1,13,0 -819,FR,AM,201812,4,1,1330,2 -819,FR,AM,201812,3,2,1892,315 -893,FR,AM,201812,0,2,107,1 -893,FR,AM,201812,1,2,5330,4118 -893,FR,AM,201812,1,2,14949,9379 -893,FR,AM,201812,3,2,29195,1020 -893,FR,AM,201812,3,2,890,25 -893,FR,AM,201812,3,2,67395,1735 -893,FR,AM,201812,3,2,22600,1758 -893,FR,AM,201812,3,2,192795,5497 -893,FR,AM,201812,4,2,1671698,2410 -893,FR,AM,201812,4,2,75,0 -893,FR,AM,201812,4,2,28237,658 -896,FR,AM,201812,3,2,3671,1848 -896,FR,AM,201812,3,2,171993,6981 -896,FR,AM,201812,4,2,7502,101 -896,FR,AM,201812,4,2,18041,120 -896,FR,AM,201812,4,2,23406,200 -910,FR,AM,201812,1,2,2320,3941 -910,FR,AM,201812,3,2,1549,2494 -910,FR,AM,201812,4,2,38024,30 -910,FR,AM,201812,4,2,1405,33 -910,FR,AM,201812,4,2,2007,420 -920,FR,AM,201812,3,2,5100,497 -931,FR,AM,201812,0,1,15845,146 -931,FR,AM,201812,3,1,7219,35 -931,FR,AM,201812,4,1,2670,25 -931,FR,AM,201812,3,2,12027,374 -931,FR,AM,201812,3,2,17619,937 -931,FR,AM,201812,4,2,9410,115 -931,FR,AM,201812,4,2,21842,932 -931,FR,AM,201812,4,2,3231,70 -931,FR,AM,201812,4,2,3962,24 -939,FR,AM,201812,0,1,2813,10 -939,FR,AM,201812,4,1,166,1 -939,FR,AM,201812,3,2,29483,1379 -939,FR,AM,201812,4,2,2104,3 -939,FR,AM,201812,4,2,1443,1 -941,FR,AM,201812,1,2,86516,33436 -941,FR,AM,201812,3,2,710044,30725 -941,FR,AM,201812,3,2,1740,240 -941,FR,AM,201812,4,2,28069,527 -949,FR,AM,201812,0,2,543,5 -949,FR,AM,201812,4,2,900,19 -949,FR,AM,201812,4,2,1358,12 -952,FR,AM,201812,1,2,8356,16351 -952,FR,AM,201812,3,2,20354,14629 -952,FR,AM,201812,3,2,4242,2391 -952,FR,AM,201812,4,2,604,3 -952,FR,AM,201812,4,2,1325,14 -961,FR,AM,201812,4,1,99,7 -961,FR,AM,201812,3,2,26,1 -961,FR,AM,201812,4,2,2765,140 -962,FR,AM,201812,1,2,2840,217 -962,FR,AM,201812,3,2,5193,222 -962,FR,AM,201812,3,2,104119,7294 -962,FR,AM,201812,3,2,127,2 -963,FR,AM,201812,3,1,3566,15 -963,FR,AM,201812,3,1,204731,3447 -963,FR,AM,201812,4,1,8493,185 -963,FR,AM,201812,4,1,156,0 -963,FR,AM,201812,4,1,1258,13 -963,FR,AM,201812,4,1,33670,1260 -963,FR,AM,201812,4,1,1234,22 -963,FR,AM,201812,3,2,34318,877 -963,FR,AM,201812,3,2,18205,210 -963,FR,AM,201812,3,2,7500,150 -963,FR,AM,201812,3,2,3854,640 -963,FR,AM,201812,4,2,2163,112 -963,FR,AM,201812,4,2,2890,1 -971,FR,AM,201812,4,2,93,10 -972,FR,AM,201812,1,2,106,54 -973,FR,AM,201812,3,1,33,11 -973,FR,AM,201812,1,2,785,438 -973,FR,AM,201812,1,2,959,200 -973,FR,AM,201812,3,2,21088,6365 -974,FR,AM,201812,4,1,72,2 -974,FR,AM,201812,4,1,930,507 -974,FR,AM,201812,0,2,71,1 -974,FR,AM,201812,4,2,7995,79 -974,FR,AM,201812,4,2,1,0 -975,FR,AM,201812,3,1,995,1100 -975,FR,AM,201812,1,2,234,26 -975,FR,AM,201812,3,2,1420,40 -976,FR,AM,201812,3,2,101100,6356 -976,FR,AM,201812,3,2,21300,2271 -979,FR,AM,201812,3,1,101,5 -979,FR,AM,201812,4,1,994,20 -979,FR,AM,201812,1,2,43,5 -979,FR,AM,201812,1,2,748,126 -979,FR,AM,201812,1,2,599,34 -979,FR,AM,201812,3,2,3883,617 -979,FR,AM,201812,3,2,999,253 -979,FR,AM,201812,3,2,216,21 -979,FR,AM,201812,4,2,20985,23 -979,FR,AM,201812,4,2,785,31 -979,FR,AM,201812,4,2,10080,107 -979,FR,AM,201812,4,2,46413,200 -979,FR,AM,201812,4,2,2689,5 -999,FR,AM,201812,3,1,101,0 -999,FR,AM,201812,1,2,91,22 -999,FR,AM,201812,3,2,7736,561 -999,FR,AM,201812,4,2,4,0 -999,FR,AM,201812,4,2,1,0 -999,FR,AM,201812,4,2,1093,10 -035,FR,AZ,201812,3,1,75806,20000 -099,FR,AZ,201812,3,2,59,4 -099,FR,AZ,201812,3,2,41570,3530 -125,FR,AZ,201812,1,2,4498,722 -132,FR,AZ,201812,3,2,587,135 -133,FR,AZ,201812,4,2,3098,6 -136,FR,AZ,201812,3,2,27065,11994 -139,FR,AZ,201812,3,2,34721,4088 -139,FR,AZ,201812,3,2,696,172 -139,FR,AZ,201812,3,2,1613,871 -142,FR,AZ,201812,4,2,10150,80 -143,FR,AZ,201812,3,2,23829,8345 -144,FR,AZ,201812,3,2,57816,8765 -144,FR,AZ,201812,4,2,1216,88 -163,FR,AZ,201812,3,2,18274,4100 -164,FR,AZ,201812,3,2,9949,2432 -166,FR,AZ,201812,3,2,424,104 -179,FR,AZ,201812,1,2,85170,36373 -182,FR,AZ,201812,1,2,16851,25000 -182,FR,AZ,201812,1,2,16508,24889 -330,FR,AZ,201812,4,2,297,1 -341,FR,AZ,201812,1,2,74790,18558 -341,FR,AZ,201812,1,2,45680,22231 -551,FR,AZ,201812,1,2,5900,958 -551,FR,AZ,201812,2,2,1781706,1038599 -551,FR,AZ,201812,4,2,35940,471 -568,FR,AZ,201812,1,2,39973,10361 -568,FR,AZ,201812,3,2,75785,14570 -568,FR,AZ,201812,4,2,28072,6 -691,FR,AZ,201812,1,2,13602,19200 -691,FR,AZ,201812,1,2,17699,1910 -691,FR,AZ,201812,4,2,9102,90 -692,FR,AZ,201812,1,2,10385,11929 -814,FR,AZ,201812,4,2,578,5 -819,FR,AZ,201812,3,2,936,252 -891,FR,AZ,201812,3,2,29594,20625 -891,FR,AZ,201812,4,2,0,60 -892,FR,AZ,201812,3,2,1997,470 -893,FR,AZ,201812,1,2,29960,5442 -893,FR,AZ,201812,3,2,312474,17108 -893,FR,AZ,201812,3,2,289388,8550 -893,FR,AZ,201812,3,2,94219,670 -893,FR,AZ,201812,3,2,11895,451 -893,FR,AZ,201812,3,2,105611,1418 -893,FR,AZ,201812,4,2,747167,4643 -893,FR,AZ,201812,4,2,52630,1703 -893,FR,AZ,201812,4,2,715,30 -893,FR,AZ,201812,4,2,111836,6597 -893,FR,AZ,201812,4,2,4857,90 -893,FR,AZ,201812,4,2,33293,287 -893,FR,AZ,201812,4,2,2956,11 -893,FR,AZ,201812,4,2,8633,300 -896,FR,AZ,201812,3,2,56298,6432 -896,FR,AZ,201812,3,2,7574,1703 -896,FR,AZ,201812,4,2,11843,174 -896,FR,AZ,201812,4,2,14444,245 -896,FR,AZ,201812,4,2,1108,80 -910,FR,AZ,201812,0,2,558,9 -910,FR,AZ,201812,1,2,1200,1415 -910,FR,AZ,201812,1,2,6609,500 -910,FR,AZ,201812,1,2,111000,4950 -910,FR,AZ,201812,3,2,7361,1610 -910,FR,AZ,201812,4,2,2839,3 -910,FR,AZ,201812,4,2,1496987,6538 -910,FR,AZ,201812,9,2,10000,1660 -920,FR,AZ,201812,4,2,172,2 -931,FR,AZ,201812,3,1,66,1 -931,FR,AZ,201812,4,1,29872,116 -931,FR,AZ,201812,1,2,14552,200 -931,FR,AZ,201812,1,2,61780,8176 -931,FR,AZ,201812,1,2,20250,295 -931,FR,AZ,201812,3,2,508395,255 -931,FR,AZ,201812,3,2,3161,104 -931,FR,AZ,201812,4,2,59913,752 -931,FR,AZ,201812,4,2,209228,2943 -931,FR,AZ,201812,4,2,12701,1 -931,FR,AZ,201812,4,2,39955,810 -931,FR,AZ,201812,5,2,383,4 -939,FR,AZ,201812,1,2,195907,797 -939,FR,AZ,201812,1,2,338288,36117 -939,FR,AZ,201812,1,2,560259,23829 -939,FR,AZ,201812,1,2,35000,3850 -939,FR,AZ,201812,3,2,79464,3271 -939,FR,AZ,201812,4,2,110349,422 -939,FR,AZ,201812,4,2,1776,30 -939,FR,AZ,201812,4,2,35409,180 -939,FR,AZ,201812,4,2,2980,80 -939,FR,AZ,201812,4,2,4102,110 -939,FR,AZ,201812,4,2,31823,68 -939,FR,AZ,201812,4,2,4530,30 -939,FR,AZ,201812,4,2,48828,1820 -939,FR,AZ,201812,4,2,2271,16 -941,FR,AZ,201812,1,2,69040,32426 -941,FR,AZ,201812,1,2,507041,137922 -941,FR,AZ,201812,1,2,29255,11438 -941,FR,AZ,201812,3,2,146,112 -949,FR,AZ,201812,1,2,1800,25 -949,FR,AZ,201812,3,2,3791,9 -949,FR,AZ,201812,3,2,306,25 -949,FR,AZ,201812,4,2,615,18 -949,FR,AZ,201812,4,2,5774,5 -949,FR,AZ,201812,5,2,10,0 -952,FR,AZ,201812,1,2,18602,1477 -952,FR,AZ,201812,1,2,37479,18998 -952,FR,AZ,201812,3,2,6146,13653 -952,FR,AZ,201812,4,2,370,0 -952,FR,AZ,201812,4,2,23455,240 -961,FR,AZ,201812,4,2,11,0 -962,FR,AZ,201812,3,2,3498,109 -962,FR,AZ,201812,3,2,178,16 -962,FR,AZ,201812,3,2,1986,23 -962,FR,AZ,201812,4,2,5964,143 -962,FR,AZ,201812,4,2,47342,285 -962,FR,AZ,201812,4,2,57,1 -962,FR,AZ,201812,4,2,565764,1790 -963,FR,AZ,201812,0,1,250,20 -963,FR,AZ,201812,3,1,196,0 -963,FR,AZ,201812,3,1,18,0 -963,FR,AZ,201812,1,2,5415,22 -963,FR,AZ,201812,3,2,29596,172 -963,FR,AZ,201812,3,2,5013,603 -963,FR,AZ,201812,3,2,36494,297 -963,FR,AZ,201812,4,2,250993,670 -963,FR,AZ,201812,4,2,26611,72 -963,FR,AZ,201812,4,2,19,0 -963,FR,AZ,201812,4,2,19472,300 -963,FR,AZ,201812,4,2,3471,11 -963,FR,AZ,201812,4,2,1725,1 -971,FR,AZ,201812,1,2,455,2 -971,FR,AZ,201812,1,2,33632,9829 -972,FR,AZ,201812,3,2,278,71 -973,FR,AZ,201812,1,2,1,63 -973,FR,AZ,201812,1,2,356,10 -973,FR,AZ,201812,3,2,2816,589 -973,FR,AZ,201812,3,2,479,91 -973,FR,AZ,201812,4,2,2323,142 -973,FR,AZ,201812,4,2,269,65 -974,FR,AZ,201812,0,2,40,1 -974,FR,AZ,201812,3,2,371,63 -974,FR,AZ,201812,3,2,1,2 -974,FR,AZ,201812,4,2,468,84 -974,FR,AZ,201812,4,2,1520,290 -975,FR,AZ,201812,1,2,2,36 -975,FR,AZ,201812,3,2,22727,1621 -975,FR,AZ,201812,3,2,8021,540 -975,FR,AZ,201812,4,2,321,11 -976,FR,AZ,201812,3,2,215,9 -976,FR,AZ,201812,3,2,212,588 -979,FR,AZ,201812,3,1,1310,21 -979,FR,AZ,201812,4,1,2388,8 -979,FR,AZ,201812,1,2,1,587 -979,FR,AZ,201812,1,2,255439,8957 -979,FR,AZ,201812,1,2,64555,948 -979,FR,AZ,201812,3,2,14713,609 -979,FR,AZ,201812,3,2,646033,22750 -979,FR,AZ,201812,3,2,1193,73 -979,FR,AZ,201812,4,2,203888,252 -979,FR,AZ,201812,4,2,20316,139 -979,FR,AZ,201812,4,2,74970,0 -979,FR,AZ,201812,4,2,2605,90 -979,FR,AZ,201812,4,2,4553,80 -979,FR,AZ,201812,4,2,27497,490 -979,FR,AZ,201812,4,2,4234,16 -979,FR,AZ,201812,5,2,1225,44 -999,FR,AZ,201812,4,1,1,0 -999,FR,AZ,201812,3,2,460,45 -999,FR,AZ,201812,3,2,43150,20000 -999,FR,AZ,201812,4,2,43,9 -999,FR,AZ,201812,4,2,26,0 -999,FR,AZ,201812,4,2,2,0 -999,FR,AZ,201812,4,2,1742,20 -035,FR,KZ,201812,4,2,1574,178 -042,FR,KZ,201812,3,1,79474,43914 -042,FR,KZ,201812,3,1,39267,21158 -099,FR,KZ,201812,4,1,1146,44 -099,FR,KZ,201812,4,2,38934,14 -099,FR,KZ,201812,4,2,43306,70 -121,FR,KZ,201812,3,2,6825,40 -121,FR,KZ,201812,3,2,20090,5347 -121,FR,KZ,201812,3,2,119701,20265 -125,FR,KZ,201812,3,2,564,171 -125,FR,KZ,201812,4,2,3217,127 -128,FR,KZ,201812,3,2,13861,12446 -128,FR,KZ,201812,3,2,10281,19254 -132,FR,KZ,201812,0,2,60,1 -139,FR,KZ,201812,3,2,164870,12029 -141,FR,KZ,201812,3,2,29712,61241 -142,FR,KZ,201812,4,2,11869,942 -142,FR,KZ,201812,4,2,23268,1659 -143,FR,KZ,201812,3,2,277290,110864 -143,FR,KZ,201812,3,2,53359,18989 -144,FR,KZ,201812,1,2,93602,50000 -144,FR,KZ,201812,3,2,388924,87456 -144,FR,KZ,201812,3,2,284400,180000 -144,FR,KZ,201812,4,2,3204,232 -144,FR,KZ,201812,4,2,4457,324 -179,FR,KZ,201812,1,2,55540,50000 -179,FR,KZ,201812,3,2,205257,72356 -179,FR,KZ,201812,3,2,271129,111259 -310,FR,KZ,201812,1,1,104171043,247806000 -310,FR,KZ,201812,1,1,13146090,31745000 -310,FR,KZ,201812,1,1,97237744,234214840 -341,FR,KZ,201812,3,2,76594,29123 -341,FR,KZ,201812,3,2,5264,396 -341,FR,KZ,201812,3,2,31317,17118 -512,FR,KZ,201812,4,2,4160,91 -532,FR,KZ,201812,3,2,372,19 -552,FR,KZ,201812,4,2,168,1 -565,FR,KZ,201812,3,1,681694,43370 -568,FR,KZ,201812,3,2,689,2 -691,FR,KZ,201812,3,1,247,17 -819,FR,KZ,201812,3,1,45126,18750 -819,FR,KZ,201812,3,2,215990,7995 -891,FR,KZ,201812,1,2,52283,6600 -891,FR,KZ,201812,3,2,183388,62000 -891,FR,KZ,201812,4,2,14282,95 -891,FR,KZ,201812,4,2,650,2 -891,FR,KZ,201812,4,2,606,1 -891,FR,KZ,201812,4,2,1009,10 -892,FR,KZ,201812,4,1,5288,78 -892,FR,KZ,201812,3,2,29217,8565 -893,FR,KZ,201812,3,2,319844,18852 -893,FR,KZ,201812,3,2,6107,286 -893,FR,KZ,201812,3,2,26624,1590 -893,FR,KZ,201812,3,2,530250,32924 -893,FR,KZ,201812,3,2,130811,3549 -893,FR,KZ,201812,4,2,1942306,32366 -893,FR,KZ,201812,4,2,142,0 -893,FR,KZ,201812,4,2,25141,528 -893,FR,KZ,201812,4,2,2668961,8577 -893,FR,KZ,201812,4,2,203290,2312 -893,FR,KZ,201812,4,2,51216,180 -893,FR,KZ,201812,4,2,38148,470 -893,FR,KZ,201812,4,2,5612,16 -893,FR,KZ,201812,4,2,3228,93 -896,FR,KZ,201812,1,2,63473,19960 -896,FR,KZ,201812,1,2,60507,19780 -896,FR,KZ,201812,3,2,14585,10479 -896,FR,KZ,201812,3,2,120940,21023 -896,FR,KZ,201812,3,2,181293,95584 -896,FR,KZ,201812,4,2,21761,376 -896,FR,KZ,201812,4,2,21693,146 -896,FR,KZ,201812,4,2,25803,119 -896,FR,KZ,201812,4,2,52188,596 -896,FR,KZ,201812,4,2,9863,109 -910,FR,KZ,201812,3,1,71,0 -910,FR,KZ,201812,3,2,651182,21379 -910,FR,KZ,201812,3,2,299505,10814 -910,FR,KZ,201812,4,2,18216,429 -910,FR,KZ,201812,4,2,391,3 -910,FR,KZ,201812,4,2,17361,3 -910,FR,KZ,201812,4,2,3598,15 -910,FR,KZ,201812,4,2,353,0 -910,FR,KZ,201812,4,2,1757168,5080 -920,FR,KZ,201812,3,2,1823,40 -920,FR,KZ,201812,3,2,90000,8977 -920,FR,KZ,201812,4,2,785,37 -931,FR,KZ,201812,3,1,3243,11 -931,FR,KZ,201812,4,1,2137,6 -931,FR,KZ,201812,4,1,35379,3 -931,FR,KZ,201812,4,1,14700,4 -931,FR,KZ,201812,0,2,396,12 -931,FR,KZ,201812,3,2,18878,187 -931,FR,KZ,201812,3,2,109611,33366 -931,FR,KZ,201812,3,2,243942,26605 -931,FR,KZ,201812,4,2,2289016,14002 -931,FR,KZ,201812,4,2,500255,880 -931,FR,KZ,201812,4,2,24501,162 -931,FR,KZ,201812,4,2,407802,192 -931,FR,KZ,201812,4,2,136115,1520 -931,FR,KZ,201812,4,2,3155,35 -931,FR,KZ,201812,4,2,3284,2 -931,FR,KZ,201812,5,2,20,0 -939,FR,KZ,201812,3,1,227,5 -939,FR,KZ,201812,3,1,29444,605 -939,FR,KZ,201812,1,2,451509,81780 -939,FR,KZ,201812,1,2,93509,475 -939,FR,KZ,201812,3,2,161309,3158 -939,FR,KZ,201812,3,2,128227,7407 -939,FR,KZ,201812,3,2,59396,4755 -939,FR,KZ,201812,4,2,199159,555 -939,FR,KZ,201812,4,2,3395,0 -939,FR,KZ,201812,4,2,256470,532 -939,FR,KZ,201812,4,2,2551,50 -939,FR,KZ,201812,4,2,31564,616 -939,FR,KZ,201812,4,2,645,29 -939,FR,KZ,201812,4,2,18150,103 -939,FR,KZ,201812,4,2,113119,72 -939,FR,KZ,201812,4,2,13903,8 -939,FR,KZ,201812,4,2,34442,1610 -939,FR,KZ,201812,4,2,8975,92 -939,FR,KZ,201812,4,2,9998,36 -939,FR,KZ,201812,4,2,1708,36 -941,FR,KZ,201812,4,1,111,0 -941,FR,KZ,201812,4,2,250,2 -941,FR,KZ,201812,4,2,8520,163 -949,FR,KZ,201812,3,1,57,0 -949,FR,KZ,201812,4,1,408,0 -949,FR,KZ,201812,3,2,342535,2282 -949,FR,KZ,201812,3,2,253,17 -949,FR,KZ,201812,4,2,30139,485 -949,FR,KZ,201812,4,2,353490,47 -949,FR,KZ,201812,4,2,21545,654 -949,FR,KZ,201812,4,2,168,17 -949,FR,KZ,201812,4,2,1953,40 -951,FR,KZ,201812,3,2,1,23 -952,FR,KZ,201812,0,2,80,6 -952,FR,KZ,201812,3,2,79507,4579 -952,FR,KZ,201812,3,2,182897,1008 -952,FR,KZ,201812,3,2,32175,9020 -952,FR,KZ,201812,3,2,42457,22701 -961,FR,KZ,201812,4,2,483,3 -962,FR,KZ,201812,3,2,44868,8252 -962,FR,KZ,201812,3,2,420,2 -962,FR,KZ,201812,4,2,9540,399 -962,FR,KZ,201812,5,2,360,5 -963,FR,KZ,201812,3,1,242,3 -963,FR,KZ,201812,4,1,138773,289 -963,FR,KZ,201812,4,1,232,11 -963,FR,KZ,201812,0,2,309,3 -963,FR,KZ,201812,3,2,22578,480 -963,FR,KZ,201812,3,2,1936,31 -963,FR,KZ,201812,3,2,1,4 -963,FR,KZ,201812,4,2,665109,2589 -963,FR,KZ,201812,4,2,45610,81 -963,FR,KZ,201812,4,2,17619,118 -963,FR,KZ,201812,4,2,130077,749 -963,FR,KZ,201812,4,2,2376,110 -963,FR,KZ,201812,4,2,1290,4 -971,FR,KZ,201812,3,2,531,87 -971,FR,KZ,201812,4,2,22885,841 -971,FR,KZ,201812,4,2,1198,105 -971,FR,KZ,201812,4,2,1791,0 -971,FR,KZ,201812,4,2,24866,521 -972,FR,KZ,201812,1,2,14599,14912 -972,FR,KZ,201812,4,2,1607,186 -973,FR,KZ,201812,3,2,4209,713 -973,FR,KZ,201812,4,2,40210,6241 -973,FR,KZ,201812,4,2,1047,120 -974,FR,KZ,201812,0,2,104,1 -974,FR,KZ,201812,3,2,477,79 -974,FR,KZ,201812,4,2,3608,465 -974,FR,KZ,201812,4,2,283,0 -974,FR,KZ,201812,4,2,1,16 -974,FR,KZ,201812,4,2,1,70 -974,FR,KZ,201812,4,2,1381,50 -974,FR,KZ,201812,5,2,0,1 -975,FR,KZ,201812,3,2,371942,15268 -975,FR,KZ,201812,3,2,96200,7918 -975,FR,KZ,201812,4,2,6067,105 -975,FR,KZ,201812,4,2,462,4 -976,FR,KZ,201812,3,2,1,181 -976,FR,KZ,201812,4,2,26500,4 -979,FR,KZ,201812,4,1,2108,0 -979,FR,KZ,201812,4,1,1499,1 -979,FR,KZ,201812,4,1,765,0 -979,FR,KZ,201812,3,2,49946,2510 -979,FR,KZ,201812,3,2,4405,51 -979,FR,KZ,201812,3,2,394000,8 -979,FR,KZ,201812,3,2,18495,1390 -979,FR,KZ,201812,4,2,173290,1105 -979,FR,KZ,201812,4,2,166,2 -979,FR,KZ,201812,4,2,311546,244 -979,FR,KZ,201812,4,2,22730,169 -979,FR,KZ,201812,4,2,2360,0 -979,FR,KZ,201812,4,2,868,1 -979,FR,KZ,201812,4,2,18394,0 -979,FR,KZ,201812,4,2,71127,2080 -979,FR,KZ,201812,4,2,2339,3 -979,FR,KZ,201812,4,2,3538,13 -999,FR,KZ,201812,3,1,2650856,624000 -999,FR,KZ,201812,4,1,22750,0 -999,FR,KZ,201812,4,1,6365,0 -999,FR,KZ,201812,3,2,12935,5061 -999,FR,KZ,201812,3,2,20008,37400 -999,FR,KZ,201812,3,2,79978,17719 -999,FR,KZ,201812,4,2,4354,195 -999,FR,KZ,201812,4,2,724931,108 -999,FR,KZ,201812,4,2,1,0 -999,FR,KZ,201812,4,2,45,1 -092,FR,TM,201812,3,2,8056,1652 -099,FR,TM,201812,3,2,31187,354 -121,FR,TM,201812,4,2,3699,81 -122,FR,TM,201812,4,2,93,16 -125,FR,TM,201812,4,2,208,12 -139,FR,TM,201812,4,2,2610,102 -551,FR,TM,201812,3,2,41300,8991 -691,FR,TM,201812,3,2,30039,2257 -691,FR,TM,201812,3,2,325683,290009 -692,FR,TM,201812,3,2,17138,17734 -891,FR,TM,201812,1,2,74000,38880 -891,FR,TM,201812,3,2,140023,72836 -891,FR,TM,201812,3,2,80858,18182 -891,FR,TM,201812,4,2,1230,45 -892,FR,TM,201812,1,2,99186,16481 -892,FR,TM,201812,3,2,27069,39000 -892,FR,TM,201812,3,2,88456,36678 -892,FR,TM,201812,3,2,50043,45410 -893,FR,TM,201812,3,2,6000,210 -893,FR,TM,201812,3,2,84558,904 -893,FR,TM,201812,4,2,47956,870 -893,FR,TM,201812,4,2,17238,349 -896,FR,TM,201812,3,2,9734,35 -896,FR,TM,201812,3,2,7074,20560 -896,FR,TM,201812,4,2,6085,74 -896,FR,TM,201812,4,2,3565,50 -910,FR,TM,201812,4,2,225321,163 -931,FR,TM,201812,1,2,6412,5739 -931,FR,TM,201812,3,2,17741,534 -931,FR,TM,201812,3,2,9800,2818 -931,FR,TM,201812,4,2,34299,1528 -939,FR,TM,201812,3,1,341,3 -939,FR,TM,201812,1,2,1000,450 -939,FR,TM,201812,3,2,457964,70682 -939,FR,TM,201812,3,2,37676,11914 -939,FR,TM,201812,3,2,16650,3715 -939,FR,TM,201812,3,2,109484,9156 -939,FR,TM,201812,4,2,15912,86 -939,FR,TM,201812,4,2,159370,4047 -939,FR,TM,201812,4,2,1507,97 -941,FR,TM,201812,1,2,91061,15946 -941,FR,TM,201812,3,2,96626,14512 -941,FR,TM,201812,3,2,1092800,338852 -941,FR,TM,201812,3,2,92682,37144 -949,FR,TM,201812,3,2,24486,6743 -949,FR,TM,201812,3,2,19034,6666 -949,FR,TM,201812,3,2,6905,894 -949,FR,TM,201812,4,2,12061,150 -951,FR,TM,201812,4,2,1110,10 -962,FR,TM,201812,3,2,3349,1148 -962,FR,TM,201812,4,2,5715,300 -963,FR,TM,201812,3,2,223809,37350 -963,FR,TM,201812,4,2,1115,35 -976,FR,TM,201812,3,2,15700,14114 -979,FR,TM,201812,4,1,7679,6 -979,FR,TM,201812,4,1,203,28 -979,FR,TM,201812,4,1,252,0 -979,FR,TM,201812,3,2,33746,1844 -979,FR,TM,201812,3,2,51650,58 -979,FR,TM,201812,3,2,66192,4866 -979,FR,TM,201812,3,2,11686,3377 -999,FR,TM,201812,3,2,4320,5400 -999,FR,TM,201812,3,2,50550,3780 -999,FR,TM,201812,4,2,2,0 -999,FR,TM,201812,4,2,24739,0 -999,FR,TM,201812,4,2,2710,0 -099,FR,UZ,201812,3,2,30262,8000 -099,FR,UZ,201812,4,2,17028,508 -099,FR,UZ,201812,4,2,277865,1300 -132,FR,UZ,201812,0,2,60,2 -136,FR,UZ,201812,3,2,5184,5760 -139,FR,UZ,201812,3,2,118129,12964 -144,FR,UZ,201812,3,2,439240,74400 -164,FR,UZ,201812,1,1,20475,11000 -165,FR,UZ,201812,1,1,1559,840 -179,FR,UZ,201812,3,2,102018,340 -179,FR,UZ,201812,3,2,24000,20000 -551,FR,UZ,201812,3,2,85,4 -819,FR,UZ,201812,1,1,286,5 -819,FR,UZ,201812,3,2,190819,38340 -819,FR,UZ,201812,3,2,23969,1062 -891,FR,UZ,201812,3,2,163800,115000 -891,FR,UZ,201812,4,2,2983,80 -892,FR,UZ,201812,4,2,13900,850 -893,FR,UZ,201812,0,2,414,3 -893,FR,UZ,201812,3,2,270771,6711 -893,FR,UZ,201812,3,2,292226,5575 -893,FR,UZ,201812,3,2,22604,500 -893,FR,UZ,201812,3,2,335240,9048 -893,FR,UZ,201812,4,2,59141,2367 -893,FR,UZ,201812,4,2,103443,412 -893,FR,UZ,201812,4,2,25751,156 -893,FR,UZ,201812,4,2,32996,530 -893,FR,UZ,201812,4,2,2106,12 -896,FR,UZ,201812,1,2,29493,9890 -896,FR,UZ,201812,3,2,8529,801 -896,FR,UZ,201812,3,2,321552,2180 -896,FR,UZ,201812,3,2,141574,11987 -896,FR,UZ,201812,3,2,149838,6500 -896,FR,UZ,201812,4,2,3565,50 -910,FR,UZ,201812,3,2,15602,7272 -910,FR,UZ,201812,4,2,284337,215 -910,FR,UZ,201812,4,2,21800,31 -920,FR,UZ,201812,3,2,12190,7272 -920,FR,UZ,201812,4,2,8237,1362 -920,FR,UZ,201812,4,2,3341,320 -931,FR,UZ,201812,3,2,49283,1710 -931,FR,UZ,201812,4,2,88183,6105 -931,FR,UZ,201812,4,2,30268,441 -931,FR,UZ,201812,4,2,18082,3 -939,FR,UZ,201812,3,2,89446,5056 -939,FR,UZ,201812,3,2,490400,39899 -939,FR,UZ,201812,3,2,667000,30753 -939,FR,UZ,201812,4,2,99098,189 -939,FR,UZ,201812,4,2,24997,438 -939,FR,UZ,201812,4,2,361,76 -939,FR,UZ,201812,4,2,22001,330 -949,FR,UZ,201812,3,2,1582,70 -949,FR,UZ,201812,4,2,671,70 -951,FR,UZ,201812,3,2,1992,114 -951,FR,UZ,201812,4,2,294,5 -952,FR,UZ,201812,3,2,394,97 -952,FR,UZ,201812,4,2,146,6 -962,FR,UZ,201812,4,2,916,146 -963,FR,UZ,201812,0,2,180,2 -963,FR,UZ,201812,3,2,17506,102 -963,FR,UZ,201812,4,2,26129,57 -971,FR,UZ,201812,3,2,6951,398 -971,FR,UZ,201812,4,2,10634,12 -972,FR,UZ,201812,1,2,27419,32783 -972,FR,UZ,201812,4,2,337,70 -973,FR,UZ,201812,3,2,252,65 -973,FR,UZ,201812,4,2,3657,796 -974,FR,UZ,201812,3,2,4950,150 -974,FR,UZ,201812,4,2,181,18 -974,FR,UZ,201812,4,2,1,0 -975,FR,UZ,201812,3,2,5616,615 -975,FR,UZ,201812,4,2,1523,61 -976,FR,UZ,201812,4,2,656,81 -979,FR,UZ,201812,4,1,185,1 -979,FR,UZ,201812,3,2,16689,1636 -979,FR,UZ,201812,3,2,69799,9123 -979,FR,UZ,201812,4,2,117507,1435 -979,FR,UZ,201812,4,2,475,6 -979,FR,UZ,201812,4,2,4277,80 -999,FR,UZ,201812,4,1,11200,0 -999,FR,UZ,201812,3,2,11770,22000 -999,FR,UZ,201812,3,2,644738,221731 -999,FR,UZ,201812,3,2,125810,83000 -999,FR,UZ,201812,3,2,26030,21000 -999,FR,UZ,201812,3,2,43113,21000 -999,FR,UZ,201812,3,2,9149,3000 -999,FR,UZ,201812,4,2,456,40 -999,FR,UZ,201812,4,2,117,2 -144,FR,TJ,201812,4,2,3826,299 -144,FR,TJ,201812,4,2,1261,104 -565,FR,TJ,201812,1,1,727728,100797 -565,FR,TJ,201812,3,1,1460253,202007 -893,FR,TJ,201812,3,2,8374,263 -893,FR,TJ,201812,3,2,23730,1381 -893,FR,TJ,201812,4,2,40236,838 -910,FR,TJ,201812,4,2,35117,74 -931,FR,TJ,201812,4,2,1000,6 -939,FR,TJ,201812,4,2,4360,4 -939,FR,TJ,201812,4,2,31291,49 -939,FR,TJ,201812,4,2,39579,100 -949,FR,TJ,201812,4,2,1,0 -979,FR,TJ,201812,3,2,12680,16 -999,FR,TJ,201812,4,2,2,0 -999,FR,TJ,201812,4,2,8000,0 -035,FR,KG,201812,4,1,391,69 -099,FR,KG,201812,4,1,3830,249 -099,FR,KG,201812,4,2,9425,59 -121,FR,KG,201812,3,2,17398,9605 -136,FR,KG,201812,4,1,64,2 -139,FR,KG,201812,3,2,22920,3066 -164,FR,KG,201812,4,1,162,41 -165,FR,KG,201812,1,1,1070,840 -166,FR,KG,201812,4,1,892,0 -181,FR,KG,201812,4,1,43,2 -819,FR,KG,201812,3,2,941,232 -893,FR,KG,201812,3,1,280,1 -893,FR,KG,201812,3,2,33540,1331 -893,FR,KG,201812,3,2,22185,1528 -893,FR,KG,201812,3,2,11783,312 -893,FR,KG,201812,3,2,130425,6080 -893,FR,KG,201812,4,2,35518,764 -893,FR,KG,201812,4,2,15677,74 -896,FR,KG,201812,3,2,1818,18 -896,FR,KG,201812,3,2,34103,180 -896,FR,KG,201812,3,2,23027,6328 -896,FR,KG,201812,3,2,884,9 -896,FR,KG,201812,3,2,111474,7064 -920,FR,KG,201812,4,1,1004,9 -931,FR,KG,201812,3,1,3102,8 -931,FR,KG,201812,3,2,689806,11061 -931,FR,KG,201812,4,2,41144,15 -939,FR,KG,201812,1,2,273876,11648 -939,FR,KG,201812,3,2,70200,11806 -952,FR,KG,201812,3,2,90753,55646 -963,FR,KG,201812,0,1,152,1 -963,FR,KG,201812,3,1,517,4 -963,FR,KG,201812,3,1,72,1 -963,FR,KG,201812,4,1,2921,41 -973,FR,KG,201812,4,2,409,100 -979,FR,KG,201812,0,2,478,4 -979,FR,KG,201812,3,2,183,6 -979,FR,KG,201812,4,2,9804,247 -979,FR,KG,201812,4,2,6063,10 -999,FR,KG,201812,4,2,473,0 -051,FR,BA,201812,3,1,74280,64200 -056,FR,BA,201812,3,1,7948,3120 -056,FR,BA,201812,3,1,446167,362716 -056,FR,BA,201812,3,2,11501,23204 -056,FR,BA,201812,3,2,6898,17300 -057,FR,BA,201812,3,1,3200,24000 -099,FR,BA,201812,3,1,47183,7880 -099,FR,BA,201812,4,1,704,200 -111,FR,BA,201812,3,2,446,966 -112,FR,BA,201812,3,2,9677,20940 -121,FR,BA,201812,3,2,35793,967 -121,FR,BA,201812,3,2,5539,1543 -125,FR,BA,201812,3,2,5102,1189 -125,FR,BA,201812,3,2,16481,737 -128,FR,BA,201812,1,1,15151,9444 -132,FR,BA,201812,3,2,598,139 -136,FR,BA,201812,3,2,11770,3666 -139,FR,BA,201812,3,2,8082,205 -139,FR,BA,201812,3,2,1386,716 -139,FR,BA,201812,3,2,37070,22056 -141,FR,BA,201812,3,2,8831,18482 -144,FR,BA,201812,3,2,21020,6000 -145,FR,BA,201812,3,2,23860,10056 -163,FR,BA,201812,3,1,6164,3249 -163,FR,BA,201812,3,2,24358,11700 -164,FR,BA,201812,3,1,42561,8640 -164,FR,BA,201812,4,1,40414,1605 -164,FR,BA,201812,3,2,3144,783 -179,FR,BA,201812,3,1,17598,21227 -179,FR,BA,201812,3,2,38163,16447 -179,FR,BA,201812,3,2,66144,89294 -323,FR,BA,201812,3,2,97,31 -341,FR,BA,201812,3,2,50832,13176 -341,FR,BA,201812,3,2,90,11 -341,FR,BA,201812,3,2,38503,20732 -542,FR,BA,201812,3,2,179800,174905 -543,FR,BA,201812,3,2,23496,29740 -551,FR,BA,201812,3,2,500,16 -552,FR,BA,201812,3,2,34102,11180 -568,FR,BA,201812,3,2,292,51 -621,FR,BA,201812,3,2,141,17 -639,FR,BA,201812,1,2,5232,9000 -691,FR,BA,201812,3,1,38036,144830 -691,FR,BA,201812,3,2,8575,13718 -692,FR,BA,201812,3,2,4040,23738 -692,FR,BA,201812,3,2,4562,23299 -692,FR,BA,201812,3,2,21021,24000 -819,FR,BA,201812,3,1,3178,115 -819,FR,BA,201812,3,2,37273,16218 -819,FR,BA,201812,4,2,5366,1000 -820,FR,BA,201812,3,1,10879,24060 -820,FR,BA,201812,3,1,32331,74940 -820,FR,BA,201812,3,2,22322,24000 -891,FR,BA,201812,3,2,4380,104 -891,FR,BA,201812,3,2,21790,6000 -891,FR,BA,201812,3,2,11150,2707 -891,FR,BA,201812,4,2,376,3 -892,FR,BA,201812,3,2,167284,84100 -893,FR,BA,201812,3,2,1036882,9543 -893,FR,BA,201812,3,2,27596,535 -893,FR,BA,201812,3,2,71813,14292 -893,FR,BA,201812,3,2,22933,491 -893,FR,BA,201812,4,2,4849,534 -893,FR,BA,201812,4,2,408,0 -893,FR,BA,201812,4,2,3833,3 -896,FR,BA,201812,3,1,2833,35 -896,FR,BA,201812,3,1,167490,197000 -896,FR,BA,201812,3,1,343668,474408 -896,FR,BA,201812,3,1,146235,172000 -896,FR,BA,201812,3,1,27158,47664 -896,FR,BA,201812,3,2,22335,924 -896,FR,BA,201812,3,2,8284,1912 -896,FR,BA,201812,3,2,10819,8644 -896,FR,BA,201812,3,2,345,237 -896,FR,BA,201812,4,2,7912,70 -896,FR,BA,201812,4,2,6210,45 -896,FR,BA,201812,4,2,1210,6 -896,FR,BA,201812,4,2,4950,1 -910,FR,BA,201812,0,2,400,0 -910,FR,BA,201812,3,2,100454,21485 -910,FR,BA,201812,3,2,51358,6481 -910,FR,BA,201812,3,2,26890,16712 -910,FR,BA,201812,9,2,345074,104870 -920,FR,BA,201812,3,2,122000,16441 -920,FR,BA,201812,3,2,1999,302 -920,FR,BA,201812,3,2,44600,25600 -920,FR,BA,201812,9,2,6500,4800 -931,FR,BA,201812,3,1,9256,153 -931,FR,BA,201812,0,2,1025,17 -931,FR,BA,201812,3,2,259814,1676 -931,FR,BA,201812,3,2,6421,234 -931,FR,BA,201812,3,2,6348,1455 -931,FR,BA,201812,4,2,25575,123 -931,FR,BA,201812,4,2,49504,782 -931,FR,BA,201812,4,2,76009,2540 -931,FR,BA,201812,4,2,1231,11 -939,FR,BA,201812,0,1,21334,3450 -939,FR,BA,201812,3,1,154953,28933 -939,FR,BA,201812,3,1,2406,52 -939,FR,BA,201812,3,1,513,0 -939,FR,BA,201812,3,1,7095,993 -939,FR,BA,201812,3,1,119080,49617 -939,FR,BA,201812,4,1,9681,59 -939,FR,BA,201812,0,2,162,0 -939,FR,BA,201812,1,2,31545,2124 -939,FR,BA,201812,3,2,266681,5093 -939,FR,BA,201812,3,2,206,13 -939,FR,BA,201812,3,2,2555,42 -939,FR,BA,201812,3,2,33759,21661 -939,FR,BA,201812,4,2,33064,248 -939,FR,BA,201812,4,2,39832,1340 -939,FR,BA,201812,4,2,1698,1 -941,FR,BA,201812,3,1,3520,720 -941,FR,BA,201812,3,1,192209,41158 -941,FR,BA,201812,3,1,43097,25614 -941,FR,BA,201812,3,2,8750,5829 -949,FR,BA,201812,3,1,6228,232 -949,FR,BA,201812,3,1,69,1 -949,FR,BA,201812,3,1,3669,368 -949,FR,BA,201812,3,1,20203,2370 -949,FR,BA,201812,3,1,356595,224915 -949,FR,BA,201812,4,1,2,0 -949,FR,BA,201812,3,2,96607,2102 -949,FR,BA,201812,3,2,807083,59500 -949,FR,BA,201812,3,2,46776,20662 -951,FR,BA,201812,3,1,2030,181 -952,FR,BA,201812,3,2,57609,43125 -952,FR,BA,201812,3,2,22510,22119 -952,FR,BA,201812,4,2,1961,70 -961,FR,BA,201812,3,1,9350,248 -961,FR,BA,201812,3,1,54809,986 -961,FR,BA,201812,3,2,662461,13393 -961,FR,BA,201812,4,2,2803,82 -962,FR,BA,201812,3,1,13530,408 -962,FR,BA,201812,3,1,715,125 -962,FR,BA,201812,4,1,675,72 -962,FR,BA,201812,3,2,110183,5902 -962,FR,BA,201812,3,2,21,0 -962,FR,BA,201812,3,2,17027,715 -962,FR,BA,201812,3,2,42828,1126 -962,FR,BA,201812,3,2,8063,50 -962,FR,BA,201812,3,2,103846,27548 -962,FR,BA,201812,3,2,35195,1847 -962,FR,BA,201812,4,2,3232,100 -962,FR,BA,201812,4,2,2190,87 -963,FR,BA,201812,1,1,1683,141 -963,FR,BA,201812,3,1,167357,9182 -963,FR,BA,201812,3,1,13535,220 -963,FR,BA,201812,3,1,4525,500 -963,FR,BA,201812,3,1,202098,6951 -963,FR,BA,201812,3,1,1107091,31170 -963,FR,BA,201812,3,1,1479273,57679 -963,FR,BA,201812,3,1,93554,2100 -963,FR,BA,201812,3,1,1090,25 -963,FR,BA,201812,4,1,709,0 -963,FR,BA,201812,4,1,0,2 -963,FR,BA,201812,4,1,3105,0 -963,FR,BA,201812,4,1,105,2 -963,FR,BA,201812,3,2,153761,12151 -963,FR,BA,201812,3,2,121863,10204 -963,FR,BA,201812,3,2,174111,15008 -971,FR,BA,201812,3,2,848,67 -972,FR,BA,201812,3,1,129157,141831 -972,FR,BA,201812,3,2,46263,43361 -972,FR,BA,201812,3,2,14641,13550 -973,FR,BA,201812,3,1,22478,15284 -973,FR,BA,201812,3,1,27714,11500 -973,FR,BA,201812,3,2,4344,244 -974,FR,BA,201812,3,1,1306,32 -974,FR,BA,201812,0,2,47,14 -974,FR,BA,201812,3,2,94,28 -974,FR,BA,201812,3,2,95,20 -974,FR,BA,201812,4,2,50,1 -975,FR,BA,201812,1,1,19973,11750 -975,FR,BA,201812,3,1,165,19 -975,FR,BA,201812,3,1,620,46 -975,FR,BA,201812,3,1,223,181 -975,FR,BA,201812,3,1,1009628,359527 -975,FR,BA,201812,3,1,31504,6712 -975,FR,BA,201812,3,1,22404,10427 -975,FR,BA,201812,3,2,26,3 -976,FR,BA,201812,3,1,56310,48670 -976,FR,BA,201812,3,1,213543,132974 -976,FR,BA,201812,3,1,29875,23700 -976,FR,BA,201812,3,1,5343,23000 -976,FR,BA,201812,3,2,105,294 -976,FR,BA,201812,3,2,5602,8160 -976,FR,BA,201812,3,2,655,1287 -979,FR,BA,201812,1,1,661,397 -979,FR,BA,201812,1,1,63973,5610 -979,FR,BA,201812,3,1,106756,25287 -979,FR,BA,201812,3,1,186292,58079 -979,FR,BA,201812,3,1,47480,11230 -979,FR,BA,201812,3,1,1150,290 -979,FR,BA,201812,3,2,71883,2242 -979,FR,BA,201812,3,2,32500,1112 -979,FR,BA,201812,3,2,158,10 -979,FR,BA,201812,3,2,32725,1525 -979,FR,BA,201812,3,2,640,124 -979,FR,BA,201812,4,2,5067,3 -979,FR,BA,201812,4,2,5049,120 -979,FR,BA,201812,4,2,3280,58 -979,FR,BA,201812,5,2,2259,6 -999,FR,BA,201812,3,2,11753,12028 -999,FR,BA,201812,3,2,19552,4133 -999,FR,BA,201812,4,2,2,0 -999,FR,BA,201812,4,2,1,0 -136,FR,XK,201812,3,2,2572,946 -139,FR,XK,201812,3,2,846,398 -139,FR,XK,201812,3,2,58103,38174 -145,FR,XK,201812,3,2,4015,1544 -164,FR,XK,201812,3,2,838,214 -568,FR,XK,201812,3,1,2216,514 -691,FR,XK,201812,3,1,900,17500 -691,FR,XK,201812,3,2,9600,10632 -891,FR,XK,201812,3,2,11479,941 -893,FR,XK,201812,3,1,21785,12305 -893,FR,XK,201812,3,2,16238,212 -893,FR,XK,201812,3,2,32952,349 -893,FR,XK,201812,4,2,1,0 -896,FR,XK,201812,3,2,6450,1822 -910,FR,XK,201812,3,2,47679,24391 -910,FR,XK,201812,9,2,391484,39944 -931,FR,XK,201812,3,1,309,150 -931,FR,XK,201812,3,2,6070,410 -931,FR,XK,201812,3,2,6000,1340 -931,FR,XK,201812,3,2,53886,21953 -931,FR,XK,201812,4,2,100,50 -939,FR,XK,201812,3,2,5958,244 -939,FR,XK,201812,3,2,3273,152 -941,FR,XK,201812,3,1,530,63 -941,FR,XK,201812,3,1,5160,660 -941,FR,XK,201812,3,1,20736,20407 -941,FR,XK,201812,3,1,1861,344 -941,FR,XK,201812,3,2,6000,4196 -941,FR,XK,201812,3,2,16656,34660 -949,FR,XK,201812,3,1,934,260 -949,FR,XK,201812,3,2,8715,727 -949,FR,XK,201812,3,2,1844,3000 -951,FR,XK,201812,3,1,3620,2496 -962,FR,XK,201812,3,2,2593,141 -963,FR,XK,201812,3,1,36550,1503 -963,FR,XK,201812,3,1,29731,940 -963,FR,XK,201812,3,1,26317,1245 -963,FR,XK,201812,3,2,3746,98 -963,FR,XK,201812,3,2,28540,1949 -973,FR,XK,201812,1,1,3200,1362 -973,FR,XK,201812,3,2,49,3 -974,FR,XK,201812,3,2,525,370 -975,FR,XK,201812,3,1,6066,3456 -975,FR,XK,201812,3,1,5112,1663 -975,FR,XK,201812,3,1,5280,2905 -976,FR,XK,201812,3,1,1437,270 -976,FR,XK,201812,3,1,3026,559 -976,FR,XK,201812,3,2,23,63 -979,FR,XK,201812,1,1,15255,4029 -979,FR,XK,201812,3,1,11679,2346 -979,FR,XK,201812,3,1,742,137 -979,FR,XK,201812,3,2,4013,325 -979,FR,XK,201812,3,2,65,3 -979,FR,XK,201812,4,2,20,4 -979,FR,XK,201812,4,2,12000,124 -999,FR,XK,201812,3,2,33,3 -999,FR,XK,201812,4,2,3,0 -099,FR,MK,201812,3,1,34239,8840 -099,FR,MK,201812,3,2,42822,242 -099,FR,MK,201812,4,2,7983,50 -121,FR,MK,201812,3,2,3146,171 -121,FR,MK,201812,3,2,25208,906 -125,FR,MK,201812,3,2,1607,68 -128,FR,MK,201812,1,1,8855,13480 -128,FR,MK,201812,3,1,12131,21197 -128,FR,MK,201812,3,1,12131,21197 -128,FR,MK,201812,4,1,11756,21197 -133,FR,MK,201812,3,1,12676,10134 -139,FR,MK,201812,3,2,14684,643 -139,FR,MK,201812,3,2,62955,3017 -139,FR,MK,201812,3,2,59979,33648 -139,FR,MK,201812,4,2,16504,156 -141,FR,MK,201812,1,2,24101,20997 -144,FR,MK,201812,3,2,174745,50776 -144,FR,MK,201812,3,2,10467,2000 -145,FR,MK,201812,3,2,7533,3104 -163,FR,MK,201812,3,1,5558,1670 -163,FR,MK,201812,3,2,2503,585 -164,FR,MK,201812,3,1,10946,1250 -164,FR,MK,201812,3,1,85248,88560 -166,FR,MK,201812,3,1,10946,5995 -179,FR,MK,201812,3,2,5060,1050 -179,FR,MK,201812,3,2,32207,14725 -179,FR,MK,201812,3,2,2960,1000 -182,FR,MK,201812,1,2,10386,20594 -341,FR,MK,201812,3,2,6,0 -542,FR,MK,201812,3,1,31870,43232 -551,FR,MK,201812,3,1,12551,24650 -551,FR,MK,201812,3,1,16379,24455 -551,FR,MK,201812,3,2,94,0 -552,FR,MK,201812,3,2,27,0 -568,FR,MK,201812,3,2,24070,3070 -621,FR,MK,201812,3,2,60,6 -692,FR,MK,201812,1,2,21574,23800 -724,FR,MK,201812,3,2,90,227 -813,FR,MK,201812,3,2,11322,24000 -891,FR,MK,201812,3,1,1108,213 -891,FR,MK,201812,3,2,78632,34955 -891,FR,MK,201812,3,2,2300,182 -891,FR,MK,201812,4,2,1229,41 -892,FR,MK,201812,3,2,10200,662 -893,FR,MK,201812,3,2,80567,1240 -893,FR,MK,201812,3,2,11426,1753 -893,FR,MK,201812,3,2,44617,581 -893,FR,MK,201812,3,2,25304,6656 -893,FR,MK,201812,3,2,17467,180 -893,FR,MK,201812,4,2,735711,1396 -893,FR,MK,201812,4,2,1064,0 -893,FR,MK,201812,4,2,1240,5 -893,FR,MK,201812,4,2,36,28 -893,FR,MK,201812,4,2,3615,19 -893,FR,MK,201812,4,2,1769,5 -893,FR,MK,201812,4,2,2131,6 -896,FR,MK,201812,3,1,337,6 -896,FR,MK,201812,1,2,5338,162 -896,FR,MK,201812,1,2,185222,16970 -896,FR,MK,201812,3,2,20155,1237 -896,FR,MK,201812,3,2,8770,800 -896,FR,MK,201812,4,2,7940,91 -896,FR,MK,201812,4,2,8678,131 -896,FR,MK,201812,4,2,6454,146 -896,FR,MK,201812,4,2,2600,500 -896,FR,MK,201812,4,2,3275,11 -910,FR,MK,201812,3,1,95,3 -910,FR,MK,201812,3,1,454256,23909 -910,FR,MK,201812,3,2,1231995,127751 -910,FR,MK,201812,3,2,2653,102 -910,FR,MK,201812,3,2,5554,1784 -910,FR,MK,201812,3,2,61253,12615 -910,FR,MK,201812,3,2,441051,44194 -910,FR,MK,201812,4,2,507,0 -910,FR,MK,201812,9,2,9011,3915 -931,FR,MK,201812,1,1,417386,27639 -931,FR,MK,201812,3,1,104086,5613 -931,FR,MK,201812,3,1,1201987,43028 -931,FR,MK,201812,4,1,3980,97 -931,FR,MK,201812,4,1,1779,12 -931,FR,MK,201812,4,1,297,6 -931,FR,MK,201812,3,2,37190,911 -931,FR,MK,201812,3,2,27610,2299 -931,FR,MK,201812,3,2,853948,29453 -931,FR,MK,201812,4,2,14229,69 -931,FR,MK,201812,4,2,48156,3580 -931,FR,MK,201812,4,2,6303,101 -939,FR,MK,201812,3,1,5800,192 -939,FR,MK,201812,3,1,5626,3854 -939,FR,MK,201812,1,2,19108,68 -939,FR,MK,201812,3,2,665355,23744 -939,FR,MK,201812,3,2,94,1 -939,FR,MK,201812,3,2,6976,296 -939,FR,MK,201812,3,2,7500,302 -939,FR,MK,201812,3,2,15333,825 -939,FR,MK,201812,4,2,25385,83 -939,FR,MK,201812,4,2,683,2 -939,FR,MK,201812,4,2,7557,26 -939,FR,MK,201812,4,2,1020,1 -939,FR,MK,201812,4,2,28095,710 -949,FR,MK,201812,3,1,4303,205 -949,FR,MK,201812,3,2,44915,366 -949,FR,MK,201812,3,2,156,0 -949,FR,MK,201812,4,2,11,0 -949,FR,MK,201812,4,2,8,0 -951,FR,MK,201812,3,2,519,53 -952,FR,MK,201812,3,2,94060,40216 -952,FR,MK,201812,3,2,41914,30970 -961,FR,MK,201812,4,2,32,5 -962,FR,MK,201812,3,2,23302,1071 -962,FR,MK,201812,3,2,8925,670 -962,FR,MK,201812,3,2,22006,1575 -962,FR,MK,201812,3,2,72,2 -962,FR,MK,201812,3,2,4650,327 -962,FR,MK,201812,3,2,11690,3334 -962,FR,MK,201812,4,2,150,60 -963,FR,MK,201812,3,1,91,0 -963,FR,MK,201812,3,1,68577,1594 -963,FR,MK,201812,4,1,33,0 -963,FR,MK,201812,4,1,0,1 -963,FR,MK,201812,3,2,25006,920 -963,FR,MK,201812,3,2,166,0 -963,FR,MK,201812,4,2,38,0 -963,FR,MK,201812,4,2,1073,600 -971,FR,MK,201812,1,1,625,44 -971,FR,MK,201812,1,2,61,0 -971,FR,MK,201812,3,2,1769,105 -971,FR,MK,201812,3,2,659,72 -971,FR,MK,201812,4,2,90,1 -971,FR,MK,201812,4,2,18,0 -972,FR,MK,201812,3,2,54,13 -972,FR,MK,201812,3,2,5418,6772 -973,FR,MK,201812,3,1,733,88 -973,FR,MK,201812,3,1,1035,850 -973,FR,MK,201812,1,2,20811,22455 -973,FR,MK,201812,3,2,12152,659 -974,FR,MK,201812,3,1,4101,905 -974,FR,MK,201812,3,1,1795,220 -974,FR,MK,201812,3,2,365,46 -974,FR,MK,201812,3,2,60,9 -974,FR,MK,201812,5,2,1006,18 -975,FR,MK,201812,1,1,13483,3480 -975,FR,MK,201812,1,1,47881,12290 -975,FR,MK,201812,3,1,27909,3595 -975,FR,MK,201812,3,1,44340,13226 -975,FR,MK,201812,3,1,271955,66663 -975,FR,MK,201812,3,1,54229,15250 -975,FR,MK,201812,3,2,26,0 -975,FR,MK,201812,3,2,840,2065 -976,FR,MK,201812,3,2,5500,262 -979,FR,MK,201812,3,1,9590,120 -979,FR,MK,201812,3,1,4004,575 -979,FR,MK,201812,1,2,3381,175 -979,FR,MK,201812,3,2,14880,488 -979,FR,MK,201812,3,2,86,1 -979,FR,MK,201812,3,2,21198,1383 -979,FR,MK,201812,3,2,8780,109 -979,FR,MK,201812,3,2,60775,1630 -979,FR,MK,201812,4,2,1890,2 -979,FR,MK,201812,4,2,12,4 -979,FR,MK,201812,4,2,500,3 -979,FR,MK,201812,4,2,8848,480 -979,FR,MK,201812,4,2,7288,42 -979,FR,MK,201812,5,2,1576,9 -999,FR,MK,201812,1,2,2585,238 -999,FR,MK,201812,3,2,12299,3626 -999,FR,MK,201812,4,2,3,0 -999,FR,MK,201812,4,2,19348,40 -999,FR,MK,201812,4,2,92505,2300 -020,FR,ME,201812,3,2,8820,24000 -020,FR,ME,201812,3,2,16400,96000 -020,FR,ME,201812,3,2,26480,122400 -039,FR,ME,201812,3,1,24452,5004 -039,FR,ME,201812,3,1,49700,7196 -099,FR,ME,201812,4,2,4910,210 -121,FR,ME,201812,3,2,54540,5706 -128,FR,ME,201812,3,2,18130,14446 -128,FR,ME,201812,3,2,49903,83574 -128,FR,ME,201812,3,2,13525,18090 -139,FR,ME,201812,3,2,7814,66 -893,FR,ME,201812,3,2,22952,1275 -893,FR,ME,201812,3,2,653,50 -893,FR,ME,201812,3,2,10747,199 -893,FR,ME,201812,4,2,9331,5 -893,FR,ME,201812,4,2,847,9 -893,FR,ME,201812,4,2,5975,20 -896,FR,ME,201812,4,2,1780,22 -910,FR,ME,201812,3,2,9581,712 -910,FR,ME,201812,3,2,4363,1385 -910,FR,ME,201812,3,2,65824,15946 -910,FR,ME,201812,3,2,3984,2944 -910,FR,ME,201812,4,2,1426,32 -910,FR,ME,201812,9,2,1195192,202521 -920,FR,ME,201812,3,2,5660,18180 -931,FR,ME,201812,3,1,1705,47 -931,FR,ME,201812,3,2,1980,108 -931,FR,ME,201812,4,2,11869,1 -931,FR,ME,201812,4,2,280,0 -931,FR,ME,201812,4,2,760,0 -931,FR,ME,201812,4,2,7278,200 -939,FR,ME,201812,0,1,49432,3980 -939,FR,ME,201812,3,1,21151,1096 -939,FR,ME,201812,0,2,747,56 -939,FR,ME,201812,3,2,224247,45152 -939,FR,ME,201812,3,2,16558,845 -939,FR,ME,201812,4,2,3460,7 -939,FR,ME,201812,4,2,3137,3 -939,FR,ME,201812,4,2,3653,160 -939,FR,ME,201812,4,2,1111,4 -949,FR,ME,201812,3,2,1,0 -952,FR,ME,201812,3,2,3925,1289 -963,FR,ME,201812,4,1,980,67 -963,FR,ME,201812,3,2,16517,210 -963,FR,ME,201812,3,2,15760,218 -963,FR,ME,201812,4,2,1990,161 -963,FR,ME,201812,4,2,2582,100 -971,FR,ME,201812,1,1,2914,147 -975,FR,ME,201812,4,2,61,3 -976,FR,ME,201812,3,2,9207,437 -976,FR,ME,201812,3,2,3534,270 -979,FR,ME,201812,4,1,7471,5 -979,FR,ME,201812,3,2,23833,455 -979,FR,ME,201812,4,2,66497,2 -979,FR,ME,201812,4,2,152,0 -015,FR,XS,201812,3,1,515338,159055 -015,FR,XS,201812,3,1,516206,164500 -015,FR,XS,201812,3,2,50957,14763 -015,FR,XS,201812,3,2,110013,39651 -015,FR,XS,201812,3,2,66221,20480 -020,FR,XS,201812,3,2,91190,243675 -020,FR,XS,201812,3,2,251677,483932 -035,FR,XS,201812,3,1,4228,2925 -039,FR,XS,201812,4,1,6921,15 -039,FR,XS,201812,3,2,35378,81600 -056,FR,XS,201812,3,1,22455,24300 -056,FR,XS,201812,3,1,163607,137474 -056,FR,XS,201812,3,2,8812,17083 -092,FR,XS,201812,3,2,215431,108462 -092,FR,XS,201812,3,2,382029,194795 -092,FR,XS,201812,3,2,255503,129820 -092,FR,XS,201812,3,2,238003,128862 -092,FR,XS,201812,3,2,34747,24980 -099,FR,XS,201812,3,1,43405,1935 -099,FR,XS,201812,3,1,2086,290 -099,FR,XS,201812,3,2,9705,24150 -099,FR,XS,201812,4,2,2,0 -099,FR,XS,201812,4,2,8538,60 -121,FR,XS,201812,3,1,8952,4752 -121,FR,XS,201812,3,2,6420,216 -121,FR,XS,201812,3,2,25302,1817 -121,FR,XS,201812,3,2,2670,643 -121,FR,XS,201812,3,2,178212,48377 -122,FR,XS,201812,3,1,7206,9046 -122,FR,XS,201812,3,2,6522,25000 -125,FR,XS,201812,3,1,477,96 -125,FR,XS,201812,3,2,8426,292 -125,FR,XS,201812,3,2,68885,24297 -128,FR,XS,201812,1,1,13882,17840 -128,FR,XS,201812,1,1,11780,20534 -128,FR,XS,201812,3,1,45027,82986 -128,FR,XS,201812,3,1,11330,20534 -128,FR,XS,201812,3,2,6654,3162 -128,FR,XS,201812,3,2,2092,5602 -128,FR,XS,201812,3,2,1576,704 -132,FR,XS,201812,3,1,66359,21765 -132,FR,XS,201812,3,2,10,9 -132,FR,XS,201812,3,2,10347,3866 -133,FR,XS,201812,3,1,56863,20975 -136,FR,XS,201812,3,1,42083,18865 -136,FR,XS,201812,3,2,1177,10 -136,FR,XS,201812,3,2,64535,57427 -136,FR,XS,201812,4,2,38,0 -139,FR,XS,201812,3,1,30966,42600 -139,FR,XS,201812,3,1,541482,441851 -139,FR,XS,201812,1,2,16922,558 -139,FR,XS,201812,3,2,69336,15587 -139,FR,XS,201812,3,2,57492,782 -139,FR,XS,201812,3,2,10834,6624 -139,FR,XS,201812,3,2,32477,19108 -139,FR,XS,201812,3,2,201030,63168 -139,FR,XS,201812,3,2,6646,1296 -139,FR,XS,201812,3,2,5371,600 -141,FR,XS,201812,3,2,49666,107171 -141,FR,XS,201812,3,2,87442,192740 -141,FR,XS,201812,3,2,18488,43028 -142,FR,XS,201812,3,1,90334,11965 -143,FR,XS,201812,3,2,3425,1296 -144,FR,XS,201812,3,2,299967,76739 -144,FR,XS,201812,3,2,48746,23961 -145,FR,XS,201812,3,2,12711,9840 -146,FR,XS,201812,3,2,55209,23100 -147,FR,XS,201812,3,2,24214,2400 -161,FR,XS,201812,3,2,2196,3000 -161,FR,XS,201812,3,2,6480,15000 -163,FR,XS,201812,3,1,94125,26677 -163,FR,XS,201812,3,2,22670,6485 -163,FR,XS,201812,3,2,24358,11700 -164,FR,XS,201812,1,1,92003,40000 -164,FR,XS,201812,1,1,50873,40960 -164,FR,XS,201812,3,1,32638,20016 -164,FR,XS,201812,3,1,22936,20592 -164,FR,XS,201812,3,1,34800,20000 -164,FR,XS,201812,3,1,1686451,919149 -164,FR,XS,201812,3,2,34706,14640 -164,FR,XS,201812,3,2,21622,5207 -165,FR,XS,201812,3,2,27548,24150 -166,FR,XS,201812,3,1,28445,10999 -166,FR,XS,201812,1,2,14950,9900 -166,FR,XS,201812,3,2,7835,635 -166,FR,XS,201812,3,2,91256,28820 -172,FR,XS,201812,3,1,27662,34500 -179,FR,XS,201812,3,1,161338,111831 -179,FR,XS,201812,3,2,123037,47084 -179,FR,XS,201812,3,2,227816,166106 -181,FR,XS,201812,3,2,181574,20149 -181,FR,XS,201812,3,2,234474,21124 -181,FR,XS,201812,3,2,570731,64780 -181,FR,XS,201812,3,2,156920,19258 -181,FR,XS,201812,3,2,2412808,272289 -182,FR,XS,201812,3,2,433,9 -341,FR,XS,201812,3,2,6914,1203 -341,FR,XS,201812,3,2,585,180 -341,FR,XS,201812,3,2,117340,65495 -341,FR,XS,201812,4,2,886,144 -349,FR,XS,201812,3,2,46,1 -522,FR,XS,201812,3,1,103923,163980 -522,FR,XS,201812,3,2,5667,255 -533,FR,XS,201812,3,1,2275,66 -536,FR,XS,201812,3,2,2476,1300 -537,FR,XS,201812,3,2,9370,1220 -542,FR,XS,201812,3,1,12559,18010 -542,FR,XS,201812,3,1,152630,215680 -542,FR,XS,201812,3,2,63613,62946 -551,FR,XS,201812,3,2,4135,388 -551,FR,XS,201812,3,2,3240,119 -551,FR,XS,201812,4,2,1530,0 -552,FR,XS,201812,3,2,85,1 -552,FR,XS,201812,3,2,22130,2220 -561,FR,XS,201812,3,1,387458,69191 -564,FR,XS,201812,3,2,9288,3046 -565,FR,XS,201812,3,2,4375,20 -568,FR,XS,201812,3,1,998,7 -568,FR,XS,201812,3,1,223789,79157 -568,FR,XS,201812,3,1,395824,80303 -568,FR,XS,201812,3,2,850,56 -568,FR,XS,201812,3,2,405,65 -568,FR,XS,201812,3,2,162608,71128 -568,FR,XS,201812,4,2,6162,45 -614,FR,XS,201812,3,2,11339,14850 -621,FR,XS,201812,3,2,73,8 -631,FR,XS,201812,3,2,1831,24000 -639,FR,XS,201812,3,1,7867,600 -639,FR,XS,201812,3,2,6593,22500 -639,FR,XS,201812,3,2,21371,18890 -691,FR,XS,201812,3,1,8500,1800 -691,FR,XS,201812,3,2,125,2 -691,FR,XS,201812,3,2,39466,66064 -692,FR,XS,201812,3,2,33307,4495 -723,FR,XS,201812,1,2,20602,22000 -723,FR,XS,201812,3,2,118432,120008 -819,FR,XS,201812,2,1,1669699,1850450 -819,FR,XS,201812,3,1,80,0 -819,FR,XS,201812,3,1,39466,2768 -819,FR,XS,201812,4,1,12,1 -819,FR,XS,201812,4,1,161,1 -819,FR,XS,201812,3,2,55847,8529 -819,FR,XS,201812,3,2,24000,20000 -819,FR,XS,201812,3,2,850,1000 -819,FR,XS,201812,3,2,44803,28604 -819,FR,XS,201812,4,2,42835,116 -819,FR,XS,201812,4,2,247,1 -891,FR,XS,201812,3,1,107,1 -891,FR,XS,201812,3,1,10506,1562 -891,FR,XS,201812,3,1,6414,2000 -891,FR,XS,201812,3,1,111606,16401 -891,FR,XS,201812,3,1,276283,45819 -891,FR,XS,201812,1,2,810,800 -891,FR,XS,201812,3,2,146588,43633 -891,FR,XS,201812,3,2,540,1 -891,FR,XS,201812,3,2,94656,9994 -891,FR,XS,201812,3,2,1585,254 -891,FR,XS,201812,3,2,3454,2000 -891,FR,XS,201812,3,2,711525,633853 -891,FR,XS,201812,3,2,2698,45 -891,FR,XS,201812,3,2,80413,120180 -891,FR,XS,201812,3,2,53569,46100 -891,FR,XS,201812,4,2,8,2 -892,FR,XS,201812,3,1,7278,21822 -892,FR,XS,201812,3,1,20278,30278 -892,FR,XS,201812,3,2,2083,220 -892,FR,XS,201812,3,2,1585,63 -892,FR,XS,201812,3,2,60320,9949 -893,FR,XS,201812,3,1,531,0 -893,FR,XS,201812,3,1,24925,4845 -893,FR,XS,201812,3,1,777226,81854 -893,FR,XS,201812,4,1,283,20 -893,FR,XS,201812,3,2,3113186,27153 -893,FR,XS,201812,3,2,680016,16987 -893,FR,XS,201812,3,2,13122,214 -893,FR,XS,201812,3,2,29823,113 -893,FR,XS,201812,3,2,274309,907 -893,FR,XS,201812,3,2,16261,6940 -893,FR,XS,201812,3,2,306658,1478 -893,FR,XS,201812,3,2,9098,734 -893,FR,XS,201812,3,2,1719753,214812 -893,FR,XS,201812,3,2,18958,23480 -893,FR,XS,201812,4,2,266541,347 -893,FR,XS,201812,4,2,20887,610 -893,FR,XS,201812,4,2,530,2 -893,FR,XS,201812,4,2,104,4 -893,FR,XS,201812,4,2,58283,610 -893,FR,XS,201812,4,2,28658,97 -893,FR,XS,201812,4,2,160580,1920 -894,FR,XS,201812,3,1,151250,13000 -895,FR,XS,201812,3,2,7232,8000 -896,FR,XS,201812,3,1,11193,723 -896,FR,XS,201812,3,1,668,45 -896,FR,XS,201812,3,2,283220,113664 -896,FR,XS,201812,3,2,53218,2490 -896,FR,XS,201812,3,2,2163,20 -896,FR,XS,201812,3,2,520,150 -896,FR,XS,201812,3,2,35179,10017 -896,FR,XS,201812,3,2,347386,152096 -896,FR,XS,201812,4,2,160981,1341 -896,FR,XS,201812,4,2,18609,300 -896,FR,XS,201812,4,2,11121,160 -896,FR,XS,201812,4,2,21913,75 -896,FR,XS,201812,4,2,125238,616 -896,FR,XS,201812,4,2,2480,190 -910,FR,XS,201812,3,1,36068,617 -910,FR,XS,201812,3,1,16712,5 -910,FR,XS,201812,3,1,280843,93959 -910,FR,XS,201812,3,1,92643,5406 -910,FR,XS,201812,3,1,3415238,889401 -910,FR,XS,201812,4,1,51008,170 -910,FR,XS,201812,9,1,42000,1043 -910,FR,XS,201812,1,2,188417,34710 -910,FR,XS,201812,1,2,61938,6653 -910,FR,XS,201812,3,2,396783,70391 -910,FR,XS,201812,3,2,4059,0 -910,FR,XS,201812,3,2,7868,2418 -910,FR,XS,201812,3,2,246076,61373 -910,FR,XS,201812,3,2,177353,20678 -910,FR,XS,201812,3,2,5179,0 -910,FR,XS,201812,3,2,841507,175010 -910,FR,XS,201812,4,2,332785,1957 -910,FR,XS,201812,4,2,4876,10 -910,FR,XS,201812,4,2,191280,415 -910,FR,XS,201812,4,2,16101,20 -910,FR,XS,201812,4,2,1437,250 -910,FR,XS,201812,9,2,1926209,708046 -920,FR,XS,201812,3,1,73494,44920 -920,FR,XS,201812,3,1,37047,20340 -920,FR,XS,201812,1,2,157775,15828 -920,FR,XS,201812,3,2,95666,85863 -920,FR,XS,201812,3,2,1164,26 -920,FR,XS,201812,3,2,177044,41304 -920,FR,XS,201812,3,2,241660,98857 -920,FR,XS,201812,3,2,97625,9258 -920,FR,XS,201812,4,2,2054,105 -920,FR,XS,201812,4,2,2137,350 -920,FR,XS,201812,9,2,13500,31470 -931,FR,XS,201812,0,1,358,1 -931,FR,XS,201812,3,1,783314,51336 -931,FR,XS,201812,3,1,9410,576 -931,FR,XS,201812,3,1,250,12 -931,FR,XS,201812,3,1,15836,1017 -931,FR,XS,201812,3,1,827943,126940 -931,FR,XS,201812,3,1,1325481,112031 -931,FR,XS,201812,4,1,176,0 -931,FR,XS,201812,4,1,9223,70 -931,FR,XS,201812,4,1,49539,138 -931,FR,XS,201812,4,1,48,1 -931,FR,XS,201812,0,2,25,1 -931,FR,XS,201812,1,2,5391,54 -931,FR,XS,201812,1,2,6599,603 -931,FR,XS,201812,3,2,493416,17871 -931,FR,XS,201812,3,2,7300,45 -931,FR,XS,201812,3,2,948,5 -931,FR,XS,201812,3,2,730280,148199 -931,FR,XS,201812,3,2,56835,1448 -931,FR,XS,201812,4,2,48399,118 -931,FR,XS,201812,4,2,2559,13 -931,FR,XS,201812,4,2,224,2 -931,FR,XS,201812,4,2,34116,32 -931,FR,XS,201812,4,2,1830,23 -931,FR,XS,201812,4,2,67626,5120 -931,FR,XS,201812,4,2,16328,268 -939,FR,XS,201812,0,1,7311,12 -939,FR,XS,201812,3,1,163110,8615 -939,FR,XS,201812,3,1,11915,32 -939,FR,XS,201812,3,1,16220,3000 -939,FR,XS,201812,3,1,9313,285 -939,FR,XS,201812,3,1,537371,30441 -939,FR,XS,201812,4,1,263,9 -939,FR,XS,201812,4,1,45636,252 -939,FR,XS,201812,3,2,632230,40050 -939,FR,XS,201812,3,2,1783,21 -939,FR,XS,201812,3,2,61984,5561 -939,FR,XS,201812,3,2,220,9 -939,FR,XS,201812,3,2,42571,709 -939,FR,XS,201812,3,2,6951,301 -939,FR,XS,201812,3,2,166775,21030 -939,FR,XS,201812,3,2,6778304,414632 -939,FR,XS,201812,3,2,19817,127 -939,FR,XS,201812,4,2,193489,899 -939,FR,XS,201812,4,2,55290,269 -939,FR,XS,201812,4,2,500,20 -939,FR,XS,201812,4,2,20697,17 -939,FR,XS,201812,4,2,322398,11410 -939,FR,XS,201812,4,2,21081,152 -939,FR,XS,201812,4,2,1630,12 -941,FR,XS,201812,3,1,123277,22660 -941,FR,XS,201812,3,1,578872,140525 -941,FR,XS,201812,3,1,4237,656 -941,FR,XS,201812,3,2,250,1100 -941,FR,XS,201812,3,2,74257,31598 -949,FR,XS,201812,3,1,34822,4580 -949,FR,XS,201812,3,1,148529,50978 -949,FR,XS,201812,3,1,10467,550 -949,FR,XS,201812,3,1,928000,249479 -949,FR,XS,201812,4,1,3774,47 -949,FR,XS,201812,4,1,6634,1 -949,FR,XS,201812,3,2,43816,5559 -949,FR,XS,201812,3,2,5031,0 -949,FR,XS,201812,3,2,40,0 -949,FR,XS,201812,3,2,27354,163 -949,FR,XS,201812,3,2,4059,15 -949,FR,XS,201812,3,2,1,25 -949,FR,XS,201812,3,2,349866,91224 -949,FR,XS,201812,4,2,11586,8 -949,FR,XS,201812,4,2,562,1 -949,FR,XS,201812,4,2,2009,1 -949,FR,XS,201812,4,2,24421,2560 -949,FR,XS,201812,4,2,22849,96 -949,FR,XS,201812,4,2,40596,103 -951,FR,XS,201812,3,1,74,18 -951,FR,XS,201812,3,1,290,80 -951,FR,XS,201812,3,1,6006,350 -951,FR,XS,201812,3,2,1851,118 -951,FR,XS,201812,3,2,30038,46000 -951,FR,XS,201812,3,2,10800,389 -952,FR,XS,201812,3,1,317,7 -952,FR,XS,201812,3,2,122451,75964 -952,FR,XS,201812,3,2,35764,55353 -952,FR,XS,201812,4,2,1776,4 -952,FR,XS,201812,4,2,547,6 -952,FR,XS,201812,4,2,2207,140 -961,FR,XS,201812,3,2,1430,70 -962,FR,XS,201812,0,1,15,2 -962,FR,XS,201812,3,1,9329,849 -962,FR,XS,201812,3,1,42240,7680 -962,FR,XS,201812,3,1,329435,40425 -962,FR,XS,201812,4,1,1742,54 -962,FR,XS,201812,4,1,336,10 -962,FR,XS,201812,3,2,154566,6657 -962,FR,XS,201812,3,2,756,166 -962,FR,XS,201812,3,2,3095,1337 -962,FR,XS,201812,3,2,514,38 -962,FR,XS,201812,3,2,20134,1430 -962,FR,XS,201812,3,2,474626,26125 -962,FR,XS,201812,4,2,9501,106 -962,FR,XS,201812,4,2,75,1 -962,FR,XS,201812,4,2,5545,850 -963,FR,XS,201812,3,1,22550,413 -963,FR,XS,201812,3,1,109182,696 -963,FR,XS,201812,3,1,12636,83 -963,FR,XS,201812,3,1,106807,696 -963,FR,XS,201812,3,1,27980,199 -963,FR,XS,201812,3,1,7122,51 -963,FR,XS,201812,3,1,10568,74 -963,FR,XS,201812,3,1,115,0 -963,FR,XS,201812,3,1,481146,14929 -963,FR,XS,201812,3,1,4650,200 -963,FR,XS,201812,4,1,183,0 -963,FR,XS,201812,1,2,19086,1093 -963,FR,XS,201812,3,2,30850,2200 -963,FR,XS,201812,3,2,1191,122 -963,FR,XS,201812,3,2,103419,6411 -963,FR,XS,201812,4,2,391,10 -963,FR,XS,201812,4,2,1256,6 -963,FR,XS,201812,4,2,11818,509 -971,FR,XS,201812,1,1,209,45 -971,FR,XS,201812,1,1,2290,316 -971,FR,XS,201812,1,1,28565,9494 -971,FR,XS,201812,1,1,29815,9612 -971,FR,XS,201812,3,1,301835,90531 -971,FR,XS,201812,3,1,860122,129627 -971,FR,XS,201812,3,1,190251,61604 -971,FR,XS,201812,3,1,146777,50410 -971,FR,XS,201812,3,1,73967,23470 -971,FR,XS,201812,3,1,44557,14152 -971,FR,XS,201812,3,1,350368,113399 -971,FR,XS,201812,3,1,3289123,813682 -971,FR,XS,201812,3,1,39167,9672 -971,FR,XS,201812,4,1,1289,5 -971,FR,XS,201812,1,2,7800,424 -971,FR,XS,201812,1,2,17953,2094 -971,FR,XS,201812,3,2,61224,39208 -971,FR,XS,201812,3,2,8650,200 -971,FR,XS,201812,3,2,618,47 -971,FR,XS,201812,3,2,8046,16590 -971,FR,XS,201812,3,2,647,65 -971,FR,XS,201812,3,2,7480,880 -971,FR,XS,201812,3,2,43966,90652 -971,FR,XS,201812,3,2,66787,3049 -971,FR,XS,201812,4,2,8477,20 -971,FR,XS,201812,4,2,485,0 -971,FR,XS,201812,4,2,12939,970 -972,FR,XS,201812,0,1,65,5 -972,FR,XS,201812,3,1,10947,4929 -972,FR,XS,201812,3,1,147472,67394 -972,FR,XS,201812,3,2,3563,4932 -972,FR,XS,201812,3,2,39300,27220 -972,FR,XS,201812,3,2,101933,42954 -972,FR,XS,201812,3,2,19903,20903 -972,FR,XS,201812,4,2,221,10 -973,FR,XS,201812,1,1,17720,13877 -973,FR,XS,201812,1,1,10847,6510 -973,FR,XS,201812,3,1,79049,35217 -973,FR,XS,201812,3,1,656,98 -973,FR,XS,201812,3,1,11647,5840 -973,FR,XS,201812,3,1,61469,29485 -973,FR,XS,201812,3,1,97619,44263 -973,FR,XS,201812,3,2,59448,5180 -973,FR,XS,201812,3,2,26386,22855 -973,FR,XS,201812,3,2,29253,23051 -973,FR,XS,201812,3,2,17471,4601 -973,FR,XS,201812,4,2,18,0 -973,FR,XS,201812,4,2,18,8 -973,FR,XS,201812,4,2,4,1 -973,FR,XS,201812,4,2,5000,30 -974,FR,XS,201812,0,1,462,9 -974,FR,XS,201812,3,1,683,24 -974,FR,XS,201812,3,1,304714,83882 -974,FR,XS,201812,4,1,32,4 -974,FR,XS,201812,4,1,145,35 -974,FR,XS,201812,3,2,2132,283 -974,FR,XS,201812,3,2,170,33 -974,FR,XS,201812,3,2,23250,31460 -974,FR,XS,201812,4,2,85,1 -974,FR,XS,201812,4,2,844,5 -974,FR,XS,201812,4,2,2355,2 -975,FR,XS,201812,1,1,18510,4120 -975,FR,XS,201812,1,1,27297,22531 -975,FR,XS,201812,3,1,370831,71711 -975,FR,XS,201812,3,1,42487,41325 -975,FR,XS,201812,3,1,18661,1920 -975,FR,XS,201812,3,1,747240,189974 -975,FR,XS,201812,3,2,13756,1026 -975,FR,XS,201812,3,2,37375,9334 -975,FR,XS,201812,4,2,3843,0 -975,FR,XS,201812,4,2,682,0 -976,FR,XS,201812,3,1,42345,5640 -976,FR,XS,201812,3,1,19440,6340 -976,FR,XS,201812,3,1,7334,170 -976,FR,XS,201812,3,1,6924,24000 -976,FR,XS,201812,3,1,679435,1168513 -976,FR,XS,201812,4,1,845,225 -976,FR,XS,201812,3,2,212016,349308 -976,FR,XS,201812,4,2,1173,80 -979,FR,XS,201812,0,1,439,10 -979,FR,XS,201812,1,1,45350,5356 -979,FR,XS,201812,1,1,2085,800 -979,FR,XS,201812,3,1,283931,46035 -979,FR,XS,201812,3,1,14956,1309 -979,FR,XS,201812,3,1,1158,12 -979,FR,XS,201812,3,1,25563,5867 -979,FR,XS,201812,3,1,1688,212 -979,FR,XS,201812,3,1,25428,3916 -979,FR,XS,201812,3,1,1584597,370551 -979,FR,XS,201812,3,1,20268,3961 -979,FR,XS,201812,3,1,28131,4794 -979,FR,XS,201812,4,1,31449,100 -979,FR,XS,201812,4,1,17252,48 -979,FR,XS,201812,1,2,44625,426 -979,FR,XS,201812,3,2,412370,18726 -979,FR,XS,201812,3,2,26370,393 -979,FR,XS,201812,3,2,18960,121 -979,FR,XS,201812,3,2,9168,90 -979,FR,XS,201812,3,2,33,10 -979,FR,XS,201812,3,2,631,0 -979,FR,XS,201812,3,2,5737,1451 -979,FR,XS,201812,3,2,71650,38329 -979,FR,XS,201812,3,2,25152,1214 -979,FR,XS,201812,3,2,7622,4758 -979,FR,XS,201812,3,2,2037771,217314 -979,FR,XS,201812,3,2,544,16 -979,FR,XS,201812,4,2,65904,2519 -979,FR,XS,201812,4,2,37580,96 -979,FR,XS,201812,4,2,2329,14 -979,FR,XS,201812,4,2,2575,30 -979,FR,XS,201812,4,2,17990,49 -979,FR,XS,201812,4,2,334,9 -979,FR,XS,201812,4,2,85815,2320 -979,FR,XS,201812,4,2,9475,47 -979,FR,XS,201812,4,2,12653,5 -999,FR,XS,201812,4,1,3895,0 -999,FR,XS,201812,3,2,68077,1280 -999,FR,XS,201812,3,2,43958,23000 -999,FR,XS,201812,3,2,8974,23400 -999,FR,XS,201812,3,2,971407,609791 -999,FR,XS,201812,4,2,656208,257 -999,FR,XS,201812,4,2,55,1 -001,FR,MA,201812,1,2,245300,8561 -001,FR,MA,201812,1,2,910750,290399 -001,FR,MA,201812,3,2,268650,95012 -001,FR,MA,201812,3,2,28394,441 -001,FR,MA,201812,3,2,907299,282621 -001,FR,MA,201812,4,2,21740,625 -011,FR,MA,201812,1,2,6507144,32000000 -011,FR,MA,201812,1,2,6781500,33000000 -011,FR,MA,201812,4,2,100,350 -014,FR,MA,201812,1,2,15397,55500 -015,FR,MA,201812,3,1,66460,17953 -015,FR,MA,201812,3,1,22979,16155 -015,FR,MA,201812,0,2,38,21 -015,FR,MA,201812,3,2,140310,42006 -015,FR,MA,201812,3,2,206568,71870 -015,FR,MA,201812,4,2,2408,570 -015,FR,MA,201812,4,2,120,45 -020,FR,MA,201812,1,2,56799,129225 -020,FR,MA,201812,1,2,63919,125100 -020,FR,MA,201812,1,2,39933,77350 -020,FR,MA,201812,1,2,207300,407000 -020,FR,MA,201812,1,2,55640,156000 -020,FR,MA,201812,1,2,69160,182000 -031,FR,MA,201812,1,1,123734,109440 -031,FR,MA,201812,1,1,56470,95550 -031,FR,MA,201812,1,1,57534,93460 -031,FR,MA,201812,1,1,27754,48100 -031,FR,MA,201812,1,1,14214,24050 -031,FR,MA,201812,3,1,57204,90150 -031,FR,MA,201812,3,1,3647919,5281955 -031,FR,MA,201812,3,1,14001,19872 -031,FR,MA,201812,3,1,4258992,6169456 -035,FR,MA,201812,1,1,7790,2760 -035,FR,MA,201812,3,1,1450836,369899 -035,FR,MA,201812,3,1,2681315,422065 -035,FR,MA,201812,1,2,138,21 -035,FR,MA,201812,3,2,2108,246 -039,FR,MA,201812,1,1,460593,343788 -039,FR,MA,201812,1,1,5115,2120 -039,FR,MA,201812,1,1,14399,18720 -039,FR,MA,201812,1,1,19334,15200 -039,FR,MA,201812,1,1,83470,82855 -039,FR,MA,201812,3,1,320526,277607 -039,FR,MA,201812,3,1,141265,60751 -039,FR,MA,201812,3,1,26032961,20710702 -039,FR,MA,201812,3,1,27643,23040 -039,FR,MA,201812,3,1,19135,9740 -039,FR,MA,201812,3,1,41334224,33967431 -039,FR,MA,201812,4,1,1224,946 -039,FR,MA,201812,4,1,44018,10273 -039,FR,MA,201812,1,2,241434,316087 -039,FR,MA,201812,1,2,66868,85250 -039,FR,MA,201812,1,2,6311,6750 -039,FR,MA,201812,3,2,154,153 -039,FR,MA,201812,3,2,53160,9756 -041,FR,MA,201812,1,1,28840,17971 -042,FR,MA,201812,1,1,30,7 -043,FR,MA,201812,1,1,600,1540 -043,FR,MA,201812,1,2,4704,5005 -043,FR,MA,201812,1,2,1588,1768 -043,FR,MA,201812,3,2,5030,552 -049,FR,MA,201812,1,2,1110,7668 -049,FR,MA,201812,3,2,3790,100 -049,FR,MA,201812,4,2,23,1 -055,FR,MA,201812,1,2,61872,61207 -056,FR,MA,201812,1,2,1102,235 -056,FR,MA,201812,1,2,11623,2800 -056,FR,MA,201812,1,2,64171,225850 -056,FR,MA,201812,1,2,102817,275000 -056,FR,MA,201812,1,2,129743,581160 -056,FR,MA,201812,3,2,31908,12432 -056,FR,MA,201812,3,2,104550,63232 -056,FR,MA,201812,4,2,15,0 -057,FR,MA,201812,1,1,2242,4800 -057,FR,MA,201812,1,1,4443,24960 -057,FR,MA,201812,1,1,2969,49920 -091,FR,MA,201812,1,2,45820,25316 -092,FR,MA,201812,4,1,24,1 -092,FR,MA,201812,1,2,15776,3298 -092,FR,MA,201812,1,2,21623,3603939 -092,FR,MA,201812,1,2,31737,3526340 -092,FR,MA,201812,1,2,37107,4123020 -092,FR,MA,201812,1,2,36001,4000060 -092,FR,MA,201812,1,2,92210,38400 -092,FR,MA,201812,3,2,2438,120 -092,FR,MA,201812,4,2,848,8 -099,FR,MA,201812,1,1,7461,6568 -099,FR,MA,201812,1,1,841,127 -099,FR,MA,201812,1,1,1572494,116348 -099,FR,MA,201812,1,1,24283,13469 -099,FR,MA,201812,1,1,248772,38833 -099,FR,MA,201812,1,1,122686,18560 -099,FR,MA,201812,3,1,664073,42548 -099,FR,MA,201812,3,1,997188,58547 -099,FR,MA,201812,3,1,1049258,239796 -099,FR,MA,201812,4,1,41044,25386 -099,FR,MA,201812,4,1,87175,66961 -099,FR,MA,201812,4,1,18,0 -099,FR,MA,201812,4,1,235240,104059 -099,FR,MA,201812,4,1,9711,5363 -099,FR,MA,201812,1,2,163058,7081 -099,FR,MA,201812,1,2,6942,800 -099,FR,MA,201812,1,2,764029,60217 -099,FR,MA,201812,1,2,386348,54467 -099,FR,MA,201812,1,2,2808,96 -099,FR,MA,201812,1,2,22611,43000 -099,FR,MA,201812,3,2,244240,17915 -099,FR,MA,201812,3,2,7108,22475 -099,FR,MA,201812,3,2,1153015,225173 -099,FR,MA,201812,4,2,751578,290 -099,FR,MA,201812,4,2,290316,3150 -099,FR,MA,201812,4,2,2500,20 -111,FR,MA,201812,1,2,2699,1840 -111,FR,MA,201812,3,2,10,4 -112,FR,MA,201812,1,2,34867,120000 -112,FR,MA,201812,1,2,11480,24840 -112,FR,MA,201812,1,2,10213,6354 -112,FR,MA,201812,1,2,7866,15675 -121,FR,MA,201812,1,1,58284,33131 -121,FR,MA,201812,1,1,23360,24000 -121,FR,MA,201812,4,1,1329,88 -121,FR,MA,201812,1,2,13760,7560 -121,FR,MA,201812,1,2,61150,18988 -121,FR,MA,201812,1,2,182005,23480 -121,FR,MA,201812,1,2,160094,5241 -121,FR,MA,201812,1,2,1936,401 -121,FR,MA,201812,1,2,5244,540 -121,FR,MA,201812,1,2,65971,25727 -121,FR,MA,201812,3,2,71283,6851 -121,FR,MA,201812,4,2,64253,94 -122,FR,MA,201812,1,2,40390,49681 -125,FR,MA,201812,1,2,1184,59 -125,FR,MA,201812,1,2,1540,804 -125,FR,MA,201812,1,2,1587,90 -125,FR,MA,201812,1,2,555125,22635 -125,FR,MA,201812,1,2,100745,35876 -125,FR,MA,201812,1,2,25714,9777 -125,FR,MA,201812,1,2,121138,76221 -125,FR,MA,201812,3,2,2900,330 -125,FR,MA,201812,3,2,75255,26623 -125,FR,MA,201812,3,2,85600,6615 -128,FR,MA,201812,1,1,20323,36277 -128,FR,MA,201812,1,1,128897,211320 -128,FR,MA,201812,1,1,18295,24948 -128,FR,MA,201812,1,2,2500,3456 -128,FR,MA,201812,1,2,21753,19032 -128,FR,MA,201812,1,2,17794,17771 -128,FR,MA,201812,1,2,4125,4852 -128,FR,MA,201812,1,2,13524,10395 -128,FR,MA,201812,3,2,77575,19313 -128,FR,MA,201812,3,2,24351,18671 -131,FR,MA,201812,1,1,1534,232 -131,FR,MA,201812,3,2,67855,4480 -132,FR,MA,201812,0,2,272,10 -132,FR,MA,201812,1,2,25077,4296 -132,FR,MA,201812,1,2,43271,2961 -132,FR,MA,201812,1,2,8056,524 -132,FR,MA,201812,1,2,206421,62952 -132,FR,MA,201812,1,2,41650,21600 -132,FR,MA,201812,1,2,11274,4950 -132,FR,MA,201812,1,2,25313,12200 -132,FR,MA,201812,1,2,93116,19253 -132,FR,MA,201812,3,2,19453,1307 -132,FR,MA,201812,3,2,2751,850 -132,FR,MA,201812,3,2,119645,7783 -132,FR,MA,201812,4,2,519,23 -132,FR,MA,201812,4,2,641,10 -133,FR,MA,201812,1,1,4729,643 -133,FR,MA,201812,1,1,240,4 -133,FR,MA,201812,1,1,900,447 -133,FR,MA,201812,1,1,318,33 -133,FR,MA,201812,1,1,252,42 -133,FR,MA,201812,1,1,14529,10000 -133,FR,MA,201812,1,1,1250,1359 -133,FR,MA,201812,1,1,507,795 -133,FR,MA,201812,1,1,12033,1500 -133,FR,MA,201812,3,1,4780,1004 -133,FR,MA,201812,3,1,240369,330911 -133,FR,MA,201812,3,1,1242,2400 -133,FR,MA,201812,3,1,634260,949294 -133,FR,MA,201812,4,1,2635,52 -133,FR,MA,201812,1,2,16041,1565 -133,FR,MA,201812,1,2,87559,18853 -133,FR,MA,201812,1,2,52166,11840 -133,FR,MA,201812,1,2,5184,168 -133,FR,MA,201812,3,2,244398,917 -134,FR,MA,201812,1,2,976463,166629 -135,FR,MA,201812,4,2,26834,528 -136,FR,MA,201812,1,1,6480,1500 -136,FR,MA,201812,1,2,23288,3602 -136,FR,MA,201812,1,2,1361,1600 -136,FR,MA,201812,1,2,102241,20989 -136,FR,MA,201812,1,2,22120,6000 -136,FR,MA,201812,1,2,26146,22950 -136,FR,MA,201812,3,2,592,26 -136,FR,MA,201812,3,2,1695,73 -136,FR,MA,201812,3,2,2728,996 -136,FR,MA,201812,4,2,1,2 -136,FR,MA,201812,4,2,774,4 -139,FR,MA,201812,1,1,9756,199 -139,FR,MA,201812,1,1,12004,286 -139,FR,MA,201812,1,1,69275,34759 -139,FR,MA,201812,1,1,2047,73 -139,FR,MA,201812,1,1,16269,395 -139,FR,MA,201812,1,1,914,618 -139,FR,MA,201812,3,1,158,8 -139,FR,MA,201812,4,1,8186,70 -139,FR,MA,201812,4,1,1886,40 -139,FR,MA,201812,0,2,359,0 -139,FR,MA,201812,1,2,215693,23304 -139,FR,MA,201812,1,2,204535,7127 -139,FR,MA,201812,1,2,5305,137 -139,FR,MA,201812,1,2,39252,3254 -139,FR,MA,201812,1,2,9285,189 -139,FR,MA,201812,1,2,203492,79797 -139,FR,MA,201812,1,2,24884,3176 -139,FR,MA,201812,1,2,483551,96856 -139,FR,MA,201812,1,2,8967,22050 -139,FR,MA,201812,3,2,279257,24902 -139,FR,MA,201812,3,2,181233,25716 -139,FR,MA,201812,3,2,253573,68303 -139,FR,MA,201812,3,2,80237,37868 -139,FR,MA,201812,3,2,80656,34051 -139,FR,MA,201812,4,2,483,48 -139,FR,MA,201812,4,2,6640,50 -141,FR,MA,201812,1,2,2162,562 -141,FR,MA,201812,4,2,27470,1041 -142,FR,MA,201812,1,1,53541,47568 -142,FR,MA,201812,1,1,46240,46752 -142,FR,MA,201812,1,1,136080,174000 -142,FR,MA,201812,3,1,11534,2460 -142,FR,MA,201812,3,1,33896,5786 -142,FR,MA,201812,4,1,13383,1033 -142,FR,MA,201812,1,2,5636,260 -142,FR,MA,201812,3,2,34646,1175 -142,FR,MA,201812,3,2,26327,1472 -142,FR,MA,201812,4,2,20433,471 -143,FR,MA,201812,1,2,7851,3866 -143,FR,MA,201812,3,2,403195,200235 -143,FR,MA,201812,3,2,4747,1760 -143,FR,MA,201812,3,2,313484,106940 -144,FR,MA,201812,0,2,45,2 -144,FR,MA,201812,1,2,186213,33269 -144,FR,MA,201812,1,2,8189,1182 -144,FR,MA,201812,1,2,335161,260750 -144,FR,MA,201812,1,2,87480,48000 -144,FR,MA,201812,1,2,60350,25000 -144,FR,MA,201812,1,2,174680,96000 -144,FR,MA,201812,3,2,669406,124386 -144,FR,MA,201812,3,2,171222,27651 -144,FR,MA,201812,3,2,995141,222806 -145,FR,MA,201812,3,2,1279,924 -145,FR,MA,201812,3,2,66214,24544 -146,FR,MA,201812,1,2,44833,10080 -146,FR,MA,201812,4,2,2535,250 -147,FR,MA,201812,0,2,80,3 -147,FR,MA,201812,1,2,86602,14919 -147,FR,MA,201812,1,2,2130,560 -147,FR,MA,201812,3,2,82163,17507 -147,FR,MA,201812,3,2,75482,22419 -147,FR,MA,201812,3,2,2951,276 -148,FR,MA,201812,1,1,122739,35268 -148,FR,MA,201812,1,1,178873,50862 -148,FR,MA,201812,1,1,1486853,467414 -148,FR,MA,201812,1,1,149738,41576 -148,FR,MA,201812,1,1,79670,15341 -148,FR,MA,201812,1,1,437729,111187 -148,FR,MA,201812,1,1,68632,14929 -148,FR,MA,201812,1,1,619312,149104 -148,FR,MA,201812,1,1,508548,134767 -148,FR,MA,201812,3,1,367366,59299 -148,FR,MA,201812,3,1,1582479,207990 -148,FR,MA,201812,1,2,12706,372 -148,FR,MA,201812,1,2,8533,1649 -148,FR,MA,201812,1,2,50454,12774 -148,FR,MA,201812,1,2,49973,20000 -148,FR,MA,201812,3,2,1041,22 -148,FR,MA,201812,3,2,7226,1024 -148,FR,MA,201812,3,2,2315,336 -148,FR,MA,201812,4,2,64988,21 -148,FR,MA,201812,4,2,461,11 -161,FR,MA,201812,1,1,300,300 -161,FR,MA,201812,1,2,19971,45180 -163,FR,MA,201812,0,1,753,30 -163,FR,MA,201812,1,1,544,600 -163,FR,MA,201812,1,1,32501,24492 -163,FR,MA,201812,1,1,21972,25736 -163,FR,MA,201812,1,1,23865,25480 -163,FR,MA,201812,1,1,62855,50623 -163,FR,MA,201812,1,1,950316,720742 -163,FR,MA,201812,4,1,7952,450 -163,FR,MA,201812,4,1,9944,1106 -163,FR,MA,201812,1,2,33301,14694 -163,FR,MA,201812,1,2,2050,482 -163,FR,MA,201812,1,2,95,120 -163,FR,MA,201812,1,2,7753,1990 -163,FR,MA,201812,1,2,146582,90764 -163,FR,MA,201812,1,2,13999,5545 -163,FR,MA,201812,1,2,61452,26735 -163,FR,MA,201812,1,2,72798,35129 -163,FR,MA,201812,1,2,58725,44976 -163,FR,MA,201812,1,2,157379,75313 -163,FR,MA,201812,1,2,57681,22307 -163,FR,MA,201812,1,2,13846,6653 -163,FR,MA,201812,3,2,16870,4627 -163,FR,MA,201812,3,2,11000,19245 -163,FR,MA,201812,3,2,57408,15741 -163,FR,MA,201812,3,2,10168,7486 -163,FR,MA,201812,4,2,9,5 -164,FR,MA,201812,1,1,33604,20318 -164,FR,MA,201812,1,1,277,300 -164,FR,MA,201812,1,1,55579,69664 -164,FR,MA,201812,1,1,64688,55042 -164,FR,MA,201812,1,1,27025,20168 -164,FR,MA,201812,1,1,192912,149850 -164,FR,MA,201812,1,1,73080,71484 -164,FR,MA,201812,1,1,625,752 -164,FR,MA,201812,3,1,59,8 -164,FR,MA,201812,3,1,51775,46790 -164,FR,MA,201812,3,1,292400,206759 -164,FR,MA,201812,3,1,16528,21763 -164,FR,MA,201812,1,2,83939,23457 -164,FR,MA,201812,1,2,22887,18700 -164,FR,MA,201812,1,2,48016,15113 -164,FR,MA,201812,1,2,34063,7978 -164,FR,MA,201812,1,2,8682,1108 -164,FR,MA,201812,1,2,8878,7046 -164,FR,MA,201812,1,2,32439,7700 -164,FR,MA,201812,3,2,21022,2906 -164,FR,MA,201812,3,2,1035,804 -164,FR,MA,201812,3,2,12126,2204 -164,FR,MA,201812,4,2,31,62 -165,FR,MA,201812,1,1,36073,25000 -165,FR,MA,201812,4,2,110,0 -166,FR,MA,201812,1,1,2664,1554 -166,FR,MA,201812,1,1,1103,630 -166,FR,MA,201812,1,1,3210,1080 -166,FR,MA,201812,1,1,77875,53481 -166,FR,MA,201812,1,1,19614,10164 -166,FR,MA,201812,1,1,31902,19362 -166,FR,MA,201812,1,1,362220,286135 -166,FR,MA,201812,1,1,52834,22668 -166,FR,MA,201812,1,1,22602,20240 -166,FR,MA,201812,1,1,23186,14693 -166,FR,MA,201812,1,1,49219,51484 -166,FR,MA,201812,1,1,814365,546726 -166,FR,MA,201812,1,1,17588,15500 -166,FR,MA,201812,1,1,28512,12672 -166,FR,MA,201812,1,1,391430,330357 -166,FR,MA,201812,1,1,156830,111056 -166,FR,MA,201812,1,1,314897,295033 -166,FR,MA,201812,1,1,18128,17550 -166,FR,MA,201812,3,1,215,45 -166,FR,MA,201812,3,1,118416,40718 -166,FR,MA,201812,3,1,211,40 -166,FR,MA,201812,3,1,895782,242759 -166,FR,MA,201812,3,1,25878,22522 -166,FR,MA,201812,1,2,564,98 -166,FR,MA,201812,1,2,38102,48465 -166,FR,MA,201812,1,2,5375,834 -166,FR,MA,201812,1,2,7892,6160 -166,FR,MA,201812,1,2,134999,103715 -166,FR,MA,201812,3,2,5393,7433 -166,FR,MA,201812,3,2,9300,3710 -172,FR,MA,201812,3,1,50,2 -172,FR,MA,201812,3,1,20285,2500 -172,FR,MA,201812,1,2,1123667,4950000 -179,FR,MA,201812,1,2,3230,335 -179,FR,MA,201812,1,2,24960,6419 -179,FR,MA,201812,1,2,545558,402808 -179,FR,MA,201812,1,2,183911,121234 -179,FR,MA,201812,1,2,27194,37559 -179,FR,MA,201812,1,2,168275,100000 -179,FR,MA,201812,1,2,224537,151657 -179,FR,MA,201812,1,2,54412,10772 -179,FR,MA,201812,1,2,35770,22000 -179,FR,MA,201812,3,2,2802,520 -179,FR,MA,201812,3,2,50660,25013 -179,FR,MA,201812,4,2,3081,147 -181,FR,MA,201812,1,1,240,200 -181,FR,MA,201812,1,2,44317,19500 -181,FR,MA,201812,4,2,1938,2 -182,FR,MA,201812,0,1,901,30 -182,FR,MA,201812,1,1,87426,4107 -182,FR,MA,201812,1,1,25570,9275 -182,FR,MA,201812,1,1,101320,3640 -182,FR,MA,201812,1,1,61117,9744 -182,FR,MA,201812,1,1,706530,217890 -182,FR,MA,201812,1,1,489764,30400 -182,FR,MA,201812,3,1,210743,9086 -182,FR,MA,201812,3,1,146051,5460 -182,FR,MA,201812,3,1,166249,12864 -182,FR,MA,201812,4,1,2829,94 -182,FR,MA,201812,4,1,3379,195 -182,FR,MA,201812,4,1,114,9 -182,FR,MA,201812,1,2,20320,3550 -182,FR,MA,201812,1,2,1714,400 -182,FR,MA,201812,1,2,16651,1732 -182,FR,MA,201812,1,2,22960,15573 -182,FR,MA,201812,1,2,237,65 -182,FR,MA,201812,3,2,28950,4177 -182,FR,MA,201812,3,2,300,22 -224,FR,MA,201812,4,1,278,122 -321,FR,MA,201812,1,2,135439,115580 -321,FR,MA,201812,4,2,52,8 -323,FR,MA,201812,1,2,12574,13914 -323,FR,MA,201812,3,2,27629,4293 -325,FR,MA,201812,4,2,5036,20 -327,FR,MA,201812,3,2,645,14 -330,FR,MA,201812,1,2,1711653,3945100 -330,FR,MA,201812,1,2,34856,7756 -341,FR,MA,201812,3,1,174,5 -341,FR,MA,201812,4,1,81,0 -341,FR,MA,201812,4,1,272,240 -341,FR,MA,201812,1,2,148662,48560 -341,FR,MA,201812,1,2,20230,3984 -341,FR,MA,201812,1,2,103,32 -341,FR,MA,201812,1,2,25035,4832 -341,FR,MA,201812,1,2,302352,121585 -341,FR,MA,201812,1,2,57930,15888 -341,FR,MA,201812,1,2,163163,68053 -341,FR,MA,201812,1,2,57168,18500 -341,FR,MA,201812,1,2,59035,31220 -341,FR,MA,201812,1,2,121094,69654 -341,FR,MA,201812,3,2,362335,132422 -341,FR,MA,201812,3,2,2112,735 -341,FR,MA,201812,3,2,96623,24615 -341,FR,MA,201812,4,2,1781,37 -341,FR,MA,201812,4,2,5804,609 -341,FR,MA,201812,4,2,1841,480 -343,FR,MA,201812,1,2,19087,11000 -343,FR,MA,201812,1,2,26766,10800 -349,FR,MA,201812,1,2,230,22 -349,FR,MA,201812,1,2,28,2 -349,FR,MA,201812,3,2,8348,1878 -349,FR,MA,201812,3,2,5745,778 -451,FR,MA,201812,1,1,617561,398942 -451,FR,MA,201812,1,1,385810,155270 -451,FR,MA,201812,1,1,100434,22892 -459,FR,MA,201812,1,1,49448,22000 -459,FR,MA,201812,1,2,9932,804 -459,FR,MA,201812,1,2,10062,701 -459,FR,MA,201812,1,2,6163,500 -462,FR,MA,201812,1,1,647,650 -462,FR,MA,201812,1,1,95100,63400 -462,FR,MA,201812,1,1,67,1274 -462,FR,MA,201812,1,2,359298,1454150 -462,FR,MA,201812,4,2,500,131 -512,FR,MA,201812,3,2,1968,250 -513,FR,MA,201812,1,2,37371,20530 -522,FR,MA,201812,1,2,139775,251600 -522,FR,MA,201812,1,2,3744,4451 -532,FR,MA,201812,1,2,15147,5904 -532,FR,MA,201812,1,2,26920,23350 -532,FR,MA,201812,3,2,66731,16750 -533,FR,MA,201812,3,1,1424,29 -533,FR,MA,201812,1,2,37508,6319 -533,FR,MA,201812,3,2,31477,24094 -533,FR,MA,201812,3,2,13,10 -535,FR,MA,201812,1,2,550,30 -535,FR,MA,201812,3,2,116,2 -536,FR,MA,201812,1,1,15062,16506 -536,FR,MA,201812,1,2,3680,899 -536,FR,MA,201812,3,2,494,10 -536,FR,MA,201812,3,2,31384,24142 -536,FR,MA,201812,5,2,1196,6 -542,FR,MA,201812,1,2,291182,401883 -542,FR,MA,201812,1,2,11926,16940 -542,FR,MA,201812,1,2,11933,16950 -542,FR,MA,201812,1,2,11891,16890 -542,FR,MA,201812,1,2,11912,16920 -542,FR,MA,201812,3,2,60065,57563 -542,FR,MA,201812,3,2,23100,7600 -542,FR,MA,201812,4,2,2167,10 -543,FR,MA,201812,3,2,17149,3004 -543,FR,MA,201812,3,2,5301,1959 -551,FR,MA,201812,3,1,878,50 -551,FR,MA,201812,1,2,165032,13414 -551,FR,MA,201812,1,2,25372,9290 -551,FR,MA,201812,1,2,28054,2576 -551,FR,MA,201812,1,2,27020,706 -551,FR,MA,201812,1,2,492,8 -551,FR,MA,201812,3,2,352413,18213 -551,FR,MA,201812,3,2,2926,160 -551,FR,MA,201812,3,2,39300,11464 -551,FR,MA,201812,3,2,155017,36941 -551,FR,MA,201812,4,2,15250,14 -551,FR,MA,201812,4,2,5279,1 -552,FR,MA,201812,1,1,1086,66 -552,FR,MA,201812,1,1,10,12 -552,FR,MA,201812,4,1,114,0 -552,FR,MA,201812,1,2,34459,1851 -552,FR,MA,201812,1,2,3900,94 -552,FR,MA,201812,1,2,6190,258 -552,FR,MA,201812,1,2,156,3 -552,FR,MA,201812,1,2,14774,7403 -552,FR,MA,201812,3,2,21162,3539 -552,FR,MA,201812,4,2,1866,4 -552,FR,MA,201812,4,2,1320,130 -561,FR,MA,201812,3,1,55225,3370 -561,FR,MA,201812,1,2,1101,1104 -561,FR,MA,201812,3,2,35527,2348 -561,FR,MA,201812,4,2,4620,31 -562,FR,MA,201812,1,2,4100,1000 -562,FR,MA,201812,3,2,14741,2142 -565,FR,MA,201812,1,1,385927,3450 -565,FR,MA,201812,3,1,1212109,2387 -565,FR,MA,201812,3,1,42254,369 -565,FR,MA,201812,4,1,67,0 -565,FR,MA,201812,4,1,6255,11 -565,FR,MA,201812,4,1,763,0 -565,FR,MA,201812,1,2,110300,2729 -565,FR,MA,201812,1,2,3972,205 -565,FR,MA,201812,1,2,8900,1000 -565,FR,MA,201812,3,2,204474,618 -565,FR,MA,201812,4,2,4520,12 -565,FR,MA,201812,4,2,6178,30 -568,FR,MA,201812,1,1,918023,273741 -568,FR,MA,201812,3,1,12505,83 -568,FR,MA,201812,3,1,622509,208830 -568,FR,MA,201812,3,1,23363,4764 -568,FR,MA,201812,4,1,466,0 -568,FR,MA,201812,4,1,4642,9 -568,FR,MA,201812,4,1,46,0 -568,FR,MA,201812,1,2,828811,131262 -568,FR,MA,201812,1,2,24915,1719 -568,FR,MA,201812,1,2,19202,2831 -568,FR,MA,201812,1,2,6077,806 -568,FR,MA,201812,1,2,157775,12582 -568,FR,MA,201812,1,2,23875,4061 -568,FR,MA,201812,1,2,143297,30649 -568,FR,MA,201812,1,2,355432,56545 -568,FR,MA,201812,3,2,861042,106157 -568,FR,MA,201812,3,2,719,50 -568,FR,MA,201812,3,2,338384,49060 -568,FR,MA,201812,4,2,20958,55 -611,FR,MA,201812,1,1,248,60 -611,FR,MA,201812,1,2,2280,565 -611,FR,MA,201812,3,2,12550,9295 -613,FR,MA,201812,1,2,15,1 -614,FR,MA,201812,1,1,1575,1000 -614,FR,MA,201812,1,1,1357,1000 -614,FR,MA,201812,1,1,3161,1555 -614,FR,MA,201812,1,1,6742,56000 -614,FR,MA,201812,3,1,16489,5342 -614,FR,MA,201812,1,2,6240,460 -614,FR,MA,201812,1,2,781,4505 -614,FR,MA,201812,1,2,15880,20000 -614,FR,MA,201812,3,2,3200,210 -621,FR,MA,201812,1,2,2981,4326 -621,FR,MA,201812,1,2,15342,73000 -621,FR,MA,201812,3,2,23980,147023 -621,FR,MA,201812,3,2,235,100 -631,FR,MA,201812,3,2,3157,22500 -632,FR,MA,201812,1,2,32101,272834 -632,FR,MA,201812,1,2,10437,120000 -639,FR,MA,201812,1,1,1584,792 -639,FR,MA,201812,4,1,6,250 -639,FR,MA,201812,3,2,1370,1058 -639,FR,MA,201812,3,2,2574,160 -639,FR,MA,201812,4,2,1013,10 -691,FR,MA,201812,1,1,25506,18225 -691,FR,MA,201812,1,1,763,800 -691,FR,MA,201812,1,1,1721,2500 -691,FR,MA,201812,1,1,2266,300 -691,FR,MA,201812,1,1,85911,139519 -691,FR,MA,201812,1,1,44910,76780 -691,FR,MA,201812,1,1,32540,43200 -691,FR,MA,201812,1,1,12424,25310 -691,FR,MA,201812,1,1,52459,94252 -691,FR,MA,201812,3,1,14438,11400 -691,FR,MA,201812,3,1,14759,25427 -691,FR,MA,201812,1,2,27083,9309 -691,FR,MA,201812,1,2,30717,22806 -691,FR,MA,201812,1,2,711222,1361068 -691,FR,MA,201812,1,2,82655,102067 -691,FR,MA,201812,1,2,71862,232204 -691,FR,MA,201812,1,2,33860,67224 -691,FR,MA,201812,3,2,85625,1072 -691,FR,MA,201812,3,2,550773,8551 -691,FR,MA,201812,4,2,131,202 -691,FR,MA,201812,4,2,122,304 -692,FR,MA,201812,1,1,28285,30679 -692,FR,MA,201812,1,1,688,399 -692,FR,MA,201812,3,1,42778,15532 -692,FR,MA,201812,1,2,78558,16108 -692,FR,MA,201812,1,2,8900,499 -692,FR,MA,201812,1,2,10134,25200 -692,FR,MA,201812,1,2,60480,68400 -692,FR,MA,201812,1,2,41218,76800 -692,FR,MA,201812,3,2,35,1 -692,FR,MA,201812,3,2,28578,49600 -692,FR,MA,201812,3,2,10246,1366 -712,FR,MA,201812,1,1,370251,4943220 -712,FR,MA,201812,1,1,274402,3760000 -722,FR,MA,201812,1,1,3521686,8466520 -722,FR,MA,201812,1,1,4465769,11398200 -722,FR,MA,201812,1,1,2141019,5177740 -723,FR,MA,201812,1,2,492,80 -723,FR,MA,201812,1,2,63439,40400 -723,FR,MA,201812,1,2,5917,8000 -723,FR,MA,201812,1,2,5388,3480 -724,FR,MA,201812,1,2,1257,50 -724,FR,MA,201812,1,2,43,6 -724,FR,MA,201812,4,2,23,50 -729,FR,MA,201812,1,2,2554,1452 -811,FR,MA,201812,3,2,3139,6078 -813,FR,MA,201812,1,2,117,11 -819,FR,MA,201812,1,1,1314050,3299398 -819,FR,MA,201812,1,1,1507135,3671243 -819,FR,MA,201812,1,1,40825,20000 -819,FR,MA,201812,4,1,12,1 -819,FR,MA,201812,0,2,119,1 -819,FR,MA,201812,1,2,620607,19816 -819,FR,MA,201812,1,2,2310060,8824 -819,FR,MA,201812,1,2,8191,915 -819,FR,MA,201812,1,2,69922,34803 -819,FR,MA,201812,1,2,21230,283 -819,FR,MA,201812,1,2,117931,99691 -819,FR,MA,201812,1,2,21917,20680 -819,FR,MA,201812,1,2,30203,7575 -819,FR,MA,201812,1,2,11060,114000 -819,FR,MA,201812,1,2,1892,22800 -819,FR,MA,201812,1,2,13715,2942 -819,FR,MA,201812,1,2,208066,252849 -819,FR,MA,201812,1,2,4526,2850 -819,FR,MA,201812,3,2,170375,26223 -819,FR,MA,201812,3,2,876092,962 -819,FR,MA,201812,3,2,62185,2022 -819,FR,MA,201812,4,2,223647,568 -819,FR,MA,201812,4,2,6687,82 -819,FR,MA,201812,4,2,205271,206 -819,FR,MA,201812,4,2,6262,40 -819,FR,MA,201812,4,2,1249,2 -820,FR,MA,201812,1,2,24,4 -820,FR,MA,201812,1,2,40500,120000 -841,FR,MA,201812,1,2,860,420 -842,FR,MA,201812,1,2,997,14660 -891,FR,MA,201812,1,1,64834,10490 -891,FR,MA,201812,1,1,560,64 -891,FR,MA,201812,1,1,176445,90100 -891,FR,MA,201812,1,1,63650,8550 -891,FR,MA,201812,1,1,38673,16108 -891,FR,MA,201812,3,1,28859,4438 -891,FR,MA,201812,3,1,3378,456 -891,FR,MA,201812,1,2,856143,158678 -891,FR,MA,201812,1,2,18207,7863 -891,FR,MA,201812,1,2,56332,8098 -891,FR,MA,201812,1,2,17970,23538 -891,FR,MA,201812,1,2,33256,10150 -891,FR,MA,201812,1,2,225403,43839 -891,FR,MA,201812,1,2,7507,1029 -891,FR,MA,201812,1,2,128810,2315 -891,FR,MA,201812,1,2,1091678,569496 -891,FR,MA,201812,1,2,57886,44000 -891,FR,MA,201812,1,2,54878,40818 -891,FR,MA,201812,1,2,31588,47522 -891,FR,MA,201812,1,2,23000,22000 -891,FR,MA,201812,1,2,134028,44671 -891,FR,MA,201812,1,2,41173,5379 -891,FR,MA,201812,1,2,103669,32634 -891,FR,MA,201812,1,2,133757,32666 -891,FR,MA,201812,1,2,92242,59583 -891,FR,MA,201812,1,2,22253,2750 -891,FR,MA,201812,3,2,1859928,452972 -891,FR,MA,201812,3,2,83073,12256 -891,FR,MA,201812,3,2,10500,3000 -891,FR,MA,201812,3,2,718783,100090 -891,FR,MA,201812,3,2,48968,16935 -891,FR,MA,201812,4,2,9474,486 -891,FR,MA,201812,4,2,173,0 -891,FR,MA,201812,4,2,10496,292 -891,FR,MA,201812,4,2,81617,690 -891,FR,MA,201812,4,2,2090,30 -892,FR,MA,201812,1,1,7138,1244 -892,FR,MA,201812,1,1,34889,1435 -892,FR,MA,201812,3,1,3,1 -892,FR,MA,201812,3,1,92,25 -892,FR,MA,201812,1,2,259416,94330 -892,FR,MA,201812,1,2,29673,583 -892,FR,MA,201812,1,2,12928,1991 -892,FR,MA,201812,1,2,1878,340 -892,FR,MA,201812,1,2,14811,1134 -892,FR,MA,201812,1,2,43512,9221 -892,FR,MA,201812,1,2,671808,225227 -892,FR,MA,201812,1,2,108254,18140 -892,FR,MA,201812,1,2,29593,21500 -892,FR,MA,201812,1,2,75870,120656 -892,FR,MA,201812,1,2,23766,6325 -892,FR,MA,201812,3,2,353664,60675 -892,FR,MA,201812,3,2,150,10 -892,FR,MA,201812,3,2,115,4 -892,FR,MA,201812,3,2,63821,9147 -892,FR,MA,201812,4,2,11336,272 -892,FR,MA,201812,4,2,29801,299 -892,FR,MA,201812,4,2,10832,1460 -893,FR,MA,201812,0,1,2169,60 -893,FR,MA,201812,1,1,54710,12438 -893,FR,MA,201812,1,1,1556,1000 -893,FR,MA,201812,1,1,79511,13637 -893,FR,MA,201812,1,1,155690,15031 -893,FR,MA,201812,1,1,302,105 -893,FR,MA,201812,1,1,34213,10732 -893,FR,MA,201812,1,1,21750,10702 -893,FR,MA,201812,3,1,335494,11091 -893,FR,MA,201812,3,1,13064,242 -893,FR,MA,201812,3,1,477037,29587 -893,FR,MA,201812,4,1,8998,715 -893,FR,MA,201812,4,1,3954,227 -893,FR,MA,201812,4,1,8922,247 -893,FR,MA,201812,4,1,71276,578 -893,FR,MA,201812,4,1,7638,123 -893,FR,MA,201812,0,2,6613,25 -893,FR,MA,201812,1,2,5506046,245715 -893,FR,MA,201812,1,2,1339739,61120 -893,FR,MA,201812,1,2,22487,1727 -893,FR,MA,201812,1,2,9023,4400 -893,FR,MA,201812,1,2,614636,51462 -893,FR,MA,201812,1,2,43758,9039 -893,FR,MA,201812,1,2,972,636 -893,FR,MA,201812,1,2,446025,135766 -893,FR,MA,201812,1,2,2340,1200 -893,FR,MA,201812,1,2,456462,7743 -893,FR,MA,201812,1,2,112933,2752 -893,FR,MA,201812,1,2,74424,13939 -893,FR,MA,201812,1,2,55171,22048 -893,FR,MA,201812,1,2,85506,3990 -893,FR,MA,201812,1,2,408661,79471 -893,FR,MA,201812,1,2,25298,11781 -893,FR,MA,201812,1,2,29199,28358 -893,FR,MA,201812,1,2,175915,7204 -893,FR,MA,201812,3,2,6378023,184895 -893,FR,MA,201812,3,2,472569,67930 -893,FR,MA,201812,3,2,8100,170 -893,FR,MA,201812,3,2,58428,739 -893,FR,MA,201812,3,2,944139,24127 -893,FR,MA,201812,3,2,7949,4385 -893,FR,MA,201812,4,2,1944743,11798 -893,FR,MA,201812,4,2,41557,31 -893,FR,MA,201812,4,2,3802,97 -893,FR,MA,201812,4,2,1800,1 -893,FR,MA,201812,4,2,7290,237 -893,FR,MA,201812,4,2,63852,2799 -893,FR,MA,201812,4,2,580956,1786 -893,FR,MA,201812,4,2,12335,172 -893,FR,MA,201812,4,2,70471,1047 -893,FR,MA,201812,4,2,11043,90 -894,FR,MA,201812,4,1,6140,12 -894,FR,MA,201812,1,2,321420,2922 -895,FR,MA,201812,1,2,1197,2000 -895,FR,MA,201812,3,2,2647,300 -896,FR,MA,201812,1,1,13,5 -896,FR,MA,201812,1,1,10684,50000 -896,FR,MA,201812,3,1,1205,146 -896,FR,MA,201812,3,1,5,1 -896,FR,MA,201812,4,1,78,3 -896,FR,MA,201812,4,1,181,0 -896,FR,MA,201812,4,1,181,9 -896,FR,MA,201812,4,1,7702,12 -896,FR,MA,201812,4,1,96,1 -896,FR,MA,201812,0,2,4157,89 -896,FR,MA,201812,1,2,1184176,174149 -896,FR,MA,201812,1,2,2121,376 -896,FR,MA,201812,1,2,88745,16502 -896,FR,MA,201812,1,2,6657,141 -896,FR,MA,201812,1,2,35060,4160 -896,FR,MA,201812,1,2,8600,4150 -896,FR,MA,201812,1,2,9685,90 -896,FR,MA,201812,1,2,2217,1040 -896,FR,MA,201812,1,2,569045,18570 -896,FR,MA,201812,1,2,58624,8863 -896,FR,MA,201812,1,2,14105,6420 -896,FR,MA,201812,1,2,53799,4720 -896,FR,MA,201812,1,2,1376161,514793 -896,FR,MA,201812,1,2,20902,10700 -896,FR,MA,201812,1,2,67278,34227 -896,FR,MA,201812,1,2,382484,292750 -896,FR,MA,201812,1,2,472531,178464 -896,FR,MA,201812,1,2,441932,259702 -896,FR,MA,201812,1,2,235567,66500 -896,FR,MA,201812,1,2,35565,20000 -896,FR,MA,201812,1,2,68110,59780 -896,FR,MA,201812,1,2,328546,131320 -896,FR,MA,201812,3,2,550553,99202 -896,FR,MA,201812,3,2,9722,840 -896,FR,MA,201812,3,2,523871,98748 -896,FR,MA,201812,3,2,25852,19980 -896,FR,MA,201812,3,2,85210,225000 -896,FR,MA,201812,4,2,195470,5371 -896,FR,MA,201812,4,2,3333,30 -896,FR,MA,201812,4,2,2795,420 -896,FR,MA,201812,4,2,196553,1893 -896,FR,MA,201812,4,2,76088,430 -896,FR,MA,201812,4,2,1,46 -896,FR,MA,201812,4,2,12523,30 -896,FR,MA,201812,4,2,28386,2060 -896,FR,MA,201812,4,2,4020,68 -910,FR,MA,201812,0,1,4084939,563035 -910,FR,MA,201812,1,1,3691216,67287 -910,FR,MA,201812,1,1,1528190,40774 -910,FR,MA,201812,1,1,123833991,17258142 -910,FR,MA,201812,1,1,95115,4143 -910,FR,MA,201812,1,1,31612,4240 -910,FR,MA,201812,1,1,95381,11898 -910,FR,MA,201812,1,1,7674,1772 -910,FR,MA,201812,1,1,239451,48898 -910,FR,MA,201812,3,1,11957383,98992 -910,FR,MA,201812,3,1,1701740,83722 -910,FR,MA,201812,3,1,1208,144 -910,FR,MA,201812,3,1,8289735,91502 -910,FR,MA,201812,4,1,434616,2049 -910,FR,MA,201812,4,1,293050,537 -910,FR,MA,201812,4,1,126916,850 -910,FR,MA,201812,4,1,5093775,8239 -910,FR,MA,201812,4,1,987138,1237 -910,FR,MA,201812,0,2,760,16 -910,FR,MA,201812,1,2,6088571,421737 -910,FR,MA,201812,1,2,3409042,68773 -910,FR,MA,201812,1,2,212277,99572 -910,FR,MA,201812,1,2,3472709,427337 -910,FR,MA,201812,1,2,533506,24794 -910,FR,MA,201812,1,2,28531,2922 -910,FR,MA,201812,1,2,132792,17963 -910,FR,MA,201812,1,2,14000,1548 -910,FR,MA,201812,1,2,16471,681 -910,FR,MA,201812,1,2,3225,820 -910,FR,MA,201812,1,2,3289123,458968 -910,FR,MA,201812,1,2,5225,22500 -910,FR,MA,201812,1,2,10000,52000 -910,FR,MA,201812,1,2,255118,89018 -910,FR,MA,201812,1,2,123285,20032 -910,FR,MA,201812,2,2,2656707,404130 -910,FR,MA,201812,3,2,8301592,253033 -910,FR,MA,201812,3,2,859,27 -910,FR,MA,201812,3,2,493116,59096 -910,FR,MA,201812,3,2,157569,16547 -910,FR,MA,201812,3,2,131355,16141 -910,FR,MA,201812,3,2,12000,50 -910,FR,MA,201812,3,2,33102,4200 -910,FR,MA,201812,3,2,57311,8720 -910,FR,MA,201812,3,2,372141,56600 -910,FR,MA,201812,3,2,3208242,42826 -910,FR,MA,201812,4,2,1411684,3976 -910,FR,MA,201812,4,2,135151,371 -910,FR,MA,201812,4,2,4260,16 -910,FR,MA,201812,4,2,108468,68 -910,FR,MA,201812,4,2,3699,120 -910,FR,MA,201812,4,2,149742,2704 -910,FR,MA,201812,4,2,2927,16 -910,FR,MA,201812,4,2,54343,50 -910,FR,MA,201812,4,2,4510,30 -910,FR,MA,201812,4,2,9936,41 -910,FR,MA,201812,4,2,466683,13480 -910,FR,MA,201812,4,2,77661,98 -910,FR,MA,201812,4,2,85434,153 -910,FR,MA,201812,9,2,18145482,20507 -920,FR,MA,201812,3,1,12795,1717 -920,FR,MA,201812,1,2,80454,6885 -920,FR,MA,201812,1,2,98450,78128 -920,FR,MA,201812,1,2,23400,700 -920,FR,MA,201812,1,2,28545,1398 -920,FR,MA,201812,1,2,594218,79670 -920,FR,MA,201812,1,2,36090,1716 -920,FR,MA,201812,1,2,46538,7950 -920,FR,MA,201812,1,2,130396,12384 -920,FR,MA,201812,3,2,131583,7236 -920,FR,MA,201812,3,2,150,4000 -920,FR,MA,201812,3,2,52818,7378 -920,FR,MA,201812,4,2,2888,2 -931,FR,MA,201812,0,1,863,1 -931,FR,MA,201812,1,1,13225632,516470 -931,FR,MA,201812,1,1,142366,8122 -931,FR,MA,201812,1,1,1382741,41227 -931,FR,MA,201812,1,1,652678,37593 -931,FR,MA,201812,1,1,30889,17877 -931,FR,MA,201812,1,1,274269,85277 -931,FR,MA,201812,1,1,116,4 -931,FR,MA,201812,3,1,17784806,244339 -931,FR,MA,201812,3,1,12848496,814843 -931,FR,MA,201812,3,1,100,22 -931,FR,MA,201812,3,1,176,1 -931,FR,MA,201812,3,1,18302742,302762 -931,FR,MA,201812,3,1,763104,3906 -931,FR,MA,201812,4,1,189431,2480 -931,FR,MA,201812,4,1,339547,2787 -931,FR,MA,201812,4,1,7619,219 -931,FR,MA,201812,4,1,331,13 -931,FR,MA,201812,4,1,3397799,14201 -931,FR,MA,201812,4,1,49728,432 -931,FR,MA,201812,0,2,27942,130 -931,FR,MA,201812,1,2,13268168,325488 -931,FR,MA,201812,1,2,19002,357 -931,FR,MA,201812,1,2,8320,760 -931,FR,MA,201812,1,2,100824,728 -931,FR,MA,201812,1,2,1033450,76626 -931,FR,MA,201812,1,2,88644,9608 -931,FR,MA,201812,1,2,773589,51498 -931,FR,MA,201812,1,2,10540,224 -931,FR,MA,201812,1,2,21421,69 -931,FR,MA,201812,1,2,48612,2638 -931,FR,MA,201812,1,2,88871,3087 -931,FR,MA,201812,1,2,1707676,243505 -931,FR,MA,201812,1,2,31637,2167 -931,FR,MA,201812,1,2,35026,696 -931,FR,MA,201812,1,2,69800,5810 -931,FR,MA,201812,1,2,109131,47997 -931,FR,MA,201812,1,2,26764,2781 -931,FR,MA,201812,1,2,70216,3210 -931,FR,MA,201812,1,2,102413,12692 -931,FR,MA,201812,1,2,529444,103007 -931,FR,MA,201812,1,2,551868,15984 -931,FR,MA,201812,1,2,60300,1775 -931,FR,MA,201812,1,2,113250,3301 -931,FR,MA,201812,3,2,27974396,645060 -931,FR,MA,201812,3,2,815744,53200 -931,FR,MA,201812,3,2,207790,13343 -931,FR,MA,201812,3,2,4140,3 -931,FR,MA,201812,3,2,20200,80 -931,FR,MA,201812,3,2,2601035,121670 -931,FR,MA,201812,3,2,3000,40 -931,FR,MA,201812,3,2,34341,1047 -931,FR,MA,201812,4,2,4124975,7766 -931,FR,MA,201812,4,2,661518,2082 -931,FR,MA,201812,4,2,13483,8 -931,FR,MA,201812,4,2,16071,170 -931,FR,MA,201812,4,2,9374,2 -931,FR,MA,201812,4,2,63700,120 -931,FR,MA,201812,4,2,241570,1090 -931,FR,MA,201812,4,2,1363982,2068 -931,FR,MA,201812,4,2,2823,49 -931,FR,MA,201812,4,2,8931,110 -931,FR,MA,201812,4,2,49460,358 -931,FR,MA,201812,4,2,148518,416 -931,FR,MA,201812,4,2,14930,27 -931,FR,MA,201812,4,2,2052137,44440 -931,FR,MA,201812,4,2,164838,522 -931,FR,MA,201812,4,2,62960,266 -931,FR,MA,201812,5,2,7355,82 -939,FR,MA,201812,0,1,2085,0 -939,FR,MA,201812,1,1,467849,13080 -939,FR,MA,201812,1,1,924,420 -939,FR,MA,201812,1,1,90,7 -939,FR,MA,201812,1,1,132200,39220 -939,FR,MA,201812,1,1,75738,36740 -939,FR,MA,201812,3,1,3666155,145709 -939,FR,MA,201812,3,1,165085,51251 -939,FR,MA,201812,3,1,5080,849 -939,FR,MA,201812,3,1,3927616,83459 -939,FR,MA,201812,4,1,338722,788 -939,FR,MA,201812,4,1,95172,56 -939,FR,MA,201812,4,1,332,9 -939,FR,MA,201812,4,1,242,2 -939,FR,MA,201812,4,1,1071749,3201 -939,FR,MA,201812,4,1,6109,22 -939,FR,MA,201812,0,2,10001,76 -939,FR,MA,201812,1,2,11127946,574759 -939,FR,MA,201812,1,2,427292,13889 -939,FR,MA,201812,1,2,368941,531659 -939,FR,MA,201812,1,2,1124409,76958 -939,FR,MA,201812,1,2,1278923,80578 -939,FR,MA,201812,1,2,8069,1092 -939,FR,MA,201812,1,2,16448,11431 -939,FR,MA,201812,1,2,69541,711 -939,FR,MA,201812,1,2,1399958,97541 -939,FR,MA,201812,1,2,83378,5274 -939,FR,MA,201812,1,2,3168,42 -939,FR,MA,201812,1,2,935583,106701 -939,FR,MA,201812,1,2,343909,71674 -939,FR,MA,201812,1,2,654630,4224 -939,FR,MA,201812,1,2,28108,71 -939,FR,MA,201812,1,2,3250,250 -939,FR,MA,201812,1,2,57562,1532 -939,FR,MA,201812,1,2,606639,108210 -939,FR,MA,201812,1,2,3305834,327334 -939,FR,MA,201812,1,2,283960,23378 -939,FR,MA,201812,1,2,157164,52000 -939,FR,MA,201812,1,2,17766,5890 -939,FR,MA,201812,1,2,19650,1092 -939,FR,MA,201812,1,2,765555,38515 -939,FR,MA,201812,1,2,238880,17260 -939,FR,MA,201812,1,2,94175,7415 -939,FR,MA,201812,1,2,544932,139712 -939,FR,MA,201812,1,2,3650,13200 -939,FR,MA,201812,3,2,9551284,490771 -939,FR,MA,201812,3,2,4879,533 -939,FR,MA,201812,3,2,2181355,176837 -939,FR,MA,201812,3,2,261879,11259 -939,FR,MA,201812,3,2,26600,370 -939,FR,MA,201812,3,2,85486,3099 -939,FR,MA,201812,3,2,4478287,268880 -939,FR,MA,201812,3,2,22711,3560 -939,FR,MA,201812,3,2,10985,11380 -939,FR,MA,201812,4,2,4229136,10195 -939,FR,MA,201812,4,2,157758,1358 -939,FR,MA,201812,4,2,13609,45 -939,FR,MA,201812,4,2,5409,5 -939,FR,MA,201812,4,2,7201,34 -939,FR,MA,201812,4,2,27216,148 -939,FR,MA,201812,4,2,221705,4095 -939,FR,MA,201812,4,2,3698077,6226 -939,FR,MA,201812,4,2,6207176,2157 -939,FR,MA,201812,4,2,17056,70 -939,FR,MA,201812,4,2,109651,290 -939,FR,MA,201812,4,2,10096,50 -939,FR,MA,201812,4,2,34510,24 -939,FR,MA,201812,4,2,10966,380 -939,FR,MA,201812,4,2,20307,90 -939,FR,MA,201812,4,2,3544593,41627 -939,FR,MA,201812,4,2,129781,565 -939,FR,MA,201812,4,2,74188,272 -941,FR,MA,201812,1,1,55341,6672 -941,FR,MA,201812,1,1,2391,1437 -941,FR,MA,201812,3,1,16299,2022 -941,FR,MA,201812,4,1,82,0 -941,FR,MA,201812,4,1,1004,310 -941,FR,MA,201812,0,2,600,16 -941,FR,MA,201812,1,2,106457,21584 -941,FR,MA,201812,1,2,26400,6400 -941,FR,MA,201812,1,2,9527,5578 -941,FR,MA,201812,1,2,58796,6246 -941,FR,MA,201812,1,2,1874,1488 -941,FR,MA,201812,1,2,172868,74506 -941,FR,MA,201812,1,2,375949,273635 -941,FR,MA,201812,1,2,12789,810 -941,FR,MA,201812,1,2,255191,15380 -941,FR,MA,201812,1,2,37919,8401 -941,FR,MA,201812,1,2,56300,2500 -941,FR,MA,201812,1,2,82267,5459 -941,FR,MA,201812,1,2,189640,4860 -941,FR,MA,201812,3,2,234678,41843 -941,FR,MA,201812,3,2,13522,917 -941,FR,MA,201812,3,2,73011,4951 -941,FR,MA,201812,4,2,1822,400 -949,FR,MA,201812,1,1,627787,47629 -949,FR,MA,201812,1,1,11937,971 -949,FR,MA,201812,1,1,430,810 -949,FR,MA,201812,1,1,2287,533 -949,FR,MA,201812,1,1,1500,929 -949,FR,MA,201812,1,1,1097,501 -949,FR,MA,201812,1,1,114,87 -949,FR,MA,201812,1,1,77376,63779 -949,FR,MA,201812,3,1,1071789,74122 -949,FR,MA,201812,3,1,46962,45789 -949,FR,MA,201812,3,1,525976,10950 -949,FR,MA,201812,4,1,12706,22 -949,FR,MA,201812,4,1,31806,122 -949,FR,MA,201812,4,1,1619,56 -949,FR,MA,201812,4,1,216233,1815 -949,FR,MA,201812,4,1,185280,1091 -949,FR,MA,201812,0,2,22917,16 -949,FR,MA,201812,1,2,2528531,225639 -949,FR,MA,201812,1,2,495717,1788 -949,FR,MA,201812,1,2,14433,3397 -949,FR,MA,201812,1,2,272485,8170 -949,FR,MA,201812,1,2,39974,2512 -949,FR,MA,201812,1,2,64300,5000 -949,FR,MA,201812,1,2,210034,23928 -949,FR,MA,201812,1,2,5478,78 -949,FR,MA,201812,1,2,453715,23023 -949,FR,MA,201812,1,2,130672,18019 -949,FR,MA,201812,1,2,683534,206504 -949,FR,MA,201812,1,2,164234,91757 -949,FR,MA,201812,1,2,68545,5111 -949,FR,MA,201812,1,2,28162,363 -949,FR,MA,201812,1,2,9206,6831 -949,FR,MA,201812,1,2,31575,16000 -949,FR,MA,201812,1,2,54150,5325 -949,FR,MA,201812,1,2,344505,84820 -949,FR,MA,201812,1,2,4806,1274 -949,FR,MA,201812,1,2,75583,12288 -949,FR,MA,201812,3,2,9242222,302643 -949,FR,MA,201812,3,2,3157,51 -949,FR,MA,201812,3,2,472784,56682 -949,FR,MA,201812,3,2,141094,23516 -949,FR,MA,201812,3,2,2219968,167383 -949,FR,MA,201812,3,2,120,7 -949,FR,MA,201812,4,2,917902,2967 -949,FR,MA,201812,4,2,54849,155 -949,FR,MA,201812,4,2,19483,237 -949,FR,MA,201812,4,2,105,3 -949,FR,MA,201812,4,2,35913,410 -949,FR,MA,201812,4,2,47,1 -949,FR,MA,201812,4,2,51519,88 -949,FR,MA,201812,4,2,240366,8280 -949,FR,MA,201812,4,2,37902,115 -949,FR,MA,201812,4,2,59711,177 -951,FR,MA,201812,1,1,12446,5340 -951,FR,MA,201812,1,1,39259,23243 -951,FR,MA,201812,1,1,509,390 -951,FR,MA,201812,3,1,199056,90896 -951,FR,MA,201812,1,2,22596,1944 -951,FR,MA,201812,1,2,2922,152 -951,FR,MA,201812,1,2,2100,87 -951,FR,MA,201812,3,2,2619,118 -951,FR,MA,201812,4,2,210,6 -951,FR,MA,201812,4,2,49,4 -952,FR,MA,201812,1,1,91778,112662 -952,FR,MA,201812,1,1,1839,670 -952,FR,MA,201812,1,1,42826,6832 -952,FR,MA,201812,1,1,600,600 -952,FR,MA,201812,1,1,10443,2432 -952,FR,MA,201812,1,1,97,81 -952,FR,MA,201812,3,1,13420,4482 -952,FR,MA,201812,3,1,4989,4861 -952,FR,MA,201812,3,1,23,1 -952,FR,MA,201812,4,1,703,31 -952,FR,MA,201812,4,1,1764,170 -952,FR,MA,201812,1,2,92747,7467 -952,FR,MA,201812,1,2,22308,3247 -952,FR,MA,201812,1,2,622,63 -952,FR,MA,201812,1,2,103706,46110 -952,FR,MA,201812,1,2,4578,1019 -952,FR,MA,201812,1,2,97567,133039 -952,FR,MA,201812,1,2,115957,17512 -952,FR,MA,201812,1,2,277,50 -952,FR,MA,201812,1,2,8751,2670 -952,FR,MA,201812,1,2,8663,16275 -952,FR,MA,201812,1,2,27485,2284 -952,FR,MA,201812,3,2,310972,29031 -952,FR,MA,201812,3,2,1646,90 -952,FR,MA,201812,3,2,27417,6712 -952,FR,MA,201812,3,2,39337,3570 -952,FR,MA,201812,3,2,61325,35760 -952,FR,MA,201812,4,2,47469,345 -952,FR,MA,201812,4,2,572,0 -952,FR,MA,201812,4,2,7475,57 -952,FR,MA,201812,4,2,4757,110 -952,FR,MA,201812,4,2,2888,8 -961,FR,MA,201812,1,1,817634,17636 -961,FR,MA,201812,1,1,1691,394 -961,FR,MA,201812,3,1,459590,15949 -961,FR,MA,201812,3,1,830228,58998 -961,FR,MA,201812,3,1,207226,12387 -961,FR,MA,201812,4,1,262,20 -961,FR,MA,201812,4,1,296,46 -961,FR,MA,201812,4,1,138,0 -961,FR,MA,201812,4,1,2794,104 -961,FR,MA,201812,1,2,111407,8136 -961,FR,MA,201812,1,2,7156,170 -961,FR,MA,201812,1,2,630,35 -961,FR,MA,201812,3,2,986770,37253 -961,FR,MA,201812,3,2,9300,451 -961,FR,MA,201812,4,2,2354,17 -961,FR,MA,201812,4,2,2592,360 -962,FR,MA,201812,0,1,107,9 -962,FR,MA,201812,1,1,516250,42360 -962,FR,MA,201812,1,1,927,88 -962,FR,MA,201812,1,1,316565,12838 -962,FR,MA,201812,1,1,1890,440 -962,FR,MA,201812,1,1,20955,602 -962,FR,MA,201812,3,1,1117086,52628 -962,FR,MA,201812,3,1,1853,220 -962,FR,MA,201812,3,1,6251,3605 -962,FR,MA,201812,4,1,35156,1969 -962,FR,MA,201812,4,1,5464,94 -962,FR,MA,201812,4,1,530,7 -962,FR,MA,201812,4,1,5730,227 -962,FR,MA,201812,4,1,904,27 -962,FR,MA,201812,4,1,1330,191 -962,FR,MA,201812,4,1,940,10 -962,FR,MA,201812,4,1,793,80 -962,FR,MA,201812,0,2,6024,66 -962,FR,MA,201812,1,2,5286633,292462 -962,FR,MA,201812,1,2,39063,1754 -962,FR,MA,201812,1,2,63924,1887 -962,FR,MA,201812,1,2,526609,24110 -962,FR,MA,201812,1,2,19287,20 -962,FR,MA,201812,1,2,21176,5871 -962,FR,MA,201812,1,2,153777,97043 -962,FR,MA,201812,1,2,375889,102105 -962,FR,MA,201812,1,2,31357,2186 -962,FR,MA,201812,1,2,82626,19051 -962,FR,MA,201812,1,2,14810,2616 -962,FR,MA,201812,1,2,140695,47595 -962,FR,MA,201812,1,2,48910,44827 -962,FR,MA,201812,3,2,10409536,570610 -962,FR,MA,201812,3,2,7693,106 -962,FR,MA,201812,3,2,59604,4049 -962,FR,MA,201812,3,2,16076,1206 -962,FR,MA,201812,3,2,163113,19048 -962,FR,MA,201812,3,2,461,1 -962,FR,MA,201812,3,2,1496,8 -962,FR,MA,201812,4,2,64637,1632 -962,FR,MA,201812,4,2,5557,111 -962,FR,MA,201812,4,2,8125,363 -962,FR,MA,201812,4,2,1231,0 -962,FR,MA,201812,4,2,21288,97 -962,FR,MA,201812,4,2,3242,49 -962,FR,MA,201812,4,2,23600,2220 -962,FR,MA,201812,4,2,25835,492 -962,FR,MA,201812,4,2,8695,194 -963,FR,MA,201812,0,1,5808768,198859 -963,FR,MA,201812,1,1,16645045,508030 -963,FR,MA,201812,1,1,1266,1355 -963,FR,MA,201812,1,1,89234,3355 -963,FR,MA,201812,1,1,20824,1169 -963,FR,MA,201812,1,1,6071353,169740 -963,FR,MA,201812,1,1,3717,48 -963,FR,MA,201812,1,1,119933,6238 -963,FR,MA,201812,1,1,60425,6546 -963,FR,MA,201812,1,1,135211,5997 -963,FR,MA,201812,1,1,12284,443 -963,FR,MA,201812,3,1,13806104,537288 -963,FR,MA,201812,3,1,2009,42 -963,FR,MA,201812,3,1,1095,9 -963,FR,MA,201812,3,1,15082,1419 -963,FR,MA,201812,3,1,1597,11 -963,FR,MA,201812,3,1,32885,462 -963,FR,MA,201812,3,1,55443,1817 -963,FR,MA,201812,3,1,1992,34 -963,FR,MA,201812,3,1,7583,213 -963,FR,MA,201812,3,1,3041128,108819 -963,FR,MA,201812,3,1,29176,1263 -963,FR,MA,201812,3,1,63279,1406 -963,FR,MA,201812,3,1,34261,3240 -963,FR,MA,201812,4,1,115974,1743 -963,FR,MA,201812,4,1,31529,519 -963,FR,MA,201812,4,1,45659,513 -963,FR,MA,201812,4,1,657,37 -963,FR,MA,201812,4,1,16,0 -963,FR,MA,201812,4,1,5080,7 -963,FR,MA,201812,4,1,132019,3351 -963,FR,MA,201812,4,1,2280,92 -963,FR,MA,201812,4,1,6203,121 -963,FR,MA,201812,4,1,5059,102 -963,FR,MA,201812,0,2,5642,61 -963,FR,MA,201812,1,2,1875382,78437 -963,FR,MA,201812,1,2,1547,17 -963,FR,MA,201812,1,2,128597,4456 -963,FR,MA,201812,1,2,1728,155 -963,FR,MA,201812,1,2,57965,2868 -963,FR,MA,201812,1,2,52524,1801 -963,FR,MA,201812,1,2,121185,9344 -963,FR,MA,201812,1,2,6986,8756 -963,FR,MA,201812,1,2,3837,110 -963,FR,MA,201812,1,2,37054,5139 -963,FR,MA,201812,1,2,11462,253 -963,FR,MA,201812,1,2,74077,8040 -963,FR,MA,201812,1,2,21772,1574 -963,FR,MA,201812,3,2,1383062,52116 -963,FR,MA,201812,3,2,24808,1340 -963,FR,MA,201812,3,2,277580,18885 -963,FR,MA,201812,4,2,1062074,2340 -963,FR,MA,201812,4,2,114910,1830 -963,FR,MA,201812,4,2,662,143 -963,FR,MA,201812,4,2,43744,82 -963,FR,MA,201812,4,2,17109,3510 -971,FR,MA,201812,1,1,11790,1276 -971,FR,MA,201812,3,1,124737,1711 -971,FR,MA,201812,3,1,90230,10332 -971,FR,MA,201812,3,1,9295,529 -971,FR,MA,201812,4,1,22,0 -971,FR,MA,201812,4,1,125,1 -971,FR,MA,201812,4,1,556,0 -971,FR,MA,201812,4,1,29,1 -971,FR,MA,201812,0,2,1037,7 -971,FR,MA,201812,1,2,742466,113833 -971,FR,MA,201812,1,2,489,15 -971,FR,MA,201812,1,2,37570,998 -971,FR,MA,201812,1,2,689,152 -971,FR,MA,201812,1,2,35552,16001 -971,FR,MA,201812,1,2,430220,112512 -971,FR,MA,201812,1,2,38660,8693 -971,FR,MA,201812,1,2,52515,37203 -971,FR,MA,201812,3,2,770632,30376 -971,FR,MA,201812,3,2,14159,819 -971,FR,MA,201812,3,2,2260,120 -971,FR,MA,201812,3,2,169008,3859 -971,FR,MA,201812,3,2,19448,1217 -971,FR,MA,201812,4,2,20230,117 -971,FR,MA,201812,4,2,5182,4 -971,FR,MA,201812,4,2,49,0 -971,FR,MA,201812,4,2,2541,58 -971,FR,MA,201812,4,2,84016,3450 -971,FR,MA,201812,4,2,10269,42 -972,FR,MA,201812,1,2,115377,143469 -972,FR,MA,201812,1,2,13933,24047 -972,FR,MA,201812,1,2,31039,17777 -972,FR,MA,201812,1,2,13143,893 -972,FR,MA,201812,1,2,5780244,7152 -972,FR,MA,201812,1,2,231123,383242 -972,FR,MA,201812,1,2,65169,22498 -972,FR,MA,201812,1,2,70652,44675 -972,FR,MA,201812,3,2,96668,17242 -972,FR,MA,201812,3,2,13227,2940 -972,FR,MA,201812,3,2,10725,23072 -972,FR,MA,201812,3,2,209075,283938 -972,FR,MA,201812,3,2,42120,18326 -972,FR,MA,201812,3,2,16134,24191 -972,FR,MA,201812,4,2,318,3 -972,FR,MA,201812,4,2,1298,40 -972,FR,MA,201812,4,2,2496,26 -973,FR,MA,201812,1,1,2192,447 -973,FR,MA,201812,1,1,502,430 -973,FR,MA,201812,1,1,46575,25573 -973,FR,MA,201812,1,1,29320,19404 -973,FR,MA,201812,1,1,12624,8899 -973,FR,MA,201812,1,1,1,50 -973,FR,MA,201812,3,1,447342,90107 -973,FR,MA,201812,3,1,1136,1641 -973,FR,MA,201812,4,1,846,67 -973,FR,MA,201812,4,1,18212,1486 -973,FR,MA,201812,1,2,128655,30643 -973,FR,MA,201812,1,2,9497,10983 -973,FR,MA,201812,1,2,8119,1706 -973,FR,MA,201812,1,2,1068,198 -973,FR,MA,201812,1,2,200269,174587 -973,FR,MA,201812,1,2,1144,498 -973,FR,MA,201812,1,2,32607,19080 -973,FR,MA,201812,1,2,138325,92208 -973,FR,MA,201812,1,2,46530,5580 -973,FR,MA,201812,3,2,656764,174555 -973,FR,MA,201812,3,2,106575,41196 -973,FR,MA,201812,3,2,41363,19016 -973,FR,MA,201812,4,2,1984,306 -973,FR,MA,201812,4,2,354,40 -973,FR,MA,201812,4,2,13169,670 -973,FR,MA,201812,8,2,84690,216840 -974,FR,MA,201812,1,1,142243,9959 -974,FR,MA,201812,1,1,126,78 -974,FR,MA,201812,3,1,4739,469 -974,FR,MA,201812,3,1,470,47 -974,FR,MA,201812,3,1,380,47 -974,FR,MA,201812,4,1,51,1 -974,FR,MA,201812,4,1,132,1 -974,FR,MA,201812,4,1,181,1 -974,FR,MA,201812,5,1,468,5 -974,FR,MA,201812,0,2,1686,70 -974,FR,MA,201812,1,2,503857,67550 -974,FR,MA,201812,1,2,101,18 -974,FR,MA,201812,1,2,3300,32 -974,FR,MA,201812,1,2,9093,3500 -974,FR,MA,201812,1,2,18350,1080 -974,FR,MA,201812,1,2,21457,943 -974,FR,MA,201812,1,2,30774,15232 -974,FR,MA,201812,1,2,20,1 -974,FR,MA,201812,1,2,1600,109 -974,FR,MA,201812,1,2,44879,19000 -974,FR,MA,201812,1,2,26656,10869 -974,FR,MA,201812,3,2,504417,58105 -974,FR,MA,201812,3,2,1625,1166 -974,FR,MA,201812,3,2,237312,8292 -974,FR,MA,201812,3,2,3,4 -974,FR,MA,201812,4,2,300559,25778 -974,FR,MA,201812,4,2,3404,338 -974,FR,MA,201812,4,2,27019,834 -974,FR,MA,201812,4,2,50,0 -974,FR,MA,201812,4,2,35143,2820 -974,FR,MA,201812,4,2,10555,148 -974,FR,MA,201812,5,2,30836,410 -975,FR,MA,201812,0,1,212,11 -975,FR,MA,201812,1,1,10862,6462 -975,FR,MA,201812,1,1,19380,15910 -975,FR,MA,201812,1,1,19782,8471 -975,FR,MA,201812,1,1,2317,540 -975,FR,MA,201812,1,1,5122,3084 -975,FR,MA,201812,1,1,8033,6190 -975,FR,MA,201812,1,1,11604,2513 -975,FR,MA,201812,1,1,63649,27728 -975,FR,MA,201812,3,1,367243,84923 -975,FR,MA,201812,3,1,1505484,46351 -975,FR,MA,201812,3,1,3695376,141503 -975,FR,MA,201812,4,1,7626,122 -975,FR,MA,201812,4,1,231,8 -975,FR,MA,201812,4,1,13525,167 -975,FR,MA,201812,4,1,18797,257 -975,FR,MA,201812,4,1,178952,12636 -975,FR,MA,201812,1,2,488532,71127 -975,FR,MA,201812,1,2,11683,1250 -975,FR,MA,201812,1,2,131207,22300 -975,FR,MA,201812,1,2,83160,6089 -975,FR,MA,201812,1,2,222415,22261 -975,FR,MA,201812,1,2,450,63 -975,FR,MA,201812,1,2,279554,139786 -975,FR,MA,201812,1,2,28011,4440 -975,FR,MA,201812,1,2,77014,8666 -975,FR,MA,201812,1,2,20584,23537 -975,FR,MA,201812,1,2,3672,11667 -975,FR,MA,201812,1,2,4078,19644 -975,FR,MA,201812,1,2,128778,10606 -975,FR,MA,201812,3,2,538587,87799 -975,FR,MA,201812,3,2,2900,400 -975,FR,MA,201812,3,2,245598,9470 -975,FR,MA,201812,3,2,487870,37044 -975,FR,MA,201812,3,2,3000,448 -975,FR,MA,201812,3,2,15300,2959 -975,FR,MA,201812,4,2,9331,300 -975,FR,MA,201812,4,2,13836,40 -975,FR,MA,201812,4,2,185,10 -975,FR,MA,201812,4,2,2110,650 -976,FR,MA,201812,1,1,74946,22869 -976,FR,MA,201812,1,1,311022,190000 -976,FR,MA,201812,1,1,12445,750 -976,FR,MA,201812,1,1,63777,21120 -976,FR,MA,201812,1,1,266,264 -976,FR,MA,201812,3,1,9436,1911 -976,FR,MA,201812,3,1,287583,109328 -976,FR,MA,201812,3,1,714,180 -976,FR,MA,201812,4,1,36,2 -976,FR,MA,201812,4,1,1323,132 -976,FR,MA,201812,1,2,74088,26163 -976,FR,MA,201812,1,2,232848,150620 -976,FR,MA,201812,1,2,10582,7152 -976,FR,MA,201812,1,2,11982,15690 -976,FR,MA,201812,1,2,140,18 -976,FR,MA,201812,1,2,4200,10430 -976,FR,MA,201812,1,2,3686,18170 -976,FR,MA,201812,3,2,185617,33367 -976,FR,MA,201812,3,2,10205,1950 -976,FR,MA,201812,3,2,27365,38448 -976,FR,MA,201812,3,2,72240,172508 -976,FR,MA,201812,4,2,51636,4113 -979,FR,MA,201812,0,1,287134,1101 -979,FR,MA,201812,1,1,1693535,175310 -979,FR,MA,201812,1,1,3977,564 -979,FR,MA,201812,1,1,257881,19833 -979,FR,MA,201812,1,1,127408,6771 -979,FR,MA,201812,1,1,12162,125 -979,FR,MA,201812,1,1,1950,454 -979,FR,MA,201812,1,1,1078,122 -979,FR,MA,201812,1,1,50520,12600 -979,FR,MA,201812,1,1,1108,758 -979,FR,MA,201812,1,1,65312,27203 -979,FR,MA,201812,1,1,13246,4675 -979,FR,MA,201812,1,1,86555,12884 -979,FR,MA,201812,3,1,1613215,308620 -979,FR,MA,201812,3,1,212496,238429 -979,FR,MA,201812,3,1,40160,7300 -979,FR,MA,201812,3,1,1232982,112628 -979,FR,MA,201812,3,1,13152,4 -979,FR,MA,201812,3,1,3806,7 -979,FR,MA,201812,4,1,10530,100 -979,FR,MA,201812,4,1,144201,150 -979,FR,MA,201812,4,1,8865,158 -979,FR,MA,201812,4,1,346870,1446 -979,FR,MA,201812,4,1,1464,13 -979,FR,MA,201812,0,2,22472,29 -979,FR,MA,201812,1,2,4915779,322869 -979,FR,MA,201812,1,2,5779,129 -979,FR,MA,201812,1,2,7800,785 -979,FR,MA,201812,1,2,320575,16868 -979,FR,MA,201812,1,2,259394,8868 -979,FR,MA,201812,1,2,1292810,40943 -979,FR,MA,201812,1,2,85337,278 -979,FR,MA,201812,1,2,10041,158 -979,FR,MA,201812,1,2,33472,443 -979,FR,MA,201812,1,2,56690,7453 -979,FR,MA,201812,1,2,758664,82888 -979,FR,MA,201812,1,2,19013,6025 -979,FR,MA,201812,1,2,20026,9337 -979,FR,MA,201812,1,2,44617,454 -979,FR,MA,201812,1,2,1887,19 -979,FR,MA,201812,1,2,524144,31939 -979,FR,MA,201812,1,2,94229,26338 -979,FR,MA,201812,1,2,21985,13557 -979,FR,MA,201812,1,2,10816,5331 -979,FR,MA,201812,1,2,324226,102292 -979,FR,MA,201812,1,2,6986,2540 -979,FR,MA,201812,1,2,14372,5650 -979,FR,MA,201812,1,2,75675,35010 -979,FR,MA,201812,1,2,37136,4926 -979,FR,MA,201812,3,2,7679906,323160 -979,FR,MA,201812,3,2,130707,11924 -979,FR,MA,201812,3,2,307480,93334 -979,FR,MA,201812,3,2,565204,24697 -979,FR,MA,201812,3,2,1660566,551126 -979,FR,MA,201812,3,2,309824,33609 -979,FR,MA,201812,3,2,132,29 -979,FR,MA,201812,3,2,15716,17386 -979,FR,MA,201812,3,2,39293,5126 -979,FR,MA,201812,4,2,2828990,5769 -979,FR,MA,201812,4,2,169826,484 -979,FR,MA,201812,4,2,3310,31 -979,FR,MA,201812,4,2,3384,178 -979,FR,MA,201812,4,2,23460,5 -979,FR,MA,201812,4,2,422462,2187 -979,FR,MA,201812,4,2,168,6 -979,FR,MA,201812,4,2,3750071,4446 -979,FR,MA,201812,4,2,96526,283 -979,FR,MA,201812,4,2,10654,178 -979,FR,MA,201812,4,2,616,3 -979,FR,MA,201812,4,2,3372,3 -979,FR,MA,201812,4,2,36319,119 -979,FR,MA,201812,4,2,599175,17050 -979,FR,MA,201812,4,2,115778,383 -979,FR,MA,201812,4,2,81432,177 -979,FR,MA,201812,5,2,18,0 -994,FR,MA,201812,1,1,49071,3982 -999,FR,MA,201812,1,1,31725,0 -999,FR,MA,201812,1,1,82580,0 -999,FR,MA,201812,3,1,114694,0 -999,FR,MA,201812,3,1,79466,0 -999,FR,MA,201812,4,1,137,0 -999,FR,MA,201812,4,1,49,0 -999,FR,MA,201812,4,1,3179,0 -999,FR,MA,201812,1,2,485639,47359 -999,FR,MA,201812,1,2,41650,7308 -999,FR,MA,201812,1,2,127433,1130 -999,FR,MA,201812,1,2,16974,5997 -999,FR,MA,201812,1,2,153163,194229 -999,FR,MA,201812,1,2,4115,1050 -999,FR,MA,201812,1,2,64329,19711 -999,FR,MA,201812,1,2,5073,486 -999,FR,MA,201812,1,2,23144,1730 -999,FR,MA,201812,1,2,503575,397294 -999,FR,MA,201812,1,2,90900,191200 -999,FR,MA,201812,1,2,26825,20050 -999,FR,MA,201812,1,2,883605,486100 -999,FR,MA,201812,1,2,338953,397700 -999,FR,MA,201812,1,2,49461,43840 -999,FR,MA,201812,1,2,88544,28540 -999,FR,MA,201812,1,2,10806,9520 -999,FR,MA,201812,1,2,71878,122809 -999,FR,MA,201812,1,2,15468,2240 -999,FR,MA,201812,3,2,2369815,27698 -999,FR,MA,201812,3,2,123641,8716 -999,FR,MA,201812,3,2,54603,3005 -999,FR,MA,201812,3,2,3400,1500 -999,FR,MA,201812,3,2,334596,8023 -999,FR,MA,201812,3,2,342,3 -999,FR,MA,201812,3,2,15364,17950 -999,FR,MA,201812,4,2,271858,265 -999,FR,MA,201812,4,2,1079,1 -999,FR,MA,201812,4,2,2195,3 -999,FR,MA,201812,4,2,34133,54 -999,FR,MA,201812,4,2,3,0 -999,FR,MA,201812,4,2,1703,16 -999,FR,MA,201812,4,2,48308,1230 -999,FR,MA,201812,4,2,9830,106 -999,FR,MA,201812,4,2,21471,18 -001,FR,DZ,201812,1,1,15300,1000 -001,FR,DZ,201812,1,2,249950,89122 -001,FR,DZ,201812,1,2,4441193,1415929 -001,FR,DZ,201812,1,2,1625131,533018 -001,FR,DZ,201812,1,2,9175361,2942380 -001,FR,DZ,201812,3,2,60384,19400 -001,FR,DZ,201812,3,2,1828138,629379 -001,FR,DZ,201812,4,2,64189,858 -001,FR,DZ,201812,4,2,65800,1246 -001,FR,DZ,201812,4,2,91051,1346 -011,FR,DZ,201812,1,2,3149586,15210000 -011,FR,DZ,201812,1,2,6290899,30800000 -011,FR,DZ,201812,1,2,15080809,72041059 -011,FR,DZ,201812,1,2,18351700,88873000 -011,FR,DZ,201812,1,2,12938118,62900104 -011,FR,DZ,201812,1,2,6249450,30500000 -011,FR,DZ,201812,1,2,11919867,57749830 -011,FR,DZ,201812,1,2,23958039,115610002 -011,FR,DZ,201812,1,2,5452932,26250000 -020,FR,DZ,201812,4,1,600,1320 -020,FR,DZ,201812,1,2,1265544,2252400 -020,FR,DZ,201812,1,2,103920,300000 -020,FR,DZ,201812,1,2,18663,35450 -035,FR,DZ,201812,1,2,5138,3250 -035,FR,DZ,201812,1,2,38500,20000 -039,FR,DZ,201812,1,1,4085,20000 -039,FR,DZ,201812,4,1,7282,3368 -039,FR,DZ,201812,4,2,1340,3100 -043,FR,DZ,201812,1,2,622333,78982 -049,FR,DZ,201812,1,2,15380,65 -051,FR,DZ,201812,1,2,337753,820260 -055,FR,DZ,201812,1,2,53744,89500 -056,FR,DZ,201812,1,2,376842,1833184 -056,FR,DZ,201812,1,2,98262,172000 -056,FR,DZ,201812,1,2,49762,96000 -056,FR,DZ,201812,1,2,295671,564700 -092,FR,DZ,201812,1,2,22767,163880 -099,FR,DZ,201812,1,1,270,75 -099,FR,DZ,201812,1,2,80000,8000 -099,FR,DZ,201812,1,2,267525,14376 -099,FR,DZ,201812,1,2,99465,19450 -099,FR,DZ,201812,4,2,268383,123 -099,FR,DZ,201812,4,2,417382,272 -112,FR,DZ,201812,1,1,6523,15400 -112,FR,DZ,201812,1,2,207600,500000 -112,FR,DZ,201812,1,2,49330,94050 -121,FR,DZ,201812,1,1,102827,10305 -121,FR,DZ,201812,1,2,88937,9944 -121,FR,DZ,201812,1,2,299923,16443 -122,FR,DZ,201812,1,2,189479,560172 -122,FR,DZ,201812,1,2,44194,23040 -122,FR,DZ,201812,1,2,42394,23040 -125,FR,DZ,201812,1,2,1955,180 -125,FR,DZ,201812,1,2,132458,171681 -125,FR,DZ,201812,1,2,1907647,311260 -125,FR,DZ,201812,1,2,190545,65781 -125,FR,DZ,201812,1,2,142499,82738 -125,FR,DZ,201812,1,2,194791,87981 -128,FR,DZ,201812,1,1,44958,101564 -128,FR,DZ,201812,1,1,48515,154663 -128,FR,DZ,201812,1,1,8106,15548 -128,FR,DZ,201812,1,1,9223,17422 -128,FR,DZ,201812,1,2,113481,23778 -128,FR,DZ,201812,1,2,55452,3182 -128,FR,DZ,201812,4,2,12000,6000 -131,FR,DZ,201812,1,2,12861,2615 -132,FR,DZ,201812,0,2,647,5 -132,FR,DZ,201812,1,2,115000,144000 -132,FR,DZ,201812,1,2,4135,1200 -132,FR,DZ,201812,1,2,122000,23630 -132,FR,DZ,201812,1,2,858023,78219 -132,FR,DZ,201812,1,2,181206,19050 -132,FR,DZ,201812,1,2,101834,64775 -132,FR,DZ,201812,3,2,103500,22500 -132,FR,DZ,201812,4,2,30,0 -133,FR,DZ,201812,1,2,876,75 -135,FR,DZ,201812,1,2,71852,856 -136,FR,DZ,201812,1,2,313757,467510 -136,FR,DZ,201812,1,2,3348,2800 -136,FR,DZ,201812,4,2,1591,600 -139,FR,DZ,201812,1,1,880,408 -139,FR,DZ,201812,0,2,157,2 -139,FR,DZ,201812,1,2,706747,129804 -139,FR,DZ,201812,1,2,28804,2686 -139,FR,DZ,201812,1,2,22890,1500 -139,FR,DZ,201812,1,2,3291045,496605 -139,FR,DZ,201812,1,2,110341,8804 -139,FR,DZ,201812,1,2,430785,64079 -139,FR,DZ,201812,1,2,137027,19122 -139,FR,DZ,201812,1,2,7583322,1143490 -139,FR,DZ,201812,4,2,12,6 -139,FR,DZ,201812,4,2,602,41 -139,FR,DZ,201812,4,2,1,24 -139,FR,DZ,201812,4,2,212110,2587 -142,FR,DZ,201812,4,1,49233,2483 -142,FR,DZ,201812,4,2,108681,6680 -144,FR,DZ,201812,1,2,3970995,1830232 -144,FR,DZ,201812,1,2,150752,96000 -144,FR,DZ,201812,1,2,213632,66240 -144,FR,DZ,201812,1,2,563105,364000 -145,FR,DZ,201812,1,2,20260,6000 -146,FR,DZ,201812,1,2,53610,20002 -146,FR,DZ,201812,4,2,76109,7184 -146,FR,DZ,201812,4,2,84517,7067 -161,FR,DZ,201812,4,1,2243,2450 -161,FR,DZ,201812,1,2,35170,44000 -162,FR,DZ,201812,1,2,85455,255000 -162,FR,DZ,201812,1,2,242378,510000 -163,FR,DZ,201812,4,1,2851,1180 -163,FR,DZ,201812,1,2,29458,9864 -163,FR,DZ,201812,1,2,2469,760 -163,FR,DZ,201812,1,2,52620,22190 -164,FR,DZ,201812,1,1,48663,16984 -164,FR,DZ,201812,1,1,69222,50448 -164,FR,DZ,201812,1,1,96410,56072 -164,FR,DZ,201812,1,1,229868,173600 -164,FR,DZ,201812,1,1,332577,235318 -164,FR,DZ,201812,1,1,198516,120315 -164,FR,DZ,201812,1,1,299513,178676 -164,FR,DZ,201812,1,1,1794849,993390 -164,FR,DZ,201812,1,1,337493,183156 -164,FR,DZ,201812,3,1,158,13 -164,FR,DZ,201812,3,1,15086,17300 -164,FR,DZ,201812,4,1,50220,35846 -164,FR,DZ,201812,4,1,3576,2016 -164,FR,DZ,201812,4,1,6715,5820 -164,FR,DZ,201812,4,1,789942,491046 -164,FR,DZ,201812,4,1,22704,6986 -164,FR,DZ,201812,1,2,36465,23000 -164,FR,DZ,201812,1,2,247600,158000 -166,FR,DZ,201812,1,1,7777,5727 -166,FR,DZ,201812,1,1,9222,7883 -166,FR,DZ,201812,1,1,6979,8723 -166,FR,DZ,201812,4,1,190,474 -166,FR,DZ,201812,1,2,17429,1470 -179,FR,DZ,201812,1,2,77720,11895 -179,FR,DZ,201812,1,2,629697,329499 -179,FR,DZ,201812,1,2,190534,76835 -179,FR,DZ,201812,1,2,478460,168000 -179,FR,DZ,201812,1,2,2833,300 -179,FR,DZ,201812,1,2,144427,132000 -179,FR,DZ,201812,1,2,1085906,498304 -179,FR,DZ,201812,1,2,343093,198450 -181,FR,DZ,201812,4,2,267306,185 -182,FR,DZ,201812,1,1,3681,1621 -182,FR,DZ,201812,1,1,238,9 -182,FR,DZ,201812,1,1,10987,2484 -182,FR,DZ,201812,4,1,7378,1450 -182,FR,DZ,201812,1,2,14051,555 -182,FR,DZ,201812,1,2,74840,10771 -182,FR,DZ,201812,1,2,2437,750 -182,FR,DZ,201812,1,2,34019,11980 -182,FR,DZ,201812,3,2,263919,71821 -182,FR,DZ,201812,4,2,2070,46 -310,FR,DZ,201812,1,1,35421298,86552310 -310,FR,DZ,201812,1,1,54839737,129704000 -310,FR,DZ,201812,1,1,10519551,26780130 -310,FR,DZ,201812,1,1,32018239,79405000 -321,FR,DZ,201812,1,1,11160696,25979277 -321,FR,DZ,201812,1,1,10209980,25138383 -321,FR,DZ,201812,1,2,77994,8040 -321,FR,DZ,201812,4,2,349,1 -325,FR,DZ,201812,1,2,15925357,32353787 -325,FR,DZ,201812,1,2,13902811,31656954 -330,FR,DZ,201812,1,1,44199852,0 -330,FR,DZ,201812,1,1,1076084,2853956 -330,FR,DZ,201812,1,1,7352005,20939812 -330,FR,DZ,201812,1,1,14381651,55581322 -330,FR,DZ,201812,1,2,10302,19 -341,FR,DZ,201812,1,1,750206,5000000 -341,FR,DZ,201812,1,1,836,1060 -341,FR,DZ,201812,1,2,404594,159241 -341,FR,DZ,201812,1,2,35468,906 -341,FR,DZ,201812,1,2,4000,1414 -341,FR,DZ,201812,1,2,647276,325060 -341,FR,DZ,201812,1,2,150366,124060 -341,FR,DZ,201812,1,2,18554,3600 -341,FR,DZ,201812,1,2,41872,19133 -341,FR,DZ,201812,1,2,154079,59565 -341,FR,DZ,201812,1,2,152965,59605 -341,FR,DZ,201812,1,2,69143,46641 -341,FR,DZ,201812,3,2,244524,119164 -341,FR,DZ,201812,4,2,4936,91 -349,FR,DZ,201812,1,2,1190,350 -533,FR,DZ,201812,1,2,2630,1796 -536,FR,DZ,201812,1,2,676336,406000 -536,FR,DZ,201812,1,2,101869,23011 -542,FR,DZ,201812,1,2,11985424,21864848 -542,FR,DZ,201812,1,2,28226,11838 -551,FR,DZ,201812,1,2,3765295,1455446 -551,FR,DZ,201812,1,2,3087245,745887 -551,FR,DZ,201812,1,2,83211,2262 -551,FR,DZ,201812,1,2,33984,1386 -551,FR,DZ,201812,1,2,442753,226938 -551,FR,DZ,201812,1,2,5430,3229 -551,FR,DZ,201812,1,2,230300,46206 -551,FR,DZ,201812,1,2,150642,14394 -551,FR,DZ,201812,1,2,168757,24452 -551,FR,DZ,201812,1,2,28638,5600 -551,FR,DZ,201812,4,2,4332,49 -551,FR,DZ,201812,4,2,27121,818 -552,FR,DZ,201812,1,2,2650,1000 -552,FR,DZ,201812,1,2,101,7 -552,FR,DZ,201812,1,2,262,5 -552,FR,DZ,201812,1,2,7200,6000 -561,FR,DZ,201812,4,2,14882,250 -562,FR,DZ,201812,1,2,51256,21924 -565,FR,DZ,201812,1,2,163510,1097 -565,FR,DZ,201812,1,2,250600,13315 -568,FR,DZ,201812,1,2,112652,9468 -568,FR,DZ,201812,1,2,4900,601 -568,FR,DZ,201812,1,2,54775,3645 -568,FR,DZ,201812,1,2,13916,1060 -568,FR,DZ,201812,1,2,41000,1027 -568,FR,DZ,201812,1,2,405290,59338 -568,FR,DZ,201812,1,2,64717,10918 -568,FR,DZ,201812,1,2,246055,66362 -568,FR,DZ,201812,1,2,448548,65149 -568,FR,DZ,201812,1,2,211767,17663 -568,FR,DZ,201812,1,2,667226,94389 -568,FR,DZ,201812,1,2,108404,26845 -568,FR,DZ,201812,1,2,586869,85969 -568,FR,DZ,201812,1,2,848274,125207 -568,FR,DZ,201812,1,2,225848,35012 -568,FR,DZ,201812,3,2,1552,97 -568,FR,DZ,201812,4,2,5057,140 -568,FR,DZ,201812,4,2,4435,130 -568,FR,DZ,201812,4,2,715,120 -611,FR,DZ,201812,1,2,9341,6998 -614,FR,DZ,201812,1,2,213664,317992 -614,FR,DZ,201812,1,2,538,1200 -621,FR,DZ,201812,1,1,67,250 -621,FR,DZ,201812,1,2,29963,16751 -639,FR,DZ,201812,1,2,9250,360 -639,FR,DZ,201812,1,2,343,1650 -639,FR,DZ,201812,1,2,9556,18750 -641,FR,DZ,201812,4,2,10,58 -691,FR,DZ,201812,1,2,1855,290 -691,FR,DZ,201812,1,2,4622,4164 -691,FR,DZ,201812,1,2,10471,2621 -691,FR,DZ,201812,1,2,33757,37283 -691,FR,DZ,201812,4,2,881,90 -692,FR,DZ,201812,1,2,404221,167748 -692,FR,DZ,201812,1,2,50933,32331 -724,FR,DZ,201812,1,1,4097819,14000000 -724,FR,DZ,201812,1,1,7866004,25881885 -724,FR,DZ,201812,1,1,2870699,9878348 -729,FR,DZ,201812,4,2,148,0 -813,FR,DZ,201812,1,2,3333,1505 -813,FR,DZ,201812,4,2,184,41 -819,FR,DZ,201812,1,1,3403272,77680 -819,FR,DZ,201812,1,1,1989091,6768695 -819,FR,DZ,201812,1,1,6160507,20788066 -819,FR,DZ,201812,1,1,1816230,91880 -819,FR,DZ,201812,4,1,947,12 -819,FR,DZ,201812,1,2,396192,29954 -819,FR,DZ,201812,1,2,25265,7290 -819,FR,DZ,201812,1,2,45599,5650 -819,FR,DZ,201812,1,2,109540,5640 -819,FR,DZ,201812,1,2,848848,164486 -819,FR,DZ,201812,1,2,1618,20400 -819,FR,DZ,201812,1,2,28950,15000 -819,FR,DZ,201812,1,2,14560,4000 -819,FR,DZ,201812,1,2,47438,38750 -819,FR,DZ,201812,1,2,75837,4000 -819,FR,DZ,201812,1,2,228198,104957 -819,FR,DZ,201812,4,2,574251,218 -819,FR,DZ,201812,4,2,848,8 -819,FR,DZ,201812,4,2,690,100 -819,FR,DZ,201812,4,2,1211534,825 -819,FR,DZ,201812,4,2,5346,2 -820,FR,DZ,201812,1,2,13850,1666 -842,FR,DZ,201812,1,1,45182,93160 -891,FR,DZ,201812,1,1,29112,24000 -891,FR,DZ,201812,1,2,1041807,483987 -891,FR,DZ,201812,1,2,14814,22508 -891,FR,DZ,201812,1,2,7455,1087 -891,FR,DZ,201812,1,2,1394120,840194 -891,FR,DZ,201812,1,2,254497,31217 -891,FR,DZ,201812,1,2,608837,129657 -891,FR,DZ,201812,1,2,168468,229500 -891,FR,DZ,201812,1,2,5892,542 -891,FR,DZ,201812,1,2,3699,900 -891,FR,DZ,201812,1,2,26473,5600 -891,FR,DZ,201812,1,2,36285,5806 -891,FR,DZ,201812,1,2,330108,557987 -891,FR,DZ,201812,1,2,76874,102000 -891,FR,DZ,201812,1,2,132693,16600 -891,FR,DZ,201812,1,2,191732,145884 -891,FR,DZ,201812,1,2,642733,321185 -891,FR,DZ,201812,1,2,835871,608637 -891,FR,DZ,201812,1,2,200482,28107 -891,FR,DZ,201812,1,2,211016,45671 -891,FR,DZ,201812,3,2,34073,3772 -891,FR,DZ,201812,4,2,12200,261 -891,FR,DZ,201812,4,2,36301,944 -891,FR,DZ,201812,4,2,295,11 -891,FR,DZ,201812,4,2,1215,120 -892,FR,DZ,201812,1,2,53867,17336 -892,FR,DZ,201812,1,2,50400,1500 -892,FR,DZ,201812,1,2,1148307,224559 -892,FR,DZ,201812,1,2,28827,17575 -892,FR,DZ,201812,1,2,102446,31138 -892,FR,DZ,201812,1,2,52618,11926 -892,FR,DZ,201812,1,2,63013,7161 -892,FR,DZ,201812,1,2,166549,43422 -892,FR,DZ,201812,1,2,219931,200665 -892,FR,DZ,201812,3,2,3660,200 -892,FR,DZ,201812,4,2,12102,250 -892,FR,DZ,201812,4,2,16895,358 -893,FR,DZ,201812,1,1,260917,809 -893,FR,DZ,201812,3,1,587,11 -893,FR,DZ,201812,4,1,760,611 -893,FR,DZ,201812,0,2,1676,12 -893,FR,DZ,201812,1,2,17175018,687339 -893,FR,DZ,201812,1,2,15803,385 -893,FR,DZ,201812,1,2,3461,300 -893,FR,DZ,201812,1,2,492172,12414 -893,FR,DZ,201812,1,2,55278,24780 -893,FR,DZ,201812,1,2,75197,22368 -893,FR,DZ,201812,1,2,15673,1750 -893,FR,DZ,201812,1,2,11816875,539056 -893,FR,DZ,201812,1,2,659307,59355 -893,FR,DZ,201812,1,2,27000,3739 -893,FR,DZ,201812,1,2,119461,7717 -893,FR,DZ,201812,1,2,2105179,36161 -893,FR,DZ,201812,1,2,160500,900 -893,FR,DZ,201812,1,2,336273,55187 -893,FR,DZ,201812,1,2,135745,11588 -893,FR,DZ,201812,1,2,38322,4096 -893,FR,DZ,201812,1,2,641997,88660 -893,FR,DZ,201812,1,2,94046,6130 -893,FR,DZ,201812,1,2,82596,2854 -893,FR,DZ,201812,1,2,3252797,463682 -893,FR,DZ,201812,1,2,1277831,138686 -893,FR,DZ,201812,1,2,48895,3062 -893,FR,DZ,201812,1,2,166570,3920 -893,FR,DZ,201812,1,2,276742,2101 -893,FR,DZ,201812,3,2,18972,2758 -893,FR,DZ,201812,4,2,2021956,5815 -893,FR,DZ,201812,4,2,3693,19 -893,FR,DZ,201812,4,2,1130947,4972 -893,FR,DZ,201812,4,2,11227173,70193 -893,FR,DZ,201812,4,2,83598,237 -893,FR,DZ,201812,4,2,17950,485 -895,FR,DZ,201812,1,2,3368,6000 -896,FR,DZ,201812,1,1,19,6 -896,FR,DZ,201812,4,1,771,1 -896,FR,DZ,201812,0,2,173,1 -896,FR,DZ,201812,1,2,2513729,138901 -896,FR,DZ,201812,1,2,51869,43464 -896,FR,DZ,201812,1,2,32908,285 -896,FR,DZ,201812,1,2,16596,182 -896,FR,DZ,201812,1,2,103986,6607 -896,FR,DZ,201812,1,2,50,2 -896,FR,DZ,201812,1,2,2156,385 -896,FR,DZ,201812,1,2,3653922,792442 -896,FR,DZ,201812,1,2,11550,1070 -896,FR,DZ,201812,1,2,69208,23232 -896,FR,DZ,201812,1,2,246997,55492 -896,FR,DZ,201812,1,2,218299,162042 -896,FR,DZ,201812,1,2,277915,6410 -896,FR,DZ,201812,1,2,58823,27275 -896,FR,DZ,201812,1,2,71745,18288 -896,FR,DZ,201812,1,2,119472,54940 -896,FR,DZ,201812,1,2,620835,186701 -896,FR,DZ,201812,1,2,74563,16082 -896,FR,DZ,201812,1,2,91758,25351 -896,FR,DZ,201812,1,2,230463,121921 -896,FR,DZ,201812,1,2,139704,11767 -896,FR,DZ,201812,1,2,125660,25242 -896,FR,DZ,201812,1,2,64666,9672 -896,FR,DZ,201812,3,2,131518,640 -896,FR,DZ,201812,4,2,302310,1940 -896,FR,DZ,201812,4,2,211755,2400 -896,FR,DZ,201812,4,2,28425,15 -896,FR,DZ,201812,4,2,115193,201 -896,FR,DZ,201812,4,2,94051,3893 -896,FR,DZ,201812,4,2,3503093,15824 -896,FR,DZ,201812,4,2,92950,216 -896,FR,DZ,201812,4,2,15236,146 -896,FR,DZ,201812,4,2,3635,300 -910,FR,DZ,201812,3,1,51138,60 -910,FR,DZ,201812,4,1,50081,9 -910,FR,DZ,201812,4,1,150,6 -910,FR,DZ,201812,0,2,200,0 -910,FR,DZ,201812,1,2,6107476,527193 -910,FR,DZ,201812,1,2,912000,128000 -910,FR,DZ,201812,1,2,97263,1632 -910,FR,DZ,201812,1,2,7100,1412 -910,FR,DZ,201812,1,2,12752,1401 -910,FR,DZ,201812,1,2,1400,60 -910,FR,DZ,201812,1,2,4157986,354667 -910,FR,DZ,201812,1,2,138117,11860 -910,FR,DZ,201812,1,2,1084933,146778 -910,FR,DZ,201812,1,2,415036,41694 -910,FR,DZ,201812,1,2,5535488,818633 -910,FR,DZ,201812,1,2,295591,35783 -910,FR,DZ,201812,1,2,407569,55621 -910,FR,DZ,201812,1,2,174726,24603 -910,FR,DZ,201812,1,2,50581,2025 -910,FR,DZ,201812,1,2,980978,127661 -910,FR,DZ,201812,1,2,508662,64366 -910,FR,DZ,201812,1,2,1253270,103137 -910,FR,DZ,201812,1,2,30571,2085 -910,FR,DZ,201812,3,2,29793,2680 -910,FR,DZ,201812,3,2,202400,8000 -910,FR,DZ,201812,3,2,193354,13230 -910,FR,DZ,201812,4,2,554293,1323 -910,FR,DZ,201812,4,2,252189,1466 -910,FR,DZ,201812,4,2,13896,2570 -910,FR,DZ,201812,9,2,31900,4737 -920,FR,DZ,201812,1,2,1347000,157266 -920,FR,DZ,201812,1,2,17000,947 -920,FR,DZ,201812,1,2,537704,14210 -920,FR,DZ,201812,1,2,12711,850 -920,FR,DZ,201812,1,2,112756,21174 -920,FR,DZ,201812,1,2,21081,6642 -920,FR,DZ,201812,4,2,7175,10 -931,FR,DZ,201812,1,1,881456,319274 -931,FR,DZ,201812,1,1,105676,35619 -931,FR,DZ,201812,3,1,2329,168 -931,FR,DZ,201812,4,1,1420,1 -931,FR,DZ,201812,4,1,91,1 -931,FR,DZ,201812,4,1,159271,2065 -931,FR,DZ,201812,4,1,562,1 -931,FR,DZ,201812,0,2,1474,15 -931,FR,DZ,201812,1,2,6870054,213200 -931,FR,DZ,201812,1,2,789,14 -931,FR,DZ,201812,1,2,130680,699 -931,FR,DZ,201812,1,2,1666,6 -931,FR,DZ,201812,1,2,63267,1260 -931,FR,DZ,201812,1,2,62758,468 -931,FR,DZ,201812,1,2,95284,360 -931,FR,DZ,201812,1,2,263716,16739 -931,FR,DZ,201812,1,2,192650,27595 -931,FR,DZ,201812,1,2,551781,8472 -931,FR,DZ,201812,1,2,24861,173 -931,FR,DZ,201812,1,2,12629761,952410 -931,FR,DZ,201812,1,2,83857,36870 -931,FR,DZ,201812,1,2,58619,3100 -931,FR,DZ,201812,1,2,184354,20244 -931,FR,DZ,201812,1,2,23922,1900 -931,FR,DZ,201812,1,2,316394,4732 -931,FR,DZ,201812,1,2,272485,32135 -931,FR,DZ,201812,1,2,23359,5000 -931,FR,DZ,201812,1,2,1544158,55209 -931,FR,DZ,201812,1,2,79766,856 -931,FR,DZ,201812,1,2,1547982,535488 -931,FR,DZ,201812,1,2,2215,201 -931,FR,DZ,201812,1,2,4620019,196420 -931,FR,DZ,201812,1,2,224652,80363 -931,FR,DZ,201812,1,2,1095627,27505 -931,FR,DZ,201812,1,2,4971,162 -931,FR,DZ,201812,3,2,2234231,137883 -931,FR,DZ,201812,3,2,1386,3 -931,FR,DZ,201812,3,2,5265,63 -931,FR,DZ,201812,4,2,5089295,24340 -931,FR,DZ,201812,4,2,27935,64 -931,FR,DZ,201812,4,2,1618,20 -931,FR,DZ,201812,4,2,7876,58 -931,FR,DZ,201812,4,2,110625,1456 -931,FR,DZ,201812,4,2,8105,30 -931,FR,DZ,201812,4,2,2088675,9159 -931,FR,DZ,201812,4,2,2031,2 -931,FR,DZ,201812,4,2,50,8 -931,FR,DZ,201812,4,2,4576,113 -931,FR,DZ,201812,4,2,385414,16630 -931,FR,DZ,201812,5,2,8093,70 -939,FR,DZ,201812,1,1,87812,6000 -939,FR,DZ,201812,1,1,444901,124999 -939,FR,DZ,201812,1,1,121517,40958 -939,FR,DZ,201812,3,1,4176,157 -939,FR,DZ,201812,4,1,6980,4 -939,FR,DZ,201812,4,1,83825,71 -939,FR,DZ,201812,0,2,70,4 -939,FR,DZ,201812,1,2,11138083,504916 -939,FR,DZ,201812,1,2,22230,5 -939,FR,DZ,201812,1,2,25474,565 -939,FR,DZ,201812,1,2,66313,2377 -939,FR,DZ,201812,1,2,8752,91 -939,FR,DZ,201812,1,2,705801,34779 -939,FR,DZ,201812,1,2,83332,3328 -939,FR,DZ,201812,1,2,59440,955 -939,FR,DZ,201812,1,2,2738390,197060 -939,FR,DZ,201812,1,2,551631,1495 -939,FR,DZ,201812,1,2,1723351,104725 -939,FR,DZ,201812,1,2,1058735,60111 -939,FR,DZ,201812,1,2,57124,121 -939,FR,DZ,201812,1,2,1102463,112551 -939,FR,DZ,201812,1,2,49699,3364 -939,FR,DZ,201812,1,2,747324,53941 -939,FR,DZ,201812,1,2,10839022,700001 -939,FR,DZ,201812,1,2,43376,3000 -939,FR,DZ,201812,1,2,52534,6930 -939,FR,DZ,201812,1,2,780468,23688 -939,FR,DZ,201812,1,2,262292,12355 -939,FR,DZ,201812,1,2,776678,59950 -939,FR,DZ,201812,1,2,405508,15303 -939,FR,DZ,201812,1,2,1115836,36384 -939,FR,DZ,201812,1,2,197000,5300 -939,FR,DZ,201812,1,2,3147859,150762 -939,FR,DZ,201812,1,2,4732271,154082 -939,FR,DZ,201812,1,2,610330,8448 -939,FR,DZ,201812,1,2,333149,2850 -939,FR,DZ,201812,1,2,161949,23233 -939,FR,DZ,201812,1,2,326500,51964 -939,FR,DZ,201812,1,2,10018299,472651 -939,FR,DZ,201812,1,2,192554,774 -939,FR,DZ,201812,1,2,879935,46536 -939,FR,DZ,201812,1,2,911675,57731 -939,FR,DZ,201812,1,2,253987,4000 -939,FR,DZ,201812,1,2,18800,2646 -939,FR,DZ,201812,3,2,397503,26100 -939,FR,DZ,201812,3,2,144425,186 -939,FR,DZ,201812,3,2,189842,12707 -939,FR,DZ,201812,3,2,6085,28 -939,FR,DZ,201812,4,2,5996362,22514 -939,FR,DZ,201812,4,2,30401,46 -939,FR,DZ,201812,4,2,27798,1040 -939,FR,DZ,201812,4,2,5300,964 -939,FR,DZ,201812,4,2,146495,811 -939,FR,DZ,201812,4,2,722710,400 -939,FR,DZ,201812,4,2,92375,345 -939,FR,DZ,201812,4,2,4615382,25859 -939,FR,DZ,201812,4,2,7467,35 -939,FR,DZ,201812,4,2,8750,120 -939,FR,DZ,201812,4,2,2464,40 -939,FR,DZ,201812,4,2,446,25 -939,FR,DZ,201812,4,2,9759,19 -939,FR,DZ,201812,4,2,3362,6 -939,FR,DZ,201812,4,2,2313,8 -939,FR,DZ,201812,4,2,259380,9330 -939,FR,DZ,201812,4,2,4203,2 -941,FR,DZ,201812,1,2,19789,5893 -941,FR,DZ,201812,1,2,17900,1610 -941,FR,DZ,201812,1,2,803250,301349 -941,FR,DZ,201812,1,2,101675,37068 -941,FR,DZ,201812,1,2,303912,17235 -941,FR,DZ,201812,1,2,113190,8412 -941,FR,DZ,201812,1,2,163873,5300 -941,FR,DZ,201812,1,2,284867,158801 -949,FR,DZ,201812,3,1,86,9 -949,FR,DZ,201812,4,1,9859,97 -949,FR,DZ,201812,0,2,60,8 -949,FR,DZ,201812,1,2,558244,52696 -949,FR,DZ,201812,1,2,843,60 -949,FR,DZ,201812,1,2,3840,7 -949,FR,DZ,201812,1,2,168157,8622 -949,FR,DZ,201812,1,2,2940,123 -949,FR,DZ,201812,1,2,232535,17091 -949,FR,DZ,201812,1,2,68640,1621 -949,FR,DZ,201812,1,2,1887261,176201 -949,FR,DZ,201812,1,2,34947,1517 -949,FR,DZ,201812,1,2,43032,11072 -949,FR,DZ,201812,1,2,134376,7085 -949,FR,DZ,201812,1,2,50835,19567 -949,FR,DZ,201812,1,2,33805,1050 -949,FR,DZ,201812,1,2,35072,2508 -949,FR,DZ,201812,1,2,2705686,107645 -949,FR,DZ,201812,1,2,114552,51700 -949,FR,DZ,201812,1,2,11857,563 -949,FR,DZ,201812,1,2,22300,2117 -949,FR,DZ,201812,1,2,1582760,154728 -949,FR,DZ,201812,1,2,454182,26385 -949,FR,DZ,201812,3,2,56677,4083 -949,FR,DZ,201812,3,2,70,0 -949,FR,DZ,201812,3,2,32234,7763 -949,FR,DZ,201812,4,2,158652,1484 -949,FR,DZ,201812,4,2,52177,1340 -949,FR,DZ,201812,4,2,366993,8729 -949,FR,DZ,201812,4,2,52902,3660 -949,FR,DZ,201812,4,2,790376,12000 -949,FR,DZ,201812,4,2,6877,7 -951,FR,DZ,201812,4,1,93,559 -951,FR,DZ,201812,1,2,18217,124 -951,FR,DZ,201812,1,2,2949,288 -951,FR,DZ,201812,1,2,250422,83029 -951,FR,DZ,201812,1,2,51993,11794 -952,FR,DZ,201812,3,1,999,104 -952,FR,DZ,201812,4,1,13,20 -952,FR,DZ,201812,4,1,22,0 -952,FR,DZ,201812,1,2,48812,4947 -952,FR,DZ,201812,1,2,19339,3575 -952,FR,DZ,201812,1,2,265,25 -952,FR,DZ,201812,1,2,8940,2090 -952,FR,DZ,201812,1,2,1538172,1059856 -952,FR,DZ,201812,1,2,22364,7114 -952,FR,DZ,201812,1,2,534183,46863 -952,FR,DZ,201812,1,2,11819,14120 -952,FR,DZ,201812,1,2,361862,60057 -952,FR,DZ,201812,1,2,178027,134014 -952,FR,DZ,201812,1,2,17263,15924 -952,FR,DZ,201812,3,2,22,16 -952,FR,DZ,201812,3,2,333655,236717 -952,FR,DZ,201812,4,2,8400,1 -952,FR,DZ,201812,4,2,2608,16 -961,FR,DZ,201812,0,1,10547,655 -961,FR,DZ,201812,4,1,74,11 -961,FR,DZ,201812,1,2,32290,702 -962,FR,DZ,201812,3,1,430,84 -962,FR,DZ,201812,4,1,19860,862 -962,FR,DZ,201812,0,2,1150,1 -962,FR,DZ,201812,1,2,364436,15728 -962,FR,DZ,201812,1,2,26700,6790 -962,FR,DZ,201812,1,2,66270,1071 -962,FR,DZ,201812,1,2,24048,523 -962,FR,DZ,201812,1,2,44000,14392 -962,FR,DZ,201812,1,2,296689,55279 -962,FR,DZ,201812,1,2,86201,41742 -962,FR,DZ,201812,1,2,66146,38777 -962,FR,DZ,201812,1,2,116935,39660 -962,FR,DZ,201812,1,2,91176,18270 -962,FR,DZ,201812,1,2,2976957,70931 -962,FR,DZ,201812,1,2,759342,3320 -962,FR,DZ,201812,3,2,78861,1245 -962,FR,DZ,201812,3,2,4796,110 -962,FR,DZ,201812,4,2,40528,4638 -962,FR,DZ,201812,4,2,27695,356 -963,FR,DZ,201812,3,1,274,4 -963,FR,DZ,201812,4,1,3061,1075 -963,FR,DZ,201812,0,2,305,6 -963,FR,DZ,201812,1,2,1079431,26883 -963,FR,DZ,201812,1,2,535523,4930 -963,FR,DZ,201812,1,2,243533,2942 -963,FR,DZ,201812,1,2,333994,56001 -963,FR,DZ,201812,1,2,231536,8999 -963,FR,DZ,201812,1,2,77076,235 -963,FR,DZ,201812,3,2,91648,2231 -963,FR,DZ,201812,4,2,248902,1738 -963,FR,DZ,201812,4,2,372515,1687 -963,FR,DZ,201812,4,2,1181,430 -963,FR,DZ,201812,5,2,1500,14 -971,FR,DZ,201812,1,2,182034,14965 -971,FR,DZ,201812,1,2,26693,965 -971,FR,DZ,201812,1,2,7251,74 -971,FR,DZ,201812,1,2,1589,25 -971,FR,DZ,201812,1,2,792485,76162 -971,FR,DZ,201812,1,2,5431,235 -971,FR,DZ,201812,1,2,45342,1882 -971,FR,DZ,201812,1,2,740583,96072 -971,FR,DZ,201812,1,2,430461,20134 -971,FR,DZ,201812,1,2,56458,13638 -971,FR,DZ,201812,1,2,41470,12500 -971,FR,DZ,201812,3,2,7641,1176 -971,FR,DZ,201812,4,2,5386,1 -971,FR,DZ,201812,4,2,8575,4 -971,FR,DZ,201812,4,2,32953,47 -971,FR,DZ,201812,4,2,4653,160 -972,FR,DZ,201812,1,2,95793,4339 -972,FR,DZ,201812,1,2,18,7 -972,FR,DZ,201812,1,2,599406,1129107 -972,FR,DZ,201812,1,2,96462,36036 -972,FR,DZ,201812,1,2,7385,2985 -972,FR,DZ,201812,1,2,156839,64536 -972,FR,DZ,201812,1,2,21648,47260 -972,FR,DZ,201812,1,2,778122,311804 -972,FR,DZ,201812,1,2,207340,323487 -972,FR,DZ,201812,1,2,868147,336719 -972,FR,DZ,201812,1,2,142235,57634 -972,FR,DZ,201812,3,2,17656,23814 -972,FR,DZ,201812,4,2,4150,410 -973,FR,DZ,201812,1,1,50,81 -973,FR,DZ,201812,4,1,235,2 -973,FR,DZ,201812,0,2,41410,17760 -973,FR,DZ,201812,1,2,1544,125 -973,FR,DZ,201812,1,2,31070,2125 -973,FR,DZ,201812,1,2,645837,286593 -973,FR,DZ,201812,1,2,165502,29177 -973,FR,DZ,201812,1,2,62968,48546 -973,FR,DZ,201812,1,2,56855,13478 -973,FR,DZ,201812,1,2,424335,179688 -973,FR,DZ,201812,1,2,11056,3400 -973,FR,DZ,201812,1,2,32317,7997 -973,FR,DZ,201812,1,2,31858,7920 -973,FR,DZ,201812,1,2,2098131,229382 -973,FR,DZ,201812,1,2,107906,46376 -973,FR,DZ,201812,3,2,9641,5839 -973,FR,DZ,201812,4,2,90,0 -973,FR,DZ,201812,4,2,50,35 -973,FR,DZ,201812,4,2,1223,40 -974,FR,DZ,201812,1,1,24362,840 -974,FR,DZ,201812,3,1,315,30 -974,FR,DZ,201812,4,1,29818,1720 -974,FR,DZ,201812,4,1,64546,2377 -974,FR,DZ,201812,4,1,26,0 -974,FR,DZ,201812,5,1,22,0 -974,FR,DZ,201812,0,2,200,2 -974,FR,DZ,201812,1,2,292094,28359 -974,FR,DZ,201812,1,2,51298,3321 -974,FR,DZ,201812,1,2,146070,24438 -974,FR,DZ,201812,1,2,8141,1506 -974,FR,DZ,201812,1,2,38556,8087 -974,FR,DZ,201812,3,2,629,142 -974,FR,DZ,201812,4,2,95967,5276 -974,FR,DZ,201812,4,2,50,136 -974,FR,DZ,201812,4,2,155602,1623 -974,FR,DZ,201812,4,2,11676,1970 -974,FR,DZ,201812,5,2,1069,18 -975,FR,DZ,201812,1,1,318,134 -975,FR,DZ,201812,1,2,46365,2170 -975,FR,DZ,201812,1,2,23867,770 -975,FR,DZ,201812,1,2,1886,48 -975,FR,DZ,201812,1,2,790,680 -975,FR,DZ,201812,1,2,276035,76726 -975,FR,DZ,201812,1,2,1667,200 -975,FR,DZ,201812,1,2,9199,140 -975,FR,DZ,201812,1,2,294,60 -975,FR,DZ,201812,1,2,61030,11772 -975,FR,DZ,201812,1,2,55944,17353 -975,FR,DZ,201812,4,2,57613,26 -975,FR,DZ,201812,4,2,450,75 -976,FR,DZ,201812,4,1,29,20 -976,FR,DZ,201812,1,2,60403,33673 -976,FR,DZ,201812,1,2,79786,22618 -976,FR,DZ,201812,1,2,5195,2207 -979,FR,DZ,201812,1,1,222,164 -979,FR,DZ,201812,1,1,14282,5405 -979,FR,DZ,201812,3,1,1128,18 -979,FR,DZ,201812,4,1,163,60 -979,FR,DZ,201812,4,1,131,2 -979,FR,DZ,201812,4,1,46369,937 -979,FR,DZ,201812,4,1,932,63 -979,FR,DZ,201812,0,2,1945,22 -979,FR,DZ,201812,1,2,2918876,96974 -979,FR,DZ,201812,1,2,24650,720 -979,FR,DZ,201812,1,2,39563,760 -979,FR,DZ,201812,1,2,722701,13689 -979,FR,DZ,201812,1,2,19500,800 -979,FR,DZ,201812,1,2,1680,183 -979,FR,DZ,201812,1,2,332151,10887 -979,FR,DZ,201812,1,2,8825,1618 -979,FR,DZ,201812,1,2,16206,60 -979,FR,DZ,201812,1,2,3578106,190746 -979,FR,DZ,201812,1,2,471942,36439 -979,FR,DZ,201812,1,2,195443,4745 -979,FR,DZ,201812,1,2,651684,10089 -979,FR,DZ,201812,1,2,135378,14806 -979,FR,DZ,201812,1,2,696202,29975 -979,FR,DZ,201812,1,2,60981,6208 -979,FR,DZ,201812,1,2,1121549,28122 -979,FR,DZ,201812,1,2,226166,15743 -979,FR,DZ,201812,1,2,1621927,160388 -979,FR,DZ,201812,1,2,832726,8559 -979,FR,DZ,201812,1,2,612901,63029 -979,FR,DZ,201812,1,2,139592,19281 -979,FR,DZ,201812,1,2,21571,11970 -979,FR,DZ,201812,1,2,92800,14000 -979,FR,DZ,201812,3,2,118713,9787 -979,FR,DZ,201812,3,2,44333,599 -979,FR,DZ,201812,3,2,8125,18 -979,FR,DZ,201812,4,2,3167787,7152 -979,FR,DZ,201812,4,2,4993,15 -979,FR,DZ,201812,4,2,109460,1251 -979,FR,DZ,201812,4,2,694620,1631 -979,FR,DZ,201812,4,2,107969,2495 -979,FR,DZ,201812,4,2,4365198,28141 -979,FR,DZ,201812,4,2,5469,2 -979,FR,DZ,201812,4,2,13346,18 -979,FR,DZ,201812,4,2,10603,80 -979,FR,DZ,201812,4,2,13271,175 -979,FR,DZ,201812,4,2,17305,13 -979,FR,DZ,201812,4,2,113771,1210 -979,FR,DZ,201812,4,2,3420,1 -999,FR,DZ,201812,1,1,0,129651263 -999,FR,DZ,201812,3,1,53,0 -999,FR,DZ,201812,4,1,1112,0 -999,FR,DZ,201812,1,2,161696,25536 -999,FR,DZ,201812,1,2,7719,3000 -999,FR,DZ,201812,1,2,121,2 -999,FR,DZ,201812,1,2,6930,6000 -999,FR,DZ,201812,1,2,2030,1 -999,FR,DZ,201812,1,2,4227135,1608938 -999,FR,DZ,201812,1,2,72341,43484 -999,FR,DZ,201812,1,2,108100,18034 -999,FR,DZ,201812,1,2,26211,3760 -999,FR,DZ,201812,1,2,161194,55430 -999,FR,DZ,201812,1,2,225232,75000 -999,FR,DZ,201812,1,2,40332,14000 -999,FR,DZ,201812,1,2,9540,280 -999,FR,DZ,201812,1,2,1300,0 -999,FR,DZ,201812,1,2,170549,131900 -999,FR,DZ,201812,1,2,655442,104837 -999,FR,DZ,201812,1,2,87758,6937 -999,FR,DZ,201812,1,2,599663,65911 -999,FR,DZ,201812,1,2,53050,255000 -999,FR,DZ,201812,1,2,30974,3600 -999,FR,DZ,201812,3,2,169882,308877 -999,FR,DZ,201812,4,2,149729,655 -999,FR,DZ,201812,4,2,2802,0 -999,FR,DZ,201812,4,2,3,0 -999,FR,DZ,201812,4,2,221869,594 -999,FR,DZ,201812,4,2,627,25 -999,FR,DZ,201812,4,2,1,0 -999,FR,DZ,201812,4,2,180,0 -999,FR,DZ,201812,4,2,1192,110 -999,FR,DZ,201812,8,2,411294,747808 -999,FR,DZ,201812,8,2,2067203,3758551 -999,FR,DZ,201812,8,2,466133,847515 -001,FR,TN,201812,1,1,6650,2500 -001,FR,TN,201812,4,1,1900,20 -001,FR,TN,201812,1,2,40250,31000 -001,FR,TN,201812,4,2,103840,1675 -001,FR,TN,201812,4,2,200632,3272 -001,FR,TN,201812,4,2,131485,1329 -011,FR,TN,201812,1,2,1168925,5620000 -012,FR,TN,201812,1,2,5193327,24934000 -015,FR,TN,201812,1,2,2073,3062 -020,FR,TN,201812,1,2,1494843,2681525 -020,FR,TN,201812,1,2,83375,125000 -020,FR,TN,201812,1,2,132240,200000 -031,FR,TN,201812,1,1,17903,15100 -031,FR,TN,201812,1,1,831,400 -031,FR,TN,201812,1,1,8868,12087 -031,FR,TN,201812,1,1,2650,3103 -035,FR,TN,201812,1,1,262366,24750 -035,FR,TN,201812,1,1,147066,19000 -039,FR,TN,201812,1,1,31870,44000 -039,FR,TN,201812,1,1,412619,388477 -039,FR,TN,201812,1,1,7426,4815 -039,FR,TN,201812,1,1,8800,3802 -039,FR,TN,201812,1,1,1181349,603975 -039,FR,TN,201812,4,1,44480,3534 -039,FR,TN,201812,4,1,61194,3912 -039,FR,TN,201812,1,2,2300,2520 -041,FR,TN,201812,3,1,40878,44150 -042,FR,TN,201812,1,2,11080,173 -043,FR,TN,201812,1,1,94,800 -043,FR,TN,201812,1,2,3225,289 -043,FR,TN,201812,3,2,5780,2160 -045,FR,TN,201812,1,2,1293569,314103 -049,FR,TN,201812,1,1,37107,80019 -049,FR,TN,201812,1,1,19929,67960 -049,FR,TN,201812,1,1,26607,166391 -049,FR,TN,201812,1,1,13095,23973 -049,FR,TN,201812,1,1,6176,50000 -049,FR,TN,201812,3,1,6844,50000 -049,FR,TN,201812,1,2,439169,863890 -049,FR,TN,201812,1,2,23723,89910 -049,FR,TN,201812,1,2,38205,76310 -049,FR,TN,201812,1,2,141498,408007 -049,FR,TN,201812,1,2,34562,85210 -049,FR,TN,201812,1,2,18626,102125 -049,FR,TN,201812,1,2,46210,102900 -051,FR,TN,201812,1,2,23751,216858 -056,FR,TN,201812,1,2,62355,187630 -056,FR,TN,201812,1,2,55903,49980 -056,FR,TN,201812,1,2,22767,50000 -056,FR,TN,201812,1,2,24497,23000 -057,FR,TN,201812,1,1,280,450 -057,FR,TN,201812,3,1,288,400 -057,FR,TN,201812,1,2,600,400 -091,FR,TN,201812,1,2,577,200 -091,FR,TN,201812,4,2,673,11 -092,FR,TN,201812,4,1,2114,90 -092,FR,TN,201812,1,2,22638,7513 -092,FR,TN,201812,3,2,338,100 -092,FR,TN,201812,4,2,1581,15 -099,FR,TN,201812,1,1,67691,6807 -099,FR,TN,201812,1,1,9829,9375 -099,FR,TN,201812,1,1,22050,17640 -099,FR,TN,201812,3,1,27131,1552 -099,FR,TN,201812,3,1,5880,100 -099,FR,TN,201812,4,1,29178,1380 -099,FR,TN,201812,1,2,152478,9228 -099,FR,TN,201812,1,2,642,100 -099,FR,TN,201812,1,2,1294,567 -099,FR,TN,201812,1,2,42187,15750 -099,FR,TN,201812,3,2,4258,1063 -099,FR,TN,201812,3,2,42645,1852 -099,FR,TN,201812,4,2,16528,67 -099,FR,TN,201812,4,2,21328,460 -099,FR,TN,201812,4,2,27634,151 -112,FR,TN,201812,1,2,18000,19800 -121,FR,TN,201812,1,1,13295,4482 -125,FR,TN,201812,1,2,21208,19113 -125,FR,TN,201812,1,2,103496,7458 -125,FR,TN,201812,1,2,34600,21576 -128,FR,TN,201812,1,1,18740,24419 -128,FR,TN,201812,1,1,2027,4672 -128,FR,TN,201812,1,1,34357,75658 -128,FR,TN,201812,1,1,6511,13896 -128,FR,TN,201812,1,1,3753,10419 -128,FR,TN,201812,1,1,8981,30704 -128,FR,TN,201812,1,1,54090,154665 -128,FR,TN,201812,1,2,74467,19001 -128,FR,TN,201812,1,2,1470,316 -131,FR,TN,201812,1,1,4010,480 -131,FR,TN,201812,1,2,11875,799 -131,FR,TN,201812,1,2,21931,3191 -132,FR,TN,201812,0,2,148,2 -132,FR,TN,201812,1,2,18583,1576 -132,FR,TN,201812,1,2,1450,900 -132,FR,TN,201812,1,2,23700,7791 -132,FR,TN,201812,3,2,189,8 -133,FR,TN,201812,1,1,188729,71308 -133,FR,TN,201812,1,1,16386,3600 -133,FR,TN,201812,1,1,4000,2575 -133,FR,TN,201812,3,1,23201,1928 -133,FR,TN,201812,1,2,6301,50 -133,FR,TN,201812,3,2,321,51 -133,FR,TN,201812,4,2,12989,140 -135,FR,TN,201812,1,2,29281,180 -136,FR,TN,201812,1,1,3972,2167 -136,FR,TN,201812,1,1,80,15 -136,FR,TN,201812,0,2,30,1 -136,FR,TN,201812,1,2,16899,12355 -136,FR,TN,201812,1,2,2100,1950 -136,FR,TN,201812,1,2,26290,26000 -136,FR,TN,201812,4,2,145,50 -139,FR,TN,201812,1,1,273134,174023 -139,FR,TN,201812,1,1,50046,37749 -139,FR,TN,201812,1,1,117112,69477 -139,FR,TN,201812,1,1,138245,62205 -139,FR,TN,201812,1,1,4217,8400 -139,FR,TN,201812,1,1,136586,50337 -139,FR,TN,201812,1,1,55710,20254 -139,FR,TN,201812,1,1,30600,23256 -139,FR,TN,201812,1,1,49703,35307 -139,FR,TN,201812,1,1,49058,19210 -139,FR,TN,201812,3,1,2227,161 -139,FR,TN,201812,0,2,60,11 -139,FR,TN,201812,1,2,98637,17087 -139,FR,TN,201812,1,2,8492,5172 -139,FR,TN,201812,1,2,6345,264 -139,FR,TN,201812,1,2,199195,120049 -139,FR,TN,201812,1,2,103518,49231 -139,FR,TN,201812,1,2,301389,38200 -139,FR,TN,201812,3,2,16351,1960 -139,FR,TN,201812,3,2,53700,3574 -139,FR,TN,201812,4,2,11,2 -141,FR,TN,201812,1,2,27948,22137 -141,FR,TN,201812,1,2,20600,2400 -141,FR,TN,201812,1,2,466227,121927 -141,FR,TN,201812,1,2,8200,596 -142,FR,TN,201812,4,1,28575,1165 -142,FR,TN,201812,1,2,13991,825 -142,FR,TN,201812,1,2,50754,6078 -142,FR,TN,201812,1,2,393718,300966 -142,FR,TN,201812,4,2,2307,241 -143,FR,TN,201812,1,2,85932,192222 -144,FR,TN,201812,1,2,95802,57880 -144,FR,TN,201812,1,2,25579,4699 -144,FR,TN,201812,1,2,30850,22954 -144,FR,TN,201812,1,2,428452,318000 -144,FR,TN,201812,3,2,35985,24000 -146,FR,TN,201812,1,2,754,52 -146,FR,TN,201812,1,2,57616,15870 -147,FR,TN,201812,1,2,30771,3842 -147,FR,TN,201812,1,2,5662,843 -148,FR,TN,201812,1,1,11786,1490 -148,FR,TN,201812,1,1,964,124 -148,FR,TN,201812,1,1,108803,16134 -148,FR,TN,201812,4,2,637,16 -161,FR,TN,201812,1,1,2024,1008 -161,FR,TN,201812,1,1,361,180 -161,FR,TN,201812,1,1,1368,1182 -161,FR,TN,201812,1,2,3635,5250 -161,FR,TN,201812,3,2,700,1250 -162,FR,TN,201812,1,2,1737,875 -163,FR,TN,201812,1,1,110126,28399 -163,FR,TN,201812,1,1,7577,13536 -163,FR,TN,201812,1,1,4842,4354 -163,FR,TN,201812,1,1,34684,65784 -163,FR,TN,201812,1,1,82725,25304 -163,FR,TN,201812,1,1,17084,8208 -163,FR,TN,201812,1,1,7824,13920 -163,FR,TN,201812,4,1,439,112 -163,FR,TN,201812,1,2,20516,11209 -163,FR,TN,201812,1,2,8346,4148 -163,FR,TN,201812,1,2,15600,7975 -163,FR,TN,201812,1,2,41252,31574 -164,FR,TN,201812,1,1,646432,324195 -164,FR,TN,201812,1,1,104534,44928 -164,FR,TN,201812,1,1,448345,187706 -164,FR,TN,201812,1,1,305756,116392 -164,FR,TN,201812,1,1,52594,20600 -164,FR,TN,201812,1,1,984817,670570 -164,FR,TN,201812,1,1,42295,18869 -164,FR,TN,201812,1,1,801893,362475 -164,FR,TN,201812,1,1,12055,5520 -164,FR,TN,201812,1,1,19154,25005 -164,FR,TN,201812,3,1,1002,60 -164,FR,TN,201812,3,1,3610,1872 -164,FR,TN,201812,4,1,76944,26856 -164,FR,TN,201812,1,2,7269,2289 -166,FR,TN,201812,1,1,141484,93244 -166,FR,TN,201812,1,1,128477,95358 -166,FR,TN,201812,1,1,47300,56565 -166,FR,TN,201812,1,1,89255,29934 -166,FR,TN,201812,1,1,38505,26087 -166,FR,TN,201812,1,1,16819,4733 -166,FR,TN,201812,1,1,64867,35150 -166,FR,TN,201812,1,1,49042,12665 -166,FR,TN,201812,1,1,113803,45538 -166,FR,TN,201812,1,1,13288,11520 -166,FR,TN,201812,1,2,10041,1936 -166,FR,TN,201812,1,2,19220,17205 -179,FR,TN,201812,1,2,37476,7773 -179,FR,TN,201812,1,2,519966,434225 -179,FR,TN,201812,1,2,220623,128750 -179,FR,TN,201812,1,2,13179,7700 -179,FR,TN,201812,3,2,35600,48000 -181,FR,TN,201812,1,1,1845,218 -181,FR,TN,201812,3,1,595,73 -181,FR,TN,201812,1,2,8822,7000 -181,FR,TN,201812,4,2,29150,45 -182,FR,TN,201812,1,1,2918,500 -182,FR,TN,201812,1,1,239393,58608 -182,FR,TN,201812,1,1,222365,52977 -182,FR,TN,201812,1,1,7756,2794 -182,FR,TN,201812,1,1,15062,2484 -182,FR,TN,201812,1,1,353337,87540 -182,FR,TN,201812,1,1,52853,13105 -182,FR,TN,201812,3,1,1177,14 -182,FR,TN,201812,4,1,185,9 -182,FR,TN,201812,4,1,352,26 -182,FR,TN,201812,1,2,40339,8469 -182,FR,TN,201812,3,2,580,125 -321,FR,TN,201812,1,2,2144,132 -321,FR,TN,201812,1,2,10524,10160 -323,FR,TN,201812,1,2,294,21 -325,FR,TN,201812,1,2,2181,668 -330,FR,TN,201812,1,2,1451792,4600972 -330,FR,TN,201812,1,2,12975,700 -330,FR,TN,201812,1,2,5244692,14830581 -341,FR,TN,201812,4,1,312,168 -341,FR,TN,201812,1,2,191094,26699 -341,FR,TN,201812,1,2,74,11 -341,FR,TN,201812,1,2,588,9 -341,FR,TN,201812,1,2,73220,24722 -341,FR,TN,201812,1,2,27203,13585 -341,FR,TN,201812,1,2,219300,83674 -341,FR,TN,201812,1,2,25807,12414 -341,FR,TN,201812,1,2,68299,34253 -341,FR,TN,201812,3,2,308699,124831 -341,FR,TN,201812,4,2,1528,142 -341,FR,TN,201812,4,2,1598,120 -349,FR,TN,201812,1,2,1985,429 -349,FR,TN,201812,1,2,2408,250 -349,FR,TN,201812,3,2,4072,400 -349,FR,TN,201812,4,2,76,1 -451,FR,TN,201812,1,1,46875,15474 -451,FR,TN,201812,1,1,377935,240960 -451,FR,TN,201812,1,1,519919,166990 -451,FR,TN,201812,1,1,101721,24810 -451,FR,TN,201812,1,1,48307,31217 -451,FR,TN,201812,1,2,14076,6900 -451,FR,TN,201812,1,2,15500,27540 -459,FR,TN,201812,1,2,5289,501 -459,FR,TN,201812,1,2,2408,203 -462,FR,TN,201812,1,1,12252,41264 -462,FR,TN,201812,1,1,2234,9892 -462,FR,TN,201812,1,1,9507,15380 -462,FR,TN,201812,1,1,10004,94837 -462,FR,TN,201812,1,2,1980,2100 -522,FR,TN,201812,1,2,893418,1673484 -522,FR,TN,201812,3,2,18136,10933 -532,FR,TN,201812,1,1,22623,27327 -532,FR,TN,201812,1,1,23961,22327 -532,FR,TN,201812,1,1,24402,23333 -532,FR,TN,201812,1,1,4368,4181 -532,FR,TN,201812,3,1,4142,257 -532,FR,TN,201812,1,2,82596,12193 -532,FR,TN,201812,1,2,73196,180 -532,FR,TN,201812,1,2,275029,1749 -532,FR,TN,201812,1,2,169487,14624 -532,FR,TN,201812,3,2,55900,14316 -533,FR,TN,201812,1,2,72726,35753 -533,FR,TN,201812,1,2,17236,5042 -533,FR,TN,201812,1,2,300,56 -536,FR,TN,201812,1,1,5904,253 -536,FR,TN,201812,1,2,2483,99 -536,FR,TN,201812,3,2,23883,20446 -536,FR,TN,201812,3,2,15088,2766 -542,FR,TN,201812,1,1,5914,5246 -542,FR,TN,201812,1,1,5694,5415 -542,FR,TN,201812,1,2,109057,22348 -542,FR,TN,201812,1,2,60970,7350 -542,FR,TN,201812,3,2,72142,29870 -542,FR,TN,201812,3,2,23606,19070 -543,FR,TN,201812,1,1,8444,55 -543,FR,TN,201812,1,2,8993,3301 -551,FR,TN,201812,1,1,394753,115462 -551,FR,TN,201812,1,1,1153,1006 -551,FR,TN,201812,1,1,351,1501 -551,FR,TN,201812,1,1,17034,14485 -551,FR,TN,201812,1,2,528349,103775 -551,FR,TN,201812,1,2,13662,508 -551,FR,TN,201812,1,2,527,5 -551,FR,TN,201812,3,2,9132,2482 -551,FR,TN,201812,4,2,1077,5 -551,FR,TN,201812,4,2,1852,0 -552,FR,TN,201812,1,1,654700,221087 -552,FR,TN,201812,1,1,248568,2932 -552,FR,TN,201812,1,1,5263,2300 -552,FR,TN,201812,1,1,55897,49719 -552,FR,TN,201812,3,1,12800,2526 -552,FR,TN,201812,1,2,130145,46485 -552,FR,TN,201812,1,2,8636,396 -552,FR,TN,201812,3,2,95390,30418 -561,FR,TN,201812,1,1,125911,25265 -561,FR,TN,201812,1,2,7000,700 -561,FR,TN,201812,1,2,2680,43 -561,FR,TN,201812,1,2,124550,27000 -562,FR,TN,201812,1,2,35862,8977 -562,FR,TN,201812,3,2,15035,1578 -563,FR,TN,201812,1,2,49444,23800 -564,FR,TN,201812,1,2,4505,840 -564,FR,TN,201812,1,2,3312,1211 -564,FR,TN,201812,3,2,2972,950 -565,FR,TN,201812,1,1,1341,17 -565,FR,TN,201812,1,1,24252,1780 -565,FR,TN,201812,1,1,15710,14820 -565,FR,TN,201812,1,1,4871,2551 -565,FR,TN,201812,1,2,190163,6476 -565,FR,TN,201812,1,2,50843,280 -565,FR,TN,201812,1,2,2338,103 -565,FR,TN,201812,4,2,36560,389 -568,FR,TN,201812,1,1,95581,6425 -568,FR,TN,201812,1,1,51414,11645 -568,FR,TN,201812,1,1,16158,2600 -568,FR,TN,201812,1,1,7665,1023 -568,FR,TN,201812,3,1,34572,1165 -568,FR,TN,201812,4,1,1421,1 -568,FR,TN,201812,1,2,1787989,273022 -568,FR,TN,201812,1,2,900514,16798 -568,FR,TN,201812,1,2,109538,12044 -568,FR,TN,201812,1,2,108055,15127 -568,FR,TN,201812,1,2,13800,2425 -568,FR,TN,201812,1,2,692,100 -568,FR,TN,201812,1,2,350659,98806 -568,FR,TN,201812,1,2,28828,20980 -568,FR,TN,201812,3,2,938763,63243 -568,FR,TN,201812,3,2,31648,1575 -568,FR,TN,201812,4,2,104,37 -568,FR,TN,201812,4,2,3821,56 -568,FR,TN,201812,4,2,18547,171 -611,FR,TN,201812,3,1,111,11 -611,FR,TN,201812,1,2,9285,7819 -611,FR,TN,201812,1,2,4000,23100 -614,FR,TN,201812,1,1,10016,75340 -614,FR,TN,201812,1,2,95407,216226 -614,FR,TN,201812,1,2,6534,23750 -614,FR,TN,201812,3,2,729,319 -621,FR,TN,201812,1,1,745911,22640000 -621,FR,TN,201812,1,1,189845,5500000 -621,FR,TN,201812,1,2,2218,4290 -621,FR,TN,201812,1,2,827,275 -621,FR,TN,201812,1,2,7380,20880 -631,FR,TN,201812,3,2,1694,24000 -632,FR,TN,201812,1,2,732,2400 -634,FR,TN,201812,1,2,3486,22500 -639,FR,TN,201812,1,2,39163,46350 -641,FR,TN,201812,1,2,4945,22050 -650,FR,TN,201812,1,1,5074,26730 -650,FR,TN,201812,1,2,37822,179550 -691,FR,TN,201812,1,1,8888,1879 -691,FR,TN,201812,1,1,9280,11200 -691,FR,TN,201812,1,1,14969,24000 -691,FR,TN,201812,3,1,6828,285 -691,FR,TN,201812,1,2,1111205,129069 -691,FR,TN,201812,1,2,22628,22464 -691,FR,TN,201812,3,2,50897,33628 -691,FR,TN,201812,4,2,3020,24 -691,FR,TN,201812,4,2,5830,638 -692,FR,TN,201812,1,1,21,280 -692,FR,TN,201812,1,1,50896,115570 -692,FR,TN,201812,1,1,99390,561793 -692,FR,TN,201812,3,1,33,1500 -692,FR,TN,201812,4,1,100,1300 -692,FR,TN,201812,4,1,5441,880 -692,FR,TN,201812,1,2,264,5 -692,FR,TN,201812,1,2,12531,24362 -692,FR,TN,201812,1,2,37247,50000 -722,FR,TN,201812,1,1,2061357,5000000 -722,FR,TN,201812,1,1,674084,1600000 -723,FR,TN,201812,1,1,15100,19932 -723,FR,TN,201812,1,2,2715,2100 -723,FR,TN,201812,1,2,1857,2000 -723,FR,TN,201812,1,2,32834,26700 -724,FR,TN,201812,1,2,32,56 -724,FR,TN,201812,1,2,1328,1090 -724,FR,TN,201812,1,2,9768,25000 -729,FR,TN,201812,1,1,9749,15320 -729,FR,TN,201812,3,2,8078,3563 -811,FR,TN,201812,1,1,85,2 -812,FR,TN,201812,1,1,85,2 -813,FR,TN,201812,1,2,5457,9600 -813,FR,TN,201812,1,2,28656,78400 -819,FR,TN,201812,1,1,774,13 -819,FR,TN,201812,1,1,3397870,8502339 -819,FR,TN,201812,1,1,304,5 -819,FR,TN,201812,1,2,736781,55193 -819,FR,TN,201812,1,2,10375,4385 -819,FR,TN,201812,1,2,25381,22410 -819,FR,TN,201812,1,2,21402,800 -819,FR,TN,201812,1,2,4297,56 -819,FR,TN,201812,1,2,87019,171119 -819,FR,TN,201812,1,2,23802,5500 -819,FR,TN,201812,3,2,197048,8527 -819,FR,TN,201812,3,2,2640,1200 -819,FR,TN,201812,4,2,416,1 -819,FR,TN,201812,4,2,295387,911 -820,FR,TN,201812,1,2,3347,1070 -891,FR,TN,201812,1,1,284359,148190 -891,FR,TN,201812,1,1,219380,170760 -891,FR,TN,201812,1,1,8749,2834 -891,FR,TN,201812,3,1,7690,762 -891,FR,TN,201812,3,1,24820,8060 -891,FR,TN,201812,4,1,80,15 -891,FR,TN,201812,1,2,2799715,863721 -891,FR,TN,201812,1,2,692,150 -891,FR,TN,201812,1,2,279409,88332 -891,FR,TN,201812,1,2,376366,9180 -891,FR,TN,201812,1,2,252006,4517 -891,FR,TN,201812,1,2,63283,29688 -891,FR,TN,201812,1,2,8949,770 -891,FR,TN,201812,1,2,444374,128108 -891,FR,TN,201812,1,2,182649,75275 -891,FR,TN,201812,1,2,21218,11603 -891,FR,TN,201812,1,2,292756,198698 -891,FR,TN,201812,1,2,153038,177750 -891,FR,TN,201812,1,2,82327,93009 -891,FR,TN,201812,1,2,47932,34863 -891,FR,TN,201812,1,2,93535,74250 -891,FR,TN,201812,1,2,18000,9989 -891,FR,TN,201812,1,2,139909,123750 -891,FR,TN,201812,3,2,750856,142509 -891,FR,TN,201812,3,2,23539,2745 -891,FR,TN,201812,4,2,31678,3457 -891,FR,TN,201812,4,2,54279,3614 -891,FR,TN,201812,4,2,1577,6 -892,FR,TN,201812,1,1,62025,32467 -892,FR,TN,201812,1,1,270088,46422 -892,FR,TN,201812,1,1,34515,15498 -892,FR,TN,201812,1,1,513,50 -892,FR,TN,201812,1,2,839170,117270 -892,FR,TN,201812,1,2,137,0 -892,FR,TN,201812,1,2,1291,146 -892,FR,TN,201812,1,2,1350,36 -892,FR,TN,201812,1,2,9259,1154 -892,FR,TN,201812,1,2,333,19 -892,FR,TN,201812,1,2,60053,2575 -892,FR,TN,201812,1,2,11700,3000 -892,FR,TN,201812,1,2,129212,41920 -892,FR,TN,201812,1,2,12342,11580 -892,FR,TN,201812,3,2,103138,24690 -892,FR,TN,201812,3,2,4147,900 -892,FR,TN,201812,4,2,12563,1000 -892,FR,TN,201812,4,2,3883,50 -892,FR,TN,201812,4,2,20868,37 -892,FR,TN,201812,4,2,1148,280 -893,FR,TN,201812,0,1,1123,10 -893,FR,TN,201812,1,1,1135570,109562 -893,FR,TN,201812,1,1,3060,1885 -893,FR,TN,201812,1,1,272553,19412 -893,FR,TN,201812,1,1,24500,17280 -893,FR,TN,201812,1,1,253453,9003 -893,FR,TN,201812,3,1,228592,19746 -893,FR,TN,201812,4,1,821,11 -893,FR,TN,201812,4,1,775098,595 -893,FR,TN,201812,0,2,2845,7 -893,FR,TN,201812,1,2,11184112,211127 -893,FR,TN,201812,1,2,874007,24304 -893,FR,TN,201812,1,2,1825739,120476 -893,FR,TN,201812,1,2,353171,12062 -893,FR,TN,201812,1,2,1478419,88344 -893,FR,TN,201812,1,2,164160,30231 -893,FR,TN,201812,1,2,19635,4012 -893,FR,TN,201812,1,2,18379,18635 -893,FR,TN,201812,3,2,1170168,59360 -893,FR,TN,201812,3,2,9475,1500 -893,FR,TN,201812,3,2,24843,11731 -893,FR,TN,201812,4,2,1072027,5999 -893,FR,TN,201812,4,2,573,15 -893,FR,TN,201812,4,2,33400,500 -893,FR,TN,201812,4,2,1235657,5423 -893,FR,TN,201812,4,2,105779,25 -893,FR,TN,201812,4,2,145573,2726 -893,FR,TN,201812,4,2,1273,130 -893,FR,TN,201812,4,2,4870,10 -894,FR,TN,201812,3,2,27500,3120 -895,FR,TN,201812,1,2,14328,7898 -896,FR,TN,201812,1,1,7125,1122 -896,FR,TN,201812,1,1,306119,22084 -896,FR,TN,201812,1,1,2812,531 -896,FR,TN,201812,1,1,4523,1107 -896,FR,TN,201812,1,1,366,70739 -896,FR,TN,201812,3,1,5483,175 -896,FR,TN,201812,3,1,55275,5630 -896,FR,TN,201812,4,1,5,4 -896,FR,TN,201812,0,2,2369,16 -896,FR,TN,201812,1,2,2478692,409068 -896,FR,TN,201812,1,2,85811,14000 -896,FR,TN,201812,1,2,1883,156 -896,FR,TN,201812,1,2,59527,18471 -896,FR,TN,201812,1,2,8346,22685 -896,FR,TN,201812,1,2,112405,26457 -896,FR,TN,201812,1,2,18381,3774 -896,FR,TN,201812,1,2,3135,901 -896,FR,TN,201812,1,2,20250,1090 -896,FR,TN,201812,1,2,1203123,345448 -896,FR,TN,201812,1,2,63874,14660 -896,FR,TN,201812,1,2,451,125 -896,FR,TN,201812,1,2,17370,19080 -896,FR,TN,201812,1,2,132366,23100 -896,FR,TN,201812,1,2,19058,16744 -896,FR,TN,201812,3,2,939101,200302 -896,FR,TN,201812,3,2,4998,30 -896,FR,TN,201812,4,2,92944,1422 -896,FR,TN,201812,4,2,1882,49 -896,FR,TN,201812,4,2,222720,1651 -896,FR,TN,201812,4,2,848405,6767 -896,FR,TN,201812,4,2,15360,224 -896,FR,TN,201812,4,2,8909,6 -896,FR,TN,201812,4,2,19502,80 -896,FR,TN,201812,4,2,12241,590 -896,FR,TN,201812,4,2,29463,34 -910,FR,TN,201812,0,1,1262899,73305 -910,FR,TN,201812,1,1,17673016,929129 -910,FR,TN,201812,1,1,5708109,22760 -910,FR,TN,201812,1,1,8400,3387 -910,FR,TN,201812,1,1,9894864,266665 -910,FR,TN,201812,1,1,231066,0 -910,FR,TN,201812,1,1,259168,7494 -910,FR,TN,201812,1,1,28855,4904 -910,FR,TN,201812,1,1,3850,1695 -910,FR,TN,201812,3,1,339231,7567 -910,FR,TN,201812,4,1,20001,61 -910,FR,TN,201812,4,1,2169,49 -910,FR,TN,201812,4,1,4702230,24942 -910,FR,TN,201812,4,1,65149,48 -910,FR,TN,201812,9,1,676182,10000 -910,FR,TN,201812,0,2,100,0 -910,FR,TN,201812,1,2,10766608,1100620 -910,FR,TN,201812,1,2,4261,255 -910,FR,TN,201812,1,2,871510,72618 -910,FR,TN,201812,1,2,2728268,13216 -910,FR,TN,201812,1,2,23500,21140 -910,FR,TN,201812,1,2,703564,122600 -910,FR,TN,201812,1,2,427990,73500 -910,FR,TN,201812,1,2,2924156,314155 -910,FR,TN,201812,1,2,99496,9618 -910,FR,TN,201812,1,2,57600,700 -910,FR,TN,201812,1,2,186229,25874 -910,FR,TN,201812,1,2,57793,2263 -910,FR,TN,201812,1,2,76857,159600 -910,FR,TN,201812,1,2,5740,20200 -910,FR,TN,201812,1,2,54218,51724 -910,FR,TN,201812,2,2,7434,980 -910,FR,TN,201812,3,2,935141,129280 -910,FR,TN,201812,3,2,238215,2518 -910,FR,TN,201812,3,2,58000,8085 -910,FR,TN,201812,4,2,242080,433 -910,FR,TN,201812,4,2,3336,9 -910,FR,TN,201812,4,2,375643,2454 -910,FR,TN,201812,4,2,17943,90 -910,FR,TN,201812,4,2,1376,4 -910,FR,TN,201812,4,2,13000,220 -910,FR,TN,201812,4,2,2990,10 -910,FR,TN,201812,4,2,4162,5 -910,FR,TN,201812,9,2,84689,12512 -920,FR,TN,201812,1,2,190837,53634 -920,FR,TN,201812,1,2,3600,438 -920,FR,TN,201812,1,2,91904,37435 -920,FR,TN,201812,1,2,98294,13200 -920,FR,TN,201812,3,2,9870,513 -920,FR,TN,201812,4,2,360,5 -920,FR,TN,201812,4,2,1584,130 -920,FR,TN,201812,4,2,2169,52 -931,FR,TN,201812,0,1,1858358,51851 -931,FR,TN,201812,1,1,72980390,3066207 -931,FR,TN,201812,1,1,1069488,40858 -931,FR,TN,201812,1,1,7945677,200019 -931,FR,TN,201812,1,1,7797830,136476 -931,FR,TN,201812,1,1,21421711,579083 -931,FR,TN,201812,1,1,974741,73390 -931,FR,TN,201812,1,1,1306061,11101 -931,FR,TN,201812,1,1,49975,6665 -931,FR,TN,201812,1,1,2363234,97816 -931,FR,TN,201812,1,1,90457,66737 -931,FR,TN,201812,1,1,29546,190 -931,FR,TN,201812,1,1,1142747,314810 -931,FR,TN,201812,1,1,95517,49633 -931,FR,TN,201812,1,1,697170,5419 -931,FR,TN,201812,1,1,1202,100 -931,FR,TN,201812,1,1,68,3 -931,FR,TN,201812,3,1,3954939,375392 -931,FR,TN,201812,3,1,126,3 -931,FR,TN,201812,3,1,55,1 -931,FR,TN,201812,3,1,535093,26916 -931,FR,TN,201812,3,1,75573,1769 -931,FR,TN,201812,4,1,371616,2861 -931,FR,TN,201812,4,1,23320,113 -931,FR,TN,201812,4,1,1411,10 -931,FR,TN,201812,4,1,789,13 -931,FR,TN,201812,4,1,3466026,38994 -931,FR,TN,201812,4,1,13183,31 -931,FR,TN,201812,0,2,11873,32 -931,FR,TN,201812,1,2,32182411,1628610 -931,FR,TN,201812,1,2,645,3 -931,FR,TN,201812,1,2,370237,6659 -931,FR,TN,201812,1,2,2772563,42355 -931,FR,TN,201812,1,2,9515,1417 -931,FR,TN,201812,1,2,7480,1885 -931,FR,TN,201812,1,2,51022,22670 -931,FR,TN,201812,1,2,2739,102 -931,FR,TN,201812,1,2,9230305,174275 -931,FR,TN,201812,1,2,434042,13849 -931,FR,TN,201812,1,2,52111,2187 -931,FR,TN,201812,1,2,64047,4489 -931,FR,TN,201812,1,2,153125,12808 -931,FR,TN,201812,1,2,27002,5611 -931,FR,TN,201812,1,2,206070,6837 -931,FR,TN,201812,3,2,6246419,464023 -931,FR,TN,201812,3,2,956,1 -931,FR,TN,201812,3,2,69150,1334 -931,FR,TN,201812,3,2,7900,120 -931,FR,TN,201812,3,2,2200,20 -931,FR,TN,201812,3,2,128471,3846 -931,FR,TN,201812,3,2,109089,20267 -931,FR,TN,201812,4,2,706559,3851 -931,FR,TN,201812,4,2,222303,3503 -931,FR,TN,201812,4,2,5983,22 -931,FR,TN,201812,4,2,27093,216 -931,FR,TN,201812,4,2,36521,97 -931,FR,TN,201812,4,2,928194,20952 -931,FR,TN,201812,4,2,114509,37 -931,FR,TN,201812,4,2,45109,335 -931,FR,TN,201812,4,2,6485,340 -931,FR,TN,201812,4,2,10413,32 -931,FR,TN,201812,4,2,146762,2890 -931,FR,TN,201812,4,2,45292,87 -931,FR,TN,201812,4,2,48660,43 -931,FR,TN,201812,5,2,1431,13 -939,FR,TN,201812,1,1,4677804,347863 -939,FR,TN,201812,1,1,21827,2714 -939,FR,TN,201812,1,1,2469,63 -939,FR,TN,201812,1,1,1600856,212999 -939,FR,TN,201812,1,1,796,50 -939,FR,TN,201812,1,1,17160,2011 -939,FR,TN,201812,1,1,353103,1858 -939,FR,TN,201812,1,1,619486,83707 -939,FR,TN,201812,1,1,133080,23705 -939,FR,TN,201812,1,1,3079,67 -939,FR,TN,201812,1,1,83018,13576 -939,FR,TN,201812,1,1,293678,6625 -939,FR,TN,201812,1,1,26600,4750 -939,FR,TN,201812,1,1,13659,6310 -939,FR,TN,201812,3,1,804226,343512 -939,FR,TN,201812,3,1,407,10 -939,FR,TN,201812,3,1,2146973,67882 -939,FR,TN,201812,4,1,47741,82 -939,FR,TN,201812,4,1,8982,51 -939,FR,TN,201812,4,1,586,46 -939,FR,TN,201812,4,1,431185,3335 -939,FR,TN,201812,4,1,155136,34 -939,FR,TN,201812,0,2,2299,18 -939,FR,TN,201812,1,2,10683839,612894 -939,FR,TN,201812,1,2,7597,719 -939,FR,TN,201812,1,2,26444,20440 -939,FR,TN,201812,1,2,140167,32807 -939,FR,TN,201812,1,2,50512,27088 -939,FR,TN,201812,1,2,118009,6393 -939,FR,TN,201812,1,2,228077,5800 -939,FR,TN,201812,1,2,22779,9035 -939,FR,TN,201812,1,2,96349,74870 -939,FR,TN,201812,1,2,2524215,639337 -939,FR,TN,201812,1,2,474593,17843 -939,FR,TN,201812,1,2,455134,25844 -939,FR,TN,201812,1,2,10710,447 -939,FR,TN,201812,1,2,8099,145 -939,FR,TN,201812,1,2,3682,456 -939,FR,TN,201812,1,2,936444,311858 -939,FR,TN,201812,1,2,4950,7800 -939,FR,TN,201812,1,2,14300,10560 -939,FR,TN,201812,1,2,34518,540 -939,FR,TN,201812,1,2,405600,2400 -939,FR,TN,201812,1,2,3150,16860 -939,FR,TN,201812,1,2,993913,121846 -939,FR,TN,201812,1,2,34130,2700 -939,FR,TN,201812,1,2,524775,27819 -939,FR,TN,201812,1,2,83100,5471 -939,FR,TN,201812,1,2,52510,2821 -939,FR,TN,201812,3,2,5881589,217087 -939,FR,TN,201812,3,2,388031,2854 -939,FR,TN,201812,3,2,16100,745 -939,FR,TN,201812,3,2,695668,26808 -939,FR,TN,201812,4,2,508232,5833 -939,FR,TN,201812,4,2,47118,311 -939,FR,TN,201812,4,2,2986,40 -939,FR,TN,201812,4,2,405,2 -939,FR,TN,201812,4,2,36000,116 -939,FR,TN,201812,4,2,9150,90 -939,FR,TN,201812,4,2,38125,532 -939,FR,TN,201812,4,2,327865,2039 -939,FR,TN,201812,4,2,2588,14 -939,FR,TN,201812,4,2,15690,123 -939,FR,TN,201812,4,2,15293,26 -939,FR,TN,201812,4,2,111519,5370 -939,FR,TN,201812,4,2,33332,39 -939,FR,TN,201812,5,2,2500,26 -941,FR,TN,201812,1,1,130303,22156 -941,FR,TN,201812,1,1,38775,23500 -941,FR,TN,201812,1,1,15321,9070 -941,FR,TN,201812,1,1,28020,33660 -941,FR,TN,201812,1,1,7777,7890 -941,FR,TN,201812,1,1,65052,8849 -941,FR,TN,201812,1,1,2076558,1098652 -941,FR,TN,201812,1,1,41855,23716 -941,FR,TN,201812,3,1,136879,36113 -941,FR,TN,201812,1,2,144390,36392 -941,FR,TN,201812,1,2,101340,66000 -941,FR,TN,201812,1,2,6364,310 -941,FR,TN,201812,1,2,72810,43877 -941,FR,TN,201812,3,2,25622,3416 -941,FR,TN,201812,4,2,2135,2 -949,FR,TN,201812,0,1,3775,35 -949,FR,TN,201812,1,1,3921640,477752 -949,FR,TN,201812,1,1,87434,21855 -949,FR,TN,201812,1,1,23988,7511 -949,FR,TN,201812,1,1,310,26 -949,FR,TN,201812,1,1,572186,110436 -949,FR,TN,201812,1,1,730427,227271 -949,FR,TN,201812,1,1,162147,62846 -949,FR,TN,201812,1,1,22147,25580 -949,FR,TN,201812,1,1,12382,3830 -949,FR,TN,201812,3,1,288841,50549 -949,FR,TN,201812,3,1,11739,5200 -949,FR,TN,201812,3,1,164853,6848 -949,FR,TN,201812,4,1,62467,270 -949,FR,TN,201812,4,1,4691,57 -949,FR,TN,201812,4,1,633,8 -949,FR,TN,201812,4,1,67076,1105 -949,FR,TN,201812,4,1,1142,24 -949,FR,TN,201812,0,2,4217,23 -949,FR,TN,201812,1,2,5654057,530261 -949,FR,TN,201812,1,2,67337,4190 -949,FR,TN,201812,1,2,572752,27085 -949,FR,TN,201812,1,2,442585,3787 -949,FR,TN,201812,1,2,181179,10065 -949,FR,TN,201812,1,2,308,2 -949,FR,TN,201812,1,2,732151,80943 -949,FR,TN,201812,1,2,70596,13276 -949,FR,TN,201812,1,2,245212,11580 -949,FR,TN,201812,1,2,2584,98 -949,FR,TN,201812,1,2,348869,30239 -949,FR,TN,201812,1,2,344612,16236 -949,FR,TN,201812,1,2,20960,51 -949,FR,TN,201812,3,2,1393488,142383 -949,FR,TN,201812,3,2,1609,58 -949,FR,TN,201812,3,2,16015,7176 -949,FR,TN,201812,3,2,128587,5942 -949,FR,TN,201812,3,2,3194,168 -949,FR,TN,201812,4,2,153867,2188 -949,FR,TN,201812,4,2,1360,283 -949,FR,TN,201812,4,2,45631,237 -949,FR,TN,201812,4,2,7198,85 -949,FR,TN,201812,4,2,33788,1110 -949,FR,TN,201812,4,2,46986,74 -949,FR,TN,201812,4,2,10383,5 -951,FR,TN,201812,1,1,7018,4083 -951,FR,TN,201812,1,1,172,14 -951,FR,TN,201812,1,1,8989,1220 -951,FR,TN,201812,1,1,231,65 -951,FR,TN,201812,1,2,84192,14280 -951,FR,TN,201812,1,2,470,118 -951,FR,TN,201812,1,2,1369,69 -951,FR,TN,201812,1,2,9589,20170 -951,FR,TN,201812,3,2,2055,97 -951,FR,TN,201812,4,2,1866,30 -952,FR,TN,201812,1,1,519564,138108 -952,FR,TN,201812,1,1,185,650 -952,FR,TN,201812,1,1,292847,309275 -952,FR,TN,201812,1,1,14542,3933 -952,FR,TN,201812,1,1,9738,10200 -952,FR,TN,201812,1,1,45171,43140 -952,FR,TN,201812,3,1,1947,65 -952,FR,TN,201812,3,1,10521,5833 -952,FR,TN,201812,1,2,252824,195276 -952,FR,TN,201812,1,2,18354,2436 -952,FR,TN,201812,1,2,3275,2285 -952,FR,TN,201812,1,2,59680,3780 -952,FR,TN,201812,1,2,5736,378 -952,FR,TN,201812,1,2,2207,0 -952,FR,TN,201812,1,2,3410,405 -952,FR,TN,201812,1,2,17060,32015 -952,FR,TN,201812,1,2,15800,1663 -952,FR,TN,201812,3,2,138223,12241 -952,FR,TN,201812,3,2,65411,19807 -952,FR,TN,201812,4,2,21220,1 -961,FR,TN,201812,1,1,1266321,44045 -961,FR,TN,201812,1,1,22807,1413 -961,FR,TN,201812,1,1,392727,26744 -961,FR,TN,201812,1,1,203969,11550 -961,FR,TN,201812,3,1,101270,11441 -961,FR,TN,201812,3,1,16948,740 -961,FR,TN,201812,4,1,920,5 -961,FR,TN,201812,4,1,1736,40 -961,FR,TN,201812,1,2,1035363,64420 -961,FR,TN,201812,1,2,124719,3434 -961,FR,TN,201812,1,2,23604,867 -961,FR,TN,201812,1,2,8167,725 -961,FR,TN,201812,1,2,69407,2620 -961,FR,TN,201812,1,2,13120,1070 -961,FR,TN,201812,3,2,820360,38105 -961,FR,TN,201812,4,2,25784,486 -961,FR,TN,201812,4,2,2065,80 -961,FR,TN,201812,4,2,2355,32 -962,FR,TN,201812,0,1,329,21 -962,FR,TN,201812,1,1,5759041,422373 -962,FR,TN,201812,1,1,205185,20190 -962,FR,TN,201812,1,1,48524,4541 -962,FR,TN,201812,1,1,1386309,338824 -962,FR,TN,201812,1,1,365400,56979 -962,FR,TN,201812,1,1,13659,2400 -962,FR,TN,201812,1,1,6525,1533 -962,FR,TN,201812,1,1,575,8 -962,FR,TN,201812,1,1,83006,31200 -962,FR,TN,201812,1,1,566070,22475 -962,FR,TN,201812,3,1,1569781,160794 -962,FR,TN,201812,3,1,3793,685 -962,FR,TN,201812,3,1,107317,13750 -962,FR,TN,201812,3,1,30494,19385 -962,FR,TN,201812,3,1,128451,4411 -962,FR,TN,201812,4,1,4366,38 -962,FR,TN,201812,4,1,305,22 -962,FR,TN,201812,4,1,179,16 -962,FR,TN,201812,4,1,49662,212 -962,FR,TN,201812,4,1,2834,114 -962,FR,TN,201812,0,2,13144,57 -962,FR,TN,201812,1,2,20455598,1487386 -962,FR,TN,201812,1,2,277531,14660 -962,FR,TN,201812,1,2,314399,10083 -962,FR,TN,201812,1,2,20060,18678 -962,FR,TN,201812,1,2,11906,864 -962,FR,TN,201812,1,2,793602,69470 -962,FR,TN,201812,1,2,137113,41476 -962,FR,TN,201812,1,2,1071009,87884 -962,FR,TN,201812,1,2,24453,42135 -962,FR,TN,201812,1,2,2989,105 -962,FR,TN,201812,1,2,105757,160875 -962,FR,TN,201812,1,2,283478,22016 -962,FR,TN,201812,1,2,9386,2940 -962,FR,TN,201812,3,2,4536983,337430 -962,FR,TN,201812,3,2,1856,350 -962,FR,TN,201812,3,2,9018,19124 -962,FR,TN,201812,3,2,1602,207 -962,FR,TN,201812,3,2,6103,960 -962,FR,TN,201812,3,2,862,98 -962,FR,TN,201812,3,2,11085,345 -962,FR,TN,201812,3,2,111668,3564 -962,FR,TN,201812,3,2,182827,76787 -962,FR,TN,201812,4,2,120666,1473 -962,FR,TN,201812,4,2,19496,7 -962,FR,TN,201812,4,2,79212,1688 -962,FR,TN,201812,4,2,4053,40 -962,FR,TN,201812,4,2,28828,2880 -962,FR,TN,201812,4,2,3018,75 -962,FR,TN,201812,4,2,2192,73 -963,FR,TN,201812,0,1,3094713,71764 -963,FR,TN,201812,1,1,49111688,1658333 -963,FR,TN,201812,1,1,87725,3114 -963,FR,TN,201812,1,1,2630423,90592 -963,FR,TN,201812,1,1,16935,802 -963,FR,TN,201812,1,1,60139,919 -963,FR,TN,201812,1,1,322690,12107 -963,FR,TN,201812,1,1,7908576,307213 -963,FR,TN,201812,1,1,25581,9430 -963,FR,TN,201812,1,1,217232,12022 -963,FR,TN,201812,1,1,6422,186 -963,FR,TN,201812,1,1,510,15 -963,FR,TN,201812,1,1,264186,9835 -963,FR,TN,201812,1,1,426676,48477 -963,FR,TN,201812,1,1,34303,779 -963,FR,TN,201812,3,1,4055513,134229 -963,FR,TN,201812,3,1,24598,31 -963,FR,TN,201812,3,1,288789,780 -963,FR,TN,201812,3,1,32089,46 -963,FR,TN,201812,3,1,106,2 -963,FR,TN,201812,3,1,74180,94 -963,FR,TN,201812,3,1,909,25 -963,FR,TN,201812,3,1,20053,30 -963,FR,TN,201812,3,1,17033,19 -963,FR,TN,201812,3,1,2144,4 -963,FR,TN,201812,3,1,601113,14482 -963,FR,TN,201812,3,1,2327626,51991 -963,FR,TN,201812,3,1,95858,5288 -963,FR,TN,201812,4,1,117699,2784 -963,FR,TN,201812,4,1,17976,282 -963,FR,TN,201812,4,1,11015,98 -963,FR,TN,201812,4,1,5639,25 -963,FR,TN,201812,4,1,3176,644 -963,FR,TN,201812,4,1,321080,8644 -963,FR,TN,201812,4,1,21734,372 -963,FR,TN,201812,4,1,2087,7 -963,FR,TN,201812,4,1,474,8 -963,FR,TN,201812,0,2,2924,84 -963,FR,TN,201812,1,2,2514213,134035 -963,FR,TN,201812,1,2,220700,14500 -963,FR,TN,201812,1,2,27575,2756 -963,FR,TN,201812,1,2,143299,12523 -963,FR,TN,201812,1,2,2678,15 -963,FR,TN,201812,1,2,242540,23067 -963,FR,TN,201812,1,2,19972,2824 -963,FR,TN,201812,1,2,334,4 -963,FR,TN,201812,1,2,1230,64 -963,FR,TN,201812,1,2,99970,6456 -963,FR,TN,201812,3,2,605939,33192 -963,FR,TN,201812,3,2,200367,8101 -963,FR,TN,201812,4,2,8424,115 -963,FR,TN,201812,4,2,15628,460 -963,FR,TN,201812,4,2,11895,850 -963,FR,TN,201812,4,2,2890,40 -963,FR,TN,201812,4,2,1158,32 -971,FR,TN,201812,1,1,318629,33231 -971,FR,TN,201812,1,1,1133969,27969 -971,FR,TN,201812,1,1,48330,5159 -971,FR,TN,201812,3,1,20267,1829 -971,FR,TN,201812,3,1,23965,943 -971,FR,TN,201812,4,1,163,13 -971,FR,TN,201812,4,1,16120,653 -971,FR,TN,201812,4,1,4253,5 -971,FR,TN,201812,0,2,50,10 -971,FR,TN,201812,1,2,1107259,73742 -971,FR,TN,201812,1,2,93,12 -971,FR,TN,201812,1,2,3601,211 -971,FR,TN,201812,1,2,44186,2569 -971,FR,TN,201812,1,2,47398,986 -971,FR,TN,201812,1,2,57097,12914 -971,FR,TN,201812,1,2,8056,1378 -971,FR,TN,201812,1,2,77447,10089 -971,FR,TN,201812,3,2,225783,17243 -971,FR,TN,201812,3,2,1426,1 -971,FR,TN,201812,4,2,1894,17 -971,FR,TN,201812,4,2,5365,0 -971,FR,TN,201812,4,2,13516,215 -971,FR,TN,201812,4,2,1330,10 -971,FR,TN,201812,4,2,5010,3 -972,FR,TN,201812,1,1,8880,991 -972,FR,TN,201812,1,1,3796,441 -972,FR,TN,201812,1,1,116033,96754 -972,FR,TN,201812,1,2,528898,268263 -972,FR,TN,201812,1,2,66122,43718 -972,FR,TN,201812,1,2,26121,45069 -972,FR,TN,201812,1,2,214687,60597 -972,FR,TN,201812,1,2,16116,4441 -972,FR,TN,201812,1,2,68843,22988 -972,FR,TN,201812,1,2,309732,302095 -972,FR,TN,201812,1,2,20308,11252 -972,FR,TN,201812,3,2,80737,103053 -972,FR,TN,201812,3,2,198,1 -973,FR,TN,201812,1,1,1534768,438358 -973,FR,TN,201812,1,1,11487,1434 -973,FR,TN,201812,1,1,37314,5160 -973,FR,TN,201812,1,1,22322,8967 -973,FR,TN,201812,1,1,14277,2038 -973,FR,TN,201812,1,1,15134,6104 -973,FR,TN,201812,1,1,37322,6528 -973,FR,TN,201812,3,1,10942,3630 -973,FR,TN,201812,4,1,6320,7 -973,FR,TN,201812,4,1,607,55 -973,FR,TN,201812,4,1,126,5 -973,FR,TN,201812,1,2,1040498,595019 -973,FR,TN,201812,1,2,1028,185 -973,FR,TN,201812,1,2,5682,2843 -973,FR,TN,201812,1,2,100360,52685 -973,FR,TN,201812,1,2,2891,3021 -973,FR,TN,201812,1,2,31815,26790 -973,FR,TN,201812,1,2,214702,214916 -973,FR,TN,201812,1,2,88,17 -973,FR,TN,201812,1,2,39568,23223 -973,FR,TN,201812,1,2,25310,13270 -973,FR,TN,201812,3,2,267476,82270 -973,FR,TN,201812,3,2,245,93 -973,FR,TN,201812,3,2,53038,96435 -973,FR,TN,201812,4,2,402,63 -973,FR,TN,201812,4,2,140,95 -974,FR,TN,201812,1,1,224932,67617 -974,FR,TN,201812,1,1,154451,47115 -974,FR,TN,201812,1,1,333,34 -974,FR,TN,201812,3,1,1886,50 -974,FR,TN,201812,3,1,14105,819 -974,FR,TN,201812,4,1,309,26 -974,FR,TN,201812,5,1,29441,530 -974,FR,TN,201812,0,2,842,29 -974,FR,TN,201812,1,2,336645,39528 -974,FR,TN,201812,1,2,325,100 -974,FR,TN,201812,1,2,40274,12640 -974,FR,TN,201812,1,2,42756,1274 -974,FR,TN,201812,1,2,354,91 -974,FR,TN,201812,3,2,173615,22636 -974,FR,TN,201812,3,2,103,0 -974,FR,TN,201812,3,2,2762,101 -974,FR,TN,201812,4,2,76375,9858 -974,FR,TN,201812,4,2,51,0 -974,FR,TN,201812,4,2,17160,194 -974,FR,TN,201812,4,2,30365,960 -974,FR,TN,201812,5,2,6153,100 -975,FR,TN,201812,1,1,3870406,201917 -975,FR,TN,201812,1,1,164334,2050 -975,FR,TN,201812,1,1,20246,360 -975,FR,TN,201812,1,1,983,83 -975,FR,TN,201812,1,1,2940316,33027 -975,FR,TN,201812,1,1,115159,29179 -975,FR,TN,201812,1,1,43324,4034 -975,FR,TN,201812,1,1,3762,740 -975,FR,TN,201812,1,1,3596,859 -975,FR,TN,201812,3,1,22392,3639 -975,FR,TN,201812,4,1,2434,18 -975,FR,TN,201812,4,1,9075,180 -975,FR,TN,201812,4,1,3782773,19760 -975,FR,TN,201812,1,2,485698,28136 -975,FR,TN,201812,1,2,110895,703 -975,FR,TN,201812,1,2,37165,3114 -975,FR,TN,201812,1,2,38687,6497 -975,FR,TN,201812,3,2,77204,4553 -975,FR,TN,201812,3,2,3973,600 -975,FR,TN,201812,4,2,169120,1823 -975,FR,TN,201812,4,2,100927,2229 -976,FR,TN,201812,1,1,240379,54343 -976,FR,TN,201812,1,1,8559,7960 -976,FR,TN,201812,1,1,149020,34948 -976,FR,TN,201812,1,1,754,50 -976,FR,TN,201812,1,1,299,10 -976,FR,TN,201812,3,1,3454,246 -976,FR,TN,201812,1,2,205521,300477 -976,FR,TN,201812,1,2,20145,29228 -976,FR,TN,201812,1,2,33372,68991 -976,FR,TN,201812,1,2,137555,49070 -976,FR,TN,201812,1,2,2281,2000 -976,FR,TN,201812,1,2,7933,15140 -976,FR,TN,201812,1,2,2146,15675 -976,FR,TN,201812,1,2,39141,77840 -976,FR,TN,201812,3,2,25617,1726 -976,FR,TN,201812,3,2,7600,5610 -976,FR,TN,201812,4,2,691,79 -979,FR,TN,201812,0,1,134169,3517 -979,FR,TN,201812,1,1,13941821,804756 -979,FR,TN,201812,1,1,1828535,24918 -979,FR,TN,201812,1,1,400720,85924 -979,FR,TN,201812,1,1,4975300,374318 -979,FR,TN,201812,1,1,27434,5504 -979,FR,TN,201812,1,1,307535,20846 -979,FR,TN,201812,1,1,28448,26570 -979,FR,TN,201812,1,1,437477,15676 -979,FR,TN,201812,1,1,39427,6775 -979,FR,TN,201812,1,1,34634,25280 -979,FR,TN,201812,1,1,50100,4517 -979,FR,TN,201812,1,1,116602,16676 -979,FR,TN,201812,1,1,215537,1604 -979,FR,TN,201812,3,1,2560254,117296 -979,FR,TN,201812,3,1,14079,390 -979,FR,TN,201812,3,1,119,7 -979,FR,TN,201812,3,1,159,0 -979,FR,TN,201812,3,1,2639,553 -979,FR,TN,201812,3,1,91012,9037 -979,FR,TN,201812,3,1,296340,87379 -979,FR,TN,201812,3,1,2265787,55564 -979,FR,TN,201812,4,1,87892,743 -979,FR,TN,201812,4,1,12266,111 -979,FR,TN,201812,4,1,14783,29 -979,FR,TN,201812,4,1,1923195,16426 -979,FR,TN,201812,4,1,317,3 -979,FR,TN,201812,0,2,3347,35 -979,FR,TN,201812,1,2,15655009,1728327 -979,FR,TN,201812,1,2,4875,224 -979,FR,TN,201812,1,2,136007,45744 -979,FR,TN,201812,1,2,185416,16512 -979,FR,TN,201812,1,2,53392,3974 -979,FR,TN,201812,1,2,7425,306 -979,FR,TN,201812,1,2,1265771,132830 -979,FR,TN,201812,1,2,289709,33273 -979,FR,TN,201812,1,2,47265,7838 -979,FR,TN,201812,1,2,231215,102462 -979,FR,TN,201812,1,2,15970,31078 -979,FR,TN,201812,1,2,1950,50 -979,FR,TN,201812,1,2,8380,1554 -979,FR,TN,201812,1,2,37960,7215 -979,FR,TN,201812,1,2,32360,4143 -979,FR,TN,201812,3,2,2923966,324059 -979,FR,TN,201812,3,2,14369,927 -979,FR,TN,201812,3,2,6155,751 -979,FR,TN,201812,3,2,2911,47 -979,FR,TN,201812,3,2,130715,6157 -979,FR,TN,201812,3,2,137,3 -979,FR,TN,201812,3,2,3972,437 -979,FR,TN,201812,4,2,328880,2558 -979,FR,TN,201812,4,2,34044,505 -979,FR,TN,201812,4,2,7638,60 -979,FR,TN,201812,4,2,955465,3346 -979,FR,TN,201812,4,2,54372,8 -979,FR,TN,201812,4,2,32479,175 -979,FR,TN,201812,4,2,19550,31 -979,FR,TN,201812,4,2,149760,1010 -979,FR,TN,201812,4,2,4681,20 -979,FR,TN,201812,4,2,259221,5950 -979,FR,TN,201812,4,2,180279,1409 -979,FR,TN,201812,4,2,51285,95 -979,FR,TN,201812,5,2,2873,34 -994,FR,TN,201812,1,1,1482,1482 -994,FR,TN,201812,4,2,38441,1 -999,FR,TN,201812,0,1,9990,0 -999,FR,TN,201812,1,1,8200,0 -999,FR,TN,201812,1,1,17000,0 -999,FR,TN,201812,3,1,1393,0 -999,FR,TN,201812,3,1,26040,0 -999,FR,TN,201812,4,1,939,0 -999,FR,TN,201812,0,2,11250,0 -999,FR,TN,201812,1,2,716454,150603 -999,FR,TN,201812,1,2,2368,250 -999,FR,TN,201812,1,2,1850,0 -999,FR,TN,201812,1,2,211832,1781 -999,FR,TN,201812,1,2,889,3 -999,FR,TN,201812,1,2,66876,20415 -999,FR,TN,201812,1,2,3525,810 -999,FR,TN,201812,1,2,78806,3981 -999,FR,TN,201812,1,2,21423,12053 -999,FR,TN,201812,1,2,6600,1244 -999,FR,TN,201812,1,2,365792,208151 -999,FR,TN,201812,1,2,38360,43316 -999,FR,TN,201812,1,2,7544,26600 -999,FR,TN,201812,1,2,6655,1500 -999,FR,TN,201812,1,2,25094,21420 -999,FR,TN,201812,1,2,7432,0 -999,FR,TN,201812,1,2,29985,0 -999,FR,TN,201812,1,2,201476,129850 -999,FR,TN,201812,3,2,96808,3902 -999,FR,TN,201812,3,2,700,0 -999,FR,TN,201812,3,2,600,0 -999,FR,TN,201812,4,2,121602,354 -999,FR,TN,201812,4,2,1325,35 -999,FR,TN,201812,4,2,16310,300 -999,FR,TN,201812,4,2,15925,1721 -012,FR,LY,201812,1,2,5907362,28925795 -012,FR,LY,201812,1,2,4356052,21036277 -019,FR,LY,201812,1,2,27093,4756 -020,FR,LY,201812,1,2,186108,579600 -099,FR,LY,201812,1,2,6361,371 -112,FR,LY,201812,1,2,1162240,4000000 -112,FR,LY,201812,1,2,82545,288000 -128,FR,LY,201812,1,2,14425,14525 -128,FR,LY,201812,1,2,5618,22777 -132,FR,LY,201812,1,2,90200,22289 -132,FR,LY,201812,1,2,18759,3530 -132,FR,LY,201812,1,2,36887,5448 -132,FR,LY,201812,1,2,68535,34230 -136,FR,LY,201812,1,2,41397,4114 -139,FR,LY,201812,1,2,37164,3750 -139,FR,LY,201812,1,2,134197,8352 -139,FR,LY,201812,1,2,228500,36960 -139,FR,LY,201812,1,2,29659,778 -139,FR,LY,201812,1,2,42732,26054 -144,FR,LY,201812,1,2,85008,13440 -144,FR,LY,201812,1,2,136454,40000 -144,FR,LY,201812,1,2,153200,100000 -146,FR,LY,201812,1,2,811258,92759 -163,FR,LY,201812,1,2,6430,1975 -163,FR,LY,201812,1,2,21806,5913 -163,FR,LY,201812,1,2,29129,7469 -163,FR,LY,201812,1,2,22925,5329 -163,FR,LY,201812,1,2,19434,2870 -163,FR,LY,201812,4,2,6,2 -164,FR,LY,201812,1,2,65263,16411 -164,FR,LY,201812,1,2,1485,1944 -166,FR,LY,201812,1,2,31331,8100 -179,FR,LY,201812,1,2,54877,10268 -179,FR,LY,201812,4,2,5979,442 -181,FR,LY,201812,4,2,22208,88 -310,FR,LY,201812,1,1,2422007,5422000 -310,FR,LY,201812,1,1,86444463,214654000 -310,FR,LY,201812,1,1,71980797,163952229 -310,FR,LY,201812,1,1,32921118,73692000 -341,FR,LY,201812,1,2,56946,15851 -451,FR,LY,201812,1,1,314118,157300 -568,FR,LY,201812,1,2,54230,7685 -724,FR,LY,201812,1,1,1584347,5692237 -819,FR,LY,201812,1,2,4372929,8001724 -891,FR,LY,201812,1,2,122,0 -891,FR,LY,201812,1,2,56531,36000 -891,FR,LY,201812,4,2,1237,17 -892,FR,LY,201812,1,2,49072,19509 -892,FR,LY,201812,1,2,48894,21500 -893,FR,LY,201812,4,1,176,17 -893,FR,LY,201812,0,2,65,4 -893,FR,LY,201812,1,2,587389,20850 -893,FR,LY,201812,1,2,421716,23888 -893,FR,LY,201812,1,2,2550,111 -893,FR,LY,201812,1,2,160929,7068 -893,FR,LY,201812,1,2,74898,3295 -893,FR,LY,201812,1,2,46515,12276 -893,FR,LY,201812,1,2,699980,21632 -893,FR,LY,201812,1,2,110522,10740 -893,FR,LY,201812,3,2,122486,18778 -893,FR,LY,201812,3,2,9745,349 -893,FR,LY,201812,4,2,1331082,4516 -893,FR,LY,201812,4,2,486290,10061 -893,FR,LY,201812,4,2,37800,1000 -893,FR,LY,201812,4,2,434911,2777 -893,FR,LY,201812,4,2,81800,564 -896,FR,LY,201812,1,2,371901,140340 -896,FR,LY,201812,1,2,106795,40300 -896,FR,LY,201812,1,2,533339,201260 -896,FR,LY,201812,4,2,125855,1480 -896,FR,LY,201812,4,2,68150,137 -896,FR,LY,201812,4,2,4794,350 -910,FR,LY,201812,1,2,65417,17600 -910,FR,LY,201812,1,2,256146,15194 -910,FR,LY,201812,1,2,26429,2149 -931,FR,LY,201812,3,1,156,0 -931,FR,LY,201812,1,2,17481,3629 -931,FR,LY,201812,1,2,23663,2284 -931,FR,LY,201812,1,2,123208,14000 -931,FR,LY,201812,4,2,4323877,46764 -931,FR,LY,201812,4,2,3489,0 -931,FR,LY,201812,4,2,26987,35 -931,FR,LY,201812,4,2,172878,3630 -939,FR,LY,201812,3,1,51,0 -939,FR,LY,201812,4,1,530,2 -939,FR,LY,201812,1,2,5434,343 -939,FR,LY,201812,1,2,1500,56 -939,FR,LY,201812,1,2,116072,4058 -939,FR,LY,201812,1,2,169164,7480 -939,FR,LY,201812,1,2,11750,3000 -939,FR,LY,201812,4,2,164480,477 -939,FR,LY,201812,4,2,79441,20 -939,FR,LY,201812,4,2,103285,3560 -949,FR,LY,201812,3,1,2029,1 -949,FR,LY,201812,1,2,7335,811 -949,FR,LY,201812,1,2,103739,4648 -949,FR,LY,201812,4,2,1010,780 -951,FR,LY,201812,1,2,259,9 -951,FR,LY,201812,4,2,116,4 -962,FR,LY,201812,1,2,14,0 -962,FR,LY,201812,1,2,1560,640 -962,FR,LY,201812,4,2,842,18 -962,FR,LY,201812,4,2,6595,850 -962,FR,LY,201812,4,2,1155,64 -963,FR,LY,201812,4,1,111,18 -972,FR,LY,201812,1,2,28000,14298 -972,FR,LY,201812,4,2,531,1 -973,FR,LY,201812,1,2,8,2 -974,FR,LY,201812,3,1,93,4 -974,FR,LY,201812,1,2,34,122 -974,FR,LY,201812,1,2,24640,5660 -974,FR,LY,201812,4,2,8800,390 -975,FR,LY,201812,1,2,16599,2262 -975,FR,LY,201812,1,2,210747,20219 -975,FR,LY,201812,1,2,1147,392 -975,FR,LY,201812,4,2,611,75 -979,FR,LY,201812,4,1,48,10 -979,FR,LY,201812,1,2,4030,185 -979,FR,LY,201812,1,2,72637,6662 -979,FR,LY,201812,1,2,19826,1248 -979,FR,LY,201812,4,2,1588472,11713 -979,FR,LY,201812,4,2,12860,222 -979,FR,LY,201812,4,2,19525,38 -979,FR,LY,201812,4,2,16478,1450 -999,FR,LY,201812,4,2,2140,0 -999,FR,LY,201812,4,2,1932,10 -001,FR,EG,201812,4,1,6200,700 -001,FR,EG,201812,4,2,189558,9915 -001,FR,EG,201812,4,2,197417,15634 -020,FR,EG,201812,1,2,487545,698200 -020,FR,EG,201812,1,2,430573,728000 -031,FR,EG,201812,1,1,26058,22464 -031,FR,EG,201812,1,1,101605,139328 -031,FR,EG,201812,1,1,14452,24000 -031,FR,EG,201812,1,1,99526,95292 -035,FR,EG,201812,1,1,11503,12600 -035,FR,EG,201812,4,1,481903,126738 -035,FR,EG,201812,4,1,110439,30703 -035,FR,EG,201812,4,1,248993,58732 -035,FR,EG,201812,4,1,637489,189207 -035,FR,EG,201812,1,2,10000,21168 -035,FR,EG,201812,1,2,13578,21168 -035,FR,EG,201812,4,2,96,109 -039,FR,EG,201812,1,1,14089,27500 -039,FR,EG,201812,1,1,84067,81656 -039,FR,EG,201812,1,1,85233,42500 -039,FR,EG,201812,1,1,15726,13440 -039,FR,EG,201812,1,1,215585,130056 -039,FR,EG,201812,4,1,55169,23749 -039,FR,EG,201812,4,1,111282,27040 -039,FR,EG,201812,4,1,53154,22863 -039,FR,EG,201812,4,1,156121,55759 -043,FR,EG,201812,1,1,169459,174271 -043,FR,EG,201812,3,1,114994,108887 -045,FR,EG,201812,4,2,1412,350 -049,FR,EG,201812,4,2,30,1 -092,FR,EG,201812,1,2,3174,1400 -092,FR,EG,201812,1,2,110267,52200 -099,FR,EG,201812,1,1,46895,26675 -099,FR,EG,201812,1,1,27575,11000 -099,FR,EG,201812,1,1,93600,38825 -099,FR,EG,201812,4,1,256,65 -099,FR,EG,201812,4,1,1286,5 -099,FR,EG,201812,1,2,125930,23960 -099,FR,EG,201812,1,2,10027,5626 -099,FR,EG,201812,4,2,94929,75 -099,FR,EG,201812,4,2,56556,190 -112,FR,EG,201812,1,2,408127,1392000 -112,FR,EG,201812,1,2,68472,240000 -112,FR,EG,201812,1,2,5921641,20000000 -112,FR,EG,201812,1,2,211523,720000 -121,FR,EG,201812,1,2,9051,248 -121,FR,EG,201812,1,2,49268,6120 -121,FR,EG,201812,1,2,121385,9681 -121,FR,EG,201812,4,2,2900,468 -125,FR,EG,201812,1,2,443830,58501 -125,FR,EG,201812,1,2,30695,2859 -125,FR,EG,201812,1,2,118369,6458 -128,FR,EG,201812,1,2,5251,1694 -128,FR,EG,201812,1,2,62799,81180 -128,FR,EG,201812,4,2,17,19 -132,FR,EG,201812,0,2,60,2 -132,FR,EG,201812,1,2,111982,29320 -132,FR,EG,201812,1,2,20243,10800 -132,FR,EG,201812,1,2,16505,3822 -132,FR,EG,201812,1,2,33900,18000 -132,FR,EG,201812,3,2,30,0 -132,FR,EG,201812,3,2,32692,3267 -133,FR,EG,201812,1,1,55909,16950 -133,FR,EG,201812,1,1,10171,6325 -133,FR,EG,201812,1,1,23665,14500 -133,FR,EG,201812,1,1,2985,2816 -133,FR,EG,201812,3,1,5,0 -133,FR,EG,201812,4,2,1700,270 -135,FR,EG,201812,4,1,2350,150 -136,FR,EG,201812,1,2,11777,6500 -136,FR,EG,201812,1,2,2011,960 -136,FR,EG,201812,1,2,15791,3750 -136,FR,EG,201812,1,2,258217,554907 -136,FR,EG,201812,3,2,15530,1429 -136,FR,EG,201812,4,2,117,80 -139,FR,EG,201812,1,1,26227,20358 -139,FR,EG,201812,1,1,12994,10830 -139,FR,EG,201812,1,2,23238,4500 -139,FR,EG,201812,1,2,950,250 -139,FR,EG,201812,1,2,238656,42127 -139,FR,EG,201812,1,2,44821,2274 -139,FR,EG,201812,1,2,858553,206055 -139,FR,EG,201812,1,2,5388,2075 -139,FR,EG,201812,1,2,9897,4207 -139,FR,EG,201812,1,2,1162010,325931 -139,FR,EG,201812,1,2,28319,1313 -139,FR,EG,201812,1,2,40528,4147 -139,FR,EG,201812,3,2,5,4 -139,FR,EG,201812,3,2,90189,5650 -139,FR,EG,201812,4,2,10,15 -142,FR,EG,201812,4,1,17977,1615 -142,FR,EG,201812,3,2,5407,154 -143,FR,EG,201812,4,2,38,15 -144,FR,EG,201812,1,2,11478,12000 -144,FR,EG,201812,1,2,1697698,898151 -144,FR,EG,201812,1,2,83166,48000 -144,FR,EG,201812,1,2,34266,24000 -144,FR,EG,201812,1,2,60680,100000 -144,FR,EG,201812,1,2,59022,24750 -144,FR,EG,201812,1,2,34266,24000 -144,FR,EG,201812,1,2,467926,374550 -144,FR,EG,201812,4,2,7102,778 -148,FR,EG,201812,1,2,39569,9296 -161,FR,EG,201812,1,2,61680,192000 -162,FR,EG,201812,1,2,90795,244040 -163,FR,EG,201812,1,2,26885,8279 -163,FR,EG,201812,1,2,23499,18361 -163,FR,EG,201812,3,2,35317,4599 -163,FR,EG,201812,4,2,15,1 -164,FR,EG,201812,1,1,39319,48760 -164,FR,EG,201812,1,1,19721,24000 -164,FR,EG,201812,1,2,56084,13590 -164,FR,EG,201812,1,2,21280,6439 -165,FR,EG,201812,1,2,112854,310780 -166,FR,EG,201812,1,1,54475,73860 -166,FR,EG,201812,1,1,89158,110880 -166,FR,EG,201812,1,1,97850,88086 -166,FR,EG,201812,1,1,37944,35445 -166,FR,EG,201812,1,1,32860,20400 -179,FR,EG,201812,1,2,5652,3024 -179,FR,EG,201812,1,2,21797,2104 -179,FR,EG,201812,1,2,125504,52113 -179,FR,EG,201812,1,2,76569,17612 -179,FR,EG,201812,1,2,47360,20000 -179,FR,EG,201812,1,2,156510,19893 -179,FR,EG,201812,1,2,38865,12327 -179,FR,EG,201812,1,2,53275,24000 -179,FR,EG,201812,4,2,63768,20503 -181,FR,EG,201812,1,1,1881,1000 -181,FR,EG,201812,1,1,21506,14300 -181,FR,EG,201812,4,2,12453,10 -182,FR,EG,201812,4,2,2981,374 -182,FR,EG,201812,4,2,13195,333 -330,FR,EG,201812,1,1,16900702,0 -330,FR,EG,201812,1,2,8038,1401 -330,FR,EG,201812,4,2,297,2 -341,FR,EG,201812,1,2,45944,9288 -341,FR,EG,201812,1,2,149331,42137 -341,FR,EG,201812,1,2,97896,30178 -341,FR,EG,201812,1,2,23622,19620 -341,FR,EG,201812,3,2,468,220 -341,FR,EG,201812,4,2,28303,774 -341,FR,EG,201812,4,2,312,7 -451,FR,EG,201812,1,1,468912,265660 -459,FR,EG,201812,3,2,40793,4545 -462,FR,EG,201812,1,2,1350287,4969493 -522,FR,EG,201812,1,2,116380,329614 -522,FR,EG,201812,1,2,1163175,2860814 -532,FR,EG,201812,3,2,17451,1506 -536,FR,EG,201812,1,2,7072,510 -536,FR,EG,201812,1,2,38717,2308 -536,FR,EG,201812,4,2,7034,269 -542,FR,EG,201812,1,2,362059,434046 -542,FR,EG,201812,1,2,76685,98606 -542,FR,EG,201812,1,2,46430,62394 -542,FR,EG,201812,1,2,14457,17412 -542,FR,EG,201812,1,2,47981,62182 -542,FR,EG,201812,1,2,16600,21690 -542,FR,EG,201812,1,2,90800,123486 -542,FR,EG,201812,1,2,15691,20358 -551,FR,EG,201812,1,2,417253,14263 -551,FR,EG,201812,1,2,370246,179526 -551,FR,EG,201812,4,2,4473,271 -552,FR,EG,201812,1,2,3928,419 -552,FR,EG,201812,1,2,1180,87 -552,FR,EG,201812,4,2,18,0 -552,FR,EG,201812,4,2,2333052,320000 -561,FR,EG,201812,1,2,20558,2836 -561,FR,EG,201812,3,2,20342,3000 -565,FR,EG,201812,4,2,6014,180 -568,FR,EG,201812,1,1,398,370 -568,FR,EG,201812,1,1,123800,51240 -568,FR,EG,201812,1,2,115971,4100 -568,FR,EG,201812,1,2,4032,1035 -568,FR,EG,201812,1,2,3858,35 -568,FR,EG,201812,1,2,382546,63441 -568,FR,EG,201812,1,2,440022,64089 -568,FR,EG,201812,1,2,174129,23051 -568,FR,EG,201812,4,2,16963,2482 -568,FR,EG,201812,4,2,30834,2603 -611,FR,EG,201812,3,1,66,19 -614,FR,EG,201812,1,1,3978,18000 -614,FR,EG,201812,1,2,122240,768000 -621,FR,EG,201812,1,2,720,658 -621,FR,EG,201812,1,2,111646,6376 -621,FR,EG,201812,4,2,1415,178 -631,FR,EG,201812,1,2,5500,5393 -631,FR,EG,201812,3,2,4953,22500 -632,FR,EG,201812,1,2,9122,132000 -632,FR,EG,201812,1,2,13265,166687 -639,FR,EG,201812,1,2,4129,1200 -639,FR,EG,201812,3,2,23650,20000 -691,FR,EG,201812,1,1,13160,6750 -691,FR,EG,201812,1,1,89348,202064 -691,FR,EG,201812,1,1,58890,172000 -691,FR,EG,201812,1,1,18757,70500 -691,FR,EG,201812,1,1,8823,21174 -691,FR,EG,201812,1,1,10383,26000 -691,FR,EG,201812,1,1,66569,197000 -691,FR,EG,201812,1,1,8133,47000 -691,FR,EG,201812,1,1,10703,27000 -691,FR,EG,201812,1,1,10494,36800 -691,FR,EG,201812,1,2,61,1 -691,FR,EG,201812,1,2,1917,12000 -691,FR,EG,201812,1,2,8314,73313 -692,FR,EG,201812,1,1,9336,61710 -692,FR,EG,201812,1,2,22209,2176 -692,FR,EG,201812,1,2,11550,20000 -692,FR,EG,201812,3,2,165000,4921 -692,FR,EG,201812,3,2,6591,387 -692,FR,EG,201812,4,2,3812,663 -723,FR,EG,201812,1,1,21943,48000 -724,FR,EG,201812,0,1,1755479,6919243 -724,FR,EG,201812,1,1,985881,4457280 -724,FR,EG,201812,1,1,4755834,15900000 -724,FR,EG,201812,1,1,2389924,8801480 -812,FR,EG,201812,1,1,1218644,5299603 -819,FR,EG,201812,1,1,5477670,15211524 -819,FR,EG,201812,1,1,1762823,5596320 -819,FR,EG,201812,1,2,19471,4800 -819,FR,EG,201812,1,2,80553,602 -819,FR,EG,201812,1,2,43035,20716 -819,FR,EG,201812,1,2,4557,2250 -819,FR,EG,201812,1,2,21851,8200 -819,FR,EG,201812,1,2,14888,14512 -819,FR,EG,201812,1,2,16920,18000 -819,FR,EG,201812,3,2,4400,1044 -819,FR,EG,201812,3,2,81326,1440 -819,FR,EG,201812,3,2,3902,5000 -819,FR,EG,201812,4,2,161329,4204 -819,FR,EG,201812,4,2,1296463,5642 -820,FR,EG,201812,1,2,7296,3200 -820,FR,EG,201812,1,2,60402,120000 -820,FR,EG,201812,1,2,192885,439900 -820,FR,EG,201812,1,2,29500,60000 -841,FR,EG,201812,1,2,471528,820181 -891,FR,EG,201812,1,1,106053,95320 -891,FR,EG,201812,1,1,294966,288000 -891,FR,EG,201812,1,1,93586,69500 -891,FR,EG,201812,1,1,49434,48000 -891,FR,EG,201812,1,1,1092929,983093 -891,FR,EG,201812,1,1,98449,96000 -891,FR,EG,201812,1,1,93680,96000 -891,FR,EG,201812,1,1,24191,24000 -891,FR,EG,201812,1,2,91560,33726 -891,FR,EG,201812,1,2,5900,1569 -891,FR,EG,201812,1,2,10872,165 -891,FR,EG,201812,1,2,11180,3674 -891,FR,EG,201812,1,2,15,1 -891,FR,EG,201812,1,2,10240,2677 -891,FR,EG,201812,1,2,1381290,608323 -891,FR,EG,201812,1,2,98165,49000 -891,FR,EG,201812,1,2,130671,40235 -891,FR,EG,201812,1,2,54620,18000 -891,FR,EG,201812,1,2,17664,10450 -891,FR,EG,201812,1,2,313595,134695 -891,FR,EG,201812,1,2,33950,19800 -891,FR,EG,201812,1,2,84182,39750 -891,FR,EG,201812,1,2,100,400 -891,FR,EG,201812,1,2,38090,22275 -891,FR,EG,201812,3,2,37068,5874 -891,FR,EG,201812,3,2,56961,3120 -891,FR,EG,201812,3,2,40351,24750 -891,FR,EG,201812,3,2,385000,247500 -891,FR,EG,201812,3,2,105000,67500 -891,FR,EG,201812,4,2,17886,4508 -891,FR,EG,201812,4,2,19587,1186 -891,FR,EG,201812,4,2,15010,10 -891,FR,EG,201812,4,2,31004,43200 -892,FR,EG,201812,4,1,1100,152 -892,FR,EG,201812,1,2,98872,34663 -892,FR,EG,201812,1,2,40370,17881 -892,FR,EG,201812,1,2,33909,20000 -892,FR,EG,201812,1,2,213268,53212 -892,FR,EG,201812,1,2,38790,4741 -892,FR,EG,201812,3,2,10,2 -892,FR,EG,201812,3,2,306,2880 -892,FR,EG,201812,3,2,22217,3140 -892,FR,EG,201812,4,2,67884,1242 -892,FR,EG,201812,4,2,155,9 -892,FR,EG,201812,4,2,14486,456 -893,FR,EG,201812,1,1,216145,4140 -893,FR,EG,201812,1,1,13753,3000 -893,FR,EG,201812,3,1,1245,14 -893,FR,EG,201812,3,1,33384,360 -893,FR,EG,201812,3,1,4947,315 -893,FR,EG,201812,3,1,1300,15 -893,FR,EG,201812,4,1,740053,1513 -893,FR,EG,201812,4,1,130681,175 -893,FR,EG,201812,4,1,184082,167 -893,FR,EG,201812,4,1,212171,830 -893,FR,EG,201812,4,1,738,23 -893,FR,EG,201812,4,1,545,114 -893,FR,EG,201812,0,2,81,0 -893,FR,EG,201812,1,2,8449863,113011 -893,FR,EG,201812,1,2,3110,90 -893,FR,EG,201812,1,2,2220475,139601 -893,FR,EG,201812,1,2,365794,5849 -893,FR,EG,201812,1,2,88875,2345 -893,FR,EG,201812,1,2,94149,8333 -893,FR,EG,201812,1,2,497668,4357 -893,FR,EG,201812,1,2,761151,96250 -893,FR,EG,201812,1,2,189461,6044 -893,FR,EG,201812,1,2,1377174,115231 -893,FR,EG,201812,1,2,64149,1048 -893,FR,EG,201812,1,2,41200,2227 -893,FR,EG,201812,3,2,225469,11635 -893,FR,EG,201812,3,2,47100,3723 -893,FR,EG,201812,4,2,2357715,33786 -893,FR,EG,201812,4,2,217000,800 -893,FR,EG,201812,4,2,2261028,16623 -893,FR,EG,201812,4,2,238955,2819 -893,FR,EG,201812,4,2,3427941,22288 -893,FR,EG,201812,4,2,1022618,16900 -893,FR,EG,201812,4,2,3706,200 -893,FR,EG,201812,4,2,121399,6782 -893,FR,EG,201812,4,2,296262,15739 -896,FR,EG,201812,4,1,457,2 -896,FR,EG,201812,0,2,209,1 -896,FR,EG,201812,1,2,235461,17470 -896,FR,EG,201812,1,2,182764,69624 -896,FR,EG,201812,1,2,26972,5884 -896,FR,EG,201812,1,2,6797,1560 -896,FR,EG,201812,1,2,3632683,941898 -896,FR,EG,201812,1,2,131475,20000 -896,FR,EG,201812,1,2,17845,5700 -896,FR,EG,201812,1,2,2608,2200 -896,FR,EG,201812,1,2,127511,10000 -896,FR,EG,201812,1,2,827103,350890 -896,FR,EG,201812,1,2,7036,2934 -896,FR,EG,201812,1,2,190673,99949 -896,FR,EG,201812,1,2,292275,55290 -896,FR,EG,201812,1,2,128590,38460 -896,FR,EG,201812,1,2,61426,21600 -896,FR,EG,201812,1,2,8087,1100 -896,FR,EG,201812,1,2,171061,64672 -896,FR,EG,201812,3,2,3761,84 -896,FR,EG,201812,3,2,66086,13099 -896,FR,EG,201812,3,2,20771,12767 -896,FR,EG,201812,3,2,2497,24000 -896,FR,EG,201812,4,2,622864,6335 -896,FR,EG,201812,4,2,190812,1981 -896,FR,EG,201812,4,2,145,5 -896,FR,EG,201812,4,2,151085,3575 -896,FR,EG,201812,4,2,3768,190 -910,FR,EG,201812,3,1,890,26 -910,FR,EG,201812,3,1,121070,2517 -910,FR,EG,201812,3,1,146489,3443 -910,FR,EG,201812,4,1,58391,696 -910,FR,EG,201812,4,1,2145,22 -910,FR,EG,201812,4,1,3947,480 -910,FR,EG,201812,4,1,487,40 -910,FR,EG,201812,4,1,8924,133 -910,FR,EG,201812,1,2,133857,104896 -910,FR,EG,201812,1,2,45482,23970 -910,FR,EG,201812,1,2,8335034,604935 -910,FR,EG,201812,1,2,29550,36000 -910,FR,EG,201812,1,2,1391,117 -910,FR,EG,201812,1,2,1264028,109958 -910,FR,EG,201812,1,2,5990,7015 -910,FR,EG,201812,1,2,1850,3720 -910,FR,EG,201812,1,2,1508,35 -910,FR,EG,201812,1,2,54482,5026 -910,FR,EG,201812,1,2,204401,51986 -910,FR,EG,201812,1,2,6388,720 -910,FR,EG,201812,3,2,1488,7094 -910,FR,EG,201812,4,2,158147,1415 -910,FR,EG,201812,4,2,23579,46 -910,FR,EG,201812,4,2,1887183,2145 -910,FR,EG,201812,4,2,1950,67 -910,FR,EG,201812,4,2,9149,190 -920,FR,EG,201812,1,1,3104,508 -920,FR,EG,201812,1,2,259650,75897 -920,FR,EG,201812,1,2,69666,44141 -920,FR,EG,201812,1,2,17000,8252 -920,FR,EG,201812,1,2,7766,927 -920,FR,EG,201812,1,2,65500,81741 -920,FR,EG,201812,1,2,5200,2761 -920,FR,EG,201812,1,2,626400,16640 -920,FR,EG,201812,1,2,42750,24986 -920,FR,EG,201812,3,2,6500,8814 -920,FR,EG,201812,3,2,34917,20520 -920,FR,EG,201812,4,2,6846,133 -920,FR,EG,201812,4,2,4474,5 -920,FR,EG,201812,4,2,645,52 -920,FR,EG,201812,4,2,314,11 -920,FR,EG,201812,4,2,5526,580 -931,FR,EG,201812,0,1,2836,15 -931,FR,EG,201812,1,1,101561,23367 -931,FR,EG,201812,1,1,730463,34446 -931,FR,EG,201812,1,1,1543626,84012 -931,FR,EG,201812,1,1,51241,14800 -931,FR,EG,201812,1,1,478630,67942 -931,FR,EG,201812,1,1,141602,11867 -931,FR,EG,201812,1,1,510763,61906 -931,FR,EG,201812,1,1,335605,48952 -931,FR,EG,201812,1,1,101515,19746 -931,FR,EG,201812,1,1,1615839,290919 -931,FR,EG,201812,1,1,31957,5042 -931,FR,EG,201812,1,1,48404,2391 -931,FR,EG,201812,1,1,209265,48612 -931,FR,EG,201812,3,1,5776,215 -931,FR,EG,201812,3,1,16290,338 -931,FR,EG,201812,3,1,8147,191 -931,FR,EG,201812,4,1,604229,199 -931,FR,EG,201812,4,1,410,123 -931,FR,EG,201812,4,1,234976,1111 -931,FR,EG,201812,4,1,301,3 -931,FR,EG,201812,4,1,389,0 -931,FR,EG,201812,1,2,10383642,152214 -931,FR,EG,201812,1,2,30800,678 -931,FR,EG,201812,1,2,229946,50415 -931,FR,EG,201812,1,2,1020,30 -931,FR,EG,201812,1,2,1027,103 -931,FR,EG,201812,1,2,21044,165 -931,FR,EG,201812,1,2,4259663,322022 -931,FR,EG,201812,1,2,182984,27146 -931,FR,EG,201812,1,2,57510,507 -931,FR,EG,201812,1,2,364663,188756 -931,FR,EG,201812,1,2,9656,1639 -931,FR,EG,201812,1,2,1524190,75456 -931,FR,EG,201812,1,2,272097,24302 -931,FR,EG,201812,1,2,211050,15000 -931,FR,EG,201812,1,2,114892,18312 -931,FR,EG,201812,3,2,1309419,149601 -931,FR,EG,201812,3,2,63944,4250 -931,FR,EG,201812,4,2,7008186,42996 -931,FR,EG,201812,4,2,48569,244 -931,FR,EG,201812,4,2,7556,50 -931,FR,EG,201812,4,2,192352,6000 -931,FR,EG,201812,4,2,51022490,15815 -931,FR,EG,201812,4,2,6819,9 -931,FR,EG,201812,4,2,31467,985 -931,FR,EG,201812,4,2,3004,38 -931,FR,EG,201812,4,2,2926,10 -931,FR,EG,201812,4,2,356166,20360 -931,FR,EG,201812,4,2,12937,9 -931,FR,EG,201812,4,2,17527,43 -931,FR,EG,201812,5,2,1233,10 -939,FR,EG,201812,1,1,43825,11000 -939,FR,EG,201812,1,1,43642,34447 -939,FR,EG,201812,3,1,539,0 -939,FR,EG,201812,3,1,6,0 -939,FR,EG,201812,3,1,963,14 -939,FR,EG,201812,4,1,233,80 -939,FR,EG,201812,4,1,105,0 -939,FR,EG,201812,4,1,23941,75 -939,FR,EG,201812,4,1,626,3 -939,FR,EG,201812,4,1,2231,10 -939,FR,EG,201812,1,2,2440984,292806 -939,FR,EG,201812,1,2,140240,1050 -939,FR,EG,201812,1,2,261333,89100 -939,FR,EG,201812,1,2,66918,769 -939,FR,EG,201812,1,2,78201,2367 -939,FR,EG,201812,1,2,88500,800 -939,FR,EG,201812,1,2,35000,15000 -939,FR,EG,201812,1,2,14280,262 -939,FR,EG,201812,1,2,43097,1458 -939,FR,EG,201812,1,2,349768,7443 -939,FR,EG,201812,1,2,177100,29487 -939,FR,EG,201812,1,2,3518041,323223 -939,FR,EG,201812,1,2,25110,2715 -939,FR,EG,201812,1,2,640536,5457 -939,FR,EG,201812,1,2,173195,31387 -939,FR,EG,201812,1,2,220550,11228 -939,FR,EG,201812,1,2,483052,1943 -939,FR,EG,201812,1,2,53152,25786 -939,FR,EG,201812,1,2,58,0 -939,FR,EG,201812,1,2,33637,2145 -939,FR,EG,201812,1,2,2354165,180921 -939,FR,EG,201812,1,2,64197,28084 -939,FR,EG,201812,1,2,171323,62466 -939,FR,EG,201812,1,2,27800,90145 -939,FR,EG,201812,3,2,115231,7924 -939,FR,EG,201812,4,2,2060701,15089 -939,FR,EG,201812,4,2,16067,47 -939,FR,EG,201812,4,2,6517,40 -939,FR,EG,201812,4,2,420283,3267 -939,FR,EG,201812,4,2,5129,161 -939,FR,EG,201812,4,2,6461,296 -939,FR,EG,201812,4,2,5931,233 -939,FR,EG,201812,4,2,2985,67 -939,FR,EG,201812,4,2,6996,2 -939,FR,EG,201812,4,2,190200,7700 -939,FR,EG,201812,4,2,2640,2 -939,FR,EG,201812,4,2,12734,103 -941,FR,EG,201812,1,1,287324,96176 -941,FR,EG,201812,1,1,1125,656 -941,FR,EG,201812,4,1,1039,150 -941,FR,EG,201812,1,2,250623,14751 -941,FR,EG,201812,1,2,34334,12079 -941,FR,EG,201812,4,2,12099,510 -949,FR,EG,201812,0,1,170314,18777 -949,FR,EG,201812,1,1,321,295 -949,FR,EG,201812,1,1,18381,10227 -949,FR,EG,201812,1,1,59062,26370 -949,FR,EG,201812,3,1,1182,14 -949,FR,EG,201812,3,1,73,8 -949,FR,EG,201812,4,1,10020,672 -949,FR,EG,201812,4,1,77,2 -949,FR,EG,201812,4,1,2284,180 -949,FR,EG,201812,4,1,812,5 -949,FR,EG,201812,1,2,410870,15810 -949,FR,EG,201812,1,2,10050,3587 -949,FR,EG,201812,1,2,2950,2755 -949,FR,EG,201812,1,2,236037,32287 -949,FR,EG,201812,1,2,14681,340 -949,FR,EG,201812,1,2,14800,1870 -949,FR,EG,201812,1,2,71700,15200 -949,FR,EG,201812,1,2,249775,65073 -949,FR,EG,201812,1,2,37108,449 -949,FR,EG,201812,3,2,91520,10059 -949,FR,EG,201812,3,2,6423,28 -949,FR,EG,201812,4,2,1322885,4043 -949,FR,EG,201812,4,2,2789,390 -949,FR,EG,201812,4,2,140372,5518 -949,FR,EG,201812,4,2,97480,489 -949,FR,EG,201812,4,2,48,2 -949,FR,EG,201812,4,2,123587,1787 -949,FR,EG,201812,4,2,8570,670 -949,FR,EG,201812,4,2,1104,13 -951,FR,EG,201812,0,2,25,2 -951,FR,EG,201812,1,2,470,49 -951,FR,EG,201812,1,2,4934,128 -951,FR,EG,201812,1,2,827,105 -951,FR,EG,201812,4,2,804,82 -951,FR,EG,201812,4,2,456,12 -952,FR,EG,201812,1,1,793,740 -952,FR,EG,201812,1,1,11545,18240 -952,FR,EG,201812,1,1,77416,62182 -952,FR,EG,201812,1,1,96274,57088 -952,FR,EG,201812,3,1,302,24 -952,FR,EG,201812,3,1,60120,131992 -952,FR,EG,201812,3,1,9279,22176 -952,FR,EG,201812,4,1,473,16 -952,FR,EG,201812,4,1,346,350 -952,FR,EG,201812,4,1,564,45 -952,FR,EG,201812,4,1,5183,9 -952,FR,EG,201812,1,2,1661,13 -952,FR,EG,201812,1,2,39247,24079 -952,FR,EG,201812,1,2,116148,141141 -952,FR,EG,201812,1,2,127514,162937 -952,FR,EG,201812,3,2,14329,3076 -952,FR,EG,201812,3,2,730525,266202 -952,FR,EG,201812,4,2,13611,306 -952,FR,EG,201812,4,2,511,10 -962,FR,EG,201812,1,1,1139,161 -962,FR,EG,201812,1,1,89687,15349 -962,FR,EG,201812,1,1,4232,2096 -962,FR,EG,201812,1,1,1607,120 -962,FR,EG,201812,1,1,1181919,242389 -962,FR,EG,201812,1,1,22519,1821 -962,FR,EG,201812,1,1,11986,1825 -962,FR,EG,201812,1,1,1102666,567944 -962,FR,EG,201812,1,1,331120,65743 -962,FR,EG,201812,3,1,9,0 -962,FR,EG,201812,4,1,8396,651 -962,FR,EG,201812,4,1,386,107 -962,FR,EG,201812,4,1,17025,1560 -962,FR,EG,201812,4,1,8320,986 -962,FR,EG,201812,4,1,315,12 -962,FR,EG,201812,4,1,11961,2311 -962,FR,EG,201812,0,2,79,40 -962,FR,EG,201812,1,2,1640,153 -962,FR,EG,201812,1,2,143461,13028 -962,FR,EG,201812,1,2,18385,3118 -962,FR,EG,201812,1,2,62958,20705 -962,FR,EG,201812,1,2,127816,75637 -962,FR,EG,201812,1,2,495,17 -962,FR,EG,201812,1,2,90504,4845 -962,FR,EG,201812,3,2,1779,60 -962,FR,EG,201812,3,2,20104,392 -962,FR,EG,201812,4,2,24710,1171 -962,FR,EG,201812,4,2,1334,35 -962,FR,EG,201812,4,2,1501,200 -962,FR,EG,201812,4,2,1579,70 -963,FR,EG,201812,0,1,252069,13575 -963,FR,EG,201812,1,1,66,14 -963,FR,EG,201812,1,1,25477,495 -963,FR,EG,201812,1,1,33600,2420 -963,FR,EG,201812,1,1,3168529,251762 -963,FR,EG,201812,1,1,343208,20235 -963,FR,EG,201812,1,1,50798,3153 -963,FR,EG,201812,1,1,358887,31246 -963,FR,EG,201812,1,1,119708,9130 -963,FR,EG,201812,1,1,26386,2580 -963,FR,EG,201812,1,1,23637,1902 -963,FR,EG,201812,3,1,4471,308 -963,FR,EG,201812,3,1,74,8 -963,FR,EG,201812,3,1,179,0 -963,FR,EG,201812,4,1,42141,2318 -963,FR,EG,201812,4,1,788,19 -963,FR,EG,201812,4,1,3057,30 -963,FR,EG,201812,4,1,17572,450 -963,FR,EG,201812,4,1,133474,5195 -963,FR,EG,201812,4,1,2551,12 -963,FR,EG,201812,4,1,48,6 -963,FR,EG,201812,4,1,11857,1280 -963,FR,EG,201812,0,2,60,1 -963,FR,EG,201812,1,2,19,5 -963,FR,EG,201812,1,2,102,4 -963,FR,EG,201812,1,2,3367,984 -963,FR,EG,201812,1,2,9065,334 -963,FR,EG,201812,3,2,6262,192 -963,FR,EG,201812,4,2,64262,2640 -963,FR,EG,201812,4,2,4388,25 -963,FR,EG,201812,4,2,10417,413 -963,FR,EG,201812,4,2,2826,50 -963,FR,EG,201812,4,2,7605,570 -971,FR,EG,201812,1,1,139834,23434 -971,FR,EG,201812,1,1,28900,11379 -971,FR,EG,201812,3,1,661,28 -971,FR,EG,201812,1,2,31069,1014 -971,FR,EG,201812,1,2,831,14 -971,FR,EG,201812,1,2,17820,1050 -971,FR,EG,201812,1,2,505170,129494 -971,FR,EG,201812,1,2,77030,13951 -971,FR,EG,201812,1,2,22131,5960 -971,FR,EG,201812,1,2,63010,21126 -971,FR,EG,201812,4,2,315489,22861 -971,FR,EG,201812,4,2,3992,86 -971,FR,EG,201812,4,2,4370,40 -971,FR,EG,201812,4,2,19758,23 -971,FR,EG,201812,4,2,173,6 -972,FR,EG,201812,4,1,1674,1134 -972,FR,EG,201812,1,2,249222,313355 -972,FR,EG,201812,1,2,23833,23833 -972,FR,EG,201812,1,2,177852,40830 -972,FR,EG,201812,1,2,73950,43008 -972,FR,EG,201812,1,2,34958,22564 -972,FR,EG,201812,3,2,3023,640 -972,FR,EG,201812,3,2,44892,63999 -972,FR,EG,201812,4,2,232,11 -972,FR,EG,201812,4,2,1214,220 -973,FR,EG,201812,1,1,72,60 -973,FR,EG,201812,1,1,465,200 -973,FR,EG,201812,1,1,527,175 -973,FR,EG,201812,1,1,29663,17462 -973,FR,EG,201812,4,1,1709,120 -973,FR,EG,201812,1,2,811735,371502 -973,FR,EG,201812,1,2,735,106 -973,FR,EG,201812,1,2,127884,126017 -973,FR,EG,201812,1,2,20,45 -973,FR,EG,201812,1,2,313085,254305 -973,FR,EG,201812,4,2,8937,2643 -973,FR,EG,201812,4,2,444,18 -973,FR,EG,201812,4,2,118,15 -973,FR,EG,201812,4,2,1984,128 -974,FR,EG,201812,3,1,3069,404 -974,FR,EG,201812,3,1,47,5 -974,FR,EG,201812,4,1,519,120 -974,FR,EG,201812,4,1,179,1 -974,FR,EG,201812,4,1,449,109 -974,FR,EG,201812,4,1,167,12 -974,FR,EG,201812,4,1,197,3 -974,FR,EG,201812,4,1,56,4 -974,FR,EG,201812,0,2,225,16 -974,FR,EG,201812,1,2,5188,199 -974,FR,EG,201812,1,2,16155,1577 -974,FR,EG,201812,1,2,23513,49 -974,FR,EG,201812,1,2,336,8 -974,FR,EG,201812,1,2,665,169 -974,FR,EG,201812,3,2,134,62 -974,FR,EG,201812,4,2,90091,10151 -974,FR,EG,201812,4,2,81,1 -974,FR,EG,201812,4,2,2995,1129 -974,FR,EG,201812,4,2,19,4 -974,FR,EG,201812,4,2,1400,26 -974,FR,EG,201812,5,2,2100,38 -975,FR,EG,201812,1,1,15772,4964 -975,FR,EG,201812,1,1,30049,22599 -975,FR,EG,201812,1,1,27850,8211 -975,FR,EG,201812,1,2,30762,2315 -975,FR,EG,201812,1,2,126817,9378 -975,FR,EG,201812,1,2,3306,97 -975,FR,EG,201812,1,2,2768,254 -975,FR,EG,201812,4,2,148420,204 -975,FR,EG,201812,4,2,4319,170 -975,FR,EG,201812,4,2,2941,40 -976,FR,EG,201812,1,1,80,70 -976,FR,EG,201812,1,1,10532,6143 -976,FR,EG,201812,3,1,358,20 -976,FR,EG,201812,1,2,3992,8 -976,FR,EG,201812,4,2,17,0 -976,FR,EG,201812,4,2,1129,10 -979,FR,EG,201812,1,1,20296,17463 -979,FR,EG,201812,1,1,1931,354 -979,FR,EG,201812,1,1,8469,12075 -979,FR,EG,201812,1,1,357,135 -979,FR,EG,201812,1,1,19940,15443 -979,FR,EG,201812,1,1,52940,25034 -979,FR,EG,201812,1,1,20515,9776 -979,FR,EG,201812,1,1,106716,26874 -979,FR,EG,201812,1,1,183255,65365 -979,FR,EG,201812,1,1,512660,212025 -979,FR,EG,201812,1,1,130220,26115 -979,FR,EG,201812,1,1,15595,9467 -979,FR,EG,201812,3,1,11085,42 -979,FR,EG,201812,3,1,96,10 -979,FR,EG,201812,4,1,40928,2536 -979,FR,EG,201812,4,1,7561,12 -979,FR,EG,201812,4,1,195,2 -979,FR,EG,201812,4,1,29434,27 -979,FR,EG,201812,4,1,5884,43 -979,FR,EG,201812,0,2,442,16 -979,FR,EG,201812,1,2,282731,5388 -979,FR,EG,201812,1,2,60328,3240 -979,FR,EG,201812,1,2,3596,228 -979,FR,EG,201812,1,2,9338,361 -979,FR,EG,201812,1,2,13655,637 -979,FR,EG,201812,1,2,354360,23732 -979,FR,EG,201812,1,2,48010,41411 -979,FR,EG,201812,1,2,557610,12010 -979,FR,EG,201812,1,2,11400,4000 -979,FR,EG,201812,1,2,5280,6996 -979,FR,EG,201812,1,2,388,2 -979,FR,EG,201812,1,2,114503,9362 -979,FR,EG,201812,1,2,194531,46114 -979,FR,EG,201812,1,2,3531,212 -979,FR,EG,201812,3,2,121590,2846 -979,FR,EG,201812,3,2,1908,15 -979,FR,EG,201812,3,2,11800,91 -979,FR,EG,201812,3,2,2391,76 -979,FR,EG,201812,4,2,25832383,16733 -979,FR,EG,201812,4,2,752,9 -979,FR,EG,201812,4,2,11017,481 -979,FR,EG,201812,4,2,28898,160 -979,FR,EG,201812,4,2,2270719,8127 -979,FR,EG,201812,4,2,10770,60 -979,FR,EG,201812,4,2,18368,48 -979,FR,EG,201812,4,2,54523,510 -979,FR,EG,201812,4,2,1350,9 -979,FR,EG,201812,4,2,750,225 -979,FR,EG,201812,4,2,35470,66 -979,FR,EG,201812,4,2,48286,4850 -979,FR,EG,201812,4,2,22874,3 -979,FR,EG,201812,4,2,1310,1 -979,FR,EG,201812,5,2,584,2 -999,FR,EG,201812,0,1,1100,0 -999,FR,EG,201812,1,1,0,66267748 -999,FR,EG,201812,4,1,2000,0 -999,FR,EG,201812,4,1,952,0 -999,FR,EG,201812,4,1,105,0 -999,FR,EG,201812,1,2,56054,8691 -999,FR,EG,201812,1,2,16263,6000 -999,FR,EG,201812,1,2,8225,675 -999,FR,EG,201812,1,2,69474,1983 -999,FR,EG,201812,1,2,18724,6324 -999,FR,EG,201812,1,2,65089,19696 -999,FR,EG,201812,1,2,14978,4725 -999,FR,EG,201812,1,2,211,17 -999,FR,EG,201812,1,2,608175,487024 -999,FR,EG,201812,1,2,491,42 -999,FR,EG,201812,1,2,314478,313230 -999,FR,EG,201812,1,2,32574,16834 -999,FR,EG,201812,1,2,324462,43000 -999,FR,EG,201812,1,2,757682,803598 -999,FR,EG,201812,1,2,5000,0 -999,FR,EG,201812,1,2,18500,0 -999,FR,EG,201812,1,2,264658,222700 -999,FR,EG,201812,3,2,1275,900 -999,FR,EG,201812,3,2,54575,19024 -999,FR,EG,201812,3,2,65544,23246 -999,FR,EG,201812,3,2,113861,40722 -999,FR,EG,201812,3,2,57660,20630 -999,FR,EG,201812,3,2,58808,21008 -999,FR,EG,201812,3,2,243025,2685 -999,FR,EG,201812,3,2,24434,124000 -999,FR,EG,201812,4,2,436691,1846 -999,FR,EG,201812,4,2,23970,48 -999,FR,EG,201812,4,2,2575,0 -999,FR,EG,201812,4,2,693960,287 -999,FR,EG,201812,4,2,19741,2190 -099,FR,SD,201812,1,1,1533017,1452000 -099,FR,SD,201812,1,1,1880412,1341000 -099,FR,SD,201812,4,2,17000,311 -139,FR,SD,201812,1,2,106042,20000 -139,FR,SD,201812,1,2,60697,10560 -139,FR,SD,201812,1,2,259029,64400 -145,FR,SD,201812,1,2,60552,20250 -145,FR,SD,201812,1,2,6057,2250 -179,FR,SD,201812,1,2,92716,88664 -182,FR,SD,201812,1,2,378737,330200 -819,FR,SD,201812,4,2,7850,62 -893,FR,SD,201812,4,1,4,5 -893,FR,SD,201812,1,2,173160,9000 -893,FR,SD,201812,1,2,56235,3912 -893,FR,SD,201812,4,2,168727,4525 -893,FR,SD,201812,4,2,120180,260 -893,FR,SD,201812,4,2,392338,2657 -896,FR,SD,201812,1,2,169049,30011 -896,FR,SD,201812,4,2,12,4 -896,FR,SD,201812,4,2,6165,200 -896,FR,SD,201812,4,2,9400,80 -896,FR,SD,201812,4,2,500,10 -910,FR,SD,201812,1,2,48350,2459 -910,FR,SD,201812,1,2,1500,2280 -910,FR,SD,201812,1,2,220250,11573 -910,FR,SD,201812,4,2,90183,4127 -910,FR,SD,201812,4,2,155,1 -920,FR,SD,201812,1,2,1300317,123600 -920,FR,SD,201812,1,2,46947,18285 -920,FR,SD,201812,1,2,115705,4083 -920,FR,SD,201812,4,2,2960,97 -920,FR,SD,201812,4,2,561,133 -920,FR,SD,201812,4,2,10504,325 -931,FR,SD,201812,4,2,114621,562 -939,FR,SD,201812,4,1,771,296 -939,FR,SD,201812,1,2,37638,450 -939,FR,SD,201812,1,2,171402,9880 -939,FR,SD,201812,4,2,291879,1492 -939,FR,SD,201812,4,2,237,1 -939,FR,SD,201812,4,2,6360,320 -939,FR,SD,201812,4,2,17496,615 -939,FR,SD,201812,4,2,4145,189 -939,FR,SD,201812,4,2,2574,110 -949,FR,SD,201812,1,2,116620,69020 -949,FR,SD,201812,4,2,719,1 -949,FR,SD,201812,4,2,18,0 -949,FR,SD,201812,4,2,1815,603 -951,FR,SD,201812,4,2,1138,84 -963,FR,SD,201812,1,2,82354,1789 -963,FR,SD,201812,3,2,3449,121 -971,FR,SD,201812,4,2,351,3 -971,FR,SD,201812,4,2,163,0 -974,FR,SD,201812,4,2,20,64 -974,FR,SD,201812,4,2,129,68 -975,FR,SD,201812,4,2,900,33 -979,FR,SD,201812,3,2,455,16 -979,FR,SD,201812,4,2,192,0 -979,FR,SD,201812,4,2,11115,10 -979,FR,SD,201812,4,2,2331,10 -999,FR,SD,201812,3,1,319,0 -999,FR,SD,201812,1,2,22522,0 -999,FR,SD,201812,4,2,17432,0 -999,FR,SD,201812,4,2,1,0 -999,FR,SD,201812,4,2,3500,0 -999,FR,SD,201812,4,2,1500,0 -139,FR,SS,201812,1,2,78449,14103 -139,FR,SS,201812,4,2,106632,18240 -974,FR,SS,201812,1,2,19,33 -999,FR,SS,201812,1,2,56158,23760 -999,FR,SS,201812,4,2,1031,0 -016,FR,MR,201812,1,2,213,132 -035,FR,MR,201812,1,2,1280,237 -035,FR,MR,201812,1,2,19110,22422 -035,FR,MR,201812,1,2,18928,21168 -049,FR,MR,201812,1,2,18039,25000 -049,FR,MR,201812,1,2,123338,181470 -049,FR,MR,201812,1,2,19375,25000 -049,FR,MR,201812,1,2,30492,22855 -055,FR,MR,201812,1,2,25215,51900 -099,FR,MR,201812,4,2,5751,211 -112,FR,MR,201812,1,2,182,111 -128,FR,MR,201812,4,1,3758,880 -128,FR,MR,201812,1,2,17,8 -128,FR,MR,201812,1,2,2942,336 -128,FR,MR,201812,4,2,213,424 -131,FR,MR,201812,1,2,1490,189 -131,FR,MR,201812,3,2,10723,1145 -132,FR,MR,201812,1,2,1925,445 -133,FR,MR,201812,1,2,10928,1168 -133,FR,MR,201812,1,2,581,32 -136,FR,MR,201812,1,2,458,184 -139,FR,MR,201812,1,2,1680,20 -139,FR,MR,201812,1,2,781091,396297 -139,FR,MR,201812,1,2,1130,663 -139,FR,MR,201812,1,2,230871,149900 -139,FR,MR,201812,1,2,38675,18063 -139,FR,MR,201812,1,2,162329,24642 -139,FR,MR,201812,3,2,38856,23200 -142,FR,MR,201812,1,1,279144,41728 -142,FR,MR,201812,4,1,172898,28533 -142,FR,MR,201812,4,1,9996,748 -143,FR,MR,201812,1,2,25484,38830 -143,FR,MR,201812,1,2,24482,47216 -143,FR,MR,201812,1,2,78220,165249 -143,FR,MR,201812,1,2,19958,24795 -143,FR,MR,201812,1,2,40865,88919 -143,FR,MR,201812,1,2,62805,94099 -143,FR,MR,201812,3,2,17,2 -144,FR,MR,201812,1,2,32907,5835 -144,FR,MR,201812,1,2,5305,922 -147,FR,MR,201812,1,2,15845,1407 -147,FR,MR,201812,1,2,173,39 -148,FR,MR,201812,1,2,714,113 -161,FR,MR,201812,1,2,80,200 -163,FR,MR,201812,1,2,25467,6812 -163,FR,MR,201812,1,2,2314,553 -163,FR,MR,201812,1,2,8646,3765 -163,FR,MR,201812,1,2,74364,35269 -163,FR,MR,201812,3,2,2659,916 -164,FR,MR,201812,1,2,127,28 -164,FR,MR,201812,1,2,452,232 -164,FR,MR,201812,1,2,737,158 -166,FR,MR,201812,1,2,16150,457 -166,FR,MR,201812,1,2,684,368 -179,FR,MR,201812,1,1,117173,93844 -179,FR,MR,201812,1,2,3021,3729 -179,FR,MR,201812,1,2,32400,22500 -181,FR,MR,201812,4,2,2845,11 -182,FR,MR,201812,1,1,2255305,1947030 -182,FR,MR,201812,1,2,418,126 -321,FR,MR,201812,4,2,44,2 -323,FR,MR,201812,1,2,16249,13374 -341,FR,MR,201812,1,2,137892,79608 -532,FR,MR,201812,1,2,14708,12325 -551,FR,MR,201812,1,2,2553,188 -568,FR,MR,201812,1,2,319,6 -611,FR,MR,201812,1,2,7930,7333 -621,FR,MR,201812,1,2,64,79 -639,FR,MR,201812,1,2,41,270 -691,FR,MR,201812,1,2,13104,20388 -819,FR,MR,201812,1,2,26543,9865 -819,FR,MR,201812,4,2,5898,55 -819,FR,MR,201812,4,2,777,14 -891,FR,MR,201812,1,2,209,77 -891,FR,MR,201812,1,2,357840,168000 -891,FR,MR,201812,1,2,34240,17600 -891,FR,MR,201812,3,2,30296,8800 -892,FR,MR,201812,1,2,15388,79041 -892,FR,MR,201812,4,2,162,4 -893,FR,MR,201812,4,1,20,12 -893,FR,MR,201812,0,2,2986,69 -893,FR,MR,201812,1,2,1927494,130896 -893,FR,MR,201812,1,2,2947,25 -893,FR,MR,201812,1,2,104150,18438 -893,FR,MR,201812,1,2,7959,7402 -893,FR,MR,201812,4,2,77756,767 -893,FR,MR,201812,4,2,16317,235 -893,FR,MR,201812,5,2,4020,19 -896,FR,MR,201812,1,2,72441,17435 -896,FR,MR,201812,1,2,6080,2000 -896,FR,MR,201812,1,2,1591,10 -896,FR,MR,201812,1,2,15800,2070 -896,FR,MR,201812,1,2,309,307 -896,FR,MR,201812,4,2,36477,494 -910,FR,MR,201812,1,2,106020,10240 -910,FR,MR,201812,1,2,182,0 -910,FR,MR,201812,1,2,47800,5895 -910,FR,MR,201812,1,2,6634,405 -910,FR,MR,201812,1,2,13321,1109 -910,FR,MR,201812,1,2,54300,4698 -910,FR,MR,201812,1,2,52354,45396 -910,FR,MR,201812,1,2,45500,4216 -910,FR,MR,201812,1,2,1400,2520 -910,FR,MR,201812,4,2,11874,189 -910,FR,MR,201812,4,2,1595,6 -920,FR,MR,201812,1,2,5430,268 -920,FR,MR,201812,1,2,15013,322 -920,FR,MR,201812,1,2,8470,1500 -920,FR,MR,201812,4,2,1830,40 -920,FR,MR,201812,4,2,3608,200 -931,FR,MR,201812,0,2,2125,2 -931,FR,MR,201812,1,2,248676,32103 -931,FR,MR,201812,1,2,6530,399 -931,FR,MR,201812,1,2,51837,715 -931,FR,MR,201812,1,2,1748,5057 -931,FR,MR,201812,1,2,184860,7100 -931,FR,MR,201812,1,2,26270,2300 -931,FR,MR,201812,3,2,340,27 -931,FR,MR,201812,4,2,77575,483 -931,FR,MR,201812,4,2,4865,140 -939,FR,MR,201812,1,2,1898276,95465 -939,FR,MR,201812,1,2,2454,80 -939,FR,MR,201812,1,2,49497,2625 -939,FR,MR,201812,1,2,98145,9923 -939,FR,MR,201812,1,2,3963,2000 -939,FR,MR,201812,1,2,1520300,56080 -939,FR,MR,201812,1,2,403,150 -939,FR,MR,201812,1,2,102040,33093 -939,FR,MR,201812,4,2,134872,1272 -939,FR,MR,201812,4,2,15001,108 -939,FR,MR,201812,4,2,45541,447 -939,FR,MR,201812,4,2,12740,189 -939,FR,MR,201812,4,2,5160,60 -939,FR,MR,201812,4,2,2609,100 -939,FR,MR,201812,4,2,5397,15 -939,FR,MR,201812,4,2,34437,3510 -941,FR,MR,201812,1,2,40284,12456 -941,FR,MR,201812,4,2,1942,700 -949,FR,MR,201812,1,2,363915,14627 -949,FR,MR,201812,1,2,484,13 -949,FR,MR,201812,1,2,1744,141 -949,FR,MR,201812,1,2,178,20 -949,FR,MR,201812,3,2,19500,1889 -949,FR,MR,201812,4,2,13297,386 -951,FR,MR,201812,4,2,259,60 -952,FR,MR,201812,1,2,39493,1392 -962,FR,MR,201812,1,2,79196,4338 -962,FR,MR,201812,1,2,59840,22847 -962,FR,MR,201812,1,2,86,39 -962,FR,MR,201812,4,2,210,21 -963,FR,MR,201812,3,1,617,0 -963,FR,MR,201812,3,1,50,0 -963,FR,MR,201812,1,2,18762,2030 -963,FR,MR,201812,1,2,4721,255 -963,FR,MR,201812,1,2,27505,16170 -971,FR,MR,201812,1,2,5743,857 -971,FR,MR,201812,4,2,9454,139 -972,FR,MR,201812,4,2,330,4 -972,FR,MR,201812,4,2,928,61 -973,FR,MR,201812,0,2,32,1 -973,FR,MR,201812,1,2,8724,3356 -973,FR,MR,201812,1,2,56324,20185 -973,FR,MR,201812,1,2,3516,1931 -973,FR,MR,201812,1,2,56,4 -973,FR,MR,201812,3,2,1932,78 -973,FR,MR,201812,4,2,423,52 -974,FR,MR,201812,1,2,581,70 -974,FR,MR,201812,1,2,24,98 -974,FR,MR,201812,4,2,59425,176 -974,FR,MR,201812,4,2,2000,35 -974,FR,MR,201812,4,2,1290,500 -975,FR,MR,201812,1,2,28435,490 -975,FR,MR,201812,1,2,7484,684 -975,FR,MR,201812,1,2,2359,390 -975,FR,MR,201812,4,2,800,180 -976,FR,MR,201812,1,2,1361,668 -979,FR,MR,201812,4,1,3556,430 -979,FR,MR,201812,0,2,3509,5 -979,FR,MR,201812,1,2,65612,3778 -979,FR,MR,201812,1,2,32027,750 -979,FR,MR,201812,1,2,539371,357636 -979,FR,MR,201812,1,2,488,104 -979,FR,MR,201812,1,2,120240,4505 -979,FR,MR,201812,1,2,17987,21000 -979,FR,MR,201812,3,2,369,36 -979,FR,MR,201812,4,2,107176,889 -979,FR,MR,201812,4,2,130700,157 -979,FR,MR,201812,4,2,2355,23 -979,FR,MR,201812,4,2,7147,24 -999,FR,MR,201812,1,2,6568,19 -999,FR,MR,201812,1,2,3500,0 -999,FR,MR,201812,1,2,47641,30 -999,FR,MR,201812,1,2,7000,0 -999,FR,MR,201812,1,2,41770,0 -999,FR,MR,201812,1,2,24000,0 -999,FR,MR,201812,3,2,15950,47780 -999,FR,MR,201812,4,2,357,0 -999,FR,MR,201812,4,2,1070,0 -999,FR,MR,201812,4,2,1,0 -999,FR,MR,201812,4,2,3,0 -001,FR,ML,201812,4,2,16887,193 -011,FR,ML,201812,1,2,1149034,5202320 -011,FR,ML,201812,1,2,1427505,5900000 -016,FR,ML,201812,1,2,5820,3035 -019,FR,ML,201812,1,1,1240,4452 -020,FR,ML,201812,1,2,11960,52000 -035,FR,ML,201812,1,2,86136,37866 -039,FR,ML,201812,3,1,5131,5550 -039,FR,ML,201812,1,2,40598,100800 -039,FR,ML,201812,4,2,4374,845 -049,FR,ML,201812,1,2,29434,20725 -049,FR,ML,201812,1,2,25009,18417 -049,FR,ML,201812,1,2,4410,17300 -099,FR,ML,201812,1,1,1544,1242 -099,FR,ML,201812,1,1,444107,140550 -099,FR,ML,201812,1,1,13876,17500 -099,FR,ML,201812,1,2,614,18 -111,FR,ML,201812,4,2,35,14 -112,FR,ML,201812,1,2,69103,240000 -112,FR,ML,201812,1,2,120,21 -121,FR,ML,201812,1,2,8062,2796 -121,FR,ML,201812,1,2,573,27 -121,FR,ML,201812,1,2,1515,126 -121,FR,ML,201812,1,2,42291,10129 -121,FR,ML,201812,1,2,5908,1745 -121,FR,ML,201812,4,2,22636,2990 -122,FR,ML,201812,1,2,71,43 -122,FR,ML,201812,1,2,65957,164448 -125,FR,ML,201812,1,2,153779,19555 -125,FR,ML,201812,1,2,2109,606 -125,FR,ML,201812,4,2,293,72 -128,FR,ML,201812,1,2,21892,24268 -128,FR,ML,201812,1,2,10801,8812 -128,FR,ML,201812,1,2,11056,11613 -128,FR,ML,201812,4,2,181,313 -131,FR,ML,201812,1,2,3816,524 -131,FR,ML,201812,1,2,11550,736 -131,FR,ML,201812,4,2,498,30 -132,FR,ML,201812,1,2,5676,965 -132,FR,ML,201812,1,2,7752,1610 -132,FR,ML,201812,1,2,33570,14010 -132,FR,ML,201812,4,2,8690,491 -133,FR,ML,201812,1,1,2023,1954 -133,FR,ML,201812,1,2,26111,2409 -133,FR,ML,201812,1,2,992,231 -136,FR,ML,201812,1,2,2025,1400 -136,FR,ML,201812,1,2,12835,1653 -136,FR,ML,201812,1,2,1180,311 -139,FR,ML,201812,1,1,796,895 -139,FR,ML,201812,1,1,80,360 -139,FR,ML,201812,0,2,34,1 -139,FR,ML,201812,1,2,84869,26837 -139,FR,ML,201812,1,2,17993,1530 -139,FR,ML,201812,1,2,408034,247499 -139,FR,ML,201812,1,2,11943,6557 -139,FR,ML,201812,1,2,30564,14060 -139,FR,ML,201812,1,2,524025,136364 -139,FR,ML,201812,1,2,193609,81971 -139,FR,ML,201812,1,2,245515,26431 -139,FR,ML,201812,4,2,327864,41542 -139,FR,ML,201812,4,2,13118,1134 -141,FR,ML,201812,4,2,6305,1600 -141,FR,ML,201812,4,2,1011,62 -142,FR,ML,201812,4,2,7146,1431 -142,FR,ML,201812,4,2,709,42 -143,FR,ML,201812,1,2,18463,21364 -143,FR,ML,201812,1,2,37756,10440 -143,FR,ML,201812,1,2,13068,15926 -143,FR,ML,201812,1,2,10516,9900 -143,FR,ML,201812,4,2,2421,323 -144,FR,ML,201812,1,2,211773,75500 -144,FR,ML,201812,1,2,57225,8775 -144,FR,ML,201812,4,2,80557,12412 -146,FR,ML,201812,4,2,9373,2245 -147,FR,ML,201812,4,2,66113,9364 -148,FR,ML,201812,1,2,5507,526 -148,FR,ML,201812,4,2,64,165 -161,FR,ML,201812,1,1,176,780 -161,FR,ML,201812,3,1,266,80 -161,FR,ML,201812,1,2,945,2000 -161,FR,ML,201812,1,2,532,1300 -163,FR,ML,201812,1,1,122,992 -163,FR,ML,201812,1,2,37116,12479 -163,FR,ML,201812,1,2,13903,3377 -163,FR,ML,201812,1,2,20443,8409 -163,FR,ML,201812,4,2,7005,1601 -164,FR,ML,201812,1,2,2758,1810 -164,FR,ML,201812,1,2,18023,3978 -164,FR,ML,201812,1,2,1618,701 -164,FR,ML,201812,4,2,154,73 -166,FR,ML,201812,1,1,1506,4161 -166,FR,ML,201812,1,1,629,2445 -166,FR,ML,201812,0,2,34,1 -166,FR,ML,201812,1,2,31297,16797 -166,FR,ML,201812,1,2,759,187 -166,FR,ML,201812,1,2,43473,40636 -166,FR,ML,201812,1,2,28066,13830 -179,FR,ML,201812,1,2,105082,4649 -179,FR,ML,201812,1,2,108781,143205 -179,FR,ML,201812,1,2,69944,69000 -182,FR,ML,201812,1,1,288,1556 -182,FR,ML,201812,1,2,1607,185 -182,FR,ML,201812,1,2,3118,1600 -341,FR,ML,201812,1,2,17478,3182 -343,FR,ML,201812,1,2,375,229 -551,FR,ML,201812,1,2,13775,5267 -551,FR,ML,201812,1,2,96864,5066 -551,FR,ML,201812,4,2,31396,645 -551,FR,ML,201812,4,2,505,9 -551,FR,ML,201812,4,2,2386,90 -565,FR,ML,201812,4,2,67879,155 -614,FR,ML,201812,1,1,346,7510 -621,FR,ML,201812,1,1,171,524 -621,FR,ML,201812,3,1,142,80 -621,FR,ML,201812,1,2,205,450 -621,FR,ML,201812,3,2,16632,18720 -621,FR,ML,201812,4,2,225,19 -639,FR,ML,201812,1,2,38509,19507 -639,FR,ML,201812,1,2,717,2732 -691,FR,ML,201812,1,2,43852,40537 -691,FR,ML,201812,1,2,5943,4460 -724,FR,ML,201812,1,2,17432,37800 -813,FR,ML,201812,1,2,674,61 -819,FR,ML,201812,1,2,14379,4764 -819,FR,ML,201812,1,2,395,33 -819,FR,ML,201812,4,2,4867,376 -891,FR,ML,201812,1,2,24018,2248 -891,FR,ML,201812,1,2,11794,2210 -891,FR,ML,201812,1,2,44,15 -891,FR,ML,201812,4,2,2819,280 -892,FR,ML,201812,4,2,750,125 -892,FR,ML,201812,4,2,3043,1014 -893,FR,ML,201812,3,1,143,4 -893,FR,ML,201812,4,1,1272,12 -893,FR,ML,201812,0,2,80275,2687 -893,FR,ML,201812,1,2,3273821,199834 -893,FR,ML,201812,1,2,5112,450 -893,FR,ML,201812,1,2,614014,45436 -893,FR,ML,201812,1,2,145831,9681 -893,FR,ML,201812,1,2,6695,1833 -893,FR,ML,201812,1,2,309477,13641 -893,FR,ML,201812,1,2,104891,7952 -893,FR,ML,201812,3,2,29634,269 -893,FR,ML,201812,4,2,943827,7048 -893,FR,ML,201812,4,2,149348,1318 -893,FR,ML,201812,4,2,77966,12960 -896,FR,ML,201812,1,1,19086,42604 -896,FR,ML,201812,1,1,33380,71706 -896,FR,ML,201812,0,2,683,24 -896,FR,ML,201812,1,2,96725,10399 -896,FR,ML,201812,1,2,23938,18569 -896,FR,ML,201812,1,2,13257,1722 -896,FR,ML,201812,1,2,8738,13650 -896,FR,ML,201812,3,2,217002,56448 -896,FR,ML,201812,4,2,161784,2419 -896,FR,ML,201812,4,2,24475,440 -896,FR,ML,201812,4,2,5643,185 -896,FR,ML,201812,4,2,8160,890 -896,FR,ML,201812,4,2,3075,10 -910,FR,ML,201812,0,2,235,29 -910,FR,ML,201812,1,2,59897,111470 -910,FR,ML,201812,1,2,12000,34066 -910,FR,ML,201812,1,2,7900,22020 -910,FR,ML,201812,1,2,73884,43683 -910,FR,ML,201812,1,2,179554,60143 -910,FR,ML,201812,1,2,3000,2510 -910,FR,ML,201812,1,2,4700,4214 -910,FR,ML,201812,1,2,513714,200099 -910,FR,ML,201812,1,2,1330,460 -910,FR,ML,201812,3,2,17815,1518 -910,FR,ML,201812,4,2,32704,788 -920,FR,ML,201812,1,2,21128,17860 -920,FR,ML,201812,1,2,78425,2976 -920,FR,ML,201812,1,2,10524,7500 -920,FR,ML,201812,1,2,75297,4448 -931,FR,ML,201812,3,1,17797,5 -931,FR,ML,201812,4,1,10750,50 -931,FR,ML,201812,4,1,105,0 -931,FR,ML,201812,0,2,5465,36 -931,FR,ML,201812,1,2,352614,21222 -931,FR,ML,201812,1,2,30175,6000 -931,FR,ML,201812,1,2,2626,300 -931,FR,ML,201812,1,2,972837,146572 -931,FR,ML,201812,1,2,67408,7606 -931,FR,ML,201812,1,2,12643,12669 -931,FR,ML,201812,1,2,85488,7338 -931,FR,ML,201812,4,2,894492,9794 -931,FR,ML,201812,4,2,8902,20 -931,FR,ML,201812,4,2,129213,3300 -931,FR,ML,201812,4,2,54702,209 -931,FR,ML,201812,4,2,40110,1393 -931,FR,ML,201812,4,2,484342,24 -931,FR,ML,201812,4,2,16459,980 -931,FR,ML,201812,4,2,5700,164 -939,FR,ML,201812,0,2,50,4 -939,FR,ML,201812,1,2,1361998,99098 -939,FR,ML,201812,1,2,1850550,234164 -939,FR,ML,201812,1,2,2243,184 -939,FR,ML,201812,1,2,387568,45185 -939,FR,ML,201812,1,2,16834,212 -939,FR,ML,201812,1,2,83996,7300 -939,FR,ML,201812,1,2,194573,8785 -939,FR,ML,201812,1,2,27765,86470 -939,FR,ML,201812,1,2,1070523,43585 -939,FR,ML,201812,3,2,12747,606 -939,FR,ML,201812,4,2,760816,13670 -939,FR,ML,201812,4,2,9446,229 -939,FR,ML,201812,4,2,302,0 -939,FR,ML,201812,4,2,408473,2068 -939,FR,ML,201812,4,2,149946,1033 -939,FR,ML,201812,4,2,5480,70 -939,FR,ML,201812,4,2,2382,45 -939,FR,ML,201812,4,2,31672,2260 -941,FR,ML,201812,1,2,45934,41600 -941,FR,ML,201812,4,2,884,200 -941,FR,ML,201812,4,2,763,90 -949,FR,ML,201812,1,2,67741,5964 -949,FR,ML,201812,1,2,4691,929 -949,FR,ML,201812,1,2,27260,13760 -949,FR,ML,201812,1,2,40402,10873 -949,FR,ML,201812,1,2,491,37 -949,FR,ML,201812,4,2,69149,2008 -949,FR,ML,201812,4,2,1839,972 -951,FR,ML,201812,1,2,380,60 -952,FR,ML,201812,1,2,12554,857 -952,FR,ML,201812,1,2,23498,19490 -952,FR,ML,201812,4,2,26373,740 -952,FR,ML,201812,4,2,6490,22 -961,FR,ML,201812,4,1,2690,110 -961,FR,ML,201812,1,2,1038,49 -962,FR,ML,201812,3,1,1349,400 -962,FR,ML,201812,1,2,7940,280 -962,FR,ML,201812,1,2,2417,508 -962,FR,ML,201812,1,2,687937,10550 -962,FR,ML,201812,1,2,93122,2840 -962,FR,ML,201812,1,2,375,104 -962,FR,ML,201812,4,2,10687,326 -962,FR,ML,201812,4,2,105180,1227 -963,FR,ML,201812,3,1,2431,75 -963,FR,ML,201812,4,1,3443,397 -963,FR,ML,201812,1,2,6288,265 -963,FR,ML,201812,1,2,703,32 -963,FR,ML,201812,4,2,106897,2044 -963,FR,ML,201812,4,2,22849,434 -963,FR,ML,201812,4,2,4380,30 -963,FR,ML,201812,4,2,47986,770 -971,FR,ML,201812,1,2,6141,143 -971,FR,ML,201812,1,2,3501,1033 -971,FR,ML,201812,1,2,37,0 -971,FR,ML,201812,1,2,48800,12956 -971,FR,ML,201812,1,2,50727,109600 -971,FR,ML,201812,4,2,17218,153 -971,FR,ML,201812,4,2,1127,260 -972,FR,ML,201812,1,2,11252,1304 -972,FR,ML,201812,1,2,744,292 -972,FR,ML,201812,1,2,59506,19820 -972,FR,ML,201812,4,2,22,1 -973,FR,ML,201812,1,2,82507,46694 -973,FR,ML,201812,1,2,3451,3840 -973,FR,ML,201812,1,2,34977,25351 -973,FR,ML,201812,1,2,7599,15456 -973,FR,ML,201812,1,2,24900,9925 -973,FR,ML,201812,1,2,6244,2510 -973,FR,ML,201812,4,2,34690,4147 -973,FR,ML,201812,4,2,39592,2245 -974,FR,ML,201812,4,1,404,40 -974,FR,ML,201812,0,2,552,2 -974,FR,ML,201812,1,2,22284,297 -974,FR,ML,201812,1,2,150,325 -974,FR,ML,201812,1,2,3247,1458 -974,FR,ML,201812,3,2,5,10 -974,FR,ML,201812,4,2,65788,2880 -974,FR,ML,201812,4,2,1075,500 -975,FR,ML,201812,1,2,78470,6897 -975,FR,ML,201812,1,2,9001,270 -975,FR,ML,201812,1,2,8046,1850 -976,FR,ML,201812,1,1,228,234 -976,FR,ML,201812,1,2,2951,1024 -976,FR,ML,201812,1,2,133,414 -979,FR,ML,201812,1,1,30730,4500 -979,FR,ML,201812,3,1,195,100 -979,FR,ML,201812,4,1,35115,155 -979,FR,ML,201812,4,1,526,55 -979,FR,ML,201812,0,2,3404,11 -979,FR,ML,201812,1,2,144879,8922 -979,FR,ML,201812,1,2,9831,2588 -979,FR,ML,201812,1,2,317863,143949 -979,FR,ML,201812,1,2,50888,6570 -979,FR,ML,201812,1,2,416884,21500 -979,FR,ML,201812,1,2,161094,15265 -979,FR,ML,201812,1,2,31952,3454 -979,FR,ML,201812,3,2,15790,30 -979,FR,ML,201812,4,2,565797,6483 -979,FR,ML,201812,4,2,3472,125 -979,FR,ML,201812,4,2,115591,302 -979,FR,ML,201812,4,2,37026,600 -979,FR,ML,201812,4,2,3264,1 -979,FR,ML,201812,4,2,10336,135 -979,FR,ML,201812,4,2,6877,250 -994,FR,ML,201812,4,1,738843,20 -999,FR,ML,201812,3,1,1336,0 -999,FR,ML,201812,1,2,379718,30313 -999,FR,ML,201812,1,2,660000,5000000 -999,FR,ML,201812,1,2,1090,107 -999,FR,ML,201812,1,2,317750,0 -999,FR,ML,201812,1,2,228069,71280 -999,FR,ML,201812,1,2,7800,0 -999,FR,ML,201812,1,2,111740,0 -999,FR,ML,201812,1,2,103356,45600 -999,FR,ML,201812,3,2,3000,0 -999,FR,ML,201812,4,2,88568,386 -999,FR,ML,201812,4,2,4857,250 -999,FR,ML,201812,4,2,200,0 -999,FR,ML,201812,4,2,7,0 -001,FR,BF,201812,4,2,1211,42 -011,FR,BF,201812,1,2,950400,4800000 -035,FR,BF,201812,4,1,22,2 -039,FR,BF,201812,4,1,190580,105030 -039,FR,BF,201812,4,2,2665,533 -049,FR,BF,201812,1,2,28536,51928 -049,FR,BF,201812,1,2,86423,157008 -049,FR,BF,201812,1,2,113799,207427 -092,FR,BF,201812,1,2,1345,1135 -099,FR,BF,201812,1,1,10503,4999 -099,FR,BF,201812,4,1,1267,208 -099,FR,BF,201812,1,2,305639,5119 -111,FR,BF,201812,4,2,20,8 -112,FR,BF,201812,1,2,292,49 -121,FR,BF,201812,1,2,16214,1968 -121,FR,BF,201812,1,2,1254,207 -121,FR,BF,201812,1,2,10105,3828 -121,FR,BF,201812,1,2,35736,17705 -121,FR,BF,201812,1,2,31361,8343 -121,FR,BF,201812,3,2,2601,1169 -121,FR,BF,201812,4,2,11281,175 -122,FR,BF,201812,1,2,1521,626 -125,FR,BF,201812,1,2,9650,4267 -125,FR,BF,201812,1,2,2120,515 -125,FR,BF,201812,1,2,144772,21924 -125,FR,BF,201812,1,2,63401,34839 -125,FR,BF,201812,1,2,23498,22739 -128,FR,BF,201812,1,2,4089,5686 -128,FR,BF,201812,4,2,439,880 -132,FR,BF,201812,1,2,15537,4649 -132,FR,BF,201812,4,2,1148,209 -133,FR,BF,201812,1,2,26432,7958 -133,FR,BF,201812,1,2,16278,1546 -136,FR,BF,201812,1,2,3010,2156 -136,FR,BF,201812,1,2,2742,2130 -136,FR,BF,201812,1,2,1550,588 -139,FR,BF,201812,4,1,6445,180 -139,FR,BF,201812,4,1,306,6 -139,FR,BF,201812,0,2,6190,24 -139,FR,BF,201812,1,2,172777,92464 -139,FR,BF,201812,1,2,16276,11562 -139,FR,BF,201812,1,2,108633,78792 -139,FR,BF,201812,1,2,49950,22098 -139,FR,BF,201812,1,2,13220,5000 -139,FR,BF,201812,1,2,40436,25000 -139,FR,BF,201812,1,2,20746,6294 -139,FR,BF,201812,1,2,49773,20558 -139,FR,BF,201812,3,2,26109,7339 -139,FR,BF,201812,4,2,89397,12515 -139,FR,BF,201812,4,2,6425,749 -139,FR,BF,201812,4,2,2592,288 -141,FR,BF,201812,4,2,1648,81 -142,FR,BF,201812,4,2,1878,284 -142,FR,BF,201812,4,2,2014,164 -143,FR,BF,201812,1,2,450,379 -143,FR,BF,201812,1,2,34795,44892 -143,FR,BF,201812,1,2,5979,3859 -143,FR,BF,201812,4,2,34,13 -144,FR,BF,201812,1,2,19289,3093 -144,FR,BF,201812,1,2,9041,2010 -144,FR,BF,201812,4,2,6425,749 -147,FR,BF,201812,3,2,2400,819 -147,FR,BF,201812,4,2,6425,749 -147,FR,BF,201812,4,2,5170,175 -162,FR,BF,201812,1,2,155699,425000 -163,FR,BF,201812,1,2,12180,3822 -163,FR,BF,201812,1,2,39833,18850 -163,FR,BF,201812,1,2,26917,18400 -163,FR,BF,201812,3,2,5612,1118 -163,FR,BF,201812,4,2,7233,972 -164,FR,BF,201812,1,1,1146,201 -164,FR,BF,201812,1,1,3029,721 -164,FR,BF,201812,1,2,31,10 -164,FR,BF,201812,3,2,4256,2133 -164,FR,BF,201812,4,2,184,88 -166,FR,BF,201812,4,1,1692,680 -166,FR,BF,201812,1,2,810,201 -166,FR,BF,201812,3,2,13839,7079 -179,FR,BF,201812,1,2,6976,288 -179,FR,BF,201812,3,2,15600,9512 -181,FR,BF,201812,1,1,140722,222940 -182,FR,BF,201812,1,1,1012671,584280 -182,FR,BF,201812,4,2,381,7 -341,FR,BF,201812,4,1,694,6 -341,FR,BF,201812,1,2,9786,1566 -341,FR,BF,201812,1,2,1397,913 -341,FR,BF,201812,1,2,54313,24048 -341,FR,BF,201812,4,2,1189,47 -536,FR,BF,201812,1,2,3560,384 -542,FR,BF,201812,1,2,5950,3100 -551,FR,BF,201812,1,2,23991,4980 -551,FR,BF,201812,1,2,194195,13298 -551,FR,BF,201812,4,2,14373,29 -551,FR,BF,201812,4,2,8936,247 -568,FR,BF,201812,1,2,37654,10883 -568,FR,BF,201812,4,2,9,0 -611,FR,BF,201812,1,2,2599,4400 -614,FR,BF,201812,1,2,35625,105000 -621,FR,BF,201812,1,2,209,8 -621,FR,BF,201812,4,2,57,4 -639,FR,BF,201812,1,2,8550,18000 -642,FR,BF,201812,1,2,3295,21000 -691,FR,BF,201812,1,2,29932,37224 -692,FR,BF,201812,1,2,10350,53360 -692,FR,BF,201812,4,2,8303,973 -719,FR,BF,201812,1,2,3045,3960 -819,FR,BF,201812,1,2,11479,9097 -819,FR,BF,201812,1,2,2092,319 -819,FR,BF,201812,1,2,8399,2521 -819,FR,BF,201812,4,2,1245,0 -819,FR,BF,201812,4,2,20,1 -819,FR,BF,201812,4,2,15,1 -891,FR,BF,201812,1,2,17973,1752 -891,FR,BF,201812,1,2,299,13 -891,FR,BF,201812,1,2,119471,42596 -892,FR,BF,201812,1,2,29105,3700 -892,FR,BF,201812,1,2,7927,1512 -892,FR,BF,201812,4,2,34,1 -893,FR,BF,201812,1,1,50,4 -893,FR,BF,201812,4,1,603,84 -893,FR,BF,201812,0,2,198640,2877 -893,FR,BF,201812,1,2,1598339,105592 -893,FR,BF,201812,1,2,7800,2781 -893,FR,BF,201812,1,2,159529,53050 -893,FR,BF,201812,1,2,49896,20160 -893,FR,BF,201812,1,2,317012,14268 -893,FR,BF,201812,3,2,7466,836 -893,FR,BF,201812,4,2,398928,3607 -893,FR,BF,201812,4,2,23321,434 -893,FR,BF,201812,4,2,96277,841 -893,FR,BF,201812,4,2,4772,58 -893,FR,BF,201812,4,2,35571,356 -893,FR,BF,201812,4,2,1187,80 -893,FR,BF,201812,5,2,48,0 -894,FR,BF,201812,4,2,4664,208 -896,FR,BF,201812,0,2,104,5 -896,FR,BF,201812,1,2,29872,6388 -896,FR,BF,201812,1,2,90882,62087 -896,FR,BF,201812,1,2,9870,1065 -896,FR,BF,201812,1,2,17200,9000 -896,FR,BF,201812,3,2,3224,55 -896,FR,BF,201812,4,2,54905,539 -896,FR,BF,201812,4,2,1080,40 -896,FR,BF,201812,4,2,3449,30 -910,FR,BF,201812,1,1,3000,8110 -910,FR,BF,201812,0,2,2031,20 -910,FR,BF,201812,1,2,241478,143642 -910,FR,BF,201812,1,2,578000,31876 -910,FR,BF,201812,1,2,1500,1275 -910,FR,BF,201812,1,2,259700,10620 -910,FR,BF,201812,1,2,33278,2721 -910,FR,BF,201812,1,2,64380,47275 -910,FR,BF,201812,1,2,7000,2800 -910,FR,BF,201812,1,2,33450,32515 -910,FR,BF,201812,1,2,20667,78910 -910,FR,BF,201812,1,2,42183,12893 -910,FR,BF,201812,1,2,10704,425 -910,FR,BF,201812,4,2,47374,946 -910,FR,BF,201812,4,2,371,50 -910,FR,BF,201812,4,2,6712,454 -920,FR,BF,201812,1,2,89025,76787 -920,FR,BF,201812,1,2,17000,21675 -920,FR,BF,201812,4,2,5254,202 -920,FR,BF,201812,4,2,1591,71 -920,FR,BF,201812,4,2,4260,9 -920,FR,BF,201812,4,2,1511,170 -931,FR,BF,201812,1,1,45418,8103 -931,FR,BF,201812,3,1,268,11 -931,FR,BF,201812,0,2,52633,111 -931,FR,BF,201812,1,2,938570,57302 -931,FR,BF,201812,1,2,6649,665 -931,FR,BF,201812,1,2,63400,740 -931,FR,BF,201812,1,2,5095,282 -931,FR,BF,201812,1,2,16376,2099 -931,FR,BF,201812,1,2,25500,1200 -931,FR,BF,201812,1,2,1092525,103965 -931,FR,BF,201812,1,2,118542,5029 -931,FR,BF,201812,1,2,349440,2603 -931,FR,BF,201812,3,2,9644,758 -931,FR,BF,201812,4,2,577788,6750 -931,FR,BF,201812,4,2,14623,220 -931,FR,BF,201812,4,2,9253,439 -931,FR,BF,201812,4,2,27538,29 -931,FR,BF,201812,4,2,8603,27 -931,FR,BF,201812,4,2,35,1 -931,FR,BF,201812,4,2,55442,1600 -931,FR,BF,201812,4,2,2134,1 -939,FR,BF,201812,1,1,54982,8123 -939,FR,BF,201812,3,1,69,0 -939,FR,BF,201812,4,1,3668,110 -939,FR,BF,201812,4,1,12557,109 -939,FR,BF,201812,4,1,6500,11 -939,FR,BF,201812,0,2,8189,65 -939,FR,BF,201812,1,2,1584403,147938 -939,FR,BF,201812,1,2,8416,155 -939,FR,BF,201812,1,2,19954,4435 -939,FR,BF,201812,1,2,4419,141 -939,FR,BF,201812,1,2,10053,176 -939,FR,BF,201812,1,2,24906,2681 -939,FR,BF,201812,1,2,726482,95760 -939,FR,BF,201812,1,2,24075,2597 -939,FR,BF,201812,1,2,58290,10894 -939,FR,BF,201812,1,2,5400,9000 -939,FR,BF,201812,1,2,97534,48657 -939,FR,BF,201812,1,2,559392,40311 -939,FR,BF,201812,1,2,50887,13780 -939,FR,BF,201812,3,2,10943,128 -939,FR,BF,201812,4,2,1108535,11921 -939,FR,BF,201812,4,2,89390,2036 -939,FR,BF,201812,4,2,81153,197 -939,FR,BF,201812,4,2,106946,726 -939,FR,BF,201812,4,2,13000,100 -939,FR,BF,201812,4,2,4184,40 -939,FR,BF,201812,4,2,1000,18 -939,FR,BF,201812,4,2,2104,88 -939,FR,BF,201812,4,2,1060,20 -939,FR,BF,201812,4,2,78481,12235 -939,FR,BF,201812,4,2,1050,8 -941,FR,BF,201812,1,1,42417,14127 -941,FR,BF,201812,1,2,7447,2326 -941,FR,BF,201812,1,2,134381,40750 -949,FR,BF,201812,0,1,316,30 -949,FR,BF,201812,1,1,4450,1633 -949,FR,BF,201812,3,1,755,66 -949,FR,BF,201812,4,1,257,14 -949,FR,BF,201812,0,2,700,1 -949,FR,BF,201812,1,2,148644,22903 -949,FR,BF,201812,1,2,10280,970 -949,FR,BF,201812,1,2,3197,290 -949,FR,BF,201812,1,2,31902,16018 -949,FR,BF,201812,1,2,15543,1677 -949,FR,BF,201812,1,2,1926371,37565 -949,FR,BF,201812,4,2,27741,706 -949,FR,BF,201812,4,2,1677,8 -949,FR,BF,201812,4,2,1410,69 -949,FR,BF,201812,4,2,7895,500 -949,FR,BF,201812,4,2,9838,1570 -949,FR,BF,201812,4,2,1283,11 -951,FR,BF,201812,0,2,158,2 -951,FR,BF,201812,1,2,201,50 -951,FR,BF,201812,1,2,163,59 -951,FR,BF,201812,4,2,218,13 -951,FR,BF,201812,4,2,1445,60 -951,FR,BF,201812,4,2,77852,3258 -952,FR,BF,201812,1,2,11896,3274 -952,FR,BF,201812,1,2,965,304 -952,FR,BF,201812,4,2,5946,162 -952,FR,BF,201812,4,2,200,1 -952,FR,BF,201812,5,2,6626,2 -962,FR,BF,201812,1,1,73978,37328 -962,FR,BF,201812,4,1,224,37 -962,FR,BF,201812,1,2,11054,3149 -962,FR,BF,201812,1,2,599,284 -962,FR,BF,201812,1,2,304387,5653 -962,FR,BF,201812,4,2,26460,1448 -962,FR,BF,201812,4,2,7005,171 -962,FR,BF,201812,5,2,1030,1 -963,FR,BF,201812,1,1,84,4 -963,FR,BF,201812,3,1,26,0 -963,FR,BF,201812,4,1,64,5 -963,FR,BF,201812,0,2,1512,9 -963,FR,BF,201812,1,2,32942,2237 -963,FR,BF,201812,1,2,1148,227 -963,FR,BF,201812,1,2,29911,2252 -963,FR,BF,201812,1,2,1583,171 -963,FR,BF,201812,1,2,67682,1280 -963,FR,BF,201812,3,2,3000,200 -963,FR,BF,201812,4,2,19368,377 -963,FR,BF,201812,4,2,74,6 -963,FR,BF,201812,4,2,1766,10 -963,FR,BF,201812,5,2,1659,2 -971,FR,BF,201812,1,2,28199,1344 -971,FR,BF,201812,1,2,500,3000 -971,FR,BF,201812,1,2,17409,2952 -971,FR,BF,201812,4,2,15891,1039 -972,FR,BF,201812,1,2,4035,509 -972,FR,BF,201812,1,2,3560,3600 -973,FR,BF,201812,1,2,5477,954 -973,FR,BF,201812,1,2,2613,474 -973,FR,BF,201812,1,2,5600,2089 -973,FR,BF,201812,1,2,4777,1776 -973,FR,BF,201812,1,2,6211,3224 -973,FR,BF,201812,4,2,44845,3283 -973,FR,BF,201812,4,2,4665,367 -973,FR,BF,201812,4,2,35919,2320 -974,FR,BF,201812,1,2,18559,4811 -974,FR,BF,201812,1,2,963,308 -974,FR,BF,201812,1,2,40478,17828 -974,FR,BF,201812,1,2,58299,17596 -974,FR,BF,201812,3,2,50,12 -974,FR,BF,201812,3,2,200,1575 -974,FR,BF,201812,4,2,33735,1910 -974,FR,BF,201812,4,2,100,65 -974,FR,BF,201812,4,2,4600,420 -974,FR,BF,201812,4,2,6498,780 -975,FR,BF,201812,1,2,50365,3317 -975,FR,BF,201812,1,2,3674,569 -975,FR,BF,201812,1,2,2021,54 -975,FR,BF,201812,1,2,2329,218 -976,FR,BF,201812,0,1,311,28 -976,FR,BF,201812,4,1,862,85 -979,FR,BF,201812,0,1,788,5 -979,FR,BF,201812,3,1,59,0 -979,FR,BF,201812,4,1,1286,140 -979,FR,BF,201812,0,2,28000,87 -979,FR,BF,201812,1,2,159781,74971 -979,FR,BF,201812,1,2,140,15 -979,FR,BF,201812,1,2,9569,6373 -979,FR,BF,201812,1,2,7788,9372 -979,FR,BF,201812,1,2,80418,35172 -979,FR,BF,201812,1,2,5041,543 -979,FR,BF,201812,1,2,191339,3641 -979,FR,BF,201812,4,2,383679,5178 -979,FR,BF,201812,4,2,5861,4 -979,FR,BF,201812,4,2,200,1 -979,FR,BF,201812,4,2,60187,1565 -979,FR,BF,201812,4,2,1958,12 -979,FR,BF,201812,4,2,26577,410 -979,FR,BF,201812,4,2,6927,79 -979,FR,BF,201812,4,2,62678,3561 -979,FR,BF,201812,4,2,1680,6 -979,FR,BF,201812,4,2,50836,1180 -979,FR,BF,201812,5,2,330,0 -999,FR,BF,201812,4,1,10,0 -999,FR,BF,201812,5,1,1652,0 -999,FR,BF,201812,1,2,9506,1531 -999,FR,BF,201812,1,2,16500,0 -999,FR,BF,201812,1,2,321,6 -999,FR,BF,201812,1,2,18,4 -999,FR,BF,201812,1,2,31190,0 -999,FR,BF,201812,1,2,15000,0 -999,FR,BF,201812,1,2,102441,44000 -999,FR,BF,201812,1,2,9846,0 -999,FR,BF,201812,1,2,550,0 -999,FR,BF,201812,1,2,4248,0 -999,FR,BF,201812,4,2,39737,92 -999,FR,BF,201812,4,2,2517,0 -020,FR,NE,201812,1,2,11892,26000 -039,FR,NE,201812,4,2,4963,435 -049,FR,NE,201812,1,2,35773,51145 -099,FR,NE,201812,1,2,97132,2546 -112,FR,NE,201812,1,2,605,101 -112,FR,NE,201812,1,2,269,42 -121,FR,NE,201812,1,2,1630,405 -121,FR,NE,201812,1,2,30800,17063 -121,FR,NE,201812,1,2,2315,360 -121,FR,NE,201812,4,2,1474,77 -121,FR,NE,201812,4,2,1678,6 -122,FR,NE,201812,1,2,867,440 -125,FR,NE,201812,1,2,24652,699 -125,FR,NE,201812,1,2,35815,3870 -125,FR,NE,201812,1,2,42080,48000 -125,FR,NE,201812,1,2,645,195 -125,FR,NE,201812,3,2,34810,21519 -125,FR,NE,201812,4,2,402,45 -128,FR,NE,201812,1,2,5260,8928 -128,FR,NE,201812,1,2,5004,9444 -128,FR,NE,201812,1,2,5633,7176 -131,FR,NE,201812,1,2,3951,287 -132,FR,NE,201812,1,2,568,58 -132,FR,NE,201812,1,2,6352,1138 -132,FR,NE,201812,1,2,16049,4915 -132,FR,NE,201812,3,2,4613,450 -132,FR,NE,201812,4,2,1290,195 -133,FR,NE,201812,1,2,9748,729 -133,FR,NE,201812,1,2,339,45 -136,FR,NE,201812,1,2,2539,1531 -136,FR,NE,201812,1,2,1258,724 -136,FR,NE,201812,4,2,2029,200 -139,FR,NE,201812,3,1,360,12 -139,FR,NE,201812,4,1,89,7 -139,FR,NE,201812,0,2,30,5 -139,FR,NE,201812,1,2,95405,36887 -139,FR,NE,201812,1,2,216662,161511 -139,FR,NE,201812,1,2,201262,66190 -139,FR,NE,201812,1,2,102614,13235 -139,FR,NE,201812,1,2,45297,11540 -139,FR,NE,201812,1,2,102580,20000 -139,FR,NE,201812,3,2,10137,2381 -139,FR,NE,201812,4,2,79230,9737 -141,FR,NE,201812,4,2,5272,60 -142,FR,NE,201812,4,2,3667,253 -143,FR,NE,201812,1,2,85379,93203 -143,FR,NE,201812,1,2,20222,30476 -143,FR,NE,201812,1,2,3542,3729 -144,FR,NE,201812,1,2,16243,2910 -144,FR,NE,201812,1,2,466447,310468 -144,FR,NE,201812,4,2,18798,1816 -145,FR,NE,201812,1,2,6807,2618 -145,FR,NE,201812,1,2,59097,20250 -146,FR,NE,201812,4,2,3172,470 -147,FR,NE,201812,1,2,121,22 -147,FR,NE,201812,4,2,18945,1460 -148,FR,NE,201812,1,2,1565,178 -148,FR,NE,201812,4,2,3130,189 -161,FR,NE,201812,1,2,1702,2750 -163,FR,NE,201812,1,2,228,31 -163,FR,NE,201812,1,2,26338,8512 -163,FR,NE,201812,1,2,56586,24099 -163,FR,NE,201812,4,2,13442,910 -164,FR,NE,201812,1,2,2782,1423 -164,FR,NE,201812,1,2,7664,6800 -166,FR,NE,201812,1,2,373,53 -166,FR,NE,201812,1,2,4542,1692 -166,FR,NE,201812,1,2,12817,2386 -166,FR,NE,201812,1,2,22530,16536 -172,FR,NE,201812,1,2,16318,17250 -179,FR,NE,201812,1,2,2945,3263 -182,FR,NE,201812,1,2,2267,703 -182,FR,NE,201812,1,2,23723,16800 -341,FR,NE,201812,1,2,18336,6330 -341,FR,NE,201812,4,2,670,55 -349,FR,NE,201812,1,2,821,76 -551,FR,NE,201812,1,2,14757,2732 -568,FR,NE,201812,1,2,146638,16526 -568,FR,NE,201812,4,2,4748,520 -621,FR,NE,201812,1,2,114,460 -639,FR,NE,201812,1,2,256,16 -691,FR,NE,201812,1,2,78152,58776 -813,FR,NE,201812,1,2,756,500 -819,FR,NE,201812,1,1,773,17 -819,FR,NE,201812,1,2,6755,3760 -819,FR,NE,201812,4,2,8293,29 -891,FR,NE,201812,3,1,1001,15 -891,FR,NE,201812,1,2,2237,948 -891,FR,NE,201812,1,2,3362,4909 -891,FR,NE,201812,1,2,38892,8230 -892,FR,NE,201812,4,2,5537,12 -892,FR,NE,201812,4,2,22453,273 -893,FR,NE,201812,4,1,40,16 -893,FR,NE,201812,0,2,72106,1204 -893,FR,NE,201812,1,2,795204,41091 -893,FR,NE,201812,1,2,1555,1682 -893,FR,NE,201812,1,2,38434,7254 -893,FR,NE,201812,4,2,180779,2721 -893,FR,NE,201812,4,2,2002,30 -893,FR,NE,201812,4,2,91626,900 -893,FR,NE,201812,4,2,4045,740 -896,FR,NE,201812,0,2,1613,16 -896,FR,NE,201812,1,2,34807,7329 -896,FR,NE,201812,1,2,503,121 -896,FR,NE,201812,1,2,8394,1358 -896,FR,NE,201812,4,2,69664,1006 -896,FR,NE,201812,4,2,2363,160 -896,FR,NE,201812,4,2,1229,54 -896,FR,NE,201812,4,2,5763,400 -910,FR,NE,201812,3,1,139,7 -910,FR,NE,201812,0,2,1882,19 -910,FR,NE,201812,1,2,546590,54817 -910,FR,NE,201812,1,2,2700,24600 -910,FR,NE,201812,1,2,171206,11701 -910,FR,NE,201812,1,2,6013,4730 -910,FR,NE,201812,4,2,91170,2471 -910,FR,NE,201812,4,2,37706,700 -920,FR,NE,201812,1,2,79225,9951 -920,FR,NE,201812,1,2,76506,3630 -931,FR,NE,201812,3,1,15623,3 -931,FR,NE,201812,4,1,48,0 -931,FR,NE,201812,0,2,6287,31 -931,FR,NE,201812,1,2,77230,7826 -931,FR,NE,201812,1,2,348004,7263 -931,FR,NE,201812,3,2,5008,74 -931,FR,NE,201812,4,2,410507,7793 -931,FR,NE,201812,4,2,27061,105 -931,FR,NE,201812,4,2,11429,8 -931,FR,NE,201812,4,2,4803,74 -931,FR,NE,201812,4,2,951,101 -931,FR,NE,201812,4,2,44461,1290 -931,FR,NE,201812,4,2,3022,170 -931,FR,NE,201812,4,2,8587,10 -939,FR,NE,201812,3,1,286,1 -939,FR,NE,201812,4,1,2635,138 -939,FR,NE,201812,0,2,33412,66 -939,FR,NE,201812,1,2,896681,64815 -939,FR,NE,201812,1,2,183911,16690 -939,FR,NE,201812,4,2,682517,15502 -939,FR,NE,201812,4,2,5599,160 -939,FR,NE,201812,4,2,30043,306 -939,FR,NE,201812,4,2,1360,25 -939,FR,NE,201812,4,2,18800,590 -949,FR,NE,201812,4,1,2,0 -949,FR,NE,201812,0,2,129,1 -949,FR,NE,201812,1,2,168973,36155 -949,FR,NE,201812,1,2,84500,49296 -949,FR,NE,201812,4,2,114697,891 -951,FR,NE,201812,4,2,427,3 -952,FR,NE,201812,1,2,2915,713 -952,FR,NE,201812,4,2,311,5 -962,FR,NE,201812,1,2,13500,5376 -962,FR,NE,201812,1,2,50804,19446 -962,FR,NE,201812,4,2,1248,78 -962,FR,NE,201812,4,2,16406,350 -963,FR,NE,201812,0,2,388,1 -963,FR,NE,201812,1,2,20522,2345 -963,FR,NE,201812,1,2,7473,599 -963,FR,NE,201812,4,2,34234,1185 -963,FR,NE,201812,4,2,3057,15 -971,FR,NE,201812,1,2,2309,343 -971,FR,NE,201812,1,2,4404,118 -971,FR,NE,201812,4,2,123,3 -972,FR,NE,201812,1,2,7974,3073 -972,FR,NE,201812,1,2,10723,2237 -973,FR,NE,201812,0,2,720,19 -973,FR,NE,201812,1,2,2069,1102 -973,FR,NE,201812,1,2,14655,5135 -973,FR,NE,201812,1,2,5199,905 -973,FR,NE,201812,4,2,5442,480 -973,FR,NE,201812,4,2,9216,579 -974,FR,NE,201812,1,2,11221,1711 -974,FR,NE,201812,1,2,35,36 -974,FR,NE,201812,3,2,16,10 -974,FR,NE,201812,4,2,54120,2666 -974,FR,NE,201812,4,2,1280,0 -974,FR,NE,201812,4,2,1355,19 -974,FR,NE,201812,5,2,486,10 -975,FR,NE,201812,1,2,9883,1414 -975,FR,NE,201812,1,2,1173,169 -976,FR,NE,201812,4,1,3052,200 -979,FR,NE,201812,3,1,889,1 -979,FR,NE,201812,4,1,5250,21 -979,FR,NE,201812,4,1,57437,21 -979,FR,NE,201812,0,2,6545,45 -979,FR,NE,201812,1,2,129889,10524 -979,FR,NE,201812,1,2,957,431 -979,FR,NE,201812,1,2,56946,5837 -979,FR,NE,201812,1,2,3832,595 -979,FR,NE,201812,3,2,7874,26 -979,FR,NE,201812,4,2,65769,1454 -979,FR,NE,201812,4,2,4692,4 -979,FR,NE,201812,4,2,3710,2 -979,FR,NE,201812,4,2,8558,81 -979,FR,NE,201812,4,2,38495,75 -979,FR,NE,201812,4,2,5692,800 -979,FR,NE,201812,4,2,2155,56 -999,FR,NE,201812,4,1,2441,0 -999,FR,NE,201812,1,2,9584,2372 -999,FR,NE,201812,1,2,260547,144020 -999,FR,NE,201812,1,2,2052,0 -999,FR,NE,201812,4,2,17755,1 -999,FR,NE,201812,4,2,600,0 -020,FR,TD,201812,4,2,1240,650 -039,FR,TD,201812,1,2,7813,5716 -039,FR,TD,201812,4,2,2589,950 -099,FR,TD,201812,1,1,41935,88000 -099,FR,TD,201812,1,1,50481,48000 -099,FR,TD,201812,1,2,13132,800 -112,FR,TD,201812,1,2,69103,240000 -121,FR,TD,201812,1,2,12419,7141 -121,FR,TD,201812,1,2,8739,7524 -122,FR,TD,201812,1,2,13785,10908 -125,FR,TD,201812,1,2,98,168 -125,FR,TD,201812,1,2,64,3 -128,FR,TD,201812,1,2,4140,4604 -128,FR,TD,201812,4,2,1317,129 -128,FR,TD,201812,4,2,50,38 -132,FR,TD,201812,1,2,4637,763 -135,FR,TD,201812,1,2,15724,240 -136,FR,TD,201812,1,2,12914,7646 -136,FR,TD,201812,1,2,2366,377 -139,FR,TD,201812,1,2,2265,236 -139,FR,TD,201812,1,2,26504,10783 -139,FR,TD,201812,1,2,41021,19976 -139,FR,TD,201812,1,2,93816,31307 -139,FR,TD,201812,1,2,19440,3360 -139,FR,TD,201812,1,2,19165,20672 -139,FR,TD,201812,1,2,42928,17415 -139,FR,TD,201812,1,2,91140,41355 -139,FR,TD,201812,4,2,6741,289 -139,FR,TD,201812,4,2,42124,5542 -139,FR,TD,201812,4,2,114889,21327 -141,FR,TD,201812,1,2,25071,19460 -141,FR,TD,201812,4,2,205,53 -142,FR,TD,201812,1,2,22081,1584 -142,FR,TD,201812,1,2,167586,37558 -144,FR,TD,201812,1,2,1200,210 -144,FR,TD,201812,1,2,65641,15374 -144,FR,TD,201812,1,2,11831,2102 -144,FR,TD,201812,4,2,328,130 -147,FR,TD,201812,1,2,21211,4947 -147,FR,TD,201812,1,2,8524,5980 -163,FR,TD,201812,1,2,80550,35784 -163,FR,TD,201812,1,2,9989,3885 -163,FR,TD,201812,4,2,13699,2656 -182,FR,TD,201812,1,2,7593,7250 -310,FR,TD,201812,1,1,38980318,104792000 -321,FR,TD,201812,4,1,15,29 -341,FR,TD,201812,1,2,34646,13304 -341,FR,TD,201812,4,2,3832,218 -552,FR,TD,201812,1,2,29745,721 -568,FR,TD,201812,1,2,28024,3913 -568,FR,TD,201812,4,2,1300,162 -611,FR,TD,201812,1,2,2515,2160 -612,FR,TD,201812,4,1,786,240 -621,FR,TD,201812,4,2,749,98 -691,FR,TD,201812,1,2,7333,7451 -819,FR,TD,201812,4,1,145,1 -891,FR,TD,201812,1,2,8666,4454 -891,FR,TD,201812,1,2,20264,2821 -891,FR,TD,201812,4,2,6471,580 -892,FR,TD,201812,4,2,49,2 -893,FR,TD,201812,4,1,10,3 -893,FR,TD,201812,0,2,388,5 -893,FR,TD,201812,1,2,146211,41916 -893,FR,TD,201812,1,2,15850,2 -893,FR,TD,201812,1,2,10739,539 -893,FR,TD,201812,1,2,375772,18925 -893,FR,TD,201812,4,2,385936,5438 -893,FR,TD,201812,4,2,6085,363 -896,FR,TD,201812,1,2,53497,6365 -896,FR,TD,201812,1,2,15939,2560 -896,FR,TD,201812,4,2,14307,1297 -896,FR,TD,201812,4,2,58976,108 -896,FR,TD,201812,4,2,391,25 -896,FR,TD,201812,4,2,10288,220 -910,FR,TD,201812,1,2,3418,3935 -910,FR,TD,201812,3,2,6705,35 -910,FR,TD,201812,4,2,47046,262 -910,FR,TD,201812,4,2,4442,90 -910,FR,TD,201812,4,2,10817,940 -920,FR,TD,201812,4,2,57440,1153 -931,FR,TD,201812,4,1,1885,2 -931,FR,TD,201812,1,2,209752,10554 -931,FR,TD,201812,1,2,48549,11054 -931,FR,TD,201812,1,2,2225,10 -931,FR,TD,201812,1,2,36307,5585 -931,FR,TD,201812,4,2,238439,3614 -931,FR,TD,201812,4,2,32563,127 -931,FR,TD,201812,4,2,20887,282 -931,FR,TD,201812,4,2,10118,70 -931,FR,TD,201812,4,2,49491,11 -939,FR,TD,201812,0,2,1404,9 -939,FR,TD,201812,1,2,307318,4145 -939,FR,TD,201812,1,2,66288,10022 -939,FR,TD,201812,1,2,41500,6160 -939,FR,TD,201812,3,2,799,8 -939,FR,TD,201812,4,2,261363,1414 -939,FR,TD,201812,4,2,109798,2857 -939,FR,TD,201812,4,2,19304,89 -939,FR,TD,201812,4,2,1520,7 -939,FR,TD,201812,4,2,15832,427 -941,FR,TD,201812,1,2,27900,4820 -949,FR,TD,201812,3,1,189,0 -949,FR,TD,201812,1,2,25678,7448 -949,FR,TD,201812,1,2,25454,12792 -949,FR,TD,201812,4,2,6642,647 -949,FR,TD,201812,4,2,3601,92 -952,FR,TD,201812,1,2,5615,1058 -952,FR,TD,201812,1,2,1691,1 -952,FR,TD,201812,1,2,115,40 -952,FR,TD,201812,4,2,583,9 -962,FR,TD,201812,4,2,550,121 -962,FR,TD,201812,4,2,1643,17 -963,FR,TD,201812,4,1,38,0 -963,FR,TD,201812,0,2,150,2 -963,FR,TD,201812,1,2,29371,2468 -963,FR,TD,201812,4,2,9269,256 -963,FR,TD,201812,4,2,84993,1774 -963,FR,TD,201812,4,2,4583,175 -971,FR,TD,201812,1,2,593,90 -971,FR,TD,201812,1,2,98488,25390 -971,FR,TD,201812,4,2,6533,206 -971,FR,TD,201812,4,2,1051,39 -972,FR,TD,201812,1,2,55856,56816 -973,FR,TD,201812,1,2,27951,15517 -973,FR,TD,201812,1,2,948,279 -973,FR,TD,201812,1,2,7609,3344 -973,FR,TD,201812,4,2,28644,4515 -973,FR,TD,201812,4,2,9408,350 -974,FR,TD,201812,3,1,63,0 -974,FR,TD,201812,4,2,67855,7852 -975,FR,TD,201812,1,2,1154,9525 -975,FR,TD,201812,1,2,660,55 -975,FR,TD,201812,4,2,10,4 -976,FR,TD,201812,4,1,124,23 -976,FR,TD,201812,4,2,815,155 -979,FR,TD,201812,1,2,209,25 -979,FR,TD,201812,1,2,96384,59335 -979,FR,TD,201812,1,2,479,135 -979,FR,TD,201812,1,2,35,1 -979,FR,TD,201812,4,2,152194,947 -979,FR,TD,201812,4,2,9660,213 -979,FR,TD,201812,4,2,5969,174 -979,FR,TD,201812,4,2,295,20 -999,FR,TD,201812,1,2,373,0 -999,FR,TD,201812,1,2,609,12 -999,FR,TD,201812,1,2,55879,9756 -999,FR,TD,201812,4,2,4300,3 -999,FR,TD,201812,4,2,622,0 -999,FR,TD,201812,4,2,2394,0 -125,FR,CV,201812,1,2,14520,11295 -139,FR,CV,201812,1,2,57795,24898 -141,FR,CV,201812,1,2,26500,25000 -691,FR,CV,201812,1,2,292,200 -891,FR,CV,201812,1,1,19345,20688 -892,FR,CV,201812,1,2,2429,2876 -893,FR,CV,201812,0,2,1236,5 -896,FR,CV,201812,0,2,210,3 -896,FR,CV,201812,4,2,1176,20 -910,FR,CV,201812,3,1,2000,4310 -910,FR,CV,201812,1,2,29584,7389 -910,FR,CV,201812,1,2,27900,4485 -910,FR,CV,201812,1,2,47776,10968 -910,FR,CV,201812,1,2,22060,3058 -910,FR,CV,201812,1,2,40222,20102 -910,FR,CV,201812,1,2,7800,3013 -910,FR,CV,201812,1,2,150955,31778 -910,FR,CV,201812,4,2,77944,125 -910,FR,CV,201812,9,2,10709,3369 -931,FR,CV,201812,0,2,369,0 -931,FR,CV,201812,1,2,1372,15 -931,FR,CV,201812,1,2,458,140 -931,FR,CV,201812,1,2,2104,169 -931,FR,CV,201812,4,2,565,13 -931,FR,CV,201812,4,2,2933,10 -931,FR,CV,201812,4,2,6708,280 -931,FR,CV,201812,4,2,7999,1 -939,FR,CV,201812,3,1,463380,35400 -939,FR,CV,201812,0,2,580,0 -939,FR,CV,201812,1,2,3014,125 -939,FR,CV,201812,1,2,5500,17000 -939,FR,CV,201812,1,2,16000,7500 -939,FR,CV,201812,1,2,510,141 -939,FR,CV,201812,4,2,16,0 -939,FR,CV,201812,4,2,16759,1370 -941,FR,CV,201812,1,2,1750,3870 -949,FR,CV,201812,3,1,60180,15750 -949,FR,CV,201812,1,2,10,0 -949,FR,CV,201812,4,2,56,0 -951,FR,CV,201812,1,2,176,16 -962,FR,CV,201812,4,2,359,11 -963,FR,CV,201812,3,2,2900,460 -971,FR,CV,201812,1,2,56,0 -974,FR,CV,201812,3,2,1153,38 -974,FR,CV,201812,4,2,1200,301 -975,FR,CV,201812,1,2,5000,21420 -975,FR,CV,201812,1,2,7125,500 -975,FR,CV,201812,1,2,44190,17833 -979,FR,CV,201812,0,2,184,3 -979,FR,CV,201812,1,2,1934,69 -979,FR,CV,201812,1,2,32068,2783 -979,FR,CV,201812,4,2,13,0 -999,FR,CV,201812,4,1,1,0 -999,FR,CV,201812,1,2,3260,0 -999,FR,CV,201812,1,2,22700,0 -999,FR,CV,201812,1,2,12000,0 -999,FR,CV,201812,1,2,20000,0 -999,FR,CV,201812,1,2,71779,0 -999,FR,CV,201812,1,2,8500,0 -999,FR,CV,201812,1,2,2900,0 -999,FR,CV,201812,1,2,76200,0 -999,FR,CV,201812,4,2,1,0 -999,FR,CV,201812,4,2,1,0 -999,FR,CV,201812,4,2,1,0 -001,FR,SN,201812,4,2,3397,858 -011,FR,SN,201812,1,2,1308000,6000000 -011,FR,SN,201812,1,2,1874700,9000000 -015,FR,SN,201812,4,2,26003,814 -016,FR,SN,201812,1,2,1824,1581 -016,FR,SN,201812,1,2,4411,3584 -020,FR,SN,201812,1,2,98514,268500 -020,FR,SN,201812,1,2,11000,26000 -020,FR,SN,201812,1,2,28016,77500 -020,FR,SN,201812,1,2,49858,157500 -020,FR,SN,201812,1,2,179026,343000 -020,FR,SN,201812,1,2,195419,390000 -020,FR,SN,201812,1,2,67626,156000 -020,FR,SN,201812,4,2,250,500 -031,FR,SN,201812,1,2,2666,2082 -035,FR,SN,201812,1,1,19132,17399 -035,FR,SN,201812,1,1,146241,14003 -035,FR,SN,201812,1,1,197409,171976 -035,FR,SN,201812,3,1,27805,21450 -035,FR,SN,201812,3,1,231717,199976 -035,FR,SN,201812,3,1,17957,16713 -035,FR,SN,201812,3,1,60000,20000 -035,FR,SN,201812,4,1,420973,245743 -035,FR,SN,201812,4,1,11285,8456 -035,FR,SN,201812,1,2,23764,25041 -035,FR,SN,201812,1,2,178524,193503 -039,FR,SN,201812,1,1,117316,93624 -039,FR,SN,201812,1,1,256599,230148 -039,FR,SN,201812,1,1,4247,1519 -039,FR,SN,201812,3,1,100376,58080 -039,FR,SN,201812,3,1,30000,20000 -039,FR,SN,201812,4,1,39317,31392 -039,FR,SN,201812,4,1,3121,2875 -039,FR,SN,201812,1,2,1669,369 -039,FR,SN,201812,1,2,3300,18000 -039,FR,SN,201812,1,2,98452,336000 -039,FR,SN,201812,1,2,1928,1962 -039,FR,SN,201812,1,2,85704,201890 -039,FR,SN,201812,1,2,118637,368570 -039,FR,SN,201812,4,2,95670,14298 -042,FR,SN,201812,1,2,2283,340 -049,FR,SN,201812,1,2,516,180 -049,FR,SN,201812,1,2,111828,151235 -049,FR,SN,201812,1,2,590,250 -049,FR,SN,201812,1,2,49931,73035 -049,FR,SN,201812,1,2,38721,47880 -049,FR,SN,201812,1,2,89725,151229 -049,FR,SN,201812,1,2,110207,178900 -049,FR,SN,201812,1,2,32308,20117 -056,FR,SN,201812,1,2,49496,16246 -056,FR,SN,201812,1,2,16119,35490 -056,FR,SN,201812,1,2,6173,24978 -056,FR,SN,201812,1,2,49132,145920 -057,FR,SN,201812,1,2,3170,10500 -092,FR,SN,201812,1,2,18329,8325 -092,FR,SN,201812,1,2,16569,18119 -092,FR,SN,201812,1,2,3213,9180 -099,FR,SN,201812,1,1,325,675 -099,FR,SN,201812,1,1,4530,2950 -099,FR,SN,201812,1,1,161133,63750 -099,FR,SN,201812,4,1,2266,100 -099,FR,SN,201812,1,2,4376,212 -099,FR,SN,201812,1,2,1248,100 -099,FR,SN,201812,1,2,262678,3995 -099,FR,SN,201812,4,2,21680,1392 -099,FR,SN,201812,4,2,684,58 -099,FR,SN,201812,4,2,7020,500 -112,FR,SN,201812,1,1,130,60 -112,FR,SN,201812,1,2,76765,135000 -112,FR,SN,201812,1,2,28062,96000 -112,FR,SN,201812,1,2,171000,327000 -112,FR,SN,201812,1,2,25690,57340 -112,FR,SN,201812,1,2,2088,1870 -112,FR,SN,201812,1,2,247172,450000 -121,FR,SN,201812,1,2,73063,13087 -121,FR,SN,201812,1,2,8669,1643 -121,FR,SN,201812,1,2,4956,1662 -121,FR,SN,201812,1,2,298785,145523 -121,FR,SN,201812,1,2,30045,1627 -121,FR,SN,201812,1,2,1545,450 -122,FR,SN,201812,1,1,7591,3600 -122,FR,SN,201812,1,2,37404,188760 -122,FR,SN,201812,1,2,3800,19087 -122,FR,SN,201812,1,2,196,489 -125,FR,SN,201812,1,2,1523,866 -125,FR,SN,201812,1,2,13974,2101 -125,FR,SN,201812,1,2,75340,8021 -125,FR,SN,201812,1,2,24252,16984 -125,FR,SN,201812,1,2,42794,1975 -125,FR,SN,201812,1,2,48747,4714 -125,FR,SN,201812,4,2,5200,485 -128,FR,SN,201812,4,1,9,2 -128,FR,SN,201812,1,2,8079,9077 -128,FR,SN,201812,1,2,22787,18984 -128,FR,SN,201812,1,2,8713,11538 -128,FR,SN,201812,1,2,2452,3475 -128,FR,SN,201812,1,2,58406,97753 -128,FR,SN,201812,1,2,36385,224709 -131,FR,SN,201812,1,2,21415,998 -131,FR,SN,201812,1,2,9152,565 -131,FR,SN,201812,1,2,3666,258 -131,FR,SN,201812,1,2,87029,20772 -131,FR,SN,201812,1,2,6562,720 -131,FR,SN,201812,4,2,5745,378 -132,FR,SN,201812,1,2,18603,3609 -132,FR,SN,201812,1,2,47700,18000 -132,FR,SN,201812,1,2,20680,4789 -132,FR,SN,201812,1,2,32669,10164 -132,FR,SN,201812,1,2,100881,33285 -132,FR,SN,201812,1,2,34255,4892 -132,FR,SN,201812,4,2,9308,606 -132,FR,SN,201812,4,2,185,74 -133,FR,SN,201812,3,1,66,0 -133,FR,SN,201812,1,2,46196,4941 -133,FR,SN,201812,1,2,2756,186 -133,FR,SN,201812,1,2,8146,1387 -134,FR,SN,201812,1,2,2112072,158400 -136,FR,SN,201812,1,1,39,30 -136,FR,SN,201812,1,2,1548,313 -136,FR,SN,201812,1,2,909,552 -136,FR,SN,201812,1,2,17601,23457 -136,FR,SN,201812,1,2,2377,600 -136,FR,SN,201812,1,2,6807,1571 -136,FR,SN,201812,1,2,36944,11598 -136,FR,SN,201812,1,2,51954,187200 -136,FR,SN,201812,1,2,14011,22950 -139,FR,SN,201812,1,1,6149,2484 -139,FR,SN,201812,1,1,25506,18386 -139,FR,SN,201812,3,1,352,3 -139,FR,SN,201812,1,2,178568,16777 -139,FR,SN,201812,1,2,39107,5060 -139,FR,SN,201812,1,2,679227,657299 -139,FR,SN,201812,1,2,33946,19747 -139,FR,SN,201812,1,2,267034,91680 -139,FR,SN,201812,1,2,19498,6567 -139,FR,SN,201812,1,2,1169750,384513 -139,FR,SN,201812,1,2,42393,15585 -139,FR,SN,201812,4,2,134393,17463 -139,FR,SN,201812,5,2,2195,29 -141,FR,SN,201812,1,2,3829,1080 -141,FR,SN,201812,4,2,14315,797 -142,FR,SN,201812,1,1,42426,8530 -142,FR,SN,201812,1,1,76408,9492 -142,FR,SN,201812,1,1,182172,38951 -142,FR,SN,201812,1,1,84980,13444 -142,FR,SN,201812,3,1,125626,19210 -142,FR,SN,201812,4,1,1685291,185349 -142,FR,SN,201812,4,1,3089,1120 -142,FR,SN,201812,4,1,3098,1062 -142,FR,SN,201812,1,2,1397,60 -142,FR,SN,201812,4,2,66413,3587 -143,FR,SN,201812,1,2,6108,1526 -143,FR,SN,201812,1,2,270111,327448 -143,FR,SN,201812,1,2,4495,1423 -143,FR,SN,201812,1,2,51353,18099 -143,FR,SN,201812,1,2,62608,36456 -144,FR,SN,201812,1,2,107652,15681 -144,FR,SN,201812,1,2,969169,309988 -144,FR,SN,201812,1,2,44898,6908 -144,FR,SN,201812,1,2,167206,30043 -144,FR,SN,201812,4,2,52613,7017 -144,FR,SN,201812,4,2,15375,1999 -145,FR,SN,201812,1,2,2519,440 -145,FR,SN,201812,1,2,3385,595 -146,FR,SN,201812,1,2,115833,21750 -146,FR,SN,201812,4,2,8531,1919 -147,FR,SN,201812,1,2,8036,1830 -147,FR,SN,201812,1,2,51610,15800 -147,FR,SN,201812,1,2,34969,14044 -147,FR,SN,201812,1,2,13116,1474 -147,FR,SN,201812,1,2,4931,1573 -147,FR,SN,201812,1,2,26168,4611 -147,FR,SN,201812,1,2,152,40 -147,FR,SN,201812,1,2,42991,22769 -147,FR,SN,201812,4,2,2769,95 -147,FR,SN,201812,4,2,37294,3921 -148,FR,SN,201812,1,1,71292,19773 -148,FR,SN,201812,1,2,6838,761 -148,FR,SN,201812,1,2,28704,18780 -148,FR,SN,201812,1,2,5454,716 -148,FR,SN,201812,1,2,13992,2204 -148,FR,SN,201812,1,2,7301,1314 -148,FR,SN,201812,1,2,427,74 -148,FR,SN,201812,4,2,975,0 -161,FR,SN,201812,1,1,243,500 -161,FR,SN,201812,4,1,4,2 -161,FR,SN,201812,1,2,2896,6180 -161,FR,SN,201812,1,2,1243,2770 -163,FR,SN,201812,1,2,2731,504 -163,FR,SN,201812,1,2,1144,286 -163,FR,SN,201812,1,2,2533,1866 -163,FR,SN,201812,1,2,71261,26563 -163,FR,SN,201812,1,2,51229,14841 -163,FR,SN,201812,1,2,20137,4970 -163,FR,SN,201812,1,2,224566,84739 -163,FR,SN,201812,1,2,11299,7280 -163,FR,SN,201812,4,2,793,393 -164,FR,SN,201812,1,1,130,100 -164,FR,SN,201812,1,1,645,500 -164,FR,SN,201812,1,2,1875,491 -164,FR,SN,201812,1,2,27286,12448 -164,FR,SN,201812,1,2,15596,7670 -164,FR,SN,201812,1,2,14335,9323 -164,FR,SN,201812,1,2,105543,66400 -164,FR,SN,201812,1,2,19551,25293 -164,FR,SN,201812,4,2,2,1 -165,FR,SN,201812,4,1,397,37 -166,FR,SN,201812,1,1,60415,54704 -166,FR,SN,201812,1,1,58464,72180 -166,FR,SN,201812,1,1,340,264 -166,FR,SN,201812,1,2,2276,601 -166,FR,SN,201812,1,2,85933,101102 -166,FR,SN,201812,1,2,19181,9014 -166,FR,SN,201812,1,2,10232,6185 -166,FR,SN,201812,1,2,81650,89400 -166,FR,SN,201812,1,2,211199,255660 -166,FR,SN,201812,1,2,22872,7245 -179,FR,SN,201812,1,2,6801,6063 -179,FR,SN,201812,1,2,80835,32143 -179,FR,SN,201812,1,2,13698,17520 -179,FR,SN,201812,1,2,34921,50440 -179,FR,SN,201812,1,2,224479,138786 -179,FR,SN,201812,1,2,139182,70040 -179,FR,SN,201812,3,2,6447,6025 -181,FR,SN,201812,4,1,11,3 -181,FR,SN,201812,1,2,49096,129200 -182,FR,SN,201812,4,1,2449,73 -182,FR,SN,201812,1,2,1678,700 -182,FR,SN,201812,1,2,1176,338 -182,FR,SN,201812,1,2,2199,535 -321,FR,SN,201812,1,2,11642,9980 -341,FR,SN,201812,1,2,223,4 -341,FR,SN,201812,1,2,2916,415 -341,FR,SN,201812,1,2,83466,39215 -341,FR,SN,201812,1,2,21478,14510 -341,FR,SN,201812,1,2,24064,15604 -341,FR,SN,201812,4,2,185,18 -343,FR,SN,201812,1,2,10851,9200 -451,FR,SN,201812,1,1,40435,12120 -452,FR,SN,201812,1,2,1655,183 -537,FR,SN,201812,4,1,1669,789 -537,FR,SN,201812,1,2,57142,36030 -551,FR,SN,201812,1,2,12649,1061 -551,FR,SN,201812,4,2,4068,112 -552,FR,SN,201812,1,2,174527,3275 -552,FR,SN,201812,1,2,55610,43928 -552,FR,SN,201812,1,2,118070,20559 -552,FR,SN,201812,1,2,16380,2036 -568,FR,SN,201812,1,2,14250,1058 -568,FR,SN,201812,1,2,12256,3400 -568,FR,SN,201812,1,2,284186,28634 -568,FR,SN,201812,1,2,34306,8211 -568,FR,SN,201812,1,2,794915,141170 -568,FR,SN,201812,1,2,543333,94206 -568,FR,SN,201812,1,2,45313,5655 -568,FR,SN,201812,4,2,18779,1540 -568,FR,SN,201812,4,2,3059,200 -614,FR,SN,201812,1,1,478299,7454875 -614,FR,SN,201812,1,2,451,662 -614,FR,SN,201812,1,2,787,2856 -621,FR,SN,201812,1,2,2360,204 -621,FR,SN,201812,1,2,6042,20160 -621,FR,SN,201812,4,2,121,15 -633,FR,SN,201812,1,2,57,23700 -639,FR,SN,201812,1,2,76,296 -639,FR,SN,201812,1,2,3277,12180 -691,FR,SN,201812,1,2,374,1000 -691,FR,SN,201812,1,2,25644,39713 -691,FR,SN,201812,1,2,30131,15429 -691,FR,SN,201812,1,2,584,90 -691,FR,SN,201812,4,2,679,66 -692,FR,SN,201812,1,2,3283,7010 -692,FR,SN,201812,1,2,27182,6833 -692,FR,SN,201812,1,2,16001,4373 -692,FR,SN,201812,1,2,696,130 -692,FR,SN,201812,1,2,242170,112849 -692,FR,SN,201812,1,2,390,830 -692,FR,SN,201812,4,2,582,575 -719,FR,SN,201812,1,2,39251,3000 -719,FR,SN,201812,1,2,62287,871200 -819,FR,SN,201812,1,2,29912,8130 -819,FR,SN,201812,1,2,1747,139 -819,FR,SN,201812,1,2,2891,1900 -819,FR,SN,201812,1,2,43789,70000 -819,FR,SN,201812,1,2,57720,26490 -819,FR,SN,201812,1,2,28800,36000 -819,FR,SN,201812,1,2,54048,950 -819,FR,SN,201812,1,2,16669,29514 -819,FR,SN,201812,1,2,42965,42246 -819,FR,SN,201812,4,2,11800,120 -891,FR,SN,201812,0,2,1466,57 -891,FR,SN,201812,1,2,94662,47590 -891,FR,SN,201812,1,2,26669,3946 -891,FR,SN,201812,1,2,95529,20685 -891,FR,SN,201812,1,2,231241,213688 -891,FR,SN,201812,1,2,404301,173366 -891,FR,SN,201812,1,2,33294,6306 -891,FR,SN,201812,4,2,13158,322 -891,FR,SN,201812,4,2,2991,140 -892,FR,SN,201812,1,2,147080,14291 -892,FR,SN,201812,1,2,28299,5262 -892,FR,SN,201812,1,2,11059,9254 -892,FR,SN,201812,1,2,19045,4591 -892,FR,SN,201812,1,2,17223,25328 -892,FR,SN,201812,1,2,685,60 -892,FR,SN,201812,4,2,17075,692 -893,FR,SN,201812,3,1,187,0 -893,FR,SN,201812,4,1,2828,387 -893,FR,SN,201812,0,2,30720,124 -893,FR,SN,201812,1,2,6779227,460689 -893,FR,SN,201812,1,2,39663,2950 -893,FR,SN,201812,1,2,40048,2322 -893,FR,SN,201812,1,2,5211,935 -893,FR,SN,201812,1,2,263417,86571 -893,FR,SN,201812,1,2,329,126 -893,FR,SN,201812,1,2,251622,20320 -893,FR,SN,201812,1,2,616718,125263 -893,FR,SN,201812,1,2,167862,19001 -893,FR,SN,201812,1,2,200625,34708 -893,FR,SN,201812,3,2,8788,80 -893,FR,SN,201812,4,2,870678,8135 -893,FR,SN,201812,4,2,334,50 -893,FR,SN,201812,4,2,88756,741 -893,FR,SN,201812,4,2,203164,8216 -893,FR,SN,201812,5,2,8430,68 -894,FR,SN,201812,1,2,97480,22967 -895,FR,SN,201812,1,2,13921,8000 -896,FR,SN,201812,3,1,123,1 -896,FR,SN,201812,0,2,1427,40 -896,FR,SN,201812,1,2,172664,21148 -896,FR,SN,201812,1,2,24900,3000 -896,FR,SN,201812,1,2,39125,13660 -896,FR,SN,201812,1,2,29808,5816 -896,FR,SN,201812,1,2,446481,128133 -896,FR,SN,201812,1,2,184,150 -896,FR,SN,201812,1,2,25642,21855 -896,FR,SN,201812,1,2,131426,131694 -896,FR,SN,201812,1,2,124348,134067 -896,FR,SN,201812,1,2,39735,10264 -896,FR,SN,201812,1,2,159723,62900 -896,FR,SN,201812,3,2,2231,24000 -896,FR,SN,201812,4,2,181983,3237 -896,FR,SN,201812,4,2,4590,450 -896,FR,SN,201812,4,2,3721,500 -910,FR,SN,201812,1,1,18900,1059 -910,FR,SN,201812,3,1,2003,16 -910,FR,SN,201812,4,1,2850,6 -910,FR,SN,201812,0,2,711,7 -910,FR,SN,201812,1,2,10380815,694547 -910,FR,SN,201812,1,2,42491,89789 -910,FR,SN,201812,1,2,383064,391926 -910,FR,SN,201812,1,2,5600,3500 -910,FR,SN,201812,1,2,1400,1360 -910,FR,SN,201812,1,2,14400,43050 -910,FR,SN,201812,1,2,11474,3355 -910,FR,SN,201812,1,2,65148,6232 -910,FR,SN,201812,1,2,15800,29734 -910,FR,SN,201812,1,2,194158,60577 -910,FR,SN,201812,1,2,34613,2652 -910,FR,SN,201812,1,2,193640,112595 -910,FR,SN,201812,1,2,40725,69340 -910,FR,SN,201812,1,2,9520,10025 -910,FR,SN,201812,1,2,41972,95302 -910,FR,SN,201812,1,2,41700,26236 -910,FR,SN,201812,1,2,122885,74001 -910,FR,SN,201812,1,2,78926,6155 -910,FR,SN,201812,1,2,1230,2070 -910,FR,SN,201812,2,2,3500,9485 -910,FR,SN,201812,3,2,7129,1970 -910,FR,SN,201812,3,2,28500,8698 -910,FR,SN,201812,4,2,171029,3246 -910,FR,SN,201812,4,2,1639,51 -910,FR,SN,201812,4,2,3115,31 -910,FR,SN,201812,4,2,2145,20 -910,FR,SN,201812,4,2,15870,1100 -910,FR,SN,201812,5,2,1979,18 -920,FR,SN,201812,1,2,343800,362144 -920,FR,SN,201812,1,2,4160,7136 -920,FR,SN,201812,1,2,101700,144000 -920,FR,SN,201812,1,2,12000,22456 -920,FR,SN,201812,1,2,5164,497 -920,FR,SN,201812,1,2,97794,5969 -920,FR,SN,201812,1,2,8300,19000 -920,FR,SN,201812,1,2,38632,2570 -920,FR,SN,201812,1,2,72636,4351 -920,FR,SN,201812,3,2,12055,558 -920,FR,SN,201812,4,2,7085,235 -920,FR,SN,201812,4,2,16000,200 -920,FR,SN,201812,4,2,2041,2 -931,FR,SN,201812,3,1,543,13 -931,FR,SN,201812,4,1,41205,9 -931,FR,SN,201812,4,1,33379,36 -931,FR,SN,201812,0,2,52557,60 -931,FR,SN,201812,1,2,1617452,58173 -931,FR,SN,201812,1,2,1135,1960 -931,FR,SN,201812,1,2,2171,266 -931,FR,SN,201812,1,2,8906,416 -931,FR,SN,201812,1,2,804321,39708 -931,FR,SN,201812,1,2,237068,23925 -931,FR,SN,201812,1,2,2312587,592417 -931,FR,SN,201812,1,2,3240,2920 -931,FR,SN,201812,1,2,21224,1950 -931,FR,SN,201812,1,2,51802,2990 -931,FR,SN,201812,1,2,101284,12614 -931,FR,SN,201812,1,2,1713583,189771 -931,FR,SN,201812,1,2,273843,12774 -931,FR,SN,201812,1,2,71330,2846 -931,FR,SN,201812,3,2,18122,132 -931,FR,SN,201812,4,2,2838994,23084 -931,FR,SN,201812,4,2,71181,1256 -931,FR,SN,201812,4,2,107371,240 -931,FR,SN,201812,4,2,337889,2673 -931,FR,SN,201812,4,2,40551,105 -931,FR,SN,201812,4,2,2245,39 -931,FR,SN,201812,4,2,5387,0 -931,FR,SN,201812,4,2,46885,400 -931,FR,SN,201812,4,2,4241,53 -931,FR,SN,201812,4,2,3431,18 -931,FR,SN,201812,4,2,71639,2290 -931,FR,SN,201812,4,2,2592,20 -931,FR,SN,201812,5,2,4473,21 -939,FR,SN,201812,1,1,146,225 -939,FR,SN,201812,3,1,3451,108 -939,FR,SN,201812,4,1,159,2 -939,FR,SN,201812,4,1,160865,263 -939,FR,SN,201812,0,2,9643,39 -939,FR,SN,201812,1,2,1680058,208089 -939,FR,SN,201812,1,2,17278,12815 -939,FR,SN,201812,1,2,53500,54000 -939,FR,SN,201812,1,2,47825,2748 -939,FR,SN,201812,1,2,9348,1146 -939,FR,SN,201812,1,2,241746,4040 -939,FR,SN,201812,1,2,9229,413 -939,FR,SN,201812,1,2,1073,34 -939,FR,SN,201812,1,2,70500,25500 -939,FR,SN,201812,1,2,292999,41936 -939,FR,SN,201812,1,2,216521,37199 -939,FR,SN,201812,1,2,886175,134453 -939,FR,SN,201812,1,2,39320,13850 -939,FR,SN,201812,1,2,1868,450 -939,FR,SN,201812,1,2,34500,7300 -939,FR,SN,201812,1,2,35190,1131 -939,FR,SN,201812,1,2,40834,7476 -939,FR,SN,201812,1,2,83006,31797 -939,FR,SN,201812,1,2,170400,19615 -939,FR,SN,201812,1,2,1298610,217887 -939,FR,SN,201812,1,2,528261,14559 -939,FR,SN,201812,1,2,22540,42480 -939,FR,SN,201812,3,2,28932,495 -939,FR,SN,201812,3,2,1599,107 -939,FR,SN,201812,4,2,1409252,15549 -939,FR,SN,201812,4,2,4980,54 -939,FR,SN,201812,4,2,3279,7 -939,FR,SN,201812,4,2,2975,140 -939,FR,SN,201812,4,2,34592,307 -939,FR,SN,201812,4,2,90771,1054 -939,FR,SN,201812,4,2,7385,24 -939,FR,SN,201812,4,2,129,4 -939,FR,SN,201812,4,2,20010,1139 -939,FR,SN,201812,4,2,710710,7460 -939,FR,SN,201812,4,2,6096,75 -939,FR,SN,201812,4,2,153550,4538 -939,FR,SN,201812,4,2,21639,51 -939,FR,SN,201812,4,2,7617,24 -941,FR,SN,201812,1,2,24066,9037 -941,FR,SN,201812,1,2,4120,221 -941,FR,SN,201812,1,2,64410,18855 -941,FR,SN,201812,1,2,513687,170960 -941,FR,SN,201812,1,2,392587,180536 -941,FR,SN,201812,1,2,26244,2493 -941,FR,SN,201812,4,2,7528,779 -949,FR,SN,201812,1,1,1850,1468 -949,FR,SN,201812,0,2,1111,2 -949,FR,SN,201812,1,2,444974,64615 -949,FR,SN,201812,1,2,13893,874 -949,FR,SN,201812,1,2,2688,135 -949,FR,SN,201812,1,2,4700,168 -949,FR,SN,201812,1,2,144316,23006 -949,FR,SN,201812,1,2,147606,73869 -949,FR,SN,201812,1,2,49272,7089 -949,FR,SN,201812,1,2,2643,250 -949,FR,SN,201812,1,2,473396,40177 -949,FR,SN,201812,1,2,36204,13684 -949,FR,SN,201812,1,2,197468,17587 -949,FR,SN,201812,3,2,28195,371 -949,FR,SN,201812,3,2,9077,594 -949,FR,SN,201812,4,2,80895,927 -949,FR,SN,201812,4,2,4588,98 -949,FR,SN,201812,4,2,20281,598 -949,FR,SN,201812,4,2,9579,770 -949,FR,SN,201812,4,2,3029,23 -951,FR,SN,201812,0,2,126,3 -951,FR,SN,201812,1,2,5961,350 -951,FR,SN,201812,1,2,218009,350 -951,FR,SN,201812,1,2,815,126 -951,FR,SN,201812,1,2,2649,70 -951,FR,SN,201812,4,2,153,4 -952,FR,SN,201812,3,1,285,9 -952,FR,SN,201812,1,2,71911,11230 -952,FR,SN,201812,1,2,10448,1049 -952,FR,SN,201812,1,2,60837,144460 -952,FR,SN,201812,1,2,21314,50223 -952,FR,SN,201812,1,2,17776,18545 -952,FR,SN,201812,1,2,2878,225 -952,FR,SN,201812,1,2,70657,132570 -952,FR,SN,201812,1,2,1398,214 -952,FR,SN,201812,4,2,1670,137 -961,FR,SN,201812,1,2,690,44 -961,FR,SN,201812,4,2,2916,35 -962,FR,SN,201812,1,1,495,210 -962,FR,SN,201812,1,1,90,75 -962,FR,SN,201812,1,1,766,608 -962,FR,SN,201812,3,1,1604,6 -962,FR,SN,201812,4,1,670,1 -962,FR,SN,201812,1,2,39437,3541 -962,FR,SN,201812,1,2,2809,222 -962,FR,SN,201812,1,2,149960,29714 -962,FR,SN,201812,1,2,200,60 -962,FR,SN,201812,1,2,630,630 -962,FR,SN,201812,1,2,151846,2460 -962,FR,SN,201812,1,2,921066,59920 -962,FR,SN,201812,1,2,13133,25296 -962,FR,SN,201812,1,2,4410,830 -962,FR,SN,201812,4,2,20517,1037 -962,FR,SN,201812,4,2,2196,95 -963,FR,SN,201812,1,1,6587,2795 -963,FR,SN,201812,3,1,1285,2 -963,FR,SN,201812,4,1,1156,190 -963,FR,SN,201812,4,1,122,0 -963,FR,SN,201812,0,2,1045,11 -963,FR,SN,201812,1,2,206680,12042 -963,FR,SN,201812,1,2,32692,3323 -963,FR,SN,201812,1,2,62989,28874 -963,FR,SN,201812,1,2,985,43 -963,FR,SN,201812,1,2,8357,6731 -963,FR,SN,201812,1,2,58911,3413 -963,FR,SN,201812,3,2,667,32 -963,FR,SN,201812,4,2,121964,2110 -963,FR,SN,201812,4,2,8271,72 -963,FR,SN,201812,4,2,430,15 -963,FR,SN,201812,4,2,2237,22 -963,FR,SN,201812,4,2,6259,16 -971,FR,SN,201812,1,2,93320,4576 -971,FR,SN,201812,1,2,2902,227 -971,FR,SN,201812,1,2,3750,517 -971,FR,SN,201812,1,2,128919,25356 -971,FR,SN,201812,1,2,8637,400 -971,FR,SN,201812,1,2,37048,9747 -971,FR,SN,201812,1,2,29351,2230 -971,FR,SN,201812,3,2,2067,4 -971,FR,SN,201812,4,2,2779,49 -972,FR,SN,201812,1,2,9785,6095 -972,FR,SN,201812,1,2,25202,23316 -972,FR,SN,201812,1,2,783,307 -972,FR,SN,201812,1,2,99557,32351 -972,FR,SN,201812,1,2,848,253 -972,FR,SN,201812,1,2,44521,55260 -972,FR,SN,201812,1,2,6613,24099 -972,FR,SN,201812,4,2,74,1 -973,FR,SN,201812,3,1,14387,400 -973,FR,SN,201812,1,2,64624,9749 -973,FR,SN,201812,1,2,7461,2495 -973,FR,SN,201812,1,2,90690,28295 -973,FR,SN,201812,1,2,3577,1708 -973,FR,SN,201812,1,2,1104,547 -973,FR,SN,201812,1,2,105253,47440 -973,FR,SN,201812,1,2,30901,12782 -973,FR,SN,201812,3,2,13,2 -973,FR,SN,201812,4,2,23593,3079 -973,FR,SN,201812,4,2,9642,335 -973,FR,SN,201812,4,2,375,900 -974,FR,SN,201812,3,1,2895,68 -974,FR,SN,201812,5,1,6258,262 -974,FR,SN,201812,0,2,1712,105 -974,FR,SN,201812,1,2,32808,6333 -974,FR,SN,201812,1,2,12826,2600 -974,FR,SN,201812,1,2,256,531 -974,FR,SN,201812,1,2,98295,78783 -974,FR,SN,201812,1,2,9655,487 -974,FR,SN,201812,1,2,10237,83 -974,FR,SN,201812,3,2,17,7 -974,FR,SN,201812,4,2,118908,5595 -974,FR,SN,201812,4,2,100,69 -974,FR,SN,201812,4,2,382,48 -974,FR,SN,201812,4,2,5543,367 -974,FR,SN,201812,4,2,6619,210 -975,FR,SN,201812,1,1,215,91 -975,FR,SN,201812,1,1,3454,5000 -975,FR,SN,201812,1,1,322,255 -975,FR,SN,201812,1,2,40238,1761 -975,FR,SN,201812,1,2,3934,2155 -975,FR,SN,201812,1,2,61485,9069 -975,FR,SN,201812,1,2,35985,45795 -975,FR,SN,201812,1,2,13724,4285 -975,FR,SN,201812,1,2,6979,1339 -975,FR,SN,201812,1,2,47002,1532 -975,FR,SN,201812,1,2,1666,200 -975,FR,SN,201812,1,2,16869,1710 -975,FR,SN,201812,1,2,157141,105393 -975,FR,SN,201812,1,2,21758,14277 -975,FR,SN,201812,1,2,55000,13012 -975,FR,SN,201812,4,2,3848,253 -976,FR,SN,201812,1,1,454,900 -976,FR,SN,201812,3,1,130,2 -976,FR,SN,201812,1,2,25484,4064 -976,FR,SN,201812,1,2,26131,59210 -976,FR,SN,201812,1,2,3303,2228 -976,FR,SN,201812,1,2,4000,5200 -976,FR,SN,201812,1,2,963,1185 -976,FR,SN,201812,1,2,5870,4453 -976,FR,SN,201812,1,2,874,1074 -976,FR,SN,201812,4,2,175,5 -979,FR,SN,201812,1,1,953,404 -979,FR,SN,201812,1,1,2668,4000 -979,FR,SN,201812,1,1,269519,35189 -979,FR,SN,201812,3,1,12116,66 -979,FR,SN,201812,4,1,5783,275 -979,FR,SN,201812,4,1,265,6 -979,FR,SN,201812,4,1,1732,3 -979,FR,SN,201812,4,1,2754,14 -979,FR,SN,201812,4,1,109,0 -979,FR,SN,201812,0,2,56150,153 -979,FR,SN,201812,1,2,372058,43915 -979,FR,SN,201812,1,2,3792,256 -979,FR,SN,201812,1,2,171,21 -979,FR,SN,201812,1,2,959,8 -979,FR,SN,201812,1,2,168642,76557 -979,FR,SN,201812,1,2,37551,2685 -979,FR,SN,201812,1,2,1088414,510282 -979,FR,SN,201812,1,2,14925,4505 -979,FR,SN,201812,1,2,2600,67 -979,FR,SN,201812,1,2,3127,120 -979,FR,SN,201812,1,2,30844,4549 -979,FR,SN,201812,1,2,535337,72920 -979,FR,SN,201812,1,2,924928,55746 -979,FR,SN,201812,1,2,22283,12212 -979,FR,SN,201812,1,2,57933,30650 -979,FR,SN,201812,3,2,17365,64 -979,FR,SN,201812,3,2,481000,14374 -979,FR,SN,201812,4,2,390283,7851 -979,FR,SN,201812,4,2,1205,6 -979,FR,SN,201812,4,2,5640,48 -979,FR,SN,201812,4,2,1632,61 -979,FR,SN,201812,4,2,2978,110 -979,FR,SN,201812,4,2,1870,1 -979,FR,SN,201812,4,2,2189,1 -979,FR,SN,201812,4,2,10394,97 -979,FR,SN,201812,4,2,1050,15 -979,FR,SN,201812,4,2,18186,35 -979,FR,SN,201812,4,2,8600,515 -979,FR,SN,201812,4,2,31203,50 -979,FR,SN,201812,4,2,131153,5820 -979,FR,SN,201812,4,2,14547,30 -979,FR,SN,201812,4,2,10347,32 -979,FR,SN,201812,5,2,2813,9 -994,FR,SN,201812,1,1,44125,6819 -994,FR,SN,201812,4,2,32000,1 -999,FR,SN,201812,1,1,23437,0 -999,FR,SN,201812,3,1,1277,0 -999,FR,SN,201812,4,1,2293,0 -999,FR,SN,201812,4,1,5411,0 -999,FR,SN,201812,5,1,400,0 -999,FR,SN,201812,1,2,1397620,2510001 -999,FR,SN,201812,1,2,430,1 -999,FR,SN,201812,1,2,110472,500687 -999,FR,SN,201812,1,2,8588,6640 -999,FR,SN,201812,1,2,287784,40555 -999,FR,SN,201812,1,2,89036,42000 -999,FR,SN,201812,1,2,74740,0 -999,FR,SN,201812,1,2,2736,0 -999,FR,SN,201812,1,2,482687,0 -999,FR,SN,201812,1,2,105144,51900 -999,FR,SN,201812,1,2,7100,0 -999,FR,SN,201812,1,2,9115,0 -999,FR,SN,201812,1,2,138970,0 -999,FR,SN,201812,1,2,279296,29391 -999,FR,SN,201812,1,2,138201,28262 -999,FR,SN,201812,1,2,17630,0 -999,FR,SN,201812,1,2,1000,0 -999,FR,SN,201812,3,2,3655,0 -999,FR,SN,201812,3,2,4540,0 -999,FR,SN,201812,4,2,244176,819 -999,FR,SN,201812,4,2,2,0 -999,FR,SN,201812,4,2,4463,131 -092,FR,GM,201812,1,2,4781,1830 -131,FR,GM,201812,1,2,940,100 -132,FR,GM,201812,1,2,942,205 -132,FR,GM,201812,4,2,60,1 -133,FR,GM,201812,1,2,1451,175 -133,FR,GM,201812,1,2,1313,89 -136,FR,GM,201812,1,2,432,113 -139,FR,GM,201812,1,2,38000,2525 -139,FR,GM,201812,1,2,2565,1978 -139,FR,GM,201812,1,2,38125,25000 -141,FR,GM,201812,1,2,16452,24040 -142,FR,GM,201812,4,1,4950,495 -147,FR,GM,201812,1,2,725,183 -148,FR,GM,201812,1,2,999,178 -161,FR,GM,201812,1,2,103,150 -163,FR,GM,201812,1,2,5616,2126 -164,FR,GM,201812,1,2,94,42 -166,FR,GM,201812,1,2,2193,1074 -179,FR,GM,201812,1,2,1931,2409 -341,FR,GM,201812,1,2,3412,2100 -621,FR,GM,201812,1,2,268,852 -691,FR,GM,201812,1,2,15400,18228 -819,FR,GM,201812,1,2,1686,6990 -891,FR,GM,201812,1,2,3772,1302 -892,FR,GM,201812,1,2,3286,1310 -893,FR,GM,201812,4,1,110,12 -893,FR,GM,201812,1,2,7075,4347 -893,FR,GM,201812,4,2,392,4 -896,FR,GM,201812,1,2,5629,2230 -896,FR,GM,201812,4,2,1589,0 -896,FR,GM,201812,4,2,5923,9 -910,FR,GM,201812,1,2,36020,35500 -910,FR,GM,201812,1,2,1000,1205 -910,FR,GM,201812,1,2,1529,298 -910,FR,GM,201812,1,2,1800,1718 -910,FR,GM,201812,1,2,53620,15057 -931,FR,GM,201812,4,1,6744,26 -931,FR,GM,201812,0,2,310,1 -931,FR,GM,201812,1,2,274,0 -939,FR,GM,201812,1,2,36682,180 -939,FR,GM,201812,1,2,83719,13500 -939,FR,GM,201812,4,2,3965,19 -939,FR,GM,201812,4,2,16612,48 -939,FR,GM,201812,4,2,2324,70 -949,FR,GM,201812,1,2,3000,626 -949,FR,GM,201812,4,2,18,0 -962,FR,GM,201812,1,2,638,151 -971,FR,GM,201812,1,2,3475,4200 -972,FR,GM,201812,1,2,1043,491 -974,FR,GM,201812,1,2,8857,17531 -975,FR,GM,201812,1,2,400,16 -975,FR,GM,201812,1,2,16330,18260 -979,FR,GM,201812,1,2,8209,500 -999,FR,GM,201812,1,2,7776,600 -999,FR,GM,201812,1,2,24499,0 -999,FR,GM,201812,1,2,12400,0 -999,FR,GM,201812,1,2,23000,0 -999,FR,GM,201812,4,2,1,0 -999,FR,GM,201812,4,2,1000,0 -891,FR,GW,201812,4,2,453,80 -931,FR,GW,201812,4,1,1029,27 -931,FR,GW,201812,0,2,713,2 -931,FR,GW,201812,1,2,3083,550 -931,FR,GW,201812,1,2,9491,520 -931,FR,GW,201812,4,2,48200,900 -931,FR,GW,201812,4,2,6482,315 -931,FR,GW,201812,4,2,3202,499 -939,FR,GW,201812,4,2,4169,2 -939,FR,GW,201812,4,2,97690,1630 -939,FR,GW,201812,4,2,692,5 -941,FR,GW,201812,1,2,165,150 -949,FR,GW,201812,1,2,6841,1555 -949,FR,GW,201812,1,2,220,80 -949,FR,GW,201812,4,2,556,18 -975,FR,GW,201812,1,2,1115,550 -975,FR,GW,201812,1,2,2000,11360 -979,FR,GW,201812,1,2,4864,583 -999,FR,GW,201812,1,2,2800,0 -999,FR,GW,201812,1,2,40921,17300 -999,FR,GW,201812,1,2,46733,0 -999,FR,GW,201812,4,2,30428,748 -999,FR,GW,201812,4,2,19482,38 -999,FR,GW,201812,4,2,1,0 -001,FR,GN,201812,4,2,32032,1100 -016,FR,GN,201812,1,2,47,15 -019,FR,GN,201812,1,1,225,380 -035,FR,GN,201812,1,2,142779,148176 -035,FR,GN,201812,1,2,27960,40212 -035,FR,GN,201812,1,2,210,61 -039,FR,GN,201812,4,1,1117,724 -039,FR,GN,201812,4,2,3134,490 -039,FR,GN,201812,4,2,9826,790 -039,FR,GN,201812,4,2,22479,3420 -049,FR,GN,201812,1,2,27411,26572 -049,FR,GN,201812,1,2,14010,26000 -092,FR,GN,201812,1,1,321542,249480 -099,FR,GN,201812,1,1,191,490 -099,FR,GN,201812,1,1,134,128 -099,FR,GN,201812,1,2,20916,371 -099,FR,GN,201812,4,2,298,50 -112,FR,GN,201812,1,2,27,25 -121,FR,GN,201812,1,2,7098,1618 -121,FR,GN,201812,1,2,57089,15441 -121,FR,GN,201812,1,2,1472,441 -121,FR,GN,201812,1,2,777,22 -121,FR,GN,201812,4,2,30,2 -122,FR,GN,201812,1,2,579,270 -125,FR,GN,201812,1,2,3884,492 -125,FR,GN,201812,1,2,819,302 -125,FR,GN,201812,1,2,2292,94 -125,FR,GN,201812,1,2,6514,687 -128,FR,GN,201812,1,2,7995,7492 -128,FR,GN,201812,1,2,16675,30061 -131,FR,GN,201812,1,2,12767,1278 -132,FR,GN,201812,1,2,1304,225 -133,FR,GN,201812,1,1,196,200 -133,FR,GN,201812,1,2,694,150 -136,FR,GN,201812,1,2,4606,1071 -136,FR,GN,201812,1,2,1072,337 -139,FR,GN,201812,1,2,28459,2342 -139,FR,GN,201812,1,2,36015,24094 -139,FR,GN,201812,1,2,96401,32560 -139,FR,GN,201812,1,2,24478,8292 -139,FR,GN,201812,1,2,350079,109532 -139,FR,GN,201812,1,2,25518,13552 -139,FR,GN,201812,4,2,3372,901 -139,FR,GN,201812,4,2,41551,5406 -139,FR,GN,201812,4,2,15820,3710 -141,FR,GN,201812,1,2,187658,212460 -141,FR,GN,201812,1,2,12883,24767 -141,FR,GN,201812,1,2,42879,52000 -141,FR,GN,201812,1,2,26978,48802 -141,FR,GN,201812,1,2,49240,54000 -141,FR,GN,201812,4,2,644,189 -142,FR,GN,201812,1,2,2924,200 -143,FR,GN,201812,1,2,32642,33689 -143,FR,GN,201812,1,2,12162,23490 -143,FR,GN,201812,1,2,14227,23845 -143,FR,GN,201812,1,2,13336,17184 -144,FR,GN,201812,1,2,26057,3740 -144,FR,GN,201812,4,2,296,78 -144,FR,GN,201812,4,2,3840,1076 -145,FR,GN,201812,1,2,11,4 -147,FR,GN,201812,4,2,1616,90 -147,FR,GN,201812,4,2,3119,426 -148,FR,GN,201812,1,2,324,60 -161,FR,GN,201812,1,2,249,600 -163,FR,GN,201812,1,2,11686,8899 -163,FR,GN,201812,1,2,160563,36115 -163,FR,GN,201812,1,2,9562,4641 -163,FR,GN,201812,1,2,4522,1422 -164,FR,GN,201812,1,1,2504,4000 -164,FR,GN,201812,1,2,147,31 -164,FR,GN,201812,1,2,1809,2666 -166,FR,GN,201812,1,1,105,100 -166,FR,GN,201812,1,1,146,150 -166,FR,GN,201812,1,2,33,8 -166,FR,GN,201812,1,2,20076,18519 -179,FR,GN,201812,1,2,202,110 -179,FR,GN,201812,1,2,4476,3791 -179,FR,GN,201812,1,2,92,103 -182,FR,GN,201812,1,1,9638,16800 -182,FR,GN,201812,1,1,5219,10690 -182,FR,GN,201812,1,1,56959,36927 -182,FR,GN,201812,4,1,180,38 -182,FR,GN,201812,1,2,109,18 -321,FR,GN,201812,4,2,1182,60 -341,FR,GN,201812,1,2,7944,300 -341,FR,GN,201812,4,2,6,0 -453,FR,GN,201812,1,1,2290748,61188000 -532,FR,GN,201812,1,2,187,120 -536,FR,GN,201812,4,2,724,25 -537,FR,GN,201812,4,2,176824,1900 -542,FR,GN,201812,1,2,11049,3023 -542,FR,GN,201812,4,2,714,34 -551,FR,GN,201812,1,2,1597,213 -551,FR,GN,201812,1,2,142550,3256 -551,FR,GN,201812,1,2,436,64 -551,FR,GN,201812,4,2,162,9 -568,FR,GN,201812,1,2,2490,350 -568,FR,GN,201812,1,2,344,10 -568,FR,GN,201812,4,2,1762,98 -621,FR,GN,201812,1,2,35,75 -691,FR,GN,201812,1,2,11762,12119 -692,FR,GN,201812,1,2,5630,4744 -819,FR,GN,201812,1,2,2428,230 -819,FR,GN,201812,4,2,168,18 -891,FR,GN,201812,1,2,285780,216000 -891,FR,GN,201812,1,2,6000,1300 -891,FR,GN,201812,1,2,517615,305577 -891,FR,GN,201812,1,2,20822,22883 -891,FR,GN,201812,1,2,879,135 -891,FR,GN,201812,4,2,13,0 -892,FR,GN,201812,1,2,1986,121 -892,FR,GN,201812,1,2,4497,8400 -892,FR,GN,201812,1,2,8785,450 -892,FR,GN,201812,1,2,118650,34177 -892,FR,GN,201812,4,2,1305,50 -893,FR,GN,201812,4,1,970,5 -893,FR,GN,201812,4,1,54,12 -893,FR,GN,201812,0,2,2897,48 -893,FR,GN,201812,1,2,1230685,84499 -893,FR,GN,201812,1,2,1654,23 -893,FR,GN,201812,1,2,28922,3014 -893,FR,GN,201812,1,2,18359,4807 -893,FR,GN,201812,1,2,174318,25149 -893,FR,GN,201812,1,2,2779,1838 -893,FR,GN,201812,1,2,15253,18598 -893,FR,GN,201812,4,2,95375,689 -893,FR,GN,201812,4,2,801,0 -894,FR,GN,201812,4,2,10825,200 -896,FR,GN,201812,0,2,821,33 -896,FR,GN,201812,1,2,11211,974 -896,FR,GN,201812,1,2,271283,51600 -896,FR,GN,201812,1,2,29460,19640 -896,FR,GN,201812,1,2,239,40 -896,FR,GN,201812,1,2,6635,1500 -896,FR,GN,201812,4,2,70406,540 -896,FR,GN,201812,4,2,5868,420 -896,FR,GN,201812,4,2,1904,10 -896,FR,GN,201812,4,2,1376,10 -910,FR,GN,201812,1,2,86215,49572 -910,FR,GN,201812,1,2,12700,10640 -910,FR,GN,201812,1,2,10755,4100 -910,FR,GN,201812,1,2,3477,11000 -910,FR,GN,201812,1,2,16324,11201 -910,FR,GN,201812,1,2,157592,14123 -910,FR,GN,201812,1,2,7089,3996 -910,FR,GN,201812,1,2,6161,827 -910,FR,GN,201812,1,2,2417,3680 -910,FR,GN,201812,1,2,1706,2250 -910,FR,GN,201812,3,2,51507,2697 -910,FR,GN,201812,4,2,13552,366 -910,FR,GN,201812,4,2,10931,165 -910,FR,GN,201812,4,2,3058,72 -910,FR,GN,201812,4,2,4369,2070 -920,FR,GN,201812,1,2,380950,61002 -920,FR,GN,201812,1,2,138554,12566 -920,FR,GN,201812,1,2,45068,16000 -920,FR,GN,201812,1,2,19288,970 -931,FR,GN,201812,3,1,638,0 -931,FR,GN,201812,0,2,786,10 -931,FR,GN,201812,1,2,227543,15107 -931,FR,GN,201812,1,2,11175,400 -931,FR,GN,201812,1,2,2769,290 -931,FR,GN,201812,1,2,434688,26031 -931,FR,GN,201812,1,2,166519,3436 -931,FR,GN,201812,1,2,10895,5993 -931,FR,GN,201812,1,2,337671,46644 -931,FR,GN,201812,1,2,392913,45392 -931,FR,GN,201812,3,2,15881,520 -931,FR,GN,201812,4,2,242293,2448 -931,FR,GN,201812,4,2,14323,357 -931,FR,GN,201812,4,2,6009,22 -931,FR,GN,201812,4,2,19368,113 -931,FR,GN,201812,4,2,1587,2 -931,FR,GN,201812,4,2,4756,130 -931,FR,GN,201812,5,2,17357,282 -939,FR,GN,201812,3,1,59,0 -939,FR,GN,201812,0,2,778,18 -939,FR,GN,201812,1,2,573329,23507 -939,FR,GN,201812,1,2,149579,3915 -939,FR,GN,201812,1,2,24914,371 -939,FR,GN,201812,1,2,16079,762 -939,FR,GN,201812,1,2,246585,7700 -939,FR,GN,201812,1,2,57985,7667 -939,FR,GN,201812,1,2,38735,4162 -939,FR,GN,201812,1,2,89013,2613 -939,FR,GN,201812,1,2,6689,622 -939,FR,GN,201812,1,2,278602,96614 -939,FR,GN,201812,1,2,8644,1193 -939,FR,GN,201812,1,2,30901,1305 -939,FR,GN,201812,1,2,17230,22610 -939,FR,GN,201812,3,2,1540,7 -939,FR,GN,201812,3,2,23252,512 -939,FR,GN,201812,4,2,208411,3959 -939,FR,GN,201812,4,2,18770,128 -939,FR,GN,201812,4,2,1823,18 -939,FR,GN,201812,4,2,5742,120 -939,FR,GN,201812,4,2,39979,2638 -939,FR,GN,201812,4,2,9276,70 -941,FR,GN,201812,1,2,49987,9000 -941,FR,GN,201812,1,2,701123,233504 -941,FR,GN,201812,1,2,9184,691 -941,FR,GN,201812,1,2,13111,13700 -949,FR,GN,201812,3,1,69,0 -949,FR,GN,201812,1,2,64980,20342 -949,FR,GN,201812,1,2,9731,3000 -949,FR,GN,201812,1,2,49125,2222 -949,FR,GN,201812,1,2,8359,596 -949,FR,GN,201812,1,2,68967,12201 -949,FR,GN,201812,1,2,4405,10076 -949,FR,GN,201812,1,2,1480,60 -949,FR,GN,201812,4,2,17114,627 -949,FR,GN,201812,4,2,185,8 -949,FR,GN,201812,4,2,888,15 -949,FR,GN,201812,5,2,17,0 -951,FR,GN,201812,1,2,932,128 -952,FR,GN,201812,1,2,20727,3154 -952,FR,GN,201812,1,2,213,64 -952,FR,GN,201812,1,2,21834,18102 -952,FR,GN,201812,4,2,60,5 -952,FR,GN,201812,4,2,231,5 -962,FR,GN,201812,3,1,189,1 -962,FR,GN,201812,4,1,1233,700 -962,FR,GN,201812,1,2,11798,1343 -962,FR,GN,201812,1,2,1402,20 -962,FR,GN,201812,1,2,66,20 -962,FR,GN,201812,3,2,9612,978 -962,FR,GN,201812,4,2,23101,546 -962,FR,GN,201812,4,2,274,35 -963,FR,GN,201812,3,1,535,1 -963,FR,GN,201812,4,1,891,191 -963,FR,GN,201812,1,2,8759,220 -963,FR,GN,201812,1,2,1635,101 -963,FR,GN,201812,1,2,6683,234 -963,FR,GN,201812,1,2,8826,60 -963,FR,GN,201812,4,2,6750,110 -963,FR,GN,201812,4,2,6542,140 -971,FR,GN,201812,1,2,19160,440 -971,FR,GN,201812,1,2,2096,560 -971,FR,GN,201812,1,2,645,192 -971,FR,GN,201812,1,2,3309,6615 -971,FR,GN,201812,4,2,9091,1511 -972,FR,GN,201812,1,2,1167,220 -972,FR,GN,201812,1,2,546,46 -972,FR,GN,201812,4,2,62,1 -973,FR,GN,201812,1,2,2743,799 -973,FR,GN,201812,1,2,7199,3364 -973,FR,GN,201812,1,2,16021,4863 -973,FR,GN,201812,1,2,23337,11607 -973,FR,GN,201812,1,2,4283,371 -973,FR,GN,201812,1,2,43278,34317 -973,FR,GN,201812,1,2,1426,636 -973,FR,GN,201812,4,2,6574,410 -973,FR,GN,201812,4,2,7026,349 -974,FR,GN,201812,0,2,512,8 -974,FR,GN,201812,1,2,9,28 -974,FR,GN,201812,1,2,2703,787 -974,FR,GN,201812,1,2,805,150 -974,FR,GN,201812,1,2,107473,7389 -974,FR,GN,201812,3,2,50,12 -974,FR,GN,201812,4,2,8354,654 -974,FR,GN,201812,4,2,67,0 -974,FR,GN,201812,4,2,2260,1730 -975,FR,GN,201812,1,2,36062,11010 -975,FR,GN,201812,1,2,9100,500 -975,FR,GN,201812,1,2,447,80 -975,FR,GN,201812,1,2,10207,10732 -975,FR,GN,201812,1,2,3853,15000 -975,FR,GN,201812,3,2,10500,1006 -975,FR,GN,201812,4,2,2879,35 -976,FR,GN,201812,1,2,1451,102 -976,FR,GN,201812,1,2,6630,12520 -979,FR,GN,201812,1,1,440,150 -979,FR,GN,201812,3,1,306,0 -979,FR,GN,201812,4,1,126,1 -979,FR,GN,201812,0,2,3423,24 -979,FR,GN,201812,1,2,65053,12970 -979,FR,GN,201812,1,2,193,56 -979,FR,GN,201812,1,2,12429,273 -979,FR,GN,201812,1,2,15751,1852 -979,FR,GN,201812,1,2,6230,594 -979,FR,GN,201812,1,2,30773,16268 -979,FR,GN,201812,1,2,969,192 -979,FR,GN,201812,1,2,374,500 -979,FR,GN,201812,1,2,40659,27277 -979,FR,GN,201812,1,2,49531,5269 -979,FR,GN,201812,1,2,996,545 -979,FR,GN,201812,4,2,54156,1691 -979,FR,GN,201812,4,2,24626,298 -979,FR,GN,201812,4,2,1939,10 -979,FR,GN,201812,4,2,5005,60 -979,FR,GN,201812,4,2,452,2 -979,FR,GN,201812,4,2,1485,10 -979,FR,GN,201812,4,2,1350,12 -979,FR,GN,201812,5,2,385,17 -994,FR,GN,201812,4,1,1253400,38 -999,FR,GN,201812,1,2,1500,0 -999,FR,GN,201812,1,2,90,0 -999,FR,GN,201812,1,2,36713,0 -999,FR,GN,201812,1,2,22,64 -999,FR,GN,201812,1,2,54370,0 -999,FR,GN,201812,1,2,6600,0 -999,FR,GN,201812,1,2,7900,0 -999,FR,GN,201812,1,2,46673,0 -999,FR,GN,201812,1,2,10316,1420 -999,FR,GN,201812,4,2,18324,3887 -999,FR,GN,201812,4,2,19492,220 -999,FR,GN,201812,4,2,2,0 -999,FR,GN,201812,4,2,1500,0 -121,FR,SL,201812,1,2,4634,180 -125,FR,SL,201812,1,2,13902,2010 -133,FR,SL,201812,1,1,5651,175 -139,FR,SL,201812,1,2,223164,86177 -910,FR,SL,201812,4,1,82176,69 -910,FR,SL,201812,1,2,5767,463 -910,FR,SL,201812,3,2,7065,243 -910,FR,SL,201812,4,2,3298,96 -931,FR,SL,201812,3,1,170,4 -931,FR,SL,201812,1,2,168388,11617 -931,FR,SL,201812,4,2,1704,19 -931,FR,SL,201812,4,2,2763,5 -931,FR,SL,201812,4,2,1727,360 -939,FR,SL,201812,4,1,51160,237 -939,FR,SL,201812,1,2,587922,42314 -939,FR,SL,201812,1,2,84508,17681 -939,FR,SL,201812,4,2,190252,1733 -939,FR,SL,201812,4,2,32737,194 -939,FR,SL,201812,4,2,620,12 -939,FR,SL,201812,4,2,9700,410 -939,FR,SL,201812,4,2,180,35 -939,FR,SL,201812,4,2,1514,100 -949,FR,SL,201812,3,1,5,0 -949,FR,SL,201812,1,2,152,25 -949,FR,SL,201812,4,2,1005,24 -962,FR,SL,201812,4,1,4,15 -963,FR,SL,201812,3,1,157,0 -963,FR,SL,201812,4,1,36,0 -971,FR,SL,201812,1,2,5785,1650 -974,FR,SL,201812,4,2,140,5 -974,FR,SL,201812,4,2,505,141 -979,FR,SL,201812,3,1,44,26 -979,FR,SL,201812,4,1,1492,90 -979,FR,SL,201812,4,1,89,1 -979,FR,SL,201812,1,2,17840,4700 -979,FR,SL,201812,1,2,42678,1870 -979,FR,SL,201812,4,2,20,1 -979,FR,SL,201812,4,2,706,10 -092,FR,LR,201812,1,1,119591,90720 -099,FR,LR,201812,4,2,10236,135 -112,FR,LR,201812,1,2,81458,240000 -112,FR,LR,201812,1,2,12965,21888 -125,FR,LR,201812,1,2,5547,112 -125,FR,LR,201812,1,2,4177,21 -568,FR,LR,201812,0,2,60,0 -691,FR,LR,201812,1,2,55648,18309 -893,FR,LR,201812,1,2,48201,7041 -910,FR,LR,201812,1,2,5787,830 -910,FR,LR,201812,4,2,3366,252 -931,FR,LR,201812,1,2,1679,1 -931,FR,LR,201812,1,2,23535,1645 -931,FR,LR,201812,1,2,47914,5141 -931,FR,LR,201812,4,2,4124,171 -931,FR,LR,201812,4,2,176,0 -931,FR,LR,201812,4,2,17830,1137 -931,FR,LR,201812,4,2,6316,28 -939,FR,LR,201812,1,2,51863,12058 -939,FR,LR,201812,1,2,883,1 -939,FR,LR,201812,1,2,9230,9098 -939,FR,LR,201812,1,2,2395,257 -939,FR,LR,201812,4,2,2020,3 -939,FR,LR,201812,4,2,17046,160 -939,FR,LR,201812,4,2,1130,5 -939,FR,LR,201812,4,2,50950,65 -949,FR,LR,201812,1,2,594,1 -952,FR,LR,201812,1,2,450,1 -963,FR,LR,201812,1,2,9765,11494 -971,FR,LR,201812,4,2,49,0 -975,FR,LR,201812,3,2,1283,105 -976,FR,LR,201812,1,2,239,1 -979,FR,LR,201812,1,2,1111,8 -979,FR,LR,201812,4,2,110,0 -979,FR,LR,201812,4,2,2580,50 -979,FR,LR,201812,4,2,3840,90 -999,FR,LR,201812,4,2,3430,0 -999,FR,LR,201812,4,2,1342,350 -001,FR,CI,201812,4,2,24045,388 -011,FR,CI,201812,1,2,3159787,14297680 -011,FR,CI,201812,1,2,4043902,18100000 -015,FR,CI,201812,4,1,79,21 -015,FR,CI,201812,4,2,89,6 -016,FR,CI,201812,4,1,21,36 -019,FR,CI,201812,4,1,21,20 -020,FR,CI,201812,1,2,9062,13541 -031,FR,CI,201812,1,2,15136,10185 -035,FR,CI,201812,1,1,507838,900894 -035,FR,CI,201812,1,1,9190168,13657490 -035,FR,CI,201812,1,1,139818,8000 -035,FR,CI,201812,1,1,3051737,4550080 -035,FR,CI,201812,1,1,21756,65200 -035,FR,CI,201812,1,1,1976886,3022246 -035,FR,CI,201812,4,1,138052,115636 -035,FR,CI,201812,4,1,576,420 -035,FR,CI,201812,4,1,2051,1183 -035,FR,CI,201812,1,2,228,32 -035,FR,CI,201812,1,2,50398,37446 -035,FR,CI,201812,1,2,20738,21047 -035,FR,CI,201812,4,2,10602,1492 -035,FR,CI,201812,4,2,3482,702 -039,FR,CI,201812,1,1,460,784 -039,FR,CI,201812,1,1,922,1500 -039,FR,CI,201812,4,1,5486,3242 -039,FR,CI,201812,4,1,10639,6445 -039,FR,CI,201812,1,2,39175,27941 -039,FR,CI,201812,1,2,72210,261000 -039,FR,CI,201812,1,2,22272,19947 -039,FR,CI,201812,4,2,122583,26314 -039,FR,CI,201812,4,2,12841,4371 -039,FR,CI,201812,4,2,1074,5 -045,FR,CI,201812,1,2,10445,1580 -049,FR,CI,201812,4,1,101,3 -049,FR,CI,201812,1,2,28715,20365 -056,FR,CI,201812,1,1,17886,25730 -056,FR,CI,201812,1,1,14685,17974 -056,FR,CI,201812,1,1,34466,24970 -056,FR,CI,201812,1,1,102637,81831 -092,FR,CI,201812,1,1,205375,161280 -092,FR,CI,201812,1,1,1543852,1202040 -099,FR,CI,201812,1,1,18,2 -099,FR,CI,201812,1,1,8471,22404 -099,FR,CI,201812,1,1,25903,65346 -099,FR,CI,201812,4,1,13109,2880 -099,FR,CI,201812,4,1,4713,2388 -099,FR,CI,201812,4,1,160,48 -099,FR,CI,201812,4,1,5544,1484 -099,FR,CI,201812,1,2,18290,5254 -099,FR,CI,201812,1,2,6832,12500 -099,FR,CI,201812,1,2,5648,6631 -099,FR,CI,201812,4,2,23504,571 -099,FR,CI,201812,4,2,195,10 -099,FR,CI,201812,4,2,1672,340 -112,FR,CI,201812,4,1,28,21 -112,FR,CI,201812,1,2,1423,390 -121,FR,CI,201812,1,2,153183,23454 -121,FR,CI,201812,1,2,341,36 -121,FR,CI,201812,1,2,86103,12735 -121,FR,CI,201812,1,2,454511,307415 -121,FR,CI,201812,1,2,70641,5670 -121,FR,CI,201812,1,2,16013,10773 -121,FR,CI,201812,1,2,196335,8105 -121,FR,CI,201812,1,2,57881,17307 -121,FR,CI,201812,1,2,59195,29484 -121,FR,CI,201812,1,2,11250,794 -121,FR,CI,201812,1,2,695960,455253 -121,FR,CI,201812,4,2,20582,818 -121,FR,CI,201812,4,2,18624,598 -121,FR,CI,201812,4,2,27817,474 -122,FR,CI,201812,1,2,1838,2263 -122,FR,CI,201812,1,2,15399,27045 -122,FR,CI,201812,1,2,14355,28346 -122,FR,CI,201812,1,2,5969,18862 -125,FR,CI,201812,1,2,5026,1437 -125,FR,CI,201812,1,2,45140,9709 -125,FR,CI,201812,1,2,57331,20122 -125,FR,CI,201812,1,2,123222,49523 -125,FR,CI,201812,1,2,69680,76171 -128,FR,CI,201812,1,1,544,874 -128,FR,CI,201812,1,2,12464,15089 -128,FR,CI,201812,1,2,41313,60356 -128,FR,CI,201812,1,2,338,258 -128,FR,CI,201812,1,2,80526,130514 -128,FR,CI,201812,1,2,20269,20161 -128,FR,CI,201812,4,2,648,1113 -131,FR,CI,201812,0,1,30236,18257 -131,FR,CI,201812,1,1,3554,2426 -131,FR,CI,201812,4,1,191,5 -131,FR,CI,201812,1,2,9834,379 -131,FR,CI,201812,1,2,35950,1690 -131,FR,CI,201812,1,2,51653,19720 -132,FR,CI,201812,0,1,5188717,2393451 -132,FR,CI,201812,1,1,502068,248650 -132,FR,CI,201812,1,1,205327,98448 -132,FR,CI,201812,1,1,2482895,816472 -132,FR,CI,201812,1,1,788712,283200 -132,FR,CI,201812,1,1,2200396,623400 -132,FR,CI,201812,1,1,1737186,740000 -132,FR,CI,201812,1,1,522379,144000 -132,FR,CI,201812,1,1,2813491,915376 -132,FR,CI,201812,1,1,9535778,3115000 -132,FR,CI,201812,1,1,442170,90000 -132,FR,CI,201812,1,1,1234426,362168 -132,FR,CI,201812,1,1,862078,288000 -132,FR,CI,201812,4,1,57,10 -132,FR,CI,201812,4,1,384,90 -132,FR,CI,201812,1,2,41199,6497 -132,FR,CI,201812,1,2,41698,14925 -132,FR,CI,201812,1,2,187389,66700 -132,FR,CI,201812,1,2,87845,19310 -132,FR,CI,201812,3,2,802,98 -132,FR,CI,201812,4,2,32935,738 -132,FR,CI,201812,4,2,3425,110 -133,FR,CI,201812,1,1,1134,336 -133,FR,CI,201812,1,1,1406,2400 -133,FR,CI,201812,4,1,234,131 -133,FR,CI,201812,4,1,1092,641 -133,FR,CI,201812,1,2,29262,1850 -133,FR,CI,201812,4,2,637,55 -133,FR,CI,201812,4,2,434,6 -134,FR,CI,201812,1,2,5339658,495000 -136,FR,CI,201812,4,1,184,137 -136,FR,CI,201812,1,2,46904,13377 -136,FR,CI,201812,1,2,22416,29940 -136,FR,CI,201812,1,2,60037,6025 -136,FR,CI,201812,1,2,24755,27818 -136,FR,CI,201812,1,2,6363,1800 -136,FR,CI,201812,3,2,1210,74 -136,FR,CI,201812,3,2,418,960 -136,FR,CI,201812,4,2,547,360 -136,FR,CI,201812,4,2,13,0 -139,FR,CI,201812,1,1,2840,2632 -139,FR,CI,201812,1,1,3764,5000 -139,FR,CI,201812,4,1,1744,1622 -139,FR,CI,201812,4,1,778,551 -139,FR,CI,201812,0,2,25,0 -139,FR,CI,201812,1,2,196442,35128 -139,FR,CI,201812,1,2,1509,201 -139,FR,CI,201812,1,2,920452,366944 -139,FR,CI,201812,1,2,47918,41019 -139,FR,CI,201812,1,2,1274767,342016 -139,FR,CI,201812,1,2,310670,163416 -139,FR,CI,201812,3,2,5413,1970 -139,FR,CI,201812,4,2,46951,4140 -139,FR,CI,201812,4,2,42960,8412 -139,FR,CI,201812,4,2,3684,650 -141,FR,CI,201812,1,2,111019,146081 -141,FR,CI,201812,1,2,13115,24745 -141,FR,CI,201812,1,2,16147,25612 -141,FR,CI,201812,1,2,960243,1880562 -141,FR,CI,201812,1,2,156162,242466 -141,FR,CI,201812,4,2,37306,3611 -141,FR,CI,201812,4,2,13546,723 -142,FR,CI,201812,1,1,55463,9013 -142,FR,CI,201812,1,1,56945,10431 -142,FR,CI,201812,4,1,181738,19057 -142,FR,CI,201812,1,2,182727,154313 -142,FR,CI,201812,1,2,77,10 -142,FR,CI,201812,1,2,20958,8447 -142,FR,CI,201812,4,2,129982,13332 -142,FR,CI,201812,4,2,43387,963 -142,FR,CI,201812,4,2,31284,804 -143,FR,CI,201812,1,2,110712,95607 -143,FR,CI,201812,1,2,23995,10003 -143,FR,CI,201812,1,2,31356,8375 -143,FR,CI,201812,4,2,19,7 -144,FR,CI,201812,0,2,65,3 -144,FR,CI,201812,1,2,71911,12763 -144,FR,CI,201812,1,2,795642,347902 -144,FR,CI,201812,1,2,83739,13911 -144,FR,CI,201812,1,2,112023,16200 -144,FR,CI,201812,1,2,132117,29088 -144,FR,CI,201812,1,2,344563,61696 -144,FR,CI,201812,4,2,29493,2899 -144,FR,CI,201812,4,2,54319,4944 -145,FR,CI,201812,1,2,14242,4610 -145,FR,CI,201812,1,2,5570,1920 -146,FR,CI,201812,1,2,115263,21750 -146,FR,CI,201812,4,2,30,135 -146,FR,CI,201812,4,2,385,52 -146,FR,CI,201812,4,2,15066,3855 -147,FR,CI,201812,1,2,42945,7864 -147,FR,CI,201812,1,2,147641,99877 -147,FR,CI,201812,1,2,21781,5388 -147,FR,CI,201812,4,2,38720,3829 -147,FR,CI,201812,4,2,57414,4937 -147,FR,CI,201812,4,2,24065,467 -148,FR,CI,201812,1,1,491706,124306 -148,FR,CI,201812,1,1,59114,9918 -148,FR,CI,201812,1,1,1167057,262582 -148,FR,CI,201812,1,1,125801,23736 -148,FR,CI,201812,4,1,334,25 -148,FR,CI,201812,1,2,28397,5520 -148,FR,CI,201812,1,2,3366,258 -148,FR,CI,201812,1,2,2060,188 -148,FR,CI,201812,4,2,5169,338 -148,FR,CI,201812,4,2,36896,44 -148,FR,CI,201812,4,2,5826,157 -161,FR,CI,201812,1,1,3828,10361 -161,FR,CI,201812,1,2,3739,1510 -161,FR,CI,201812,1,2,258912,744000 -161,FR,CI,201812,1,2,534528,1536000 -161,FR,CI,201812,1,2,94635,266208 -161,FR,CI,201812,1,2,58464,168000 -162,FR,CI,201812,1,2,136519,391000 -163,FR,CI,201812,1,1,429,879 -163,FR,CI,201812,1,1,25028,18470 -163,FR,CI,201812,4,1,8056,8680 -163,FR,CI,201812,4,1,16649,15773 -163,FR,CI,201812,1,2,142872,77098 -163,FR,CI,201812,1,2,193944,76053 -163,FR,CI,201812,1,2,27535,17000 -163,FR,CI,201812,1,2,350794,125607 -163,FR,CI,201812,1,2,185389,75072 -163,FR,CI,201812,3,2,1887,1035 -163,FR,CI,201812,4,2,7070,729 -163,FR,CI,201812,4,2,14209,1176 -163,FR,CI,201812,4,2,1788,102 -164,FR,CI,201812,1,1,1063,1048 -164,FR,CI,201812,1,1,928,190 -164,FR,CI,201812,1,1,34813,19770 -164,FR,CI,201812,4,1,395,308 -164,FR,CI,201812,4,1,7981,5857 -164,FR,CI,201812,1,2,28353,29436 -164,FR,CI,201812,1,2,61642,37977 -164,FR,CI,201812,1,2,2250,900 -164,FR,CI,201812,1,2,14506,7628 -164,FR,CI,201812,1,2,4213,6619 -164,FR,CI,201812,4,2,5336,720 -166,FR,CI,201812,1,1,1013,2000 -166,FR,CI,201812,1,1,1986,1148 -166,FR,CI,201812,1,1,18895,23500 -166,FR,CI,201812,1,1,330,665 -166,FR,CI,201812,4,1,101987,79809 -166,FR,CI,201812,4,1,169879,93077 -166,FR,CI,201812,1,2,3999,1886 -166,FR,CI,201812,1,2,2287,1387 -166,FR,CI,201812,1,2,6376,2742 -166,FR,CI,201812,1,2,55289,15881 -166,FR,CI,201812,1,2,133235,94151 -166,FR,CI,201812,1,2,76036,79430 -179,FR,CI,201812,4,1,42,1 -179,FR,CI,201812,1,2,27987,17645 -179,FR,CI,201812,1,2,34586,37513 -179,FR,CI,201812,1,2,293275,196818 -179,FR,CI,201812,1,2,24500,3842 -181,FR,CI,201812,1,1,1216,1200 -181,FR,CI,201812,1,1,31,95 -181,FR,CI,201812,4,1,656,330 -181,FR,CI,201812,4,1,209,41 -182,FR,CI,201812,1,1,799,1215 -182,FR,CI,201812,1,1,3755,2183 -182,FR,CI,201812,4,1,184,112 -182,FR,CI,201812,4,1,10522,731 -182,FR,CI,201812,1,2,22058,4954 -182,FR,CI,201812,1,2,45515,18443 -182,FR,CI,201812,1,2,21791,4280 -182,FR,CI,201812,1,2,63439,45557 -310,FR,CI,201812,1,1,12771020,26625000 -321,FR,CI,201812,4,2,53,8 -323,FR,CI,201812,1,2,115,40 -341,FR,CI,201812,1,2,39661,10237 -341,FR,CI,201812,1,2,2933,132 -341,FR,CI,201812,1,2,179896,72898 -341,FR,CI,201812,1,2,24605,14230 -341,FR,CI,201812,1,2,70205,41308 -341,FR,CI,201812,1,2,74823,44772 -341,FR,CI,201812,1,2,53064,28888 -341,FR,CI,201812,4,2,6936,93 -343,FR,CI,201812,1,2,95,10 -343,FR,CI,201812,1,2,5838,4000 -343,FR,CI,201812,1,2,32226,1345 -532,FR,CI,201812,4,2,545,95 -533,FR,CI,201812,4,2,10932,1475 -542,FR,CI,201812,1,2,1703,260 -542,FR,CI,201812,1,2,6443,2817 -542,FR,CI,201812,1,2,9549,10562 -542,FR,CI,201812,1,2,124851,103123 -551,FR,CI,201812,4,1,744,135 -551,FR,CI,201812,1,2,106955,19959 -551,FR,CI,201812,1,2,2619,205 -551,FR,CI,201812,1,2,13426,12150 -551,FR,CI,201812,4,2,112267,3104 -551,FR,CI,201812,4,2,168,6 -551,FR,CI,201812,4,2,16735,381 -551,FR,CI,201812,4,2,1249,28 -552,FR,CI,201812,0,2,30,1 -552,FR,CI,201812,1,2,3849,111 -552,FR,CI,201812,4,2,14527,1574 -568,FR,CI,201812,0,2,91,0 -568,FR,CI,201812,1,2,96858,26114 -568,FR,CI,201812,1,2,4231,668 -568,FR,CI,201812,1,2,36790,4550 -568,FR,CI,201812,1,2,630437,108772 -568,FR,CI,201812,1,2,119533,14868 -568,FR,CI,201812,1,2,41269,20121 -568,FR,CI,201812,1,2,114300,14905 -568,FR,CI,201812,4,2,47,0 -614,FR,CI,201812,1,1,463,170 -614,FR,CI,201812,4,1,99,107 -614,FR,CI,201812,4,1,121,68 -621,FR,CI,201812,1,2,774,2075 -621,FR,CI,201812,4,2,36,8 -634,FR,CI,201812,3,2,3452,48000 -639,FR,CI,201812,3,2,400,38 -642,FR,CI,201812,1,2,9406,78000 -642,FR,CI,201812,1,2,14109,117000 -691,FR,CI,201812,1,1,310,295 -691,FR,CI,201812,1,2,27621,22022 -691,FR,CI,201812,1,2,274355,465965 -691,FR,CI,201812,1,2,19173,21300 -691,FR,CI,201812,4,2,3153,2 -692,FR,CI,201812,1,2,33701,39800 -692,FR,CI,201812,1,2,30140,265068 -692,FR,CI,201812,1,2,587,110 -719,FR,CI,201812,1,2,22400,54040 -723,FR,CI,201812,1,2,34223,57000 -819,FR,CI,201812,4,1,726,1 -819,FR,CI,201812,1,2,83321,10612 -819,FR,CI,201812,1,2,210541,275451 -819,FR,CI,201812,1,2,12473,16203 -819,FR,CI,201812,1,2,24624,24000 -819,FR,CI,201812,1,2,90720,24192 -819,FR,CI,201812,1,2,3840,1000 -819,FR,CI,201812,1,2,15634,215000 -819,FR,CI,201812,1,2,10429,1800 -819,FR,CI,201812,1,2,71026,3000 -819,FR,CI,201812,3,2,38923,59380 -819,FR,CI,201812,4,2,29,0 -819,FR,CI,201812,4,2,185,0 -891,FR,CI,201812,4,1,297,1 -891,FR,CI,201812,1,2,153220,39187 -891,FR,CI,201812,1,2,1816,46 -891,FR,CI,201812,1,2,8016,1844 -891,FR,CI,201812,1,2,10953,2176 -891,FR,CI,201812,1,2,1829,397 -891,FR,CI,201812,1,2,87724,37918 -891,FR,CI,201812,1,2,201239,187656 -891,FR,CI,201812,1,2,114753,33037 -891,FR,CI,201812,3,2,2263,276 -891,FR,CI,201812,4,2,105333,5506 -891,FR,CI,201812,4,2,1988,90 -891,FR,CI,201812,4,2,1097,59 -892,FR,CI,201812,1,2,192250,26172 -892,FR,CI,201812,1,2,9252,411 -892,FR,CI,201812,1,2,70662,455 -892,FR,CI,201812,1,2,9780,2115 -892,FR,CI,201812,1,2,51139,33744 -892,FR,CI,201812,1,2,22185,74483 -892,FR,CI,201812,1,2,67724,37813 -892,FR,CI,201812,1,2,62700,16600 -892,FR,CI,201812,3,2,1000,6 -892,FR,CI,201812,4,2,24289,2685 -892,FR,CI,201812,4,2,2405,153 -893,FR,CI,201812,1,1,424,38 -893,FR,CI,201812,1,1,83139,42055 -893,FR,CI,201812,3,1,164,0 -893,FR,CI,201812,4,1,1356,203 -893,FR,CI,201812,4,1,201,2 -893,FR,CI,201812,4,1,479,193 -893,FR,CI,201812,0,2,354994,3217 -893,FR,CI,201812,1,2,9189669,642786 -893,FR,CI,201812,1,2,30470,3834 -893,FR,CI,201812,1,2,3189,60 -893,FR,CI,201812,1,2,130067,1203 -893,FR,CI,201812,1,2,21136,2266 -893,FR,CI,201812,1,2,1975124,332754 -893,FR,CI,201812,1,2,82887,6877 -893,FR,CI,201812,1,2,145346,19218 -893,FR,CI,201812,1,2,45286,6200 -893,FR,CI,201812,1,2,53169,25691 -893,FR,CI,201812,1,2,1611209,113672 -893,FR,CI,201812,1,2,72033,12835 -893,FR,CI,201812,1,2,84828,67531 -893,FR,CI,201812,1,2,59558,5841 -893,FR,CI,201812,3,2,104372,6119 -893,FR,CI,201812,4,2,1335344,8475 -893,FR,CI,201812,4,2,127807,1460 -893,FR,CI,201812,4,2,837525,5826 -893,FR,CI,201812,4,2,26127,88 -893,FR,CI,201812,4,2,94652,210 -893,FR,CI,201812,4,2,7886,650 -893,FR,CI,201812,4,2,4556,220 -893,FR,CI,201812,4,2,3290,111 -893,FR,CI,201812,4,2,64449,2396 -894,FR,CI,201812,1,2,126459,7892 -894,FR,CI,201812,4,2,53345,1000 -895,FR,CI,201812,4,1,4799,2677 -896,FR,CI,201812,0,2,626,4 -896,FR,CI,201812,1,2,440146,82365 -896,FR,CI,201812,1,2,8722,99 -896,FR,CI,201812,1,2,4934,1428 -896,FR,CI,201812,1,2,4266,1813 -896,FR,CI,201812,1,2,10061,1000 -896,FR,CI,201812,1,2,349,16 -896,FR,CI,201812,1,2,748999,276665 -896,FR,CI,201812,1,2,45752,19980 -896,FR,CI,201812,1,2,51911,16880 -896,FR,CI,201812,1,2,53677,16320 -896,FR,CI,201812,1,2,58181,61386 -896,FR,CI,201812,1,2,70198,24295 -896,FR,CI,201812,3,2,12362,1233 -896,FR,CI,201812,3,2,23856,118500 -896,FR,CI,201812,3,2,7466,11250 -896,FR,CI,201812,4,2,166258,4939 -896,FR,CI,201812,4,2,11518,10 -896,FR,CI,201812,4,2,10458,2 -896,FR,CI,201812,4,2,11215,76 -896,FR,CI,201812,4,2,95,29 -896,FR,CI,201812,4,2,1195,80 -896,FR,CI,201812,4,2,3090,7 -910,FR,CI,201812,4,1,1575,38 -910,FR,CI,201812,4,1,72,4 -910,FR,CI,201812,0,2,300,1 -910,FR,CI,201812,1,2,3723364,362401 -910,FR,CI,201812,1,2,12511,1108 -910,FR,CI,201812,1,2,38900,2160 -910,FR,CI,201812,1,2,3639,70 -910,FR,CI,201812,1,2,268491,47534 -910,FR,CI,201812,1,2,487369,85345 -910,FR,CI,201812,1,2,49811,73783 -910,FR,CI,201812,1,2,2506,4360 -910,FR,CI,201812,1,2,85100,36135 -910,FR,CI,201812,1,2,11624,2390 -910,FR,CI,201812,3,2,3313656,252957 -910,FR,CI,201812,3,2,230000,60762 -910,FR,CI,201812,4,2,149322,5147 -910,FR,CI,201812,4,2,207,3 -910,FR,CI,201812,4,2,26085,5130 -910,FR,CI,201812,4,2,8080,37 -920,FR,CI,201812,1,2,108591,45915 -920,FR,CI,201812,1,2,12217,680 -920,FR,CI,201812,1,2,11855,593 -920,FR,CI,201812,1,2,10271,1208 -920,FR,CI,201812,1,2,5000,8000 -920,FR,CI,201812,4,2,68545,834 -920,FR,CI,201812,4,2,29917,950 -920,FR,CI,201812,4,2,21925,787 -920,FR,CI,201812,4,2,3071,60 -931,FR,CI,201812,3,1,4245,7 -931,FR,CI,201812,4,1,789,8 -931,FR,CI,201812,4,1,30803,49 -931,FR,CI,201812,0,2,6963,37 -931,FR,CI,201812,1,2,3059734,138809 -931,FR,CI,201812,1,2,5707,113 -931,FR,CI,201812,1,2,33633,10504 -931,FR,CI,201812,1,2,7675,37 -931,FR,CI,201812,1,2,24625,3246 -931,FR,CI,201812,1,2,64278,3050 -931,FR,CI,201812,1,2,27168,3374 -931,FR,CI,201812,1,2,18339,719 -931,FR,CI,201812,1,2,1195466,166719 -931,FR,CI,201812,1,2,1750,30 -931,FR,CI,201812,1,2,221998,13110 -931,FR,CI,201812,1,2,224340,24646 -931,FR,CI,201812,3,2,28940,169 -931,FR,CI,201812,4,2,2145840,21767 -931,FR,CI,201812,4,2,759,25 -931,FR,CI,201812,4,2,128697,490 -931,FR,CI,201812,4,2,152261,92 -931,FR,CI,201812,4,2,12071,161 -931,FR,CI,201812,4,2,250,59 -931,FR,CI,201812,4,2,110760,3671 -931,FR,CI,201812,4,2,150,1 -931,FR,CI,201812,4,2,1225,2 -931,FR,CI,201812,4,2,19559,174 -931,FR,CI,201812,4,2,9468,84 -931,FR,CI,201812,4,2,2432,5 -931,FR,CI,201812,4,2,1754,98 -931,FR,CI,201812,4,2,11615,30 -931,FR,CI,201812,4,2,69074,4210 -931,FR,CI,201812,4,2,4182,62 -931,FR,CI,201812,4,2,3757,107 -931,FR,CI,201812,5,2,897,8 -939,FR,CI,201812,1,1,7622,1490 -939,FR,CI,201812,3,1,2113,23 -939,FR,CI,201812,4,1,68,1 -939,FR,CI,201812,4,1,1895,800 -939,FR,CI,201812,4,1,54373,31 -939,FR,CI,201812,0,2,15908,202 -939,FR,CI,201812,1,2,3564077,277779 -939,FR,CI,201812,1,2,15039,2305 -939,FR,CI,201812,1,2,3289,642 -939,FR,CI,201812,1,2,14542,927 -939,FR,CI,201812,1,2,3080,537 -939,FR,CI,201812,1,2,6169,163 -939,FR,CI,201812,1,2,29163,6933 -939,FR,CI,201812,1,2,2109266,60749 -939,FR,CI,201812,1,2,238609,11703 -939,FR,CI,201812,1,2,25890,1077 -939,FR,CI,201812,1,2,2014644,179081 -939,FR,CI,201812,1,2,1924,105 -939,FR,CI,201812,1,2,427166,41017 -939,FR,CI,201812,1,2,357581,8600 -939,FR,CI,201812,1,2,82897,1143 -939,FR,CI,201812,1,2,60398,35856 -939,FR,CI,201812,1,2,667880,11995 -939,FR,CI,201812,1,2,1066662,85639 -939,FR,CI,201812,1,2,640110,33877 -939,FR,CI,201812,1,2,20686,9000 -939,FR,CI,201812,1,2,57605,8050 -939,FR,CI,201812,1,2,18500,23800 -939,FR,CI,201812,1,2,8400,11300 -939,FR,CI,201812,3,2,29402,168 -939,FR,CI,201812,3,2,465,7 -939,FR,CI,201812,4,2,3433622,43432 -939,FR,CI,201812,4,2,5498,220 -939,FR,CI,201812,4,2,52379,685 -939,FR,CI,201812,4,2,890,86 -939,FR,CI,201812,4,2,11499,249 -939,FR,CI,201812,4,2,9487,45 -939,FR,CI,201812,4,2,31759,2014 -939,FR,CI,201812,4,2,64784,1003 -939,FR,CI,201812,4,2,6381,86 -939,FR,CI,201812,4,2,2680,134 -939,FR,CI,201812,4,2,80261,90 -939,FR,CI,201812,4,2,1950,120 -939,FR,CI,201812,4,2,127366,1050 -939,FR,CI,201812,4,2,81857,4780 -939,FR,CI,201812,4,2,12500,139 -939,FR,CI,201812,4,2,239008,15222 -939,FR,CI,201812,4,2,24129,92 -939,FR,CI,201812,4,2,10283,16 -941,FR,CI,201812,1,2,86387,21754 -941,FR,CI,201812,1,2,8740,476 -941,FR,CI,201812,1,2,264637,70603 -941,FR,CI,201812,1,2,79138,14527 -941,FR,CI,201812,4,2,3257,260 -941,FR,CI,201812,4,2,1900,40 -949,FR,CI,201812,3,1,1381,88 -949,FR,CI,201812,4,1,281,85 -949,FR,CI,201812,4,1,35,37 -949,FR,CI,201812,0,2,277,5 -949,FR,CI,201812,1,2,1345338,186600 -949,FR,CI,201812,1,2,8109,443 -949,FR,CI,201812,1,2,5549,481 -949,FR,CI,201812,1,2,19525,523 -949,FR,CI,201812,1,2,17329,2160 -949,FR,CI,201812,1,2,207378,35801 -949,FR,CI,201812,1,2,75069,17560 -949,FR,CI,201812,1,2,97422,52920 -949,FR,CI,201812,1,2,471065,61867 -949,FR,CI,201812,1,2,6681,239 -949,FR,CI,201812,3,2,8630,2116 -949,FR,CI,201812,3,2,70124,10940 -949,FR,CI,201812,4,2,91362,1837 -949,FR,CI,201812,4,2,8611,162 -949,FR,CI,201812,4,2,139557,51674 -949,FR,CI,201812,4,2,2060,40 -949,FR,CI,201812,4,2,217,0 -949,FR,CI,201812,4,2,1635,49 -949,FR,CI,201812,4,2,7178,1020 -949,FR,CI,201812,4,2,3399,14 -951,FR,CI,201812,0,2,1524,64 -951,FR,CI,201812,1,2,13466,2408 -951,FR,CI,201812,1,2,625,33 -951,FR,CI,201812,1,2,167,22 -951,FR,CI,201812,4,2,808,31 -952,FR,CI,201812,1,2,121394,11673 -952,FR,CI,201812,1,2,22744,4804 -952,FR,CI,201812,1,2,104173,112470 -952,FR,CI,201812,1,2,19113,42351 -952,FR,CI,201812,1,2,230801,292575 -952,FR,CI,201812,1,2,13537,3000 -952,FR,CI,201812,3,2,1660,202 -952,FR,CI,201812,4,2,9432,127 -952,FR,CI,201812,4,2,194,12 -952,FR,CI,201812,4,2,134,0 -952,FR,CI,201812,4,2,336,27 -961,FR,CI,201812,4,2,4929,306 -962,FR,CI,201812,1,1,539,48 -962,FR,CI,201812,3,1,205,7 -962,FR,CI,201812,4,1,118,20 -962,FR,CI,201812,4,1,317,121 -962,FR,CI,201812,1,2,189290,32810 -962,FR,CI,201812,1,2,3925,1876 -962,FR,CI,201812,1,2,2330,50 -962,FR,CI,201812,1,2,271,6 -962,FR,CI,201812,1,2,165655,18595 -962,FR,CI,201812,1,2,42269,37100 -962,FR,CI,201812,1,2,62999,11979 -962,FR,CI,201812,4,2,29232,350 -962,FR,CI,201812,4,2,277,16 -962,FR,CI,201812,4,2,10,4 -962,FR,CI,201812,4,2,1703,35 -963,FR,CI,201812,1,1,2912,260 -963,FR,CI,201812,3,1,798,12 -963,FR,CI,201812,4,1,4453,715 -963,FR,CI,201812,4,1,210,3 -963,FR,CI,201812,4,1,734,4 -963,FR,CI,201812,4,1,6641,1872 -963,FR,CI,201812,0,2,10850,82 -963,FR,CI,201812,1,2,144925,5158 -963,FR,CI,201812,1,2,11780,77 -963,FR,CI,201812,1,2,11433,572 -963,FR,CI,201812,1,2,89505,1699 -963,FR,CI,201812,1,2,115903,10271 -963,FR,CI,201812,1,2,475,27 -963,FR,CI,201812,3,2,2047,4 -963,FR,CI,201812,3,2,12200,102 -963,FR,CI,201812,4,2,595893,4996 -963,FR,CI,201812,4,2,1988,13 -963,FR,CI,201812,4,2,76779,1614 -963,FR,CI,201812,4,2,43570,535 -963,FR,CI,201812,4,2,51000,1000 -963,FR,CI,201812,4,2,2369,84 -963,FR,CI,201812,4,2,2808,280 -971,FR,CI,201812,1,1,51,5 -971,FR,CI,201812,4,1,64,9 -971,FR,CI,201812,0,2,669,2 -971,FR,CI,201812,1,2,205628,11057 -971,FR,CI,201812,1,2,63,17 -971,FR,CI,201812,1,2,51,2 -971,FR,CI,201812,1,2,34174,10054 -971,FR,CI,201812,1,2,21950,6500 -971,FR,CI,201812,1,2,1856,269 -971,FR,CI,201812,3,2,1906,63 -971,FR,CI,201812,4,2,6959,147 -971,FR,CI,201812,4,2,180,5 -971,FR,CI,201812,4,2,3061,93 -971,FR,CI,201812,4,2,5645,200 -971,FR,CI,201812,4,2,8152,680 -971,FR,CI,201812,4,2,1336,2 -972,FR,CI,201812,1,2,31573,14325 -972,FR,CI,201812,1,2,138,22 -972,FR,CI,201812,1,2,5174,2376 -972,FR,CI,201812,1,2,137068,128245 -972,FR,CI,201812,3,2,184209,395464 -972,FR,CI,201812,4,2,7789,729 -972,FR,CI,201812,4,2,7010,150 -973,FR,CI,201812,4,1,1440,427 -973,FR,CI,201812,0,2,120,0 -973,FR,CI,201812,1,2,174541,32673 -973,FR,CI,201812,1,2,47940,49747 -973,FR,CI,201812,1,2,46105,1796 -973,FR,CI,201812,1,2,619,60 -973,FR,CI,201812,1,2,161348,82858 -973,FR,CI,201812,1,2,17773,15918 -973,FR,CI,201812,1,2,42521,18638 -973,FR,CI,201812,1,2,24269,10083 -973,FR,CI,201812,4,2,88996,5291 -973,FR,CI,201812,4,2,282,89 -973,FR,CI,201812,4,2,2912,234 -973,FR,CI,201812,4,2,59963,1600 -973,FR,CI,201812,4,2,4487,320 -973,FR,CI,201812,4,2,280,4 -973,FR,CI,201812,4,2,7298,4000 -974,FR,CI,201812,3,1,416,17 -974,FR,CI,201812,0,2,501,15 -974,FR,CI,201812,1,2,327498,39428 -974,FR,CI,201812,1,2,6410,515 -974,FR,CI,201812,1,2,11031,535 -974,FR,CI,201812,1,2,672,112 -974,FR,CI,201812,1,2,307,23 -974,FR,CI,201812,1,2,20,59 -974,FR,CI,201812,1,2,1500,12250 -974,FR,CI,201812,3,2,38125,980 -974,FR,CI,201812,4,2,119295,7376 -974,FR,CI,201812,4,2,740,185 -974,FR,CI,201812,4,2,1770,23 -974,FR,CI,201812,4,2,3840,180 -975,FR,CI,201812,4,1,228,110 -975,FR,CI,201812,1,2,176931,32502 -975,FR,CI,201812,1,2,14172,1119 -975,FR,CI,201812,1,2,27208,888 -975,FR,CI,201812,1,2,22151,750 -975,FR,CI,201812,1,2,77808,7550 -975,FR,CI,201812,1,2,21791,5632 -975,FR,CI,201812,1,2,21557,6398 -975,FR,CI,201812,1,2,169582,34838 -975,FR,CI,201812,1,2,1087960,22390 -975,FR,CI,201812,3,2,11450,700 -975,FR,CI,201812,3,2,130800,16598 -975,FR,CI,201812,4,2,14961,690 -975,FR,CI,201812,4,2,1402,120 -976,FR,CI,201812,1,1,31830,17845 -976,FR,CI,201812,1,1,83592,44831 -976,FR,CI,201812,1,1,104313,62844 -976,FR,CI,201812,4,1,854,221 -976,FR,CI,201812,0,2,40,0 -976,FR,CI,201812,1,2,3786,271 -976,FR,CI,201812,1,2,107735,68762 -976,FR,CI,201812,1,2,315,2583 -976,FR,CI,201812,4,2,40,2 -976,FR,CI,201812,4,2,132,8 -979,FR,CI,201812,0,1,487,33 -979,FR,CI,201812,1,1,195,17 -979,FR,CI,201812,3,1,9044,22 -979,FR,CI,201812,4,1,1967,263 -979,FR,CI,201812,4,1,520,16 -979,FR,CI,201812,4,1,1477,0 -979,FR,CI,201812,4,1,1035,546 -979,FR,CI,201812,0,2,21232,188 -979,FR,CI,201812,1,2,1114863,92342 -979,FR,CI,201812,1,2,3033,106 -979,FR,CI,201812,1,2,94500,1096 -979,FR,CI,201812,1,2,38252,13704 -979,FR,CI,201812,1,2,7674,434 -979,FR,CI,201812,1,2,881473,127482 -979,FR,CI,201812,1,2,4162,81 -979,FR,CI,201812,1,2,53113,5189 -979,FR,CI,201812,1,2,86969,5933 -979,FR,CI,201812,1,2,8944,1682 -979,FR,CI,201812,1,2,84384,2850 -979,FR,CI,201812,1,2,71921,12420 -979,FR,CI,201812,1,2,70816,11287 -979,FR,CI,201812,3,2,46617,3709 -979,FR,CI,201812,3,2,6430,8 -979,FR,CI,201812,4,2,1010691,8749 -979,FR,CI,201812,4,2,55074,234 -979,FR,CI,201812,4,2,149268,1676 -979,FR,CI,201812,4,2,27389,1757 -979,FR,CI,201812,4,2,3917,13 -979,FR,CI,201812,4,2,39714,82 -979,FR,CI,201812,4,2,3243,33 -979,FR,CI,201812,4,2,3052,120 -979,FR,CI,201812,4,2,1472,106 -979,FR,CI,201812,4,2,520,17 -979,FR,CI,201812,4,2,1715,65 -979,FR,CI,201812,4,2,145063,7450 -979,FR,CI,201812,4,2,7566,21 -979,FR,CI,201812,4,2,2818,3 -994,FR,CI,201812,4,2,2106,1 -999,FR,CI,201812,1,1,4865,0 -999,FR,CI,201812,1,1,9840,0 -999,FR,CI,201812,3,1,16321,0 -999,FR,CI,201812,3,1,738,0 -999,FR,CI,201812,4,1,17031,0 -999,FR,CI,201812,4,1,14110,0 -999,FR,CI,201812,0,2,2240,20 -999,FR,CI,201812,1,2,1699689,1628608 -999,FR,CI,201812,1,2,2410,0 -999,FR,CI,201812,1,2,145,0 -999,FR,CI,201812,1,2,14968,5124 -999,FR,CI,201812,1,2,729589,3499228 -999,FR,CI,201812,1,2,495855,88098 -999,FR,CI,201812,1,2,723944,407001 -999,FR,CI,201812,1,2,7517,0 -999,FR,CI,201812,1,2,67853,34302 -999,FR,CI,201812,1,2,4347,0 -999,FR,CI,201812,1,2,95132,41030 -999,FR,CI,201812,1,2,48045,0 -999,FR,CI,201812,1,2,237140,42386 -999,FR,CI,201812,1,2,46777,3783 -999,FR,CI,201812,3,2,24858,6256 -999,FR,CI,201812,3,2,6500,0 -999,FR,CI,201812,4,2,83406,1189 -999,FR,CI,201812,4,2,211,12 -999,FR,CI,201812,4,2,1296,0 -999,FR,CI,201812,4,2,447,2 -999,FR,CI,201812,4,2,18859,0 -999,FR,CI,201812,4,2,2600,32 -999,FR,CI,201812,4,2,2494,60 -999,FR,CI,201812,4,2,1542,108 -999,FR,CI,201812,5,2,793,1 -031,FR,GH,201812,4,2,332,340 -035,FR,GH,201812,1,1,3180676,4534012 -035,FR,GH,201812,4,1,314641,93461 -035,FR,GH,201812,4,1,101815,15798 -035,FR,GH,201812,4,2,546,378 -039,FR,GH,201812,4,2,788,699 -056,FR,GH,201812,1,1,11833,16370 -091,FR,GH,201812,1,2,22904,75671 -092,FR,GH,201812,1,1,228087,181440 -099,FR,GH,201812,4,1,12414,1000 -099,FR,GH,201812,1,2,11768,23296 -099,FR,GH,201812,1,2,176453,10260 -099,FR,GH,201812,4,2,3496,63 -112,FR,GH,201812,1,2,167393,528000 -112,FR,GH,201812,1,2,68472,240000 -112,FR,GH,201812,1,2,64824,108072 -112,FR,GH,201812,1,2,8869,20000 -112,FR,GH,201812,1,2,173071,400000 -121,FR,GH,201812,1,2,29280,9815 -121,FR,GH,201812,1,2,10615,1913 -121,FR,GH,201812,1,2,11718,6053 -121,FR,GH,201812,1,2,37300,13743 -121,FR,GH,201812,3,2,490,90 -125,FR,GH,201812,1,2,309913,62184 -125,FR,GH,201812,1,2,76362,2411 -125,FR,GH,201812,1,2,54896,41400 -125,FR,GH,201812,1,2,765,377 -125,FR,GH,201812,3,2,12567,2235 -128,FR,GH,201812,3,1,111,0 -128,FR,GH,201812,1,2,9830,14776 -131,FR,GH,201812,4,1,132,7 -132,FR,GH,201812,0,1,3333003,1537306 -132,FR,GH,201812,1,1,6775953,3445864 -132,FR,GH,201812,1,1,2858416,658240 -132,FR,GH,201812,1,1,726885,261000 -132,FR,GH,201812,1,1,345158,120000 -132,FR,GH,201812,1,1,1336800,480000 -132,FR,GH,201812,3,1,167,0 -132,FR,GH,201812,3,1,1417868,750200 -132,FR,GH,201812,0,2,33,3 -132,FR,GH,201812,1,2,5574,2211 -136,FR,GH,201812,1,2,46957,24526 -136,FR,GH,201812,4,2,436,110 -139,FR,GH,201812,1,1,3865,22500 -139,FR,GH,201812,3,1,241,5 -139,FR,GH,201812,4,1,6180,205 -139,FR,GH,201812,1,2,3334,756 -139,FR,GH,201812,1,2,72685,41385 -139,FR,GH,201812,1,2,142649,55254 -139,FR,GH,201812,1,2,42457,48138 -139,FR,GH,201812,3,2,727,101 -139,FR,GH,201812,4,2,10635,750 -139,FR,GH,201812,4,2,5557,947 -141,FR,GH,201812,1,2,67173,77835 -142,FR,GH,201812,1,2,1783555,727365 -142,FR,GH,201812,1,2,39666,50400 -143,FR,GH,201812,1,2,14545,18412 -143,FR,GH,201812,1,2,30729,48006 -143,FR,GH,201812,1,2,67473,56867 -143,FR,GH,201812,1,2,14308,23619 -144,FR,GH,201812,1,2,73152,64000 -144,FR,GH,201812,1,2,237593,147750 -144,FR,GH,201812,1,2,26832,24000 -144,FR,GH,201812,1,2,50336,8786 -144,FR,GH,201812,4,2,3542,380 -144,FR,GH,201812,4,2,271,50 -145,FR,GH,201812,4,2,15,4 -147,FR,GH,201812,1,2,23373,81000 -147,FR,GH,201812,4,2,357,14 -148,FR,GH,201812,1,1,597819,118006 -148,FR,GH,201812,1,1,2489546,476564 -148,FR,GH,201812,1,1,956298,185213 -163,FR,GH,201812,1,2,34505,11500 -163,FR,GH,201812,4,2,209,67 -164,FR,GH,201812,4,1,40989,7434 -164,FR,GH,201812,4,1,20470,3677 -164,FR,GH,201812,1,2,12668,2995 -164,FR,GH,201812,1,2,27824,3600 -164,FR,GH,201812,4,2,3,1 -166,FR,GH,201812,1,1,20116,26400 -179,FR,GH,201812,1,2,10122,22495 -182,FR,GH,201812,1,1,31101,22060 -321,FR,GH,201812,4,2,4023,245 -341,FR,GH,201812,1,2,394910,143676 -341,FR,GH,201812,4,2,1574,390 -349,FR,GH,201812,4,2,160,0 -551,FR,GH,201812,4,2,992,175 -551,FR,GH,201812,4,2,1096,40 -568,FR,GH,201812,1,2,133495,23539 -568,FR,GH,201812,1,2,400077,70527 -568,FR,GH,201812,1,2,271120,47778 -568,FR,GH,201812,4,2,3943,100 -621,FR,GH,201812,1,2,126,50 -621,FR,GH,201812,3,2,4080,24500 -621,FR,GH,201812,4,2,10,1 -639,FR,GH,201812,3,2,24084,132000 -691,FR,GH,201812,4,2,1797,20 -692,FR,GH,201812,1,2,6793,22000 -719,FR,GH,201812,1,2,38058,140000 -724,FR,GH,201812,1,2,120736,288000 -819,FR,GH,201812,1,2,170595,14500 -819,FR,GH,201812,4,2,767,1 -891,FR,GH,201812,1,2,11699,6125 -891,FR,GH,201812,1,2,8821,1406 -891,FR,GH,201812,1,2,203165,156030 -891,FR,GH,201812,1,2,34555,18400 -891,FR,GH,201812,1,2,27748,24750 -892,FR,GH,201812,1,2,44835,17500 -892,FR,GH,201812,1,2,13547,2162 -893,FR,GH,201812,3,1,1180,13 -893,FR,GH,201812,0,2,44,8 -893,FR,GH,201812,1,2,132276,12153 -893,FR,GH,201812,1,2,342048,56203 -893,FR,GH,201812,1,2,241147,40216 -893,FR,GH,201812,3,2,54911,80 -893,FR,GH,201812,4,2,54896,1704 -893,FR,GH,201812,4,2,23131,30 -893,FR,GH,201812,4,2,115360,1885 -893,FR,GH,201812,4,2,2302,21 -893,FR,GH,201812,4,2,15410,501 -893,FR,GH,201812,4,2,1260,90 -896,FR,GH,201812,1,2,4400,2000 -896,FR,GH,201812,1,2,1032961,255134 -896,FR,GH,201812,1,2,42577,16228 -896,FR,GH,201812,3,2,14484,144000 -896,FR,GH,201812,3,2,7242,72000 -896,FR,GH,201812,4,2,15954,1618 -896,FR,GH,201812,4,2,1671,44 -896,FR,GH,201812,4,2,48695,646 -896,FR,GH,201812,4,2,40211,500 -896,FR,GH,201812,4,2,13093,274 -896,FR,GH,201812,4,2,2642,0 -896,FR,GH,201812,4,2,84404,750 -910,FR,GH,201812,1,2,9428,295 -910,FR,GH,201812,1,2,4200,15520 -910,FR,GH,201812,1,2,7123,1002 -910,FR,GH,201812,1,2,103521,16770 -910,FR,GH,201812,1,2,6814,8800 -910,FR,GH,201812,1,2,1750,3740 -910,FR,GH,201812,4,2,31375,777 -910,FR,GH,201812,4,2,12729,1460 -920,FR,GH,201812,1,2,25000,7280 -920,FR,GH,201812,4,2,5300,55 -920,FR,GH,201812,4,2,1111,22 -920,FR,GH,201812,4,2,12224,580 -931,FR,GH,201812,3,1,584,0 -931,FR,GH,201812,4,1,11789,102 -931,FR,GH,201812,4,1,6903,10 -931,FR,GH,201812,1,2,177965,15203 -931,FR,GH,201812,1,2,11650,3734 -931,FR,GH,201812,1,2,5559,121 -931,FR,GH,201812,1,2,1999036,31188 -931,FR,GH,201812,4,2,1575789,15098 -931,FR,GH,201812,4,2,23350,1800 -931,FR,GH,201812,4,2,14878,1702 -931,FR,GH,201812,4,2,154525,4660 -931,FR,GH,201812,4,2,12333,14 -939,FR,GH,201812,3,1,220,2 -939,FR,GH,201812,0,2,60,1 -939,FR,GH,201812,1,2,287000,17581 -939,FR,GH,201812,1,2,267508,20720 -939,FR,GH,201812,1,2,32373,320 -939,FR,GH,201812,1,2,20326,5180 -939,FR,GH,201812,1,2,71484,11681 -939,FR,GH,201812,1,2,482703,45185 -939,FR,GH,201812,1,2,3780,10 -939,FR,GH,201812,1,2,86563,16651 -939,FR,GH,201812,1,2,1617143,97066 -939,FR,GH,201812,1,2,283285,27992 -939,FR,GH,201812,1,2,118400,13331 -939,FR,GH,201812,1,2,287510,7955 -939,FR,GH,201812,1,2,39878,1634 -939,FR,GH,201812,1,2,414650,14380 -939,FR,GH,201812,3,2,5858,431 -939,FR,GH,201812,4,2,637750,8470 -939,FR,GH,201812,4,2,20981,256 -939,FR,GH,201812,4,2,62568,1804 -939,FR,GH,201812,4,2,8984,129 -939,FR,GH,201812,4,2,224618,1420 -939,FR,GH,201812,4,2,42675,1950 -939,FR,GH,201812,4,2,4151,100 -939,FR,GH,201812,4,2,5792,39 -939,FR,GH,201812,4,2,5161,90 -939,FR,GH,201812,4,2,25579,1140 -939,FR,GH,201812,4,2,1244,21 -941,FR,GH,201812,1,2,17201,3442 -941,FR,GH,201812,1,2,7390,416 -949,FR,GH,201812,1,2,132567,16055 -949,FR,GH,201812,1,2,110891,46954 -949,FR,GH,201812,3,2,754,33 -949,FR,GH,201812,4,2,10538,336 -949,FR,GH,201812,4,2,1165,130 -949,FR,GH,201812,4,2,95,2 -949,FR,GH,201812,4,2,1010,110 -949,FR,GH,201812,4,2,1048,5 -951,FR,GH,201812,1,2,1103,25 -952,FR,GH,201812,3,1,74,1 -952,FR,GH,201812,1,2,373,1255 -952,FR,GH,201812,4,2,5203,327 -961,FR,GH,201812,1,2,5970,13300 -962,FR,GH,201812,3,1,337,23 -962,FR,GH,201812,1,2,4540,62 -962,FR,GH,201812,1,2,31220,48524 -962,FR,GH,201812,4,2,301,10 -962,FR,GH,201812,4,2,424,228 -963,FR,GH,201812,3,1,1164,11 -963,FR,GH,201812,4,1,256,4 -963,FR,GH,201812,0,2,31,0 -963,FR,GH,201812,1,2,348,30 -963,FR,GH,201812,1,2,37789,45412 -963,FR,GH,201812,4,2,4154,51 -963,FR,GH,201812,4,2,2271,160 -971,FR,GH,201812,1,2,217,19 -971,FR,GH,201812,4,2,865,50 -972,FR,GH,201812,1,2,20555,7674 -972,FR,GH,201812,3,2,73556,168470 -972,FR,GH,201812,4,2,21514,48602 -973,FR,GH,201812,3,1,1,0 -973,FR,GH,201812,1,2,74748,80127 -973,FR,GH,201812,1,2,46795,32793 -973,FR,GH,201812,1,2,22751,26765 -973,FR,GH,201812,4,2,318,5 -974,FR,GH,201812,1,2,10,20 -974,FR,GH,201812,3,2,30,3 -974,FR,GH,201812,4,2,16388,675 -974,FR,GH,201812,4,2,7,1 -974,FR,GH,201812,4,2,130,4 -975,FR,GH,201812,1,2,144,4 -976,FR,GH,201812,1,1,34900,21719 -976,FR,GH,201812,4,1,63,0 -976,FR,GH,201812,1,2,61,168 -976,FR,GH,201812,1,2,182,504 -976,FR,GH,201812,4,2,8,21 -979,FR,GH,201812,3,1,592,16 -979,FR,GH,201812,4,1,18098,400 -979,FR,GH,201812,4,1,8619,180 -979,FR,GH,201812,1,2,7159,120 -979,FR,GH,201812,1,2,8777,1324 -979,FR,GH,201812,1,2,160640,37306 -979,FR,GH,201812,1,2,42090,15881 -979,FR,GH,201812,1,2,15,15 -979,FR,GH,201812,1,2,212669,28115 -979,FR,GH,201812,1,2,8520,3080 -979,FR,GH,201812,1,2,33370,14915 -979,FR,GH,201812,4,2,69785,2147 -979,FR,GH,201812,4,2,38499,2100 -979,FR,GH,201812,4,2,10127,28 -979,FR,GH,201812,4,2,234,2 -979,FR,GH,201812,4,2,17833,480 -979,FR,GH,201812,4,2,28000,150 -979,FR,GH,201812,4,2,9842,10 -979,FR,GH,201812,4,2,15026,620 -979,FR,GH,201812,4,2,2200,1 -999,FR,GH,201812,4,1,1500,0 -999,FR,GH,201812,1,2,50310,980 -999,FR,GH,201812,1,2,259279,1000250 -999,FR,GH,201812,1,2,253098,112638 -999,FR,GH,201812,1,2,17000,0 -999,FR,GH,201812,1,2,6000,0 -999,FR,GH,201812,3,2,160992,168000 -999,FR,GH,201812,4,2,2043,59 -999,FR,GH,201812,4,2,1,0 -999,FR,GH,201812,4,2,100,0 -999,FR,GH,201812,4,2,2023,10 -999,FR,GH,201812,8,2,1367415,1860428 -035,FR,TG,201812,1,1,111454,95010 -035,FR,TG,201812,1,1,20370,17185 -035,FR,TG,201812,4,1,111245,76325 -035,FR,TG,201812,1,2,16120,21816 -035,FR,TG,201812,1,2,80,33 -039,FR,TG,201812,4,1,141192,116584 -039,FR,TG,201812,4,1,2464,2535 -039,FR,TG,201812,4,1,2719,2156 -049,FR,TG,201812,1,2,100406,198983 -049,FR,TG,201812,1,2,12549,24133 -049,FR,TG,201812,1,2,102208,390859 -049,FR,TG,201812,1,2,17132,92989 -091,FR,TG,201812,1,2,3411,22738 -099,FR,TG,201812,4,2,5130,102 -111,FR,TG,201812,1,2,627,1102 -111,FR,TG,201812,4,2,55,22 -112,FR,TG,201812,1,2,119,100 -112,FR,TG,201812,1,2,172425,327000 -112,FR,TG,201812,1,2,2619,4605 -121,FR,TG,201812,1,2,121591,20714 -121,FR,TG,201812,1,2,9789,2656 -121,FR,TG,201812,1,2,171345,49076 -121,FR,TG,201812,1,2,1982,561 -121,FR,TG,201812,1,2,5958,360 -121,FR,TG,201812,1,2,6087,824 -121,FR,TG,201812,1,2,100567,14162 -121,FR,TG,201812,1,2,23850,12375 -121,FR,TG,201812,1,2,110837,48673 -121,FR,TG,201812,1,2,5442,630 -121,FR,TG,201812,3,2,15100,8042 -122,FR,TG,201812,1,1,3656,2138 -122,FR,TG,201812,1,2,4912,2455 -122,FR,TG,201812,1,2,153,62 -122,FR,TG,201812,1,2,54675,91690 -125,FR,TG,201812,1,2,66060,9875 -125,FR,TG,201812,1,2,5581,5265 -125,FR,TG,201812,1,2,163226,166480 -125,FR,TG,201812,1,2,25904,7911 -125,FR,TG,201812,1,2,1718,256 -125,FR,TG,201812,1,2,40999,8383 -125,FR,TG,201812,1,2,15294,9149 -125,FR,TG,201812,1,2,60613,105195 -128,FR,TG,201812,1,1,12198,6478 -128,FR,TG,201812,1,2,2972,3960 -128,FR,TG,201812,1,2,8892,7296 -128,FR,TG,201812,1,2,1863,1763 -128,FR,TG,201812,1,2,8897,10771 -128,FR,TG,201812,1,2,15021,27965 -128,FR,TG,201812,4,2,448,819 -131,FR,TG,201812,0,1,146777,90432 -131,FR,TG,201812,1,1,38652,29735 -131,FR,TG,201812,1,2,1564,973 -131,FR,TG,201812,1,2,791,61 -132,FR,TG,201812,1,2,2668,545 -132,FR,TG,201812,4,2,7332,500 -133,FR,TG,201812,1,1,4025,1400 -133,FR,TG,201812,4,1,58,15 -133,FR,TG,201812,1,2,101501,12155 -136,FR,TG,201812,1,2,18,0 -136,FR,TG,201812,1,2,36099,32123 -136,FR,TG,201812,1,2,194,51 -136,FR,TG,201812,1,2,2209,2137 -136,FR,TG,201812,1,2,26492,29958 -139,FR,TG,201812,1,2,48039,14625 -139,FR,TG,201812,1,2,37391,20333 -139,FR,TG,201812,1,2,51620,31452 -139,FR,TG,201812,1,2,485,361 -139,FR,TG,201812,1,2,159144,77058 -139,FR,TG,201812,1,2,54375,28147 -139,FR,TG,201812,1,2,76769,35849 -139,FR,TG,201812,3,2,2689,2475 -139,FR,TG,201812,4,2,41179,5184 -139,FR,TG,201812,4,2,6000,3590 -141,FR,TG,201812,1,2,101820,138000 -141,FR,TG,201812,1,2,18350,27000 -141,FR,TG,201812,1,2,58927,76590 -141,FR,TG,201812,1,2,35963,30090 -141,FR,TG,201812,1,2,17500,17000 -141,FR,TG,201812,1,2,4293,2750 -141,FR,TG,201812,4,2,16900,25000 -142,FR,TG,201812,4,1,6,1 -142,FR,TG,201812,4,2,2091,162 -143,FR,TG,201812,1,2,20886,25061 -143,FR,TG,201812,1,2,110,21 -143,FR,TG,201812,4,2,34,13 -144,FR,TG,201812,1,2,73457,18622 -144,FR,TG,201812,4,2,1674,80 -147,FR,TG,201812,1,2,171412,55169 -147,FR,TG,201812,1,2,39,12 -147,FR,TG,201812,1,2,13500,9792 -147,FR,TG,201812,1,2,29135,22510 -147,FR,TG,201812,4,2,1124,111 -147,FR,TG,201812,4,2,1103,79 -148,FR,TG,201812,1,2,232,40 -161,FR,TG,201812,4,1,1134,546 -163,FR,TG,201812,1,2,9440,2681 -163,FR,TG,201812,1,2,18230,6441 -163,FR,TG,201812,1,2,1014,631 -163,FR,TG,201812,1,2,5236,1791 -163,FR,TG,201812,1,2,63704,29501 -163,FR,TG,201812,1,2,47717,22992 -163,FR,TG,201812,1,2,94603,77416 -164,FR,TG,201812,1,1,9243,16896 -164,FR,TG,201812,4,1,1955,792 -164,FR,TG,201812,1,2,1074,312 -164,FR,TG,201812,1,2,116,73 -164,FR,TG,201812,1,2,2372,2942 -164,FR,TG,201812,4,2,338,162 -166,FR,TG,201812,4,1,26013,8800 -166,FR,TG,201812,1,2,1547,964 -166,FR,TG,201812,1,2,837,389 -166,FR,TG,201812,1,2,332,78 -166,FR,TG,201812,1,2,42789,34733 -179,FR,TG,201812,1,2,1150,1893 -179,FR,TG,201812,1,2,19378,12210 -179,FR,TG,201812,1,2,20316,23388 -181,FR,TG,201812,1,1,595690,1119020 -181,FR,TG,201812,4,1,54274,29927 -181,FR,TG,201812,4,1,1731,1700 -181,FR,TG,201812,4,1,8015,7260 -182,FR,TG,201812,4,1,787,293 -182,FR,TG,201812,4,1,9,1 -182,FR,TG,201812,1,2,1725,1073 -182,FR,TG,201812,1,2,158110,146219 -325,FR,TG,201812,1,2,13308012,31477374 -325,FR,TG,201812,1,2,27354422,64331897 -341,FR,TG,201812,1,2,15896,2160 -341,FR,TG,201812,1,2,31341,14381 -532,FR,TG,201812,4,2,1755,225 -551,FR,TG,201812,4,2,184,4 -552,FR,TG,201812,1,2,285,3 -552,FR,TG,201812,4,2,4486,70 -568,FR,TG,201812,1,2,7652,640 -568,FR,TG,201812,1,2,1261,784 -568,FR,TG,201812,1,2,210,54 -621,FR,TG,201812,1,2,143,5 -621,FR,TG,201812,1,2,75,207 -639,FR,TG,201812,1,2,4988,9600 -691,FR,TG,201812,1,2,14265,2620 -691,FR,TG,201812,1,2,126991,134381 -691,FR,TG,201812,1,2,45477,65696 -692,FR,TG,201812,1,2,10762,15290 -819,FR,TG,201812,1,2,13918,16662 -819,FR,TG,201812,4,2,23,1 -891,FR,TG,201812,4,1,92,4 -891,FR,TG,201812,1,2,7385,3289 -891,FR,TG,201812,1,2,1394,867 -891,FR,TG,201812,1,2,235,31 -891,FR,TG,201812,1,2,19403,24879 -891,FR,TG,201812,4,2,1330,48 -892,FR,TG,201812,1,2,8550,150 -893,FR,TG,201812,4,1,88,5 -893,FR,TG,201812,4,1,23,5 -893,FR,TG,201812,4,1,29,4 -893,FR,TG,201812,0,2,27143,457 -893,FR,TG,201812,1,2,2095894,117416 -893,FR,TG,201812,1,2,4186,982 -893,FR,TG,201812,1,2,1188,365 -893,FR,TG,201812,1,2,203194,14040 -893,FR,TG,201812,1,2,6344,2192 -893,FR,TG,201812,1,2,481116,36038 -893,FR,TG,201812,1,2,48621,44768 -893,FR,TG,201812,3,2,90,1 -893,FR,TG,201812,4,2,390482,5004 -893,FR,TG,201812,4,2,75717,573 -893,FR,TG,201812,4,2,6270,322 -895,FR,TG,201812,4,1,7,1 -896,FR,TG,201812,0,2,380,1 -896,FR,TG,201812,1,2,48819,11563 -896,FR,TG,201812,1,2,200907,53764 -896,FR,TG,201812,1,2,18181,2412 -896,FR,TG,201812,4,2,10969,220 -896,FR,TG,201812,4,2,621,10 -910,FR,TG,201812,4,1,328,1 -910,FR,TG,201812,4,1,8818,7 -910,FR,TG,201812,1,2,80974,121477 -910,FR,TG,201812,1,2,568796,485885 -910,FR,TG,201812,1,2,17000,2620 -910,FR,TG,201812,1,2,7600,36740 -910,FR,TG,201812,1,2,6498,602 -910,FR,TG,201812,1,2,500,2200 -910,FR,TG,201812,1,2,55000,16760 -910,FR,TG,201812,1,2,4000,25090 -910,FR,TG,201812,1,2,10200,30900 -910,FR,TG,201812,1,2,55340,160415 -910,FR,TG,201812,1,2,1000,0 -910,FR,TG,201812,1,2,1811,3900 -910,FR,TG,201812,4,2,86115,852 -910,FR,TG,201812,4,2,35955,48 -910,FR,TG,201812,4,2,15748,42 -920,FR,TG,201812,1,2,21407,39830 -920,FR,TG,201812,1,2,25189,42742 -920,FR,TG,201812,1,2,4800,7275 -920,FR,TG,201812,1,2,500,7000 -920,FR,TG,201812,1,2,9700,12000 -920,FR,TG,201812,1,2,3000,21409 -920,FR,TG,201812,1,2,16550,46420 -920,FR,TG,201812,1,2,2222,5950 -920,FR,TG,201812,4,2,27000,750 -920,FR,TG,201812,4,2,1212,1 -931,FR,TG,201812,4,1,4883,3 -931,FR,TG,201812,4,1,1094,32 -931,FR,TG,201812,0,2,4854,29 -931,FR,TG,201812,1,2,372773,19103 -931,FR,TG,201812,1,2,6879,197 -931,FR,TG,201812,1,2,3492,673 -931,FR,TG,201812,1,2,41691,3330 -931,FR,TG,201812,1,2,96526,4750 -931,FR,TG,201812,1,2,128348,8653 -931,FR,TG,201812,1,2,70127,17280 -931,FR,TG,201812,1,2,67280,696 -931,FR,TG,201812,1,2,287242,27668 -931,FR,TG,201812,1,2,56175,9560 -931,FR,TG,201812,1,2,101772,376 -931,FR,TG,201812,3,2,543,2 -931,FR,TG,201812,4,2,303101,3781 -931,FR,TG,201812,4,2,21793,390 -931,FR,TG,201812,4,2,432906,920 -931,FR,TG,201812,4,2,960,15 -931,FR,TG,201812,4,2,68816,20 -931,FR,TG,201812,4,2,2482,21 -931,FR,TG,201812,4,2,6323,320 -931,FR,TG,201812,4,2,1856,6 -939,FR,TG,201812,3,1,1024,1 -939,FR,TG,201812,0,2,799,8 -939,FR,TG,201812,1,2,1616111,74710 -939,FR,TG,201812,1,2,38039,4350 -939,FR,TG,201812,1,2,37000,35000 -939,FR,TG,201812,1,2,16246,680 -939,FR,TG,201812,1,2,47720,2350 -939,FR,TG,201812,1,2,36364,1389 -939,FR,TG,201812,1,2,15360,820 -939,FR,TG,201812,1,2,184554,24783 -939,FR,TG,201812,1,2,44000,16700 -939,FR,TG,201812,1,2,16737,40678 -939,FR,TG,201812,1,2,558294,14510 -939,FR,TG,201812,1,2,200286,2917 -939,FR,TG,201812,1,2,356495,22344 -939,FR,TG,201812,1,2,1200,100 -939,FR,TG,201812,3,2,411,29 -939,FR,TG,201812,4,2,435424,5322 -939,FR,TG,201812,4,2,13037,198 -939,FR,TG,201812,4,2,1458,20 -939,FR,TG,201812,4,2,43212,1165 -939,FR,TG,201812,4,2,1936,35 -939,FR,TG,201812,4,2,5878,12 -939,FR,TG,201812,4,2,1560,3 -939,FR,TG,201812,4,2,10395,241 -939,FR,TG,201812,4,2,1000,1 -941,FR,TG,201812,1,2,18042,10746 -949,FR,TG,201812,4,1,5448,1 -949,FR,TG,201812,4,1,594,1 -949,FR,TG,201812,1,2,91296,18865 -949,FR,TG,201812,1,2,100,200 -949,FR,TG,201812,1,2,6225,222 -949,FR,TG,201812,1,2,7360,392 -949,FR,TG,201812,1,2,182,17 -949,FR,TG,201812,1,2,51226,26292 -949,FR,TG,201812,1,2,2400,247 -949,FR,TG,201812,1,2,7490,967 -949,FR,TG,201812,3,2,2488,55 -949,FR,TG,201812,4,2,30133,276 -949,FR,TG,201812,4,2,3660,300 -951,FR,TG,201812,4,2,43,1 -952,FR,TG,201812,1,2,71395,7962 -952,FR,TG,201812,1,2,147,8 -952,FR,TG,201812,1,2,3244,1636 -952,FR,TG,201812,4,2,571,35 -961,FR,TG,201812,1,2,1163,20 -961,FR,TG,201812,4,2,60,2 -962,FR,TG,201812,1,2,355,62 -962,FR,TG,201812,1,2,44836,75 -962,FR,TG,201812,4,2,12018,801 -962,FR,TG,201812,4,2,819,33 -962,FR,TG,201812,4,2,4985,78 -963,FR,TG,201812,3,1,124,7 -963,FR,TG,201812,4,1,114,2 -963,FR,TG,201812,4,1,511,190 -963,FR,TG,201812,4,1,1360,150 -963,FR,TG,201812,4,1,6917,480 -963,FR,TG,201812,1,2,19614,1990 -963,FR,TG,201812,1,2,33747,445 -963,FR,TG,201812,1,2,111,6 -963,FR,TG,201812,1,2,5694,143 -963,FR,TG,201812,4,2,40186,363 -963,FR,TG,201812,4,2,9010,350 -971,FR,TG,201812,1,2,19450,16842 -971,FR,TG,201812,4,2,12698,280 -972,FR,TG,201812,1,2,94,16 -972,FR,TG,201812,4,2,21,0 -973,FR,TG,201812,4,1,73,2 -973,FR,TG,201812,1,2,81493,34838 -973,FR,TG,201812,1,2,15379,1400 -973,FR,TG,201812,1,2,5881,1502 -973,FR,TG,201812,1,2,397,83 -973,FR,TG,201812,1,2,194,10 -973,FR,TG,201812,1,2,5120,2752 -973,FR,TG,201812,4,2,1232,575 -973,FR,TG,201812,4,2,2281,178 -973,FR,TG,201812,4,2,8544,1000 -974,FR,TG,201812,1,2,13099,4207 -974,FR,TG,201812,1,2,2194,160 -974,FR,TG,201812,4,2,33170,3231 -974,FR,TG,201812,4,2,2855,135 -975,FR,TG,201812,1,2,36706,2501 -975,FR,TG,201812,1,2,1500,77 -975,FR,TG,201812,1,2,76976,15836 -975,FR,TG,201812,1,2,22138,912 -975,FR,TG,201812,1,2,772,200 -975,FR,TG,201812,1,2,12942,700 -975,FR,TG,201812,1,2,2470,5500 -975,FR,TG,201812,3,2,52766,8260 -976,FR,TG,201812,4,1,215,31 -976,FR,TG,201812,4,1,198,6 -979,FR,TG,201812,1,1,171,13 -979,FR,TG,201812,3,1,564,53 -979,FR,TG,201812,4,1,106910,1335 -979,FR,TG,201812,4,1,53,15 -979,FR,TG,201812,4,1,136,0 -979,FR,TG,201812,4,1,80,19 -979,FR,TG,201812,0,2,27648,78 -979,FR,TG,201812,1,2,118017,56519 -979,FR,TG,201812,1,2,9407,501 -979,FR,TG,201812,1,2,7494,454 -979,FR,TG,201812,1,2,12148,150 -979,FR,TG,201812,1,2,50979,51175 -979,FR,TG,201812,1,2,192,22 -979,FR,TG,201812,1,2,1133,59 -979,FR,TG,201812,1,2,72477,13579 -979,FR,TG,201812,1,2,238,65 -979,FR,TG,201812,3,2,1317,35 -979,FR,TG,201812,4,2,70894,1614 -979,FR,TG,201812,4,2,16054,137 -979,FR,TG,201812,4,2,500,50 -979,FR,TG,201812,4,2,1211,25 -979,FR,TG,201812,4,2,4874,10 -979,FR,TG,201812,4,2,27078,200 -979,FR,TG,201812,4,2,7127,220 -979,FR,TG,201812,4,2,1009,2 -999,FR,TG,201812,1,1,6474,0 -999,FR,TG,201812,1,2,54254,8949 -999,FR,TG,201812,1,2,300,0 -999,FR,TG,201812,1,2,67639,16800 -999,FR,TG,201812,1,2,140,0 -999,FR,TG,201812,1,2,28150,22100 -999,FR,TG,201812,1,2,765,0 -999,FR,TG,201812,1,2,8960,0 -999,FR,TG,201812,1,2,2800,0 -999,FR,TG,201812,1,2,15845,53 -999,FR,TG,201812,1,2,3000,0 -999,FR,TG,201812,1,2,5725,0 -999,FR,TG,201812,2,2,5000,0 -999,FR,TG,201812,4,2,596,0 -999,FR,TG,201812,4,2,6255,35 -020,FR,BJ,201812,1,2,10552,26000 -035,FR,BJ,201812,4,1,88474,73922 -035,FR,BJ,201812,1,2,582,262 -035,FR,BJ,201812,4,2,52,166 -039,FR,BJ,201812,1,2,5350,4752 -039,FR,BJ,201812,4,2,2068,826 -045,FR,BJ,201812,1,2,771,100 -049,FR,BJ,201812,1,2,33898,55580 -049,FR,BJ,201812,1,2,34882,55477 -049,FR,BJ,201812,1,2,27011,26255 -091,FR,BJ,201812,4,1,449,24 -099,FR,BJ,201812,4,1,990,105 -099,FR,BJ,201812,4,1,410,8 -099,FR,BJ,201812,4,1,1498,100 -099,FR,BJ,201812,1,2,1782,25 -099,FR,BJ,201812,1,2,1984,283 -099,FR,BJ,201812,1,2,236741,4631 -111,FR,BJ,201812,4,2,20,8 -112,FR,BJ,201812,1,2,77790,129686 -112,FR,BJ,201812,1,2,1722,1157 -112,FR,BJ,201812,1,2,25930,43229 -121,FR,BJ,201812,1,2,33693,7708 -121,FR,BJ,201812,1,2,10600,2313 -121,FR,BJ,201812,1,2,44770,11452 -121,FR,BJ,201812,1,2,27875,9569 -121,FR,BJ,201812,1,2,22932,372 -121,FR,BJ,201812,1,2,107873,22434 -121,FR,BJ,201812,1,2,12943,3388 -121,FR,BJ,201812,3,2,3550,450 -121,FR,BJ,201812,4,2,3149,75 -122,FR,BJ,201812,1,1,757,713 -122,FR,BJ,201812,1,2,1050,1100 -122,FR,BJ,201812,1,2,28639,18779 -125,FR,BJ,201812,1,2,65053,10547 -125,FR,BJ,201812,1,2,68015,18780 -125,FR,BJ,201812,1,2,477,637 -128,FR,BJ,201812,1,1,245,317 -128,FR,BJ,201812,1,2,2477,3394 -128,FR,BJ,201812,1,2,78,31 -128,FR,BJ,201812,4,2,265,518 -131,FR,BJ,201812,1,2,2239,115 -131,FR,BJ,201812,1,2,389,102 -132,FR,BJ,201812,1,2,1121,280 -132,FR,BJ,201812,1,2,5577,1398 -132,FR,BJ,201812,1,2,10426,1734 -132,FR,BJ,201812,1,2,8097,2322 -133,FR,BJ,201812,1,2,332,34 -136,FR,BJ,201812,1,1,10,40 -136,FR,BJ,201812,0,2,50,3 -136,FR,BJ,201812,1,2,36,0 -136,FR,BJ,201812,1,2,899,497 -136,FR,BJ,201812,1,2,774,108 -139,FR,BJ,201812,0,2,217,11 -139,FR,BJ,201812,1,2,21489,987 -139,FR,BJ,201812,1,2,182554,80794 -139,FR,BJ,201812,1,2,118858,62547 -139,FR,BJ,201812,1,2,392654,127948 -139,FR,BJ,201812,1,2,11789,4050 -139,FR,BJ,201812,1,2,85061,70870 -139,FR,BJ,201812,4,2,2863,1171 -139,FR,BJ,201812,5,2,1970,21 -141,FR,BJ,201812,1,2,816304,859820 -141,FR,BJ,201812,1,2,48464,38354 -141,FR,BJ,201812,1,2,53514,54000 -141,FR,BJ,201812,1,2,208148,191281 -141,FR,BJ,201812,1,2,64066,52000 -141,FR,BJ,201812,1,2,16350,25000 -141,FR,BJ,201812,1,2,400803,472400 -141,FR,BJ,201812,4,2,735,80 -142,FR,BJ,201812,1,2,2439,401 -142,FR,BJ,201812,4,2,4961,808 -143,FR,BJ,201812,1,2,15020,16835 -143,FR,BJ,201812,1,2,6680,1984 -143,FR,BJ,201812,1,2,14586,4460 -143,FR,BJ,201812,4,2,62,24 -144,FR,BJ,201812,0,2,30,5 -144,FR,BJ,201812,1,2,78710,15245 -144,FR,BJ,201812,1,2,63868,11784 -144,FR,BJ,201812,1,2,118167,21965 -144,FR,BJ,201812,4,2,1619,465 -145,FR,BJ,201812,1,2,1562,744 -145,FR,BJ,201812,1,2,3441,1644 -147,FR,BJ,201812,1,2,368,158 -147,FR,BJ,201812,1,2,21765,6303 -147,FR,BJ,201812,1,2,3388,1214 -147,FR,BJ,201812,4,2,991,537 -148,FR,BJ,201812,1,2,520,86 -148,FR,BJ,201812,1,2,1115,79 -148,FR,BJ,201812,1,2,312,80 -148,FR,BJ,201812,4,2,1044,156 -161,FR,BJ,201812,1,2,249472,801130 -163,FR,BJ,201812,1,2,1006,280 -163,FR,BJ,201812,1,2,15802,6662 -163,FR,BJ,201812,1,2,422,111 -163,FR,BJ,201812,1,2,1243,339 -163,FR,BJ,201812,1,2,27860,17267 -163,FR,BJ,201812,4,2,843,429 -164,FR,BJ,201812,4,1,150,69 -164,FR,BJ,201812,1,2,3886,1149 -164,FR,BJ,201812,1,2,1200,829 -164,FR,BJ,201812,1,2,2920,592 -164,FR,BJ,201812,1,2,2614,515 -164,FR,BJ,201812,4,2,46,22 -166,FR,BJ,201812,1,1,26014,15960 -166,FR,BJ,201812,1,1,8546,12420 -166,FR,BJ,201812,1,1,14967,14000 -166,FR,BJ,201812,4,1,5940,1870 -166,FR,BJ,201812,1,2,1869,990 -166,FR,BJ,201812,1,2,21519,18173 -166,FR,BJ,201812,1,2,8396,7341 -179,FR,BJ,201812,1,2,3374,5169 -179,FR,BJ,201812,1,2,39458,51260 -179,FR,BJ,201812,1,2,99234,61143 -181,FR,BJ,201812,4,1,460,273 -182,FR,BJ,201812,1,1,10263,2500 -323,FR,BJ,201812,1,2,20053,10631 -341,FR,BJ,201812,1,2,4860,540 -341,FR,BJ,201812,1,2,27651,16318 -341,FR,BJ,201812,1,2,21067,14090 -341,FR,BJ,201812,1,2,28002,13600 -343,FR,BJ,201812,1,2,14902,3255 -349,FR,BJ,201812,1,2,139,11 -349,FR,BJ,201812,4,2,75,1 -533,FR,BJ,201812,4,2,103,8 -536,FR,BJ,201812,1,2,183,1 -542,FR,BJ,201812,1,2,30034,6000 -551,FR,BJ,201812,1,2,46733,5729 -551,FR,BJ,201812,4,2,36800,1460 -568,FR,BJ,201812,1,2,23970,1255 -568,FR,BJ,201812,4,2,560,21 -621,FR,BJ,201812,1,2,117,356 -621,FR,BJ,201812,4,2,84,9 -691,FR,BJ,201812,1,2,7864,7760 -813,FR,BJ,201812,1,2,58,3 -819,FR,BJ,201812,1,2,23056,2219 -819,FR,BJ,201812,1,2,22054,4777 -819,FR,BJ,201812,4,2,17649,377 -819,FR,BJ,201812,4,2,660,9 -841,FR,BJ,201812,1,2,796,200 -891,FR,BJ,201812,1,2,27848,12364 -891,FR,BJ,201812,1,2,46,11 -892,FR,BJ,201812,1,2,38632,897 -892,FR,BJ,201812,1,2,422,50 -893,FR,BJ,201812,0,1,1514,57 -893,FR,BJ,201812,3,1,525,9 -893,FR,BJ,201812,4,1,1501,185 -893,FR,BJ,201812,4,1,211,50 -893,FR,BJ,201812,0,2,4136,27 -893,FR,BJ,201812,1,2,3107457,181635 -893,FR,BJ,201812,1,2,23523,3115 -893,FR,BJ,201812,1,2,83666,14736 -893,FR,BJ,201812,1,2,1073,47 -893,FR,BJ,201812,1,2,346545,50097 -893,FR,BJ,201812,1,2,281991,13863 -893,FR,BJ,201812,3,2,2128,19 -893,FR,BJ,201812,4,2,300150,3292 -893,FR,BJ,201812,4,2,4610,600 -893,FR,BJ,201812,4,2,80784,271 -893,FR,BJ,201812,4,2,224,3 -893,FR,BJ,201812,4,2,22049,1590 -896,FR,BJ,201812,1,2,19279,1874 -896,FR,BJ,201812,1,2,569313,76305 -896,FR,BJ,201812,1,2,1545,130 -896,FR,BJ,201812,4,2,92662,714 -896,FR,BJ,201812,4,2,37722,500 -896,FR,BJ,201812,4,2,6719,179 -896,FR,BJ,201812,4,2,1004,13 -896,FR,BJ,201812,4,2,3985,120 -910,FR,BJ,201812,1,1,40000,2500 -910,FR,BJ,201812,1,2,132404,210256 -910,FR,BJ,201812,1,2,125125,260743 -910,FR,BJ,201812,1,2,3500,8070 -910,FR,BJ,201812,1,2,579546,137636 -910,FR,BJ,201812,1,2,2200,5207 -910,FR,BJ,201812,1,2,11700,28950 -910,FR,BJ,201812,1,2,1000,21580 -910,FR,BJ,201812,1,2,12850,6665 -910,FR,BJ,201812,1,2,4915,4165 -910,FR,BJ,201812,1,2,28670,4460 -910,FR,BJ,201812,1,2,4100,2153 -910,FR,BJ,201812,4,2,8224,106 -910,FR,BJ,201812,4,2,243,34 -910,FR,BJ,201812,4,2,1324,70 -920,FR,BJ,201812,1,2,12656,28650 -920,FR,BJ,201812,1,2,74200,103946 -920,FR,BJ,201812,1,2,7830,74720 -931,FR,BJ,201812,4,1,461,8 -931,FR,BJ,201812,0,2,1301,3 -931,FR,BJ,201812,1,2,365527,39400 -931,FR,BJ,201812,1,2,450,50 -931,FR,BJ,201812,1,2,397119,30417 -931,FR,BJ,201812,1,2,7276,600 -931,FR,BJ,201812,1,2,20038,1344 -931,FR,BJ,201812,1,2,8046,427 -931,FR,BJ,201812,1,2,77094,10289 -931,FR,BJ,201812,1,2,640,792 -931,FR,BJ,201812,1,2,4850,1500 -931,FR,BJ,201812,3,2,132,30 -931,FR,BJ,201812,4,2,294969,3716 -931,FR,BJ,201812,4,2,15152,202 -931,FR,BJ,201812,4,2,1592,25 -931,FR,BJ,201812,4,2,5606,75 -931,FR,BJ,201812,4,2,5445,92 -931,FR,BJ,201812,4,2,6243,5 -931,FR,BJ,201812,4,2,220,6 -931,FR,BJ,201812,4,2,11074,260 -931,FR,BJ,201812,4,2,2899,95 -931,FR,BJ,201812,5,2,1808,15 -939,FR,BJ,201812,1,1,2500,830 -939,FR,BJ,201812,4,1,1000,55 -939,FR,BJ,201812,0,2,5669,26 -939,FR,BJ,201812,1,2,700357,48453 -939,FR,BJ,201812,1,2,3689,170 -939,FR,BJ,201812,1,2,303210,29339 -939,FR,BJ,201812,1,2,3190,15200 -939,FR,BJ,201812,1,2,231334,9300 -939,FR,BJ,201812,1,2,114396,5664 -939,FR,BJ,201812,1,2,62161,7920 -939,FR,BJ,201812,1,2,19700,1000 -939,FR,BJ,201812,1,2,303445,31425 -939,FR,BJ,201812,1,2,60051,750 -939,FR,BJ,201812,1,2,2710,3996 -939,FR,BJ,201812,1,2,1050,1500 -939,FR,BJ,201812,3,2,5800,200 -939,FR,BJ,201812,4,2,401374,9783 -939,FR,BJ,201812,4,2,51925,570 -939,FR,BJ,201812,4,2,26994,154 -939,FR,BJ,201812,4,2,46856,1970 -941,FR,BJ,201812,1,2,6334,299 -941,FR,BJ,201812,1,2,121749,22455 -941,FR,BJ,201812,1,2,19359,886 -941,FR,BJ,201812,4,2,2050,252 -949,FR,BJ,201812,1,2,64247,7793 -949,FR,BJ,201812,1,2,30892,5755 -949,FR,BJ,201812,1,2,19121,600 -949,FR,BJ,201812,1,2,17790,836 -949,FR,BJ,201812,4,2,12263,569 -949,FR,BJ,201812,4,2,4526,52 -949,FR,BJ,201812,4,2,2220,8 -951,FR,BJ,201812,4,2,9581,150 -952,FR,BJ,201812,1,2,40647,11274 -952,FR,BJ,201812,1,2,14419,14 -952,FR,BJ,201812,1,2,17290,4000 -952,FR,BJ,201812,4,2,4296,141 -962,FR,BJ,201812,1,2,55,8 -962,FR,BJ,201812,4,2,44759,217 -963,FR,BJ,201812,3,1,720,7 -963,FR,BJ,201812,0,2,510,5 -963,FR,BJ,201812,1,2,7491,247 -963,FR,BJ,201812,1,2,486,4699 -963,FR,BJ,201812,1,2,5163,395 -963,FR,BJ,201812,1,2,8085,360 -963,FR,BJ,201812,4,2,93474,1257 -963,FR,BJ,201812,4,2,2435,43 -963,FR,BJ,201812,4,2,1920,18 -963,FR,BJ,201812,4,2,208,8 -971,FR,BJ,201812,1,2,98554,10000 -971,FR,BJ,201812,4,2,4711,374 -972,FR,BJ,201812,1,2,3106,302 -972,FR,BJ,201812,1,2,34372,47788 -973,FR,BJ,201812,1,2,9002,1949 -973,FR,BJ,201812,1,2,120,6 -973,FR,BJ,201812,1,2,656,86 -973,FR,BJ,201812,1,2,148398,106129 -973,FR,BJ,201812,4,2,39676,2922 -973,FR,BJ,201812,4,2,4172,345 -973,FR,BJ,201812,4,2,2564,1950 -974,FR,BJ,201812,4,1,1200,129 -974,FR,BJ,201812,5,1,1074,33 -974,FR,BJ,201812,1,2,23123,2388 -974,FR,BJ,201812,1,2,3016,1079 -974,FR,BJ,201812,1,2,14,14 -974,FR,BJ,201812,1,2,1,28 -974,FR,BJ,201812,3,2,5,2 -974,FR,BJ,201812,4,2,48350,2514 -974,FR,BJ,201812,4,2,4,1 -975,FR,BJ,201812,1,1,4443,800 -975,FR,BJ,201812,1,2,15045,4992 -975,FR,BJ,201812,1,2,5464,785 -975,FR,BJ,201812,1,2,16568,3113 -975,FR,BJ,201812,1,2,13157,1370 -975,FR,BJ,201812,1,2,24247,6120 -975,FR,BJ,201812,1,2,1520,3059 -975,FR,BJ,201812,1,2,3024,680 -975,FR,BJ,201812,3,2,9853,9500 -975,FR,BJ,201812,4,2,4395,40 -976,FR,BJ,201812,3,1,80,2 -976,FR,BJ,201812,4,1,249,50 -976,FR,BJ,201812,4,2,4758,100 -979,FR,BJ,201812,0,2,638,3 -979,FR,BJ,201812,1,2,158597,81649 -979,FR,BJ,201812,1,2,1311,183 -979,FR,BJ,201812,1,2,533143,55994 -979,FR,BJ,201812,1,2,201069,12570 -979,FR,BJ,201812,1,2,849,10 -979,FR,BJ,201812,1,2,20727,6512 -979,FR,BJ,201812,3,2,3179,40 -979,FR,BJ,201812,4,2,136672,2687 -979,FR,BJ,201812,4,2,4354,40 -979,FR,BJ,201812,4,2,10846,25 -979,FR,BJ,201812,4,2,5866,11 -979,FR,BJ,201812,4,2,3951,11 -979,FR,BJ,201812,4,2,3803,2060 -999,FR,BJ,201812,1,1,29950,0 -999,FR,BJ,201812,1,1,11310,0 -999,FR,BJ,201812,3,1,2935,0 -999,FR,BJ,201812,4,1,1,0 -999,FR,BJ,201812,4,1,200,0 -999,FR,BJ,201812,5,1,1132,0 -999,FR,BJ,201812,1,2,140286,52156 -999,FR,BJ,201812,1,2,300,0 -999,FR,BJ,201812,1,2,102891,19952 -999,FR,BJ,201812,1,2,3000,0 -999,FR,BJ,201812,1,2,13531,9153 -999,FR,BJ,201812,1,2,11606,0 -999,FR,BJ,201812,1,2,56244,0 -999,FR,BJ,201812,1,2,2500,0 -999,FR,BJ,201812,1,2,9804,0 -999,FR,BJ,201812,3,2,1850,0 -999,FR,BJ,201812,4,2,3323,38 -999,FR,BJ,201812,4,2,5825,0 -999,FR,BJ,201812,4,2,6520,120 -035,FR,NG,201812,4,1,60,70 -035,FR,NG,201812,4,1,249,260 -035,FR,NG,201812,1,2,17836,21168 -035,FR,NG,201812,4,2,464,33 -039,FR,NG,201812,4,1,57,100 -039,FR,NG,201812,4,2,1853,438 -039,FR,NG,201812,4,2,233,56 -057,FR,NG,201812,1,1,28431,107500 -092,FR,NG,201812,1,1,347318,272160 -092,FR,NG,201812,4,2,1399,11 -099,FR,NG,201812,4,2,49403,2550 -111,FR,NG,201812,4,2,30,12 -121,FR,NG,201812,1,2,15703,2880 -121,FR,NG,201812,1,2,46647,482 -121,FR,NG,201812,1,2,43057,6780 -121,FR,NG,201812,1,2,2190,531 -121,FR,NG,201812,1,2,65293,8213 -121,FR,NG,201812,1,2,367602,69593 -121,FR,NG,201812,1,2,33285,10134 -121,FR,NG,201812,4,2,5720,67 -121,FR,NG,201812,4,2,110902,810 -121,FR,NG,201812,4,2,23543,669 -122,FR,NG,201812,1,2,996,212 -125,FR,NG,201812,1,2,3756,1479 -125,FR,NG,201812,1,2,382771,29093 -125,FR,NG,201812,1,2,49747,4500 -125,FR,NG,201812,1,2,295,43 -125,FR,NG,201812,1,2,167812,24674 -125,FR,NG,201812,1,2,240955,18996 -125,FR,NG,201812,4,2,46,9 -128,FR,NG,201812,4,1,0,24 -128,FR,NG,201812,1,2,2521,700 -128,FR,NG,201812,4,2,269,523 -132,FR,NG,201812,1,1,219311,40000 -132,FR,NG,201812,3,1,244,17 -132,FR,NG,201812,1,2,236,98 -132,FR,NG,201812,1,2,15137,4086 -132,FR,NG,201812,3,2,30,0 -133,FR,NG,201812,3,1,73,0 -133,FR,NG,201812,4,1,347,588 -133,FR,NG,201812,4,1,24,33 -133,FR,NG,201812,1,2,388217,46718 -133,FR,NG,201812,4,2,11155,1879 -136,FR,NG,201812,4,1,16,7 -136,FR,NG,201812,1,2,17816,6405 -136,FR,NG,201812,1,2,172411,294000 -139,FR,NG,201812,4,1,119,325 -139,FR,NG,201812,1,2,48831,5080 -139,FR,NG,201812,1,2,93050,55000 -139,FR,NG,201812,1,2,28763,12175 -139,FR,NG,201812,1,2,265685,144000 -139,FR,NG,201812,4,2,4799,999 -139,FR,NG,201812,4,2,53567,4845 -139,FR,NG,201812,4,2,15086,2163 -139,FR,NG,201812,4,2,8933,609 -139,FR,NG,201812,4,2,6970,614 -139,FR,NG,201812,4,2,6344,786 -141,FR,NG,201812,4,2,825,34 -141,FR,NG,201812,4,2,5094,731 -141,FR,NG,201812,4,2,3368,442 -142,FR,NG,201812,0,1,611746,37644 -142,FR,NG,201812,1,1,41821,1440 -142,FR,NG,201812,3,1,80029,3456 -142,FR,NG,201812,3,1,768,14 -142,FR,NG,201812,4,2,1705,104 -142,FR,NG,201812,4,2,7421,472 -142,FR,NG,201812,4,2,3210,237 -143,FR,NG,201812,1,2,21487,24569 -143,FR,NG,201812,4,2,14,5 -144,FR,NG,201812,1,2,437856,443750 -144,FR,NG,201812,1,2,87023,22640 -144,FR,NG,201812,4,2,798,45 -144,FR,NG,201812,4,2,4317,343 -146,FR,NG,201812,4,2,29328,2883 -146,FR,NG,201812,4,2,19256,1455 -146,FR,NG,201812,4,2,3900,300 -147,FR,NG,201812,4,2,2060,243 -148,FR,NG,201812,4,2,353,0 -162,FR,NG,201812,1,2,2683200,8000000 -162,FR,NG,201812,1,2,1239400,4000000 -163,FR,NG,201812,4,2,1139,178 -164,FR,NG,201812,3,1,63,0 -164,FR,NG,201812,4,1,3,2 -164,FR,NG,201812,1,2,60559,23374 -164,FR,NG,201812,4,2,108,51 -166,FR,NG,201812,4,1,34,62 -179,FR,NG,201812,1,2,482064,230520 -179,FR,NG,201812,1,2,48330,19206 -179,FR,NG,201812,1,2,64457,68251 -181,FR,NG,201812,4,1,114,132 -182,FR,NG,201812,3,1,205,12 -182,FR,NG,201812,4,1,20,1 -310,FR,NG,201812,1,1,49130299,115513000 -310,FR,NG,201812,1,1,107663989,249706000 -321,FR,NG,201812,1,2,14164071,36946794 -321,FR,NG,201812,1,2,99995,46080 -321,FR,NG,201812,4,2,47,5 -323,FR,NG,201812,1,2,15562,13360 -325,FR,NG,201812,1,1,20933941,39657338 -325,FR,NG,201812,1,2,1165367,1394566 -330,FR,NG,201812,1,1,24039505,0 -341,FR,NG,201812,1,2,3014977,4744534 -341,FR,NG,201812,1,2,120249,39947 -341,FR,NG,201812,1,2,8762,5000 -341,FR,NG,201812,4,2,10,45 -542,FR,NG,201812,4,2,18331,1604 -551,FR,NG,201812,1,2,512,10 -551,FR,NG,201812,1,2,446061,115424 -551,FR,NG,201812,4,2,25912,357 -551,FR,NG,201812,4,2,5978,550 -552,FR,NG,201812,1,2,86,9 -568,FR,NG,201812,1,2,756,9 -568,FR,NG,201812,1,2,144884,45531 -568,FR,NG,201812,4,2,49,0 -568,FR,NG,201812,4,2,226,200 -614,FR,NG,201812,4,1,32,129 -614,FR,NG,201812,4,1,13,26 -621,FR,NG,201812,4,2,115,14 -639,FR,NG,201812,4,1,249,0 -639,FR,NG,201812,1,2,17500,1000 -691,FR,NG,201812,1,2,991,688 -691,FR,NG,201812,1,2,9725,9628 -692,FR,NG,201812,1,2,404,490 -819,FR,NG,201812,4,1,190,5 -819,FR,NG,201812,4,1,13,18 -819,FR,NG,201812,1,2,17130,1000 -819,FR,NG,201812,1,2,293071,40000 -819,FR,NG,201812,3,2,1080,800 -819,FR,NG,201812,4,2,2966,4 -820,FR,NG,201812,1,2,1432,429 -891,FR,NG,201812,4,1,2,2 -891,FR,NG,201812,1,2,10473,3277 -891,FR,NG,201812,1,2,80597,41884 -891,FR,NG,201812,1,2,50350,24000 -891,FR,NG,201812,1,2,60950,2880 -891,FR,NG,201812,1,2,188732,120247 -891,FR,NG,201812,3,2,140593,19800 -891,FR,NG,201812,4,2,80775,3202 -891,FR,NG,201812,4,2,73034,1842 -891,FR,NG,201812,4,2,28549,415 -892,FR,NG,201812,1,2,5262,6000 -892,FR,NG,201812,1,2,129,4 -892,FR,NG,201812,1,2,21704,15000 -892,FR,NG,201812,3,2,11670,4000 -892,FR,NG,201812,4,2,175,15 -893,FR,NG,201812,3,1,850,16 -893,FR,NG,201812,4,1,7,30 -893,FR,NG,201812,4,1,59,7 -893,FR,NG,201812,4,1,666,2 -893,FR,NG,201812,4,1,49,1 -893,FR,NG,201812,0,2,135,0 -893,FR,NG,201812,1,2,797372,34980 -893,FR,NG,201812,1,2,43300,3000 -893,FR,NG,201812,1,2,630322,55505 -893,FR,NG,201812,1,2,193547,9107 -893,FR,NG,201812,1,2,68250,5968 -893,FR,NG,201812,1,2,90815,10505 -893,FR,NG,201812,1,2,93578,3416 -893,FR,NG,201812,1,2,329787,67259 -893,FR,NG,201812,1,2,179564,26619 -893,FR,NG,201812,1,2,71625,12529 -893,FR,NG,201812,3,2,8332,400 -893,FR,NG,201812,4,2,2298311,17262 -893,FR,NG,201812,4,2,517562,8166 -893,FR,NG,201812,4,2,394887,7740 -893,FR,NG,201812,4,2,54698,756 -893,FR,NG,201812,4,2,16330,139 -893,FR,NG,201812,4,2,6426,730 -896,FR,NG,201812,3,1,80,0 -896,FR,NG,201812,1,2,41967,13677 -896,FR,NG,201812,1,2,34880,9100 -896,FR,NG,201812,1,2,2003273,805236 -896,FR,NG,201812,1,2,43066,27200 -896,FR,NG,201812,1,2,51576,16178 -896,FR,NG,201812,3,2,10986,52 -896,FR,NG,201812,3,2,40423,21160 -896,FR,NG,201812,4,2,77622,774 -896,FR,NG,201812,4,2,2855,10 -896,FR,NG,201812,4,2,992,6 -896,FR,NG,201812,4,2,41615,357 -896,FR,NG,201812,4,2,8813,48 -896,FR,NG,201812,4,2,10602,93 -896,FR,NG,201812,4,2,57876,6970 -910,FR,NG,201812,3,1,1704,6 -910,FR,NG,201812,4,1,1500,28 -910,FR,NG,201812,4,1,17530,180 -910,FR,NG,201812,4,1,8160,350 -910,FR,NG,201812,4,1,10789,164 -910,FR,NG,201812,4,1,9045,1228 -910,FR,NG,201812,1,2,2000,2190 -910,FR,NG,201812,1,2,3464,127 -910,FR,NG,201812,1,2,25050,16626 -910,FR,NG,201812,1,2,18160,2229 -910,FR,NG,201812,1,2,1500,1545 -910,FR,NG,201812,1,2,1750,4500 -910,FR,NG,201812,1,2,9850,15000 -910,FR,NG,201812,1,2,1800,2768 -910,FR,NG,201812,4,2,505556,2759 -910,FR,NG,201812,4,2,651,51 -910,FR,NG,201812,4,2,1350,5 -910,FR,NG,201812,4,2,26292,900 -920,FR,NG,201812,1,2,11355,37 -920,FR,NG,201812,4,2,30737,450 -931,FR,NG,201812,3,1,112,0 -931,FR,NG,201812,0,2,1684,4 -931,FR,NG,201812,1,2,269926,14018 -931,FR,NG,201812,1,2,339,8 -931,FR,NG,201812,1,2,1299,9 -931,FR,NG,201812,1,2,854768,158404 -931,FR,NG,201812,1,2,100469,2407 -931,FR,NG,201812,1,2,417871,11000 -931,FR,NG,201812,1,2,251008,31164 -931,FR,NG,201812,1,2,6443,850 -931,FR,NG,201812,1,2,77322,2070 -931,FR,NG,201812,3,2,19270,190 -931,FR,NG,201812,4,2,2215006,28853 -931,FR,NG,201812,4,2,15063,320 -931,FR,NG,201812,4,2,141665,1199 -931,FR,NG,201812,4,2,4290,2 -931,FR,NG,201812,4,2,1082,24 -931,FR,NG,201812,4,2,2539,17 -931,FR,NG,201812,4,2,19339,1 -931,FR,NG,201812,4,2,61737,4020 -931,FR,NG,201812,4,2,11322,21 -931,FR,NG,201812,5,2,6678,328 -939,FR,NG,201812,3,1,230,2 -939,FR,NG,201812,1,2,4675603,78246 -939,FR,NG,201812,1,2,1971,3 -939,FR,NG,201812,1,2,329085,2866 -939,FR,NG,201812,1,2,70296,3077 -939,FR,NG,201812,1,2,1210479,65677 -939,FR,NG,201812,1,2,1063,15 -939,FR,NG,201812,1,2,180887,22364 -939,FR,NG,201812,1,2,307982,25332 -939,FR,NG,201812,1,2,679306,31650 -939,FR,NG,201812,1,2,13700,18915 -939,FR,NG,201812,1,2,89189,6271 -939,FR,NG,201812,3,2,11753,237 -939,FR,NG,201812,3,2,248500,28567 -939,FR,NG,201812,4,2,1171762,8186 -939,FR,NG,201812,4,2,20306,215 -939,FR,NG,201812,4,2,185785,5678 -939,FR,NG,201812,4,2,7660,82 -939,FR,NG,201812,4,2,112685,2098 -939,FR,NG,201812,4,2,24120,300 -939,FR,NG,201812,4,2,206130,2953 -939,FR,NG,201812,4,2,96827,147 -939,FR,NG,201812,4,2,1916,135 -939,FR,NG,201812,4,2,31370,568 -939,FR,NG,201812,4,2,22934,456 -939,FR,NG,201812,4,2,203398,1518 -939,FR,NG,201812,4,2,379360,3670 -939,FR,NG,201812,4,2,11921,66 -939,FR,NG,201812,4,2,293152,13300 -939,FR,NG,201812,4,2,6088,82 -939,FR,NG,201812,4,2,21416,169 -941,FR,NG,201812,4,2,791,17 -949,FR,NG,201812,4,1,5,10 -949,FR,NG,201812,1,2,846,4 -949,FR,NG,201812,1,2,5614,119 -949,FR,NG,201812,1,2,49563,1958 -949,FR,NG,201812,3,2,9753,502 -949,FR,NG,201812,4,2,173161,343 -949,FR,NG,201812,4,2,50727,680 -949,FR,NG,201812,4,2,1578,21 -949,FR,NG,201812,4,2,48796,4490 -949,FR,NG,201812,4,2,1996,10 -949,FR,NG,201812,4,2,3889,15 -951,FR,NG,201812,4,1,4492,140 -951,FR,NG,201812,1,2,52,1 -951,FR,NG,201812,4,2,108,5 -952,FR,NG,201812,0,1,46384,0 -952,FR,NG,201812,1,2,739,104 -952,FR,NG,201812,1,2,191,7 -962,FR,NG,201812,3,1,164,1 -962,FR,NG,201812,4,1,157,0 -962,FR,NG,201812,4,1,2,11 -962,FR,NG,201812,1,2,405,13 -962,FR,NG,201812,1,2,267766,6853 -962,FR,NG,201812,4,2,341,4 -962,FR,NG,201812,4,2,5635,113 -962,FR,NG,201812,8,2,13262,53053 -963,FR,NG,201812,3,1,3281,33 -963,FR,NG,201812,4,1,215,404 -963,FR,NG,201812,4,1,609,3 -963,FR,NG,201812,4,1,10,7 -963,FR,NG,201812,4,1,70,1 -963,FR,NG,201812,1,2,1725,35 -963,FR,NG,201812,4,2,21678,1202 -963,FR,NG,201812,4,2,7671,710 -971,FR,NG,201812,1,2,8055,318 -971,FR,NG,201812,1,2,96,0 -971,FR,NG,201812,1,2,46635,12643 -971,FR,NG,201812,4,2,1369,4 -971,FR,NG,201812,4,2,5,0 -971,FR,NG,201812,4,2,14667,965 -971,FR,NG,201812,4,2,9389,125 -971,FR,NG,201812,4,2,1139,20 -971,FR,NG,201812,4,2,1382,36 -972,FR,NG,201812,1,2,488570,227216 -972,FR,NG,201812,3,2,101546,237242 -972,FR,NG,201812,4,2,3801,5 -972,FR,NG,201812,4,2,3843,60 -973,FR,NG,201812,4,1,94,0 -973,FR,NG,201812,4,1,344,5 -973,FR,NG,201812,0,2,139,10 -973,FR,NG,201812,1,2,205,632 -973,FR,NG,201812,1,2,956,85 -973,FR,NG,201812,4,2,7114,545 -973,FR,NG,201812,4,2,422,2 -974,FR,NG,201812,4,1,26,0 -974,FR,NG,201812,4,1,78,165 -974,FR,NG,201812,4,1,28,0 -974,FR,NG,201812,4,1,105,0 -974,FR,NG,201812,0,2,112,2 -974,FR,NG,201812,1,2,12,42 -974,FR,NG,201812,1,2,283,34 -974,FR,NG,201812,1,2,90,690 -974,FR,NG,201812,3,2,173,4 -974,FR,NG,201812,4,2,21409,302 -974,FR,NG,201812,4,2,2212,762 -975,FR,NG,201812,1,2,46765,2950 -975,FR,NG,201812,1,2,20852,2118 -975,FR,NG,201812,1,2,3300,450 -975,FR,NG,201812,1,2,6169,16 -975,FR,NG,201812,1,2,5260,1000 -975,FR,NG,201812,3,2,152300,22435 -975,FR,NG,201812,3,2,17500,3434 -976,FR,NG,201812,4,1,34,15 -976,FR,NG,201812,1,2,182,504 -976,FR,NG,201812,1,2,41,0 -979,FR,NG,201812,1,1,1980,81 -979,FR,NG,201812,1,1,2107,177 -979,FR,NG,201812,3,1,1375,19 -979,FR,NG,201812,4,1,6621,813 -979,FR,NG,201812,4,1,5012,9 -979,FR,NG,201812,4,1,171,79 -979,FR,NG,201812,4,1,309,0 -979,FR,NG,201812,0,2,440,12 -979,FR,NG,201812,1,2,40361,805 -979,FR,NG,201812,1,2,185304,58763 -979,FR,NG,201812,1,2,390871,5828 -979,FR,NG,201812,3,2,41804,173 -979,FR,NG,201812,4,2,523715,5201 -979,FR,NG,201812,4,2,16110,249 -979,FR,NG,201812,4,2,15475,130 -979,FR,NG,201812,4,2,517678,5575 -979,FR,NG,201812,4,2,158148,2056 -979,FR,NG,201812,4,2,18542,8 -979,FR,NG,201812,4,2,48472,102 -979,FR,NG,201812,4,2,38687,6 -979,FR,NG,201812,4,2,19656,1940 -979,FR,NG,201812,4,2,1699,16 -979,FR,NG,201812,4,2,6935,7 -979,FR,NG,201812,5,2,906,24 -999,FR,NG,201812,1,1,0,60815510 -999,FR,NG,201812,1,1,30000,0 -999,FR,NG,201812,4,1,46085,0 -999,FR,NG,201812,1,2,335489,1250947 -999,FR,NG,201812,1,2,488366,360005 -999,FR,NG,201812,1,2,409113,199084 -999,FR,NG,201812,1,2,72873,36858 -999,FR,NG,201812,1,2,28952,40000 -999,FR,NG,201812,1,2,2531,0 -999,FR,NG,201812,3,2,19152,10080 -999,FR,NG,201812,3,2,653996,664000 -999,FR,NG,201812,4,2,27633,4000 -999,FR,NG,201812,4,2,1109,0 -001,FR,CM,201812,4,2,70996,476 -011,FR,CM,201812,1,2,2771026,13500000 -011,FR,CM,201812,1,2,410080,2000000 -016,FR,CM,201812,1,2,90,94 -035,FR,CM,201812,1,1,850539,1623937 -035,FR,CM,201812,4,1,74624,104949 -035,FR,CM,201812,4,1,214,50 -035,FR,CM,201812,4,1,1633,544 -035,FR,CM,201812,4,1,10847,7602 -035,FR,CM,201812,1,2,23282,20916 -035,FR,CM,201812,1,2,10320,31128 -039,FR,CM,201812,4,1,47139,46313 -039,FR,CM,201812,4,1,17619,21175 -039,FR,CM,201812,4,1,2332,1545 -039,FR,CM,201812,4,1,4544,4425 -039,FR,CM,201812,1,2,1458,312 -039,FR,CM,201812,4,2,1992,652 -049,FR,CM,201812,1,2,26556,54451 -049,FR,CM,201812,1,2,100808,109282 -049,FR,CM,201812,1,2,8750,25000 -049,FR,CM,201812,1,2,18136,17975 -051,FR,CM,201812,1,1,38040,127024 -056,FR,CM,201812,1,1,106485,110409 -056,FR,CM,201812,1,1,814111,1171261 -056,FR,CM,201812,1,1,140667,149343 -056,FR,CM,201812,1,1,22949,24300 -056,FR,CM,201812,1,1,100137,183189 -056,FR,CM,201812,1,1,10221,21405 -056,FR,CM,201812,1,1,67858,124812 -056,FR,CM,201812,1,1,175988,208358 -056,FR,CM,201812,1,1,33869,46487 -056,FR,CM,201812,1,1,36326,39995 -060,FR,CM,201812,4,1,65,5 -060,FR,CM,201812,4,1,21,65 -091,FR,CM,201812,4,1,2499,64 -091,FR,CM,201812,4,1,1552,57 -091,FR,CM,201812,4,1,1846,44 -092,FR,CM,201812,1,1,114161,90720 -092,FR,CM,201812,1,1,148821,113400 -099,FR,CM,201812,1,1,30200,8000 -099,FR,CM,201812,1,1,19164,21050 -099,FR,CM,201812,3,1,110,3 -099,FR,CM,201812,4,1,43823,10819 -099,FR,CM,201812,4,1,2369,36 -099,FR,CM,201812,4,1,4432,43 -099,FR,CM,201812,4,1,13400,3153 -099,FR,CM,201812,4,1,1080,439 -099,FR,CM,201812,1,2,1054,46 -099,FR,CM,201812,1,2,40301,1152 -111,FR,CM,201812,1,2,374,280 -111,FR,CM,201812,4,2,50,20 -112,FR,CM,201812,1,2,2622,513 -121,FR,CM,201812,1,2,4125,76 -121,FR,CM,201812,1,2,682717,18620 -121,FR,CM,201812,1,2,90625,52100 -121,FR,CM,201812,1,2,72450,8931 -121,FR,CM,201812,1,2,17614,3897 -121,FR,CM,201812,1,2,895878,221546 -121,FR,CM,201812,1,2,104200,6286 -121,FR,CM,201812,1,2,56320,96000 -121,FR,CM,201812,3,2,2930,72 -121,FR,CM,201812,3,2,12455,7312 -121,FR,CM,201812,3,2,173485,46045 -121,FR,CM,201812,4,2,232097,2877 -121,FR,CM,201812,4,2,2430,256 -121,FR,CM,201812,4,2,14400,224 -122,FR,CM,201812,1,1,20484,14610 -122,FR,CM,201812,1,1,1886,1572 -122,FR,CM,201812,1,2,67268,75251 -122,FR,CM,201812,1,2,14711,13659 -122,FR,CM,201812,1,2,57,96 -122,FR,CM,201812,1,2,2849,5755 -125,FR,CM,201812,1,2,9127,223 -125,FR,CM,201812,1,2,122993,21929 -125,FR,CM,201812,1,2,101521,24354 -125,FR,CM,201812,1,2,36970,4239 -125,FR,CM,201812,3,2,5520,798 -125,FR,CM,201812,4,2,1844,19 -125,FR,CM,201812,4,2,928,168 -128,FR,CM,201812,1,1,16551,16191 -128,FR,CM,201812,1,1,3454,7667 -128,FR,CM,201812,1,2,5817,11443 -128,FR,CM,201812,1,2,625,516 -128,FR,CM,201812,4,2,222,456 -131,FR,CM,201812,0,1,332346,185327 -131,FR,CM,201812,1,1,71947,39577 -132,FR,CM,201812,1,1,156319,72560 -132,FR,CM,201812,1,1,3659519,851400 -132,FR,CM,201812,1,1,3915562,1065600 -132,FR,CM,201812,3,1,544,38 -132,FR,CM,201812,1,2,267,61 -132,FR,CM,201812,1,2,39815,15981 -132,FR,CM,201812,1,2,1923,328 -132,FR,CM,201812,3,2,672,41 -133,FR,CM,201812,1,1,4334,97 -133,FR,CM,201812,4,1,1380,979 -133,FR,CM,201812,4,1,128,40 -133,FR,CM,201812,4,1,3045,1799 -133,FR,CM,201812,1,2,44855,2826 -136,FR,CM,201812,4,1,168,37 -136,FR,CM,201812,1,2,5590,6500 -136,FR,CM,201812,1,2,73,36 -136,FR,CM,201812,1,2,4069,2762 -136,FR,CM,201812,3,2,470,61 -139,FR,CM,201812,4,1,1,5 -139,FR,CM,201812,1,2,35346,1034 -139,FR,CM,201812,1,2,15219,2861 -139,FR,CM,201812,1,2,758278,227805 -139,FR,CM,201812,1,2,28943,12079 -139,FR,CM,201812,1,2,1080255,244485 -139,FR,CM,201812,4,2,40151,6371 -139,FR,CM,201812,4,2,22599,1734 -141,FR,CM,201812,1,2,30622,24160 -141,FR,CM,201812,1,2,42858,21213 -142,FR,CM,201812,4,2,3464,375 -143,FR,CM,201812,1,2,77789,81756 -143,FR,CM,201812,1,2,13052,19046 -143,FR,CM,201812,1,2,49329,90213 -143,FR,CM,201812,1,2,20367,40534 -143,FR,CM,201812,4,2,24,9 -144,FR,CM,201812,1,2,173520,44515 -147,FR,CM,201812,1,2,60494,48193 -147,FR,CM,201812,1,2,77906,20931 -147,FR,CM,201812,1,2,111677,73176 -147,FR,CM,201812,1,2,45840,41644 -147,FR,CM,201812,3,2,16206,13690 -147,FR,CM,201812,4,2,26,3 -147,FR,CM,201812,4,2,1254,36 -148,FR,CM,201812,1,2,72,9 -148,FR,CM,201812,1,2,478,63 -148,FR,CM,201812,4,2,303,0 -148,FR,CM,201812,4,2,500,0 -161,FR,CM,201812,4,1,5,20 -161,FR,CM,201812,1,2,117,250 -161,FR,CM,201812,1,2,139803,440020 -162,FR,CM,201812,1,2,847260,2400012 -162,FR,CM,201812,1,2,1298435,3400380 -163,FR,CM,201812,4,1,214,50 -163,FR,CM,201812,1,2,20761,7398 -163,FR,CM,201812,1,2,11951,5929 -163,FR,CM,201812,1,2,39045,21973 -164,FR,CM,201812,1,1,3926,1375 -164,FR,CM,201812,4,1,10127,10716 -164,FR,CM,201812,4,1,12546,40 -164,FR,CM,201812,1,2,4516,4109 -164,FR,CM,201812,1,2,5679,4551 -164,FR,CM,201812,4,2,77,36 -164,FR,CM,201812,4,2,519,150 -165,FR,CM,201812,4,1,41,90 -165,FR,CM,201812,1,2,69,50 -166,FR,CM,201812,1,1,13256,14000 -166,FR,CM,201812,1,1,2474,1325 -166,FR,CM,201812,1,1,595947,347500 -166,FR,CM,201812,4,1,87688,88902 -166,FR,CM,201812,4,1,6362,9542 -166,FR,CM,201812,4,1,61465,67440 -166,FR,CM,201812,4,1,2423,2940 -166,FR,CM,201812,1,2,1346,402 -166,FR,CM,201812,1,2,21600,6000 -171,FR,CM,201812,3,2,1889,10100 -179,FR,CM,201812,1,2,22983,26724 -179,FR,CM,201812,1,2,1549,1150 -179,FR,CM,201812,1,2,24380,27510 -179,FR,CM,201812,1,2,18568,19900 -179,FR,CM,201812,3,2,2185,12140 -181,FR,CM,201812,4,1,607,1023 -181,FR,CM,201812,4,1,568,370 -182,FR,CM,201812,1,1,244,285 -182,FR,CM,201812,4,1,2749,16 -182,FR,CM,201812,1,2,116,1 -224,FR,CM,201812,1,2,3570,9850 -310,FR,CM,201812,4,1,9,2 -325,FR,CM,201812,1,2,345466,346760 -325,FR,CM,201812,4,2,863,72 -327,FR,CM,201812,4,1,222,9 -341,FR,CM,201812,1,2,7299,1443 -341,FR,CM,201812,1,2,23630,14630 -341,FR,CM,201812,1,2,138126,87451 -341,FR,CM,201812,1,2,51928,45402 -341,FR,CM,201812,4,2,12806,929 -341,FR,CM,201812,4,2,1260,103 -341,FR,CM,201812,4,2,1729,82 -343,FR,CM,201812,1,2,91329,58157 -513,FR,CM,201812,1,2,21890,12000 -532,FR,CM,201812,1,2,10573,7101 -536,FR,CM,201812,1,2,144,0 -536,FR,CM,201812,1,2,204330,196335 -542,FR,CM,201812,1,2,20079,7985 -542,FR,CM,201812,1,2,2000,137 -542,FR,CM,201812,1,2,119406,50125 -542,FR,CM,201812,4,2,6064,17 -551,FR,CM,201812,1,2,67603,16378 -551,FR,CM,201812,1,2,19385,324 -551,FR,CM,201812,1,2,1191,398 -551,FR,CM,201812,4,2,3815,6 -551,FR,CM,201812,4,2,508,2 -551,FR,CM,201812,4,2,323,151 -552,FR,CM,201812,1,2,5308,793 -552,FR,CM,201812,4,2,11100,1070 -561,FR,CM,201812,1,2,3386,334 -562,FR,CM,201812,1,1,272127,126594 -562,FR,CM,201812,1,1,142267,75433 -568,FR,CM,201812,1,2,23927,852 -568,FR,CM,201812,1,2,3200,639 -568,FR,CM,201812,4,2,298,15 -611,FR,CM,201812,1,2,141,300 -614,FR,CM,201812,1,1,1546,3400 -614,FR,CM,201812,1,1,428,1250 -614,FR,CM,201812,4,1,83,110 -614,FR,CM,201812,4,1,271,290 -621,FR,CM,201812,1,2,156,168 -621,FR,CM,201812,4,2,131,16 -623,FR,CM,201812,4,1,12,5 -634,FR,CM,201812,1,2,1151,26000 -639,FR,CM,201812,3,1,940,76 -639,FR,CM,201812,1,2,3271,2500 -639,FR,CM,201812,1,2,386,1250 -639,FR,CM,201812,1,2,250,120 -639,FR,CM,201812,1,2,34561,66139 -691,FR,CM,201812,1,2,131545,127627 -691,FR,CM,201812,1,2,140852,288444 -691,FR,CM,201812,1,2,143400,143227 -691,FR,CM,201812,1,2,20673,5707 -691,FR,CM,201812,4,2,1009,25 -691,FR,CM,201812,4,2,1334,250 -692,FR,CM,201812,1,2,4200,9813 -692,FR,CM,201812,1,2,10466,16200 -814,FR,CM,201812,4,2,1333,1 -819,FR,CM,201812,1,2,102184,13280 -819,FR,CM,201812,1,2,8010,166 -819,FR,CM,201812,1,2,131668,174212 -819,FR,CM,201812,1,2,74615,36910 -819,FR,CM,201812,1,2,4080,2450 -819,FR,CM,201812,4,2,6347,578 -819,FR,CM,201812,4,2,10320,440 -819,FR,CM,201812,4,2,46,1 -819,FR,CM,201812,4,2,1751,50 -819,FR,CM,201812,4,2,10900,305 -891,FR,CM,201812,4,1,412,35 -891,FR,CM,201812,0,2,809,29 -891,FR,CM,201812,1,2,70217,18193 -891,FR,CM,201812,1,2,5973,3350 -891,FR,CM,201812,1,2,400,137 -891,FR,CM,201812,1,2,55947,21217 -891,FR,CM,201812,1,2,82049,5857 -891,FR,CM,201812,1,2,77331,18483 -891,FR,CM,201812,4,2,10429,159 -891,FR,CM,201812,4,2,18429,5850 -891,FR,CM,201812,4,2,1285,61 -892,FR,CM,201812,1,2,36607,6758 -892,FR,CM,201812,1,2,1080,70 -892,FR,CM,201812,1,2,31936,9837 -892,FR,CM,201812,1,2,14940,3265 -892,FR,CM,201812,4,2,455,35 -893,FR,CM,201812,3,1,331,12 -893,FR,CM,201812,4,1,14,72 -893,FR,CM,201812,4,1,113,85 -893,FR,CM,201812,0,2,207108,2545 -893,FR,CM,201812,1,2,5109895,331893 -893,FR,CM,201812,1,2,1579,180 -893,FR,CM,201812,1,2,540269,100377 -893,FR,CM,201812,1,2,50462,5762 -893,FR,CM,201812,1,2,32903,3572 -893,FR,CM,201812,1,2,206324,16813 -893,FR,CM,201812,1,2,125368,14574 -893,FR,CM,201812,1,2,86181,6955 -893,FR,CM,201812,3,2,3679,702 -893,FR,CM,201812,4,2,1151246,8626 -893,FR,CM,201812,4,2,203860,2705 -893,FR,CM,201812,4,2,33,17 -893,FR,CM,201812,4,2,121438,375 -893,FR,CM,201812,4,2,191759,1964 -893,FR,CM,201812,4,2,11558,3900 -893,FR,CM,201812,4,2,1448,21 -894,FR,CM,201812,1,2,180322,26666 -896,FR,CM,201812,3,1,495,9 -896,FR,CM,201812,0,2,200,1 -896,FR,CM,201812,1,2,198100,31749 -896,FR,CM,201812,1,2,203,1 -896,FR,CM,201812,1,2,62048,14510 -896,FR,CM,201812,1,2,277658,80250 -896,FR,CM,201812,1,2,6883,1155 -896,FR,CM,201812,1,2,1936,50 -896,FR,CM,201812,1,2,26269,9770 -896,FR,CM,201812,3,2,9161,5188 -896,FR,CM,201812,4,2,123849,1750 -896,FR,CM,201812,4,2,26739,260 -896,FR,CM,201812,4,2,5447,140 -896,FR,CM,201812,4,2,9552,265 -896,FR,CM,201812,4,2,6460,190 -910,FR,CM,201812,4,1,3297,153 -910,FR,CM,201812,4,1,7255,110 -910,FR,CM,201812,0,2,1013,55 -910,FR,CM,201812,1,2,625724,111268 -910,FR,CM,201812,1,2,8000,7222 -910,FR,CM,201812,1,2,138715,12868 -910,FR,CM,201812,1,2,28064,2434 -910,FR,CM,201812,1,2,8526,662 -910,FR,CM,201812,1,2,1245493,156637 -910,FR,CM,201812,1,2,19710,205 -910,FR,CM,201812,1,2,43265,32511 -910,FR,CM,201812,1,2,7400,14330 -910,FR,CM,201812,1,2,2900,1850 -910,FR,CM,201812,1,2,302799,59300 -910,FR,CM,201812,1,2,2230,4870 -910,FR,CM,201812,4,2,132265,6707 -910,FR,CM,201812,4,2,18955,302 -910,FR,CM,201812,4,2,35250,1424 -910,FR,CM,201812,4,2,31127,1200 -920,FR,CM,201812,1,2,50274,30314 -920,FR,CM,201812,1,2,13122,8760 -920,FR,CM,201812,1,2,30184,7832 -920,FR,CM,201812,1,2,146774,1542 -920,FR,CM,201812,4,2,5604,68 -931,FR,CM,201812,3,1,1473,19 -931,FR,CM,201812,4,1,3782,33 -931,FR,CM,201812,4,1,8375,0 -931,FR,CM,201812,0,2,1967,11 -931,FR,CM,201812,1,2,1044865,122361 -931,FR,CM,201812,1,2,420,2 -931,FR,CM,201812,1,2,95006,70 -931,FR,CM,201812,1,2,4229,85 -931,FR,CM,201812,1,2,56387,3448 -931,FR,CM,201812,1,2,11821,4610 -931,FR,CM,201812,1,2,19273,765 -931,FR,CM,201812,1,2,2696,213 -931,FR,CM,201812,1,2,748327,61829 -931,FR,CM,201812,1,2,53086,4505 -931,FR,CM,201812,1,2,1299,49 -931,FR,CM,201812,1,2,314674,20230 -931,FR,CM,201812,3,2,3417,57 -931,FR,CM,201812,3,2,37950,300 -931,FR,CM,201812,4,2,3377416,30417 -931,FR,CM,201812,4,2,98821,726 -931,FR,CM,201812,4,2,1082,34 -931,FR,CM,201812,4,2,10001,369 -931,FR,CM,201812,4,2,31819,739 -931,FR,CM,201812,4,2,69561,1936 -931,FR,CM,201812,4,2,1866,8 -931,FR,CM,201812,4,2,11702,360 -931,FR,CM,201812,4,2,74027,3730 -931,FR,CM,201812,4,2,1399,12 -931,FR,CM,201812,5,2,1474,24 -939,FR,CM,201812,3,1,2263,46 -939,FR,CM,201812,0,2,4273,24 -939,FR,CM,201812,1,2,1098548,52300 -939,FR,CM,201812,1,2,17205,736 -939,FR,CM,201812,1,2,9800,426 -939,FR,CM,201812,1,2,43331,1521 -939,FR,CM,201812,1,2,421672,57185 -939,FR,CM,201812,1,2,101479,4160 -939,FR,CM,201812,1,2,10190,183 -939,FR,CM,201812,1,2,633379,53142 -939,FR,CM,201812,1,2,2500,5000 -939,FR,CM,201812,1,2,2473,597 -939,FR,CM,201812,1,2,23659,2680 -939,FR,CM,201812,1,2,260684,33215 -939,FR,CM,201812,3,2,25602,1780 -939,FR,CM,201812,4,2,2072025,32684 -939,FR,CM,201812,4,2,171812,1779 -939,FR,CM,201812,4,2,6318,50 -939,FR,CM,201812,4,2,63764,1485 -939,FR,CM,201812,4,2,5379,321 -939,FR,CM,201812,4,2,101025,3304 -939,FR,CM,201812,4,2,27051,212 -939,FR,CM,201812,4,2,6177,294 -939,FR,CM,201812,4,2,5651,16 -939,FR,CM,201812,4,2,104651,8062 -941,FR,CM,201812,1,2,45532,16836 -941,FR,CM,201812,1,2,13867,1089 -941,FR,CM,201812,1,2,119635,8473 -941,FR,CM,201812,1,2,6500,971 -941,FR,CM,201812,1,2,767500,440000 -941,FR,CM,201812,1,2,172901,12903 -941,FR,CM,201812,1,2,534451,50603 -941,FR,CM,201812,1,2,834254,221642 -941,FR,CM,201812,1,2,121804,25020 -941,FR,CM,201812,4,2,1004,130 -949,FR,CM,201812,4,1,5147,1120 -949,FR,CM,201812,4,1,28,4 -949,FR,CM,201812,4,1,598,175 -949,FR,CM,201812,0,2,719,1 -949,FR,CM,201812,1,2,650437,62191 -949,FR,CM,201812,1,2,3737,2569 -949,FR,CM,201812,1,2,3300,131 -949,FR,CM,201812,1,2,1900,116 -949,FR,CM,201812,1,2,130,3 -949,FR,CM,201812,1,2,75256,7357 -949,FR,CM,201812,1,2,6481,930 -949,FR,CM,201812,1,2,14830,1105 -949,FR,CM,201812,1,2,46142,24852 -949,FR,CM,201812,1,2,175199,15654 -949,FR,CM,201812,4,2,35766,1182 -949,FR,CM,201812,4,2,24534,1409 -949,FR,CM,201812,4,2,60172,7245 -949,FR,CM,201812,4,2,2360,228 -949,FR,CM,201812,4,2,20168,45 -949,FR,CM,201812,4,2,2848,330 -949,FR,CM,201812,5,2,25,0 -951,FR,CM,201812,1,2,10279,608 -951,FR,CM,201812,1,2,679,180 -951,FR,CM,201812,4,2,31,0 -951,FR,CM,201812,4,2,1557,50 -952,FR,CM,201812,1,2,143271,36125 -952,FR,CM,201812,1,2,7247,1509 -952,FR,CM,201812,1,2,44492,82918 -952,FR,CM,201812,1,2,6686,346 -952,FR,CM,201812,3,2,4367,707 -952,FR,CM,201812,4,2,11248,828 -952,FR,CM,201812,4,2,9779,13 -952,FR,CM,201812,4,2,1921,20 -952,FR,CM,201812,4,2,1916,80 -962,FR,CM,201812,4,1,2530,8 -962,FR,CM,201812,1,2,11083,1695 -962,FR,CM,201812,1,2,2754,1000 -962,FR,CM,201812,1,2,2010,300 -962,FR,CM,201812,1,2,900,20 -962,FR,CM,201812,1,2,2402,1918 -962,FR,CM,201812,1,2,41590,11296 -962,FR,CM,201812,4,2,16057,534 -962,FR,CM,201812,4,2,1399,250 -962,FR,CM,201812,4,2,87940,704 -962,FR,CM,201812,4,2,1628,17 -963,FR,CM,201812,3,1,2703,91 -963,FR,CM,201812,4,1,205,76 -963,FR,CM,201812,4,1,435,110 -963,FR,CM,201812,4,1,10584,75 -963,FR,CM,201812,0,2,235,4 -963,FR,CM,201812,1,2,72937,11279 -963,FR,CM,201812,1,2,4754,809 -963,FR,CM,201812,1,2,1828,103 -963,FR,CM,201812,1,2,363,272 -963,FR,CM,201812,1,2,184412,6599 -963,FR,CM,201812,1,2,243493,26910 -963,FR,CM,201812,4,2,245935,3172 -963,FR,CM,201812,4,2,6525,47 -963,FR,CM,201812,4,2,164238,1614 -971,FR,CM,201812,1,2,55314,4246 -971,FR,CM,201812,1,2,10576,1425 -971,FR,CM,201812,1,2,1500,51 -971,FR,CM,201812,1,2,65453,14063 -971,FR,CM,201812,1,2,1346,253 -971,FR,CM,201812,4,2,7639,42 -971,FR,CM,201812,4,2,3855,49 -972,FR,CM,201812,1,2,4510,774 -972,FR,CM,201812,1,2,23112,28107 -972,FR,CM,201812,4,2,1393,150 -973,FR,CM,201812,0,2,620,19 -973,FR,CM,201812,1,2,67137,16879 -973,FR,CM,201812,1,2,218430,235237 -973,FR,CM,201812,1,2,38122,72909 -973,FR,CM,201812,1,2,13315,4496 -973,FR,CM,201812,1,2,12720,14602 -973,FR,CM,201812,1,2,137,5 -973,FR,CM,201812,1,2,70175,29098 -973,FR,CM,201812,4,2,33473,1918 -973,FR,CM,201812,4,2,2369,210 -973,FR,CM,201812,4,2,145,45 -973,FR,CM,201812,4,2,17502,1703 -973,FR,CM,201812,4,2,3200,5200 -974,FR,CM,201812,0,2,2094,44 -974,FR,CM,201812,1,2,148222,21598 -974,FR,CM,201812,1,2,11513,900 -974,FR,CM,201812,1,2,2002,150 -974,FR,CM,201812,1,2,6961,601 -974,FR,CM,201812,1,2,1500,12000 -974,FR,CM,201812,1,2,474,288 -974,FR,CM,201812,3,2,411,57 -974,FR,CM,201812,4,2,1151179,12519 -974,FR,CM,201812,4,2,1143,209 -974,FR,CM,201812,4,2,11,3 -974,FR,CM,201812,4,2,142197,1150 -974,FR,CM,201812,4,2,2,2 -975,FR,CM,201812,1,2,25901,7104 -975,FR,CM,201812,1,2,189489,9168 -975,FR,CM,201812,1,2,112529,7912 -975,FR,CM,201812,1,2,1090,62 -975,FR,CM,201812,1,2,41157,32851 -975,FR,CM,201812,4,2,687,50 -975,FR,CM,201812,4,2,300,75 -976,FR,CM,201812,1,1,53678,38600 -976,FR,CM,201812,1,1,53686,22283 -976,FR,CM,201812,1,1,26995,19774 -976,FR,CM,201812,3,1,324,13 -976,FR,CM,201812,4,1,469,28 -976,FR,CM,201812,4,1,891,505 -976,FR,CM,201812,4,1,2057,1370 -976,FR,CM,201812,1,2,1527,134 -976,FR,CM,201812,1,2,2670,18480 -976,FR,CM,201812,1,2,284662,34145 -976,FR,CM,201812,4,2,23,0 -976,FR,CM,201812,4,2,2350,10 -979,FR,CM,201812,3,1,1243,23 -979,FR,CM,201812,4,1,38,0 -979,FR,CM,201812,0,2,10150,87 -979,FR,CM,201812,1,2,528235,31624 -979,FR,CM,201812,1,2,320,81 -979,FR,CM,201812,1,2,11298,3132 -979,FR,CM,201812,1,2,1500,300 -979,FR,CM,201812,1,2,4491,198 -979,FR,CM,201812,1,2,2900,1220 -979,FR,CM,201812,1,2,412067,126777 -979,FR,CM,201812,1,2,81312,5377 -979,FR,CM,201812,1,2,15520,8659 -979,FR,CM,201812,1,2,95560,13876 -979,FR,CM,201812,1,2,7232,883 -979,FR,CM,201812,1,2,182290,27003 -979,FR,CM,201812,3,2,6128,35 -979,FR,CM,201812,3,2,33867,2151 -979,FR,CM,201812,3,2,351,1262 -979,FR,CM,201812,4,2,367856,3902 -979,FR,CM,201812,4,2,15642,256 -979,FR,CM,201812,4,2,3482,140 -979,FR,CM,201812,4,2,30749,213 -979,FR,CM,201812,4,2,28800,1223 -979,FR,CM,201812,4,2,12000,10 -979,FR,CM,201812,4,2,42074,72 -979,FR,CM,201812,4,2,86380,794 -979,FR,CM,201812,4,2,10132,523 -979,FR,CM,201812,4,2,5610,15 -979,FR,CM,201812,4,2,38,1 -979,FR,CM,201812,4,2,62507,1830 -979,FR,CM,201812,4,2,1736,2 -979,FR,CM,201812,5,2,978,14 -999,FR,CM,201812,1,1,13195,0 -999,FR,CM,201812,4,1,4367,0 -999,FR,CM,201812,4,1,2049,0 -999,FR,CM,201812,4,1,5000,0 -999,FR,CM,201812,1,2,29040,3489 -999,FR,CM,201812,1,2,16070,0 -999,FR,CM,201812,1,2,626084,3001792 -999,FR,CM,201812,1,2,732473,341600 -999,FR,CM,201812,1,2,500,0 -999,FR,CM,201812,1,2,6200,0 -999,FR,CM,201812,1,2,150651,70488 -999,FR,CM,201812,1,2,61459,0 -999,FR,CM,201812,1,2,5900,0 -999,FR,CM,201812,1,2,115987,48000 -999,FR,CM,201812,1,2,335,0 -999,FR,CM,201812,4,2,13432,152 -999,FR,CM,201812,4,2,12850,0 -999,FR,CM,201812,4,2,1,0 -999,FR,CM,201812,4,2,451,0 -999,FR,CM,201812,4,2,1275,260 -051,FR,CF,201812,0,1,61078,158100 -051,FR,CF,201812,1,1,216892,442239 -055,FR,CF,201812,1,1,3426,6652 -055,FR,CF,201812,1,1,30548,56302 -056,FR,CF,201812,1,1,25372,20505 -121,FR,CF,201812,1,2,37265,10716 -121,FR,CF,201812,1,2,35500,10335 -121,FR,CF,201812,4,2,1790,96 -121,FR,CF,201812,4,2,10886,472 -125,FR,CF,201812,4,2,5493,179 -131,FR,CF,201812,1,2,3865,450 -131,FR,CF,201812,4,2,381,7 -132,FR,CF,201812,1,2,545,83 -133,FR,CF,201812,1,2,583,26 -136,FR,CF,201812,1,2,448,40 -139,FR,CF,201812,1,2,108980,60110 -139,FR,CF,201812,1,2,166578,81539 -139,FR,CF,201812,4,2,11445,3003 -139,FR,CF,201812,4,2,38562,11153 -141,FR,CF,201812,1,2,15693,24330 -144,FR,CF,201812,1,2,66,18 -144,FR,CF,201812,1,2,500,9500 -146,FR,CF,201812,1,2,27191,22801 -163,FR,CF,201812,1,2,23709,12784 -164,FR,CF,201812,1,2,4196,5400 -179,FR,CF,201812,1,2,1573,1781 -341,FR,CF,201812,1,2,18497,8558 -568,FR,CF,201812,1,2,41882,5870 -568,FR,CF,201812,4,2,28725,3913 -612,FR,CF,201812,1,2,2627,6000 -819,FR,CF,201812,1,2,8749,2750 -819,FR,CF,201812,1,2,33010,14592 -891,FR,CF,201812,1,2,1612,90 -891,FR,CF,201812,1,2,34835,3759 -893,FR,CF,201812,1,2,1157,240 -893,FR,CF,201812,1,2,1905,1230 -893,FR,CF,201812,4,2,18803,302 -896,FR,CF,201812,4,1,300,40 -896,FR,CF,201812,0,2,148,2 -896,FR,CF,201812,1,2,28725,11600 -896,FR,CF,201812,1,2,890,256 -896,FR,CF,201812,4,2,59105,379 -896,FR,CF,201812,4,2,1766,30 -910,FR,CF,201812,4,1,6629,2 -910,FR,CF,201812,1,2,13763,21850 -910,FR,CF,201812,1,2,130355,4410 -910,FR,CF,201812,1,2,1550,2360 -910,FR,CF,201812,4,2,45411,788 -910,FR,CF,201812,4,2,8300,71 -910,FR,CF,201812,4,2,2255,80 -920,FR,CF,201812,4,2,13897,155 -931,FR,CF,201812,0,2,4671,92 -931,FR,CF,201812,1,2,80197,13335 -931,FR,CF,201812,1,2,116894,2112 -931,FR,CF,201812,1,2,15876,1586 -931,FR,CF,201812,4,2,205480,2725 -931,FR,CF,201812,4,2,723,1 -931,FR,CF,201812,4,2,7078,90 -931,FR,CF,201812,4,2,1355,1 -931,FR,CF,201812,4,2,6540,186 -931,FR,CF,201812,4,2,33,0 -931,FR,CF,201812,4,2,4644,260 -939,FR,CF,201812,1,2,222812,11728 -939,FR,CF,201812,1,2,336030,38605 -939,FR,CF,201812,3,2,15,0 -939,FR,CF,201812,4,2,187324,3893 -939,FR,CF,201812,4,2,3090,12 -939,FR,CF,201812,4,2,2935,220 -939,FR,CF,201812,4,2,4770,20 -941,FR,CF,201812,1,2,4547,4000 -949,FR,CF,201812,3,1,114,4 -949,FR,CF,201812,1,2,63455,16676 -949,FR,CF,201812,1,2,93034,4611 -949,FR,CF,201812,1,2,95,78 -952,FR,CF,201812,1,2,222,68 -952,FR,CF,201812,4,2,9236,7 -962,FR,CF,201812,4,2,1366,350 -963,FR,CF,201812,3,1,891,15 -963,FR,CF,201812,1,2,280,20 -963,FR,CF,201812,4,2,22286,444 -963,FR,CF,201812,4,2,1922,28 -963,FR,CF,201812,4,2,3900,48 -963,FR,CF,201812,4,2,22315,198 -963,FR,CF,201812,4,2,19,0 -971,FR,CF,201812,4,2,11165,640 -973,FR,CF,201812,1,2,14098,1535 -973,FR,CF,201812,1,2,13996,6294 -973,FR,CF,201812,4,2,2540,85 -973,FR,CF,201812,4,2,9,0 -974,FR,CF,201812,0,2,58,16 -974,FR,CF,201812,1,2,81,118 -974,FR,CF,201812,4,2,220,6 -975,FR,CF,201812,1,2,7705,1000 -975,FR,CF,201812,4,2,15,35 -979,FR,CF,201812,4,1,475,1 -979,FR,CF,201812,0,2,145,10 -979,FR,CF,201812,1,2,13744,2942 -979,FR,CF,201812,1,2,1724,545 -979,FR,CF,201812,4,2,24775,572 -979,FR,CF,201812,4,2,16562,145 -979,FR,CF,201812,4,2,121,1 -999,FR,CF,201812,4,1,1,0 -999,FR,CF,201812,1,2,59718,9065 -999,FR,CF,201812,4,2,32186,0 -999,FR,CF,201812,4,2,600,0 -999,FR,CF,201812,4,2,1,0 -999,FR,CF,201812,4,2,880,0 -035,FR,GQ,201812,4,2,726,1 -039,FR,GQ,201812,4,2,1828,1 -099,FR,GQ,201812,4,2,7800,592 -112,FR,GQ,201812,1,2,77790,130506 -121,FR,GQ,201812,1,2,14672,8736 -121,FR,GQ,201812,4,2,6803,203 -121,FR,GQ,201812,4,2,2555,64 -125,FR,GQ,201812,1,2,1610,387 -125,FR,GQ,201812,1,2,14104,11630 -125,FR,GQ,201812,1,2,19400,12428 -128,FR,GQ,201812,1,2,17086,3775 -132,FR,GQ,201812,1,2,9665,2163 -132,FR,GQ,201812,4,2,55,9 -133,FR,GQ,201812,4,2,155,1925 -139,FR,GQ,201812,1,2,28350,7133 -139,FR,GQ,201812,1,2,67749,22497 -139,FR,GQ,201812,1,2,8327,500 -139,FR,GQ,201812,1,2,65111,7956 -141,FR,GQ,201812,1,2,27380,24000 -141,FR,GQ,201812,1,2,34968,31982 -141,FR,GQ,201812,1,2,110830,74032 -141,FR,GQ,201812,1,2,42633,53895 -142,FR,GQ,201812,1,2,1854,97 -143,FR,GQ,201812,1,2,15248,5117 -143,FR,GQ,201812,1,2,18988,19772 -144,FR,GQ,201812,1,2,56470,6866 -144,FR,GQ,201812,1,2,13248,3052 -144,FR,GQ,201812,1,2,23504,21506 -145,FR,GQ,201812,1,2,228,120 -147,FR,GQ,201812,1,2,13622,4298 -148,FR,GQ,201812,1,2,2059,375 -161,FR,GQ,201812,1,2,12103,23825 -163,FR,GQ,201812,1,2,12986,2747 -164,FR,GQ,201812,3,2,550,168 -166,FR,GQ,201812,1,2,5251,4490 -166,FR,GQ,201812,1,2,25593,13872 -341,FR,GQ,201812,1,2,29509,11490 -892,FR,GQ,201812,4,2,235,120 -893,FR,GQ,201812,0,2,2144,43 -893,FR,GQ,201812,4,2,55087,813 -893,FR,GQ,201812,4,2,390,66 -896,FR,GQ,201812,4,2,63,10 -896,FR,GQ,201812,4,2,840,1 -910,FR,GQ,201812,1,2,9579,1923 -910,FR,GQ,201812,1,2,250,2240 -910,FR,GQ,201812,1,2,9000,2200 -910,FR,GQ,201812,4,2,77847,2825 -920,FR,GQ,201812,1,2,200,2500 -931,FR,GQ,201812,1,2,4488676,321727 -931,FR,GQ,201812,1,2,1100,800 -931,FR,GQ,201812,1,2,320429,7169 -931,FR,GQ,201812,1,2,125956,14312 -931,FR,GQ,201812,4,2,7800,166 -931,FR,GQ,201812,4,2,2108,90 -939,FR,GQ,201812,1,2,6415867,208335 -939,FR,GQ,201812,1,2,28000,228 -939,FR,GQ,201812,1,2,11200,604 -939,FR,GQ,201812,1,2,149988,375 -939,FR,GQ,201812,4,2,35215,719 -939,FR,GQ,201812,4,2,1407,12 -939,FR,GQ,201812,4,2,18643,358 -939,FR,GQ,201812,4,2,2000,80 -949,FR,GQ,201812,1,2,34,70 -949,FR,GQ,201812,1,2,3800,60 -949,FR,GQ,201812,4,2,3443,225 -951,FR,GQ,201812,4,2,3520,120 -952,FR,GQ,201812,4,2,2432,375 -962,FR,GQ,201812,4,2,2223,155 -962,FR,GQ,201812,4,2,13654,1171 -963,FR,GQ,201812,1,2,9560,235 -963,FR,GQ,201812,4,2,6460,70 -972,FR,GQ,201812,1,2,447,216 -973,FR,GQ,201812,1,2,4277,2521 -973,FR,GQ,201812,4,2,19364,1250 -973,FR,GQ,201812,4,2,4683,220 -973,FR,GQ,201812,4,2,348,0 -974,FR,GQ,201812,1,2,9,15 -974,FR,GQ,201812,4,2,50,11 -975,FR,GQ,201812,1,2,4895,750 -975,FR,GQ,201812,4,2,17891,2540 -979,FR,GQ,201812,1,2,944,45 -979,FR,GQ,201812,4,2,32006,290 -979,FR,GQ,201812,4,2,104345,99 -979,FR,GQ,201812,4,2,89424,3242 -979,FR,GQ,201812,4,2,10290,340 -999,FR,GQ,201812,3,1,135,0 -999,FR,GQ,201812,4,1,2995,0 -999,FR,GQ,201812,1,2,4627,3000 -999,FR,GQ,201812,1,2,98889,48592 -999,FR,GQ,201812,1,2,2200,0 -999,FR,GQ,201812,4,2,5324,51 -049,FR,ST,201812,1,2,16945,10790 -132,FR,ST,201812,1,1,123457,3960 -132,FR,ST,201812,4,1,15309,472 -133,FR,ST,201812,1,1,182546,14000 -893,FR,ST,201812,0,2,148,1 -910,FR,ST,201812,1,2,2,0 -931,FR,ST,201812,0,2,264,3 -973,FR,ST,201812,4,2,5653,320 -001,FR,GA,201812,4,2,22733,610 -011,FR,GA,201812,1,2,2393197,11500000 -016,FR,GA,201812,1,2,20,4 -019,FR,GA,201812,1,2,23,3 -020,FR,GA,201812,1,2,5511,6200 -020,FR,GA,201812,1,2,7042,13065 -031,FR,GA,201812,1,2,15012,11458 -031,FR,GA,201812,1,2,1867,939 -035,FR,GA,201812,1,2,156,7 -035,FR,GA,201812,1,2,48503,29943 -035,FR,GA,201812,1,2,12744,9456 -039,FR,GA,201812,1,2,56885,62109 -039,FR,GA,201812,1,2,22717,22443 -039,FR,GA,201812,1,2,12156,16711 -039,FR,GA,201812,4,2,60221,12145 -039,FR,GA,201812,4,2,23446,5801 -039,FR,GA,201812,4,2,21671,5160 -039,FR,GA,201812,4,2,624,193 -045,FR,GA,201812,1,2,67,12 -049,FR,GA,201812,1,2,1613,1800 -049,FR,GA,201812,1,2,573,425 -049,FR,GA,201812,1,2,59619,23573 -049,FR,GA,201812,1,2,46232,22216 -049,FR,GA,201812,1,2,87023,95932 -049,FR,GA,201812,1,2,56727,20143 -056,FR,GA,201812,1,1,436135,568043 -056,FR,GA,201812,1,1,21702,25165 -092,FR,GA,201812,1,1,295406,226800 -092,FR,GA,201812,4,2,1433,7 -099,FR,GA,201812,1,2,1886,56 -099,FR,GA,201812,4,2,60196,1535 -099,FR,GA,201812,4,2,2101,691 -111,FR,GA,201812,4,2,30,12 -112,FR,GA,201812,1,2,162,1 -121,FR,GA,201812,1,2,23239,2907 -121,FR,GA,201812,1,2,429,86 -121,FR,GA,201812,1,2,17931,936 -121,FR,GA,201812,1,2,565414,223736 -121,FR,GA,201812,1,2,4957,1910 -121,FR,GA,201812,1,2,809,248 -121,FR,GA,201812,1,2,12953,2969 -121,FR,GA,201812,1,2,86368,18090 -121,FR,GA,201812,1,2,3453,1247 -121,FR,GA,201812,4,2,31322,812 -121,FR,GA,201812,4,2,1522,81 -121,FR,GA,201812,4,2,758,27 -121,FR,GA,201812,4,2,500,14 -122,FR,GA,201812,1,2,460,116 -122,FR,GA,201812,1,2,1333,847 -122,FR,GA,201812,1,2,1714,1063 -122,FR,GA,201812,1,2,98789,151430 -125,FR,GA,201812,1,2,13140,5662 -125,FR,GA,201812,1,2,132,8 -125,FR,GA,201812,1,2,16896,3754 -125,FR,GA,201812,1,2,22694,21249 -125,FR,GA,201812,1,2,56257,18043 -125,FR,GA,201812,1,2,83,41 -125,FR,GA,201812,1,2,1541,534 -125,FR,GA,201812,1,2,2803,729 -125,FR,GA,201812,1,2,853,313 -125,FR,GA,201812,4,2,8986,76 -128,FR,GA,201812,1,2,46437,63649 -128,FR,GA,201812,1,2,13335,13373 -128,FR,GA,201812,1,2,402,2520 -128,FR,GA,201812,4,2,334,644 -131,FR,GA,201812,1,2,460,30 -131,FR,GA,201812,1,2,1271,130 -132,FR,GA,201812,1,2,198,18 -132,FR,GA,201812,1,2,96711,21282 -132,FR,GA,201812,1,2,47696,20502 -132,FR,GA,201812,1,2,32581,15661 -132,FR,GA,201812,1,2,39164,17808 -132,FR,GA,201812,4,2,1,0 -132,FR,GA,201812,4,2,5126,900 -133,FR,GA,201812,1,2,5170,1081 -133,FR,GA,201812,1,2,895,117 -133,FR,GA,201812,1,2,23697,1674 -133,FR,GA,201812,1,2,1824,181 -136,FR,GA,201812,1,2,15128,3132 -136,FR,GA,201812,1,2,6816,3938 -136,FR,GA,201812,1,2,1380,1301 -136,FR,GA,201812,4,2,449,80 -139,FR,GA,201812,1,2,81955,10355 -139,FR,GA,201812,1,2,46265,16040 -139,FR,GA,201812,1,2,575933,206010 -139,FR,GA,201812,1,2,1044,32 -139,FR,GA,201812,1,2,13741,7667 -139,FR,GA,201812,1,2,1082200,257558 -139,FR,GA,201812,1,2,87407,50226 -139,FR,GA,201812,1,2,3851,3612 -139,FR,GA,201812,4,2,213819,33897 -139,FR,GA,201812,4,2,85292,15656 -139,FR,GA,201812,4,2,6994,1733 -139,FR,GA,201812,4,2,1352,46 -139,FR,GA,201812,4,2,15050,2357 -139,FR,GA,201812,4,2,535,72 -141,FR,GA,201812,1,2,319909,193670 -141,FR,GA,201812,1,2,28809,24794 -141,FR,GA,201812,1,2,75991,54030 -141,FR,GA,201812,1,2,441472,358469 -141,FR,GA,201812,1,2,43765,54000 -141,FR,GA,201812,1,2,40970,25000 -141,FR,GA,201812,1,2,43480,54000 -141,FR,GA,201812,4,2,76026,7005 -141,FR,GA,201812,4,2,5114,534 -141,FR,GA,201812,4,2,4017,412 -142,FR,GA,201812,1,2,60,5 -142,FR,GA,201812,4,2,38946,2966 -142,FR,GA,201812,4,2,687,22 -142,FR,GA,201812,4,2,4168,489 -143,FR,GA,201812,1,2,123475,104810 -143,FR,GA,201812,1,2,32845,24122 -143,FR,GA,201812,1,2,10685,22897 -143,FR,GA,201812,1,2,2928,3751 -143,FR,GA,201812,4,2,43,17 -144,FR,GA,201812,1,2,218500,34933 -144,FR,GA,201812,1,2,141419,27251 -144,FR,GA,201812,4,2,18521,3278 -144,FR,GA,201812,4,2,6786,1186 -144,FR,GA,201812,4,2,1259,151 -145,FR,GA,201812,1,2,15059,5282 -145,FR,GA,201812,1,2,6598,2640 -146,FR,GA,201812,1,2,4727,3111 -147,FR,GA,201812,1,2,17,3 -147,FR,GA,201812,1,2,337156,119255 -147,FR,GA,201812,1,2,389694,188017 -147,FR,GA,201812,4,2,21031,1036 -147,FR,GA,201812,4,2,9400,655 -148,FR,GA,201812,1,2,43973,6269 -148,FR,GA,201812,1,2,42813,23677 -148,FR,GA,201812,1,2,26437,17130 -148,FR,GA,201812,4,2,778,0 -148,FR,GA,201812,4,2,806,0 -161,FR,GA,201812,1,2,11153,17006 -162,FR,GA,201812,1,2,96953,227080 -163,FR,GA,201812,1,2,549,198 -163,FR,GA,201812,1,2,28823,9278 -163,FR,GA,201812,1,2,214295,69303 -163,FR,GA,201812,1,2,24333,13870 -163,FR,GA,201812,1,2,174747,35734 -163,FR,GA,201812,1,2,362549,204513 -163,FR,GA,201812,1,2,5931,5825 -163,FR,GA,201812,1,2,35677,21033 -163,FR,GA,201812,4,2,6928,1640 -164,FR,GA,201812,1,2,6661,2408 -164,FR,GA,201812,1,2,8704,7500 -164,FR,GA,201812,1,2,10692,4189 -164,FR,GA,201812,4,2,2603,756 -166,FR,GA,201812,1,2,1353,233 -166,FR,GA,201812,1,2,3220,1250 -166,FR,GA,201812,1,2,222789,177860 -166,FR,GA,201812,1,2,2646,1880 -166,FR,GA,201812,1,2,117068,104697 -166,FR,GA,201812,1,2,146739,113070 -166,FR,GA,201812,1,2,8849,7710 -166,FR,GA,201812,1,2,78601,75801 -179,FR,GA,201812,1,2,11960,1310 -179,FR,GA,201812,1,2,1154,570 -179,FR,GA,201812,1,2,67527,92926 -179,FR,GA,201812,1,2,344,161 -179,FR,GA,201812,1,2,18685,18808 -179,FR,GA,201812,1,2,92522,61347 -182,FR,GA,201812,1,2,663,56 -182,FR,GA,201812,1,2,3033,1810 -182,FR,GA,201812,1,2,13749,17073 -182,FR,GA,201812,1,2,8502,6900 -182,FR,GA,201812,1,2,19897,19719 -182,FR,GA,201812,1,2,176547,156723 -182,FR,GA,201812,1,2,1836,2201 -224,FR,GA,201812,1,2,360,3640 -321,FR,GA,201812,4,2,43,1 -323,FR,GA,201812,1,2,5100,3044 -330,FR,GA,201812,4,2,818,8 -341,FR,GA,201812,1,2,59232,29370 -341,FR,GA,201812,1,2,3000,144 -341,FR,GA,201812,1,2,337085,210421 -341,FR,GA,201812,1,2,73484,56277 -341,FR,GA,201812,3,2,2,0 -341,FR,GA,201812,4,2,13,0 -341,FR,GA,201812,4,2,425,2 -343,FR,GA,201812,1,2,6964,5150 -455,FR,GA,201812,1,1,137610,442760 -513,FR,GA,201812,1,1,144129,215225 -522,FR,GA,201812,1,2,2186,60 -522,FR,GA,201812,1,2,300,30 -522,FR,GA,201812,4,2,833,5 -532,FR,GA,201812,1,2,31076,20705 -533,FR,GA,201812,1,2,213,10 -542,FR,GA,201812,1,2,1103,136 -543,FR,GA,201812,1,2,13623,8313 -551,FR,GA,201812,1,2,8747,943 -551,FR,GA,201812,1,2,45009,16709 -551,FR,GA,201812,1,2,17037,5059 -551,FR,GA,201812,1,2,15650,2920 -551,FR,GA,201812,3,2,483,47 -551,FR,GA,201812,4,2,41115,3708 -552,FR,GA,201812,1,2,66279,15430 -552,FR,GA,201812,1,2,222,28 -552,FR,GA,201812,4,2,6419,55 -565,FR,GA,201812,1,2,2525,214 -565,FR,GA,201812,1,2,2603,183 -568,FR,GA,201812,1,2,38610,3411 -568,FR,GA,201812,1,2,11979,490 -568,FR,GA,201812,1,2,1651,1980 -611,FR,GA,201812,1,2,10314,42500 -611,FR,GA,201812,1,2,5100,24000 -612,FR,GA,201812,1,2,2617,1250 -621,FR,GA,201812,1,2,3324,222 -621,FR,GA,201812,4,2,58,5 -633,FR,GA,201812,1,2,126253,5030000 -639,FR,GA,201812,1,2,96,5 -641,FR,GA,201812,1,2,10838,51200 -650,FR,GA,201812,1,2,8878,51000 -691,FR,GA,201812,4,1,305,596 -691,FR,GA,201812,1,2,3085,44 -691,FR,GA,201812,1,2,7359,32308 -691,FR,GA,201812,1,2,17328,21168 -691,FR,GA,201812,1,2,15000,13865 -691,FR,GA,201812,3,2,5546,76 -691,FR,GA,201812,4,2,10050,155 -691,FR,GA,201812,4,2,247,2 -692,FR,GA,201812,1,2,2915,8144 -692,FR,GA,201812,1,2,2798,3861 -811,FR,GA,201812,4,2,698,30 -813,FR,GA,201812,1,2,325,23 -813,FR,GA,201812,1,2,15408,96000 -819,FR,GA,201812,1,2,4774,581 -819,FR,GA,201812,1,2,475,85 -819,FR,GA,201812,1,2,1988,4920 -819,FR,GA,201812,4,2,4584,15 -819,FR,GA,201812,4,2,54038,17820 -891,FR,GA,201812,0,2,733,23 -891,FR,GA,201812,1,2,68840,10858 -891,FR,GA,201812,1,2,205437,114600 -891,FR,GA,201812,1,2,920,291 -891,FR,GA,201812,1,2,77,5 -891,FR,GA,201812,1,2,122,146 -891,FR,GA,201812,4,2,34124,450 -891,FR,GA,201812,4,2,9674,125 -891,FR,GA,201812,4,2,2120,33 -891,FR,GA,201812,4,2,4318,186 -891,FR,GA,201812,4,2,1841,38 -892,FR,GA,201812,1,2,39508,10539 -892,FR,GA,201812,1,2,109,480 -892,FR,GA,201812,1,2,38635,9974 -892,FR,GA,201812,4,2,739,107 -892,FR,GA,201812,4,2,196,15 -892,FR,GA,201812,4,2,500,60 -893,FR,GA,201812,4,1,1079,2 -893,FR,GA,201812,0,2,2430,40 -893,FR,GA,201812,1,2,3076050,235828 -893,FR,GA,201812,1,2,11991,3199 -893,FR,GA,201812,1,2,85457,64982 -893,FR,GA,201812,1,2,33902,3265 -893,FR,GA,201812,1,2,7691,14334 -893,FR,GA,201812,1,2,15804,3512 -893,FR,GA,201812,1,2,364151,197094 -893,FR,GA,201812,1,2,15793,14174 -893,FR,GA,201812,1,2,119348,20229 -893,FR,GA,201812,4,2,872660,10612 -893,FR,GA,201812,4,2,39390,240 -893,FR,GA,201812,4,2,1465,160 -893,FR,GA,201812,4,2,44564,1150 -894,FR,GA,201812,4,2,1650,3 -896,FR,GA,201812,1,2,268220,37002 -896,FR,GA,201812,1,2,4726,183 -896,FR,GA,201812,1,2,29302,15569 -896,FR,GA,201812,1,2,40770,9900 -896,FR,GA,201812,1,2,2885,1365 -896,FR,GA,201812,1,2,7718,8558 -896,FR,GA,201812,4,2,117481,1981 -896,FR,GA,201812,4,2,20734,335 -896,FR,GA,201812,4,2,18546,136 -896,FR,GA,201812,4,2,4557,630 -896,FR,GA,201812,4,2,2844,12 -910,FR,GA,201812,3,1,1020,51 -910,FR,GA,201812,4,1,21266,267 -910,FR,GA,201812,1,2,140037,18504 -910,FR,GA,201812,1,2,34000,2620 -910,FR,GA,201812,1,2,92738,2600 -910,FR,GA,201812,1,2,153,34 -910,FR,GA,201812,1,2,3574,174 -910,FR,GA,201812,1,2,206744,11550 -910,FR,GA,201812,1,2,5703,15 -910,FR,GA,201812,1,2,4300,4400 -910,FR,GA,201812,1,2,12154,4359 -910,FR,GA,201812,1,2,8000,1100 -910,FR,GA,201812,1,2,1300,900 -910,FR,GA,201812,1,2,144095,43782 -910,FR,GA,201812,1,2,16631,6314 -910,FR,GA,201812,3,2,48098,3541 -910,FR,GA,201812,4,2,235516,2804 -910,FR,GA,201812,4,2,650,20 -910,FR,GA,201812,4,2,23315,186 -910,FR,GA,201812,4,2,6659,730 -920,FR,GA,201812,1,2,5229,1666 -920,FR,GA,201812,1,2,11976,3319 -920,FR,GA,201812,4,2,1761,70 -920,FR,GA,201812,4,2,75905,1370 -920,FR,GA,201812,4,2,1379,140 -920,FR,GA,201812,4,2,1999,130 -931,FR,GA,201812,3,1,245,7 -931,FR,GA,201812,4,1,322,25 -931,FR,GA,201812,4,1,59102,3 -931,FR,GA,201812,4,1,57271,46 -931,FR,GA,201812,0,2,8532,35 -931,FR,GA,201812,1,2,1037146,83963 -931,FR,GA,201812,1,2,234906,65995 -931,FR,GA,201812,1,2,491132,54489 -931,FR,GA,201812,1,2,623172,729 -931,FR,GA,201812,1,2,325021,46819 -931,FR,GA,201812,1,2,2622,345 -931,FR,GA,201812,1,2,339414,45313 -931,FR,GA,201812,1,2,161842,14885 -931,FR,GA,201812,1,2,34465,6645 -931,FR,GA,201812,1,2,60766,15189 -931,FR,GA,201812,3,2,566592,48126 -931,FR,GA,201812,4,2,1228769,13411 -931,FR,GA,201812,4,2,12163,146 -931,FR,GA,201812,4,2,158897,3144 -931,FR,GA,201812,4,2,10404,309 -931,FR,GA,201812,4,2,6836,42 -931,FR,GA,201812,4,2,20589,31 -931,FR,GA,201812,4,2,9650,16 -931,FR,GA,201812,4,2,6697,55 -931,FR,GA,201812,4,2,1054,4 -931,FR,GA,201812,4,2,365,12 -931,FR,GA,201812,4,2,99030,487 -931,FR,GA,201812,4,2,54845,4780 -931,FR,GA,201812,5,2,5752,143 -939,FR,GA,201812,3,1,30272,51 -939,FR,GA,201812,4,1,1585,115 -939,FR,GA,201812,4,1,324,1 -939,FR,GA,201812,4,1,48628,28 -939,FR,GA,201812,0,2,2129,14 -939,FR,GA,201812,1,2,1918463,80966 -939,FR,GA,201812,1,2,5714,271 -939,FR,GA,201812,1,2,615101,8843 -939,FR,GA,201812,1,2,180467,28584 -939,FR,GA,201812,1,2,26837,4640 -939,FR,GA,201812,1,2,86666,2315 -939,FR,GA,201812,1,2,119734,22932 -939,FR,GA,201812,1,2,626489,31527 -939,FR,GA,201812,1,2,199,30 -939,FR,GA,201812,1,2,33887,1631 -939,FR,GA,201812,1,2,171148,22126 -939,FR,GA,201812,1,2,6704,510 -939,FR,GA,201812,1,2,109,14 -939,FR,GA,201812,3,2,32702,1731 -939,FR,GA,201812,3,2,12842,56 -939,FR,GA,201812,4,2,1116303,23594 -939,FR,GA,201812,4,2,1204,3 -939,FR,GA,201812,4,2,7479,9 -939,FR,GA,201812,4,2,6146,200 -939,FR,GA,201812,4,2,168127,3135 -939,FR,GA,201812,4,2,33279,2674 -939,FR,GA,201812,4,2,434031,2367 -939,FR,GA,201812,4,2,24368,66 -939,FR,GA,201812,4,2,29800,93 -939,FR,GA,201812,4,2,13521,43 -939,FR,GA,201812,4,2,101779,2290 -939,FR,GA,201812,4,2,11729,51 -939,FR,GA,201812,4,2,116671,7690 -939,FR,GA,201812,4,2,1388,2 -941,FR,GA,201812,1,2,47062,8602 -941,FR,GA,201812,1,2,838,163 -941,FR,GA,201812,1,2,361397,92102 -941,FR,GA,201812,1,2,97175,46880 -941,FR,GA,201812,3,2,458,65 -941,FR,GA,201812,4,2,8937,173 -941,FR,GA,201812,4,2,24025,750 -949,FR,GA,201812,1,2,501291,106134 -949,FR,GA,201812,1,2,2043,20 -949,FR,GA,201812,1,2,185952,29429 -949,FR,GA,201812,1,2,2089,50 -949,FR,GA,201812,1,2,281,2 -949,FR,GA,201812,1,2,711844,40023 -949,FR,GA,201812,1,2,161897,91700 -949,FR,GA,201812,1,2,25394,3762 -949,FR,GA,201812,1,2,71332,6099 -949,FR,GA,201812,1,2,3215,866 -949,FR,GA,201812,1,2,651,2450 -949,FR,GA,201812,3,2,2803,58 -949,FR,GA,201812,3,2,165,31 -949,FR,GA,201812,4,2,163303,8508 -949,FR,GA,201812,4,2,5755,90 -949,FR,GA,201812,4,2,1900,60 -949,FR,GA,201812,4,2,13669,671 -949,FR,GA,201812,4,2,1875,92 -949,FR,GA,201812,4,2,8984,550 -949,FR,GA,201812,4,2,5751,920 -951,FR,GA,201812,1,2,22117,4532 -951,FR,GA,201812,1,2,150,3416 -951,FR,GA,201812,1,2,9455,1505 -951,FR,GA,201812,1,2,173,8 -951,FR,GA,201812,1,2,68,9 -951,FR,GA,201812,4,2,350,56 -951,FR,GA,201812,4,2,2478,30 -952,FR,GA,201812,1,2,77288,14707 -952,FR,GA,201812,1,2,488,180 -952,FR,GA,201812,1,2,553,62 -952,FR,GA,201812,1,2,1365,138 -952,FR,GA,201812,1,2,44372,58324 -952,FR,GA,201812,1,2,634,1347 -952,FR,GA,201812,1,2,1600,122 -952,FR,GA,201812,4,2,6662,460 -961,FR,GA,201812,1,2,2281,330 -961,FR,GA,201812,1,2,2284,570 -961,FR,GA,201812,1,2,5428,41 -962,FR,GA,201812,1,2,44300,4650 -962,FR,GA,201812,1,2,26868,890 -962,FR,GA,201812,1,2,2530,350 -962,FR,GA,201812,1,2,28563,4512 -962,FR,GA,201812,1,2,1542,224 -962,FR,GA,201812,1,2,1344,419 -962,FR,GA,201812,1,2,292,811 -962,FR,GA,201812,1,2,518,152 -962,FR,GA,201812,4,2,83206,984 -962,FR,GA,201812,4,2,11418,566 -963,FR,GA,201812,1,2,38919,20378 -963,FR,GA,201812,1,2,12311,644 -963,FR,GA,201812,1,2,657,24 -963,FR,GA,201812,1,2,1243,351 -963,FR,GA,201812,1,2,532,38 -963,FR,GA,201812,1,2,51208,6000 -963,FR,GA,201812,1,2,2202,821 -963,FR,GA,201812,1,2,5046,808 -963,FR,GA,201812,4,2,274842,4978 -963,FR,GA,201812,4,2,392,2 -963,FR,GA,201812,4,2,101815,1130 -963,FR,GA,201812,4,2,26300,1070 -963,FR,GA,201812,4,2,10790,761 -963,FR,GA,201812,4,2,32503,1267 -963,FR,GA,201812,4,2,50,3 -963,FR,GA,201812,4,2,5610,108 -963,FR,GA,201812,4,2,38942,420 -971,FR,GA,201812,1,2,557605,46155 -971,FR,GA,201812,1,2,16836,2509 -971,FR,GA,201812,1,2,35005,7620 -971,FR,GA,201812,1,2,16747,3475 -971,FR,GA,201812,1,2,2006,570 -971,FR,GA,201812,3,2,23,1 -971,FR,GA,201812,3,2,184,12 -971,FR,GA,201812,4,2,46729,2517 -971,FR,GA,201812,4,2,7152,676 -972,FR,GA,201812,1,2,44773,22985 -972,FR,GA,201812,1,2,12607,14479 -972,FR,GA,201812,1,2,18271,17092 -972,FR,GA,201812,1,2,71,35 -972,FR,GA,201812,1,2,9315,5131 -972,FR,GA,201812,4,2,69,15 -973,FR,GA,201812,1,2,100294,20055 -973,FR,GA,201812,1,2,43744,12588 -973,FR,GA,201812,1,2,35221,28271 -973,FR,GA,201812,1,2,67954,22618 -973,FR,GA,201812,1,2,9169,2607 -973,FR,GA,201812,1,2,33613,20986 -973,FR,GA,201812,1,2,37593,11000 -973,FR,GA,201812,1,2,9970,7154 -973,FR,GA,201812,4,2,32667,3843 -973,FR,GA,201812,4,2,6667,1836 -973,FR,GA,201812,4,2,2810,109 -973,FR,GA,201812,4,2,22882,958 -973,FR,GA,201812,4,2,50,3 -973,FR,GA,201812,4,2,1270,1540 -974,FR,GA,201812,3,1,81,1 -974,FR,GA,201812,0,2,971,5 -974,FR,GA,201812,1,2,39539,4115 -974,FR,GA,201812,1,2,1411,312 -974,FR,GA,201812,1,2,126,43 -974,FR,GA,201812,1,2,607,195 -974,FR,GA,201812,3,2,8079,188 -974,FR,GA,201812,4,2,92732,5259 -974,FR,GA,201812,4,2,1822,65 -974,FR,GA,201812,4,2,1995,40 -974,FR,GA,201812,4,2,1717,152 -974,FR,GA,201812,5,2,322,17 -975,FR,GA,201812,1,2,23920,4800 -975,FR,GA,201812,1,2,4319,290 -975,FR,GA,201812,1,2,11923,1436 -975,FR,GA,201812,1,2,227194,13070 -975,FR,GA,201812,1,2,7756,1007 -975,FR,GA,201812,1,2,17267,7694 -975,FR,GA,201812,1,2,30240,11435 -975,FR,GA,201812,1,2,7354,1060 -975,FR,GA,201812,4,2,15141,590 -976,FR,GA,201812,1,1,1557508,1509213 -976,FR,GA,201812,1,1,24549,14555 -976,FR,GA,201812,1,1,680622,724480 -976,FR,GA,201812,1,1,197766,179000 -976,FR,GA,201812,1,1,974824,677296 -976,FR,GA,201812,1,2,1300,12 -976,FR,GA,201812,1,2,280,1 -976,FR,GA,201812,1,2,1777,586 -976,FR,GA,201812,4,2,1443,120 -979,FR,GA,201812,3,1,136297,205 -979,FR,GA,201812,4,1,11657,2 -979,FR,GA,201812,0,2,27625,52 -979,FR,GA,201812,1,2,333279,28513 -979,FR,GA,201812,1,2,109999,10699 -979,FR,GA,201812,1,2,910382,435124 -979,FR,GA,201812,1,2,14656,2239 -979,FR,GA,201812,1,2,358,19 -979,FR,GA,201812,1,2,28584,6933 -979,FR,GA,201812,1,2,67505,29802 -979,FR,GA,201812,1,2,9636,1988 -979,FR,GA,201812,1,2,3818,2063 -979,FR,GA,201812,1,2,81249,30253 -979,FR,GA,201812,4,2,460354,6581 -979,FR,GA,201812,4,2,11995,990 -979,FR,GA,201812,4,2,26769,0 -979,FR,GA,201812,4,2,2912,1 -979,FR,GA,201812,4,2,6743,586 -979,FR,GA,201812,4,2,506,3 -979,FR,GA,201812,4,2,146293,1094 -979,FR,GA,201812,4,2,500,4 -979,FR,GA,201812,4,2,16664,1311 -979,FR,GA,201812,4,2,6019,10 -979,FR,GA,201812,4,2,4702,175 -979,FR,GA,201812,4,2,2694,8 -979,FR,GA,201812,4,2,18016,12 -979,FR,GA,201812,4,2,92795,3680 -979,FR,GA,201812,4,2,1601,1 -979,FR,GA,201812,5,2,4780,70 -999,FR,GA,201812,1,1,3420,0 -999,FR,GA,201812,1,1,1190,0 -999,FR,GA,201812,3,1,79,0 -999,FR,GA,201812,4,1,6115,0 -999,FR,GA,201812,4,1,2575,0 -999,FR,GA,201812,1,2,6044,1175 -999,FR,GA,201812,1,2,5678,347 -999,FR,GA,201812,1,2,141773,35242 -999,FR,GA,201812,1,2,16000,0 -999,FR,GA,201812,1,2,80645,33595 -999,FR,GA,201812,1,2,5250,117 -999,FR,GA,201812,1,2,5760,1600 -999,FR,GA,201812,1,2,6536,8251 -999,FR,GA,201812,3,2,971,264 -999,FR,GA,201812,3,2,3315,800 -999,FR,GA,201812,4,2,33664,1037 -999,FR,GA,201812,4,2,650,0 -999,FR,GA,201812,4,2,351,0 -999,FR,GA,201812,4,2,1022,0 -001,FR,CG,201812,4,2,1,13 -020,FR,CG,201812,1,2,1147,2500 -020,FR,CG,201812,4,2,5208,700 -031,FR,CG,201812,1,2,4296,4065 -035,FR,CG,201812,4,1,1623,1257 -035,FR,CG,201812,4,1,1105,990 -035,FR,CG,201812,4,1,891,800 -035,FR,CG,201812,1,2,19865,21585 -035,FR,CG,201812,1,2,711,197 -039,FR,CG,201812,4,1,1919,2660 -039,FR,CG,201812,4,1,6764,6740 -039,FR,CG,201812,1,2,2583,2560 -039,FR,CG,201812,4,2,1909,610 -039,FR,CG,201812,4,2,2107,672 -039,FR,CG,201812,4,2,10001,3450 -039,FR,CG,201812,4,2,881,362 -049,FR,CG,201812,1,2,33193,19525 -049,FR,CG,201812,1,2,5904,17298 -051,FR,CG,201812,0,1,49807,89046 -051,FR,CG,201812,1,1,254337,590201 -055,FR,CG,201812,1,1,221632,371636 -056,FR,CG,201812,1,1,716840,712293 -056,FR,CG,201812,1,1,24126,17590 -056,FR,CG,201812,1,1,85622,85634 -057,FR,CG,201812,4,2,6700,110 -092,FR,CG,201812,1,2,2850,1980 -092,FR,CG,201812,4,2,17624,20 -099,FR,CG,201812,1,2,72,7 -099,FR,CG,201812,1,2,2400,90 -099,FR,CG,201812,3,2,2298,1 -099,FR,CG,201812,4,2,48037,583 -099,FR,CG,201812,4,2,33699,1620 -099,FR,CG,201812,4,2,105098,7647 -112,FR,CG,201812,1,2,177,102 -121,FR,CG,201812,1,2,356845,23432 -121,FR,CG,201812,1,2,1794,311 -121,FR,CG,201812,1,2,70360,6635 -121,FR,CG,201812,1,2,36196,21859 -121,FR,CG,201812,1,2,25950,18441 -121,FR,CG,201812,1,2,37410,4744 -121,FR,CG,201812,3,2,40441,1465 -121,FR,CG,201812,4,2,106027,2723 -121,FR,CG,201812,4,2,18334,900 -121,FR,CG,201812,4,2,250,41 -122,FR,CG,201812,1,2,49895,49137 -122,FR,CG,201812,1,2,76,75 -125,FR,CG,201812,1,2,86627,15980 -125,FR,CG,201812,1,2,1444,393 -125,FR,CG,201812,1,2,44317,5989 -125,FR,CG,201812,1,2,62,31 -125,FR,CG,201812,1,2,31726,9745 -128,FR,CG,201812,1,2,335,11 -128,FR,CG,201812,1,2,3433,8291 -128,FR,CG,201812,1,2,792,867 -128,FR,CG,201812,1,2,5222,10467 -128,FR,CG,201812,1,2,3836,3192 -128,FR,CG,201812,3,2,871,648 -131,FR,CG,201812,0,1,48102,19313 -131,FR,CG,201812,1,1,12236,4479 -131,FR,CG,201812,1,2,268,22 -132,FR,CG,201812,0,2,202,5 -132,FR,CG,201812,1,2,1525,43 -132,FR,CG,201812,1,2,5367,928 -132,FR,CG,201812,1,2,976,153 -132,FR,CG,201812,1,2,1218,227 -132,FR,CG,201812,1,2,4402,1375 -132,FR,CG,201812,3,2,4415,119 -132,FR,CG,201812,4,2,32958,2040 -133,FR,CG,201812,1,2,410,18 -136,FR,CG,201812,1,2,1710,399 -136,FR,CG,201812,1,2,3428,5760 -136,FR,CG,201812,1,2,3502,1267 -136,FR,CG,201812,1,2,1032,162 -136,FR,CG,201812,1,2,22412,38400 -136,FR,CG,201812,1,2,337,74 -136,FR,CG,201812,1,2,10740,14385 -136,FR,CG,201812,1,2,8763,12004 -136,FR,CG,201812,3,2,1206,1815 -139,FR,CG,201812,3,1,139,0 -139,FR,CG,201812,1,2,113963,34151 -139,FR,CG,201812,1,2,36790,14100 -139,FR,CG,201812,1,2,578960,177034 -139,FR,CG,201812,1,2,2304,1493 -139,FR,CG,201812,1,2,2854,642 -139,FR,CG,201812,1,2,41102,19185 -139,FR,CG,201812,1,2,511221,135552 -139,FR,CG,201812,1,2,391,123 -139,FR,CG,201812,4,2,21449,3825 -139,FR,CG,201812,4,2,2114,335 -139,FR,CG,201812,4,2,56001,16739 -139,FR,CG,201812,4,2,44549,10543 -139,FR,CG,201812,4,2,2718,390 -141,FR,CG,201812,1,2,3980,1288 -141,FR,CG,201812,1,2,48872,51500 -141,FR,CG,201812,1,2,170252,196763 -141,FR,CG,201812,1,2,34425,47880 -141,FR,CG,201812,1,2,114,20 -141,FR,CG,201812,4,2,4358,274 -141,FR,CG,201812,4,2,2,58 -142,FR,CG,201812,4,2,3129,94 -142,FR,CG,201812,4,2,34,2 -142,FR,CG,201812,4,2,2049,193 -142,FR,CG,201812,4,2,1110,112 -143,FR,CG,201812,1,2,13916,14515 -143,FR,CG,201812,1,2,6208,8157 -143,FR,CG,201812,1,2,4133,1500 -144,FR,CG,201812,1,2,60284,8742 -144,FR,CG,201812,1,2,264,64 -144,FR,CG,201812,1,2,45845,16460 -144,FR,CG,201812,4,2,1230,80 -144,FR,CG,201812,4,2,3847,1451 -144,FR,CG,201812,4,2,8201,923 -145,FR,CG,201812,1,2,1989,656 -147,FR,CG,201812,1,2,6347,1613 -147,FR,CG,201812,1,2,20961,26352 -147,FR,CG,201812,1,2,43945,25968 -147,FR,CG,201812,1,2,29364,6746 -147,FR,CG,201812,1,2,48637,44909 -147,FR,CG,201812,1,2,3850,765 -147,FR,CG,201812,4,2,3355,85 -147,FR,CG,201812,4,2,1863,424 -148,FR,CG,201812,1,2,653,58 -148,FR,CG,201812,1,2,344,23 -148,FR,CG,201812,1,2,495,103 -161,FR,CG,201812,1,2,557,656 -163,FR,CG,201812,1,2,43680,11990 -163,FR,CG,201812,1,2,36258,11750 -163,FR,CG,201812,1,2,153727,81496 -163,FR,CG,201812,1,2,1787,1982 -163,FR,CG,201812,1,2,46082,13680 -163,FR,CG,201812,1,2,60263,43488 -163,FR,CG,201812,1,2,1234,323 -163,FR,CG,201812,4,2,3542,380 -163,FR,CG,201812,4,2,492,188 -164,FR,CG,201812,1,2,13063,6497 -164,FR,CG,201812,1,2,33680,22379 -164,FR,CG,201812,1,2,130,60 -164,FR,CG,201812,1,2,2410,994 -164,FR,CG,201812,3,2,4758,2829 -166,FR,CG,201812,4,1,4583,4029 -166,FR,CG,201812,4,1,8419,8183 -166,FR,CG,201812,1,2,59127,51466 -166,FR,CG,201812,1,2,243,84 -166,FR,CG,201812,1,2,550,330 -166,FR,CG,201812,1,2,5693,4458 -179,FR,CG,201812,1,2,5325,5845 -179,FR,CG,201812,1,2,748,970 -179,FR,CG,201812,3,2,1340,1724 -181,FR,CG,201812,4,1,145,200 -182,FR,CG,201812,1,2,84,8 -182,FR,CG,201812,1,2,3730,614 -182,FR,CG,201812,1,2,40490,25927 -182,FR,CG,201812,1,2,975,225 -321,FR,CG,201812,4,1,358,14 -321,FR,CG,201812,1,2,131,79 -323,FR,CG,201812,1,2,908,460 -323,FR,CG,201812,4,2,520,9 -330,FR,CG,201812,4,1,760,116 -341,FR,CG,201812,1,2,6736,1219 -341,FR,CG,201812,1,2,107338,46997 -341,FR,CG,201812,1,2,241747,90977 -341,FR,CG,201812,4,2,1233,77 -343,FR,CG,201812,1,2,59860,25276 -343,FR,CG,201812,1,2,1705,1224 -349,FR,CG,201812,1,2,612,27 -349,FR,CG,201812,4,2,15458,2120 -465,FR,CG,201812,1,2,21665,96000 -542,FR,CG,201812,1,2,651,255 -542,FR,CG,201812,4,2,11939,235 -551,FR,CG,201812,1,2,34128,7733 -551,FR,CG,201812,1,2,9298878,2906859 -551,FR,CG,201812,1,2,91814,8632 -551,FR,CG,201812,4,2,27334,5078 -551,FR,CG,201812,4,2,3202,90 -551,FR,CG,201812,4,2,8780,100 -551,FR,CG,201812,4,2,1734,29 -552,FR,CG,201812,1,2,211,17 -565,FR,CG,201812,1,2,66691,141 -568,FR,CG,201812,1,2,2562,980 -568,FR,CG,201812,1,2,5295,600 -568,FR,CG,201812,1,2,9342,1304 -568,FR,CG,201812,4,2,2698,82 -621,FR,CG,201812,1,2,3831,396 -632,FR,CG,201812,4,2,30580,5264 -639,FR,CG,201812,1,2,34,1 -639,FR,CG,201812,1,2,3851,7800 -639,FR,CG,201812,1,2,4625,9000 -691,FR,CG,201812,1,2,596,643 -691,FR,CG,201812,1,2,9056,6652 -691,FR,CG,201812,1,2,127364,128156 -691,FR,CG,201812,1,2,1022,413 -691,FR,CG,201812,4,2,9304,2848 -692,FR,CG,201812,1,2,3757,14934 -692,FR,CG,201812,4,2,12282,5900 -813,FR,CG,201812,1,2,3601,1605 -819,FR,CG,201812,1,2,2246,293 -819,FR,CG,201812,1,2,242947,192080 -819,FR,CG,201812,4,2,8943,93 -819,FR,CG,201812,4,2,465,4 -891,FR,CG,201812,1,2,45905,3631 -891,FR,CG,201812,1,2,78600,30600 -891,FR,CG,201812,1,2,119,100 -891,FR,CG,201812,1,2,4632,246 -891,FR,CG,201812,1,2,44,15 -891,FR,CG,201812,1,2,18866,2412 -891,FR,CG,201812,1,2,6821,1260 -891,FR,CG,201812,4,2,1570,25 -892,FR,CG,201812,1,2,1810,308 -892,FR,CG,201812,1,2,2792,664 -892,FR,CG,201812,1,2,10126,2292 -892,FR,CG,201812,1,2,422,145 -892,FR,CG,201812,1,2,1838,342 -892,FR,CG,201812,4,2,16278,9179 -893,FR,CG,201812,4,1,2,4 -893,FR,CG,201812,0,2,9048,208 -893,FR,CG,201812,1,2,1497769,124636 -893,FR,CG,201812,1,2,29584,9318 -893,FR,CG,201812,1,2,192847,111199 -893,FR,CG,201812,1,2,5516,2751 -893,FR,CG,201812,1,2,120876,63553 -893,FR,CG,201812,1,2,1100,774 -893,FR,CG,201812,3,2,288,21 -893,FR,CG,201812,4,2,464212,4806 -893,FR,CG,201812,4,2,145430,951 -893,FR,CG,201812,4,2,17924,850 -894,FR,CG,201812,1,2,120557,50080 -894,FR,CG,201812,1,2,174544,4030 -896,FR,CG,201812,1,2,42447,10508 -896,FR,CG,201812,1,2,1117,345 -896,FR,CG,201812,1,2,19958,3050 -896,FR,CG,201812,1,2,534664,51776 -896,FR,CG,201812,1,2,8386,18900 -896,FR,CG,201812,1,2,11265,2080 -896,FR,CG,201812,1,2,3059,482 -896,FR,CG,201812,4,2,64539,3422 -896,FR,CG,201812,4,2,41934,420 -896,FR,CG,201812,4,2,21540,794 -896,FR,CG,201812,4,2,8322,320 -910,FR,CG,201812,3,1,892,19 -910,FR,CG,201812,1,2,170000,0 -910,FR,CG,201812,1,2,2900,3786 -910,FR,CG,201812,1,2,2377,2200 -910,FR,CG,201812,1,2,1710,470 -910,FR,CG,201812,1,2,44081,2242 -910,FR,CG,201812,1,2,8000,8800 -910,FR,CG,201812,1,2,6000,7000 -910,FR,CG,201812,1,2,7050,11700 -910,FR,CG,201812,3,2,3405,32 -910,FR,CG,201812,4,2,171818,1541 -920,FR,CG,201812,1,2,21567,2795 -920,FR,CG,201812,4,2,1830,7 -920,FR,CG,201812,4,2,14934,48 -920,FR,CG,201812,4,2,6816,335 -931,FR,CG,201812,3,1,341,3 -931,FR,CG,201812,4,1,190,40 -931,FR,CG,201812,0,2,832,22 -931,FR,CG,201812,1,2,724813,52209 -931,FR,CG,201812,1,2,4000,270 -931,FR,CG,201812,1,2,5129,1107 -931,FR,CG,201812,1,2,143453,33776 -931,FR,CG,201812,1,2,24892,624 -931,FR,CG,201812,1,2,227800,630 -931,FR,CG,201812,4,2,938959,10357 -931,FR,CG,201812,4,2,9989,14 -931,FR,CG,201812,4,2,1456,350 -931,FR,CG,201812,4,2,2332,90 -931,FR,CG,201812,4,2,27536,302 -931,FR,CG,201812,4,2,41410,413 -931,FR,CG,201812,4,2,6803,15 -931,FR,CG,201812,4,2,34427,2010 -939,FR,CG,201812,4,1,3992,54 -939,FR,CG,201812,0,2,1664,28 -939,FR,CG,201812,1,2,2129707,46977 -939,FR,CG,201812,1,2,4653,1393 -939,FR,CG,201812,1,2,8110,244 -939,FR,CG,201812,1,2,203332,7485 -939,FR,CG,201812,1,2,128359,1772 -939,FR,CG,201812,1,2,2948,795 -939,FR,CG,201812,1,2,4699,46 -939,FR,CG,201812,3,2,108404,4969 -939,FR,CG,201812,4,2,1784891,30261 -939,FR,CG,201812,4,2,1276,50 -939,FR,CG,201812,4,2,8267,50 -939,FR,CG,201812,4,2,35565,1248 -939,FR,CG,201812,4,2,1552,120 -939,FR,CG,201812,4,2,187173,1218 -939,FR,CG,201812,4,2,6550,25 -939,FR,CG,201812,4,2,29300,537 -941,FR,CG,201812,1,2,11197,2471 -941,FR,CG,201812,1,2,6000,1850 -941,FR,CG,201812,4,2,4448,296 -949,FR,CG,201812,3,1,435,32 -949,FR,CG,201812,4,1,240,159 -949,FR,CG,201812,1,2,306092,24615 -949,FR,CG,201812,1,2,4170,340 -949,FR,CG,201812,1,2,227091,17916 -949,FR,CG,201812,1,2,36788,2307 -949,FR,CG,201812,1,2,173505,33725 -949,FR,CG,201812,1,2,9050,3110 -949,FR,CG,201812,1,2,71,38 -949,FR,CG,201812,1,2,340381,192489 -949,FR,CG,201812,1,2,151152,40876 -949,FR,CG,201812,3,2,7054,342 -949,FR,CG,201812,3,2,78296,267 -949,FR,CG,201812,4,2,129315,2605 -949,FR,CG,201812,4,2,286,0 -949,FR,CG,201812,4,2,141,90 -949,FR,CG,201812,4,2,7198,210 -949,FR,CG,201812,4,2,27211,664 -949,FR,CG,201812,4,2,3814,110 -951,FR,CG,201812,1,2,3110,74 -951,FR,CG,201812,4,2,1168,10 -952,FR,CG,201812,4,1,500,1 -952,FR,CG,201812,1,2,8075,3207 -952,FR,CG,201812,1,2,12431,511 -952,FR,CG,201812,1,2,140536,260939 -952,FR,CG,201812,1,2,3348,2486 -952,FR,CG,201812,3,2,5989,236 -952,FR,CG,201812,4,2,8115,895 -952,FR,CG,201812,4,2,1158,160 -961,FR,CG,201812,1,2,215,5 -962,FR,CG,201812,1,2,58104,17164 -962,FR,CG,201812,1,2,23053,3793 -962,FR,CG,201812,3,2,5517,241 -962,FR,CG,201812,4,2,29340,1306 -962,FR,CG,201812,4,2,138519,12596 -963,FR,CG,201812,0,2,3031,73 -963,FR,CG,201812,1,2,34336,3971 -963,FR,CG,201812,1,2,2885,969 -963,FR,CG,201812,1,2,27946,3601 -963,FR,CG,201812,1,2,24,9 -963,FR,CG,201812,1,2,12087,2213 -963,FR,CG,201812,3,2,16343,164 -963,FR,CG,201812,4,2,257775,5616 -963,FR,CG,201812,4,2,22,0 -963,FR,CG,201812,4,2,2652,61 -963,FR,CG,201812,4,2,234149,2601 -963,FR,CG,201812,4,2,1860,45 -963,FR,CG,201812,4,2,28120,200 -963,FR,CG,201812,4,2,2000,20 -963,FR,CG,201812,4,2,12600,400 -971,FR,CG,201812,1,2,15779,870 -971,FR,CG,201812,1,2,24106,5380 -971,FR,CG,201812,1,2,36733,934 -971,FR,CG,201812,1,2,2929,789 -971,FR,CG,201812,4,2,7790,415 -971,FR,CG,201812,4,2,27,0 -971,FR,CG,201812,4,2,154,3 -972,FR,CG,201812,1,2,5007,1624 -972,FR,CG,201812,1,2,23498,47728 -973,FR,CG,201812,1,2,83783,13743 -973,FR,CG,201812,1,2,285,58 -973,FR,CG,201812,1,2,56364,49545 -973,FR,CG,201812,1,2,8073,3368 -973,FR,CG,201812,1,2,30996,11652 -973,FR,CG,201812,1,2,16019,33402 -973,FR,CG,201812,1,2,40908,25226 -973,FR,CG,201812,1,2,29940,18148 -973,FR,CG,201812,3,2,35426,12407 -973,FR,CG,201812,4,2,33194,2756 -973,FR,CG,201812,4,2,15074,350 -974,FR,CG,201812,4,1,197,90 -974,FR,CG,201812,0,2,1145,29 -974,FR,CG,201812,1,2,23858,3118 -974,FR,CG,201812,1,2,44,26 -974,FR,CG,201812,1,2,16,28 -974,FR,CG,201812,1,2,22076,2046 -974,FR,CG,201812,1,2,60,40 -974,FR,CG,201812,1,2,59572,13061 -974,FR,CG,201812,1,2,6,3 -974,FR,CG,201812,3,2,1502,98 -974,FR,CG,201812,4,2,58354,4630 -974,FR,CG,201812,4,2,1102,1260 -975,FR,CG,201812,1,2,33421,5537 -975,FR,CG,201812,1,2,9104,1737 -975,FR,CG,201812,1,2,1829,205 -975,FR,CG,201812,3,2,90553,4644 -975,FR,CG,201812,4,2,38508,2622 -975,FR,CG,201812,4,2,70785,17167 -975,FR,CG,201812,4,2,2750,85 -976,FR,CG,201812,1,1,763133,790936 -976,FR,CG,201812,1,2,100,14 -976,FR,CG,201812,1,2,62090,21547 -976,FR,CG,201812,1,2,56,120 -976,FR,CG,201812,4,2,11000,1622 -976,FR,CG,201812,4,2,8568,886 -979,FR,CG,201812,3,1,89,0 -979,FR,CG,201812,0,2,1545,12 -979,FR,CG,201812,1,2,127814,5703 -979,FR,CG,201812,1,2,65120,3973 -979,FR,CG,201812,1,2,11832,632 -979,FR,CG,201812,1,2,225604,50087 -979,FR,CG,201812,1,2,80250,9073 -979,FR,CG,201812,1,2,2702,1543 -979,FR,CG,201812,1,2,94346,46864 -979,FR,CG,201812,1,2,28432,2213 -979,FR,CG,201812,1,2,464,161 -979,FR,CG,201812,1,2,9305,1728 -979,FR,CG,201812,1,2,8576,2033 -979,FR,CG,201812,3,2,11300,451 -979,FR,CG,201812,4,2,219610,8314 -979,FR,CG,201812,4,2,384,4 -979,FR,CG,201812,4,2,34047,174 -979,FR,CG,201812,4,2,587726,9099 -979,FR,CG,201812,4,2,1702,5 -979,FR,CG,201812,4,2,10104,49 -979,FR,CG,201812,4,2,917,10 -979,FR,CG,201812,4,2,1380,20 -979,FR,CG,201812,4,2,1870,254 -979,FR,CG,201812,4,2,15981,360 -999,FR,CG,201812,1,1,3885,0 -999,FR,CG,201812,4,1,1,0 -999,FR,CG,201812,0,2,3000,0 -999,FR,CG,201812,1,2,49113,16188 -999,FR,CG,201812,1,2,400,0 -999,FR,CG,201812,1,2,1475,322 -999,FR,CG,201812,1,2,125196,61062 -999,FR,CG,201812,1,2,12970,3500 -999,FR,CG,201812,1,2,210832,86500 -999,FR,CG,201812,1,2,26107,4021 -999,FR,CG,201812,1,2,21299,5096 -999,FR,CG,201812,3,2,7450,0 -999,FR,CG,201812,4,2,217882,1539 -999,FR,CG,201812,4,2,4773,0 -999,FR,CG,201812,4,2,6,0 -999,FR,CG,201812,4,2,3,0 -039,FR,CD,201812,4,1,551,698 -042,FR,CD,201812,4,2,382,14 -049,FR,CD,201812,1,2,27403,25785 -049,FR,CD,201812,1,2,1500,6000 -049,FR,CD,201812,1,2,24001,25875 -051,FR,CD,201812,1,1,118198,289232 -051,FR,CD,201812,1,1,8962,17924 -055,FR,CD,201812,1,1,76954,146034 -056,FR,CD,201812,1,1,104930,121055 -099,FR,CD,201812,4,2,14910,346 -111,FR,CD,201812,4,2,15,6 -121,FR,CD,201812,1,2,11015,844 -121,FR,CD,201812,1,2,3541,899 -121,FR,CD,201812,1,2,62510,28041 -121,FR,CD,201812,1,2,172874,24345 -121,FR,CD,201812,4,2,26604,775 -122,FR,CD,201812,4,1,368,38 -125,FR,CD,201812,1,2,19008,1620 -125,FR,CD,201812,1,2,1873,495 -125,FR,CD,201812,1,2,979482,25684 -125,FR,CD,201812,1,2,20148,22428 -125,FR,CD,201812,1,2,730,250 -131,FR,CD,201812,0,1,324559,121790 -131,FR,CD,201812,1,1,40996,19083 -131,FR,CD,201812,3,2,1,0 -133,FR,CD,201812,1,2,24037,1741 -136,FR,CD,201812,1,2,254,220 -136,FR,CD,201812,1,2,68989,45540 -139,FR,CD,201812,4,1,75,39 -139,FR,CD,201812,4,1,3477,3600 -139,FR,CD,201812,1,2,90179,41025 -139,FR,CD,201812,1,2,346915,55945 -139,FR,CD,201812,1,2,317658,120036 -139,FR,CD,201812,1,2,56363,21007 -139,FR,CD,201812,1,2,28915,10750 -139,FR,CD,201812,1,2,275128,185795 -139,FR,CD,201812,4,2,921,23 -139,FR,CD,201812,4,2,3317,228 -141,FR,CD,201812,1,2,45854,78000 -141,FR,CD,201812,1,2,176838,187000 -141,FR,CD,201812,1,2,39740,56000 -141,FR,CD,201812,1,2,14408,24450 -142,FR,CD,201812,4,1,6759,241 -143,FR,CD,201812,1,2,16554,5156 -143,FR,CD,201812,4,2,29,11 -144,FR,CD,201812,1,2,36785,7507 -147,FR,CD,201812,1,2,165250,84000 -147,FR,CD,201812,1,2,95400,35904 -147,FR,CD,201812,4,2,4564,770 -163,FR,CD,201812,1,2,8917,2013 -163,FR,CD,201812,1,2,137,17 -164,FR,CD,201812,1,1,2149,2035 -164,FR,CD,201812,4,1,476,230 -164,FR,CD,201812,4,1,26046,5328 -164,FR,CD,201812,4,2,428,273 -166,FR,CD,201812,4,1,52815,47470 -166,FR,CD,201812,4,1,1556,1454 -166,FR,CD,201812,4,1,112661,101225 -166,FR,CD,201812,1,2,705,84 -179,FR,CD,201812,1,2,240165,123500 -182,FR,CD,201812,4,1,1268,1035 -310,FR,CD,201812,4,1,218,11 -321,FR,CD,201812,4,2,50,8 -341,FR,CD,201812,1,2,106278,59776 -341,FR,CD,201812,1,2,1622,61 -341,FR,CD,201812,4,2,3212,282 -551,FR,CD,201812,1,2,204584,11658 -551,FR,CD,201812,1,2,558,278 -552,FR,CD,201812,4,2,463,0 -561,FR,CD,201812,1,1,2706167,500005 -568,FR,CD,201812,4,2,528,7 -611,FR,CD,201812,1,2,18901,15509 -622,FR,CD,201812,4,1,110,96 -639,FR,CD,201812,1,2,6267,14040 -691,FR,CD,201812,1,2,23458,14988 -691,FR,CD,201812,4,2,2900,180 -819,FR,CD,201812,4,1,380,4 -819,FR,CD,201812,1,2,690,1000 -819,FR,CD,201812,4,2,1195,25 -891,FR,CD,201812,3,1,91,1 -891,FR,CD,201812,1,2,19054,2500 -891,FR,CD,201812,1,2,29762,1575 -891,FR,CD,201812,4,2,1241,28 -891,FR,CD,201812,4,2,66,0 -891,FR,CD,201812,4,2,11388,791 -892,FR,CD,201812,1,2,4087,250 -892,FR,CD,201812,1,2,66,46 -892,FR,CD,201812,4,2,1544,58 -893,FR,CD,201812,4,1,160,2 -893,FR,CD,201812,4,1,8,0 -893,FR,CD,201812,1,2,176787,16708 -893,FR,CD,201812,1,2,16350,5310 -893,FR,CD,201812,1,2,519069,52802 -893,FR,CD,201812,1,2,650,80 -893,FR,CD,201812,4,2,1285061,4611 -893,FR,CD,201812,4,2,44080,822 -893,FR,CD,201812,4,2,6469,123 -896,FR,CD,201812,1,2,8699,182 -896,FR,CD,201812,1,2,231465,80620 -896,FR,CD,201812,1,2,1985,4200 -896,FR,CD,201812,1,2,4466,787 -896,FR,CD,201812,4,2,11530,148 -896,FR,CD,201812,4,2,285,10 -896,FR,CD,201812,4,2,276,0 -896,FR,CD,201812,4,2,3364,103 -896,FR,CD,201812,4,2,16478,1000 -896,FR,CD,201812,4,2,4017,106 -910,FR,CD,201812,1,2,8516,900 -910,FR,CD,201812,1,2,111237,7980 -910,FR,CD,201812,1,2,1000,1220 -910,FR,CD,201812,1,2,4000,3380 -910,FR,CD,201812,1,2,17200,8372 -910,FR,CD,201812,1,2,4100,5355 -910,FR,CD,201812,3,2,310,4 -910,FR,CD,201812,4,2,44537,1743 -910,FR,CD,201812,4,2,591,7 -910,FR,CD,201812,4,2,3938,40 -931,FR,CD,201812,3,1,363,0 -931,FR,CD,201812,0,2,941,5 -931,FR,CD,201812,1,2,63295,5438 -931,FR,CD,201812,1,2,62949,23809 -931,FR,CD,201812,1,2,1248,119 -931,FR,CD,201812,1,2,2100,1400 -931,FR,CD,201812,1,2,298621,25932 -931,FR,CD,201812,4,2,249665,3582 -931,FR,CD,201812,4,2,1612,21 -931,FR,CD,201812,4,2,4359,45 -931,FR,CD,201812,4,2,4824,90 -931,FR,CD,201812,4,2,4878,490 -931,FR,CD,201812,4,2,3272,11 -939,FR,CD,201812,3,1,1877,16 -939,FR,CD,201812,4,1,29524,808 -939,FR,CD,201812,1,2,425097,24702 -939,FR,CD,201812,1,2,27117,551 -939,FR,CD,201812,1,2,55619,7609 -939,FR,CD,201812,1,2,63694,3955 -939,FR,CD,201812,1,2,433150,42467 -939,FR,CD,201812,1,2,106074,10246 -939,FR,CD,201812,3,2,44347,2237 -939,FR,CD,201812,4,2,172800,3925 -939,FR,CD,201812,4,2,12905,172 -939,FR,CD,201812,4,2,2419,10 -939,FR,CD,201812,4,2,24950,125 -939,FR,CD,201812,4,2,89560,169 -939,FR,CD,201812,4,2,13604,1180 -941,FR,CD,201812,1,2,67340,49601 -941,FR,CD,201812,4,2,1906,87 -949,FR,CD,201812,4,1,139,0 -949,FR,CD,201812,1,2,19883,680 -949,FR,CD,201812,1,2,2037,172 -949,FR,CD,201812,1,2,42000,1900 -949,FR,CD,201812,3,2,4855,619 -949,FR,CD,201812,4,2,33542,246 -949,FR,CD,201812,4,2,2359,33 -952,FR,CD,201812,4,2,4743,37 -962,FR,CD,201812,1,2,9510,365 -962,FR,CD,201812,1,2,6237,490 -962,FR,CD,201812,1,2,35190,9768 -962,FR,CD,201812,4,2,1076,105 -963,FR,CD,201812,0,1,116,10 -963,FR,CD,201812,3,1,172,1 -963,FR,CD,201812,0,2,50,5 -963,FR,CD,201812,1,2,181,11 -963,FR,CD,201812,1,2,138536,9738 -963,FR,CD,201812,4,2,39819,635 -963,FR,CD,201812,4,2,2706,900 -971,FR,CD,201812,4,2,1185,30 -971,FR,CD,201812,4,2,419,6 -972,FR,CD,201812,1,2,15037,25696 -972,FR,CD,201812,4,2,387,67 -973,FR,CD,201812,1,2,2410,380 -973,FR,CD,201812,1,2,34620,41353 -973,FR,CD,201812,4,2,52514,2455 -973,FR,CD,201812,4,2,750,42 -974,FR,CD,201812,4,1,119,1 -974,FR,CD,201812,0,2,408,16 -974,FR,CD,201812,1,2,1362,502 -974,FR,CD,201812,4,2,4085,215 -974,FR,CD,201812,4,2,4800,80 -976,FR,CD,201812,3,1,261,23 -976,FR,CD,201812,1,2,101,279 -979,FR,CD,201812,3,1,1205,9 -979,FR,CD,201812,0,2,932,13 -979,FR,CD,201812,1,2,59664,464 -979,FR,CD,201812,1,2,18783,435 -979,FR,CD,201812,1,2,2886,65 -979,FR,CD,201812,1,2,1259,400 -979,FR,CD,201812,1,2,80321,7893 -979,FR,CD,201812,4,2,133064,754 -979,FR,CD,201812,4,2,8079,506 -979,FR,CD,201812,4,2,2914,1 -979,FR,CD,201812,4,2,1415,22 -979,FR,CD,201812,4,2,33065,556 -979,FR,CD,201812,4,2,17320,2 -979,FR,CD,201812,4,2,566,25 -979,FR,CD,201812,4,2,6628,25 -979,FR,CD,201812,4,2,5926,45 -979,FR,CD,201812,4,2,13791,510 -999,FR,CD,201812,1,1,14502,0 -999,FR,CD,201812,3,1,4476,0 -999,FR,CD,201812,4,1,5875,0 -999,FR,CD,201812,1,2,1500,0 -999,FR,CD,201812,1,2,17579,288 -999,FR,CD,201812,1,2,15568,640 -999,FR,CD,201812,1,2,11340,0 -999,FR,CD,201812,1,2,12200,0 -999,FR,CD,201812,1,2,11500,0 -999,FR,CD,201812,4,2,2468,5 -999,FR,CD,201812,4,2,1,0 -035,FR,RW,201812,4,1,32290,4035 -039,FR,RW,201812,4,1,186894,48629 -049,FR,RW,201812,1,2,64975,106799 -121,FR,RW,201812,1,2,37291,38759 -125,FR,RW,201812,1,2,548,970 -131,FR,RW,201812,1,1,32292,24633 -136,FR,RW,201812,4,2,293,320 -139,FR,RW,201812,0,2,184,8 -139,FR,RW,201812,1,2,43743,7758 -139,FR,RW,201812,1,2,21404,3754 -162,FR,RW,201812,1,2,199890,605000 -891,FR,RW,201812,1,2,56329,36000 -892,FR,RW,201812,4,2,1637,344 -893,FR,RW,201812,1,2,64762,4311 -893,FR,RW,201812,1,2,55282,3971 -893,FR,RW,201812,4,2,332711,2691 -893,FR,RW,201812,4,2,3942,117 -893,FR,RW,201812,4,2,8911,146 -893,FR,RW,201812,4,2,8360,740 -896,FR,RW,201812,4,2,350,100 -896,FR,RW,201812,4,2,3278,39 -910,FR,RW,201812,4,2,91,1 -931,FR,RW,201812,3,1,82,0 -931,FR,RW,201812,4,1,602,10 -931,FR,RW,201812,1,2,864,33 -931,FR,RW,201812,4,2,29889,506 -931,FR,RW,201812,4,2,3000,20 -931,FR,RW,201812,4,2,6912,1510 -939,FR,RW,201812,1,2,405974,60048 -939,FR,RW,201812,1,2,33087,73500 -939,FR,RW,201812,4,2,14546,250 -939,FR,RW,201812,4,2,12359,210 -939,FR,RW,201812,4,2,2466,110 -939,FR,RW,201812,4,2,2071,300 -949,FR,RW,201812,4,2,1403,70 -952,FR,RW,201812,1,2,11421,890 -963,FR,RW,201812,3,1,283,5 -963,FR,RW,201812,4,2,3886,80 -971,FR,RW,201812,1,2,4294,376 -973,FR,RW,201812,1,2,83,110 -973,FR,RW,201812,4,2,5779,600 -974,FR,RW,201812,3,2,1182,51 -974,FR,RW,201812,4,2,14131,815 -975,FR,RW,201812,1,2,1351,249 -975,FR,RW,201812,4,2,1155,10 -979,FR,RW,201812,4,2,3430,345 -979,FR,RW,201812,4,2,5066,153 -979,FR,RW,201812,4,2,1040,101 -979,FR,RW,201812,4,2,8596,11 -999,FR,RW,201812,4,2,426,0 -999,FR,RW,201812,4,2,14243,1087 -049,FR,BI,201812,1,2,9990,23278 -121,FR,BI,201812,3,2,1375,337 -131,FR,BI,201812,0,1,60267,26103 -131,FR,BI,201812,1,1,21726,6000 -139,FR,BI,201812,1,2,24278,10927 -139,FR,BI,201812,1,2,17832,7836 -341,FR,BI,201812,1,2,41813,15810 -639,FR,BI,201812,1,2,8456,18000 -891,FR,BI,201812,1,2,28717,18000 -893,FR,BI,201812,1,2,100723,5641 -893,FR,BI,201812,4,2,96049,4104 -896,FR,BI,201812,1,2,20726,44100 -896,FR,BI,201812,1,2,1098,415 -896,FR,BI,201812,4,2,39364,200 -896,FR,BI,201812,4,2,3345,50 -910,FR,BI,201812,1,2,1207245,181805 -910,FR,BI,201812,1,2,600,2220 -910,FR,BI,201812,1,2,1550,2185 -931,FR,BI,201812,4,2,18258,260 -931,FR,BI,201812,4,2,1753,30 -939,FR,BI,201812,4,2,4138,183 -939,FR,BI,201812,4,2,2360,90 -939,FR,BI,201812,4,2,17488,155 -939,FR,BI,201812,4,2,5352,490 -963,FR,BI,201812,0,1,159,2 -963,FR,BI,201812,0,2,25,2 -971,FR,BI,201812,4,2,1120,31 -973,FR,BI,201812,4,2,3239,800 -974,FR,BI,201812,1,2,266453,6150 -974,FR,BI,201812,3,2,148,9 -979,FR,BI,201812,1,2,10,4 -979,FR,BI,201812,4,2,822,20 -979,FR,BI,201812,4,2,190,1 -979,FR,BI,201812,4,2,2939,90 -979,FR,BI,201812,4,2,2096,50 -979,FR,BI,201812,4,2,1300,200 -999,FR,BI,201812,4,2,2380,560 -056,FR,AO,201812,1,1,45443,55470 -099,FR,AO,201812,0,2,40,0 -099,FR,AO,201812,1,2,869,4 -121,FR,AO,201812,1,2,16650,5480 -125,FR,AO,201812,1,2,4817,1344 -128,FR,AO,201812,1,2,18847,19326 -132,FR,AO,201812,1,2,40317,7286 -136,FR,AO,201812,1,2,14835,6400 -139,FR,AO,201812,1,2,110397,16059 -139,FR,AO,201812,1,2,287314,54518 -141,FR,AO,201812,1,2,32003,100008 -141,FR,AO,201812,1,2,45600,52000 -141,FR,AO,201812,1,2,23590,27000 -141,FR,AO,201812,1,2,155909,134600 -143,FR,AO,201812,1,2,23288,46598 -143,FR,AO,201812,1,2,107486,210591 -143,FR,AO,201812,1,2,55772,64389 -143,FR,AO,201812,1,2,32685,69413 -144,FR,AO,201812,1,2,130779,24245 -144,FR,AO,201812,4,2,2597,250 -145,FR,AO,201812,1,2,17228,5520 -147,FR,AO,201812,4,2,1213,22 -148,FR,AO,201812,4,2,1085,0 -162,FR,AO,201812,1,2,879833,2131191 -179,FR,AO,201812,1,1,675432,4917065 -179,FR,AO,201812,1,2,41857,21438 -325,FR,AO,201812,1,2,896469,764434 -330,FR,AO,201812,4,2,350,1 -341,FR,AO,201812,1,2,10671,5611 -341,FR,AO,201812,1,2,10652,220 -341,FR,AO,201812,4,2,598,10 -341,FR,AO,201812,4,2,1383,4 -513,FR,AO,201812,4,2,1219,250 -532,FR,AO,201812,4,2,3151,60 -533,FR,AO,201812,1,2,275,1030 -542,FR,AO,201812,1,2,470433,526460 -542,FR,AO,201812,1,2,59578,76530 -542,FR,AO,201812,1,2,24884,31960 -542,FR,AO,201812,1,2,114421,146970 -542,FR,AO,201812,1,2,155449,105711 -551,FR,AO,201812,1,2,671980,151339 -551,FR,AO,201812,1,2,692815,27012 -551,FR,AO,201812,1,2,41678,7435 -551,FR,AO,201812,1,2,147419,43403 -551,FR,AO,201812,3,2,15749,323 -551,FR,AO,201812,4,2,30687,828 -551,FR,AO,201812,4,2,1525,162 -551,FR,AO,201812,4,2,2182,55 -568,FR,AO,201812,1,2,350,134 -568,FR,AO,201812,4,2,2900,45 -621,FR,AO,201812,4,2,30,2 -724,FR,AO,201812,1,2,67480,180000 -819,FR,AO,201812,1,2,452152,72720 -819,FR,AO,201812,4,2,471,2 -891,FR,AO,201812,4,2,80265,644 -891,FR,AO,201812,4,2,1234,50 -891,FR,AO,201812,4,2,4158,163 -892,FR,AO,201812,1,2,395,36 -892,FR,AO,201812,1,2,19139,3277 -892,FR,AO,201812,1,2,138530,32400 -892,FR,AO,201812,4,2,6595,330 -892,FR,AO,201812,4,2,856,35 -893,FR,AO,201812,0,2,37,1 -893,FR,AO,201812,1,2,3952,465 -893,FR,AO,201812,1,2,1667,131 -893,FR,AO,201812,1,2,1606,99 -893,FR,AO,201812,1,2,397615,37069 -893,FR,AO,201812,3,2,22294,498 -893,FR,AO,201812,4,2,15870,665 -893,FR,AO,201812,4,2,101343,1762 -896,FR,AO,201812,1,2,2565,165 -896,FR,AO,201812,1,2,978,46 -896,FR,AO,201812,1,2,329,0 -896,FR,AO,201812,1,2,804209,209738 -896,FR,AO,201812,1,2,11370,1073 -896,FR,AO,201812,4,2,27011,413 -896,FR,AO,201812,4,2,3324,25 -896,FR,AO,201812,4,2,1582,103 -896,FR,AO,201812,4,2,403,3 -896,FR,AO,201812,4,2,3612,146 -896,FR,AO,201812,4,2,2048,20 -910,FR,AO,201812,1,2,25984,1079 -910,FR,AO,201812,1,2,27933,315 -910,FR,AO,201812,1,2,1793,996 -910,FR,AO,201812,4,2,7908,220 -910,FR,AO,201812,4,2,4383,150 -910,FR,AO,201812,4,2,41764,155 -910,FR,AO,201812,4,2,14500,131 -910,FR,AO,201812,4,2,36232,340 -920,FR,AO,201812,4,2,313,4 -920,FR,AO,201812,4,2,665,14 -931,FR,AO,201812,3,1,1981,39 -931,FR,AO,201812,0,2,826,7 -931,FR,AO,201812,1,2,26926,903 -931,FR,AO,201812,1,2,749339,18054 -931,FR,AO,201812,1,2,8808,329 -931,FR,AO,201812,1,2,16219,441 -931,FR,AO,201812,1,2,40226,509 -931,FR,AO,201812,1,2,6303,3508 -931,FR,AO,201812,1,2,31593,4791 -931,FR,AO,201812,1,2,18007,1477 -931,FR,AO,201812,1,2,71042,17520 -931,FR,AO,201812,3,2,31280,220 -931,FR,AO,201812,3,2,73263,1473 -931,FR,AO,201812,4,2,158474,1405 -931,FR,AO,201812,4,2,8982,172 -931,FR,AO,201812,4,2,65796,324 -931,FR,AO,201812,4,2,62248,135 -931,FR,AO,201812,4,2,12855,495 -931,FR,AO,201812,4,2,27580,411 -931,FR,AO,201812,4,2,1600,100 -931,FR,AO,201812,4,2,9328,400 -931,FR,AO,201812,4,2,9675,60 -939,FR,AO,201812,1,2,146897,1259 -939,FR,AO,201812,1,2,53545,2073 -939,FR,AO,201812,1,2,345431,2740 -939,FR,AO,201812,1,2,818343,38228 -939,FR,AO,201812,1,2,43048,714 -939,FR,AO,201812,1,2,43053,4870 -939,FR,AO,201812,1,2,17938,6851 -939,FR,AO,201812,1,2,725211,21000 -939,FR,AO,201812,1,2,919,1590 -939,FR,AO,201812,1,2,110674,7259 -939,FR,AO,201812,1,2,44477,3650 -939,FR,AO,201812,1,2,15926,1087 -939,FR,AO,201812,1,2,105370,9947 -939,FR,AO,201812,3,2,4725,47 -939,FR,AO,201812,3,2,43742,3637 -939,FR,AO,201812,3,2,360198,1893 -939,FR,AO,201812,3,2,43900,396 -939,FR,AO,201812,4,2,554562,5142 -939,FR,AO,201812,4,2,28543,1649 -939,FR,AO,201812,4,2,107224,1283 -939,FR,AO,201812,4,2,26673,16 -939,FR,AO,201812,4,2,26247,232 -939,FR,AO,201812,4,2,24265,1395 -939,FR,AO,201812,4,2,32193,1003 -939,FR,AO,201812,4,2,10936,430 -939,FR,AO,201812,4,2,70583,46 -939,FR,AO,201812,4,2,27823,670 -939,FR,AO,201812,4,2,35758,111 -941,FR,AO,201812,0,1,137478,11872 -941,FR,AO,201812,1,2,5214,325 -941,FR,AO,201812,4,2,2061,360 -949,FR,AO,201812,1,2,12916,2636 -949,FR,AO,201812,1,2,777839,60976 -949,FR,AO,201812,1,2,5303,570 -949,FR,AO,201812,1,2,295752,16570 -949,FR,AO,201812,1,2,8603,361 -949,FR,AO,201812,1,2,94,16 -949,FR,AO,201812,1,2,2152,1610 -949,FR,AO,201812,1,2,116210,13732 -949,FR,AO,201812,3,2,1807,410 -949,FR,AO,201812,4,2,60461,9764 -949,FR,AO,201812,4,2,16320,568 -949,FR,AO,201812,4,2,6734,722 -949,FR,AO,201812,4,2,11137,76 -949,FR,AO,201812,4,2,137034,557 -949,FR,AO,201812,4,2,42,0 -949,FR,AO,201812,4,2,1155,40 -949,FR,AO,201812,4,2,4465,14 -951,FR,AO,201812,1,2,420,13 -951,FR,AO,201812,1,2,15,0 -951,FR,AO,201812,4,2,696,28 -952,FR,AO,201812,4,1,31870,0 -952,FR,AO,201812,1,2,428,4 -952,FR,AO,201812,1,2,412,220 -952,FR,AO,201812,3,2,884,70 -952,FR,AO,201812,4,2,99,1 -962,FR,AO,201812,1,2,72346,8901 -962,FR,AO,201812,1,2,205,0 -962,FR,AO,201812,1,2,4381,490 -962,FR,AO,201812,1,2,49806,6060 -962,FR,AO,201812,1,2,5488,2100 -962,FR,AO,201812,1,2,33641,5928 -962,FR,AO,201812,1,2,11770,3584 -962,FR,AO,201812,4,2,33892,3946 -962,FR,AO,201812,4,2,711,105 -962,FR,AO,201812,4,2,8075,1129 -963,FR,AO,201812,1,2,21859,557 -963,FR,AO,201812,1,2,21278,275 -963,FR,AO,201812,1,2,80,237 -963,FR,AO,201812,3,2,9277,85 -963,FR,AO,201812,4,2,55707,1432 -963,FR,AO,201812,4,2,4875,16 -963,FR,AO,201812,4,2,24006,805 -963,FR,AO,201812,4,2,3278,85 -963,FR,AO,201812,4,2,456,120 -971,FR,AO,201812,1,2,4139,28 -971,FR,AO,201812,1,2,1483,200 -971,FR,AO,201812,1,2,13386,356 -971,FR,AO,201812,4,2,6781,266 -971,FR,AO,201812,4,2,2044,42 -971,FR,AO,201812,4,2,3555,411 -971,FR,AO,201812,4,2,5128,102 -971,FR,AO,201812,4,2,1430,82 -973,FR,AO,201812,1,2,156,2 -973,FR,AO,201812,4,2,4613,490 -973,FR,AO,201812,4,2,802,6 -974,FR,AO,201812,4,1,73,30 -974,FR,AO,201812,1,2,4538,450 -974,FR,AO,201812,1,2,171,2 -974,FR,AO,201812,4,2,1508,197 -974,FR,AO,201812,4,2,161545,285 -974,FR,AO,201812,4,2,878,1 -974,FR,AO,201812,4,2,1102,1260 -975,FR,AO,201812,1,2,91,590 -975,FR,AO,201812,1,2,79234,4800 -975,FR,AO,201812,3,2,38069,780 -979,FR,AO,201812,3,1,1354,27 -979,FR,AO,201812,4,1,3578,54 -979,FR,AO,201812,4,1,52,0 -979,FR,AO,201812,1,2,10196,23 -979,FR,AO,201812,1,2,6712,195 -979,FR,AO,201812,1,2,29038,307 -979,FR,AO,201812,1,2,1139,86 -979,FR,AO,201812,1,2,34784,213 -979,FR,AO,201812,1,2,874,217 -979,FR,AO,201812,1,2,2174,20 -979,FR,AO,201812,1,2,1192,98 -979,FR,AO,201812,1,2,9500,803 -979,FR,AO,201812,3,2,7944,29 -979,FR,AO,201812,3,2,1377,4 -979,FR,AO,201812,4,2,23215,1164 -979,FR,AO,201812,4,2,720,1 -979,FR,AO,201812,4,2,3971,55 -979,FR,AO,201812,4,2,6048,234 -979,FR,AO,201812,4,2,1175,11 -979,FR,AO,201812,4,2,4895,3 -979,FR,AO,201812,4,2,21135,32 -979,FR,AO,201812,4,2,2147,5 -979,FR,AO,201812,4,2,4409,120 -979,FR,AO,201812,4,2,7970,17 -999,FR,AO,201812,4,1,16809,0 -999,FR,AO,201812,1,2,2324,11 -999,FR,AO,201812,1,2,730533,226450 -999,FR,AO,201812,4,2,8830,222 -999,FR,AO,201812,4,2,472,30 -999,FR,AO,201812,4,2,43498,507 -999,FR,AO,201812,4,2,43498,500 -999,FR,AO,201812,4,2,4070,0 -035,FR,ET,201812,1,2,23024,22176 -039,FR,ET,201812,4,1,15382,7500 -039,FR,ET,201812,4,1,39028,6421 -092,FR,ET,201812,4,2,541,81 -099,FR,ET,201812,0,1,108,20 -099,FR,ET,201812,4,1,110337,11241 -099,FR,ET,201812,4,1,43925,115 -099,FR,ET,201812,4,2,39766,3600 -121,FR,ET,201812,3,2,93360,49761 -121,FR,ET,201812,4,2,24349,5544 -121,FR,ET,201812,4,2,96058,7875 -125,FR,ET,201812,4,2,64342,923 -125,FR,ET,201812,4,2,27032,2148 -131,FR,ET,201812,0,1,1622624,680596 -131,FR,ET,201812,1,1,80885,39743 -131,FR,ET,201812,1,1,10593,4493 -131,FR,ET,201812,1,1,184509,81211 -131,FR,ET,201812,1,1,33465,14923 -131,FR,ET,201812,1,1,49006,9000 -131,FR,ET,201812,1,1,39377,9000 -131,FR,ET,201812,1,1,194529,37200 -131,FR,ET,201812,1,1,99542,42728 -131,FR,ET,201812,4,1,51,0 -139,FR,ET,201812,3,1,318,12 -139,FR,ET,201812,1,2,920387,388156 -143,FR,ET,201812,1,2,8100,2092 -144,FR,ET,201812,1,2,29258,4039 -144,FR,ET,201812,4,2,3714,456 -145,FR,ET,201812,1,2,8579,2280 -162,FR,ET,201812,1,2,153840,510000 -162,FR,ET,201812,1,2,719783,1990516 -341,FR,ET,201812,1,2,15824,9000 -639,FR,ET,201812,1,2,3994,5760 -639,FR,ET,201812,1,2,11935,9000 -819,FR,ET,201812,4,2,7104,1700 -891,FR,ET,201812,1,2,5283,1000 -891,FR,ET,201812,4,2,15,8 -893,FR,ET,201812,4,1,2645,42 -893,FR,ET,201812,0,2,195,2 -893,FR,ET,201812,4,2,1261610,16767 -893,FR,ET,201812,4,2,32935,392 -893,FR,ET,201812,4,2,509972,4258 -893,FR,ET,201812,4,2,7435,1000 -893,FR,ET,201812,4,2,9400,250 -896,FR,ET,201812,4,2,102924,4443 -896,FR,ET,201812,4,2,725,13 -910,FR,ET,201812,1,2,84,5 -910,FR,ET,201812,1,2,69403,3859 -910,FR,ET,201812,3,2,23421,1417 -910,FR,ET,201812,4,2,92790,458 -910,FR,ET,201812,4,2,26008,40 -910,FR,ET,201812,4,2,121732,511 -910,FR,ET,201812,4,2,64823,480 -910,FR,ET,201812,9,2,133775967,224805 -920,FR,ET,201812,4,2,3295,500 -931,FR,ET,201812,4,1,33444,5 -931,FR,ET,201812,0,2,86,1 -931,FR,ET,201812,1,2,1340,200 -931,FR,ET,201812,1,2,24351,1424 -931,FR,ET,201812,1,2,227381,6010 -931,FR,ET,201812,3,2,17860,226 -931,FR,ET,201812,4,2,582639,6719 -931,FR,ET,201812,4,2,29170,34 -931,FR,ET,201812,4,2,95709,717 -931,FR,ET,201812,4,2,3954,390 -931,FR,ET,201812,4,2,4650,860 -939,FR,ET,201812,0,2,375,15 -939,FR,ET,201812,1,2,89015,6189 -939,FR,ET,201812,1,2,15723,806 -939,FR,ET,201812,1,2,50929,4650 -939,FR,ET,201812,4,2,87782,2114 -939,FR,ET,201812,4,2,5012,22 -939,FR,ET,201812,4,2,1925817,1672 -939,FR,ET,201812,4,2,95739,4960 -941,FR,ET,201812,1,2,10635,622 -949,FR,ET,201812,4,2,65980,7 -949,FR,ET,201812,4,2,66359,5 -949,FR,ET,201812,4,2,12260,240 -949,FR,ET,201812,4,2,1805,30 -949,FR,ET,201812,4,2,1010,10 -952,FR,ET,201812,0,1,5697,1 -961,FR,ET,201812,4,1,21334,200 -961,FR,ET,201812,4,1,421,3 -962,FR,ET,201812,4,2,2521,110 -963,FR,ET,201812,1,1,324091,26221 -963,FR,ET,201812,1,1,556463,52194 -963,FR,ET,201812,3,1,1194,31 -963,FR,ET,201812,4,1,985,16 -963,FR,ET,201812,4,1,2893,23 -963,FR,ET,201812,0,2,25,4 -963,FR,ET,201812,4,2,985,51 -971,FR,ET,201812,4,1,12173,3394 -971,FR,ET,201812,4,2,43132,6085 -971,FR,ET,201812,4,2,2806,104 -972,FR,ET,201812,4,2,329,1 -974,FR,ET,201812,0,2,300,0 -974,FR,ET,201812,3,2,10,0 -974,FR,ET,201812,4,2,478,97 -974,FR,ET,201812,4,2,20526,3440 -975,FR,ET,201812,4,1,7558,594 -975,FR,ET,201812,4,2,1946,0 -976,FR,ET,201812,1,2,19250,1320 -979,FR,ET,201812,4,1,11992,0 -979,FR,ET,201812,4,1,98820,14 -979,FR,ET,201812,3,2,2810,4 -979,FR,ET,201812,4,2,61760,2517 -979,FR,ET,201812,4,2,3198,166 -979,FR,ET,201812,4,2,111406,2257 -979,FR,ET,201812,4,2,490,10 -979,FR,ET,201812,4,2,10500,2500 -979,FR,ET,201812,4,2,2403,1 -999,FR,ET,201812,4,1,7480,0 -999,FR,ET,201812,3,2,8271,0 -999,FR,ET,201812,4,2,42176,402 -128,FR,ER,201812,1,2,4311,21140 -182,FR,ER,201812,1,2,42000,10640 -724,FR,ER,201812,1,2,93460,180000 -910,FR,ER,201812,4,2,49526,1080 -931,FR,ER,201812,4,2,9978,66 -939,FR,ER,201812,1,2,11832,445 -939,FR,ER,201812,1,2,86705,6857 -939,FR,ER,201812,1,2,170917,10212 -939,FR,ER,201812,4,2,1104,20 -971,FR,ER,201812,1,2,6728,758 -979,FR,ER,201812,4,1,413,13 -979,FR,ER,201812,4,2,3389,130 -999,FR,ER,201812,4,2,1,0 -999,FR,ER,201812,4,2,100,0 -035,FR,DJ,201812,1,2,7294,2143 -035,FR,DJ,201812,1,2,49449,41261 -039,FR,DJ,201812,4,2,14219,4764 -049,FR,DJ,201812,1,2,2514,1414 -055,FR,DJ,201812,1,2,24525,48000 -099,FR,DJ,201812,4,2,2084,43 -112,FR,DJ,201812,1,2,1832,2700 -121,FR,DJ,201812,1,2,30696,14386 -121,FR,DJ,201812,4,2,334,18 -122,FR,DJ,201812,1,1,9959,8712 -122,FR,DJ,201812,1,2,13564,18268 -122,FR,DJ,201812,4,2,25,30 -125,FR,DJ,201812,1,2,395,92 -125,FR,DJ,201812,1,2,4150,634 -125,FR,DJ,201812,1,2,1001,882 -125,FR,DJ,201812,1,2,15069,14408 -125,FR,DJ,201812,4,2,100,28 -128,FR,DJ,201812,1,2,10945,7598 -128,FR,DJ,201812,1,2,16629,48750 -128,FR,DJ,201812,1,2,13741,32357 -128,FR,DJ,201812,1,2,7420,17357 -131,FR,DJ,201812,1,2,2832,562 -131,FR,DJ,201812,1,2,1500,160 -132,FR,DJ,201812,1,2,8703,1442 -132,FR,DJ,201812,1,2,26099,4587 -132,FR,DJ,201812,1,2,3089,1476 -132,FR,DJ,201812,1,2,9645,3805 -132,FR,DJ,201812,4,2,4644,28 -133,FR,DJ,201812,1,2,91,90 -133,FR,DJ,201812,1,2,250,168 -136,FR,DJ,201812,1,2,1566,188 -136,FR,DJ,201812,1,2,638,630 -136,FR,DJ,201812,1,2,3367,1872 -136,FR,DJ,201812,1,2,52239,57629 -136,FR,DJ,201812,1,2,400,110 -139,FR,DJ,201812,1,2,6618,137 -139,FR,DJ,201812,1,2,17442,6396 -139,FR,DJ,201812,1,2,3883,4706 -139,FR,DJ,201812,1,2,11148,36800 -139,FR,DJ,201812,1,2,37081,15496 -139,FR,DJ,201812,1,2,32246,4650 -139,FR,DJ,201812,1,2,73979,16916 -139,FR,DJ,201812,1,2,2300,1010 -139,FR,DJ,201812,4,2,26063,5987 -139,FR,DJ,201812,4,2,1315,708 -139,FR,DJ,201812,4,2,37942,2207 -139,FR,DJ,201812,5,2,1420,15 -141,FR,DJ,201812,1,2,84698,47760 -141,FR,DJ,201812,4,2,10629,1278 -142,FR,DJ,201812,1,2,4584,210 -142,FR,DJ,201812,4,2,5500,720 -143,FR,DJ,201812,1,2,1032,210 -144,FR,DJ,201812,1,2,15505,2122 -144,FR,DJ,201812,1,2,94829,17246 -144,FR,DJ,201812,1,2,42660,24750 -144,FR,DJ,201812,4,2,5686,2204 -146,FR,DJ,201812,1,2,1681,750 -147,FR,DJ,201812,1,2,11755,1543 -147,FR,DJ,201812,4,2,3791,1023 -147,FR,DJ,201812,4,2,1887,368 -148,FR,DJ,201812,1,2,852,58 -163,FR,DJ,201812,1,2,18113,6891 -163,FR,DJ,201812,1,2,40407,26884 -163,FR,DJ,201812,1,2,62445,19353 -163,FR,DJ,201812,1,2,32767,22966 -163,FR,DJ,201812,1,2,24835,6459 -163,FR,DJ,201812,4,2,501,153 -163,FR,DJ,201812,4,2,446,209 -164,FR,DJ,201812,1,2,3789,2180 -164,FR,DJ,201812,1,2,8493,2225 -164,FR,DJ,201812,1,2,7950,6141 -164,FR,DJ,201812,4,2,229,89 -166,FR,DJ,201812,1,2,16095,8504 -166,FR,DJ,201812,1,2,28256,14437 -166,FR,DJ,201812,1,2,727,211 -166,FR,DJ,201812,1,2,1375,412 -179,FR,DJ,201812,1,2,4500,1760 -179,FR,DJ,201812,1,2,782,160 -179,FR,DJ,201812,1,2,450,550 -182,FR,DJ,201812,1,2,3861,840 -182,FR,DJ,201812,1,2,750,192 -349,FR,DJ,201812,1,2,14,1 -349,FR,DJ,201812,4,2,34,2 -551,FR,DJ,201812,1,2,180,48 -568,FR,DJ,201812,4,2,14,0 -621,FR,DJ,201812,1,2,150,162 -691,FR,DJ,201812,1,2,8224,800 -692,FR,DJ,201812,1,2,3322,6318 -692,FR,DJ,201812,1,2,9878,8200 -819,FR,DJ,201812,1,2,19,3 -819,FR,DJ,201812,1,2,315,560 -891,FR,DJ,201812,1,2,3768,437 -891,FR,DJ,201812,1,2,2518,1262 -891,FR,DJ,201812,4,2,4,0 -891,FR,DJ,201812,4,2,146,1 -892,FR,DJ,201812,1,2,883,227 -892,FR,DJ,201812,1,2,6866,3050 -892,FR,DJ,201812,4,2,10231,1582 -892,FR,DJ,201812,4,2,15642,1000 -893,FR,DJ,201812,0,2,41,0 -893,FR,DJ,201812,1,2,497077,40159 -893,FR,DJ,201812,1,2,62689,22226 -893,FR,DJ,201812,1,2,306755,30949 -893,FR,DJ,201812,4,2,36008,754 -893,FR,DJ,201812,4,2,103382,3116 -893,FR,DJ,201812,4,2,13520,125 -895,FR,DJ,201812,1,2,3100,690 -896,FR,DJ,201812,1,2,5607,1985 -896,FR,DJ,201812,1,2,9329,17064 -896,FR,DJ,201812,4,2,1756,67 -910,FR,DJ,201812,4,1,497,40 -910,FR,DJ,201812,1,2,11950,2550 -910,FR,DJ,201812,1,2,3620,432 -910,FR,DJ,201812,1,2,3275,2208 -910,FR,DJ,201812,4,2,8232,219 -910,FR,DJ,201812,4,2,10958,106 -931,FR,DJ,201812,0,1,19,0 -931,FR,DJ,201812,4,1,700,135 -931,FR,DJ,201812,4,1,88,25 -931,FR,DJ,201812,4,1,379,1 -931,FR,DJ,201812,1,2,428053,40927 -931,FR,DJ,201812,1,2,231359,66459 -931,FR,DJ,201812,1,2,358,1 -931,FR,DJ,201812,3,2,150895,5174 -931,FR,DJ,201812,4,2,183482,522 -931,FR,DJ,201812,4,2,19106,88 -931,FR,DJ,201812,4,2,5305,0 -931,FR,DJ,201812,4,2,3410,10 -931,FR,DJ,201812,4,2,684,30 -931,FR,DJ,201812,4,2,11040,250 -931,FR,DJ,201812,5,2,17240,448 -939,FR,DJ,201812,3,1,2160,14 -939,FR,DJ,201812,4,1,130,4 -939,FR,DJ,201812,0,2,1484,19 -939,FR,DJ,201812,1,2,211714,13087 -939,FR,DJ,201812,1,2,20000,1905 -939,FR,DJ,201812,1,2,72000,10598 -939,FR,DJ,201812,1,2,317969,24005 -939,FR,DJ,201812,4,2,71181,732 -939,FR,DJ,201812,4,2,8925,26 -939,FR,DJ,201812,4,2,19806,268 -939,FR,DJ,201812,4,2,56363,2220 -939,FR,DJ,201812,4,2,684,5 -941,FR,DJ,201812,1,2,14237,2811 -941,FR,DJ,201812,1,2,96000,29300 -941,FR,DJ,201812,1,2,63827,11036 -949,FR,DJ,201812,4,1,50,6 -949,FR,DJ,201812,1,2,18467,2185 -949,FR,DJ,201812,1,2,9825,1977 -949,FR,DJ,201812,1,2,42031,3737 -949,FR,DJ,201812,1,2,27047,3756 -949,FR,DJ,201812,4,2,759,77 -949,FR,DJ,201812,4,2,134,0 -949,FR,DJ,201812,5,2,31,0 -951,FR,DJ,201812,4,2,456,14 -952,FR,DJ,201812,1,2,8957,1315 -962,FR,DJ,201812,1,2,10529,1467 -962,FR,DJ,201812,1,2,450,150 -962,FR,DJ,201812,1,2,869,70 -962,FR,DJ,201812,4,2,10018,88 -963,FR,DJ,201812,4,1,531,14 -963,FR,DJ,201812,1,2,758,10 -963,FR,DJ,201812,1,2,2577,25 -963,FR,DJ,201812,4,2,476,12 -971,FR,DJ,201812,1,2,2612,101 -971,FR,DJ,201812,4,2,89,3 -973,FR,DJ,201812,1,2,11787,10493 -973,FR,DJ,201812,1,2,82685,28931 -973,FR,DJ,201812,4,2,776,83 -973,FR,DJ,201812,4,2,8630,700 -974,FR,DJ,201812,0,2,30,0 -974,FR,DJ,201812,1,2,1148,115 -974,FR,DJ,201812,1,2,8300,14800 -974,FR,DJ,201812,3,2,35,1 -974,FR,DJ,201812,4,2,50118,551 -974,FR,DJ,201812,4,2,3247,479 -975,FR,DJ,201812,1,2,12573,834 -975,FR,DJ,201812,1,2,7427,1022 -975,FR,DJ,201812,1,2,10000,5660 -975,FR,DJ,201812,4,2,314,12 -976,FR,DJ,201812,1,2,5056,1335 -976,FR,DJ,201812,1,2,79112,14289 -976,FR,DJ,201812,4,2,895,75 -979,FR,DJ,201812,3,1,434,1 -979,FR,DJ,201812,4,1,9304,290 -979,FR,DJ,201812,0,2,2389,14 -979,FR,DJ,201812,1,2,75485,4834 -979,FR,DJ,201812,1,2,4900,179 -979,FR,DJ,201812,1,2,2486,184 -979,FR,DJ,201812,1,2,53057,2544 -979,FR,DJ,201812,4,2,2050,21 -979,FR,DJ,201812,4,2,417,30 -979,FR,DJ,201812,4,2,4764,10 -979,FR,DJ,201812,4,2,15576,30 -979,FR,DJ,201812,4,2,1515,5 -979,FR,DJ,201812,4,2,716,3 -979,FR,DJ,201812,5,2,3045,24 -999,FR,DJ,201812,4,1,6225,0 -999,FR,DJ,201812,1,2,5262,0 -999,FR,DJ,201812,1,2,4100,0 -999,FR,DJ,201812,1,2,4375,0 -999,FR,DJ,201812,4,2,2123,10 -999,FR,DJ,201812,4,2,2231,10 -099,FR,SO,201812,1,1,50267,4890 -099,FR,SO,201812,1,1,10000,2000 -139,FR,SO,201812,1,2,89120,34704 -139,FR,SO,201812,1,2,38250,15900 -139,FR,SO,201812,1,2,521640,226800 -139,FR,SO,201812,1,2,103935,14962 -139,FR,SO,201812,1,2,861084,428400 -164,FR,SO,201812,1,2,238,61 -893,FR,SO,201812,1,2,147777,5321 -931,FR,SO,201812,4,1,249,2 -931,FR,SO,201812,1,2,208475,5129 -931,FR,SO,201812,4,2,14191,130 -973,FR,SO,201812,1,2,19,2 -979,FR,SO,201812,1,2,88,1 -979,FR,SO,201812,4,2,3953,130 -001,FR,KE,201812,4,2,43060,398 -011,FR,KE,201812,4,1,358,1 -012,FR,KE,201812,1,2,885,2000 -020,FR,KE,201812,4,2,440,1100 -035,FR,KE,201812,1,1,31801,21632 -035,FR,KE,201812,4,1,1047,114 -035,FR,KE,201812,4,1,35454,3198 -035,FR,KE,201812,4,1,7694,568 -035,FR,KE,201812,4,1,4491,488 -035,FR,KE,201812,1,2,40000,42517 -039,FR,KE,201812,1,1,39240,16019 -039,FR,KE,201812,1,1,115530,43908 -039,FR,KE,201812,4,1,1202038,348714 -039,FR,KE,201812,4,1,8768,1602 -039,FR,KE,201812,4,1,112850,23352 -039,FR,KE,201812,4,1,27491,5568 -039,FR,KE,201812,4,1,148458,46874 -039,FR,KE,201812,4,1,10504,2054 -039,FR,KE,201812,4,1,1062881,279483 -039,FR,KE,201812,4,1,36562,7265 -039,FR,KE,201812,4,1,33682,7106 -039,FR,KE,201812,4,1,1174,300 -039,FR,KE,201812,1,2,330,270 -099,FR,KE,201812,4,1,79651,8080 -099,FR,KE,201812,4,1,1778,150 -099,FR,KE,201812,4,1,14458,478 -099,FR,KE,201812,4,1,87373,3987 -099,FR,KE,201812,4,1,207724,21352 -099,FR,KE,201812,4,1,237,0 -099,FR,KE,201812,3,2,47,33 -099,FR,KE,201812,4,2,6668,30 -099,FR,KE,201812,4,2,100,195 -111,FR,KE,201812,4,2,20,8 -121,FR,KE,201812,4,2,21724,697 -121,FR,KE,201812,4,2,53448,3753 -125,FR,KE,201812,1,2,124784,12510 -125,FR,KE,201812,1,2,9999,2868 -125,FR,KE,201812,4,2,10239,315 -125,FR,KE,201812,4,2,40888,6132 -125,FR,KE,201812,4,2,39,1 -128,FR,KE,201812,4,2,9,9 -131,FR,KE,201812,0,1,126469,58132 -131,FR,KE,201812,4,2,1601,43 -132,FR,KE,201812,1,2,105,24 -132,FR,KE,201812,1,2,152,33 -133,FR,KE,201812,1,1,100,20 -133,FR,KE,201812,4,1,1331,314 -133,FR,KE,201812,4,1,12,2 -134,FR,KE,201812,1,1,59675,85860 -135,FR,KE,201812,4,2,1259,11 -136,FR,KE,201812,1,2,23450,32000 -139,FR,KE,201812,1,2,242,116 -139,FR,KE,201812,1,2,37108,7146 -139,FR,KE,201812,4,2,16066,3859 -142,FR,KE,201812,1,1,133503,10593 -142,FR,KE,201812,4,1,9881,142 -142,FR,KE,201812,4,1,17946,5100 -142,FR,KE,201812,1,2,316,42 -143,FR,KE,201812,1,2,42504,19251 -147,FR,KE,201812,1,2,1302,260 -147,FR,KE,201812,1,2,915,198 -148,FR,KE,201812,1,2,1187,241 -148,FR,KE,201812,1,2,375,104 -163,FR,KE,201812,1,2,33295,10378 -163,FR,KE,201812,1,2,3024,836 -164,FR,KE,201812,1,1,190952,153783 -164,FR,KE,201812,1,1,22719,39330 -164,FR,KE,201812,1,2,27620,11982 -164,FR,KE,201812,1,2,257,91 -165,FR,KE,201812,1,2,179863,29390 -165,FR,KE,201812,1,2,68422,16037 -166,FR,KE,201812,1,1,217938,189574 -166,FR,KE,201812,1,1,38188,34552 -166,FR,KE,201812,1,1,1179234,732292 -166,FR,KE,201812,1,1,224158,207290 -166,FR,KE,201812,1,1,18623,17144 -166,FR,KE,201812,1,1,125534,83018 -166,FR,KE,201812,1,1,93115,85720 -166,FR,KE,201812,1,1,711327,536413 -166,FR,KE,201812,1,1,1730915,1121356 -166,FR,KE,201812,4,1,1943,336 -166,FR,KE,201812,4,1,34,4 -166,FR,KE,201812,4,1,423,59 -166,FR,KE,201812,4,1,37,5 -166,FR,KE,201812,4,1,2100,339 -166,FR,KE,201812,4,1,90,11 -166,FR,KE,201812,1,2,4558,4459 -166,FR,KE,201812,1,2,1472,1410 -179,FR,KE,201812,1,2,55072,23677 -182,FR,KE,201812,1,1,175575,56480 -182,FR,KE,201812,1,2,5986,1970 -323,FR,KE,201812,1,2,46458,40080 -465,FR,KE,201812,3,1,111,4 -522,FR,KE,201812,1,2,96842,9593 -536,FR,KE,201812,3,2,34015,23361 -568,FR,KE,201812,1,2,38804,4991 -621,FR,KE,201812,4,2,91,2 -691,FR,KE,201812,1,2,40,12 -691,FR,KE,201812,4,2,21520,255 -723,FR,KE,201812,1,2,6882,2750 -724,FR,KE,201812,1,2,63290,189000 -819,FR,KE,201812,1,2,12978,2896 -819,FR,KE,201812,4,2,664,60 -819,FR,KE,201812,4,2,161,10 -891,FR,KE,201812,1,2,422117,280460 -891,FR,KE,201812,1,2,234824,122380 -891,FR,KE,201812,4,2,11654,2700 -891,FR,KE,201812,4,2,512,1 -891,FR,KE,201812,4,2,1061,600 -892,FR,KE,201812,1,2,9201,256 -892,FR,KE,201812,1,2,47160,4509 -893,FR,KE,201812,4,1,1844,17 -893,FR,KE,201812,1,2,183980,23139 -893,FR,KE,201812,1,2,110367,4105 -893,FR,KE,201812,1,2,74726,941 -893,FR,KE,201812,1,2,250095,18270 -893,FR,KE,201812,3,2,3394,40 -893,FR,KE,201812,4,2,173661,6371 -893,FR,KE,201812,4,2,125561,503 -893,FR,KE,201812,4,2,273493,3282 -893,FR,KE,201812,4,2,18879,680 -893,FR,KE,201812,4,2,11194,290 -893,FR,KE,201812,4,2,256182,3886 -896,FR,KE,201812,1,2,48803,8720 -896,FR,KE,201812,1,2,193141,1418 -896,FR,KE,201812,1,2,1351677,185590 -896,FR,KE,201812,1,2,121870,1920 -896,FR,KE,201812,1,2,117401,46802 -896,FR,KE,201812,1,2,68390,16750 -896,FR,KE,201812,1,2,138213,40750 -896,FR,KE,201812,3,2,123734,47415 -896,FR,KE,201812,3,2,27076,19860 -896,FR,KE,201812,3,2,26940,19760 -896,FR,KE,201812,4,2,50790,411 -896,FR,KE,201812,4,2,8675,41 -896,FR,KE,201812,4,2,5911,170 -910,FR,KE,201812,3,1,855,0 -910,FR,KE,201812,3,2,8320,1343 -910,FR,KE,201812,4,2,29794,70 -910,FR,KE,201812,4,2,16462,230 -920,FR,KE,201812,1,2,88720,8240 -920,FR,KE,201812,4,2,149504,764 -920,FR,KE,201812,4,2,1065,350 -931,FR,KE,201812,0,2,115,1 -931,FR,KE,201812,1,2,892665,42371 -931,FR,KE,201812,1,2,95444,6672 -931,FR,KE,201812,1,2,58122,530 -931,FR,KE,201812,1,2,53352,24293 -931,FR,KE,201812,1,2,167382,22107 -931,FR,KE,201812,1,2,89777,12320 -931,FR,KE,201812,3,2,4065,7 -931,FR,KE,201812,4,2,2011995,23672 -931,FR,KE,201812,4,2,9202,5 -931,FR,KE,201812,4,2,14644,222 -931,FR,KE,201812,4,2,2943,71 -931,FR,KE,201812,4,2,3820,27 -931,FR,KE,201812,4,2,59240,2160 -931,FR,KE,201812,5,2,1554,22 -939,FR,KE,201812,0,1,943,4 -939,FR,KE,201812,3,1,1258,33 -939,FR,KE,201812,4,1,18054,14 -939,FR,KE,201812,4,1,167,0 -939,FR,KE,201812,1,2,64366,6286 -939,FR,KE,201812,1,2,12995,1263 -939,FR,KE,201812,1,2,175974,20473 -939,FR,KE,201812,1,2,87524,3174 -939,FR,KE,201812,1,2,155000,84875 -939,FR,KE,201812,3,2,5021,172 -939,FR,KE,201812,3,2,8160,1991 -939,FR,KE,201812,4,2,1851676,10926 -939,FR,KE,201812,4,2,77196,1545 -939,FR,KE,201812,4,2,6042,553 -939,FR,KE,201812,4,2,60,60 -939,FR,KE,201812,4,2,59112,1870 -941,FR,KE,201812,4,2,5760,520 -949,FR,KE,201812,1,2,146,5 -949,FR,KE,201812,1,2,50,1 -949,FR,KE,201812,1,2,544455,197534 -949,FR,KE,201812,1,2,18307,5360 -949,FR,KE,201812,1,2,24320,5282 -949,FR,KE,201812,3,2,70539,21050 -949,FR,KE,201812,4,2,83453,11142 -949,FR,KE,201812,4,2,4766,394 -949,FR,KE,201812,4,2,4411,360 -949,FR,KE,201812,4,2,4243,21 -951,FR,KE,201812,3,2,2229,63 -951,FR,KE,201812,4,2,85,1 -952,FR,KE,201812,1,1,134933,238665 -952,FR,KE,201812,1,2,24,7 -952,FR,KE,201812,1,2,32295,15210 -952,FR,KE,201812,4,2,1413,20 -962,FR,KE,201812,3,1,313,1 -962,FR,KE,201812,1,2,6471,426 -962,FR,KE,201812,4,2,12631,355 -962,FR,KE,201812,4,2,3103,176 -963,FR,KE,201812,3,1,323,0 -963,FR,KE,201812,4,1,47,0 -963,FR,KE,201812,4,1,1023,33 -963,FR,KE,201812,4,1,204,0 -963,FR,KE,201812,4,1,1733,179 -963,FR,KE,201812,4,1,850,2 -963,FR,KE,201812,4,1,1047,83 -963,FR,KE,201812,0,2,50,1 -963,FR,KE,201812,1,2,105,28 -963,FR,KE,201812,1,2,49,20 -963,FR,KE,201812,3,2,180,16 -963,FR,KE,201812,3,2,1680,12 -963,FR,KE,201812,4,2,15497,234 -963,FR,KE,201812,4,2,6427,549 -963,FR,KE,201812,4,2,10558,150 -971,FR,KE,201812,1,2,20,0 -971,FR,KE,201812,1,2,15394,4100 -971,FR,KE,201812,4,2,226,6 -971,FR,KE,201812,4,2,2488,23 -971,FR,KE,201812,4,2,2461,112 -972,FR,KE,201812,1,2,23320,24244 -973,FR,KE,201812,1,2,10,3 -973,FR,KE,201812,4,2,12282,534 -974,FR,KE,201812,3,1,82,0 -974,FR,KE,201812,0,2,40,4 -974,FR,KE,201812,1,2,3223,226 -974,FR,KE,201812,1,2,370,262 -974,FR,KE,201812,3,2,60,0 -974,FR,KE,201812,4,2,917,67 -974,FR,KE,201812,4,2,1348,200 -975,FR,KE,201812,1,2,1046681,14306 -975,FR,KE,201812,4,2,1941,81 -976,FR,KE,201812,4,1,356,0 -979,FR,KE,201812,1,1,9273,2904 -979,FR,KE,201812,3,1,1660,4 -979,FR,KE,201812,4,1,47,0 -979,FR,KE,201812,4,1,471,0 -979,FR,KE,201812,4,1,6556,129 -979,FR,KE,201812,4,1,304,29 -979,FR,KE,201812,4,1,794,2 -979,FR,KE,201812,1,2,2124,355 -979,FR,KE,201812,4,2,693253,8943 -979,FR,KE,201812,4,2,2149,0 -979,FR,KE,201812,4,2,2292,105 -979,FR,KE,201812,4,2,5372,270 -979,FR,KE,201812,4,2,1800,8 -999,FR,KE,201812,1,2,22330,7782 -999,FR,KE,201812,1,2,8260,3500 -999,FR,KE,201812,1,2,65788,409 -999,FR,KE,201812,1,2,251902,129560 -999,FR,KE,201812,1,2,27915,0 -999,FR,KE,201812,3,2,8994,0 -999,FR,KE,201812,4,2,24097,204 -999,FR,KE,201812,4,2,521,4 -039,FR,UG,201812,4,1,32567,17278 -099,FR,UG,201812,4,1,3205,125 -099,FR,UG,201812,4,1,11377,443 -099,FR,UG,201812,4,1,542,245 -099,FR,UG,201812,4,1,1761,30 -099,FR,UG,201812,4,2,41070,200 -121,FR,UG,201812,1,2,4457,297 -125,FR,UG,201812,1,2,124507,29272 -131,FR,UG,201812,0,1,172809,135557 -131,FR,UG,201812,1,1,89629,37548 -131,FR,UG,201812,1,1,83160,64800 -131,FR,UG,201812,1,1,67744,31885 -131,FR,UG,201812,3,1,59854,29245 -132,FR,UG,201812,4,2,1053,79 -133,FR,UG,201812,1,1,16483,7500 -136,FR,UG,201812,4,2,586,960 -139,FR,UG,201812,1,2,17391,3053 -139,FR,UG,201812,1,2,79177,15053 -147,FR,UG,201812,4,2,1017,58 -181,FR,UG,201812,1,1,293874,528000 -343,FR,UG,201812,4,2,93,21 -551,FR,UG,201812,4,2,394,21 -621,FR,UG,201812,4,2,41,5 -891,FR,UG,201812,4,2,20,1 -892,FR,UG,201812,4,2,207,30 -893,FR,UG,201812,4,1,70737,1432 -893,FR,UG,201812,4,2,173685,3537 -893,FR,UG,201812,4,2,900,58 -893,FR,UG,201812,4,2,142187,257 -893,FR,UG,201812,4,2,2245,110 -894,FR,UG,201812,4,2,1576,1 -896,FR,UG,201812,4,2,3149,23 -896,FR,UG,201812,4,2,2091,20 -896,FR,UG,201812,4,2,294,25 -910,FR,UG,201812,1,2,58000,30800 -910,FR,UG,201812,1,2,4650,11140 -910,FR,UG,201812,4,2,27554,1431 -920,FR,UG,201812,4,2,442,24 -931,FR,UG,201812,3,1,296,1 -931,FR,UG,201812,1,2,29648,2573 -931,FR,UG,201812,1,2,2942,1000 -931,FR,UG,201812,1,2,175086,1410 -931,FR,UG,201812,4,2,158396,764 -931,FR,UG,201812,4,2,6100,89 -931,FR,UG,201812,4,2,199968,143 -931,FR,UG,201812,4,2,2462,250 -931,FR,UG,201812,4,2,114760,75 -931,FR,UG,201812,4,2,15266,25 -931,FR,UG,201812,4,2,25447,140 -931,FR,UG,201812,5,2,188,6 -939,FR,UG,201812,3,1,453,2 -939,FR,UG,201812,4,1,13,0 -939,FR,UG,201812,1,2,20488,1432 -939,FR,UG,201812,1,2,307839,10420 -939,FR,UG,201812,1,2,58075,66123 -939,FR,UG,201812,1,2,38619,2145 -939,FR,UG,201812,3,2,38445,2444 -939,FR,UG,201812,4,2,162802,4279 -939,FR,UG,201812,4,2,27095,424 -939,FR,UG,201812,4,2,18328,350 -939,FR,UG,201812,4,2,23010,130 -939,FR,UG,201812,4,2,145191,450 -939,FR,UG,201812,4,2,17204,570 -949,FR,UG,201812,4,2,3592,167 -949,FR,UG,201812,4,2,1316,3 -951,FR,UG,201812,4,2,541,28 -952,FR,UG,201812,3,1,768,18 -952,FR,UG,201812,4,2,1632,6 -952,FR,UG,201812,4,2,197,5 -962,FR,UG,201812,4,2,55,1 -963,FR,UG,201812,3,1,97,0 -971,FR,UG,201812,1,2,29,0 -971,FR,UG,201812,4,2,2039,95 -971,FR,UG,201812,4,2,1000,20 -971,FR,UG,201812,4,2,1068,0 -973,FR,UG,201812,4,2,8309,312 -974,FR,UG,201812,0,2,50,2 -975,FR,UG,201812,4,2,5502,910 -979,FR,UG,201812,3,1,330,9 -979,FR,UG,201812,4,1,1757,57 -979,FR,UG,201812,4,1,1610,10 -979,FR,UG,201812,1,2,442,3 -979,FR,UG,201812,4,2,364,34 -979,FR,UG,201812,4,2,12526,357 -979,FR,UG,201812,4,2,1863,10 -999,FR,UG,201812,4,1,1040,0 -999,FR,UG,201812,4,1,5575,0 -999,FR,UG,201812,4,2,97832,8 -999,FR,UG,201812,4,2,450,0 -999,FR,UG,201812,4,2,438,25 -039,FR,TZ,201812,4,1,11461,3440 -042,FR,TZ,201812,1,1,60291,79818 -049,FR,TZ,201812,1,2,12786,25380 -049,FR,TZ,201812,1,2,31397,53760 -049,FR,TZ,201812,1,2,13410,20446 -049,FR,TZ,201812,1,2,31170,53760 -099,FR,TZ,201812,1,1,64423,105000 -112,FR,TZ,201812,1,2,188941,552000 -121,FR,TZ,201812,1,2,7650,338 -121,FR,TZ,201812,1,2,22714,14940 -125,FR,TZ,201812,1,2,78572,9577 -125,FR,TZ,201812,1,2,22433,10472 -128,FR,TZ,201812,1,1,1449,2995 -128,FR,TZ,201812,1,1,1060,1500 -131,FR,TZ,201812,1,1,44998,34916 -132,FR,TZ,201812,1,2,1290,316 -133,FR,TZ,201812,1,2,65,4 -134,FR,TZ,201812,0,1,3573250,782100 -136,FR,TZ,201812,1,1,294,679 -136,FR,TZ,201812,1,2,635,256 -139,FR,TZ,201812,1,2,2909,2081 -139,FR,TZ,201812,1,2,8909,5000 -139,FR,TZ,201812,1,2,60062,12567 -142,FR,TZ,201812,4,1,141787,39990 -148,FR,TZ,201812,1,2,291,72 -162,FR,TZ,201812,1,2,314280,952000 -163,FR,TZ,201812,1,2,3581,2294 -166,FR,TZ,201812,1,2,2383,1107 -179,FR,TZ,201812,1,2,1346,1459 -182,FR,TZ,201812,1,2,3185,1094 -323,FR,TZ,201812,1,2,15023,6520 -341,FR,TZ,201812,1,2,24148,7622 -341,FR,TZ,201812,1,2,47819,14180 -543,FR,TZ,201812,1,2,5760,187 -551,FR,TZ,201812,4,2,1899,0 -568,FR,TZ,201812,1,2,1069,252 -568,FR,TZ,201812,4,2,8441,3 -621,FR,TZ,201812,1,2,130,281 -819,FR,TZ,201812,4,2,34,21 -891,FR,TZ,201812,1,2,170566,108000 -891,FR,TZ,201812,4,2,1107,0 -892,FR,TZ,201812,4,2,693,17 -893,FR,TZ,201812,1,1,1366,2072 -893,FR,TZ,201812,1,1,637,250 -893,FR,TZ,201812,1,2,11927,8983 -893,FR,TZ,201812,1,2,182022,8828 -893,FR,TZ,201812,4,2,64550,818 -893,FR,TZ,201812,4,2,112047,1506 -896,FR,TZ,201812,1,2,10856,4900 -896,FR,TZ,201812,1,2,676764,247216 -896,FR,TZ,201812,1,2,93628,31408 -896,FR,TZ,201812,1,2,40780,7480 -896,FR,TZ,201812,4,2,55513,190 -896,FR,TZ,201812,4,2,26,5 -896,FR,TZ,201812,4,2,51700,800 -910,FR,TZ,201812,4,1,98,8 -910,FR,TZ,201812,1,2,152000,15690 -910,FR,TZ,201812,1,2,132861,10545 -910,FR,TZ,201812,4,2,234166,506 -910,FR,TZ,201812,4,2,99,10 -910,FR,TZ,201812,4,2,247481,2540 -931,FR,TZ,201812,1,1,588,187 -931,FR,TZ,201812,4,1,24058,41 -931,FR,TZ,201812,4,1,186,55 -931,FR,TZ,201812,1,2,3458222,14952 -931,FR,TZ,201812,1,2,450377,100 -931,FR,TZ,201812,1,2,181277,30760 -931,FR,TZ,201812,3,2,3313,103 -931,FR,TZ,201812,4,2,139693,438 -931,FR,TZ,201812,4,2,602,20 -931,FR,TZ,201812,4,2,3972,85 -931,FR,TZ,201812,4,2,5550,67 -931,FR,TZ,201812,4,2,8794,134 -931,FR,TZ,201812,4,2,7744,646 -931,FR,TZ,201812,4,2,13553,110 -939,FR,TZ,201812,4,1,14395,40 -939,FR,TZ,201812,1,2,32850,1500 -939,FR,TZ,201812,1,2,32000,463 -939,FR,TZ,201812,1,2,3197,10 -939,FR,TZ,201812,1,2,36264,847 -939,FR,TZ,201812,1,2,22000,2574 -939,FR,TZ,201812,1,2,1100,107 -939,FR,TZ,201812,4,2,74237,1171 -939,FR,TZ,201812,4,2,12489,210 -939,FR,TZ,201812,4,2,47,2 -939,FR,TZ,201812,4,2,137238,5620 -939,FR,TZ,201812,4,2,28798,481 -939,FR,TZ,201812,4,2,1894,75 -939,FR,TZ,201812,4,2,172,2 -939,FR,TZ,201812,4,2,33310,2510 -949,FR,TZ,201812,4,1,456,13 -949,FR,TZ,201812,1,2,313,166 -949,FR,TZ,201812,4,2,30137,4 -949,FR,TZ,201812,4,2,6686,163 -949,FR,TZ,201812,4,2,300,25 -949,FR,TZ,201812,4,2,1820,1 -951,FR,TZ,201812,4,2,84,28 -952,FR,TZ,201812,0,1,56535,0 -952,FR,TZ,201812,4,1,21492,0 -952,FR,TZ,201812,4,2,72,0 -962,FR,TZ,201812,1,1,13886,6755 -962,FR,TZ,201812,1,1,662,120 -962,FR,TZ,201812,4,1,1360,500 -962,FR,TZ,201812,4,1,914,100 -962,FR,TZ,201812,1,2,389,34 -962,FR,TZ,201812,4,2,988,0 -962,FR,TZ,201812,4,2,41,10 -962,FR,TZ,201812,4,2,1568,370 -963,FR,TZ,201812,0,1,175,1 -963,FR,TZ,201812,1,1,8737,2229 -963,FR,TZ,201812,1,1,361,80 -963,FR,TZ,201812,4,1,1276,480 -963,FR,TZ,201812,4,1,5117,776 -963,FR,TZ,201812,4,2,244,14 -971,FR,TZ,201812,1,2,712,103 -971,FR,TZ,201812,1,2,47,7 -971,FR,TZ,201812,1,2,73212,21107 -971,FR,TZ,201812,4,2,9580,133 -972,FR,TZ,201812,1,2,53423,54811 -973,FR,TZ,201812,1,2,3088,1114 -974,FR,TZ,201812,4,1,68,44 -974,FR,TZ,201812,1,2,25150,5686 -974,FR,TZ,201812,1,2,230,162 -974,FR,TZ,201812,3,2,5,2 -974,FR,TZ,201812,4,2,25266,2899 -974,FR,TZ,201812,4,2,665,10 -974,FR,TZ,201812,4,2,6,3 -975,FR,TZ,201812,1,1,181,232 -975,FR,TZ,201812,1,1,718,125 -975,FR,TZ,201812,4,2,64852,25 -975,FR,TZ,201812,4,2,20464,15 -975,FR,TZ,201812,4,2,175,78 -979,FR,TZ,201812,1,1,930,183 -979,FR,TZ,201812,1,1,891,4800 -979,FR,TZ,201812,1,1,26223,4496 -979,FR,TZ,201812,3,1,201,4 -979,FR,TZ,201812,4,1,4175,470 -979,FR,TZ,201812,4,1,34630,987 -979,FR,TZ,201812,4,1,13699,18 -979,FR,TZ,201812,4,1,12335,43 -979,FR,TZ,201812,4,1,1427,190 -979,FR,TZ,201812,1,2,40,30 -979,FR,TZ,201812,1,2,1909,743 -979,FR,TZ,201812,4,2,63090,37 -979,FR,TZ,201812,4,2,6000,200 -979,FR,TZ,201812,4,2,31302,390 -979,FR,TZ,201812,4,2,2921,226 -979,FR,TZ,201812,4,2,2887,40 -999,FR,TZ,201812,0,1,694,0 -999,FR,TZ,201812,1,1,10110,0 -999,FR,TZ,201812,4,1,2182,0 -999,FR,TZ,201812,1,2,23108,6173 -999,FR,TZ,201812,1,2,2492,554 -999,FR,TZ,201812,1,2,82624,24040 -999,FR,TZ,201812,4,2,13906,0 -999,FR,TZ,201812,4,2,1630,0 -999,FR,TZ,201812,4,2,1620,37 -035,FR,SC,201812,1,2,4782,1097 -035,FR,SC,201812,4,2,447,50 -039,FR,SC,201812,4,2,86154,22580 -099,FR,SC,201812,4,2,3623,3 -121,FR,SC,201812,1,2,35565,1511 -121,FR,SC,201812,1,2,23014,5436 -121,FR,SC,201812,1,2,16733,245 -121,FR,SC,201812,1,2,36300,2921 -121,FR,SC,201812,1,2,4655,397 -121,FR,SC,201812,4,2,10827,202 -121,FR,SC,201812,4,2,2408,338 -121,FR,SC,201812,4,2,1699,301 -122,FR,SC,201812,1,2,8755,18876 -125,FR,SC,201812,1,2,13300,840 -125,FR,SC,201812,1,2,17226,1812 -125,FR,SC,201812,4,2,797,78 -125,FR,SC,201812,4,2,231,2 -128,FR,SC,201812,1,2,12775,15400 -128,FR,SC,201812,1,2,231,90 -131,FR,SC,201812,1,2,6127,587 -131,FR,SC,201812,4,2,307,2 -132,FR,SC,201812,1,2,3119,1132 -132,FR,SC,201812,4,2,8402,354 -132,FR,SC,201812,4,2,4607,88 -133,FR,SC,201812,1,2,1750,94 -136,FR,SC,201812,1,2,391,46 -139,FR,SC,201812,4,1,90,5 -139,FR,SC,201812,1,2,15997,2244 -139,FR,SC,201812,1,2,22473,7983 -139,FR,SC,201812,1,2,3984,2134 -139,FR,SC,201812,4,2,12266,1379 -139,FR,SC,201812,4,2,1151,183 -139,FR,SC,201812,4,2,43004,15226 -139,FR,SC,201812,4,2,116710,12054 -141,FR,SC,201812,1,2,579,100 -141,FR,SC,201812,4,2,504,18 -141,FR,SC,201812,4,2,24660,385 -141,FR,SC,201812,4,2,4831,145 -142,FR,SC,201812,4,1,123121,12486 -142,FR,SC,201812,1,2,5419532,3888975 -142,FR,SC,201812,4,2,548,48 -142,FR,SC,201812,4,2,14795,1317 -143,FR,SC,201812,1,2,11732,3328 -143,FR,SC,201812,1,2,53,23 -144,FR,SC,201812,1,2,26940,3996 -144,FR,SC,201812,1,2,23424,3370 -144,FR,SC,201812,4,2,4656,812 -144,FR,SC,201812,4,2,4739,880 -147,FR,SC,201812,1,2,3267,680 -147,FR,SC,201812,4,2,2385,41 -147,FR,SC,201812,4,2,4956,151 -148,FR,SC,201812,1,1,9901340,2028413 -148,FR,SC,201812,1,1,3377409,686482 -148,FR,SC,201812,1,2,1875,226 -148,FR,SC,201812,4,2,285,0 -148,FR,SC,201812,4,2,1221,38 -163,FR,SC,201812,1,2,14985,6722 -164,FR,SC,201812,1,2,155,20 -164,FR,SC,201812,1,2,1085,373 -166,FR,SC,201812,1,2,27902,7534 -166,FR,SC,201812,1,2,8613,1715 -166,FR,SC,201812,1,2,8088,6097 -182,FR,SC,201812,1,2,869,152 -321,FR,SC,201812,1,1,730946,1106455 -341,FR,SC,201812,4,2,568,20 -551,FR,SC,201812,1,2,490,34 -621,FR,SC,201812,1,2,150,80 -621,FR,SC,201812,3,2,5259,24500 -891,FR,SC,201812,1,2,11210,2488 -891,FR,SC,201812,4,2,756,145 -892,FR,SC,201812,1,2,28504,7647 -892,FR,SC,201812,1,2,6529,2520 -892,FR,SC,201812,1,2,492,49 -893,FR,SC,201812,1,2,32485,10706 -893,FR,SC,201812,1,2,3167,2595 -893,FR,SC,201812,1,2,3484,410 -893,FR,SC,201812,1,2,23849,18604 -893,FR,SC,201812,4,2,47761,860 -893,FR,SC,201812,4,2,6426,75 -893,FR,SC,201812,4,2,10685,530 -893,FR,SC,201812,4,2,8140,130 -893,FR,SC,201812,4,2,1848,131 -893,FR,SC,201812,4,2,975,35 -896,FR,SC,201812,1,2,4394,333 -896,FR,SC,201812,1,2,1145,668 -896,FR,SC,201812,1,2,226,21 -896,FR,SC,201812,4,2,6029,31 -910,FR,SC,201812,4,1,1223,8 -910,FR,SC,201812,0,2,60,1 -910,FR,SC,201812,1,2,23644,12204 -910,FR,SC,201812,1,2,414480,12500 -910,FR,SC,201812,1,2,8754,365 -910,FR,SC,201812,1,2,1550,2230 -910,FR,SC,201812,4,2,23321,50 -910,FR,SC,201812,4,2,2732,250 -920,FR,SC,201812,4,2,2275,110 -920,FR,SC,201812,4,2,2585,85 -931,FR,SC,201812,1,2,179,92 -931,FR,SC,201812,1,2,390953,7372 -931,FR,SC,201812,1,2,138400,5660 -931,FR,SC,201812,3,2,5325,5 -931,FR,SC,201812,4,2,118203,2164 -931,FR,SC,201812,4,2,9332,183 -931,FR,SC,201812,4,2,10400,420 -931,FR,SC,201812,4,2,152099,17 -931,FR,SC,201812,4,2,11191,320 -931,FR,SC,201812,4,2,11111,73 -931,FR,SC,201812,4,2,26385,780 -931,FR,SC,201812,4,2,1067,2 -939,FR,SC,201812,4,1,237,5 -939,FR,SC,201812,0,2,2006,35 -939,FR,SC,201812,1,2,683,51 -939,FR,SC,201812,1,2,448071,18201 -939,FR,SC,201812,1,2,6791,400 -939,FR,SC,201812,1,2,347,43 -939,FR,SC,201812,4,2,207763,3150 -939,FR,SC,201812,4,2,8614,106 -939,FR,SC,201812,4,2,3272,41 -939,FR,SC,201812,4,2,48781,818 -939,FR,SC,201812,4,2,4062,72 -939,FR,SC,201812,4,2,61521,1400 -939,FR,SC,201812,4,2,3370,100 -941,FR,SC,201812,1,2,829,82 -941,FR,SC,201812,1,2,704,258 -941,FR,SC,201812,4,2,8551,165 -949,FR,SC,201812,1,2,698,25 -949,FR,SC,201812,1,2,74734,10658 -949,FR,SC,201812,1,2,689519,247106 -949,FR,SC,201812,1,2,10728,6077 -949,FR,SC,201812,1,2,6060,1650 -949,FR,SC,201812,4,2,31791,575 -949,FR,SC,201812,4,2,3664,239 -951,FR,SC,201812,4,2,90,12 -952,FR,SC,201812,1,2,3449,366 -952,FR,SC,201812,1,2,1196,108 -952,FR,SC,201812,1,2,2328,674 -952,FR,SC,201812,4,2,5136,412 -952,FR,SC,201812,4,2,5440,171 -962,FR,SC,201812,1,2,49720,7440 -962,FR,SC,201812,1,2,2511,65 -962,FR,SC,201812,1,2,522,84 -962,FR,SC,201812,4,2,1778,77 -962,FR,SC,201812,4,2,5383,28 -963,FR,SC,201812,4,1,332,2 -963,FR,SC,201812,1,2,338,4 -963,FR,SC,201812,1,2,23667,3194 -963,FR,SC,201812,4,2,31714,192 -963,FR,SC,201812,4,2,13497,234 -963,FR,SC,201812,4,2,4920,32 -963,FR,SC,201812,4,2,19448,160 -971,FR,SC,201812,1,2,64027,16050 -971,FR,SC,201812,4,2,242,3 -972,FR,SC,201812,1,2,93,71 -973,FR,SC,201812,1,2,317,12 -973,FR,SC,201812,1,2,20,32 -973,FR,SC,201812,1,2,1100,827 -973,FR,SC,201812,1,2,20351,6454 -973,FR,SC,201812,4,2,36,18 -973,FR,SC,201812,4,2,676,18 -973,FR,SC,201812,4,2,338,87 -974,FR,SC,201812,1,2,27,1 -974,FR,SC,201812,4,2,157353,988 -974,FR,SC,201812,4,2,1488,53 -975,FR,SC,201812,1,2,1000,600 -975,FR,SC,201812,1,2,29009,4673 -975,FR,SC,201812,4,2,3076,4 -976,FR,SC,201812,1,2,430,173 -976,FR,SC,201812,1,2,1170,1907 -976,FR,SC,201812,4,2,8,17 -979,FR,SC,201812,0,2,193,7 -979,FR,SC,201812,1,2,311,28 -979,FR,SC,201812,1,2,16805,2441 -979,FR,SC,201812,1,2,8628,546 -979,FR,SC,201812,1,2,1,0 -979,FR,SC,201812,1,2,1300,138 -979,FR,SC,201812,1,2,22974,10880 -979,FR,SC,201812,1,2,7595,366 -979,FR,SC,201812,4,2,89604,1311 -979,FR,SC,201812,4,2,65826,17 -979,FR,SC,201812,4,2,25376,997 -979,FR,SC,201812,4,2,4140,482 -979,FR,SC,201812,4,2,15629,240 -999,FR,SC,201812,3,1,294,0 -999,FR,SC,201812,4,1,1079,0 -999,FR,SC,201812,1,2,168,60 -999,FR,SC,201812,1,2,450,0 -999,FR,SC,201812,1,2,3,3 -999,FR,SC,201812,1,2,500,0 -999,FR,SC,201812,4,2,14815,86 -999,FR,SC,201812,4,2,500,0 -035,FR,MZ,201812,1,1,244000,115200 -049,FR,MZ,201812,1,2,36666,54870 -049,FR,MZ,201812,1,2,55426,82440 -056,FR,MZ,201812,1,1,63478,93770 -139,FR,MZ,201812,1,2,202608,100800 -139,FR,MZ,201812,1,2,44702,25000 -139,FR,MZ,201812,4,2,378,27 -141,FR,MZ,201812,1,2,27846,54600 -142,FR,MZ,201812,1,1,970787,100800 -142,FR,MZ,201812,1,1,59842,6642 -142,FR,MZ,201812,4,1,69927,7265 -164,FR,MZ,201812,4,1,88948,14975 -179,FR,MZ,201812,1,2,23980,20000 -341,FR,MZ,201812,1,2,50269,18478 -893,FR,MZ,201812,4,2,14840,372 -896,FR,MZ,201812,4,2,1940,19 -896,FR,MZ,201812,4,2,11427,160 -896,FR,MZ,201812,4,2,15605,250 -910,FR,MZ,201812,1,2,1297,71 -910,FR,MZ,201812,3,2,159955,26523 -910,FR,MZ,201812,4,2,19783,245 -910,FR,MZ,201812,4,2,9727,30 -910,FR,MZ,201812,4,2,1930,2 -931,FR,MZ,201812,1,2,521,9 -931,FR,MZ,201812,1,2,95028,13574 -931,FR,MZ,201812,1,2,10188,116 -931,FR,MZ,201812,4,2,991100,12153 -931,FR,MZ,201812,4,2,70188,91 -931,FR,MZ,201812,4,2,1228,21 -931,FR,MZ,201812,4,2,14106,181 -939,FR,MZ,201812,1,2,1278,19 -939,FR,MZ,201812,1,2,7018,203 -939,FR,MZ,201812,1,2,47789,1598 -939,FR,MZ,201812,4,2,325179,1811 -939,FR,MZ,201812,4,2,12395,210 -939,FR,MZ,201812,4,2,10432,113 -939,FR,MZ,201812,4,2,5504,100 -939,FR,MZ,201812,4,2,5008,238 -939,FR,MZ,201812,4,2,86278,2933 -939,FR,MZ,201812,4,2,3584,10 -939,FR,MZ,201812,4,2,8125,29 -949,FR,MZ,201812,1,2,17,0 -949,FR,MZ,201812,1,2,1075,12 -949,FR,MZ,201812,1,2,367026,210000 -951,FR,MZ,201812,1,2,569,95 -952,FR,MZ,201812,0,1,1477010,1 -952,FR,MZ,201812,4,1,2252273,0 -952,FR,MZ,201812,4,1,5101752,0 -952,FR,MZ,201812,1,2,17822,6000 -952,FR,MZ,201812,1,2,21661,21037 -963,FR,MZ,201812,3,1,421,13 -971,FR,MZ,201812,1,2,395,0 -971,FR,MZ,201812,4,2,86,1 -971,FR,MZ,201812,4,2,1904,2 -973,FR,MZ,201812,1,2,1808,520 -974,FR,MZ,201812,4,1,42,1 -974,FR,MZ,201812,4,2,35,1 -979,FR,MZ,201812,4,1,120145,0 -979,FR,MZ,201812,1,2,1745,12 -979,FR,MZ,201812,1,2,40361,1115 -979,FR,MZ,201812,4,2,9766,1 -979,FR,MZ,201812,4,2,3222,40 -979,FR,MZ,201812,4,2,10766,17 -999,FR,MZ,201812,1,1,919,0 -999,FR,MZ,201812,1,1,14010,0 -999,FR,MZ,201812,4,1,4,0 -999,FR,MZ,201812,1,2,24471,11481 -999,FR,MZ,201812,4,2,4,0 -999,FR,MZ,201812,4,2,1,0 -999,FR,MZ,201812,4,2,2231,10 -015,FR,MG,201812,4,1,80,70 -015,FR,MG,201812,4,2,2036,45 -031,FR,MG,201812,4,1,416,8 -035,FR,MG,201812,1,1,55298,51116 -035,FR,MG,201812,1,1,13724,19200 -035,FR,MG,201812,4,1,181976,33511 -035,FR,MG,201812,4,1,9353,2251 -035,FR,MG,201812,4,1,75703,16770 -039,FR,MG,201812,1,1,2758,2100 -039,FR,MG,201812,1,1,13380,20912 -039,FR,MG,201812,1,1,10882,28000 -039,FR,MG,201812,1,1,364,40 -039,FR,MG,201812,4,1,15201,3024 -039,FR,MG,201812,4,1,100752,20203 -039,FR,MG,201812,4,1,32950,8019 -039,FR,MG,201812,4,2,1167,478 -049,FR,MG,201812,1,1,4934,12125 -049,FR,MG,201812,1,1,1003,1490 -049,FR,MG,201812,1,2,213250,401209 -049,FR,MG,201812,1,2,24783,25245 -049,FR,MG,201812,1,2,11833,21131 -049,FR,MG,201812,1,2,63264,69360 -049,FR,MG,201812,1,2,47383,67733 -049,FR,MG,201812,1,2,34206,42815 -049,FR,MG,201812,1,2,35677,82971 -056,FR,MG,201812,1,1,51393,230654 -092,FR,MG,201812,1,2,19340,20721 -099,FR,MG,201812,1,1,834,200 -099,FR,MG,201812,1,1,85215,32160 -099,FR,MG,201812,1,1,30285,25300 -099,FR,MG,201812,1,1,27970,10109 -099,FR,MG,201812,3,1,63,0 -099,FR,MG,201812,4,1,1015,46 -099,FR,MG,201812,4,1,4680,810 -099,FR,MG,201812,4,1,6319,800 -099,FR,MG,201812,4,1,478,67 -099,FR,MG,201812,1,2,186188,5525 -099,FR,MG,201812,1,2,41689,2903 -099,FR,MG,201812,4,2,4632,1 -099,FR,MG,201812,4,2,55791,660 -111,FR,MG,201812,1,2,40,16 -121,FR,MG,201812,1,2,22855,4748 -121,FR,MG,201812,1,2,7278,2034 -121,FR,MG,201812,1,2,4409,2640 -121,FR,MG,201812,1,2,534,324 -122,FR,MG,201812,1,1,16457,15467 -122,FR,MG,201812,1,1,4183,1980 -122,FR,MG,201812,1,2,12890,21678 -122,FR,MG,201812,1,2,1039,395 -125,FR,MG,201812,1,1,52179,4842 -125,FR,MG,201812,1,2,101276,9860 -125,FR,MG,201812,1,2,163,165 -125,FR,MG,201812,1,2,254,205 -125,FR,MG,201812,1,2,25392,1808 -125,FR,MG,201812,1,2,80736,17972 -125,FR,MG,201812,4,2,558,13 -128,FR,MG,201812,1,1,690,550 -128,FR,MG,201812,1,1,5516,11700 -128,FR,MG,201812,3,1,765,74 -128,FR,MG,201812,4,1,78,33 -128,FR,MG,201812,1,2,2970,1083 -128,FR,MG,201812,1,2,2142,3630 -128,FR,MG,201812,1,2,1605,4185 -128,FR,MG,201812,1,2,5078,8242 -128,FR,MG,201812,4,2,1764,2115 -131,FR,MG,201812,0,1,66499,35652 -132,FR,MG,201812,0,1,94227,23980 -132,FR,MG,201812,1,1,93531,25437 -132,FR,MG,201812,1,1,93201,25407 -132,FR,MG,201812,1,1,115015,25408 -132,FR,MG,201812,1,1,39282,12535 -132,FR,MG,201812,3,1,50679,24200 -132,FR,MG,201812,4,1,4313,150 -132,FR,MG,201812,4,1,7467,733 -132,FR,MG,201812,1,2,36312,5400 -132,FR,MG,201812,1,2,10653,1496 -132,FR,MG,201812,1,2,24958,17384 -132,FR,MG,201812,1,2,63079,21490 -132,FR,MG,201812,1,2,670,337 -132,FR,MG,201812,4,2,6068,954 -133,FR,MG,201812,1,1,1791,1000 -133,FR,MG,201812,1,1,16244,3006 -133,FR,MG,201812,1,1,14896,4500 -133,FR,MG,201812,1,1,107806,13900 -133,FR,MG,201812,1,1,24986,6180 -133,FR,MG,201812,1,1,62671,7000 -133,FR,MG,201812,1,1,133192,12963 -133,FR,MG,201812,1,1,1170,2000 -133,FR,MG,201812,3,1,123068,382 -133,FR,MG,201812,3,1,338,3 -133,FR,MG,201812,4,1,22516905,63359 -133,FR,MG,201812,4,1,2667318,6533 -133,FR,MG,201812,4,1,13874699,33274 -133,FR,MG,201812,4,1,411348,1383 -133,FR,MG,201812,4,1,7228739,19470 -133,FR,MG,201812,4,1,5433106,14835 -133,FR,MG,201812,1,2,60,10 -133,FR,MG,201812,1,2,128,24 -133,FR,MG,201812,4,2,5334,90 -136,FR,MG,201812,1,1,581,560 -136,FR,MG,201812,4,1,188,2 -136,FR,MG,201812,4,1,29,8 -136,FR,MG,201812,0,2,100,4 -136,FR,MG,201812,1,2,885,299 -136,FR,MG,201812,1,2,9492,976 -139,FR,MG,201812,1,1,73,7 -139,FR,MG,201812,1,1,2687,1875 -139,FR,MG,201812,3,1,74,0 -139,FR,MG,201812,4,1,341,16 -139,FR,MG,201812,4,1,755,10 -139,FR,MG,201812,1,2,16344,1383 -139,FR,MG,201812,1,2,336518,157714 -139,FR,MG,201812,1,2,96653,58445 -139,FR,MG,201812,1,2,26670,5200 -139,FR,MG,201812,1,2,257936,44701 -139,FR,MG,201812,1,2,12120,513 -139,FR,MG,201812,4,2,12632,2452 -139,FR,MG,201812,4,2,16004,2515 -141,FR,MG,201812,4,2,29,2 -142,FR,MG,201812,1,1,1708529,165928 -142,FR,MG,201812,1,1,254583,21224 -142,FR,MG,201812,1,1,128044,15527 -142,FR,MG,201812,1,1,565148,84244 -142,FR,MG,201812,1,1,62021,15601 -142,FR,MG,201812,1,1,1989387,186406 -142,FR,MG,201812,1,1,784384,83794 -142,FR,MG,201812,1,1,188534,25227 -142,FR,MG,201812,4,1,61719,7806 -142,FR,MG,201812,4,1,24240,1300 -142,FR,MG,201812,4,1,1964,120 -142,FR,MG,201812,1,2,14175,3150 -142,FR,MG,201812,4,2,4150,758 -142,FR,MG,201812,4,2,6493,539 -143,FR,MG,201812,1,2,38,14 -143,FR,MG,201812,1,2,10619,21568 -144,FR,MG,201812,1,2,12779,3700 -144,FR,MG,201812,1,2,152150,121500 -144,FR,MG,201812,1,2,356,10 -144,FR,MG,201812,1,2,15984,24975 -144,FR,MG,201812,4,2,5552,1052 -144,FR,MG,201812,4,2,32027,7946 -144,FR,MG,201812,4,2,3183,292 -145,FR,MG,201812,1,2,16570,5625 -147,FR,MG,201812,4,2,408,750 -147,FR,MG,201812,4,2,458,107 -148,FR,MG,201812,1,1,37502,6672 -148,FR,MG,201812,1,1,206762,53011 -148,FR,MG,201812,1,1,2166419,505007 -148,FR,MG,201812,4,1,797,1 -148,FR,MG,201812,4,1,1102,2 -148,FR,MG,201812,1,2,18277,20677 -148,FR,MG,201812,1,2,182,22 -148,FR,MG,201812,4,2,1801,208 -161,FR,MG,201812,1,2,33000,100000 -162,FR,MG,201812,1,2,440537,816000 -163,FR,MG,201812,1,2,68521,40636 -163,FR,MG,201812,1,2,79147,46715 -163,FR,MG,201812,1,2,62500,34837 -163,FR,MG,201812,1,2,162686,83495 -163,FR,MG,201812,1,2,1158,187 -163,FR,MG,201812,4,2,3388,175 -163,FR,MG,201812,4,2,29,8 -164,FR,MG,201812,1,1,4775,4165 -164,FR,MG,201812,1,1,6757,3619 -164,FR,MG,201812,1,1,14118,8644 -164,FR,MG,201812,1,1,49152,24576 -164,FR,MG,201812,3,1,172,41 -164,FR,MG,201812,4,1,1230,125 -164,FR,MG,201812,4,1,1609,130 -164,FR,MG,201812,1,2,32111,20354 -164,FR,MG,201812,1,2,1155,1047 -164,FR,MG,201812,1,2,6477,1965 -165,FR,MG,201812,1,1,23658,23000 -165,FR,MG,201812,1,1,42019,24525 -165,FR,MG,201812,1,1,41980,47000 -165,FR,MG,201812,1,1,1710,6200 -165,FR,MG,201812,1,1,17618,23000 -165,FR,MG,201812,1,1,68228,66400 -165,FR,MG,201812,1,1,16519,23500 -165,FR,MG,201812,1,1,111,300 -165,FR,MG,201812,4,1,586,198 -165,FR,MG,201812,4,2,10,0 -166,FR,MG,201812,1,1,3,20 -166,FR,MG,201812,1,1,956,1000 -166,FR,MG,201812,1,1,122537,41176 -166,FR,MG,201812,1,1,781768,252293 -166,FR,MG,201812,1,1,132518,41130 -166,FR,MG,201812,1,1,163779,51930 -166,FR,MG,201812,1,1,33344,7887 -166,FR,MG,201812,1,1,727537,169304 -166,FR,MG,201812,1,1,1052388,277957 -166,FR,MG,201812,1,1,45072,6583 -166,FR,MG,201812,1,2,14943,3486 -179,FR,MG,201812,4,1,110,9 -179,FR,MG,201812,1,2,6425,1082 -179,FR,MG,201812,1,2,17083,18431 -179,FR,MG,201812,1,2,21146,24125 -179,FR,MG,201812,1,2,4077,6677 -179,FR,MG,201812,1,2,195892,136250 -179,FR,MG,201812,1,2,1335622,913175 -179,FR,MG,201812,4,2,1994,325 -182,FR,MG,201812,1,2,53188,56635 -182,FR,MG,201812,1,2,94480,81175 -321,FR,MG,201812,4,2,43,1 -341,FR,MG,201812,4,1,330,2 -341,FR,MG,201812,1,2,4621,209 -341,FR,MG,201812,1,2,2933,86 -341,FR,MG,201812,1,2,53493,30522 -341,FR,MG,201812,4,2,2996,213 -343,FR,MG,201812,1,2,35873,14105 -453,FR,MG,201812,3,1,1813,9 -532,FR,MG,201812,1,2,43695,3237 -533,FR,MG,201812,1,2,8174,6080 -542,FR,MG,201812,1,2,12087,3729 -542,FR,MG,201812,1,2,1300,8000 -542,FR,MG,201812,1,2,35074,18922 -542,FR,MG,201812,4,2,391,7 -551,FR,MG,201812,1,2,62233,10320 -551,FR,MG,201812,1,2,5056,194 -551,FR,MG,201812,4,2,4,0 -551,FR,MG,201812,4,2,3182,0 -552,FR,MG,201812,1,2,1886,135 -552,FR,MG,201812,4,2,1185,235 -565,FR,MG,201812,1,2,18780,2000 -568,FR,MG,201812,1,2,12735,4438 -568,FR,MG,201812,1,2,6230,700 -568,FR,MG,201812,1,2,81340,8064 -568,FR,MG,201812,1,2,122595,21556 -568,FR,MG,201812,1,2,886,32 -568,FR,MG,201812,4,2,2072,53 -568,FR,MG,201812,4,2,5,0 -568,FR,MG,201812,4,2,2587,211 -568,FR,MG,201812,4,2,2667,80 -614,FR,MG,201812,1,1,150,125 -621,FR,MG,201812,1,1,17870,85500 -621,FR,MG,201812,4,1,384,7 -621,FR,MG,201812,4,1,616,34 -621,FR,MG,201812,1,2,117,150 -621,FR,MG,201812,1,2,45,3 -632,FR,MG,201812,3,1,106,3 -639,FR,MG,201812,4,1,8310,456 -639,FR,MG,201812,4,2,10,72 -642,FR,MG,201812,1,2,45380,240000 -691,FR,MG,201812,4,1,1527,183 -691,FR,MG,201812,4,1,21,7 -691,FR,MG,201812,1,2,13830,1636 -691,FR,MG,201812,1,2,2013,2622 -691,FR,MG,201812,1,2,1000,13223 -691,FR,MG,201812,1,2,32415,25448 -691,FR,MG,201812,4,2,706,7 -692,FR,MG,201812,1,2,26103,1805 -692,FR,MG,201812,1,2,600,9500 -692,FR,MG,201812,1,2,59368,113523 -692,FR,MG,201812,1,2,128414,26000 -692,FR,MG,201812,1,2,73317,102188 -692,FR,MG,201812,1,2,11832,63500 -819,FR,MG,201812,1,2,31960,3196 -819,FR,MG,201812,1,2,2385,279 -819,FR,MG,201812,1,2,5611,732 -819,FR,MG,201812,4,2,1613,40 -819,FR,MG,201812,4,2,6936,627 -891,FR,MG,201812,1,2,55393,13306 -891,FR,MG,201812,1,2,3453,864 -891,FR,MG,201812,1,2,57218,18000 -891,FR,MG,201812,1,2,90687,57000 -891,FR,MG,201812,1,2,80856,10082 -891,FR,MG,201812,1,2,22596,10203 -891,FR,MG,201812,1,2,26122,15460 -891,FR,MG,201812,1,2,69810,36170 -891,FR,MG,201812,4,2,1204,99 -891,FR,MG,201812,4,2,1280,20 -892,FR,MG,201812,4,1,8,3 -892,FR,MG,201812,1,2,37898,8390 -892,FR,MG,201812,1,2,4561,2072 -892,FR,MG,201812,1,2,147363,61893 -892,FR,MG,201812,1,2,24688,14293 -892,FR,MG,201812,4,2,4878,243 -892,FR,MG,201812,4,2,1469,12 -893,FR,MG,201812,1,1,8304,396 -893,FR,MG,201812,1,1,45194,1595 -893,FR,MG,201812,3,1,518,6 -893,FR,MG,201812,4,1,315722,2433 -893,FR,MG,201812,4,1,62877,238 -893,FR,MG,201812,4,1,206041,1834 -893,FR,MG,201812,0,2,50,0 -893,FR,MG,201812,1,2,1659999,106921 -893,FR,MG,201812,1,2,272214,49513 -893,FR,MG,201812,1,2,45128,24832 -893,FR,MG,201812,1,2,49538,15773 -893,FR,MG,201812,1,2,4826,123 -893,FR,MG,201812,1,2,348436,51970 -893,FR,MG,201812,1,2,22909,3265 -893,FR,MG,201812,1,2,410,5731 -893,FR,MG,201812,3,2,90,40 -893,FR,MG,201812,4,2,547533,6475 -893,FR,MG,201812,4,2,771,1 -893,FR,MG,201812,4,2,6833,170 -893,FR,MG,201812,4,2,37662,289 -893,FR,MG,201812,4,2,3499,56 -894,FR,MG,201812,4,2,16965,200 -895,FR,MG,201812,1,1,9273,1960 -896,FR,MG,201812,4,1,18,1 -896,FR,MG,201812,0,2,1296,12 -896,FR,MG,201812,1,2,120788,20539 -896,FR,MG,201812,1,2,7050,968 -896,FR,MG,201812,1,2,1120,467 -896,FR,MG,201812,1,2,295,587 -896,FR,MG,201812,1,2,100362,25122 -896,FR,MG,201812,1,2,1296,455 -896,FR,MG,201812,1,2,32009,15284 -896,FR,MG,201812,4,2,50413,1518 -896,FR,MG,201812,4,2,15818,64 -896,FR,MG,201812,4,2,25771,775 -896,FR,MG,201812,4,2,2,4 -910,FR,MG,201812,0,1,169,10 -910,FR,MG,201812,4,1,16614,61 -910,FR,MG,201812,0,2,1173,27 -910,FR,MG,201812,1,2,253245,110554 -910,FR,MG,201812,1,2,5289,191 -910,FR,MG,201812,1,2,7500,1315 -910,FR,MG,201812,1,2,21125,5486 -910,FR,MG,201812,1,2,10362,1855 -910,FR,MG,201812,1,2,2600,1177 -910,FR,MG,201812,1,2,4850,11714 -910,FR,MG,201812,1,2,2000,3970 -910,FR,MG,201812,1,2,7000,2670 -910,FR,MG,201812,1,2,45911,32044 -910,FR,MG,201812,1,2,24335,9392 -910,FR,MG,201812,1,2,400,2500 -910,FR,MG,201812,1,2,96194,160947 -910,FR,MG,201812,3,2,165,1 -910,FR,MG,201812,4,2,96002,3400 -910,FR,MG,201812,4,2,15474,10 -910,FR,MG,201812,4,2,176083,747 -910,FR,MG,201812,4,2,14445,2720 -910,FR,MG,201812,5,2,2835,36 -920,FR,MG,201812,1,1,250,150 -920,FR,MG,201812,1,2,7762,488 -920,FR,MG,201812,1,2,30234,23080 -920,FR,MG,201812,1,2,12250,7785 -920,FR,MG,201812,4,2,8466,380 -931,FR,MG,201812,1,1,133,370 -931,FR,MG,201812,1,1,52,10 -931,FR,MG,201812,3,1,14194,35 -931,FR,MG,201812,4,1,10531,253 -931,FR,MG,201812,4,1,16896,78 -931,FR,MG,201812,0,2,972,2 -931,FR,MG,201812,1,2,642632,94072 -931,FR,MG,201812,1,2,1346,9 -931,FR,MG,201812,1,2,47283,3740 -931,FR,MG,201812,1,2,2239,75 -931,FR,MG,201812,1,2,95500,17113 -931,FR,MG,201812,1,2,7633,3512 -931,FR,MG,201812,1,2,22350,822 -931,FR,MG,201812,1,2,108282,3190 -931,FR,MG,201812,1,2,1900,2182 -931,FR,MG,201812,1,2,673879,39742 -931,FR,MG,201812,1,2,8713,2780 -931,FR,MG,201812,1,2,10992,3258 -931,FR,MG,201812,3,2,8351,550 -931,FR,MG,201812,4,2,395437,7982 -931,FR,MG,201812,4,2,2019,0 -931,FR,MG,201812,4,2,1410,12 -931,FR,MG,201812,4,2,21536,410 -931,FR,MG,201812,4,2,103188,1680 -931,FR,MG,201812,4,2,814,3 -931,FR,MG,201812,4,2,16686,315 -931,FR,MG,201812,4,2,20000,310 -931,FR,MG,201812,4,2,55055,3060 -931,FR,MG,201812,4,2,17831,133 -931,FR,MG,201812,5,2,657,9 -939,FR,MG,201812,1,1,3322,198 -939,FR,MG,201812,1,1,64405,3507 -939,FR,MG,201812,4,1,48901,2031 -939,FR,MG,201812,0,2,1387,2 -939,FR,MG,201812,1,2,577783,51910 -939,FR,MG,201812,1,2,47560,2731 -939,FR,MG,201812,1,2,9942,495 -939,FR,MG,201812,1,2,6577,10000 -939,FR,MG,201812,1,2,50026,1455 -939,FR,MG,201812,1,2,123723,7174 -939,FR,MG,201812,1,2,135341,58896 -939,FR,MG,201812,1,2,2026787,117122 -939,FR,MG,201812,1,2,392708,48965 -939,FR,MG,201812,1,2,13569,2257 -939,FR,MG,201812,1,2,12852,3039 -939,FR,MG,201812,3,2,24648,1543 -939,FR,MG,201812,4,2,775463,12704 -939,FR,MG,201812,4,2,30389,7 -939,FR,MG,201812,4,2,74945,82 -939,FR,MG,201812,4,2,57055,6 -939,FR,MG,201812,4,2,5589,192 -939,FR,MG,201812,4,2,645,65 -939,FR,MG,201812,4,2,113724,2963 -939,FR,MG,201812,4,2,7008,40 -939,FR,MG,201812,4,2,3204,1 -939,FR,MG,201812,4,2,115723,8862 -939,FR,MG,201812,4,2,518,4 -939,FR,MG,201812,8,2,460,900 -941,FR,MG,201812,1,1,4637,2280 -941,FR,MG,201812,1,2,42953,8250 -941,FR,MG,201812,1,2,3530,129 -941,FR,MG,201812,1,2,33809,3395 -941,FR,MG,201812,1,2,15777,8953 -941,FR,MG,201812,1,2,500,3500 -941,FR,MG,201812,1,2,34051,47800 -941,FR,MG,201812,4,2,19260,3000 -941,FR,MG,201812,4,2,1103,68 -949,FR,MG,201812,1,1,90,90 -949,FR,MG,201812,1,1,9477,1948 -949,FR,MG,201812,1,1,482,200 -949,FR,MG,201812,1,1,1802,3050 -949,FR,MG,201812,4,1,5235,22 -949,FR,MG,201812,4,1,407,19 -949,FR,MG,201812,4,1,176,3 -949,FR,MG,201812,1,2,95478,9136 -949,FR,MG,201812,1,2,18919,2474 -949,FR,MG,201812,1,2,204651,38841 -949,FR,MG,201812,1,2,8643,979 -949,FR,MG,201812,1,2,24037,6102 -949,FR,MG,201812,3,2,10,0 -949,FR,MG,201812,3,2,40726,10520 -949,FR,MG,201812,4,2,95308,2574 -949,FR,MG,201812,4,2,1982,0 -949,FR,MG,201812,4,2,210,21 -949,FR,MG,201812,4,2,2379,113 -949,FR,MG,201812,4,2,7074,370 -951,FR,MG,201812,1,1,410,487 -951,FR,MG,201812,1,2,63,1 -951,FR,MG,201812,4,2,738,45 -951,FR,MG,201812,4,2,45015,770 -952,FR,MG,201812,0,1,41484,0 -952,FR,MG,201812,1,1,2399,930 -952,FR,MG,201812,1,1,217,600 -952,FR,MG,201812,4,1,6443,28 -952,FR,MG,201812,4,1,20173,865 -952,FR,MG,201812,4,1,16,1 -952,FR,MG,201812,4,1,18443,933 -952,FR,MG,201812,4,1,135,1 -952,FR,MG,201812,1,2,26728,3893 -952,FR,MG,201812,1,2,750,88 -952,FR,MG,201812,1,2,4146,706 -952,FR,MG,201812,1,2,4138,289 -952,FR,MG,201812,1,2,131871,215192 -952,FR,MG,201812,1,2,23654,14144 -952,FR,MG,201812,4,2,10222,362 -961,FR,MG,201812,4,1,96191,903 -961,FR,MG,201812,1,2,4349,193 -961,FR,MG,201812,4,2,264872,3118 -961,FR,MG,201812,4,2,3642,64 -962,FR,MG,201812,0,1,1662,92 -962,FR,MG,201812,1,1,2252,1172 -962,FR,MG,201812,1,1,87460,40540 -962,FR,MG,201812,1,1,489215,54723 -962,FR,MG,201812,1,1,38439,57960 -962,FR,MG,201812,1,1,8218,5050 -962,FR,MG,201812,3,1,1265,59 -962,FR,MG,201812,4,1,157689,2711 -962,FR,MG,201812,4,1,6333,181 -962,FR,MG,201812,4,1,3726,152 -962,FR,MG,201812,4,1,39550,690 -962,FR,MG,201812,4,1,1274,3 -962,FR,MG,201812,4,1,519,310 -962,FR,MG,201812,1,2,762583,65140 -962,FR,MG,201812,1,2,1151,126 -962,FR,MG,201812,1,2,3493,1865 -962,FR,MG,201812,1,2,76353,2881 -962,FR,MG,201812,1,2,93078,28420 -962,FR,MG,201812,1,2,115698,9690 -962,FR,MG,201812,1,2,120500,13324 -962,FR,MG,201812,1,2,40970,2832 -962,FR,MG,201812,1,2,215149,26689 -962,FR,MG,201812,3,2,1810,37 -962,FR,MG,201812,3,2,773,104 -962,FR,MG,201812,4,2,3125155,18577 -962,FR,MG,201812,4,2,62131,814 -962,FR,MG,201812,4,2,15275,835 -962,FR,MG,201812,4,2,20264,348 -962,FR,MG,201812,4,2,27921,2600 -963,FR,MG,201812,0,1,2963861,60611 -963,FR,MG,201812,1,1,827186,13038 -963,FR,MG,201812,1,1,22368,465 -963,FR,MG,201812,1,1,5050,70 -963,FR,MG,201812,1,1,860,118 -963,FR,MG,201812,1,1,1568154,91935 -963,FR,MG,201812,1,1,34210,6680 -963,FR,MG,201812,1,1,651973,19254 -963,FR,MG,201812,1,1,47789,4497 -963,FR,MG,201812,1,1,295955,13520 -963,FR,MG,201812,1,1,377648,20502 -963,FR,MG,201812,1,1,222851,16424 -963,FR,MG,201812,1,1,230320,13938 -963,FR,MG,201812,1,1,129715,2774 -963,FR,MG,201812,1,1,98568,6594 -963,FR,MG,201812,3,1,85857,1688 -963,FR,MG,201812,3,1,4460,0 -963,FR,MG,201812,3,1,210567,18 -963,FR,MG,201812,3,1,3074,0 -963,FR,MG,201812,3,1,21388,0 -963,FR,MG,201812,3,1,2978,0 -963,FR,MG,201812,3,1,4627,0 -963,FR,MG,201812,3,1,381,2 -963,FR,MG,201812,4,1,9922343,75791 -963,FR,MG,201812,4,1,1415,13 -963,FR,MG,201812,4,1,181126,4326 -963,FR,MG,201812,4,1,2035,148 -963,FR,MG,201812,4,1,954092,14228 -963,FR,MG,201812,4,1,1018495,5841 -963,FR,MG,201812,4,1,30822,524 -963,FR,MG,201812,4,1,93,0 -963,FR,MG,201812,4,1,1655,19 -963,FR,MG,201812,4,1,5496,511 -963,FR,MG,201812,8,1,5682,168 -963,FR,MG,201812,0,2,191,4 -963,FR,MG,201812,1,2,46934,1677 -963,FR,MG,201812,1,2,27884,850 -963,FR,MG,201812,1,2,6960,325 -963,FR,MG,201812,1,2,3100,394 -963,FR,MG,201812,1,2,1992,306 -963,FR,MG,201812,1,2,28128,696 -963,FR,MG,201812,1,2,7188,11980 -963,FR,MG,201812,1,2,1119,260 -963,FR,MG,201812,3,2,13710,313 -963,FR,MG,201812,4,2,1098551,3176 -963,FR,MG,201812,4,2,790,52 -963,FR,MG,201812,4,2,49545,978 -963,FR,MG,201812,4,2,4720,620 -963,FR,MG,201812,4,2,35560,1750 -963,FR,MG,201812,4,2,3272,151 -971,FR,MG,201812,1,2,61435,16449 -971,FR,MG,201812,1,2,4770,123 -971,FR,MG,201812,1,2,48316,15256 -971,FR,MG,201812,1,2,19709,3794 -971,FR,MG,201812,1,2,500,575 -971,FR,MG,201812,1,2,4707,15690 -971,FR,MG,201812,4,2,4565,178 -971,FR,MG,201812,4,2,201,0 -971,FR,MG,201812,4,2,41017,3148 -971,FR,MG,201812,8,2,900,1200 -972,FR,MG,201812,1,1,14,4 -972,FR,MG,201812,1,2,1138,110 -972,FR,MG,201812,1,2,23162,3650 -972,FR,MG,201812,1,2,728,154 -972,FR,MG,201812,1,2,14360,17352 -972,FR,MG,201812,1,2,17256,27271 -972,FR,MG,201812,1,2,301,76 -972,FR,MG,201812,1,2,23870,9008 -972,FR,MG,201812,4,2,2216,301 -972,FR,MG,201812,4,2,1504,1270 -973,FR,MG,201812,1,1,5535,3201 -973,FR,MG,201812,1,1,19404,17096 -973,FR,MG,201812,1,1,260,974 -973,FR,MG,201812,4,1,228,32 -973,FR,MG,201812,1,2,125972,18055 -973,FR,MG,201812,1,2,10,4 -973,FR,MG,201812,1,2,546,221 -973,FR,MG,201812,1,2,1223,129 -973,FR,MG,201812,1,2,139574,19793 -973,FR,MG,201812,1,2,9726,4360 -973,FR,MG,201812,1,2,25887,13991 -973,FR,MG,201812,1,2,9022,45850 -973,FR,MG,201812,4,2,16256,687 -973,FR,MG,201812,4,2,758,155 -974,FR,MG,201812,1,1,18,53 -974,FR,MG,201812,4,1,94,21 -974,FR,MG,201812,0,2,82,9 -974,FR,MG,201812,1,2,147201,16223 -974,FR,MG,201812,1,2,2360,140 -974,FR,MG,201812,1,2,197,64 -974,FR,MG,201812,1,2,41458,4383 -974,FR,MG,201812,1,2,55,27 -974,FR,MG,201812,1,2,6258,8845 -974,FR,MG,201812,1,2,300,250 -974,FR,MG,201812,1,2,12,1 -974,FR,MG,201812,1,2,173,355 -974,FR,MG,201812,3,2,4021,120 -974,FR,MG,201812,4,2,51502,1853 -974,FR,MG,201812,4,2,9303,393 -974,FR,MG,201812,4,2,200,200 -974,FR,MG,201812,4,2,13020,470 -974,FR,MG,201812,4,2,1520,1450 -974,FR,MG,201812,4,2,1,7 -975,FR,MG,201812,1,1,3957,182 -975,FR,MG,201812,1,1,3716,960 -975,FR,MG,201812,1,1,3372,2595 -975,FR,MG,201812,1,2,69502,27221 -975,FR,MG,201812,1,2,9358,1545 -975,FR,MG,201812,1,2,259904,41053 -975,FR,MG,201812,1,2,62802,10879 -975,FR,MG,201812,1,2,3871,4444 -975,FR,MG,201812,1,2,79279,131857 -975,FR,MG,201812,1,2,19891,3155 -975,FR,MG,201812,1,2,350,500 -975,FR,MG,201812,1,2,3875,14191 -975,FR,MG,201812,3,2,5,1 -975,FR,MG,201812,4,2,24907,264 -975,FR,MG,201812,4,2,80,20 -975,FR,MG,201812,4,2,300,50 -976,FR,MG,201812,1,1,483,1480 -976,FR,MG,201812,1,1,2656,10300 -976,FR,MG,201812,4,1,12048,214 -976,FR,MG,201812,4,1,729,99 -976,FR,MG,201812,4,1,107,11 -976,FR,MG,201812,4,1,656,70 -976,FR,MG,201812,1,2,19785,2549 -976,FR,MG,201812,1,2,1002,331 -976,FR,MG,201812,1,2,132,414 -976,FR,MG,201812,1,2,19327,45884 -976,FR,MG,201812,4,2,930,130 -979,FR,MG,201812,0,1,1182,0 -979,FR,MG,201812,1,1,1040,3393 -979,FR,MG,201812,1,1,11183,28711 -979,FR,MG,201812,1,1,4289,5395 -979,FR,MG,201812,1,1,7615,13967 -979,FR,MG,201812,1,1,30980,8030 -979,FR,MG,201812,1,1,46154,13006 -979,FR,MG,201812,1,1,266373,19424 -979,FR,MG,201812,1,1,7461,16000 -979,FR,MG,201812,3,1,68087,424 -979,FR,MG,201812,3,1,493,0 -979,FR,MG,201812,4,1,605882,3251 -979,FR,MG,201812,4,1,14609,626 -979,FR,MG,201812,4,1,70463,1501 -979,FR,MG,201812,4,1,3300,304 -979,FR,MG,201812,4,1,55579,813 -979,FR,MG,201812,0,2,17236,111 -979,FR,MG,201812,1,2,384082,23970 -979,FR,MG,201812,1,2,5357,120 -979,FR,MG,201812,1,2,38490,5498 -979,FR,MG,201812,1,2,88257,15926 -979,FR,MG,201812,1,2,4000,1000 -979,FR,MG,201812,1,2,212528,20475 -979,FR,MG,201812,1,2,14553,2503 -979,FR,MG,201812,1,2,118183,18615 -979,FR,MG,201812,1,2,39574,2970 -979,FR,MG,201812,1,2,3058,1484 -979,FR,MG,201812,1,2,2664,5919 -979,FR,MG,201812,1,2,600,350 -979,FR,MG,201812,3,2,965,9 -979,FR,MG,201812,4,2,411149,6508 -979,FR,MG,201812,4,2,6530,4 -979,FR,MG,201812,4,2,11314,270 -979,FR,MG,201812,4,2,10204,384 -979,FR,MG,201812,4,2,78927,1327 -979,FR,MG,201812,4,2,285082,800 -979,FR,MG,201812,4,2,395,10 -979,FR,MG,201812,4,2,549,497 -979,FR,MG,201812,4,2,82565,3790 -979,FR,MG,201812,4,2,3482,12 -999,FR,MG,201812,1,1,57047,0 -999,FR,MG,201812,1,1,1407,0 -999,FR,MG,201812,3,1,3280,0 -999,FR,MG,201812,4,1,2,0 -999,FR,MG,201812,4,1,2134,0 -999,FR,MG,201812,0,2,6682,0 -999,FR,MG,201812,1,2,4235,543 -999,FR,MG,201812,1,2,84525,0 -999,FR,MG,201812,1,2,4112,0 -999,FR,MG,201812,1,2,12743,0 -999,FR,MG,201812,1,2,102120,34600 -999,FR,MG,201812,1,2,1750,0 -999,FR,MG,201812,1,2,180622,30872 -999,FR,MG,201812,1,2,60802,2915 -999,FR,MG,201812,1,2,46740,10116 -999,FR,MG,201812,1,2,22080,0 -999,FR,MG,201812,1,2,25800,0 -999,FR,MG,201812,4,2,3218,48 -999,FR,MG,201812,4,2,370,0 -999,FR,MG,201812,4,2,2508,150 -999,FR,MG,201812,4,2,473,0 -999,FR,MG,201812,4,2,1,0 -999,FR,MG,201812,4,2,4699,134 -999,FR,MG,201812,4,2,638,10 -999,FR,MG,201812,4,2,8134,140 -999,FR,MG,201812,8,2,983,0 -001,FR,MU,201812,4,1,572986,796 -001,FR,MU,201812,4,2,3764,144 -001,FR,MU,201812,4,2,107629,1644 -011,FR,MU,201812,1,2,2810563,13247265 -016,FR,MU,201812,4,2,210,120 -035,FR,MU,201812,1,1,237,6 -035,FR,MU,201812,4,1,811965,212314 -035,FR,MU,201812,4,1,13645,4214 -035,FR,MU,201812,4,1,441695,138453 -035,FR,MU,201812,4,1,957,445 -035,FR,MU,201812,1,2,2873,290 -035,FR,MU,201812,1,2,4207,643 -035,FR,MU,201812,4,2,1580,200 -039,FR,MU,201812,1,1,663,48 -039,FR,MU,201812,4,1,11872,3995 -039,FR,MU,201812,4,1,2096,54 -039,FR,MU,201812,1,2,11661,7534 -039,FR,MU,201812,1,2,46805,70246 -039,FR,MU,201812,1,2,13798,20430 -039,FR,MU,201812,1,2,1006,350 -039,FR,MU,201812,3,2,482,115 -039,FR,MU,201812,4,2,85425,10530 -039,FR,MU,201812,4,2,24290,1789 -049,FR,MU,201812,4,1,33,10 -049,FR,MU,201812,1,2,18750,4898 -056,FR,MU,201812,1,2,2595,1738 -056,FR,MU,201812,1,2,4717,3497 -057,FR,MU,201812,1,2,107,3 -091,FR,MU,201812,4,2,855,17 -092,FR,MU,201812,1,2,78,3 -099,FR,MU,201812,0,1,15475,50 -099,FR,MU,201812,1,1,169,10 -099,FR,MU,201812,4,1,1017,103 -099,FR,MU,201812,4,1,7279,471 -099,FR,MU,201812,4,1,3982,406 -099,FR,MU,201812,1,2,966,200 -099,FR,MU,201812,1,2,1276,29000 -099,FR,MU,201812,4,2,6378,774 -099,FR,MU,201812,4,2,36148,180 -099,FR,MU,201812,4,2,13230,5 -111,FR,MU,201812,1,1,538096,861000 -111,FR,MU,201812,1,1,11550,21000 -111,FR,MU,201812,1,1,341413,573000 -111,FR,MU,201812,1,1,15000,24000 -111,FR,MU,201812,1,2,70,28 -112,FR,MU,201812,1,1,151101,480070 -121,FR,MU,201812,1,1,11916,333 -121,FR,MU,201812,1,1,904,450 -121,FR,MU,201812,1,1,44283,12748 -121,FR,MU,201812,1,2,125538,15716 -121,FR,MU,201812,1,2,12844,599 -121,FR,MU,201812,1,2,121000,25678 -121,FR,MU,201812,1,2,73750,17154 -121,FR,MU,201812,1,2,18924,4151 -121,FR,MU,201812,1,2,61099,9382 -121,FR,MU,201812,1,2,55980,5804 -121,FR,MU,201812,3,2,13,1 -121,FR,MU,201812,4,2,50822,2633 -121,FR,MU,201812,4,2,75087,6628 -121,FR,MU,201812,4,2,7093,720 -122,FR,MU,201812,1,1,80046,120680 -122,FR,MU,201812,1,1,12737,10884 -122,FR,MU,201812,1,2,707,396 -122,FR,MU,201812,1,2,1369,869 -125,FR,MU,201812,1,1,30560,37705 -125,FR,MU,201812,1,1,16,6 -125,FR,MU,201812,1,2,6308,2117 -125,FR,MU,201812,1,2,9466,1183 -125,FR,MU,201812,1,2,1381,1207 -125,FR,MU,201812,1,2,1086,599 -125,FR,MU,201812,4,2,138,11 -125,FR,MU,201812,4,2,1753,54 -128,FR,MU,201812,1,1,39492,66293 -128,FR,MU,201812,1,2,3573,255 -128,FR,MU,201812,1,2,1036,3093 -128,FR,MU,201812,1,2,6457,8422 -128,FR,MU,201812,1,2,12830,15850 -128,FR,MU,201812,4,2,376,696 -131,FR,MU,201812,1,2,9083,3240 -131,FR,MU,201812,1,2,4003,550 -131,FR,MU,201812,1,2,31530,8630 -132,FR,MU,201812,0,1,43,1 -132,FR,MU,201812,0,2,1678,106 -132,FR,MU,201812,1,2,17380,6369 -132,FR,MU,201812,1,2,5061,540 -132,FR,MU,201812,1,2,3163,635 -132,FR,MU,201812,1,2,97749,29990 -132,FR,MU,201812,1,2,6976,1608 -132,FR,MU,201812,1,2,65164,14876 -132,FR,MU,201812,3,2,384,13 -132,FR,MU,201812,4,2,21626,831 -132,FR,MU,201812,4,2,149,13 -132,FR,MU,201812,4,2,19320,1725 -133,FR,MU,201812,1,1,2406,386 -133,FR,MU,201812,1,1,2434,510 -133,FR,MU,201812,1,2,802,36 -133,FR,MU,201812,1,2,7392,336 -133,FR,MU,201812,1,2,1433,189 -133,FR,MU,201812,1,2,1222,59 -133,FR,MU,201812,4,2,1628,48 -133,FR,MU,201812,4,2,2789,8 -135,FR,MU,201812,4,1,171749,3033 -136,FR,MU,201812,1,1,196,138 -136,FR,MU,201812,1,1,2460,1120 -136,FR,MU,201812,0,2,25,4 -136,FR,MU,201812,1,2,5992,1767 -136,FR,MU,201812,1,2,7442,949 -136,FR,MU,201812,1,2,1068,1035 -136,FR,MU,201812,1,2,16801,2863 -136,FR,MU,201812,1,2,3469,1352 -136,FR,MU,201812,4,2,497,141 -136,FR,MU,201812,4,2,213,4 -136,FR,MU,201812,4,2,3380,86 -139,FR,MU,201812,0,1,1137,18 -139,FR,MU,201812,1,1,1746,120 -139,FR,MU,201812,1,1,19355,10102 -139,FR,MU,201812,1,1,5207,3000 -139,FR,MU,201812,1,1,5634,1809 -139,FR,MU,201812,1,1,140638,97910 -139,FR,MU,201812,1,1,2020,287 -139,FR,MU,201812,3,1,172,5 -139,FR,MU,201812,4,1,6181,159 -139,FR,MU,201812,0,2,513,8 -139,FR,MU,201812,1,2,72454,4644 -139,FR,MU,201812,1,2,3945,1076 -139,FR,MU,201812,1,2,20981,3348 -139,FR,MU,201812,1,2,39169,5828 -139,FR,MU,201812,1,2,2345,286 -139,FR,MU,201812,1,2,297864,71543 -139,FR,MU,201812,1,2,20007,7592 -139,FR,MU,201812,1,2,31441,17903 -139,FR,MU,201812,1,2,14869,4509 -139,FR,MU,201812,1,2,1066,186 -139,FR,MU,201812,1,2,241721,66524 -139,FR,MU,201812,1,2,74806,40422 -139,FR,MU,201812,1,2,15278,5135 -139,FR,MU,201812,1,2,4323,3310 -139,FR,MU,201812,3,2,7429,1210 -139,FR,MU,201812,4,2,139951,14745 -139,FR,MU,201812,4,2,177013,20003 -139,FR,MU,201812,4,2,70670,2300 -139,FR,MU,201812,4,2,10795,150 -139,FR,MU,201812,4,2,7061,523 -139,FR,MU,201812,4,2,800,273 -141,FR,MU,201812,1,2,23553,6347 -141,FR,MU,201812,1,2,28363,11727 -141,FR,MU,201812,1,2,10355,5333 -141,FR,MU,201812,4,2,77379,2432 -141,FR,MU,201812,4,2,25424,2478 -141,FR,MU,201812,4,2,1555,189 -142,FR,MU,201812,1,1,113114,12424 -142,FR,MU,201812,1,1,48656,7344 -142,FR,MU,201812,1,1,34873,24050 -142,FR,MU,201812,4,1,27307,4040 -142,FR,MU,201812,4,1,2495,340 -142,FR,MU,201812,1,2,5471103,3598825 -142,FR,MU,201812,1,2,10000,463 -142,FR,MU,201812,1,2,770,60 -142,FR,MU,201812,4,2,111172,10092 -142,FR,MU,201812,4,2,102341,7371 -143,FR,MU,201812,1,2,54158,13232 -143,FR,MU,201812,1,2,48,19 -143,FR,MU,201812,1,2,28771,8368 -143,FR,MU,201812,1,2,48540,24263 -143,FR,MU,201812,1,2,17119,5556 -143,FR,MU,201812,1,2,63218,40107 -143,FR,MU,201812,1,2,34221,70768 -143,FR,MU,201812,4,2,108,79 -143,FR,MU,201812,4,2,6300,26 -144,FR,MU,201812,1,2,69620,13002 -144,FR,MU,201812,1,2,63209,6118 -144,FR,MU,201812,1,2,377176,56624 -144,FR,MU,201812,1,2,16531,2308 -144,FR,MU,201812,1,2,51015,6880 -144,FR,MU,201812,1,2,185904,74865 -144,FR,MU,201812,1,2,29559,4085 -144,FR,MU,201812,1,2,64628,13710 -144,FR,MU,201812,4,2,65773,8105 -144,FR,MU,201812,4,2,99392,10866 -145,FR,MU,201812,1,2,28615,8065 -145,FR,MU,201812,1,2,210,40 -146,FR,MU,201812,4,2,756,200 -147,FR,MU,201812,0,2,25,2 -147,FR,MU,201812,1,2,58732,8473 -147,FR,MU,201812,1,2,40930,11066 -147,FR,MU,201812,1,2,2991,514 -147,FR,MU,201812,1,2,13537,4547 -147,FR,MU,201812,1,2,47693,26349 -147,FR,MU,201812,4,2,36657,3835 -147,FR,MU,201812,4,2,55343,3496 -148,FR,MU,201812,1,1,71883,17640 -148,FR,MU,201812,1,1,251976,59703 -148,FR,MU,201812,1,1,151039,37564 -148,FR,MU,201812,1,1,380917,99457 -148,FR,MU,201812,1,2,3497,663 -148,FR,MU,201812,1,2,12849,6549 -148,FR,MU,201812,1,2,51189,14344 -148,FR,MU,201812,1,2,1181,212 -148,FR,MU,201812,1,2,814,111 -148,FR,MU,201812,1,2,5417,200 -148,FR,MU,201812,4,2,8514,406 -148,FR,MU,201812,4,2,20807,916 -161,FR,MU,201812,1,1,19834,92760 -161,FR,MU,201812,1,1,52536,161000 -161,FR,MU,201812,1,1,178150,526720 -161,FR,MU,201812,1,1,9978,23200 -163,FR,MU,201812,1,1,112,34 -163,FR,MU,201812,1,1,1050,2305 -163,FR,MU,201812,1,1,7310,2646 -163,FR,MU,201812,1,1,705,102 -163,FR,MU,201812,1,1,10750,7551 -163,FR,MU,201812,1,1,31715,6370 -163,FR,MU,201812,4,1,9901,1424 -163,FR,MU,201812,1,2,3388,1322 -163,FR,MU,201812,1,2,4238,2239 -163,FR,MU,201812,1,2,13191,4090 -163,FR,MU,201812,1,2,144389,44260 -163,FR,MU,201812,1,2,55654,51912 -163,FR,MU,201812,1,2,4495,1087 -163,FR,MU,201812,1,2,190,38 -163,FR,MU,201812,1,2,63325,34059 -163,FR,MU,201812,1,2,120894,77784 -163,FR,MU,201812,1,2,28719,4944 -163,FR,MU,201812,1,2,78326,62445 -163,FR,MU,201812,1,2,17427,5345 -163,FR,MU,201812,3,2,68118,24897 -163,FR,MU,201812,4,2,22338,5409 -164,FR,MU,201812,1,2,36808,12159 -164,FR,MU,201812,1,2,5306,851 -164,FR,MU,201812,1,2,34679,21108 -164,FR,MU,201812,1,2,4105,890 -164,FR,MU,201812,1,2,3805,1706 -164,FR,MU,201812,1,2,442,259 -164,FR,MU,201812,3,2,13,1 -164,FR,MU,201812,3,2,419,158 -164,FR,MU,201812,4,2,365,81 -164,FR,MU,201812,4,2,298,28 -165,FR,MU,201812,1,1,20500,20290 -165,FR,MU,201812,1,1,544,403 -166,FR,MU,201812,1,1,124,120 -166,FR,MU,201812,1,2,9256,5948 -166,FR,MU,201812,1,2,45571,18520 -166,FR,MU,201812,1,2,15599,8831 -166,FR,MU,201812,1,2,54592,35986 -166,FR,MU,201812,1,2,19043,14546 -166,FR,MU,201812,1,2,11626,6687 -179,FR,MU,201812,1,2,22390,7349 -179,FR,MU,201812,1,2,132902,94323 -179,FR,MU,201812,1,2,33706,31143 -179,FR,MU,201812,1,2,606557,495695 -179,FR,MU,201812,1,2,27702,9288 -179,FR,MU,201812,4,2,166,9 -182,FR,MU,201812,1,1,50,50 -182,FR,MU,201812,4,1,180,3 -182,FR,MU,201812,1,2,6240,425 -182,FR,MU,201812,1,2,1378,1660 -182,FR,MU,201812,1,2,149,63 -182,FR,MU,201812,1,2,28532,13762 -182,FR,MU,201812,4,2,1411,120 -182,FR,MU,201812,4,2,2,1 -224,FR,MU,201812,1,2,340,1941 -323,FR,MU,201812,4,1,2,4 -330,FR,MU,201812,1,1,388661,800000 -341,FR,MU,201812,1,1,169,5 -341,FR,MU,201812,3,1,224,14 -341,FR,MU,201812,1,2,153,27 -341,FR,MU,201812,1,2,11434,3542 -341,FR,MU,201812,1,2,2949,1606 -341,FR,MU,201812,1,2,9823,659 -341,FR,MU,201812,1,2,40738,15622 -341,FR,MU,201812,1,2,19256,14192 -341,FR,MU,201812,4,2,105,5 -451,FR,MU,201812,1,2,2200,424 -522,FR,MU,201812,4,2,1016,18 -532,FR,MU,201812,4,2,1245,50 -533,FR,MU,201812,4,2,1432,50 -536,FR,MU,201812,1,2,7250,660 -536,FR,MU,201812,1,2,55,0 -536,FR,MU,201812,4,2,2125,60 -542,FR,MU,201812,1,1,102669,24474 -542,FR,MU,201812,1,2,6882,4752 -543,FR,MU,201812,1,2,298,20 -551,FR,MU,201812,1,2,8656,238 -551,FR,MU,201812,4,2,211,5 -552,FR,MU,201812,1,2,16968,1989 -552,FR,MU,201812,1,2,1826,58 -552,FR,MU,201812,1,2,4123,600 -552,FR,MU,201812,4,2,1260,160 -552,FR,MU,201812,4,2,1773,130 -565,FR,MU,201812,4,2,4460,10 -568,FR,MU,201812,0,1,31,0 -568,FR,MU,201812,1,1,1304,317 -568,FR,MU,201812,1,1,2953,709 -568,FR,MU,201812,1,1,4758,1036 -568,FR,MU,201812,1,2,5169,1100 -568,FR,MU,201812,1,2,157,10 -568,FR,MU,201812,1,2,2558,444 -568,FR,MU,201812,1,2,169,47 -568,FR,MU,201812,1,2,1005,301 -568,FR,MU,201812,1,2,168,2 -568,FR,MU,201812,4,2,187,0 -568,FR,MU,201812,4,2,2786,40 -568,FR,MU,201812,4,2,597,25 -613,FR,MU,201812,3,2,19,0 -621,FR,MU,201812,1,1,554,81 -621,FR,MU,201812,1,1,9839,54000 -621,FR,MU,201812,1,2,60,4 -631,FR,MU,201812,1,1,25515,200000 -632,FR,MU,201812,1,1,212,300 -639,FR,MU,201812,1,2,1781,7315 -691,FR,MU,201812,1,2,913,176 -691,FR,MU,201812,4,2,2365,1 -692,FR,MU,201812,4,1,389,8 -692,FR,MU,201812,1,2,123,1221 -719,FR,MU,201812,4,2,1329,80 -723,FR,MU,201812,1,1,160290,376450 -723,FR,MU,201812,4,2,1700,105 -729,FR,MU,201812,1,2,24837,25054 -819,FR,MU,201812,1,1,15248,37112 -819,FR,MU,201812,1,1,3857,658 -819,FR,MU,201812,1,1,667,84 -819,FR,MU,201812,1,1,23068,35905 -819,FR,MU,201812,1,2,20560,5736 -819,FR,MU,201812,1,2,20173,390 -819,FR,MU,201812,1,2,2426,2040 -819,FR,MU,201812,1,2,3977,3200 -819,FR,MU,201812,4,2,15868,1198 -819,FR,MU,201812,4,2,9000,200 -839,FR,MU,201812,1,2,1320,255 -891,FR,MU,201812,1,1,3716,1974 -891,FR,MU,201812,1,1,41022,18086 -891,FR,MU,201812,1,1,165,11 -891,FR,MU,201812,4,1,455,0 -891,FR,MU,201812,4,1,309,61 -891,FR,MU,201812,0,2,24,7 -891,FR,MU,201812,1,2,4576,1524 -891,FR,MU,201812,1,2,730,53 -891,FR,MU,201812,1,2,7550,1739 -891,FR,MU,201812,1,2,8479,2288 -891,FR,MU,201812,1,2,653,56 -891,FR,MU,201812,1,2,5545,2444 -891,FR,MU,201812,1,2,28995,2000 -891,FR,MU,201812,1,2,67018,26045 -891,FR,MU,201812,1,2,23,35 -891,FR,MU,201812,1,2,818,233 -891,FR,MU,201812,1,2,520,198 -891,FR,MU,201812,4,2,11852,1184 -891,FR,MU,201812,4,2,6543,252 -891,FR,MU,201812,4,2,2384,20 -892,FR,MU,201812,0,1,236,20 -892,FR,MU,201812,1,1,11,4 -892,FR,MU,201812,1,1,13805,17900 -892,FR,MU,201812,1,1,14273,680 -892,FR,MU,201812,4,1,11656,183 -892,FR,MU,201812,1,2,2432,339 -892,FR,MU,201812,1,2,2561,289 -892,FR,MU,201812,1,2,3194,2075 -892,FR,MU,201812,1,2,1224,64 -892,FR,MU,201812,1,2,28037,3470 -892,FR,MU,201812,1,2,1695,673 -892,FR,MU,201812,1,2,53100,10484 -892,FR,MU,201812,1,2,12245,2005 -892,FR,MU,201812,1,2,16500,9329 -892,FR,MU,201812,4,2,564,67 -892,FR,MU,201812,4,2,2194,171 -892,FR,MU,201812,4,2,1930,250 -893,FR,MU,201812,0,1,4374,210 -893,FR,MU,201812,1,1,276,200 -893,FR,MU,201812,1,1,316,55 -893,FR,MU,201812,1,1,82882,80710 -893,FR,MU,201812,1,1,33,28 -893,FR,MU,201812,1,1,73005,85451 -893,FR,MU,201812,1,1,8556,16213 -893,FR,MU,201812,3,1,72,0 -893,FR,MU,201812,4,1,209277,3010 -893,FR,MU,201812,4,1,1045875,11180 -893,FR,MU,201812,0,2,6202,29 -893,FR,MU,201812,1,2,1097841,82785 -893,FR,MU,201812,1,2,393,11 -893,FR,MU,201812,1,2,12418,1727 -893,FR,MU,201812,1,2,44798,10263 -893,FR,MU,201812,1,2,68133,9536 -893,FR,MU,201812,1,2,426595,27610 -893,FR,MU,201812,1,2,101870,13819 -893,FR,MU,201812,1,2,27250,3998 -893,FR,MU,201812,1,2,811995,157406 -893,FR,MU,201812,1,2,57243,7007 -893,FR,MU,201812,1,2,147747,22971 -893,FR,MU,201812,1,2,161,37 -893,FR,MU,201812,1,2,6512,332 -893,FR,MU,201812,1,2,45479,6249 -893,FR,MU,201812,1,2,11214,4609 -893,FR,MU,201812,1,2,18035,11508 -893,FR,MU,201812,1,2,26247,10390 -893,FR,MU,201812,3,2,461601,6693 -893,FR,MU,201812,4,2,750914,14983 -893,FR,MU,201812,4,2,8860,10 -893,FR,MU,201812,4,2,12920,574 -893,FR,MU,201812,4,2,45702,786 -893,FR,MU,201812,4,2,41595,1913 -893,FR,MU,201812,4,2,9738,13 -893,FR,MU,201812,4,2,5483,24 -893,FR,MU,201812,4,2,23917,3040 -893,FR,MU,201812,5,2,1264,15 -894,FR,MU,201812,1,2,97950,887 -895,FR,MU,201812,1,2,31160,19250 -896,FR,MU,201812,0,1,6505,35 -896,FR,MU,201812,1,1,33,30 -896,FR,MU,201812,1,1,4507,6141 -896,FR,MU,201812,1,1,777,175 -896,FR,MU,201812,1,1,3646,27000 -896,FR,MU,201812,1,1,24472,124829 -896,FR,MU,201812,1,1,565,1330 -896,FR,MU,201812,4,1,1854,249 -896,FR,MU,201812,4,1,15933,289 -896,FR,MU,201812,0,2,287,1 -896,FR,MU,201812,1,2,22340,4928 -896,FR,MU,201812,1,2,26413,2657 -896,FR,MU,201812,1,2,43365,24110 -896,FR,MU,201812,1,2,3019,433 -896,FR,MU,201812,1,2,18924,1000 -896,FR,MU,201812,1,2,11429,2531 -896,FR,MU,201812,1,2,97214,36202 -896,FR,MU,201812,1,2,2530,488 -896,FR,MU,201812,1,2,844,516 -896,FR,MU,201812,1,2,108,7 -896,FR,MU,201812,1,2,316,164 -896,FR,MU,201812,1,2,39564,8400 -896,FR,MU,201812,1,2,12635,3910 -896,FR,MU,201812,1,2,69939,40492 -896,FR,MU,201812,4,2,34109,983 -896,FR,MU,201812,4,2,263,3 -896,FR,MU,201812,4,2,48307,577 -896,FR,MU,201812,4,2,3480,2216 -896,FR,MU,201812,4,2,11689,1680 -896,FR,MU,201812,4,2,4133,8 -910,FR,MU,201812,0,1,11245,170 -910,FR,MU,201812,1,1,64708,2000 -910,FR,MU,201812,3,1,1842,26 -910,FR,MU,201812,4,1,2326,100 -910,FR,MU,201812,8,1,1029,40 -910,FR,MU,201812,0,2,8013,98 -910,FR,MU,201812,1,2,192584,21561 -910,FR,MU,201812,1,2,84471,6133 -910,FR,MU,201812,1,2,431,22 -910,FR,MU,201812,1,2,59403,4689 -910,FR,MU,201812,1,2,6,0 -910,FR,MU,201812,3,2,174,2 -910,FR,MU,201812,4,2,157611,2624 -910,FR,MU,201812,4,2,25186,9 -910,FR,MU,201812,4,2,1073,93 -910,FR,MU,201812,4,2,1620,74 -910,FR,MU,201812,4,2,285,60 -910,FR,MU,201812,4,2,4774,470 -910,FR,MU,201812,9,2,375042,8900 -920,FR,MU,201812,0,1,332,9 -920,FR,MU,201812,1,2,265,75 -920,FR,MU,201812,1,2,14084,682 -920,FR,MU,201812,1,2,730,59 -920,FR,MU,201812,1,2,71915,2140 -920,FR,MU,201812,3,2,726,18 -920,FR,MU,201812,4,2,5411,195 -931,FR,MU,201812,0,1,60593,831 -931,FR,MU,201812,1,1,37259,9878 -931,FR,MU,201812,1,1,703,76 -931,FR,MU,201812,1,1,40001,1 -931,FR,MU,201812,3,1,13127,55 -931,FR,MU,201812,4,1,22631,153 -931,FR,MU,201812,4,1,75845,763 -931,FR,MU,201812,0,2,27877,109 -931,FR,MU,201812,1,2,1125549,65041 -931,FR,MU,201812,1,2,4185,110 -931,FR,MU,201812,1,2,3114,279 -931,FR,MU,201812,1,2,23975,2688 -931,FR,MU,201812,1,2,15545,1234 -931,FR,MU,201812,1,2,49227,9072 -931,FR,MU,201812,1,2,60256,2505 -931,FR,MU,201812,1,2,890659,35816 -931,FR,MU,201812,1,2,75,8 -931,FR,MU,201812,1,2,650,99 -931,FR,MU,201812,1,2,153145,10284 -931,FR,MU,201812,1,2,10361,777 -931,FR,MU,201812,3,2,9349,217 -931,FR,MU,201812,4,2,473753,5590 -931,FR,MU,201812,4,2,2060,37 -931,FR,MU,201812,4,2,9171,100 -931,FR,MU,201812,4,2,1483326,2667 -931,FR,MU,201812,4,2,26657,395 -931,FR,MU,201812,4,2,6198,20 -931,FR,MU,201812,4,2,3567,35 -931,FR,MU,201812,4,2,54723,4250 -931,FR,MU,201812,4,2,21280,50 -931,FR,MU,201812,4,2,562,10 -931,FR,MU,201812,5,2,14845,100 -939,FR,MU,201812,0,1,78873,835 -939,FR,MU,201812,1,1,1320,1080 -939,FR,MU,201812,1,1,882,282 -939,FR,MU,201812,1,1,3815,406 -939,FR,MU,201812,1,1,667,120 -939,FR,MU,201812,3,1,1995,2 -939,FR,MU,201812,4,1,10716,226 -939,FR,MU,201812,4,1,525,116 -939,FR,MU,201812,4,1,551,0 -939,FR,MU,201812,0,2,11732,92 -939,FR,MU,201812,1,2,603912,30676 -939,FR,MU,201812,1,2,18112,476 -939,FR,MU,201812,1,2,20169,586 -939,FR,MU,201812,1,2,4631,117 -939,FR,MU,201812,1,2,11564,799 -939,FR,MU,201812,1,2,80666,18804 -939,FR,MU,201812,1,2,35411,2815 -939,FR,MU,201812,1,2,28850,2324 -939,FR,MU,201812,1,2,752486,16254 -939,FR,MU,201812,1,2,113,7 -939,FR,MU,201812,1,2,336608,9716 -939,FR,MU,201812,1,2,104663,13750 -939,FR,MU,201812,1,2,1087,101 -939,FR,MU,201812,3,2,296577,2799 -939,FR,MU,201812,4,2,699791,9473 -939,FR,MU,201812,4,2,4896,9 -939,FR,MU,201812,4,2,616204,2573 -939,FR,MU,201812,4,2,69985,995 -939,FR,MU,201812,4,2,3836,80 -939,FR,MU,201812,4,2,144286,7707 -939,FR,MU,201812,4,2,8594,52 -939,FR,MU,201812,4,2,6275,36 -941,FR,MU,201812,0,1,554,4 -941,FR,MU,201812,1,1,9739,4500 -941,FR,MU,201812,1,1,3829,712 -941,FR,MU,201812,1,1,161,99 -941,FR,MU,201812,1,1,62251,16602 -941,FR,MU,201812,4,1,2812,258 -941,FR,MU,201812,1,2,1131,91 -941,FR,MU,201812,1,2,6273,1584 -941,FR,MU,201812,1,2,33331,6787 -941,FR,MU,201812,1,2,52794,5900 -941,FR,MU,201812,1,2,82673,17082 -941,FR,MU,201812,4,2,1,2 -941,FR,MU,201812,4,2,1730,206 -941,FR,MU,201812,4,2,3880,630 -949,FR,MU,201812,0,1,2217,58 -949,FR,MU,201812,1,1,928,527 -949,FR,MU,201812,1,1,1509,270 -949,FR,MU,201812,1,1,1682,263 -949,FR,MU,201812,1,1,376,48 -949,FR,MU,201812,1,1,5433,1301 -949,FR,MU,201812,3,1,1762,7 -949,FR,MU,201812,4,1,7912,18 -949,FR,MU,201812,4,1,2602,0 -949,FR,MU,201812,4,1,105941,790 -949,FR,MU,201812,4,1,9485,273 -949,FR,MU,201812,0,2,2598,46 -949,FR,MU,201812,1,2,394617,16271 -949,FR,MU,201812,1,2,7890,556 -949,FR,MU,201812,1,2,14750,1980 -949,FR,MU,201812,1,2,10581,778 -949,FR,MU,201812,1,2,35069,6377 -949,FR,MU,201812,1,2,9948,1414 -949,FR,MU,201812,1,2,29531,1000 -949,FR,MU,201812,1,2,205160,29404 -949,FR,MU,201812,1,2,19782,2380 -949,FR,MU,201812,1,2,384,523 -949,FR,MU,201812,1,2,10436,1246 -949,FR,MU,201812,1,2,6946,268 -949,FR,MU,201812,1,2,1767,212 -949,FR,MU,201812,1,2,3780,6175 -949,FR,MU,201812,1,2,45834,22442 -949,FR,MU,201812,1,2,20493,3180 -949,FR,MU,201812,1,2,24344,8167 -949,FR,MU,201812,1,2,1940,97 -949,FR,MU,201812,3,2,30100,710 -949,FR,MU,201812,3,2,26052,9 -949,FR,MU,201812,4,2,35315,586 -949,FR,MU,201812,4,2,1320,24 -949,FR,MU,201812,4,2,237,3 -949,FR,MU,201812,4,2,11895,850 -949,FR,MU,201812,4,2,36813,1081 -949,FR,MU,201812,4,2,496,81 -949,FR,MU,201812,4,2,4812,12 -949,FR,MU,201812,4,2,13505,1290 -949,FR,MU,201812,4,2,7078,360 -951,FR,MU,201812,1,1,143,71 -951,FR,MU,201812,1,1,10223,19200 -951,FR,MU,201812,1,1,11,3 -951,FR,MU,201812,1,2,356,26 -951,FR,MU,201812,1,2,276,4 -951,FR,MU,201812,1,2,199,40 -951,FR,MU,201812,4,2,1477,113 -951,FR,MU,201812,4,2,2578,394 -951,FR,MU,201812,4,2,2428,20 -952,FR,MU,201812,1,1,8036,3434 -952,FR,MU,201812,1,1,1375,270 -952,FR,MU,201812,1,1,2352,97 -952,FR,MU,201812,3,1,260,3 -952,FR,MU,201812,4,1,596,14 -952,FR,MU,201812,4,1,5098,9 -952,FR,MU,201812,4,1,971,36 -952,FR,MU,201812,0,2,628,10 -952,FR,MU,201812,1,2,59994,6899 -952,FR,MU,201812,1,2,9269,3426 -952,FR,MU,201812,1,2,24,5 -952,FR,MU,201812,1,2,250,21 -952,FR,MU,201812,1,2,1268,441 -952,FR,MU,201812,1,2,25907,9723 -952,FR,MU,201812,1,2,181398,8322 -952,FR,MU,201812,1,2,12755,8597 -952,FR,MU,201812,3,2,2309,18 -952,FR,MU,201812,3,2,14953,4 -952,FR,MU,201812,4,2,305802,1610 -952,FR,MU,201812,4,2,41539,168 -952,FR,MU,201812,5,2,1869,29 -961,FR,MU,201812,0,1,458,5 -961,FR,MU,201812,4,1,2194,0 -961,FR,MU,201812,4,1,1876,16 -961,FR,MU,201812,4,1,8776,261 -961,FR,MU,201812,4,1,1932,40 -961,FR,MU,201812,1,2,1019,30 -961,FR,MU,201812,4,2,13117,150 -961,FR,MU,201812,4,2,314107,6260 -961,FR,MU,201812,4,2,1006,58 -961,FR,MU,201812,4,2,4635,100 -962,FR,MU,201812,0,1,1559,36 -962,FR,MU,201812,1,1,1510,982 -962,FR,MU,201812,1,1,23591,1370 -962,FR,MU,201812,1,1,5732,306 -962,FR,MU,201812,1,1,5936,704 -962,FR,MU,201812,1,1,29419,2407 -962,FR,MU,201812,1,1,109,8 -962,FR,MU,201812,1,1,6209,832 -962,FR,MU,201812,3,1,208,11 -962,FR,MU,201812,4,1,3114,165 -962,FR,MU,201812,4,1,40805,1270 -962,FR,MU,201812,4,1,1640,4 -962,FR,MU,201812,0,2,1086,64 -962,FR,MU,201812,1,2,41471,1915 -962,FR,MU,201812,1,2,133,9 -962,FR,MU,201812,1,2,11150,784 -962,FR,MU,201812,1,2,262,27 -962,FR,MU,201812,1,2,2274,752 -962,FR,MU,201812,1,2,6719,604 -962,FR,MU,201812,1,2,110508,28981 -962,FR,MU,201812,1,2,7061,1879 -962,FR,MU,201812,1,2,918,69 -962,FR,MU,201812,1,2,881,59 -962,FR,MU,201812,1,2,3105,941 -962,FR,MU,201812,3,2,714,56 -962,FR,MU,201812,4,2,52253,1996 -962,FR,MU,201812,4,2,1686,69 -962,FR,MU,201812,4,2,68622,1371 -962,FR,MU,201812,4,2,1641,310 -962,FR,MU,201812,4,2,15587,101 -962,FR,MU,201812,4,2,2294,23 -963,FR,MU,201812,0,1,598902,27349 -963,FR,MU,201812,1,1,77489,4924 -963,FR,MU,201812,1,1,348,60 -963,FR,MU,201812,1,1,45941,2803 -963,FR,MU,201812,1,1,12810,365 -963,FR,MU,201812,1,1,125704,9351 -963,FR,MU,201812,1,1,61123,3509 -963,FR,MU,201812,1,1,837321,41774 -963,FR,MU,201812,1,1,65392,2304 -963,FR,MU,201812,1,1,157351,3393 -963,FR,MU,201812,1,1,37591,1258 -963,FR,MU,201812,3,1,165827,1865 -963,FR,MU,201812,3,1,421,5 -963,FR,MU,201812,4,1,1291060,40960 -963,FR,MU,201812,4,1,34331,685 -963,FR,MU,201812,4,1,2180,24 -963,FR,MU,201812,4,1,18808,38 -963,FR,MU,201812,4,1,656574,14376 -963,FR,MU,201812,4,1,78661,1859 -963,FR,MU,201812,4,1,7215,220 -963,FR,MU,201812,4,1,3906,78 -963,FR,MU,201812,4,1,74784,2320 -963,FR,MU,201812,0,2,1997,28 -963,FR,MU,201812,1,2,254440,6050 -963,FR,MU,201812,1,2,7,1 -963,FR,MU,201812,1,2,8451,1731 -963,FR,MU,201812,1,2,186154,5566 -963,FR,MU,201812,1,2,22063,2903 -963,FR,MU,201812,1,2,481,89 -963,FR,MU,201812,1,2,5426,1047 -963,FR,MU,201812,1,2,247510,20269 -963,FR,MU,201812,3,2,226,6 -963,FR,MU,201812,4,2,216910,4758 -963,FR,MU,201812,4,2,13204,106 -963,FR,MU,201812,4,2,500,4 -963,FR,MU,201812,4,2,2575,31 -963,FR,MU,201812,4,2,53765,1397 -963,FR,MU,201812,4,2,15455,174 -963,FR,MU,201812,4,2,8890,930 -963,FR,MU,201812,4,2,6876,109 -971,FR,MU,201812,0,1,130331,406 -971,FR,MU,201812,1,1,69,25 -971,FR,MU,201812,1,1,833,299 -971,FR,MU,201812,1,2,699,3 -971,FR,MU,201812,1,2,41,2 -971,FR,MU,201812,1,2,9595,349 -971,FR,MU,201812,1,2,642,25 -971,FR,MU,201812,1,2,34308,5327 -971,FR,MU,201812,3,2,1957,3 -971,FR,MU,201812,4,2,3765,154 -971,FR,MU,201812,4,2,2416,1 -971,FR,MU,201812,4,2,1211,50 -972,FR,MU,201812,0,1,1009,35 -972,FR,MU,201812,1,1,12068,10085 -972,FR,MU,201812,1,1,290,6 -972,FR,MU,201812,4,1,806,95 -972,FR,MU,201812,1,2,24185,7867 -972,FR,MU,201812,1,2,23100,6045 -972,FR,MU,201812,1,2,5140,331 -972,FR,MU,201812,1,2,408,138 -972,FR,MU,201812,4,2,1051,137 -973,FR,MU,201812,0,1,4224,156 -973,FR,MU,201812,1,1,118,20 -973,FR,MU,201812,1,1,8330,2510 -973,FR,MU,201812,1,1,18215,5225 -973,FR,MU,201812,1,1,11590,9845 -973,FR,MU,201812,1,1,61010,8828 -973,FR,MU,201812,1,1,12639,13274 -973,FR,MU,201812,1,1,11377,684 -973,FR,MU,201812,3,1,23052,13608 -973,FR,MU,201812,4,1,11095,2747 -973,FR,MU,201812,4,1,1431,0 -973,FR,MU,201812,4,1,1835,107 -973,FR,MU,201812,4,1,5403,180 -973,FR,MU,201812,4,1,8855,832 -973,FR,MU,201812,0,2,387,61 -973,FR,MU,201812,1,2,6261,895 -973,FR,MU,201812,1,2,2199,798 -973,FR,MU,201812,1,2,3163,170 -973,FR,MU,201812,1,2,4295,1497 -973,FR,MU,201812,1,2,776,658 -973,FR,MU,201812,1,2,4588,1383 -973,FR,MU,201812,1,2,2833,1543 -973,FR,MU,201812,1,2,15713,9015 -973,FR,MU,201812,1,2,18186,8765 -973,FR,MU,201812,3,2,83,23 -973,FR,MU,201812,3,2,5,0 -973,FR,MU,201812,4,2,4396,1052 -973,FR,MU,201812,4,2,1492,197 -973,FR,MU,201812,4,2,501,5 -974,FR,MU,201812,0,1,23227,497 -974,FR,MU,201812,1,1,13590,971 -974,FR,MU,201812,1,1,22175,3205 -974,FR,MU,201812,1,1,14759,2260 -974,FR,MU,201812,1,1,581,74 -974,FR,MU,201812,1,1,28442,3096 -974,FR,MU,201812,1,1,32438,7183 -974,FR,MU,201812,1,1,2615,231 -974,FR,MU,201812,4,1,91072,18899 -974,FR,MU,201812,4,1,28735,3207 -974,FR,MU,201812,4,1,1078,106 -974,FR,MU,201812,5,1,881,20 -974,FR,MU,201812,8,1,2224,187 -974,FR,MU,201812,0,2,6527,160 -974,FR,MU,201812,1,2,46517,5471 -974,FR,MU,201812,1,2,3017,303 -974,FR,MU,201812,1,2,2794,289 -974,FR,MU,201812,1,2,29448,7577 -974,FR,MU,201812,1,2,235,14 -974,FR,MU,201812,3,2,1646,311 -974,FR,MU,201812,3,2,180,26 -974,FR,MU,201812,4,2,62836,5321 -974,FR,MU,201812,4,2,12914,490 -974,FR,MU,201812,5,2,59,3 -975,FR,MU,201812,1,1,3923,2866 -975,FR,MU,201812,1,1,2692,189 -975,FR,MU,201812,1,1,239,41 -975,FR,MU,201812,1,1,1303,610 -975,FR,MU,201812,4,1,609,13 -975,FR,MU,201812,0,2,30,7 -975,FR,MU,201812,1,2,16100,982 -975,FR,MU,201812,1,2,8,2 -975,FR,MU,201812,1,2,1246,239 -975,FR,MU,201812,1,2,3686,579 -975,FR,MU,201812,1,2,327,53 -975,FR,MU,201812,1,2,52983,7804 -975,FR,MU,201812,1,2,32142,5527 -975,FR,MU,201812,1,2,53804,10590 -975,FR,MU,201812,3,2,2832,445 -975,FR,MU,201812,4,2,26064,85 -975,FR,MU,201812,4,2,42915,80 -976,FR,MU,201812,0,1,3511,60 -976,FR,MU,201812,1,1,11,5 -976,FR,MU,201812,1,1,909,291 -976,FR,MU,201812,1,1,10992,1640 -976,FR,MU,201812,1,1,4427,329 -976,FR,MU,201812,3,1,9561,184 -976,FR,MU,201812,4,1,603,316 -976,FR,MU,201812,4,1,1780,51 -976,FR,MU,201812,4,1,3795,215 -976,FR,MU,201812,4,1,3139,62 -976,FR,MU,201812,4,1,4580,267 -976,FR,MU,201812,1,2,1657,282 -976,FR,MU,201812,1,2,1205,309 -976,FR,MU,201812,1,2,11711,5606 -976,FR,MU,201812,1,2,1307,1008 -976,FR,MU,201812,1,2,385,1032 -976,FR,MU,201812,1,2,8872,17603 -976,FR,MU,201812,1,2,200,534 -976,FR,MU,201812,4,2,23,39 -979,FR,MU,201812,0,1,41270,458 -979,FR,MU,201812,1,1,42086,3172 -979,FR,MU,201812,1,1,21888,12704 -979,FR,MU,201812,1,1,185,59 -979,FR,MU,201812,1,1,48584,11499 -979,FR,MU,201812,1,1,20484,3578 -979,FR,MU,201812,1,1,208163,117323 -979,FR,MU,201812,1,1,45,0 -979,FR,MU,201812,1,1,30114,480 -979,FR,MU,201812,1,1,11757,1595 -979,FR,MU,201812,3,1,691014,2062 -979,FR,MU,201812,3,1,103,4 -979,FR,MU,201812,3,1,18635,19 -979,FR,MU,201812,3,1,151606,136 -979,FR,MU,201812,4,1,1039276,11821 -979,FR,MU,201812,4,1,3331,2 -979,FR,MU,201812,4,1,4176,0 -979,FR,MU,201812,4,1,568582,3559 -979,FR,MU,201812,4,1,799580,6334 -979,FR,MU,201812,4,1,1348072,598 -979,FR,MU,201812,4,1,15249,3 -979,FR,MU,201812,4,1,1726,210 -979,FR,MU,201812,4,1,242757,2350 -979,FR,MU,201812,0,2,23088,129 -979,FR,MU,201812,1,2,284421,40018 -979,FR,MU,201812,1,2,11284,1078 -979,FR,MU,201812,1,2,1970,131 -979,FR,MU,201812,1,2,13136,883 -979,FR,MU,201812,1,2,6020,696 -979,FR,MU,201812,1,2,38407,1899 -979,FR,MU,201812,1,2,414,23 -979,FR,MU,201812,1,2,2051,14 -979,FR,MU,201812,1,2,266936,22852 -979,FR,MU,201812,1,2,24030,2923 -979,FR,MU,201812,1,2,51586,6748 -979,FR,MU,201812,1,2,177,34 -979,FR,MU,201812,1,2,318759,9751 -979,FR,MU,201812,1,2,522081,32037 -979,FR,MU,201812,1,2,101593,867 -979,FR,MU,201812,1,2,1364,180 -979,FR,MU,201812,3,2,400464,2181 -979,FR,MU,201812,3,2,967,0 -979,FR,MU,201812,4,2,974809,2822 -979,FR,MU,201812,4,2,40085,169 -979,FR,MU,201812,4,2,603000,690 -979,FR,MU,201812,4,2,928,25 -979,FR,MU,201812,4,2,72398,2430 -979,FR,MU,201812,4,2,90732,144 -979,FR,MU,201812,4,2,24724,1220 -979,FR,MU,201812,4,2,4113,18 -979,FR,MU,201812,4,2,116679,6130 -979,FR,MU,201812,4,2,7768,77 -979,FR,MU,201812,4,2,19816,8 -979,FR,MU,201812,5,2,877,3 -994,FR,MU,201812,4,1,84276,2 -994,FR,MU,201812,1,2,753134,100979 -994,FR,MU,201812,4,2,529830,16 -999,FR,MU,201812,1,1,6240,0 -999,FR,MU,201812,4,1,3,0 -999,FR,MU,201812,4,1,57,0 -999,FR,MU,201812,0,2,2640,33 -999,FR,MU,201812,1,2,180,2 -999,FR,MU,201812,1,2,530,0 -999,FR,MU,201812,1,2,6960,570 -999,FR,MU,201812,1,2,168,0 -999,FR,MU,201812,1,2,120568,95 -999,FR,MU,201812,1,2,14575,0 -999,FR,MU,201812,1,2,1032668,21 -999,FR,MU,201812,1,2,17464,0 -999,FR,MU,201812,3,2,60643,255 -999,FR,MU,201812,4,2,20664,121 -999,FR,MU,201812,4,2,126,1 -999,FR,MU,201812,4,2,3000,0 -035,FR,KM,201812,1,2,1989,465 -049,FR,KM,201812,1,2,15286,10845 -049,FR,KM,201812,1,2,14312,9356 -099,FR,KM,201812,1,2,11250,25000 -099,FR,KM,201812,4,2,6574,85 -112,FR,KM,201812,1,2,1792,528 -125,FR,KM,201812,1,2,14227,10503 -128,FR,KM,201812,1,2,1538,1511 -128,FR,KM,201812,1,2,5386,18360 -131,FR,KM,201812,1,2,222,24 -132,FR,KM,201812,1,2,6761,2382 -132,FR,KM,201812,4,2,3414,260 -133,FR,KM,201812,1,2,63,4 -136,FR,KM,201812,1,2,450,57 -139,FR,KM,201812,1,2,2667,186 -139,FR,KM,201812,1,2,51688,7159 -139,FR,KM,201812,1,2,142878,40186 -139,FR,KM,201812,1,2,2892,1937 -139,FR,KM,201812,4,2,192,4 -139,FR,KM,201812,4,2,1905,480 -141,FR,KM,201812,1,2,35070,48000 -141,FR,KM,201812,1,2,44365,50000 -141,FR,KM,201812,1,2,25420,26000 -143,FR,KM,201812,1,2,49,24 -144,FR,KM,201812,4,2,8010,518 -147,FR,KM,201812,1,2,109,20 -161,FR,KM,201812,1,2,16543,49500 -161,FR,KM,201812,1,2,135888,393850 -161,FR,KM,201812,1,2,188,400 -163,FR,KM,201812,1,2,210,140 -163,FR,KM,201812,1,2,7103,2801 -164,FR,KM,201812,1,2,2490,1494 -166,FR,KM,201812,1,2,1250,150 -166,FR,KM,201812,1,2,1690,927 -179,FR,KM,201812,1,2,7560,22575 -182,FR,KM,201812,1,2,396,120 -533,FR,KM,201812,1,2,500,2550 -621,FR,KM,201812,1,2,243,465 -691,FR,KM,201812,3,2,8837,700 -692,FR,KM,201812,1,2,316,450 -692,FR,KM,201812,1,2,3401,796 -692,FR,KM,201812,1,2,1039,1100 -692,FR,KM,201812,1,2,800,500 -892,FR,KM,201812,1,2,21582,15000 -892,FR,KM,201812,1,2,219,80 -893,FR,KM,201812,4,1,1507727,5042 -893,FR,KM,201812,4,1,214318,680 -893,FR,KM,201812,4,1,48322,1216 -893,FR,KM,201812,1,2,919,280 -893,FR,KM,201812,1,2,27573,2437 -893,FR,KM,201812,1,2,2166,1561 -893,FR,KM,201812,1,2,53,9 -893,FR,KM,201812,4,2,51943,1397 -893,FR,KM,201812,4,2,20500,700 -893,FR,KM,201812,4,2,86655,1693 -896,FR,KM,201812,1,2,2773,147 -896,FR,KM,201812,4,2,11958,114 -896,FR,KM,201812,4,2,2620,44 -896,FR,KM,201812,5,2,5900,31 -910,FR,KM,201812,1,2,123230,85651 -910,FR,KM,201812,1,2,49528,26730 -910,FR,KM,201812,1,2,9200,3248 -910,FR,KM,201812,1,2,4750,6594 -910,FR,KM,201812,1,2,2700,4480 -910,FR,KM,201812,1,2,4694,5687 -910,FR,KM,201812,1,2,3414,1618 -910,FR,KM,201812,1,2,11400,8259 -910,FR,KM,201812,1,2,11572,12189 -910,FR,KM,201812,1,2,22400,10187 -910,FR,KM,201812,3,2,22150,21419 -910,FR,KM,201812,4,2,21451,537 -910,FR,KM,201812,4,2,492,12 -910,FR,KM,201812,8,2,3000,1300 -931,FR,KM,201812,0,1,78,0 -931,FR,KM,201812,0,2,13388,11 -931,FR,KM,201812,1,2,480492,2771 -931,FR,KM,201812,1,2,26817,500 -931,FR,KM,201812,1,2,20192,2435 -931,FR,KM,201812,1,2,4274,250 -931,FR,KM,201812,1,2,20037,7967 -931,FR,KM,201812,1,2,217,15 -931,FR,KM,201812,1,2,389,500 -931,FR,KM,201812,1,2,169,90 -931,FR,KM,201812,1,2,11399,3895 -931,FR,KM,201812,4,2,20021,950 -931,FR,KM,201812,4,2,6836,42 -931,FR,KM,201812,4,2,11340,18 -931,FR,KM,201812,4,2,31,1 -931,FR,KM,201812,4,2,30,0 -939,FR,KM,201812,1,2,6421,1 -939,FR,KM,201812,1,2,2714,560 -939,FR,KM,201812,1,2,285,7 -939,FR,KM,201812,1,2,22571,7091 -939,FR,KM,201812,1,2,485,20 -939,FR,KM,201812,1,2,260,38 -939,FR,KM,201812,4,2,50576,546 -939,FR,KM,201812,4,2,30616,90 -939,FR,KM,201812,4,2,3227,129 -939,FR,KM,201812,4,2,36507,403 -939,FR,KM,201812,4,2,6632,520 -941,FR,KM,201812,1,2,3057,1100 -941,FR,KM,201812,1,2,478,300 -941,FR,KM,201812,1,2,36280,22370 -941,FR,KM,201812,1,2,2919,765 -941,FR,KM,201812,3,2,3150,2050 -949,FR,KM,201812,1,2,2305,340 -949,FR,KM,201812,1,2,223,24 -949,FR,KM,201812,1,2,1655,161 -949,FR,KM,201812,4,2,1486,87 -949,FR,KM,201812,4,2,4266,600 -949,FR,KM,201812,4,2,1916,78 -951,FR,KM,201812,1,2,100,6 -952,FR,KM,201812,4,2,1140,18 -962,FR,KM,201812,4,2,1562,11 -962,FR,KM,201812,4,2,3508,10 -963,FR,KM,201812,1,2,122,5 -963,FR,KM,201812,1,2,550,90 -963,FR,KM,201812,1,2,33924,2620 -963,FR,KM,201812,4,2,16624,99 -963,FR,KM,201812,4,2,19620,350 -963,FR,KM,201812,4,2,7980,349 -971,FR,KM,201812,1,2,2184,805 -971,FR,KM,201812,4,2,2061,150 -972,FR,KM,201812,1,2,63,61 -973,FR,KM,201812,1,2,759,330 -974,FR,KM,201812,0,2,145,2 -974,FR,KM,201812,1,2,1,4 -974,FR,KM,201812,1,2,89,5 -974,FR,KM,201812,4,2,1242,71 -975,FR,KM,201812,1,2,13058,5600 -975,FR,KM,201812,1,2,60000,23557 -975,FR,KM,201812,1,2,30,10 -975,FR,KM,201812,1,2,11987,8442 -975,FR,KM,201812,1,2,3292,3220 -975,FR,KM,201812,1,2,10246,3015 -975,FR,KM,201812,1,2,47500,76941 -975,FR,KM,201812,4,2,257,13 -976,FR,KM,201812,1,2,777,110 -976,FR,KM,201812,1,2,15,5 -976,FR,KM,201812,1,2,407,400 -979,FR,KM,201812,1,2,1876,521 -979,FR,KM,201812,1,2,448821,64272 -979,FR,KM,201812,1,2,2875,915 -979,FR,KM,201812,1,2,2095,445 -979,FR,KM,201812,1,2,710,500 -979,FR,KM,201812,1,2,791,66 -979,FR,KM,201812,4,2,934,86 -979,FR,KM,201812,4,2,5614,128 -979,FR,KM,201812,4,2,5873,61 -999,FR,KM,201812,1,1,7970,0 -999,FR,KM,201812,0,2,2000,0 -999,FR,KM,201812,1,2,15802,0 -999,FR,KM,201812,1,2,4487,212 -999,FR,KM,201812,1,2,253,8 -999,FR,KM,201812,1,2,52975,7 -999,FR,KM,201812,1,2,5600,0 -999,FR,KM,201812,1,2,1150,0 -999,FR,KM,201812,1,2,2000,0 -999,FR,KM,201812,1,2,29000,0 -999,FR,KM,201812,1,2,18000,0 -999,FR,KM,201812,1,2,3000,0 -999,FR,KM,201812,1,2,10200,0 -999,FR,KM,201812,1,2,2151,0 -999,FR,KM,201812,3,2,12800,0 -999,FR,KM,201812,4,2,7,0 -999,FR,KM,201812,4,2,3164,0 -999,FR,KM,201812,4,2,47783,120 -999,FR,KM,201812,8,2,1500,0 -001,FR,ZM,201812,4,2,59845,743 -035,FR,ZM,201812,4,1,2089,480 -035,FR,ZM,201812,4,1,14200,3561 -139,FR,ZM,201812,3,1,410,35 -341,FR,ZM,201812,1,2,41260,19316 -641,FR,ZM,201812,4,1,275,20 -891,FR,ZM,201812,4,2,48,3 -891,FR,ZM,201812,4,2,1850,9 -893,FR,ZM,201812,4,2,146069,405 -896,FR,ZM,201812,1,2,127194,6248 -896,FR,ZM,201812,4,2,27616,140 -896,FR,ZM,201812,4,2,3909,296 -896,FR,ZM,201812,4,2,24414,109 -910,FR,ZM,201812,1,2,4689,287 -910,FR,ZM,201812,1,2,1500,3490 -910,FR,ZM,201812,4,2,709,71 -910,FR,ZM,201812,4,2,613,33 -920,FR,ZM,201812,4,2,3045,234 -931,FR,ZM,201812,1,2,171913,5649 -931,FR,ZM,201812,1,2,962149,21670 -931,FR,ZM,201812,1,2,51859,5296 -931,FR,ZM,201812,4,2,128528,3438 -931,FR,ZM,201812,4,2,2390,21 -931,FR,ZM,201812,4,2,1216,30 -939,FR,ZM,201812,3,1,7667,294 -939,FR,ZM,201812,1,2,2542,65 -939,FR,ZM,201812,1,2,816094,46039 -939,FR,ZM,201812,1,2,13900,1545 -939,FR,ZM,201812,3,2,606,8 -939,FR,ZM,201812,4,2,52512,1218 -939,FR,ZM,201812,4,2,15865,271 -939,FR,ZM,201812,4,2,6488,530 -941,FR,ZM,201812,1,2,62932,3078 -949,FR,ZM,201812,1,2,14,0 -949,FR,ZM,201812,4,2,1837,135 -949,FR,ZM,201812,4,2,1950,170 -951,FR,ZM,201812,1,2,776,36 -952,FR,ZM,201812,3,1,155,0 -952,FR,ZM,201812,4,1,1368,0 -962,FR,ZM,201812,0,2,156,5 -962,FR,ZM,201812,1,2,196,21 -962,FR,ZM,201812,4,2,17,3 -963,FR,ZM,201812,3,1,75,0 -963,FR,ZM,201812,4,2,158,9 -963,FR,ZM,201812,4,2,2037,50 -971,FR,ZM,201812,1,2,92,0 -974,FR,ZM,201812,4,2,1867,135 -974,FR,ZM,201812,4,2,115,16 -976,FR,ZM,201812,3,1,102,2 -979,FR,ZM,201812,0,2,108,7 -979,FR,ZM,201812,1,2,234,0 -979,FR,ZM,201812,4,2,25633,66 -999,FR,ZM,201812,1,2,3740,0 -999,FR,ZM,201812,4,2,2,0 -999,FR,ZM,201812,4,2,2409,0 -091,FR,ZW,201812,4,1,3583652,14200 -134,FR,ZW,201812,0,1,881314,272820 -134,FR,ZW,201812,1,1,446969,88200 -139,FR,ZW,201812,1,2,44986,22451 -139,FR,ZW,201812,1,2,53306,10000 -139,FR,ZW,201812,1,2,360287,113880 -552,FR,ZW,201812,4,2,123,13 -632,FR,ZW,201812,3,1,7196,26180 -691,FR,ZW,201812,1,1,77093,105714 -691,FR,ZW,201812,4,1,958,54 -891,FR,ZW,201812,1,2,18074,600 -893,FR,ZW,201812,1,2,40252,21360 -893,FR,ZW,201812,4,2,2954,10 -893,FR,ZW,201812,4,2,2410,80 -893,FR,ZW,201812,4,2,2410,950 -896,FR,ZW,201812,1,2,14882,1814 -910,FR,ZW,201812,4,2,3198,195 -920,FR,ZW,201812,1,2,258769,8560 -920,FR,ZW,201812,4,2,4402,190 -931,FR,ZW,201812,4,2,15865,39 -931,FR,ZW,201812,4,2,125243,550 -931,FR,ZW,201812,4,2,1285,10 -939,FR,ZW,201812,1,2,83030,1390 -939,FR,ZW,201812,4,2,48074,1209 -939,FR,ZW,201812,4,2,357,22 -939,FR,ZW,201812,4,2,37307,158 -939,FR,ZW,201812,4,2,1077,30 -949,FR,ZW,201812,1,2,12319,445 -961,FR,ZW,201812,4,1,705108,190 -962,FR,ZW,201812,4,1,1464,165 -971,FR,ZW,201812,4,2,50,4 -971,FR,ZW,201812,4,2,1509,730 -973,FR,ZW,201812,1,2,4915,2140 -973,FR,ZW,201812,1,2,4861,2140 -973,FR,ZW,201812,4,2,16460,699 -975,FR,ZW,201812,4,2,1669,20 -979,FR,ZW,201812,4,2,102465,1128 -979,FR,ZW,201812,4,2,9814,146 -999,FR,ZW,201812,1,2,36169,14430 -999,FR,ZW,201812,1,2,114735,0 -999,FR,ZW,201812,4,2,2,0 -099,FR,MW,201812,4,2,7289,109 -134,FR,MW,201812,1,1,28524,60480 -136,FR,MW,201812,4,2,54,53 -639,FR,MW,201812,4,1,419,70 -896,FR,MW,201812,4,2,718,2 -896,FR,MW,201812,4,2,8865,3 -896,FR,MW,201812,4,2,2328,4 -910,FR,MW,201812,4,2,577,21 -931,FR,MW,201812,1,2,95321,2117 -931,FR,MW,201812,1,2,4843,362 -931,FR,MW,201812,4,2,45883,258 -931,FR,MW,201812,4,2,1036959,8070 -931,FR,MW,201812,4,2,10000,320 -939,FR,MW,201812,1,2,168338,4170 -939,FR,MW,201812,4,2,6309,53 -939,FR,MW,201812,4,2,13607,210 -939,FR,MW,201812,4,2,157,1 -939,FR,MW,201812,4,2,247,18 -939,FR,MW,201812,4,2,3200,35 -939,FR,MW,201812,4,2,2026,20 -949,FR,MW,201812,1,1,32,2 -949,FR,MW,201812,1,2,41476,2640 -949,FR,MW,201812,4,2,165,2 -949,FR,MW,201812,4,2,3496,6 -951,FR,MW,201812,1,1,157,80 -971,FR,MW,201812,1,2,1489,95 -974,FR,MW,201812,1,2,527,30 -975,FR,MW,201812,1,1,5160,890 -979,FR,MW,201812,4,1,64,1 -979,FR,MW,201812,1,2,21478,3355 -979,FR,MW,201812,4,2,350,2 -979,FR,MW,201812,4,2,6072,53 -979,FR,MW,201812,4,2,569,9 -001,FR,ZA,201812,4,1,1000,153 -001,FR,ZA,201812,4,2,151,52 -011,FR,ZA,201812,1,2,2,1 -015,FR,ZA,201812,4,1,814,22 -031,FR,ZA,201812,1,1,32313,33256 -031,FR,ZA,201812,1,1,55081,78470 -031,FR,ZA,201812,1,1,92805,89930 -035,FR,ZA,201812,1,1,159307,89305 -035,FR,ZA,201812,1,1,140281,62277 -035,FR,ZA,201812,1,1,127015,49578 -035,FR,ZA,201812,1,1,204227,12247 -035,FR,ZA,201812,1,1,22856,21476 -035,FR,ZA,201812,4,1,177584,38838 -035,FR,ZA,201812,4,1,13548,2860 -035,FR,ZA,201812,4,1,46550,16488 -035,FR,ZA,201812,4,1,14610,1948 -035,FR,ZA,201812,4,1,36047,7680 -039,FR,ZA,201812,4,1,212082,30364 -039,FR,ZA,201812,4,1,5969,978 -039,FR,ZA,201812,4,2,1979,240 -041,FR,ZA,201812,4,1,116,1 -056,FR,ZA,201812,1,1,107029,169350 -056,FR,ZA,201812,1,1,13885,27240 -056,FR,ZA,201812,1,2,5671,194 -057,FR,ZA,201812,1,1,9897,19200 -057,FR,ZA,201812,1,1,29084,52690 -057,FR,ZA,201812,1,1,42855,76946 -057,FR,ZA,201812,1,1,17059,26425 -057,FR,ZA,201812,1,1,8844,39487 -057,FR,ZA,201812,1,1,10313,20444 -091,FR,ZA,201812,3,1,7507,61 -091,FR,ZA,201812,1,2,37500,13647 -092,FR,ZA,201812,1,2,56776,20020 -092,FR,ZA,201812,1,2,88287,145009 -092,FR,ZA,201812,4,2,25625,2700 -099,FR,ZA,201812,0,1,398,18 -099,FR,ZA,201812,3,1,10297,600 -099,FR,ZA,201812,4,1,28678,2317 -099,FR,ZA,201812,4,1,21127,245 -099,FR,ZA,201812,4,1,27573,3915 -099,FR,ZA,201812,4,1,524,15 -099,FR,ZA,201812,1,2,34656,1200 -099,FR,ZA,201812,1,2,38794,3600 -099,FR,ZA,201812,1,2,7929,1000 -099,FR,ZA,201812,1,2,47043,6350 -099,FR,ZA,201812,1,2,16273,7323 -099,FR,ZA,201812,1,2,72293,18286 -099,FR,ZA,201812,3,2,5641,600 -099,FR,ZA,201812,4,2,82892,875 -099,FR,ZA,201812,4,2,4115,81 -099,FR,ZA,201812,4,2,123398,131 -111,FR,ZA,201812,1,2,270,48 -111,FR,ZA,201812,4,2,68,9 -112,FR,ZA,201812,1,1,42778,75005 -121,FR,ZA,201812,0,1,473,172 -121,FR,ZA,201812,1,1,14860,23980 -121,FR,ZA,201812,1,1,14865,6733 -121,FR,ZA,201812,1,1,764,158 -121,FR,ZA,201812,1,1,54891,16110 -121,FR,ZA,201812,1,1,126903,31967 -121,FR,ZA,201812,1,1,42957,51200 -121,FR,ZA,201812,1,1,44882,52272 -121,FR,ZA,201812,1,1,23869,19800 -121,FR,ZA,201812,1,1,44615,71660 -121,FR,ZA,201812,3,1,74,3 -121,FR,ZA,201812,3,1,21781,12100 -121,FR,ZA,201812,4,1,896,36 -121,FR,ZA,201812,4,1,38,5 -121,FR,ZA,201812,1,2,378167,5922 -121,FR,ZA,201812,1,2,40274,1624 -121,FR,ZA,201812,1,2,279295,59389 -121,FR,ZA,201812,1,2,13329,3105 -121,FR,ZA,201812,1,2,66991,9317 -121,FR,ZA,201812,1,2,1249965,38714 -121,FR,ZA,201812,3,2,90,9 -121,FR,ZA,201812,4,2,14317,1864 -121,FR,ZA,201812,4,2,9009,700 -122,FR,ZA,201812,1,2,242,419 -122,FR,ZA,201812,4,2,137,237 -122,FR,ZA,201812,4,2,772,110 -125,FR,ZA,201812,0,1,415,65 -125,FR,ZA,201812,1,1,1741,315 -125,FR,ZA,201812,1,1,58874,7833 -125,FR,ZA,201812,1,1,778942,275020 -125,FR,ZA,201812,4,1,0,1 -125,FR,ZA,201812,1,2,14345,4083 -125,FR,ZA,201812,1,2,31269,3924 -125,FR,ZA,201812,1,2,448994,19867 -125,FR,ZA,201812,1,2,1608591,95653 -125,FR,ZA,201812,1,2,407198,127100 -125,FR,ZA,201812,1,2,419456,41123 -125,FR,ZA,201812,1,2,18465,9397 -125,FR,ZA,201812,1,2,166490,9236 -125,FR,ZA,201812,4,2,14897,775 -125,FR,ZA,201812,4,2,14543,1755 -125,FR,ZA,201812,4,2,200,14 -125,FR,ZA,201812,4,2,205,7 -128,FR,ZA,201812,1,1,99404,172225 -128,FR,ZA,201812,1,1,15770,22704 -128,FR,ZA,201812,4,1,105,1 -128,FR,ZA,201812,1,2,12593,5099 -128,FR,ZA,201812,1,2,19152,2661 -128,FR,ZA,201812,4,2,766,259 -131,FR,ZA,201812,1,2,434,16 -132,FR,ZA,201812,4,1,542,19 -132,FR,ZA,201812,0,2,120,6 -132,FR,ZA,201812,1,2,337905,39728 -132,FR,ZA,201812,1,2,89900,26648 -132,FR,ZA,201812,1,2,26748,4766 -132,FR,ZA,201812,3,2,15097,1263 -132,FR,ZA,201812,3,2,248464,49638 -132,FR,ZA,201812,4,2,66,20 -133,FR,ZA,201812,1,1,8579,821 -133,FR,ZA,201812,3,1,290,0 -133,FR,ZA,201812,3,1,287,2 -133,FR,ZA,201812,4,1,5694,500 -133,FR,ZA,201812,4,1,6,2 -133,FR,ZA,201812,0,2,60,2 -133,FR,ZA,201812,1,2,30,5 -133,FR,ZA,201812,4,2,436,9 -135,FR,ZA,201812,4,2,7,1 -136,FR,ZA,201812,1,2,86,22 -136,FR,ZA,201812,1,2,203714,278158 -136,FR,ZA,201812,4,2,309,110 -136,FR,ZA,201812,4,2,468,40 -139,FR,ZA,201812,1,1,27221,673 -139,FR,ZA,201812,1,1,1531,75 -139,FR,ZA,201812,1,1,5084,137 -139,FR,ZA,201812,1,1,129308,6700 -139,FR,ZA,201812,1,1,10042,217 -139,FR,ZA,201812,3,1,89,0 -139,FR,ZA,201812,4,1,16522,2048 -139,FR,ZA,201812,4,1,190,8 -139,FR,ZA,201812,4,1,155,1 -139,FR,ZA,201812,4,1,148,6 -139,FR,ZA,201812,1,2,3681,300 -139,FR,ZA,201812,1,2,51747,2961 -139,FR,ZA,201812,1,2,262513,38984 -139,FR,ZA,201812,1,2,73418,12800 -139,FR,ZA,201812,1,2,252063,121710 -139,FR,ZA,201812,1,2,37100,3908 -139,FR,ZA,201812,1,2,1424,43 -139,FR,ZA,201812,3,2,64674,412 -139,FR,ZA,201812,4,2,17621,3867 -139,FR,ZA,201812,4,2,1538,175 -139,FR,ZA,201812,4,2,11150,565 -141,FR,ZA,201812,1,2,26455,49999 -141,FR,ZA,201812,1,2,14378,24370 -141,FR,ZA,201812,1,2,12570,25199 -141,FR,ZA,201812,1,2,12618,24177 -141,FR,ZA,201812,1,2,31701,23647 -141,FR,ZA,201812,1,2,89978,98661 -141,FR,ZA,201812,1,2,16271,24251 -141,FR,ZA,201812,1,2,13454,25000 -141,FR,ZA,201812,1,2,38721,24044 -142,FR,ZA,201812,1,1,93164,18000 -142,FR,ZA,201812,1,1,115486,21585 -142,FR,ZA,201812,1,1,213747,37486 -142,FR,ZA,201812,1,1,197058,27107 -142,FR,ZA,201812,4,1,515813,77416 -142,FR,ZA,201812,4,2,8407,335 -143,FR,ZA,201812,1,2,14750,6476 -144,FR,ZA,201812,4,1,13,1 -144,FR,ZA,201812,1,2,1112370,417000 -144,FR,ZA,201812,1,2,39319,24750 -144,FR,ZA,201812,1,2,22865,2840 -144,FR,ZA,201812,1,2,240312,96000 -144,FR,ZA,201812,1,2,60134,19010 -144,FR,ZA,201812,4,2,21306,1597 -144,FR,ZA,201812,4,2,794,106 -144,FR,ZA,201812,4,2,3575,336 -146,FR,ZA,201812,1,2,75149,13750 -147,FR,ZA,201812,1,2,1160,122 -147,FR,ZA,201812,4,2,799,28 -147,FR,ZA,201812,4,2,976,62 -148,FR,ZA,201812,1,1,91184,15325 -148,FR,ZA,201812,4,2,1315,26 -148,FR,ZA,201812,4,2,956,0 -162,FR,ZA,201812,1,2,479338,1396051 -163,FR,ZA,201812,1,1,21046,5706 -163,FR,ZA,201812,4,1,37,150 -163,FR,ZA,201812,1,2,40447,14958 -163,FR,ZA,201812,1,2,65517,20859 -163,FR,ZA,201812,1,2,24996,7574 -163,FR,ZA,201812,1,2,5,50 -163,FR,ZA,201812,1,2,129305,48890 -163,FR,ZA,201812,3,2,23000,7588 -163,FR,ZA,201812,4,2,29,3 -164,FR,ZA,201812,1,1,22529,19382 -164,FR,ZA,201812,1,1,19468,19480 -164,FR,ZA,201812,1,1,115447,55450 -164,FR,ZA,201812,1,1,62287,18750 -164,FR,ZA,201812,1,1,18024,14700 -164,FR,ZA,201812,1,1,99757,38750 -164,FR,ZA,201812,1,1,149156,57820 -164,FR,ZA,201812,3,1,273,112 -164,FR,ZA,201812,1,2,13578,1953 -164,FR,ZA,201812,1,2,562,40 -164,FR,ZA,201812,1,2,2280,252 -164,FR,ZA,201812,1,2,104335,24456 -164,FR,ZA,201812,1,2,48712,21723 -164,FR,ZA,201812,3,2,10,0 -164,FR,ZA,201812,4,2,386,8 -165,FR,ZA,201812,1,2,3692,750 -165,FR,ZA,201812,1,2,45650,105000 -166,FR,ZA,201812,4,1,3629,280 -166,FR,ZA,201812,1,2,3093,627 -166,FR,ZA,201812,1,2,50872,32120 -166,FR,ZA,201812,4,2,1794,30 -179,FR,ZA,201812,1,1,499606,400000 -179,FR,ZA,201812,1,2,32800,5500 -179,FR,ZA,201812,1,2,298744,131004 -179,FR,ZA,201812,1,2,35600,40000 -179,FR,ZA,201812,1,2,24748,18106 -179,FR,ZA,201812,1,2,146040,51237 -179,FR,ZA,201812,1,2,27415,24000 -181,FR,ZA,201812,4,1,128,2 -182,FR,ZA,201812,1,1,46674,15000 -182,FR,ZA,201812,4,1,409,8 -182,FR,ZA,201812,4,1,639,9 -182,FR,ZA,201812,1,2,3400,1000 -182,FR,ZA,201812,1,2,16774,1821 -182,FR,ZA,201812,1,2,12331,2165 -182,FR,ZA,201812,1,2,77265,17860 -182,FR,ZA,201812,1,2,45333,17825 -182,FR,ZA,201812,4,2,153,15 -182,FR,ZA,201812,4,2,3068,30 -211,FR,ZA,201812,0,1,5297773,55626220 -224,FR,ZA,201812,1,1,1757188,2003001 -321,FR,ZA,201812,4,2,513,14 -323,FR,ZA,201812,1,2,11117,13360 -341,FR,ZA,201812,3,1,1689,2 -341,FR,ZA,201812,1,2,2207,900 -341,FR,ZA,201812,1,2,394951,134524 -341,FR,ZA,201812,1,2,552,3 -341,FR,ZA,201812,1,2,22222,5918 -341,FR,ZA,201812,1,2,40980,12497 -341,FR,ZA,201812,1,2,46588,29786 -341,FR,ZA,201812,3,2,299,50 -341,FR,ZA,201812,3,2,11667,3636 -341,FR,ZA,201812,4,2,6355,919 -349,FR,ZA,201812,1,2,6814,2010 -349,FR,ZA,201812,4,2,115,30 -349,FR,ZA,201812,4,2,115,24 -455,FR,ZA,201812,1,1,17067,81000 -455,FR,ZA,201812,1,1,47740,275020 -455,FR,ZA,201812,1,1,132040,594000 -459,FR,ZA,201812,1,1,16191,54000 -459,FR,ZA,201812,3,1,40174,24000 -512,FR,ZA,201812,1,1,451018,299995 -513,FR,ZA,201812,0,1,2523680,2971340 -513,FR,ZA,201812,1,1,79470,41000 -513,FR,ZA,201812,1,2,149829,12750 -522,FR,ZA,201812,1,2,13860,21180 -532,FR,ZA,201812,1,2,18859,1390 -532,FR,ZA,201812,1,2,328,13 -532,FR,ZA,201812,3,2,842,11 -532,FR,ZA,201812,4,2,29557,878 -532,FR,ZA,201812,4,2,4552,40 -533,FR,ZA,201812,1,2,11405,668 -533,FR,ZA,201812,1,2,15845,1595 -533,FR,ZA,201812,1,2,88912,35727 -535,FR,ZA,201812,1,1,11815,18900 -536,FR,ZA,201812,1,2,294750,80708 -536,FR,ZA,201812,1,2,862,675 -536,FR,ZA,201812,1,2,14363,19676 -536,FR,ZA,201812,3,2,50576,45279 -537,FR,ZA,201812,3,2,131100,18240 -542,FR,ZA,201812,1,2,1582070,1815450 -542,FR,ZA,201812,1,2,12453,14960 -542,FR,ZA,201812,1,2,13473,18200 -542,FR,ZA,201812,1,2,22592,28960 -542,FR,ZA,201812,1,2,47990,44889 -542,FR,ZA,201812,2,2,37239,41820 -542,FR,ZA,201812,3,2,105440,87580 -551,FR,ZA,201812,1,1,24499,22284 -551,FR,ZA,201812,4,1,77,0 -551,FR,ZA,201812,4,1,200,1 -551,FR,ZA,201812,1,2,9972,804 -551,FR,ZA,201812,1,2,49931,768 -551,FR,ZA,201812,1,2,15,0 -551,FR,ZA,201812,3,2,14689,2110 -551,FR,ZA,201812,4,2,12087,440 -551,FR,ZA,201812,4,2,5466,2132 -551,FR,ZA,201812,4,2,11,0 -551,FR,ZA,201812,4,2,14230,1 -552,FR,ZA,201812,3,1,1085,11 -552,FR,ZA,201812,1,2,74,19 -552,FR,ZA,201812,1,2,7227,1261 -552,FR,ZA,201812,4,2,3904,165 -552,FR,ZA,201812,4,2,733,0 -561,FR,ZA,201812,1,2,6924,1000 -562,FR,ZA,201812,0,1,1408216,770705 -565,FR,ZA,201812,1,1,47953,2815 -565,FR,ZA,201812,1,2,18178,400 -565,FR,ZA,201812,1,2,523528,7584 -565,FR,ZA,201812,4,2,35576,460 -565,FR,ZA,201812,4,2,114200,960 -565,FR,ZA,201812,4,2,6135,5 -568,FR,ZA,201812,0,1,8910,845 -568,FR,ZA,201812,1,1,146017,38368 -568,FR,ZA,201812,1,1,4932,556 -568,FR,ZA,201812,1,1,168284,48826 -568,FR,ZA,201812,3,1,310558,108720 -568,FR,ZA,201812,3,1,200830,69967 -568,FR,ZA,201812,3,1,66393,22994 -568,FR,ZA,201812,1,2,67170,5057 -568,FR,ZA,201812,1,2,16011,900 -568,FR,ZA,201812,1,2,95594,18123 -568,FR,ZA,201812,1,2,986032,298380 -568,FR,ZA,201812,1,2,123743,38260 -568,FR,ZA,201812,1,2,45738,19682 -568,FR,ZA,201812,1,2,799,2 -568,FR,ZA,201812,1,2,126169,22331 -568,FR,ZA,201812,1,2,6649,1874 -568,FR,ZA,201812,3,2,18004,2019 -568,FR,ZA,201812,4,2,56170,4885 -568,FR,ZA,201812,4,2,173,17 -568,FR,ZA,201812,4,2,2057,38 -568,FR,ZA,201812,4,2,13,0 -568,FR,ZA,201812,4,2,13104,1960 -568,FR,ZA,201812,4,2,16257,10 -611,FR,ZA,201812,1,1,6803,34510 -611,FR,ZA,201812,1,2,45770,42768 -611,FR,ZA,201812,1,2,2919,1944 -614,FR,ZA,201812,1,2,5000,24000 -614,FR,ZA,201812,1,2,6033,25410 -614,FR,ZA,201812,4,2,786,80 -614,FR,ZA,201812,4,2,393,17 -614,FR,ZA,201812,4,2,283,145 -621,FR,ZA,201812,1,1,2891,19224 -621,FR,ZA,201812,1,1,5831,25600 -621,FR,ZA,201812,1,1,2505,15000 -621,FR,ZA,201812,1,1,18946,1149 -621,FR,ZA,201812,1,2,75,5 -621,FR,ZA,201812,4,2,3015,1119 -623,FR,ZA,201812,1,2,2253,2948 -623,FR,ZA,201812,1,2,1006,102 -631,FR,ZA,201812,1,1,25322,194730 -632,FR,ZA,201812,1,1,13126,50300 -632,FR,ZA,201812,3,1,26947,81438 -639,FR,ZA,201812,4,1,41,0 -639,FR,ZA,201812,1,2,2159,3000 -639,FR,ZA,201812,4,2,184,25 -642,FR,ZA,201812,1,1,14558,100190 -642,FR,ZA,201812,1,2,9481,88940 -691,FR,ZA,201812,1,1,15531,26670 -691,FR,ZA,201812,3,1,2549,64 -691,FR,ZA,201812,1,2,37,0 -691,FR,ZA,201812,1,2,196,5 -691,FR,ZA,201812,1,2,135000,82800 -691,FR,ZA,201812,4,2,54,0 -692,FR,ZA,201812,1,2,83135,303146 -692,FR,ZA,201812,1,2,37927,36000 -692,FR,ZA,201812,3,2,22354,36326 -692,FR,ZA,201812,4,2,9616,100 -719,FR,ZA,201812,1,2,13625,6168 -719,FR,ZA,201812,1,2,105764,42345 -722,FR,ZA,201812,1,2,23724,3500 -723,FR,ZA,201812,1,2,30026,9828 -724,FR,ZA,201812,1,1,46687,100370 -724,FR,ZA,201812,1,2,7324,4634 -724,FR,ZA,201812,1,2,7665,4200 -729,FR,ZA,201812,3,1,1117,142 -819,FR,ZA,201812,1,1,6636,2200 -819,FR,ZA,201812,1,1,34739,11706 -819,FR,ZA,201812,1,1,18520,300 -819,FR,ZA,201812,1,1,3032,21550 -819,FR,ZA,201812,1,1,3031,19665 -819,FR,ZA,201812,4,1,12564,205 -819,FR,ZA,201812,4,1,13166,10 -819,FR,ZA,201812,4,1,293,0 -819,FR,ZA,201812,1,2,31786,17150 -819,FR,ZA,201812,1,2,64035,750 -819,FR,ZA,201812,1,2,20176,5180 -819,FR,ZA,201812,1,2,1045,230 -819,FR,ZA,201812,1,2,1354301,154829 -819,FR,ZA,201812,1,2,7195,7000 -819,FR,ZA,201812,1,2,14134,24600 -819,FR,ZA,201812,1,2,289,110 -819,FR,ZA,201812,1,2,23181,26166 -819,FR,ZA,201812,1,2,190646,54314 -819,FR,ZA,201812,1,2,28707,15600 -819,FR,ZA,201812,3,2,47953,4836 -819,FR,ZA,201812,3,2,15310,4500 -819,FR,ZA,201812,3,2,128722,20000 -819,FR,ZA,201812,3,2,14979,14080 -819,FR,ZA,201812,4,2,1419736,1099 -819,FR,ZA,201812,4,2,222,8 -819,FR,ZA,201812,4,2,1687,200 -819,FR,ZA,201812,4,2,1038,83 -819,FR,ZA,201812,4,2,20740,480 -819,FR,ZA,201812,4,2,2240,60 -819,FR,ZA,201812,4,2,23040,80 -819,FR,ZA,201812,4,2,825,125 -819,FR,ZA,201812,4,2,15520,16000 -819,FR,ZA,201812,4,2,6896,260 -819,FR,ZA,201812,4,2,1300,3 -820,FR,ZA,201812,1,2,46431,60000 -891,FR,ZA,201812,0,1,32,0 -891,FR,ZA,201812,1,1,31448,12420 -891,FR,ZA,201812,3,1,77,0 -891,FR,ZA,201812,4,1,2801,70 -891,FR,ZA,201812,4,1,452,3 -891,FR,ZA,201812,4,1,29231,510 -891,FR,ZA,201812,4,1,1119,21 -891,FR,ZA,201812,1,2,78158,10362 -891,FR,ZA,201812,1,2,16244,3691 -891,FR,ZA,201812,1,2,22402,6680 -891,FR,ZA,201812,1,2,4721,886 -891,FR,ZA,201812,1,2,6298,2317 -891,FR,ZA,201812,1,2,4498,1800 -891,FR,ZA,201812,1,2,19850,4551 -891,FR,ZA,201812,1,2,8604,1800 -891,FR,ZA,201812,1,2,7004,2000 -891,FR,ZA,201812,1,2,2201,800 -891,FR,ZA,201812,1,2,3670923,2658108 -891,FR,ZA,201812,1,2,217775,84515 -891,FR,ZA,201812,1,2,124044,144460 -891,FR,ZA,201812,1,2,71064,40000 -891,FR,ZA,201812,1,2,142621,117099 -891,FR,ZA,201812,1,2,155466,69478 -891,FR,ZA,201812,1,2,136248,97952 -891,FR,ZA,201812,1,2,128473,18094 -891,FR,ZA,201812,1,2,623110,204206 -891,FR,ZA,201812,1,2,153960,82400 -891,FR,ZA,201812,1,2,36475,19773 -891,FR,ZA,201812,1,2,58850,37600 -891,FR,ZA,201812,1,2,5958,306980 -891,FR,ZA,201812,1,2,123731,27454 -891,FR,ZA,201812,3,2,19637,1960 -891,FR,ZA,201812,3,2,47310,32275 -891,FR,ZA,201812,4,2,43361,1529 -891,FR,ZA,201812,4,2,10017,1885 -891,FR,ZA,201812,4,2,68854,14840 -891,FR,ZA,201812,4,2,5151,42 -892,FR,ZA,201812,1,1,8870,25050 -892,FR,ZA,201812,4,1,2,2 -892,FR,ZA,201812,1,2,68904,5756 -892,FR,ZA,201812,1,2,37454,15356 -892,FR,ZA,201812,1,2,43278,13720 -892,FR,ZA,201812,1,2,8868,1084 -892,FR,ZA,201812,1,2,4166,161 -892,FR,ZA,201812,1,2,50746,42858 -892,FR,ZA,201812,1,2,249599,75070 -892,FR,ZA,201812,1,2,14851,8160 -892,FR,ZA,201812,1,2,106555,37400 -892,FR,ZA,201812,1,2,3870,2170 -892,FR,ZA,201812,1,2,34742,17301 -892,FR,ZA,201812,1,2,94881,57903 -892,FR,ZA,201812,1,2,181263,73606 -892,FR,ZA,201812,1,2,44112,25270 -892,FR,ZA,201812,3,2,20090,2067 -892,FR,ZA,201812,3,2,2426,20 -892,FR,ZA,201812,4,2,15075,365 -892,FR,ZA,201812,4,2,149,8 -892,FR,ZA,201812,4,2,292,2 -892,FR,ZA,201812,4,2,11069,1034 -892,FR,ZA,201812,4,2,98,45 -893,FR,ZA,201812,1,1,34341,720 -893,FR,ZA,201812,1,1,18252,360 -893,FR,ZA,201812,1,1,28939,560 -893,FR,ZA,201812,3,1,6421,63 -893,FR,ZA,201812,3,1,524,80 -893,FR,ZA,201812,3,1,410,2 -893,FR,ZA,201812,4,1,54028,1215 -893,FR,ZA,201812,4,1,10007,180 -893,FR,ZA,201812,4,1,710,26 -893,FR,ZA,201812,4,1,881,1 -893,FR,ZA,201812,4,1,340,1 -893,FR,ZA,201812,4,1,18,15 -893,FR,ZA,201812,4,1,3,5 -893,FR,ZA,201812,0,2,330,3 -893,FR,ZA,201812,1,2,13078677,90449 -893,FR,ZA,201812,1,2,453,2 -893,FR,ZA,201812,1,2,36368,2572 -893,FR,ZA,201812,1,2,104233,11665 -893,FR,ZA,201812,1,2,43020,5800 -893,FR,ZA,201812,1,2,339515,15491 -893,FR,ZA,201812,1,2,4555,600 -893,FR,ZA,201812,1,2,3935407,96085 -893,FR,ZA,201812,1,2,75704,10850 -893,FR,ZA,201812,1,2,730149,23649 -893,FR,ZA,201812,1,2,405266,19432 -893,FR,ZA,201812,1,2,48,2 -893,FR,ZA,201812,1,2,428421,20764 -893,FR,ZA,201812,1,2,233000,12020 -893,FR,ZA,201812,1,2,668380,52463 -893,FR,ZA,201812,1,2,44150,2746 -893,FR,ZA,201812,1,2,252402,182400 -893,FR,ZA,201812,1,2,577359,3222 -893,FR,ZA,201812,1,2,54073,10956 -893,FR,ZA,201812,1,2,32845,13416 -893,FR,ZA,201812,1,2,104036,730 -893,FR,ZA,201812,3,2,194060,7279 -893,FR,ZA,201812,3,2,37760,3590 -893,FR,ZA,201812,3,2,699374,499 -893,FR,ZA,201812,4,2,3534212,19943 -893,FR,ZA,201812,4,2,11407,660 -893,FR,ZA,201812,4,2,270174,798 -893,FR,ZA,201812,4,2,16452,90 -893,FR,ZA,201812,4,2,383080,8295 -893,FR,ZA,201812,4,2,554513,8551 -893,FR,ZA,201812,4,2,8925,76 -893,FR,ZA,201812,4,2,84593,1520 -893,FR,ZA,201812,4,2,126561,519 -893,FR,ZA,201812,4,2,8460,328 -893,FR,ZA,201812,4,2,779335,7580 -893,FR,ZA,201812,4,2,408351,2147 -893,FR,ZA,201812,4,2,2069,70 -893,FR,ZA,201812,4,2,5523,105 -893,FR,ZA,201812,4,2,10583,3430 -893,FR,ZA,201812,4,2,92068,435 -894,FR,ZA,201812,4,2,1173750,11861 -896,FR,ZA,201812,1,1,8344,583 -896,FR,ZA,201812,1,1,2743,430 -896,FR,ZA,201812,1,1,72739,574 -896,FR,ZA,201812,1,1,3852,1110 -896,FR,ZA,201812,1,1,1157,277 -896,FR,ZA,201812,1,1,58569,95080 -896,FR,ZA,201812,3,1,2864,20 -896,FR,ZA,201812,3,1,66335,5390 -896,FR,ZA,201812,4,1,3592,21 -896,FR,ZA,201812,4,1,9747,320 -896,FR,ZA,201812,4,1,869,1 -896,FR,ZA,201812,4,1,1692,115 -896,FR,ZA,201812,1,2,403796,25307 -896,FR,ZA,201812,1,2,11930,1500 -896,FR,ZA,201812,1,2,5420,510 -896,FR,ZA,201812,1,2,296,375 -896,FR,ZA,201812,1,2,76788,22118 -896,FR,ZA,201812,1,2,762157,208504 -896,FR,ZA,201812,1,2,2493588,507197 -896,FR,ZA,201812,1,2,1898,1800 -896,FR,ZA,201812,1,2,84002,11700 -896,FR,ZA,201812,1,2,404272,328400 -896,FR,ZA,201812,1,2,180982,6282 -896,FR,ZA,201812,1,2,87774,66980 -896,FR,ZA,201812,1,2,353799,145378 -896,FR,ZA,201812,1,2,282937,126931 -896,FR,ZA,201812,1,2,49433,6183 -896,FR,ZA,201812,1,2,19438,2080 -896,FR,ZA,201812,3,2,389533,67408 -896,FR,ZA,201812,3,2,1710,485 -896,FR,ZA,201812,3,2,74311,1977 -896,FR,ZA,201812,3,2,92432,20000 -896,FR,ZA,201812,4,2,1420189,18379 -896,FR,ZA,201812,4,2,21303,609 -896,FR,ZA,201812,4,2,85151,653 -896,FR,ZA,201812,4,2,81021,201 -896,FR,ZA,201812,4,2,18684,148 -896,FR,ZA,201812,4,2,119145,827 -896,FR,ZA,201812,4,2,2280,142 -896,FR,ZA,201812,4,2,4135,60 -896,FR,ZA,201812,4,2,73777,819 -896,FR,ZA,201812,4,2,609072,2361 -896,FR,ZA,201812,4,2,12,1 -896,FR,ZA,201812,4,2,14717,920 -896,FR,ZA,201812,4,2,13560,75 -910,FR,ZA,201812,0,1,10744623,1046012 -910,FR,ZA,201812,1,1,256322,22445 -910,FR,ZA,201812,1,1,60228,3745 -910,FR,ZA,201812,1,1,190,11 -910,FR,ZA,201812,3,1,1176,26 -910,FR,ZA,201812,4,1,2381,7 -910,FR,ZA,201812,4,1,861,12 -910,FR,ZA,201812,4,1,1518,1 -910,FR,ZA,201812,4,1,34628,1892 -910,FR,ZA,201812,4,1,8104,14 -910,FR,ZA,201812,4,1,1458,12 -910,FR,ZA,201812,4,1,142,7 -910,FR,ZA,201812,8,1,642,26 -910,FR,ZA,201812,9,1,170000,9000 -910,FR,ZA,201812,1,2,465317,36934 -910,FR,ZA,201812,1,2,6547,70 -910,FR,ZA,201812,1,2,3366595,187376 -910,FR,ZA,201812,1,2,36560,2544 -910,FR,ZA,201812,1,2,1054629,119496 -910,FR,ZA,201812,1,2,54305,3350 -910,FR,ZA,201812,1,2,44718,4966 -910,FR,ZA,201812,1,2,750231,119337 -910,FR,ZA,201812,1,2,81601,4606 -910,FR,ZA,201812,1,2,206105,12235 -910,FR,ZA,201812,1,2,57455,3011 -910,FR,ZA,201812,1,2,380523,28445 -910,FR,ZA,201812,1,2,504134,32204 -910,FR,ZA,201812,1,2,627028,61431 -910,FR,ZA,201812,1,2,114433,5174 -910,FR,ZA,201812,1,2,12000,151652 -910,FR,ZA,201812,3,2,79091,5516 -910,FR,ZA,201812,3,2,168243,28506 -910,FR,ZA,201812,3,2,34950,2481 -910,FR,ZA,201812,4,2,469891,6623 -910,FR,ZA,201812,4,2,4261,29 -910,FR,ZA,201812,4,2,151,2 -910,FR,ZA,201812,4,2,5324,131 -910,FR,ZA,201812,4,2,57339,2285 -910,FR,ZA,201812,4,2,229418,2533 -910,FR,ZA,201812,4,2,11697,9 -910,FR,ZA,201812,4,2,4828,88 -910,FR,ZA,201812,4,2,82597,2291 -910,FR,ZA,201812,4,2,40893,1867 -910,FR,ZA,201812,4,2,16223,1100 -910,FR,ZA,201812,4,2,17114,73 -910,FR,ZA,201812,4,2,16391,45 -910,FR,ZA,201812,9,2,4683,0 -920,FR,ZA,201812,3,1,3543,299 -920,FR,ZA,201812,1,2,2623964,297375 -920,FR,ZA,201812,1,2,1079156,48657 -920,FR,ZA,201812,1,2,469010,64650 -920,FR,ZA,201812,1,2,127710,16058 -920,FR,ZA,201812,1,2,9536,1000 -920,FR,ZA,201812,1,2,448643,20426 -920,FR,ZA,201812,1,2,428015,16760 -920,FR,ZA,201812,3,2,11795,359 -920,FR,ZA,201812,3,2,10100,410 -920,FR,ZA,201812,4,2,22723,825 -920,FR,ZA,201812,4,2,12324,1850 -920,FR,ZA,201812,4,2,19654,208 -920,FR,ZA,201812,4,2,726,265 -920,FR,ZA,201812,4,2,1550,204 -920,FR,ZA,201812,4,2,8135,991 -920,FR,ZA,201812,4,2,189,38 -920,FR,ZA,201812,4,2,3071,91 -920,FR,ZA,201812,4,2,2206,1480 -920,FR,ZA,201812,4,2,4590,32 -920,FR,ZA,201812,4,2,1355,4 -931,FR,ZA,201812,0,1,277302,1241 -931,FR,ZA,201812,1,1,24562,1716 -931,FR,ZA,201812,1,1,12926,168 -931,FR,ZA,201812,1,1,186638,1755 -931,FR,ZA,201812,1,1,4035,255 -931,FR,ZA,201812,3,1,41319,87 -931,FR,ZA,201812,4,1,155257,4366 -931,FR,ZA,201812,4,1,7680,22 -931,FR,ZA,201812,4,1,1224,1 -931,FR,ZA,201812,4,1,1797,40 -931,FR,ZA,201812,4,1,27749,33 -931,FR,ZA,201812,4,1,142149,262 -931,FR,ZA,201812,4,1,141117,400 -931,FR,ZA,201812,4,1,888570,3940 -931,FR,ZA,201812,4,1,1857,32 -931,FR,ZA,201812,4,1,57857,170 -931,FR,ZA,201812,1,2,1347327,32566 -931,FR,ZA,201812,1,2,266,4 -931,FR,ZA,201812,1,2,140237,8148 -931,FR,ZA,201812,1,2,26145,373 -931,FR,ZA,201812,1,2,15061,694 -931,FR,ZA,201812,1,2,1604606,431645 -931,FR,ZA,201812,1,2,50350,3450 -931,FR,ZA,201812,1,2,22129,1013 -931,FR,ZA,201812,1,2,1502268,214190 -931,FR,ZA,201812,1,2,153059,9097 -931,FR,ZA,201812,1,2,237643,27976 -931,FR,ZA,201812,1,2,545968,22095 -931,FR,ZA,201812,1,2,1136338,109575 -931,FR,ZA,201812,1,2,40191,1738 -931,FR,ZA,201812,1,2,72,0 -931,FR,ZA,201812,3,2,598703,3430 -931,FR,ZA,201812,3,2,15900,1545 -931,FR,ZA,201812,3,2,52303,5481 -931,FR,ZA,201812,3,2,1748,53 -931,FR,ZA,201812,4,2,5874031,21333 -931,FR,ZA,201812,4,2,85787,3915 -931,FR,ZA,201812,4,2,346766,8389 -931,FR,ZA,201812,4,2,72361,338 -931,FR,ZA,201812,4,2,29947,1826 -931,FR,ZA,201812,4,2,4186,18 -931,FR,ZA,201812,4,2,22811,67 -931,FR,ZA,201812,4,2,7284,126 -931,FR,ZA,201812,4,2,185698,2620 -931,FR,ZA,201812,4,2,97314,5818 -931,FR,ZA,201812,4,2,166122,1918 -931,FR,ZA,201812,4,2,101822,1881 -931,FR,ZA,201812,4,2,119,7 -931,FR,ZA,201812,4,2,17090,140 -931,FR,ZA,201812,4,2,6683,70 -931,FR,ZA,201812,4,2,244275,4212 -931,FR,ZA,201812,4,2,23750,69 -931,FR,ZA,201812,4,2,140372,12280 -931,FR,ZA,201812,4,2,164116,311 -931,FR,ZA,201812,4,2,37639,176 -931,FR,ZA,201812,5,2,2755,72 -939,FR,ZA,201812,0,1,10917,215 -939,FR,ZA,201812,1,1,10923,2071 -939,FR,ZA,201812,1,1,65641,5092 -939,FR,ZA,201812,1,1,39984,6780 -939,FR,ZA,201812,1,1,130556,25809 -939,FR,ZA,201812,3,1,27328,106 -939,FR,ZA,201812,3,1,2034,39 -939,FR,ZA,201812,3,1,2283,32 -939,FR,ZA,201812,4,1,35133,1840 -939,FR,ZA,201812,4,1,21010,21 -939,FR,ZA,201812,4,1,33413,268 -939,FR,ZA,201812,4,1,2327,36 -939,FR,ZA,201812,4,1,911,63 -939,FR,ZA,201812,4,1,1119,69 -939,FR,ZA,201812,4,1,11343,119 -939,FR,ZA,201812,0,2,1084,3 -939,FR,ZA,201812,1,2,2435091,165546 -939,FR,ZA,201812,1,2,14224,452 -939,FR,ZA,201812,1,2,45903,1004 -939,FR,ZA,201812,1,2,18982,1553 -939,FR,ZA,201812,1,2,8145,858 -939,FR,ZA,201812,1,2,60927,7273 -939,FR,ZA,201812,1,2,21211,1733 -939,FR,ZA,201812,1,2,1150630,185679 -939,FR,ZA,201812,1,2,1275,345 -939,FR,ZA,201812,1,2,10058,210 -939,FR,ZA,201812,1,2,257671,49701 -939,FR,ZA,201812,1,2,2883202,217113 -939,FR,ZA,201812,1,2,300882,13946 -939,FR,ZA,201812,1,2,175,21 -939,FR,ZA,201812,1,2,470861,46528 -939,FR,ZA,201812,1,2,304125,29381 -939,FR,ZA,201812,1,2,209353,34910 -939,FR,ZA,201812,1,2,2401061,81214 -939,FR,ZA,201812,1,2,64680,5034 -939,FR,ZA,201812,1,2,1801867,73565 -939,FR,ZA,201812,1,2,1826,54 -939,FR,ZA,201812,1,2,276139,34991 -939,FR,ZA,201812,1,2,287579,18559 -939,FR,ZA,201812,1,2,5947,95 -939,FR,ZA,201812,3,2,286665,11123 -939,FR,ZA,201812,3,2,2529,453 -939,FR,ZA,201812,3,2,4440,368 -939,FR,ZA,201812,3,2,10900,335 -939,FR,ZA,201812,3,2,53199,4963 -939,FR,ZA,201812,3,2,30851,4199 -939,FR,ZA,201812,4,2,3387515,30312 -939,FR,ZA,201812,4,2,92062,1029 -939,FR,ZA,201812,4,2,595638,20799 -939,FR,ZA,201812,4,2,8801,56 -939,FR,ZA,201812,4,2,956190,1870 -939,FR,ZA,201812,4,2,128424,1722 -939,FR,ZA,201812,4,2,741,5 -939,FR,ZA,201812,4,2,334358,5299 -939,FR,ZA,201812,4,2,16541,233 -939,FR,ZA,201812,4,2,34734,1292 -939,FR,ZA,201812,4,2,2510,19 -939,FR,ZA,201812,4,2,161387,4254 -939,FR,ZA,201812,4,2,138106,3444 -939,FR,ZA,201812,4,2,2111,362 -939,FR,ZA,201812,4,2,14720,1246 -939,FR,ZA,201812,4,2,224250,1071 -939,FR,ZA,201812,4,2,902,9 -939,FR,ZA,201812,4,2,487,5 -939,FR,ZA,201812,4,2,74754,341 -939,FR,ZA,201812,4,2,389513,16470 -939,FR,ZA,201812,4,2,87434,221 -939,FR,ZA,201812,4,2,35452,158 -941,FR,ZA,201812,1,1,42059,5607 -941,FR,ZA,201812,1,1,961,243 -941,FR,ZA,201812,4,1,2795,48 -941,FR,ZA,201812,1,2,191163,12322 -941,FR,ZA,201812,1,2,43287,4736 -949,FR,ZA,201812,0,1,876,34 -949,FR,ZA,201812,1,1,1151,80 -949,FR,ZA,201812,1,1,9350,1308 -949,FR,ZA,201812,1,1,1482,965 -949,FR,ZA,201812,1,1,74668,39178 -949,FR,ZA,201812,3,1,2746,65 -949,FR,ZA,201812,3,1,924,51 -949,FR,ZA,201812,3,1,2,1 -949,FR,ZA,201812,4,1,13685,216 -949,FR,ZA,201812,4,1,5343,97 -949,FR,ZA,201812,4,1,29927,559 -949,FR,ZA,201812,4,1,3599,62 -949,FR,ZA,201812,4,1,13913,430 -949,FR,ZA,201812,4,1,367,0 -949,FR,ZA,201812,4,1,11332,127 -949,FR,ZA,201812,0,2,1820,5 -949,FR,ZA,201812,1,2,109549,4843 -949,FR,ZA,201812,1,2,649,3 -949,FR,ZA,201812,1,2,11848,3621 -949,FR,ZA,201812,1,2,2093,105 -949,FR,ZA,201812,1,2,1288,100 -949,FR,ZA,201812,1,2,79891,9615 -949,FR,ZA,201812,1,2,310303,38849 -949,FR,ZA,201812,1,2,11160,1925 -949,FR,ZA,201812,1,2,246932,35518 -949,FR,ZA,201812,1,2,20790,13380 -949,FR,ZA,201812,1,2,253296,42727 -949,FR,ZA,201812,1,2,114712,20450 -949,FR,ZA,201812,1,2,467,20 -949,FR,ZA,201812,1,2,12,0 -949,FR,ZA,201812,3,2,47048,1995 -949,FR,ZA,201812,3,2,11886,1608 -949,FR,ZA,201812,3,2,14100,401 -949,FR,ZA,201812,3,2,162588,47893 -949,FR,ZA,201812,3,2,3329,136 -949,FR,ZA,201812,4,2,197046,4871 -949,FR,ZA,201812,4,2,28507,1760 -949,FR,ZA,201812,4,2,251,4 -949,FR,ZA,201812,4,2,4389,36 -949,FR,ZA,201812,4,2,2137,77 -949,FR,ZA,201812,4,2,446,50 -949,FR,ZA,201812,4,2,10205,449 -949,FR,ZA,201812,4,2,125291,4522 -949,FR,ZA,201812,4,2,54,0 -949,FR,ZA,201812,4,2,119462,2333 -949,FR,ZA,201812,4,2,69647,3289 -949,FR,ZA,201812,4,2,2552,4 -949,FR,ZA,201812,4,2,23010,1100 -949,FR,ZA,201812,4,2,9867,40 -949,FR,ZA,201812,4,2,3309,63 -951,FR,ZA,201812,0,1,136,4 -951,FR,ZA,201812,1,1,40098,9824 -951,FR,ZA,201812,1,1,1185,145 -951,FR,ZA,201812,1,1,51024,9499 -951,FR,ZA,201812,4,1,2630,732 -951,FR,ZA,201812,1,2,5358,734 -951,FR,ZA,201812,1,2,10275,435 -951,FR,ZA,201812,1,2,445,13 -951,FR,ZA,201812,1,2,17569,2665 -951,FR,ZA,201812,1,2,2644,62 -951,FR,ZA,201812,1,2,36988,1563830 -951,FR,ZA,201812,4,2,16844,847 -951,FR,ZA,201812,4,2,1625,70 -951,FR,ZA,201812,4,2,236,14 -952,FR,ZA,201812,1,1,1743,76 -952,FR,ZA,201812,4,1,1261045,2 -952,FR,ZA,201812,4,1,1419,41 -952,FR,ZA,201812,4,1,1845,25 -952,FR,ZA,201812,4,1,567549,30 -952,FR,ZA,201812,4,1,34,0 -952,FR,ZA,201812,4,1,46347,0 -952,FR,ZA,201812,1,2,16241,1594 -952,FR,ZA,201812,1,2,63,3 -952,FR,ZA,201812,1,2,24065,5034 -952,FR,ZA,201812,1,2,553602,1324983 -952,FR,ZA,201812,1,2,99921,80580 -952,FR,ZA,201812,1,2,220929,169851 -952,FR,ZA,201812,1,2,53888,85986 -952,FR,ZA,201812,1,2,134,6 -952,FR,ZA,201812,3,2,7810,561 -952,FR,ZA,201812,3,2,1543,1673 -952,FR,ZA,201812,3,2,262912,101718 -952,FR,ZA,201812,4,2,36805,1121 -952,FR,ZA,201812,4,2,98,10 -952,FR,ZA,201812,4,2,1515,270 -952,FR,ZA,201812,4,2,3024,577 -952,FR,ZA,201812,4,2,1215,53 -952,FR,ZA,201812,4,2,289,1 -952,FR,ZA,201812,4,2,7630,7 -952,FR,ZA,201812,4,2,4595,7 -961,FR,ZA,201812,3,1,39466,308 -961,FR,ZA,201812,4,1,243365,290 -961,FR,ZA,201812,4,1,106,0 -961,FR,ZA,201812,4,1,897455,1290 -961,FR,ZA,201812,1,2,29322,2565 -961,FR,ZA,201812,1,2,243,5 -961,FR,ZA,201812,1,2,1400,244 -961,FR,ZA,201812,4,2,2902,2 -961,FR,ZA,201812,4,2,59,0 -961,FR,ZA,201812,4,2,490,60 -962,FR,ZA,201812,0,1,4022,53 -962,FR,ZA,201812,1,1,11504,17200 -962,FR,ZA,201812,1,1,5676,1444 -962,FR,ZA,201812,1,1,3320,887 -962,FR,ZA,201812,1,1,2620,3740 -962,FR,ZA,201812,1,1,55109,15863 -962,FR,ZA,201812,3,1,18483,524 -962,FR,ZA,201812,3,1,285,17 -962,FR,ZA,201812,4,1,9530,375 -962,FR,ZA,201812,4,1,5128,26 -962,FR,ZA,201812,4,1,15200,800 -962,FR,ZA,201812,4,1,42139,1048 -962,FR,ZA,201812,4,1,8192,60 -962,FR,ZA,201812,1,2,7798,233 -962,FR,ZA,201812,1,2,22473,283 -962,FR,ZA,201812,1,2,6745,1745 -962,FR,ZA,201812,1,2,1731,93 -962,FR,ZA,201812,1,2,1477,92 -962,FR,ZA,201812,1,2,247276,11350 -962,FR,ZA,201812,1,2,4400,178 -962,FR,ZA,201812,1,2,116503,17577 -962,FR,ZA,201812,1,2,22039,423 -962,FR,ZA,201812,1,2,149,7 -962,FR,ZA,201812,1,2,83929,16748 -962,FR,ZA,201812,1,2,179058,25865 -962,FR,ZA,201812,1,2,17250,4635 -962,FR,ZA,201812,1,2,1890,2605 -962,FR,ZA,201812,1,2,960,30 -962,FR,ZA,201812,3,2,4259,301 -962,FR,ZA,201812,3,2,2249,50 -962,FR,ZA,201812,4,2,96386,3342 -962,FR,ZA,201812,4,2,52388,819 -962,FR,ZA,201812,4,2,5101,395 -962,FR,ZA,201812,4,2,223,10 -962,FR,ZA,201812,4,2,2066,55 -962,FR,ZA,201812,4,2,856,0 -962,FR,ZA,201812,4,2,747,3 -963,FR,ZA,201812,0,1,531,4 -963,FR,ZA,201812,1,1,680,97 -963,FR,ZA,201812,1,1,534,23 -963,FR,ZA,201812,1,1,384810,14904 -963,FR,ZA,201812,3,1,12531,168 -963,FR,ZA,201812,4,1,154117,1196 -963,FR,ZA,201812,4,1,16844,98 -963,FR,ZA,201812,4,1,11417,87 -963,FR,ZA,201812,4,1,182,1 -963,FR,ZA,201812,4,1,463,19 -963,FR,ZA,201812,4,1,2525,25 -963,FR,ZA,201812,4,1,2027,5 -963,FR,ZA,201812,4,1,145,0 -963,FR,ZA,201812,4,1,797,10 -963,FR,ZA,201812,0,2,4906,60 -963,FR,ZA,201812,1,2,4110,146 -963,FR,ZA,201812,1,2,3324,14 -963,FR,ZA,201812,1,2,17203,626 -963,FR,ZA,201812,1,2,2624,198 -963,FR,ZA,201812,1,2,23817,939 -963,FR,ZA,201812,1,2,60976,852 -963,FR,ZA,201812,1,2,28,1 -963,FR,ZA,201812,3,2,935,80 -963,FR,ZA,201812,3,2,3360,20 -963,FR,ZA,201812,4,2,1509687,4841 -963,FR,ZA,201812,4,2,26712,345 -963,FR,ZA,201812,4,2,1384,135 -963,FR,ZA,201812,4,2,2523,47 -963,FR,ZA,201812,4,2,51413,414 -963,FR,ZA,201812,4,2,31434,301 -963,FR,ZA,201812,4,2,13895,186 -963,FR,ZA,201812,4,2,28965,234 -963,FR,ZA,201812,4,2,115,1 -963,FR,ZA,201812,4,2,7073,97 -963,FR,ZA,201812,4,2,5014,400 -963,FR,ZA,201812,4,2,6892,103 -971,FR,ZA,201812,0,1,136,2 -971,FR,ZA,201812,1,1,51835,18980 -971,FR,ZA,201812,1,1,112,6 -971,FR,ZA,201812,1,1,58908,14090 -971,FR,ZA,201812,4,1,208,4 -971,FR,ZA,201812,1,2,61235,2927 -971,FR,ZA,201812,1,2,3017,30 -971,FR,ZA,201812,1,2,8206,183 -971,FR,ZA,201812,1,2,1168810,334528 -971,FR,ZA,201812,1,2,1670,173 -971,FR,ZA,201812,1,2,37709,5890 -971,FR,ZA,201812,1,2,1477,163 -971,FR,ZA,201812,1,2,829,33 -971,FR,ZA,201812,3,2,37986,1143 -971,FR,ZA,201812,4,2,88962,941 -971,FR,ZA,201812,4,2,4164,200 -971,FR,ZA,201812,4,2,13161,424 -971,FR,ZA,201812,4,2,6696,44 -971,FR,ZA,201812,4,2,30159,158 -971,FR,ZA,201812,4,2,1184,112 -971,FR,ZA,201812,4,2,25744,1140 -971,FR,ZA,201812,4,2,8207,5 -971,FR,ZA,201812,4,2,3552,2 -972,FR,ZA,201812,1,2,1646,207 -972,FR,ZA,201812,1,2,23100,6045 -972,FR,ZA,201812,1,2,1166724,568364 -972,FR,ZA,201812,1,2,85675,54187 -972,FR,ZA,201812,1,2,1065,656 -972,FR,ZA,201812,1,2,248606,73607 -972,FR,ZA,201812,3,2,3700,155 -972,FR,ZA,201812,3,2,72056,22575 -972,FR,ZA,201812,4,2,768,26 -972,FR,ZA,201812,4,2,1635,40 -972,FR,ZA,201812,4,2,3679,880 -972,FR,ZA,201812,4,2,1334,135 -973,FR,ZA,201812,1,1,18962,19960 -973,FR,ZA,201812,1,1,37857,39920 -973,FR,ZA,201812,1,1,584,83 -973,FR,ZA,201812,1,1,38729,11141 -973,FR,ZA,201812,3,1,41,2 -973,FR,ZA,201812,4,1,1093,27 -973,FR,ZA,201812,1,2,16200,4428 -973,FR,ZA,201812,1,2,429,67 -973,FR,ZA,201812,1,2,20936,6702 -973,FR,ZA,201812,1,2,43055,3122 -973,FR,ZA,201812,1,2,58019,45767 -973,FR,ZA,201812,1,2,7545,4738 -973,FR,ZA,201812,1,2,312682,113829 -973,FR,ZA,201812,3,2,415,10 -973,FR,ZA,201812,3,2,5366,60 -973,FR,ZA,201812,4,2,15064,1616 -973,FR,ZA,201812,4,2,52,0 -973,FR,ZA,201812,4,2,36383,1094 -973,FR,ZA,201812,4,2,475,5 -973,FR,ZA,201812,4,2,64362,500 -974,FR,ZA,201812,0,1,13,0 -974,FR,ZA,201812,3,1,43761,613 -974,FR,ZA,201812,3,1,533,50 -974,FR,ZA,201812,4,1,1424,39 -974,FR,ZA,201812,4,1,1231,176 -974,FR,ZA,201812,4,1,395,1 -974,FR,ZA,201812,4,1,63,3 -974,FR,ZA,201812,4,1,261,1 -974,FR,ZA,201812,0,2,84,1 -974,FR,ZA,201812,1,2,35,1 -974,FR,ZA,201812,1,2,64,11 -974,FR,ZA,201812,1,2,383,27 -974,FR,ZA,201812,1,2,3290,400 -974,FR,ZA,201812,1,2,41,97 -974,FR,ZA,201812,1,2,1772,41 -974,FR,ZA,201812,1,2,175,2 -974,FR,ZA,201812,1,2,68203,15375 -974,FR,ZA,201812,1,2,120,5 -974,FR,ZA,201812,3,2,6668,390 -974,FR,ZA,201812,4,2,10034,414 -974,FR,ZA,201812,4,2,39,0 -974,FR,ZA,201812,4,2,98,2 -974,FR,ZA,201812,4,2,461,15 -974,FR,ZA,201812,4,2,84600,279 -974,FR,ZA,201812,4,2,388,8 -974,FR,ZA,201812,4,2,22418,840 -974,FR,ZA,201812,4,2,1870,51 -974,FR,ZA,201812,4,2,6843,22 -975,FR,ZA,201812,0,1,473,18 -975,FR,ZA,201812,1,1,86976,180 -975,FR,ZA,201812,1,1,55171,6755 -975,FR,ZA,201812,3,1,181,0 -975,FR,ZA,201812,4,1,55060,391 -975,FR,ZA,201812,4,1,4237,180 -975,FR,ZA,201812,4,1,2396,171 -975,FR,ZA,201812,4,1,2110,91 -975,FR,ZA,201812,1,2,176196,7581 -975,FR,ZA,201812,1,2,341331,16579 -975,FR,ZA,201812,1,2,2609,681 -975,FR,ZA,201812,1,2,811,148 -975,FR,ZA,201812,1,2,153753,19550 -975,FR,ZA,201812,4,2,65171,413 -975,FR,ZA,201812,4,2,588,7 -975,FR,ZA,201812,4,2,5190,5 -975,FR,ZA,201812,4,2,4075,1520 -975,FR,ZA,201812,4,2,43081,264 -975,FR,ZA,201812,4,2,847,61 -975,FR,ZA,201812,4,2,64370,1250 -975,FR,ZA,201812,4,2,258,29 -975,FR,ZA,201812,4,2,1149,22 -976,FR,ZA,201812,1,1,2457,276 -976,FR,ZA,201812,1,1,1641,162 -976,FR,ZA,201812,1,1,14163,14334 -976,FR,ZA,201812,1,1,19963,14292 -976,FR,ZA,201812,3,1,57,0 -976,FR,ZA,201812,4,1,2305,149 -976,FR,ZA,201812,4,1,289,11 -976,FR,ZA,201812,0,2,112,3 -976,FR,ZA,201812,1,2,239,10 -976,FR,ZA,201812,1,2,755856,50810 -976,FR,ZA,201812,1,2,69479,5968 -976,FR,ZA,201812,1,2,25337,7190 -976,FR,ZA,201812,1,2,446183,32793 -976,FR,ZA,201812,1,2,540231,31458 -976,FR,ZA,201812,1,2,268741,17733 -976,FR,ZA,201812,1,2,289481,32892 -976,FR,ZA,201812,1,2,354012,22586 -976,FR,ZA,201812,1,2,3000403,244005 -976,FR,ZA,201812,1,2,49,2 -976,FR,ZA,201812,1,2,43209,3213 -979,FR,ZA,201812,0,1,18172,215 -979,FR,ZA,201812,1,1,5280,377 -979,FR,ZA,201812,1,1,3719,598 -979,FR,ZA,201812,1,1,606901,64781 -979,FR,ZA,201812,1,1,2004,285 -979,FR,ZA,201812,1,1,77321,2921 -979,FR,ZA,201812,1,1,82470,11433 -979,FR,ZA,201812,1,1,15569,3550 -979,FR,ZA,201812,1,1,232125,34799 -979,FR,ZA,201812,3,1,24626,323 -979,FR,ZA,201812,3,1,1264,45 -979,FR,ZA,201812,4,1,59962,619 -979,FR,ZA,201812,4,1,83,0 -979,FR,ZA,201812,4,1,42346,101 -979,FR,ZA,201812,4,1,9069,13 -979,FR,ZA,201812,4,1,5933,10 -979,FR,ZA,201812,4,1,20530,213 -979,FR,ZA,201812,4,1,3697,37 -979,FR,ZA,201812,4,1,1648459,2263 -979,FR,ZA,201812,4,1,19474,64 -979,FR,ZA,201812,4,1,617,32 -979,FR,ZA,201812,4,1,8655,24 -979,FR,ZA,201812,0,2,760,7 -979,FR,ZA,201812,1,2,90634,3206 -979,FR,ZA,201812,1,2,36199,3473 -979,FR,ZA,201812,1,2,2894,162 -979,FR,ZA,201812,1,2,2286,660 -979,FR,ZA,201812,1,2,28869,431 -979,FR,ZA,201812,1,2,2897,88 -979,FR,ZA,201812,1,2,16310,823 -979,FR,ZA,201812,1,2,7899,290 -979,FR,ZA,201812,1,2,4011,38 -979,FR,ZA,201812,1,2,496782,96293 -979,FR,ZA,201812,1,2,98431,3828 -979,FR,ZA,201812,1,2,36465,13056 -979,FR,ZA,201812,1,2,78468,1393 -979,FR,ZA,201812,1,2,297373,51560 -979,FR,ZA,201812,1,2,169742,15569 -979,FR,ZA,201812,1,2,205789,56559 -979,FR,ZA,201812,1,2,176777,20578 -979,FR,ZA,201812,1,2,53,0 -979,FR,ZA,201812,1,2,50302,3452 -979,FR,ZA,201812,3,2,20851,771 -979,FR,ZA,201812,3,2,26294,156 -979,FR,ZA,201812,3,2,84,0 -979,FR,ZA,201812,3,2,45378,9408 -979,FR,ZA,201812,4,2,2527038,12487 -979,FR,ZA,201812,4,2,338196,5531 -979,FR,ZA,201812,4,2,108482,979 -979,FR,ZA,201812,4,2,20892,152 -979,FR,ZA,201812,4,2,3653,180 -979,FR,ZA,201812,4,2,17032,795 -979,FR,ZA,201812,4,2,108072,2644 -979,FR,ZA,201812,4,2,204729,133 -979,FR,ZA,201812,4,2,11338,78 -979,FR,ZA,201812,4,2,284312,2987 -979,FR,ZA,201812,4,2,79326,567 -979,FR,ZA,201812,4,2,132671,500 -979,FR,ZA,201812,4,2,40989,341 -979,FR,ZA,201812,4,2,24753,961 -979,FR,ZA,201812,4,2,1769,102 -979,FR,ZA,201812,4,2,9601,100 -979,FR,ZA,201812,4,2,4515,12 -979,FR,ZA,201812,4,2,80014,126 -979,FR,ZA,201812,4,2,157445,7020 -979,FR,ZA,201812,4,2,52563,84 -979,FR,ZA,201812,4,2,78843,535 -999,FR,ZA,201812,0,1,1500,0 -999,FR,ZA,201812,1,1,4213,0 -999,FR,ZA,201812,1,1,208442,0 -999,FR,ZA,201812,1,1,13830,41670 -999,FR,ZA,201812,3,1,2244,0 -999,FR,ZA,201812,4,1,22694,0 -999,FR,ZA,201812,4,1,1450,0 -999,FR,ZA,201812,1,2,98605,17414 -999,FR,ZA,201812,1,2,4288,0 -999,FR,ZA,201812,1,2,21039,5000 -999,FR,ZA,201812,1,2,340,10 -999,FR,ZA,201812,1,2,3432,3000 -999,FR,ZA,201812,1,2,10080,5000 -999,FR,ZA,201812,1,2,37435,1485 -999,FR,ZA,201812,1,2,994899,435614 -999,FR,ZA,201812,1,2,149561,245660 -999,FR,ZA,201812,1,2,78963,26560 -999,FR,ZA,201812,1,2,55454,120000 -999,FR,ZA,201812,1,2,58514,90928 -999,FR,ZA,201812,1,2,45977,2980 -999,FR,ZA,201812,1,2,154024,21636 -999,FR,ZA,201812,1,2,56481,63874 -999,FR,ZA,201812,1,2,474912,220323 -999,FR,ZA,201812,1,2,27295,63000 -999,FR,ZA,201812,1,2,105536,25670 -999,FR,ZA,201812,1,2,28145,22000 -999,FR,ZA,201812,1,2,57167,3600 -999,FR,ZA,201812,3,2,41097,3695 -999,FR,ZA,201812,3,2,9828,7000 -999,FR,ZA,201812,4,2,1029174,16447 -999,FR,ZA,201812,4,2,2820,45 -999,FR,ZA,201812,4,2,14403,173 -999,FR,ZA,201812,4,2,59905,858 -999,FR,ZA,201812,4,2,16,0 -999,FR,ZA,201812,4,2,7280,20 -999,FR,ZA,201812,4,2,4178,44 -999,FR,ZA,201812,4,2,976,10 -999,FR,ZA,201812,4,2,1294,4 -999,FR,ZA,201812,4,2,2550,0 -999,FR,ZA,201812,4,2,5700,190 -999,FR,ZA,201812,4,2,3502,2 -057,FR,,201812,1,1,37964,74345 -057,FR,,201812,1,1,9351,15120 -057,FR,,201812,1,1,84365,151578 -057,FR,,201812,1,1,17908,32347 -099,FR,,201812,1,1,108100,23000 -141,FR,,201812,1,2,28164,27000 -142,FR,,201812,1,1,31581,11045 -142,FR,,201812,1,1,43380,13350 -142,FR,,201812,1,1,131793,24244 -142,FR,,201812,1,1,110013,21830 -142,FR,,201812,1,1,34115,11337 -551,FR,,201812,4,2,194,4 -551,FR,,201812,4,2,18900,400 -819,FR,,201812,1,1,415,3 -819,FR,,201812,1,1,185,3 -893,FR,,201812,3,2,29632,18000 -893,FR,,201812,4,2,30467,46 -896,FR,,201812,4,2,2470,100 -896,FR,,201812,4,2,26316,173 -910,FR,,201812,0,1,136,2 -910,FR,,201812,4,2,12505,81 -910,FR,,201812,4,2,5688,3 -931,FR,,201812,4,1,423,3 -931,FR,,201812,4,1,169,0 -931,FR,,201812,1,2,128131,1774 -931,FR,,201812,4,2,42540,121 -931,FR,,201812,4,2,1330,3 -931,FR,,201812,4,2,475,8 -931,FR,,201812,4,2,4456,110 -939,FR,,201812,4,1,13800,14 -939,FR,,201812,1,2,139824,3690 -939,FR,,201812,4,2,41803,143 -939,FR,,201812,4,2,466,3 -939,FR,,201812,4,2,400216,5920 -939,FR,,201812,4,2,31020,480 -939,FR,,201812,4,2,3759,60 -949,FR,,201812,1,2,3800,195 -949,FR,,201812,4,2,182,3 -961,FR,,201812,4,1,1277,3 -963,FR,,201812,3,1,105,0 -971,FR,,201812,4,2,217,0 -979,FR,,201812,3,1,371,5 -979,FR,,201812,4,1,759,32 -979,FR,,201812,4,1,176,4 -979,FR,,201812,1,2,43184,26738 -979,FR,,201812,4,2,3857,50 -999,FR,,201812,4,2,2,0 -891,FR,BW,201812,1,2,92399,16257 -893,FR,BW,201812,4,2,110647,349 -893,FR,BW,201812,4,2,10213,70 -896,FR,BW,201812,4,2,217,5 -896,FR,BW,201812,4,2,925,19 -910,FR,BW,201812,4,2,1700,0 -910,FR,BW,201812,4,2,558,11 -910,FR,BW,201812,4,2,24101,280 -910,FR,BW,201812,9,2,17108236,12950 -931,FR,BW,201812,4,1,1468,3 -931,FR,BW,201812,4,2,1073966,494 -931,FR,BW,201812,4,2,10131,11 -931,FR,BW,201812,4,2,1457,14 -939,FR,BW,201812,1,2,96574,4913 -939,FR,BW,201812,4,2,43478,16 -939,FR,BW,201812,4,2,26543,511 -939,FR,BW,201812,4,2,11303,340 -949,FR,BW,201812,4,2,119707,541 -949,FR,BW,201812,4,2,8358,4 -962,FR,BW,201812,4,2,624,247 -963,FR,BW,201812,3,1,149,1 -974,FR,BW,201812,4,2,765278,470 -975,FR,BW,201812,4,1,13373,265 -976,FR,BW,201812,4,2,609,13 -979,FR,BW,201812,4,1,4508,3 -979,FR,BW,201812,1,2,215678,3357 -979,FR,BW,201812,4,2,2816716,1541 -979,FR,BW,201812,4,2,14988,2 -979,FR,BW,201812,4,2,4444,100 -979,FR,BW,201812,4,2,23,0 -979,FR,BW,201812,4,2,4508,20 -999,FR,BW,201812,3,1,63,0 -999,FR,BW,201812,4,2,1600,120 -139,FR,SZ,201812,1,1,237406,3780 -139,FR,SZ,201812,1,2,584,31 -139,FR,SZ,201812,1,2,22088,6512 -143,FR,SZ,201812,1,2,453,24 -144,FR,SZ,201812,1,2,67838,12121 -163,FR,SZ,201812,1,2,119,6 -164,FR,SZ,201812,1,1,38300,36000 -164,FR,SZ,201812,1,1,25275,8744 -819,FR,SZ,201812,1,1,62,42 -819,FR,SZ,201812,3,2,24309,30000 -893,FR,SZ,201812,1,1,1388,11 -893,FR,SZ,201812,1,2,44693,4660 -893,FR,SZ,201812,1,2,13381,675 -893,FR,SZ,201812,4,2,5913,550 -896,FR,SZ,201812,1,1,184926,3871 -896,FR,SZ,201812,4,2,71752,208 -939,FR,SZ,201812,4,2,3264,19 -979,FR,SZ,201812,3,1,150,5 -979,FR,SZ,201812,4,1,141,0 -999,FR,SZ,201812,1,2,2774,1000 -999,FR,SZ,201812,1,2,35029,5000 -139,FR,LS,201812,1,2,165014,64270 -931,FR,LS,201812,4,2,1052,100 -001,FR,US,201812,4,1,1203236,11540 -001,FR,US,201812,4,1,1,50 -001,FR,US,201812,4,1,319216,410 -001,FR,US,201812,4,1,576,2 -001,FR,US,201812,4,1,31552,816 -001,FR,US,201812,4,2,2764220,5308 -001,FR,US,201812,4,2,1069863,2500 -001,FR,US,201812,4,2,218,24 -001,FR,US,201812,4,2,962600,2500 -001,FR,US,201812,4,2,1125,610 -011,FR,US,201812,1,1,775,1248 -014,FR,US,201812,1,1,52,58 -015,FR,US,201812,1,1,46285,3424 -015,FR,US,201812,1,1,554,600 -015,FR,US,201812,1,1,786,526 -015,FR,US,201812,4,1,160,2 -015,FR,US,201812,4,1,33969,755 -015,FR,US,201812,4,1,2750,130 -015,FR,US,201812,1,2,450,524 -015,FR,US,201812,4,2,2545,622 -015,FR,US,201812,4,2,1254,584 -016,FR,US,201812,1,1,3712,2050 -016,FR,US,201812,1,1,9384,10909 -016,FR,US,201812,1,1,6752,2722 -016,FR,US,201812,1,1,20833,18000 -016,FR,US,201812,1,1,59019,47025 -016,FR,US,201812,1,1,28608,24213 -019,FR,US,201812,1,1,184,125 -019,FR,US,201812,1,1,90552,19772 -019,FR,US,201812,4,1,83,5 -019,FR,US,201812,1,2,14784,3600 -019,FR,US,201812,1,2,22392,10481 -031,FR,US,201812,1,1,80165,64396 -031,FR,US,201812,4,1,39347,799 -031,FR,US,201812,4,1,17115,362 -031,FR,US,201812,4,1,7270,154 -035,FR,US,201812,1,1,271613,52912 -035,FR,US,201812,1,1,1080341,151950 -035,FR,US,201812,1,1,340622,59874 -035,FR,US,201812,1,1,148395,19958 -035,FR,US,201812,1,1,133452,19958 -035,FR,US,201812,1,1,46327,7733 -035,FR,US,201812,1,1,132557,10886 -035,FR,US,201812,1,1,797346,149685 -035,FR,US,201812,1,1,2320477,328108 -035,FR,US,201812,1,1,304412,39916 -035,FR,US,201812,1,1,511232,81916 -035,FR,US,201812,3,1,8267,1451 -035,FR,US,201812,4,1,12,0 -035,FR,US,201812,4,1,184,4 -035,FR,US,201812,4,1,326,9 -035,FR,US,201812,1,2,7847,780 -035,FR,US,201812,1,2,6541,560 -039,FR,US,201812,4,1,63472,2406 -039,FR,US,201812,4,1,40982,1755 -039,FR,US,201812,4,1,14655,600 -039,FR,US,201812,1,2,24202,19304 -039,FR,US,201812,1,2,57730,67833 -039,FR,US,201812,1,2,510757,417836 -039,FR,US,201812,1,2,88011,60029 -039,FR,US,201812,4,2,16916,23 -039,FR,US,201812,4,2,3103,141 -039,FR,US,201812,4,2,439071,628 -039,FR,US,201812,4,2,78182,879 -039,FR,US,201812,4,2,2500,70 -039,FR,US,201812,4,2,3155,6 -039,FR,US,201812,4,2,469070,74 -041,FR,US,201812,5,2,1295,2 -042,FR,US,201812,1,1,7308,870 -042,FR,US,201812,1,1,25757,14563 -042,FR,US,201812,4,1,6743,73 -042,FR,US,201812,4,1,9221,79 -042,FR,US,201812,4,1,1093,250 -042,FR,US,201812,1,2,223210,176692 -042,FR,US,201812,4,2,2746,12 -043,FR,US,201812,1,1,32681,9158 -043,FR,US,201812,3,1,446,0 -043,FR,US,201812,4,1,64359,1303 -043,FR,US,201812,4,1,94,4 -043,FR,US,201812,4,1,4185,71 -043,FR,US,201812,1,2,149133,36445 -043,FR,US,201812,1,2,831273,37180 -043,FR,US,201812,4,2,31699,1028 -045,FR,US,201812,0,2,2713,36 -045,FR,US,201812,1,2,43596,19875 -045,FR,US,201812,1,2,7540,13500 -045,FR,US,201812,1,2,158463,78855 -049,FR,US,201812,0,1,425,1 -049,FR,US,201812,1,1,130,90 -049,FR,US,201812,1,1,12385,19273 -049,FR,US,201812,3,1,1897,209 -049,FR,US,201812,4,1,2156,205 -049,FR,US,201812,4,1,373,14 -049,FR,US,201812,4,1,13445,222 -049,FR,US,201812,0,2,36,0 -049,FR,US,201812,1,2,23494,21240 -049,FR,US,201812,1,2,25649,71220 -049,FR,US,201812,4,2,404,40 -049,FR,US,201812,4,2,545,10 -049,FR,US,201812,4,2,31042,35 -049,FR,US,201812,4,2,3216,139 -051,FR,US,201812,1,2,15879,18147 -056,FR,US,201812,1,1,30209,18886 -056,FR,US,201812,1,1,148268,103063 -056,FR,US,201812,1,1,139354,91884 -056,FR,US,201812,1,1,13856,15263 -056,FR,US,201812,4,1,1528,36 -056,FR,US,201812,1,2,94133,16520 -056,FR,US,201812,1,2,68251,15940 -056,FR,US,201812,1,2,8908,16363 -056,FR,US,201812,1,2,55796,67224 -056,FR,US,201812,1,2,21403,19280 -056,FR,US,201812,4,2,1330,61 -057,FR,US,201812,1,1,1833450,10442730 -057,FR,US,201812,1,1,30222,236417 -060,FR,US,201812,1,2,1273,613 -091,FR,US,201812,1,1,1135702,4208 -091,FR,US,201812,3,1,103576,360 -091,FR,US,201812,4,1,717949,3460 -091,FR,US,201812,4,2,2490,5 -092,FR,US,201812,1,1,120107,29329 -092,FR,US,201812,1,1,37650,20128 -092,FR,US,201812,1,1,184509,46487 -092,FR,US,201812,1,1,679885,315639 -092,FR,US,201812,1,1,229822,129408 -092,FR,US,201812,3,1,1288,20 -092,FR,US,201812,4,1,7641,627 -092,FR,US,201812,4,1,703,48 -092,FR,US,201812,4,1,19615,500 -092,FR,US,201812,4,1,6976,375 -092,FR,US,201812,4,1,66,0 -092,FR,US,201812,1,2,1184836,726149 -092,FR,US,201812,1,2,1000569,310600 -092,FR,US,201812,1,2,46500,17962 -092,FR,US,201812,1,2,43105,19139 -092,FR,US,201812,1,2,396026,160000 -092,FR,US,201812,1,2,3092296,1307200 -092,FR,US,201812,1,2,3257545,1582614 -092,FR,US,201812,1,2,108744,2968 -092,FR,US,201812,1,2,1331430,618000 -092,FR,US,201812,4,2,543,247 -092,FR,US,201812,4,2,1270,60 -099,FR,US,201812,0,1,772,11 -099,FR,US,201812,1,1,1740,200 -099,FR,US,201812,1,1,5611,2000 -099,FR,US,201812,1,1,308827,35532 -099,FR,US,201812,1,1,49690,739 -099,FR,US,201812,1,1,296761,404860 -099,FR,US,201812,1,1,90019,4710 -099,FR,US,201812,3,1,4899,28 -099,FR,US,201812,3,1,4965,34 -099,FR,US,201812,3,1,143,5 -099,FR,US,201812,4,1,372067,4694 -099,FR,US,201812,4,1,5649,35 -099,FR,US,201812,4,1,340,25 -099,FR,US,201812,4,1,7964,620 -099,FR,US,201812,4,1,474111,3666 -099,FR,US,201812,4,1,14328,280 -099,FR,US,201812,4,1,4984,373 -099,FR,US,201812,5,1,1444,14 -099,FR,US,201812,1,2,143817,6678 -099,FR,US,201812,1,2,24960,799 -099,FR,US,201812,1,2,19098,669 -099,FR,US,201812,1,2,7280,909 -099,FR,US,201812,1,2,315470,20448 -099,FR,US,201812,1,2,25525,1300 -099,FR,US,201812,1,2,131264,130242 -099,FR,US,201812,1,2,988510,324630 -099,FR,US,201812,1,2,552434,48100 -099,FR,US,201812,1,2,1250100,445932 -099,FR,US,201812,1,2,75194,19000 -099,FR,US,201812,1,2,5237,352 -099,FR,US,201812,3,2,1731,25 -099,FR,US,201812,4,2,444478,6682 -099,FR,US,201812,4,2,9913,177 -099,FR,US,201812,4,2,100304,236 -099,FR,US,201812,4,2,1433,32 -099,FR,US,201812,4,2,16103,1678 -099,FR,US,201812,4,2,7967,100 -099,FR,US,201812,4,2,160920,3434 -099,FR,US,201812,4,2,19905,500 -099,FR,US,201812,4,2,1990,38 -099,FR,US,201812,4,2,162024,645 -111,FR,US,201812,1,2,575,230 -111,FR,US,201812,4,2,15,6 -112,FR,US,201812,1,1,1400,0 -112,FR,US,201812,1,1,372,190 -112,FR,US,201812,1,1,46,45 -112,FR,US,201812,3,1,609,47 -112,FR,US,201812,4,1,8430,150 -112,FR,US,201812,4,1,1526,0 -112,FR,US,201812,1,2,12509,17730 -113,FR,US,201812,1,2,1000,630 -113,FR,US,201812,1,2,600,708 -113,FR,US,201812,4,2,1,1 -121,FR,US,201812,0,1,12812,139 -121,FR,US,201812,1,1,152317,11506 -121,FR,US,201812,1,1,243999,216011 -121,FR,US,201812,1,1,110428,7128 -121,FR,US,201812,1,1,56844,5251 -121,FR,US,201812,3,1,8942,79 -121,FR,US,201812,3,1,1504,2 -121,FR,US,201812,3,1,7269,30 -121,FR,US,201812,4,1,252044,4432 -121,FR,US,201812,4,1,2279,33 -121,FR,US,201812,4,1,806,61 -121,FR,US,201812,4,1,17756,22 -121,FR,US,201812,4,1,18548,216 -121,FR,US,201812,4,1,175331,111 -121,FR,US,201812,4,1,400,3 -121,FR,US,201812,0,2,13102,357 -121,FR,US,201812,1,2,10935926,987897 -121,FR,US,201812,1,2,34422,10053 -121,FR,US,201812,1,2,11359,2790 -121,FR,US,201812,1,2,20272,2520 -121,FR,US,201812,1,2,52508,5621 -121,FR,US,201812,1,2,38891,7349 -121,FR,US,201812,1,2,22795,1224 -121,FR,US,201812,1,2,311992,51120 -121,FR,US,201812,1,2,17435,4284 -121,FR,US,201812,1,2,378978,31569 -121,FR,US,201812,1,2,316627,8691 -121,FR,US,201812,1,2,601268,39158 -121,FR,US,201812,1,2,20680907,1091491 -121,FR,US,201812,1,2,2525,450 -121,FR,US,201812,1,2,158340,17181 -121,FR,US,201812,1,2,396972,16243 -121,FR,US,201812,1,2,20111883,2426056 -121,FR,US,201812,1,2,809037,104112 -121,FR,US,201812,1,2,168646,19942 -121,FR,US,201812,1,2,10470,2750 -121,FR,US,201812,1,2,1609071,279410 -121,FR,US,201812,1,2,297574,34038 -121,FR,US,201812,1,2,1148888,58247 -121,FR,US,201812,1,2,21784,1944 -121,FR,US,201812,1,2,153899,8640 -121,FR,US,201812,1,2,669957,104519 -121,FR,US,201812,1,2,1802116,150561 -121,FR,US,201812,1,2,474641,131248 -121,FR,US,201812,1,2,48784428,6031675 -121,FR,US,201812,1,2,291531,74340 -121,FR,US,201812,1,2,103392,31185 -121,FR,US,201812,1,2,218748,17936 -121,FR,US,201812,1,2,1844852,202951 -121,FR,US,201812,1,2,27254,5148 -121,FR,US,201812,1,2,17190,1575 -121,FR,US,201812,1,2,203545,7413 -121,FR,US,201812,1,2,803933,181153 -121,FR,US,201812,1,2,34920,9765 -121,FR,US,201812,3,2,317985,35385 -121,FR,US,201812,3,2,68027,10177 -121,FR,US,201812,3,2,2518,504 -121,FR,US,201812,3,2,25093,2034 -121,FR,US,201812,3,2,301362,39014 -121,FR,US,201812,3,2,405,40 -121,FR,US,201812,3,2,2554397,328961 -121,FR,US,201812,3,2,147482,8640 -121,FR,US,201812,4,2,1268396,10780 -121,FR,US,201812,4,2,18815,400 -121,FR,US,201812,4,2,4644,506 -121,FR,US,201812,4,2,6325,1422 -121,FR,US,201812,4,2,240436,2851 -121,FR,US,201812,4,2,12,108 -121,FR,US,201812,4,2,52892,2232 -121,FR,US,201812,4,2,232018,4268 -122,FR,US,201812,0,1,137,85 -122,FR,US,201812,1,1,31073,11009 -122,FR,US,201812,1,1,70962,50309 -122,FR,US,201812,1,1,544,356 -122,FR,US,201812,1,1,8189,2332 -122,FR,US,201812,1,1,316,85 -122,FR,US,201812,1,1,43033,23260 -122,FR,US,201812,1,1,21497,11651 -122,FR,US,201812,4,1,393,8 -122,FR,US,201812,1,2,11216,5017 -122,FR,US,201812,1,2,748,59 -122,FR,US,201812,1,2,188015,226065 -122,FR,US,201812,4,2,240,251 -125,FR,US,201812,0,1,14934,1210 -125,FR,US,201812,1,1,49054,1690 -125,FR,US,201812,1,1,11547,5392 -125,FR,US,201812,1,1,5871,1390 -125,FR,US,201812,1,1,5719,3510 -125,FR,US,201812,1,1,58818,11562 -125,FR,US,201812,1,1,106832,21168 -125,FR,US,201812,1,1,4468,507 -125,FR,US,201812,1,1,65255,3024 -125,FR,US,201812,1,1,157108,60418 -125,FR,US,201812,1,1,3047950,391997 -125,FR,US,201812,3,1,810,2 -125,FR,US,201812,3,1,210834,83160 -125,FR,US,201812,4,1,9039,173 -125,FR,US,201812,4,1,1318,47 -125,FR,US,201812,0,2,436,8 -125,FR,US,201812,1,2,1232673,96620 -125,FR,US,201812,1,2,38449,2952 -125,FR,US,201812,1,2,395035,12656 -125,FR,US,201812,1,2,203791,15994 -125,FR,US,201812,1,2,66407154,3038491 -125,FR,US,201812,1,2,75694,5430 -125,FR,US,201812,1,2,5356400,526910 -125,FR,US,201812,1,2,155492,4686 -125,FR,US,201812,1,2,471220,152907 -125,FR,US,201812,1,2,26900,3456 -125,FR,US,201812,1,2,766406,28860 -125,FR,US,201812,1,2,1592884,441560 -125,FR,US,201812,1,2,20094,10800 -125,FR,US,201812,1,2,4489,256 -125,FR,US,201812,1,2,23269416,1889000 -125,FR,US,201812,1,2,162623,16750 -125,FR,US,201812,1,2,5940077,490360 -125,FR,US,201812,1,2,89795,18165 -125,FR,US,201812,1,2,66082,77280 -125,FR,US,201812,1,2,1288021,192393 -125,FR,US,201812,2,2,15319,4993 -125,FR,US,201812,3,2,10848,603 -125,FR,US,201812,3,2,6110,936 -125,FR,US,201812,3,2,63180,11951 -125,FR,US,201812,3,2,145700,48720 -125,FR,US,201812,4,2,130811,3020 -125,FR,US,201812,4,2,4656,20 -125,FR,US,201812,4,2,30357,805 -125,FR,US,201812,4,2,6626,189 -128,FR,US,201812,0,1,2406,1759 -128,FR,US,201812,1,1,17798,4290 -128,FR,US,201812,1,1,2615,1390 -128,FR,US,201812,1,1,22849,21314 -128,FR,US,201812,1,1,5491,2980 -128,FR,US,201812,3,1,5362,3313 -128,FR,US,201812,4,1,507,43 -128,FR,US,201812,4,1,2067,65 -128,FR,US,201812,0,2,72,35 -128,FR,US,201812,1,2,93,105 -128,FR,US,201812,1,2,2138,675 -128,FR,US,201812,1,2,14324150,22677194 -128,FR,US,201812,1,2,248832,1099224 -128,FR,US,201812,1,2,282820,122618 -128,FR,US,201812,1,2,9298,10560 -128,FR,US,201812,1,2,9108,10560 -128,FR,US,201812,1,2,863989,3307236 -128,FR,US,201812,3,2,273,12 -128,FR,US,201812,3,2,43087,38016 -128,FR,US,201812,3,2,10792,9504 -128,FR,US,201812,3,2,8102,18144 -128,FR,US,201812,4,2,955,618 -128,FR,US,201812,4,2,5730,750 -131,FR,US,201812,0,1,1529,15 -131,FR,US,201812,1,1,244,118 -131,FR,US,201812,1,1,3111,439 -131,FR,US,201812,3,1,4863,12 -131,FR,US,201812,4,1,550,5 -131,FR,US,201812,4,1,11941,105 -131,FR,US,201812,1,2,1823,205 -131,FR,US,201812,1,2,8583,659 -131,FR,US,201812,1,2,31613,2567 -131,FR,US,201812,4,2,1731,179 -132,FR,US,201812,0,1,1585,52 -132,FR,US,201812,1,1,9198,817 -132,FR,US,201812,1,1,1911,170 -132,FR,US,201812,1,1,29434,3264 -132,FR,US,201812,3,1,6137,407 -132,FR,US,201812,4,1,961,13 -132,FR,US,201812,4,1,300,6 -132,FR,US,201812,4,1,11363,200 -132,FR,US,201812,4,1,11396,291 -132,FR,US,201812,0,2,1985,67 -132,FR,US,201812,1,2,5729,575 -132,FR,US,201812,1,2,7491,409 -132,FR,US,201812,1,2,183476,17134 -132,FR,US,201812,1,2,15492,904 -132,FR,US,201812,1,2,10195,1000 -132,FR,US,201812,1,2,358157,71106 -132,FR,US,201812,1,2,40296,19051 -132,FR,US,201812,1,2,89658,17490 -132,FR,US,201812,1,2,41734,19051 -132,FR,US,201812,1,2,358292,86344 -132,FR,US,201812,1,2,65633,13116 -132,FR,US,201812,1,2,320519,72227 -132,FR,US,201812,3,2,20816,1178 -132,FR,US,201812,3,2,25199,576 -132,FR,US,201812,3,2,33937,800 -132,FR,US,201812,3,2,4428,109 -132,FR,US,201812,3,2,1610437,205645 -132,FR,US,201812,4,2,22186,1815 -132,FR,US,201812,4,2,77,4 -132,FR,US,201812,4,2,11379,2904 -132,FR,US,201812,4,2,3,3 -132,FR,US,201812,4,2,21145,2320 -132,FR,US,201812,4,2,3377,123 -133,FR,US,201812,0,1,20411,82 -133,FR,US,201812,1,1,2354,155 -133,FR,US,201812,1,1,768,734 -133,FR,US,201812,1,1,3448,362 -133,FR,US,201812,1,1,62,21 -133,FR,US,201812,1,1,2221,896 -133,FR,US,201812,1,1,61225,17675 -133,FR,US,201812,1,1,19426,5171 -133,FR,US,201812,1,1,12920,11798 -133,FR,US,201812,3,1,1396,5 -133,FR,US,201812,4,1,102,3 -133,FR,US,201812,4,1,129,2 -133,FR,US,201812,4,1,130155,191 -133,FR,US,201812,5,1,568,8 -133,FR,US,201812,0,2,30,1 -133,FR,US,201812,1,2,37118,3948 -133,FR,US,201812,1,2,9635,608 -133,FR,US,201812,1,2,467525,155344 -133,FR,US,201812,1,2,296663,23251 -133,FR,US,201812,1,2,21099,1782 -133,FR,US,201812,1,2,39458,2914 -133,FR,US,201812,1,2,114747,6521 -133,FR,US,201812,4,2,7908,210 -133,FR,US,201812,4,2,8299,2350 -133,FR,US,201812,4,2,19350,317 -133,FR,US,201812,4,2,19589,165 -133,FR,US,201812,5,2,89,1 -134,FR,US,201812,0,1,315750,373040 -135,FR,US,201812,0,1,13449,178 -135,FR,US,201812,3,1,47,0 -135,FR,US,201812,4,1,42,0 -135,FR,US,201812,4,2,15252,76 -136,FR,US,201812,0,1,314,8 -136,FR,US,201812,1,1,5107,725 -136,FR,US,201812,1,1,1859,98 -136,FR,US,201812,1,1,2268,277 -136,FR,US,201812,1,1,32,2 -136,FR,US,201812,1,1,46278,7575 -136,FR,US,201812,1,1,23611,8835 -136,FR,US,201812,1,1,738,625 -136,FR,US,201812,3,1,19115,3071 -136,FR,US,201812,4,1,1969,424 -136,FR,US,201812,4,1,2746,49 -136,FR,US,201812,4,1,9379,57 -136,FR,US,201812,0,2,609,7 -136,FR,US,201812,1,2,44641,13433 -136,FR,US,201812,1,2,1817,235 -136,FR,US,201812,1,2,7750,6573 -136,FR,US,201812,1,2,2041,960 -136,FR,US,201812,1,2,62331,7987 -136,FR,US,201812,1,2,1969,100 -136,FR,US,201812,1,2,397926,100116 -136,FR,US,201812,1,2,35107,10381 -136,FR,US,201812,1,2,11154,2450 -136,FR,US,201812,3,2,564,13 -136,FR,US,201812,3,2,2993,38 -136,FR,US,201812,3,2,14249,336 -136,FR,US,201812,3,2,292653,32881 -136,FR,US,201812,4,2,2638,242 -136,FR,US,201812,4,2,117,4 -139,FR,US,201812,0,1,38483,2765 -139,FR,US,201812,1,1,73752,5554 -139,FR,US,201812,1,1,17986,12238 -139,FR,US,201812,1,1,24055,7892 -139,FR,US,201812,1,1,78380,3900 -139,FR,US,201812,1,1,357,60 -139,FR,US,201812,1,1,3413,1625 -139,FR,US,201812,1,1,4243,399 -139,FR,US,201812,1,1,239,4 -139,FR,US,201812,1,1,6569,1680 -139,FR,US,201812,1,1,34639,13845 -139,FR,US,201812,1,1,486906,46730 -139,FR,US,201812,1,1,67728,40851 -139,FR,US,201812,1,1,9562,1050 -139,FR,US,201812,1,1,32868,12247 -139,FR,US,201812,1,1,60794,17099 -139,FR,US,201812,1,1,182029,23418 -139,FR,US,201812,1,1,71249,3200 -139,FR,US,201812,1,1,42596,9000 -139,FR,US,201812,1,1,293,362 -139,FR,US,201812,3,1,84246,1695 -139,FR,US,201812,3,1,12,4 -139,FR,US,201812,3,1,10,1 -139,FR,US,201812,4,1,89394,5971 -139,FR,US,201812,4,1,3436,68 -139,FR,US,201812,4,1,2769,21 -139,FR,US,201812,4,1,89448,2411 -139,FR,US,201812,4,1,12882,844 -139,FR,US,201812,4,1,177,0 -139,FR,US,201812,4,1,41,4 -139,FR,US,201812,5,1,372,4 -139,FR,US,201812,0,2,220,1 -139,FR,US,201812,1,2,229738,53203 -139,FR,US,201812,1,2,18162,9620 -139,FR,US,201812,1,2,139465,42770 -139,FR,US,201812,1,2,80,0 -139,FR,US,201812,1,2,349615,48832 -139,FR,US,201812,1,2,951251,310956 -139,FR,US,201812,1,2,189005,112827 -139,FR,US,201812,1,2,67953,42880 -139,FR,US,201812,1,2,360913,33925 -139,FR,US,201812,1,2,547966,37158 -139,FR,US,201812,1,2,1699438,386901 -139,FR,US,201812,1,2,38213,21905 -139,FR,US,201812,1,2,11045,797 -139,FR,US,201812,1,2,250093,173171 -139,FR,US,201812,3,2,12575,10013 -139,FR,US,201812,3,2,29866,14018 -139,FR,US,201812,4,2,565935,8078 -139,FR,US,201812,4,2,44557,3122 -139,FR,US,201812,4,2,22546,1950 -139,FR,US,201812,4,2,38778,16800 -139,FR,US,201812,4,2,6714,210 -139,FR,US,201812,4,2,573068,107300 -139,FR,US,201812,4,2,3555,320 -139,FR,US,201812,4,2,3850,2540 -139,FR,US,201812,4,2,56043,1276 -139,FR,US,201812,5,2,2841,36 -141,FR,US,201812,4,1,70864,3943 -141,FR,US,201812,1,2,253990,114376 -141,FR,US,201812,4,2,85833,6722 -142,FR,US,201812,0,1,1631300,281662 -142,FR,US,201812,1,1,44,5 -142,FR,US,201812,1,1,1626864,319968 -142,FR,US,201812,1,1,3563596,731352 -142,FR,US,201812,1,1,779780,186154 -142,FR,US,201812,1,1,2286940,782735 -142,FR,US,201812,1,1,831,10 -142,FR,US,201812,1,1,113200,63000 -142,FR,US,201812,1,1,73176,18000 -142,FR,US,201812,1,1,3010756,1075069 -142,FR,US,201812,3,1,371051,124943 -142,FR,US,201812,3,1,44256,18080 -142,FR,US,201812,3,1,760894,90744 -142,FR,US,201812,3,1,62397,21330 -142,FR,US,201812,3,1,215492,60860 -142,FR,US,201812,3,1,62397,21330 -142,FR,US,201812,3,1,135373,33620 -142,FR,US,201812,4,1,1204553,95644 -142,FR,US,201812,4,1,1073,22 -142,FR,US,201812,4,1,2358321,148048 -142,FR,US,201812,1,2,41402,2280 -142,FR,US,201812,4,2,20977,9 -142,FR,US,201812,4,2,3086,66 -142,FR,US,201812,4,2,104028,3591 -142,FR,US,201812,4,2,2895,108 -142,FR,US,201812,4,2,11101,872 -143,FR,US,201812,1,2,164,62 -143,FR,US,201812,1,2,379418,158683 -143,FR,US,201812,4,2,101,39 -144,FR,US,201812,0,1,19945,5511 -144,FR,US,201812,1,2,1270069,189142 -144,FR,US,201812,1,2,704362,86141 -144,FR,US,201812,1,2,3915217,474816 -144,FR,US,201812,1,2,228740,24877 -144,FR,US,201812,1,2,4154562,698978 -144,FR,US,201812,1,2,1307072,210650 -144,FR,US,201812,3,2,346775,47630 -144,FR,US,201812,4,2,193077,13082 -144,FR,US,201812,4,2,1371,72 -144,FR,US,201812,4,2,130563,9881 -144,FR,US,201812,4,2,138614,10808 -144,FR,US,201812,4,2,418,17 -145,FR,US,201812,3,1,2544,68 -145,FR,US,201812,3,1,10,1 -145,FR,US,201812,4,1,22912,310 -145,FR,US,201812,4,1,1917,33 -146,FR,US,201812,4,1,388858,4108 -146,FR,US,201812,4,1,5424,129 -146,FR,US,201812,4,2,1197337,116218 -146,FR,US,201812,4,2,73600,8000 -147,FR,US,201812,0,2,85,5 -147,FR,US,201812,1,2,23566,1970 -147,FR,US,201812,4,2,926,10 -147,FR,US,201812,4,2,8591,3 -148,FR,US,201812,0,1,25275,480 -148,FR,US,201812,1,1,189035,3287 -148,FR,US,201812,1,1,33182,645 -148,FR,US,201812,1,1,227922,4156 -148,FR,US,201812,4,1,180405,3427 -148,FR,US,201812,1,2,32719,1826 -148,FR,US,201812,1,2,25700,2892 -148,FR,US,201812,1,2,66787,6251 -148,FR,US,201812,1,2,555578,83069 -148,FR,US,201812,4,2,22643,30 -148,FR,US,201812,4,2,14157,27 -148,FR,US,201812,4,2,4593,230 -148,FR,US,201812,4,2,40519,230 -148,FR,US,201812,4,2,6160,7 -161,FR,US,201812,1,1,3129,5272 -161,FR,US,201812,1,1,418,1135 -161,FR,US,201812,1,1,2804,3721 -161,FR,US,201812,1,1,9956,15142 -161,FR,US,201812,1,1,1399,1273 -161,FR,US,201812,1,1,17093,27550 -161,FR,US,201812,3,1,49,2 -161,FR,US,201812,1,2,4431,3300 -161,FR,US,201812,1,2,3926,2058 -161,FR,US,201812,1,2,5731,6500 -161,FR,US,201812,1,2,82296,119875 -161,FR,US,201812,1,2,8750,17500 -161,FR,US,201812,4,2,3963,900 -162,FR,US,201812,1,2,5909,7125 -162,FR,US,201812,1,2,133218,228105 -163,FR,US,201812,0,1,1509,465 -163,FR,US,201812,1,1,11859,108 -163,FR,US,201812,1,1,65,15 -163,FR,US,201812,1,1,12453,7713 -163,FR,US,201812,1,1,23323,9586 -163,FR,US,201812,1,1,72,25 -163,FR,US,201812,1,1,14155,8754 -163,FR,US,201812,1,1,26176,10666 -163,FR,US,201812,1,1,20669,6761 -163,FR,US,201812,1,1,5815,2993 -163,FR,US,201812,3,1,24781,2395 -163,FR,US,201812,4,1,823,40 -163,FR,US,201812,4,1,384,5 -163,FR,US,201812,4,1,4077,117 -163,FR,US,201812,0,2,180,5 -163,FR,US,201812,1,2,75764,16269 -163,FR,US,201812,1,2,9200,1218 -163,FR,US,201812,1,2,12610,1841 -163,FR,US,201812,1,2,8799,4230 -163,FR,US,201812,1,2,26233,3834 -163,FR,US,201812,1,2,287040,46086 -163,FR,US,201812,1,2,1994821,517292 -163,FR,US,201812,1,2,49455,15354 -163,FR,US,201812,1,2,36738,9356 -163,FR,US,201812,1,2,368761,121157 -163,FR,US,201812,1,2,14900,5250 -163,FR,US,201812,1,2,58490,20575 -163,FR,US,201812,1,2,11113,7845 -163,FR,US,201812,1,2,5068522,1272095 -163,FR,US,201812,1,2,442694,189693 -163,FR,US,201812,1,2,479003,101681 -163,FR,US,201812,1,2,137013,18376 -163,FR,US,201812,1,2,60440,10439 -163,FR,US,201812,3,2,14,9 -163,FR,US,201812,3,2,32932,2197 -163,FR,US,201812,3,2,42452,4604 -163,FR,US,201812,3,2,86528,20160 -163,FR,US,201812,4,2,13231,1773 -163,FR,US,201812,4,2,3865,2 -163,FR,US,201812,4,2,2916,1468 -163,FR,US,201812,4,2,174,5 -163,FR,US,201812,4,2,1535,330 -163,FR,US,201812,4,2,16309,1280 -164,FR,US,201812,0,1,13406,1467 -164,FR,US,201812,1,1,3307,604 -164,FR,US,201812,1,1,1085,37 -164,FR,US,201812,1,1,964,459 -164,FR,US,201812,1,1,19181,2299 -164,FR,US,201812,1,1,336,30 -164,FR,US,201812,1,1,237,50 -164,FR,US,201812,1,1,9185,3118 -164,FR,US,201812,1,1,28941,17640 -164,FR,US,201812,1,1,11670,600 -164,FR,US,201812,1,1,378006,32438 -164,FR,US,201812,1,1,135182,25265 -164,FR,US,201812,1,1,55014,16275 -164,FR,US,201812,1,1,14397,4452 -164,FR,US,201812,3,1,458,12 -164,FR,US,201812,4,1,722,28 -164,FR,US,201812,0,2,170,10 -164,FR,US,201812,1,2,86864,19136 -164,FR,US,201812,1,2,71274,16826 -164,FR,US,201812,1,2,3895845,838852 -164,FR,US,201812,1,2,450850,230980 -164,FR,US,201812,1,2,149547,33794 -164,FR,US,201812,1,2,1259790,359251 -164,FR,US,201812,1,2,78313,16539 -164,FR,US,201812,1,2,105262,46584 -164,FR,US,201812,3,2,2745,140 -164,FR,US,201812,3,2,50261,5950 -164,FR,US,201812,4,2,215,26 -164,FR,US,201812,4,2,908,88 -164,FR,US,201812,4,2,1418,234 -164,FR,US,201812,4,2,6953,2740 -164,FR,US,201812,4,2,99444,575 -165,FR,US,201812,1,1,128793,79859 -165,FR,US,201812,1,1,26941,19200 -165,FR,US,201812,1,1,7488,6743 -165,FR,US,201812,1,1,84702,57942 -165,FR,US,201812,1,1,181439,92181 -165,FR,US,201812,1,1,39616,39498 -165,FR,US,201812,1,1,52136,63915 -165,FR,US,201812,1,1,52369,80740 -165,FR,US,201812,1,1,46595,48669 -165,FR,US,201812,4,1,107,0 -165,FR,US,201812,1,2,14128,5430 -165,FR,US,201812,1,2,57524,30095 -165,FR,US,201812,4,2,2734,120 -165,FR,US,201812,4,2,7371,751 -166,FR,US,201812,1,1,671,420 -166,FR,US,201812,1,1,1226,584 -166,FR,US,201812,1,1,186,102 -166,FR,US,201812,1,1,3600,1315 -166,FR,US,201812,1,1,52645,18000 -166,FR,US,201812,1,1,1596,125 -166,FR,US,201812,1,1,27812,5516 -166,FR,US,201812,1,1,391,255 -166,FR,US,201812,1,1,49676,21194 -166,FR,US,201812,1,1,144,144 -166,FR,US,201812,3,1,2548,524 -166,FR,US,201812,4,1,2041,92 -166,FR,US,201812,0,2,227,2 -166,FR,US,201812,1,2,38541,6346 -166,FR,US,201812,1,2,47597,1052 -166,FR,US,201812,1,2,20650,4311 -166,FR,US,201812,1,2,430748,156481 -166,FR,US,201812,1,2,5163,1329 -166,FR,US,201812,1,2,98568,34800 -166,FR,US,201812,1,2,367019,262474 -166,FR,US,201812,1,2,9923,8000 -166,FR,US,201812,1,2,122179,42507 -166,FR,US,201812,1,2,1101663,401048 -166,FR,US,201812,1,2,70720,20038 -166,FR,US,201812,1,2,35360,10019 -166,FR,US,201812,4,2,50295,50 -166,FR,US,201812,4,2,32869,300 -166,FR,US,201812,4,2,6298,111 -179,FR,US,201812,0,1,798,7 -179,FR,US,201812,1,1,95046,19425 -179,FR,US,201812,1,1,82319,23289 -179,FR,US,201812,1,1,72,1 -179,FR,US,201812,3,1,260,23 -179,FR,US,201812,4,1,66583,1200 -179,FR,US,201812,4,1,117822,600 -179,FR,US,201812,4,1,645,24 -179,FR,US,201812,4,1,8727,327 -179,FR,US,201812,4,1,855,12 -179,FR,US,201812,1,2,7027,51 -179,FR,US,201812,1,2,296123,219652 -179,FR,US,201812,1,2,191143,63200 -179,FR,US,201812,1,2,606573,434335 -179,FR,US,201812,1,2,345271,170000 -179,FR,US,201812,1,2,210766,19000 -179,FR,US,201812,1,2,1738382,619589 -179,FR,US,201812,1,2,67810,23600 -179,FR,US,201812,1,2,20772,5000 -179,FR,US,201812,1,2,199673,18000 -179,FR,US,201812,4,2,259684,1093 -179,FR,US,201812,4,2,10371,2400 -179,FR,US,201812,4,2,1341,8 -181,FR,US,201812,0,1,5409759,1163180 -181,FR,US,201812,1,1,9083684,28340780 -181,FR,US,201812,1,1,9941888,30000000 -181,FR,US,201812,1,1,20733,7892 -181,FR,US,201812,1,1,419508,118287 -181,FR,US,201812,1,1,25230,19990 -181,FR,US,201812,1,1,16458,19500 -181,FR,US,201812,1,1,2801634,666150 -181,FR,US,201812,1,1,1171692,207895 -181,FR,US,201812,1,1,53816,35924 -181,FR,US,201812,3,1,181,7 -181,FR,US,201812,4,1,3561,251 -181,FR,US,201812,4,1,152,10 -181,FR,US,201812,4,1,28636,2272 -181,FR,US,201812,4,2,11156,5 -181,FR,US,201812,4,2,23299,5250 -181,FR,US,201812,4,2,18590,39 -182,FR,US,201812,0,1,91,4 -182,FR,US,201812,1,1,5763,2228 -182,FR,US,201812,1,1,4335,2065 -182,FR,US,201812,1,1,159287,9240 -182,FR,US,201812,1,1,233,181 -182,FR,US,201812,1,1,11431,8018 -182,FR,US,201812,1,1,38036,500 -182,FR,US,201812,1,1,111944,28748 -182,FR,US,201812,1,1,301,50 -182,FR,US,201812,1,1,3231,3038 -182,FR,US,201812,3,1,1297,59 -182,FR,US,201812,4,1,41275,365 -182,FR,US,201812,4,1,2742,30 -182,FR,US,201812,4,1,11940,227 -182,FR,US,201812,4,1,28228,220 -182,FR,US,201812,0,2,70,6 -182,FR,US,201812,1,2,47107,10461 -182,FR,US,201812,1,2,3000,672 -182,FR,US,201812,1,2,5754,394 -182,FR,US,201812,1,2,16684,2125 -182,FR,US,201812,1,2,888,125 -182,FR,US,201812,1,2,423210,113007 -182,FR,US,201812,1,2,284221,164483 -182,FR,US,201812,1,2,394,36 -182,FR,US,201812,1,2,394993,255372 -182,FR,US,201812,3,2,180,23 -182,FR,US,201812,3,2,39150,38000 -182,FR,US,201812,4,2,33341,1011 -182,FR,US,201812,4,2,8126,20 -182,FR,US,201812,4,2,14113,384 -182,FR,US,201812,4,2,6332,225 -182,FR,US,201812,4,2,132390,3868 -182,FR,US,201812,4,2,3326,600 -182,FR,US,201812,4,2,6043,61 -211,FR,US,201812,0,1,3305123,41657000 -211,FR,US,201812,1,1,8639487,41435000 -224,FR,US,201812,4,2,1365,123 -310,FR,US,201812,1,1,2406045,5254000 -310,FR,US,201812,1,1,34150768,78106000 -321,FR,US,201812,1,1,16552,2297 -321,FR,US,201812,1,1,7870620,13247040 -321,FR,US,201812,4,1,70,32 -321,FR,US,201812,4,1,1268,9 -321,FR,US,201812,4,1,274,9 -321,FR,US,201812,1,2,14280789,33501156 -321,FR,US,201812,1,2,949929,999791 -321,FR,US,201812,1,2,14099710,33620414 -321,FR,US,201812,1,2,20903993,34483836 -321,FR,US,201812,1,2,16563871,34742063 -321,FR,US,201812,1,2,48739,37256 -321,FR,US,201812,4,2,12,4 -321,FR,US,201812,4,2,1865,56 -323,FR,US,201812,1,1,792676,1023003 -323,FR,US,201812,1,1,1254748,1625848 -323,FR,US,201812,1,1,1552015,2810691 -323,FR,US,201812,1,1,15079,18915 -323,FR,US,201812,4,1,122,16 -323,FR,US,201812,4,1,765,0 -323,FR,US,201812,1,2,1228024,1522286 -323,FR,US,201812,4,2,1014,300 -325,FR,US,201812,1,1,1853093,2490406 -325,FR,US,201812,1,1,25031147,41241696 -325,FR,US,201812,1,1,68852161,135185443 -325,FR,US,201812,1,1,32819599,65162143 -325,FR,US,201812,1,1,22163577,47202817 -325,FR,US,201812,1,1,15612347,23041289 -325,FR,US,201812,1,1,6545,576 -325,FR,US,201812,4,1,88,0 -325,FR,US,201812,1,2,21980,4142 -325,FR,US,201812,4,2,169,0 -325,FR,US,201812,4,2,11301,2010 -327,FR,US,201812,0,1,193,4 -327,FR,US,201812,1,1,4535984,10005392 -327,FR,US,201812,1,1,2752,50 -327,FR,US,201812,1,1,3515559,8521479 -327,FR,US,201812,4,1,183,1 -327,FR,US,201812,4,1,1742,5 -327,FR,US,201812,4,1,700,34 -330,FR,US,201812,1,1,8492185,21580883 -330,FR,US,201812,1,1,74413,4535 -330,FR,US,201812,1,1,503705,855837 -330,FR,US,201812,1,1,8439574,22432718 -330,FR,US,201812,1,1,9849730,26178445 -330,FR,US,201812,1,1,5925051,15438862 -330,FR,US,201812,1,1,259247,295799 -330,FR,US,201812,1,1,807680,1246846 -330,FR,US,201812,4,1,1455,41 -330,FR,US,201812,1,2,33195,9058 -341,FR,US,201812,0,1,18581,4122 -341,FR,US,201812,1,1,6308259,9552454 -341,FR,US,201812,1,1,670,18 -341,FR,US,201812,1,1,17463,3562 -341,FR,US,201812,1,1,26149,3159 -341,FR,US,201812,1,1,7857,5619 -341,FR,US,201812,1,1,77816,58620 -341,FR,US,201812,1,1,239337,68914 -341,FR,US,201812,1,1,73746,22760 -341,FR,US,201812,1,1,18775,7334 -341,FR,US,201812,1,1,180,6 -341,FR,US,201812,3,1,11460,725 -341,FR,US,201812,3,1,4560,94 -341,FR,US,201812,3,1,1915,10 -341,FR,US,201812,4,1,53665,4177 -341,FR,US,201812,4,1,22,0 -341,FR,US,201812,4,1,1535,97 -341,FR,US,201812,4,1,56,1 -341,FR,US,201812,4,1,3,0 -341,FR,US,201812,4,1,68506,2548 -341,FR,US,201812,1,2,105580,10489 -341,FR,US,201812,1,2,4195,22 -341,FR,US,201812,1,2,1348363,493410 -341,FR,US,201812,1,2,36831,17574 -341,FR,US,201812,1,2,61324,14400 -341,FR,US,201812,1,2,64650,14172 -341,FR,US,201812,1,2,1242,18 -341,FR,US,201812,1,2,173145,58819 -341,FR,US,201812,1,2,457,73 -341,FR,US,201812,1,2,14485,3900 -341,FR,US,201812,1,2,3233,105 -341,FR,US,201812,3,2,24144,15120 -341,FR,US,201812,3,2,5,6 -341,FR,US,201812,3,2,20624,14400 -341,FR,US,201812,4,2,16231,748 -341,FR,US,201812,4,2,8998,458 -341,FR,US,201812,4,2,6085,125 -341,FR,US,201812,4,2,13705,830 -343,FR,US,201812,1,1,5221,994 -349,FR,US,201812,1,1,35563,5548 -349,FR,US,201812,1,1,6429084,3008590 -349,FR,US,201812,1,1,1190432,2999036 -349,FR,US,201812,1,1,4747407,44750420 -349,FR,US,201812,1,1,3054801,3374703 -349,FR,US,201812,1,1,4596313,54996680 -349,FR,US,201812,1,1,2828907,25000000 -349,FR,US,201812,1,1,120,58 -349,FR,US,201812,1,1,53773,18960 -349,FR,US,201812,1,1,11556,2400 -349,FR,US,201812,4,1,657,101 -349,FR,US,201812,4,1,11928,225 -349,FR,US,201812,8,1,711606,6724441 -349,FR,US,201812,1,2,7319,1410 -349,FR,US,201812,1,2,53873,11136 -349,FR,US,201812,1,2,818,2 -349,FR,US,201812,1,2,22759,4160 -451,FR,US,201812,1,1,149996,37045 -451,FR,US,201812,1,1,157597,38885 -451,FR,US,201812,1,1,73697,18205 -451,FR,US,201812,1,1,156977,38735 -451,FR,US,201812,3,1,11635,1200 -451,FR,US,201812,4,1,183,0 -451,FR,US,201812,4,1,315,11 -451,FR,US,201812,1,2,50865,9089 -451,FR,US,201812,1,2,47295,12774 -451,FR,US,201812,1,2,455753,76471 -451,FR,US,201812,1,2,141598,16643 -451,FR,US,201812,1,2,157362,54240 -451,FR,US,201812,4,2,268,0 -451,FR,US,201812,4,2,1,0 -452,FR,US,201812,4,1,4313,0 -459,FR,US,201812,1,1,182309,112000 -459,FR,US,201812,1,1,76352,23700 -459,FR,US,201812,4,1,845,29 -459,FR,US,201812,0,2,100,1 -459,FR,US,201812,1,2,1101520,16040 -459,FR,US,201812,4,2,406654,60 -459,FR,US,201812,4,2,8649,300 -462,FR,US,201812,0,1,135,1 -462,FR,US,201812,1,1,69816,14649 -462,FR,US,201812,4,1,268,4 -462,FR,US,201812,4,2,28,4 -512,FR,US,201812,4,1,4,4 -512,FR,US,201812,4,1,15362,103 -512,FR,US,201812,1,2,5068,100 -512,FR,US,201812,4,2,40510,2916 -513,FR,US,201812,1,1,60759,60009 -513,FR,US,201812,1,2,387571,162000 -513,FR,US,201812,1,2,27765,11940 -522,FR,US,201812,0,1,137347,44919 -522,FR,US,201812,1,1,34774,14320 -522,FR,US,201812,4,1,24792,680 -522,FR,US,201812,1,2,24005,29710 -522,FR,US,201812,1,2,4065115,3856986 -522,FR,US,201812,4,2,30,2 -522,FR,US,201812,4,2,1283,50 -532,FR,US,201812,1,1,10409,707 -532,FR,US,201812,1,1,13353,1633 -532,FR,US,201812,1,1,24712,10100 -532,FR,US,201812,3,1,543,21 -532,FR,US,201812,4,1,27426,2166 -532,FR,US,201812,4,1,1832,55 -532,FR,US,201812,4,1,65,3 -532,FR,US,201812,4,1,16676,1377 -532,FR,US,201812,1,2,169698,18674 -532,FR,US,201812,1,2,92563,8963 -532,FR,US,201812,1,2,79203,118087 -532,FR,US,201812,1,2,4180,3992 -532,FR,US,201812,1,2,2190,2004 -532,FR,US,201812,1,2,202253,123085 -532,FR,US,201812,1,2,122114,34985 -532,FR,US,201812,3,2,800,17 -532,FR,US,201812,3,2,6375,130 -532,FR,US,201812,4,2,18495,1228 -532,FR,US,201812,4,2,39448,926 -532,FR,US,201812,4,2,23160,9 -533,FR,US,201812,1,1,84410,3181 -533,FR,US,201812,3,1,6082,180 -533,FR,US,201812,3,1,321,1 -533,FR,US,201812,4,1,1157,30 -533,FR,US,201812,4,1,12049,860 -533,FR,US,201812,1,2,2053077,482559 -533,FR,US,201812,1,2,944,164 -533,FR,US,201812,1,2,31150,1985 -533,FR,US,201812,1,2,20859,1240 -533,FR,US,201812,1,2,36886,7490 -533,FR,US,201812,3,2,52186,3146 -533,FR,US,201812,4,2,17908,2818 -533,FR,US,201812,4,2,268,62 -535,FR,US,201812,4,1,21,2 -535,FR,US,201812,1,2,563460,215501 -535,FR,US,201812,1,2,17276,1312 -535,FR,US,201812,1,2,528867,815085 -535,FR,US,201812,1,2,126602,95945 -535,FR,US,201812,1,2,417308,24740 -535,FR,US,201812,1,2,28567,2092 -535,FR,US,201812,4,2,500,480 -536,FR,US,201812,1,1,791,96 -536,FR,US,201812,3,1,2243,6 -536,FR,US,201812,4,1,118,0 -536,FR,US,201812,4,1,18912,414 -536,FR,US,201812,4,1,132,1 -536,FR,US,201812,1,2,181382,35453 -536,FR,US,201812,1,2,14005,6209 -536,FR,US,201812,1,2,50933,16460 -536,FR,US,201812,1,2,3606,960 -536,FR,US,201812,1,2,376325,21301 -536,FR,US,201812,1,2,30251,15107 -536,FR,US,201812,3,2,225309,113047 -536,FR,US,201812,4,2,6444,150 -537,FR,US,201812,3,1,797,0 -537,FR,US,201812,4,1,1661,881 -537,FR,US,201812,3,2,57500,17160 -542,FR,US,201812,1,1,114,1 -542,FR,US,201812,1,1,31344,2210 -542,FR,US,201812,1,1,2371,951 -542,FR,US,201812,1,1,44158,16685 -542,FR,US,201812,3,1,47959,4292 -542,FR,US,201812,3,1,131235,11937 -542,FR,US,201812,3,1,1925,59 -542,FR,US,201812,4,1,211778,5472 -542,FR,US,201812,4,1,22075,413 -542,FR,US,201812,4,1,1261,5 -542,FR,US,201812,4,1,1391,67 -542,FR,US,201812,4,1,1279,1 -542,FR,US,201812,1,2,1919536,1644379 -542,FR,US,201812,1,2,112462,8968 -542,FR,US,201812,1,2,88828,40083 -542,FR,US,201812,1,2,83599,93310 -542,FR,US,201812,1,2,115156,50119 -542,FR,US,201812,1,2,11838,9580 -542,FR,US,201812,1,2,1331961,459655 -542,FR,US,201812,1,2,238637,7197 -542,FR,US,201812,1,2,267005,107600 -542,FR,US,201812,1,2,848931,263049 -542,FR,US,201812,2,2,367617,206359 -542,FR,US,201812,3,2,1263820,402074 -542,FR,US,201812,3,2,182536,138430 -542,FR,US,201812,4,2,754,577 -542,FR,US,201812,4,2,6639,802 -542,FR,US,201812,4,2,1098,150 -543,FR,US,201812,1,1,12479,928 -543,FR,US,201812,1,1,40470,3815 -543,FR,US,201812,3,1,1345,0 -543,FR,US,201812,4,1,25507,764 -543,FR,US,201812,4,1,68,0 -543,FR,US,201812,4,1,36601,3682 -543,FR,US,201812,4,1,7794,23 -543,FR,US,201812,1,2,96784,24962 -543,FR,US,201812,1,2,189823,87032 -543,FR,US,201812,1,2,75722,17141 -543,FR,US,201812,4,2,6935,372 -543,FR,US,201812,4,2,43671,2594 -545,FR,US,201812,4,1,67,2 -551,FR,US,201812,0,1,66401,24268 -551,FR,US,201812,1,1,5875,360 -551,FR,US,201812,1,1,47595,89310 -551,FR,US,201812,1,1,29517,3501 -551,FR,US,201812,1,1,169,1 -551,FR,US,201812,1,1,13700,601 -551,FR,US,201812,1,1,11509,1195 -551,FR,US,201812,1,1,8737,391 -551,FR,US,201812,1,1,3078,100 -551,FR,US,201812,1,1,2488,950 -551,FR,US,201812,1,1,1523,70 -551,FR,US,201812,1,1,45,2 -551,FR,US,201812,1,1,50611,2549 -551,FR,US,201812,1,1,106992,15085 -551,FR,US,201812,1,1,36542,1987 -551,FR,US,201812,3,1,71355,286 -551,FR,US,201812,3,1,9,1 -551,FR,US,201812,3,1,67851,212 -551,FR,US,201812,4,1,225797,1061 -551,FR,US,201812,4,1,51,0 -551,FR,US,201812,4,1,267061,710 -551,FR,US,201812,4,1,3694,20 -551,FR,US,201812,4,1,4981,109 -551,FR,US,201812,4,1,2817,90 -551,FR,US,201812,4,1,766,10 -551,FR,US,201812,4,1,78991,553 -551,FR,US,201812,4,1,4615370,29039 -551,FR,US,201812,4,1,17488,69 -551,FR,US,201812,4,1,14105,30 -551,FR,US,201812,4,1,1,0 -551,FR,US,201812,4,1,186,0 -551,FR,US,201812,4,1,71893,3003 -551,FR,US,201812,4,1,1278,2 -551,FR,US,201812,4,1,7983,245 -551,FR,US,201812,4,1,1752,3 -551,FR,US,201812,4,1,121,0 -551,FR,US,201812,0,2,987,20 -551,FR,US,201812,1,2,1528602,413395 -551,FR,US,201812,1,2,25571,13496 -551,FR,US,201812,1,2,534,8 -551,FR,US,201812,1,2,128569,8568 -551,FR,US,201812,1,2,394,5 -551,FR,US,201812,1,2,1016772,476313 -551,FR,US,201812,1,2,3897,202 -551,FR,US,201812,1,2,28310,5550 -551,FR,US,201812,1,2,373870,165155 -551,FR,US,201812,1,2,1672,65 -551,FR,US,201812,3,2,89715,27375 -551,FR,US,201812,3,2,127402,27113 -551,FR,US,201812,3,2,73433,23864 -551,FR,US,201812,3,2,112329,36540 -551,FR,US,201812,3,2,145795,52974 -551,FR,US,201812,4,2,3513663,24062 -551,FR,US,201812,4,2,2783,2 -551,FR,US,201812,4,2,270862,1038 -551,FR,US,201812,4,2,50,1 -551,FR,US,201812,4,2,60817,180 -551,FR,US,201812,4,2,311670,605 -551,FR,US,201812,4,2,17357,1596 -551,FR,US,201812,4,2,5044,189 -551,FR,US,201812,4,2,5765,21 -551,FR,US,201812,4,2,96321,3840 -551,FR,US,201812,4,2,8359,147 -551,FR,US,201812,4,2,95483,129 -552,FR,US,201812,0,1,32416,16 -552,FR,US,201812,1,1,6091,2500 -552,FR,US,201812,1,1,7794,1864 -552,FR,US,201812,1,1,1365,230 -552,FR,US,201812,1,1,731,32 -552,FR,US,201812,1,1,31149,2078 -552,FR,US,201812,1,1,16512,5829 -552,FR,US,201812,1,1,69805,3220 -552,FR,US,201812,1,1,9925,65 -552,FR,US,201812,3,1,32680,224 -552,FR,US,201812,3,1,12,0 -552,FR,US,201812,4,1,45001,1256 -552,FR,US,201812,4,1,26654,95 -552,FR,US,201812,4,1,16650,158 -552,FR,US,201812,4,1,24,1 -552,FR,US,201812,4,1,256532,7062 -552,FR,US,201812,0,2,180,4 -552,FR,US,201812,1,2,151889,29129 -552,FR,US,201812,1,2,85,1 -552,FR,US,201812,1,2,55315,5160 -552,FR,US,201812,1,2,35338,2863 -552,FR,US,201812,1,2,66502,8405 -552,FR,US,201812,1,2,269,16 -552,FR,US,201812,1,2,29843,9300 -552,FR,US,201812,1,2,210838,54810 -552,FR,US,201812,1,2,8,0 -552,FR,US,201812,3,2,10920,600 -552,FR,US,201812,3,2,21856,3329 -552,FR,US,201812,3,2,116231,14603 -552,FR,US,201812,4,2,386481,9784 -552,FR,US,201812,4,2,7604,120 -552,FR,US,201812,4,2,16657,889 -552,FR,US,201812,4,2,5833,14 -552,FR,US,201812,4,2,12898,48 -552,FR,US,201812,4,2,3313,31 -561,FR,US,201812,0,1,121,3 -561,FR,US,201812,1,1,116782,19958 -561,FR,US,201812,4,1,16765,414 -561,FR,US,201812,4,1,74,1 -561,FR,US,201812,4,1,213,0 -561,FR,US,201812,4,2,1052,25 -561,FR,US,201812,4,2,1744,170 -561,FR,US,201812,4,2,5090,7 -561,FR,US,201812,4,2,7210,14 -562,FR,US,201812,0,1,6350,1 -562,FR,US,201812,1,1,971193,279560 -562,FR,US,201812,3,1,2997,155 -562,FR,US,201812,4,1,192,0 -562,FR,US,201812,4,1,9178,229 -562,FR,US,201812,4,1,1759,120 -562,FR,US,201812,3,2,1985180,306495 -562,FR,US,201812,3,2,161071,25110 -562,FR,US,201812,3,2,30229,5000 -562,FR,US,201812,4,2,39551,1049 -564,FR,US,201812,4,2,1748,90 -564,FR,US,201812,4,2,629,31 -565,FR,US,201812,0,1,3689723,108797 -565,FR,US,201812,1,1,1393405,31386 -565,FR,US,201812,1,1,162,0 -565,FR,US,201812,1,1,171729,5100 -565,FR,US,201812,1,1,624588,40152 -565,FR,US,201812,1,1,1362030,61804 -565,FR,US,201812,1,1,682491,5749 -565,FR,US,201812,1,1,219270,5000 -565,FR,US,201812,1,1,2029163,38091 -565,FR,US,201812,3,1,2970075,87729 -565,FR,US,201812,3,1,1226019,22847 -565,FR,US,201812,3,1,3801,13 -565,FR,US,201812,3,1,511446,10372 -565,FR,US,201812,3,1,272711,10655 -565,FR,US,201812,4,1,4793454,19070 -565,FR,US,201812,4,1,585284,971 -565,FR,US,201812,4,1,213820,718 -565,FR,US,201812,4,1,34675,123 -565,FR,US,201812,4,1,1522492,12577 -565,FR,US,201812,4,1,455963,881 -565,FR,US,201812,4,1,35341,218 -565,FR,US,201812,4,1,4688929,30061 -565,FR,US,201812,4,1,76179,650 -565,FR,US,201812,4,1,5516,2 -565,FR,US,201812,4,1,226,1 -565,FR,US,201812,4,1,118579,2985 -565,FR,US,201812,4,1,3366,97 -565,FR,US,201812,4,1,32745,168 -565,FR,US,201812,1,2,2596436,91926 -565,FR,US,201812,1,2,374416,27057 -565,FR,US,201812,1,2,670409,122130 -565,FR,US,201812,1,2,282602,13586 -565,FR,US,201812,1,2,595264,57153 -565,FR,US,201812,1,2,94814,28014 -565,FR,US,201812,1,2,71935,28242 -565,FR,US,201812,1,2,60874,46920 -565,FR,US,201812,3,2,6980,22 -565,FR,US,201812,3,2,2072841,169892 -565,FR,US,201812,4,2,201212,2255 -565,FR,US,201812,4,2,17287,45 -565,FR,US,201812,4,2,139516,232 -565,FR,US,201812,4,2,156314,8 -565,FR,US,201812,4,2,688371,1721 -565,FR,US,201812,4,2,3920,0 -565,FR,US,201812,4,2,22733,39 -565,FR,US,201812,4,2,4443,160 -565,FR,US,201812,4,2,19511,36 -565,FR,US,201812,4,2,221895,635 -568,FR,US,201812,0,1,522084,83300 -568,FR,US,201812,1,1,1069746,83554 -568,FR,US,201812,1,1,104021,9742 -568,FR,US,201812,1,1,65,0 -568,FR,US,201812,1,1,92658,4481 -568,FR,US,201812,1,1,75170,11490 -568,FR,US,201812,1,1,37,10 -568,FR,US,201812,1,1,412932,46422 -568,FR,US,201812,1,1,33919,934 -568,FR,US,201812,1,1,23596,1030 -568,FR,US,201812,1,1,290,8 -568,FR,US,201812,1,1,39,1 -568,FR,US,201812,1,1,1227,163 -568,FR,US,201812,1,1,42493,4052 -568,FR,US,201812,1,1,644,21 -568,FR,US,201812,1,1,43122,1745 -568,FR,US,201812,1,1,513379,34839 -568,FR,US,201812,1,1,78923,8896 -568,FR,US,201812,1,1,474,100 -568,FR,US,201812,3,1,595487,14885 -568,FR,US,201812,3,1,343189,28101 -568,FR,US,201812,3,1,216419,38303 -568,FR,US,201812,3,1,33907,7350 -568,FR,US,201812,3,1,326711,16041 -568,FR,US,201812,3,1,4936,550 -568,FR,US,201812,3,1,9982,47 -568,FR,US,201812,3,1,182008,17557 -568,FR,US,201812,4,1,756512,21084 -568,FR,US,201812,4,1,809499,1043 -568,FR,US,201812,4,1,14393,130 -568,FR,US,201812,4,1,321442,6324 -568,FR,US,201812,4,1,1165,25 -568,FR,US,201812,4,1,3200,64 -568,FR,US,201812,4,1,21116192,89396 -568,FR,US,201812,4,1,6698,180 -568,FR,US,201812,4,1,2351,2 -568,FR,US,201812,4,1,92171,16136 -568,FR,US,201812,4,1,30,2 -568,FR,US,201812,4,1,482,7 -568,FR,US,201812,4,1,1490,85 -568,FR,US,201812,4,1,1474,0 -568,FR,US,201812,1,2,879543,46149 -568,FR,US,201812,1,2,2922,466 -568,FR,US,201812,1,2,1063309,100077 -568,FR,US,201812,1,2,17776,993 -568,FR,US,201812,1,2,1481,174 -568,FR,US,201812,1,2,125401,4565 -568,FR,US,201812,1,2,45581,3442 -568,FR,US,201812,1,2,686828,98567 -568,FR,US,201812,1,2,170,16 -568,FR,US,201812,1,2,1683,242 -568,FR,US,201812,1,2,172,0 -568,FR,US,201812,1,2,7141014,1635936 -568,FR,US,201812,1,2,477407,16094 -568,FR,US,201812,1,2,2410778,210952 -568,FR,US,201812,1,2,328559,52015 -568,FR,US,201812,1,2,1102500,306053 -568,FR,US,201812,1,2,2508903,180765 -568,FR,US,201812,1,2,199054,10899 -568,FR,US,201812,1,2,706300,40272 -568,FR,US,201812,1,2,949786,44553 -568,FR,US,201812,1,2,118222,13976 -568,FR,US,201812,3,2,929279,18678 -568,FR,US,201812,3,2,25442,2816 -568,FR,US,201812,3,2,351800,33620 -568,FR,US,201812,3,2,87915,33000 -568,FR,US,201812,4,2,393329,19696 -568,FR,US,201812,4,2,12407,406 -568,FR,US,201812,4,2,31721,41 -568,FR,US,201812,4,2,16441,602 -568,FR,US,201812,4,2,575814,5053 -568,FR,US,201812,4,2,1037,2 -568,FR,US,201812,4,2,32600,62 -568,FR,US,201812,4,2,139625,6050 -568,FR,US,201812,4,2,1249,17 -568,FR,US,201812,4,2,955873,2095 -568,FR,US,201812,8,2,80300,5232 -611,FR,US,201812,1,1,175811,19160 -611,FR,US,201812,1,1,19660,16465 -611,FR,US,201812,3,1,48,1 -611,FR,US,201812,1,2,1141,2480 -611,FR,US,201812,4,2,2485,520 -612,FR,US,201812,1,1,11141,19203 -614,FR,US,201812,1,1,5107,680 -614,FR,US,201812,1,1,26500,79018 -614,FR,US,201812,1,1,40708,79832 -614,FR,US,201812,1,1,238071,276183 -614,FR,US,201812,1,1,21270,20412 -614,FR,US,201812,1,1,9098,2400 -614,FR,US,201812,3,1,4617,3402 -614,FR,US,201812,4,1,816,63 -614,FR,US,201812,4,1,536,59 -614,FR,US,201812,4,1,24675,3198 -614,FR,US,201812,1,2,8858,2625 -614,FR,US,201812,1,2,3333,69 -614,FR,US,201812,4,2,4255,310 -614,FR,US,201812,4,2,7257,580 -615,FR,US,201812,4,1,88,48 -621,FR,US,201812,1,1,94,40 -621,FR,US,201812,1,1,141,3 -621,FR,US,201812,1,1,23259,2356 -621,FR,US,201812,1,1,837,650 -621,FR,US,201812,4,1,8512,236 -621,FR,US,201812,4,1,11552,52 -621,FR,US,201812,4,1,2196,43 -621,FR,US,201812,1,2,5072,2012 -621,FR,US,201812,1,2,3197,264 -621,FR,US,201812,1,2,19342,4532 -621,FR,US,201812,1,2,125823,91395 -621,FR,US,201812,1,2,68420,59036 -621,FR,US,201812,1,2,15420,1583 -621,FR,US,201812,3,2,23050,190000 -621,FR,US,201812,4,2,1021,110 -621,FR,US,201812,4,2,18789,3 -623,FR,US,201812,1,1,1500,680 -623,FR,US,201812,1,2,1216,120 -631,FR,US,201812,4,1,172,3 -632,FR,US,201812,1,1,17835,959 -632,FR,US,201812,4,1,399,15 -632,FR,US,201812,0,2,83,0 -632,FR,US,201812,1,2,13874,17800 -633,FR,US,201812,4,1,1598,22 -639,FR,US,201812,1,1,1457,137 -639,FR,US,201812,1,1,26,5 -639,FR,US,201812,1,1,131673,157500 -639,FR,US,201812,3,1,977,14 -639,FR,US,201812,4,1,12117,2904 -639,FR,US,201812,4,1,26747,2015 -639,FR,US,201812,1,2,3726,425 -639,FR,US,201812,1,2,1846,1000 -639,FR,US,201812,1,2,220609,297000 -639,FR,US,201812,1,2,136232,20000 -639,FR,US,201812,3,2,117196,143250 -639,FR,US,201812,4,2,4777,510 -641,FR,US,201812,4,1,446,22 -641,FR,US,201812,4,1,738,34 -641,FR,US,201812,1,2,11940,20400 -642,FR,US,201812,1,2,8417,19600 -650,FR,US,201812,4,1,62,0 -650,FR,US,201812,4,1,369,3 -691,FR,US,201812,0,1,33809,49 -691,FR,US,201812,1,1,16736,694 -691,FR,US,201812,1,1,13450,3435 -691,FR,US,201812,1,1,64884,1613 -691,FR,US,201812,1,1,87780,188601 -691,FR,US,201812,1,1,32831,9604 -691,FR,US,201812,1,1,8563,8500 -691,FR,US,201812,1,1,29,2 -691,FR,US,201812,3,1,50203,459 -691,FR,US,201812,3,1,4184,74 -691,FR,US,201812,3,1,274,0 -691,FR,US,201812,3,1,2002,30 -691,FR,US,201812,4,1,1548531,36740 -691,FR,US,201812,4,1,30278,651 -691,FR,US,201812,4,1,115,1 -691,FR,US,201812,4,1,34271,780 -691,FR,US,201812,4,1,56088,1036 -691,FR,US,201812,4,1,454491,8587 -691,FR,US,201812,4,1,954412,21393 -691,FR,US,201812,4,1,198,2 -691,FR,US,201812,0,2,293,5 -691,FR,US,201812,1,2,22577,4357 -691,FR,US,201812,1,2,207,0 -691,FR,US,201812,1,2,56997,3751 -691,FR,US,201812,1,2,10017,1833 -691,FR,US,201812,1,2,5252,2710 -691,FR,US,201812,1,2,12936,1860 -691,FR,US,201812,1,2,3602,699 -691,FR,US,201812,1,2,391393,254540 -691,FR,US,201812,1,2,25053,24645 -691,FR,US,201812,1,2,84691,26250 -691,FR,US,201812,1,2,55566,5134 -691,FR,US,201812,1,2,4801,2190 -691,FR,US,201812,1,2,59,0 -691,FR,US,201812,1,2,159736,70800 -691,FR,US,201812,1,2,879583,51497 -691,FR,US,201812,1,2,58558,54710 -691,FR,US,201812,1,2,15936,9390 -691,FR,US,201812,4,2,281418,2536 -691,FR,US,201812,4,2,176,1 -691,FR,US,201812,4,2,48753,1449 -691,FR,US,201812,4,2,10,0 -691,FR,US,201812,4,2,1792,1 -691,FR,US,201812,4,2,3115,350 -691,FR,US,201812,4,2,2867,9 -691,FR,US,201812,4,2,21770,15855 -691,FR,US,201812,4,2,77646,287 -692,FR,US,201812,1,1,2192,740 -692,FR,US,201812,1,1,4809,4095 -692,FR,US,201812,1,1,23874,19957 -692,FR,US,201812,3,1,4064,30 -692,FR,US,201812,3,1,63,0 -692,FR,US,201812,4,1,1115,332 -692,FR,US,201812,4,1,711,15 -692,FR,US,201812,4,1,471,22 -692,FR,US,201812,4,1,98462,2124 -692,FR,US,201812,4,1,5342,242 -692,FR,US,201812,1,2,45792,6379 -692,FR,US,201812,1,2,6142,17000 -692,FR,US,201812,1,2,8063,1910 -692,FR,US,201812,1,2,17125,10110 -692,FR,US,201812,1,2,1032474,151007 -692,FR,US,201812,1,2,33957,6067 -692,FR,US,201812,1,2,12875,2190 -692,FR,US,201812,1,2,68088,49309 -692,FR,US,201812,1,2,81720,17289 -692,FR,US,201812,1,2,2050,1860 -692,FR,US,201812,4,2,10670,265 -692,FR,US,201812,4,2,2198,350 -692,FR,US,201812,4,2,38536,5000 -692,FR,US,201812,4,2,11083,650 -719,FR,US,201812,1,2,341843,112058 -719,FR,US,201812,3,2,1,7 -723,FR,US,201812,3,1,457722,21520 -723,FR,US,201812,4,1,552,27 -724,FR,US,201812,1,1,4061964,28989700 -724,FR,US,201812,1,1,7778361,49016810 -724,FR,US,201812,4,1,207,27 -724,FR,US,201812,4,1,565,2 -724,FR,US,201812,4,2,181,4 -729,FR,US,201812,1,1,22960,3411 -729,FR,US,201812,3,1,1053,28 -729,FR,US,201812,4,1,771,18 -729,FR,US,201812,4,1,205,0 -811,FR,US,201812,4,1,194,0 -812,FR,US,201812,4,1,966,10 -813,FR,US,201812,1,1,621,607 -813,FR,US,201812,4,1,272,3 -813,FR,US,201812,1,2,52288,40000 -819,FR,US,201812,0,1,801524,73707 -819,FR,US,201812,1,1,2096008,12510 -819,FR,US,201812,1,1,44348,99 -819,FR,US,201812,1,1,3465,164 -819,FR,US,201812,1,1,70949,5322 -819,FR,US,201812,1,1,259900,69144 -819,FR,US,201812,1,1,200411,5157 -819,FR,US,201812,1,1,97,14 -819,FR,US,201812,1,1,2807241,2399878 -819,FR,US,201812,1,1,113,10 -819,FR,US,201812,1,1,14531,6000 -819,FR,US,201812,1,1,64812,18690 -819,FR,US,201812,1,1,3294464,393248 -819,FR,US,201812,1,1,7077994,372234 -819,FR,US,201812,1,1,954141,234246 -819,FR,US,201812,1,1,216121,121664 -819,FR,US,201812,1,1,208285,81798 -819,FR,US,201812,1,1,19388,6780 -819,FR,US,201812,1,1,5202831,1281129 -819,FR,US,201812,1,1,1587542,448046 -819,FR,US,201812,1,1,116604,36000 -819,FR,US,201812,1,1,94373,19756 -819,FR,US,201812,1,1,67506,5216 -819,FR,US,201812,1,1,1129908,183019 -819,FR,US,201812,1,1,61601,10266 -819,FR,US,201812,2,1,686236,442400 -819,FR,US,201812,3,1,418424,11406 -819,FR,US,201812,3,1,32204,1157 -819,FR,US,201812,3,1,42958,2810 -819,FR,US,201812,3,1,257983,69449 -819,FR,US,201812,3,1,7597729,4332 -819,FR,US,201812,3,1,21106,1099 -819,FR,US,201812,3,1,15486,1197 -819,FR,US,201812,3,1,456122,67001 -819,FR,US,201812,4,1,6154312,66103 -819,FR,US,201812,4,1,1317,21 -819,FR,US,201812,4,1,58539,165 -819,FR,US,201812,4,1,9467,26 -819,FR,US,201812,4,1,37660,3279 -819,FR,US,201812,4,1,84263,10 -819,FR,US,201812,4,1,5764,26 -819,FR,US,201812,4,1,4045800,119543 -819,FR,US,201812,4,1,93,0 -819,FR,US,201812,4,1,27875,1073 -819,FR,US,201812,4,1,72,1 -819,FR,US,201812,4,1,463,0 -819,FR,US,201812,4,1,129082,7500 -819,FR,US,201812,5,1,278,4 -819,FR,US,201812,1,2,2498320,237978 -819,FR,US,201812,1,2,20053,2653 -819,FR,US,201812,1,2,94500,9042 -819,FR,US,201812,1,2,3287386,2578874 -819,FR,US,201812,1,2,13158,256 -819,FR,US,201812,1,2,3961,600 -819,FR,US,201812,1,2,11171516,2602898 -819,FR,US,201812,1,2,116811,60200 -819,FR,US,201812,1,2,12309,18525 -819,FR,US,201812,1,2,16839,19700 -819,FR,US,201812,1,2,60569,19003 -819,FR,US,201812,1,2,5477678,10400 -819,FR,US,201812,1,2,541425,297010 -819,FR,US,201812,1,2,208824,90968 -819,FR,US,201812,1,2,2692975,1112719 -819,FR,US,201812,1,2,58837,24000 -819,FR,US,201812,1,2,12300,18525 -819,FR,US,201812,1,2,2654146,496485 -819,FR,US,201812,1,2,1504937,1029430 -819,FR,US,201812,2,2,1,21600 -819,FR,US,201812,3,2,450609,10150 -819,FR,US,201812,3,2,34544,1120 -819,FR,US,201812,3,2,1576480,810590 -819,FR,US,201812,3,2,118333,34200 -819,FR,US,201812,3,2,98380,113400 -819,FR,US,201812,4,2,4602274,27327 -819,FR,US,201812,4,2,205280,1192 -819,FR,US,201812,4,2,210722,146 -819,FR,US,201812,4,2,6240,325 -819,FR,US,201812,4,2,58527,260 -819,FR,US,201812,4,2,28125,104 -819,FR,US,201812,4,2,1261605,9938 -819,FR,US,201812,4,2,90,4 -819,FR,US,201812,4,2,25528,515 -819,FR,US,201812,4,2,2215,34 -819,FR,US,201812,4,2,27441,970 -819,FR,US,201812,4,2,8849,56 -819,FR,US,201812,4,2,1153217,2086 -820,FR,US,201812,0,1,413459,101400 -820,FR,US,201812,1,1,12591,433 -820,FR,US,201812,1,1,140,0 -820,FR,US,201812,1,1,243808,6000 -820,FR,US,201812,1,1,2673,100 -820,FR,US,201812,1,1,108155,14000 -820,FR,US,201812,1,1,1243432,738600 -820,FR,US,201812,4,1,1873,7 -820,FR,US,201812,4,1,513,293 -820,FR,US,201812,1,2,668473,171400 -820,FR,US,201812,1,2,524580,401278 -820,FR,US,201812,1,2,19949,38000 -820,FR,US,201812,1,2,533213,476278 -820,FR,US,201812,1,2,161470,6000 -820,FR,US,201812,1,2,291485,22000 -820,FR,US,201812,3,2,2392164,1100 -820,FR,US,201812,4,2,57108,4100 -820,FR,US,201812,4,2,150,1 -839,FR,US,201812,4,1,366,2 -841,FR,US,201812,0,1,164485,140807 -841,FR,US,201812,1,1,44692,19637 -841,FR,US,201812,1,1,17269,22400 -841,FR,US,201812,1,1,34678,19622 -841,FR,US,201812,1,1,85415,110832 -841,FR,US,201812,1,1,211996,240559 -841,FR,US,201812,1,1,428624,369721 -841,FR,US,201812,1,1,239379,264670 -841,FR,US,201812,1,1,234096,191878 -841,FR,US,201812,1,1,17383,18144 -841,FR,US,201812,1,1,1317735,1509618 -841,FR,US,201812,1,1,202358,166893 -841,FR,US,201812,3,1,42334,19521 -841,FR,US,201812,4,1,327,22 -841,FR,US,201812,3,2,792996,598012 -842,FR,US,201812,1,1,116081,261704 -842,FR,US,201812,3,1,2070,865 -842,FR,US,201812,4,1,101,1 -842,FR,US,201812,4,1,216,2 -842,FR,US,201812,4,2,201,32 -891,FR,US,201812,0,1,268453,81120 -891,FR,US,201812,1,1,886690,465895 -891,FR,US,201812,1,1,20498,3300 -891,FR,US,201812,1,1,38849,19079 -891,FR,US,201812,1,1,43571,16876 -891,FR,US,201812,1,1,159351,2531 -891,FR,US,201812,1,1,15343,7467 -891,FR,US,201812,1,1,24796,4417 -891,FR,US,201812,1,1,571378,38586 -891,FR,US,201812,1,1,465758,106808 -891,FR,US,201812,1,1,84,9 -891,FR,US,201812,1,1,30399,2950 -891,FR,US,201812,1,1,30214,952 -891,FR,US,201812,1,1,26800,5009 -891,FR,US,201812,1,1,1700558,632789 -891,FR,US,201812,1,1,928,38 -891,FR,US,201812,1,1,147114,55049 -891,FR,US,201812,1,1,104014,34320 -891,FR,US,201812,1,1,938,18 -891,FR,US,201812,1,1,599895,94109 -891,FR,US,201812,1,1,48272,20783 -891,FR,US,201812,1,1,730369,127637 -891,FR,US,201812,1,1,1688814,467425 -891,FR,US,201812,1,1,9978,415 -891,FR,US,201812,1,1,3432579,1521027 -891,FR,US,201812,1,1,21993,13744 -891,FR,US,201812,1,1,1609,77 -891,FR,US,201812,1,1,465555,178266 -891,FR,US,201812,1,1,36074,1257 -891,FR,US,201812,1,1,3703,2388 -891,FR,US,201812,1,1,39000,50000 -891,FR,US,201812,3,1,289113,4668 -891,FR,US,201812,3,1,161363,1818 -891,FR,US,201812,3,1,45834,2008 -891,FR,US,201812,3,1,1519,8 -891,FR,US,201812,3,1,2390,27 -891,FR,US,201812,3,1,1286,88 -891,FR,US,201812,3,1,313410,6086 -891,FR,US,201812,4,1,2386519,76290 -891,FR,US,201812,4,1,401752,1367 -891,FR,US,201812,4,1,142439,3573 -891,FR,US,201812,4,1,83333,436 -891,FR,US,201812,4,1,1278531,27207 -891,FR,US,201812,4,1,25853,553 -891,FR,US,201812,4,1,222,1 -891,FR,US,201812,4,1,126,0 -891,FR,US,201812,4,1,16483,894 -891,FR,US,201812,4,1,11198889,72664 -891,FR,US,201812,4,1,24973,1165 -891,FR,US,201812,4,1,552,0 -891,FR,US,201812,4,1,8555,24 -891,FR,US,201812,4,1,23018,505 -891,FR,US,201812,4,1,404780,29800 -891,FR,US,201812,4,1,4096,54 -891,FR,US,201812,4,1,39893,10 -891,FR,US,201812,0,2,2784,37 -891,FR,US,201812,1,2,593692,65563 -891,FR,US,201812,1,2,30202,3690 -891,FR,US,201812,1,2,95519,4945 -891,FR,US,201812,1,2,76080,1767 -891,FR,US,201812,1,2,4634,1400 -891,FR,US,201812,1,2,96769,1824 -891,FR,US,201812,1,2,70880,4837 -891,FR,US,201812,1,2,28930,12000 -891,FR,US,201812,1,2,46491,6848 -891,FR,US,201812,1,2,10258,1155 -891,FR,US,201812,1,2,1048,146 -891,FR,US,201812,1,2,25663,2424 -891,FR,US,201812,1,2,4897532,1259893 -891,FR,US,201812,1,2,224791,77675 -891,FR,US,201812,1,2,688107,199790 -891,FR,US,201812,1,2,41032,19361 -891,FR,US,201812,1,2,63575,24500 -891,FR,US,201812,1,2,26,0 -891,FR,US,201812,1,2,580806,150324 -891,FR,US,201812,1,2,547369,188240 -891,FR,US,201812,1,2,39903,2925 -891,FR,US,201812,1,2,291242,19033 -891,FR,US,201812,1,2,1459407,478646 -891,FR,US,201812,1,2,459873,146390 -891,FR,US,201812,1,2,4896452,1100716 -891,FR,US,201812,1,2,117930,56702 -891,FR,US,201812,1,2,33100,40580 -891,FR,US,201812,1,2,73229,17500 -891,FR,US,201812,1,2,409641,121026 -891,FR,US,201812,1,2,2905777,459928 -891,FR,US,201812,1,2,3353,850 -891,FR,US,201812,3,2,376635,15399 -891,FR,US,201812,3,2,70929,3119 -891,FR,US,201812,3,2,22295,3900 -891,FR,US,201812,3,2,583921,509720 -891,FR,US,201812,4,2,1423895,72231 -891,FR,US,201812,4,2,64457,1234 -891,FR,US,201812,4,2,3115,191 -891,FR,US,201812,4,2,50871,2717 -891,FR,US,201812,4,2,2468,1108 -891,FR,US,201812,4,2,275610,2173 -891,FR,US,201812,4,2,95905,4408 -891,FR,US,201812,4,2,53652,1640 -891,FR,US,201812,4,2,517480,8973 -891,FR,US,201812,4,2,18130,430 -891,FR,US,201812,4,2,19262,1316 -891,FR,US,201812,4,2,28596,300 -891,FR,US,201812,4,2,8925,1131 -891,FR,US,201812,4,2,2650,6 -891,FR,US,201812,4,2,6523,315 -891,FR,US,201812,4,2,20442,129 -891,FR,US,201812,4,2,109926,5750 -891,FR,US,201812,4,2,73221,1077 -891,FR,US,201812,4,2,1251121,8641 -891,FR,US,201812,5,2,5224,30 -892,FR,US,201812,0,1,1335,20 -892,FR,US,201812,1,1,19164,1110 -892,FR,US,201812,1,1,2281,549 -892,FR,US,201812,1,1,3610,32 -892,FR,US,201812,1,1,79,25 -892,FR,US,201812,1,1,224,324 -892,FR,US,201812,1,1,80,13 -892,FR,US,201812,1,1,77273,4274 -892,FR,US,201812,1,1,20837,1312 -892,FR,US,201812,1,1,1781,475 -892,FR,US,201812,1,1,304,6 -892,FR,US,201812,1,1,10204,1229 -892,FR,US,201812,1,1,5223,237 -892,FR,US,201812,1,1,65524,4229 -892,FR,US,201812,1,1,217,5 -892,FR,US,201812,1,1,52652,17224 -892,FR,US,201812,1,1,5321378,36000 -892,FR,US,201812,1,1,17764,3937 -892,FR,US,201812,1,1,76768,20643 -892,FR,US,201812,1,1,9109,2116 -892,FR,US,201812,1,1,512,150 -892,FR,US,201812,3,1,200170,1538 -892,FR,US,201812,3,1,2282,119 -892,FR,US,201812,3,1,1333,18 -892,FR,US,201812,3,1,117331,2399 -892,FR,US,201812,3,1,74,4 -892,FR,US,201812,4,1,115650,2974 -892,FR,US,201812,4,1,68,3 -892,FR,US,201812,4,1,38061,615 -892,FR,US,201812,4,1,465,12 -892,FR,US,201812,4,1,89651,2395 -892,FR,US,201812,4,1,195982,95 -892,FR,US,201812,4,1,1129132,14311 -892,FR,US,201812,4,1,1673,47 -892,FR,US,201812,4,1,37920,7106 -892,FR,US,201812,0,2,419,4 -892,FR,US,201812,1,2,272673,43225 -892,FR,US,201812,1,2,1272,262 -892,FR,US,201812,1,2,926,17 -892,FR,US,201812,1,2,23070,14400 -892,FR,US,201812,1,2,4032,696 -892,FR,US,201812,1,2,47168,1661 -892,FR,US,201812,1,2,118041,4181 -892,FR,US,201812,1,2,607646,109201 -892,FR,US,201812,1,2,28408,15007 -892,FR,US,201812,1,2,30108,17500 -892,FR,US,201812,1,2,122425,34950 -892,FR,US,201812,1,2,222004,20589 -892,FR,US,201812,1,2,4808,2605 -892,FR,US,201812,1,2,65063,18181 -892,FR,US,201812,1,2,1709592,144468 -892,FR,US,201812,1,2,3028,900 -892,FR,US,201812,1,2,153577,35945 -892,FR,US,201812,3,2,33618,10414 -892,FR,US,201812,3,2,19334,5000 -892,FR,US,201812,3,2,76000,7885 -892,FR,US,201812,3,2,58832,18144 -892,FR,US,201812,3,2,29383,3280 -892,FR,US,201812,4,2,255235,11377 -892,FR,US,201812,4,2,6424,98 -892,FR,US,201812,4,2,53,0 -892,FR,US,201812,4,2,63508,2929 -892,FR,US,201812,4,2,23248,817 -892,FR,US,201812,4,2,97148,5322 -892,FR,US,201812,4,2,5278,87 -892,FR,US,201812,4,2,2405,185 -892,FR,US,201812,4,2,1983,120 -892,FR,US,201812,4,2,1738,43 -892,FR,US,201812,4,2,1562,110 -892,FR,US,201812,4,2,1349,22 -892,FR,US,201812,4,2,275113,4363 -893,FR,US,201812,0,1,1204012,54534 -893,FR,US,201812,1,1,541628,56500 -893,FR,US,201812,1,1,4966,32 -893,FR,US,201812,1,1,22695,2477 -893,FR,US,201812,1,1,27133,16216 -893,FR,US,201812,1,1,28084,4223 -893,FR,US,201812,1,1,46622,2090 -893,FR,US,201812,1,1,24436,2885 -893,FR,US,201812,1,1,4580277,21345 -893,FR,US,201812,1,1,432782,16127 -893,FR,US,201812,1,1,1056583,1160 -893,FR,US,201812,1,1,12916,2556 -893,FR,US,201812,1,1,30507,14016 -893,FR,US,201812,1,1,11775,2719 -893,FR,US,201812,1,1,36573,5256 -893,FR,US,201812,1,1,9712,3055 -893,FR,US,201812,1,1,176955,36259 -893,FR,US,201812,1,1,696597,131501 -893,FR,US,201812,1,1,175640,4322 -893,FR,US,201812,1,1,341091,14585 -893,FR,US,201812,1,1,671142,75346 -893,FR,US,201812,1,1,1660186,38621 -893,FR,US,201812,1,1,10896,925 -893,FR,US,201812,1,1,429109,25423 -893,FR,US,201812,1,1,3930501,117370 -893,FR,US,201812,1,1,38620,22687 -893,FR,US,201812,1,1,4200619,394447 -893,FR,US,201812,1,1,7577,250 -893,FR,US,201812,1,1,11203,415 -893,FR,US,201812,1,1,215615,42302 -893,FR,US,201812,1,1,157829,24172 -893,FR,US,201812,1,1,102274,38295 -893,FR,US,201812,1,1,18796,16314 -893,FR,US,201812,3,1,1742312,8382 -893,FR,US,201812,3,1,37829,911 -893,FR,US,201812,3,1,1626,24 -893,FR,US,201812,3,1,238469,161 -893,FR,US,201812,3,1,1151509,13435 -893,FR,US,201812,3,1,136,87 -893,FR,US,201812,3,1,5125,160 -893,FR,US,201812,3,1,7020,151 -893,FR,US,201812,3,1,7403,283 -893,FR,US,201812,3,1,363474,93432 -893,FR,US,201812,4,1,33697331,131382 -893,FR,US,201812,4,1,449644,3393 -893,FR,US,201812,4,1,1426020,16848 -893,FR,US,201812,4,1,41288,1677 -893,FR,US,201812,4,1,1331077,20153 -893,FR,US,201812,4,1,3104436,54634 -893,FR,US,201812,4,1,3951,420 -893,FR,US,201812,4,1,760024,523 -893,FR,US,201812,4,1,347,2 -893,FR,US,201812,4,1,6394,163 -893,FR,US,201812,4,1,13502629,61778 -893,FR,US,201812,4,1,47550,2858 -893,FR,US,201812,4,1,745,10 -893,FR,US,201812,4,1,177029,3840 -893,FR,US,201812,4,1,994,74 -893,FR,US,201812,4,1,145331,2331 -893,FR,US,201812,4,1,118,1 -893,FR,US,201812,4,1,456,1 -893,FR,US,201812,4,1,58078,3489 -893,FR,US,201812,5,1,133710,698 -893,FR,US,201812,8,1,3564,291 -893,FR,US,201812,0,2,29892,354 -893,FR,US,201812,1,2,14839642,413807 -893,FR,US,201812,1,2,263848,3848 -893,FR,US,201812,1,2,29546,2677 -893,FR,US,201812,1,2,268105,7771 -893,FR,US,201812,1,2,48113,1922 -893,FR,US,201812,1,2,15155,275 -893,FR,US,201812,1,2,119379,1011 -893,FR,US,201812,1,2,142790,4000 -893,FR,US,201812,1,2,172666,1502 -893,FR,US,201812,1,2,936156,27386 -893,FR,US,201812,1,2,231780,1440 -893,FR,US,201812,1,2,57100,1712 -893,FR,US,201812,1,2,44097,2402 -893,FR,US,201812,1,2,191408,5136 -893,FR,US,201812,1,2,453647,14078 -893,FR,US,201812,1,2,43432,3400 -893,FR,US,201812,1,2,55893124,1199754 -893,FR,US,201812,1,2,25955123,34096 -893,FR,US,201812,1,2,112877,18059 -893,FR,US,201812,1,2,17255322,321094 -893,FR,US,201812,1,2,18363414,16751 -893,FR,US,201812,1,2,257517,51014 -893,FR,US,201812,1,2,79379,4700 -893,FR,US,201812,1,2,2353864,83475 -893,FR,US,201812,1,2,120381,19217 -893,FR,US,201812,1,2,1084766,47600 -893,FR,US,201812,1,2,50513364,1530514 -893,FR,US,201812,1,2,38900,5222 -893,FR,US,201812,1,2,821260,8174 -893,FR,US,201812,1,2,1506233,22460 -893,FR,US,201812,1,2,465498,14024 -893,FR,US,201812,1,2,1988763,84915 -893,FR,US,201812,1,2,18961012,477894 -893,FR,US,201812,3,2,879787,21829 -893,FR,US,201812,3,2,430420,22969 -893,FR,US,201812,3,2,153441,7507 -893,FR,US,201812,3,2,113434,1830 -893,FR,US,201812,3,2,145780,13484 -893,FR,US,201812,4,2,290355053,504867 -893,FR,US,201812,4,2,32606,500 -893,FR,US,201812,4,2,10481267,17345 -893,FR,US,201812,4,2,156759,2397 -893,FR,US,201812,4,2,77072,2571 -893,FR,US,201812,4,2,3217,10 -893,FR,US,201812,4,2,1438900,7859 -893,FR,US,201812,4,2,205416,7395 -893,FR,US,201812,4,2,306665,4869 -893,FR,US,201812,4,2,494170,12071 -893,FR,US,201812,4,2,73914,1657 -893,FR,US,201812,4,2,30098669,168439 -893,FR,US,201812,4,2,27,35 -893,FR,US,201812,4,2,960077,5266 -893,FR,US,201812,4,2,750806,8213 -893,FR,US,201812,4,2,5503,390 -893,FR,US,201812,4,2,22651,1890 -893,FR,US,201812,4,2,91710,340 -893,FR,US,201812,4,2,5592,12 -893,FR,US,201812,4,2,162105,17600 -893,FR,US,201812,4,2,76916,68 -893,FR,US,201812,4,2,446491,25680 -893,FR,US,201812,4,2,37212,243 -893,FR,US,201812,4,2,6546912,30555 -893,FR,US,201812,5,2,45152,106 -894,FR,US,201812,1,1,624126,22979 -894,FR,US,201812,3,1,13465,45 -894,FR,US,201812,3,1,6047,37 -894,FR,US,201812,4,1,41322,137 -894,FR,US,201812,4,1,1336,16 -894,FR,US,201812,4,1,93479,191 -894,FR,US,201812,4,1,7440,565 -894,FR,US,201812,4,1,1350,1 -894,FR,US,201812,1,2,151825,37783 -894,FR,US,201812,1,2,251480,34300 -894,FR,US,201812,4,2,289583,3087 -894,FR,US,201812,4,2,45,0 -894,FR,US,201812,4,2,76665,686 -894,FR,US,201812,4,2,5327,54 -895,FR,US,201812,1,1,255,454 -895,FR,US,201812,1,1,63,0 -895,FR,US,201812,4,1,315,0 -895,FR,US,201812,1,2,481798,297382 -895,FR,US,201812,1,2,162047,13977 -895,FR,US,201812,4,2,16,8 -896,FR,US,201812,0,1,4521192,327790 -896,FR,US,201812,1,1,1548677,121917 -896,FR,US,201812,1,1,142236,2832 -896,FR,US,201812,1,1,32490,531 -896,FR,US,201812,1,1,3103,1007 -896,FR,US,201812,1,1,66147,7577 -896,FR,US,201812,1,1,2129,2150 -896,FR,US,201812,1,1,2868,343 -896,FR,US,201812,1,1,2389600,967913 -896,FR,US,201812,1,1,103920,8629 -896,FR,US,201812,1,1,11,4 -896,FR,US,201812,1,1,10382,149 -896,FR,US,201812,1,1,1967,19000 -896,FR,US,201812,1,1,473,12 -896,FR,US,201812,1,1,22605,11810 -896,FR,US,201812,1,1,6499706,1968623 -896,FR,US,201812,1,1,1547387,52103 -896,FR,US,201812,1,1,105296,58006 -896,FR,US,201812,1,1,263093,6076 -896,FR,US,201812,1,1,16083191,2298379 -896,FR,US,201812,1,1,2786,7 -896,FR,US,201812,1,1,2747822,391788 -896,FR,US,201812,1,1,484560,85303 -896,FR,US,201812,1,1,127162,73084 -896,FR,US,201812,3,1,3093352,237053 -896,FR,US,201812,3,1,815279,6104 -896,FR,US,201812,3,1,215065,1533 -896,FR,US,201812,3,1,761443,72621 -896,FR,US,201812,3,1,278750,712 -896,FR,US,201812,3,1,86635,363 -896,FR,US,201812,3,1,37982,96 -896,FR,US,201812,3,1,39030,230 -896,FR,US,201812,3,1,12086,489 -896,FR,US,201812,4,1,16617594,144009 -896,FR,US,201812,4,1,36426,701 -896,FR,US,201812,4,1,1886068,25416 -896,FR,US,201812,4,1,79597,411 -896,FR,US,201812,4,1,158,2 -896,FR,US,201812,4,1,34375,1875 -896,FR,US,201812,4,1,93716,1952 -896,FR,US,201812,4,1,234434,153 -896,FR,US,201812,4,1,61,1 -896,FR,US,201812,4,1,64831,341 -896,FR,US,201812,4,1,13432737,54150 -896,FR,US,201812,4,1,592927,1339 -896,FR,US,201812,4,1,242,1 -896,FR,US,201812,4,1,2371,500 -896,FR,US,201812,4,1,2776,109 -896,FR,US,201812,4,1,6203,69 -896,FR,US,201812,0,2,450,4 -896,FR,US,201812,1,2,1543172,78487 -896,FR,US,201812,1,2,32740,3332 -896,FR,US,201812,1,2,48507,3153 -896,FR,US,201812,1,2,84558,10102 -896,FR,US,201812,1,2,67592,20125 -896,FR,US,201812,1,2,6331075,8406528 -896,FR,US,201812,1,2,210,25 -896,FR,US,201812,1,2,12732,1646 -896,FR,US,201812,1,2,18126747,4038564 -896,FR,US,201812,1,2,255633,74502 -896,FR,US,201812,1,2,430715,114300 -896,FR,US,201812,1,2,390984,71400 -896,FR,US,201812,1,2,92523,18000 -896,FR,US,201812,1,2,1814516,406720 -896,FR,US,201812,1,2,59193,15086 -896,FR,US,201812,1,2,57894,18000 -896,FR,US,201812,1,2,154418,36000 -896,FR,US,201812,1,2,300620,17760 -896,FR,US,201812,1,2,1583629,576370 -896,FR,US,201812,1,2,934067,291131 -896,FR,US,201812,1,2,2073044,588320 -896,FR,US,201812,1,2,70421,12771 -896,FR,US,201812,1,2,261632,74000 -896,FR,US,201812,1,2,1513111,581162 -896,FR,US,201812,1,2,789801,86560 -896,FR,US,201812,3,2,1017257,284135 -896,FR,US,201812,3,2,54887,6000 -896,FR,US,201812,3,2,36,1 -896,FR,US,201812,3,2,324561,196800 -896,FR,US,201812,3,2,247144,76625 -896,FR,US,201812,4,2,10253033,171460 -896,FR,US,201812,4,2,109210,18566 -896,FR,US,201812,4,2,911242,7458 -896,FR,US,201812,4,2,1266100,10713 -896,FR,US,201812,4,2,349636,4032 -896,FR,US,201812,4,2,25683,235 -896,FR,US,201812,4,2,15907,1768 -896,FR,US,201812,4,2,113477,2584 -896,FR,US,201812,4,2,137309,2301 -896,FR,US,201812,4,2,2614603,33546 -896,FR,US,201812,4,2,35,10 -896,FR,US,201812,4,2,1589,94 -896,FR,US,201812,4,2,2375,250 -896,FR,US,201812,4,2,5069,360 -896,FR,US,201812,4,2,231,0 -896,FR,US,201812,4,2,21844,29 -896,FR,US,201812,4,2,463899,5630 -896,FR,US,201812,4,2,5827,38 -896,FR,US,201812,4,2,6889348,7275 -910,FR,US,201812,0,1,4881710,39280 -910,FR,US,201812,1,1,7026358,200598 -910,FR,US,201812,1,1,577986,2316 -910,FR,US,201812,1,1,497924,7781 -910,FR,US,201812,1,1,3932019,59333 -910,FR,US,201812,1,1,5661,1945 -910,FR,US,201812,1,1,92280,11842 -910,FR,US,201812,1,1,5163,781 -910,FR,US,201812,1,1,22802,1354 -910,FR,US,201812,1,1,13705,275 -910,FR,US,201812,1,1,123698,5019 -910,FR,US,201812,1,1,9566974,134338 -910,FR,US,201812,1,1,850771,421873 -910,FR,US,201812,1,1,13482,750 -910,FR,US,201812,1,1,1639,428 -910,FR,US,201812,1,1,88178,3388 -910,FR,US,201812,1,1,119416,4901 -910,FR,US,201812,1,1,144544,12897 -910,FR,US,201812,1,1,316908,35875 -910,FR,US,201812,1,1,13671,1277 -910,FR,US,201812,1,1,56074,5805 -910,FR,US,201812,1,1,55707,15672 -910,FR,US,201812,1,1,93926,5957 -910,FR,US,201812,1,1,27345,1330 -910,FR,US,201812,1,1,76200,5760 -910,FR,US,201812,1,1,162961,23157 -910,FR,US,201812,1,1,1221974,113581 -910,FR,US,201812,1,1,14121,435 -910,FR,US,201812,1,1,518097,52353 -910,FR,US,201812,1,1,115102,15296 -910,FR,US,201812,3,1,2236227,12385 -910,FR,US,201812,3,1,1009780,10186 -910,FR,US,201812,3,1,989429,5359 -910,FR,US,201812,3,1,19054870,33459 -910,FR,US,201812,3,1,48819,1854 -910,FR,US,201812,3,1,12760,494 -910,FR,US,201812,3,1,4224,330 -910,FR,US,201812,3,1,243,0 -910,FR,US,201812,3,1,7155,50 -910,FR,US,201812,3,1,1422860,553 -910,FR,US,201812,3,1,49358,2537 -910,FR,US,201812,4,1,239041464,207936 -910,FR,US,201812,4,1,28786,400 -910,FR,US,201812,4,1,5801800,14547 -910,FR,US,201812,4,1,15326,130 -910,FR,US,201812,4,1,435217,1595 -910,FR,US,201812,4,1,5441,350 -910,FR,US,201812,4,1,344174,1610 -910,FR,US,201812,4,1,4105249,37579 -910,FR,US,201812,4,1,127978,4338 -910,FR,US,201812,4,1,508,1 -910,FR,US,201812,4,1,49367,676 -910,FR,US,201812,4,1,1221307,7627 -910,FR,US,201812,4,1,1416,35 -910,FR,US,201812,4,1,8240,111 -910,FR,US,201812,4,1,1826,63 -910,FR,US,201812,4,1,110,0 -910,FR,US,201812,4,1,12881,100 -910,FR,US,201812,4,1,75702191,400114 -910,FR,US,201812,4,1,20211,1161 -910,FR,US,201812,4,1,17080,2 -910,FR,US,201812,4,1,55581,83 -910,FR,US,201812,4,1,1064,3 -910,FR,US,201812,4,1,1930,73 -910,FR,US,201812,4,1,12789,400 -910,FR,US,201812,4,1,556805,3922 -910,FR,US,201812,4,1,338474,1054 -910,FR,US,201812,4,1,42990,28 -910,FR,US,201812,4,1,3601,1 -910,FR,US,201812,4,1,1194255,12122 -910,FR,US,201812,4,1,509099,10234 -910,FR,US,201812,4,1,26710,14 -910,FR,US,201812,4,1,37952,63 -910,FR,US,201812,4,1,3506,70 -910,FR,US,201812,4,1,246567,10 -910,FR,US,201812,4,1,169889,165 -910,FR,US,201812,4,1,10091,286 -910,FR,US,201812,5,1,1092,9 -910,FR,US,201812,9,1,39267089,16059 -910,FR,US,201812,0,2,8722,70 -910,FR,US,201812,1,2,9544051,195240 -910,FR,US,201812,1,2,3731542,22616 -910,FR,US,201812,1,2,976964,57445 -910,FR,US,201812,1,2,1744585,43888 -910,FR,US,201812,1,2,3363,118 -910,FR,US,201812,1,2,196561,34524 -910,FR,US,201812,1,2,20566,4234 -910,FR,US,201812,1,2,72641832,111194 -910,FR,US,201812,1,2,495395,400 -910,FR,US,201812,1,2,5225161,27414 -910,FR,US,201812,1,2,2934660,61951 -910,FR,US,201812,1,2,2206487,40500 -910,FR,US,201812,1,2,2099,111 -910,FR,US,201812,1,2,2668058,0 -910,FR,US,201812,1,2,578168,194 -910,FR,US,201812,1,2,5129905,465982 -910,FR,US,201812,1,2,628650,57600 -910,FR,US,201812,1,2,42773,9768 -910,FR,US,201812,1,2,616792,46773 -910,FR,US,201812,1,2,255950,13302 -910,FR,US,201812,1,2,1158198,488661 -910,FR,US,201812,1,2,894,0 -910,FR,US,201812,1,2,93357,11688 -910,FR,US,201812,1,2,1593529,119425 -910,FR,US,201812,1,2,573743,40717 -910,FR,US,201812,1,2,19775,610 -910,FR,US,201812,1,2,4201048,203752 -910,FR,US,201812,1,2,49056,6341 -910,FR,US,201812,1,2,554465,52634 -910,FR,US,201812,1,2,493132,17476 -910,FR,US,201812,3,2,1351752,37209 -910,FR,US,201812,3,2,179047,21248 -910,FR,US,201812,3,2,16552,745 -910,FR,US,201812,3,2,5952,160 -910,FR,US,201812,3,2,17391,1276 -910,FR,US,201812,3,2,22326,2160 -910,FR,US,201812,3,2,135788,16830 -910,FR,US,201812,4,2,50635187,316417 -910,FR,US,201812,4,2,22847,1136 -910,FR,US,201812,4,2,4313574,57256 -910,FR,US,201812,4,2,382173,500 -910,FR,US,201812,4,2,986,15 -910,FR,US,201812,4,2,8357,379 -910,FR,US,201812,4,2,15496461,17667 -910,FR,US,201812,4,2,81883,9000 -910,FR,US,201812,4,2,107580,2320 -910,FR,US,201812,4,2,2577,6 -910,FR,US,201812,4,2,23501,1 -910,FR,US,201812,4,2,32418586,195510 -910,FR,US,201812,4,2,3207,172 -910,FR,US,201812,4,2,142988,2237 -910,FR,US,201812,4,2,14241,8 -910,FR,US,201812,4,2,114640,612 -910,FR,US,201812,4,2,6934,339 -910,FR,US,201812,4,2,1032,90 -910,FR,US,201812,4,2,31970,130 -910,FR,US,201812,4,2,10308,68 -910,FR,US,201812,4,2,501601,1714 -910,FR,US,201812,4,2,2762185,42460 -910,FR,US,201812,4,2,1757180,1505 -910,FR,US,201812,4,2,111111,11167 -910,FR,US,201812,4,2,20431850,21885 -910,FR,US,201812,5,2,2199,26 -910,FR,US,201812,9,2,344360100,231804 -920,FR,US,201812,0,1,42305,4508 -920,FR,US,201812,1,1,782873,49322 -920,FR,US,201812,1,1,6420,419 -920,FR,US,201812,1,1,1108,36 -920,FR,US,201812,1,1,34832,702 -920,FR,US,201812,1,1,5044,151 -920,FR,US,201812,1,1,5121,940 -920,FR,US,201812,1,1,195578,20667 -920,FR,US,201812,1,1,22679,1886 -920,FR,US,201812,1,1,14479,705 -920,FR,US,201812,1,1,345,22 -920,FR,US,201812,1,1,43831,5552 -920,FR,US,201812,1,1,1339373,171307 -920,FR,US,201812,1,1,935860,81172 -920,FR,US,201812,1,1,56965,5882 -920,FR,US,201812,1,1,760138,74085 -920,FR,US,201812,3,1,23244,542 -920,FR,US,201812,3,1,1866439,167230 -920,FR,US,201812,4,1,54548,1767 -920,FR,US,201812,4,1,19789,522 -920,FR,US,201812,4,1,2254,96 -920,FR,US,201812,4,1,9202,562 -920,FR,US,201812,4,1,164,0 -920,FR,US,201812,4,1,22997,1200 -920,FR,US,201812,4,1,686114,15294 -920,FR,US,201812,4,1,127745,1328 -920,FR,US,201812,4,1,10267,554 -920,FR,US,201812,0,2,2750,9 -920,FR,US,201812,1,2,512340,52641 -920,FR,US,201812,1,2,4333,351 -920,FR,US,201812,1,2,68335,8240 -920,FR,US,201812,1,2,262398,35854 -920,FR,US,201812,1,2,125096,14010 -920,FR,US,201812,1,2,627292,78149 -920,FR,US,201812,1,2,1091229,94818 -920,FR,US,201812,1,2,1827016,198241 -920,FR,US,201812,1,2,77542,12424 -920,FR,US,201812,1,2,337111,20015 -920,FR,US,201812,1,2,824813,102460 -920,FR,US,201812,1,2,17887,933 -920,FR,US,201812,1,2,369850,47991 -920,FR,US,201812,1,2,736620,55024 -920,FR,US,201812,1,2,86473,10592 -920,FR,US,201812,1,2,254021,47188 -920,FR,US,201812,3,2,546,59 -920,FR,US,201812,3,2,1751,24 -920,FR,US,201812,3,2,901723,47430 -920,FR,US,201812,4,2,268647,7940 -920,FR,US,201812,4,2,5634,124 -920,FR,US,201812,4,2,1098,73 -920,FR,US,201812,4,2,718,90 -920,FR,US,201812,4,2,446708,17336 -920,FR,US,201812,4,2,7414,274 -920,FR,US,201812,4,2,8251,770 -920,FR,US,201812,4,2,19691,34 -920,FR,US,201812,4,2,43103,9990 -920,FR,US,201812,4,2,23873,1899 -920,FR,US,201812,4,2,85660,1817 -931,FR,US,201812,0,1,4994947,122190 -931,FR,US,201812,1,1,594499,19724 -931,FR,US,201812,1,1,24925,317 -931,FR,US,201812,1,1,1505,318 -931,FR,US,201812,1,1,19957,398 -931,FR,US,201812,1,1,12468,374 -931,FR,US,201812,1,1,1662,97 -931,FR,US,201812,1,1,42985,795 -931,FR,US,201812,1,1,1968,855 -931,FR,US,201812,1,1,759066,16377 -931,FR,US,201812,1,1,25,1 -931,FR,US,201812,1,1,65926,2628 -931,FR,US,201812,1,1,469,3 -931,FR,US,201812,1,1,33058,1600 -931,FR,US,201812,1,1,260,49 -931,FR,US,201812,1,1,57491,1762 -931,FR,US,201812,1,1,280201,8327 -931,FR,US,201812,1,1,42046,424 -931,FR,US,201812,1,1,52119,1783 -931,FR,US,201812,1,1,120553,9401 -931,FR,US,201812,1,1,2013657,115304 -931,FR,US,201812,1,1,87899,4299 -931,FR,US,201812,1,1,18997,733 -931,FR,US,201812,1,1,45808,1771 -931,FR,US,201812,1,1,293289,18797 -931,FR,US,201812,1,1,14951,1105 -931,FR,US,201812,1,1,58,1 -931,FR,US,201812,1,1,1223846,81821 -931,FR,US,201812,1,1,50528,8200 -931,FR,US,201812,1,1,2884591,725510 -931,FR,US,201812,1,1,10714,466 -931,FR,US,201812,1,1,1738192,110758 -931,FR,US,201812,3,1,11619593,32804 -931,FR,US,201812,3,1,211,7 -931,FR,US,201812,3,1,195135,693 -931,FR,US,201812,3,1,716,1 -931,FR,US,201812,3,1,65705,448 -931,FR,US,201812,3,1,218852,1971 -931,FR,US,201812,3,1,30121,435 -931,FR,US,201812,3,1,433,13 -931,FR,US,201812,3,1,12067,11 -931,FR,US,201812,3,1,9739,51 -931,FR,US,201812,3,1,716671,2494 -931,FR,US,201812,3,1,4014,110 -931,FR,US,201812,3,1,6914,30 -931,FR,US,201812,4,1,46154597,110267 -931,FR,US,201812,4,1,138953,2172 -931,FR,US,201812,4,1,24509510,29644 -931,FR,US,201812,4,1,747,0 -931,FR,US,201812,4,1,893537,3094 -931,FR,US,201812,4,1,30467,229 -931,FR,US,201812,4,1,45731,110 -931,FR,US,201812,4,1,847,2 -931,FR,US,201812,4,1,22325,126 -931,FR,US,201812,4,1,8578687,118424 -931,FR,US,201812,4,1,26958,720 -931,FR,US,201812,4,1,1807,1 -931,FR,US,201812,4,1,9495,147 -931,FR,US,201812,4,1,481514,747 -931,FR,US,201812,4,1,59998,189 -931,FR,US,201812,4,1,70045,307 -931,FR,US,201812,4,1,910664,10433 -931,FR,US,201812,4,1,18484,32 -931,FR,US,201812,4,1,16344,621 -931,FR,US,201812,4,1,510,81 -931,FR,US,201812,4,1,3028,2 -931,FR,US,201812,4,1,29763,10 -931,FR,US,201812,4,1,511,4 -931,FR,US,201812,4,1,13750,150 -931,FR,US,201812,4,1,182557,439 -931,FR,US,201812,4,1,123975282,246660 -931,FR,US,201812,4,1,665202,4442 -931,FR,US,201812,4,1,23642,36 -931,FR,US,201812,4,1,148649,316 -931,FR,US,201812,4,1,547959,139 -931,FR,US,201812,4,1,333838,5838 -931,FR,US,201812,4,1,117096,2490 -931,FR,US,201812,4,1,323882,816 -931,FR,US,201812,4,1,116013,383 -931,FR,US,201812,4,1,6625,3 -931,FR,US,201812,4,1,3023422,1289 -931,FR,US,201812,4,1,165339,779 -931,FR,US,201812,4,1,273523,3544 -931,FR,US,201812,4,1,1136,9 -931,FR,US,201812,4,1,466,0 -931,FR,US,201812,4,1,152088,213 -931,FR,US,201812,4,1,51420,188 -931,FR,US,201812,4,1,1199,9 -931,FR,US,201812,4,1,50547,13 -931,FR,US,201812,4,1,30381,24 -931,FR,US,201812,5,1,1093,4 -931,FR,US,201812,0,2,48979,350 -931,FR,US,201812,1,2,17272296,462189 -931,FR,US,201812,1,2,57889,2274 -931,FR,US,201812,1,2,471573,15090 -931,FR,US,201812,1,2,23731,611 -931,FR,US,201812,1,2,98747,1746 -931,FR,US,201812,1,2,203167,9835 -931,FR,US,201812,1,2,10933,746 -931,FR,US,201812,1,2,15219,781 -931,FR,US,201812,1,2,656684,81346 -931,FR,US,201812,1,2,65659,745 -931,FR,US,201812,1,2,345969,14074 -931,FR,US,201812,1,2,62460,2742 -931,FR,US,201812,1,2,60244,793 -931,FR,US,201812,1,2,159663,3947 -931,FR,US,201812,1,2,228464,5596 -931,FR,US,201812,1,2,9975288,407633 -931,FR,US,201812,1,2,521872,9450 -931,FR,US,201812,1,2,702347,43697 -931,FR,US,201812,1,2,240800,8100 -931,FR,US,201812,1,2,261543,1092 -931,FR,US,201812,1,2,52438,39 -931,FR,US,201812,1,2,4081973,1048986 -931,FR,US,201812,1,2,5554,223 -931,FR,US,201812,1,2,563781,9731 -931,FR,US,201812,1,2,97121,3015 -931,FR,US,201812,1,2,973265,119125 -931,FR,US,201812,1,2,165081,3096 -931,FR,US,201812,1,2,5057347,228412 -931,FR,US,201812,1,2,26489,458 -931,FR,US,201812,1,2,1992481,25370 -931,FR,US,201812,1,2,539988,27718 -931,FR,US,201812,3,2,1705544,26885 -931,FR,US,201812,3,2,45403,132 -931,FR,US,201812,3,2,17298,314 -931,FR,US,201812,3,2,2100,50 -931,FR,US,201812,3,2,147508,1215 -931,FR,US,201812,3,2,55108,2910 -931,FR,US,201812,3,2,192634,25285 -931,FR,US,201812,4,2,58007270,318054 -931,FR,US,201812,4,2,632666,6540 -931,FR,US,201812,4,2,6960442,15580 -931,FR,US,201812,4,2,46875,787 -931,FR,US,201812,4,2,884534,4416 -931,FR,US,201812,4,2,102132,62 -931,FR,US,201812,4,2,32965,502 -931,FR,US,201812,4,2,2358543,3515 -931,FR,US,201812,4,2,2225,1 -931,FR,US,201812,4,2,1846482,22147 -931,FR,US,201812,4,2,208175,2515 -931,FR,US,201812,4,2,10517,100 -931,FR,US,201812,4,2,13700,362 -931,FR,US,201812,4,2,27943171,110151 -931,FR,US,201812,4,2,237747,1321 -931,FR,US,201812,4,2,124929,541 -931,FR,US,201812,4,2,72864,2240 -931,FR,US,201812,4,2,287560,2602 -931,FR,US,201812,4,2,1345007,8642 -931,FR,US,201812,4,2,190689,1373 -931,FR,US,201812,4,2,77716,389 -931,FR,US,201812,4,2,545715,4988 -931,FR,US,201812,4,2,950,200 -931,FR,US,201812,4,2,4786,60 -931,FR,US,201812,4,2,723900,10261 -931,FR,US,201812,4,2,2850345,8664 -931,FR,US,201812,4,2,11606883,254429 -931,FR,US,201812,4,2,14051280,19612 -931,FR,US,201812,4,2,42712429,89032 -931,FR,US,201812,5,2,3636,0 -939,FR,US,201812,0,1,9342428,442738 -939,FR,US,201812,1,1,2184413,126017 -939,FR,US,201812,1,1,46666,2631 -939,FR,US,201812,1,1,315119,11694 -939,FR,US,201812,1,1,34796,2430 -939,FR,US,201812,1,1,2655,825 -939,FR,US,201812,1,1,95383,3257 -939,FR,US,201812,1,1,23460,1065 -939,FR,US,201812,1,1,413605,61198 -939,FR,US,201812,1,1,17266,1258 -939,FR,US,201812,1,1,11766,773 -939,FR,US,201812,1,1,20465,1809 -939,FR,US,201812,1,1,1485678,53318 -939,FR,US,201812,1,1,5756,129 -939,FR,US,201812,1,1,1293152,77219 -939,FR,US,201812,1,1,14662,1610 -939,FR,US,201812,1,1,5942,290 -939,FR,US,201812,1,1,923,12 -939,FR,US,201812,1,1,10080,823 -939,FR,US,201812,1,1,359236,20659 -939,FR,US,201812,1,1,6868,216 -939,FR,US,201812,1,1,3412582,308042 -939,FR,US,201812,1,1,4274446,395270 -939,FR,US,201812,1,1,988088,59727 -939,FR,US,201812,1,1,350216,15945 -939,FR,US,201812,1,1,111609,8076 -939,FR,US,201812,1,1,208,4 -939,FR,US,201812,1,1,3975027,474100 -939,FR,US,201812,1,1,418812,32594 -939,FR,US,201812,1,1,81982,14272 -939,FR,US,201812,1,1,8064626,445856 -939,FR,US,201812,1,1,511,20 -939,FR,US,201812,1,1,481833,34638 -939,FR,US,201812,1,1,7479621,424963 -939,FR,US,201812,1,1,123504,11548 -939,FR,US,201812,1,1,58955,5202 -939,FR,US,201812,1,1,599605,21005 -939,FR,US,201812,1,1,40,3 -939,FR,US,201812,1,1,57095,6500 -939,FR,US,201812,1,1,2718658,157548 -939,FR,US,201812,1,1,216048,11994 -939,FR,US,201812,3,1,7562944,105743 -939,FR,US,201812,3,1,43825,1972 -939,FR,US,201812,3,1,1622082,2268 -939,FR,US,201812,3,1,9693,7 -939,FR,US,201812,3,1,30776,377 -939,FR,US,201812,3,1,27522,82 -939,FR,US,201812,3,1,99259,547 -939,FR,US,201812,3,1,24305,667 -939,FR,US,201812,3,1,17954,234 -939,FR,US,201812,3,1,5432,29 -939,FR,US,201812,3,1,25509,11 -939,FR,US,201812,3,1,25567457,40857 -939,FR,US,201812,3,1,66039,1998 -939,FR,US,201812,3,1,1730,57 -939,FR,US,201812,3,1,6311,31 -939,FR,US,201812,3,1,23,1 -939,FR,US,201812,3,1,173931,22909 -939,FR,US,201812,3,1,70,3 -939,FR,US,201812,4,1,94153811,363284 -939,FR,US,201812,4,1,578493,5884 -939,FR,US,201812,4,1,76509267,112409 -939,FR,US,201812,4,1,795,0 -939,FR,US,201812,4,1,376246,2352 -939,FR,US,201812,4,1,25963,31 -939,FR,US,201812,4,1,3145,120 -939,FR,US,201812,4,1,7084037,28416 -939,FR,US,201812,4,1,61,0 -939,FR,US,201812,4,1,87467,1853 -939,FR,US,201812,4,1,395,2 -939,FR,US,201812,4,1,5170163,19118 -939,FR,US,201812,4,1,87261,168 -939,FR,US,201812,4,1,150341,1093 -939,FR,US,201812,4,1,7350494,30384 -939,FR,US,201812,4,1,563342,6425 -939,FR,US,201812,4,1,350599,1841 -939,FR,US,201812,4,1,55523,45 -939,FR,US,201812,4,1,6826,864 -939,FR,US,201812,4,1,6149,26 -939,FR,US,201812,4,1,2630,1 -939,FR,US,201812,4,1,1315,25 -939,FR,US,201812,4,1,419228156,674009 -939,FR,US,201812,4,1,1863952,16395 -939,FR,US,201812,4,1,2726586,14334 -939,FR,US,201812,4,1,142659,2354 -939,FR,US,201812,4,1,1850109,185 -939,FR,US,201812,4,1,26526793,16796 -939,FR,US,201812,4,1,384852,4865 -939,FR,US,201812,4,1,106038,309 -939,FR,US,201812,4,1,13216,860 -939,FR,US,201812,4,1,175594,865 -939,FR,US,201812,4,1,82662,15 -939,FR,US,201812,4,1,6369989,5685 -939,FR,US,201812,4,1,1067041,5571 -939,FR,US,201812,4,1,62055004,24860 -939,FR,US,201812,4,1,87202,1178 -939,FR,US,201812,4,1,86452,543 -939,FR,US,201812,4,1,7893,1 -939,FR,US,201812,4,1,75654,169 -939,FR,US,201812,4,1,168409,2561 -939,FR,US,201812,4,1,23570,149 -939,FR,US,201812,4,1,17449,1953 -939,FR,US,201812,4,1,5258,131 -939,FR,US,201812,4,1,25032,6 -939,FR,US,201812,5,1,573,0 -939,FR,US,201812,8,1,4990,16 -939,FR,US,201812,0,2,58807,559 -939,FR,US,201812,1,2,38351286,2483099 -939,FR,US,201812,1,2,198899,5621 -939,FR,US,201812,1,2,815319,29648 -939,FR,US,201812,1,2,1271709,171175 -939,FR,US,201812,1,2,42930,2120 -939,FR,US,201812,1,2,15456,605 -939,FR,US,201812,1,2,1330153,189852 -939,FR,US,201812,1,2,58391,3776 -939,FR,US,201812,1,2,149745,13300 -939,FR,US,201812,1,2,9373,183 -939,FR,US,201812,1,2,153861,29015 -939,FR,US,201812,1,2,19623,457 -939,FR,US,201812,1,2,1877691,43660 -939,FR,US,201812,1,2,15597,551 -939,FR,US,201812,1,2,2156737,71430 -939,FR,US,201812,1,2,550795,22895 -939,FR,US,201812,1,2,368261,21210 -939,FR,US,201812,1,2,23433,1301 -939,FR,US,201812,1,2,246487,4913 -939,FR,US,201812,1,2,3242597,412153 -939,FR,US,201812,1,2,25266973,2306223 -939,FR,US,201812,1,2,1340248,121836 -939,FR,US,201812,1,2,488955,40686 -939,FR,US,201812,1,2,194,91 -939,FR,US,201812,1,2,922045,97241 -939,FR,US,201812,1,2,195778,9410 -939,FR,US,201812,1,2,19678,3175 -939,FR,US,201812,1,2,1879364,163248 -939,FR,US,201812,1,2,708118,39678 -939,FR,US,201812,1,2,1005942,173962 -939,FR,US,201812,1,2,1013317,57975 -939,FR,US,201812,1,2,4326577,338794 -939,FR,US,201812,1,2,201798,4365 -939,FR,US,201812,1,2,2890247,171096 -939,FR,US,201812,1,2,590355,14453 -939,FR,US,201812,1,2,18406935,1084782 -939,FR,US,201812,1,2,34615,4066 -939,FR,US,201812,1,2,82500,9215 -939,FR,US,201812,1,2,802954,19067 -939,FR,US,201812,1,2,890614,24527 -939,FR,US,201812,1,2,1225436,51876 -939,FR,US,201812,1,2,73965,6219 -939,FR,US,201812,1,2,4846838,316377 -939,FR,US,201812,1,2,234211,9436 -939,FR,US,201812,3,2,11359730,467207 -939,FR,US,201812,3,2,465558,11230 -939,FR,US,201812,3,2,71895,3256 -939,FR,US,201812,3,2,1265,79 -939,FR,US,201812,3,2,50434,2371 -939,FR,US,201812,3,2,6643,10 -939,FR,US,201812,3,2,1253435,19518 -939,FR,US,201812,3,2,64770,850 -939,FR,US,201812,3,2,247682,5860 -939,FR,US,201812,3,2,10022,3627 -939,FR,US,201812,3,2,117605,7090 -939,FR,US,201812,4,2,427942436,706047 -939,FR,US,201812,4,2,1359488,17826 -939,FR,US,201812,4,2,5778600,28772 -939,FR,US,201812,4,2,2623,15 -939,FR,US,201812,4,2,1376720,13052 -939,FR,US,201812,4,2,589,9 -939,FR,US,201812,4,2,83693,1086 -939,FR,US,201812,4,2,144,0 -939,FR,US,201812,4,2,238960,9381 -939,FR,US,201812,4,2,6572668,64787 -939,FR,US,201812,4,2,2654,60 -939,FR,US,201812,4,2,2004079,27407 -939,FR,US,201812,4,2,603,64 -939,FR,US,201812,4,2,163849,3009 -939,FR,US,201812,4,2,300951,4100 -939,FR,US,201812,4,2,12348,256 -939,FR,US,201812,4,2,113218,2080 -939,FR,US,201812,4,2,27253,3538 -939,FR,US,201812,4,2,23165302,195953 -939,FR,US,201812,4,2,29299,609 -939,FR,US,201812,4,2,40600,4760 -939,FR,US,201812,4,2,486274,4460 -939,FR,US,201812,4,2,2885,31 -939,FR,US,201812,4,2,4991,23 -939,FR,US,201812,4,2,148573,1304 -939,FR,US,201812,4,2,1241232,8518 -939,FR,US,201812,4,2,32145,550 -939,FR,US,201812,4,2,4533,0 -939,FR,US,201812,4,2,1794583,7831 -939,FR,US,201812,4,2,71413,1000 -939,FR,US,201812,4,2,60800,860 -939,FR,US,201812,4,2,41027,470 -939,FR,US,201812,4,2,98068,18681 -939,FR,US,201812,4,2,393388,2007 -939,FR,US,201812,4,2,4186801,258396 -939,FR,US,201812,4,2,377,22 -939,FR,US,201812,4,2,2766754,9020 -939,FR,US,201812,4,2,36624,3565 -939,FR,US,201812,4,2,13334595,64235 -939,FR,US,201812,5,2,2043,15 -939,FR,US,201812,8,2,182461,10860 -941,FR,US,201812,0,1,10321,0 -941,FR,US,201812,1,1,2380,746 -941,FR,US,201812,1,1,1853,90 -941,FR,US,201812,1,1,39835,7813 -941,FR,US,201812,1,1,25525,5050 -941,FR,US,201812,1,1,61492,20177 -941,FR,US,201812,1,1,8368,401 -941,FR,US,201812,3,1,6519,219 -941,FR,US,201812,3,1,52617,18625 -941,FR,US,201812,3,1,2320,160 -941,FR,US,201812,4,1,102302,3294 -941,FR,US,201812,4,1,23889,384 -941,FR,US,201812,4,1,721,100 -941,FR,US,201812,4,1,292996,3581 -941,FR,US,201812,1,2,86887,14699 -941,FR,US,201812,1,2,79,13 -941,FR,US,201812,1,2,7326,400 -941,FR,US,201812,1,2,22329,2630 -941,FR,US,201812,1,2,21444,730 -941,FR,US,201812,1,2,6777,510 -941,FR,US,201812,1,2,372138,21100 -941,FR,US,201812,1,2,23124,4310 -941,FR,US,201812,1,2,11643,470 -941,FR,US,201812,1,2,719185,121703 -941,FR,US,201812,1,2,52941,1706 -941,FR,US,201812,3,2,1658,27 -941,FR,US,201812,4,2,43793,1240 -941,FR,US,201812,4,2,28825,847 -941,FR,US,201812,4,2,6232,267 -941,FR,US,201812,4,2,96898,1000 -941,FR,US,201812,4,2,4050,480 -941,FR,US,201812,4,2,4582,153 -949,FR,US,201812,0,1,1850715,38374 -949,FR,US,201812,1,1,579147,40301 -949,FR,US,201812,1,1,19,0 -949,FR,US,201812,1,1,32456,1267 -949,FR,US,201812,1,1,43574,1255 -949,FR,US,201812,1,1,11721,493 -949,FR,US,201812,1,1,25391,3563 -949,FR,US,201812,1,1,104,24 -949,FR,US,201812,1,1,4836,484 -949,FR,US,201812,1,1,1149,466 -949,FR,US,201812,1,1,381189,28130 -949,FR,US,201812,1,1,2339,240 -949,FR,US,201812,1,1,474250,31468 -949,FR,US,201812,1,1,2905,105 -949,FR,US,201812,1,1,100,48 -949,FR,US,201812,1,1,3671,356 -949,FR,US,201812,1,1,121,23 -949,FR,US,201812,1,1,62437,2907 -949,FR,US,201812,1,1,5671,538 -949,FR,US,201812,1,1,5322,425 -949,FR,US,201812,1,1,50,2 -949,FR,US,201812,1,1,22508,1665 -949,FR,US,201812,1,1,114048,14345 -949,FR,US,201812,1,1,1567819,254563 -949,FR,US,201812,1,1,12976,552 -949,FR,US,201812,1,1,189090,17982 -949,FR,US,201812,1,1,13415,3125 -949,FR,US,201812,1,1,23243,1050 -949,FR,US,201812,1,1,380405,61444 -949,FR,US,201812,1,1,13,1 -949,FR,US,201812,1,1,688689,75119 -949,FR,US,201812,1,1,1208516,157140 -949,FR,US,201812,1,1,26474,5717 -949,FR,US,201812,1,1,617720,39087 -949,FR,US,201812,1,1,481,16 -949,FR,US,201812,1,1,347,266 -949,FR,US,201812,3,1,763357,7544 -949,FR,US,201812,3,1,62828,477 -949,FR,US,201812,3,1,723988,836 -949,FR,US,201812,3,1,1878,7 -949,FR,US,201812,3,1,7446,83 -949,FR,US,201812,3,1,12051,30 -949,FR,US,201812,3,1,47,2 -949,FR,US,201812,3,1,35,1 -949,FR,US,201812,3,1,4476,1 -949,FR,US,201812,3,1,1160942,3692 -949,FR,US,201812,3,1,39621,1532 -949,FR,US,201812,3,1,171,8 -949,FR,US,201812,4,1,6301030,55500 -949,FR,US,201812,4,1,182486,617 -949,FR,US,201812,4,1,3896546,10223 -949,FR,US,201812,4,1,876761,4261 -949,FR,US,201812,4,1,504,24 -949,FR,US,201812,4,1,434505,11852 -949,FR,US,201812,4,1,339279,500 -949,FR,US,201812,4,1,306,0 -949,FR,US,201812,4,1,149644,736 -949,FR,US,201812,4,1,382,12 -949,FR,US,201812,4,1,5820,20 -949,FR,US,201812,4,1,30397,122 -949,FR,US,201812,4,1,7706,164 -949,FR,US,201812,4,1,165406,623 -949,FR,US,201812,4,1,482,3 -949,FR,US,201812,4,1,9050,81 -949,FR,US,201812,4,1,396,6 -949,FR,US,201812,4,1,2293,300 -949,FR,US,201812,4,1,33277025,101912 -949,FR,US,201812,4,1,351942,5013 -949,FR,US,201812,4,1,19353,73 -949,FR,US,201812,4,1,45384,37 -949,FR,US,201812,4,1,141076,4004 -949,FR,US,201812,4,1,1647,7 -949,FR,US,201812,4,1,2163,3 -949,FR,US,201812,4,1,66461,800 -949,FR,US,201812,4,1,11929,76 -949,FR,US,201812,4,1,3921,18 -949,FR,US,201812,4,1,536,7 -949,FR,US,201812,4,1,179378,5159 -949,FR,US,201812,4,1,2112,2 -949,FR,US,201812,4,1,223367,594 -949,FR,US,201812,4,1,176122,1582 -949,FR,US,201812,4,1,383,25 -949,FR,US,201812,5,1,515,0 -949,FR,US,201812,0,2,16448,174 -949,FR,US,201812,1,2,2419524,154337 -949,FR,US,201812,1,2,68480,3800 -949,FR,US,201812,1,2,32124,3460 -949,FR,US,201812,1,2,114663,7323 -949,FR,US,201812,1,2,273675,122671 -949,FR,US,201812,1,2,272338,2884 -949,FR,US,201812,1,2,9276,1436 -949,FR,US,201812,1,2,16274,924 -949,FR,US,201812,1,2,7420,578 -949,FR,US,201812,1,2,123350,7764 -949,FR,US,201812,1,2,17907,318 -949,FR,US,201812,1,2,1170970,59304 -949,FR,US,201812,1,2,135026,5206 -949,FR,US,201812,1,2,4120,150 -949,FR,US,201812,1,2,10550,289 -949,FR,US,201812,1,2,89717,1329 -949,FR,US,201812,1,2,36093,2753 -949,FR,US,201812,1,2,91020,7321 -949,FR,US,201812,1,2,4750797,272825 -949,FR,US,201812,1,2,256588,16805 -949,FR,US,201812,1,2,473347,91524 -949,FR,US,201812,1,2,49280,22093 -949,FR,US,201812,1,2,70165,14382 -949,FR,US,201812,1,2,33835,14529 -949,FR,US,201812,1,2,311832,111343 -949,FR,US,201812,1,2,569498,34745 -949,FR,US,201812,1,2,398281,83967 -949,FR,US,201812,1,2,2318548,162118 -949,FR,US,201812,1,2,728,86 -949,FR,US,201812,1,2,8525,91 -949,FR,US,201812,1,2,55066,11453 -949,FR,US,201812,1,2,280431,22207 -949,FR,US,201812,1,2,153821,9900 -949,FR,US,201812,2,2,97300,2866 -949,FR,US,201812,3,2,1034672,204314 -949,FR,US,201812,3,2,26639,6968 -949,FR,US,201812,3,2,53792,24980 -949,FR,US,201812,3,2,111,5 -949,FR,US,201812,3,2,217946,5037 -949,FR,US,201812,3,2,85033,13606 -949,FR,US,201812,3,2,4302,188 -949,FR,US,201812,4,2,25649246,445738 -949,FR,US,201812,4,2,66157,493 -949,FR,US,201812,4,2,1576826,14262 -949,FR,US,201812,4,2,135,85 -949,FR,US,201812,4,2,59670,889 -949,FR,US,201812,4,2,79173,2304 -949,FR,US,201812,4,2,10754,93 -949,FR,US,201812,4,2,37981,2561 -949,FR,US,201812,4,2,98020,2125 -949,FR,US,201812,4,2,3230214,45350 -949,FR,US,201812,4,2,5332,31 -949,FR,US,201812,4,2,104683,1441 -949,FR,US,201812,4,2,38432,150 -949,FR,US,201812,4,2,196809,9125 -949,FR,US,201812,4,2,20694,330 -949,FR,US,201812,4,2,5615,900 -949,FR,US,201812,4,2,4896,3 -949,FR,US,201812,4,2,408352,1628 -949,FR,US,201812,4,2,293116,21414 -949,FR,US,201812,4,2,496843,2098 -949,FR,US,201812,4,2,1421451,71960 -949,FR,US,201812,4,2,763153,5658 -949,FR,US,201812,4,2,24434,2168 -949,FR,US,201812,4,2,3852746,23922 -949,FR,US,201812,5,2,13605,86 -951,FR,US,201812,0,1,4003,86 -951,FR,US,201812,1,1,246,4 -951,FR,US,201812,1,1,268,7 -951,FR,US,201812,1,1,68482,40665 -951,FR,US,201812,1,1,1056,176 -951,FR,US,201812,1,1,196913,151602 -951,FR,US,201812,1,1,52075,27217 -951,FR,US,201812,1,1,2009,210 -951,FR,US,201812,1,1,341617,235927 -951,FR,US,201812,1,1,78761,341473 -951,FR,US,201812,1,1,519197,2669 -951,FR,US,201812,3,1,9080,173 -951,FR,US,201812,3,1,765349,18923 -951,FR,US,201812,3,1,112,1 -951,FR,US,201812,3,1,855,8 -951,FR,US,201812,3,1,16009,109 -951,FR,US,201812,4,1,720,34 -951,FR,US,201812,4,1,18604,62 -951,FR,US,201812,4,1,1039,9 -951,FR,US,201812,4,1,1659,93 -951,FR,US,201812,4,1,165,0 -951,FR,US,201812,4,1,46715,2500 -951,FR,US,201812,4,1,439352,4482 -951,FR,US,201812,4,1,357909,1011 -951,FR,US,201812,4,1,99,1 -951,FR,US,201812,0,2,125,4 -951,FR,US,201812,1,2,3196,275 -951,FR,US,201812,1,2,163885,15503 -951,FR,US,201812,1,2,910541,71416 -951,FR,US,201812,1,2,491955,190617 -951,FR,US,201812,1,2,36,0 -951,FR,US,201812,1,2,1634,6 -951,FR,US,201812,1,2,118,0 -951,FR,US,201812,1,2,1237938,388040 -951,FR,US,201812,1,2,922,0 -951,FR,US,201812,1,2,383231,23733 -951,FR,US,201812,3,2,11815,53 -951,FR,US,201812,3,2,91587,10409 -951,FR,US,201812,3,2,64330,846 -951,FR,US,201812,4,2,2142500,23137 -951,FR,US,201812,4,2,521252,914 -951,FR,US,201812,4,2,62931,105 -951,FR,US,201812,4,2,843053,8360 -951,FR,US,201812,4,2,40,460 -951,FR,US,201812,4,2,42764,2000 -951,FR,US,201812,4,2,6169,1130 -951,FR,US,201812,4,2,11301,227 -951,FR,US,201812,4,2,43865,638 -952,FR,US,201812,0,1,668128,1330 -952,FR,US,201812,1,1,5214,1164 -952,FR,US,201812,1,1,10004,221 -952,FR,US,201812,1,1,10989,1407 -952,FR,US,201812,1,1,496423,22295 -952,FR,US,201812,1,1,4351,602 -952,FR,US,201812,1,1,2296,110 -952,FR,US,201812,1,1,2332,76 -952,FR,US,201812,1,1,3956,940 -952,FR,US,201812,1,1,1660,345 -952,FR,US,201812,1,1,33148,793 -952,FR,US,201812,1,1,870,28 -952,FR,US,201812,1,1,11927,11043 -952,FR,US,201812,1,1,99887,40586 -952,FR,US,201812,1,1,290866,14419 -952,FR,US,201812,1,1,97492,5316 -952,FR,US,201812,1,1,105250,26854 -952,FR,US,201812,1,1,59678,16893 -952,FR,US,201812,3,1,109356,788 -952,FR,US,201812,3,1,926,3 -952,FR,US,201812,3,1,1194,11 -952,FR,US,201812,3,1,459,0 -952,FR,US,201812,3,1,18283,73 -952,FR,US,201812,3,1,1368,2 -952,FR,US,201812,3,1,998,1 -952,FR,US,201812,3,1,22081,1523 -952,FR,US,201812,3,1,107,1 -952,FR,US,201812,4,1,704640,5639 -952,FR,US,201812,4,1,32810,281 -952,FR,US,201812,4,1,114132,597 -952,FR,US,201812,4,1,10456,328 -952,FR,US,201812,4,1,1634,78 -952,FR,US,201812,4,1,7366,5 -952,FR,US,201812,4,1,44670,347 -952,FR,US,201812,4,1,3565186,16442 -952,FR,US,201812,4,1,1687,0 -952,FR,US,201812,4,1,1554,0 -952,FR,US,201812,4,1,100295,279 -952,FR,US,201812,4,1,427,61 -952,FR,US,201812,4,1,4066,4 -952,FR,US,201812,4,1,5531,2 -952,FR,US,201812,5,1,1606,3 -952,FR,US,201812,0,2,12553,132 -952,FR,US,201812,1,2,638279,43419 -952,FR,US,201812,1,2,174997,4410 -952,FR,US,201812,1,2,6416,1153 -952,FR,US,201812,1,2,25538,9904 -952,FR,US,201812,1,2,81864,25200 -952,FR,US,201812,1,2,94259,3616 -952,FR,US,201812,1,2,42824,1478 -952,FR,US,201812,1,2,12515,1360 -952,FR,US,201812,1,2,851242,645692 -952,FR,US,201812,1,2,74120,46963 -952,FR,US,201812,1,2,818817,339324 -952,FR,US,201812,1,2,397320,621633 -952,FR,US,201812,1,2,22988,8744 -952,FR,US,201812,1,2,163509,18099 -952,FR,US,201812,1,2,292103,555 -952,FR,US,201812,1,2,64125,10590 -952,FR,US,201812,1,2,116499,280225 -952,FR,US,201812,1,2,1220621,463838 -952,FR,US,201812,1,2,2636359,1218636 -952,FR,US,201812,1,2,20590,3370 -952,FR,US,201812,1,2,191502,27312 -952,FR,US,201812,1,2,232165,48008 -952,FR,US,201812,1,2,598090,298660 -952,FR,US,201812,3,2,71861,2688 -952,FR,US,201812,3,2,4900,175 -952,FR,US,201812,3,2,2327,963 -952,FR,US,201812,3,2,817856,393800 -952,FR,US,201812,4,2,4737319,65401 -952,FR,US,201812,4,2,353435,1857 -952,FR,US,201812,4,2,43686,155 -952,FR,US,201812,4,2,703,55 -952,FR,US,201812,4,2,1776,239 -952,FR,US,201812,4,2,41720,384 -952,FR,US,201812,4,2,61538179,592 -952,FR,US,201812,4,2,948759,14432 -952,FR,US,201812,4,2,910,84 -952,FR,US,201812,4,2,133983,16470 -952,FR,US,201812,4,2,179468,1087 -952,FR,US,201812,4,2,848384,6596 -952,FR,US,201812,5,2,7296,68 -961,FR,US,201812,0,1,26260,509 -961,FR,US,201812,1,1,2109,300 -961,FR,US,201812,1,1,174,10 -961,FR,US,201812,1,1,1355,18 -961,FR,US,201812,3,1,30510,107 -961,FR,US,201812,3,1,126,20 -961,FR,US,201812,3,1,7988,8 -961,FR,US,201812,4,1,103308,1241 -961,FR,US,201812,4,1,3604,91 -961,FR,US,201812,4,1,290,7 -961,FR,US,201812,4,1,467,18 -961,FR,US,201812,4,1,1337227,2860 -961,FR,US,201812,4,1,3152288,630 -961,FR,US,201812,4,1,44,1 -961,FR,US,201812,5,1,145,0 -961,FR,US,201812,0,2,80,2 -961,FR,US,201812,1,2,21334,290 -961,FR,US,201812,1,2,40653,808 -961,FR,US,201812,1,2,291623,8921 -961,FR,US,201812,1,2,91239,2304 -961,FR,US,201812,1,2,778,34 -961,FR,US,201812,1,2,88012,9192 -961,FR,US,201812,3,2,72701,755 -961,FR,US,201812,3,2,44566,1295 -961,FR,US,201812,3,2,6695,280 -961,FR,US,201812,4,2,1130674,4371 -961,FR,US,201812,4,2,96741,1978 -961,FR,US,201812,4,2,776874,268 -961,FR,US,201812,4,2,517,2 -961,FR,US,201812,4,2,29088,11 -961,FR,US,201812,4,2,716514,8179 -961,FR,US,201812,4,2,745,5 -961,FR,US,201812,4,2,57734,1657 -961,FR,US,201812,4,2,100082,5170 -961,FR,US,201812,4,2,241975,1407 -961,FR,US,201812,4,2,626138,3422 -961,FR,US,201812,5,2,25642,90 -962,FR,US,201812,0,1,80533,1161 -962,FR,US,201812,1,1,171537,21580 -962,FR,US,201812,1,1,455,6 -962,FR,US,201812,1,1,409,260 -962,FR,US,201812,1,1,206,62 -962,FR,US,201812,1,1,51789,2113 -962,FR,US,201812,1,1,204499,3469 -962,FR,US,201812,1,1,67,28 -962,FR,US,201812,1,1,732,470 -962,FR,US,201812,1,1,249,48 -962,FR,US,201812,1,1,62116,2311 -962,FR,US,201812,1,1,64,2 -962,FR,US,201812,1,1,13860,1798 -962,FR,US,201812,1,1,64000,13397 -962,FR,US,201812,1,1,26690,2511 -962,FR,US,201812,1,1,23695,9907 -962,FR,US,201812,1,1,350,41 -962,FR,US,201812,1,1,23827,4000 -962,FR,US,201812,1,1,24765,9102 -962,FR,US,201812,1,1,153910,11222 -962,FR,US,201812,1,1,146755,40193 -962,FR,US,201812,1,1,682964,34239 -962,FR,US,201812,1,1,1140108,145079 -962,FR,US,201812,1,1,93907,11642 -962,FR,US,201812,1,1,103559,36514 -962,FR,US,201812,1,1,253976,17582 -962,FR,US,201812,1,1,90588,8664 -962,FR,US,201812,3,1,86961,1607 -962,FR,US,201812,3,1,17088,173 -962,FR,US,201812,3,1,5609,19 -962,FR,US,201812,3,1,635,6 -962,FR,US,201812,3,1,21848,274 -962,FR,US,201812,3,1,32,1 -962,FR,US,201812,3,1,32,1 -962,FR,US,201812,4,1,533555,7681 -962,FR,US,201812,4,1,54459,805 -962,FR,US,201812,4,1,206600,2590 -962,FR,US,201812,4,1,35338,342 -962,FR,US,201812,4,1,8457,165 -962,FR,US,201812,4,1,12747,251 -962,FR,US,201812,4,1,15709,240 -962,FR,US,201812,4,1,84,1 -962,FR,US,201812,4,1,15620,85 -962,FR,US,201812,4,1,23725,502 -962,FR,US,201812,4,1,1777784,91881 -962,FR,US,201812,4,1,15931,300 -962,FR,US,201812,4,1,27731,77 -962,FR,US,201812,4,1,37189,132 -962,FR,US,201812,4,1,9410,1 -962,FR,US,201812,4,1,96,3 -962,FR,US,201812,4,1,6942,383 -962,FR,US,201812,4,1,23932,640 -962,FR,US,201812,4,1,2193,15 -962,FR,US,201812,4,1,1822,57 -962,FR,US,201812,5,1,401,0 -962,FR,US,201812,8,1,74202,3420 -962,FR,US,201812,0,2,6095,63 -962,FR,US,201812,1,2,622891,41403 -962,FR,US,201812,1,2,89094,7810 -962,FR,US,201812,1,2,10849,1219 -962,FR,US,201812,1,2,17293,4183 -962,FR,US,201812,1,2,94513,2980 -962,FR,US,201812,1,2,344703,18518 -962,FR,US,201812,1,2,117626,8625 -962,FR,US,201812,1,2,15209,856 -962,FR,US,201812,1,2,2510635,213691 -962,FR,US,201812,1,2,65096,22818 -962,FR,US,201812,1,2,138224,6621 -962,FR,US,201812,1,2,71455,11843 -962,FR,US,201812,1,2,2626,123 -962,FR,US,201812,1,2,575451,150077 -962,FR,US,201812,1,2,471198,30356 -962,FR,US,201812,1,2,55951,14474 -962,FR,US,201812,1,2,83232,14797 -962,FR,US,201812,1,2,1284487,148731 -962,FR,US,201812,1,2,123658,16782 -962,FR,US,201812,1,2,150691,18589 -962,FR,US,201812,1,2,44165,6007 -962,FR,US,201812,1,2,403519,10813 -962,FR,US,201812,3,2,198151,5040 -962,FR,US,201812,3,2,76232,2328 -962,FR,US,201812,3,2,181000,1 -962,FR,US,201812,3,2,443,22 -962,FR,US,201812,3,2,32711,1094 -962,FR,US,201812,3,2,338161,94916 -962,FR,US,201812,4,2,1747697,32222 -962,FR,US,201812,4,2,42034,655 -962,FR,US,201812,4,2,184889,2324 -962,FR,US,201812,4,2,9795,455 -962,FR,US,201812,4,2,3162,13 -962,FR,US,201812,4,2,15991,300 -962,FR,US,201812,4,2,5331,626 -962,FR,US,201812,4,2,203911,4445 -962,FR,US,201812,4,2,27297,250 -962,FR,US,201812,4,2,20570,200 -962,FR,US,201812,4,2,1250,40 -962,FR,US,201812,4,2,1556178,15744 -962,FR,US,201812,4,2,4472,132 -962,FR,US,201812,4,2,38650,339 -962,FR,US,201812,4,2,300,136 -962,FR,US,201812,4,2,89982,5087 -962,FR,US,201812,4,2,233309,4319 -962,FR,US,201812,4,2,310490,48830 -962,FR,US,201812,4,2,485790,5277 -962,FR,US,201812,4,2,1386603,21467 -962,FR,US,201812,5,2,4325,9 -963,FR,US,201812,0,1,1858972,13762 -963,FR,US,201812,1,1,33523,1975 -963,FR,US,201812,1,1,6816,53 -963,FR,US,201812,1,1,20,5 -963,FR,US,201812,1,1,90352,8044 -963,FR,US,201812,1,1,18125,965 -963,FR,US,201812,1,1,49323,1302 -963,FR,US,201812,1,1,116,18 -963,FR,US,201812,1,1,48385,2800 -963,FR,US,201812,1,1,6112,633 -963,FR,US,201812,1,1,29668,2666 -963,FR,US,201812,1,1,196680,11144 -963,FR,US,201812,1,1,131165,3669 -963,FR,US,201812,1,1,35544,5742 -963,FR,US,201812,1,1,2268,240 -963,FR,US,201812,1,1,1428,125 -963,FR,US,201812,1,1,104065,1868 -963,FR,US,201812,1,1,8508,1544 -963,FR,US,201812,1,1,43,3 -963,FR,US,201812,3,1,1002326,7341 -963,FR,US,201812,3,1,135033,295 -963,FR,US,201812,3,1,12082,7 -963,FR,US,201812,3,1,176390,449 -963,FR,US,201812,3,1,14569,162 -963,FR,US,201812,4,1,3161110,6193 -963,FR,US,201812,4,1,255010,2727 -963,FR,US,201812,4,1,125,0 -963,FR,US,201812,4,1,86435,319 -963,FR,US,201812,4,1,413,1 -963,FR,US,201812,4,1,2321,6 -963,FR,US,201812,4,1,21584,1452 -963,FR,US,201812,4,1,149215,168 -963,FR,US,201812,4,1,17676,208 -963,FR,US,201812,4,1,1136,12 -963,FR,US,201812,4,1,60810,388 -963,FR,US,201812,4,1,6081955,37523 -963,FR,US,201812,4,1,15631,7 -963,FR,US,201812,4,1,48440,42 -963,FR,US,201812,4,1,828,0 -963,FR,US,201812,4,1,76,0 -963,FR,US,201812,4,1,135000,6 -963,FR,US,201812,4,1,4352,16 -963,FR,US,201812,4,1,3555,4 -963,FR,US,201812,4,1,88371,3679 -963,FR,US,201812,4,1,2947,12 -963,FR,US,201812,4,1,168,1 -963,FR,US,201812,5,1,21672,61 -963,FR,US,201812,0,2,214062,1343 -963,FR,US,201812,1,2,90925,492 -963,FR,US,201812,1,2,25,0 -963,FR,US,201812,1,2,44150,240 -963,FR,US,201812,1,2,132,3 -963,FR,US,201812,1,2,1067,50 -963,FR,US,201812,1,2,441,26 -963,FR,US,201812,1,2,1532411,26043 -963,FR,US,201812,1,2,256163,2300 -963,FR,US,201812,1,2,8632,240 -963,FR,US,201812,1,2,55089,2253 -963,FR,US,201812,1,2,1363,1037 -963,FR,US,201812,1,2,4358,412 -963,FR,US,201812,1,2,11702,23 -963,FR,US,201812,1,2,7393,2536 -963,FR,US,201812,1,2,272322,4656 -963,FR,US,201812,1,2,78437,6163 -963,FR,US,201812,1,2,12026,36 -963,FR,US,201812,1,2,153210,3965 -963,FR,US,201812,3,2,322116,6997 -963,FR,US,201812,3,2,11542,600 -963,FR,US,201812,3,2,3034,96 -963,FR,US,201812,4,2,105230038,193105 -963,FR,US,201812,4,2,122687,1719 -963,FR,US,201812,4,2,690244,1658 -963,FR,US,201812,4,2,242529,4041 -963,FR,US,201812,4,2,41404,500 -963,FR,US,201812,4,2,313555,5321 -963,FR,US,201812,4,2,122593,1407 -963,FR,US,201812,4,2,91919,600 -963,FR,US,201812,4,2,2406893,11126 -963,FR,US,201812,4,2,5867,137 -963,FR,US,201812,4,2,133449,89 -963,FR,US,201812,4,2,27121753,42018 -963,FR,US,201812,4,2,18050,20 -963,FR,US,201812,4,2,77381,1100 -963,FR,US,201812,4,2,1761,1 -963,FR,US,201812,4,2,16110,192 -963,FR,US,201812,4,2,113678,84 -963,FR,US,201812,4,2,14850,150 -963,FR,US,201812,4,2,306857,2480 -963,FR,US,201812,4,2,12215,24 -963,FR,US,201812,4,2,43900,541 -963,FR,US,201812,4,2,1370,3 -963,FR,US,201812,4,2,36068,221 -963,FR,US,201812,4,2,75791,812 -963,FR,US,201812,4,2,1965372,70134 -963,FR,US,201812,4,2,10845079,48876 -963,FR,US,201812,4,2,4724250,30837 -963,FR,US,201812,5,2,57338,195 -971,FR,US,201812,0,1,462336,10298 -971,FR,US,201812,1,1,155848,6014 -971,FR,US,201812,1,1,321,13 -971,FR,US,201812,1,1,4171,229 -971,FR,US,201812,1,1,47,0 -971,FR,US,201812,1,1,119245,24657 -971,FR,US,201812,1,1,74627,15454 -971,FR,US,201812,1,1,57335,4574 -971,FR,US,201812,1,1,3860,575 -971,FR,US,201812,1,1,3661,215 -971,FR,US,201812,1,1,2262,23 -971,FR,US,201812,1,1,25,1 -971,FR,US,201812,1,1,5490,758 -971,FR,US,201812,1,1,10866,1087 -971,FR,US,201812,1,1,53984,936 -971,FR,US,201812,1,1,7488,239 -971,FR,US,201812,1,1,108,27 -971,FR,US,201812,1,1,7409,344 -971,FR,US,201812,1,1,20,1 -971,FR,US,201812,1,1,130202,15372 -971,FR,US,201812,1,1,15521,1700 -971,FR,US,201812,1,1,2472162,89950 -971,FR,US,201812,1,1,21182,42840 -971,FR,US,201812,1,1,21353,2092 -971,FR,US,201812,1,1,362903,19006 -971,FR,US,201812,1,1,132611,16793 -971,FR,US,201812,1,1,212,7 -971,FR,US,201812,3,1,309483,1325 -971,FR,US,201812,3,1,1603,263 -971,FR,US,201812,3,1,499,0 -971,FR,US,201812,3,1,1782,0 -971,FR,US,201812,3,1,1732,1 -971,FR,US,201812,3,1,2,1 -971,FR,US,201812,3,1,602828,731 -971,FR,US,201812,3,1,10518,105 -971,FR,US,201812,4,1,502318,16666 -971,FR,US,201812,4,1,256707,1580 -971,FR,US,201812,4,1,154542,547 -971,FR,US,201812,4,1,13482,305 -971,FR,US,201812,4,1,39615,1969 -971,FR,US,201812,4,1,11582,523 -971,FR,US,201812,4,1,23711,210 -971,FR,US,201812,4,1,1063,3 -971,FR,US,201812,4,1,178,6 -971,FR,US,201812,4,1,1841868,22070 -971,FR,US,201812,4,1,16249,133 -971,FR,US,201812,4,1,22442,20 -971,FR,US,201812,4,1,907,0 -971,FR,US,201812,4,1,3698,281 -971,FR,US,201812,4,1,536,0 -971,FR,US,201812,4,1,41,0 -971,FR,US,201812,4,1,150,0 -971,FR,US,201812,4,1,1926,1 -971,FR,US,201812,4,1,6501,348 -971,FR,US,201812,0,2,105,1 -971,FR,US,201812,1,2,230211,11009 -971,FR,US,201812,1,2,23801,904 -971,FR,US,201812,1,2,27518,1209 -971,FR,US,201812,1,2,5816,507 -971,FR,US,201812,1,2,190328,7530 -971,FR,US,201812,1,2,99741,2484 -971,FR,US,201812,1,2,17,0 -971,FR,US,201812,1,2,5456,206 -971,FR,US,201812,1,2,177,2 -971,FR,US,201812,1,2,1323,4 -971,FR,US,201812,1,2,8566039,1245010 -971,FR,US,201812,1,2,76116,17358 -971,FR,US,201812,1,2,500671,181370 -971,FR,US,201812,1,2,1195,32 -971,FR,US,201812,1,2,3996875,533165 -971,FR,US,201812,1,2,2943399,303240 -971,FR,US,201812,1,2,414649,22782 -971,FR,US,201812,1,2,116618,5836 -971,FR,US,201812,1,2,41934,8218 -971,FR,US,201812,1,2,462457,32582 -971,FR,US,201812,1,2,566302,48069 -971,FR,US,201812,1,2,1166221,79474 -971,FR,US,201812,1,2,26721,3484 -971,FR,US,201812,1,2,383550,16690 -971,FR,US,201812,1,2,17821,685 -971,FR,US,201812,1,2,54861,14723 -971,FR,US,201812,1,2,2241150,423454 -971,FR,US,201812,3,2,85339,2397 -971,FR,US,201812,3,2,138174,6720 -971,FR,US,201812,3,2,62475,4247 -971,FR,US,201812,4,2,2099088,22195 -971,FR,US,201812,4,2,66212,233 -971,FR,US,201812,4,2,149801,5063 -971,FR,US,201812,4,2,419803,30541 -971,FR,US,201812,4,2,188289,5859 -971,FR,US,201812,4,2,85244,3490 -971,FR,US,201812,4,2,178,0 -971,FR,US,201812,4,2,34583,4387 -971,FR,US,201812,4,2,1124129,23834 -971,FR,US,201812,4,2,29305,1975 -971,FR,US,201812,4,2,51,0 -971,FR,US,201812,4,2,6143,15 -971,FR,US,201812,4,2,60465,196 -971,FR,US,201812,4,2,344877,16510 -971,FR,US,201812,4,2,272465,1513 -971,FR,US,201812,4,2,579469,3273 -972,FR,US,201812,0,1,4077,601 -972,FR,US,201812,1,1,182,1 -972,FR,US,201812,1,1,34548,32757 -972,FR,US,201812,1,1,568,385 -972,FR,US,201812,1,1,471850,247462 -972,FR,US,201812,1,1,2627,340 -972,FR,US,201812,1,1,18742,4575 -972,FR,US,201812,1,1,8811,740 -972,FR,US,201812,1,1,5976,844 -972,FR,US,201812,1,1,682472,674387 -972,FR,US,201812,1,1,40717,12000 -972,FR,US,201812,1,1,64142,6613 -972,FR,US,201812,3,1,18281,441 -972,FR,US,201812,3,1,1361,0 -972,FR,US,201812,3,1,45,4 -972,FR,US,201812,4,1,34728,2424 -972,FR,US,201812,4,1,6024,86 -972,FR,US,201812,4,1,793,10 -972,FR,US,201812,4,1,14246,660 -972,FR,US,201812,4,1,54030,3973 -972,FR,US,201812,4,1,82,0 -972,FR,US,201812,1,2,142759,14416 -972,FR,US,201812,1,2,165193,182919 -972,FR,US,201812,1,2,36716,9259 -972,FR,US,201812,1,2,6620,422 -972,FR,US,201812,1,2,4860584,2309711 -972,FR,US,201812,1,2,108904,33313 -972,FR,US,201812,1,2,31051,4854 -972,FR,US,201812,1,2,2122673,859149 -972,FR,US,201812,1,2,154358,47853 -972,FR,US,201812,1,2,132533,36697 -972,FR,US,201812,1,2,427659,291849 -972,FR,US,201812,1,2,2364627,779090 -972,FR,US,201812,1,2,395,9 -972,FR,US,201812,3,2,6493,2026 -972,FR,US,201812,3,2,217441,75922 -972,FR,US,201812,3,2,94115,16908 -972,FR,US,201812,4,2,76128,6692 -972,FR,US,201812,4,2,323,80 -972,FR,US,201812,4,2,29708,1183 -972,FR,US,201812,4,2,22785,8499 -972,FR,US,201812,4,2,59136,2600 -972,FR,US,201812,4,2,1190,535 -972,FR,US,201812,4,2,7011,73 -972,FR,US,201812,4,2,123104,20900 -972,FR,US,201812,4,2,9524,98 -972,FR,US,201812,4,2,34543,627 -973,FR,US,201812,0,1,10931,228 -973,FR,US,201812,1,1,33986,9619 -973,FR,US,201812,1,1,349,5 -973,FR,US,201812,1,1,316,40 -973,FR,US,201812,1,1,15599,7433 -973,FR,US,201812,1,1,65238,6374 -973,FR,US,201812,1,1,107062,10360 -973,FR,US,201812,1,1,52,37 -973,FR,US,201812,1,1,349,13 -973,FR,US,201812,1,1,37265,21915 -973,FR,US,201812,1,1,208305,185568 -973,FR,US,201812,1,1,86957,13792 -973,FR,US,201812,1,1,33129,629 -973,FR,US,201812,1,1,195392,219764 -973,FR,US,201812,1,1,78560,52172 -973,FR,US,201812,1,1,66967,34534 -973,FR,US,201812,1,1,491246,108893 -973,FR,US,201812,1,1,512941,399757 -973,FR,US,201812,1,1,199,150 -973,FR,US,201812,1,1,200389,27887 -973,FR,US,201812,1,1,43075,2889 -973,FR,US,201812,1,1,247147,311350 -973,FR,US,201812,1,1,540,370 -973,FR,US,201812,3,1,33868,978 -973,FR,US,201812,3,1,13948,4343 -973,FR,US,201812,3,1,375,34 -973,FR,US,201812,4,1,126832,12156 -973,FR,US,201812,4,1,54986,588 -973,FR,US,201812,4,1,2376,145 -973,FR,US,201812,4,1,55140,9896 -973,FR,US,201812,4,1,27,21 -973,FR,US,201812,4,1,22,281 -973,FR,US,201812,4,1,312,3 -973,FR,US,201812,4,1,318379,19391 -973,FR,US,201812,4,1,207,0 -973,FR,US,201812,4,1,8002,857 -973,FR,US,201812,4,1,10,0 -973,FR,US,201812,4,1,2872,120 -973,FR,US,201812,5,1,378,13 -973,FR,US,201812,0,2,1443,28 -973,FR,US,201812,1,2,190247,127463 -973,FR,US,201812,1,2,3389,371 -973,FR,US,201812,1,2,425,600 -973,FR,US,201812,1,2,2483,190 -973,FR,US,201812,1,2,1339,79 -973,FR,US,201812,1,2,4830,250 -973,FR,US,201812,1,2,573740,190259 -973,FR,US,201812,1,2,4114,1200 -973,FR,US,201812,1,2,135833,22390 -973,FR,US,201812,1,2,124566,58633 -973,FR,US,201812,1,2,896848,23100 -973,FR,US,201812,1,2,339296,213000 -973,FR,US,201812,1,2,22080,11724 -973,FR,US,201812,1,2,39648,24658 -973,FR,US,201812,1,2,145,17 -973,FR,US,201812,1,2,39636,10276 -973,FR,US,201812,1,2,241420,25584 -973,FR,US,201812,1,2,20739,6800 -973,FR,US,201812,1,2,5965,169 -973,FR,US,201812,1,2,2122,1628 -973,FR,US,201812,1,2,194,20 -973,FR,US,201812,3,2,2969,30 -973,FR,US,201812,3,2,5000,24 -973,FR,US,201812,3,2,2600,56 -973,FR,US,201812,3,2,2388,32 -973,FR,US,201812,3,2,330,180 -973,FR,US,201812,3,2,2836,22 -973,FR,US,201812,4,2,165903,8914 -973,FR,US,201812,4,2,14468,1499 -973,FR,US,201812,4,2,30721,250 -973,FR,US,201812,4,2,330,38 -973,FR,US,201812,4,2,1648,239 -973,FR,US,201812,4,2,62116,2248 -973,FR,US,201812,4,2,389,100 -973,FR,US,201812,4,2,6189,1000 -973,FR,US,201812,4,2,32,1 -973,FR,US,201812,4,2,563,60 -973,FR,US,201812,4,2,2510,2 -973,FR,US,201812,4,2,73427,33390 -973,FR,US,201812,4,2,23820,374 -973,FR,US,201812,4,2,75843,860 -974,FR,US,201812,0,1,1430422,3516 -974,FR,US,201812,1,1,26826,5453 -974,FR,US,201812,1,1,1734,23 -974,FR,US,201812,1,1,494,25 -974,FR,US,201812,1,1,15962,1450 -974,FR,US,201812,1,1,5124,166 -974,FR,US,201812,1,1,13290,1370 -974,FR,US,201812,1,1,105535,11176 -974,FR,US,201812,1,1,154801,20000 -974,FR,US,201812,1,1,22095,191 -974,FR,US,201812,1,1,314,13 -974,FR,US,201812,1,1,71,3 -974,FR,US,201812,1,1,16532,6800 -974,FR,US,201812,1,1,7151,554 -974,FR,US,201812,1,1,17,20 -974,FR,US,201812,1,1,5322,283 -974,FR,US,201812,3,1,344070,6554 -974,FR,US,201812,3,1,203,2 -974,FR,US,201812,3,1,1798,40 -974,FR,US,201812,3,1,168,21 -974,FR,US,201812,4,1,241604,9189 -974,FR,US,201812,4,1,175445,2305 -974,FR,US,201812,4,1,15503,235 -974,FR,US,201812,4,1,198,50 -974,FR,US,201812,4,1,190527,7790 -974,FR,US,201812,4,1,80,0 -974,FR,US,201812,4,1,166,28 -974,FR,US,201812,4,1,51850,170 -974,FR,US,201812,4,1,54,1 -974,FR,US,201812,4,1,1105,51 -974,FR,US,201812,4,1,1883645,27493 -974,FR,US,201812,4,1,398,4 -974,FR,US,201812,4,1,412,2 -974,FR,US,201812,4,1,48,0 -974,FR,US,201812,4,1,129,0 -974,FR,US,201812,4,1,1,8 -974,FR,US,201812,4,1,5125,534 -974,FR,US,201812,4,1,45,4 -974,FR,US,201812,4,1,567,1 -974,FR,US,201812,5,1,225066,181 -974,FR,US,201812,0,2,25985,758 -974,FR,US,201812,1,2,172478,14692 -974,FR,US,201812,1,2,39620,5864 -974,FR,US,201812,1,2,109,8 -974,FR,US,201812,1,2,6672,6011 -974,FR,US,201812,1,2,1798,3259 -974,FR,US,201812,1,2,4081,166 -974,FR,US,201812,1,2,1393,74 -974,FR,US,201812,1,2,302992,48595 -974,FR,US,201812,1,2,2806,132 -974,FR,US,201812,1,2,58611,23513 -974,FR,US,201812,1,2,860,50 -974,FR,US,201812,1,2,130,7 -974,FR,US,201812,1,2,18730,511 -974,FR,US,201812,1,2,145,10 -974,FR,US,201812,1,2,568924,172946 -974,FR,US,201812,1,2,338,12 -974,FR,US,201812,3,2,11738,2548 -974,FR,US,201812,3,2,2657,131 -974,FR,US,201812,3,2,620,277 -974,FR,US,201812,3,2,4658,2 -974,FR,US,201812,4,2,1217468,24269 -974,FR,US,201812,4,2,7754,65 -974,FR,US,201812,4,2,70319,1698 -974,FR,US,201812,4,2,7853,210 -974,FR,US,201812,4,2,90367,20 -974,FR,US,201812,4,2,4994,182 -974,FR,US,201812,4,2,14226,15 -974,FR,US,201812,4,2,488484,9921 -974,FR,US,201812,4,2,5650,420 -974,FR,US,201812,4,2,233328,40230 -974,FR,US,201812,4,2,233598,3618 -974,FR,US,201812,4,2,1229721,8823 -974,FR,US,201812,5,2,338409,4214 -975,FR,US,201812,0,1,780266,5206 -975,FR,US,201812,1,1,537540,15106 -975,FR,US,201812,1,1,231,200 -975,FR,US,201812,1,1,6998,2920 -975,FR,US,201812,1,1,928982,67722 -975,FR,US,201812,1,1,1874,89 -975,FR,US,201812,1,1,3289,255 -975,FR,US,201812,1,1,22599,4373 -975,FR,US,201812,1,1,82853,12737 -975,FR,US,201812,1,1,1637,96 -975,FR,US,201812,1,1,16496,750 -975,FR,US,201812,1,1,82343,3560 -975,FR,US,201812,1,1,20974,4074 -975,FR,US,201812,1,1,485841,18448 -975,FR,US,201812,1,1,2067,100 -975,FR,US,201812,1,1,27162,4100 -975,FR,US,201812,1,1,61643,6810 -975,FR,US,201812,3,1,104356,895 -975,FR,US,201812,3,1,1404,3 -975,FR,US,201812,3,1,892,1 -975,FR,US,201812,3,1,65679,505 -975,FR,US,201812,3,1,445,0 -975,FR,US,201812,3,1,26743,115 -975,FR,US,201812,4,1,5521969,23434 -975,FR,US,201812,4,1,249504,2180 -975,FR,US,201812,4,1,46947,579 -975,FR,US,201812,4,1,653034,4888 -975,FR,US,201812,4,1,324,21 -975,FR,US,201812,4,1,11435,120 -975,FR,US,201812,4,1,8550,150 -975,FR,US,201812,4,1,117,4 -975,FR,US,201812,4,1,3861024,30300 -975,FR,US,201812,4,1,20708,1354 -975,FR,US,201812,4,1,14981,6 -975,FR,US,201812,4,1,438,9 -975,FR,US,201812,4,1,2750,35 -975,FR,US,201812,4,1,4373,29 -975,FR,US,201812,4,1,3975,332 -975,FR,US,201812,4,1,75062,340 -975,FR,US,201812,4,1,675,29 -975,FR,US,201812,0,2,1839,51 -975,FR,US,201812,1,2,1008292,46477 -975,FR,US,201812,1,2,15831,2578 -975,FR,US,201812,1,2,1457,267 -975,FR,US,201812,1,2,127335,2839 -975,FR,US,201812,1,2,154458,2864 -975,FR,US,201812,1,2,53384,5764 -975,FR,US,201812,1,2,4795083,363283 -975,FR,US,201812,1,2,92500,11157 -975,FR,US,201812,1,2,18642,5248 -975,FR,US,201812,1,2,152669,9704 -975,FR,US,201812,1,2,184988,10158 -975,FR,US,201812,1,2,15538,495 -975,FR,US,201812,1,2,197200,18554 -975,FR,US,201812,1,2,795194,78943 -975,FR,US,201812,1,2,36491,10033 -975,FR,US,201812,1,2,5374,207 -975,FR,US,201812,1,2,121166,6831 -975,FR,US,201812,3,2,96935,1764 -975,FR,US,201812,3,2,3500,225 -975,FR,US,201812,3,2,68455,1372 -975,FR,US,201812,3,2,47000,4467 -975,FR,US,201812,4,2,1725662,13130 -975,FR,US,201812,4,2,1813,387 -975,FR,US,201812,4,2,26163,597 -975,FR,US,201812,4,2,1788,103 -975,FR,US,201812,4,2,21199,70 -975,FR,US,201812,4,2,2380,232 -975,FR,US,201812,4,2,49048,247 -975,FR,US,201812,4,2,2595681,19193 -975,FR,US,201812,4,2,1350,95 -975,FR,US,201812,4,2,1805,45 -975,FR,US,201812,4,2,10190,497 -975,FR,US,201812,4,2,600,100 -975,FR,US,201812,4,2,21221,350 -975,FR,US,201812,4,2,3186,32 -975,FR,US,201812,4,2,129635,9440 -975,FR,US,201812,4,2,58155,175 -975,FR,US,201812,4,2,1251397,3594 -976,FR,US,201812,0,1,24685,417 -976,FR,US,201812,1,1,87199,30032 -976,FR,US,201812,1,1,95,251 -976,FR,US,201812,1,1,164,2395 -976,FR,US,201812,1,1,768,68 -976,FR,US,201812,1,1,26085,19595 -976,FR,US,201812,1,1,1628,871 -976,FR,US,201812,1,1,893,166 -976,FR,US,201812,1,1,28587,11138 -976,FR,US,201812,1,1,658,124 -976,FR,US,201812,1,1,43874,19755 -976,FR,US,201812,1,1,722,600 -976,FR,US,201812,1,1,69,17 -976,FR,US,201812,1,1,352,1461 -976,FR,US,201812,1,1,975434,431435 -976,FR,US,201812,1,1,1642,20869 -976,FR,US,201812,1,1,21,1 -976,FR,US,201812,1,1,54400,19461 -976,FR,US,201812,3,1,10608,205 -976,FR,US,201812,3,1,1225,38 -976,FR,US,201812,4,1,140863,3708 -976,FR,US,201812,4,1,2594,39 -976,FR,US,201812,4,1,1841,8 -976,FR,US,201812,4,1,8670,83 -976,FR,US,201812,4,1,313,2 -976,FR,US,201812,4,1,276774,2203 -976,FR,US,201812,4,1,241,6 -976,FR,US,201812,0,2,1255,31 -976,FR,US,201812,1,2,265890,14319 -976,FR,US,201812,1,2,7889,6520 -976,FR,US,201812,1,2,66051,4633 -976,FR,US,201812,1,2,73627,31460 -976,FR,US,201812,1,2,18721,2227 -976,FR,US,201812,1,2,23299,1551 -976,FR,US,201812,1,2,1130214,128681 -976,FR,US,201812,1,2,532068,38323 -976,FR,US,201812,1,2,54846,16130 -976,FR,US,201812,1,2,79000,6723 -976,FR,US,201812,1,2,14388,1060 -976,FR,US,201812,1,2,1349750,270213 -976,FR,US,201812,1,2,1347489,165331 -976,FR,US,201812,1,2,65382,15384 -976,FR,US,201812,1,2,22,1 -976,FR,US,201812,1,2,179724,25659 -976,FR,US,201812,3,2,520,91 -976,FR,US,201812,3,2,343,4 -976,FR,US,201812,3,2,1135,600 -976,FR,US,201812,3,2,1122,108 -976,FR,US,201812,3,2,12188,1382 -976,FR,US,201812,4,2,740279,16277 -976,FR,US,201812,4,2,2649,65 -976,FR,US,201812,4,2,485,89 -976,FR,US,201812,4,2,702693,4450 -976,FR,US,201812,4,2,14912,886 -976,FR,US,201812,4,2,517836,7082 -976,FR,US,201812,4,2,14401,685 -976,FR,US,201812,4,2,462,40 -976,FR,US,201812,4,2,13700,150 -976,FR,US,201812,4,2,17489,1500 -976,FR,US,201812,4,2,52102,403 -976,FR,US,201812,4,2,80801,1738 -979,FR,US,201812,0,1,5533102,56223 -979,FR,US,201812,1,1,12514776,75606 -979,FR,US,201812,1,1,24359,1132 -979,FR,US,201812,1,1,353683,18148 -979,FR,US,201812,1,1,320114,16834 -979,FR,US,201812,1,1,11359,1281 -979,FR,US,201812,1,1,399338,27385 -979,FR,US,201812,1,1,236306,14993 -979,FR,US,201812,1,1,33932,2949 -979,FR,US,201812,1,1,30724,1846 -979,FR,US,201812,1,1,229217,300 -979,FR,US,201812,1,1,154906,15441 -979,FR,US,201812,1,1,139868,10063 -979,FR,US,201812,1,1,564339,24406 -979,FR,US,201812,1,1,1218369,101320 -979,FR,US,201812,1,1,1744,79 -979,FR,US,201812,1,1,1367,320 -979,FR,US,201812,1,1,23411,1428 -979,FR,US,201812,1,1,3645,94 -979,FR,US,201812,1,1,2332,406 -979,FR,US,201812,1,1,42072,1005 -979,FR,US,201812,1,1,349247,25929 -979,FR,US,201812,1,1,29740,4137 -979,FR,US,201812,1,1,126022,15540 -979,FR,US,201812,1,1,3157370,171313 -979,FR,US,201812,1,1,621953,33356 -979,FR,US,201812,1,1,262956,12549 -979,FR,US,201812,1,1,367251,17687 -979,FR,US,201812,1,1,169383,16695 -979,FR,US,201812,1,1,2329,613 -979,FR,US,201812,1,1,627364,37176 -979,FR,US,201812,1,1,290035,6361 -979,FR,US,201812,1,1,784217,2888 -979,FR,US,201812,1,1,161188,22756 -979,FR,US,201812,1,1,27684,5469 -979,FR,US,201812,1,1,125600,13054 -979,FR,US,201812,1,1,1585267,110531 -979,FR,US,201812,1,1,1035,102 -979,FR,US,201812,1,1,13325618,703506 -979,FR,US,201812,1,1,47235,2677 -979,FR,US,201812,1,1,169025,25711 -979,FR,US,201812,1,1,579451,23646 -979,FR,US,201812,1,1,907,20 -979,FR,US,201812,1,1,223861,3179 -979,FR,US,201812,2,1,466429,23204 -979,FR,US,201812,3,1,8145174,23634 -979,FR,US,201812,3,1,134972,212 -979,FR,US,201812,3,1,3683988,3572 -979,FR,US,201812,3,1,760815,280 -979,FR,US,201812,3,1,2048131,1383 -979,FR,US,201812,3,1,6047857,580 -979,FR,US,201812,3,1,44636,880 -979,FR,US,201812,3,1,13280369,5477 -979,FR,US,201812,3,1,13636,310 -979,FR,US,201812,3,1,255491,332 -979,FR,US,201812,3,1,130840,280 -979,FR,US,201812,3,1,229421,1881 -979,FR,US,201812,3,1,5919,409 -979,FR,US,201812,3,1,240,12 -979,FR,US,201812,3,1,756,100 -979,FR,US,201812,3,1,117632,5752 -979,FR,US,201812,4,1,39285989,151864 -979,FR,US,201812,4,1,435326,4634 -979,FR,US,201812,4,1,17538690,36498 -979,FR,US,201812,4,1,1434740,4553 -979,FR,US,201812,4,1,140,0 -979,FR,US,201812,4,1,55378,272 -979,FR,US,201812,4,1,8811765,24221 -979,FR,US,201812,4,1,11917,11 -979,FR,US,201812,4,1,360535,4354 -979,FR,US,201812,4,1,762,1 -979,FR,US,201812,4,1,3226572,25407 -979,FR,US,201812,4,1,59386,229 -979,FR,US,201812,4,1,561421,2512 -979,FR,US,201812,4,1,274109,1850 -979,FR,US,201812,4,1,130,0 -979,FR,US,201812,4,1,207398,1090 -979,FR,US,201812,4,1,26394,28 -979,FR,US,201812,4,1,215,10 -979,FR,US,201812,4,1,112,21 -979,FR,US,201812,4,1,27387,15 -979,FR,US,201812,4,1,10235,1 -979,FR,US,201812,4,1,5365,7 -979,FR,US,201812,4,1,1417,17 -979,FR,US,201812,4,1,15058,204 -979,FR,US,201812,4,1,49616,3 -979,FR,US,201812,4,1,87147237,263730 -979,FR,US,201812,4,1,1838194,12661 -979,FR,US,201812,4,1,3992,6 -979,FR,US,201812,4,1,12139,400 -979,FR,US,201812,4,1,722273,66 -979,FR,US,201812,4,1,186152,472 -979,FR,US,201812,4,1,1986,10 -979,FR,US,201812,4,1,1132675,10798 -979,FR,US,201812,4,1,93972,323 -979,FR,US,201812,4,1,1258,0 -979,FR,US,201812,4,1,62495,48 -979,FR,US,201812,4,1,5371,11 -979,FR,US,201812,4,1,1847,8 -979,FR,US,201812,4,1,3095,2 -979,FR,US,201812,4,1,16465,242 -979,FR,US,201812,4,1,119658,1158 -979,FR,US,201812,4,1,968867,87 -979,FR,US,201812,4,1,545096,10960 -979,FR,US,201812,4,1,850635,2135 -979,FR,US,201812,4,1,7217,26 -979,FR,US,201812,4,1,253016,3823 -979,FR,US,201812,4,1,58373,525 -979,FR,US,201812,4,1,3252,26 -979,FR,US,201812,4,1,270,0 -979,FR,US,201812,4,1,843,10 -979,FR,US,201812,4,1,104998,69 -979,FR,US,201812,5,1,48628,81 -979,FR,US,201812,0,2,202260,1272 -979,FR,US,201812,1,2,7835460,443897 -979,FR,US,201812,1,2,156370,4305 -979,FR,US,201812,1,2,1459478,27610 -979,FR,US,201812,1,2,17514,1860 -979,FR,US,201812,1,2,39161,3067 -979,FR,US,201812,1,2,100798,2523 -979,FR,US,201812,1,2,90573,5968 -979,FR,US,201812,1,2,2691,784 -979,FR,US,201812,1,2,551901,13783 -979,FR,US,201812,1,2,843368,26561 -979,FR,US,201812,1,2,25016,276 -979,FR,US,201812,1,2,147574,8276 -979,FR,US,201812,1,2,324057,1800 -979,FR,US,201812,1,2,280352,3283 -979,FR,US,201812,1,2,87594,2565 -979,FR,US,201812,1,2,18864529,881909 -979,FR,US,201812,1,2,445700,8227 -979,FR,US,201812,1,2,515590,19678 -979,FR,US,201812,1,2,218587,10706 -979,FR,US,201812,1,2,947121,25872 -979,FR,US,201812,1,2,507121,6464 -979,FR,US,201812,1,2,157261,21143 -979,FR,US,201812,1,2,42578,4752 -979,FR,US,201812,1,2,13451,305 -979,FR,US,201812,1,2,3116766,117034 -979,FR,US,201812,1,2,41683,2144 -979,FR,US,201812,1,2,625867,58734 -979,FR,US,201812,1,2,25948,2498 -979,FR,US,201812,1,2,4339530,311088 -979,FR,US,201812,1,2,2391,281 -979,FR,US,201812,1,2,34451,1820 -979,FR,US,201812,1,2,102549,2476 -979,FR,US,201812,1,2,6442,82 -979,FR,US,201812,1,2,203915,14468 -979,FR,US,201812,1,2,696451,25764 -979,FR,US,201812,1,2,1448073,57881 -979,FR,US,201812,1,2,240333,6041 -979,FR,US,201812,3,2,1502578,7428 -979,FR,US,201812,3,2,45137,833 -979,FR,US,201812,3,2,32017,2307 -979,FR,US,201812,3,2,473022,664 -979,FR,US,201812,3,2,4535,108 -979,FR,US,201812,3,2,858,21 -979,FR,US,201812,3,2,101680,10159 -979,FR,US,201812,3,2,4591,37 -979,FR,US,201812,3,2,191552,10235 -979,FR,US,201812,3,2,72553,1225 -979,FR,US,201812,4,2,48943113,172476 -979,FR,US,201812,4,2,300743,3122 -979,FR,US,201812,4,2,4294304,32618 -979,FR,US,201812,4,2,736422,4716 -979,FR,US,201812,4,2,6836,10 -979,FR,US,201812,4,2,81970,3668 -979,FR,US,201812,4,2,31663446,400 -979,FR,US,201812,4,2,1258249,10762 -979,FR,US,201812,4,2,34552,549 -979,FR,US,201812,4,2,2429235,29144 -979,FR,US,201812,4,2,7099711,7269 -979,FR,US,201812,4,2,184980,303 -979,FR,US,201812,4,2,48169,650 -979,FR,US,201812,4,2,42348612,133895 -979,FR,US,201812,4,2,54862,397 -979,FR,US,201812,4,2,868,40 -979,FR,US,201812,4,2,135057,1778 -979,FR,US,201812,4,2,17585,164 -979,FR,US,201812,4,2,906069,3473 -979,FR,US,201812,4,2,132154,2936 -979,FR,US,201812,4,2,29150,1279 -979,FR,US,201812,4,2,140000,0 -979,FR,US,201812,4,2,13434,65 -979,FR,US,201812,4,2,2202,112 -979,FR,US,201812,4,2,676213,2609 -979,FR,US,201812,4,2,1328,1 -979,FR,US,201812,4,2,8697,60 -979,FR,US,201812,4,2,41669,444 -979,FR,US,201812,4,2,80000,5 -979,FR,US,201812,4,2,236705,3506 -979,FR,US,201812,4,2,2296175,3855 -979,FR,US,201812,4,2,4713980,172225 -979,FR,US,201812,4,2,5583074,14127 -979,FR,US,201812,4,2,40135749,64160 -979,FR,US,201812,5,2,105767,411 -994,FR,US,201812,0,1,147,0 -994,FR,US,201812,4,1,1098186,21 -994,FR,US,201812,4,1,1240,0 -994,FR,US,201812,4,1,91,0 -994,FR,US,201812,4,1,199910,17 -994,FR,US,201812,4,2,89080,4 -994,FR,US,201812,4,2,635012,19 -994,FR,US,201812,4,2,41727,36 -999,FR,US,201812,0,1,304782,52 -999,FR,US,201812,1,1,90521,0 -999,FR,US,201812,1,1,10000,0 -999,FR,US,201812,1,1,19531,0 -999,FR,US,201812,1,1,5975,0 -999,FR,US,201812,1,1,15025,2000 -999,FR,US,201812,1,1,72022,0 -999,FR,US,201812,1,1,1074,0 -999,FR,US,201812,1,1,1024580,0 -999,FR,US,201812,1,1,15541,0 -999,FR,US,201812,1,1,103654,84159 -999,FR,US,201812,1,1,54620,0 -999,FR,US,201812,1,1,446447,0 -999,FR,US,201812,1,1,6934,0 -999,FR,US,201812,3,1,16342,2 -999,FR,US,201812,3,1,6020,0 -999,FR,US,201812,4,1,41711,1 -999,FR,US,201812,4,1,27500,0 -999,FR,US,201812,4,1,100930,0 -999,FR,US,201812,4,1,2356,0 -999,FR,US,201812,4,1,5611,0 -999,FR,US,201812,4,1,1,0 -999,FR,US,201812,4,1,276865,65 -999,FR,US,201812,4,1,2235,0 -999,FR,US,201812,4,1,12763,0 -999,FR,US,201812,5,1,9480,0 -999,FR,US,201812,0,2,246,2 -999,FR,US,201812,1,2,2126938,330101 -999,FR,US,201812,1,2,10340,1150 -999,FR,US,201812,1,2,5600,0 -999,FR,US,201812,1,2,7875,0 -999,FR,US,201812,1,2,166433,38780 -999,FR,US,201812,1,2,612917,2484 -999,FR,US,201812,1,2,38797,2000 -999,FR,US,201812,1,2,3000,330 -999,FR,US,201812,1,2,5464237,6309877 -999,FR,US,201812,1,2,343369,1524 -999,FR,US,201812,1,2,1719,120 -999,FR,US,201812,1,2,2911412,23212 -999,FR,US,201812,1,2,272142,20174 -999,FR,US,201812,1,2,10000,0 -999,FR,US,201812,1,2,10152699,2878815 -999,FR,US,201812,1,2,127513,44990 -999,FR,US,201812,1,2,522985,79837 -999,FR,US,201812,1,2,1266971,362426 -999,FR,US,201812,1,2,149749,37430 -999,FR,US,201812,1,2,1704463,627930 -999,FR,US,201812,1,2,178106,2459 -999,FR,US,201812,1,2,32735,19000 -999,FR,US,201812,1,2,539612,188179 -999,FR,US,201812,1,2,873645,299164 -999,FR,US,201812,1,2,203094,87536 -999,FR,US,201812,1,2,1363273,229258 -999,FR,US,201812,1,2,320806,56157 -999,FR,US,201812,1,2,148733,14150 -999,FR,US,201812,1,2,8015190,1355684 -999,FR,US,201812,1,2,25750,0 -999,FR,US,201812,1,2,72490,17940 -999,FR,US,201812,1,2,468121,188671 -999,FR,US,201812,1,2,989136,284270 -999,FR,US,201812,3,2,201257,6921 -999,FR,US,201812,3,2,240,0 -999,FR,US,201812,3,2,85700,700 -999,FR,US,201812,3,2,12271,0 -999,FR,US,201812,3,2,361636,53820 -999,FR,US,201812,3,2,231536,34400 -999,FR,US,201812,3,2,83011,46500 -999,FR,US,201812,4,2,7024517,82090 -999,FR,US,201812,4,2,1520,0 -999,FR,US,201812,4,2,166622,837 -999,FR,US,201812,4,2,55700,322 -999,FR,US,201812,4,2,4180,0 -999,FR,US,201812,4,2,288605,5956 -999,FR,US,201812,4,2,76029,3565 -999,FR,US,201812,4,2,131009,150 -999,FR,US,201812,4,2,11550,0 -999,FR,US,201812,4,2,21700,330 -999,FR,US,201812,4,2,9952,25 -999,FR,US,201812,4,2,2671,0 -999,FR,US,201812,4,2,600,0 -999,FR,US,201812,4,2,20043412,16309 -999,FR,US,201812,4,2,16626,500 -999,FR,US,201812,4,2,27362,540 -999,FR,US,201812,4,2,509230,1000 -999,FR,US,201812,4,2,6250,0 -999,FR,US,201812,4,2,56798,169 -999,FR,US,201812,4,2,100,0 -999,FR,US,201812,4,2,12649,25 -999,FR,US,201812,4,2,2445,100 -999,FR,US,201812,4,2,20125,1482 -999,FR,US,201812,4,2,32331,1 -999,FR,US,201812,4,2,41328,105 -999,FR,US,201812,4,2,526165,12250 -999,FR,US,201812,4,2,298370,895 -999,FR,US,201812,4,2,35000,0 -999,FR,US,201812,4,2,1030559,7498 -001,FR,CA,201812,4,1,178,1 -001,FR,CA,201812,4,2,1300,119 -015,FR,CA,201812,1,1,2914,3360 -015,FR,CA,201812,4,1,265,1 -019,FR,CA,201812,1,2,31990,2970 -019,FR,CA,201812,1,2,30778,3799 -019,FR,CA,201812,1,2,2720,415 -035,FR,CA,201812,1,2,163278,75361 -035,FR,CA,201812,1,2,89278,84672 -035,FR,CA,201812,1,2,49484,42336 -039,FR,CA,201812,3,1,25837,17605 -039,FR,CA,201812,4,1,256354,10389 -039,FR,CA,201812,1,2,14519,3340 -039,FR,CA,201812,1,2,371484,342120 -039,FR,CA,201812,1,2,20817,13015 -039,FR,CA,201812,4,2,8559,344 -039,FR,CA,201812,4,2,2789,3 -039,FR,CA,201812,4,2,8941,160 -039,FR,CA,201812,4,2,2015,4 -039,FR,CA,201812,4,2,14657,101 -043,FR,CA,201812,3,1,221,1 -043,FR,CA,201812,1,2,7530,270 -043,FR,CA,201812,1,2,264864,11410 -043,FR,CA,201812,4,2,1060,118 -049,FR,CA,201812,1,1,1772,271 -049,FR,CA,201812,3,1,426,1 -049,FR,CA,201812,4,1,197,5 -049,FR,CA,201812,4,1,156,0 -049,FR,CA,201812,4,2,147,4 -056,FR,CA,201812,0,1,50,0 -056,FR,CA,201812,1,1,39621,13800 -056,FR,CA,201812,1,1,41015,24474 -056,FR,CA,201812,1,1,63530,27348 -056,FR,CA,201812,1,1,139893,63630 -056,FR,CA,201812,1,1,37557,26320 -056,FR,CA,201812,1,1,158879,71197 -056,FR,CA,201812,1,1,31914,24371 -056,FR,CA,201812,4,1,75,0 -056,FR,CA,201812,0,2,60,1 -091,FR,CA,201812,1,1,113916,72305 -091,FR,CA,201812,1,1,283952,192131 -091,FR,CA,201812,4,1,309,16 -092,FR,CA,201812,4,1,453,47 -092,FR,CA,201812,1,2,11800,2100 -099,FR,CA,201812,1,1,750,847 -099,FR,CA,201812,1,1,88164,20000 -099,FR,CA,201812,1,1,75732,4717 -099,FR,CA,201812,4,1,167562,2880 -099,FR,CA,201812,4,1,6074,1 -099,FR,CA,201812,4,1,8407,120 -099,FR,CA,201812,4,1,8695,39 -099,FR,CA,201812,4,1,330503,1666 -099,FR,CA,201812,1,2,3277,425 -099,FR,CA,201812,1,2,29813,23640 -099,FR,CA,201812,1,2,36707,18608 -099,FR,CA,201812,1,2,36176,20000 -099,FR,CA,201812,1,2,53385,17000 -099,FR,CA,201812,1,2,1,1 -099,FR,CA,201812,4,2,68,9 -099,FR,CA,201812,4,2,1465,87 -099,FR,CA,201812,4,2,5663,518 -099,FR,CA,201812,4,2,1488,64 -099,FR,CA,201812,4,2,4370,4 -111,FR,CA,201812,1,2,3121,4461 -111,FR,CA,201812,1,2,110,44 -111,FR,CA,201812,4,2,20,8 -112,FR,CA,201812,1,2,6824,9755 -112,FR,CA,201812,1,2,75751,220000 -121,FR,CA,201812,1,1,6465,1080 -121,FR,CA,201812,1,1,450,28 -121,FR,CA,201812,4,1,595,9 -121,FR,CA,201812,0,2,126,23 -121,FR,CA,201812,1,2,2612765,259745 -121,FR,CA,201812,1,2,2550,85 -121,FR,CA,201812,1,2,227048,16823 -121,FR,CA,201812,1,2,34370,1386 -121,FR,CA,201812,1,2,34370,1386 -121,FR,CA,201812,1,2,607425,48539 -121,FR,CA,201812,1,2,16208,1629 -121,FR,CA,201812,1,2,3575506,573192 -121,FR,CA,201812,1,2,202224,48645 -121,FR,CA,201812,1,2,223982,60264 -121,FR,CA,201812,1,2,211235,74688 -121,FR,CA,201812,1,2,387016,16926 -121,FR,CA,201812,1,2,27381,12372 -121,FR,CA,201812,1,2,155587,167782 -121,FR,CA,201812,1,2,207032,51263 -121,FR,CA,201812,1,2,23114,14040 -121,FR,CA,201812,1,2,11112575,1995772 -121,FR,CA,201812,1,2,59000,39600 -121,FR,CA,201812,1,2,21480,24000 -121,FR,CA,201812,1,2,164987,40383 -121,FR,CA,201812,3,2,52430,2498 -121,FR,CA,201812,3,2,110631,4680 -121,FR,CA,201812,3,2,76807,5428 -121,FR,CA,201812,3,2,1080271,153339 -121,FR,CA,201812,3,2,65300,11664 -121,FR,CA,201812,4,2,14606,2499 -121,FR,CA,201812,4,2,299,19 -121,FR,CA,201812,4,2,270,15 -121,FR,CA,201812,4,2,9052,73 -121,FR,CA,201812,4,2,80179,15116 -122,FR,CA,201812,1,1,2909,752 -122,FR,CA,201812,1,1,34225,17362 -122,FR,CA,201812,1,1,1833,572 -122,FR,CA,201812,1,1,10098,2593 -122,FR,CA,201812,4,1,125,4 -122,FR,CA,201812,1,2,3729,936 -122,FR,CA,201812,1,2,3269,617 -122,FR,CA,201812,1,2,396921,515502 -122,FR,CA,201812,4,2,547,950 -125,FR,CA,201812,0,1,61,4 -125,FR,CA,201812,1,1,21200,2115 -125,FR,CA,201812,1,1,449153,157740 -125,FR,CA,201812,4,1,228,3 -125,FR,CA,201812,0,2,144,4 -125,FR,CA,201812,1,2,292561,24416 -125,FR,CA,201812,1,2,41415,1731 -125,FR,CA,201812,1,2,440831,23342 -125,FR,CA,201812,1,2,1833548,201068 -125,FR,CA,201812,1,2,777150,70013 -125,FR,CA,201812,1,2,3492,701 -125,FR,CA,201812,1,2,150,1 -125,FR,CA,201812,1,2,763961,118018 -125,FR,CA,201812,1,2,825044,69606 -125,FR,CA,201812,1,2,5012,396 -125,FR,CA,201812,3,2,5000,900 -125,FR,CA,201812,3,2,781,26 -125,FR,CA,201812,3,2,11247,2114 -125,FR,CA,201812,4,2,15252,896 -125,FR,CA,201812,4,2,42667,568 -125,FR,CA,201812,4,2,4200,750 -128,FR,CA,201812,1,1,437,220 -128,FR,CA,201812,3,1,193,35 -128,FR,CA,201812,4,1,46,0 -128,FR,CA,201812,4,1,4804,1307 -128,FR,CA,201812,1,2,886,456 -128,FR,CA,201812,1,2,2634909,5663363 -128,FR,CA,201812,1,2,44790,76384 -128,FR,CA,201812,1,2,34700,16800 -128,FR,CA,201812,1,2,10513,17638 -128,FR,CA,201812,3,2,385,18 -128,FR,CA,201812,3,2,13271,8822 -128,FR,CA,201812,3,2,10499,8640 -128,FR,CA,201812,3,2,20676,17280 -128,FR,CA,201812,4,2,564,1159 -131,FR,CA,201812,3,1,72,1 -131,FR,CA,201812,4,1,258,5 -131,FR,CA,201812,1,2,7331,424 -131,FR,CA,201812,4,2,1428,650 -132,FR,CA,201812,0,1,108,2 -132,FR,CA,201812,1,1,1194,167 -132,FR,CA,201812,1,1,24749,1800 -132,FR,CA,201812,1,1,13248,971 -132,FR,CA,201812,3,1,982,40 -132,FR,CA,201812,4,1,26,2 -132,FR,CA,201812,4,1,75,1 -132,FR,CA,201812,4,1,1519,102 -132,FR,CA,201812,0,2,774,18 -132,FR,CA,201812,1,2,27167,4608 -132,FR,CA,201812,1,2,32838,1803 -132,FR,CA,201812,1,2,103636,16709 -132,FR,CA,201812,1,2,33340,5400 -132,FR,CA,201812,1,2,75474,14716 -132,FR,CA,201812,1,2,890167,180737 -132,FR,CA,201812,3,2,49986,5027 -132,FR,CA,201812,3,2,815013,136023 -132,FR,CA,201812,4,2,5493,193 -132,FR,CA,201812,4,2,11420,567 -132,FR,CA,201812,4,2,8303,310 -132,FR,CA,201812,4,2,1065,24 -133,FR,CA,201812,0,1,2013,41 -133,FR,CA,201812,1,1,2485,21 -133,FR,CA,201812,1,1,32430,40000 -133,FR,CA,201812,3,1,442,21 -133,FR,CA,201812,4,1,206,3 -133,FR,CA,201812,1,2,3473,375 -133,FR,CA,201812,1,2,17941,1405 -133,FR,CA,201812,1,2,60,11 -133,FR,CA,201812,1,2,26545,2734 -133,FR,CA,201812,4,2,1251,410 -133,FR,CA,201812,4,2,2300,41 -136,FR,CA,201812,0,1,13,0 -136,FR,CA,201812,1,1,2642,279 -136,FR,CA,201812,1,1,3838,409 -136,FR,CA,201812,1,1,37660,6215 -136,FR,CA,201812,1,1,62654,8242 -136,FR,CA,201812,1,1,57,11 -136,FR,CA,201812,1,1,124938,17738 -136,FR,CA,201812,1,1,85896,12513 -136,FR,CA,201812,1,1,638850,120247 -136,FR,CA,201812,3,1,225,18 -136,FR,CA,201812,3,1,55104,12278 -136,FR,CA,201812,4,1,606,24 -136,FR,CA,201812,4,1,2625,174 -136,FR,CA,201812,0,2,229,5 -136,FR,CA,201812,1,2,12191,1876 -136,FR,CA,201812,1,2,13954,2147 -136,FR,CA,201812,1,2,111174,45634 -136,FR,CA,201812,1,2,4147,1670 -136,FR,CA,201812,3,2,7866,745 -136,FR,CA,201812,3,2,17905,1956 -136,FR,CA,201812,4,2,3244,622 -136,FR,CA,201812,4,2,55,2 -139,FR,CA,201812,0,1,462,6 -139,FR,CA,201812,1,1,1899,92 -139,FR,CA,201812,1,1,2768,940 -139,FR,CA,201812,1,1,6047,700 -139,FR,CA,201812,1,1,107860,21141 -139,FR,CA,201812,3,1,6537,116 -139,FR,CA,201812,3,1,31475,2326 -139,FR,CA,201812,4,1,13942,153 -139,FR,CA,201812,4,1,148,5 -139,FR,CA,201812,4,1,5592,97 -139,FR,CA,201812,4,1,51151,1516 -139,FR,CA,201812,4,1,202,2 -139,FR,CA,201812,5,1,222,2 -139,FR,CA,201812,1,2,27448,4606 -139,FR,CA,201812,1,2,25848,4773 -139,FR,CA,201812,1,2,5138,390 -139,FR,CA,201812,1,2,80173,14176 -139,FR,CA,201812,1,2,473619,60763 -139,FR,CA,201812,1,2,12098,1246 -139,FR,CA,201812,1,2,221672,84193 -139,FR,CA,201812,1,2,20764,9879 -139,FR,CA,201812,1,2,484011,174076 -139,FR,CA,201812,1,2,17424,4500 -139,FR,CA,201812,1,2,496644,148238 -139,FR,CA,201812,1,2,87536,16002 -139,FR,CA,201812,1,2,47294,3971 -139,FR,CA,201812,1,2,35800,20771 -139,FR,CA,201812,3,2,247,11 -139,FR,CA,201812,4,2,62935,1640 -139,FR,CA,201812,4,2,1552,367 -139,FR,CA,201812,4,2,23125,279 -139,FR,CA,201812,4,2,1401,240 -139,FR,CA,201812,4,2,1006,10 -141,FR,CA,201812,4,1,159337,22306 -141,FR,CA,201812,1,2,7750,26000 -141,FR,CA,201812,1,2,97418,16201 -141,FR,CA,201812,4,2,3874,325 -141,FR,CA,201812,4,2,5414,608 -142,FR,CA,201812,0,1,718238,70554 -142,FR,CA,201812,1,1,55094,13166 -142,FR,CA,201812,1,1,40359,3764 -142,FR,CA,201812,1,1,40436,30618 -142,FR,CA,201812,1,1,1064488,61602 -142,FR,CA,201812,1,1,211453,35858 -142,FR,CA,201812,4,1,6615883,380959 -142,FR,CA,201812,4,1,111869,6001 -142,FR,CA,201812,4,1,59566,3269 -142,FR,CA,201812,4,1,1304809,99061 -142,FR,CA,201812,4,2,30117,1176 -142,FR,CA,201812,4,2,77040,3173 -143,FR,CA,201812,1,2,144,24 -144,FR,CA,201812,1,1,2512,98 -144,FR,CA,201812,0,2,155,4 -144,FR,CA,201812,1,2,71144,6068 -144,FR,CA,201812,1,2,84644,10554 -144,FR,CA,201812,1,2,167179,16881 -144,FR,CA,201812,1,2,460034,49826 -144,FR,CA,201812,1,2,1072889,129057 -144,FR,CA,201812,1,2,460200,65431 -144,FR,CA,201812,4,2,41079,3325 -144,FR,CA,201812,4,2,58677,4754 -145,FR,CA,201812,1,2,24680,18505 -145,FR,CA,201812,4,2,2980,201 -146,FR,CA,201812,4,1,370849,1577 -147,FR,CA,201812,0,2,341,13 -147,FR,CA,201812,1,2,44294,4329 -147,FR,CA,201812,1,2,45100,12030 -147,FR,CA,201812,1,2,326206,73244 -147,FR,CA,201812,4,2,3696,318 -147,FR,CA,201812,4,2,2461,193 -148,FR,CA,201812,0,1,80135,2972 -148,FR,CA,201812,1,1,17075,1470 -148,FR,CA,201812,1,2,10488,1395 -148,FR,CA,201812,4,2,2564,80 -161,FR,CA,201812,1,1,881,960 -161,FR,CA,201812,1,2,1824,864 -162,FR,CA,201812,1,2,9416,17560 -163,FR,CA,201812,0,1,173,3 -163,FR,CA,201812,1,1,75,12 -163,FR,CA,201812,1,1,12628,6673 -163,FR,CA,201812,1,1,18725,12542 -163,FR,CA,201812,1,1,292,19 -163,FR,CA,201812,1,1,13974,21250 -163,FR,CA,201812,1,1,28974,42548 -163,FR,CA,201812,3,1,13493,1263 -163,FR,CA,201812,4,1,254,6 -163,FR,CA,201812,4,1,5976,420 -163,FR,CA,201812,1,2,29744,6736 -163,FR,CA,201812,1,2,7519,920 -163,FR,CA,201812,1,2,198975,31577 -163,FR,CA,201812,1,2,96234,9547 -163,FR,CA,201812,1,2,64704,15215 -163,FR,CA,201812,1,2,36258,14685 -163,FR,CA,201812,1,2,15338,1153 -163,FR,CA,201812,1,2,37589,15474 -163,FR,CA,201812,1,2,727389,186964 -163,FR,CA,201812,1,2,52131,13478 -163,FR,CA,201812,3,2,179,18 -163,FR,CA,201812,3,2,131816,10334 -163,FR,CA,201812,4,2,697,132 -163,FR,CA,201812,4,2,28972,2174 -164,FR,CA,201812,0,1,11,0 -164,FR,CA,201812,1,1,243,341 -164,FR,CA,201812,1,1,2468,331 -164,FR,CA,201812,1,1,202565,74842 -164,FR,CA,201812,1,1,45384,21760 -164,FR,CA,201812,1,1,120374,55021 -164,FR,CA,201812,3,1,40205,5590 -164,FR,CA,201812,0,2,299,20 -164,FR,CA,201812,1,2,16012,4944 -164,FR,CA,201812,1,2,87036,22892 -164,FR,CA,201812,1,2,549307,152685 -164,FR,CA,201812,1,2,466,60 -164,FR,CA,201812,1,2,106000,21812 -164,FR,CA,201812,1,2,69688,48216 -164,FR,CA,201812,3,2,4765,693 -164,FR,CA,201812,3,2,3046,194 -164,FR,CA,201812,4,2,2290,876 -164,FR,CA,201812,4,2,266,7 -164,FR,CA,201812,4,2,1632,780 -165,FR,CA,201812,1,1,44423,40884 -165,FR,CA,201812,1,1,44869,47000 -165,FR,CA,201812,1,1,184464,260191 -165,FR,CA,201812,1,1,12814,21500 -165,FR,CA,201812,1,1,11059,24500 -165,FR,CA,201812,1,1,110087,147325 -165,FR,CA,201812,1,1,39174,99320 -165,FR,CA,201812,1,1,95341,168650 -165,FR,CA,201812,1,1,11562,24200 -165,FR,CA,201812,1,1,19634,40000 -165,FR,CA,201812,1,1,21387,20000 -165,FR,CA,201812,1,1,99409,165530 -165,FR,CA,201812,1,1,21715,49550 -165,FR,CA,201812,1,1,345103,498974 -166,FR,CA,201812,1,1,520,70 -166,FR,CA,201812,1,1,37501,16417 -166,FR,CA,201812,3,1,3270,1070 -166,FR,CA,201812,4,1,1752,1534 -166,FR,CA,201812,1,2,6761,4725 -166,FR,CA,201812,1,2,6464,1977 -166,FR,CA,201812,1,2,34664,14682 -166,FR,CA,201812,1,2,2106,415 -166,FR,CA,201812,1,2,2089,415 -166,FR,CA,201812,1,2,249817,41257 -166,FR,CA,201812,1,2,5685,4000 -166,FR,CA,201812,4,2,982,7 -172,FR,CA,201812,1,2,1021,230 -179,FR,CA,201812,1,1,173,62 -179,FR,CA,201812,1,1,484884,57400 -179,FR,CA,201812,1,1,105984,20000 -179,FR,CA,201812,3,1,167,0 -179,FR,CA,201812,1,2,34150,1300 -179,FR,CA,201812,1,2,392892,144835 -179,FR,CA,201812,1,2,326746,129800 -179,FR,CA,201812,1,2,617341,373151 -181,FR,CA,201812,1,1,7389133,19268562 -181,FR,CA,201812,1,1,320257,427590 -181,FR,CA,201812,1,1,326,162 -181,FR,CA,201812,1,1,10626509,27746660 -181,FR,CA,201812,1,1,73347,122325 -181,FR,CA,201812,1,1,224630,575356 -181,FR,CA,201812,2,1,153663,204711 -181,FR,CA,201812,3,1,73684,32200 -181,FR,CA,201812,4,1,140,0 -182,FR,CA,201812,3,1,153,5 -182,FR,CA,201812,1,2,58660,13115 -182,FR,CA,201812,1,2,21557,2186 -182,FR,CA,201812,1,2,28978,9600 -182,FR,CA,201812,1,2,93182,20500 -182,FR,CA,201812,1,2,34414,15200 -182,FR,CA,201812,1,2,8162,1805 -182,FR,CA,201812,1,2,18859,9160 -182,FR,CA,201812,1,2,22599,2863 -182,FR,CA,201812,4,2,3736,500 -211,FR,CA,201812,1,1,66,1941 -211,FR,CA,201812,4,1,329,1165 -321,FR,CA,201812,4,2,4247,691 -341,FR,CA,201812,1,1,29935,4417 -341,FR,CA,201812,3,1,96,194 -341,FR,CA,201812,4,1,356,100 -341,FR,CA,201812,4,1,463,19 -341,FR,CA,201812,4,1,1949,567 -341,FR,CA,201812,4,1,302,25 -341,FR,CA,201812,1,2,1491,458 -341,FR,CA,201812,1,2,2408,1480 -341,FR,CA,201812,1,2,160535,56605 -341,FR,CA,201812,1,2,47292,20590 -341,FR,CA,201812,1,2,2393,110 -341,FR,CA,201812,1,2,238293,88614 -341,FR,CA,201812,1,2,47187,16338 -341,FR,CA,201812,1,2,102726,45040 -341,FR,CA,201812,3,2,447,21 -341,FR,CA,201812,4,2,365,7 -341,FR,CA,201812,4,2,147,1 -341,FR,CA,201812,4,2,3513,231 -341,FR,CA,201812,4,2,1016,46 -349,FR,CA,201812,1,2,4923,2340 -349,FR,CA,201812,1,2,11700,1005 -349,FR,CA,201812,1,2,2079,525 -349,FR,CA,201812,1,2,30044,23500 -349,FR,CA,201812,1,2,94666,67428 -349,FR,CA,201812,4,2,18,0 -410,FR,CA,201812,1,1,8466227,72980738 -410,FR,CA,201812,1,1,8311213,77842000 -410,FR,CA,201812,1,1,11584085,168324000 -410,FR,CA,201812,1,1,34382791,433778000 -410,FR,CA,201812,1,1,6884462,79719000 -459,FR,CA,201812,1,1,3583925,360000 -459,FR,CA,201812,1,2,7075,500 -459,FR,CA,201812,4,2,50,35 -465,FR,CA,201812,3,1,92,1 -512,FR,CA,201812,4,1,265,27 -522,FR,CA,201812,4,1,11,1 -522,FR,CA,201812,4,1,673,2 -532,FR,CA,201812,1,1,32046,37844 -532,FR,CA,201812,1,2,107825,17707 -532,FR,CA,201812,1,2,149318,74421 -533,FR,CA,201812,4,1,893,1 -533,FR,CA,201812,4,2,280,0 -535,FR,CA,201812,1,2,9307,7084 -536,FR,CA,201812,4,1,792,20 -536,FR,CA,201812,1,2,4208,227 -536,FR,CA,201812,1,2,28539,33498 -536,FR,CA,201812,1,2,212022,38243 -536,FR,CA,201812,3,2,174769,158737 -536,FR,CA,201812,4,2,27265,1888 -542,FR,CA,201812,1,1,60804,33312 -542,FR,CA,201812,1,2,2155902,1642156 -542,FR,CA,201812,1,2,130776,74410 -542,FR,CA,201812,1,2,18101,15950 -542,FR,CA,201812,1,2,27863,30600 -542,FR,CA,201812,4,2,15,141 -543,FR,CA,201812,1,2,69976,18534 -551,FR,CA,201812,1,1,1612,157 -551,FR,CA,201812,3,1,1464,50 -551,FR,CA,201812,4,1,14977,506 -551,FR,CA,201812,4,1,48579,597 -551,FR,CA,201812,4,1,757,3 -551,FR,CA,201812,1,2,219931,71593 -551,FR,CA,201812,1,2,2636,2176 -551,FR,CA,201812,1,2,217714,128761 -551,FR,CA,201812,1,2,154,1 -551,FR,CA,201812,1,2,249,6 -551,FR,CA,201812,1,2,29721,24538 -551,FR,CA,201812,3,2,3312,498 -551,FR,CA,201812,4,2,52890,275 -551,FR,CA,201812,4,2,3847,0 -551,FR,CA,201812,4,2,8743,4 -551,FR,CA,201812,4,2,41250,982 -551,FR,CA,201812,4,2,9401,98 -551,FR,CA,201812,4,2,9607,240 -551,FR,CA,201812,4,2,12968,342 -552,FR,CA,201812,4,1,82,1 -552,FR,CA,201812,4,1,574,4 -552,FR,CA,201812,4,1,287,5 -552,FR,CA,201812,1,2,2024622,128431 -552,FR,CA,201812,1,2,68874,860 -552,FR,CA,201812,1,2,395,30 -552,FR,CA,201812,1,2,33322,3216 -552,FR,CA,201812,1,2,43,4 -552,FR,CA,201812,1,2,13,0 -552,FR,CA,201812,1,2,319,2 -552,FR,CA,201812,1,2,10,0 -552,FR,CA,201812,4,2,32486,215 -552,FR,CA,201812,4,2,1471,145 -552,FR,CA,201812,4,2,1195,1 -552,FR,CA,201812,4,2,8064,701 -552,FR,CA,201812,4,2,3050,40 -552,FR,CA,201812,4,2,1562,18 -561,FR,CA,201812,4,1,89,1 -561,FR,CA,201812,1,2,5544,800 -561,FR,CA,201812,4,2,174,8 -562,FR,CA,201812,4,2,205,30 -565,FR,CA,201812,0,1,414,1 -565,FR,CA,201812,1,1,343928,7224 -565,FR,CA,201812,1,1,3842,1355 -565,FR,CA,201812,4,1,312113,2847 -565,FR,CA,201812,4,1,28422,165 -565,FR,CA,201812,4,1,232943,2000 -565,FR,CA,201812,1,2,4524,76 -565,FR,CA,201812,1,2,324966,16800 -565,FR,CA,201812,1,2,4118,51 -565,FR,CA,201812,1,2,854937,48709 -565,FR,CA,201812,3,2,55345,1500 -565,FR,CA,201812,4,2,21578,288 -565,FR,CA,201812,4,2,127,6 -568,FR,CA,201812,1,1,18262,3290 -568,FR,CA,201812,1,1,31672,7401 -568,FR,CA,201812,1,1,210080,40320 -568,FR,CA,201812,1,1,5481,1113 -568,FR,CA,201812,4,1,30183,592 -568,FR,CA,201812,4,1,12438,1 -568,FR,CA,201812,4,1,181,3 -568,FR,CA,201812,4,1,257,1 -568,FR,CA,201812,4,1,41803,38 -568,FR,CA,201812,4,1,1104,395 -568,FR,CA,201812,1,2,118076,2810 -568,FR,CA,201812,1,2,21455,2552 -568,FR,CA,201812,1,2,421842,38933 -568,FR,CA,201812,1,2,6547,304 -568,FR,CA,201812,1,2,26250,4523 -568,FR,CA,201812,1,2,430275,66544 -568,FR,CA,201812,1,2,131707,19452 -568,FR,CA,201812,4,2,15167,257 -568,FR,CA,201812,4,2,837,28 -568,FR,CA,201812,4,2,11932,483 -568,FR,CA,201812,4,2,45,10 -568,FR,CA,201812,4,2,8523,56 -568,FR,CA,201812,4,2,13612,192 -614,FR,CA,201812,4,1,81,3 -614,FR,CA,201812,1,2,6351,1337 -614,FR,CA,201812,4,2,448,178 -614,FR,CA,201812,4,2,649,40 -621,FR,CA,201812,1,1,35,60 -621,FR,CA,201812,4,1,90,2 -621,FR,CA,201812,1,2,1904,375 -621,FR,CA,201812,1,2,5265,600 -621,FR,CA,201812,1,2,26976,6856 -621,FR,CA,201812,1,2,1520,225 -621,FR,CA,201812,1,2,47263,5661 -621,FR,CA,201812,3,2,52890,54432 -621,FR,CA,201812,4,2,45,3 -623,FR,CA,201812,1,2,14290,15590 -632,FR,CA,201812,1,2,14353,14000 -633,FR,CA,201812,3,1,89488,303042 -639,FR,CA,201812,1,1,10361,48366 -639,FR,CA,201812,3,1,2907,1561 -639,FR,CA,201812,1,2,5208,23004 -691,FR,CA,201812,1,1,4500,700 -691,FR,CA,201812,1,1,81137,106420 -691,FR,CA,201812,3,1,3404,58 -691,FR,CA,201812,4,1,504,7 -691,FR,CA,201812,4,1,9706,73 -691,FR,CA,201812,4,1,1863,500 -691,FR,CA,201812,1,2,191350,3450 -691,FR,CA,201812,1,2,24983,2150 -691,FR,CA,201812,1,2,1130,838 -691,FR,CA,201812,3,2,3916,59 -691,FR,CA,201812,4,2,172322,2294 -691,FR,CA,201812,4,2,1728,2 -691,FR,CA,201812,4,2,731,0 -691,FR,CA,201812,4,2,7776,46 -692,FR,CA,201812,1,2,100,41 -692,FR,CA,201812,3,2,22547,48165 -692,FR,CA,201812,3,2,44996,88600 -692,FR,CA,201812,4,2,1905,250 -724,FR,CA,201812,1,2,20140,19000 -819,FR,CA,201812,1,1,5476,1023 -819,FR,CA,201812,1,1,3832,225 -819,FR,CA,201812,1,1,18488,11000 -819,FR,CA,201812,1,1,73478,60000 -819,FR,CA,201812,1,1,15715,11000 -819,FR,CA,201812,3,1,3620,0 -819,FR,CA,201812,3,1,2515,270 -819,FR,CA,201812,4,1,56144,480 -819,FR,CA,201812,4,1,553,1 -819,FR,CA,201812,4,1,153968,11 -819,FR,CA,201812,4,1,764,43 -819,FR,CA,201812,4,1,83701,142 -819,FR,CA,201812,4,1,919192,3458 -819,FR,CA,201812,0,2,145,8 -819,FR,CA,201812,1,2,161273,15246 -819,FR,CA,201812,1,2,63297,3440 -819,FR,CA,201812,1,2,2905,2417 -819,FR,CA,201812,1,2,121779,27525 -819,FR,CA,201812,1,2,26046,13600 -819,FR,CA,201812,1,2,29256,16480 -819,FR,CA,201812,1,2,32807,18454 -819,FR,CA,201812,1,2,34772,16000 -819,FR,CA,201812,1,2,170151,31717 -819,FR,CA,201812,1,2,70265,8945 -819,FR,CA,201812,1,2,87762,96000 -819,FR,CA,201812,3,2,59000,328 -819,FR,CA,201812,3,2,90705,10625 -819,FR,CA,201812,3,2,323,6 -819,FR,CA,201812,4,2,1154172,3339 -819,FR,CA,201812,4,2,154,0 -819,FR,CA,201812,4,2,4335,165 -819,FR,CA,201812,4,2,39501,340 -819,FR,CA,201812,4,2,10789,1550 -819,FR,CA,201812,4,2,18011,126 -820,FR,CA,201812,0,1,5727,4250 -820,FR,CA,201812,1,1,88636,70000 -820,FR,CA,201812,1,1,154878,60000 -820,FR,CA,201812,4,2,60000,4 -841,FR,CA,201812,0,1,17835,20562 -841,FR,CA,201812,1,1,462827,856039 -841,FR,CA,201812,1,1,503930,834282 -891,FR,CA,201812,0,1,377,3 -891,FR,CA,201812,1,1,19061,2000 -891,FR,CA,201812,1,1,6798,425 -891,FR,CA,201812,1,1,320230,32645 -891,FR,CA,201812,1,1,143467,21773 -891,FR,CA,201812,1,1,1319,188 -891,FR,CA,201812,1,1,26655,5339 -891,FR,CA,201812,1,1,471619,164920 -891,FR,CA,201812,1,1,58497,12225 -891,FR,CA,201812,3,1,2768,116 -891,FR,CA,201812,4,1,176076,7762 -891,FR,CA,201812,4,1,755,4 -891,FR,CA,201812,4,1,26827,135 -891,FR,CA,201812,4,1,46,1 -891,FR,CA,201812,0,2,869,15 -891,FR,CA,201812,1,2,203280,50421 -891,FR,CA,201812,1,2,5186,1473 -891,FR,CA,201812,1,2,3185,253 -891,FR,CA,201812,1,2,7994,753 -891,FR,CA,201812,1,2,8649,1400 -891,FR,CA,201812,1,2,48851,7749 -891,FR,CA,201812,1,2,3400,300 -891,FR,CA,201812,1,2,1104964,348097 -891,FR,CA,201812,1,2,92334,39600 -891,FR,CA,201812,1,2,156579,42250 -891,FR,CA,201812,1,2,27178,19250 -891,FR,CA,201812,1,2,42739,20085 -891,FR,CA,201812,1,2,321969,99067 -891,FR,CA,201812,1,2,99896,19820 -891,FR,CA,201812,3,2,139400,88000 -891,FR,CA,201812,3,2,69000,44000 -891,FR,CA,201812,4,2,64190,2262 -891,FR,CA,201812,4,2,3266,190 -891,FR,CA,201812,4,2,2060,9 -891,FR,CA,201812,4,2,23526,2400 -891,FR,CA,201812,4,2,15723,2801 -891,FR,CA,201812,4,2,7536,53 -891,FR,CA,201812,4,2,72253,470 -891,FR,CA,201812,4,2,2490,20 -891,FR,CA,201812,4,2,70617,1481 -892,FR,CA,201812,1,1,13068,6550 -892,FR,CA,201812,1,1,938,69 -892,FR,CA,201812,3,1,175,1 -892,FR,CA,201812,3,1,4442,1 -892,FR,CA,201812,4,1,271,1 -892,FR,CA,201812,4,1,31273,1084 -892,FR,CA,201812,4,1,2365,160 -892,FR,CA,201812,4,1,1373,10 -892,FR,CA,201812,0,2,114,2 -892,FR,CA,201812,1,2,81255,14947 -892,FR,CA,201812,1,2,164,1 -892,FR,CA,201812,1,2,12980,2400 -892,FR,CA,201812,1,2,37950,454 -892,FR,CA,201812,1,2,65423,23439 -892,FR,CA,201812,1,2,41,0 -892,FR,CA,201812,1,2,31982,2588 -892,FR,CA,201812,3,2,181869,30558 -892,FR,CA,201812,4,2,68243,960 -892,FR,CA,201812,4,2,282,60 -892,FR,CA,201812,4,2,20241,233 -892,FR,CA,201812,4,2,1417,140 -892,FR,CA,201812,4,2,20231,2385 -892,FR,CA,201812,4,2,25294,122 -893,FR,CA,201812,0,1,5541,53 -893,FR,CA,201812,1,1,181557,2631 -893,FR,CA,201812,1,1,338882,9204 -893,FR,CA,201812,1,1,68013,13492 -893,FR,CA,201812,1,1,23742,4612 -893,FR,CA,201812,1,1,2132342,49124 -893,FR,CA,201812,1,1,3103,110 -893,FR,CA,201812,1,1,295370,5940 -893,FR,CA,201812,1,1,251560,52273 -893,FR,CA,201812,1,1,71599,3096 -893,FR,CA,201812,1,1,43959,20716 -893,FR,CA,201812,1,1,72881,17313 -893,FR,CA,201812,1,1,51346,24899 -893,FR,CA,201812,3,1,70700,378 -893,FR,CA,201812,3,1,55015,103 -893,FR,CA,201812,4,1,2355117,14629 -893,FR,CA,201812,4,1,896,2 -893,FR,CA,201812,4,1,7897,137 -893,FR,CA,201812,4,1,1412493,18149 -893,FR,CA,201812,4,1,24536,20 -893,FR,CA,201812,4,1,1467411,2285 -893,FR,CA,201812,4,1,2547918,17532 -893,FR,CA,201812,4,1,831,367 -893,FR,CA,201812,4,1,19953,310 -893,FR,CA,201812,0,2,4638,66 -893,FR,CA,201812,1,2,4112982,87826 -893,FR,CA,201812,1,2,20093,470 -893,FR,CA,201812,1,2,5469,956 -893,FR,CA,201812,1,2,183,5 -893,FR,CA,201812,1,2,21193,286 -893,FR,CA,201812,1,2,16357,5625 -893,FR,CA,201812,1,2,83647,5697 -893,FR,CA,201812,1,2,460124,18410 -893,FR,CA,201812,1,2,3781645,286157 -893,FR,CA,201812,1,2,314139,37246 -893,FR,CA,201812,1,2,400981,35690 -893,FR,CA,201812,1,2,228863,5151 -893,FR,CA,201812,1,2,46959,8033 -893,FR,CA,201812,1,2,48628,15679 -893,FR,CA,201812,1,2,95835,13812 -893,FR,CA,201812,1,2,4835468,259341 -893,FR,CA,201812,1,2,283503,5496 -893,FR,CA,201812,1,2,2583474,87018 -893,FR,CA,201812,3,2,105693,2213 -893,FR,CA,201812,3,2,11700,285 -893,FR,CA,201812,4,2,12855254,47380 -893,FR,CA,201812,4,2,14834,220 -893,FR,CA,201812,4,2,4548489,4836 -893,FR,CA,201812,4,2,202124,3496 -893,FR,CA,201812,4,2,4500,50 -893,FR,CA,201812,4,2,110535,678 -893,FR,CA,201812,4,2,112906,326 -893,FR,CA,201812,4,2,20803,391 -893,FR,CA,201812,4,2,838406,15095 -893,FR,CA,201812,4,2,1030,0 -893,FR,CA,201812,4,2,38938,2620 -893,FR,CA,201812,4,2,5699,39 -893,FR,CA,201812,4,2,423918,1286 -894,FR,CA,201812,4,1,183367,3099 -894,FR,CA,201812,4,1,9173,52 -894,FR,CA,201812,4,1,6169,11 -894,FR,CA,201812,1,2,35,0 -894,FR,CA,201812,4,2,35732,519 -894,FR,CA,201812,4,2,2208,25 -895,FR,CA,201812,1,2,115681,80000 -896,FR,CA,201812,0,1,180,2 -896,FR,CA,201812,1,1,35210,1600 -896,FR,CA,201812,1,1,29646,25152 -896,FR,CA,201812,1,1,17763,7661 -896,FR,CA,201812,1,1,4328,20 -896,FR,CA,201812,1,1,72317,22168 -896,FR,CA,201812,1,1,5898,23766 -896,FR,CA,201812,1,1,21373,1008 -896,FR,CA,201812,1,1,55569,9422 -896,FR,CA,201812,1,1,64659,3378 -896,FR,CA,201812,1,1,20847,63287 -896,FR,CA,201812,1,1,7120,24192 -896,FR,CA,201812,1,1,10052,22050 -896,FR,CA,201812,1,1,15173,70 -896,FR,CA,201812,1,1,203787,87777 -896,FR,CA,201812,1,1,48398,13188 -896,FR,CA,201812,1,1,13910,44558 -896,FR,CA,201812,3,1,15614,194 -896,FR,CA,201812,3,1,40357,8005 -896,FR,CA,201812,4,1,1639991,2590 -896,FR,CA,201812,4,1,79126,206 -896,FR,CA,201812,4,1,787584,2665 -896,FR,CA,201812,4,1,462340,2033 -896,FR,CA,201812,4,1,49808,270 -896,FR,CA,201812,4,1,48,1 -896,FR,CA,201812,4,1,13339,640 -896,FR,CA,201812,0,2,186,5 -896,FR,CA,201812,1,2,67353,5450 -896,FR,CA,201812,1,2,8678,3250 -896,FR,CA,201812,1,2,153,35 -896,FR,CA,201812,1,2,4010,1512 -896,FR,CA,201812,1,2,441756,402900 -896,FR,CA,201812,1,2,71292,4874 -896,FR,CA,201812,1,2,1337434,151733 -896,FR,CA,201812,1,2,61,2 -896,FR,CA,201812,1,2,78500,5000 -896,FR,CA,201812,1,2,63492,40000 -896,FR,CA,201812,1,2,148984,17790 -896,FR,CA,201812,1,2,121000,18500 -896,FR,CA,201812,1,2,16987,20643 -896,FR,CA,201812,1,2,386146,156775 -896,FR,CA,201812,1,2,6764,852 -896,FR,CA,201812,3,2,59223,18770 -896,FR,CA,201812,3,2,217040,10000 -896,FR,CA,201812,4,2,761687,27317 -896,FR,CA,201812,4,2,45352,897 -896,FR,CA,201812,4,2,483912,3720 -896,FR,CA,201812,4,2,9251,233 -896,FR,CA,201812,4,2,104306,1462 -896,FR,CA,201812,4,2,8820,300 -896,FR,CA,201812,4,2,9948,280 -896,FR,CA,201812,4,2,2699,33 -896,FR,CA,201812,4,2,173549,1460 -910,FR,CA,201812,0,1,5145,74 -910,FR,CA,201812,1,1,8464,273 -910,FR,CA,201812,1,1,18980,2525 -910,FR,CA,201812,1,1,551407,1425 -910,FR,CA,201812,1,1,3582385,26684 -910,FR,CA,201812,1,1,15205,37 -910,FR,CA,201812,1,1,997,140 -910,FR,CA,201812,1,1,198602,23853 -910,FR,CA,201812,1,1,36586,1650 -910,FR,CA,201812,1,1,28370,5016 -910,FR,CA,201812,1,1,724,146 -910,FR,CA,201812,1,1,624693,9831 -910,FR,CA,201812,1,1,16130,4208 -910,FR,CA,201812,1,1,794,38 -910,FR,CA,201812,1,1,829184,43843 -910,FR,CA,201812,1,1,143524,36269 -910,FR,CA,201812,1,1,24492,3707 -910,FR,CA,201812,3,1,29414,481 -910,FR,CA,201812,4,1,1666001,7659 -910,FR,CA,201812,4,1,490302,2709 -910,FR,CA,201812,4,1,5348,9 -910,FR,CA,201812,4,1,4379243,17145 -910,FR,CA,201812,4,1,1801735,10319 -910,FR,CA,201812,4,1,10679,17 -910,FR,CA,201812,4,1,5348,8 -910,FR,CA,201812,4,1,214,2 -910,FR,CA,201812,4,1,151171,722 -910,FR,CA,201812,0,2,3747,17 -910,FR,CA,201812,1,2,3498661,95485 -910,FR,CA,201812,1,2,16018351,1178889 -910,FR,CA,201812,1,2,12106,405 -910,FR,CA,201812,1,2,1690,192 -910,FR,CA,201812,1,2,4493650,528027 -910,FR,CA,201812,1,2,4222,507 -910,FR,CA,201812,1,2,1336074,2400 -910,FR,CA,201812,1,2,85970,7558 -910,FR,CA,201812,1,2,107429,0 -910,FR,CA,201812,1,2,473397,53589 -910,FR,CA,201812,1,2,31833,1006 -910,FR,CA,201812,1,2,152550,4923 -910,FR,CA,201812,1,2,29118,1880 -910,FR,CA,201812,1,2,110081,23534 -910,FR,CA,201812,1,2,588964,289672 -910,FR,CA,201812,1,2,77221,15908 -910,FR,CA,201812,1,2,67151,14103 -910,FR,CA,201812,1,2,470707,35742 -910,FR,CA,201812,1,2,1170839,121937 -910,FR,CA,201812,1,2,24000,4000 -910,FR,CA,201812,1,2,100,0 -910,FR,CA,201812,3,2,34297,999 -910,FR,CA,201812,3,2,1370,14 -910,FR,CA,201812,3,2,62519,1496 -910,FR,CA,201812,4,2,3004291,29154 -910,FR,CA,201812,4,2,30972,426 -910,FR,CA,201812,4,2,321274,726 -910,FR,CA,201812,4,2,6093,19 -910,FR,CA,201812,4,2,2607,33 -910,FR,CA,201812,4,2,159,0 -910,FR,CA,201812,4,2,415275,635 -910,FR,CA,201812,4,2,8565525,31683 -910,FR,CA,201812,4,2,30993,1921 -910,FR,CA,201812,4,2,6645,96 -910,FR,CA,201812,4,2,18270,105 -910,FR,CA,201812,4,2,995108,11730 -910,FR,CA,201812,4,2,107456,2648 -910,FR,CA,201812,4,2,2008758,3460 -920,FR,CA,201812,1,1,378429,26075 -920,FR,CA,201812,1,1,5800,1150 -920,FR,CA,201812,1,1,47619,5173 -920,FR,CA,201812,1,1,137,6 -920,FR,CA,201812,1,1,851,55 -920,FR,CA,201812,1,1,178626,12450 -920,FR,CA,201812,1,1,1541,99 -920,FR,CA,201812,3,1,10472,536 -920,FR,CA,201812,4,1,1030,36 -920,FR,CA,201812,4,1,3586,68 -920,FR,CA,201812,4,1,68736,1518 -920,FR,CA,201812,1,2,49301,911 -920,FR,CA,201812,1,2,67985,9518 -920,FR,CA,201812,1,2,974332,114186 -920,FR,CA,201812,1,2,37442,4312 -920,FR,CA,201812,1,2,553958,94960 -920,FR,CA,201812,1,2,168928,42823 -920,FR,CA,201812,1,2,956814,149712 -920,FR,CA,201812,1,2,128703,15244 -920,FR,CA,201812,4,2,8062,612 -920,FR,CA,201812,4,2,4320,297 -920,FR,CA,201812,4,2,4390,190 -920,FR,CA,201812,4,2,29053,2420 -920,FR,CA,201812,4,2,1909,173 -920,FR,CA,201812,4,2,9551,112 -931,FR,CA,201812,0,1,10173,733 -931,FR,CA,201812,1,1,41910,1720 -931,FR,CA,201812,1,1,14202,676 -931,FR,CA,201812,1,1,301,1 -931,FR,CA,201812,1,1,3147129,48780 -931,FR,CA,201812,1,1,44,19 -931,FR,CA,201812,1,1,321023,5491 -931,FR,CA,201812,1,1,63985,5 -931,FR,CA,201812,1,1,148521,1328 -931,FR,CA,201812,1,1,1189,57 -931,FR,CA,201812,1,1,2162,12 -931,FR,CA,201812,1,1,5423,135 -931,FR,CA,201812,1,1,720212,21720 -931,FR,CA,201812,1,1,36330,5629 -931,FR,CA,201812,3,1,429063,860 -931,FR,CA,201812,3,1,12837,342 -931,FR,CA,201812,3,1,28260,25 -931,FR,CA,201812,4,1,3293602,11733 -931,FR,CA,201812,4,1,23693,175 -931,FR,CA,201812,4,1,600688,1126 -931,FR,CA,201812,4,1,1332,27 -931,FR,CA,201812,4,1,3955,17 -931,FR,CA,201812,4,1,2152,36 -931,FR,CA,201812,4,1,279,11 -931,FR,CA,201812,4,1,1000,4 -931,FR,CA,201812,4,1,6495297,4874 -931,FR,CA,201812,4,1,1790963,8966 -931,FR,CA,201812,4,1,632544,602 -931,FR,CA,201812,4,1,22626,102 -931,FR,CA,201812,0,2,8596,66 -931,FR,CA,201812,1,2,1328268,33160 -931,FR,CA,201812,1,2,20455,664 -931,FR,CA,201812,1,2,2997,106 -931,FR,CA,201812,1,2,72309,3406 -931,FR,CA,201812,1,2,3328420,1085358 -931,FR,CA,201812,1,2,2961,741 -931,FR,CA,201812,1,2,189687,2187 -931,FR,CA,201812,1,2,21521,378 -931,FR,CA,201812,1,2,435466,28808 -931,FR,CA,201812,1,2,610,18 -931,FR,CA,201812,1,2,306703,2519 -931,FR,CA,201812,1,2,30575,1216 -931,FR,CA,201812,1,2,117584,9792 -931,FR,CA,201812,1,2,1358676,65881 -931,FR,CA,201812,1,2,1000,1 -931,FR,CA,201812,3,2,47255,512 -931,FR,CA,201812,3,2,4174,29 -931,FR,CA,201812,4,2,5030393,75924 -931,FR,CA,201812,4,2,97629,57 -931,FR,CA,201812,4,2,1100072,3423 -931,FR,CA,201812,4,2,14448,40 -931,FR,CA,201812,4,2,1879,11 -931,FR,CA,201812,4,2,4050,1 -931,FR,CA,201812,4,2,24000,30 -931,FR,CA,201812,4,2,878,45 -931,FR,CA,201812,4,2,742919,1401 -931,FR,CA,201812,4,2,1080718,6215 -931,FR,CA,201812,4,2,5512,1125 -931,FR,CA,201812,4,2,21664,250 -931,FR,CA,201812,4,2,157734,5426 -931,FR,CA,201812,4,2,219805,660 -931,FR,CA,201812,4,2,725882,14200 -931,FR,CA,201812,4,2,902738,1207 -931,FR,CA,201812,4,2,1651465,4757 -939,FR,CA,201812,0,1,28482,151 -939,FR,CA,201812,1,1,110985,4451 -939,FR,CA,201812,1,1,60618,14164 -939,FR,CA,201812,1,1,770699,23587 -939,FR,CA,201812,1,1,2762,55 -939,FR,CA,201812,1,1,205172,16402 -939,FR,CA,201812,1,1,9685,602 -939,FR,CA,201812,1,1,261359,11507 -939,FR,CA,201812,1,1,6009,197 -939,FR,CA,201812,1,1,312201,31227 -939,FR,CA,201812,1,1,12940,944 -939,FR,CA,201812,1,1,1160,350 -939,FR,CA,201812,1,1,1893,205 -939,FR,CA,201812,1,1,936057,37761 -939,FR,CA,201812,1,1,40195,4155 -939,FR,CA,201812,1,1,2510,159 -939,FR,CA,201812,1,1,77187,11871 -939,FR,CA,201812,1,1,19948,2314 -939,FR,CA,201812,1,1,433,20 -939,FR,CA,201812,1,1,149500,13100 -939,FR,CA,201812,1,1,214518,16749 -939,FR,CA,201812,1,1,551142,70949 -939,FR,CA,201812,1,1,130,12 -939,FR,CA,201812,1,1,88466,10429 -939,FR,CA,201812,3,1,261335,2616 -939,FR,CA,201812,3,1,22161,387 -939,FR,CA,201812,3,1,815302,20697 -939,FR,CA,201812,3,1,17859,878 -939,FR,CA,201812,3,1,629,24 -939,FR,CA,201812,3,1,101716,60 -939,FR,CA,201812,3,1,16023,190 -939,FR,CA,201812,4,1,15506966,23590 -939,FR,CA,201812,4,1,6183,45 -939,FR,CA,201812,4,1,460422,6773 -939,FR,CA,201812,4,1,13959,255 -939,FR,CA,201812,4,1,30000,6 -939,FR,CA,201812,4,1,11835,0 -939,FR,CA,201812,4,1,13000,5 -939,FR,CA,201812,4,1,2235,73 -939,FR,CA,201812,4,1,12267649,11876 -939,FR,CA,201812,4,1,7452932,12958 -939,FR,CA,201812,4,1,690,0 -939,FR,CA,201812,4,1,10401802,2780 -939,FR,CA,201812,4,1,829,0 -939,FR,CA,201812,4,1,39402,56 -939,FR,CA,201812,4,1,5965,191 -939,FR,CA,201812,4,1,10377383,2780 -939,FR,CA,201812,4,1,92,4 -939,FR,CA,201812,4,1,2396,29 -939,FR,CA,201812,4,1,98015,1746 -939,FR,CA,201812,0,2,14478,22 -939,FR,CA,201812,1,2,3029784,152923 -939,FR,CA,201812,1,2,9052,204 -939,FR,CA,201812,1,2,41765,2451 -939,FR,CA,201812,1,2,224738,41135 -939,FR,CA,201812,1,2,15202,3706 -939,FR,CA,201812,1,2,52977,1260 -939,FR,CA,201812,1,2,19187,270 -939,FR,CA,201812,1,2,80936,5439 -939,FR,CA,201812,1,2,47640,1688 -939,FR,CA,201812,1,2,760710,11191 -939,FR,CA,201812,1,2,11986,742 -939,FR,CA,201812,1,2,3380,235 -939,FR,CA,201812,1,2,768216,46579 -939,FR,CA,201812,1,2,95627,14037 -939,FR,CA,201812,1,2,143068,5916 -939,FR,CA,201812,1,2,373,14 -939,FR,CA,201812,1,2,1377053,114153 -939,FR,CA,201812,1,2,59000,5000 -939,FR,CA,201812,1,2,646320,79765 -939,FR,CA,201812,1,2,64085,590 -939,FR,CA,201812,1,2,4181062,240687 -939,FR,CA,201812,1,2,165208,14000 -939,FR,CA,201812,1,2,50642,4493 -939,FR,CA,201812,1,2,413432,19075 -939,FR,CA,201812,3,2,2270716,66632 -939,FR,CA,201812,3,2,1260,24 -939,FR,CA,201812,3,2,7510,425 -939,FR,CA,201812,3,2,1025750,19160 -939,FR,CA,201812,4,2,6790962,29456 -939,FR,CA,201812,4,2,126686,1778 -939,FR,CA,201812,4,2,611392,3286 -939,FR,CA,201812,4,2,1288,16 -939,FR,CA,201812,4,2,54220,422 -939,FR,CA,201812,4,2,4504,77 -939,FR,CA,201812,4,2,287238,13180 -939,FR,CA,201812,4,2,728170,2105 -939,FR,CA,201812,4,2,1658807,15207 -939,FR,CA,201812,4,2,1383,10 -939,FR,CA,201812,4,2,2150,2898 -939,FR,CA,201812,4,2,38993,234 -939,FR,CA,201812,4,2,25855,382 -939,FR,CA,201812,4,2,107443,274 -939,FR,CA,201812,4,2,547547,37770 -939,FR,CA,201812,4,2,408050,940 -939,FR,CA,201812,4,2,3086250,7121 -941,FR,CA,201812,1,1,125478,67516 -941,FR,CA,201812,1,1,13228,260 -941,FR,CA,201812,1,1,167376,88527 -941,FR,CA,201812,1,1,66539,33700 -941,FR,CA,201812,1,1,156586,61407 -941,FR,CA,201812,1,1,20687,1100 -941,FR,CA,201812,4,1,620,10 -941,FR,CA,201812,4,1,266,6 -941,FR,CA,201812,4,1,1423,252 -941,FR,CA,201812,1,2,4276,230 -941,FR,CA,201812,1,2,168950,9320 -941,FR,CA,201812,1,2,94280,34340 -941,FR,CA,201812,3,2,3153,70 -941,FR,CA,201812,4,2,260174,329 -941,FR,CA,201812,4,2,8320,100 -941,FR,CA,201812,4,2,1120,9 -949,FR,CA,201812,0,1,18863,99 -949,FR,CA,201812,1,1,43968,5557 -949,FR,CA,201812,1,1,30,1 -949,FR,CA,201812,1,1,74,3 -949,FR,CA,201812,1,1,2163,70 -949,FR,CA,201812,1,1,58453,2860 -949,FR,CA,201812,1,1,146,3 -949,FR,CA,201812,1,1,463,93 -949,FR,CA,201812,1,1,44191,22400 -949,FR,CA,201812,1,1,89348,5603 -949,FR,CA,201812,1,1,1531,73 -949,FR,CA,201812,1,1,2000,2000 -949,FR,CA,201812,1,1,375,9 -949,FR,CA,201812,1,1,144764,31192 -949,FR,CA,201812,1,1,735,245 -949,FR,CA,201812,1,1,11718,1641 -949,FR,CA,201812,3,1,110321,2475 -949,FR,CA,201812,3,1,51,2 -949,FR,CA,201812,4,1,157941,3384 -949,FR,CA,201812,4,1,271696,2200 -949,FR,CA,201812,4,1,90842,637 -949,FR,CA,201812,4,1,16,0 -949,FR,CA,201812,4,1,3290,41 -949,FR,CA,201812,4,1,458141,1201 -949,FR,CA,201812,4,1,499845,6612 -949,FR,CA,201812,4,1,13,0 -949,FR,CA,201812,4,1,191,5 -949,FR,CA,201812,4,1,420,22 -949,FR,CA,201812,0,2,2360,19 -949,FR,CA,201812,1,2,517280,83543 -949,FR,CA,201812,1,2,4681,219 -949,FR,CA,201812,1,2,9112,3104 -949,FR,CA,201812,1,2,17257,650 -949,FR,CA,201812,1,2,868,67 -949,FR,CA,201812,1,2,5067,1346 -949,FR,CA,201812,1,2,2745,110 -949,FR,CA,201812,1,2,7232,690 -949,FR,CA,201812,1,2,78730,10260 -949,FR,CA,201812,1,2,357538,21868 -949,FR,CA,201812,1,2,186043,68014 -949,FR,CA,201812,1,2,279,10 -949,FR,CA,201812,1,2,14428,435 -949,FR,CA,201812,1,2,21808,8219 -949,FR,CA,201812,1,2,420074,66005 -949,FR,CA,201812,1,2,180189,8776 -949,FR,CA,201812,1,2,169223,16533 -949,FR,CA,201812,1,2,249219,3173 -949,FR,CA,201812,1,2,209456,22791 -949,FR,CA,201812,1,2,162838,36748 -949,FR,CA,201812,3,2,61270,4165 -949,FR,CA,201812,3,2,274009,80526 -949,FR,CA,201812,4,2,1009944,20140 -949,FR,CA,201812,4,2,57806,256 -949,FR,CA,201812,4,2,18709,722 -949,FR,CA,201812,4,2,16948,385 -949,FR,CA,201812,4,2,55066,106 -949,FR,CA,201812,4,2,341778,10392 -949,FR,CA,201812,4,2,684,31 -949,FR,CA,201812,4,2,8767,34 -949,FR,CA,201812,4,2,88360,6740 -949,FR,CA,201812,4,2,80567,609 -949,FR,CA,201812,4,2,322175,1438 -951,FR,CA,201812,1,1,422,30 -951,FR,CA,201812,4,1,288,1 -951,FR,CA,201812,4,1,1672,31 -951,FR,CA,201812,1,2,12066,378 -951,FR,CA,201812,1,2,263,7 -951,FR,CA,201812,1,2,6468,241 -951,FR,CA,201812,1,2,478,44 -951,FR,CA,201812,1,2,290,19 -951,FR,CA,201812,4,2,1113,32 -951,FR,CA,201812,4,2,1006,15 -952,FR,CA,201812,0,1,2322,36 -952,FR,CA,201812,1,1,36,1 -952,FR,CA,201812,1,1,1355,197 -952,FR,CA,201812,1,1,1898,40 -952,FR,CA,201812,1,1,1286,51 -952,FR,CA,201812,1,1,153227,26950 -952,FR,CA,201812,3,1,1371,57 -952,FR,CA,201812,4,1,774,3 -952,FR,CA,201812,4,1,1994,29 -952,FR,CA,201812,4,1,10608,59 -952,FR,CA,201812,4,1,1395,3 -952,FR,CA,201812,5,1,269,2 -952,FR,CA,201812,0,2,70,2 -952,FR,CA,201812,1,2,44901,6705 -952,FR,CA,201812,1,2,584,22 -952,FR,CA,201812,1,2,232,7 -952,FR,CA,201812,1,2,30030,4920 -952,FR,CA,201812,1,2,247377,153410 -952,FR,CA,201812,1,2,17402,17509 -952,FR,CA,201812,1,2,222692,50243 -952,FR,CA,201812,1,2,4904,1272 -952,FR,CA,201812,1,2,303363,262612 -952,FR,CA,201812,1,2,18000,28045 -952,FR,CA,201812,1,2,41910,53528 -952,FR,CA,201812,1,2,21273,56486 -952,FR,CA,201812,3,2,7610,505 -952,FR,CA,201812,3,2,57125,32932 -952,FR,CA,201812,4,2,37772,791 -952,FR,CA,201812,4,2,2096,40 -952,FR,CA,201812,4,2,3031,528 -952,FR,CA,201812,4,2,9916,58 -952,FR,CA,201812,4,2,43211,386 -952,FR,CA,201812,4,2,10260,1220 -952,FR,CA,201812,4,2,7575,12 -952,FR,CA,201812,4,2,14646,396 -961,FR,CA,201812,0,1,847,20 -961,FR,CA,201812,3,1,227,3 -961,FR,CA,201812,4,1,117,1 -961,FR,CA,201812,4,1,542,1 -961,FR,CA,201812,4,1,628,8 -961,FR,CA,201812,4,1,33463,61 -961,FR,CA,201812,1,2,20209,2270 -961,FR,CA,201812,1,2,4150,127 -961,FR,CA,201812,1,2,36242,3490 -961,FR,CA,201812,1,2,1431,3 -961,FR,CA,201812,1,2,72667,5898 -961,FR,CA,201812,1,2,4213,196 -961,FR,CA,201812,4,2,5438,3 -961,FR,CA,201812,4,2,44012,478 -961,FR,CA,201812,4,2,3863,5 -961,FR,CA,201812,4,2,41291,80 -961,FR,CA,201812,4,2,2906,130 -961,FR,CA,201812,4,2,26399,112 -961,FR,CA,201812,4,2,91439,1061 -961,FR,CA,201812,5,2,693,3 -962,FR,CA,201812,0,1,636,8 -962,FR,CA,201812,1,1,47,110 -962,FR,CA,201812,1,1,212,4 -962,FR,CA,201812,1,1,3560,830 -962,FR,CA,201812,1,1,557,37 -962,FR,CA,201812,1,1,6140,5462 -962,FR,CA,201812,1,1,2393,486 -962,FR,CA,201812,3,1,1898,45 -962,FR,CA,201812,3,1,37,0 -962,FR,CA,201812,4,1,17675,793 -962,FR,CA,201812,4,1,282,3 -962,FR,CA,201812,4,1,983,2 -962,FR,CA,201812,4,1,14352,38 -962,FR,CA,201812,4,1,17269,129 -962,FR,CA,201812,4,1,30787,441 -962,FR,CA,201812,0,2,342,11 -962,FR,CA,201812,1,2,51134,3012 -962,FR,CA,201812,1,2,130,5 -962,FR,CA,201812,1,2,21594,545 -962,FR,CA,201812,1,2,5000,1130 -962,FR,CA,201812,1,2,114,1 -962,FR,CA,201812,1,2,200,150 -962,FR,CA,201812,1,2,9844,448 -962,FR,CA,201812,1,2,25461,991 -962,FR,CA,201812,1,2,12079,1286 -962,FR,CA,201812,1,2,14555,250 -962,FR,CA,201812,1,2,8643,428 -962,FR,CA,201812,1,2,145773,26101 -962,FR,CA,201812,1,2,30853,9505 -962,FR,CA,201812,1,2,1277,47 -962,FR,CA,201812,1,2,1267206,386609 -962,FR,CA,201812,1,2,112570,7050 -962,FR,CA,201812,1,2,1114,29 -962,FR,CA,201812,1,2,12943,586 -962,FR,CA,201812,1,2,3324,2454 -962,FR,CA,201812,3,2,29170,261 -962,FR,CA,201812,4,2,80742,5647 -962,FR,CA,201812,4,2,300,6 -962,FR,CA,201812,4,2,6662,310 -962,FR,CA,201812,4,2,9442,1086 -962,FR,CA,201812,4,2,2710,8 -962,FR,CA,201812,4,2,184150,2203 -962,FR,CA,201812,4,2,2619,111 -962,FR,CA,201812,4,2,17210,2140 -962,FR,CA,201812,4,2,6933,41 -962,FR,CA,201812,4,2,676,95 -962,FR,CA,201812,4,2,805855,844 -962,FR,CA,201812,5,2,1179,7 -963,FR,CA,201812,0,1,36196,345 -963,FR,CA,201812,1,1,50,50 -963,FR,CA,201812,1,1,6114,135 -963,FR,CA,201812,1,1,9277,348 -963,FR,CA,201812,1,1,13602,1600 -963,FR,CA,201812,1,1,436,6 -963,FR,CA,201812,1,1,109,8 -963,FR,CA,201812,3,1,72634,843 -963,FR,CA,201812,3,1,24,0 -963,FR,CA,201812,3,1,1671,17 -963,FR,CA,201812,3,1,310,6 -963,FR,CA,201812,4,1,50453,118 -963,FR,CA,201812,4,1,25148,180 -963,FR,CA,201812,4,1,6812,0 -963,FR,CA,201812,4,1,107,0 -963,FR,CA,201812,4,1,386724,762 -963,FR,CA,201812,4,1,169928,1160 -963,FR,CA,201812,4,1,50614,870 -963,FR,CA,201812,4,1,8679,125 -963,FR,CA,201812,4,1,7805,72 -963,FR,CA,201812,0,2,18542,142 -963,FR,CA,201812,1,2,127934,4259 -963,FR,CA,201812,1,2,500,4 -963,FR,CA,201812,1,2,8091,132 -963,FR,CA,201812,1,2,82357,786 -963,FR,CA,201812,1,2,27249,1370 -963,FR,CA,201812,1,2,618448,13018 -963,FR,CA,201812,1,2,59613,1800 -963,FR,CA,201812,1,2,76092,2819 -963,FR,CA,201812,1,2,145027,1470 -963,FR,CA,201812,1,2,91622,2512 -963,FR,CA,201812,1,2,420357,12150 -963,FR,CA,201812,1,2,2940,2083 -963,FR,CA,201812,3,2,14349,176 -963,FR,CA,201812,3,2,14354,171 -963,FR,CA,201812,3,2,279,6 -963,FR,CA,201812,4,2,4605112,18893 -963,FR,CA,201812,4,2,44875,160 -963,FR,CA,201812,4,2,57411,832 -963,FR,CA,201812,4,2,44330,167 -963,FR,CA,201812,4,2,132860,1050 -963,FR,CA,201812,4,2,401535,2101 -963,FR,CA,201812,4,2,3190460,10811 -963,FR,CA,201812,4,2,3640,36 -963,FR,CA,201812,4,2,13371,60 -963,FR,CA,201812,4,2,69904,519 -963,FR,CA,201812,4,2,52110,270 -963,FR,CA,201812,4,2,3765,130 -963,FR,CA,201812,4,2,8577,48 -963,FR,CA,201812,4,2,187666,9480 -963,FR,CA,201812,4,2,358016,3147 -963,FR,CA,201812,4,2,86,95 -963,FR,CA,201812,4,2,329844,2389 -963,FR,CA,201812,5,2,6059,30 -971,FR,CA,201812,1,1,3183,490 -971,FR,CA,201812,1,1,28,5 -971,FR,CA,201812,1,1,552,4 -971,FR,CA,201812,1,1,397,7 -971,FR,CA,201812,1,1,299567,55625 -971,FR,CA,201812,1,1,294383,40632 -971,FR,CA,201812,1,1,138,8 -971,FR,CA,201812,3,1,2037,53 -971,FR,CA,201812,3,1,180,5 -971,FR,CA,201812,3,1,26,0 -971,FR,CA,201812,3,1,193,3 -971,FR,CA,201812,4,1,24490,131 -971,FR,CA,201812,4,1,10904,40 -971,FR,CA,201812,4,1,12015,93 -971,FR,CA,201812,4,1,79228,9596 -971,FR,CA,201812,4,1,2761,76 -971,FR,CA,201812,1,2,12397,1043 -971,FR,CA,201812,1,2,1014,76 -971,FR,CA,201812,1,2,53,0 -971,FR,CA,201812,1,2,34566,2179 -971,FR,CA,201812,1,2,1799309,296980 -971,FR,CA,201812,1,2,504,18 -971,FR,CA,201812,1,2,518015,75404 -971,FR,CA,201812,1,2,47884,9293 -971,FR,CA,201812,1,2,45006,5752 -971,FR,CA,201812,1,2,42269,4280 -971,FR,CA,201812,1,2,31005,13865 -971,FR,CA,201812,1,2,79822,15842 -971,FR,CA,201812,3,2,27008,1008 -971,FR,CA,201812,3,2,3662,86 -971,FR,CA,201812,4,2,109211,561 -971,FR,CA,201812,4,2,1067,1 -971,FR,CA,201812,4,2,3031,89 -971,FR,CA,201812,4,2,6706,1 -971,FR,CA,201812,4,2,35277,2837 -971,FR,CA,201812,4,2,46585,1620 -971,FR,CA,201812,4,2,4917,78 -971,FR,CA,201812,4,2,22876,342 -972,FR,CA,201812,0,1,5630,2685 -972,FR,CA,201812,1,1,417602,640846 -972,FR,CA,201812,1,1,134043,111635 -972,FR,CA,201812,3,1,323,22 -972,FR,CA,201812,4,1,1127,20 -972,FR,CA,201812,4,1,13714,460 -972,FR,CA,201812,4,1,657,20 -972,FR,CA,201812,0,2,30,15 -972,FR,CA,201812,1,2,173578,119709 -972,FR,CA,201812,1,2,11895,423 -972,FR,CA,201812,1,2,65691,44513 -972,FR,CA,201812,1,2,3315,372 -972,FR,CA,201812,1,2,1082688,515073 -972,FR,CA,201812,1,2,82788,22543 -972,FR,CA,201812,1,2,118907,79795 -972,FR,CA,201812,1,2,1170493,345064 -972,FR,CA,201812,3,2,162374,45827 -972,FR,CA,201812,4,2,6957,527 -972,FR,CA,201812,4,2,1451,220 -972,FR,CA,201812,4,2,717,0 -972,FR,CA,201812,4,2,1153,40 -973,FR,CA,201812,0,1,1730,26 -973,FR,CA,201812,1,1,3869,1378 -973,FR,CA,201812,1,1,95,19 -973,FR,CA,201812,1,1,29083,4800 -973,FR,CA,201812,1,1,1249,2290 -973,FR,CA,201812,1,1,308487,376857 -973,FR,CA,201812,1,1,178353,221798 -973,FR,CA,201812,3,1,355,30 -973,FR,CA,201812,4,1,2811,43 -973,FR,CA,201812,4,1,6132,268 -973,FR,CA,201812,4,1,22754,1890 -973,FR,CA,201812,0,2,35,13 -973,FR,CA,201812,1,2,42058,4641 -973,FR,CA,201812,1,2,31153,3336 -973,FR,CA,201812,1,2,33041,4342 -973,FR,CA,201812,1,2,330139,27156 -973,FR,CA,201812,1,2,8671,3840 -973,FR,CA,201812,1,2,134963,15339 -973,FR,CA,201812,1,2,105268,21007 -973,FR,CA,201812,1,2,19919,2021 -973,FR,CA,201812,1,2,255175,9200 -973,FR,CA,201812,3,2,5,0 -973,FR,CA,201812,3,2,2285,20 -973,FR,CA,201812,4,2,6284,771 -973,FR,CA,201812,4,2,745,47 -973,FR,CA,201812,4,2,20152,886 -973,FR,CA,201812,4,2,236,60 -973,FR,CA,201812,4,2,2283,1180 -973,FR,CA,201812,4,2,1399,3 -973,FR,CA,201812,4,2,21,1 -974,FR,CA,201812,0,1,8569,145 -974,FR,CA,201812,1,1,663330,29843 -974,FR,CA,201812,1,1,1069383,60126 -974,FR,CA,201812,1,1,2121,2159 -974,FR,CA,201812,1,1,2967,70 -974,FR,CA,201812,1,1,779951,164979 -974,FR,CA,201812,1,1,1840,104 -974,FR,CA,201812,1,1,269996,19547 -974,FR,CA,201812,1,1,428936,103203 -974,FR,CA,201812,3,1,125860,22422 -974,FR,CA,201812,3,1,706,20 -974,FR,CA,201812,3,1,579,52 -974,FR,CA,201812,4,1,172320,39376 -974,FR,CA,201812,4,1,7905,76 -974,FR,CA,201812,4,1,200669,4629 -974,FR,CA,201812,4,1,61960,838 -974,FR,CA,201812,4,1,30,0 -974,FR,CA,201812,5,1,12501,74 -974,FR,CA,201812,0,2,7000,135 -974,FR,CA,201812,1,2,2747776,196705 -974,FR,CA,201812,1,2,167618,9359 -974,FR,CA,201812,1,2,4635,378 -974,FR,CA,201812,1,2,184375,7883 -974,FR,CA,201812,1,2,72250,40813 -974,FR,CA,201812,1,2,1641349,99495 -974,FR,CA,201812,1,2,100,5 -974,FR,CA,201812,1,2,180279,17894 -974,FR,CA,201812,1,2,248708,10055 -974,FR,CA,201812,1,2,1,0 -974,FR,CA,201812,3,2,5443,370 -974,FR,CA,201812,4,2,332396,26692 -974,FR,CA,201812,4,2,7168,257 -974,FR,CA,201812,4,2,203,7 -974,FR,CA,201812,4,2,226037,305 -974,FR,CA,201812,4,2,95073,9158 -974,FR,CA,201812,4,2,671,115 -974,FR,CA,201812,4,2,985,20 -974,FR,CA,201812,4,2,21030,4330 -974,FR,CA,201812,4,2,48611,859 -974,FR,CA,201812,4,2,20828,749 -974,FR,CA,201812,5,2,76859,1224 -975,FR,CA,201812,0,1,2031,18 -975,FR,CA,201812,1,1,47323,2754 -975,FR,CA,201812,1,1,40,1 -975,FR,CA,201812,1,1,700,200 -975,FR,CA,201812,1,1,403,81 -975,FR,CA,201812,1,1,528,240 -975,FR,CA,201812,1,1,4584,931 -975,FR,CA,201812,3,1,1474,19 -975,FR,CA,201812,3,1,472,42 -975,FR,CA,201812,4,1,13528,507 -975,FR,CA,201812,4,1,533,39 -975,FR,CA,201812,4,1,27368,373 -975,FR,CA,201812,4,1,27694,1409 -975,FR,CA,201812,0,2,4932,28 -975,FR,CA,201812,1,2,19130,907 -975,FR,CA,201812,1,2,916,91 -975,FR,CA,201812,1,2,2539,193 -975,FR,CA,201812,1,2,1385,700 -975,FR,CA,201812,1,2,315491,27439 -975,FR,CA,201812,1,2,2050,800 -975,FR,CA,201812,1,2,1860,3 -975,FR,CA,201812,1,2,113231,10089 -975,FR,CA,201812,3,2,11783,125 -975,FR,CA,201812,3,2,235,43 -975,FR,CA,201812,4,2,79375,941 -975,FR,CA,201812,4,2,5639,594 -975,FR,CA,201812,4,2,36639,50 -975,FR,CA,201812,4,2,11033,324 -975,FR,CA,201812,4,2,23800,640 -975,FR,CA,201812,4,2,3380,1600 -975,FR,CA,201812,4,2,3876,7 -975,FR,CA,201812,4,2,22718,101 -976,FR,CA,201812,0,1,859,9 -976,FR,CA,201812,1,1,15332,1093 -976,FR,CA,201812,1,1,28458,23050 -976,FR,CA,201812,1,1,71873,43091 -976,FR,CA,201812,1,1,375,93 -976,FR,CA,201812,1,1,23539,20343 -976,FR,CA,201812,1,1,38014,7004 -976,FR,CA,201812,1,1,399,450 -976,FR,CA,201812,3,1,984,61 -976,FR,CA,201812,4,1,4470,1377 -976,FR,CA,201812,4,1,1078,153 -976,FR,CA,201812,4,1,3210,189 -976,FR,CA,201812,4,1,1324,39 -976,FR,CA,201812,4,1,16753,3536 -976,FR,CA,201812,0,2,146,18 -976,FR,CA,201812,1,2,4128,263 -976,FR,CA,201812,1,2,6295,523 -976,FR,CA,201812,1,2,45222,1998 -976,FR,CA,201812,1,2,44207,2998 -976,FR,CA,201812,1,2,35977,38507 -976,FR,CA,201812,1,2,466850,121795 -976,FR,CA,201812,3,2,9080,4800 -976,FR,CA,201812,4,2,2,5 -976,FR,CA,201812,4,2,79,0 -976,FR,CA,201812,4,2,23470,372 -976,FR,CA,201812,4,2,4607,210 -976,FR,CA,201812,4,2,2456,27 -979,FR,CA,201812,0,1,443664,63593 -979,FR,CA,201812,1,1,157066,11740 -979,FR,CA,201812,1,1,12775,1506 -979,FR,CA,201812,1,1,20190,1200 -979,FR,CA,201812,1,1,20356,2100 -979,FR,CA,201812,1,1,63960,4243 -979,FR,CA,201812,1,1,6140,1100 -979,FR,CA,201812,1,1,348165,33032 -979,FR,CA,201812,1,1,65416,6691 -979,FR,CA,201812,1,1,5153,115 -979,FR,CA,201812,1,1,21149,4026 -979,FR,CA,201812,1,1,158687,21104 -979,FR,CA,201812,1,1,97808,4091 -979,FR,CA,201812,1,1,4463,1540 -979,FR,CA,201812,1,1,215,10 -979,FR,CA,201812,1,1,67851,3823 -979,FR,CA,201812,1,1,7102,458 -979,FR,CA,201812,1,1,58426,17126 -979,FR,CA,201812,1,1,70,9 -979,FR,CA,201812,1,1,829450,62581 -979,FR,CA,201812,1,1,108514,2236 -979,FR,CA,201812,1,1,37730,3603 -979,FR,CA,201812,1,1,147823,16592 -979,FR,CA,201812,3,1,510171,1906 -979,FR,CA,201812,3,1,15142,11 -979,FR,CA,201812,3,1,1658,0 -979,FR,CA,201812,3,1,37617,25 -979,FR,CA,201812,3,1,16087,2 -979,FR,CA,201812,3,1,2520,0 -979,FR,CA,201812,3,1,23056,1 -979,FR,CA,201812,4,1,2237374,16398 -979,FR,CA,201812,4,1,188332,1095 -979,FR,CA,201812,4,1,1367385,1168 -979,FR,CA,201812,4,1,170076,288 -979,FR,CA,201812,4,1,130121,900 -979,FR,CA,201812,4,1,1135,0 -979,FR,CA,201812,4,1,28171,44 -979,FR,CA,201812,4,1,7084,1 -979,FR,CA,201812,4,1,4000048,7329 -979,FR,CA,201812,4,1,4046049,10104 -979,FR,CA,201812,4,1,18637,103 -979,FR,CA,201812,4,1,1462,0 -979,FR,CA,201812,4,1,11303,49 -979,FR,CA,201812,4,1,3105,95 -979,FR,CA,201812,4,1,14232,4 -979,FR,CA,201812,4,1,5874,3 -979,FR,CA,201812,0,2,16764,238 -979,FR,CA,201812,1,2,1053443,57171 -979,FR,CA,201812,1,2,2,0 -979,FR,CA,201812,1,2,105023,2633 -979,FR,CA,201812,1,2,31109,1440 -979,FR,CA,201812,1,2,19307,1879 -979,FR,CA,201812,1,2,96315,2403 -979,FR,CA,201812,1,2,73,2 -979,FR,CA,201812,1,2,13828,1160 -979,FR,CA,201812,1,2,53301,460 -979,FR,CA,201812,1,2,273,0 -979,FR,CA,201812,1,2,123969,6543 -979,FR,CA,201812,1,2,13868,458 -979,FR,CA,201812,1,2,761108,89908 -979,FR,CA,201812,1,2,40987,8761 -979,FR,CA,201812,1,2,8285,303 -979,FR,CA,201812,1,2,169910,22192 -979,FR,CA,201812,1,2,218407,34047 -979,FR,CA,201812,1,2,5154,148 -979,FR,CA,201812,1,2,238367,43963 -979,FR,CA,201812,1,2,18326,4000 -979,FR,CA,201812,1,2,81835,21848 -979,FR,CA,201812,1,2,1575994,103784 -979,FR,CA,201812,1,2,20480,950 -979,FR,CA,201812,1,2,131418,6785 -979,FR,CA,201812,1,2,375506,36499 -979,FR,CA,201812,1,2,4125,3025 -979,FR,CA,201812,3,2,63084,533 -979,FR,CA,201812,3,2,720,50 -979,FR,CA,201812,3,2,5750,415 -979,FR,CA,201812,3,2,141,0 -979,FR,CA,201812,3,2,901516,32492 -979,FR,CA,201812,4,2,2493324,20195 -979,FR,CA,201812,4,2,441,0 -979,FR,CA,201812,4,2,609630,7446 -979,FR,CA,201812,4,2,7868,38 -979,FR,CA,201812,4,2,6836,12 -979,FR,CA,201812,4,2,190,2 -979,FR,CA,201812,4,2,10193,131 -979,FR,CA,201812,4,2,450000,0 -979,FR,CA,201812,4,2,569733,4 -979,FR,CA,201812,4,2,1163105,2406 -979,FR,CA,201812,4,2,3662039,11589 -979,FR,CA,201812,4,2,77425,365 -979,FR,CA,201812,4,2,3694,80 -979,FR,CA,201812,4,2,2053,5 -979,FR,CA,201812,4,2,410545,970 -979,FR,CA,201812,4,2,571283,22951 -979,FR,CA,201812,4,2,344308,1710 -979,FR,CA,201812,4,2,74,190 -979,FR,CA,201812,4,2,3247727,6779 -979,FR,CA,201812,5,2,19195,74 -994,FR,CA,201812,4,1,530,0 -994,FR,CA,201812,4,2,5564,2 -999,FR,CA,201812,0,1,18412,15 -999,FR,CA,201812,1,1,28430,0 -999,FR,CA,201812,1,1,3940,0 -999,FR,CA,201812,1,1,103224,0 -999,FR,CA,201812,1,1,60405,0 -999,FR,CA,201812,1,1,18081,0 -999,FR,CA,201812,1,1,715,0 -999,FR,CA,201812,1,1,4500,0 -999,FR,CA,201812,1,1,240625,0 -999,FR,CA,201812,1,1,20271,0 -999,FR,CA,201812,1,1,1000,0 -999,FR,CA,201812,1,1,211321,0 -999,FR,CA,201812,1,1,36589,0 -999,FR,CA,201812,3,1,5076,12 -999,FR,CA,201812,3,1,44343,0 -999,FR,CA,201812,4,1,10109,0 -999,FR,CA,201812,4,1,4900,0 -999,FR,CA,201812,4,1,4,0 -999,FR,CA,201812,4,1,587,0 -999,FR,CA,201812,4,1,46202,0 -999,FR,CA,201812,5,1,684,0 -999,FR,CA,201812,0,2,41451,27 -999,FR,CA,201812,1,2,554013,26836 -999,FR,CA,201812,1,2,2808,0 -999,FR,CA,201812,1,2,23650,300 -999,FR,CA,201812,1,2,2329,106 -999,FR,CA,201812,1,2,31228,3000 -999,FR,CA,201812,1,2,2100,0 -999,FR,CA,201812,1,2,593991,221356 -999,FR,CA,201812,1,2,189015,75220 -999,FR,CA,201812,1,2,75363,2500 -999,FR,CA,201812,1,2,189044,75318 -999,FR,CA,201812,1,2,310006,18000 -999,FR,CA,201812,1,2,102888,1622 -999,FR,CA,201812,1,2,64576,36000 -999,FR,CA,201812,1,2,1105201,125306 -999,FR,CA,201812,1,2,98,73 -999,FR,CA,201812,1,2,43181,0 -999,FR,CA,201812,1,2,27939,20912 -999,FR,CA,201812,1,2,7140,4000 -999,FR,CA,201812,3,2,111156,2179 -999,FR,CA,201812,4,2,1530510,19588 -999,FR,CA,201812,4,2,7700,120 -999,FR,CA,201812,4,2,460,0 -999,FR,CA,201812,4,2,15432,0 -999,FR,CA,201812,4,2,350,0 -999,FR,CA,201812,4,2,10002,100 -999,FR,CA,201812,4,2,430308,15144 -999,FR,CA,201812,4,2,6171,250 -999,FR,CA,201812,4,2,128403,76 -891,FR,GL,201812,4,2,465,0 -892,FR,GL,201812,4,2,2071,6 -910,FR,GL,201812,4,2,55387,39 -931,FR,GL,201812,4,2,1149,1 -939,FR,GL,201812,1,2,2535,93 -939,FR,GL,201812,4,2,18297,4 -949,FR,GL,201812,4,2,2494,0 -962,FR,GL,201812,4,2,6274,1 -963,FR,GL,201812,3,2,67,3 -971,FR,GL,201812,4,2,352,0 -035,FR,PM,201812,1,2,457,114 -039,FR,PM,201812,4,2,1312,494 -051,FR,PM,201812,1,2,8247,4000 -099,FR,PM,201812,1,2,3790,200 -121,FR,PM,201812,1,2,2672,445 -121,FR,PM,201812,1,2,6838,900 -121,FR,PM,201812,1,2,6041,1524 -121,FR,PM,201812,1,2,5720,1621 -122,FR,PM,201812,1,2,2626,754 -125,FR,PM,201812,1,2,1181,86 -125,FR,PM,201812,1,2,2697,732 -128,FR,PM,201812,1,2,5772,525 -128,FR,PM,201812,1,2,6068,14618 -131,FR,PM,201812,1,2,19905,1676 -132,FR,PM,201812,1,2,996,86 -139,FR,PM,201812,1,2,33079,10103 -139,FR,PM,201812,1,2,51085,15179 -139,FR,PM,201812,1,2,50143,21332 -139,FR,PM,201812,4,2,2808,266 -139,FR,PM,201812,4,2,6533,1356 -141,FR,PM,201812,4,1,154,3 -142,FR,PM,201812,4,2,1740,11 -142,FR,PM,201812,4,2,630,58 -143,FR,PM,201812,1,2,45716,20689 -144,FR,PM,201812,1,2,10931,1157 -147,FR,PM,201812,1,2,4186,358 -147,FR,PM,201812,4,2,1548,117 -147,FR,PM,201812,4,2,7800,112 -148,FR,PM,201812,1,2,259,20 -148,FR,PM,201812,4,2,3375,4 -161,FR,PM,201812,1,2,8200,5325 -163,FR,PM,201812,1,2,7332,1113 -163,FR,PM,201812,4,2,10,3 -166,FR,PM,201812,1,2,12465,3971 -179,FR,PM,201812,4,1,77,1 -341,FR,PM,201812,1,2,1804,180 -552,FR,PM,201812,4,2,20,0 -568,FR,PM,201812,1,2,14458,1623 -691,FR,PM,201812,1,2,5840,2490 -819,FR,PM,201812,1,2,3289,1200 -891,FR,PM,201812,1,2,300,16 -891,FR,PM,201812,4,2,916,17 -892,FR,PM,201812,1,2,508,97 -893,FR,PM,201812,4,1,77,1 -893,FR,PM,201812,0,2,1226,27 -893,FR,PM,201812,1,2,63290,3043 -893,FR,PM,201812,1,2,7062,4972 -893,FR,PM,201812,4,2,163164,549 -893,FR,PM,201812,4,2,270,1 -893,FR,PM,201812,5,2,182,4 -896,FR,PM,201812,0,2,639,1 -896,FR,PM,201812,1,2,15819,2672 -896,FR,PM,201812,4,2,55340,141 -910,FR,PM,201812,1,1,1936,3950 -910,FR,PM,201812,0,2,564,18 -910,FR,PM,201812,1,2,5221,316 -910,FR,PM,201812,4,2,17194,113 -931,FR,PM,201812,4,1,2336,33 -931,FR,PM,201812,0,2,48540,148 -931,FR,PM,201812,1,2,96723,5965 -931,FR,PM,201812,1,2,1550,30 -931,FR,PM,201812,4,2,44708,185 -931,FR,PM,201812,4,2,5225,46 -931,FR,PM,201812,4,2,1,20 -931,FR,PM,201812,5,2,3800,22 -939,FR,PM,201812,4,1,5616,54 -939,FR,PM,201812,0,2,50255,291 -939,FR,PM,201812,1,2,86917,9075 -939,FR,PM,201812,1,2,459,71 -939,FR,PM,201812,4,2,42254,239 -939,FR,PM,201812,5,2,2457,15 -941,FR,PM,201812,1,2,9652,3125 -941,FR,PM,201812,4,2,136,26 -949,FR,PM,201812,4,1,619,10 -949,FR,PM,201812,0,2,149,6 -949,FR,PM,201812,1,2,59517,9995 -949,FR,PM,201812,1,2,1490,30 -949,FR,PM,201812,4,2,2606,24 -949,FR,PM,201812,5,2,60,3 -951,FR,PM,201812,1,2,132,10 -951,FR,PM,201812,4,2,104,15 -952,FR,PM,201812,1,2,9749,4930 -962,FR,PM,201812,0,2,527,10 -962,FR,PM,201812,1,2,4318,221 -962,FR,PM,201812,5,2,405,20 -963,FR,PM,201812,0,2,4946,75 -963,FR,PM,201812,1,2,21643,693 -963,FR,PM,201812,4,2,2410,14 -963,FR,PM,201812,5,2,4267,32 -971,FR,PM,201812,1,2,99,50 -971,FR,PM,201812,3,2,59,5 -971,FR,PM,201812,4,2,138,0 -972,FR,PM,201812,1,2,182592,318 -973,FR,PM,201812,0,2,321,122 -973,FR,PM,201812,1,2,37680,4699 -974,FR,PM,201812,5,1,400,19 -974,FR,PM,201812,0,2,944,127 -974,FR,PM,201812,1,2,2064,311 -974,FR,PM,201812,3,2,2,1 -974,FR,PM,201812,4,2,762,119 -974,FR,PM,201812,4,2,3323,433 -974,FR,PM,201812,5,2,2289,129 -975,FR,PM,201812,0,2,185,22 -975,FR,PM,201812,1,2,46758,8295 -975,FR,PM,201812,1,2,3030,90 -975,FR,PM,201812,4,2,5585,5 -975,FR,PM,201812,5,2,8,1 -976,FR,PM,201812,1,2,23356,4319 -979,FR,PM,201812,4,1,7653,140 -979,FR,PM,201812,4,1,3895,12 -979,FR,PM,201812,0,2,13544,85 -979,FR,PM,201812,1,2,219326,9988 -979,FR,PM,201812,3,2,29021,2512 -979,FR,PM,201812,4,2,17076,25 -979,FR,PM,201812,5,2,1706,18 -999,FR,PM,201812,1,2,43786,218 -999,FR,PM,201812,3,2,40,13 -999,FR,PM,201812,4,2,10,1 -001,FR,MX,201812,4,1,1,6 -001,FR,MX,201812,4,2,133001,1532 -015,FR,MX,201812,4,1,13281,268 -015,FR,MX,201812,4,1,9498,243 -015,FR,MX,201812,4,1,12920,261 -015,FR,MX,201812,4,2,6,5 -015,FR,MX,201812,4,2,7,5 -019,FR,MX,201812,1,2,1215,207 -031,FR,MX,201812,1,1,48866,38016 -031,FR,MX,201812,1,1,55112,46512 -031,FR,MX,201812,1,1,25054,19008 -031,FR,MX,201812,1,1,24015,19008 -031,FR,MX,201812,1,1,54318,36142 -031,FR,MX,201812,3,1,130120,103680 -031,FR,MX,201812,4,1,111650,34083 -031,FR,MX,201812,4,1,159657,49629 -035,FR,MX,201812,1,1,856483,473967 -035,FR,MX,201812,1,1,119769,63360 -035,FR,MX,201812,1,1,39158,21120 -035,FR,MX,201812,1,1,220312,105600 -035,FR,MX,201812,1,1,651667,352720 -035,FR,MX,201812,4,1,176654,26606 -035,FR,MX,201812,4,1,13162,1170 -035,FR,MX,201812,4,1,6367,585 -035,FR,MX,201812,4,1,246403,54988 -035,FR,MX,201812,1,2,9806,2508 -039,FR,MX,201812,4,1,27761,9510 -039,FR,MX,201812,1,2,3013,361 -043,FR,MX,201812,1,1,15048,4760 -043,FR,MX,201812,1,1,13921,4447 -043,FR,MX,201812,4,2,252,0 -049,FR,MX,201812,3,1,75,2 -049,FR,MX,201812,4,1,569,3 -092,FR,MX,201812,1,1,33824,14302 -092,FR,MX,201812,4,1,47,1 -092,FR,MX,201812,1,2,32063,17000 -092,FR,MX,201812,1,2,65119,34500 -099,FR,MX,201812,1,1,11544,4120 -099,FR,MX,201812,1,1,11127,5500 -099,FR,MX,201812,1,1,51832,29738 -099,FR,MX,201812,3,1,5024,31 -099,FR,MX,201812,4,1,147349,919 -099,FR,MX,201812,4,1,9570,103 -099,FR,MX,201812,4,1,52727,330 -099,FR,MX,201812,1,2,36,0 -099,FR,MX,201812,1,2,30115,6000 -099,FR,MX,201812,1,2,3031,5 -099,FR,MX,201812,1,2,134518,32005 -099,FR,MX,201812,1,2,155039,20000 -099,FR,MX,201812,1,2,89403,10000 -099,FR,MX,201812,1,2,145223,32200 -099,FR,MX,201812,4,2,55851,523 -099,FR,MX,201812,4,2,48775,17 -099,FR,MX,201812,4,2,20924,105 -099,FR,MX,201812,4,2,2670,50 -099,FR,MX,201812,4,2,91583,39 -111,FR,MX,201812,4,2,15,6 -112,FR,MX,201812,1,2,1453,800 -121,FR,MX,201812,4,1,53,2 -121,FR,MX,201812,0,2,127,13 -121,FR,MX,201812,1,2,19908,2007 -121,FR,MX,201812,1,2,262295,25849 -121,FR,MX,201812,1,2,21531,1368 -121,FR,MX,201812,1,2,399718,26896 -121,FR,MX,201812,1,2,41386,1548 -121,FR,MX,201812,1,2,1916907,127813 -121,FR,MX,201812,3,2,3679,720 -121,FR,MX,201812,4,2,70292,2516 -121,FR,MX,201812,4,2,30028,2281 -121,FR,MX,201812,4,2,1400,12 -122,FR,MX,201812,1,1,958,639 -122,FR,MX,201812,4,2,260,450 -125,FR,MX,201812,0,1,177,7 -125,FR,MX,201812,1,1,13754,495 -125,FR,MX,201812,1,1,86437,4320 -125,FR,MX,201812,1,1,113524,23349 -125,FR,MX,201812,1,1,26660,1740 -125,FR,MX,201812,1,1,189845,44859 -125,FR,MX,201812,1,1,38803,3780 -125,FR,MX,201812,3,1,83,9 -125,FR,MX,201812,4,1,1408,34 -125,FR,MX,201812,1,2,3363,172 -125,FR,MX,201812,1,2,14422,4019 -125,FR,MX,201812,1,2,36063,10080 -125,FR,MX,201812,1,2,340862,25953 -125,FR,MX,201812,1,2,85318,14289 -125,FR,MX,201812,1,2,170423,12903 -125,FR,MX,201812,4,2,88,8 -125,FR,MX,201812,4,2,1269,23 -128,FR,MX,201812,1,1,11709,6169 -128,FR,MX,201812,1,2,342733,595446 -128,FR,MX,201812,4,2,945,1518 -131,FR,MX,201812,0,1,113713,42749 -131,FR,MX,201812,1,1,27179,18717 -131,FR,MX,201812,1,1,206004,38040 -131,FR,MX,201812,4,2,6848,381 -132,FR,MX,201812,4,1,168,15 -132,FR,MX,201812,0,2,303,11 -132,FR,MX,201812,1,2,42651,12365 -132,FR,MX,201812,1,2,15030,858 -132,FR,MX,201812,1,2,122936,26592 -132,FR,MX,201812,3,2,828,75 -132,FR,MX,201812,4,2,241,74 -132,FR,MX,201812,4,2,7536,576 -132,FR,MX,201812,4,2,1337,10 -133,FR,MX,201812,1,1,95860,40000 -133,FR,MX,201812,4,1,34765,400 -133,FR,MX,201812,4,2,150,27 -136,FR,MX,201812,1,1,72762,19907 -136,FR,MX,201812,1,1,212111,91662 -136,FR,MX,201812,3,1,151,6 -136,FR,MX,201812,4,1,102,0 -136,FR,MX,201812,1,2,568,18 -136,FR,MX,201812,1,2,10967,7820 -136,FR,MX,201812,1,2,36962,14504 -136,FR,MX,201812,4,2,1941,97 -139,FR,MX,201812,3,1,1316,96 -139,FR,MX,201812,3,1,8259,1400 -139,FR,MX,201812,4,1,1082,47 -139,FR,MX,201812,1,2,1927,1500 -139,FR,MX,201812,1,2,15820,320 -139,FR,MX,201812,1,2,16679,8451 -139,FR,MX,201812,1,2,131094,42780 -139,FR,MX,201812,1,2,59168,40000 -139,FR,MX,201812,1,2,1986,688 -139,FR,MX,201812,1,2,7921,3339 -139,FR,MX,201812,1,2,3373,399 -139,FR,MX,201812,4,2,16233,751 -139,FR,MX,201812,4,2,54729,7237 -139,FR,MX,201812,4,2,3118,94 -142,FR,MX,201812,0,1,78011,11340 -142,FR,MX,201812,1,1,481443,65000 -142,FR,MX,201812,1,1,548765,66000 -142,FR,MX,201812,1,1,1895718,524536 -142,FR,MX,201812,1,1,3052713,419000 -142,FR,MX,201812,4,1,72901,3920 -142,FR,MX,201812,4,2,392,50 -143,FR,MX,201812,1,2,3416,1316 -143,FR,MX,201812,4,2,14,5 -144,FR,MX,201812,0,2,155,0 -144,FR,MX,201812,1,2,8057,1490 -144,FR,MX,201812,1,2,48186,4758 -144,FR,MX,201812,1,2,108728,21476 -144,FR,MX,201812,1,2,113290,49500 -144,FR,MX,201812,4,2,24170,2467 -144,FR,MX,201812,4,2,3828,456 -144,FR,MX,201812,4,2,6662,390 -147,FR,MX,201812,4,1,349,1 -147,FR,MX,201812,1,2,7628,896 -147,FR,MX,201812,4,2,35552,689 -148,FR,MX,201812,4,2,2850,3 -161,FR,MX,201812,1,2,1799,864 -162,FR,MX,201812,1,2,152949,385320 -162,FR,MX,201812,1,2,8901,16000 -163,FR,MX,201812,3,1,19262,7772 -163,FR,MX,201812,1,2,23517,2180 -163,FR,MX,201812,1,2,5594,1160 -163,FR,MX,201812,1,2,107119,6980 -163,FR,MX,201812,1,2,55716,3072 -163,FR,MX,201812,1,2,13986,10080 -163,FR,MX,201812,1,2,156338,67068 -163,FR,MX,201812,1,2,16891,7474 -163,FR,MX,201812,1,2,7664,908 -163,FR,MX,201812,4,2,9909,536 -164,FR,MX,201812,1,1,133416,36000 -164,FR,MX,201812,1,1,47097,11346 -164,FR,MX,201812,3,1,8231,4995 -164,FR,MX,201812,4,1,170180,9948 -164,FR,MX,201812,4,1,32345,4686 -164,FR,MX,201812,1,2,75104,17134 -164,FR,MX,201812,1,2,1959,67 -164,FR,MX,201812,1,2,84644,22492 -164,FR,MX,201812,4,2,215,103 -165,FR,MX,201812,1,1,92878,94000 -166,FR,MX,201812,4,1,2848,1512 -166,FR,MX,201812,1,2,4974,1386 -166,FR,MX,201812,1,2,124,6 -166,FR,MX,201812,4,2,4709,107 -179,FR,MX,201812,1,1,17278,21234 -179,FR,MX,201812,1,2,17394,2610 -179,FR,MX,201812,1,2,143359,52900 -179,FR,MX,201812,1,2,117860,6000 -179,FR,MX,201812,1,2,104927,26245 -179,FR,MX,201812,1,2,99681,120000 -179,FR,MX,201812,1,2,56114,800 -179,FR,MX,201812,1,2,47281,23000 -179,FR,MX,201812,4,2,26747,666 -181,FR,MX,201812,4,1,30518,150 -181,FR,MX,201812,1,2,140,15 -182,FR,MX,201812,1,1,78857,60240 -182,FR,MX,201812,1,1,7424,500 -182,FR,MX,201812,1,1,160854,20854 -182,FR,MX,201812,1,1,237889,80200 -182,FR,MX,201812,1,1,383907,40000 -182,FR,MX,201812,4,1,109,1 -182,FR,MX,201812,1,2,8858,832 -182,FR,MX,201812,1,2,4382,845 -182,FR,MX,201812,1,2,8405,358 -182,FR,MX,201812,1,2,67012,18080 -182,FR,MX,201812,1,2,800,250 -182,FR,MX,201812,1,2,12580,1000 -182,FR,MX,201812,1,2,25506,5260 -182,FR,MX,201812,4,2,1125,105 -182,FR,MX,201812,4,2,1052,30 -323,FR,MX,201812,1,2,1365,304 -323,FR,MX,201812,1,2,31276,13457 -323,FR,MX,201812,4,2,103,63 -325,FR,MX,201812,1,2,643,171 -327,FR,MX,201812,1,2,58356,30016 -341,FR,MX,201812,1,2,231,33 -341,FR,MX,201812,1,2,259,18 -341,FR,MX,201812,1,2,1713,800 -341,FR,MX,201812,1,2,129602,43534 -341,FR,MX,201812,1,2,55448,30016 -341,FR,MX,201812,1,2,36749,16855 -341,FR,MX,201812,1,2,556,210 -341,FR,MX,201812,1,2,92107,50485 -341,FR,MX,201812,1,2,9423,6650 -341,FR,MX,201812,3,2,10009,704 -341,FR,MX,201812,4,2,4648,1692 -341,FR,MX,201812,4,2,23,1 -341,FR,MX,201812,4,2,9222,72 -341,FR,MX,201812,4,2,442,4 -341,FR,MX,201812,4,2,196,6 -341,FR,MX,201812,4,2,1660,34 -341,FR,MX,201812,4,2,430,2 -341,FR,MX,201812,4,2,4973,71 -341,FR,MX,201812,8,2,131172,57657 -349,FR,MX,201812,1,2,25705,5000 -349,FR,MX,201812,1,2,505,175 -349,FR,MX,201812,4,2,36,0 -349,FR,MX,201812,4,2,75,20 -451,FR,MX,201812,1,2,260255,43768 -451,FR,MX,201812,1,2,141440,23906 -512,FR,MX,201812,1,2,122448,71486 -522,FR,MX,201812,1,2,54597,65320 -532,FR,MX,201812,0,1,377,0 -532,FR,MX,201812,4,2,7061,702 -533,FR,MX,201812,1,1,86778,1650 -533,FR,MX,201812,1,2,190289,62717 -533,FR,MX,201812,1,2,10847,790 -536,FR,MX,201812,1,2,61478,20651 -536,FR,MX,201812,3,2,3358,16 -536,FR,MX,201812,3,2,10490,4724 -536,FR,MX,201812,3,2,158604,116221 -542,FR,MX,201812,1,2,2541193,2769573 -542,FR,MX,201812,1,2,347845,107418 -542,FR,MX,201812,1,2,118372,4481 -542,FR,MX,201812,1,2,16350,17440 -542,FR,MX,201812,1,2,78584,83820 -542,FR,MX,201812,1,2,42025,48090 -542,FR,MX,201812,1,2,17673,20260 -542,FR,MX,201812,1,2,13869,17710 -542,FR,MX,201812,1,2,85999,99960 -542,FR,MX,201812,1,2,48849,59196 -542,FR,MX,201812,1,2,93124,108353 -542,FR,MX,201812,2,2,444987,484150 -542,FR,MX,201812,3,2,104675,125830 -542,FR,MX,201812,3,2,52629,61800 -542,FR,MX,201812,3,2,298534,178180 -542,FR,MX,201812,4,2,1300,9 -545,FR,MX,201812,1,2,24072,21746 -545,FR,MX,201812,1,2,22977,20754 -545,FR,MX,201812,1,2,92664,83700 -545,FR,MX,201812,1,2,23800,21502 -545,FR,MX,201812,1,2,24222,21883 -545,FR,MX,201812,1,2,24129,21794 -551,FR,MX,201812,1,1,154,12 -551,FR,MX,201812,1,1,34292,5838 -551,FR,MX,201812,1,1,50425,8354 -551,FR,MX,201812,1,1,207,13 -551,FR,MX,201812,4,1,10523,16 -551,FR,MX,201812,4,1,44548,95 -551,FR,MX,201812,4,1,67472,1427 -551,FR,MX,201812,1,2,102889,5090 -551,FR,MX,201812,1,2,96,9 -551,FR,MX,201812,1,2,1,0 -551,FR,MX,201812,3,2,29181,2672 -551,FR,MX,201812,3,2,27852,4812 -551,FR,MX,201812,3,2,147637,86929 -551,FR,MX,201812,4,2,894471,1063 -551,FR,MX,201812,4,2,10557,550 -551,FR,MX,201812,4,2,7170,1 -551,FR,MX,201812,4,2,9712,4 -551,FR,MX,201812,4,2,30180,115 -551,FR,MX,201812,4,2,2562,4 -551,FR,MX,201812,4,2,1557,9 -552,FR,MX,201812,1,1,92514,17217 -552,FR,MX,201812,1,1,12532,2495 -552,FR,MX,201812,3,1,300,30 -552,FR,MX,201812,4,1,28864,1651 -552,FR,MX,201812,4,1,57944,3758 -552,FR,MX,201812,4,1,26233,2646 -552,FR,MX,201812,1,2,169600,41519 -552,FR,MX,201812,1,2,1839,6 -552,FR,MX,201812,1,2,1229,23 -552,FR,MX,201812,4,2,54735,1162 -552,FR,MX,201812,4,2,136,0 -552,FR,MX,201812,4,2,2396,20 -552,FR,MX,201812,4,2,6424,106 -552,FR,MX,201812,4,2,10262,21 -561,FR,MX,201812,1,2,37900,8867 -562,FR,MX,201812,1,2,32195,7533 -564,FR,MX,201812,0,1,123201,50297 -565,FR,MX,201812,0,1,287139,7462 -565,FR,MX,201812,1,1,388695,2685 -565,FR,MX,201812,4,1,26039,55 -565,FR,MX,201812,4,1,5353,5 -565,FR,MX,201812,4,1,13327,8 -565,FR,MX,201812,4,1,39240,19 -565,FR,MX,201812,1,2,22113,169 -565,FR,MX,201812,1,2,126908,1221 -565,FR,MX,201812,1,2,197212,3030 -565,FR,MX,201812,3,2,85007,2600 -565,FR,MX,201812,4,2,9697,89 -565,FR,MX,201812,4,2,1230,2 -565,FR,MX,201812,4,2,19151,172 -568,FR,MX,201812,4,1,186,3 -568,FR,MX,201812,4,1,183,3 -568,FR,MX,201812,4,1,61745,699 -568,FR,MX,201812,1,2,59237,4036 -568,FR,MX,201812,1,2,11112,1026 -568,FR,MX,201812,1,2,865,80 -568,FR,MX,201812,1,2,8460,421 -568,FR,MX,201812,1,2,57750,2210 -568,FR,MX,201812,1,2,11,0 -568,FR,MX,201812,1,2,50837,8504 -568,FR,MX,201812,1,2,258323,36375 -568,FR,MX,201812,1,2,43715,7839 -568,FR,MX,201812,3,2,171712,41080 -568,FR,MX,201812,3,2,62968,19570 -568,FR,MX,201812,4,2,9321,153 -568,FR,MX,201812,4,2,6310,149 -568,FR,MX,201812,4,2,851,120 -568,FR,MX,201812,4,2,11984,31 -568,FR,MX,201812,4,2,4624,9 -568,FR,MX,201812,4,2,1080,20 -614,FR,MX,201812,1,1,6884,61 -614,FR,MX,201812,1,1,2879,104 -614,FR,MX,201812,3,1,512,13 -614,FR,MX,201812,4,1,2926,151 -614,FR,MX,201812,1,2,59640,300000 -621,FR,MX,201812,4,1,82438,3627 -621,FR,MX,201812,1,2,998,2000 -621,FR,MX,201812,1,2,183,1000 -621,FR,MX,201812,4,2,2929,799 -639,FR,MX,201812,3,1,114,4 -639,FR,MX,201812,1,2,2519,2100 -639,FR,MX,201812,1,2,11289,20000 -691,FR,MX,201812,3,1,179,8 -691,FR,MX,201812,4,1,613,8 -691,FR,MX,201812,1,2,2318,256 -691,FR,MX,201812,1,2,753,25 -691,FR,MX,201812,1,2,269348,24366 -691,FR,MX,201812,1,2,263933,133027 -691,FR,MX,201812,1,2,322929,163106 -691,FR,MX,201812,4,2,45713,133 -691,FR,MX,201812,4,2,34734,811 -691,FR,MX,201812,4,2,1132351,4425 -691,FR,MX,201812,4,2,344,0 -692,FR,MX,201812,1,2,208494,59364 -692,FR,MX,201812,1,2,2922,2200 -692,FR,MX,201812,1,2,21210,13485 -692,FR,MX,201812,1,2,61741,23858 -719,FR,MX,201812,1,2,1520,611 -724,FR,MX,201812,1,2,122942,416000 -724,FR,MX,201812,4,2,34,4 -819,FR,MX,201812,1,1,113123,92000 -819,FR,MX,201812,3,1,228278,7424 -819,FR,MX,201812,3,1,49940,2250 -819,FR,MX,201812,3,1,16950,550 -819,FR,MX,201812,3,1,53435,2235 -819,FR,MX,201812,3,1,201574,22320 -819,FR,MX,201812,3,1,14170,2000 -819,FR,MX,201812,4,1,542055,12044 -819,FR,MX,201812,4,1,1159,14 -819,FR,MX,201812,1,2,12121,2100 -819,FR,MX,201812,1,2,66209,1290 -819,FR,MX,201812,1,2,1295,150 -819,FR,MX,201812,1,2,1220,125 -819,FR,MX,201812,1,2,157764,4150 -819,FR,MX,201812,1,2,9555,500 -819,FR,MX,201812,1,2,200692,33633 -819,FR,MX,201812,1,2,30052,18700 -819,FR,MX,201812,1,2,14143,8113 -819,FR,MX,201812,1,2,4641,1400 -819,FR,MX,201812,1,2,1736,21600 -819,FR,MX,201812,1,2,38170,2300 -819,FR,MX,201812,1,2,125911,19200 -819,FR,MX,201812,1,2,101381,41616 -819,FR,MX,201812,1,2,37922,37900 -819,FR,MX,201812,1,2,212639,235800 -819,FR,MX,201812,3,2,234195,15179 -819,FR,MX,201812,3,2,256521,77920 -819,FR,MX,201812,4,2,571109,2016 -819,FR,MX,201812,4,2,6953,25 -819,FR,MX,201812,4,2,34,10 -819,FR,MX,201812,4,2,1645,20 -819,FR,MX,201812,4,2,13633,5 -819,FR,MX,201812,4,2,7548,180 -819,FR,MX,201812,4,2,10800,80 -819,FR,MX,201812,4,2,8910,310 -820,FR,MX,201812,1,2,26475,38500 -820,FR,MX,201812,1,2,48047,4000 -891,FR,MX,201812,0,1,66,0 -891,FR,MX,201812,1,1,87072,123380 -891,FR,MX,201812,1,1,478,15 -891,FR,MX,201812,1,1,8344,2000 -891,FR,MX,201812,1,1,51253,995 -891,FR,MX,201812,1,1,172,32 -891,FR,MX,201812,1,1,207071,204350 -891,FR,MX,201812,1,1,11149,9979 -891,FR,MX,201812,1,1,22445,20144 -891,FR,MX,201812,1,1,37380,22500 -891,FR,MX,201812,1,1,115920,32000 -891,FR,MX,201812,1,1,32040,17500 -891,FR,MX,201812,3,1,265,1 -891,FR,MX,201812,4,1,1950,90 -891,FR,MX,201812,4,1,79,2 -891,FR,MX,201812,4,1,1575,1 -891,FR,MX,201812,4,1,19085,992 -891,FR,MX,201812,4,1,13881,89 -891,FR,MX,201812,1,2,378475,87239 -891,FR,MX,201812,1,2,7840,3512 -891,FR,MX,201812,1,2,7833,3000 -891,FR,MX,201812,1,2,79921,14529 -891,FR,MX,201812,1,2,133552,2236 -891,FR,MX,201812,1,2,9152,1183 -891,FR,MX,201812,1,2,1979164,638857 -891,FR,MX,201812,1,2,38212,49500 -891,FR,MX,201812,1,2,100999,15456 -891,FR,MX,201812,1,2,33798,22000 -891,FR,MX,201812,1,2,283349,49456 -891,FR,MX,201812,1,2,127295,38345 -891,FR,MX,201812,1,2,93452,15965 -891,FR,MX,201812,1,2,84054,55600 -891,FR,MX,201812,1,2,19772,74250 -891,FR,MX,201812,1,2,104167,39990 -891,FR,MX,201812,1,2,364916,125480 -891,FR,MX,201812,1,2,4,0 -891,FR,MX,201812,1,2,21150,4000 -891,FR,MX,201812,1,2,329338,20467 -891,FR,MX,201812,1,2,27226,3227 -891,FR,MX,201812,3,2,58492,3689 -891,FR,MX,201812,3,2,10600,5063 -891,FR,MX,201812,3,2,840,50 -891,FR,MX,201812,3,2,1111,104 -891,FR,MX,201812,3,2,1114,102 -891,FR,MX,201812,3,2,11084,20000 -891,FR,MX,201812,4,2,117108,1542 -891,FR,MX,201812,4,2,119,25 -891,FR,MX,201812,4,2,12200,280 -891,FR,MX,201812,4,2,2347,73 -891,FR,MX,201812,4,2,42604,953 -891,FR,MX,201812,4,2,8118,1162 -891,FR,MX,201812,4,2,46246,242 -891,FR,MX,201812,4,2,6421,124 -891,FR,MX,201812,4,2,6892,90 -891,FR,MX,201812,4,2,11989,345 -891,FR,MX,201812,4,2,19399,292 -892,FR,MX,201812,1,1,14623,1360 -892,FR,MX,201812,1,1,65,0 -892,FR,MX,201812,1,1,66248,20560 -892,FR,MX,201812,1,1,41636,15015 -892,FR,MX,201812,4,1,186,2 -892,FR,MX,201812,4,1,13871,200 -892,FR,MX,201812,1,2,558516,31060 -892,FR,MX,201812,1,2,201,4 -892,FR,MX,201812,1,2,93340,4215 -892,FR,MX,201812,1,2,17037,13083 -892,FR,MX,201812,1,2,14564,4400 -892,FR,MX,201812,1,2,11592,250 -892,FR,MX,201812,1,2,25095,942 -892,FR,MX,201812,1,2,331145,92533 -892,FR,MX,201812,1,2,25749,6255 -892,FR,MX,201812,1,2,65427,3640 -892,FR,MX,201812,1,2,12182,10775 -892,FR,MX,201812,1,2,109674,38416 -892,FR,MX,201812,1,2,10826,7565 -892,FR,MX,201812,3,2,148441,26694 -892,FR,MX,201812,4,2,245366,4030 -892,FR,MX,201812,4,2,21,0 -892,FR,MX,201812,4,2,6350,369 -892,FR,MX,201812,4,2,7208,217 -892,FR,MX,201812,4,2,56403,2102 -892,FR,MX,201812,4,2,5488,40 -892,FR,MX,201812,4,2,16539,345 -892,FR,MX,201812,4,2,60,60 -893,FR,MX,201812,0,1,401,2 -893,FR,MX,201812,1,1,152216,7200 -893,FR,MX,201812,1,1,5746,77 -893,FR,MX,201812,1,1,427779,5468 -893,FR,MX,201812,1,1,173550,166179 -893,FR,MX,201812,3,1,438193,787 -893,FR,MX,201812,3,1,5386,2 -893,FR,MX,201812,3,1,19551,822 -893,FR,MX,201812,4,1,199894,1578 -893,FR,MX,201812,4,1,28,1 -893,FR,MX,201812,4,1,51917,1108 -893,FR,MX,201812,4,1,98551,33 -893,FR,MX,201812,4,1,23447,4 -893,FR,MX,201812,0,2,139,1 -893,FR,MX,201812,1,2,1746495,101239 -893,FR,MX,201812,1,2,118154,1581 -893,FR,MX,201812,1,2,28530,6600 -893,FR,MX,201812,1,2,31826,2616 -893,FR,MX,201812,1,2,300616,8825 -893,FR,MX,201812,1,2,119897,3403 -893,FR,MX,201812,1,2,14989,23 -893,FR,MX,201812,1,2,5973,150 -893,FR,MX,201812,1,2,3497931,292247 -893,FR,MX,201812,1,2,1260407,49816 -893,FR,MX,201812,1,2,114850,18119 -893,FR,MX,201812,1,2,79089,22662 -893,FR,MX,201812,1,2,636092,19528 -893,FR,MX,201812,1,2,2787292,216405 -893,FR,MX,201812,1,2,30642,2337 -893,FR,MX,201812,1,2,28569,1000 -893,FR,MX,201812,1,2,80569,4000 -893,FR,MX,201812,1,2,37246,9000 -893,FR,MX,201812,1,2,282669,10800 -893,FR,MX,201812,3,2,31582,2508 -893,FR,MX,201812,4,2,9860206,47718 -893,FR,MX,201812,4,2,30554,1939 -893,FR,MX,201812,4,2,376488,253 -893,FR,MX,201812,4,2,10986,216 -893,FR,MX,201812,4,2,27292,321 -893,FR,MX,201812,4,2,116988,1096 -893,FR,MX,201812,4,2,97657,989 -893,FR,MX,201812,4,2,2206109,14758 -893,FR,MX,201812,4,2,400563,2491 -893,FR,MX,201812,4,2,20803,186 -893,FR,MX,201812,4,2,26525,2600 -893,FR,MX,201812,4,2,10608,167 -894,FR,MX,201812,4,2,1661,7 -894,FR,MX,201812,4,2,4062,43 -894,FR,MX,201812,4,2,39319,352 -894,FR,MX,201812,4,2,360,2 -894,FR,MX,201812,4,2,4061,42 -895,FR,MX,201812,1,2,31297,20000 -896,FR,MX,201812,1,1,1749,5 -896,FR,MX,201812,1,1,39106,1240 -896,FR,MX,201812,1,1,31189,203657 -896,FR,MX,201812,1,1,237134,78320 -896,FR,MX,201812,1,1,248718,12027 -896,FR,MX,201812,1,1,202125,7494 -896,FR,MX,201812,1,1,237822,7620 -896,FR,MX,201812,1,1,2049,73 -896,FR,MX,201812,3,1,15499,26 -896,FR,MX,201812,3,1,780,1 -896,FR,MX,201812,3,1,2999,4 -896,FR,MX,201812,3,1,23103,37 -896,FR,MX,201812,3,1,709,1 -896,FR,MX,201812,4,1,607,62 -896,FR,MX,201812,4,1,451,11 -896,FR,MX,201812,1,2,366088,27899 -896,FR,MX,201812,1,2,15322,220 -896,FR,MX,201812,1,2,61509,11208 -896,FR,MX,201812,1,2,34578,4000 -896,FR,MX,201812,1,2,16796,1201 -896,FR,MX,201812,1,2,10750,3500 -896,FR,MX,201812,1,2,192351,16850 -896,FR,MX,201812,1,2,1177319,200253 -896,FR,MX,201812,1,2,658,360 -896,FR,MX,201812,1,2,84250,11027 -896,FR,MX,201812,1,2,52875,14761 -896,FR,MX,201812,1,2,11728,60000 -896,FR,MX,201812,1,2,353450,209952 -896,FR,MX,201812,1,2,5609,3310 -896,FR,MX,201812,1,2,36009,2022 -896,FR,MX,201812,1,2,6112,2382 -896,FR,MX,201812,1,2,12461,6300 -896,FR,MX,201812,1,2,9798,9910 -896,FR,MX,201812,3,2,102577,4605 -896,FR,MX,201812,3,2,515826,4106 -896,FR,MX,201812,4,2,1247483,32747 -896,FR,MX,201812,4,2,2099,231 -896,FR,MX,201812,4,2,530841,1674 -896,FR,MX,201812,4,2,21295,319 -896,FR,MX,201812,4,2,9541,217 -896,FR,MX,201812,4,2,542724,6382 -896,FR,MX,201812,4,2,48778,3145 -896,FR,MX,201812,4,2,186,0 -896,FR,MX,201812,4,2,108640,89 -910,FR,MX,201812,0,1,384719,17594 -910,FR,MX,201812,1,1,9210,850 -910,FR,MX,201812,1,1,149322,1545 -910,FR,MX,201812,1,1,149,6 -910,FR,MX,201812,1,1,6862,571 -910,FR,MX,201812,1,1,382934,29770 -910,FR,MX,201812,1,1,968729,87797 -910,FR,MX,201812,1,1,2580,1000 -910,FR,MX,201812,1,1,822,39 -910,FR,MX,201812,1,1,1269,24 -910,FR,MX,201812,1,1,1389629,96216 -910,FR,MX,201812,1,1,73199,12868 -910,FR,MX,201812,1,1,647,29 -910,FR,MX,201812,1,1,468,14 -910,FR,MX,201812,1,1,4597,336 -910,FR,MX,201812,3,1,64913,939 -910,FR,MX,201812,3,1,683,0 -910,FR,MX,201812,3,1,18472,1970 -910,FR,MX,201812,4,1,141076,10712 -910,FR,MX,201812,4,1,52399,1240 -910,FR,MX,201812,4,1,2217,65 -910,FR,MX,201812,4,1,9540,59 -910,FR,MX,201812,4,1,267053,2088 -910,FR,MX,201812,4,1,30035,360 -910,FR,MX,201812,4,1,20438,728 -910,FR,MX,201812,4,1,9900,19 -910,FR,MX,201812,1,2,2948817,365675 -910,FR,MX,201812,1,2,33027,21800 -910,FR,MX,201812,1,2,159546,18752 -910,FR,MX,201812,1,2,11250,660 -910,FR,MX,201812,1,2,101206,55900 -910,FR,MX,201812,1,2,20193,472 -910,FR,MX,201812,1,2,51757,9012 -910,FR,MX,201812,1,2,987332,49617 -910,FR,MX,201812,1,2,1974137,189362 -910,FR,MX,201812,1,2,65896,4398 -910,FR,MX,201812,1,2,455512,21651 -910,FR,MX,201812,1,2,510178,81989 -910,FR,MX,201812,1,2,58083,3947 -910,FR,MX,201812,1,2,192013,28165 -910,FR,MX,201812,1,2,36420,4516 -910,FR,MX,201812,1,2,35704,9216 -910,FR,MX,201812,1,2,197129,10240 -910,FR,MX,201812,3,2,1020224,89684 -910,FR,MX,201812,3,2,298327,42543 -910,FR,MX,201812,3,2,20646,5139 -910,FR,MX,201812,3,2,1000,620 -910,FR,MX,201812,4,2,2051391,33422 -910,FR,MX,201812,4,2,58833,5088 -910,FR,MX,201812,4,2,668329,5145 -910,FR,MX,201812,4,2,1707,129 -910,FR,MX,201812,4,2,158834,1454 -910,FR,MX,201812,4,2,1722971,52374 -910,FR,MX,201812,4,2,588,35 -910,FR,MX,201812,4,2,5618,561 -910,FR,MX,201812,4,2,183,0 -910,FR,MX,201812,4,2,11649,61 -910,FR,MX,201812,4,2,367012,8990 -910,FR,MX,201812,4,2,7163,9 -910,FR,MX,201812,4,2,162380,1414 -910,FR,MX,201812,9,2,55893499,40700 -920,FR,MX,201812,1,1,67,3 -920,FR,MX,201812,1,1,156626,32236 -920,FR,MX,201812,1,1,4426,356 -920,FR,MX,201812,4,1,870,50 -920,FR,MX,201812,1,2,43209,3685 -920,FR,MX,201812,1,2,78920,2468 -920,FR,MX,201812,1,2,71220,15120 -920,FR,MX,201812,1,2,69096,15120 -920,FR,MX,201812,1,2,56054,2169 -920,FR,MX,201812,1,2,347173,2395 -920,FR,MX,201812,4,2,2179,30 -920,FR,MX,201812,4,2,2360,8 -920,FR,MX,201812,4,2,4024,260 -920,FR,MX,201812,4,2,2405,2 -920,FR,MX,201812,4,2,1109,410 -920,FR,MX,201812,4,2,2421,61 -931,FR,MX,201812,0,1,164099,1283 -931,FR,MX,201812,1,1,131911,11963 -931,FR,MX,201812,1,1,2545,77 -931,FR,MX,201812,1,1,741317,69558 -931,FR,MX,201812,1,1,80056,9072 -931,FR,MX,201812,1,1,178406,9060 -931,FR,MX,201812,1,1,12358,101 -931,FR,MX,201812,1,1,36125,3528 -931,FR,MX,201812,1,1,25422,343 -931,FR,MX,201812,1,1,51029,410 -931,FR,MX,201812,1,1,1577533,391240 -931,FR,MX,201812,1,1,233589,39808 -931,FR,MX,201812,1,1,63496,26721 -931,FR,MX,201812,1,1,4385,211 -931,FR,MX,201812,1,1,73279,18200 -931,FR,MX,201812,1,1,301321,52871 -931,FR,MX,201812,1,1,59024,3571 -931,FR,MX,201812,1,1,126260,8576 -931,FR,MX,201812,1,1,447873,39586 -931,FR,MX,201812,1,1,96425,1976 -931,FR,MX,201812,1,1,4278,157 -931,FR,MX,201812,1,1,40865,2244 -931,FR,MX,201812,1,1,284724,52110 -931,FR,MX,201812,3,1,2158409,7058 -931,FR,MX,201812,3,1,164,1 -931,FR,MX,201812,3,1,1764,37 -931,FR,MX,201812,3,1,1526,4 -931,FR,MX,201812,3,1,130,3 -931,FR,MX,201812,3,1,306846,353 -931,FR,MX,201812,3,1,26,0 -931,FR,MX,201812,4,1,3094321,21515 -931,FR,MX,201812,4,1,1025713,5312 -931,FR,MX,201812,4,1,108710,643 -931,FR,MX,201812,4,1,543,10 -931,FR,MX,201812,4,1,135,0 -931,FR,MX,201812,4,1,508203,5410 -931,FR,MX,201812,4,1,41054,330 -931,FR,MX,201812,4,1,290,0 -931,FR,MX,201812,4,1,6676,444 -931,FR,MX,201812,4,1,10,7 -931,FR,MX,201812,4,1,17967157,40879 -931,FR,MX,201812,4,1,4517,77 -931,FR,MX,201812,4,1,14697165,61343 -931,FR,MX,201812,4,1,311,0 -931,FR,MX,201812,4,1,133106,713 -931,FR,MX,201812,4,1,100516,1000 -931,FR,MX,201812,4,1,8730,24 -931,FR,MX,201812,4,1,54,0 -931,FR,MX,201812,4,1,256,13 -931,FR,MX,201812,4,1,133,0 -931,FR,MX,201812,4,1,319,3 -931,FR,MX,201812,4,1,477,0 -931,FR,MX,201812,0,2,5895,8 -931,FR,MX,201812,1,2,5010832,146346 -931,FR,MX,201812,1,2,16795,816 -931,FR,MX,201812,1,2,66748,10228 -931,FR,MX,201812,1,2,118857,8127 -931,FR,MX,201812,1,2,71972,12745 -931,FR,MX,201812,1,2,89827,5262 -931,FR,MX,201812,1,2,33549,300 -931,FR,MX,201812,1,2,123964,3628 -931,FR,MX,201812,1,2,36268,519 -931,FR,MX,201812,1,2,2273014,257283 -931,FR,MX,201812,1,2,335122,15951 -931,FR,MX,201812,1,2,91614,13131 -931,FR,MX,201812,1,2,99000,22606 -931,FR,MX,201812,1,2,117792,61584 -931,FR,MX,201812,1,2,569336,10269 -931,FR,MX,201812,1,2,116444,7818 -931,FR,MX,201812,1,2,57262,1910 -931,FR,MX,201812,1,2,509344,44792 -931,FR,MX,201812,1,2,3073,120 -931,FR,MX,201812,1,2,60868,4546 -931,FR,MX,201812,1,2,152593,4651 -931,FR,MX,201812,3,2,285579,71084 -931,FR,MX,201812,3,2,24398,4972 -931,FR,MX,201812,4,2,6143820,46160 -931,FR,MX,201812,4,2,17298,386 -931,FR,MX,201812,4,2,2108055,10165 -931,FR,MX,201812,4,2,680,50 -931,FR,MX,201812,4,2,14634,601 -931,FR,MX,201812,4,2,651694,14420 -931,FR,MX,201812,4,2,328809,1653 -931,FR,MX,201812,4,2,102541,2800 -931,FR,MX,201812,4,2,236591,1274 -931,FR,MX,201812,4,2,5547,1 -931,FR,MX,201812,4,2,5152712,10411 -931,FR,MX,201812,4,2,3849,6 -931,FR,MX,201812,4,2,29517,350 -931,FR,MX,201812,4,2,9069,135 -931,FR,MX,201812,4,2,1094156,5727 -931,FR,MX,201812,4,2,5896,561 -931,FR,MX,201812,4,2,737,3 -931,FR,MX,201812,4,2,63890,524 -931,FR,MX,201812,4,2,11808,22 -931,FR,MX,201812,4,2,3825372,47300 -931,FR,MX,201812,4,2,1302258,3383 -931,FR,MX,201812,4,2,977850,2919 -931,FR,MX,201812,5,2,4504,168 -939,FR,MX,201812,0,1,100990,692 -939,FR,MX,201812,1,1,47252,1929 -939,FR,MX,201812,1,1,32631,2725 -939,FR,MX,201812,1,1,57085,9758 -939,FR,MX,201812,1,1,4560,162 -939,FR,MX,201812,1,1,2103,1945 -939,FR,MX,201812,1,1,325,27 -939,FR,MX,201812,1,1,278,8 -939,FR,MX,201812,1,1,52621,2447 -939,FR,MX,201812,1,1,1371412,206828 -939,FR,MX,201812,1,1,14302,406 -939,FR,MX,201812,1,1,562436,119835 -939,FR,MX,201812,1,1,6240,585 -939,FR,MX,201812,1,1,799598,172485 -939,FR,MX,201812,1,1,132534,4942 -939,FR,MX,201812,1,1,213513,45640 -939,FR,MX,201812,1,1,1391112,79932 -939,FR,MX,201812,1,1,21884,392 -939,FR,MX,201812,1,1,562,42 -939,FR,MX,201812,1,1,166665,46887 -939,FR,MX,201812,1,1,254825,16788 -939,FR,MX,201812,3,1,148987,1173 -939,FR,MX,201812,3,1,78949,1132 -939,FR,MX,201812,3,1,611,16 -939,FR,MX,201812,3,1,30577,2 -939,FR,MX,201812,4,1,43871020,54904 -939,FR,MX,201812,4,1,92507,378 -939,FR,MX,201812,4,1,921590,4012 -939,FR,MX,201812,4,1,4655,54 -939,FR,MX,201812,4,1,3390896,5364 -939,FR,MX,201812,4,1,5988,38 -939,FR,MX,201812,4,1,4383,20 -939,FR,MX,201812,4,1,4590352,23949 -939,FR,MX,201812,4,1,15626411,48940 -939,FR,MX,201812,4,1,17530,851 -939,FR,MX,201812,4,1,139260,120 -939,FR,MX,201812,4,1,2915,110 -939,FR,MX,201812,4,1,1871,2 -939,FR,MX,201812,0,2,308,2 -939,FR,MX,201812,1,2,4178097,124960 -939,FR,MX,201812,1,2,245738,19153 -939,FR,MX,201812,1,2,415802,161828 -939,FR,MX,201812,1,2,28668,551 -939,FR,MX,201812,1,2,52323,3339 -939,FR,MX,201812,1,2,290782,21581 -939,FR,MX,201812,1,2,35497,2081 -939,FR,MX,201812,1,2,8927,304 -939,FR,MX,201812,1,2,45904,1279 -939,FR,MX,201812,1,2,13321,1160 -939,FR,MX,201812,1,2,572530,11832 -939,FR,MX,201812,1,2,17966,444 -939,FR,MX,201812,1,2,96853,5526 -939,FR,MX,201812,1,2,388573,54441 -939,FR,MX,201812,1,2,5883341,432722 -939,FR,MX,201812,1,2,159707,3256 -939,FR,MX,201812,1,2,117850,18040 -939,FR,MX,201812,1,2,2022717,33399 -939,FR,MX,201812,1,2,288330,45868 -939,FR,MX,201812,1,2,1411,22 -939,FR,MX,201812,1,2,607454,35866 -939,FR,MX,201812,1,2,897,15 -939,FR,MX,201812,1,2,1236008,47177 -939,FR,MX,201812,1,2,356600,48873 -939,FR,MX,201812,1,2,130170,30230 -939,FR,MX,201812,1,2,3094993,150086 -939,FR,MX,201812,1,2,1438,36 -939,FR,MX,201812,1,2,2114468,100837 -939,FR,MX,201812,1,2,15890,338 -939,FR,MX,201812,3,2,2203428,87507 -939,FR,MX,201812,3,2,210830,5351 -939,FR,MX,201812,3,2,23370,1461 -939,FR,MX,201812,3,2,18880,371 -939,FR,MX,201812,3,2,3726,63 -939,FR,MX,201812,4,2,30703657,97458 -939,FR,MX,201812,4,2,342754,3451 -939,FR,MX,201812,4,2,355982,4005 -939,FR,MX,201812,4,2,229670,1751 -939,FR,MX,201812,4,2,3375,21 -939,FR,MX,201812,4,2,469436,5848 -939,FR,MX,201812,4,2,184386,4135 -939,FR,MX,201812,4,2,38284,677 -939,FR,MX,201812,4,2,1059,25 -939,FR,MX,201812,4,2,17791,160 -939,FR,MX,201812,4,2,277528,1573 -939,FR,MX,201812,4,2,228,1 -939,FR,MX,201812,4,2,1607205,20759 -939,FR,MX,201812,4,2,30202,245 -939,FR,MX,201812,4,2,2983,8 -939,FR,MX,201812,4,2,9414,120 -939,FR,MX,201812,4,2,139380,958 -939,FR,MX,201812,4,2,7370,70 -939,FR,MX,201812,4,2,30572,177 -939,FR,MX,201812,4,2,555991,495 -939,FR,MX,201812,4,2,16974,79 -939,FR,MX,201812,4,2,1045767,55210 -939,FR,MX,201812,4,2,47265,246 -939,FR,MX,201812,4,2,764,2 -939,FR,MX,201812,4,2,986158,3145 -941,FR,MX,201812,1,1,11872,1603 -941,FR,MX,201812,1,2,9930,320 -941,FR,MX,201812,1,2,184912,13360 -941,FR,MX,201812,1,2,35628,3520 -941,FR,MX,201812,1,2,184130,84469 -941,FR,MX,201812,1,2,298344,96979 -941,FR,MX,201812,1,2,17167,1630 -941,FR,MX,201812,1,2,166906,51843 -941,FR,MX,201812,4,2,1254,41 -941,FR,MX,201812,4,2,1355,30 -949,FR,MX,201812,0,1,23206,45 -949,FR,MX,201812,1,1,4645,606 -949,FR,MX,201812,1,1,10315,1549 -949,FR,MX,201812,1,1,1090,35 -949,FR,MX,201812,1,1,59145,1505 -949,FR,MX,201812,1,1,111759,1664 -949,FR,MX,201812,1,1,27300,1538 -949,FR,MX,201812,1,1,93,7 -949,FR,MX,201812,1,1,40302,1603 -949,FR,MX,201812,1,1,82,2 -949,FR,MX,201812,1,1,9228,1726 -949,FR,MX,201812,1,1,167336,26128 -949,FR,MX,201812,1,1,17434,752 -949,FR,MX,201812,1,1,5228,255 -949,FR,MX,201812,1,1,73959,15022 -949,FR,MX,201812,1,1,2491,47 -949,FR,MX,201812,1,1,2903,222 -949,FR,MX,201812,1,1,255408,26947 -949,FR,MX,201812,1,1,3919,222 -949,FR,MX,201812,3,1,3790,40 -949,FR,MX,201812,3,1,2313,2 -949,FR,MX,201812,4,1,153726,1349 -949,FR,MX,201812,4,1,8930,14 -949,FR,MX,201812,4,1,27429,131 -949,FR,MX,201812,4,1,111,2 -949,FR,MX,201812,4,1,4411,6 -949,FR,MX,201812,4,1,277625,6115 -949,FR,MX,201812,4,1,61374,2213 -949,FR,MX,201812,4,1,88,1 -949,FR,MX,201812,4,1,102,0 -949,FR,MX,201812,0,2,50,1 -949,FR,MX,201812,1,2,664566,48477 -949,FR,MX,201812,1,2,1699,179 -949,FR,MX,201812,1,2,102056,10767 -949,FR,MX,201812,1,2,4914,270 -949,FR,MX,201812,1,2,9972,905 -949,FR,MX,201812,1,2,118579,17537 -949,FR,MX,201812,1,2,108160,9383 -949,FR,MX,201812,1,2,1831,175 -949,FR,MX,201812,1,2,3963,562 -949,FR,MX,201812,1,2,15215,4266 -949,FR,MX,201812,1,2,2300,379 -949,FR,MX,201812,1,2,1360,187 -949,FR,MX,201812,1,2,5656,283 -949,FR,MX,201812,1,2,5738,342 -949,FR,MX,201812,1,2,1188660,151282 -949,FR,MX,201812,1,2,48660,16083 -949,FR,MX,201812,1,2,122750,64469 -949,FR,MX,201812,1,2,15419,4704 -949,FR,MX,201812,1,2,21917,2083 -949,FR,MX,201812,1,2,161277,15293 -949,FR,MX,201812,1,2,456,11 -949,FR,MX,201812,1,2,80869,38070 -949,FR,MX,201812,3,2,179099,13062 -949,FR,MX,201812,3,2,167975,9399 -949,FR,MX,201812,3,2,62351,8177 -949,FR,MX,201812,3,2,8000,38 -949,FR,MX,201812,4,2,3218943,12909 -949,FR,MX,201812,4,2,3613,96 -949,FR,MX,201812,4,2,455218,1971 -949,FR,MX,201812,4,2,1787,10 -949,FR,MX,201812,4,2,29470,1893 -949,FR,MX,201812,4,2,304,5 -949,FR,MX,201812,4,2,412,25 -949,FR,MX,201812,4,2,11500,63 -949,FR,MX,201812,4,2,1186405,3531 -949,FR,MX,201812,4,2,197816,3051 -949,FR,MX,201812,4,2,2444,7 -949,FR,MX,201812,4,2,25347,111 -949,FR,MX,201812,4,2,5390,12 -949,FR,MX,201812,4,2,192157,13310 -949,FR,MX,201812,4,2,67496,211 -949,FR,MX,201812,4,2,146220,2573 -951,FR,MX,201812,3,1,160,3 -951,FR,MX,201812,4,1,2278,1 -951,FR,MX,201812,4,1,54,0 -951,FR,MX,201812,1,2,21974,2015 -951,FR,MX,201812,1,2,610,14 -951,FR,MX,201812,1,2,24779,2321 -951,FR,MX,201812,1,2,40342,2041 -951,FR,MX,201812,1,2,707,121 -951,FR,MX,201812,4,2,12430,1022 -951,FR,MX,201812,4,2,155,1 -951,FR,MX,201812,4,2,1278,4 -952,FR,MX,201812,0,1,44,0 -952,FR,MX,201812,1,1,37587,5477 -952,FR,MX,201812,1,1,22160,4143 -952,FR,MX,201812,1,1,124532,8695 -952,FR,MX,201812,1,1,206522,31210 -952,FR,MX,201812,3,1,832,72 -952,FR,MX,201812,4,1,832,22 -952,FR,MX,201812,4,1,119,6 -952,FR,MX,201812,4,1,6694,233 -952,FR,MX,201812,4,1,6035,398 -952,FR,MX,201812,0,2,200,2 -952,FR,MX,201812,1,2,2897,246 -952,FR,MX,201812,1,2,3729,401 -952,FR,MX,201812,1,2,111,2 -952,FR,MX,201812,1,2,8891,585 -952,FR,MX,201812,1,2,51393,1504 -952,FR,MX,201812,1,2,215658,164100 -952,FR,MX,201812,1,2,7408,17584 -952,FR,MX,201812,1,2,19018,15666 -952,FR,MX,201812,1,2,64541,33323 -952,FR,MX,201812,3,2,30725,1999 -952,FR,MX,201812,3,2,4045,675 -952,FR,MX,201812,3,2,288931,206548 -952,FR,MX,201812,4,2,222639,717 -952,FR,MX,201812,4,2,2469,406 -952,FR,MX,201812,4,2,171598,589 -952,FR,MX,201812,4,2,57739,3095 -952,FR,MX,201812,4,2,1797,20 -952,FR,MX,201812,4,2,46273,300 -952,FR,MX,201812,4,2,4902,52 -961,FR,MX,201812,4,1,3861,74 -961,FR,MX,201812,4,1,123,0 -961,FR,MX,201812,1,2,42791,17340 -961,FR,MX,201812,4,2,6498,11 -961,FR,MX,201812,4,2,7741,70 -961,FR,MX,201812,4,2,5734,7 -961,FR,MX,201812,4,2,128160,1850 -961,FR,MX,201812,4,2,4175,15 -962,FR,MX,201812,0,1,3065,67 -962,FR,MX,201812,1,1,1225,25 -962,FR,MX,201812,1,1,32484,17902 -962,FR,MX,201812,1,1,5318,171 -962,FR,MX,201812,1,1,1431,48 -962,FR,MX,201812,1,1,1508,2 -962,FR,MX,201812,1,1,473814,56455 -962,FR,MX,201812,1,1,234040,2130 -962,FR,MX,201812,1,1,1282,36 -962,FR,MX,201812,1,1,949,178 -962,FR,MX,201812,3,1,4986,115 -962,FR,MX,201812,4,1,19095,252 -962,FR,MX,201812,4,1,63,1 -962,FR,MX,201812,4,1,153,171 -962,FR,MX,201812,4,1,27112,354 -962,FR,MX,201812,4,1,28384,150 -962,FR,MX,201812,4,1,51766,1119 -962,FR,MX,201812,4,1,7859,295 -962,FR,MX,201812,1,2,82374,2894 -962,FR,MX,201812,1,2,38215,6421 -962,FR,MX,201812,1,2,13808,1423 -962,FR,MX,201812,1,2,81273,6793 -962,FR,MX,201812,1,2,101,50 -962,FR,MX,201812,1,2,38766,18105 -962,FR,MX,201812,1,2,26062,6718 -962,FR,MX,201812,1,2,228703,95708 -962,FR,MX,201812,1,2,611940,137739 -962,FR,MX,201812,1,2,788,11 -962,FR,MX,201812,1,2,26685,6909 -962,FR,MX,201812,1,2,33009,10500 -962,FR,MX,201812,1,2,309,5099 -962,FR,MX,201812,3,2,7173,700 -962,FR,MX,201812,3,2,1216,65 -962,FR,MX,201812,4,2,83089,4160 -962,FR,MX,201812,4,2,901,15 -962,FR,MX,201812,4,2,12703,201 -962,FR,MX,201812,4,2,1256,20 -962,FR,MX,201812,4,2,218,8 -962,FR,MX,201812,4,2,20663,630 -962,FR,MX,201812,4,2,28824,425 -962,FR,MX,201812,4,2,5958,144 -962,FR,MX,201812,4,2,3914,52 -962,FR,MX,201812,4,2,5864,43 -962,FR,MX,201812,4,2,9017,2100 -962,FR,MX,201812,4,2,5790,30 -962,FR,MX,201812,4,2,34943,1090 -963,FR,MX,201812,0,1,1202,31 -963,FR,MX,201812,1,1,34437,733 -963,FR,MX,201812,1,1,21529,84 -963,FR,MX,201812,1,1,619,17 -963,FR,MX,201812,1,1,202,16 -963,FR,MX,201812,1,1,53,4 -963,FR,MX,201812,3,1,27584,555 -963,FR,MX,201812,3,1,235,1 -963,FR,MX,201812,3,1,5014,103 -963,FR,MX,201812,3,1,107,2 -963,FR,MX,201812,4,1,61199,1175 -963,FR,MX,201812,4,1,25453,383 -963,FR,MX,201812,4,1,561,13 -963,FR,MX,201812,4,1,764,12 -963,FR,MX,201812,4,1,167537,1325 -963,FR,MX,201812,4,1,28162,34 -963,FR,MX,201812,4,1,474,8 -963,FR,MX,201812,0,2,2871,27 -963,FR,MX,201812,1,2,21028,204 -963,FR,MX,201812,1,2,5869,43 -963,FR,MX,201812,1,2,10900,375 -963,FR,MX,201812,1,2,250688,3826 -963,FR,MX,201812,1,2,3087,78 -963,FR,MX,201812,1,2,2638,40 -963,FR,MX,201812,1,2,2905,72 -963,FR,MX,201812,1,2,1407,34 -963,FR,MX,201812,1,2,1950,2 -963,FR,MX,201812,1,2,773,7 -963,FR,MX,201812,3,2,2,0 -963,FR,MX,201812,4,2,4435709,14892 -963,FR,MX,201812,4,2,156771,1822 -963,FR,MX,201812,4,2,954,2 -963,FR,MX,201812,4,2,66574,295 -963,FR,MX,201812,4,2,4078,123 -963,FR,MX,201812,4,2,554217,850 -963,FR,MX,201812,4,2,48914,289 -963,FR,MX,201812,4,2,117993,627 -963,FR,MX,201812,4,2,3793,450 -963,FR,MX,201812,4,2,7788,200 -963,FR,MX,201812,4,2,27178,21 -971,FR,MX,201812,0,1,6757,16 -971,FR,MX,201812,1,1,121,5 -971,FR,MX,201812,1,1,40,2 -971,FR,MX,201812,1,1,1983,154 -971,FR,MX,201812,1,1,3622,176 -971,FR,MX,201812,1,1,4183,301 -971,FR,MX,201812,1,1,69807,8962 -971,FR,MX,201812,1,1,15573,1100 -971,FR,MX,201812,3,1,1541,41 -971,FR,MX,201812,3,1,7,0 -971,FR,MX,201812,3,1,22706,32 -971,FR,MX,201812,4,1,26566,1171 -971,FR,MX,201812,4,1,1607,62 -971,FR,MX,201812,4,1,5571,32 -971,FR,MX,201812,4,1,71,3 -971,FR,MX,201812,4,1,26,1 -971,FR,MX,201812,4,1,53396,530 -971,FR,MX,201812,4,1,6760,350 -971,FR,MX,201812,4,1,22,0 -971,FR,MX,201812,4,1,247,0 -971,FR,MX,201812,4,1,194,2 -971,FR,MX,201812,1,2,14959,724 -971,FR,MX,201812,1,2,97681,5692 -971,FR,MX,201812,1,2,2990,144 -971,FR,MX,201812,1,2,25,2 -971,FR,MX,201812,1,2,159519,2964 -971,FR,MX,201812,1,2,26341,1030 -971,FR,MX,201812,1,2,128468,3198 -971,FR,MX,201812,1,2,13643,1044 -971,FR,MX,201812,1,2,1188979,260236 -971,FR,MX,201812,1,2,26,1 -971,FR,MX,201812,1,2,45397,16655 -971,FR,MX,201812,1,2,30000,6837 -971,FR,MX,201812,1,2,1081454,33574 -971,FR,MX,201812,1,2,30973,3182 -971,FR,MX,201812,1,2,116446,18695 -971,FR,MX,201812,1,2,139363,31648 -971,FR,MX,201812,1,2,9012,1272 -971,FR,MX,201812,1,2,261,27 -971,FR,MX,201812,3,2,360542,6330 -971,FR,MX,201812,3,2,56937,1239 -971,FR,MX,201812,4,2,389886,2166 -971,FR,MX,201812,4,2,23436,2160 -971,FR,MX,201812,4,2,3677,22 -971,FR,MX,201812,4,2,49238,1644 -971,FR,MX,201812,4,2,26762,1360 -971,FR,MX,201812,4,2,150,5 -971,FR,MX,201812,4,2,31431,601 -971,FR,MX,201812,4,2,1362237,38572 -971,FR,MX,201812,4,2,2672,15 -971,FR,MX,201812,4,2,1425,6 -971,FR,MX,201812,4,2,46123,5680 -971,FR,MX,201812,4,2,75200,1017 -971,FR,MX,201812,4,2,45746,392 -972,FR,MX,201812,4,1,456,8 -972,FR,MX,201812,1,2,3630,1484 -972,FR,MX,201812,1,2,227543,222178 -972,FR,MX,201812,1,2,19891,4531 -972,FR,MX,201812,1,2,305373,112779 -972,FR,MX,201812,1,2,7974,7665 -972,FR,MX,201812,1,2,24234,3607 -972,FR,MX,201812,4,2,13416,2154 -972,FR,MX,201812,4,2,114,0 -972,FR,MX,201812,4,2,2211,67 -972,FR,MX,201812,4,2,5575,202 -973,FR,MX,201812,1,1,27230,21515 -973,FR,MX,201812,3,1,3805,102 -973,FR,MX,201812,3,1,23,0 -973,FR,MX,201812,3,1,810,0 -973,FR,MX,201812,4,1,385,92 -973,FR,MX,201812,4,1,1788,44 -973,FR,MX,201812,4,1,88,2 -973,FR,MX,201812,0,2,34,0 -973,FR,MX,201812,1,2,28079,8151 -973,FR,MX,201812,1,2,1,423 -973,FR,MX,201812,1,2,75456,59406 -973,FR,MX,201812,1,2,143588,40277 -973,FR,MX,201812,1,2,44592,40398 -973,FR,MX,201812,1,2,537787,60712 -973,FR,MX,201812,1,2,6097,256 -973,FR,MX,201812,1,2,188,0 -973,FR,MX,201812,4,2,35676,5011 -973,FR,MX,201812,4,2,86,2 -973,FR,MX,201812,4,2,1100,81 -973,FR,MX,201812,4,2,52604,3697 -974,FR,MX,201812,3,1,6230,129 -974,FR,MX,201812,4,1,111997,36 -974,FR,MX,201812,4,1,1779,3 -974,FR,MX,201812,4,1,411,0 -974,FR,MX,201812,4,1,259662,3950 -974,FR,MX,201812,4,1,17718,1437 -974,FR,MX,201812,4,1,100,3 -974,FR,MX,201812,0,2,470,17 -974,FR,MX,201812,1,2,7032,516 -974,FR,MX,201812,1,2,12534,447 -974,FR,MX,201812,1,2,108,10 -974,FR,MX,201812,1,2,1584,99 -974,FR,MX,201812,1,2,712,22 -974,FR,MX,201812,1,2,4290,119 -974,FR,MX,201812,3,2,439,121 -974,FR,MX,201812,4,2,181838,2271 -974,FR,MX,201812,4,2,55391,951 -974,FR,MX,201812,4,2,6,9 -974,FR,MX,201812,4,2,2755,40 -974,FR,MX,201812,4,2,13471,3690 -974,FR,MX,201812,4,2,21111,8300 -974,FR,MX,201812,4,2,9080,105 -974,FR,MX,201812,4,2,9214,162 -975,FR,MX,201812,0,1,80317,14480 -975,FR,MX,201812,1,1,17011,2469 -975,FR,MX,201812,1,1,20861,1342 -975,FR,MX,201812,1,1,2681,502 -975,FR,MX,201812,1,1,25652,7637 -975,FR,MX,201812,1,1,227224,21912 -975,FR,MX,201812,1,1,6401,241 -975,FR,MX,201812,4,1,12261,1448 -975,FR,MX,201812,4,1,6900,201 -975,FR,MX,201812,4,1,3473,412 -975,FR,MX,201812,4,1,7,0 -975,FR,MX,201812,4,1,40987,2012 -975,FR,MX,201812,0,2,731,19 -975,FR,MX,201812,1,2,11529,2262 -975,FR,MX,201812,1,2,135,3 -975,FR,MX,201812,1,2,15470,1556 -975,FR,MX,201812,1,2,452,20 -975,FR,MX,201812,1,2,1899728,225812 -975,FR,MX,201812,1,2,225,4 -975,FR,MX,201812,1,2,12402,2571 -975,FR,MX,201812,1,2,85904,15032 -975,FR,MX,201812,1,2,1039,36 -975,FR,MX,201812,1,2,144162,13254 -975,FR,MX,201812,1,2,2800,7000 -975,FR,MX,201812,1,2,3286,152 -975,FR,MX,201812,3,2,10127,103 -975,FR,MX,201812,3,2,24408,21500 -975,FR,MX,201812,4,2,9705,145 -975,FR,MX,201812,4,2,200,5 -975,FR,MX,201812,4,2,192590,1201 -975,FR,MX,201812,4,2,1098,250 -975,FR,MX,201812,4,2,2520,20 -976,FR,MX,201812,0,1,425,20 -976,FR,MX,201812,1,1,1293,242 -976,FR,MX,201812,1,1,16336,8360 -976,FR,MX,201812,1,1,5031,5940 -976,FR,MX,201812,3,1,522,10 -976,FR,MX,201812,4,1,1059,20 -976,FR,MX,201812,4,1,733,9 -976,FR,MX,201812,1,2,2852,19 -976,FR,MX,201812,1,2,316,54 -976,FR,MX,201812,1,2,16,2 -976,FR,MX,201812,3,2,582,38 -976,FR,MX,201812,4,2,6589,475 -976,FR,MX,201812,4,2,98,10 -976,FR,MX,201812,4,2,1795,9 -976,FR,MX,201812,4,2,2317,10 -976,FR,MX,201812,4,2,7077,205 -979,FR,MX,201812,0,1,605255,98610 -979,FR,MX,201812,1,1,113054,7050 -979,FR,MX,201812,1,1,2990,120 -979,FR,MX,201812,1,1,11337,485 -979,FR,MX,201812,1,1,2473,1490 -979,FR,MX,201812,1,1,18927,2085 -979,FR,MX,201812,1,1,20342,652 -979,FR,MX,201812,1,1,1528,286 -979,FR,MX,201812,1,1,219463,21646 -979,FR,MX,201812,1,1,28992,5430 -979,FR,MX,201812,1,1,97893,14140 -979,FR,MX,201812,1,1,484,22 -979,FR,MX,201812,1,1,66097,12546 -979,FR,MX,201812,1,1,180263,13685 -979,FR,MX,201812,1,1,24115,4705 -979,FR,MX,201812,1,1,9525743,408011 -979,FR,MX,201812,1,1,58575,8419 -979,FR,MX,201812,1,1,188915,15503 -979,FR,MX,201812,1,1,621934,9659 -979,FR,MX,201812,1,1,36291,22979 -979,FR,MX,201812,1,1,244819,4036 -979,FR,MX,201812,3,1,67268,1581 -979,FR,MX,201812,3,1,3436,5 -979,FR,MX,201812,3,1,67434,31 -979,FR,MX,201812,3,1,22773,183 -979,FR,MX,201812,3,1,18261,5 -979,FR,MX,201812,3,1,34223,2 -979,FR,MX,201812,3,1,13786,3 -979,FR,MX,201812,3,1,86065,87 -979,FR,MX,201812,3,1,27781,1500 -979,FR,MX,201812,4,1,1306982,27346 -979,FR,MX,201812,4,1,42461,1063 -979,FR,MX,201812,4,1,520859,14626 -979,FR,MX,201812,4,1,18489,795 -979,FR,MX,201812,4,1,461959,3031 -979,FR,MX,201812,4,1,70097,898 -979,FR,MX,201812,4,1,30388,245 -979,FR,MX,201812,4,1,12,0 -979,FR,MX,201812,4,1,65024,1170 -979,FR,MX,201812,4,1,1892282,13661 -979,FR,MX,201812,4,1,569947,8374 -979,FR,MX,201812,4,1,48232,839 -979,FR,MX,201812,4,1,69692,564 -979,FR,MX,201812,4,1,9193,527 -979,FR,MX,201812,0,2,4958,61 -979,FR,MX,201812,1,2,2399322,186972 -979,FR,MX,201812,1,2,765,32 -979,FR,MX,201812,1,2,32439,674 -979,FR,MX,201812,1,2,2485,85 -979,FR,MX,201812,1,2,3682,396 -979,FR,MX,201812,1,2,119,11 -979,FR,MX,201812,1,2,1890,148 -979,FR,MX,201812,1,2,103241,4639 -979,FR,MX,201812,1,2,324,50 -979,FR,MX,201812,1,2,139251,6011 -979,FR,MX,201812,1,2,8826,1177 -979,FR,MX,201812,1,2,688116,101077 -979,FR,MX,201812,1,2,9978,448 -979,FR,MX,201812,1,2,69363,3186 -979,FR,MX,201812,1,2,61981,2947 -979,FR,MX,201812,1,2,59682,5989 -979,FR,MX,201812,1,2,144223,28624 -979,FR,MX,201812,1,2,32498,4608 -979,FR,MX,201812,1,2,2007890,181104 -979,FR,MX,201812,1,2,10496,260 -979,FR,MX,201812,1,2,193151,18000 -979,FR,MX,201812,1,2,569718,37930 -979,FR,MX,201812,1,2,25801,3981 -979,FR,MX,201812,1,2,87931,7814 -979,FR,MX,201812,3,2,115636,14401 -979,FR,MX,201812,3,2,30313,2240 -979,FR,MX,201812,3,2,8809,341 -979,FR,MX,201812,3,2,16987,287 -979,FR,MX,201812,3,2,31000,6953 -979,FR,MX,201812,4,2,1385194,13730 -979,FR,MX,201812,4,2,12216,320 -979,FR,MX,201812,4,2,102470,2076 -979,FR,MX,201812,4,2,30472,205 -979,FR,MX,201812,4,2,39689,619 -979,FR,MX,201812,4,2,6107,90 -979,FR,MX,201812,4,2,55646,1180 -979,FR,MX,201812,4,2,2053,205 -979,FR,MX,201812,4,2,592769,5108 -979,FR,MX,201812,4,2,18,15 -979,FR,MX,201812,4,2,1453952,23478 -979,FR,MX,201812,4,2,29039,392 -979,FR,MX,201812,4,2,12255,320 -979,FR,MX,201812,4,2,4578,70 -979,FR,MX,201812,4,2,2265,9 -979,FR,MX,201812,4,2,2464,111 -979,FR,MX,201812,4,2,175,2 -979,FR,MX,201812,4,2,219067,87 -979,FR,MX,201812,4,2,251728,6000 -979,FR,MX,201812,4,2,123825,509 -979,FR,MX,201812,4,2,267452,1856 -979,FR,MX,201812,5,2,152,2 -994,FR,MX,201812,4,1,61637,2 -999,FR,MX,201812,0,1,22923,0 -999,FR,MX,201812,1,1,112615,0 -999,FR,MX,201812,1,1,15300,0 -999,FR,MX,201812,3,1,2203,0 -999,FR,MX,201812,4,1,37357,0 -999,FR,MX,201812,4,1,4115,0 -999,FR,MX,201812,1,2,34754,4673 -999,FR,MX,201812,1,2,35775,0 -999,FR,MX,201812,1,2,51659,1230 -999,FR,MX,201812,1,2,3442,943 -999,FR,MX,201812,1,2,5787,693 -999,FR,MX,201812,1,2,640427,284926 -999,FR,MX,201812,1,2,30282,22720 -999,FR,MX,201812,1,2,5988,206 -999,FR,MX,201812,1,2,213519,127025 -999,FR,MX,201812,1,2,18921,19000 -999,FR,MX,201812,1,2,114344,32628 -999,FR,MX,201812,1,2,646346,340640 -999,FR,MX,201812,1,2,14,0 -999,FR,MX,201812,1,2,13096,2000 -999,FR,MX,201812,1,2,90036,40000 -999,FR,MX,201812,1,2,87653,2000 -999,FR,MX,201812,1,2,21973,7000 -999,FR,MX,201812,1,2,9661,5078 -999,FR,MX,201812,1,2,67489,11200 -999,FR,MX,201812,3,2,38,5 -999,FR,MX,201812,4,2,296396,2391 -999,FR,MX,201812,4,2,2535,0 -999,FR,MX,201812,4,2,61703,345 -999,FR,MX,201812,4,2,2086,31 -999,FR,MX,201812,4,2,1624,25 -999,FR,MX,201812,4,2,7756,203 -999,FR,MX,201812,4,2,2500,0 -999,FR,MX,201812,4,2,5235,222 -999,FR,MX,201812,4,2,230288,865 -999,FR,MX,201812,4,2,102058,1191 -999,FR,MX,201812,4,2,32190,170 -999,FR,MX,201812,4,2,18891,550 -999,FR,MX,201812,4,2,12352,201 -121,FR,BM,201812,1,2,7845,1278 -125,FR,BM,201812,1,2,14965,2026 -163,FR,BM,201812,4,1,96,4 -552,FR,BM,201812,4,2,9,0 -893,FR,BM,201812,4,1,112,0 -893,FR,BM,201812,4,2,18012,51 -893,FR,BM,201812,4,2,1400,34 -910,FR,BM,201812,4,2,2775,120 -910,FR,BM,201812,4,2,1067,22 -910,FR,BM,201812,4,2,103,3 -931,FR,BM,201812,1,2,4868,57 -931,FR,BM,201812,4,2,1832,11 -939,FR,BM,201812,1,2,122675,12000 -939,FR,BM,201812,4,2,2445,46 -939,FR,BM,201812,4,2,10,0 -939,FR,BM,201812,4,2,2939,43 -949,FR,BM,201812,4,2,646,2 -949,FR,BM,201812,4,2,445,14 -951,FR,BM,201812,4,2,126,2 -952,FR,BM,201812,1,2,780,37 -952,FR,BM,201812,4,2,4370,56 -963,FR,BM,201812,0,2,1683,11 -963,FR,BM,201812,4,2,2128,56 -971,FR,BM,201812,4,2,266,2 -979,FR,BM,201812,3,2,11812,507 -979,FR,BM,201812,4,2,1606,31 -979,FR,BM,201812,4,2,370,0 -979,FR,BM,201812,4,2,2524,20 -979,FR,BM,201812,4,2,1381,4 -999,FR,BM,201812,1,1,24300,0 -999,FR,BM,201812,4,2,141,0 -015,FR,GT,201812,4,1,858,32 -035,FR,GT,201812,1,2,42485,40660 -035,FR,GT,201812,1,2,110030,103282 -035,FR,GT,201812,1,2,19178,23520 -035,FR,GT,201812,1,2,35825,42336 -035,FR,GT,201812,1,2,19748,20580 -039,FR,GT,201812,4,1,46225,9932 -039,FR,GT,201812,4,1,190217,40327 -039,FR,GT,201812,4,1,10661,1914 -039,FR,GT,201812,4,1,9605,1697 -039,FR,GT,201812,4,1,10557,1914 -099,FR,GT,201812,4,1,5829,200 -099,FR,GT,201812,4,1,3725,125 -099,FR,GT,201812,4,1,182371,79 -099,FR,GT,201812,4,2,24933,118 -099,FR,GT,201812,4,2,4349,2 -125,FR,GT,201812,0,1,850,15 -125,FR,GT,201812,1,1,75742,6804 -128,FR,GT,201812,1,2,16648,16327 -128,FR,GT,201812,1,2,55832,45863 -131,FR,GT,201812,0,1,530356,239422 -131,FR,GT,201812,1,1,104531,38109 -131,FR,GT,201812,1,1,33303,26512 -131,FR,GT,201812,1,1,148599,75883 -131,FR,GT,201812,1,1,55380,27207 -139,FR,GT,201812,3,1,55,2 -139,FR,GT,201812,1,2,6571,1680 -139,FR,GT,201812,1,2,10424,1656 -142,FR,GT,201812,1,1,263470,63120 -143,FR,GT,201812,1,2,51681,21496 -144,FR,GT,201812,1,2,42331,9256 -164,FR,GT,201812,1,1,9326,20000 -179,FR,GT,201812,1,2,67523,31800 -181,FR,GT,201812,1,1,192970,92000 -182,FR,GT,201812,1,1,54255,15840 -341,FR,GT,201812,1,2,217537,103460 -341,FR,GT,201812,1,2,104229,44819 -341,FR,GT,201812,1,2,124656,59896 -341,FR,GT,201812,1,2,124996,60032 -551,FR,GT,201812,1,2,7,0 -568,FR,GT,201812,4,2,25,0 -691,FR,GT,201812,1,2,43,4 -819,FR,GT,201812,4,1,15778,430 -819,FR,GT,201812,4,1,422,15 -819,FR,GT,201812,3,2,26691,700 -819,FR,GT,201812,4,2,8449,90 -891,FR,GT,201812,1,2,39459,20000 -891,FR,GT,201812,4,2,24,1 -891,FR,GT,201812,4,2,1489,73 -892,FR,GT,201812,1,2,735,75 -893,FR,GT,201812,1,1,151123,6000 -893,FR,GT,201812,4,1,16429,100 -893,FR,GT,201812,4,1,82502,400 -893,FR,GT,201812,4,1,143291,600 -893,FR,GT,201812,1,2,67679,5627 -893,FR,GT,201812,1,2,2647,100 -893,FR,GT,201812,1,2,42848,450 -893,FR,GT,201812,1,2,34110,1036 -893,FR,GT,201812,1,2,35126,1004 -893,FR,GT,201812,1,2,38168,1000 -893,FR,GT,201812,3,2,73726,3471 -893,FR,GT,201812,4,2,272321,1470 -893,FR,GT,201812,4,2,169248,3412 -893,FR,GT,201812,4,2,124329,553 -893,FR,GT,201812,4,2,101901,3380 -896,FR,GT,201812,1,2,13432,360 -896,FR,GT,201812,1,2,2626,800 -896,FR,GT,201812,1,2,264082,31820 -896,FR,GT,201812,4,2,10092,121 -896,FR,GT,201812,4,2,1588,40 -896,FR,GT,201812,4,2,1985,1590 -910,FR,GT,201812,1,2,127495,642 -910,FR,GT,201812,1,2,45611,3080 -910,FR,GT,201812,3,2,10694,1442 -910,FR,GT,201812,4,2,50570,385 -910,FR,GT,201812,4,2,65,2 -910,FR,GT,201812,4,2,49161,23 -910,FR,GT,201812,4,2,2656,8 -931,FR,GT,201812,1,2,2247,33 -931,FR,GT,201812,1,2,17750,3710 -931,FR,GT,201812,1,2,10128,195 -931,FR,GT,201812,4,2,271579,1776 -931,FR,GT,201812,4,2,6048,42 -931,FR,GT,201812,4,2,3900,151 -931,FR,GT,201812,4,2,46030,32 -931,FR,GT,201812,4,2,10372,130 -931,FR,GT,201812,4,2,21223,1950 -931,FR,GT,201812,4,2,1311,6 -939,FR,GT,201812,3,1,52,3 -939,FR,GT,201812,4,1,9106,10 -939,FR,GT,201812,1,2,4237,98 -939,FR,GT,201812,1,2,24424,801 -939,FR,GT,201812,1,2,88123,10810 -939,FR,GT,201812,4,2,45019,527 -939,FR,GT,201812,4,2,963,14 -939,FR,GT,201812,4,2,12553,153 -939,FR,GT,201812,4,2,99925,9050 -939,FR,GT,201812,4,2,123002,305 -949,FR,GT,201812,4,1,112,1 -949,FR,GT,201812,1,2,115074,14980 -949,FR,GT,201812,1,2,5400,952 -949,FR,GT,201812,1,2,2538,12 -949,FR,GT,201812,4,2,14942,339 -951,FR,GT,201812,1,2,679,79 -951,FR,GT,201812,1,2,1178,62 -952,FR,GT,201812,3,2,19158,7909 -952,FR,GT,201812,4,2,2648,36 -962,FR,GT,201812,4,1,968,6 -962,FR,GT,201812,1,2,584,82 -962,FR,GT,201812,1,2,29330,11475 -962,FR,GT,201812,4,2,414,1 -963,FR,GT,201812,0,1,40,0 -963,FR,GT,201812,1,1,58,0 -963,FR,GT,201812,1,1,803,23 -963,FR,GT,201812,3,1,563,4 -963,FR,GT,201812,4,1,391,3 -963,FR,GT,201812,4,1,18710,470 -963,FR,GT,201812,4,1,1938,58 -963,FR,GT,201812,4,1,395,11 -963,FR,GT,201812,1,2,805,9 -963,FR,GT,201812,1,2,955,9 -963,FR,GT,201812,4,2,4808,112 -971,FR,GT,201812,1,2,1290,32 -971,FR,GT,201812,1,2,6151,246 -971,FR,GT,201812,3,2,6366,275 -971,FR,GT,201812,4,2,5321,87 -972,FR,GT,201812,1,2,100,2 -972,FR,GT,201812,4,2,1094,3 -973,FR,GT,201812,4,1,6254,962 -973,FR,GT,201812,4,2,120,5 -974,FR,GT,201812,3,1,117,2 -974,FR,GT,201812,3,2,232,113 -974,FR,GT,201812,4,2,3244,29 -975,FR,GT,201812,1,2,24715,24892 -975,FR,GT,201812,4,2,462,4 -976,FR,GT,201812,3,1,157,11 -976,FR,GT,201812,1,2,650,143 -979,FR,GT,201812,3,1,67,0 -979,FR,GT,201812,0,2,4229,3 -979,FR,GT,201812,1,2,313024,45924 -979,FR,GT,201812,1,2,77,1 -979,FR,GT,201812,1,2,18353,402 -979,FR,GT,201812,1,2,90791,8950 -979,FR,GT,201812,3,2,9300,25 -979,FR,GT,201812,4,2,26422,145 -979,FR,GT,201812,4,2,600,25 -979,FR,GT,201812,4,2,7306,91 -979,FR,GT,201812,4,2,3863,112 -979,FR,GT,201812,4,2,4656,210 -979,FR,GT,201812,4,2,19133,670 -999,FR,GT,201812,3,1,256,0 -999,FR,GT,201812,4,1,1,0 -999,FR,GT,201812,1,2,13900,1450 -999,FR,GT,201812,1,2,15068,580 -999,FR,GT,201812,1,2,35651,14363 -999,FR,GT,201812,1,2,19549,39500 -999,FR,GT,201812,4,2,235,0 -031,FR,BZ,201812,1,1,29888,49408 -125,FR,BZ,201812,1,1,5204,956 -142,FR,BZ,201812,1,1,123676,7200 -893,FR,BZ,201812,4,2,627,1 -910,FR,BZ,201812,4,1,265,0 -910,FR,BZ,201812,9,2,252480,0 -931,FR,BZ,201812,4,1,291,2 -931,FR,BZ,201812,0,2,112,0 -939,FR,BZ,201812,4,2,9,1 -952,FR,BZ,201812,4,1,53,2 -962,FR,BZ,201812,4,2,2083,18 -963,FR,BZ,201812,4,1,11360,413 -971,FR,BZ,201812,4,1,6,5 -974,FR,BZ,201812,4,2,1989,30 -031,FR,HN,201812,1,1,13805,25015 -031,FR,HN,201812,1,1,46308,69920 -035,FR,HN,201812,1,2,20593,21033 -039,FR,HN,201812,3,1,4925,5087 -039,FR,HN,201812,4,1,126894,46242 -039,FR,HN,201812,4,1,416542,152190 -039,FR,HN,201812,1,2,38880,72900 -121,FR,HN,201812,1,2,16599,9167 -131,FR,HN,201812,0,1,1027664,446383 -131,FR,HN,201812,1,1,74173,47999 -131,FR,HN,201812,1,1,41011,30013 -131,FR,HN,201812,1,1,155831,62100 -131,FR,HN,201812,1,1,149446,88796 -133,FR,HN,201812,1,1,29434,10000 -135,FR,HN,201812,1,1,7335,102 -135,FR,HN,201812,4,1,5253,73 -142,FR,HN,201812,1,1,117439,21120 -142,FR,HN,201812,1,1,228318,41109 -142,FR,HN,201812,1,1,372378,36000 -166,FR,HN,201812,1,1,50038,58380 -166,FR,HN,201812,1,1,49779,59932 -179,FR,HN,201812,1,2,81197,38406 -182,FR,HN,201812,8,1,1230013,2508013 -341,FR,HN,201812,1,2,288348,133299 -819,FR,HN,201812,3,2,5852,100 -891,FR,HN,201812,4,2,106,9 -893,FR,HN,201812,1,2,72420,3842 -893,FR,HN,201812,1,2,270,45 -893,FR,HN,201812,4,2,134506,1185 -893,FR,HN,201812,4,2,45988,1372 -893,FR,HN,201812,4,2,57060,1340 -893,FR,HN,201812,4,2,19472,420 -896,FR,HN,201812,1,2,6445,2203 -896,FR,HN,201812,4,2,98,3 -896,FR,HN,201812,4,2,2979,25 -910,FR,HN,201812,1,2,12965,568 -910,FR,HN,201812,4,2,2096,25 -931,FR,HN,201812,1,2,3844,63 -931,FR,HN,201812,1,2,83478,10246 -931,FR,HN,201812,4,2,19326,501 -931,FR,HN,201812,4,2,2332,16 -931,FR,HN,201812,4,2,18715,180 -931,FR,HN,201812,4,2,1515,1 -931,FR,HN,201812,4,2,1245,51 -939,FR,HN,201812,1,2,26250,2350 -939,FR,HN,201812,1,2,1944,28 -939,FR,HN,201812,4,2,53170,636 -939,FR,HN,201812,4,2,35030,505 -939,FR,HN,201812,4,2,1956,70 -939,FR,HN,201812,4,2,17276,670 -949,FR,HN,201812,1,2,84,8 -949,FR,HN,201812,1,2,1432,9 -951,FR,HN,201812,1,2,62,16 -951,FR,HN,201812,1,2,1322,84 -962,FR,HN,201812,4,2,1065,160 -962,FR,HN,201812,4,2,3089,73 -963,FR,HN,201812,1,1,76,6 -963,FR,HN,201812,3,1,8745,115 -963,FR,HN,201812,3,1,76,0 -963,FR,HN,201812,4,1,3385,113 -963,FR,HN,201812,4,1,6499,87 -963,FR,HN,201812,4,1,46,0 -963,FR,HN,201812,4,1,34920,241 -963,FR,HN,201812,4,1,66,0 -963,FR,HN,201812,1,2,17457,1061 -963,FR,HN,201812,4,2,3231,34 -971,FR,HN,201812,1,2,57929,15749 -971,FR,HN,201812,4,2,40,8 -972,FR,HN,201812,1,2,22237,12013 -973,FR,HN,201812,1,1,19966,8800 -973,FR,HN,201812,1,2,1194,224 -973,FR,HN,201812,1,2,4621,2135 -974,FR,HN,201812,0,2,35,1 -974,FR,HN,201812,1,2,126,29 -976,FR,HN,201812,1,1,19299,23070 -979,FR,HN,201812,1,1,1821,789 -979,FR,HN,201812,3,1,76,0 -979,FR,HN,201812,4,1,39,0 -979,FR,HN,201812,4,1,51,0 -979,FR,HN,201812,1,2,315,21 -979,FR,HN,201812,1,2,735,8 -979,FR,HN,201812,4,2,685,13 -979,FR,HN,201812,4,2,851,9 -979,FR,HN,201812,4,2,1016,10 -979,FR,HN,201812,4,2,1548,15 -999,FR,HN,201812,1,2,71,0 -035,FR,SV,201812,1,2,20125,20065 -035,FR,SV,201812,1,2,19146,20580 -035,FR,SV,201812,1,2,20903,21168 -035,FR,SV,201812,1,2,18374,21403 -121,FR,SV,201812,1,2,12566,1575 -121,FR,SV,201812,1,2,34686,10238 -131,FR,SV,201812,0,1,14862,2341 -148,FR,SV,201812,1,1,389847,94607 -148,FR,SV,201812,1,1,139948,33696 -179,FR,SV,201812,1,2,13800,3372 -179,FR,SV,201812,1,2,22740,17125 -341,FR,SV,201812,1,2,44170,18147 -341,FR,SV,201812,1,2,31627,15008 -341,FR,SV,201812,1,2,94881,45024 -341,FR,SV,201812,1,2,323856,151053 -341,FR,SV,201812,1,2,100140,45971 -819,FR,SV,201812,1,2,19134,750 -819,FR,SV,201812,1,2,38406,1400 -819,FR,SV,201812,4,2,68025,400 -891,FR,SV,201812,4,2,15041,281 -892,FR,SV,201812,3,2,14696,1683 -892,FR,SV,201812,4,2,1049,25 -892,FR,SV,201812,4,2,6125,85 -893,FR,SV,201812,4,1,3875,22 -893,FR,SV,201812,1,2,11981,686 -893,FR,SV,201812,1,2,482,11 -893,FR,SV,201812,1,2,84587,7700 -893,FR,SV,201812,1,2,39004,3850 -893,FR,SV,201812,4,2,113899,794 -893,FR,SV,201812,4,2,40105,1371 -893,FR,SV,201812,4,2,1240,55 -893,FR,SV,201812,4,2,3004,117 -896,FR,SV,201812,1,2,50152,19860 -896,FR,SV,201812,1,2,50226,19600 -896,FR,SV,201812,4,2,2247,23 -896,FR,SV,201812,4,2,1693,10 -896,FR,SV,201812,4,2,4606,2 -910,FR,SV,201812,1,2,2044,167 -910,FR,SV,201812,3,2,83,2 -910,FR,SV,201812,4,2,17158,2 -910,FR,SV,201812,4,2,3370,3 -910,FR,SV,201812,4,2,9130,4 -910,FR,SV,201812,4,2,20014,23 -931,FR,SV,201812,4,1,6315,10 -931,FR,SV,201812,4,1,707,0 -931,FR,SV,201812,1,2,94632,8289 -931,FR,SV,201812,4,2,27701,567 -931,FR,SV,201812,4,2,52808,78 -931,FR,SV,201812,4,2,24508,35 -931,FR,SV,201812,4,2,3470,1 -931,FR,SV,201812,4,2,8153,23 -939,FR,SV,201812,4,1,380,20 -939,FR,SV,201812,0,2,100,2 -939,FR,SV,201812,1,2,19184,584 -939,FR,SV,201812,1,2,15237,960 -939,FR,SV,201812,3,2,1125958,24320 -939,FR,SV,201812,4,2,130724,145 -939,FR,SV,201812,4,2,119602,975 -939,FR,SV,201812,4,2,23092,1910 -939,FR,SV,201812,4,2,4305,50 -949,FR,SV,201812,3,1,310,15 -949,FR,SV,201812,4,1,159,12 -949,FR,SV,201812,4,1,269,0 -949,FR,SV,201812,1,2,3240,254 -949,FR,SV,201812,4,2,637,0 -949,FR,SV,201812,4,2,359,2 -949,FR,SV,201812,4,2,29216,1 -949,FR,SV,201812,4,2,1217,20 -951,FR,SV,201812,4,2,937,1 -952,FR,SV,201812,1,2,84507,38967 -962,FR,SV,201812,3,1,169,8 -962,FR,SV,201812,4,1,11566,845 -962,FR,SV,201812,4,1,6114,463 -962,FR,SV,201812,4,2,530,6 -963,FR,SV,201812,0,1,1400,22 -963,FR,SV,201812,1,1,110,1 -963,FR,SV,201812,3,1,1174,3 -963,FR,SV,201812,3,1,192,0 -963,FR,SV,201812,4,1,240,2 -963,FR,SV,201812,4,1,4935,57 -963,FR,SV,201812,0,2,133,1 -963,FR,SV,201812,3,2,63,44 -963,FR,SV,201812,4,2,4254,60 -963,FR,SV,201812,4,2,1194,20 -963,FR,SV,201812,4,2,2239,64 -971,FR,SV,201812,4,2,337,2 -971,FR,SV,201812,4,2,2192,2 -972,FR,SV,201812,1,2,337984,576905 -972,FR,SV,201812,1,2,28998,16147 -974,FR,SV,201812,1,2,5,9 -974,FR,SV,201812,4,2,6419,250 -974,FR,SV,201812,4,2,1722,25 -975,FR,SV,201812,3,1,187,8 -975,FR,SV,201812,4,1,586,1 -975,FR,SV,201812,4,2,8769,22 -979,FR,SV,201812,3,1,485,6 -979,FR,SV,201812,1,2,7724,458 -979,FR,SV,201812,3,2,1788,7 -979,FR,SV,201812,4,2,2018,208 -979,FR,SV,201812,4,2,418,3 -979,FR,SV,201812,4,2,12090,340 -979,FR,SV,201812,4,2,799,40 -979,FR,SV,201812,4,2,5697,270 -979,FR,SV,201812,4,2,38433,57 -999,FR,SV,201812,1,1,7039,0 -999,FR,SV,201812,1,2,104996,153350 -999,FR,SV,201812,1,2,73445,17550 -999,FR,SV,201812,1,2,74343,34000 -999,FR,SV,201812,4,2,23145,300 -039,FR,NI,201812,4,1,215705,63050 -039,FR,NI,201812,4,1,11353,3150 -131,FR,NI,201812,0,1,166097,41982 -135,FR,NI,201812,0,1,5888,112 -135,FR,NI,201812,4,1,16797,185 -135,FR,NI,201812,4,1,12535,280 -142,FR,NI,201812,1,1,575027,114176 -142,FR,NI,201812,1,1,613388,131880 -142,FR,NI,201812,1,1,1414539,282852 -142,FR,NI,201812,1,1,115462,23000 -181,FR,NI,201812,4,1,284,18 -642,FR,NI,201812,1,2,12233,97500 -819,FR,NI,201812,1,2,6270,900 -819,FR,NI,201812,3,2,4652,200 -892,FR,NI,201812,1,2,5717,340 -893,FR,NI,201812,4,2,96143,835 -896,FR,NI,201812,4,2,14281,2638 -896,FR,NI,201812,4,2,3168,1 -896,FR,NI,201812,4,2,22486,757 -896,FR,NI,201812,4,2,4000,20 -896,FR,NI,201812,4,2,1872,5 -910,FR,NI,201812,4,2,549,14 -910,FR,NI,201812,4,2,5551,33 -920,FR,NI,201812,1,2,166500,29000 -931,FR,NI,201812,0,2,40,0 -931,FR,NI,201812,3,2,1085,81 -931,FR,NI,201812,4,2,4802,7 -931,FR,NI,201812,4,2,1388,1 -939,FR,NI,201812,4,2,4238,123 -939,FR,NI,201812,4,2,175,16 -939,FR,NI,201812,4,2,41503,4620 -939,FR,NI,201812,4,2,21766,68 -949,FR,NI,201812,4,1,75,2 -949,FR,NI,201812,4,2,2,0 -962,FR,NI,201812,3,1,129,7 -962,FR,NI,201812,4,2,626,5 -963,FR,NI,201812,3,1,2355,87 -963,FR,NI,201812,4,1,2865,33 -963,FR,NI,201812,4,1,15339,179 -971,FR,NI,201812,1,2,6750,2635 -974,FR,NI,201812,4,1,199,2 -974,FR,NI,201812,4,2,2699,48 -975,FR,NI,201812,3,2,137,1 -979,FR,NI,201812,4,1,299,5 -979,FR,NI,201812,4,2,24137,25 -979,FR,NI,201812,4,2,2562,13 -999,FR,NI,201812,1,2,1800,0 -035,FR,CR,201812,1,1,67707,89798 -035,FR,CR,201812,1,1,23345,41043 -035,FR,CR,201812,1,1,15288,31040 -035,FR,CR,201812,1,1,239438,392400 -035,FR,CR,201812,1,1,12156,21168 -035,FR,CR,201812,1,1,33884,63000 -035,FR,CR,201812,1,1,50036,82992 -035,FR,CR,201812,1,1,62545,104160 -035,FR,CR,201812,1,1,105667,151140 -035,FR,CR,201812,1,1,32093,60648 -035,FR,CR,201812,1,1,46681,77000 -035,FR,CR,201812,4,1,105908,55247 -035,FR,CR,201812,4,1,36713,20571 -035,FR,CR,201812,4,1,62138,31074 -035,FR,CR,201812,4,1,8272,4721 -035,FR,CR,201812,4,1,63289,36024 -035,FR,CR,201812,1,2,66369,63504 -039,FR,CR,201812,1,1,5637,5406 -039,FR,CR,201812,1,1,13660,14418 -039,FR,CR,201812,1,1,40105,50000 -039,FR,CR,201812,1,1,19572,25000 -039,FR,CR,201812,1,1,1202,1360 -039,FR,CR,201812,1,1,2731,2781 -039,FR,CR,201812,1,1,19321,25000 -039,FR,CR,201812,1,1,13840,18240 -039,FR,CR,201812,1,2,25136,47125 -049,FR,CR,201812,4,2,77,2 -099,FR,CR,201812,4,1,11393,2196 -099,FR,CR,201812,1,2,20014,3500 -099,FR,CR,201812,4,2,15561,22 -111,FR,CR,201812,1,1,58788,40000 -111,FR,CR,201812,1,1,79581,60000 -121,FR,CR,201812,1,2,65245,9224 -121,FR,CR,201812,1,2,10950,2295 -121,FR,CR,201812,1,2,3276,22 -121,FR,CR,201812,1,2,42457,11287 -125,FR,CR,201812,1,1,94457,4769 -125,FR,CR,201812,1,2,24083,1527 -125,FR,CR,201812,1,2,61017,4947 -125,FR,CR,201812,1,2,27216,9844 -125,FR,CR,201812,3,2,3100,100 -128,FR,CR,201812,1,1,9120,15675 -131,FR,CR,201812,0,1,112747,26858 -131,FR,CR,201812,1,1,21989,6837 -131,FR,CR,201812,4,1,204,6 -133,FR,CR,201812,1,1,1421,1112 -133,FR,CR,201812,1,1,1065,1456 -133,FR,CR,201812,3,1,157,4 -135,FR,CR,201812,3,1,6688,25 -139,FR,CR,201812,1,1,22296,15360 -139,FR,CR,201812,3,1,85,0 -139,FR,CR,201812,1,2,23101,8236 -139,FR,CR,201812,4,2,11054,265 -142,FR,CR,201812,1,1,177229,21600 -144,FR,CR,201812,1,2,40581,4039 -162,FR,CR,201812,1,2,5995,10000 -163,FR,CR,201812,1,1,30738,22975 -163,FR,CR,201812,1,1,10586,7119 -163,FR,CR,201812,1,2,611,216 -163,FR,CR,201812,1,2,18173,4412 -163,FR,CR,201812,1,2,14275,7125 -164,FR,CR,201812,1,1,11880,9010 -164,FR,CR,201812,1,1,30585,60000 -164,FR,CR,201812,1,1,25734,20410 -164,FR,CR,201812,1,1,62622,69720 -164,FR,CR,201812,1,1,227332,218524 -164,FR,CR,201812,1,1,28413,21600 -164,FR,CR,201812,1,1,16890,18800 -164,FR,CR,201812,1,1,9718,20000 -164,FR,CR,201812,1,1,286000,364800 -164,FR,CR,201812,3,1,79,33 -166,FR,CR,201812,1,1,72562,81802 -166,FR,CR,201812,1,1,44291,49830 -166,FR,CR,201812,1,1,62757,51516 -166,FR,CR,201812,1,1,97318,97146 -166,FR,CR,201812,1,1,52897,77972 -166,FR,CR,201812,1,1,41995,40850 -166,FR,CR,201812,1,1,20635,19008 -166,FR,CR,201812,1,1,35998,24380 -166,FR,CR,201812,1,1,67034,71600 -166,FR,CR,201812,1,1,69447,56112 -179,FR,CR,201812,1,2,113145,46916 -179,FR,CR,201812,1,2,109687,76100 -179,FR,CR,201812,4,2,13152,2400 -181,FR,CR,201812,3,1,113,6 -321,FR,CR,201812,1,2,501,70 -341,FR,CR,201812,1,2,32323,15008 -341,FR,CR,201812,1,2,110258,45875 -341,FR,CR,201812,4,2,30,1 -542,FR,CR,201812,1,2,26596,3328 -542,FR,CR,201812,4,2,3680,500 -565,FR,CR,201812,4,1,340,3 -568,FR,CR,201812,1,2,143,18 -568,FR,CR,201812,1,2,48500,3996 -568,FR,CR,201812,4,2,74,0 -568,FR,CR,201812,4,2,8761,441 -691,FR,CR,201812,1,2,37979,500 -819,FR,CR,201812,1,2,36644,20880 -819,FR,CR,201812,3,2,13884,20000 -819,FR,CR,201812,4,2,9618,6 -891,FR,CR,201812,1,1,8798,1306 -891,FR,CR,201812,1,2,53817,13238 -891,FR,CR,201812,4,2,13685,305 -891,FR,CR,201812,4,2,419,11 -892,FR,CR,201812,1,2,67831,2772 -892,FR,CR,201812,1,2,25310,5288 -893,FR,CR,201812,1,2,8350,1050 -893,FR,CR,201812,1,2,76814,848 -893,FR,CR,201812,1,2,171450,49060 -893,FR,CR,201812,3,2,54,7 -893,FR,CR,201812,4,2,178427,1187 -893,FR,CR,201812,4,2,87281,795 -893,FR,CR,201812,4,2,5737,28 -893,FR,CR,201812,4,2,12911,330 -893,FR,CR,201812,4,2,47277,753 -896,FR,CR,201812,3,1,127,0 -896,FR,CR,201812,4,1,12606,27 -896,FR,CR,201812,1,2,1380,300 -896,FR,CR,201812,1,2,19306,2160 -896,FR,CR,201812,4,2,35682,2306 -896,FR,CR,201812,4,2,127,0 -896,FR,CR,201812,4,2,6053,8 -896,FR,CR,201812,4,2,6075,75 -896,FR,CR,201812,4,2,45,1 -896,FR,CR,201812,4,2,3811,21 -910,FR,CR,201812,1,2,6277,694 -910,FR,CR,201812,1,2,4687,250 -910,FR,CR,201812,1,2,21496,1127 -910,FR,CR,201812,2,2,77668,10900 -910,FR,CR,201812,3,2,30000,4444 -910,FR,CR,201812,3,2,8578,1130 -910,FR,CR,201812,3,2,8578,1130 -910,FR,CR,201812,3,2,17153,2260 -910,FR,CR,201812,3,2,8575,1130 -910,FR,CR,201812,3,2,7768,1090 -910,FR,CR,201812,3,2,16343,2220 -910,FR,CR,201812,3,2,17156,2260 -910,FR,CR,201812,3,2,7765,1090 -910,FR,CR,201812,3,2,15536,2180 -910,FR,CR,201812,4,2,30473,76 -910,FR,CR,201812,4,2,6158,94 -910,FR,CR,201812,4,2,1107,50 -931,FR,CR,201812,3,1,47179,3 -931,FR,CR,201812,3,1,1078,0 -931,FR,CR,201812,4,1,2414,0 -931,FR,CR,201812,4,1,534,4 -931,FR,CR,201812,4,1,38970,8 -931,FR,CR,201812,4,1,989,3 -931,FR,CR,201812,1,2,142161,6662 -931,FR,CR,201812,1,2,8640,142 -931,FR,CR,201812,3,2,17860,1995 -931,FR,CR,201812,4,2,355590,9796 -931,FR,CR,201812,4,2,719,3 -931,FR,CR,201812,4,2,45686,25 -931,FR,CR,201812,4,2,25400,15 -931,FR,CR,201812,4,2,7898,159 -931,FR,CR,201812,4,2,203179,2180 -931,FR,CR,201812,4,2,8080,47 -931,FR,CR,201812,4,2,14042,20 -939,FR,CR,201812,0,1,1692,11 -939,FR,CR,201812,1,1,131,2 -939,FR,CR,201812,4,1,10215,23 -939,FR,CR,201812,1,2,655,30 -939,FR,CR,201812,1,2,31985,2260 -939,FR,CR,201812,1,2,9136,232 -939,FR,CR,201812,1,2,104040,1530 -939,FR,CR,201812,3,2,915,1 -939,FR,CR,201812,4,2,24311,387 -939,FR,CR,201812,4,2,1966,160 -939,FR,CR,201812,4,2,457,43 -939,FR,CR,201812,4,2,18512,183 -939,FR,CR,201812,4,2,73392,6460 -939,FR,CR,201812,4,2,5678,75 -941,FR,CR,201812,4,2,355,8 -949,FR,CR,201812,4,1,584,1 -949,FR,CR,201812,1,2,255,31 -949,FR,CR,201812,1,2,23207,2924 -949,FR,CR,201812,1,2,1120,10 -949,FR,CR,201812,4,2,42093,246 -949,FR,CR,201812,4,2,3611,1 -949,FR,CR,201812,4,2,1570,180 -949,FR,CR,201812,4,2,8358,6 -951,FR,CR,201812,1,2,219,30 -951,FR,CR,201812,1,2,932,32 -951,FR,CR,201812,4,2,161,23 -952,FR,CR,201812,1,2,2102,271 -952,FR,CR,201812,4,2,2319,105 -952,FR,CR,201812,4,2,1401,35 -961,FR,CR,201812,1,2,2,0 -962,FR,CR,201812,4,2,7524,111 -962,FR,CR,201812,4,2,55,2 -962,FR,CR,201812,4,2,4882,31 -962,FR,CR,201812,4,2,1299,36 -962,FR,CR,201812,4,2,1193,220 -962,FR,CR,201812,4,2,1273,4 -963,FR,CR,201812,0,1,151,5 -963,FR,CR,201812,3,1,220,3 -963,FR,CR,201812,0,2,93,1 -963,FR,CR,201812,1,2,3670,77 -963,FR,CR,201812,1,2,9401,1611 -963,FR,CR,201812,1,2,8602,126 -963,FR,CR,201812,3,2,3155,218 -963,FR,CR,201812,4,2,5366,92 -963,FR,CR,201812,4,2,5430,140 -971,FR,CR,201812,4,1,7582,73 -971,FR,CR,201812,1,2,5267,54 -972,FR,CR,201812,1,2,13,0 -972,FR,CR,201812,1,2,24509,14583 -972,FR,CR,201812,1,2,23039,13017 -972,FR,CR,201812,4,2,169,2 -972,FR,CR,201812,4,2,852,14 -972,FR,CR,201812,4,2,3045,900 -973,FR,CR,201812,1,2,7779,3314 -973,FR,CR,201812,4,2,3627,784 -974,FR,CR,201812,4,1,73,2 -974,FR,CR,201812,0,2,87,3 -974,FR,CR,201812,1,2,708,123 -974,FR,CR,201812,3,2,399,199 -974,FR,CR,201812,4,2,48,39 -974,FR,CR,201812,4,2,21666,870 -974,FR,CR,201812,4,2,318,40 -975,FR,CR,201812,1,2,14840,3843 -975,FR,CR,201812,1,2,19010,3297 -975,FR,CR,201812,1,2,23268,8631 -975,FR,CR,201812,4,2,1,32 -975,FR,CR,201812,4,2,6330,280 -976,FR,CR,201812,1,1,1237,80 -976,FR,CR,201812,3,1,174,3 -979,FR,CR,201812,1,1,815094,6762 -979,FR,CR,201812,1,1,719698,6189 -979,FR,CR,201812,3,1,1067,0 -979,FR,CR,201812,3,1,1083,1 -979,FR,CR,201812,3,1,4776,1 -979,FR,CR,201812,3,1,15052,6 -979,FR,CR,201812,3,1,12488,13 -979,FR,CR,201812,3,1,3939,4 -979,FR,CR,201812,3,1,103865,407 -979,FR,CR,201812,4,1,2949548,23922 -979,FR,CR,201812,4,1,369,3 -979,FR,CR,201812,4,1,76557,147 -979,FR,CR,201812,4,1,168,0 -979,FR,CR,201812,4,1,339,3 -979,FR,CR,201812,4,1,269,12 -979,FR,CR,201812,4,1,36,1 -979,FR,CR,201812,0,2,398,6 -979,FR,CR,201812,1,2,194583,32925 -979,FR,CR,201812,1,2,456,1 -979,FR,CR,201812,1,2,2425,421 -979,FR,CR,201812,4,2,29151,222 -979,FR,CR,201812,4,2,137097,300 -979,FR,CR,201812,4,2,1056,52 -979,FR,CR,201812,4,2,6692,20 -979,FR,CR,201812,4,2,139557,597 -979,FR,CR,201812,4,2,23933,275 -979,FR,CR,201812,4,2,3166,88 -979,FR,CR,201812,4,2,24885,110 -979,FR,CR,201812,4,2,24257,5836 -979,FR,CR,201812,4,2,4263,220 -979,FR,CR,201812,4,2,13590,83 -979,FR,CR,201812,4,2,36254,71 -994,FR,CR,201812,4,1,11884,10 -994,FR,CR,201812,4,1,4363,9 -999,FR,CR,201812,4,1,2,0 -999,FR,CR,201812,4,1,3025,0 -999,FR,CR,201812,4,1,402,0 -999,FR,CR,201812,1,2,3557,800 -999,FR,CR,201812,1,2,10952,3000 -999,FR,CR,201812,1,2,30526,0 -999,FR,CR,201812,1,2,26051,39550 -999,FR,CR,201812,1,2,53262,20000 -999,FR,CR,201812,4,2,4581,43 -016,FR,PA,201812,1,1,675,1611 -035,FR,PA,201812,4,1,6930,3976 -035,FR,PA,201812,1,2,21798,22848 -056,FR,PA,201812,1,1,48893,25214 -056,FR,PA,201812,1,2,2257,39 -099,FR,PA,201812,4,2,6635,29 -111,FR,PA,201812,1,2,55,22 -121,FR,PA,201812,1,2,6064,1554 -121,FR,PA,201812,1,2,25487,3915 -121,FR,PA,201812,1,2,106260,20606 -121,FR,PA,201812,1,2,198985,17097 -122,FR,PA,201812,1,1,301,424 -122,FR,PA,201812,1,2,182,316 -125,FR,PA,201812,0,1,51799,5617 -125,FR,PA,201812,1,2,14024,11412 -125,FR,PA,201812,1,2,1328432,36607 -125,FR,PA,201812,1,2,3957881,69025 -125,FR,PA,201812,1,2,674818,58085 -128,FR,PA,201812,1,1,700,735 -128,FR,PA,201812,1,2,92248,102872 -128,FR,PA,201812,1,2,14733,19742 -131,FR,PA,201812,1,2,3392,105 -132,FR,PA,201812,1,2,241,74 -132,FR,PA,201812,1,2,20700,6557 -133,FR,PA,201812,1,1,211,20 -133,FR,PA,201812,1,2,1732,62 -139,FR,PA,201812,1,1,51,54 -139,FR,PA,201812,1,2,39922,8778 -139,FR,PA,201812,1,2,4726,795 -139,FR,PA,201812,1,2,10495,1501 -143,FR,PA,201812,1,2,22199,7535 -144,FR,PA,201812,1,2,99564,34778 -162,FR,PA,201812,1,2,119490,397500 -163,FR,PA,201812,1,1,52,30 -163,FR,PA,201812,1,2,3295,367 -163,FR,PA,201812,1,2,67193,32409 -163,FR,PA,201812,1,2,20560,9127 -163,FR,PA,201812,4,2,1,5 -164,FR,PA,201812,1,2,35774,9276 -164,FR,PA,201812,1,2,13777,3162 -165,FR,PA,201812,1,1,21,44 -166,FR,PA,201812,4,1,1090,80 -179,FR,PA,201812,1,2,190335,61838 -179,FR,PA,201812,1,2,250970,148120 -179,FR,PA,201812,1,2,40196,25250 -179,FR,PA,201812,1,2,47308,12644 -179,FR,PA,201812,4,2,46537,1011 -182,FR,PA,201812,1,1,208257,14400 -182,FR,PA,201812,1,1,154388,14400 -182,FR,PA,201812,1,2,703,25 -341,FR,PA,201812,1,2,51702,24778 -341,FR,PA,201812,4,2,3,0 -542,FR,PA,201812,3,2,10799,11175 -542,FR,PA,201812,3,2,50422,50645 -551,FR,PA,201812,1,2,2126,146 -552,FR,PA,201812,4,2,1276,3 -568,FR,PA,201812,1,2,907,3 -621,FR,PA,201812,1,2,120,8 -819,FR,PA,201812,4,1,3999,250 -891,FR,PA,201812,1,2,2982,485 -891,FR,PA,201812,4,2,2855,78 -892,FR,PA,201812,4,2,315,6 -893,FR,PA,201812,1,1,2558,7967 -893,FR,PA,201812,4,1,346763,1022 -893,FR,PA,201812,1,2,4926992,115832 -893,FR,PA,201812,1,2,2022,53 -893,FR,PA,201812,1,2,64656,1180 -893,FR,PA,201812,1,2,42400,2310 -893,FR,PA,201812,1,2,2519,70 -893,FR,PA,201812,1,2,600960,10489 -893,FR,PA,201812,1,2,2295367,34084 -893,FR,PA,201812,1,2,528794,5133 -893,FR,PA,201812,1,2,1341985,46866 -893,FR,PA,201812,1,2,264607,2581 -893,FR,PA,201812,1,2,1418577,34332 -893,FR,PA,201812,1,2,94641,410 -893,FR,PA,201812,4,2,665648,5950 -893,FR,PA,201812,4,2,1170,1 -893,FR,PA,201812,4,2,632850,4900 -893,FR,PA,201812,4,2,20,0 -893,FR,PA,201812,4,2,409,11 -893,FR,PA,201812,4,2,1440,40 -893,FR,PA,201812,4,2,26677,146 -896,FR,PA,201812,1,2,132277,10504 -896,FR,PA,201812,1,2,833747,171780 -896,FR,PA,201812,4,2,28587,282 -896,FR,PA,201812,4,2,28652,94 -896,FR,PA,201812,4,2,8551,40 -896,FR,PA,201812,4,2,5697,260 -910,FR,PA,201812,1,1,18000,4000 -910,FR,PA,201812,1,2,229490,35456 -910,FR,PA,201812,1,2,2359,100 -910,FR,PA,201812,1,2,3900,165 -910,FR,PA,201812,1,2,29324,1287 -910,FR,PA,201812,4,2,6376,128 -910,FR,PA,201812,4,2,944,50 -910,FR,PA,201812,4,2,6823,1430 -910,FR,PA,201812,4,2,29785,11 -910,FR,PA,201812,9,2,1071117,0 -920,FR,PA,201812,4,2,7460,13 -931,FR,PA,201812,4,1,884,15 -931,FR,PA,201812,4,1,27008,32 -931,FR,PA,201812,1,2,14241,396 -931,FR,PA,201812,1,2,124085,36284 -931,FR,PA,201812,1,2,150165,15298 -931,FR,PA,201812,1,2,23258,2241 -931,FR,PA,201812,3,2,13010,857 -931,FR,PA,201812,4,2,432540,6287 -931,FR,PA,201812,4,2,16080,134 -931,FR,PA,201812,4,2,28071,205 -931,FR,PA,201812,4,2,6992,65 -931,FR,PA,201812,4,2,1154,32 -931,FR,PA,201812,4,2,30613,3810 -931,FR,PA,201812,4,2,5527,15 -939,FR,PA,201812,4,1,5809,69 -939,FR,PA,201812,4,1,351,196 -939,FR,PA,201812,4,1,2214,42 -939,FR,PA,201812,1,2,46106,3122 -939,FR,PA,201812,1,2,7661,1004 -939,FR,PA,201812,1,2,15725,3801 -939,FR,PA,201812,1,2,3087,120 -939,FR,PA,201812,1,2,13840,2609 -939,FR,PA,201812,1,2,51468,11218 -939,FR,PA,201812,1,2,76849,11581 -939,FR,PA,201812,1,2,32759,1372 -939,FR,PA,201812,3,2,150,11 -939,FR,PA,201812,4,2,576821,5000 -939,FR,PA,201812,4,2,48353,1129 -939,FR,PA,201812,4,2,32545,1361 -939,FR,PA,201812,4,2,5180,30 -939,FR,PA,201812,4,2,117983,3800 -939,FR,PA,201812,4,2,33497,2750 -939,FR,PA,201812,4,2,13769,100 -949,FR,PA,201812,4,1,3649,86 -949,FR,PA,201812,1,2,85,1 -949,FR,PA,201812,1,2,563,100 -949,FR,PA,201812,1,2,4567,403 -949,FR,PA,201812,1,2,44,3 -949,FR,PA,201812,1,2,600,1 -949,FR,PA,201812,4,2,12127,174 -949,FR,PA,201812,4,2,68,0 -949,FR,PA,201812,4,2,18920,1950 -949,FR,PA,201812,4,2,3578,50 -951,FR,PA,201812,1,2,3120,202 -952,FR,PA,201812,1,2,6088,204 -952,FR,PA,201812,1,2,744,109 -952,FR,PA,201812,4,2,38624,661 -961,FR,PA,201812,4,2,1989,4 -962,FR,PA,201812,1,2,7704,60 -962,FR,PA,201812,1,2,2462,76 -962,FR,PA,201812,1,2,1398,40 -962,FR,PA,201812,4,2,403,32 -962,FR,PA,201812,4,2,3744,550 -962,FR,PA,201812,4,2,6075,97 -963,FR,PA,201812,1,1,152195,4879 -963,FR,PA,201812,3,1,249,4 -963,FR,PA,201812,4,1,663,135 -963,FR,PA,201812,4,1,2425,4 -963,FR,PA,201812,4,1,5882,2 -963,FR,PA,201812,4,1,9987,430 -963,FR,PA,201812,4,1,3783,109 -963,FR,PA,201812,0,2,805,15 -963,FR,PA,201812,1,2,382,11 -963,FR,PA,201812,1,2,5651,320 -963,FR,PA,201812,1,2,7360,143 -963,FR,PA,201812,1,2,207,3 -963,FR,PA,201812,4,2,460463,900 -963,FR,PA,201812,4,2,12902,22 -963,FR,PA,201812,4,2,35430,115 -963,FR,PA,201812,4,2,5050,41 -963,FR,PA,201812,4,2,11378,2140 -963,FR,PA,201812,4,2,1632,21 -971,FR,PA,201812,1,2,1475,53 -971,FR,PA,201812,1,2,290,23 -971,FR,PA,201812,4,2,3426,226 -972,FR,PA,201812,1,2,1179,429 -973,FR,PA,201812,1,1,16340,8550 -973,FR,PA,201812,1,2,3993,1350 -973,FR,PA,201812,1,2,3675,191 -973,FR,PA,201812,4,2,1852,215 -973,FR,PA,201812,4,2,2459,740 -974,FR,PA,201812,4,1,789,2 -974,FR,PA,201812,1,2,4690,272 -974,FR,PA,201812,1,2,691,21 -974,FR,PA,201812,1,2,1881,98 -974,FR,PA,201812,4,2,15850,183 -974,FR,PA,201812,4,2,66,1 -974,FR,PA,201812,4,2,327,2 -974,FR,PA,201812,4,2,1439,16 -975,FR,PA,201812,1,1,21796,10322 -975,FR,PA,201812,1,2,51642,3653 -975,FR,PA,201812,1,2,24169,1617 -975,FR,PA,201812,1,2,47183,3886 -975,FR,PA,201812,4,2,7692,150 -976,FR,PA,201812,4,2,715,9 -979,FR,PA,201812,1,1,8538,35 -979,FR,PA,201812,3,1,28138,27 -979,FR,PA,201812,4,1,6768,6 -979,FR,PA,201812,1,2,43343,1049 -979,FR,PA,201812,1,2,14702,443 -979,FR,PA,201812,1,2,697,22 -979,FR,PA,201812,1,2,1727,60 -979,FR,PA,201812,1,2,35677,1694 -979,FR,PA,201812,1,2,9551,272 -979,FR,PA,201812,1,2,7171,70 -979,FR,PA,201812,1,2,37524,6887 -979,FR,PA,201812,1,2,782,125 -979,FR,PA,201812,4,2,86106,641 -979,FR,PA,201812,4,2,26661,137 -979,FR,PA,201812,4,2,64254,142 -979,FR,PA,201812,4,2,10335,41 -979,FR,PA,201812,4,2,2511,9 -979,FR,PA,201812,4,2,12622,500 -979,FR,PA,201812,4,2,4788,6 -979,FR,PA,201812,4,2,21333,218 -999,FR,PA,201812,1,1,14408,0 -999,FR,PA,201812,1,2,1947,404 -999,FR,PA,201812,1,2,30731,0 -999,FR,PA,201812,1,2,70,2 -999,FR,PA,201812,1,2,18627,37250 -999,FR,PA,201812,1,2,89197,40000 -999,FR,PA,201812,4,2,11743,88 -999,FR,PA,201812,4,2,400,0 -999,FR,PA,201812,4,2,13678,170 -999,FR,PA,201812,4,2,2335,37 -931,FR,AI,201812,1,2,18246,333 -974,FR,AI,201812,4,2,1588,2 -011,FR,CU,201812,1,2,5651125,26250000 -011,FR,CU,201812,1,2,5506250,25000000 -011,FR,CU,201812,1,2,3932681,18749374 -035,FR,CU,201812,4,1,4119,3456 -057,FR,CU,201812,1,1,9132,20559 -099,FR,CU,201812,1,1,25320,2885 -111,FR,CU,201812,1,2,40,16 -121,FR,CU,201812,1,2,4932,1510 -121,FR,CU,201812,1,2,1230,648 -121,FR,CU,201812,4,2,48060,603 -122,FR,CU,201812,1,2,438,760 -125,FR,CU,201812,0,1,278,19 -125,FR,CU,201812,1,1,214563,30264 -125,FR,CU,201812,1,2,18140,10338 -125,FR,CU,201812,1,2,30066,16080 -128,FR,CU,201812,1,2,5367,11937 -131,FR,CU,201812,1,2,3690,89 -132,FR,CU,201812,1,2,614,189 -133,FR,CU,201812,4,1,2374,600 -133,FR,CU,201812,1,2,851,34 -135,FR,CU,201812,0,1,34571,178 -135,FR,CU,201812,4,1,7187,25 -135,FR,CU,201812,4,1,19132,110 -136,FR,CU,201812,1,1,47490,21600 -136,FR,CU,201812,4,1,926,119 -139,FR,CU,201812,1,2,1429,78 -139,FR,CU,201812,1,2,155375,87905 -139,FR,CU,201812,4,2,6333,347 -139,FR,CU,201812,4,2,1109,153 -142,FR,CU,201812,3,1,98312,26900 -142,FR,CU,201812,4,1,239431,11230 -143,FR,CU,201812,1,2,6700,4200 -143,FR,CU,201812,1,2,72,28 -144,FR,CU,201812,1,2,328500,225000 -162,FR,CU,201812,1,2,6510,12000 -164,FR,CU,201812,1,2,167,348 -341,FR,CU,201812,1,2,116322,34128 -343,FR,CU,201812,4,2,584,8 -551,FR,CU,201812,1,2,51,0 -551,FR,CU,201812,4,2,63,0 -552,FR,CU,201812,1,2,716,25 -552,FR,CU,201812,1,2,188224,31918 -552,FR,CU,201812,4,2,160,5 -568,FR,CU,201812,1,2,460,11 -568,FR,CU,201812,1,2,1149,28 -568,FR,CU,201812,4,2,213,3 -621,FR,CU,201812,1,2,30,2 -691,FR,CU,201812,1,2,235165,104072 -691,FR,CU,201812,4,2,1119,101 -819,FR,CU,201812,4,2,98337,80 -891,FR,CU,201812,1,2,700,6 -891,FR,CU,201812,1,2,67730,88000 -891,FR,CU,201812,4,2,179,3 -891,FR,CU,201812,4,2,8,0 -892,FR,CU,201812,4,2,186,40 -893,FR,CU,201812,4,1,1134,0 -893,FR,CU,201812,1,2,103752,9409 -893,FR,CU,201812,4,2,1313,3 -893,FR,CU,201812,4,2,113,11 -896,FR,CU,201812,1,2,375399,119880 -896,FR,CU,201812,1,2,12112,6400 -896,FR,CU,201812,4,2,186719,1401 -896,FR,CU,201812,4,2,230036,160 -910,FR,CU,201812,4,1,108304,27 -910,FR,CU,201812,1,2,2771,126 -910,FR,CU,201812,1,2,885,89 -910,FR,CU,201812,1,2,255179,13225 -910,FR,CU,201812,4,2,66465,2712 -910,FR,CU,201812,4,2,22473,1662 -931,FR,CU,201812,1,2,802,3 -931,FR,CU,201812,1,2,31,0 -931,FR,CU,201812,1,2,53519,1543 -931,FR,CU,201812,1,2,1656,170 -931,FR,CU,201812,3,2,2550,32 -931,FR,CU,201812,4,2,8927343,34558 -931,FR,CU,201812,4,2,976,1 -931,FR,CU,201812,4,2,1726776,80 -939,FR,CU,201812,0,2,700,0 -939,FR,CU,201812,1,2,27626,1100 -939,FR,CU,201812,1,2,5243,170 -939,FR,CU,201812,1,2,3770,201 -939,FR,CU,201812,1,2,636282,13959 -939,FR,CU,201812,1,2,26023,7162 -939,FR,CU,201812,1,2,41052,7112 -939,FR,CU,201812,3,2,22457,40 -939,FR,CU,201812,4,2,132760,1833 -939,FR,CU,201812,4,2,18686,443 -941,FR,CU,201812,1,2,1561528,186838 -941,FR,CU,201812,3,2,212312,106171 -941,FR,CU,201812,4,2,4025,995 -949,FR,CU,201812,1,2,10920,145 -949,FR,CU,201812,1,2,6722,322 -949,FR,CU,201812,1,2,51560,6361 -949,FR,CU,201812,1,2,122008,3083 -949,FR,CU,201812,4,2,8426,513 -949,FR,CU,201812,4,2,561,2 -949,FR,CU,201812,4,2,11242,290 -951,FR,CU,201812,1,2,3237,614 -951,FR,CU,201812,4,2,2000,161 -952,FR,CU,201812,1,2,4687,180 -952,FR,CU,201812,1,2,30111,1086 -952,FR,CU,201812,1,2,82150,105342 -962,FR,CU,201812,1,2,2921,210 -962,FR,CU,201812,4,2,461,5 -963,FR,CU,201812,1,2,9836,45 -963,FR,CU,201812,1,2,58230,1392 -963,FR,CU,201812,4,2,318,7 -963,FR,CU,201812,4,2,130,0 -971,FR,CU,201812,1,2,12,0 -971,FR,CU,201812,1,2,6677,247 -971,FR,CU,201812,4,2,1799,71 -971,FR,CU,201812,4,2,190,6 -973,FR,CU,201812,1,2,676,201 -973,FR,CU,201812,4,2,336,128 -975,FR,CU,201812,1,2,27025,1348 -975,FR,CU,201812,4,2,1813,22 -976,FR,CU,201812,3,1,1345,16 -976,FR,CU,201812,1,2,92211,3705 -979,FR,CU,201812,1,2,16860,1293 -979,FR,CU,201812,4,2,147529,91 -979,FR,CU,201812,4,2,117500,300 -979,FR,CU,201812,4,2,8555,378 -979,FR,CU,201812,4,2,2,0 -994,FR,CU,201812,4,1,274817,101 -999,FR,CU,201812,1,1,4600,0 -999,FR,CU,201812,4,1,1,0 -999,FR,CU,201812,4,1,6071,0 -999,FR,CU,201812,1,2,7750,0 -999,FR,CU,201812,1,2,79122,41900 -999,FR,CU,201812,4,2,28,0 -999,FR,CU,201812,4,2,3471,0 -999,FR,CU,201812,4,2,3150,0 -035,FR,KN,201812,4,2,4745,267 -121,FR,KN,201812,4,2,25355,761 -125,FR,KN,201812,1,2,18784,7909 -139,FR,KN,201812,4,2,861,48 -141,FR,KN,201812,4,2,702,14 -144,FR,KN,201812,4,2,669,24 -949,FR,KN,201812,1,2,980,260 -963,FR,KN,201812,4,2,27261,100 -963,FR,KN,201812,4,2,16694,70 -971,FR,KN,201812,1,2,480,20 -971,FR,KN,201812,4,2,7890,85 -973,FR,KN,201812,1,2,403,246 -979,FR,KN,201812,4,2,273,3 -999,FR,KN,201812,1,2,1390,338 -999,FR,KN,201812,1,2,3807,905 -039,FR,HT,201812,4,1,5812,2510 -049,FR,HT,201812,1,2,343918,446641 -121,FR,HT,201812,1,2,605,504 -122,FR,HT,201812,1,1,3017,3196 -122,FR,HT,201812,4,1,591,150 -125,FR,HT,201812,1,2,21546,15585 -128,FR,HT,201812,1,1,3185,6535 -128,FR,HT,201812,4,1,1733,620 -132,FR,HT,201812,0,2,80,7 -133,FR,HT,201812,1,2,778,14 -136,FR,HT,201812,4,2,395,30 -139,FR,HT,201812,1,2,4101,85 -139,FR,HT,201812,1,2,4086,893 -139,FR,HT,201812,1,2,75417,32559 -139,FR,HT,201812,1,2,44350,22698 -139,FR,HT,201812,1,2,120768,19899 -139,FR,HT,201812,4,2,21105,3056 -139,FR,HT,201812,4,2,1204,10 -141,FR,HT,201812,1,2,36126,39550 -142,FR,HT,201812,4,2,1331,213 -143,FR,HT,201812,1,2,52640,31573 -143,FR,HT,201812,1,2,1298,280 -143,FR,HT,201812,1,2,1749,375 -144,FR,HT,201812,1,2,120446,18262 -144,FR,HT,201812,1,2,10254,1200 -145,FR,HT,201812,1,2,1555,400 -145,FR,HT,201812,1,2,699,192 -147,FR,HT,201812,1,2,2366,1254 -147,FR,HT,201812,4,2,229,32 -162,FR,HT,201812,1,2,197678,550000 -163,FR,HT,201812,1,2,8075,2218 -163,FR,HT,201812,4,2,297,20 -164,FR,HT,201812,1,2,11341,5154 -164,FR,HT,201812,4,2,897,87 -166,FR,HT,201812,4,1,808,30 -166,FR,HT,201812,4,2,343,47 -341,FR,HT,201812,1,2,117,11 -614,FR,HT,201812,4,1,7,8 -621,FR,HT,201812,4,2,148,51 -892,FR,HT,201812,1,2,2528,2125 -893,FR,HT,201812,4,1,126216,400 -893,FR,HT,201812,4,1,255021,804 -893,FR,HT,201812,0,2,300,1 -893,FR,HT,201812,1,2,43868,12129 -893,FR,HT,201812,1,2,1994,73 -893,FR,HT,201812,1,2,14079,3208 -893,FR,HT,201812,3,2,6400,1850 -893,FR,HT,201812,3,2,3829,399 -893,FR,HT,201812,4,2,2917,156 -893,FR,HT,201812,4,2,89,1 -896,FR,HT,201812,1,2,963,192 -910,FR,HT,201812,0,2,1500,2060 -910,FR,HT,201812,1,2,1142,21 -910,FR,HT,201812,1,2,79500,51074 -910,FR,HT,201812,1,2,3800,3482 -910,FR,HT,201812,2,2,10000,1390 -910,FR,HT,201812,3,2,3000,12345 -910,FR,HT,201812,4,2,603,7 -920,FR,HT,201812,4,2,3403,200 -931,FR,HT,201812,3,1,2548,12 -931,FR,HT,201812,4,1,983,13 -931,FR,HT,201812,4,1,163,2 -931,FR,HT,201812,0,2,1227,11 -931,FR,HT,201812,1,2,200,400 -931,FR,HT,201812,1,2,42,0 -931,FR,HT,201812,1,2,9604,765 -931,FR,HT,201812,1,2,308321,39676 -931,FR,HT,201812,1,2,346376,23480 -931,FR,HT,201812,4,2,989,49 -931,FR,HT,201812,4,2,200,1 -931,FR,HT,201812,4,2,30159,600 -931,FR,HT,201812,4,2,5690,20 -939,FR,HT,201812,4,1,27,0 -939,FR,HT,201812,1,2,5950,823 -939,FR,HT,201812,1,2,697,4 -939,FR,HT,201812,1,2,4013,1113 -939,FR,HT,201812,4,2,53368,921 -939,FR,HT,201812,4,2,19976,260 -939,FR,HT,201812,4,2,24163,286 -949,FR,HT,201812,1,1,8535,242 -949,FR,HT,201812,4,1,1455,59 -949,FR,HT,201812,4,1,2702,206 -949,FR,HT,201812,1,2,4265,551 -949,FR,HT,201812,4,2,1020,10 -949,FR,HT,201812,4,2,3314,40 -951,FR,HT,201812,4,2,190,0 -951,FR,HT,201812,4,2,2526,500 -952,FR,HT,201812,4,2,11504,151 -952,FR,HT,201812,4,2,1873,55 -962,FR,HT,201812,1,1,351,266 -962,FR,HT,201812,3,1,83,0 -962,FR,HT,201812,1,2,6928,607 -963,FR,HT,201812,1,1,87,3 -963,FR,HT,201812,1,1,471,32 -963,FR,HT,201812,4,1,259,2 -963,FR,HT,201812,4,1,395,14 -963,FR,HT,201812,4,1,167,1 -963,FR,HT,201812,4,1,416,17 -963,FR,HT,201812,0,2,200,1 -963,FR,HT,201812,1,2,3000,13150 -963,FR,HT,201812,1,2,106,19 -971,FR,HT,201812,4,1,16,1 -971,FR,HT,201812,0,2,1951,2 -971,FR,HT,201812,1,2,174,4 -971,FR,HT,201812,1,2,31,5 -971,FR,HT,201812,4,2,21,1 -973,FR,HT,201812,0,2,50,0 -973,FR,HT,201812,1,2,85,15 -973,FR,HT,201812,1,2,27568,13353 -973,FR,HT,201812,4,2,2770,339 -973,FR,HT,201812,4,2,202,1 -974,FR,HT,201812,1,2,1554,49 -974,FR,HT,201812,3,2,50,12 -974,FR,HT,201812,4,2,7667,234 -974,FR,HT,201812,4,2,50,325 -974,FR,HT,201812,4,2,1161,100 -975,FR,HT,201812,1,2,1010,3950 -976,FR,HT,201812,1,1,646,17 -976,FR,HT,201812,4,1,2375,30 -976,FR,HT,201812,1,2,200,1500 -979,FR,HT,201812,4,1,2894,39 -979,FR,HT,201812,4,1,320,22 -979,FR,HT,201812,0,2,40,0 -979,FR,HT,201812,1,2,58042,49520 -979,FR,HT,201812,4,2,486,3 -979,FR,HT,201812,4,2,16,0 -979,FR,HT,201812,4,2,2123,37 -999,FR,HT,201812,4,1,1511,0 -999,FR,HT,201812,0,2,350,0 -999,FR,HT,201812,1,2,1600,0 -999,FR,HT,201812,1,2,195377,0 -999,FR,HT,201812,1,2,33000,0 -999,FR,HT,201812,3,2,8500,0 -999,FR,HT,201812,4,2,529,0 -121,FR,BS,201812,1,2,627,42 -121,FR,BS,201812,1,2,103365,8865 -121,FR,BS,201812,1,2,106827,12594 -121,FR,BS,201812,1,2,36686,21150 -121,FR,BS,201812,1,2,58648,27624 -121,FR,BS,201812,3,2,10423,2115 -121,FR,BS,201812,4,2,27933,1155 -121,FR,BS,201812,4,2,128483,4149 -125,FR,BS,201812,0,1,589,36 -125,FR,BS,201812,1,2,12627,245 -125,FR,BS,201812,1,2,4957,472 -125,FR,BS,201812,1,2,40510,2219 -125,FR,BS,201812,1,2,537387,29654 -125,FR,BS,201812,1,2,194829,6713 -125,FR,BS,201812,1,2,1128,341 -132,FR,BS,201812,4,2,20,2 -132,FR,BS,201812,4,2,1050,200 -139,FR,BS,201812,1,2,1689,450 -139,FR,BS,201812,4,2,20,0 -141,FR,BS,201812,4,2,5102,174 -142,FR,BS,201812,1,1,657412,18144 -142,FR,BS,201812,1,1,657000,18144 -142,FR,BS,201812,4,2,221,4 -143,FR,BS,201812,1,2,33931,32075 -143,FR,BS,201812,1,2,16406,21600 -144,FR,BS,201812,1,2,86809,14946 -147,FR,BS,201812,4,2,441,1 -148,FR,BS,201812,4,2,596,0 -162,FR,BS,201812,1,2,8010,26500 -163,FR,BS,201812,4,2,125,30 -166,FR,BS,201812,1,2,13819,14858 -893,FR,BS,201812,4,2,6088,55 -893,FR,BS,201812,4,2,35121,168 -910,FR,BS,201812,1,2,432937,0 -910,FR,BS,201812,1,2,10100,480 -910,FR,BS,201812,1,2,783462,25400 -910,FR,BS,201812,1,2,1743,3750 -910,FR,BS,201812,9,2,1869032,0 -931,FR,BS,201812,0,2,30,0 -931,FR,BS,201812,3,2,7540,43 -931,FR,BS,201812,4,2,1222,30 -939,FR,BS,201812,4,2,1530,8 -941,FR,BS,201812,4,2,2000,520 -949,FR,BS,201812,1,2,48,22 -949,FR,BS,201812,3,2,70704,1561 -952,FR,BS,201812,4,1,983,10 -962,FR,BS,201812,1,2,37835,1571 -962,FR,BS,201812,4,2,8949,134 -963,FR,BS,201812,0,2,300,7 -963,FR,BS,201812,1,2,37390,1629 -963,FR,BS,201812,1,2,44,40 -963,FR,BS,201812,1,2,2610,60 -963,FR,BS,201812,4,2,30657,586 -974,FR,BS,201812,4,2,2,18 -976,FR,BS,201812,4,2,15000,55 -979,FR,BS,201812,3,2,21200,273 -979,FR,BS,201812,4,2,1351,13 -979,FR,BS,201812,4,2,3713,11 -999,FR,BS,201812,1,2,4500,0 -999,FR,BS,201812,1,2,42696,0 -999,FR,BS,201812,4,2,200,0 -121,FR,TC,201812,1,2,34243,1959 -121,FR,TC,201812,3,2,36877,558 -125,FR,TC,201812,1,2,1836,73 -128,FR,TC,201812,1,2,351,96 -952,FR,TC,201812,1,2,48,24 -963,FR,TC,201812,0,1,181,2 -963,FR,TC,201812,4,2,2130,12 -016,FR,DO,201812,1,2,256,144 -031,FR,DO,201812,1,1,6133,7452 -031,FR,DO,201812,4,1,60,30 -035,FR,DO,201812,1,1,28784,18080 -035,FR,DO,201812,1,1,10435,9162 -035,FR,DO,201812,1,1,3227,2000 -035,FR,DO,201812,1,1,25586,33112 -035,FR,DO,201812,1,1,131576,156728 -035,FR,DO,201812,1,1,913279,433668 -035,FR,DO,201812,1,1,8284,7595 -035,FR,DO,201812,4,1,556156,248980 -035,FR,DO,201812,4,1,1695,346 -035,FR,DO,201812,4,1,16105,7639 -035,FR,DO,201812,4,1,17754,9576 -035,FR,DO,201812,4,1,49862,22315 -035,FR,DO,201812,1,2,520,90 -039,FR,DO,201812,1,1,49077,57469 -039,FR,DO,201812,1,1,60932,56664 -039,FR,DO,201812,1,1,16227,12672 -039,FR,DO,201812,1,1,70508,94551 -039,FR,DO,201812,1,1,45751,46308 -039,FR,DO,201812,4,1,314370,138316 -039,FR,DO,201812,4,1,12401,5000 -039,FR,DO,201812,4,1,16633,6914 -039,FR,DO,201812,4,1,2051,1094 -039,FR,DO,201812,1,2,99040,145000 -060,FR,DO,201812,4,1,436,233 -060,FR,DO,201812,4,1,178,100 -099,FR,DO,201812,4,1,5708,1260 -099,FR,DO,201812,4,1,2575,35 -099,FR,DO,201812,4,2,5820,1 -111,FR,DO,201812,1,2,90,36 -112,FR,DO,201812,1,2,22,4 -121,FR,DO,201812,0,2,270,12 -121,FR,DO,201812,1,2,90318,4683 -121,FR,DO,201812,1,2,89521,6169 -121,FR,DO,201812,1,2,46529,15095 -121,FR,DO,201812,1,2,41998,58383 -121,FR,DO,201812,1,2,71762,28206 -121,FR,DO,201812,3,2,12299,720 -121,FR,DO,201812,3,2,4720,225 -121,FR,DO,201812,4,2,1528,243 -121,FR,DO,201812,4,2,2418,450 -122,FR,DO,201812,1,2,333,578 -125,FR,DO,201812,1,1,132545,8585 -125,FR,DO,201812,1,1,131707,10231 -125,FR,DO,201812,1,2,38046,10675 -125,FR,DO,201812,1,2,17630,10206 -125,FR,DO,201812,1,2,22745,10080 -125,FR,DO,201812,1,2,7038,2711 -128,FR,DO,201812,1,2,1409,3251 -128,FR,DO,201812,4,2,117,288 -131,FR,DO,201812,0,1,75336,14678 -131,FR,DO,201812,1,2,671,122 -132,FR,DO,201812,1,1,201648,75600 -132,FR,DO,201812,1,1,193919,40007 -132,FR,DO,201812,1,2,2728,534 -132,FR,DO,201812,4,2,99,19 -133,FR,DO,201812,1,1,708,816 -133,FR,DO,201812,1,1,440,350 -133,FR,DO,201812,1,1,453,577 -133,FR,DO,201812,1,1,4460,3735 -133,FR,DO,201812,4,1,122829,41853 -133,FR,DO,201812,4,1,3157,947 -133,FR,DO,201812,4,1,16750,5868 -133,FR,DO,201812,4,1,1297,1000 -133,FR,DO,201812,1,2,951,111 -135,FR,DO,201812,0,1,3532,29 -135,FR,DO,201812,4,1,1352,12 -135,FR,DO,201812,4,1,13719,180 -136,FR,DO,201812,1,2,399,3 -136,FR,DO,201812,1,2,237,86 -136,FR,DO,201812,4,2,1118,93 -139,FR,DO,201812,0,1,83,0 -139,FR,DO,201812,1,1,54130,20922 -139,FR,DO,201812,1,1,142599,46458 -139,FR,DO,201812,1,1,364,480 -139,FR,DO,201812,1,1,36284,16627 -139,FR,DO,201812,4,1,100,2 -139,FR,DO,201812,1,2,24383,7196 -139,FR,DO,201812,1,2,97372,54260 -139,FR,DO,201812,1,2,19323,7890 -139,FR,DO,201812,4,2,3632,524 -141,FR,DO,201812,4,2,777,40 -141,FR,DO,201812,4,2,498,28 -142,FR,DO,201812,1,2,329,19 -142,FR,DO,201812,4,2,645,131 -142,FR,DO,201812,4,2,72,27 -143,FR,DO,201812,1,2,6759,6521 -143,FR,DO,201812,1,2,26535,14805 -144,FR,DO,201812,1,2,148598,17807 -144,FR,DO,201812,1,2,2703,569 -144,FR,DO,201812,1,2,64455,20343 -144,FR,DO,201812,4,2,486,206 -144,FR,DO,201812,4,2,1988,310 -147,FR,DO,201812,1,2,3429,666 -148,FR,DO,201812,1,2,209,9 -148,FR,DO,201812,4,2,1488,25 -161,FR,DO,201812,1,2,4041,8064 -163,FR,DO,201812,1,1,13675,7278 -163,FR,DO,201812,1,1,5465,25000 -163,FR,DO,201812,1,2,11868,5379 -163,FR,DO,201812,1,2,15006,5835 -163,FR,DO,201812,4,2,738,172 -163,FR,DO,201812,4,2,33,3 -164,FR,DO,201812,1,1,202,44 -164,FR,DO,201812,1,1,47509,18558 -164,FR,DO,201812,4,1,2708,100 -164,FR,DO,201812,1,2,2529,510 -164,FR,DO,201812,1,2,2185,896 -164,FR,DO,201812,4,2,3183,241 -164,FR,DO,201812,4,2,1457,560 -165,FR,DO,201812,1,2,58,27 -165,FR,DO,201812,4,2,5062,666 -166,FR,DO,201812,1,1,20473,5115 -166,FR,DO,201812,1,1,4349,1993 -166,FR,DO,201812,1,1,2973,3519 -166,FR,DO,201812,4,1,538,111 -166,FR,DO,201812,1,2,31679,24933 -179,FR,DO,201812,1,2,18030,4917 -179,FR,DO,201812,1,2,165980,81210 -179,FR,DO,201812,1,2,4134,600 -179,FR,DO,201812,1,2,2298,300 -179,FR,DO,201812,1,2,371669,224125 -181,FR,DO,201812,1,2,49,17 -182,FR,DO,201812,1,1,3663,534 -182,FR,DO,201812,4,1,208,40 -182,FR,DO,201812,1,2,263,115 -182,FR,DO,201812,1,2,468,249 -182,FR,DO,201812,4,2,4844,244 -321,FR,DO,201812,1,2,245876,659648 -341,FR,DO,201812,1,2,1517,343 -341,FR,DO,201812,1,2,160396,69288 -341,FR,DO,201812,1,2,94256,44509 -341,FR,DO,201812,1,2,31313,15008 -341,FR,DO,201812,1,2,207934,90438 -341,FR,DO,201812,4,2,6,0 -542,FR,DO,201812,1,2,16474,17940 -542,FR,DO,201812,1,2,621603,694562 -551,FR,DO,201812,1,2,5,0 -551,FR,DO,201812,4,2,4209,16 -552,FR,DO,201812,1,2,64,1 -552,FR,DO,201812,1,2,23,0 -552,FR,DO,201812,3,2,24650,3553 -552,FR,DO,201812,4,2,543,0 -565,FR,DO,201812,4,1,300,3 -568,FR,DO,201812,1,2,22194,3977 -568,FR,DO,201812,1,2,218827,25695 -621,FR,DO,201812,1,2,30,2 -691,FR,DO,201812,1,1,1356,5000 -691,FR,DO,201812,1,1,5120,21890 -691,FR,DO,201812,4,1,1063,18 -813,FR,DO,201812,1,1,396,928 -819,FR,DO,201812,1,1,7630,18096 -819,FR,DO,201812,1,2,4285,438 -819,FR,DO,201812,1,2,44921,4633 -819,FR,DO,201812,3,2,14200,500 -819,FR,DO,201812,4,2,12093,7 -891,FR,DO,201812,4,1,46,1 -891,FR,DO,201812,1,2,2131,366 -891,FR,DO,201812,1,2,7363,800 -891,FR,DO,201812,1,2,179041,8985 -891,FR,DO,201812,1,2,29550,18000 -892,FR,DO,201812,1,2,9050,2165 -892,FR,DO,201812,1,2,4777,885 -892,FR,DO,201812,1,2,124860,12952 -892,FR,DO,201812,4,2,718,18 -893,FR,DO,201812,0,1,50,2 -893,FR,DO,201812,1,1,3387,110 -893,FR,DO,201812,1,1,10457,24970 -893,FR,DO,201812,4,1,49,2 -893,FR,DO,201812,4,1,1679,98 -893,FR,DO,201812,1,2,81,0 -893,FR,DO,201812,1,2,36,0 -893,FR,DO,201812,1,2,10500,556 -893,FR,DO,201812,1,2,78696,11050 -893,FR,DO,201812,1,2,71347,5700 -893,FR,DO,201812,3,2,13039,3000 -893,FR,DO,201812,4,2,446980,4182 -893,FR,DO,201812,4,2,6025,150 -893,FR,DO,201812,4,2,5454,54 -896,FR,DO,201812,1,2,3141,1280 -896,FR,DO,201812,1,2,18542,4071 -896,FR,DO,201812,1,2,94318,23103 -896,FR,DO,201812,4,2,65522,715 -896,FR,DO,201812,4,2,2660,56 -896,FR,DO,201812,4,2,4243,480 -896,FR,DO,201812,4,2,3954,156 -896,FR,DO,201812,4,2,1375,1 -910,FR,DO,201812,4,1,726,4 -910,FR,DO,201812,0,2,1401,37 -910,FR,DO,201812,1,2,29796,1578 -910,FR,DO,201812,1,2,1954,92 -910,FR,DO,201812,1,2,1944,123 -910,FR,DO,201812,1,2,45953,2247 -910,FR,DO,201812,3,2,30000,4290 -910,FR,DO,201812,4,2,8092,67 -910,FR,DO,201812,4,2,1998,63 -910,FR,DO,201812,4,2,1137,1 -931,FR,DO,201812,0,1,196,2 -931,FR,DO,201812,3,1,3137,0 -931,FR,DO,201812,3,1,78,0 -931,FR,DO,201812,4,1,745,9 -931,FR,DO,201812,4,1,99252,245 -931,FR,DO,201812,0,2,547,14 -931,FR,DO,201812,1,2,23395,3003 -931,FR,DO,201812,1,2,1938,123 -931,FR,DO,201812,1,2,5905,129 -931,FR,DO,201812,1,2,53918,3153 -931,FR,DO,201812,4,2,9424,85 -931,FR,DO,201812,4,2,104456,240 -931,FR,DO,201812,4,2,63289,797 -931,FR,DO,201812,4,2,4695,4 -931,FR,DO,201812,4,2,5863,295 -931,FR,DO,201812,4,2,4646,150 -931,FR,DO,201812,4,2,5239,16 -931,FR,DO,201812,4,2,151423,504 -939,FR,DO,201812,4,1,344,18 -939,FR,DO,201812,4,1,5519,2 -939,FR,DO,201812,4,1,5210,31 -939,FR,DO,201812,0,2,190,3 -939,FR,DO,201812,1,2,20550,364 -939,FR,DO,201812,1,2,846,54 -939,FR,DO,201812,1,2,171556,2469 -939,FR,DO,201812,1,2,31,2 -939,FR,DO,201812,3,2,211,0 -939,FR,DO,201812,4,2,48669,846 -939,FR,DO,201812,4,2,25361,244 -939,FR,DO,201812,4,2,26576,1360 -939,FR,DO,201812,4,2,218364,13900 -939,FR,DO,201812,4,2,1642,27 -939,FR,DO,201812,4,2,7201,43 -949,FR,DO,201812,4,1,790,19 -949,FR,DO,201812,0,2,187,13 -949,FR,DO,201812,1,2,511,3 -949,FR,DO,201812,1,2,7169,654 -949,FR,DO,201812,1,2,127784,15756 -949,FR,DO,201812,1,2,109814,19240 -949,FR,DO,201812,1,2,60772,1202 -949,FR,DO,201812,4,2,8419,111 -949,FR,DO,201812,4,2,6,0 -949,FR,DO,201812,4,2,56145,2230 -949,FR,DO,201812,4,2,6854,16 -951,FR,DO,201812,1,2,625,56 -951,FR,DO,201812,1,2,2210,248 -952,FR,DO,201812,1,1,67,200 -952,FR,DO,201812,4,1,318,44 -952,FR,DO,201812,0,2,2484,49 -952,FR,DO,201812,1,2,18271,12600 -952,FR,DO,201812,1,2,45473,17311 -952,FR,DO,201812,1,2,103011,93507 -952,FR,DO,201812,3,2,17924,6653 -952,FR,DO,201812,4,2,3884,0 -961,FR,DO,201812,1,2,183772,4662 -961,FR,DO,201812,4,2,64947,1044 -961,FR,DO,201812,4,2,27986,340 -961,FR,DO,201812,4,2,8844,241 -962,FR,DO,201812,1,1,984,241 -962,FR,DO,201812,1,1,36878,15579 -962,FR,DO,201812,4,1,82,5 -962,FR,DO,201812,4,1,61,0 -962,FR,DO,201812,4,1,279,18 -962,FR,DO,201812,1,2,12800,1925 -962,FR,DO,201812,1,2,56,1 -962,FR,DO,201812,1,2,627,88 -962,FR,DO,201812,1,2,9511,260 -962,FR,DO,201812,4,2,3722,56 -962,FR,DO,201812,4,2,5203,834 -962,FR,DO,201812,4,2,4093,830 -963,FR,DO,201812,0,1,676,14 -963,FR,DO,201812,1,1,59892,3347 -963,FR,DO,201812,1,1,73606,1796 -963,FR,DO,201812,3,1,2808,46 -963,FR,DO,201812,4,1,6934,335 -963,FR,DO,201812,4,1,752,14 -963,FR,DO,201812,4,1,27565,270 -963,FR,DO,201812,4,1,5257,100 -963,FR,DO,201812,4,1,18464,10 -963,FR,DO,201812,4,1,96060,2197 -963,FR,DO,201812,0,2,613,5 -963,FR,DO,201812,1,2,346,18 -963,FR,DO,201812,4,2,311146,969 -963,FR,DO,201812,4,2,50,0 -963,FR,DO,201812,4,2,47339,371 -963,FR,DO,201812,4,2,2588,5 -971,FR,DO,201812,4,1,26,0 -971,FR,DO,201812,1,2,523,9 -971,FR,DO,201812,1,2,251,33 -971,FR,DO,201812,1,2,965,19 -971,FR,DO,201812,1,2,26066,2496 -971,FR,DO,201812,4,2,26,0 -971,FR,DO,201812,4,2,44,6 -971,FR,DO,201812,4,2,649,1 -972,FR,DO,201812,1,2,5836,1545 -972,FR,DO,201812,1,2,43436,49891 -972,FR,DO,201812,4,2,830,33 -972,FR,DO,201812,4,2,3067,260 -973,FR,DO,201812,4,1,33283,1713 -973,FR,DO,201812,1,2,51488,39190 -973,FR,DO,201812,1,2,4583,2047 -973,FR,DO,201812,1,2,2593,831 -973,FR,DO,201812,4,2,2448,483 -973,FR,DO,201812,4,2,719,19 -973,FR,DO,201812,4,2,1736,500 -974,FR,DO,201812,3,1,60,0 -974,FR,DO,201812,4,1,740,96 -974,FR,DO,201812,4,1,135,5 -974,FR,DO,201812,0,2,86,1 -974,FR,DO,201812,1,2,53,4 -974,FR,DO,201812,1,2,1,3 -974,FR,DO,201812,1,2,4415,290 -974,FR,DO,201812,3,2,16,0 -974,FR,DO,201812,4,2,5398,222 -974,FR,DO,201812,4,2,95,1 -974,FR,DO,201812,4,2,8010,3 -975,FR,DO,201812,1,1,148,150 -975,FR,DO,201812,1,1,12405,6520 -975,FR,DO,201812,1,2,5072,8523 -975,FR,DO,201812,1,2,13255,650 -975,FR,DO,201812,4,2,4174,1013 -976,FR,DO,201812,1,2,3300,344 -976,FR,DO,201812,1,2,163825,10347 -976,FR,DO,201812,4,2,89,6 -979,FR,DO,201812,1,1,10125,2489 -979,FR,DO,201812,1,1,1920,70 -979,FR,DO,201812,1,1,3895,552 -979,FR,DO,201812,1,1,20032,2976 -979,FR,DO,201812,4,1,1720,96 -979,FR,DO,201812,4,1,950,8 -979,FR,DO,201812,4,1,55341,176 -979,FR,DO,201812,4,1,598,18 -979,FR,DO,201812,4,1,144,8 -979,FR,DO,201812,0,2,718,32 -979,FR,DO,201812,1,2,85468,202 -979,FR,DO,201812,1,2,18083,623 -979,FR,DO,201812,1,2,20867,980 -979,FR,DO,201812,1,2,31423,1858 -979,FR,DO,201812,1,2,9612,2077 -979,FR,DO,201812,1,2,135509,7291 -979,FR,DO,201812,1,2,63143,2227 -979,FR,DO,201812,3,2,12,0 -979,FR,DO,201812,4,2,28160,1436 -979,FR,DO,201812,4,2,31935,68 -979,FR,DO,201812,4,2,46248,130 -979,FR,DO,201812,4,2,731853,2104 -979,FR,DO,201812,4,2,23072,950 -979,FR,DO,201812,4,2,1809,6 -979,FR,DO,201812,4,2,50848,2620 -979,FR,DO,201812,4,2,40798,21 -979,FR,DO,201812,4,2,46953,30 -999,FR,DO,201812,3,1,346,0 -999,FR,DO,201812,4,1,1,0 -999,FR,DO,201812,4,1,3306,0 -999,FR,DO,201812,0,2,207,1 -999,FR,DO,201812,1,2,2149,24 -999,FR,DO,201812,1,2,16191,22000 -999,FR,DO,201812,1,2,88366,18910 -999,FR,DO,201812,1,2,55720,1000 -999,FR,DO,201812,1,2,269880,80887 -999,FR,DO,201812,1,2,12769,1800 -999,FR,DO,201812,3,2,56978,1000 -999,FR,DO,201812,4,2,1118,0 -999,FR,DO,201812,4,2,10145,650 -121,FR,VI,201812,1,2,3062,450 -125,FR,VI,201812,1,2,10308,2400 -125,FR,VI,201812,1,2,12235,819 -125,FR,VI,201812,1,2,649798,22378 -128,FR,VI,201812,1,2,8709,12396 -148,FR,VI,201812,4,1,184,16 -327,FR,VI,201812,1,2,1677835,4730055 -611,FR,VI,201812,1,2,107480,4650000 -891,FR,VI,201812,4,2,1379,19 -893,FR,VI,201812,0,2,170,3 -893,FR,VI,201812,4,2,6717,138 -910,FR,VI,201812,1,1,120000,0 -910,FR,VI,201812,4,1,98,4 -910,FR,VI,201812,1,2,519234,0 -939,FR,VI,201812,4,1,85,0 -979,FR,VI,201812,0,2,278,3 -979,FR,VI,201812,4,2,720,21 -979,FR,VI,201812,4,2,206,0 -979,FR,VI,201812,4,2,1161,10 -049,FR,AG,201812,4,2,1900,80 -121,FR,AG,201812,1,2,9249,857 -121,FR,AG,201812,1,2,48967,9356 -121,FR,AG,201812,1,2,35769,19776 -121,FR,AG,201812,4,2,3211,303 -139,FR,AG,201812,1,2,2969,1750 -139,FR,AG,201812,1,2,8191,3475 -139,FR,AG,201812,4,2,13592,241 -139,FR,AG,201812,4,2,3226,493 -142,FR,AG,201812,4,1,28672,2800 -142,FR,AG,201812,4,2,96,1 -143,FR,AG,201812,1,2,17208,12770 -163,FR,AG,201812,1,2,14830,7847 -182,FR,AG,201812,4,2,1511,160 -691,FR,AG,201812,1,2,47951,6000 -893,FR,AG,201812,4,2,2428,300 -910,FR,AG,201812,1,2,2500,2500 -910,FR,AG,201812,4,2,5530,0 -910,FR,AG,201812,4,2,1700,1 -910,FR,AG,201812,4,2,2290,2 -931,FR,AG,201812,0,2,2550,10 -931,FR,AG,201812,1,2,293002,11280 -931,FR,AG,201812,4,2,4653,10 -931,FR,AG,201812,4,2,2208,0 -931,FR,AG,201812,4,2,1539,8 -939,FR,AG,201812,0,2,672,4 -939,FR,AG,201812,4,2,3159,46 -939,FR,AG,201812,4,2,2293,26 -939,FR,AG,201812,4,2,279166,162 -939,FR,AG,201812,4,2,2694,170 -939,FR,AG,201812,4,2,3226,16 -949,FR,AG,201812,0,1,147,1 -949,FR,AG,201812,1,2,227,3 -949,FR,AG,201812,4,2,2342,0 -949,FR,AG,201812,4,2,1442,40 -949,FR,AG,201812,4,2,2924,60 -952,FR,AG,201812,1,2,18114,13027 -963,FR,AG,201812,1,2,51198,623 -963,FR,AG,201812,4,2,1000,21 -963,FR,AG,201812,4,2,1627,11 -973,FR,AG,201812,1,2,2035,25 -974,FR,AG,201812,1,2,92,1 -976,FR,AG,201812,1,2,46782,5367 -976,FR,AG,201812,1,2,95902,12000 -979,FR,AG,201812,3,1,134,1 -979,FR,AG,201812,0,2,7141,0 -979,FR,AG,201812,1,2,56,1 -979,FR,AG,201812,4,2,4390,2 -979,FR,AG,201812,4,2,3507,90 -031,FR,DM,201812,1,1,189,1080 -035,FR,DM,201812,1,1,60,278 -056,FR,DM,201812,1,2,4255,350 -099,FR,DM,201812,1,1,14,69 -121,FR,DM,201812,1,2,433,112 -121,FR,DM,201812,1,2,9693,6548 -122,FR,DM,201812,1,2,1854,1226 -125,FR,DM,201812,1,2,2176,215 -125,FR,DM,201812,1,2,6653,3444 -128,FR,DM,201812,1,1,432,1262 -132,FR,DM,201812,1,1,23,20 -132,FR,DM,201812,1,2,32,1 -133,FR,DM,201812,1,1,5781,12042 -135,FR,DM,201812,1,2,520,4 -166,FR,DM,201812,1,1,10451,27582 -568,FR,DM,201812,1,2,201,114 -723,FR,DM,201812,1,2,6534,16500 -813,FR,DM,201812,1,2,622,350 -896,FR,DM,201812,1,2,580,565 -910,FR,DM,201812,1,2,251,55 -910,FR,DM,201812,1,2,22500,32055 -910,FR,DM,201812,1,2,11800,9660 -920,FR,DM,201812,1,2,20000,8000 -931,FR,DM,201812,4,1,1253,43 -931,FR,DM,201812,1,2,49950,4742 -931,FR,DM,201812,4,2,4040,330 -939,FR,DM,201812,1,2,22052,7909 -949,FR,DM,201812,1,2,6227,130 -971,FR,DM,201812,1,2,900,273 -979,FR,DM,201812,1,1,2,30 -979,FR,DM,201812,1,2,327,184 -121,FR,KY,201812,1,1,11163,164 -121,FR,KY,201812,1,2,203968,705 -121,FR,KY,201812,1,2,156035,8147 -121,FR,KY,201812,4,2,179,13 -125,FR,KY,201812,1,2,12141,2255 -125,FR,KY,201812,1,2,6138,452 -125,FR,KY,201812,1,2,2642,1053 -128,FR,KY,201812,1,2,2260,1356 -139,FR,KY,201812,4,1,161,4 -139,FR,KY,201812,4,2,5430,247 -142,FR,KY,201812,4,2,5028,154 -144,FR,KY,201812,4,2,521,35 -147,FR,KY,201812,4,2,3495,55 -341,FR,KY,201812,4,2,1485,110 -691,FR,KY,201812,1,2,4339,268 -893,FR,KY,201812,4,2,28072,208 -896,FR,KY,201812,4,2,1647,44 -910,FR,KY,201812,4,2,110,17 -931,FR,KY,201812,0,1,1800,377 -931,FR,KY,201812,4,2,387,0 -931,FR,KY,201812,4,2,1414,36 -939,FR,KY,201812,4,2,5525,180 -949,FR,KY,201812,4,2,37,0 -952,FR,KY,201812,1,2,850,12 -952,FR,KY,201812,1,2,2691,13 -952,FR,KY,201812,4,2,4918,50 -952,FR,KY,201812,4,2,4165,42 -963,FR,KY,201812,0,2,46,3 -963,FR,KY,201812,4,2,109,0 -971,FR,KY,201812,4,2,1,0 -971,FR,KY,201812,4,2,56,0 -973,FR,KY,201812,1,2,1340,20 -973,FR,KY,201812,4,2,650,23 -974,FR,KY,201812,4,2,2204,15 -975,FR,KY,201812,0,1,2980,300 -979,FR,KY,201812,4,1,158,0 -979,FR,KY,201812,4,2,43615,2 -979,FR,KY,201812,4,2,5378,60 -979,FR,KY,201812,4,2,13059,30 -039,FR,JM,201812,1,2,17516,24400 -121,FR,JM,201812,1,1,30005,10684 -121,FR,JM,201812,1,1,29392,9792 -121,FR,JM,201812,1,2,7610,4347 -121,FR,JM,201812,1,2,15330,11116 -121,FR,JM,201812,1,2,35320,27000 -125,FR,JM,201812,0,1,20,2 -125,FR,JM,201812,1,1,7192,412 -125,FR,JM,201812,1,2,4028,1203 -125,FR,JM,201812,1,2,4450,313 -125,FR,JM,201812,1,2,337,21 -125,FR,JM,201812,1,2,229180,11013 -125,FR,JM,201812,1,2,194829,6713 -128,FR,JM,201812,1,1,15103,9824 -128,FR,JM,201812,1,2,9637,9630 -131,FR,JM,201812,4,1,242,8 -134,FR,JM,201812,4,1,505,10 -139,FR,JM,201812,1,1,3310,2039 -139,FR,JM,201812,3,1,4739,440 -139,FR,JM,201812,1,2,36813,14835 -139,FR,JM,201812,1,2,99749,15515 -139,FR,JM,201812,1,2,1515,625 -142,FR,JM,201812,1,1,345526,36202 -142,FR,JM,201812,4,1,22261,880 -143,FR,JM,201812,1,2,22823,8105 -143,FR,JM,201812,1,2,39073,14737 -144,FR,JM,201812,1,2,7576,1094 -144,FR,JM,201812,1,2,61860,17616 -144,FR,JM,201812,1,2,10407,1395 -162,FR,JM,201812,1,2,115226,337615 -164,FR,JM,201812,1,1,338,1300 -341,FR,JM,201812,1,2,33151,14582 -551,FR,JM,201812,1,2,5858,439 -552,FR,JM,201812,4,2,2505,52 -891,FR,JM,201812,1,2,25788,21000 -891,FR,JM,201812,1,2,25410,10058 -891,FR,JM,201812,4,2,920,1050 -893,FR,JM,201812,1,2,1011,6 -893,FR,JM,201812,1,2,22179,2339 -893,FR,JM,201812,4,2,152,3 -895,FR,JM,201812,1,2,34489,20000 -896,FR,JM,201812,1,2,68595,16627 -896,FR,JM,201812,4,2,12811,910 -910,FR,JM,201812,4,2,3150,77 -931,FR,JM,201812,4,1,60,4 -931,FR,JM,201812,1,2,148669,1028 -931,FR,JM,201812,4,2,906,54 -931,FR,JM,201812,4,2,19467,239 -931,FR,JM,201812,4,2,13388,2 -931,FR,JM,201812,4,2,4652,7 -939,FR,JM,201812,1,1,1000,400 -939,FR,JM,201812,1,2,2149,374 -939,FR,JM,201812,1,2,51036,353 -939,FR,JM,201812,4,2,118135,3997 -949,FR,JM,201812,1,2,32538,9192 -949,FR,JM,201812,3,2,22730,6216 -949,FR,JM,201812,4,2,33,0 -952,FR,JM,201812,1,2,7987,7411 -962,FR,JM,201812,1,2,122,35 -963,FR,JM,201812,3,1,221,2 -963,FR,JM,201812,4,1,217,1 -963,FR,JM,201812,4,2,1353,46 -971,FR,JM,201812,1,2,22,0 -973,FR,JM,201812,1,2,12,8 -974,FR,JM,201812,3,1,94,0 -979,FR,JM,201812,3,1,2348,105 -979,FR,JM,201812,4,1,442,15 -979,FR,JM,201812,4,1,14,0 -979,FR,JM,201812,4,1,34,22 -979,FR,JM,201812,1,2,421,47 -979,FR,JM,201812,4,2,9449,7 -999,FR,JM,201812,4,1,7692,0 -999,FR,JM,201812,4,1,1825,0 -999,FR,JM,201812,1,2,35622,7480 -999,FR,JM,201812,1,2,122832,116225 -999,FR,JM,201812,1,2,152089,63636 -999,FR,JM,201812,1,2,55422,35180 -999,FR,JM,201812,1,2,35913,12500 -999,FR,JM,201812,1,2,10187,20000 -011,FR,LC,201812,1,2,111855,500000 -039,FR,LC,201812,1,2,17126,24265 -039,FR,LC,201812,4,2,3754,3 -039,FR,LC,201812,4,2,14238,1490 -099,FR,LC,201812,4,2,159,4 -121,FR,LC,201812,0,2,3552,65 -121,FR,LC,201812,1,2,15045,1484 -121,FR,LC,201812,4,2,1944,73 -121,FR,LC,201812,4,2,3200,38 -125,FR,LC,201812,1,1,53392,7761 -125,FR,LC,201812,1,2,10738,2079 -125,FR,LC,201812,4,2,1253,30 -128,FR,LC,201812,1,2,18150,10229 -133,FR,LC,201812,4,1,1185,181 -139,FR,LC,201812,4,1,662,174 -139,FR,LC,201812,1,2,35768,14165 -139,FR,LC,201812,4,2,5090,470 -139,FR,LC,201812,4,2,790,23 -139,FR,LC,201812,4,2,2820,186 -141,FR,LC,201812,4,2,92,14 -141,FR,LC,201812,4,2,3897,194 -142,FR,LC,201812,4,2,1025,81 -142,FR,LC,201812,4,2,18470,778 -144,FR,LC,201812,1,2,2,2 -144,FR,LC,201812,4,2,682,45 -144,FR,LC,201812,4,2,4463,501 -147,FR,LC,201812,4,2,2239,29 -148,FR,LC,201812,4,2,2551,3 -162,FR,LC,201812,1,2,18811,51000 -162,FR,LC,201812,1,2,20897,51000 -163,FR,LC,201812,4,2,37,10 -164,FR,LC,201812,1,2,11637,9630 -551,FR,LC,201812,1,2,12494,338 -611,FR,LC,201812,1,2,43825,2500000 -723,FR,LC,201812,1,2,13510,25000 -893,FR,LC,201812,4,2,913,16 -931,FR,LC,201812,4,1,235,0 -931,FR,LC,201812,1,2,17387,2907 -931,FR,LC,201812,4,2,2445,145 -931,FR,LC,201812,4,2,4653,10 -931,FR,LC,201812,5,2,1226,20 -939,FR,LC,201812,0,2,56,1 -939,FR,LC,201812,1,2,63416,1721 -939,FR,LC,201812,3,2,100,14 -939,FR,LC,201812,4,2,11500,400 -939,FR,LC,201812,4,2,2501,54 -939,FR,LC,201812,4,2,1200,210 -949,FR,LC,201812,4,2,521,9 -949,FR,LC,201812,4,2,1772,24 -949,FR,LC,201812,4,2,4556,21 -949,FR,LC,201812,5,2,69,0 -952,FR,LC,201812,1,2,8769,17020 -952,FR,LC,201812,4,2,1717,20 -962,FR,LC,201812,0,2,611,5 -962,FR,LC,201812,4,2,9888,1590 -963,FR,LC,201812,0,1,28,1 -963,FR,LC,201812,1,2,10,200 -963,FR,LC,201812,4,2,2042,7 -973,FR,LC,201812,1,1,3579,325 -973,FR,LC,201812,1,1,188,15 -973,FR,LC,201812,1,2,828,61 -973,FR,LC,201812,4,2,3742,108 -974,FR,LC,201812,3,2,12971,64 -979,FR,LC,201812,4,2,10,2 -999,FR,LC,201812,4,1,1,0 -999,FR,LC,201812,4,2,2,0 -893,FR,BL,201812,4,1,400,149 -949,FR,BL,201812,1,1,990,4308 -973,FR,BL,201812,1,1,490,39050 -974,FR,BL,201812,8,1,5,1 -976,FR,BL,201812,1,1,1995,22377 -979,FR,BL,201812,1,1,4410,4829 -132,FR,VC,201812,4,1,170,2 -162,FR,VC,201812,1,2,27281,69100 -611,FR,VC,201812,1,2,25300,1100000 -612,FR,VC,201812,1,2,20700,900000 -910,FR,VC,201812,1,2,357684,0 -910,FR,VC,201812,9,2,319738,9500 -931,FR,VC,201812,4,1,619,1 -931,FR,VC,201812,4,1,1957,2 -931,FR,VC,201812,4,2,4653,10 -931,FR,VC,201812,4,2,1999,9 -939,FR,VC,201812,4,2,196,5 -939,FR,VC,201812,4,2,2603,190 -963,FR,VC,201812,4,1,1651,27 -963,FR,VC,201812,4,1,157,1 -963,FR,VC,201812,4,2,1404,50 -963,FR,VC,201812,4,2,10305,11 -979,FR,VC,201812,4,2,2066,10 -125,FR,VG,201812,1,2,14022,8735 -136,FR,VG,201812,1,2,1630,1222 -144,FR,VG,201812,4,2,1290,30 -224,FR,VG,201812,1,2,1474,7661 -910,FR,VG,201812,1,2,693666,0 -910,FR,VG,201812,1,2,765764,25400 -910,FR,VG,201812,1,2,2157291,0 -910,FR,VG,201812,1,2,628838,4200 -910,FR,VG,201812,1,2,1600,3840 -910,FR,VG,201812,9,2,8022322,10885 -931,FR,VG,201812,4,2,150,14 -931,FR,VG,201812,4,2,1214,35 -939,FR,VG,201812,1,2,3067,58 -939,FR,VG,201812,1,2,1067,60 -939,FR,VG,201812,1,2,255,5 -939,FR,VG,201812,4,2,585,2 -939,FR,VG,201812,4,2,7733,105 -949,FR,VG,201812,3,1,251,0 -949,FR,VG,201812,4,2,3260,470 -962,FR,VG,201812,1,2,20717,395 -962,FR,VG,201812,1,2,5222,25 -963,FR,VG,201812,0,2,2273,27 -963,FR,VG,201812,4,2,9450,141 -975,FR,VG,201812,4,2,1250,27 -979,FR,VG,201812,1,2,1251,5 -979,FR,VG,201812,1,2,4507,2782 -979,FR,VG,201812,4,2,8975,49 -979,FR,VG,201812,4,2,1120,35 -999,FR,VG,201812,3,2,8688,0 -035,FR,BB,201812,8,1,384,25 -039,FR,BB,201812,4,2,11870,689 -121,FR,BB,201812,1,2,24343,9711 -121,FR,BB,201812,1,2,89737,8776 -121,FR,BB,201812,4,2,2251,26 -125,FR,BB,201812,0,1,4430,2430 -125,FR,BB,201812,1,1,483958,67180 -125,FR,BB,201812,1,2,112289,4112 -128,FR,BB,201812,4,2,191,35 -139,FR,BB,201812,4,1,72,3 -139,FR,BB,201812,1,2,8215,2000 -139,FR,BB,201812,4,2,1902,90 -142,FR,BB,201812,4,2,2790,81 -144,FR,BB,201812,1,2,3375,500 -144,FR,BB,201812,4,2,959,80 -147,FR,BB,201812,4,2,3726,91 -148,FR,BB,201812,4,2,1556,1 -163,FR,BB,201812,4,2,1712,51 -182,FR,BB,201812,4,2,59,2 -323,FR,BB,201812,1,2,32884,36700 -568,FR,BB,201812,1,2,102000,8463 -892,FR,BB,201812,1,2,16585,3257 -892,FR,BB,201812,4,2,3518,742 -893,FR,BB,201812,1,1,880,170 -893,FR,BB,201812,4,2,28689,457 -893,FR,BB,201812,4,2,106,2 -896,FR,BB,201812,4,2,816,89 -910,FR,BB,201812,4,1,990,15 -910,FR,BB,201812,1,2,1309,80 -910,FR,BB,201812,4,2,1185,81 -931,FR,BB,201812,0,1,78,0 -931,FR,BB,201812,4,1,1160,2 -931,FR,BB,201812,1,2,1026,30 -931,FR,BB,201812,4,2,3039,1080 -931,FR,BB,201812,4,2,1253,61 -939,FR,BB,201812,4,2,50,0 -939,FR,BB,201812,4,2,7083,580 -949,FR,BB,201812,1,2,53450,1275 -952,FR,BB,201812,3,1,716,55 -952,FR,BB,201812,1,2,7885,10412 -952,FR,BB,201812,4,2,17200,500 -961,FR,BB,201812,4,2,326,3 -962,FR,BB,201812,4,2,120,2 -963,FR,BB,201812,4,1,394,8 -963,FR,BB,201812,4,2,39359,414 -963,FR,BB,201812,4,2,11010,41 -963,FR,BB,201812,4,2,4422,390 -963,FR,BB,201812,4,2,6161,44 -973,FR,BB,201812,4,2,354,3 -974,FR,BB,201812,1,1,3475,36 -974,FR,BB,201812,4,1,748,4 -974,FR,BB,201812,4,1,2637,100 -974,FR,BB,201812,4,1,5141,118 -974,FR,BB,201812,4,2,133,2 -974,FR,BB,201812,4,2,157,1 -976,FR,BB,201812,1,2,4456,81 -979,FR,BB,201812,4,1,136,0 -979,FR,BB,201812,4,2,554,5 -979,FR,BB,201812,4,2,703,10 -979,FR,BB,201812,4,2,3015,4 -999,FR,BB,201812,1,2,49047,15240 -611,FR,MS,201812,1,1,43257,3184320 -612,FR,MS,201812,1,1,12118,700160 -039,FR,TT,201812,1,2,14227,21262 -121,FR,TT,201812,1,2,50564,2248 -121,FR,TT,201812,1,2,145708,4360 -121,FR,TT,201812,1,2,3139,1184 -121,FR,TT,201812,1,2,9100,3825 -122,FR,TT,201812,1,1,90450,69854 -122,FR,TT,201812,1,1,18188,13780 -122,FR,TT,201812,1,1,112019,83760 -122,FR,TT,201812,1,1,23115,14000 -125,FR,TT,201812,3,1,5057,240 -125,FR,TT,201812,1,2,4226,136 -125,FR,TT,201812,1,2,230031,11695 -125,FR,TT,201812,1,2,400227,18504 -132,FR,TT,201812,1,2,17000,4398 -136,FR,TT,201812,1,2,2792,1478 -139,FR,TT,201812,4,1,92,2 -139,FR,TT,201812,1,2,28543,10039 -142,FR,TT,201812,4,1,1866,300 -143,FR,TT,201812,1,2,31942,11085 -144,FR,TT,201812,1,2,10699,1550 -146,FR,TT,201812,1,2,60341,9000 -163,FR,TT,201812,1,2,600,255 -164,FR,TT,201812,1,2,21275,10500 -166,FR,TT,201812,1,2,34524,48600 -182,FR,TT,201812,1,2,86864,12903 -327,FR,TT,201812,1,2,920116,2638013 -330,FR,TT,201812,1,1,608260,803883 -330,FR,TT,201812,1,1,272684,584114 -341,FR,TT,201812,4,1,496,4 -341,FR,TT,201812,4,2,267,20 -724,FR,TT,201812,1,1,7269372,31977012 -819,FR,TT,201812,1,1,11326,55500 -819,FR,TT,201812,1,1,1399124,4200685 -819,FR,TT,201812,1,1,1824473,5477739 -819,FR,TT,201812,1,1,8287,37000 -819,FR,TT,201812,1,1,2783532,8025905 -819,FR,TT,201812,1,1,4032,18500 -819,FR,TT,201812,3,1,28,0 -819,FR,TT,201812,4,2,420,42 -891,FR,TT,201812,1,2,1856,16 -893,FR,TT,201812,4,1,2190,98 -893,FR,TT,201812,1,2,2695,125 -893,FR,TT,201812,4,2,21834,270 -893,FR,TT,201812,4,2,164,17 -896,FR,TT,201812,1,2,9867,1500 -896,FR,TT,201812,4,2,29222,187 -896,FR,TT,201812,4,2,1102,30 -910,FR,TT,201812,1,2,1431,171 -910,FR,TT,201812,1,2,137205,9520 -910,FR,TT,201812,4,2,3184,0 -910,FR,TT,201812,4,2,1898,152 -910,FR,TT,201812,4,2,8153,2450 -931,FR,TT,201812,1,2,17196,2305 -931,FR,TT,201812,1,2,8069,260 -931,FR,TT,201812,1,2,72113,8188 -931,FR,TT,201812,3,2,6690,76 -931,FR,TT,201812,4,2,311401,6922 -931,FR,TT,201812,4,2,371,1 -931,FR,TT,201812,4,2,23154,1120 -931,FR,TT,201812,4,2,22490,5 -939,FR,TT,201812,4,1,6888,76 -939,FR,TT,201812,4,1,2789,22 -939,FR,TT,201812,1,2,5654,328 -939,FR,TT,201812,1,2,5378,334 -939,FR,TT,201812,3,2,13935,515 -939,FR,TT,201812,4,2,16216,48 -939,FR,TT,201812,4,2,16,0 -939,FR,TT,201812,4,2,61880,422 -939,FR,TT,201812,4,2,1,30 -939,FR,TT,201812,4,2,292,56 -939,FR,TT,201812,4,2,81841,1360 -939,FR,TT,201812,4,2,1478,5 -949,FR,TT,201812,1,2,88,4 -949,FR,TT,201812,4,2,29,0 -949,FR,TT,201812,4,2,20577,59 -962,FR,TT,201812,1,1,35447,5149 -962,FR,TT,201812,4,2,328,2 -963,FR,TT,201812,4,1,141,1 -963,FR,TT,201812,1,2,91,1 -963,FR,TT,201812,4,2,444,10 -971,FR,TT,201812,1,2,32579,1154 -971,FR,TT,201812,4,2,3,0 -971,FR,TT,201812,4,2,3441,25 -971,FR,TT,201812,4,2,1236,100 -973,FR,TT,201812,1,2,129,15 -973,FR,TT,201812,1,2,1350,97 -974,FR,TT,201812,4,2,84,12 -975,FR,TT,201812,1,2,337,27 -976,FR,TT,201812,1,2,2131,76 -979,FR,TT,201812,4,1,6116,65 -979,FR,TT,201812,4,1,526,64 -979,FR,TT,201812,1,2,224,65 -979,FR,TT,201812,1,2,591280,3600 -979,FR,TT,201812,3,2,5767,64 -979,FR,TT,201812,4,2,24358,75 -979,FR,TT,201812,4,2,32000,90 -979,FR,TT,201812,4,2,12176,550 -979,FR,TT,201812,4,2,2247,35 -999,FR,TT,201812,1,2,690,0 -999,FR,TT,201812,1,2,54166,17300 -999,FR,TT,201812,4,2,115,15 -035,FR,GD,201812,4,2,1126,228 -039,FR,GD,201812,4,2,10365,817 -121,FR,GD,201812,1,2,15031,474 -121,FR,GD,201812,1,2,32836,9509 -139,FR,GD,201812,1,2,3238,1931 -139,FR,GD,201812,1,2,246,5 -139,FR,GD,201812,4,2,884,51 -139,FR,GD,201812,4,2,1076,29 -139,FR,GD,201812,4,2,1309,36 -142,FR,GD,201812,1,1,6880,1300 -142,FR,GD,201812,1,1,6160,1232 -144,FR,GD,201812,4,2,664,42 -166,FR,GD,201812,1,1,12711,7164 -542,FR,GD,201812,3,2,27194,26545 -542,FR,GD,201812,3,2,48778,47615 -611,FR,GD,201812,1,2,10518,1000000 -612,FR,GD,201812,1,2,10781,900000 -891,FR,GD,201812,1,2,471,22 -893,FR,GD,201812,1,2,2483,179 -893,FR,GD,201812,1,2,224,4 -893,FR,GD,201812,4,2,65247,286 -910,FR,GD,201812,4,2,2,0 -910,FR,GD,201812,9,2,513821,0 -931,FR,GD,201812,1,2,16137,394 -931,FR,GD,201812,4,2,4653,10 -931,FR,GD,201812,4,2,440,3 -931,FR,GD,201812,4,2,6796,48 -931,FR,GD,201812,5,2,1279,17 -939,FR,GD,201812,1,2,13605,376 -939,FR,GD,201812,1,2,39,2 -939,FR,GD,201812,4,2,155,0 -939,FR,GD,201812,4,2,5149,18 -939,FR,GD,201812,4,2,1387,10 -949,FR,GD,201812,1,2,3163,137 -949,FR,GD,201812,1,2,1046,38 -949,FR,GD,201812,4,2,1,0 -952,FR,GD,201812,1,2,5342,241 -962,FR,GD,201812,4,2,5947,100 -963,FR,GD,201812,1,2,1137,28 -971,FR,GD,201812,1,2,3804,739 -971,FR,GD,201812,4,2,3,0 -975,FR,GD,201812,1,2,843,100 -979,FR,GD,201812,1,2,14845,524 -979,FR,GD,201812,1,2,292,9 -979,FR,GD,201812,4,2,58,0 -999,FR,GD,201812,1,2,3126,0 -121,FR,AW,201812,1,2,16349,8946 -121,FR,AW,201812,1,2,21992,11700 -121,FR,AW,201812,1,2,13420,8100 -121,FR,AW,201812,3,2,4021,756 -125,FR,AW,201812,1,2,8715,2025 -125,FR,AW,201812,1,2,15987,5085 -179,FR,AW,201812,1,2,16708,22507 -552,FR,AW,201812,4,2,1049,0 -891,FR,AW,201812,3,1,64,0 -893,FR,AW,201812,4,2,214478,1463 -896,FR,AW,201812,4,2,289,20 -910,FR,AW,201812,4,2,2074,65 -920,FR,AW,201812,3,2,422,10 -931,FR,AW,201812,0,2,640,3 -939,FR,AW,201812,3,2,803,14 -939,FR,AW,201812,4,2,1683,50 -941,FR,AW,201812,4,1,5,0 -949,FR,AW,201812,3,2,8046,891 -949,FR,AW,201812,4,2,236,0 -952,FR,AW,201812,4,2,99,2 -961,FR,AW,201812,4,2,574,0 -962,FR,AW,201812,4,2,508,49 -963,FR,AW,201812,4,1,4294,188 -963,FR,AW,201812,4,1,141,0 -963,FR,AW,201812,4,2,195137,317 -963,FR,AW,201812,4,2,12385,74 -963,FR,AW,201812,4,2,4885,6 -971,FR,AW,201812,4,2,2902,165 -971,FR,AW,201812,4,2,7,0 -973,FR,AW,201812,4,2,2114,238 -974,FR,AW,201812,4,1,3,0 -974,FR,AW,201812,4,2,380,5 -979,FR,AW,201812,4,1,128,0 -979,FR,AW,201812,4,2,14880,38 -979,FR,AW,201812,4,2,39,0 -979,FR,AW,201812,4,2,1753,90 -979,FR,AW,201812,4,2,14820,16 -999,FR,AW,201812,4,2,32,1 -011,FR,CW,201812,3,2,640,792 -016,FR,CW,201812,3,2,197,68 -019,FR,CW,201812,3,2,40,10 -035,FR,CW,201812,1,2,294,120 -035,FR,CW,201812,3,2,39,3 -039,FR,CW,201812,3,2,3187,2023 -099,FR,CW,201812,1,2,3304,4000 -099,FR,CW,201812,3,2,995,903 -112,FR,CW,201812,3,2,223,330 -121,FR,CW,201812,1,2,5895,252 -121,FR,CW,201812,1,2,292,67 -121,FR,CW,201812,3,2,1344,454 -121,FR,CW,201812,4,2,7119,420 -122,FR,CW,201812,3,2,280,79 -125,FR,CW,201812,1,2,294,252 -125,FR,CW,201812,3,2,70,36 -128,FR,CW,201812,1,2,125,270 -128,FR,CW,201812,3,2,4416,11032 -131,FR,CW,201812,1,2,5386,713 -131,FR,CW,201812,3,2,795,61 -132,FR,CW,201812,1,2,1292,329 -132,FR,CW,201812,3,2,8140,1232 -133,FR,CW,201812,1,2,491,103 -133,FR,CW,201812,3,2,108,6 -136,FR,CW,201812,1,2,290,174 -136,FR,CW,201812,3,2,54,14 -139,FR,CW,201812,1,2,48,45 -139,FR,CW,201812,3,2,4752,1157 -141,FR,CW,201812,1,2,44791,24884 -141,FR,CW,201812,1,2,43425,20953 -141,FR,CW,201812,1,2,90593,48485 -141,FR,CW,201812,3,2,7602,1463 -142,FR,CW,201812,3,2,11652,891 -144,FR,CW,201812,3,2,243,53 -147,FR,CW,201812,1,2,447,96 -147,FR,CW,201812,3,2,3836,780 -148,FR,CW,201812,3,2,4184,627 -161,FR,CW,201812,3,2,229,267 -163,FR,CW,201812,1,2,961,1048 -163,FR,CW,201812,3,2,23313,4876 -164,FR,CW,201812,3,2,1977,885 -165,FR,CW,201812,3,2,95,29 -166,FR,CW,201812,1,2,849,369 -166,FR,CW,201812,3,2,7018,2651 -179,FR,CW,201812,1,2,7817,10180 -179,FR,CW,201812,3,2,268,110 -179,FR,CW,201812,3,2,708,564 -182,FR,CW,201812,3,1,122,0 -182,FR,CW,201812,3,2,112,14 -224,FR,CW,201812,3,2,426,307 -323,FR,CW,201812,3,2,41,22 -341,FR,CW,201812,1,2,28,3 -341,FR,CW,201812,1,2,78019,39782 -341,FR,CW,201812,3,2,10,4 -341,FR,CW,201812,4,2,8,0 -568,FR,CW,201812,3,2,32,7 -568,FR,CW,201812,3,2,50,14 -639,FR,CW,201812,1,2,145,885 -639,FR,CW,201812,3,2,1386,6060 -719,FR,CW,201812,1,2,199,1800 -813,FR,CW,201812,3,2,67,15 -819,FR,CW,201812,3,2,218,165 -819,FR,CW,201812,3,2,192,171 -891,FR,CW,201812,3,2,135,24 -891,FR,CW,201812,3,2,23,9 -892,FR,CW,201812,3,2,715,39 -892,FR,CW,201812,3,2,69,5 -893,FR,CW,201812,1,2,191429,1994 -893,FR,CW,201812,1,2,3901,1801 -893,FR,CW,201812,1,2,78687,11790 -893,FR,CW,201812,3,2,665,153 -893,FR,CW,201812,3,2,10522,3431 -893,FR,CW,201812,4,2,101517,739 -893,FR,CW,201812,4,2,13047,25 -896,FR,CW,201812,1,2,218,173 -896,FR,CW,201812,3,2,474,72 -896,FR,CW,201812,3,2,2966,757 -896,FR,CW,201812,4,2,25167,87 -896,FR,CW,201812,4,2,2475,70 -920,FR,CW,201812,4,2,5783,280 -931,FR,CW,201812,3,1,193,0 -931,FR,CW,201812,1,2,63,6 -931,FR,CW,201812,1,2,79122,7342 -931,FR,CW,201812,3,2,534,108 -931,FR,CW,201812,4,2,92483,83 -931,FR,CW,201812,4,2,1500,188 -931,FR,CW,201812,4,2,2434,24 -939,FR,CW,201812,1,2,4599,800 -939,FR,CW,201812,3,2,71,13 -939,FR,CW,201812,4,2,2306,126 -939,FR,CW,201812,4,2,963,56 -939,FR,CW,201812,4,2,746,2 -939,FR,CW,201812,4,2,5790,52 -941,FR,CW,201812,3,2,10300,1500 -949,FR,CW,201812,3,2,8977,1793 -949,FR,CW,201812,3,2,212,20 -949,FR,CW,201812,4,2,403,3 -952,FR,CW,201812,3,2,2549,513 -952,FR,CW,201812,3,2,47,6 -962,FR,CW,201812,4,1,559,38 -962,FR,CW,201812,1,2,603,129 -962,FR,CW,201812,3,2,5199,521 -962,FR,CW,201812,3,2,122,28 -963,FR,CW,201812,4,1,55363,1249 -963,FR,CW,201812,4,1,33780,954 -963,FR,CW,201812,3,2,2852,191 -963,FR,CW,201812,4,2,10890,63 -971,FR,CW,201812,3,2,576,47 -972,FR,CW,201812,3,2,72,40 -972,FR,CW,201812,4,2,585,5 -973,FR,CW,201812,1,2,606,295 -973,FR,CW,201812,3,2,726,190 -973,FR,CW,201812,3,2,1728,626 -974,FR,CW,201812,3,2,166,24 -974,FR,CW,201812,4,2,25,8 -975,FR,CW,201812,3,2,2704,576 -976,FR,CW,201812,1,2,213,421 -976,FR,CW,201812,3,2,209,96 -979,FR,CW,201812,1,2,1576,12 -979,FR,CW,201812,1,2,2637,942 -979,FR,CW,201812,3,2,12620,3113 -979,FR,CW,201812,3,2,1198,252 -979,FR,CW,201812,4,2,4871,12 -999,FR,CW,201812,1,2,117,12 -999,FR,CW,201812,3,2,107,24 -999,FR,CW,201812,3,2,55,49 -939,FR,BQ,201812,4,2,6255,87 -001,FR,SX,201812,4,2,864,29 -011,FR,SX,201812,1,2,4,2 -016,FR,SX,201812,1,1,168,160 -016,FR,SX,201812,1,2,534,299 -019,FR,SX,201812,1,2,46,10 -020,FR,SX,201812,1,2,611,1270 -031,FR,SX,201812,1,2,96,48 -031,FR,SX,201812,4,2,73,19 -035,FR,SX,201812,1,2,11232,31968 -035,FR,SX,201812,1,2,1688,564 -035,FR,SX,201812,4,2,29256,2842 -039,FR,SX,201812,1,2,3689,2776 -039,FR,SX,201812,4,2,199193,17397 -039,FR,SX,201812,4,2,3600,6 -099,FR,SX,201812,1,2,1101,35 -099,FR,SX,201812,4,2,353,98 -111,FR,SX,201812,1,2,15,6 -112,FR,SX,201812,1,2,32,44 -121,FR,SX,201812,1,2,39592,1078 -121,FR,SX,201812,1,2,86429,1810 -121,FR,SX,201812,1,2,14730,1405 -121,FR,SX,201812,1,2,3133,740 -121,FR,SX,201812,4,2,9652,84 -121,FR,SX,201812,4,2,39771,83 -121,FR,SX,201812,4,2,2199,33 -122,FR,SX,201812,1,1,462,218 -122,FR,SX,201812,1,2,2349,852 -122,FR,SX,201812,1,2,350,136 -122,FR,SX,201812,1,2,45323,53174 -122,FR,SX,201812,4,2,132,33 -125,FR,SX,201812,1,1,4079,300 -125,FR,SX,201812,1,2,10343,3398 -125,FR,SX,201812,1,2,8970,1988 -125,FR,SX,201812,1,2,178,134 -125,FR,SX,201812,1,2,146249,6309 -125,FR,SX,201812,1,2,402,145 -125,FR,SX,201812,4,2,3429,18 -128,FR,SX,201812,1,2,6480,49896 -128,FR,SX,201812,1,2,7536,20302 -128,FR,SX,201812,1,2,950,890 -131,FR,SX,201812,1,2,6575,558 -132,FR,SX,201812,1,2,12472,2139 -132,FR,SX,201812,4,2,9782,87 -133,FR,SX,201812,1,2,1051,66 -133,FR,SX,201812,4,2,9687,295 -136,FR,SX,201812,1,2,4790,1282 -136,FR,SX,201812,4,2,643,30 -139,FR,SX,201812,0,1,410,4 -139,FR,SX,201812,4,1,43,4 -139,FR,SX,201812,4,1,89,2 -139,FR,SX,201812,1,2,27298,5117 -139,FR,SX,201812,1,2,12577,5551 -139,FR,SX,201812,1,2,58999,25456 -139,FR,SX,201812,4,2,166893,16954 -139,FR,SX,201812,4,2,3116,300 -141,FR,SX,201812,1,2,4503,826 -141,FR,SX,201812,1,2,3612,541 -141,FR,SX,201812,4,2,77919,7055 -142,FR,SX,201812,1,2,3306,276 -142,FR,SX,201812,4,2,174541,15326 -143,FR,SX,201812,1,2,21527,18089 -144,FR,SX,201812,1,2,9143,872 -144,FR,SX,201812,1,2,27694,3926 -144,FR,SX,201812,4,2,45213,4338 -145,FR,SX,201812,1,2,40,8 -146,FR,SX,201812,1,2,2057,967 -147,FR,SX,201812,1,2,21553,2982 -147,FR,SX,201812,4,2,82767,8568 -148,FR,SX,201812,1,2,5400,678 -148,FR,SX,201812,4,2,83396,179 -161,FR,SX,201812,1,2,250,292 -163,FR,SX,201812,1,2,2700,217 -163,FR,SX,201812,1,2,35293,10559 -163,FR,SX,201812,4,2,2384,401 -164,FR,SX,201812,1,2,7306,3877 -164,FR,SX,201812,4,2,277,17 -165,FR,SX,201812,1,2,178,74 -166,FR,SX,201812,1,2,8596,5961 -166,FR,SX,201812,1,2,4402,1664 -166,FR,SX,201812,4,2,5110,51 -179,FR,SX,201812,1,2,1801,1487 -179,FR,SX,201812,1,2,900,1430 -182,FR,SX,201812,1,2,1459,418 -182,FR,SX,201812,4,2,10,2 -323,FR,SX,201812,1,2,48,22 -327,FR,SX,201812,1,2,481495,1441960 -341,FR,SX,201812,1,2,427,34 -542,FR,SX,201812,1,2,124575,90693 -542,FR,SX,201812,1,2,74415,48849 -568,FR,SX,201812,1,1,697,330 -568,FR,SX,201812,1,2,6518,2005 -621,FR,SX,201812,1,2,60,4 -639,FR,SX,201812,1,2,3732,18876 -639,FR,SX,201812,1,2,145,312 -691,FR,SX,201812,1,2,11644,3490 -819,FR,SX,201812,1,1,205,40 -819,FR,SX,201812,1,2,184,160 -891,FR,SX,201812,1,2,669,180 -892,FR,SX,201812,1,2,103791,34589 -892,FR,SX,201812,1,2,43,5 -892,FR,SX,201812,4,2,406,20 -892,FR,SX,201812,4,2,1733,480 -893,FR,SX,201812,4,1,144,234 -893,FR,SX,201812,1,2,6589,2181 -893,FR,SX,201812,1,2,28133,3380 -893,FR,SX,201812,1,2,8737,3381 -893,FR,SX,201812,4,2,18509,192 -893,FR,SX,201812,4,2,5821,65 -893,FR,SX,201812,4,2,2737,33 -893,FR,SX,201812,4,2,4669,400 -894,FR,SX,201812,4,2,819,25 -896,FR,SX,201812,1,2,986,484 -896,FR,SX,201812,4,2,3531,70 -896,FR,SX,201812,4,2,780,25 -896,FR,SX,201812,4,2,7803,17 -910,FR,SX,201812,1,1,6611,390 -910,FR,SX,201812,1,1,10710,1535 -910,FR,SX,201812,1,2,21800,2841 -910,FR,SX,201812,1,2,37026,6314 -910,FR,SX,201812,1,2,4260,9500 -910,FR,SX,201812,4,2,3202,115 -910,FR,SX,201812,4,2,2405,15 -910,FR,SX,201812,4,2,5864,370 -920,FR,SX,201812,3,2,953,8 -920,FR,SX,201812,4,2,1417,15 -931,FR,SX,201812,1,1,561,380 -931,FR,SX,201812,1,1,8221,1152 -931,FR,SX,201812,1,1,28510,424 -931,FR,SX,201812,1,2,1560,81 -931,FR,SX,201812,1,2,13620,1608 -931,FR,SX,201812,1,2,646,107 -931,FR,SX,201812,4,2,369,1 -931,FR,SX,201812,4,2,11392,460 -931,FR,SX,201812,4,2,1253,10 -939,FR,SX,201812,1,1,1395,24 -939,FR,SX,201812,3,1,5214,47 -939,FR,SX,201812,8,1,892,15 -939,FR,SX,201812,1,2,1214,345 -939,FR,SX,201812,4,2,5636,69 -939,FR,SX,201812,4,2,5184,607 -939,FR,SX,201812,4,2,1042,8 -939,FR,SX,201812,4,2,25450,1750 -939,FR,SX,201812,4,2,4014,7 -941,FR,SX,201812,1,1,2810,870 -941,FR,SX,201812,1,2,140569,39948 -941,FR,SX,201812,1,2,19429,1453 -949,FR,SX,201812,1,1,346,605 -949,FR,SX,201812,1,2,39143,3179 -949,FR,SX,201812,1,2,432,123 -949,FR,SX,201812,1,2,406,7 -949,FR,SX,201812,1,2,5368,887 -949,FR,SX,201812,1,2,13340,1869 -949,FR,SX,201812,3,2,11257,570 -949,FR,SX,201812,4,2,4411,76 -949,FR,SX,201812,4,2,1300,24 -949,FR,SX,201812,4,2,1828,31 -952,FR,SX,201812,1,2,1440,374 -952,FR,SX,201812,4,2,940,41 -961,FR,SX,201812,1,2,52,4 -962,FR,SX,201812,1,2,3132,485 -962,FR,SX,201812,4,2,23535,335 -962,FR,SX,201812,4,2,1417,13 -962,FR,SX,201812,4,2,1311,2 -963,FR,SX,201812,0,1,21220,599 -963,FR,SX,201812,4,1,4044,0 -963,FR,SX,201812,4,1,412,14 -963,FR,SX,201812,1,2,397,55 -963,FR,SX,201812,4,2,6913,139 -963,FR,SX,201812,4,2,1290,5 -963,FR,SX,201812,4,2,2546,230 -963,FR,SX,201812,4,2,2998,45 -971,FR,SX,201812,1,2,19,20 -971,FR,SX,201812,4,2,201,36 -972,FR,SX,201812,1,2,1152,897 -973,FR,SX,201812,1,2,4286,2113 -973,FR,SX,201812,1,2,1696,820 -973,FR,SX,201812,4,2,332,20 -974,FR,SX,201812,1,1,208,77 -974,FR,SX,201812,4,1,146,336 -974,FR,SX,201812,4,1,347,10 -974,FR,SX,201812,1,2,70,12 -974,FR,SX,201812,4,2,4488,168 -975,FR,SX,201812,1,2,917,600 -975,FR,SX,201812,1,2,727,193 -976,FR,SX,201812,1,1,5174,88054 -976,FR,SX,201812,1,2,3508,300 -976,FR,SX,201812,1,2,242,55 -976,FR,SX,201812,4,2,858,7 -979,FR,SX,201812,0,1,5747,13 -979,FR,SX,201812,1,1,12825,900 -979,FR,SX,201812,1,1,2782,192 -979,FR,SX,201812,1,1,7021,9289 -979,FR,SX,201812,3,1,1940,2 -979,FR,SX,201812,4,1,50744,35 -979,FR,SX,201812,1,2,657,70 -979,FR,SX,201812,1,2,10589,2899 -979,FR,SX,201812,1,2,2741,1070 -979,FR,SX,201812,3,2,4270,53 -979,FR,SX,201812,4,2,65567,125 -979,FR,SX,201812,4,2,97677,1 -979,FR,SX,201812,4,2,24573,75 -979,FR,SX,201812,4,2,990,3 -979,FR,SX,201812,4,2,34197,4150 -979,FR,SX,201812,4,2,9889,10 -979,FR,SX,201812,4,2,26940,25 -999,FR,SX,201812,1,1,14917,0 -999,FR,SX,201812,4,1,500,0 -999,FR,SX,201812,1,2,3500,0 -999,FR,SX,201812,1,2,19505,0 -999,FR,SX,201812,1,2,451,182 -999,FR,SX,201812,4,2,470,0 -999,FR,SX,201812,4,2,11365,1400 -001,FR,CO,201812,4,1,1,27 -031,FR,CO,201812,1,1,114127,139796 -031,FR,CO,201812,1,1,15052,22500 -031,FR,CO,201812,1,1,21497,22400 -031,FR,CO,201812,1,1,21670,23116 -031,FR,CO,201812,1,1,19630,22002 -031,FR,CO,201812,1,1,144552,198603 -031,FR,CO,201812,1,1,34105,44820 -031,FR,CO,201812,1,1,28678,42192 -031,FR,CO,201812,4,1,134,37 -031,FR,CO,201812,4,1,106,28 -035,FR,CO,201812,1,1,115620,66656 -035,FR,CO,201812,1,1,416079,771139 -035,FR,CO,201812,1,1,315922,179040 -035,FR,CO,201812,1,1,153298,193704 -035,FR,CO,201812,3,1,31186,6517 -035,FR,CO,201812,4,1,354184,59531 -035,FR,CO,201812,4,1,18180,4616 -035,FR,CO,201812,4,1,28261,7637 -035,FR,CO,201812,4,1,176113,44213 -035,FR,CO,201812,4,1,14166,3115 -035,FR,CO,201812,1,2,327910,278924 -035,FR,CO,201812,1,2,20638,21404 -035,FR,CO,201812,1,2,18800,21168 -035,FR,CO,201812,1,2,20391,21403 -039,FR,CO,201812,4,1,77,6 -049,FR,CO,201812,4,2,189,0 -092,FR,CO,201812,1,2,478,220 -099,FR,CO,201812,4,1,10755,690 -099,FR,CO,201812,4,1,6832,68 -099,FR,CO,201812,4,1,64209,10932 -099,FR,CO,201812,4,1,20048,2625 -099,FR,CO,201812,4,1,33467,4894 -099,FR,CO,201812,1,2,31964,2225 -099,FR,CO,201812,1,2,10873,3000 -099,FR,CO,201812,1,2,48841,10000 -099,FR,CO,201812,1,2,20977,9045 -099,FR,CO,201812,4,2,24154,60 -099,FR,CO,201812,4,2,3713,22 -099,FR,CO,201812,4,2,3223,145 -111,FR,CO,201812,1,1,712542,1160000 -111,FR,CO,201812,1,1,120589,92425 -111,FR,CO,201812,4,2,40,16 -121,FR,CO,201812,0,2,60,9 -121,FR,CO,201812,1,2,3853,540 -121,FR,CO,201812,1,2,28516,4950 -121,FR,CO,201812,1,2,163472,59925 -121,FR,CO,201812,1,2,40621,9091 -121,FR,CO,201812,4,2,3191,243 -122,FR,CO,201812,4,2,46,79 -125,FR,CO,201812,0,1,52,1 -125,FR,CO,201812,1,2,12719,14009 -125,FR,CO,201812,1,2,80636,20966 -125,FR,CO,201812,1,2,21543,9734 -125,FR,CO,201812,3,2,4396,260 -128,FR,CO,201812,1,2,15672,15913 -128,FR,CO,201812,4,2,153,231 -131,FR,CO,201812,0,1,1399004,487581 -131,FR,CO,201812,1,1,55040,19114 -131,FR,CO,201812,1,1,25557,17341 -131,FR,CO,201812,1,1,103299,38473 -131,FR,CO,201812,1,1,726956,238700 -131,FR,CO,201812,1,1,10466,4995 -131,FR,CO,201812,3,1,413,0 -131,FR,CO,201812,4,1,8007,138 -132,FR,CO,201812,0,2,60,2 -133,FR,CO,201812,3,1,90,2 -133,FR,CO,201812,4,1,5521,240 -133,FR,CO,201812,4,2,30,5 -136,FR,CO,201812,1,1,5267,2765 -136,FR,CO,201812,1,1,2450,1147 -136,FR,CO,201812,4,1,356,4 -136,FR,CO,201812,1,2,46473,72000 -139,FR,CO,201812,1,1,112895,15200 -139,FR,CO,201812,1,1,46199,10563 -139,FR,CO,201812,1,1,47168,10791 -139,FR,CO,201812,1,1,44476,10280 -139,FR,CO,201812,1,1,44830,10351 -139,FR,CO,201812,0,2,56,0 -139,FR,CO,201812,1,2,26750,8773 -139,FR,CO,201812,1,2,41031,11207 -139,FR,CO,201812,1,2,29449,20000 -139,FR,CO,201812,1,2,28598,11438 -139,FR,CO,201812,4,2,1786,488 -139,FR,CO,201812,4,2,6980,287 -142,FR,CO,201812,1,1,122698,23004 -142,FR,CO,201812,1,1,134339,24000 -142,FR,CO,201812,1,1,466493,92016 -142,FR,CO,201812,1,1,117128,24000 -142,FR,CO,201812,1,1,139392,24000 -142,FR,CO,201812,4,1,2942,250 -143,FR,CO,201812,4,2,67,26 -143,FR,CO,201812,4,2,5250,1145 -144,FR,CO,201812,1,2,497809,284306 -144,FR,CO,201812,1,2,36757,2017 -144,FR,CO,201812,4,2,5250,920 -147,FR,CO,201812,3,2,2545,333 -162,FR,CO,201812,1,2,430887,982100 -163,FR,CO,201812,1,1,24931,13085 -163,FR,CO,201812,1,1,30183,14996 -163,FR,CO,201812,1,2,4492,2064 -163,FR,CO,201812,3,2,50,2 -163,FR,CO,201812,4,2,936,140 -164,FR,CO,201812,1,1,10264,8150 -164,FR,CO,201812,1,1,17861,7589 -164,FR,CO,201812,1,1,14730,23520 -164,FR,CO,201812,1,1,16724,24000 -164,FR,CO,201812,1,1,164718,37794 -164,FR,CO,201812,4,1,4433,1047 -164,FR,CO,201812,1,2,22536,6093 -164,FR,CO,201812,1,2,50645,11623 -164,FR,CO,201812,4,2,264,302 -179,FR,CO,201812,1,2,9196,5898 -179,FR,CO,201812,1,2,129381,54475 -179,FR,CO,201812,1,2,4930,12000 -179,FR,CO,201812,1,2,34924,900 -181,FR,CO,201812,3,1,85,0 -182,FR,CO,201812,4,2,2470,215 -182,FR,CO,201812,4,2,1037,20 -211,FR,CO,201812,0,1,5823899,90997000 -211,FR,CO,201812,1,1,6132757,52565000 -211,FR,CO,201812,1,1,4112914,36750000 -321,FR,CO,201812,4,2,50,8 -325,FR,CO,201812,4,2,195,33 -341,FR,CO,201812,1,2,1339,100 -341,FR,CO,201812,1,2,251955,139881 -341,FR,CO,201812,1,2,274707,117879 -341,FR,CO,201812,1,2,68396,17119 -341,FR,CO,201812,1,2,104332,42704 -341,FR,CO,201812,4,2,1062,300 -341,FR,CO,201812,4,2,14832,2400 -341,FR,CO,201812,8,2,22872,11088 -459,FR,CO,201812,1,2,64445,5088 -522,FR,CO,201812,1,2,2666,8 -533,FR,CO,201812,1,2,1850,48 -542,FR,CO,201812,1,2,228559,319914 -542,FR,CO,201812,1,2,53281,29202 -542,FR,CO,201812,1,2,398182,464616 -542,FR,CO,201812,1,2,5219,16 -542,FR,CO,201812,2,2,7886,9470 -542,FR,CO,201812,3,2,36345,36085 -542,FR,CO,201812,3,2,95509,89075 -551,FR,CO,201812,4,1,621,0 -551,FR,CO,201812,1,2,4010,679 -551,FR,CO,201812,1,2,12534,1832 -552,FR,CO,201812,1,2,15,0 -552,FR,CO,201812,4,2,1524,0 -561,FR,CO,201812,1,2,19611,2760 -565,FR,CO,201812,1,2,5040,76 -568,FR,CO,201812,1,2,15319,2079 -568,FR,CO,201812,1,2,239823,14934 -612,FR,CO,201812,1,2,9336,22500 -614,FR,CO,201812,1,2,18375,75000 -614,FR,CO,201812,1,2,11171,48000 -614,FR,CO,201812,1,2,13467,50000 -621,FR,CO,201812,4,2,2038,612 -631,FR,CO,201812,3,2,3096,22500 -639,FR,CO,201812,1,2,13316,24000 -639,FR,CO,201812,4,2,51233,854 -691,FR,CO,201812,1,2,6,0 -691,FR,CO,201812,1,2,8494,200 -691,FR,CO,201812,1,2,252186,95647 -691,FR,CO,201812,1,2,4783,1619 -691,FR,CO,201812,1,2,195055,237874 -691,FR,CO,201812,1,2,103660,17748 -691,FR,CO,201812,4,2,31,0 -692,FR,CO,201812,1,2,2800,60 -692,FR,CO,201812,1,2,99328,2797 -692,FR,CO,201812,4,2,2189,24 -724,FR,CO,201812,1,2,109049,364000 -813,FR,CO,201812,1,2,31160,6250 -819,FR,CO,201812,1,1,34581,19270 -819,FR,CO,201812,1,2,55983,9784 -819,FR,CO,201812,1,2,447864,170987 -819,FR,CO,201812,1,2,82976,89000 -819,FR,CO,201812,1,2,52875,101800 -819,FR,CO,201812,1,2,13095,20000 -819,FR,CO,201812,3,2,1704,120 -819,FR,CO,201812,4,2,92338,4973 -819,FR,CO,201812,4,2,5535,520 -819,FR,CO,201812,4,2,3340,108 -819,FR,CO,201812,4,2,23192,540 -819,FR,CO,201812,4,2,6048,76 -891,FR,CO,201812,3,1,127,0 -891,FR,CO,201812,1,2,212230,168543 -891,FR,CO,201812,1,2,38686,7050 -891,FR,CO,201812,1,2,10157,2500 -891,FR,CO,201812,1,2,226222,205885 -891,FR,CO,201812,1,2,40521,20000 -891,FR,CO,201812,1,2,29848,4775 -891,FR,CO,201812,1,2,84816,22000 -891,FR,CO,201812,1,2,46732,8931 -891,FR,CO,201812,1,2,28634,1105 -891,FR,CO,201812,1,2,34805,22000 -891,FR,CO,201812,3,2,19971,2035 -891,FR,CO,201812,3,2,60000,19250 -891,FR,CO,201812,4,2,36556,1698 -891,FR,CO,201812,4,2,178,47 -891,FR,CO,201812,4,2,4600,128 -891,FR,CO,201812,4,2,3414,449 -892,FR,CO,201812,1,2,72837,12726 -892,FR,CO,201812,1,2,5381,1680 -892,FR,CO,201812,1,2,7341,444 -892,FR,CO,201812,1,2,105371,10001 -892,FR,CO,201812,1,2,19771,3722 -892,FR,CO,201812,1,2,29358,7981 -892,FR,CO,201812,3,2,15830,550 -892,FR,CO,201812,4,2,2147,202 -892,FR,CO,201812,4,2,47328,549 -892,FR,CO,201812,4,2,3929,2 -893,FR,CO,201812,1,1,146448,93750 -893,FR,CO,201812,3,1,89,0 -893,FR,CO,201812,4,1,10812,47 -893,FR,CO,201812,4,1,114,0 -893,FR,CO,201812,4,1,210,2 -893,FR,CO,201812,0,2,50,0 -893,FR,CO,201812,1,2,429132,23008 -893,FR,CO,201812,1,2,24500,700 -893,FR,CO,201812,1,2,195,70 -893,FR,CO,201812,1,2,5009,320 -893,FR,CO,201812,1,2,153172,750 -893,FR,CO,201812,1,2,529791,21270 -893,FR,CO,201812,1,2,53709,1983 -893,FR,CO,201812,1,2,20133,2659 -893,FR,CO,201812,1,2,257898,38915 -893,FR,CO,201812,1,2,25289,900 -893,FR,CO,201812,1,2,45277,850 -893,FR,CO,201812,3,2,5942,320 -893,FR,CO,201812,3,2,22048,18000 -893,FR,CO,201812,4,2,3398572,18785 -893,FR,CO,201812,4,2,243601,590 -893,FR,CO,201812,4,2,92213,714 -893,FR,CO,201812,4,2,123953,1494 -893,FR,CO,201812,4,2,303683,2328 -893,FR,CO,201812,4,2,136483,3198 -893,FR,CO,201812,4,2,90155,960 -893,FR,CO,201812,4,2,39295,400 -893,FR,CO,201812,4,2,3295,7 -893,FR,CO,201812,4,2,34399,880 -893,FR,CO,201812,4,2,7615,200 -893,FR,CO,201812,4,2,835,142 -893,FR,CO,201812,4,2,1895,155 -893,FR,CO,201812,4,2,23361,1020 -893,FR,CO,201812,4,2,194113,370 -896,FR,CO,201812,1,1,304252,3840 -896,FR,CO,201812,3,1,8171,94 -896,FR,CO,201812,0,2,35,1 -896,FR,CO,201812,1,2,309249,39518 -896,FR,CO,201812,1,2,483,120 -896,FR,CO,201812,1,2,4987,1227 -896,FR,CO,201812,1,2,7647,1280 -896,FR,CO,201812,1,2,27418,1765 -896,FR,CO,201812,1,2,1986782,53582 -896,FR,CO,201812,1,2,6598,740 -896,FR,CO,201812,1,2,83829,9080 -896,FR,CO,201812,1,2,48958,5340 -896,FR,CO,201812,3,2,3425,1200 -896,FR,CO,201812,4,2,285290,9124 -896,FR,CO,201812,4,2,147384,1650 -896,FR,CO,201812,4,2,86592,675 -896,FR,CO,201812,4,2,12000,153 -896,FR,CO,201812,4,2,35174,78 -896,FR,CO,201812,4,2,840,8 -896,FR,CO,201812,4,2,4365,20 -896,FR,CO,201812,4,2,28226,409 -896,FR,CO,201812,4,2,6962,340 -896,FR,CO,201812,4,2,1541,16 -896,FR,CO,201812,4,2,6239,74 -910,FR,CO,201812,1,1,62526,16000 -910,FR,CO,201812,3,1,1112,76 -910,FR,CO,201812,4,1,54,1 -910,FR,CO,201812,4,1,3033,50 -910,FR,CO,201812,4,1,19584,1115 -910,FR,CO,201812,0,2,77,0 -910,FR,CO,201812,1,2,23592,2207 -910,FR,CO,201812,1,2,14456,792 -910,FR,CO,201812,1,2,73881,2387 -910,FR,CO,201812,1,2,2383663,305213 -910,FR,CO,201812,2,2,205346,28150 -910,FR,CO,201812,3,2,378528,53844 -910,FR,CO,201812,3,2,16356,2260 -910,FR,CO,201812,3,2,41580,5650 -910,FR,CO,201812,4,2,449490,6794 -910,FR,CO,201812,4,2,15231,664 -910,FR,CO,201812,4,2,5294,161 -910,FR,CO,201812,4,2,8094,7 -910,FR,CO,201812,4,2,10926,163 -910,FR,CO,201812,4,2,2859,2 -910,FR,CO,201812,4,2,72520,58 -910,FR,CO,201812,5,2,3650,19 -910,FR,CO,201812,9,2,31554036,25900 -920,FR,CO,201812,4,2,8261,1430 -931,FR,CO,201812,1,1,11655,1532 -931,FR,CO,201812,1,1,17226,6865 -931,FR,CO,201812,3,1,19023,200 -931,FR,CO,201812,4,1,399,18 -931,FR,CO,201812,4,1,10,0 -931,FR,CO,201812,4,1,36,2 -931,FR,CO,201812,4,1,209,14 -931,FR,CO,201812,0,2,1235,9 -931,FR,CO,201812,1,2,275679,9705 -931,FR,CO,201812,1,2,1912,13 -931,FR,CO,201812,1,2,13681,563 -931,FR,CO,201812,1,2,12629,1544 -931,FR,CO,201812,1,2,995337,46563 -931,FR,CO,201812,1,2,675229,2187 -931,FR,CO,201812,3,2,999,11 -931,FR,CO,201812,4,2,1049403,9373 -931,FR,CO,201812,4,2,7860,174 -931,FR,CO,201812,4,2,12356,37 -931,FR,CO,201812,4,2,28345,137 -931,FR,CO,201812,4,2,63308,93 -931,FR,CO,201812,4,2,66770,259 -931,FR,CO,201812,4,2,33543,435 -931,FR,CO,201812,4,2,50560,22 -931,FR,CO,201812,4,2,165504,85 -931,FR,CO,201812,4,2,11315,20 -931,FR,CO,201812,4,2,67428,3528 -931,FR,CO,201812,4,2,11500,34 -931,FR,CO,201812,4,2,57233,145 -931,FR,CO,201812,5,2,17964,499 -939,FR,CO,201812,3,1,695,14 -939,FR,CO,201812,4,1,8065,120 -939,FR,CO,201812,4,1,18,0 -939,FR,CO,201812,4,1,1606,241 -939,FR,CO,201812,4,1,2360,28 -939,FR,CO,201812,0,2,2537,7 -939,FR,CO,201812,1,2,137876,9724 -939,FR,CO,201812,1,2,20612,515 -939,FR,CO,201812,1,2,51740,3164 -939,FR,CO,201812,1,2,28152,805 -939,FR,CO,201812,1,2,23240,473 -939,FR,CO,201812,1,2,3486382,305468 -939,FR,CO,201812,1,2,330090,9835 -939,FR,CO,201812,1,2,29356,712 -939,FR,CO,201812,4,2,1157333,13097 -939,FR,CO,201812,4,2,690,0 -939,FR,CO,201812,4,2,77239,781 -939,FR,CO,201812,4,2,10488,84 -939,FR,CO,201812,4,2,35463,724 -939,FR,CO,201812,4,2,68820,852 -939,FR,CO,201812,4,2,6617,272 -939,FR,CO,201812,4,2,527980,30800 -939,FR,CO,201812,4,2,45633,319 -941,FR,CO,201812,1,2,16010,3521 -941,FR,CO,201812,1,2,2103,376 -941,FR,CO,201812,1,2,6378,2842 -941,FR,CO,201812,4,2,1289,38 -949,FR,CO,201812,3,1,533,41 -949,FR,CO,201812,4,1,829,46 -949,FR,CO,201812,1,2,56094,3333 -949,FR,CO,201812,1,2,5110,61 -949,FR,CO,201812,1,2,3673,1487 -949,FR,CO,201812,1,2,20800,1171 -949,FR,CO,201812,1,2,630868,89877 -949,FR,CO,201812,1,2,60008,5399 -949,FR,CO,201812,1,2,130379,27377 -949,FR,CO,201812,1,2,22,23 -949,FR,CO,201812,1,2,8580,848 -949,FR,CO,201812,1,2,30958,750 -949,FR,CO,201812,3,2,29636,1538 -949,FR,CO,201812,4,2,330797,2431 -949,FR,CO,201812,4,2,7,0 -949,FR,CO,201812,4,2,4533,53 -949,FR,CO,201812,4,2,13,10 -949,FR,CO,201812,4,2,2427,35 -949,FR,CO,201812,4,2,760,1 -949,FR,CO,201812,4,2,437,95 -949,FR,CO,201812,4,2,13045,1540 -949,FR,CO,201812,4,2,12430,70 -951,FR,CO,201812,4,1,11362,378 -951,FR,CO,201812,1,2,15911,1540 -951,FR,CO,201812,4,2,978,71 -952,FR,CO,201812,0,1,1515307,1 -952,FR,CO,201812,1,1,34932,20698 -952,FR,CO,201812,3,1,5547,171 -952,FR,CO,201812,4,1,2220926,0 -952,FR,CO,201812,4,1,112,0 -952,FR,CO,201812,1,2,98,19 -952,FR,CO,201812,1,2,2723,460 -952,FR,CO,201812,1,2,17491,17503 -952,FR,CO,201812,1,2,306635,116249 -952,FR,CO,201812,3,2,4644,991 -952,FR,CO,201812,4,2,71,1 -952,FR,CO,201812,4,2,100,120 -952,FR,CO,201812,4,2,2262,2540 -961,FR,CO,201812,3,2,13018,195 -961,FR,CO,201812,4,2,19403,146 -962,FR,CO,201812,1,1,171,16 -962,FR,CO,201812,3,1,263,6 -962,FR,CO,201812,4,1,4205,226 -962,FR,CO,201812,4,1,9336,122 -962,FR,CO,201812,1,2,41317,2085 -962,FR,CO,201812,1,2,210,9 -962,FR,CO,201812,1,2,36194,3405 -962,FR,CO,201812,1,2,1140,70 -962,FR,CO,201812,1,2,970,20 -962,FR,CO,201812,1,2,65236,25615 -962,FR,CO,201812,1,2,22059,4330 -962,FR,CO,201812,1,2,9440,833 -962,FR,CO,201812,4,2,109617,1818 -962,FR,CO,201812,4,2,1167,14 -962,FR,CO,201812,4,2,11027,379 -962,FR,CO,201812,4,2,5409,99 -962,FR,CO,201812,4,2,3891,89 -962,FR,CO,201812,4,2,2025,28 -962,FR,CO,201812,4,2,2857,110 -962,FR,CO,201812,4,2,7142,158 -963,FR,CO,201812,0,1,881,31 -963,FR,CO,201812,1,1,1120,9 -963,FR,CO,201812,1,1,1458,117 -963,FR,CO,201812,1,1,174399,5450 -963,FR,CO,201812,3,1,52475,566 -963,FR,CO,201812,4,1,53384,1453 -963,FR,CO,201812,4,1,846,10 -963,FR,CO,201812,4,1,45279,794 -963,FR,CO,201812,4,1,103912,3771 -963,FR,CO,201812,4,1,1593,16 -963,FR,CO,201812,4,1,19035,449 -963,FR,CO,201812,5,1,1201,18 -963,FR,CO,201812,0,2,1870,40 -963,FR,CO,201812,1,2,6284,323 -963,FR,CO,201812,1,2,5852,54 -963,FR,CO,201812,1,2,8076,1403 -963,FR,CO,201812,1,2,1200,68 -963,FR,CO,201812,1,2,16367,1031 -963,FR,CO,201812,4,2,505854,1060 -963,FR,CO,201812,4,2,20,0 -963,FR,CO,201812,4,2,324,4 -963,FR,CO,201812,4,2,24357,901 -963,FR,CO,201812,4,2,6154,320 -963,FR,CO,201812,4,2,8476,104 -971,FR,CO,201812,4,1,76,0 -971,FR,CO,201812,1,2,3429,216 -971,FR,CO,201812,1,2,1963,258 -971,FR,CO,201812,1,2,104373,8831 -971,FR,CO,201812,1,2,41420,11930 -971,FR,CO,201812,4,2,7440,122 -971,FR,CO,201812,4,2,3,0 -971,FR,CO,201812,4,2,51,0 -971,FR,CO,201812,4,2,5,5 -971,FR,CO,201812,4,2,404,21 -971,FR,CO,201812,4,2,5248,1700 -972,FR,CO,201812,1,2,12339,5117 -972,FR,CO,201812,1,2,10202,726 -972,FR,CO,201812,1,2,51862,29061 -972,FR,CO,201812,1,2,91422,192390 -972,FR,CO,201812,4,2,722,134 -972,FR,CO,201812,4,2,1604,31 -973,FR,CO,201812,3,1,578,37 -973,FR,CO,201812,1,2,787,14 -973,FR,CO,201812,1,2,28178,24626 -973,FR,CO,201812,1,2,498464,373891 -973,FR,CO,201812,1,2,28121,24376 -973,FR,CO,201812,4,2,2051,483 -973,FR,CO,201812,4,2,17,1 -974,FR,CO,201812,1,1,34,7 -974,FR,CO,201812,3,1,1771,34 -974,FR,CO,201812,4,1,153,0 -974,FR,CO,201812,0,2,150,0 -974,FR,CO,201812,1,2,203,21 -974,FR,CO,201812,1,2,44,117 -974,FR,CO,201812,1,2,30321,2091 -974,FR,CO,201812,1,2,58,2 -974,FR,CO,201812,3,2,297,95 -974,FR,CO,201812,4,2,2301,147 -974,FR,CO,201812,4,2,1,1 -974,FR,CO,201812,4,2,350,108 -974,FR,CO,201812,4,2,1473,70 -974,FR,CO,201812,4,2,12167,113 -975,FR,CO,201812,1,1,4637,205 -975,FR,CO,201812,1,1,7625,1 -975,FR,CO,201812,4,1,5881,378 -975,FR,CO,201812,1,2,2863,1149 -975,FR,CO,201812,1,2,45768,4207 -975,FR,CO,201812,1,2,161728,4126 -975,FR,CO,201812,1,2,14416,760 -975,FR,CO,201812,3,2,5,3 -975,FR,CO,201812,3,2,4109,275 -975,FR,CO,201812,4,2,89035,307 -975,FR,CO,201812,4,2,9111,134 -975,FR,CO,201812,4,2,4520,150 -976,FR,CO,201812,4,1,627,2 -976,FR,CO,201812,4,1,133,0 -976,FR,CO,201812,1,2,42,2 -976,FR,CO,201812,1,2,21366,5086 -976,FR,CO,201812,4,2,2959,91 -979,FR,CO,201812,0,1,869,34 -979,FR,CO,201812,1,1,19807,5828 -979,FR,CO,201812,1,1,70059,1940 -979,FR,CO,201812,1,1,310518,17422 -979,FR,CO,201812,3,1,16474,150 -979,FR,CO,201812,3,1,105,4 -979,FR,CO,201812,4,1,12523,260 -979,FR,CO,201812,4,1,1723,47 -979,FR,CO,201812,4,1,17441,123 -979,FR,CO,201812,4,1,1220,79 -979,FR,CO,201812,4,1,6732,310 -979,FR,CO,201812,0,2,2824,30 -979,FR,CO,201812,1,2,51550,3646 -979,FR,CO,201812,1,2,12798,1779 -979,FR,CO,201812,1,2,1939,102 -979,FR,CO,201812,1,2,930430,51040 -979,FR,CO,201812,1,2,75634,4399 -979,FR,CO,201812,1,2,107770,2613 -979,FR,CO,201812,3,2,4493,348 -979,FR,CO,201812,3,2,61044,2380 -979,FR,CO,201812,4,2,335156,4744 -979,FR,CO,201812,4,2,25988,365 -979,FR,CO,201812,4,2,156713,778 -979,FR,CO,201812,4,2,12224,368 -979,FR,CO,201812,4,2,236191,1515 -979,FR,CO,201812,4,2,291,1 -979,FR,CO,201812,4,2,482,12 -979,FR,CO,201812,4,2,123796,1256 -979,FR,CO,201812,4,2,5153,19 -979,FR,CO,201812,4,2,81831,4200 -979,FR,CO,201812,4,2,385111,3561 -979,FR,CO,201812,4,2,11655,300 -979,FR,CO,201812,4,2,276729,5100 -979,FR,CO,201812,4,2,7076,15 -979,FR,CO,201812,4,2,65484,398 -979,FR,CO,201812,5,2,502,21 -994,FR,CO,201812,4,1,139560,4 -999,FR,CO,201812,4,1,2560,0 -999,FR,CO,201812,4,1,181,0 -999,FR,CO,201812,1,2,37988,8125 -999,FR,CO,201812,1,2,5367,500 -999,FR,CO,201812,1,2,7667,720 -999,FR,CO,201812,1,2,196961,89082 -999,FR,CO,201812,1,2,28136,25600 -999,FR,CO,201812,1,2,31605,23375 -999,FR,CO,201812,1,2,66619,103600 -999,FR,CO,201812,1,2,41669,16779 -999,FR,CO,201812,1,2,54818,70150 -999,FR,CO,201812,1,2,12178,18500 -999,FR,CO,201812,1,2,180345,65900 -999,FR,CO,201812,1,2,27509,11000 -999,FR,CO,201812,1,2,81907,18950 -999,FR,CO,201812,1,2,46911,6300 -999,FR,CO,201812,3,2,1641,20 -999,FR,CO,201812,4,2,66541,1468 -999,FR,CO,201812,4,2,1740,20 -999,FR,CO,201812,4,2,1222,55 -999,FR,CO,201812,4,2,3774,42 -999,FR,CO,201812,4,2,1395,1 -999,FR,CO,201812,4,2,2500,0 -999,FR,CO,201812,4,2,3400,125 -999,FR,CO,201812,4,2,2495,47 -001,FR,VE,201812,4,2,93562,222 -099,FR,VE,201812,1,2,59876,5300 -111,FR,VE,201812,4,2,25,10 -121,FR,VE,201812,1,2,73300,2792 -121,FR,VE,201812,4,2,1206,492 -122,FR,VE,201812,4,2,219,380 -125,FR,VE,201812,1,1,530086,62065 -125,FR,VE,201812,1,1,257252,17172 -125,FR,VE,201812,1,1,690636,47292 -125,FR,VE,201812,1,1,62344,3159 -125,FR,VE,201812,1,2,1880,114 -128,FR,VE,201812,3,1,141,6 -128,FR,VE,201812,4,2,1219,2531 -132,FR,VE,201812,1,1,183990,50400 -133,FR,VE,201812,4,2,30,5 -136,FR,VE,201812,0,2,44,2 -139,FR,VE,201812,4,2,531,24 -142,FR,VE,201812,1,1,206856,41091 -142,FR,VE,201812,1,1,88073,34191 -142,FR,VE,201812,1,1,584984,124032 -142,FR,VE,201812,1,1,112212,24000 -142,FR,VE,201812,1,1,556155,129576 -142,FR,VE,201812,3,1,93765,19728 -143,FR,VE,201812,4,2,38,15 -144,FR,VE,201812,4,2,588,178 -163,FR,VE,201812,4,2,187,28 -164,FR,VE,201812,4,2,911,684 -341,FR,VE,201812,1,2,34879,14756 -621,FR,VE,201812,4,2,45,3 -891,FR,VE,201812,1,2,2261,118 -891,FR,VE,201812,1,2,33132,8000 -891,FR,VE,201812,1,2,6964,2104 -891,FR,VE,201812,4,2,1230,64 -892,FR,VE,201812,4,2,24446,300 -893,FR,VE,201812,3,1,75,0 -893,FR,VE,201812,0,2,90,2 -893,FR,VE,201812,1,2,191303,3246 -893,FR,VE,201812,4,2,856034,1687 -893,FR,VE,201812,4,2,160273,256 -910,FR,VE,201812,1,1,7580,1000 -910,FR,VE,201812,3,1,272,2 -910,FR,VE,201812,4,1,5794,49 -910,FR,VE,201812,4,1,307,10 -910,FR,VE,201812,4,2,10328,1 -931,FR,VE,201812,3,1,353,1 -931,FR,VE,201812,4,1,1306,3 -931,FR,VE,201812,0,2,244,1 -931,FR,VE,201812,1,2,17625,835 -931,FR,VE,201812,1,2,22323,3174 -931,FR,VE,201812,1,2,39284,4815 -931,FR,VE,201812,3,2,452,14 -931,FR,VE,201812,4,2,30,0 -931,FR,VE,201812,4,2,5753,3 -931,FR,VE,201812,4,2,2161,26 -931,FR,VE,201812,4,2,1664,10 -939,FR,VE,201812,4,1,307,0 -939,FR,VE,201812,3,2,12450,21 -939,FR,VE,201812,4,2,795965,4386 -939,FR,VE,201812,4,2,4573,31 -939,FR,VE,201812,4,2,3057,10 -949,FR,VE,201812,1,2,3011,261 -949,FR,VE,201812,4,2,485,55 -952,FR,VE,201812,1,2,22576,21527 -952,FR,VE,201812,4,2,11580,54 -962,FR,VE,201812,3,1,76,0 -962,FR,VE,201812,4,1,103,0 -962,FR,VE,201812,4,2,286,26 -963,FR,VE,201812,3,1,169,0 -963,FR,VE,201812,4,1,1140,3 -963,FR,VE,201812,4,2,114,2 -971,FR,VE,201812,4,2,33,0 -973,FR,VE,201812,4,2,1600,494 -974,FR,VE,201812,0,2,97,2 -974,FR,VE,201812,4,2,96,9 -975,FR,VE,201812,1,2,76,1 -976,FR,VE,201812,4,1,175,1 -979,FR,VE,201812,0,1,2989,10 -979,FR,VE,201812,3,1,480,1 -979,FR,VE,201812,4,1,3130,11 -979,FR,VE,201812,1,2,25703,173 -979,FR,VE,201812,1,2,51983,1983 -979,FR,VE,201812,4,2,29383,636 -979,FR,VE,201812,4,2,462,10 -979,FR,VE,201812,4,2,15779,50 -979,FR,VE,201812,4,2,2449,5 -979,FR,VE,201812,4,2,5543,7 -999,FR,VE,201812,1,1,5259,0 -999,FR,VE,201812,3,1,643,0 -999,FR,VE,201812,1,2,33200,14706 -999,FR,VE,201812,4,2,32,0 -999,FR,VE,201812,4,2,500,0 -056,FR,GY,201812,1,1,23887,23530 -125,FR,GY,201812,0,1,680,35 -125,FR,GY,201812,1,2,23823,9041 -142,FR,GY,201812,1,1,129346,19766 -631,FR,GY,201812,3,2,1913,22500 -634,FR,GY,201812,3,2,3102,42000 -691,FR,GY,201812,4,1,39,122 -896,FR,GY,201812,0,2,981,3 -931,FR,GY,201812,0,2,4166,8 -931,FR,GY,201812,1,2,15700,275 -939,FR,GY,201812,0,2,49,0 -939,FR,GY,201812,4,2,5000,1100 -939,FR,GY,201812,4,2,1124,1 -941,FR,GY,201812,1,2,594000,120000 -963,FR,GY,201812,4,1,671,79 -963,FR,GY,201812,3,2,1005,47 -976,FR,GY,201812,1,1,23773,24470 -979,FR,GY,201812,4,2,3612,0 -979,FR,GY,201812,4,2,2294,0 -016,FR,SR,201812,1,1,17124,23500 -016,FR,SR,201812,1,1,110794,259000 -016,FR,SR,201812,1,1,9646,25000 -016,FR,SR,201812,1,1,14287,49940 -016,FR,SR,201812,3,1,12240,24500 -016,FR,SR,201812,3,1,990,3300 -016,FR,SR,201812,3,1,15906,60000 -035,FR,SR,201812,1,1,123433,345168 -039,FR,SR,201812,3,1,320,1100 -056,FR,SR,201812,1,1,88764,77285 -121,FR,SR,201812,1,2,5144,1843 -121,FR,SR,201812,1,2,16548,7153 -122,FR,SR,201812,3,1,614,600 -122,FR,SR,201812,3,1,29750,47856 -125,FR,SR,201812,1,2,7700,4525 -125,FR,SR,201812,1,2,24452,13880 -128,FR,SR,201812,3,1,1568,3120 -128,FR,SR,201812,3,1,907,1751 -128,FR,SR,201812,3,1,108,284 -128,FR,SR,201812,1,2,8292,4500 -139,FR,SR,201812,1,1,659,1647 -139,FR,SR,201812,3,1,377,88 -142,FR,SR,201812,1,1,50085,9103 -142,FR,SR,201812,1,1,76153,17214 -142,FR,SR,201812,1,1,70922,17596 -142,FR,SR,201812,3,2,42410,550 -144,FR,SR,201812,1,2,60831,24325 -147,FR,SR,201812,1,2,23014,7328 -164,FR,SR,201812,1,1,13775,12240 -164,FR,SR,201812,0,2,2042,3 -164,FR,SR,201812,1,2,829,478 -179,FR,SR,201812,1,1,570,17100 -179,FR,SR,201812,3,1,2556,37500 -568,FR,SR,201812,3,1,332,380 -639,FR,SR,201812,3,2,26,432 -691,FR,SR,201812,3,1,2049,28000 -891,FR,SR,201812,1,1,8790,2993 -892,FR,SR,201812,1,1,21807,20270 -893,FR,SR,201812,3,1,1606,1000 -893,FR,SR,201812,4,1,131,2 -910,FR,SR,201812,3,1,2352,1820 -910,FR,SR,201812,1,2,75000,50000 -910,FR,SR,201812,3,2,6000,2000 -920,FR,SR,201812,1,1,3141,2680 -920,FR,SR,201812,4,2,1332,730 -931,FR,SR,201812,0,2,766,10 -931,FR,SR,201812,1,2,1025,30 -931,FR,SR,201812,1,2,105991,23469 -931,FR,SR,201812,4,2,14912,30 -939,FR,SR,201812,1,1,6535,217 -939,FR,SR,201812,3,1,15425,1010 -939,FR,SR,201812,1,2,2400,4800 -939,FR,SR,201812,4,2,4597,90 -939,FR,SR,201812,4,2,1098,400 -939,FR,SR,201812,4,2,5290,10 -941,FR,SR,201812,1,2,2564,610 -949,FR,SR,201812,3,1,694,115 -963,FR,SR,201812,3,1,228,2 -963,FR,SR,201812,3,1,25,0 -963,FR,SR,201812,1,2,1204,88 -963,FR,SR,201812,3,2,1038,70 -971,FR,SR,201812,3,1,493,300 -971,FR,SR,201812,3,2,450,300 -974,FR,SR,201812,3,1,986,420 -976,FR,SR,201812,1,1,67021,79350 -979,FR,SR,201812,1,1,30392,15811 -979,FR,SR,201812,1,1,207,3 -979,FR,SR,201812,3,1,105,25 -979,FR,SR,201812,3,1,834,701 -979,FR,SR,201812,1,2,2017,220 -979,FR,SR,201812,1,2,17895,3850 -999,FR,SR,201812,4,2,3,0 -035,FR,EC,201812,1,1,67605,100969 -035,FR,EC,201812,3,1,40287,64305 -035,FR,EC,201812,3,1,10265,3230 -035,FR,EC,201812,3,1,18912,5202 -035,FR,EC,201812,4,1,24193,3423 -035,FR,EC,201812,4,1,10684,2025 -035,FR,EC,201812,4,1,23575,3000 -035,FR,EC,201812,4,1,55754,8993 -035,FR,EC,201812,4,1,59045,16284 -035,FR,EC,201812,4,1,10830,2229 -035,FR,EC,201812,4,1,2402,434 -039,FR,EC,201812,1,1,43200,24000 -039,FR,EC,201812,1,1,45346,24000 -039,FR,EC,201812,1,1,2640,1200 -039,FR,EC,201812,1,1,45802,25900 -039,FR,EC,201812,1,1,30892,19840 -056,FR,EC,201812,1,1,26177,8570 -092,FR,EC,201812,1,2,55985,20200 -099,FR,EC,201812,1,1,11707,1343 -099,FR,EC,201812,3,1,667,25 -099,FR,EC,201812,3,1,615,72 -099,FR,EC,201812,4,1,1193,119 -099,FR,EC,201812,4,1,22230,341 -099,FR,EC,201812,4,1,748,80 -099,FR,EC,201812,4,1,1504,177 -099,FR,EC,201812,4,1,13242,1610 -099,FR,EC,201812,1,2,265200,300000 -099,FR,EC,201812,3,2,2726,1000 -099,FR,EC,201812,3,2,397,31 -099,FR,EC,201812,4,2,23730,21 -099,FR,EC,201812,4,2,3700,13 -111,FR,EC,201812,1,1,27357,17727 -121,FR,EC,201812,1,2,786,189 -125,FR,EC,201812,1,2,36741,3786 -125,FR,EC,201812,1,2,57070,23012 -125,FR,EC,201812,1,2,59306,24726 -131,FR,EC,201812,0,1,178973,37815 -131,FR,EC,201812,4,1,402,1 -132,FR,EC,201812,1,1,78289,5186 -132,FR,EC,201812,3,1,41732,22937 -132,FR,EC,201812,3,1,242506,121000 -132,FR,EC,201812,4,1,158,0 -133,FR,EC,201812,1,1,72528,30000 -133,FR,EC,201812,1,1,2560,800 -139,FR,EC,201812,1,1,246853,115641 -139,FR,EC,201812,1,1,82858,50228 -139,FR,EC,201812,1,1,55425,36236 -139,FR,EC,201812,1,1,100933,69754 -139,FR,EC,201812,1,1,35203,17952 -139,FR,EC,201812,1,1,28484,8208 -139,FR,EC,201812,4,1,69232,2300 -139,FR,EC,201812,4,1,397,5 -139,FR,EC,201812,4,1,298,12 -139,FR,EC,201812,1,2,42698,14571 -142,FR,EC,201812,0,1,27302,3500 -142,FR,EC,201812,1,1,89402,7960 -142,FR,EC,201812,1,1,175103,21520 -142,FR,EC,201812,1,1,105475,22176 -142,FR,EC,201812,1,1,1423140,221521 -142,FR,EC,201812,1,1,400817,72000 -142,FR,EC,201812,1,1,20449,8450 -142,FR,EC,201812,1,1,946920,191692 -142,FR,EC,201812,1,1,30191,7891 -142,FR,EC,201812,1,1,1908883,191972 -142,FR,EC,201812,1,1,502079,100434 -142,FR,EC,201812,1,1,4237829,876586 -142,FR,EC,201812,1,1,325909,45840 -142,FR,EC,201812,1,1,5099427,862361 -142,FR,EC,201812,1,2,154048,134030 -142,FR,EC,201812,4,2,33300,220 -148,FR,EC,201812,1,1,119882,25395 -148,FR,EC,201812,1,1,340488,81907 -148,FR,EC,201812,1,1,382410,94390 -148,FR,EC,201812,1,1,669681,143779 -164,FR,EC,201812,1,1,39899,7700 -164,FR,EC,201812,1,1,46705,63177 -164,FR,EC,201812,1,1,29518,21934 -164,FR,EC,201812,1,1,18549,18402 -164,FR,EC,201812,1,1,7355,4560 -164,FR,EC,201812,1,1,56500,75364 -164,FR,EC,201812,1,1,18746,20000 -166,FR,EC,201812,1,1,4169,1786 -179,FR,EC,201812,1,2,64234,5000 -179,FR,EC,201812,1,2,9768,1700 -179,FR,EC,201812,1,2,198957,86225 -179,FR,EC,201812,1,2,6906,1100 -179,FR,EC,201812,1,2,60771,23935 -179,FR,EC,201812,1,2,46595,12860 -179,FR,EC,201812,3,2,539,100 -179,FR,EC,201812,4,2,1,1 -181,FR,EC,201812,4,1,16,0 -182,FR,EC,201812,1,1,444316,220400 -182,FR,EC,201812,4,1,2112,9 -341,FR,EC,201812,1,2,34354,13750 -341,FR,EC,201812,1,2,94317,45024 -459,FR,EC,201812,1,2,33374,2600 -533,FR,EC,201812,1,2,84614,16110 -542,FR,EC,201812,1,2,26047,32110 -542,FR,EC,201812,1,2,181848,217184 -542,FR,EC,201812,2,2,502095,473920 -542,FR,EC,201812,3,2,127441,122365 -542,FR,EC,201812,3,2,356724,342075 -551,FR,EC,201812,1,2,16,0 -551,FR,EC,201812,4,2,52,0 -552,FR,EC,201812,1,2,25,0 -568,FR,EC,201812,1,2,196,0 -621,FR,EC,201812,4,2,234,16 -691,FR,EC,201812,1,2,7302,42000 -719,FR,EC,201812,1,2,63518,16670 -819,FR,EC,201812,1,2,38869,5000 -819,FR,EC,201812,1,2,290477,19530 -819,FR,EC,201812,4,2,946,50 -819,FR,EC,201812,4,2,89,0 -891,FR,EC,201812,1,2,42423,10120 -891,FR,EC,201812,1,2,2,0 -891,FR,EC,201812,1,2,32650,20000 -891,FR,EC,201812,1,2,37986,5615 -892,FR,EC,201812,1,2,10403,2384 -892,FR,EC,201812,1,2,70242,13800 -892,FR,EC,201812,1,2,1829,201 -892,FR,EC,201812,3,2,34917,12220 -892,FR,EC,201812,4,2,450,88 -893,FR,EC,201812,3,1,90,0 -893,FR,EC,201812,1,2,199685,13674 -893,FR,EC,201812,1,2,5494,200 -893,FR,EC,201812,1,2,326573,34292 -893,FR,EC,201812,1,2,41870,10420 -893,FR,EC,201812,3,2,19497,5300 -893,FR,EC,201812,3,2,9278,1000 -893,FR,EC,201812,3,2,11008,1200 -893,FR,EC,201812,3,2,129486,7282 -893,FR,EC,201812,4,2,232577,2499 -893,FR,EC,201812,4,2,67527,189 -893,FR,EC,201812,4,2,7694,209 -893,FR,EC,201812,4,2,22377,42 -893,FR,EC,201812,4,2,164410,101 -893,FR,EC,201812,4,2,4911,63 -896,FR,EC,201812,1,2,489989,37801 -896,FR,EC,201812,1,2,393520,115577 -896,FR,EC,201812,1,2,29219,8197 -896,FR,EC,201812,3,2,68757,20720 -896,FR,EC,201812,4,2,13738,65 -896,FR,EC,201812,4,2,20011,455 -896,FR,EC,201812,4,2,1506,112 -896,FR,EC,201812,4,2,72893,1178 -896,FR,EC,201812,4,2,54596,700 -896,FR,EC,201812,4,2,16791,120 -896,FR,EC,201812,4,2,14054,66 -896,FR,EC,201812,5,2,2363,5 -910,FR,EC,201812,1,2,74686,5345 -910,FR,EC,201812,1,2,1152,160 -910,FR,EC,201812,1,2,12563,800 -910,FR,EC,201812,1,2,140383,66 -910,FR,EC,201812,2,2,24015,3310 -910,FR,EC,201812,3,2,191318,25182 -910,FR,EC,201812,3,2,60000,8340 -910,FR,EC,201812,3,2,320000,42554 -910,FR,EC,201812,4,2,22413,555 -910,FR,EC,201812,4,2,447,48 -910,FR,EC,201812,4,2,9645,283 -920,FR,EC,201812,1,2,339362,2184 -931,FR,EC,201812,3,1,5869,759 -931,FR,EC,201812,4,1,214,3 -931,FR,EC,201812,1,2,15298,319 -931,FR,EC,201812,1,2,2585,67 -931,FR,EC,201812,1,2,2077058,157348 -931,FR,EC,201812,1,2,219,7 -931,FR,EC,201812,4,2,49432,194 -931,FR,EC,201812,4,2,6178,68 -931,FR,EC,201812,4,2,5347,20 -931,FR,EC,201812,4,2,43100,30 -931,FR,EC,201812,4,2,21440,41 -931,FR,EC,201812,4,2,16700,300 -931,FR,EC,201812,4,2,28947,212 -931,FR,EC,201812,4,2,3459,20 -931,FR,EC,201812,4,2,21371,1190 -931,FR,EC,201812,4,2,2599,12 -931,FR,EC,201812,4,2,5374,43 -939,FR,EC,201812,3,1,2020,44 -939,FR,EC,201812,4,1,10760,109 -939,FR,EC,201812,4,1,157,2 -939,FR,EC,201812,0,2,206,2 -939,FR,EC,201812,1,2,1992455,112153 -939,FR,EC,201812,1,2,9914,228 -939,FR,EC,201812,1,2,40150,183 -939,FR,EC,201812,1,2,10613,150 -939,FR,EC,201812,1,2,120727,16510 -939,FR,EC,201812,1,2,184455,2570 -939,FR,EC,201812,1,2,400401,11973 -939,FR,EC,201812,3,2,500,2 -939,FR,EC,201812,3,2,57870,1520 -939,FR,EC,201812,3,2,1323,150 -939,FR,EC,201812,4,2,96981,477 -939,FR,EC,201812,4,2,56020,605 -939,FR,EC,201812,4,2,8274,164 -939,FR,EC,201812,4,2,10775,229 -939,FR,EC,201812,4,2,3100,1 -939,FR,EC,201812,4,2,1349,8 -939,FR,EC,201812,4,2,51223,120 -939,FR,EC,201812,4,2,32270,1590 -939,FR,EC,201812,4,2,13333,94 -949,FR,EC,201812,4,1,14,1 -949,FR,EC,201812,4,1,27,3 -949,FR,EC,201812,1,2,6220,575 -949,FR,EC,201812,1,2,358,3 -949,FR,EC,201812,1,2,29740,2480 -949,FR,EC,201812,3,2,18732,1167 -949,FR,EC,201812,3,2,42503,1236 -949,FR,EC,201812,4,2,24345,320 -949,FR,EC,201812,4,2,2485,38 -949,FR,EC,201812,4,2,13072,210 -951,FR,EC,201812,1,2,2492,236 -951,FR,EC,201812,1,2,277,6 -951,FR,EC,201812,4,2,87,3 -952,FR,EC,201812,4,1,6,1 -952,FR,EC,201812,1,2,5780,621 -952,FR,EC,201812,1,2,56565,19843 -952,FR,EC,201812,1,2,57252,49849 -952,FR,EC,201812,3,2,14672,3657 -962,FR,EC,201812,3,1,10992,74 -962,FR,EC,201812,4,1,1074,32 -962,FR,EC,201812,4,1,5891,9 -962,FR,EC,201812,4,1,1144,4 -962,FR,EC,201812,4,2,13906,339 -962,FR,EC,201812,4,2,1152,78 -963,FR,EC,201812,0,1,235,8 -963,FR,EC,201812,3,1,21017,71 -963,FR,EC,201812,4,1,3657,129 -963,FR,EC,201812,4,1,5655,50 -963,FR,EC,201812,4,1,9260,93 -963,FR,EC,201812,4,1,1046,6 -963,FR,EC,201812,4,1,8243,110 -963,FR,EC,201812,0,2,300,15 -963,FR,EC,201812,4,2,2110,32 -963,FR,EC,201812,4,2,1075,20 -971,FR,EC,201812,1,2,4185,59 -971,FR,EC,201812,1,2,838,13 -971,FR,EC,201812,3,2,2771,242 -971,FR,EC,201812,4,2,550,5 -972,FR,EC,201812,1,2,12652,4541 -973,FR,EC,201812,3,1,101,3 -973,FR,EC,201812,0,2,498,21 -973,FR,EC,201812,1,2,5793,1573 -974,FR,EC,201812,4,1,207,0 -974,FR,EC,201812,0,2,50,0 -974,FR,EC,201812,1,2,44,169 -974,FR,EC,201812,1,2,295,33 -974,FR,EC,201812,4,2,11308,451 -975,FR,EC,201812,1,2,12049,992 -975,FR,EC,201812,1,2,12963,1427 -975,FR,EC,201812,4,2,4,0 -976,FR,EC,201812,1,1,309815,68620 -976,FR,EC,201812,1,1,78191,17189 -976,FR,EC,201812,3,2,123,44 -979,FR,EC,201812,0,1,591,13 -979,FR,EC,201812,3,1,6241,25 -979,FR,EC,201812,4,1,946,71 -979,FR,EC,201812,4,1,9436,89 -979,FR,EC,201812,4,1,97,18 -979,FR,EC,201812,4,1,545,20 -979,FR,EC,201812,1,2,36611,1707 -979,FR,EC,201812,1,2,71824,2063 -979,FR,EC,201812,1,2,540,10 -979,FR,EC,201812,1,2,631,1 -979,FR,EC,201812,1,2,19025,6400 -979,FR,EC,201812,1,2,2510,276 -979,FR,EC,201812,1,2,234226,23700 -979,FR,EC,201812,1,2,46072,3370 -979,FR,EC,201812,3,2,60,4 -979,FR,EC,201812,3,2,4757,90 -979,FR,EC,201812,3,2,13194,710 -979,FR,EC,201812,4,2,97642,269 -979,FR,EC,201812,4,2,46038,762 -979,FR,EC,201812,4,2,3566,38 -979,FR,EC,201812,4,2,98361,396 -979,FR,EC,201812,4,2,13145,45 -979,FR,EC,201812,4,2,19975,95 -979,FR,EC,201812,4,2,51406,225 -979,FR,EC,201812,4,2,6109,180 -979,FR,EC,201812,4,2,1361,6 -979,FR,EC,201812,4,2,16264,115 -999,FR,EC,201812,3,1,84,0 -999,FR,EC,201812,4,1,2,0 -999,FR,EC,201812,1,2,15942,3605 -999,FR,EC,201812,1,2,49075,54025 -999,FR,EC,201812,1,2,87974,40000 -999,FR,EC,201812,1,2,30793,0 -999,FR,EC,201812,1,2,168376,45650 -999,FR,EC,201812,1,2,89728,40000 -999,FR,EC,201812,1,2,44864,20000 -999,FR,EC,201812,1,2,25191,3600 -999,FR,EC,201812,3,2,46100,750 -999,FR,EC,201812,3,2,61231,1225 -999,FR,EC,201812,3,2,131504,2000 -999,FR,EC,201812,4,2,16003,191 -999,FR,EC,201812,4,2,361,25 -999,FR,EC,201812,4,2,15000,150 -999,FR,EC,201812,4,2,1,0 -999,FR,EC,201812,4,2,7267,780 -001,FR,PE,201812,4,2,600,26 -015,FR,PE,201812,4,1,107546,2333 -019,FR,PE,201812,1,1,2465,800 -019,FR,PE,201812,1,1,60866,16912 -019,FR,PE,201812,1,1,62062,37800 -019,FR,PE,201812,1,1,43351,20000 -019,FR,PE,201812,1,1,160668,98750 -031,FR,PE,201812,1,1,17189,25587 -035,FR,PE,201812,1,1,39250,18696 -035,FR,PE,201812,1,1,19794,13440 -035,FR,PE,201812,1,1,80166,37392 -035,FR,PE,201812,1,1,205824,93480 -035,FR,PE,201812,1,1,74019,101143 -035,FR,PE,201812,1,1,40764,18696 -035,FR,PE,201812,3,1,715282,279936 -035,FR,PE,201812,4,1,226979,52792 -035,FR,PE,201812,4,1,56135,13200 -035,FR,PE,201812,4,1,47179,10560 -035,FR,PE,201812,4,1,72073,15312 -035,FR,PE,201812,4,1,17526,4032 -035,FR,PE,201812,4,1,389491,70946 -035,FR,PE,201812,4,1,34253,8228 -035,FR,PE,201812,4,1,152242,33520 -035,FR,PE,201812,4,1,30598,6336 -035,FR,PE,201812,4,1,247373,60714 -035,FR,PE,201812,4,1,18169,2610 -035,FR,PE,201812,4,1,12847,2880 -039,FR,PE,201812,1,1,8356,2845 -039,FR,PE,201812,1,1,1464,252 -039,FR,PE,201812,1,1,49701,27216 -039,FR,PE,201812,1,1,37187,24000 -039,FR,PE,201812,1,1,17203,8608 -039,FR,PE,201812,4,1,266763,45280 -039,FR,PE,201812,4,1,448297,61557 -039,FR,PE,201812,4,1,9351,1696 -039,FR,PE,201812,4,1,56379,12488 -039,FR,PE,201812,4,1,14374,2822 -056,FR,PE,201812,1,1,29709,24080 -056,FR,PE,201812,1,1,30589,21040 -056,FR,PE,201812,1,1,60481,46940 -056,FR,PE,201812,1,1,32650,48840 -056,FR,PE,201812,1,1,249196,165180 -056,FR,PE,201812,1,1,42996,25490 -056,FR,PE,201812,1,1,221041,170230 -056,FR,PE,201812,1,1,34994,26060 -056,FR,PE,201812,1,1,173455,124911 -099,FR,PE,201812,1,1,34130,8200 -099,FR,PE,201812,1,1,56723,40000 -099,FR,PE,201812,1,1,27610,9000 -099,FR,PE,201812,4,1,39915,24 -099,FR,PE,201812,4,1,34,0 -099,FR,PE,201812,4,1,1049,74 -099,FR,PE,201812,1,2,6450,2050 -099,FR,PE,201812,1,2,43780,7000 -099,FR,PE,201812,4,2,26567,900 -099,FR,PE,201812,4,2,33371,187 -111,FR,PE,201812,1,1,28247,16920 -111,FR,PE,201812,1,1,28247,16920 -121,FR,PE,201812,1,2,21624,5490 -121,FR,PE,201812,1,2,8086,184 -121,FR,PE,201812,3,2,15602,3129 -121,FR,PE,201812,4,2,26595,675 -121,FR,PE,201812,4,2,34827,260 -125,FR,PE,201812,1,1,1181,199 -125,FR,PE,201812,4,1,209,1 -125,FR,PE,201812,1,2,930,120 -125,FR,PE,201812,1,2,34250,4779 -128,FR,PE,201812,1,2,8507,9195 -131,FR,PE,201812,0,1,3348650,1331826 -131,FR,PE,201812,1,1,116776,37950 -131,FR,PE,201812,1,1,122430,37950 -131,FR,PE,201812,1,1,561229,207000 -131,FR,PE,201812,1,1,702719,269100 -131,FR,PE,201812,1,1,11193,3467 -132,FR,PE,201812,1,1,30999,4514 -132,FR,PE,201812,4,1,10933,350 -132,FR,PE,201812,0,2,90,6 -132,FR,PE,201812,1,2,3765,212 -132,FR,PE,201812,1,2,41300,12610 -132,FR,PE,201812,4,2,219,67 -133,FR,PE,201812,1,1,19393,12666 -133,FR,PE,201812,1,1,27280,12909 -133,FR,PE,201812,1,1,2351,1113 -136,FR,PE,201812,4,1,227,3 -136,FR,PE,201812,0,2,70,2 -139,FR,PE,201812,1,1,2487,336 -139,FR,PE,201812,1,1,34242,11414 -139,FR,PE,201812,1,1,262176,128385 -139,FR,PE,201812,1,1,15252,4069 -139,FR,PE,201812,3,1,90,3 -139,FR,PE,201812,1,2,31033,819 -142,FR,PE,201812,1,1,93368,19172 -142,FR,PE,201812,1,1,294583,122279 -142,FR,PE,201812,1,1,1065795,132510 -142,FR,PE,201812,1,1,270559,73122 -142,FR,PE,201812,1,1,274454,30828 -142,FR,PE,201812,1,1,40650,24300 -142,FR,PE,201812,1,1,413867,87832 -142,FR,PE,201812,1,1,63938,15568 -142,FR,PE,201812,1,1,541301,84234 -144,FR,PE,201812,1,2,18201,3551 -144,FR,PE,201812,1,2,29522,23975 -144,FR,PE,201812,4,2,19062,2176 -144,FR,PE,201812,4,2,8355,793 -161,FR,PE,201812,1,1,33244,5972 -163,FR,PE,201812,1,1,13404,4800 -163,FR,PE,201812,1,1,26004,8800 -163,FR,PE,201812,4,1,4784,525 -163,FR,PE,201812,1,2,5550,1632 -163,FR,PE,201812,1,2,8300,696 -164,FR,PE,201812,0,1,58,1 -164,FR,PE,201812,1,1,434,288 -164,FR,PE,201812,1,1,2285,441 -164,FR,PE,201812,1,1,38853,17910 -164,FR,PE,201812,3,1,46,18 -164,FR,PE,201812,4,1,77557,8770 -164,FR,PE,201812,4,1,10590,1122 -164,FR,PE,201812,4,1,14516,1600 -164,FR,PE,201812,1,2,20500,5452 -164,FR,PE,201812,1,2,184,382 -165,FR,PE,201812,1,1,20232,21000 -165,FR,PE,201812,1,1,34634,21000 -165,FR,PE,201812,1,2,71749,13370 -166,FR,PE,201812,1,1,6955,690 -166,FR,PE,201812,1,1,432426,129493 -166,FR,PE,201812,1,1,229169,31547 -166,FR,PE,201812,1,1,274431,64719 -166,FR,PE,201812,1,1,139292,43882 -166,FR,PE,201812,1,1,30187,9873 -166,FR,PE,201812,1,1,945041,300683 -166,FR,PE,201812,1,1,93991,16250 -166,FR,PE,201812,1,1,599049,184508 -166,FR,PE,201812,1,1,32821,10824 -166,FR,PE,201812,3,1,713,134 -166,FR,PE,201812,4,1,303,5 -166,FR,PE,201812,4,1,389,25 -166,FR,PE,201812,4,2,23,37 -179,FR,PE,201812,1,2,118714,58837 -179,FR,PE,201812,1,2,57885,12000 -179,FR,PE,201812,3,2,3380,500 -179,FR,PE,201812,4,2,35060,688 -181,FR,PE,201812,4,1,17,0 -182,FR,PE,201812,3,1,522147,363140 -182,FR,PE,201812,4,1,2537,150 -330,FR,PE,201812,1,1,25442376,0 -341,FR,PE,201812,1,2,903,3 -341,FR,PE,201812,1,2,55244,33811 -341,FR,PE,201812,1,2,125574,60021 -341,FR,PE,201812,1,2,62944,30016 -341,FR,PE,201812,1,2,1440,105 -341,FR,PE,201812,4,2,6087,115 -341,FR,PE,201812,4,2,233,12 -349,FR,PE,201812,4,2,26,0 -532,FR,PE,201812,1,2,1058,222 -542,FR,PE,201812,3,2,75551,42416 -542,FR,PE,201812,4,2,171,5 -551,FR,PE,201812,4,2,8,0 -552,FR,PE,201812,1,2,291,0 -552,FR,PE,201812,4,2,18,0 -564,FR,PE,201812,1,1,26650,10021 -564,FR,PE,201812,1,1,178113,68027 -568,FR,PE,201812,1,1,14371,2808 -568,FR,PE,201812,1,1,224979,77922 -568,FR,PE,201812,1,1,307935,106096 -568,FR,PE,201812,1,2,7449,1012 -614,FR,PE,201812,1,2,19750,75000 -614,FR,PE,201812,1,2,27694,48000 -621,FR,PE,201812,3,1,226,9 -691,FR,PE,201812,4,1,187,0 -691,FR,PE,201812,1,2,36,1 -691,FR,PE,201812,1,2,133,80 -691,FR,PE,201812,1,2,27343,43338 -691,FR,PE,201812,3,2,6493,530 -691,FR,PE,201812,4,2,56,1 -692,FR,PE,201812,4,2,1130,95 -819,FR,PE,201812,1,1,54587,24000 -819,FR,PE,201812,1,1,34666,15000 -819,FR,PE,201812,1,1,54451,24000 -819,FR,PE,201812,1,2,6518,2478 -819,FR,PE,201812,1,2,355191,95980 -819,FR,PE,201812,1,2,89655,242000 -819,FR,PE,201812,4,2,39959,452 -819,FR,PE,201812,4,2,2761,1 -819,FR,PE,201812,4,2,5037,800 -819,FR,PE,201812,4,2,4695,246 -891,FR,PE,201812,1,2,15936,5421 -891,FR,PE,201812,1,2,4295,500 -891,FR,PE,201812,1,2,103756,38357 -891,FR,PE,201812,1,2,301907,135574 -891,FR,PE,201812,1,2,67167,15795 -891,FR,PE,201812,4,2,42017,1106 -892,FR,PE,201812,3,1,706,7 -892,FR,PE,201812,4,1,107837,1045 -892,FR,PE,201812,4,1,125,3 -892,FR,PE,201812,4,1,36287,500 -892,FR,PE,201812,1,2,47964,2123 -892,FR,PE,201812,1,2,26896,6548 -892,FR,PE,201812,1,2,624,143 -892,FR,PE,201812,1,2,3515,100 -892,FR,PE,201812,3,2,12985,7655 -892,FR,PE,201812,4,2,1591,446 -892,FR,PE,201812,4,2,3328,700 -893,FR,PE,201812,3,1,154,0 -893,FR,PE,201812,0,2,150,0 -893,FR,PE,201812,1,2,227021,14060 -893,FR,PE,201812,1,2,8154,217 -893,FR,PE,201812,1,2,3300,199 -893,FR,PE,201812,1,2,7460,2800 -893,FR,PE,201812,1,2,266021,2147 -893,FR,PE,201812,1,2,92130,176 -893,FR,PE,201812,1,2,178338,18168 -893,FR,PE,201812,1,2,130785,8400 -893,FR,PE,201812,1,2,193768,15017 -893,FR,PE,201812,3,2,20960,2056 -893,FR,PE,201812,3,2,2410,100 -893,FR,PE,201812,4,2,287326,3201 -893,FR,PE,201812,4,2,961619,2937 -893,FR,PE,201812,4,2,137129,2069 -893,FR,PE,201812,4,2,1013,200 -893,FR,PE,201812,4,2,7485,372 -893,FR,PE,201812,4,2,4210,3712 -893,FR,PE,201812,4,2,6742,210 -896,FR,PE,201812,1,2,53130,4940 -896,FR,PE,201812,1,2,18579,631 -896,FR,PE,201812,1,2,375,30 -896,FR,PE,201812,1,2,63805,8356 -896,FR,PE,201812,1,2,6317,240 -896,FR,PE,201812,1,2,8893,1100 -896,FR,PE,201812,1,2,63708,6272 -896,FR,PE,201812,1,2,2195,575 -896,FR,PE,201812,3,2,31090,3039 -896,FR,PE,201812,4,2,68488,819 -896,FR,PE,201812,4,2,17558,200 -896,FR,PE,201812,4,2,5466,16 -896,FR,PE,201812,4,2,10196,196 -896,FR,PE,201812,4,2,4536,31 -896,FR,PE,201812,4,2,4047,90 -896,FR,PE,201812,4,2,5927,64 -910,FR,PE,201812,1,2,297148,30328 -910,FR,PE,201812,1,2,5228,548 -910,FR,PE,201812,1,2,5387,439 -910,FR,PE,201812,1,2,139179,8407 -910,FR,PE,201812,2,2,33239,4440 -910,FR,PE,201812,3,2,78754,11341 -910,FR,PE,201812,3,2,28691,4486 -910,FR,PE,201812,3,2,38694,6164 -910,FR,PE,201812,3,2,20000,2860 -910,FR,PE,201812,4,2,41581,964 -910,FR,PE,201812,4,2,2067,61 -910,FR,PE,201812,4,2,86,160 -910,FR,PE,201812,4,2,1653,24 -910,FR,PE,201812,4,2,4823,3 -910,FR,PE,201812,4,2,16415,10 -910,FR,PE,201812,4,2,3271,680 -910,FR,PE,201812,9,2,769602,0 -920,FR,PE,201812,1,2,9934,780 -920,FR,PE,201812,1,2,2050,254 -920,FR,PE,201812,1,2,744246,16280 -920,FR,PE,201812,4,2,13594,163 -920,FR,PE,201812,4,2,2143,12 -920,FR,PE,201812,4,2,1649,146 -931,FR,PE,201812,3,1,5410,61 -931,FR,PE,201812,1,2,621872,24829 -931,FR,PE,201812,1,2,473,0 -931,FR,PE,201812,1,2,31882,2167 -931,FR,PE,201812,1,2,55515,395 -931,FR,PE,201812,1,2,229844,3555 -931,FR,PE,201812,1,2,41856,2451 -931,FR,PE,201812,1,2,34908,4373 -931,FR,PE,201812,4,2,656715,10125 -931,FR,PE,201812,4,2,35280,370 -931,FR,PE,201812,4,2,7057,7 -931,FR,PE,201812,4,2,5621,40 -931,FR,PE,201812,4,2,132689,208 -931,FR,PE,201812,4,2,78,4 -931,FR,PE,201812,4,2,500,2 -931,FR,PE,201812,4,2,4900,80 -931,FR,PE,201812,4,2,88301,410 -931,FR,PE,201812,4,2,6283,203 -931,FR,PE,201812,4,2,635,45 -931,FR,PE,201812,4,2,32868,562 -931,FR,PE,201812,4,2,9330,20 -931,FR,PE,201812,4,2,146161,8590 -931,FR,PE,201812,4,2,2509,4 -931,FR,PE,201812,4,2,35213,143 -931,FR,PE,201812,5,2,875,23 -939,FR,PE,201812,1,1,186359,7594 -939,FR,PE,201812,3,1,367,0 -939,FR,PE,201812,4,1,164,0 -939,FR,PE,201812,4,1,3989,105 -939,FR,PE,201812,1,2,684187,139421 -939,FR,PE,201812,1,2,96,0 -939,FR,PE,201812,1,2,2200,60 -939,FR,PE,201812,1,2,56093,1030 -939,FR,PE,201812,1,2,17776,338 -939,FR,PE,201812,1,2,64129,2290 -939,FR,PE,201812,1,2,87897,15638 -939,FR,PE,201812,1,2,147330,10407 -939,FR,PE,201812,1,2,13148,5000 -939,FR,PE,201812,1,2,716305,41199 -939,FR,PE,201812,1,2,35104,26125 -939,FR,PE,201812,3,2,5289,36 -939,FR,PE,201812,4,2,645234,4888 -939,FR,PE,201812,4,2,21052,286 -939,FR,PE,201812,4,2,63670,313 -939,FR,PE,201812,4,2,17468,390 -939,FR,PE,201812,4,2,348522,1142 -939,FR,PE,201812,4,2,10501,364 -939,FR,PE,201812,4,2,150,20 -939,FR,PE,201812,4,2,2350,30 -939,FR,PE,201812,4,2,174990,3046 -939,FR,PE,201812,4,2,7810,559 -939,FR,PE,201812,4,2,46054,219 -939,FR,PE,201812,4,2,1972,20 -939,FR,PE,201812,4,2,125322,11250 -939,FR,PE,201812,4,2,5558,8 -939,FR,PE,201812,4,2,16821,225 -941,FR,PE,201812,1,1,359149,134044 -941,FR,PE,201812,1,2,11200,3285 -941,FR,PE,201812,1,2,88369,25585 -941,FR,PE,201812,3,2,2076,160 -949,FR,PE,201812,3,1,71,0 -949,FR,PE,201812,4,1,4463,21 -949,FR,PE,201812,4,1,255,0 -949,FR,PE,201812,1,2,236603,11964 -949,FR,PE,201812,1,2,1041,13 -949,FR,PE,201812,1,2,4050,304 -949,FR,PE,201812,1,2,101,3 -949,FR,PE,201812,1,2,9340,5045 -949,FR,PE,201812,1,2,279810,15373 -949,FR,PE,201812,1,2,66471,3711 -949,FR,PE,201812,3,2,95,11 -949,FR,PE,201812,4,2,120265,1499 -949,FR,PE,201812,4,2,327,12 -949,FR,PE,201812,4,2,1637,72 -949,FR,PE,201812,4,2,389,30 -949,FR,PE,201812,4,2,242705,7273 -949,FR,PE,201812,4,2,4321,19 -951,FR,PE,201812,3,1,153,4 -951,FR,PE,201812,4,1,1008,12 -951,FR,PE,201812,1,2,1574,129 -951,FR,PE,201812,1,2,961,113 -951,FR,PE,201812,4,2,666,32 -952,FR,PE,201812,3,1,2950,7 -952,FR,PE,201812,4,1,1461,103 -952,FR,PE,201812,1,2,147,1 -952,FR,PE,201812,1,2,400,132 -952,FR,PE,201812,1,2,8,0 -952,FR,PE,201812,1,2,65600,43401 -952,FR,PE,201812,1,2,76268,14574 -952,FR,PE,201812,1,2,14464,15368 -952,FR,PE,201812,1,2,116212,29775 -952,FR,PE,201812,3,2,23127,1696 -952,FR,PE,201812,4,2,3414,154 -952,FR,PE,201812,4,2,8408,170 -962,FR,PE,201812,0,1,9236,182 -962,FR,PE,201812,3,1,1343,37 -962,FR,PE,201812,4,1,66087,424 -962,FR,PE,201812,4,1,474,41 -962,FR,PE,201812,4,1,18454,308 -962,FR,PE,201812,4,1,114,9 -962,FR,PE,201812,4,1,8916,130 -962,FR,PE,201812,4,1,144,10 -962,FR,PE,201812,1,2,15457,792 -962,FR,PE,201812,1,2,3788,495 -962,FR,PE,201812,1,2,103,10 -962,FR,PE,201812,1,2,28998,8044 -962,FR,PE,201812,3,2,668,25 -962,FR,PE,201812,4,2,9758,252 -962,FR,PE,201812,4,2,10449,95 -962,FR,PE,201812,4,2,9350,50 -962,FR,PE,201812,4,2,6482,32 -962,FR,PE,201812,4,2,6441,700 -963,FR,PE,201812,0,1,6364,143 -963,FR,PE,201812,1,1,1376207,32041 -963,FR,PE,201812,3,1,38495,376 -963,FR,PE,201812,3,1,218,0 -963,FR,PE,201812,3,1,949,0 -963,FR,PE,201812,4,1,108348,2342 -963,FR,PE,201812,4,1,316503,6411 -963,FR,PE,201812,4,1,43386,1181 -963,FR,PE,201812,4,1,245,6 -963,FR,PE,201812,4,1,2830,128 -963,FR,PE,201812,4,1,9,0 -963,FR,PE,201812,4,1,82353,1315 -963,FR,PE,201812,4,1,5869,306 -963,FR,PE,201812,4,1,30897,241 -963,FR,PE,201812,4,1,11892,900 -963,FR,PE,201812,4,1,14307,300 -963,FR,PE,201812,0,2,304,1 -963,FR,PE,201812,1,2,2112,33 -963,FR,PE,201812,1,2,2231,12 -963,FR,PE,201812,1,2,14,0 -963,FR,PE,201812,3,2,616,7 -963,FR,PE,201812,4,2,1378,20 -963,FR,PE,201812,4,2,623,11 -963,FR,PE,201812,4,2,3316,17 -971,FR,PE,201812,4,1,28,0 -971,FR,PE,201812,4,1,122,5 -971,FR,PE,201812,1,2,9846,607 -971,FR,PE,201812,1,2,535,66 -971,FR,PE,201812,1,2,5450,185 -971,FR,PE,201812,1,2,103035,21442 -971,FR,PE,201812,3,2,615,45 -971,FR,PE,201812,4,2,18866,917 -971,FR,PE,201812,4,2,150,5 -971,FR,PE,201812,4,2,27,1 -971,FR,PE,201812,4,2,5210,372 -973,FR,PE,201812,1,1,1,2 -973,FR,PE,201812,1,1,1,1 -973,FR,PE,201812,1,1,1,1 -973,FR,PE,201812,1,2,43,2 -973,FR,PE,201812,1,2,30,113 -973,FR,PE,201812,1,2,1101,423 -973,FR,PE,201812,1,2,193,39 -973,FR,PE,201812,1,2,35009,10173 -973,FR,PE,201812,4,2,1479,275 -973,FR,PE,201812,4,2,1554,0 -974,FR,PE,201812,1,1,1,1 -974,FR,PE,201812,1,1,1,2 -974,FR,PE,201812,3,1,404,1 -974,FR,PE,201812,4,1,79,6 -974,FR,PE,201812,0,2,165,1 -974,FR,PE,201812,1,2,88,43 -974,FR,PE,201812,1,2,44,195 -974,FR,PE,201812,1,2,2368,90 -974,FR,PE,201812,1,2,150417,7397 -974,FR,PE,201812,1,2,14,3 -974,FR,PE,201812,1,2,27850,1965 -974,FR,PE,201812,3,2,2067,938 -974,FR,PE,201812,4,2,3058,145 -974,FR,PE,201812,4,2,301,10 -975,FR,PE,201812,4,1,8715,40 -975,FR,PE,201812,0,2,112,4 -975,FR,PE,201812,3,2,3100,292 -975,FR,PE,201812,4,2,19,0 -976,FR,PE,201812,3,1,323,7 -976,FR,PE,201812,1,2,1499,498 -976,FR,PE,201812,1,2,950,72 -979,FR,PE,201812,0,1,655,24 -979,FR,PE,201812,3,1,3893,49 -979,FR,PE,201812,4,1,2617,13 -979,FR,PE,201812,4,1,117,2 -979,FR,PE,201812,4,1,167,0 -979,FR,PE,201812,0,2,287,1 -979,FR,PE,201812,1,2,112475,3914 -979,FR,PE,201812,1,2,306,0 -979,FR,PE,201812,1,2,78,2 -979,FR,PE,201812,1,2,1945,19 -979,FR,PE,201812,1,2,3983,259 -979,FR,PE,201812,1,2,59230,1997 -979,FR,PE,201812,1,2,712585,20242 -979,FR,PE,201812,3,2,28455,3947 -979,FR,PE,201812,4,2,176848,707 -979,FR,PE,201812,4,2,93530,848 -979,FR,PE,201812,4,2,14823,30 -979,FR,PE,201812,4,2,80954,368 -979,FR,PE,201812,4,2,14607,140 -979,FR,PE,201812,4,2,37726,315 -979,FR,PE,201812,4,2,6147,125 -979,FR,PE,201812,4,2,88340,499 -979,FR,PE,201812,4,2,53358,288 -979,FR,PE,201812,4,2,11708,188 -979,FR,PE,201812,4,2,232984,3660 -979,FR,PE,201812,4,2,3981,3 -979,FR,PE,201812,4,2,45699,194 -979,FR,PE,201812,5,2,24,1 -994,FR,PE,201812,4,2,5144,10 -999,FR,PE,201812,0,1,2590,0 -999,FR,PE,201812,1,1,72000,60318616 -999,FR,PE,201812,1,1,28670,0 -999,FR,PE,201812,3,1,924,0 -999,FR,PE,201812,4,1,1787,0 -999,FR,PE,201812,1,2,51835,960 -999,FR,PE,201812,1,2,23661,5500 -999,FR,PE,201812,1,2,117782,44000 -999,FR,PE,201812,1,2,127524,60000 -999,FR,PE,201812,1,2,48273,35058 -999,FR,PE,201812,1,2,14123,18225 -999,FR,PE,201812,1,2,227096,89680 -999,FR,PE,201812,1,2,26784,3600 -999,FR,PE,201812,3,2,11923,300 -999,FR,PE,201812,4,2,19221,394 -999,FR,PE,201812,4,2,1841,50 -999,FR,PE,201812,4,2,1878,210 -999,FR,PE,201812,4,2,2178,100 -001,FR,BR,201812,4,2,500,20 -001,FR,BR,201812,4,2,102274,180 -015,FR,BR,201812,3,1,182,9 -015,FR,BR,201812,4,1,52,1 -035,FR,BR,201812,1,1,182741,29030 -035,FR,BR,201812,1,1,92815,36456 -035,FR,BR,201812,1,1,101606,15876 -035,FR,BR,201812,3,1,10103,4860 -035,FR,BR,201812,4,1,736772,258857 -035,FR,BR,201812,4,1,11073,4752 -035,FR,BR,201812,4,1,44647,19450 -035,FR,BR,201812,4,1,7913,3111 -035,FR,BR,201812,4,1,89979,30588 -035,FR,BR,201812,4,1,9499,3596 -035,FR,BR,201812,1,2,81934,84552 -035,FR,BR,201812,1,2,21139,21150 -035,FR,BR,201812,1,2,89865,105840 -035,FR,BR,201812,1,2,18492,21168 -035,FR,BR,201812,1,2,20448,21168 -035,FR,BR,201812,1,2,135538,148176 -039,FR,BR,201812,4,1,7849,1000 -039,FR,BR,201812,1,2,209166,207830 -039,FR,BR,201812,3,2,1294,1100 -045,FR,BR,201812,1,1,750303,10730 -049,FR,BR,201812,0,1,467,9 -049,FR,BR,201812,3,1,169,41 -056,FR,BR,201812,1,1,104394,70866 -056,FR,BR,201812,1,1,893514,675256 -056,FR,BR,201812,1,1,101451,70358 -056,FR,BR,201812,1,1,482417,240492 -056,FR,BR,201812,1,1,966982,474187 -056,FR,BR,201812,1,1,213357,140510 -056,FR,BR,201812,1,1,4342,24335 -056,FR,BR,201812,1,1,292184,373525 -056,FR,BR,201812,1,1,155026,128365 -056,FR,BR,201812,1,1,1297934,706503 -056,FR,BR,201812,1,1,369791,297478 -056,FR,BR,201812,1,1,940532,756049 -056,FR,BR,201812,1,1,192512,200435 -056,FR,BR,201812,1,1,32912,33220 -056,FR,BR,201812,1,1,32843,24000 -056,FR,BR,201812,1,1,90238,47200 -056,FR,BR,201812,1,1,71178,71560 -056,FR,BR,201812,1,1,68619,67613 -056,FR,BR,201812,1,1,687044,654860 -056,FR,BR,201812,1,1,44238,52705 -056,FR,BR,201812,1,1,32205,52896 -056,FR,BR,201812,1,1,15223,22530 -056,FR,BR,201812,1,1,29480,25603 -056,FR,BR,201812,3,1,756,1400 -057,FR,BR,201812,1,1,10234,12005 -092,FR,BR,201812,4,1,39765,6475 -092,FR,BR,201812,1,2,5960,2020 -092,FR,BR,201812,1,2,27246,17000 -092,FR,BR,201812,1,2,115391,100280 -092,FR,BR,201812,1,2,33586,9819 -092,FR,BR,201812,1,2,27246,17000 -099,FR,BR,201812,0,1,5876,24005 -099,FR,BR,201812,1,1,3572,500 -099,FR,BR,201812,1,1,71745,170100 -099,FR,BR,201812,1,1,59953,3800 -099,FR,BR,201812,1,1,33615,72000 -099,FR,BR,201812,1,1,11280,24000 -099,FR,BR,201812,1,1,11280,24000 -099,FR,BR,201812,1,1,27864,5640 -099,FR,BR,201812,1,1,129547,21000 -099,FR,BR,201812,1,1,149827,14800 -099,FR,BR,201812,3,1,75,100 -099,FR,BR,201812,3,1,33296,7300 -099,FR,BR,201812,4,1,188480,6222 -099,FR,BR,201812,4,1,11687,88 -099,FR,BR,201812,4,1,24246,675 -099,FR,BR,201812,4,1,536,25 -099,FR,BR,201812,1,2,23899,3400 -099,FR,BR,201812,1,2,15550,3800 -099,FR,BR,201812,1,2,35980,20000 -099,FR,BR,201812,1,2,19555,10000 -099,FR,BR,201812,1,2,1045286,237819 -099,FR,BR,201812,1,2,112074,36200 -099,FR,BR,201812,4,2,647961,2934 -099,FR,BR,201812,4,2,9649,7 -099,FR,BR,201812,4,2,225,3 -111,FR,BR,201812,1,1,20643,18004 -111,FR,BR,201812,1,1,17320,20000 -111,FR,BR,201812,1,1,768299,950000 -111,FR,BR,201812,4,2,55,10 -112,FR,BR,201812,1,1,35024,40000 -112,FR,BR,201812,1,1,1160324,1440000 -121,FR,BR,201812,1,1,2316,495 -121,FR,BR,201812,4,1,499,72 -121,FR,BR,201812,1,2,157012,22699 -121,FR,BR,201812,1,2,62088,7384 -121,FR,BR,201812,1,2,99442,3190 -121,FR,BR,201812,1,2,22183,7200 -121,FR,BR,201812,1,2,208866,43224 -121,FR,BR,201812,1,2,7115,3294 -121,FR,BR,201812,1,2,308738,92626 -121,FR,BR,201812,1,2,47578,14176 -121,FR,BR,201812,1,2,45899,5391 -121,FR,BR,201812,1,2,92006,32445 -121,FR,BR,201812,1,2,1054311,191149 -121,FR,BR,201812,1,2,14379,4275 -121,FR,BR,201812,1,2,36003,6750 -121,FR,BR,201812,4,2,7845,1627 -121,FR,BR,201812,4,2,17835,24 -121,FR,BR,201812,4,2,194,9 -122,FR,BR,201812,1,1,23818,25370 -122,FR,BR,201812,3,1,1487,1726 -122,FR,BR,201812,4,2,219,379 -125,FR,BR,201812,1,1,5802,588 -125,FR,BR,201812,1,1,24227,15648 -125,FR,BR,201812,1,1,23864,17118 -125,FR,BR,201812,4,1,96,0 -125,FR,BR,201812,1,2,4898,160 -125,FR,BR,201812,1,2,2005,11 -125,FR,BR,201812,1,2,3636,1350 -125,FR,BR,201812,1,2,8700,2100 -125,FR,BR,201812,1,2,26332,11916 -125,FR,BR,201812,4,2,95,5 -128,FR,BR,201812,1,1,17357,22175 -128,FR,BR,201812,3,1,386,529 -128,FR,BR,201812,3,1,173,220 -128,FR,BR,201812,1,2,6944,12165 -128,FR,BR,201812,1,2,16156,4681 -128,FR,BR,201812,4,2,214,396 -131,FR,BR,201812,0,1,7535725,3712130 -131,FR,BR,201812,1,1,64882,38194 -131,FR,BR,201812,1,1,27921,16761 -131,FR,BR,201812,1,1,379490,193372 -131,FR,BR,201812,1,1,54373,23764 -131,FR,BR,201812,1,1,118149,57502 -131,FR,BR,201812,1,1,156816,76700 -131,FR,BR,201812,1,1,1206752,525000 -131,FR,BR,201812,1,1,38158,19175 -131,FR,BR,201812,1,1,381709,234725 -131,FR,BR,201812,3,1,140014,58620 -131,FR,BR,201812,3,1,28553,21859 -131,FR,BR,201812,3,1,92625,40172 -131,FR,BR,201812,3,1,23931,883 -131,FR,BR,201812,1,2,64951,4437 -131,FR,BR,201812,4,2,310,12 -132,FR,BR,201812,4,1,99,11 -132,FR,BR,201812,0,2,270,10 -132,FR,BR,201812,1,2,159500,46212 -133,FR,BR,201812,1,1,1155099,525000 -133,FR,BR,201812,1,1,58140,29000 -133,FR,BR,201812,3,1,318,525 -133,FR,BR,201812,0,2,26,1 -133,FR,BR,201812,1,2,1486,41 -133,FR,BR,201812,4,2,90,16 -134,FR,BR,201812,0,1,1545759,631610 -136,FR,BR,201812,3,1,949,1566 -136,FR,BR,201812,4,2,10,0 -136,FR,BR,201812,4,2,54000,20000 -139,FR,BR,201812,1,1,16,2 -139,FR,BR,201812,1,1,43938,8045 -139,FR,BR,201812,1,1,60396,43200 -139,FR,BR,201812,1,1,101694,113200 -139,FR,BR,201812,1,1,17230,20000 -139,FR,BR,201812,1,1,31221,25000 -139,FR,BR,201812,1,1,27824,25200 -139,FR,BR,201812,3,1,537,163 -139,FR,BR,201812,4,1,338,5 -139,FR,BR,201812,4,1,6664,20 -139,FR,BR,201812,1,2,48650,18126 -139,FR,BR,201812,1,2,21663,16127 -139,FR,BR,201812,1,2,10407,3128 -139,FR,BR,201812,1,2,38995,7154 -139,FR,BR,201812,1,2,204486,82655 -139,FR,BR,201812,4,2,426,40 -139,FR,BR,201812,4,2,1537,100 -139,FR,BR,201812,4,2,8174,30 -141,FR,BR,201812,1,1,56213,11945 -141,FR,BR,201812,1,1,652757,185953 -141,FR,BR,201812,1,1,59187,111307 -141,FR,BR,201812,1,1,24000,48000 -142,FR,BR,201812,4,1,3803,15 -143,FR,BR,201812,4,2,10,3 -144,FR,BR,201812,1,2,242218,38740 -144,FR,BR,201812,1,2,266332,44971 -144,FR,BR,201812,1,2,32250,6017 -144,FR,BR,201812,1,2,31870,3780 -144,FR,BR,201812,4,2,22,2 -144,FR,BR,201812,4,2,6532,911 -145,FR,BR,201812,3,1,63,182 -146,FR,BR,201812,4,2,105301,1235 -147,FR,BR,201812,0,1,168,1 -147,FR,BR,201812,1,1,95931,17198 -161,FR,BR,201812,3,1,6,31 -161,FR,BR,201812,1,2,566,1300 -161,FR,BR,201812,1,2,13080,18750 -161,FR,BR,201812,1,2,43760,72000 -161,FR,BR,201812,1,2,5200,8000 -162,FR,BR,201812,1,2,1586207,5000022 -163,FR,BR,201812,1,1,12263,25000 -163,FR,BR,201812,3,1,1878,3662 -163,FR,BR,201812,0,2,45,2 -163,FR,BR,201812,1,2,25986,500 -163,FR,BR,201812,1,2,202514,56410 -163,FR,BR,201812,1,2,14751,3428 -163,FR,BR,201812,1,2,18970,11390 -163,FR,BR,201812,1,2,56448,4032 -163,FR,BR,201812,1,2,218209,61048 -163,FR,BR,201812,3,2,96,12 -163,FR,BR,201812,4,2,7498,452 -164,FR,BR,201812,1,1,24860,11890 -164,FR,BR,201812,1,1,29909,24120 -164,FR,BR,201812,1,1,16245,24180 -164,FR,BR,201812,1,1,531796,37487 -164,FR,BR,201812,1,1,36700,18900 -164,FR,BR,201812,1,1,16965,12251 -164,FR,BR,201812,1,1,19054,16800 -164,FR,BR,201812,1,1,1642,480 -164,FR,BR,201812,1,1,1045091,559540 -164,FR,BR,201812,1,1,45521,20160 -164,FR,BR,201812,1,1,353266,35000 -164,FR,BR,201812,3,1,6571,9795 -164,FR,BR,201812,3,1,1015,1650 -164,FR,BR,201812,4,1,249571,32275 -164,FR,BR,201812,4,1,42925,6762 -164,FR,BR,201812,4,1,21576,1000 -164,FR,BR,201812,4,1,60162,9057 -164,FR,BR,201812,4,1,20941,2280 -164,FR,BR,201812,1,2,766,532 -164,FR,BR,201812,4,2,14788,2735 -165,FR,BR,201812,3,1,2826,7350 -166,FR,BR,201812,1,1,204,980 -166,FR,BR,201812,1,1,10306,2722 -166,FR,BR,201812,1,1,32628,940 -166,FR,BR,201812,3,1,3736,11428 -166,FR,BR,201812,4,1,693,2000 -166,FR,BR,201812,4,1,181,10 -166,FR,BR,201812,1,2,25800,7000 -166,FR,BR,201812,1,2,15070,13169 -166,FR,BR,201812,3,2,68,8 -166,FR,BR,201812,4,2,222,50 -167,FR,BR,201812,1,2,36500,3338 -167,FR,BR,201812,4,2,7815,650 -172,FR,BR,201812,1,1,18918325,50251080 -172,FR,BR,201812,1,1,7199407,22511628 -172,FR,BR,201812,1,1,6378823,20000000 -172,FR,BR,201812,1,1,17382232,56370000 -172,FR,BR,201812,1,1,264520,409000 -179,FR,BR,201812,1,1,142257,184650 -179,FR,BR,201812,3,1,1008,1536 -179,FR,BR,201812,1,2,80343,54200 -179,FR,BR,201812,1,2,92120,49000 -179,FR,BR,201812,1,2,465133,47500 -179,FR,BR,201812,1,2,252533,4000 -179,FR,BR,201812,1,2,257423,30000 -179,FR,BR,201812,4,2,5,5 -179,FR,BR,201812,4,2,17717,358 -179,FR,BR,201812,4,2,1667,88 -181,FR,BR,201812,1,1,116108,100000 -181,FR,BR,201812,1,1,33813,4140 -181,FR,BR,201812,1,1,15801,3400 -181,FR,BR,201812,3,1,369,320 -182,FR,BR,201812,1,1,17640,21000 -182,FR,BR,201812,1,1,127435,17000 -182,FR,BR,201812,4,1,7770,190 -182,FR,BR,201812,1,2,8967,1917 -182,FR,BR,201812,1,2,215130,7890 -182,FR,BR,201812,1,2,3710,3000 -182,FR,BR,201812,4,2,13111,180 -182,FR,BR,201812,4,2,8800,800 -321,FR,BR,201812,1,1,1608488,2089590 -321,FR,BR,201812,4,2,980,150 -323,FR,BR,201812,1,2,15869,7140 -323,FR,BR,201812,1,2,38160,38400 -323,FR,BR,201812,1,2,22118,20347 -325,FR,BR,201812,4,1,4489,400 -325,FR,BR,201812,1,2,19548,18960 -325,FR,BR,201812,1,2,85931,85291 -330,FR,BR,201812,1,2,641,19 -341,FR,BR,201812,4,1,2783,497 -341,FR,BR,201812,1,2,14265,3070 -341,FR,BR,201812,1,2,5039,1200 -341,FR,BR,201812,1,2,7811,1761 -341,FR,BR,201812,1,2,81532,3700 -341,FR,BR,201812,1,2,133424,56141 -341,FR,BR,201812,1,2,244505,165088 -341,FR,BR,201812,1,2,204201,140165 -341,FR,BR,201812,1,2,9191,4000 -341,FR,BR,201812,1,2,186917,111807 -341,FR,BR,201812,1,2,87731,50820 -341,FR,BR,201812,1,2,29344,13125 -341,FR,BR,201812,1,2,191489,120414 -341,FR,BR,201812,1,2,429657,234145 -341,FR,BR,201812,3,2,22617,8850 -341,FR,BR,201812,3,2,319,93 -341,FR,BR,201812,4,2,4768,126 -341,FR,BR,201812,4,2,1590,30 -349,FR,BR,201812,4,1,2095,100 -349,FR,BR,201812,1,2,11990,2400 -410,FR,BR,201812,1,1,11395013,172998000 -410,FR,BR,201812,1,1,8285152,122807000 -410,FR,BR,201812,1,1,22790235,290265000 -451,FR,BR,201812,1,1,12052,56160 -451,FR,BR,201812,3,2,1025,1800 -459,FR,BR,201812,1,1,387026,1414986 -465,FR,BR,201812,4,1,766,0 -513,FR,BR,201812,1,1,288854,107940 -513,FR,BR,201812,1,1,368784,143600 -513,FR,BR,201812,1,2,41796,21600 -515,FR,BR,201812,0,1,1826372,4165957 -522,FR,BR,201812,1,2,50030,50850 -522,FR,BR,201812,1,2,132476,56600 -532,FR,BR,201812,1,2,605,1 -532,FR,BR,201812,1,2,42137,22213 -532,FR,BR,201812,4,2,1831,70 -533,FR,BR,201812,3,1,248,100 -533,FR,BR,201812,1,2,79099,15449 -533,FR,BR,201812,1,2,55682,4123 -533,FR,BR,201812,4,2,545,100 -536,FR,BR,201812,4,1,619,40 -536,FR,BR,201812,1,2,44687,12288 -536,FR,BR,201812,1,2,43887,34110 -536,FR,BR,201812,1,2,11460,1221 -536,FR,BR,201812,3,2,506285,159141 -536,FR,BR,201812,3,2,38630,41952 -542,FR,BR,201812,1,2,286266,395727 -542,FR,BR,201812,1,2,4330,174 -542,FR,BR,201812,1,2,17855,521 -542,FR,BR,201812,1,2,24391,636 -542,FR,BR,201812,1,2,54780,10951 -542,FR,BR,201812,3,2,74310,46790 -542,FR,BR,201812,4,2,652,80 -543,FR,BR,201812,1,2,3305,367 -543,FR,BR,201812,1,2,77486,14567 -543,FR,BR,201812,3,2,10260,2089 -543,FR,BR,201812,4,2,15027,4054 -543,FR,BR,201812,4,2,2640,66 -551,FR,BR,201812,1,1,55610,22783 -551,FR,BR,201812,1,1,60994,27221 -551,FR,BR,201812,1,1,108089,38860 -551,FR,BR,201812,1,1,262,15 -551,FR,BR,201812,1,1,165911,68411 -551,FR,BR,201812,1,1,21,1 -551,FR,BR,201812,3,1,228,2 -551,FR,BR,201812,4,1,3000,227 -551,FR,BR,201812,4,1,929,68 -551,FR,BR,201812,4,1,5323,2 -551,FR,BR,201812,1,2,40830,4772 -551,FR,BR,201812,1,2,1165,372 -551,FR,BR,201812,1,2,31246,4233 -551,FR,BR,201812,1,2,17375,5161 -551,FR,BR,201812,1,2,131677,71129 -551,FR,BR,201812,1,2,13400,2182 -551,FR,BR,201812,1,2,2219,124 -551,FR,BR,201812,3,2,3067,298 -551,FR,BR,201812,3,2,135105,2491 -551,FR,BR,201812,4,2,81367,479 -551,FR,BR,201812,4,2,6092,10 -551,FR,BR,201812,4,2,6509,63 -551,FR,BR,201812,4,2,1611,0 -551,FR,BR,201812,4,2,3879,171 -552,FR,BR,201812,0,1,110615,40733 -552,FR,BR,201812,4,1,10,0 -552,FR,BR,201812,1,2,81990,135065 -552,FR,BR,201812,1,2,21189,4323 -552,FR,BR,201812,1,2,3475,212 -552,FR,BR,201812,1,2,23735,3771 -552,FR,BR,201812,3,2,32590,7269 -552,FR,BR,201812,3,2,555,78 -552,FR,BR,201812,4,2,2695,12 -552,FR,BR,201812,4,2,1382,0 -552,FR,BR,201812,4,2,12502,356 -552,FR,BR,201812,4,2,206,1 -552,FR,BR,201812,4,2,11214,90 -563,FR,BR,201812,1,2,361421,205180 -565,FR,BR,201812,0,1,12,0 -565,FR,BR,201812,3,1,2866,3 -565,FR,BR,201812,4,1,649,0 -565,FR,BR,201812,4,1,1610,2 -565,FR,BR,201812,1,2,36662,914 -565,FR,BR,201812,1,2,162209,32542 -565,FR,BR,201812,4,2,88329,1426 -565,FR,BR,201812,4,2,4457,40 -565,FR,BR,201812,4,2,74383,1143 -565,FR,BR,201812,4,2,23809,349 -568,FR,BR,201812,1,1,24,1 -568,FR,BR,201812,1,1,1809,8 -568,FR,BR,201812,3,1,311,20 -568,FR,BR,201812,4,1,1125,48 -568,FR,BR,201812,4,1,5009,1088 -568,FR,BR,201812,4,1,522,0 -568,FR,BR,201812,4,1,3669,3 -568,FR,BR,201812,1,2,176802,21355 -568,FR,BR,201812,1,2,15000,2683 -568,FR,BR,201812,1,2,17750,1391 -568,FR,BR,201812,1,2,240543,38811 -568,FR,BR,201812,1,2,873,115 -568,FR,BR,201812,1,2,2271,694 -568,FR,BR,201812,3,2,291133,30243 -568,FR,BR,201812,3,2,17110,540 -568,FR,BR,201812,4,2,65775,3466 -568,FR,BR,201812,4,2,336,15 -568,FR,BR,201812,4,2,3371,89 -614,FR,BR,201812,1,2,13804,48000 -614,FR,BR,201812,1,2,24690,42000 -614,FR,BR,201812,4,2,1261,150 -621,FR,BR,201812,3,1,47,130 -621,FR,BR,201812,4,2,30,2 -631,FR,BR,201812,3,2,10275,71500 -632,FR,BR,201812,1,1,24717,92607 -632,FR,BR,201812,1,2,1235,14700 -634,FR,BR,201812,1,2,1644,4000 -634,FR,BR,201812,3,2,1551,21000 -639,FR,BR,201812,1,1,29808,44000 -639,FR,BR,201812,1,1,26973,138000 -639,FR,BR,201812,1,1,36065,66000 -639,FR,BR,201812,4,1,13808,1725 -639,FR,BR,201812,1,2,22708,8020 -639,FR,BR,201812,4,2,850,398 -641,FR,BR,201812,1,2,40891,72000 -691,FR,BR,201812,1,1,11487,26160 -691,FR,BR,201812,1,1,190,348 -691,FR,BR,201812,1,1,9253,25040 -691,FR,BR,201812,1,1,46245,163882 -691,FR,BR,201812,1,1,11940,48750 -691,FR,BR,201812,1,1,8785,25800 -691,FR,BR,201812,1,1,34169,105672 -691,FR,BR,201812,3,1,139,6 -691,FR,BR,201812,4,1,2796,1 -691,FR,BR,201812,1,2,3747,450 -691,FR,BR,201812,1,2,8711,688 -691,FR,BR,201812,1,2,56,6 -691,FR,BR,201812,1,2,40161,68271 -691,FR,BR,201812,4,2,147487,167 -692,FR,BR,201812,1,1,98889,453579 -692,FR,BR,201812,1,1,127829,446539 -692,FR,BR,201812,4,1,802,100 -692,FR,BR,201812,4,1,162,17 -692,FR,BR,201812,1,2,572155,254720 -692,FR,BR,201812,1,2,470,63 -692,FR,BR,201812,1,2,850,450 -692,FR,BR,201812,1,2,9284,782 -692,FR,BR,201812,3,2,120382,44475 -719,FR,BR,201812,1,2,339600,46000 -724,FR,BR,201812,4,1,1126,93 -724,FR,BR,201812,1,2,42078,72960 -729,FR,BR,201812,4,1,655,46 -729,FR,BR,201812,1,2,46990,1850 -729,FR,BR,201812,1,2,320065,48000 -813,FR,BR,201812,3,1,20,33 -819,FR,BR,201812,0,1,32196,27000 -819,FR,BR,201812,1,1,89129,18410 -819,FR,BR,201812,1,1,450,200 -819,FR,BR,201812,1,1,98109,20310 -819,FR,BR,201812,1,1,261232,198580 -819,FR,BR,201812,3,1,9,9 -819,FR,BR,201812,3,1,64,10 -819,FR,BR,201812,4,1,239,0 -819,FR,BR,201812,4,1,185,0 -819,FR,BR,201812,1,2,2156064,74370 -819,FR,BR,201812,1,2,709,200 -819,FR,BR,201812,1,2,43,1 -819,FR,BR,201812,1,2,139096,11580 -819,FR,BR,201812,1,2,7018,1145 -819,FR,BR,201812,1,2,8937691,960918 -819,FR,BR,201812,1,2,55068,31320 -819,FR,BR,201812,1,2,252484,83075 -819,FR,BR,201812,1,2,25537,240000 -819,FR,BR,201812,1,2,29111,25000 -819,FR,BR,201812,1,2,7494,64800 -819,FR,BR,201812,1,2,5040,96000 -819,FR,BR,201812,1,2,533774,1234948 -819,FR,BR,201812,1,2,19941,12000 -819,FR,BR,201812,1,2,16132,10900 -819,FR,BR,201812,1,2,13553,20000 -819,FR,BR,201812,3,2,130424,2340 -819,FR,BR,201812,3,2,27110,19000 -819,FR,BR,201812,4,2,3204242,44255 -819,FR,BR,201812,4,2,1354,3 -819,FR,BR,201812,4,2,572,5 -819,FR,BR,201812,4,2,1,4 -819,FR,BR,201812,4,2,10406,277 -819,FR,BR,201812,4,2,3546,1000 -819,FR,BR,201812,4,2,4888,24 -819,FR,BR,201812,4,2,2374,33 -819,FR,BR,201812,4,2,16198,50 -819,FR,BR,201812,4,2,312170,1473 -819,FR,BR,201812,4,2,13343,430 -820,FR,BR,201812,1,2,9980,1310 -820,FR,BR,201812,1,2,17346,10000 -820,FR,BR,201812,1,2,32920,40000 -841,FR,BR,201812,0,1,2704502,4202035 -841,FR,BR,201812,1,1,17478,23502 -841,FR,BR,201812,1,1,2491319,3700000 -841,FR,BR,201812,1,1,156684,230065 -841,FR,BR,201812,1,1,32664,47760 -841,FR,BR,201812,1,1,17787,23615 -841,FR,BR,201812,1,1,17787,23615 -841,FR,BR,201812,1,1,684373,1000000 -841,FR,BR,201812,1,1,301377,506772 -841,FR,BR,201812,1,1,3809080,5896000 -841,FR,BR,201812,1,1,8741418,13742000 -841,FR,BR,201812,1,1,2964973,3071101 -841,FR,BR,201812,2,1,120835,153780 -841,FR,BR,201812,3,1,104971,141492 -891,FR,BR,201812,0,1,140,0 -891,FR,BR,201812,1,1,841,21 -891,FR,BR,201812,1,1,93909,39760 -891,FR,BR,201812,1,1,215,37 -891,FR,BR,201812,1,1,7679,3056 -891,FR,BR,201812,1,1,11,9 -891,FR,BR,201812,1,1,55252,20386 -891,FR,BR,201812,1,1,810064,368502 -891,FR,BR,201812,1,1,20,0 -891,FR,BR,201812,1,1,28176,19978 -891,FR,BR,201812,4,1,616,0 -891,FR,BR,201812,4,1,287,2 -891,FR,BR,201812,4,1,34509,45 -891,FR,BR,201812,4,1,75,0 -891,FR,BR,201812,1,2,373030,83526 -891,FR,BR,201812,1,2,2402,1077 -891,FR,BR,201812,1,2,37951,2972 -891,FR,BR,201812,1,2,36015,13700 -891,FR,BR,201812,1,2,8994,1655 -891,FR,BR,201812,1,2,101190,17869 -891,FR,BR,201812,1,2,6264,1580 -891,FR,BR,201812,1,2,10996,2000 -891,FR,BR,201812,1,2,2866478,882495 -891,FR,BR,201812,1,2,266475,18700 -891,FR,BR,201812,1,2,47668,30710 -891,FR,BR,201812,1,2,489755,60872 -891,FR,BR,201812,1,2,104422,32402 -891,FR,BR,201812,1,2,133377,67671 -891,FR,BR,201812,1,2,82633,28800 -891,FR,BR,201812,1,2,106865,34200 -891,FR,BR,201812,1,2,6905,333 -891,FR,BR,201812,1,2,162915,62522 -891,FR,BR,201812,1,2,25485,13690 -891,FR,BR,201812,1,2,1091533,340453 -891,FR,BR,201812,1,2,65086,16664 -891,FR,BR,201812,1,2,44481,22114 -891,FR,BR,201812,1,2,58956,20400 -891,FR,BR,201812,3,2,212056,19800 -891,FR,BR,201812,3,2,45647,16181 -891,FR,BR,201812,3,2,5349,363 -891,FR,BR,201812,3,2,212056,19800 -891,FR,BR,201812,3,2,318087,29700 -891,FR,BR,201812,3,2,27982,20625 -891,FR,BR,201812,4,2,122593,14910 -891,FR,BR,201812,4,2,724,31 -891,FR,BR,201812,4,2,4790,136 -891,FR,BR,201812,4,2,301,1 -891,FR,BR,201812,4,2,3408,184 -891,FR,BR,201812,4,2,4600,20 -892,FR,BR,201812,1,1,18984,2880 -892,FR,BR,201812,1,1,1264,1019 -892,FR,BR,201812,4,1,620,38 -892,FR,BR,201812,4,1,3541,206 -892,FR,BR,201812,1,2,75576,3306 -892,FR,BR,201812,1,2,35157,12298 -892,FR,BR,201812,1,2,3380,140 -892,FR,BR,201812,1,2,5653,240 -892,FR,BR,201812,1,2,30282,3400 -892,FR,BR,201812,1,2,503604,148118 -892,FR,BR,201812,1,2,35744,23675 -892,FR,BR,201812,1,2,414,250 -892,FR,BR,201812,1,2,161631,74023 -892,FR,BR,201812,1,2,21182,21600 -892,FR,BR,201812,1,2,30795,23200 -892,FR,BR,201812,3,2,801,47 -892,FR,BR,201812,4,2,246385,3645 -892,FR,BR,201812,4,2,45653,70 -892,FR,BR,201812,4,2,316,2 -892,FR,BR,201812,4,2,4174,8 -892,FR,BR,201812,4,2,1215,12 -892,FR,BR,201812,4,2,3757,179 -893,FR,BR,201812,0,1,2202,112 -893,FR,BR,201812,1,1,62838,1522 -893,FR,BR,201812,1,1,63996,860 -893,FR,BR,201812,1,1,314953,13531 -893,FR,BR,201812,1,1,42084,670 -893,FR,BR,201812,1,1,47,18 -893,FR,BR,201812,1,1,100715,13840 -893,FR,BR,201812,1,1,655760,18511 -893,FR,BR,201812,1,1,53182,22530 -893,FR,BR,201812,1,1,62586,8996 -893,FR,BR,201812,1,1,570633,69200 -893,FR,BR,201812,1,1,201571,27680 -893,FR,BR,201812,3,1,52839,4669 -893,FR,BR,201812,3,1,2200749,10374 -893,FR,BR,201812,3,1,175,25 -893,FR,BR,201812,4,1,2245830,15110 -893,FR,BR,201812,4,1,17744,592 -893,FR,BR,201812,4,1,2449,54 -893,FR,BR,201812,4,1,19801,1081 -893,FR,BR,201812,4,1,76270,3004 -893,FR,BR,201812,0,2,129,1 -893,FR,BR,201812,1,2,2993677,101632 -893,FR,BR,201812,1,2,144485,390 -893,FR,BR,201812,1,2,1583497,36886 -893,FR,BR,201812,1,2,55445,33 -893,FR,BR,201812,1,2,92016,2435 -893,FR,BR,201812,1,2,2892163,165342 -893,FR,BR,201812,1,2,426087,21120 -893,FR,BR,201812,1,2,175395,49484 -893,FR,BR,201812,1,2,52138,20000 -893,FR,BR,201812,1,2,76,7 -893,FR,BR,201812,1,2,38382,636 -893,FR,BR,201812,1,2,3698013,94841 -893,FR,BR,201812,1,2,1326626,2540 -893,FR,BR,201812,3,2,61141,1111 -893,FR,BR,201812,3,2,23200,18000 -893,FR,BR,201812,4,2,6558688,28867 -893,FR,BR,201812,4,2,423020,472 -893,FR,BR,201812,4,2,29200,30 -893,FR,BR,201812,4,2,295526,1019 -893,FR,BR,201812,4,2,235553,2932 -893,FR,BR,201812,4,2,225971,1050 -893,FR,BR,201812,4,2,73104,11 -893,FR,BR,201812,4,2,33765,1610 -893,FR,BR,201812,4,2,103517,533 -893,FR,BR,201812,4,2,34970,351 -893,FR,BR,201812,4,2,24680,152 -893,FR,BR,201812,4,2,14247,704 -893,FR,BR,201812,4,2,88358,1051 -893,FR,BR,201812,4,2,2535,340 -893,FR,BR,201812,4,2,64587,164 -894,FR,BR,201812,1,1,37268,652 -894,FR,BR,201812,1,2,36577,4354 -894,FR,BR,201812,4,2,475872,4187 -895,FR,BR,201812,1,2,76419,52250 -896,FR,BR,201812,1,1,92,9 -896,FR,BR,201812,1,1,243775,21000 -896,FR,BR,201812,1,1,237105,98380 -896,FR,BR,201812,1,1,35080,19990 -896,FR,BR,201812,3,1,1026,37 -896,FR,BR,201812,4,1,1273,45 -896,FR,BR,201812,4,1,599,29 -896,FR,BR,201812,4,1,21267,225 -896,FR,BR,201812,4,1,295,2 -896,FR,BR,201812,1,2,1183337,34542 -896,FR,BR,201812,1,2,16064,4076 -896,FR,BR,201812,1,2,937,370 -896,FR,BR,201812,1,2,9550,2749 -896,FR,BR,201812,1,2,245537,35589 -896,FR,BR,201812,1,2,160655,83372 -896,FR,BR,201812,1,2,9034,1350 -896,FR,BR,201812,1,2,5874734,614230 -896,FR,BR,201812,1,2,67224,2378 -896,FR,BR,201812,1,2,182987,90200 -896,FR,BR,201812,1,2,47974,18760 -896,FR,BR,201812,1,2,108979,54625 -896,FR,BR,201812,1,2,3937,600 -896,FR,BR,201812,1,2,158983,44400 -896,FR,BR,201812,1,2,53828,34200 -896,FR,BR,201812,1,2,429192,191560 -896,FR,BR,201812,1,2,331329,110139 -896,FR,BR,201812,1,2,10270,42000 -896,FR,BR,201812,1,2,144660,88180 -896,FR,BR,201812,1,2,52080,24000 -896,FR,BR,201812,1,2,247589,70210 -896,FR,BR,201812,1,2,67226,9600 -896,FR,BR,201812,3,2,86032,66056 -896,FR,BR,201812,3,2,211269,105478 -896,FR,BR,201812,3,2,3205,400 -896,FR,BR,201812,3,2,14175,140000 -896,FR,BR,201812,4,2,770950,24760 -896,FR,BR,201812,4,2,245683,1359 -896,FR,BR,201812,4,2,544766,6253 -896,FR,BR,201812,4,2,9517,1060 -896,FR,BR,201812,4,2,11397,4400 -896,FR,BR,201812,4,2,693,21 -896,FR,BR,201812,4,2,3012,50 -896,FR,BR,201812,4,2,25973,191 -896,FR,BR,201812,4,2,110454,1094 -896,FR,BR,201812,4,2,64,1 -896,FR,BR,201812,4,2,3404,41 -896,FR,BR,201812,4,2,4840,2000 -896,FR,BR,201812,4,2,2169,150 -896,FR,BR,201812,4,2,10234,730 -896,FR,BR,201812,4,2,1010,3 -910,FR,BR,201812,0,1,708700,229161 -910,FR,BR,201812,1,1,85088,6438 -910,FR,BR,201812,1,1,5530,113 -910,FR,BR,201812,1,1,18468,6365 -910,FR,BR,201812,1,1,33,2 -910,FR,BR,201812,1,1,23970,21752 -910,FR,BR,201812,1,1,161928,12731 -910,FR,BR,201812,1,1,44698,2883 -910,FR,BR,201812,1,1,26916,1750 -910,FR,BR,201812,1,1,574816,58754 -910,FR,BR,201812,1,1,2288,55 -910,FR,BR,201812,1,1,206,12 -910,FR,BR,201812,1,1,9968,1090 -910,FR,BR,201812,3,1,24038,1642 -910,FR,BR,201812,3,1,479,1 -910,FR,BR,201812,4,1,166806,4228 -910,FR,BR,201812,4,1,19651,976 -910,FR,BR,201812,4,1,22,1 -910,FR,BR,201812,4,1,88,365 -910,FR,BR,201812,4,1,113604,1074 -910,FR,BR,201812,4,1,15253220,11319 -910,FR,BR,201812,4,1,1144,2 -910,FR,BR,201812,4,1,2604,4 -910,FR,BR,201812,9,1,32582172,39341 -910,FR,BR,201812,1,2,546852,43243 -910,FR,BR,201812,1,2,111404,16775 -910,FR,BR,201812,1,2,37026,5670 -910,FR,BR,201812,1,2,3472,2076 -910,FR,BR,201812,1,2,110625,5967 -910,FR,BR,201812,1,2,6816,144 -910,FR,BR,201812,1,2,165781,32038 -910,FR,BR,201812,1,2,61934,12713 -910,FR,BR,201812,1,2,426110,22984 -910,FR,BR,201812,1,2,12660832,2197811 -910,FR,BR,201812,1,2,239035,55924 -910,FR,BR,201812,1,2,56522,7294 -910,FR,BR,201812,1,2,18523,1496 -910,FR,BR,201812,1,2,84640,5900 -910,FR,BR,201812,1,2,635573,137202 -910,FR,BR,201812,1,2,24715,2380 -910,FR,BR,201812,1,2,3349847,399333 -910,FR,BR,201812,1,2,74541,9797 -910,FR,BR,201812,1,2,48435,22378 -910,FR,BR,201812,1,2,12976,761 -910,FR,BR,201812,1,2,77090,2934 -910,FR,BR,201812,3,2,571252,48886 -910,FR,BR,201812,3,2,608393,105858 -910,FR,BR,201812,3,2,331,48 -910,FR,BR,201812,3,2,1462,270 -910,FR,BR,201812,3,2,291985,3133 -910,FR,BR,201812,4,2,6018995,40763 -910,FR,BR,201812,4,2,69801,502 -910,FR,BR,201812,4,2,277036,937 -910,FR,BR,201812,4,2,417,180 -910,FR,BR,201812,4,2,1383,145 -910,FR,BR,201812,4,2,473,14 -910,FR,BR,201812,4,2,6704,622 -910,FR,BR,201812,4,2,37407,95 -910,FR,BR,201812,4,2,219,15 -910,FR,BR,201812,4,2,593770,6532 -910,FR,BR,201812,4,2,150219,222 -910,FR,BR,201812,4,2,10,1 -910,FR,BR,201812,4,2,18876,1430 -910,FR,BR,201812,4,2,4826,174 -910,FR,BR,201812,9,2,245464997,286350 -920,FR,BR,201812,1,1,18886,1218 -920,FR,BR,201812,1,1,1404,47 -920,FR,BR,201812,1,1,4211,273 -920,FR,BR,201812,1,1,744,44 -920,FR,BR,201812,3,1,5223,363 -920,FR,BR,201812,4,1,16539,1105 -920,FR,BR,201812,4,1,4275,59 -920,FR,BR,201812,4,1,1377,20 -920,FR,BR,201812,1,2,236343,21811 -920,FR,BR,201812,1,2,54803,7119 -920,FR,BR,201812,1,2,423286,62617 -920,FR,BR,201812,1,2,680,107 -920,FR,BR,201812,1,2,13734,781 -920,FR,BR,201812,4,2,15316,466 -920,FR,BR,201812,4,2,94,6 -920,FR,BR,201812,4,2,16044,1012 -920,FR,BR,201812,4,2,26485,1437 -920,FR,BR,201812,4,2,27563,1119 -920,FR,BR,201812,4,2,2065,56 -920,FR,BR,201812,4,2,2655,160 -931,FR,BR,201812,0,1,4791,3240 -931,FR,BR,201812,1,1,515525,2400 -931,FR,BR,201812,1,1,5460,330 -931,FR,BR,201812,1,1,31642,285 -931,FR,BR,201812,1,1,4216,209 -931,FR,BR,201812,1,1,415,27 -931,FR,BR,201812,1,1,183,16 -931,FR,BR,201812,1,1,1823,30 -931,FR,BR,201812,1,1,38044,2477 -931,FR,BR,201812,1,1,36565,1254 -931,FR,BR,201812,1,1,1789889,290657 -931,FR,BR,201812,1,1,27435,5413 -931,FR,BR,201812,1,1,9,0 -931,FR,BR,201812,3,1,68055,337 -931,FR,BR,201812,3,1,3700,10 -931,FR,BR,201812,3,1,15479,360 -931,FR,BR,201812,4,1,687077,9041 -931,FR,BR,201812,4,1,37229,334 -931,FR,BR,201812,4,1,677,0 -931,FR,BR,201812,4,1,8310,1 -931,FR,BR,201812,4,1,386,2 -931,FR,BR,201812,4,1,467020,2840 -931,FR,BR,201812,4,1,414713,1361 -931,FR,BR,201812,4,1,89,0 -931,FR,BR,201812,4,1,5798,80 -931,FR,BR,201812,4,1,1047,4 -931,FR,BR,201812,0,2,1569,6 -931,FR,BR,201812,1,2,5582798,111880 -931,FR,BR,201812,1,2,83794,6028 -931,FR,BR,201812,1,2,46607,733 -931,FR,BR,201812,1,2,67744,4302 -931,FR,BR,201812,1,2,114058,2487 -931,FR,BR,201812,1,2,2114,36 -931,FR,BR,201812,1,2,59387,718 -931,FR,BR,201812,1,2,82568,110490 -931,FR,BR,201812,1,2,267360,9445 -931,FR,BR,201812,1,2,9250,641 -931,FR,BR,201812,1,2,17919,984 -931,FR,BR,201812,1,2,2580818,99179 -931,FR,BR,201812,1,2,2584166,13637 -931,FR,BR,201812,1,2,345692,19824 -931,FR,BR,201812,1,2,16733,259 -931,FR,BR,201812,1,2,61936,2078 -931,FR,BR,201812,1,2,17011,1637 -931,FR,BR,201812,1,2,468391,11926 -931,FR,BR,201812,1,2,10800,1698 -931,FR,BR,201812,1,2,129188,17031 -931,FR,BR,201812,3,2,202694,2119 -931,FR,BR,201812,3,2,299814,49139 -931,FR,BR,201812,3,2,718,51 -931,FR,BR,201812,3,2,12281,17 -931,FR,BR,201812,3,2,6204,540 -931,FR,BR,201812,3,2,45842,55 -931,FR,BR,201812,3,2,31291,1250 -931,FR,BR,201812,4,2,16057946,86933 -931,FR,BR,201812,4,2,113271,1908 -931,FR,BR,201812,4,2,549781,1690 -931,FR,BR,201812,4,2,355171,2735 -931,FR,BR,201812,4,2,605,2 -931,FR,BR,201812,4,2,273739,2705 -931,FR,BR,201812,4,2,58386,1628 -931,FR,BR,201812,4,2,63451,47 -931,FR,BR,201812,4,2,53857,2262 -931,FR,BR,201812,4,2,490212,799 -931,FR,BR,201812,4,2,15806,900 -931,FR,BR,201812,4,2,12320,187 -931,FR,BR,201812,4,2,601887,5744 -931,FR,BR,201812,4,2,107875,122 -931,FR,BR,201812,4,2,22407,173 -931,FR,BR,201812,4,2,41615,535 -931,FR,BR,201812,4,2,994967,11940 -931,FR,BR,201812,4,2,19308,19 -931,FR,BR,201812,4,2,47279,361 -939,FR,BR,201812,0,1,458084,18072 -939,FR,BR,201812,1,1,494545,97582 -939,FR,BR,201812,1,1,242304,1931 -939,FR,BR,201812,1,1,31734,5315 -939,FR,BR,201812,1,1,2864,385 -939,FR,BR,201812,1,1,2578232,211792 -939,FR,BR,201812,1,1,251595,27540 -939,FR,BR,201812,1,1,148339,7948 -939,FR,BR,201812,1,1,77861,13663 -939,FR,BR,201812,1,1,376571,30510 -939,FR,BR,201812,1,1,1685694,340894 -939,FR,BR,201812,1,1,134974,44580 -939,FR,BR,201812,1,1,270129,26574 -939,FR,BR,201812,1,1,2315,174 -939,FR,BR,201812,1,1,61530,6812 -939,FR,BR,201812,3,1,52256,1931 -939,FR,BR,201812,3,1,131314,21936 -939,FR,BR,201812,3,1,39200,720 -939,FR,BR,201812,3,1,12152,50 -939,FR,BR,201812,4,1,453447,14674 -939,FR,BR,201812,4,1,6993,53 -939,FR,BR,201812,4,1,17827,240 -939,FR,BR,201812,4,1,21194,1582 -939,FR,BR,201812,4,1,41,2 -939,FR,BR,201812,4,1,149,0 -939,FR,BR,201812,4,1,29037,590 -939,FR,BR,201812,4,1,364029,3322 -939,FR,BR,201812,4,1,466824,4214 -939,FR,BR,201812,4,1,10609,95 -939,FR,BR,201812,4,1,84017,4259 -939,FR,BR,201812,0,2,106,2 -939,FR,BR,201812,1,2,2438108,141619 -939,FR,BR,201812,1,2,385763,24450 -939,FR,BR,201812,1,2,42013,8033 -939,FR,BR,201812,1,2,218792,38506 -939,FR,BR,201812,1,2,67201,2181 -939,FR,BR,201812,1,2,4244,42 -939,FR,BR,201812,1,2,105081,15033 -939,FR,BR,201812,1,2,45155,402 -939,FR,BR,201812,1,2,150483,11514 -939,FR,BR,201812,1,2,1422,61 -939,FR,BR,201812,1,2,4950,200 -939,FR,BR,201812,1,2,110688,12959 -939,FR,BR,201812,1,2,12031772,1129997 -939,FR,BR,201812,1,2,42132,4716 -939,FR,BR,201812,1,2,56013,1100 -939,FR,BR,201812,1,2,250958,57017 -939,FR,BR,201812,1,2,9657,476 -939,FR,BR,201812,1,2,161252,4609 -939,FR,BR,201812,1,2,74129,11519 -939,FR,BR,201812,1,2,11903,667 -939,FR,BR,201812,1,2,336697,58623 -939,FR,BR,201812,1,2,265513,7238 -939,FR,BR,201812,1,2,3498507,257304 -939,FR,BR,201812,1,2,146782,20446 -939,FR,BR,201812,1,2,31350,1314 -939,FR,BR,201812,1,2,7667,153 -939,FR,BR,201812,1,2,75351,4550 -939,FR,BR,201812,3,2,59363,1843 -939,FR,BR,201812,3,2,829365,22970 -939,FR,BR,201812,3,2,5975,31 -939,FR,BR,201812,3,2,27867,4806 -939,FR,BR,201812,4,2,7084659,34532 -939,FR,BR,201812,4,2,83181,708 -939,FR,BR,201812,4,2,288239,6385 -939,FR,BR,201812,4,2,1690,0 -939,FR,BR,201812,4,2,372473,3309 -939,FR,BR,201812,4,2,36149,537 -939,FR,BR,201812,4,2,262517,3325 -939,FR,BR,201812,4,2,84708,237 -939,FR,BR,201812,4,2,76205,1518 -939,FR,BR,201812,4,2,25110,1700 -939,FR,BR,201812,4,2,102260,1502 -939,FR,BR,201812,4,2,262939,1518 -939,FR,BR,201812,4,2,1216673,16213 -939,FR,BR,201812,4,2,109500,326 -939,FR,BR,201812,4,2,5948,19 -939,FR,BR,201812,4,2,9516,47 -939,FR,BR,201812,4,2,50109,1145 -939,FR,BR,201812,4,2,493,6 -939,FR,BR,201812,4,2,698,157 -939,FR,BR,201812,4,2,813,15 -939,FR,BR,201812,4,2,157,0 -939,FR,BR,201812,4,2,1699,150 -939,FR,BR,201812,4,2,3421,3 -939,FR,BR,201812,4,2,237164,5800 -939,FR,BR,201812,4,2,5729,55 -939,FR,BR,201812,4,2,143529,774 -941,FR,BR,201812,1,2,73556,7380 -941,FR,BR,201812,1,2,956,275 -941,FR,BR,201812,4,2,5631,40 -949,FR,BR,201812,0,1,41711,13908 -949,FR,BR,201812,1,1,48830,20816 -949,FR,BR,201812,1,1,9698,1584 -949,FR,BR,201812,1,1,213,11 -949,FR,BR,201812,1,1,3167,169 -949,FR,BR,201812,1,1,85554,11463 -949,FR,BR,201812,1,1,4042,159 -949,FR,BR,201812,1,1,294722,51497 -949,FR,BR,201812,1,1,7588,632 -949,FR,BR,201812,1,1,171195,26624 -949,FR,BR,201812,1,1,86765,40504 -949,FR,BR,201812,1,1,283833,66825 -949,FR,BR,201812,1,1,275,15 -949,FR,BR,201812,3,1,10755,74 -949,FR,BR,201812,3,1,181,1 -949,FR,BR,201812,4,1,166962,2287 -949,FR,BR,201812,4,1,2221,100 -949,FR,BR,201812,4,1,4154,198 -949,FR,BR,201812,4,1,15183,554 -949,FR,BR,201812,4,1,15949,74 -949,FR,BR,201812,4,1,35406,1026 -949,FR,BR,201812,4,1,451469,1399 -949,FR,BR,201812,4,1,281,0 -949,FR,BR,201812,4,1,796,0 -949,FR,BR,201812,4,1,858,130 -949,FR,BR,201812,1,2,464743,33555 -949,FR,BR,201812,1,2,8100,324 -949,FR,BR,201812,1,2,74987,11088 -949,FR,BR,201812,1,2,98,36 -949,FR,BR,201812,1,2,10856,377 -949,FR,BR,201812,1,2,10154,441 -949,FR,BR,201812,1,2,66323,17503 -949,FR,BR,201812,1,2,3955,209 -949,FR,BR,201812,1,2,9968,1075 -949,FR,BR,201812,1,2,26233,3691 -949,FR,BR,201812,1,2,50342,4453 -949,FR,BR,201812,1,2,17023,1143 -949,FR,BR,201812,1,2,19451,1099 -949,FR,BR,201812,1,2,2896273,595783 -949,FR,BR,201812,1,2,581006,87510 -949,FR,BR,201812,1,2,134925,29021 -949,FR,BR,201812,1,2,3023,258 -949,FR,BR,201812,1,2,3651,4 -949,FR,BR,201812,1,2,40406,5722 -949,FR,BR,201812,1,2,68260,18277 -949,FR,BR,201812,1,2,7007,1137 -949,FR,BR,201812,1,2,7773,433 -949,FR,BR,201812,3,2,179409,119630 -949,FR,BR,201812,3,2,87138,12515 -949,FR,BR,201812,3,2,32258,11688 -949,FR,BR,201812,3,2,138283,32264 -949,FR,BR,201812,4,2,803944,10920 -949,FR,BR,201812,4,2,2889,205 -949,FR,BR,201812,4,2,229636,1418 -949,FR,BR,201812,4,2,34770,1870 -949,FR,BR,201812,4,2,418379,1278 -949,FR,BR,201812,4,2,20159,187 -949,FR,BR,201812,4,2,6612,235 -949,FR,BR,201812,4,2,12720,55 -949,FR,BR,201812,4,2,6839,77 -949,FR,BR,201812,4,2,17001,432 -949,FR,BR,201812,4,2,26004,117 -949,FR,BR,201812,4,2,4349,103 -949,FR,BR,201812,4,2,152678,5378 -949,FR,BR,201812,4,2,117368,65 -949,FR,BR,201812,4,2,1393,110 -949,FR,BR,201812,4,2,26947,1483 -949,FR,BR,201812,4,2,1930,56 -949,FR,BR,201812,4,2,360628,90 -949,FR,BR,201812,4,2,25568,228 -951,FR,BR,201812,1,1,226,37 -951,FR,BR,201812,1,1,15854,5142 -951,FR,BR,201812,1,1,470,410 -951,FR,BR,201812,1,1,2526,173 -951,FR,BR,201812,4,1,1112,67 -951,FR,BR,201812,4,1,81,5 -951,FR,BR,201812,1,2,27329,1330 -951,FR,BR,201812,1,2,1979,55 -951,FR,BR,201812,1,2,231937,32365 -951,FR,BR,201812,1,2,210165,539906 -951,FR,BR,201812,1,2,9045,1764 -951,FR,BR,201812,1,2,2294,194 -951,FR,BR,201812,3,2,1374,587 -951,FR,BR,201812,4,2,4994,483 -951,FR,BR,201812,4,2,90684,1254 -951,FR,BR,201812,4,2,59969,936 -952,FR,BR,201812,0,1,18839,13 -952,FR,BR,201812,1,1,57729,24316 -952,FR,BR,201812,1,1,1767,280 -952,FR,BR,201812,1,1,106747,4430 -952,FR,BR,201812,3,1,252,2 -952,FR,BR,201812,3,1,14,0 -952,FR,BR,201812,4,1,10165,141 -952,FR,BR,201812,4,1,1847,30 -952,FR,BR,201812,4,1,31,2 -952,FR,BR,201812,4,1,270,0 -952,FR,BR,201812,1,2,44664,2057 -952,FR,BR,201812,1,2,424,17 -952,FR,BR,201812,1,2,1209,135 -952,FR,BR,201812,1,2,96016,214 -952,FR,BR,201812,1,2,143242,89843 -952,FR,BR,201812,1,2,102108,33893 -952,FR,BR,201812,1,2,135967,92581 -952,FR,BR,201812,1,2,764783,145295 -952,FR,BR,201812,1,2,21317,3000 -952,FR,BR,201812,1,2,59354,11434 -952,FR,BR,201812,3,2,46982,35750 -952,FR,BR,201812,3,2,142,4 -952,FR,BR,201812,4,2,171955,2761 -952,FR,BR,201812,4,2,28740,43 -952,FR,BR,201812,4,2,2253,104 -952,FR,BR,201812,4,2,88,1 -952,FR,BR,201812,4,2,27520,185 -952,FR,BR,201812,4,2,263,13 -952,FR,BR,201812,4,2,30888,630 -952,FR,BR,201812,4,2,211733,6119 -952,FR,BR,201812,4,2,2588,70 -952,FR,BR,201812,4,2,1068,1 -961,FR,BR,201812,1,1,2948,14 -961,FR,BR,201812,1,1,184218,15149 -961,FR,BR,201812,3,1,102,1 -961,FR,BR,201812,4,1,89335,6074 -961,FR,BR,201812,4,1,432,6 -961,FR,BR,201812,4,1,2163,0 -961,FR,BR,201812,4,2,102715,189 -961,FR,BR,201812,4,2,34,0 -961,FR,BR,201812,4,2,605,1 -962,FR,BR,201812,0,1,464,0 -962,FR,BR,201812,1,1,4295,762 -962,FR,BR,201812,1,1,429,28 -962,FR,BR,201812,1,1,30042,2639 -962,FR,BR,201812,1,1,316,116 -962,FR,BR,201812,1,1,74685,7880 -962,FR,BR,201812,3,1,2124,316 -962,FR,BR,201812,4,1,162988,9092 -962,FR,BR,201812,4,1,5412,300 -962,FR,BR,201812,4,1,27127,168 -962,FR,BR,201812,4,1,8548,5 -962,FR,BR,201812,4,1,15953,40 -962,FR,BR,201812,0,2,175,0 -962,FR,BR,201812,1,2,86185,5099 -962,FR,BR,201812,1,2,418,60 -962,FR,BR,201812,1,2,303,12 -962,FR,BR,201812,1,2,41900,2080 -962,FR,BR,201812,1,2,4789,648 -962,FR,BR,201812,1,2,50797,4286 -962,FR,BR,201812,1,2,297864,13871 -962,FR,BR,201812,1,2,15500,7389 -962,FR,BR,201812,1,2,66592,9609 -962,FR,BR,201812,1,2,972785,507430 -962,FR,BR,201812,1,2,400976,23317 -962,FR,BR,201812,1,2,17946,4095 -962,FR,BR,201812,3,2,271,20 -962,FR,BR,201812,3,2,126812,12868 -962,FR,BR,201812,3,2,137,18 -962,FR,BR,201812,3,2,165,57 -962,FR,BR,201812,3,2,92940,45972 -962,FR,BR,201812,4,2,92292,2331 -962,FR,BR,201812,4,2,65,2 -962,FR,BR,201812,4,2,48674,2230 -962,FR,BR,201812,4,2,147,31 -962,FR,BR,201812,4,2,60692,3655 -962,FR,BR,201812,4,2,3279,25 -962,FR,BR,201812,4,2,960,10 -962,FR,BR,201812,4,2,1114,35 -963,FR,BR,201812,0,1,10885,195 -963,FR,BR,201812,1,1,128592,5673 -963,FR,BR,201812,1,1,35519,765 -963,FR,BR,201812,1,1,41347,2508 -963,FR,BR,201812,1,1,36756,2552 -963,FR,BR,201812,1,1,81157,6582 -963,FR,BR,201812,1,1,758642,29454 -963,FR,BR,201812,1,1,178929,6555 -963,FR,BR,201812,1,1,114411,1742 -963,FR,BR,201812,1,1,342526,78492 -963,FR,BR,201812,1,1,369735,55852 -963,FR,BR,201812,1,1,453957,82125 -963,FR,BR,201812,1,1,24260,4983 -963,FR,BR,201812,1,1,2020436,93488 -963,FR,BR,201812,1,1,386815,24540 -963,FR,BR,201812,3,1,52192,3026 -963,FR,BR,201812,3,1,39760,755 -963,FR,BR,201812,3,1,7881,373 -963,FR,BR,201812,3,1,398,3 -963,FR,BR,201812,4,1,230388,6665 -963,FR,BR,201812,4,1,4179,133 -963,FR,BR,201812,4,1,137928,1102 -963,FR,BR,201812,4,1,151473,5105 -963,FR,BR,201812,4,1,20003,278 -963,FR,BR,201812,5,1,7636,73 -963,FR,BR,201812,0,2,1214,21 -963,FR,BR,201812,1,2,89669,2228 -963,FR,BR,201812,1,2,49197,3187 -963,FR,BR,201812,1,2,29517,1198 -963,FR,BR,201812,1,2,1680,319 -963,FR,BR,201812,1,2,55,36 -963,FR,BR,201812,3,2,136218,10110 -963,FR,BR,201812,4,2,1810529,8995 -963,FR,BR,201812,4,2,159878,1500 -963,FR,BR,201812,4,2,564,22 -963,FR,BR,201812,4,2,10744,485 -963,FR,BR,201812,4,2,197097,338 -963,FR,BR,201812,4,2,57516,35 -963,FR,BR,201812,4,2,1116,6 -963,FR,BR,201812,4,2,2888,102 -963,FR,BR,201812,4,2,8773,81 -971,FR,BR,201812,1,1,745,143 -971,FR,BR,201812,1,1,2089,102 -971,FR,BR,201812,1,1,2805,417 -971,FR,BR,201812,1,1,1950,125 -971,FR,BR,201812,1,1,2203,127 -971,FR,BR,201812,1,1,809,122 -971,FR,BR,201812,1,1,948,59 -971,FR,BR,201812,1,1,722243,138268 -971,FR,BR,201812,1,1,9411,934 -971,FR,BR,201812,3,1,1407,1 -971,FR,BR,201812,4,1,34163,5382 -971,FR,BR,201812,4,1,301,5 -971,FR,BR,201812,4,1,6725,516 -971,FR,BR,201812,4,1,42391,95 -971,FR,BR,201812,4,1,441,16 -971,FR,BR,201812,4,1,369,1 -971,FR,BR,201812,4,1,1136,1 -971,FR,BR,201812,1,2,175853,12038 -971,FR,BR,201812,1,2,3503,294 -971,FR,BR,201812,1,2,12171,746 -971,FR,BR,201812,1,2,7520,315 -971,FR,BR,201812,1,2,5664,80 -971,FR,BR,201812,1,2,1204,335 -971,FR,BR,201812,1,2,7857,300 -971,FR,BR,201812,1,2,90072,3400 -971,FR,BR,201812,1,2,297,21 -971,FR,BR,201812,1,2,17990,315 -971,FR,BR,201812,1,2,3842,42 -971,FR,BR,201812,1,2,792685,117604 -971,FR,BR,201812,1,2,680900,36560 -971,FR,BR,201812,1,2,21028,844 -971,FR,BR,201812,1,2,25368,4923 -971,FR,BR,201812,1,2,3200,522 -971,FR,BR,201812,1,2,7834,107 -971,FR,BR,201812,1,2,19148,1087 -971,FR,BR,201812,3,2,32774,425 -971,FR,BR,201812,3,2,142,1 -971,FR,BR,201812,3,2,279,17 -971,FR,BR,201812,4,2,188373,6068 -971,FR,BR,201812,4,2,47902,3462 -971,FR,BR,201812,4,2,246,0 -971,FR,BR,201812,4,2,95091,743 -971,FR,BR,201812,4,2,9688,589 -971,FR,BR,201812,4,2,1112,30 -971,FR,BR,201812,4,2,35000,21 -971,FR,BR,201812,4,2,51843,170 -971,FR,BR,201812,4,2,34618,89 -971,FR,BR,201812,4,2,1869,6 -971,FR,BR,201812,4,2,6812,1170 -972,FR,BR,201812,3,1,843,203 -972,FR,BR,201812,1,2,77015,23020 -972,FR,BR,201812,1,2,3801,170 -972,FR,BR,201812,1,2,694172,684389 -972,FR,BR,201812,1,2,138591,57127 -972,FR,BR,201812,1,2,37452,24180 -972,FR,BR,201812,1,2,217977,186282 -972,FR,BR,201812,1,2,37912,3792 -972,FR,BR,201812,3,2,296,155 -972,FR,BR,201812,4,2,59,0 -972,FR,BR,201812,4,2,3656,435 -972,FR,BR,201812,4,2,251,32 -973,FR,BR,201812,0,1,613,12 -973,FR,BR,201812,1,1,36555,39734 -973,FR,BR,201812,1,1,20335,20000 -973,FR,BR,201812,1,1,560,207 -973,FR,BR,201812,1,1,3057,485 -973,FR,BR,201812,1,1,32532,48364 -973,FR,BR,201812,1,1,96622,142290 -973,FR,BR,201812,1,1,1817,329 -973,FR,BR,201812,1,1,190260,250826 -973,FR,BR,201812,1,1,33013,47736 -973,FR,BR,201812,1,1,146006,219819 -973,FR,BR,201812,3,1,73,0 -973,FR,BR,201812,4,1,184,1 -973,FR,BR,201812,4,1,116,9 -973,FR,BR,201812,4,1,81,7 -973,FR,BR,201812,1,2,78404,36895 -973,FR,BR,201812,1,2,8700,845 -973,FR,BR,201812,1,2,380,17 -973,FR,BR,201812,1,2,4870,314 -973,FR,BR,201812,1,2,61414,20543 -973,FR,BR,201812,1,2,327713,139038 -973,FR,BR,201812,1,2,13307,9908 -973,FR,BR,201812,1,2,4227,1134 -973,FR,BR,201812,1,2,18213,13154 -973,FR,BR,201812,1,2,17156,1560 -973,FR,BR,201812,1,2,8,1 -973,FR,BR,201812,4,2,23237,3526 -973,FR,BR,201812,4,2,3567,106 -974,FR,BR,201812,0,1,667,18 -974,FR,BR,201812,1,1,66,4 -974,FR,BR,201812,1,1,202,14 -974,FR,BR,201812,1,1,490,74 -974,FR,BR,201812,1,1,275,50 -974,FR,BR,201812,1,1,9,0 -974,FR,BR,201812,1,1,1,0 -974,FR,BR,201812,3,1,6080,258 -974,FR,BR,201812,4,1,2546,270 -974,FR,BR,201812,4,1,4180,98 -974,FR,BR,201812,4,1,809,14 -974,FR,BR,201812,4,1,9462,147 -974,FR,BR,201812,0,2,846,30 -974,FR,BR,201812,1,2,2404,330 -974,FR,BR,201812,1,2,3679,127 -974,FR,BR,201812,1,2,6858,1014 -974,FR,BR,201812,1,2,1800,966 -974,FR,BR,201812,1,2,25,1 -974,FR,BR,201812,1,2,72182,6916 -974,FR,BR,201812,1,2,7,0 -974,FR,BR,201812,3,2,2451,565 -974,FR,BR,201812,3,2,767,61 -974,FR,BR,201812,4,2,178497,3418 -974,FR,BR,201812,4,2,388,3 -974,FR,BR,201812,4,2,50,0 -974,FR,BR,201812,4,2,14448,88 -974,FR,BR,201812,4,2,233,2 -974,FR,BR,201812,4,2,406,11 -974,FR,BR,201812,4,2,6651,454 -975,FR,BR,201812,0,1,1695,2 -975,FR,BR,201812,1,1,96912,57677 -975,FR,BR,201812,1,1,22438,2230 -975,FR,BR,201812,1,1,30777,22960 -975,FR,BR,201812,1,1,68181,6657 -975,FR,BR,201812,1,1,42887,22648 -975,FR,BR,201812,1,1,58492,50714 -975,FR,BR,201812,1,1,38445,51812 -975,FR,BR,201812,1,1,488602,227197 -975,FR,BR,201812,1,1,170,44 -975,FR,BR,201812,1,1,568,103 -975,FR,BR,201812,1,1,384,25 -975,FR,BR,201812,1,1,92528,32383 -975,FR,BR,201812,1,1,34,0 -975,FR,BR,201812,3,1,110,100 -975,FR,BR,201812,3,1,255935,161312 -975,FR,BR,201812,4,1,9493,405 -975,FR,BR,201812,4,1,75669,38 -975,FR,BR,201812,4,1,4160,309 -975,FR,BR,201812,4,1,4527,82 -975,FR,BR,201812,1,2,10677,2013 -975,FR,BR,201812,1,2,136883,13282 -975,FR,BR,201812,1,2,107,15 -975,FR,BR,201812,1,2,68324,800 -975,FR,BR,201812,1,2,53254,3888 -975,FR,BR,201812,1,2,16125,1240 -975,FR,BR,201812,1,2,140082,44652 -975,FR,BR,201812,1,2,202454,39543 -975,FR,BR,201812,1,2,485341,99838 -975,FR,BR,201812,1,2,589161,112598 -975,FR,BR,201812,1,2,70657,14522 -975,FR,BR,201812,1,2,82350,23231 -975,FR,BR,201812,1,2,55000,16244 -975,FR,BR,201812,3,2,17597,5393 -975,FR,BR,201812,3,2,15906,4452 -975,FR,BR,201812,3,2,1595,364 -975,FR,BR,201812,4,2,78105,221 -975,FR,BR,201812,4,2,408,4 -975,FR,BR,201812,4,2,1427,37 -975,FR,BR,201812,4,2,10373,353 -975,FR,BR,201812,4,2,3817,625 -976,FR,BR,201812,0,1,218,5 -976,FR,BR,201812,1,1,10,2 -976,FR,BR,201812,1,1,29792,23001 -976,FR,BR,201812,1,1,139543,131344 -976,FR,BR,201812,1,1,96080,27986 -976,FR,BR,201812,1,1,4342,1281 -976,FR,BR,201812,1,1,99816,61200 -976,FR,BR,201812,1,1,38772,66643 -976,FR,BR,201812,1,1,102201,63770 -976,FR,BR,201812,1,1,162342,228787 -976,FR,BR,201812,1,1,48373,47251 -976,FR,BR,201812,1,1,378806,416510 -976,FR,BR,201812,1,1,350065,437256 -976,FR,BR,201812,1,1,8582,6480 -976,FR,BR,201812,1,1,78345,91220 -976,FR,BR,201812,3,1,496,505 -976,FR,BR,201812,4,1,4567,380 -976,FR,BR,201812,4,1,564,92 -976,FR,BR,201812,4,1,584,136 -976,FR,BR,201812,4,1,438,170 -976,FR,BR,201812,1,2,8300,1800 -976,FR,BR,201812,1,2,44690,3265 -976,FR,BR,201812,3,2,580,171 -976,FR,BR,201812,3,2,1017,346 -976,FR,BR,201812,4,2,1454,46 -976,FR,BR,201812,4,2,300,4 -976,FR,BR,201812,4,2,603,11 -979,FR,BR,201812,0,1,22577,821 -979,FR,BR,201812,1,1,89650,5120 -979,FR,BR,201812,1,1,6921,2200 -979,FR,BR,201812,1,1,466,11 -979,FR,BR,201812,1,1,4025,203 -979,FR,BR,201812,1,1,1343,81 -979,FR,BR,201812,1,1,7528,2819 -979,FR,BR,201812,1,1,392,3 -979,FR,BR,201812,1,1,131,68 -979,FR,BR,201812,1,1,26285,683 -979,FR,BR,201812,1,1,23402,2222 -979,FR,BR,201812,1,1,39358,2336 -979,FR,BR,201812,3,1,79009,841 -979,FR,BR,201812,3,1,706249,479 -979,FR,BR,201812,4,1,327577,4847 -979,FR,BR,201812,4,1,164518,97 -979,FR,BR,201812,4,1,512,0 -979,FR,BR,201812,4,1,17264,1 -979,FR,BR,201812,4,1,1706,10 -979,FR,BR,201812,4,1,405569,773 -979,FR,BR,201812,4,1,70004,308 -979,FR,BR,201812,4,1,880,0 -979,FR,BR,201812,4,1,328,0 -979,FR,BR,201812,4,1,221,0 -979,FR,BR,201812,4,1,320,0 -979,FR,BR,201812,4,1,482,7 -979,FR,BR,201812,4,1,686,4 -979,FR,BR,201812,0,2,11984,41 -979,FR,BR,201812,1,2,962370,23380 -979,FR,BR,201812,1,2,7388,452 -979,FR,BR,201812,1,2,351176,6638 -979,FR,BR,201812,1,2,4416,124 -979,FR,BR,201812,1,2,6780,322 -979,FR,BR,201812,1,2,347340,7976 -979,FR,BR,201812,1,2,36353,1482 -979,FR,BR,201812,1,2,574,7 -979,FR,BR,201812,1,2,3673,270 -979,FR,BR,201812,1,2,1951929,69083 -979,FR,BR,201812,1,2,608057,22526 -979,FR,BR,201812,1,2,104577,4787 -979,FR,BR,201812,1,2,11560,1631 -979,FR,BR,201812,1,2,29552,2501 -979,FR,BR,201812,1,2,920656,87225 -979,FR,BR,201812,1,2,15344,3110 -979,FR,BR,201812,1,2,11869,673 -979,FR,BR,201812,3,2,117792,10421 -979,FR,BR,201812,3,2,55156,2583 -979,FR,BR,201812,3,2,5902,563 -979,FR,BR,201812,3,2,8509,2 -979,FR,BR,201812,3,2,56510,1008 -979,FR,BR,201812,3,2,221,17 -979,FR,BR,201812,4,2,5671754,14207 -979,FR,BR,201812,4,2,450844,3911 -979,FR,BR,201812,4,2,126949,237 -979,FR,BR,201812,4,2,687580,2806 -979,FR,BR,201812,4,2,32082,496 -979,FR,BR,201812,4,2,12213,27 -979,FR,BR,201812,4,2,24909,356 -979,FR,BR,201812,4,2,36339,41 -979,FR,BR,201812,4,2,152672,5097 -979,FR,BR,201812,4,2,69076,280 -979,FR,BR,201812,4,2,944511,3110 -979,FR,BR,201812,4,2,48990,8 -979,FR,BR,201812,4,2,15326,195 -979,FR,BR,201812,4,2,4630,20 -979,FR,BR,201812,4,2,8501,10 -979,FR,BR,201812,4,2,11656,343 -979,FR,BR,201812,4,2,4244,8 -979,FR,BR,201812,4,2,30501,2780 -979,FR,BR,201812,4,2,8553,28 -979,FR,BR,201812,4,2,22795,193 -994,FR,BR,201812,1,2,55242,1 -994,FR,BR,201812,3,2,27962,0 -994,FR,BR,201812,4,2,138349,3 -999,FR,BR,201812,1,1,1310,0 -999,FR,BR,201812,1,1,7700,0 -999,FR,BR,201812,1,1,176521,0 -999,FR,BR,201812,1,1,57364,38120 -999,FR,BR,201812,1,1,104259,0 -999,FR,BR,201812,4,1,102261,0 -999,FR,BR,201812,4,1,7254,0 -999,FR,BR,201812,4,1,4030,0 -999,FR,BR,201812,4,1,2105,0 -999,FR,BR,201812,4,1,3180,0 -999,FR,BR,201812,5,1,1019,0 -999,FR,BR,201812,0,2,1568,0 -999,FR,BR,201812,1,2,1230599,24321 -999,FR,BR,201812,1,2,11207,3248 -999,FR,BR,201812,1,2,20888,50 -999,FR,BR,201812,1,2,81865,27863 -999,FR,BR,201812,1,2,615811,7644 -999,FR,BR,201812,1,2,10872,445 -999,FR,BR,201812,1,2,239,17 -999,FR,BR,201812,1,2,3744006,977712 -999,FR,BR,201812,1,2,35208,16512 -999,FR,BR,201812,1,2,45438,49100 -999,FR,BR,201812,1,2,29506,20000 -999,FR,BR,201812,1,2,70813,45000 -999,FR,BR,201812,1,2,24957,500 -999,FR,BR,201812,1,2,206924,150878 -999,FR,BR,201812,1,2,1009650,13005 -999,FR,BR,201812,1,2,16029,20400 -999,FR,BR,201812,1,2,22580,8407 -999,FR,BR,201812,1,2,280816,147410 -999,FR,BR,201812,1,2,1297988,730171 -999,FR,BR,201812,1,2,109233,12270 -999,FR,BR,201812,1,2,43638,22500 -999,FR,BR,201812,1,2,141526,90000 -999,FR,BR,201812,1,2,20553,2000 -999,FR,BR,201812,1,2,137495,28040 -999,FR,BR,201812,3,2,33955,1843 -999,FR,BR,201812,3,2,2302,6300 -999,FR,BR,201812,3,2,12586,2426 -999,FR,BR,201812,3,2,1921,200 -999,FR,BR,201812,3,2,34203,50000 -999,FR,BR,201812,4,2,3517402,44581 -999,FR,BR,201812,4,2,46707,558 -999,FR,BR,201812,4,2,3076,108 -999,FR,BR,201812,4,2,188595,2327 -999,FR,BR,201812,4,2,11100,0 -999,FR,BR,201812,4,2,35648,1365 -999,FR,BR,201812,4,2,192,5 -999,FR,BR,201812,4,2,136351,215 -999,FR,BR,201812,4,2,8869,89 -999,FR,BR,201812,4,2,96257,998 -999,FR,BR,201812,4,2,695,70 -999,FR,BR,201812,4,2,12076,1400 -999,FR,BR,201812,4,2,1416,1 -999,FR,BR,201812,4,2,1757,240 -999,FR,BR,201812,4,2,10322,15 -012,FR,CL,201812,1,2,430358,991940 -015,FR,CL,201812,1,1,91158,6640 -015,FR,CL,201812,4,1,61,17 -015,FR,CL,201812,4,1,207,5 -015,FR,CL,201812,4,1,81,0 -015,FR,CL,201812,4,2,26,4 -035,FR,CL,201812,1,1,379576,69998 -035,FR,CL,201812,1,1,1796220,1021083 -035,FR,CL,201812,1,1,166057,23100 -035,FR,CL,201812,1,1,296257,38440 -035,FR,CL,201812,1,1,413738,40000 -035,FR,CL,201812,3,1,1607,590 -035,FR,CL,201812,4,1,1203099,109022 -035,FR,CL,201812,4,1,22929,2844 -035,FR,CL,201812,4,1,69124,6600 -035,FR,CL,201812,4,1,7936,640 -035,FR,CL,201812,4,1,589390,58731 -039,FR,CL,201812,1,1,21749,16000 -039,FR,CL,201812,1,1,29568,21000 -039,FR,CL,201812,1,1,217953,54655 -039,FR,CL,201812,1,1,73111,51200 -039,FR,CL,201812,1,1,33723,21000 -039,FR,CL,201812,1,1,94147,20736 -056,FR,CL,201812,1,1,89794,72330 -056,FR,CL,201812,1,2,104602,66398 -056,FR,CL,201812,1,2,85874,22340 -099,FR,CL,201812,1,1,107971,520 -099,FR,CL,201812,1,1,269132,225797 -099,FR,CL,201812,1,1,13946,1780 -099,FR,CL,201812,4,1,130257,1439 -099,FR,CL,201812,4,1,5724,68 -099,FR,CL,201812,4,1,1994,18 -099,FR,CL,201812,1,2,39794,12077 -099,FR,CL,201812,1,2,25765,14000 -099,FR,CL,201812,1,2,5363,703 -099,FR,CL,201812,1,2,26753,14000 -099,FR,CL,201812,4,2,25270,65 -099,FR,CL,201812,4,2,5926,140 -099,FR,CL,201812,4,2,27795,206 -099,FR,CL,201812,4,2,108859,10 -111,FR,CL,201812,1,2,17603,20000 -121,FR,CL,201812,0,1,3226,972 -121,FR,CL,201812,1,1,45460,501 -121,FR,CL,201812,1,1,709377,498893 -121,FR,CL,201812,1,1,23050,24000 -121,FR,CL,201812,1,1,43538,20160 -121,FR,CL,201812,1,1,76984,27390 -121,FR,CL,201812,1,1,53863,27382 -121,FR,CL,201812,4,1,42,18 -121,FR,CL,201812,4,1,198,27 -121,FR,CL,201812,0,2,403,2 -121,FR,CL,201812,1,2,1388,32 -121,FR,CL,201812,1,2,7875,358 -121,FR,CL,201812,1,2,31918,1534 -121,FR,CL,201812,4,2,2352,405 -121,FR,CL,201812,4,2,24,9 -125,FR,CL,201812,1,2,24044,20112 -125,FR,CL,201812,1,2,3705,50 -125,FR,CL,201812,1,2,24044,20112 -125,FR,CL,201812,1,2,11636,9072 -125,FR,CL,201812,4,2,4029,15 -128,FR,CL,201812,1,2,13763,14680 -128,FR,CL,201812,3,2,33993,39701 -128,FR,CL,201812,4,2,105,205 -132,FR,CL,201812,0,2,380,10 -132,FR,CL,201812,1,2,27192,1512 -132,FR,CL,201812,1,2,34000,6591 -132,FR,CL,201812,1,2,2986,272 -135,FR,CL,201812,0,1,95,1 -136,FR,CL,201812,1,2,14411,10000 -136,FR,CL,201812,1,2,10890,27520 -136,FR,CL,201812,3,2,9484,600 -136,FR,CL,201812,4,2,3915,270 -139,FR,CL,201812,1,1,281909,22475 -139,FR,CL,201812,4,1,92,2 -139,FR,CL,201812,0,2,308,1 -139,FR,CL,201812,1,2,11519,1871 -139,FR,CL,201812,1,2,4977,491 -139,FR,CL,201812,1,2,44446,11415 -139,FR,CL,201812,1,2,159371,94731 -139,FR,CL,201812,4,2,1590,68 -139,FR,CL,201812,4,2,8500,75 -141,FR,CL,201812,4,1,32234,644 -142,FR,CL,201812,0,1,43845,21015 -142,FR,CL,201812,1,1,205055,29410 -142,FR,CL,201812,1,1,213043,18780 -142,FR,CL,201812,1,1,1486889,161343 -142,FR,CL,201812,1,1,479001,81400 -142,FR,CL,201812,1,1,454441,65568 -142,FR,CL,201812,1,1,262280,43180 -142,FR,CL,201812,1,1,19710,21900 -142,FR,CL,201812,1,1,745467,100104 -142,FR,CL,201812,4,1,11095,1302 -143,FR,CL,201812,1,2,1284,498 -144,FR,CL,201812,1,2,102665,14111 -144,FR,CL,201812,1,2,49858,9418 -144,FR,CL,201812,1,2,460667,96928 -144,FR,CL,201812,4,2,7223,1054 -144,FR,CL,201812,4,2,3592,187 -144,FR,CL,201812,4,2,1595,140 -147,FR,CL,201812,1,2,897815,1910961 -148,FR,CL,201812,0,1,88036,37760 -148,FR,CL,201812,1,1,62381,21245 -148,FR,CL,201812,1,1,54236,19928 -148,FR,CL,201812,1,1,31000,15650 -148,FR,CL,201812,1,1,467066,204148 -148,FR,CL,201812,4,1,30717,639 -161,FR,CL,201812,4,2,5058,1400 -163,FR,CL,201812,1,2,2880,600 -163,FR,CL,201812,1,2,18284,1617 -163,FR,CL,201812,1,2,117286,14617 -164,FR,CL,201812,1,1,155608,96391 -164,FR,CL,201812,1,1,16743,17600 -164,FR,CL,201812,1,1,76289,14507 -164,FR,CL,201812,1,1,28048,20000 -164,FR,CL,201812,1,1,96614,40050 -164,FR,CL,201812,1,1,113236,40000 -164,FR,CL,201812,1,1,805771,108100 -164,FR,CL,201812,1,1,100781,21842 -164,FR,CL,201812,1,1,25632,38971 -164,FR,CL,201812,1,1,128425,39600 -164,FR,CL,201812,4,1,16181,1098 -164,FR,CL,201812,1,2,34348,18000 -164,FR,CL,201812,1,2,46044,10572 -164,FR,CL,201812,4,2,3352,281 -164,FR,CL,201812,4,2,4847,500 -166,FR,CL,201812,1,1,103828,11810 -166,FR,CL,201812,4,1,61972,386 -166,FR,CL,201812,4,1,125854,733 -166,FR,CL,201812,1,2,16754,400 -166,FR,CL,201812,1,2,161436,128151 -179,FR,CL,201812,1,2,8820,3390 -179,FR,CL,201812,1,2,130522,97239 -179,FR,CL,201812,1,2,64146,161593 -179,FR,CL,201812,1,2,43413,25030 -179,FR,CL,201812,1,2,146150,125004 -181,FR,CL,201812,4,1,4,0 -181,FR,CL,201812,4,1,41,2 -181,FR,CL,201812,1,2,34652,8849 -181,FR,CL,201812,4,2,161,7 -182,FR,CL,201812,1,1,2454,393 -182,FR,CL,201812,1,2,7295,1932 -182,FR,CL,201812,1,2,129663,176980 -224,FR,CL,201812,4,1,348,7 -323,FR,CL,201812,1,2,72,5 -323,FR,CL,201812,1,2,629,38 -341,FR,CL,201812,1,2,1069,156 -341,FR,CL,201812,1,2,310262,127896 -341,FR,CL,201812,1,2,30258,19720 -341,FR,CL,201812,1,2,4140,300 -341,FR,CL,201812,1,2,85687,32667 -341,FR,CL,201812,4,2,26,0 -341,FR,CL,201812,4,2,526,0 -341,FR,CL,201812,4,2,5058,60 -522,FR,CL,201812,4,2,9650,1126 -537,FR,CL,201812,4,2,11441,6190 -542,FR,CL,201812,1,2,26292,18640 -542,FR,CL,201812,1,2,8671,6150 -542,FR,CL,201812,2,2,57818,79560 -542,FR,CL,201812,3,2,8812,11990 -542,FR,CL,201812,3,2,10503,14290 -551,FR,CL,201812,4,1,127,0 -551,FR,CL,201812,1,2,406,8 -551,FR,CL,201812,1,2,114253,83385 -551,FR,CL,201812,1,2,199,1 -551,FR,CL,201812,1,2,43935,1723 -551,FR,CL,201812,4,2,5638,700 -551,FR,CL,201812,4,2,642,28 -551,FR,CL,201812,4,2,5484,218 -552,FR,CL,201812,1,2,58,1 -552,FR,CL,201812,4,2,1231,3 -561,FR,CL,201812,1,1,5643423,1019159 -561,FR,CL,201812,1,1,1142965,203210 -561,FR,CL,201812,1,1,12060495,2199160 -561,FR,CL,201812,1,1,2258860,404572 -561,FR,CL,201812,1,1,1627890,300777 -561,FR,CL,201812,1,2,13200,2000 -568,FR,CL,201812,1,2,689,13 -568,FR,CL,201812,1,2,1458,399 -568,FR,CL,201812,1,2,68906,11287 -568,FR,CL,201812,1,2,36229,3142 -568,FR,CL,201812,1,2,1,1 -568,FR,CL,201812,1,2,263150,54293 -568,FR,CL,201812,1,2,6557,1537 -568,FR,CL,201812,1,2,277678,59368 -568,FR,CL,201812,4,2,547,24 -568,FR,CL,201812,4,2,6504,1032 -614,FR,CL,201812,1,2,2476,325 -621,FR,CL,201812,4,2,60,4 -623,FR,CL,201812,1,2,2639,346 -623,FR,CL,201812,4,2,928,100 -650,FR,CL,201812,1,2,919,1389 -691,FR,CL,201812,1,1,274,3870 -691,FR,CL,201812,1,2,621,26 -691,FR,CL,201812,1,2,40059,3100 -691,FR,CL,201812,1,2,148693,119623 -691,FR,CL,201812,1,2,30190,34053 -691,FR,CL,201812,4,2,124,7 -724,FR,CL,201812,1,2,42629,98584 -819,FR,CL,201812,1,1,20220,24000 -819,FR,CL,201812,1,1,20160,24000 -819,FR,CL,201812,1,1,106481,5000 -819,FR,CL,201812,1,1,27940,44000 -819,FR,CL,201812,3,1,249,21 -819,FR,CL,201812,1,2,99492,6127 -819,FR,CL,201812,1,2,378170,32039 -819,FR,CL,201812,1,2,32467,26220 -819,FR,CL,201812,1,2,68716,23609 -819,FR,CL,201812,1,2,6486,600 -819,FR,CL,201812,4,2,23685,600 -819,FR,CL,201812,4,2,2791,4 -841,FR,CL,201812,0,1,930030,1383049 -841,FR,CL,201812,1,1,26877,34974 -841,FR,CL,201812,1,1,43612,58570 -841,FR,CL,201812,1,1,2358763,3594468 -891,FR,CL,201812,1,1,200806,14500 -891,FR,CL,201812,4,1,48,1 -891,FR,CL,201812,0,2,198,2 -891,FR,CL,201812,1,2,44154,8161 -891,FR,CL,201812,1,2,6578,2250 -891,FR,CL,201812,1,2,19816,5700 -891,FR,CL,201812,1,2,126943,23898 -891,FR,CL,201812,1,2,1255,90 -891,FR,CL,201812,1,2,37344,5280 -891,FR,CL,201812,1,2,22988,7039 -891,FR,CL,201812,1,2,501984,187718 -891,FR,CL,201812,1,2,120401,28108 -891,FR,CL,201812,3,2,6436,358 -891,FR,CL,201812,4,2,3371,261 -891,FR,CL,201812,4,2,10100,700 -891,FR,CL,201812,4,2,1440,63 -891,FR,CL,201812,4,2,1520,373 -892,FR,CL,201812,1,1,13,159 -892,FR,CL,201812,1,2,22881,7197 -892,FR,CL,201812,1,2,3652,281 -892,FR,CL,201812,1,2,47173,6500 -892,FR,CL,201812,1,2,119238,32135 -892,FR,CL,201812,1,2,5845,5053 -892,FR,CL,201812,1,2,3060,17250 -892,FR,CL,201812,1,2,18788,55598 -892,FR,CL,201812,1,2,4411,423 -892,FR,CL,201812,3,2,11600,150 -892,FR,CL,201812,4,2,29504,557 -892,FR,CL,201812,4,2,505,9 -892,FR,CL,201812,4,2,33500,1445 -892,FR,CL,201812,4,2,10769,255 -893,FR,CL,201812,0,1,225,0 -893,FR,CL,201812,3,1,95,1 -893,FR,CL,201812,3,1,126,2 -893,FR,CL,201812,4,1,278,4 -893,FR,CL,201812,0,2,304,3 -893,FR,CL,201812,1,2,1127044,45400 -893,FR,CL,201812,1,2,31470,820 -893,FR,CL,201812,1,2,47411,2509 -893,FR,CL,201812,1,2,149860,5794 -893,FR,CL,201812,1,2,1631,50 -893,FR,CL,201812,1,2,463095,26535 -893,FR,CL,201812,1,2,24900,143 -893,FR,CL,201812,1,2,1082,75 -893,FR,CL,201812,1,2,19415,2385 -893,FR,CL,201812,1,2,139173,4862 -893,FR,CL,201812,1,2,1941684,22107 -893,FR,CL,201812,1,2,78421,20000 -893,FR,CL,201812,3,2,65466,1568 -893,FR,CL,201812,3,2,28273,2545 -893,FR,CL,201812,3,2,22015,1250 -893,FR,CL,201812,4,2,1322679,12946 -893,FR,CL,201812,4,2,219322,1665 -893,FR,CL,201812,4,2,34113,144 -893,FR,CL,201812,4,2,446629,55 -893,FR,CL,201812,4,2,13463,101 -893,FR,CL,201812,4,2,139135,1110 -893,FR,CL,201812,4,2,240996,3577 -893,FR,CL,201812,4,2,100826,647 -893,FR,CL,201812,4,2,18408,700 -893,FR,CL,201812,4,2,8016,51 -894,FR,CL,201812,4,2,637006,9628 -896,FR,CL,201812,1,1,1601298,332000 -896,FR,CL,201812,3,1,93,2 -896,FR,CL,201812,4,1,23928,1000 -896,FR,CL,201812,0,2,851,7 -896,FR,CL,201812,1,2,262914,19240 -896,FR,CL,201812,1,2,2184,812 -896,FR,CL,201812,1,2,14063,1400 -896,FR,CL,201812,1,2,41500,19981 -896,FR,CL,201812,1,2,1370418,153913 -896,FR,CL,201812,1,2,56756,34120 -896,FR,CL,201812,1,2,15127,24750 -896,FR,CL,201812,1,2,71904,40000 -896,FR,CL,201812,1,2,114480,48000 -896,FR,CL,201812,1,2,1508,194 -896,FR,CL,201812,1,2,104168,26454 -896,FR,CL,201812,1,2,39953,19840 -896,FR,CL,201812,1,2,9820,490 -896,FR,CL,201812,1,2,5958,163 -896,FR,CL,201812,3,2,22678,44440 -896,FR,CL,201812,4,2,368797,12100 -896,FR,CL,201812,4,2,60227,10456 -896,FR,CL,201812,4,2,60965,434 -896,FR,CL,201812,4,2,12795,193 -896,FR,CL,201812,4,2,50533,427 -896,FR,CL,201812,4,2,23014,9000 -896,FR,CL,201812,4,2,23113,568 -896,FR,CL,201812,4,2,291,7 -896,FR,CL,201812,4,2,172553,2695 -896,FR,CL,201812,4,2,10418,80 -896,FR,CL,201812,4,2,2392,64 -910,FR,CL,201812,3,1,149,9 -910,FR,CL,201812,4,1,208,1 -910,FR,CL,201812,4,1,1800,69 -910,FR,CL,201812,4,1,6079,96 -910,FR,CL,201812,0,2,2737,25 -910,FR,CL,201812,1,2,278994,13862 -910,FR,CL,201812,1,2,1648,47 -910,FR,CL,201812,1,2,5512,550 -910,FR,CL,201812,1,2,463311,51637 -910,FR,CL,201812,1,2,1639283,205391 -910,FR,CL,201812,1,2,73595,3942 -910,FR,CL,201812,1,2,8647,620 -910,FR,CL,201812,1,2,190650,16600 -910,FR,CL,201812,1,2,296593,7912 -910,FR,CL,201812,1,2,164507,16334 -910,FR,CL,201812,1,2,54500,1030 -910,FR,CL,201812,1,2,36230,8113 -910,FR,CL,201812,1,2,51900,10415 -910,FR,CL,201812,2,2,157499,21320 -910,FR,CL,201812,3,2,311294,41948 -910,FR,CL,201812,3,2,150000,19664 -910,FR,CL,201812,3,2,60866,7630 -910,FR,CL,201812,3,2,70000,11485 -910,FR,CL,201812,3,2,716903,88960 -910,FR,CL,201812,3,2,120000,16482 -910,FR,CL,201812,4,2,407732,11055 -910,FR,CL,201812,4,2,3534,119 -910,FR,CL,201812,4,2,6633,356 -910,FR,CL,201812,4,2,192,0 -910,FR,CL,201812,4,2,43845,90 -910,FR,CL,201812,4,2,14034,1710 -910,FR,CL,201812,4,2,2471,41 -920,FR,CL,201812,1,2,40698,4871 -920,FR,CL,201812,1,2,101433,6340 -920,FR,CL,201812,1,2,20618,857 -920,FR,CL,201812,1,2,583651,78212 -920,FR,CL,201812,1,2,56800,3900 -920,FR,CL,201812,1,2,57814,11480 -920,FR,CL,201812,1,2,111246,24144 -920,FR,CL,201812,1,2,2200,467 -920,FR,CL,201812,3,2,718,51 -920,FR,CL,201812,4,2,47282,2491 -920,FR,CL,201812,4,2,143878,5278 -920,FR,CL,201812,4,2,625,42 -920,FR,CL,201812,4,2,39510,1133 -920,FR,CL,201812,4,2,50212,709 -920,FR,CL,201812,4,2,19965,1240 -920,FR,CL,201812,4,2,6017,183 -920,FR,CL,201812,4,2,46365,1781 -920,FR,CL,201812,4,2,2849,570 -920,FR,CL,201812,4,2,3188,1 -920,FR,CL,201812,9,2,1774978,218847 -931,FR,CL,201812,0,1,4011,9 -931,FR,CL,201812,3,1,2817,30 -931,FR,CL,201812,4,1,12308,36 -931,FR,CL,201812,4,1,679,1 -931,FR,CL,201812,4,1,16274,27 -931,FR,CL,201812,4,1,3096,11 -931,FR,CL,201812,0,2,1269,8 -931,FR,CL,201812,1,2,1514760,71215 -931,FR,CL,201812,1,2,65074,555 -931,FR,CL,201812,1,2,27584,5700 -931,FR,CL,201812,1,2,13554,769 -931,FR,CL,201812,1,2,1369838,48332 -931,FR,CL,201812,1,2,4864,285 -931,FR,CL,201812,1,2,150000,51580 -931,FR,CL,201812,1,2,11716,1253 -931,FR,CL,201812,1,2,210919,28257 -931,FR,CL,201812,1,2,1614305,25950 -931,FR,CL,201812,3,2,8462,850 -931,FR,CL,201812,4,2,2353128,20919 -931,FR,CL,201812,4,2,29186,69 -931,FR,CL,201812,4,2,43398,412 -931,FR,CL,201812,4,2,27778,870 -931,FR,CL,201812,4,2,22879,82 -931,FR,CL,201812,4,2,3689,124 -931,FR,CL,201812,4,2,81809,362 -931,FR,CL,201812,4,2,611,15 -931,FR,CL,201812,4,2,6268,64 -931,FR,CL,201812,4,2,245059,1916 -931,FR,CL,201812,4,2,1199,33 -931,FR,CL,201812,4,2,10950,9 -931,FR,CL,201812,4,2,50062,675 -931,FR,CL,201812,4,2,4710,6 -931,FR,CL,201812,4,2,94789,5640 -931,FR,CL,201812,4,2,1249,2 -931,FR,CL,201812,4,2,84776,589 -931,FR,CL,201812,5,2,9371,104 -939,FR,CL,201812,1,1,91,117 -939,FR,CL,201812,3,1,1113,54 -939,FR,CL,201812,4,1,9715,40 -939,FR,CL,201812,4,1,222,41 -939,FR,CL,201812,4,1,6805,35 -939,FR,CL,201812,4,1,10442,13 -939,FR,CL,201812,0,2,1022,7 -939,FR,CL,201812,1,2,949045,99733 -939,FR,CL,201812,1,2,16934,1413 -939,FR,CL,201812,1,2,114000,978 -939,FR,CL,201812,1,2,126123,1736 -939,FR,CL,201812,1,2,28610,414 -939,FR,CL,201812,1,2,39354,1850 -939,FR,CL,201812,1,2,25393,1040 -939,FR,CL,201812,1,2,2659,262 -939,FR,CL,201812,1,2,14582,67 -939,FR,CL,201812,1,2,12538,1085 -939,FR,CL,201812,1,2,492276,77996 -939,FR,CL,201812,1,2,1822442,194673 -939,FR,CL,201812,1,2,81302,16480 -939,FR,CL,201812,1,2,449289,59597 -939,FR,CL,201812,1,2,3918,270 -939,FR,CL,201812,1,2,25155,3076 -939,FR,CL,201812,1,2,2140,269 -939,FR,CL,201812,1,2,336439,63859 -939,FR,CL,201812,1,2,307637,3410 -939,FR,CL,201812,1,2,34333,494 -939,FR,CL,201812,1,2,41301,5560 -939,FR,CL,201812,3,2,142453,3912 -939,FR,CL,201812,4,2,13622281,13161 -939,FR,CL,201812,4,2,63968,1509 -939,FR,CL,201812,4,2,117161,2183 -939,FR,CL,201812,4,2,20154,225 -939,FR,CL,201812,4,2,22609,182 -939,FR,CL,201812,4,2,146161,650 -939,FR,CL,201812,4,2,828,8 -939,FR,CL,201812,4,2,14638,731 -939,FR,CL,201812,4,2,29265,853 -939,FR,CL,201812,4,2,16533,177 -939,FR,CL,201812,4,2,24374,275 -939,FR,CL,201812,4,2,3060,122 -939,FR,CL,201812,4,2,113798,1636 -939,FR,CL,201812,4,2,6988,50 -939,FR,CL,201812,4,2,7886,24 -939,FR,CL,201812,4,2,196104,14150 -939,FR,CL,201812,4,2,9523,13 -939,FR,CL,201812,4,2,326814,440 -941,FR,CL,201812,1,1,95,241 -941,FR,CL,201812,1,2,3302,193 -941,FR,CL,201812,1,2,2287,193 -941,FR,CL,201812,1,2,34317,6881 -941,FR,CL,201812,1,2,59689,20962 -941,FR,CL,201812,1,2,1080,400 -941,FR,CL,201812,1,2,53307,15575 -941,FR,CL,201812,1,2,5176,1004 -941,FR,CL,201812,4,2,369,29 -941,FR,CL,201812,4,2,5478,234 -949,FR,CL,201812,0,1,359,15 -949,FR,CL,201812,1,1,11011,1831 -949,FR,CL,201812,4,1,90,0 -949,FR,CL,201812,0,2,4111,55 -949,FR,CL,201812,1,2,168859,14573 -949,FR,CL,201812,1,2,600,16 -949,FR,CL,201812,1,2,16963,370 -949,FR,CL,201812,1,2,4352,730 -949,FR,CL,201812,1,2,142,31 -949,FR,CL,201812,1,2,28936,2714 -949,FR,CL,201812,1,2,228739,30502 -949,FR,CL,201812,1,2,40575,2973 -949,FR,CL,201812,1,2,88738,5662 -949,FR,CL,201812,1,2,2090,718 -949,FR,CL,201812,1,2,5371,810 -949,FR,CL,201812,1,2,13591,5868 -949,FR,CL,201812,1,2,4700,2747 -949,FR,CL,201812,3,2,29734,1034 -949,FR,CL,201812,4,2,70076,2096 -949,FR,CL,201812,4,2,449,56 -949,FR,CL,201812,4,2,4857,19 -949,FR,CL,201812,4,2,446,60 -949,FR,CL,201812,4,2,585,41 -949,FR,CL,201812,4,2,5900,109 -949,FR,CL,201812,4,2,57178,1089 -949,FR,CL,201812,4,2,3700,63 -949,FR,CL,201812,4,2,36499,180 -949,FR,CL,201812,4,2,25473,139 -951,FR,CL,201812,4,1,66,2 -951,FR,CL,201812,1,2,33565,2673 -951,FR,CL,201812,1,2,33025,113838 -951,FR,CL,201812,1,2,296,19 -951,FR,CL,201812,4,2,2982,281 -952,FR,CL,201812,1,2,4150,39 -952,FR,CL,201812,1,2,3746,604 -952,FR,CL,201812,1,2,239,2 -952,FR,CL,201812,1,2,141477,75015 -952,FR,CL,201812,1,2,34541,3349 -952,FR,CL,201812,3,2,225274,92264 -952,FR,CL,201812,4,2,13286,480 -952,FR,CL,201812,4,2,1428,26 -952,FR,CL,201812,4,2,4594,1420 -952,FR,CL,201812,4,2,1680,56 -961,FR,CL,201812,1,1,23982,1955 -961,FR,CL,201812,0,2,2291,6 -961,FR,CL,201812,1,2,111,5 -961,FR,CL,201812,4,2,920,0 -961,FR,CL,201812,4,2,20658,63 -961,FR,CL,201812,4,2,5120,168 -961,FR,CL,201812,4,2,955,1 -962,FR,CL,201812,1,1,1,0 -962,FR,CL,201812,3,1,195,1 -962,FR,CL,201812,4,1,62,0 -962,FR,CL,201812,0,2,277,10 -962,FR,CL,201812,1,2,46458,3564 -962,FR,CL,201812,1,2,170,7 -962,FR,CL,201812,1,2,20644,610 -962,FR,CL,201812,1,2,42107,2286 -962,FR,CL,201812,1,2,63782,22803 -962,FR,CL,201812,4,2,42611,1446 -962,FR,CL,201812,4,2,412,18 -962,FR,CL,201812,4,2,2261,40 -962,FR,CL,201812,4,2,15568,233 -962,FR,CL,201812,4,2,3198,860 -962,FR,CL,201812,4,2,5250,231 -963,FR,CL,201812,0,1,233,2 -963,FR,CL,201812,3,1,654,2 -963,FR,CL,201812,4,1,1069,40 -963,FR,CL,201812,4,1,1103,12 -963,FR,CL,201812,4,1,92,2 -963,FR,CL,201812,4,1,7922,7 -963,FR,CL,201812,4,1,128,3 -963,FR,CL,201812,0,2,2632,41 -963,FR,CL,201812,1,2,99458,3926 -963,FR,CL,201812,1,2,10955,929 -963,FR,CL,201812,1,2,58030,2154 -963,FR,CL,201812,1,2,97141,5874 -963,FR,CL,201812,1,2,9354,215 -963,FR,CL,201812,1,2,13293,549 -963,FR,CL,201812,1,2,4028,260 -963,FR,CL,201812,1,2,193769,3445 -963,FR,CL,201812,1,2,25051,333 -963,FR,CL,201812,3,2,7185,377 -963,FR,CL,201812,4,2,243875,610 -963,FR,CL,201812,4,2,3510,80 -963,FR,CL,201812,4,2,116,0 -963,FR,CL,201812,4,2,495,0 -963,FR,CL,201812,4,2,15372,285 -963,FR,CL,201812,4,2,26530,225 -963,FR,CL,201812,4,2,20005,101 -963,FR,CL,201812,4,2,14882,60 -963,FR,CL,201812,4,2,16400,164 -963,FR,CL,201812,4,2,46113,66 -963,FR,CL,201812,4,2,8014,144 -971,FR,CL,201812,4,1,20,0 -971,FR,CL,201812,1,2,8973,863 -971,FR,CL,201812,1,2,1,0 -971,FR,CL,201812,1,2,28200,802 -971,FR,CL,201812,1,2,42,3 -971,FR,CL,201812,1,2,142726,31199 -971,FR,CL,201812,1,2,11904,546 -971,FR,CL,201812,1,2,3766,244 -971,FR,CL,201812,1,2,26242,2349 -971,FR,CL,201812,4,2,3659,351 -971,FR,CL,201812,4,2,172,3 -971,FR,CL,201812,4,2,831,20 -971,FR,CL,201812,4,2,81,10 -971,FR,CL,201812,4,2,18,1 -971,FR,CL,201812,4,2,5370,780 -972,FR,CL,201812,1,2,6300,840 -972,FR,CL,201812,1,2,53564,24352 -972,FR,CL,201812,1,2,121056,31799 -972,FR,CL,201812,1,2,210355,149997 -972,FR,CL,201812,4,2,40457,3173 -972,FR,CL,201812,4,2,217193,15067 -972,FR,CL,201812,4,2,15792,6060 -973,FR,CL,201812,0,1,187,1 -973,FR,CL,201812,1,1,369507,505452 -973,FR,CL,201812,3,1,282,19 -973,FR,CL,201812,1,2,21523,8463 -973,FR,CL,201812,1,2,2144,80 -973,FR,CL,201812,1,2,388,29 -973,FR,CL,201812,1,2,104,7 -973,FR,CL,201812,1,2,1192,256 -973,FR,CL,201812,1,2,14,1 -973,FR,CL,201812,1,2,60475,32530 -973,FR,CL,201812,1,2,7080,390 -973,FR,CL,201812,3,2,22046,8841 -973,FR,CL,201812,3,2,20920,8440 -973,FR,CL,201812,4,2,4802,484 -973,FR,CL,201812,4,2,52922,8530 -973,FR,CL,201812,4,2,166,6 -973,FR,CL,201812,4,2,356,52 -973,FR,CL,201812,4,2,10961,410 -974,FR,CL,201812,1,1,4274,450 -974,FR,CL,201812,3,1,420,12 -974,FR,CL,201812,4,1,288,1 -974,FR,CL,201812,4,1,369,3 -974,FR,CL,201812,4,1,89,5 -974,FR,CL,201812,4,1,942,47 -974,FR,CL,201812,0,2,368,8 -974,FR,CL,201812,1,2,4184,364 -974,FR,CL,201812,1,2,75,21 -974,FR,CL,201812,1,2,1,1 -974,FR,CL,201812,1,2,19,3 -974,FR,CL,201812,1,2,1317,72 -974,FR,CL,201812,3,2,8130,532 -974,FR,CL,201812,4,2,12876,195 -974,FR,CL,201812,4,2,95,0 -974,FR,CL,201812,4,2,50,3 -974,FR,CL,201812,4,2,871,24 -974,FR,CL,201812,4,2,1,11 -974,FR,CL,201812,4,2,114,0 -974,FR,CL,201812,4,2,2000,290 -974,FR,CL,201812,4,2,2248,20 -975,FR,CL,201812,4,1,13775,60 -975,FR,CL,201812,0,2,366,16 -975,FR,CL,201812,1,2,10462,557 -975,FR,CL,201812,1,2,18648,1399 -975,FR,CL,201812,1,2,1805,21 -975,FR,CL,201812,1,2,16400,12789 -975,FR,CL,201812,1,2,128743,2330 -975,FR,CL,201812,1,2,152679,83284 -975,FR,CL,201812,1,2,36422,4700 -975,FR,CL,201812,3,2,13100,2115 -975,FR,CL,201812,4,2,27372,363 -975,FR,CL,201812,4,2,448,4 -975,FR,CL,201812,4,2,4527,420 -975,FR,CL,201812,4,2,24046,289 -975,FR,CL,201812,4,2,29,28 -976,FR,CL,201812,1,1,249938,283349 -976,FR,CL,201812,1,1,39821,49563 -976,FR,CL,201812,3,1,127,0 -976,FR,CL,201812,1,2,6065,163 -976,FR,CL,201812,1,2,59,14 -976,FR,CL,201812,1,2,244507,68653 -976,FR,CL,201812,1,2,77401,4456 -976,FR,CL,201812,1,2,186238,45426 -976,FR,CL,201812,1,2,593845,110636 -976,FR,CL,201812,1,2,108504,19043 -976,FR,CL,201812,4,2,288,7 -976,FR,CL,201812,4,2,9122,37 -976,FR,CL,201812,4,2,162,28 -979,FR,CL,201812,0,1,568,3 -979,FR,CL,201812,3,1,2382,24 -979,FR,CL,201812,4,1,2936,90 -979,FR,CL,201812,4,1,387,4 -979,FR,CL,201812,4,1,2309,18 -979,FR,CL,201812,4,1,5573,545 -979,FR,CL,201812,4,1,1991,20 -979,FR,CL,201812,0,2,6231,75 -979,FR,CL,201812,1,2,560494,60728 -979,FR,CL,201812,1,2,6307,189 -979,FR,CL,201812,1,2,14768,119 -979,FR,CL,201812,1,2,294002,117280 -979,FR,CL,201812,1,2,3570,240 -979,FR,CL,201812,1,2,4842,345 -979,FR,CL,201812,1,2,13276,1720 -979,FR,CL,201812,1,2,333,85 -979,FR,CL,201812,1,2,67083,4837 -979,FR,CL,201812,1,2,22190,3909 -979,FR,CL,201812,1,2,16468,6283 -979,FR,CL,201812,3,2,8765,1136 -979,FR,CL,201812,4,2,515509,4278 -979,FR,CL,201812,4,2,21384,600 -979,FR,CL,201812,4,2,6834,93 -979,FR,CL,201812,4,2,158861,7009 -979,FR,CL,201812,4,2,6920,179 -979,FR,CL,201812,4,2,43118,367 -979,FR,CL,201812,4,2,9136,100 -979,FR,CL,201812,4,2,345,2 -979,FR,CL,201812,4,2,37983,256 -979,FR,CL,201812,4,2,345856,750 -979,FR,CL,201812,4,2,7220,113 -979,FR,CL,201812,4,2,2170,10 -979,FR,CL,201812,4,2,231188,4000 -979,FR,CL,201812,4,2,18299,90 -979,FR,CL,201812,4,2,99483,221 -979,FR,CL,201812,5,2,2151,41 -999,FR,CL,201812,0,1,4386,0 -999,FR,CL,201812,1,1,2645,0 -999,FR,CL,201812,1,1,18970,0 -999,FR,CL,201812,1,2,18838,2475 -999,FR,CL,201812,1,2,1489,750 -999,FR,CL,201812,1,2,5935,780 -999,FR,CL,201812,1,2,2109,592 -999,FR,CL,201812,1,2,9330,425 -999,FR,CL,201812,1,2,35380,480 -999,FR,CL,201812,1,2,469917,116583 -999,FR,CL,201812,1,2,27347,8000 -999,FR,CL,201812,1,2,32201,35500 -999,FR,CL,201812,1,2,132,17 -999,FR,CL,201812,1,2,128727,44813 -999,FR,CL,201812,1,2,20020,25215 -999,FR,CL,201812,3,2,1298,520 -999,FR,CL,201812,4,2,29536,174 -999,FR,CL,201812,4,2,182,1 -999,FR,CL,201812,4,2,2442,80 -999,FR,CL,201812,4,2,3043,0 -999,FR,CL,201812,4,2,7163,2551 -999,FR,CL,201812,4,2,1303,30 -999,FR,CL,201812,4,2,2417,63 -999,FR,CL,201812,8,2,222936,206773 -019,FR,BO,201812,1,1,180255,60000 -019,FR,BO,201812,1,1,51942,20000 -019,FR,BO,201812,1,1,50964,20000 -019,FR,BO,201812,1,1,35525,20000 -031,FR,BO,201812,4,1,6,8 -035,FR,BO,201812,1,1,162321,16000 -056,FR,BO,201812,1,1,28686,22363 -056,FR,BO,201812,1,1,37342,23198 -056,FR,BO,201812,1,1,133656,90087 -056,FR,BO,201812,1,1,64868,45512 -099,FR,BO,201812,4,2,13700,800 -099,FR,BO,201812,4,2,32314,289 -131,FR,BO,201812,0,1,196413,38698 -132,FR,BO,201812,0,2,60,2 -139,FR,BO,201812,1,2,13828,3648 -163,FR,BO,201812,1,1,33066,9008 -165,FR,BO,201812,1,1,25259,20000 -179,FR,BO,201812,1,2,44486,8080 -181,FR,BO,201812,1,1,122102,40000 -181,FR,BO,201812,1,1,128532,40000 -341,FR,BO,201812,1,2,69888,29432 -341,FR,BO,201812,1,2,133928,58864 -568,FR,BO,201812,4,2,7220,55 -691,FR,BO,201812,4,2,271,1 -819,FR,BO,201812,1,2,4572,21600 -819,FR,BO,201812,1,2,20784,63200 -819,FR,BO,201812,4,2,3663,50 -893,FR,BO,201812,1,2,26360,1964 -893,FR,BO,201812,1,2,13816,224 -893,FR,BO,201812,1,2,306990,4409 -893,FR,BO,201812,3,2,22010,589 -893,FR,BO,201812,4,2,8531,27 -893,FR,BO,201812,4,2,71733,97 -893,FR,BO,201812,4,2,49254,1160 -893,FR,BO,201812,4,2,52148,1960 -893,FR,BO,201812,4,2,31235,770 -896,FR,BO,201812,1,2,250717,25200 -896,FR,BO,201812,1,2,826712,36748 -896,FR,BO,201812,4,2,864461,30208 -896,FR,BO,201812,4,2,18983,528 -896,FR,BO,201812,4,2,32644,340 -910,FR,BO,201812,1,2,10180,476 -910,FR,BO,201812,3,2,30000,4170 -910,FR,BO,201812,4,2,857795,690 -910,FR,BO,201812,4,2,48079,190 -910,FR,BO,201812,4,2,1147,400 -920,FR,BO,201812,1,2,323433,32960 -920,FR,BO,201812,1,2,60865,1754 -920,FR,BO,201812,1,2,13137,9600 -920,FR,BO,201812,1,2,92800,13405 -931,FR,BO,201812,1,2,15559600,11955 -931,FR,BO,201812,1,2,960,28 -931,FR,BO,201812,4,2,22692,484 -931,FR,BO,201812,4,2,37611,6 -931,FR,BO,201812,4,2,9702,330 -931,FR,BO,201812,4,2,2291,13 -939,FR,BO,201812,1,2,2297,465 -939,FR,BO,201812,1,2,36239,4890 -939,FR,BO,201812,1,2,65939,7610 -939,FR,BO,201812,4,2,75192,215 -939,FR,BO,201812,4,2,5721,6 -939,FR,BO,201812,4,2,18224,169 -939,FR,BO,201812,4,2,2277,120 -939,FR,BO,201812,4,2,1113,0 -939,FR,BO,201812,4,2,38156,2190 -939,FR,BO,201812,4,2,4686,41 -949,FR,BO,201812,1,2,45036,13251 -949,FR,BO,201812,4,2,144,1 -951,FR,BO,201812,1,2,566,28 -952,FR,BO,201812,1,2,7547,1329 -952,FR,BO,201812,1,2,20122,11620 -952,FR,BO,201812,4,2,12625,111 -952,FR,BO,201812,4,2,1153,250 -962,FR,BO,201812,4,1,146,3 -962,FR,BO,201812,4,2,2670,360 -963,FR,BO,201812,3,1,2094,40 -963,FR,BO,201812,4,1,8245,202 -963,FR,BO,201812,4,1,3840,70 -963,FR,BO,201812,4,1,2241,26 -963,FR,BO,201812,4,2,146,10 -971,FR,BO,201812,1,2,171,1 -971,FR,BO,201812,4,2,59,0 -971,FR,BO,201812,4,2,3,0 -971,FR,BO,201812,4,2,1352,260 -973,FR,BO,201812,4,2,12899,380 -974,FR,BO,201812,3,2,472,12 -974,FR,BO,201812,4,2,2746,153 -974,FR,BO,201812,4,2,35,14 -974,FR,BO,201812,4,2,3739,5 -975,FR,BO,201812,3,1,3543,40 -975,FR,BO,201812,1,2,231030,14516 -975,FR,BO,201812,3,2,5,6 -976,FR,BO,201812,1,2,484,60 -979,FR,BO,201812,3,1,384,10 -979,FR,BO,201812,4,1,3831,25 -979,FR,BO,201812,0,2,100,1 -979,FR,BO,201812,1,2,7271,262 -979,FR,BO,201812,1,2,76650,16299 -979,FR,BO,201812,4,2,97527,711 -979,FR,BO,201812,4,2,12477,74 -979,FR,BO,201812,4,2,29339,180 -979,FR,BO,201812,4,2,26121,75 -999,FR,BO,201812,4,1,10261,0 -999,FR,BO,201812,1,2,34345,3566 -999,FR,BO,201812,1,2,83904,40000 -999,FR,BO,201812,4,2,4,0 -999,FR,BO,201812,4,2,5473,55 -056,FR,PY,201812,1,1,31886,22992 -057,FR,PY,201812,1,1,45258,96000 -099,FR,PY,201812,1,1,84982,20320 -112,FR,PY,201812,1,1,249941,300000 -121,FR,PY,201812,1,2,38477,974 -121,FR,PY,201812,4,2,6,6 -139,FR,PY,201812,1,1,247,5 -139,FR,PY,201812,0,2,80,5 -139,FR,PY,201812,1,2,1443,405 -144,FR,PY,201812,1,2,9285,1338 -179,FR,PY,201812,1,2,91978,34800 -179,FR,PY,201812,1,2,26560,10000 -341,FR,PY,201812,1,2,29393,15008 -341,FR,PY,201812,1,2,92934,41221 -341,FR,PY,201812,1,2,96438,41164 -542,FR,PY,201812,1,2,8673,13260 -542,FR,PY,201812,3,2,29010,31370 -542,FR,PY,201812,3,2,44232,46925 -568,FR,PY,201812,4,2,75,0 -819,FR,PY,201812,1,1,1347635,2020290 -891,FR,PY,201812,4,2,20,0 -892,FR,PY,201812,1,2,112,2 -893,FR,PY,201812,1,1,26822,540 -893,FR,PY,201812,1,1,199269,4320 -893,FR,PY,201812,3,1,50,5 -893,FR,PY,201812,3,1,107,4 -893,FR,PY,201812,4,1,23962,360 -893,FR,PY,201812,0,2,77,0 -893,FR,PY,201812,1,2,130617,8180 -893,FR,PY,201812,1,2,39918,2900 -893,FR,PY,201812,1,2,368221,15740 -893,FR,PY,201812,1,2,308422,17550 -893,FR,PY,201812,1,2,335211,13361 -893,FR,PY,201812,1,2,151770,5100 -893,FR,PY,201812,4,2,68844,353 -893,FR,PY,201812,4,2,11153,57 -893,FR,PY,201812,4,2,19455,580 -893,FR,PY,201812,4,2,35653,570 -893,FR,PY,201812,4,2,10058,150 -893,FR,PY,201812,4,2,86767,1658 -893,FR,PY,201812,4,2,131281,657 -893,FR,PY,201812,4,2,1127,13 -895,FR,PY,201812,1,1,13867,18525 -896,FR,PY,201812,1,2,1308615,42703 -896,FR,PY,201812,1,2,8666,3300 -896,FR,PY,201812,1,2,1538,180 -896,FR,PY,201812,4,2,19996,135 -896,FR,PY,201812,4,2,22039,289 -896,FR,PY,201812,4,2,30849,1080 -910,FR,PY,201812,1,2,747,54 -910,FR,PY,201812,1,2,25,0 -910,FR,PY,201812,1,2,35107,2041 -910,FR,PY,201812,3,2,80900,10190 -910,FR,PY,201812,3,2,36357,5231 -910,FR,PY,201812,4,2,6586,345 -910,FR,PY,201812,4,2,17,0 -910,FR,PY,201812,4,2,2281,380 -920,FR,PY,201812,4,2,4520,177 -920,FR,PY,201812,4,2,1265,180 -931,FR,PY,201812,3,1,651,13 -931,FR,PY,201812,1,2,6994,231 -931,FR,PY,201812,1,2,4181,26 -931,FR,PY,201812,1,2,27157,2201 -931,FR,PY,201812,1,2,1333,150 -931,FR,PY,201812,1,2,102910,14835 -931,FR,PY,201812,3,2,20454,985 -931,FR,PY,201812,3,2,21746,2208 -931,FR,PY,201812,3,2,1162,61 -931,FR,PY,201812,4,2,65655,386 -931,FR,PY,201812,4,2,2249,19 -931,FR,PY,201812,4,2,360032,192 -931,FR,PY,201812,4,2,7963,1040 -931,FR,PY,201812,4,2,5339,8 -939,FR,PY,201812,1,2,16344,544 -939,FR,PY,201812,1,2,16503,468 -939,FR,PY,201812,3,2,131,5 -939,FR,PY,201812,4,2,35158,218 -939,FR,PY,201812,4,2,23689,378 -939,FR,PY,201812,4,2,6793,281 -939,FR,PY,201812,4,2,11500,100 -939,FR,PY,201812,4,2,106917,8470 -941,FR,PY,201812,4,2,520,12 -949,FR,PY,201812,1,2,1793,12 -949,FR,PY,201812,3,2,86,2 -949,FR,PY,201812,4,2,214,0 -951,FR,PY,201812,1,2,729,18 -951,FR,PY,201812,4,2,591,10 -952,FR,PY,201812,3,2,22699,6902 -952,FR,PY,201812,4,2,2079,151 -961,FR,PY,201812,1,2,5800,1040 -962,FR,PY,201812,1,2,2220,217 -962,FR,PY,201812,3,2,6495,591 -962,FR,PY,201812,4,2,194,3 -963,FR,PY,201812,1,2,18293,131 -963,FR,PY,201812,1,2,12187,577 -971,FR,PY,201812,1,2,11,0 -971,FR,PY,201812,1,2,5444,123 -971,FR,PY,201812,4,2,2715,63 -971,FR,PY,201812,4,2,27,0 -974,FR,PY,201812,4,1,125,7 -974,FR,PY,201812,0,2,30,1 -974,FR,PY,201812,1,2,174,7 -974,FR,PY,201812,4,2,1965,22 -975,FR,PY,201812,1,2,1200,170 -975,FR,PY,201812,1,2,252,9 -976,FR,PY,201812,1,2,553,500 -979,FR,PY,201812,4,1,3205,2 -979,FR,PY,201812,0,2,300,14 -979,FR,PY,201812,1,2,67,4 -979,FR,PY,201812,1,2,4186,95 -979,FR,PY,201812,1,2,5461,3000 -979,FR,PY,201812,1,2,17727,2268 -979,FR,PY,201812,3,2,6156,30 -979,FR,PY,201812,3,2,62674,738 -979,FR,PY,201812,4,2,37710,603 -979,FR,PY,201812,4,2,276,0 -979,FR,PY,201812,4,2,86,1 -979,FR,PY,201812,4,2,6652,363 -979,FR,PY,201812,4,2,20716,100 -979,FR,PY,201812,4,2,10666,59 -979,FR,PY,201812,4,2,39816,1801 -979,FR,PY,201812,4,2,3772,460 -999,FR,PY,201812,3,1,860,0 -999,FR,PY,201812,1,2,24734,8960 -999,FR,PY,201812,1,2,6539,11250 -999,FR,PY,201812,1,2,2500,0 -999,FR,PY,201812,1,2,12896,1620 -999,FR,PY,201812,4,2,4322,27 -016,FR,UY,201812,1,1,172266,384240 -016,FR,UY,201812,8,1,484446,1057500 -019,FR,UY,201812,1,2,947,173 -020,FR,UY,201812,1,2,53395,77000 -056,FR,UY,201812,1,1,41905,26722 -056,FR,UY,201812,1,1,36678,24072 -099,FR,UY,201812,1,1,21896,44457 -099,FR,UY,201812,3,1,3507,300 -099,FR,UY,201812,1,2,186836,51745 -099,FR,UY,201812,4,2,38579,60 -099,FR,UY,201812,4,2,14521,94 -121,FR,UY,201812,1,2,12585,963 -121,FR,UY,201812,1,2,85457,29425 -121,FR,UY,201812,1,2,4626,619 -122,FR,UY,201812,1,2,3469,18876 -125,FR,UY,201812,1,2,7400,318 -125,FR,UY,201812,1,2,25745,2988 -125,FR,UY,201812,1,2,6454,3066 -125,FR,UY,201812,1,2,35429,13211 -132,FR,UY,201812,1,2,23350,559 -135,FR,UY,201812,1,2,124329,3045 -135,FR,UY,201812,1,2,57171,18800 -136,FR,UY,201812,1,2,13582,792 -139,FR,UY,201812,4,1,122,16 -139,FR,UY,201812,1,2,89765,2541 -139,FR,UY,201812,1,2,19135,11718 -139,FR,UY,201812,4,2,11272,278 -141,FR,UY,201812,0,1,16808,2096 -141,FR,UY,201812,1,1,81140,9671 -141,FR,UY,201812,1,1,88344,11999 -141,FR,UY,201812,4,1,117929,22597 -144,FR,UY,201812,4,2,4868,383 -144,FR,UY,201812,4,2,4630,484 -147,FR,UY,201812,4,2,2660,23 -148,FR,UY,201812,0,1,44679,122 -163,FR,UY,201812,1,2,3392,102 -163,FR,UY,201812,1,2,14565,6852 -164,FR,UY,201812,4,1,127,17 -182,FR,UY,201812,1,1,157452,12240 -341,FR,UY,201812,1,2,30493,14402 -341,FR,UY,201812,4,2,31,1 -522,FR,UY,201812,4,2,1589,160 -542,FR,UY,201812,4,2,12,0 -551,FR,UY,201812,1,2,52,0 -551,FR,UY,201812,4,2,85,0 -552,FR,UY,201812,1,2,880,110 -552,FR,UY,201812,4,2,30,0 -565,FR,UY,201812,1,2,6566,100 -568,FR,UY,201812,1,2,5551,512 -568,FR,UY,201812,4,2,190,1 -691,FR,UY,201812,1,2,41,0 -691,FR,UY,201812,4,2,39,1 -723,FR,UY,201812,1,2,102,6 -813,FR,UY,201812,1,2,78,4 -819,FR,UY,201812,1,2,41399,1383 -819,FR,UY,201812,1,2,4792,3000 -819,FR,UY,201812,1,2,85504,24794 -819,FR,UY,201812,1,2,31614,1000 -819,FR,UY,201812,1,2,18992,4101 -819,FR,UY,201812,3,2,26032,10000 -819,FR,UY,201812,4,2,9277,8 -819,FR,UY,201812,4,2,9659,20 -820,FR,UY,201812,1,2,8722,10000 -841,FR,UY,201812,1,1,857294,1366757 -841,FR,UY,201812,1,1,270116,442180 -891,FR,UY,201812,1,2,2069,300 -891,FR,UY,201812,1,2,55313,24221 -891,FR,UY,201812,3,2,2074,119 -891,FR,UY,201812,4,2,323,66 -892,FR,UY,201812,1,2,5679,1333 -892,FR,UY,201812,1,2,70,1 -892,FR,UY,201812,4,2,2276,0 -893,FR,UY,201812,0,1,2965,19 -893,FR,UY,201812,1,2,1389054,24878 -893,FR,UY,201812,1,2,109841,2540 -893,FR,UY,201812,1,2,1126644,16671 -893,FR,UY,201812,1,2,1052237,34601 -893,FR,UY,201812,1,2,24877,274 -893,FR,UY,201812,4,2,255725,2822 -893,FR,UY,201812,4,2,287935,2122 -893,FR,UY,201812,4,2,22684,103 -893,FR,UY,201812,4,2,16165,65 -893,FR,UY,201812,4,2,7417,37 -893,FR,UY,201812,4,2,121130,184 -893,FR,UY,201812,4,2,29229,95 -893,FR,UY,201812,4,2,15119,330 -896,FR,UY,201812,3,1,300,21 -896,FR,UY,201812,1,2,119206,9238 -896,FR,UY,201812,1,2,2418,2200 -896,FR,UY,201812,1,2,85080,36576 -896,FR,UY,201812,1,2,3400,11280 -896,FR,UY,201812,1,2,147,24 -896,FR,UY,201812,4,2,85553,2822 -896,FR,UY,201812,4,2,10157,91 -896,FR,UY,201812,4,2,12828,495 -896,FR,UY,201812,4,2,18987,300 -910,FR,UY,201812,3,1,58000,6460 -910,FR,UY,201812,4,1,64,0 -910,FR,UY,201812,1,2,87959,10006 -910,FR,UY,201812,1,2,867,120 -910,FR,UY,201812,1,2,58587,2581 -910,FR,UY,201812,1,2,2853103,475631 -910,FR,UY,201812,1,2,35552,2361 -910,FR,UY,201812,1,2,30941,5534 -910,FR,UY,201812,1,2,64704,11656 -910,FR,UY,201812,3,2,52935,7840 -910,FR,UY,201812,3,2,199079,26140 -910,FR,UY,201812,4,2,170746,1715 -910,FR,UY,201812,4,2,159,10 -910,FR,UY,201812,4,2,1335,21 -910,FR,UY,201812,4,2,12365,2550 -910,FR,UY,201812,4,2,2570,81 -920,FR,UY,201812,1,2,80421,16193 -920,FR,UY,201812,4,2,340,75 -920,FR,UY,201812,4,2,14460,45 -920,FR,UY,201812,4,2,5051,32 -931,FR,UY,201812,3,1,2073,91 -931,FR,UY,201812,4,1,7986,13 -931,FR,UY,201812,0,2,500,20 -931,FR,UY,201812,1,2,20946,777 -931,FR,UY,201812,1,2,2453,217 -931,FR,UY,201812,1,2,94722,4273 -931,FR,UY,201812,1,2,65646,7714 -931,FR,UY,201812,3,2,257,22 -931,FR,UY,201812,4,2,326039,1607 -931,FR,UY,201812,4,2,2152,3 -931,FR,UY,201812,4,2,35348,74 -931,FR,UY,201812,4,2,7692,164 -931,FR,UY,201812,4,2,54974,2470 -931,FR,UY,201812,4,2,20579,106 -939,FR,UY,201812,3,1,2724,72 -939,FR,UY,201812,4,1,61,0 -939,FR,UY,201812,1,2,1024410,206720 -939,FR,UY,201812,1,2,19403,399 -939,FR,UY,201812,1,2,152,13 -939,FR,UY,201812,1,2,94075,5608 -939,FR,UY,201812,1,2,11443,1340 -939,FR,UY,201812,1,2,68021,11209 -939,FR,UY,201812,3,2,235,0 -939,FR,UY,201812,3,2,8650,362 -939,FR,UY,201812,4,2,132047,934 -939,FR,UY,201812,4,2,2328,4 -939,FR,UY,201812,4,2,9454,23 -939,FR,UY,201812,4,2,1309,70 -939,FR,UY,201812,4,2,1812,55 -939,FR,UY,201812,4,2,15804,245 -939,FR,UY,201812,4,2,119512,200 -939,FR,UY,201812,4,2,19469,54 -939,FR,UY,201812,4,2,37001,1610 -939,FR,UY,201812,4,2,11546,76 -941,FR,UY,201812,1,2,18668,10877 -949,FR,UY,201812,3,1,108143,65422 -949,FR,UY,201812,1,2,3381,200 -949,FR,UY,201812,1,2,104407,16278 -949,FR,UY,201812,1,2,1293,436 -949,FR,UY,201812,4,2,17788,332 -949,FR,UY,201812,4,2,25,0 -949,FR,UY,201812,4,2,33,0 -949,FR,UY,201812,4,2,5579,70 -949,FR,UY,201812,4,2,2980,88 -949,FR,UY,201812,4,2,1305,4 -949,FR,UY,201812,4,2,4609,17 -951,FR,UY,201812,1,2,532,5 -951,FR,UY,201812,1,2,6286,406 -951,FR,UY,201812,4,2,940,57 -952,FR,UY,201812,3,1,165,1 -952,FR,UY,201812,1,2,521,94 -952,FR,UY,201812,1,2,219,3 -952,FR,UY,201812,3,2,21803,16331 -952,FR,UY,201812,4,2,80,12 -952,FR,UY,201812,4,2,740,72 -961,FR,UY,201812,3,1,6109,180 -961,FR,UY,201812,4,1,39388,1221 -962,FR,UY,201812,1,2,197,3 -962,FR,UY,201812,1,2,5000,969 -962,FR,UY,201812,1,2,638,115 -962,FR,UY,201812,1,2,1500,447 -962,FR,UY,201812,1,2,2347,234 -962,FR,UY,201812,1,2,421,13 -962,FR,UY,201812,4,2,3300,32 -963,FR,UY,201812,0,1,72,1 -963,FR,UY,201812,3,1,299,2 -963,FR,UY,201812,4,1,403,7 -963,FR,UY,201812,1,2,12459,300 -963,FR,UY,201812,1,2,935,169 -963,FR,UY,201812,1,2,10600,750 -963,FR,UY,201812,1,2,9618,345 -963,FR,UY,201812,1,2,195840,9310 -963,FR,UY,201812,1,2,14531,485 -963,FR,UY,201812,3,2,24423,166 -963,FR,UY,201812,4,2,3712,57 -963,FR,UY,201812,4,2,10478,115 -963,FR,UY,201812,4,2,1209,7 -971,FR,UY,201812,1,2,37632,2239 -971,FR,UY,201812,1,2,28603,1665 -971,FR,UY,201812,4,2,3114,26 -971,FR,UY,201812,4,2,64,5 -972,FR,UY,201812,4,2,260,0 -972,FR,UY,201812,4,2,240,33 -973,FR,UY,201812,1,2,8018,2512 -973,FR,UY,201812,1,2,239,43 -973,FR,UY,201812,1,2,298,42 -973,FR,UY,201812,1,2,21834,1165 -974,FR,UY,201812,1,2,725,19 -974,FR,UY,201812,1,2,24073,1662 -974,FR,UY,201812,3,2,400,199 -974,FR,UY,201812,4,2,30093,536 -974,FR,UY,201812,4,2,1572,450 -974,FR,UY,201812,4,2,1590,2 -974,FR,UY,201812,4,2,1250,57 -975,FR,UY,201812,1,2,4358,231 -975,FR,UY,201812,1,2,166,30 -975,FR,UY,201812,1,2,382,1 -975,FR,UY,201812,1,2,20417,1341 -975,FR,UY,201812,1,2,71513,9475 -975,FR,UY,201812,4,2,1075,26 -975,FR,UY,201812,4,2,2687,100 -975,FR,UY,201812,4,2,2636,254 -976,FR,UY,201812,1,1,151299,99027 -976,FR,UY,201812,1,1,72413,52105 -976,FR,UY,201812,1,2,338,61 -976,FR,UY,201812,1,2,42701,3015 -979,FR,UY,201812,4,1,2795,49 -979,FR,UY,201812,1,2,1663,33 -979,FR,UY,201812,1,2,15744,777 -979,FR,UY,201812,1,2,195111,14802 -979,FR,UY,201812,1,2,10730,4394 -979,FR,UY,201812,1,2,12113,769 -979,FR,UY,201812,1,2,56,0 -979,FR,UY,201812,4,2,123358,348 -979,FR,UY,201812,4,2,6043,15 -979,FR,UY,201812,4,2,43623,85 -979,FR,UY,201812,4,2,77084,779 -979,FR,UY,201812,4,2,3100,45 -979,FR,UY,201812,4,2,2465,3 -979,FR,UY,201812,4,2,16768,640 -979,FR,UY,201812,4,2,40728,80 -999,FR,UY,201812,1,2,17999,758 -999,FR,UY,201812,1,2,392,71 -999,FR,UY,201812,1,2,366,0 -999,FR,UY,201812,1,2,43755,17000 -999,FR,UY,201812,1,2,1261,388 -999,FR,UY,201812,4,2,183,0 -999,FR,UY,201812,4,2,1103,25 -999,FR,UY,201812,4,2,1200,10 -001,FR,AR,201812,3,2,5800,500 -015,FR,AR,201812,1,1,26944,53460 -015,FR,AR,201812,4,1,80,2 -015,FR,AR,201812,4,2,1073,117 -035,FR,AR,201812,4,1,279788,37480 -035,FR,AR,201812,4,1,19219,4600 -035,FR,AR,201812,4,1,16295,2800 -056,FR,AR,201812,1,2,14927,13400 -057,FR,AR,201812,1,2,56157,14200 -099,FR,AR,201812,1,2,5540,3000 -099,FR,AR,201812,1,2,38520,12000 -099,FR,AR,201812,1,2,132554,8465 -099,FR,AR,201812,1,2,21132,10000 -099,FR,AR,201812,1,2,10920,8000 -099,FR,AR,201812,1,2,74332,18000 -099,FR,AR,201812,4,2,274932,38 -099,FR,AR,201812,4,2,112613,611 -099,FR,AR,201812,4,2,11250,39 -111,FR,AR,201812,4,2,75,30 -112,FR,AR,201812,1,1,70272,96000 -121,FR,AR,201812,0,1,20639,2435 -121,FR,AR,201812,1,1,376407,72560 -121,FR,AR,201812,1,1,417076,81964 -121,FR,AR,201812,3,1,20017,1922 -121,FR,AR,201812,4,1,218,9 -121,FR,AR,201812,4,1,741,9 -121,FR,AR,201812,4,1,864,13 -121,FR,AR,201812,1,2,94450,630 -121,FR,AR,201812,1,2,9563,516 -121,FR,AR,201812,1,2,47725,4875 -121,FR,AR,201812,1,2,13371,4298 -121,FR,AR,201812,3,2,68844,8249 -122,FR,AR,201812,1,1,15980,14182 -122,FR,AR,201812,1,1,285,212 -125,FR,AR,201812,4,1,258,5 -125,FR,AR,201812,1,2,4833,75 -128,FR,AR,201812,1,2,227,528 -131,FR,AR,201812,1,2,3216,51 -131,FR,AR,201812,3,2,8593,296 -132,FR,AR,201812,1,2,30113,1395 -132,FR,AR,201812,4,2,14213,633 -133,FR,AR,201812,1,1,117819,42691 -133,FR,AR,201812,1,2,1162,18 -133,FR,AR,201812,3,2,3992,117 -134,FR,AR,201812,0,1,83983,15200 -135,FR,AR,201812,1,2,6050,132 -136,FR,AR,201812,0,1,88353,38654 -136,FR,AR,201812,1,1,139766,59920 -136,FR,AR,201812,4,2,20,1 -139,FR,AR,201812,1,1,72249,20005 -139,FR,AR,201812,1,2,23387,1656 -139,FR,AR,201812,1,2,41206,10881 -139,FR,AR,201812,1,2,23830,3578 -139,FR,AR,201812,1,2,100502,52526 -139,FR,AR,201812,1,2,10073,1280 -139,FR,AR,201812,3,2,770,150 -139,FR,AR,201812,3,2,2387,174 -139,FR,AR,201812,4,2,44755,1000 -139,FR,AR,201812,4,2,3092,304 -141,FR,AR,201812,1,1,91534,12506 -141,FR,AR,201812,4,1,181804,31146 -142,FR,AR,201812,1,1,407615,66016 -142,FR,AR,201812,1,1,71867,24010 -142,FR,AR,201812,1,1,115431,12480 -142,FR,AR,201812,1,1,38381,23810 -142,FR,AR,201812,1,1,162575,22200 -142,FR,AR,201812,1,1,833913,65820 -142,FR,AR,201812,1,1,317204,44400 -142,FR,AR,201812,1,1,153552,24000 -142,FR,AR,201812,4,1,1348,175 -143,FR,AR,201812,4,2,62,24 -144,FR,AR,201812,1,2,41046,6870 -144,FR,AR,201812,1,2,50145,4604 -144,FR,AR,201812,4,2,1185,300 -162,FR,AR,201812,1,2,201,200 -163,FR,AR,201812,1,2,2537,2400 -164,FR,AR,201812,1,1,89666,45000 -164,FR,AR,201812,1,1,393276,157550 -164,FR,AR,201812,3,1,23399,7280 -164,FR,AR,201812,4,1,13440,1344 -164,FR,AR,201812,1,2,26519,8349 -165,FR,AR,201812,1,1,70711,72000 -165,FR,AR,201812,1,1,21821,22360 -165,FR,AR,201812,1,1,22516,20000 -165,FR,AR,201812,1,1,23543,21000 -165,FR,AR,201812,1,1,263528,270000 -165,FR,AR,201812,1,1,64669,73940 -165,FR,AR,201812,1,1,42037,46000 -165,FR,AR,201812,1,1,36109,45660 -165,FR,AR,201812,1,1,117542,135000 -165,FR,AR,201812,1,1,35768,40000 -165,FR,AR,201812,1,1,62323,69000 -165,FR,AR,201812,1,1,25229,23000 -165,FR,AR,201812,3,1,34496,40000 -166,FR,AR,201812,4,1,112515,623 -166,FR,AR,201812,4,1,23373,155 -166,FR,AR,201812,1,2,5150,4111 -166,FR,AR,201812,1,2,17973,16161 -166,FR,AR,201812,4,2,30,31 -172,FR,AR,201812,1,1,1732037,5186230 -179,FR,AR,201812,1,1,405338,315680 -181,FR,AR,201812,1,1,32932,24960 -181,FR,AR,201812,1,1,457868,383940 -182,FR,AR,201812,1,1,59057,5160 -182,FR,AR,201812,1,1,157328,10800 -182,FR,AR,201812,1,1,338702,361600 -182,FR,AR,201812,3,1,8812,20810 -182,FR,AR,201812,3,2,3342,520 -182,FR,AR,201812,4,2,6162,37 -325,FR,AR,201812,4,2,1103,4 -341,FR,AR,201812,1,2,619,83 -341,FR,AR,201812,1,2,51372,20300 -341,FR,AR,201812,1,2,123518,60032 -341,FR,AR,201812,1,2,139028,55522 -341,FR,AR,201812,1,2,7155,4300 -341,FR,AR,201812,1,2,28277,18454 -341,FR,AR,201812,1,2,88766,43091 -341,FR,AR,201812,3,2,967,8 -341,FR,AR,201812,3,2,32296,40220 -341,FR,AR,201812,4,2,7,0 -512,FR,AR,201812,1,2,25801,15650 -533,FR,AR,201812,1,2,8621,563 -536,FR,AR,201812,3,2,65448,44480 -542,FR,AR,201812,2,2,16665,19740 -542,FR,AR,201812,3,2,19906,23610 -542,FR,AR,201812,3,2,324828,199398 -542,FR,AR,201812,4,2,3299,108 -551,FR,AR,201812,1,2,26930,1834 -551,FR,AR,201812,1,2,4656,449 -551,FR,AR,201812,1,2,12818,638 -551,FR,AR,201812,4,2,3625,120 -551,FR,AR,201812,4,2,7516,3 -552,FR,AR,201812,1,2,11259,162 -552,FR,AR,201812,1,2,5545,1146 -552,FR,AR,201812,1,2,661,58 -552,FR,AR,201812,4,2,230,0 -552,FR,AR,201812,4,2,10,0 -565,FR,AR,201812,4,2,34435,602 -565,FR,AR,201812,4,2,6600,100 -568,FR,AR,201812,3,1,114,4 -568,FR,AR,201812,1,2,640,123 -568,FR,AR,201812,1,2,8463,314 -568,FR,AR,201812,1,2,36294,3387 -568,FR,AR,201812,1,2,1393,54 -568,FR,AR,201812,1,2,67438,3362 -568,FR,AR,201812,4,2,7165,502 -568,FR,AR,201812,4,2,9769,400 -611,FR,AR,201812,3,1,342,24 -614,FR,AR,201812,1,1,44277,110000 -614,FR,AR,201812,1,2,24793,44000 -614,FR,AR,201812,1,2,1830,290 -621,FR,AR,201812,1,2,75,5 -639,FR,AR,201812,1,1,7301,20000 -639,FR,AR,201812,1,2,4354,24000 -641,FR,AR,201812,1,2,6067,8400 -691,FR,AR,201812,1,1,1,0 -691,FR,AR,201812,1,2,137,0 -691,FR,AR,201812,1,2,16156,11406 -691,FR,AR,201812,4,2,14,0 -692,FR,AR,201812,1,2,13268,22400 -692,FR,AR,201812,3,2,169342,311782 -692,FR,AR,201812,4,2,57,30 -813,FR,AR,201812,1,2,33545,25550 -819,FR,AR,201812,1,1,227890,20000 -819,FR,AR,201812,1,1,79496,48000 -819,FR,AR,201812,3,1,206,300 -819,FR,AR,201812,4,1,518,0 -819,FR,AR,201812,1,2,382049,7564 -819,FR,AR,201812,1,2,2776,11 -819,FR,AR,201812,1,2,246114,24205 -819,FR,AR,201812,1,2,8891,19500 -819,FR,AR,201812,1,2,156214,6000 -819,FR,AR,201812,1,2,62334,24500 -819,FR,AR,201812,1,2,13820,400 -819,FR,AR,201812,1,2,2665,21600 -819,FR,AR,201812,1,2,199898,7310 -819,FR,AR,201812,1,2,11860,610 -819,FR,AR,201812,1,2,49559,60000 -819,FR,AR,201812,3,2,12186,1440 -819,FR,AR,201812,3,2,1550,400 -819,FR,AR,201812,3,2,8456,1050 -819,FR,AR,201812,3,2,978,1000 -819,FR,AR,201812,4,2,51818,3190 -819,FR,AR,201812,4,2,22425,129 -819,FR,AR,201812,4,2,13211,171 -820,FR,AR,201812,4,2,1388,45 -891,FR,AR,201812,1,1,348317,2184 -891,FR,AR,201812,1,2,54163,9810 -891,FR,AR,201812,1,2,10749,1850 -891,FR,AR,201812,1,2,156,13 -891,FR,AR,201812,1,2,15249,6300 -891,FR,AR,201812,1,2,8102,1390 -891,FR,AR,201812,1,2,415204,193515 -891,FR,AR,201812,1,2,16101,10000 -891,FR,AR,201812,1,2,39852,10500 -891,FR,AR,201812,1,2,9,0 -891,FR,AR,201812,1,2,213836,79729 -891,FR,AR,201812,1,2,1328,154 -891,FR,AR,201812,1,2,11141,2010 -891,FR,AR,201812,4,2,986761,668 -892,FR,AR,201812,1,1,118117,74225 -892,FR,AR,201812,1,1,60928,51200 -892,FR,AR,201812,1,1,30464,25600 -892,FR,AR,201812,1,2,13966,3883 -892,FR,AR,201812,1,2,6195,2000 -892,FR,AR,201812,1,2,244246,61637 -892,FR,AR,201812,1,2,35010,10324 -892,FR,AR,201812,1,2,72472,35125 -892,FR,AR,201812,1,2,13934,10800 -892,FR,AR,201812,1,2,35128,21750 -892,FR,AR,201812,1,2,53511,11751 -892,FR,AR,201812,1,2,7598,1000 -892,FR,AR,201812,4,2,13846,198 -892,FR,AR,201812,4,2,6150,86 -892,FR,AR,201812,4,2,2760,320 -892,FR,AR,201812,4,2,10177,150 -892,FR,AR,201812,4,2,1226,81 -893,FR,AR,201812,1,1,62082,7801 -893,FR,AR,201812,4,1,315,1 -893,FR,AR,201812,4,1,13938,24 -893,FR,AR,201812,4,1,794765,17 -893,FR,AR,201812,0,2,200,7 -893,FR,AR,201812,1,2,514757,24354 -893,FR,AR,201812,1,2,650,500 -893,FR,AR,201812,1,2,1276417,23713 -893,FR,AR,201812,1,2,732021,29972 -893,FR,AR,201812,1,2,162794,1212 -893,FR,AR,201812,1,2,170017,2139 -893,FR,AR,201812,1,2,359244,38947 -893,FR,AR,201812,1,2,71911,58389 -893,FR,AR,201812,1,2,1141608,20945 -893,FR,AR,201812,1,2,865019,26355 -893,FR,AR,201812,1,2,597331,3809 -893,FR,AR,201812,3,2,25793,549 -893,FR,AR,201812,3,2,12900,1553 -893,FR,AR,201812,3,2,45803,1217 -893,FR,AR,201812,4,2,485543,8235 -893,FR,AR,201812,4,2,37367,82 -893,FR,AR,201812,4,2,58229,0 -893,FR,AR,201812,4,2,388070,10592 -893,FR,AR,201812,4,2,2800,30 -893,FR,AR,201812,4,2,10781,500 -893,FR,AR,201812,4,2,690211,4739 -893,FR,AR,201812,4,2,188793,3541 -893,FR,AR,201812,4,2,54897,2421 -893,FR,AR,201812,4,2,1360,2 -895,FR,AR,201812,1,2,29964,20000 -896,FR,AR,201812,4,1,124795,2477 -896,FR,AR,201812,4,1,2145,20 -896,FR,AR,201812,0,2,72,29 -896,FR,AR,201812,1,2,592759,49481 -896,FR,AR,201812,1,2,1850,800 -896,FR,AR,201812,1,2,25107,9893 -896,FR,AR,201812,1,2,908293,234104 -896,FR,AR,201812,1,2,109990,98500 -896,FR,AR,201812,1,2,11696,23400 -896,FR,AR,201812,1,2,70395,44850 -896,FR,AR,201812,1,2,35093,23646 -896,FR,AR,201812,1,2,6294,780 -896,FR,AR,201812,1,2,59552,15600 -896,FR,AR,201812,3,2,48156,380560 -896,FR,AR,201812,3,2,3996,80 -896,FR,AR,201812,3,2,8100,80000 -896,FR,AR,201812,4,2,209532,2479 -896,FR,AR,201812,4,2,7619,25 -896,FR,AR,201812,4,2,375,4 -896,FR,AR,201812,4,2,884,33 -896,FR,AR,201812,4,2,124508,989 -896,FR,AR,201812,4,2,2542,622 -896,FR,AR,201812,4,2,4505,68 -896,FR,AR,201812,4,2,38841,200 -896,FR,AR,201812,4,2,1037,1 -910,FR,AR,201812,1,1,3223,208 -910,FR,AR,201812,1,1,10357,474 -910,FR,AR,201812,1,1,62202,9202 -910,FR,AR,201812,3,1,11497,766 -910,FR,AR,201812,3,1,8557,714 -910,FR,AR,201812,4,1,4866,93 -910,FR,AR,201812,4,1,2722,524 -910,FR,AR,201812,4,1,2145,6 -910,FR,AR,201812,4,1,5174,300 -910,FR,AR,201812,4,1,16619,966 -910,FR,AR,201812,0,2,838,6 -910,FR,AR,201812,1,2,34401,2186 -910,FR,AR,201812,1,2,17638,1339 -910,FR,AR,201812,1,2,13552,1111 -910,FR,AR,201812,1,2,4723,18 -910,FR,AR,201812,1,2,19026,3906 -910,FR,AR,201812,1,2,70,15 -910,FR,AR,201812,1,2,983,86 -910,FR,AR,201812,1,2,4712869,790769 -910,FR,AR,201812,1,2,73829,10234 -910,FR,AR,201812,1,2,237343,9479 -910,FR,AR,201812,1,2,69865,7227 -910,FR,AR,201812,1,2,9602,297 -910,FR,AR,201812,3,2,80274,12287 -910,FR,AR,201812,3,2,50000,7275 -910,FR,AR,201812,4,2,307515,4984 -910,FR,AR,201812,4,2,6789,173 -910,FR,AR,201812,4,2,568,25 -910,FR,AR,201812,4,2,10073,134 -910,FR,AR,201812,4,2,625,11 -910,FR,AR,201812,4,2,50239,5 -910,FR,AR,201812,4,2,44250,432 -910,FR,AR,201812,4,2,15804,446 -910,FR,AR,201812,4,2,277,30 -910,FR,AR,201812,4,2,1005,430 -910,FR,AR,201812,4,2,3405,50 -920,FR,AR,201812,1,1,145636,21533 -920,FR,AR,201812,4,1,13373,330 -920,FR,AR,201812,4,1,2806,41 -920,FR,AR,201812,1,2,225695,29600 -920,FR,AR,201812,1,2,168388,12550 -920,FR,AR,201812,1,2,20895,1646 -920,FR,AR,201812,1,2,165,18 -920,FR,AR,201812,1,2,741424,32301 -920,FR,AR,201812,1,2,375186,10327 -920,FR,AR,201812,4,2,3842,376 -920,FR,AR,201812,4,2,206,49 -920,FR,AR,201812,4,2,17168,1325 -920,FR,AR,201812,4,2,4912,470 -931,FR,AR,201812,1,1,1600,104 -931,FR,AR,201812,1,1,16276,782 -931,FR,AR,201812,1,1,4546,246 -931,FR,AR,201812,3,1,11789,4 -931,FR,AR,201812,4,1,1455,2 -931,FR,AR,201812,4,1,825,0 -931,FR,AR,201812,4,1,22,0 -931,FR,AR,201812,4,1,4824,450 -931,FR,AR,201812,4,1,617,1 -931,FR,AR,201812,0,2,46,1 -931,FR,AR,201812,1,2,301064,18850 -931,FR,AR,201812,1,2,2689,60 -931,FR,AR,201812,1,2,1967,164 -931,FR,AR,201812,1,2,106443,3082 -931,FR,AR,201812,1,2,757788,211799 -931,FR,AR,201812,1,2,885,43 -931,FR,AR,201812,1,2,1702,8 -931,FR,AR,201812,1,2,573942,23601 -931,FR,AR,201812,1,2,152199,23005 -931,FR,AR,201812,1,2,46677,3889 -931,FR,AR,201812,1,2,136994,12653 -931,FR,AR,201812,1,2,571,5 -931,FR,AR,201812,1,2,14,0 -931,FR,AR,201812,3,2,19828,609 -931,FR,AR,201812,3,2,89019,225 -931,FR,AR,201812,4,2,2305604,9686 -931,FR,AR,201812,4,2,8927,14 -931,FR,AR,201812,4,2,1387,27 -931,FR,AR,201812,4,2,42748,241 -931,FR,AR,201812,4,2,32132,27 -931,FR,AR,201812,4,2,5844,18 -931,FR,AR,201812,4,2,83324,152 -931,FR,AR,201812,4,2,700,0 -931,FR,AR,201812,4,2,209939,1236 -931,FR,AR,201812,4,2,17514,105 -931,FR,AR,201812,4,2,25197,200 -931,FR,AR,201812,4,2,29028,820 -931,FR,AR,201812,4,2,29548,51 -931,FR,AR,201812,4,2,16689,25 -939,FR,AR,201812,1,1,1272,82 -939,FR,AR,201812,1,1,157875,5448 -939,FR,AR,201812,1,1,15867,459 -939,FR,AR,201812,1,1,2822,166 -939,FR,AR,201812,1,1,63757,3893 -939,FR,AR,201812,1,1,12698,2670 -939,FR,AR,201812,1,1,83207,21895 -939,FR,AR,201812,1,1,89285,22298 -939,FR,AR,201812,1,1,464,62 -939,FR,AR,201812,3,1,19862,779 -939,FR,AR,201812,3,1,21295,928 -939,FR,AR,201812,3,1,6981,603 -939,FR,AR,201812,4,1,898,53 -939,FR,AR,201812,4,1,1581,61 -939,FR,AR,201812,4,1,45,4 -939,FR,AR,201812,4,1,7468,215 -939,FR,AR,201812,4,1,5731,180 -939,FR,AR,201812,4,1,1712,45 -939,FR,AR,201812,1,2,394092,52729 -939,FR,AR,201812,1,2,50258,1977 -939,FR,AR,201812,1,2,71377,5121 -939,FR,AR,201812,1,2,3759,118 -939,FR,AR,201812,1,2,22465,924 -939,FR,AR,201812,1,2,34700,67 -939,FR,AR,201812,1,2,381785,7016 -939,FR,AR,201812,1,2,16968,1761 -939,FR,AR,201812,1,2,980783,79436 -939,FR,AR,201812,1,2,305127,45390 -939,FR,AR,201812,1,2,2771426,286625 -939,FR,AR,201812,1,2,296094,13700 -939,FR,AR,201812,1,2,2547,142 -939,FR,AR,201812,1,2,181980,1437 -939,FR,AR,201812,1,2,688509,30644 -939,FR,AR,201812,1,2,1536,25 -939,FR,AR,201812,1,2,142080,8100 -939,FR,AR,201812,3,2,171,4 -939,FR,AR,201812,3,2,1260,16 -939,FR,AR,201812,3,2,2884,15 -939,FR,AR,201812,3,2,224443,7838 -939,FR,AR,201812,4,2,561282,14991 -939,FR,AR,201812,4,2,25861,4126 -939,FR,AR,201812,4,2,26253,1693 -939,FR,AR,201812,4,2,8194,15 -939,FR,AR,201812,4,2,33759,262 -939,FR,AR,201812,4,2,5190,11 -939,FR,AR,201812,4,2,8943,250 -939,FR,AR,201812,4,2,53603,394 -939,FR,AR,201812,4,2,600,20 -939,FR,AR,201812,4,2,3764,50 -939,FR,AR,201812,4,2,67292,1133 -939,FR,AR,201812,4,2,128638,10820 -939,FR,AR,201812,4,2,7341,32 -939,FR,AR,201812,4,2,36870,518 -941,FR,AR,201812,1,2,15418,655 -949,FR,AR,201812,0,1,1,0 -949,FR,AR,201812,1,1,1370,89 -949,FR,AR,201812,1,1,12868,1801 -949,FR,AR,201812,1,1,19719,1300 -949,FR,AR,201812,3,1,219,1 -949,FR,AR,201812,4,1,2674,34 -949,FR,AR,201812,4,1,555,8 -949,FR,AR,201812,4,1,2350,203 -949,FR,AR,201812,4,1,5651,498 -949,FR,AR,201812,1,2,54993,3641 -949,FR,AR,201812,1,2,298,2 -949,FR,AR,201812,1,2,4062,331 -949,FR,AR,201812,1,2,253,3 -949,FR,AR,201812,1,2,5908,180 -949,FR,AR,201812,1,2,19126,1411 -949,FR,AR,201812,1,2,446369,78519 -949,FR,AR,201812,1,2,866,115 -949,FR,AR,201812,1,2,41113,3923 -949,FR,AR,201812,1,2,144184,4154 -949,FR,AR,201812,1,2,33430,9240 -949,FR,AR,201812,3,2,71617,3719 -949,FR,AR,201812,4,2,76962,2190 -949,FR,AR,201812,4,2,668,12 -949,FR,AR,201812,4,2,19263,77 -949,FR,AR,201812,4,2,1850,26 -949,FR,AR,201812,4,2,1260,43 -949,FR,AR,201812,4,2,22940,2400 -949,FR,AR,201812,4,2,5498,18 -951,FR,AR,201812,1,1,879,294 -951,FR,AR,201812,1,2,381,23 -951,FR,AR,201812,1,2,7143,853 -951,FR,AR,201812,1,2,140,11 -951,FR,AR,201812,4,2,2161,262 -952,FR,AR,201812,1,1,104,40 -952,FR,AR,201812,1,1,305,14 -952,FR,AR,201812,1,1,334,175 -952,FR,AR,201812,3,1,51,0 -952,FR,AR,201812,1,2,503,42 -952,FR,AR,201812,1,2,21622,2123 -952,FR,AR,201812,1,2,13565,11419 -952,FR,AR,201812,1,2,31482,31099 -952,FR,AR,201812,1,2,12444,4309 -952,FR,AR,201812,1,2,64194,36014 -952,FR,AR,201812,3,2,3908,107 -952,FR,AR,201812,4,2,4176,25 -961,FR,AR,201812,1,1,127774,1422 -961,FR,AR,201812,3,1,3315,51 -961,FR,AR,201812,4,1,4082,40 -961,FR,AR,201812,4,1,44351,695 -961,FR,AR,201812,4,1,906,26 -961,FR,AR,201812,4,2,608,0 -961,FR,AR,201812,4,2,2537,810 -962,FR,AR,201812,3,1,853,42 -962,FR,AR,201812,0,2,136,2 -962,FR,AR,201812,1,2,26231,1989 -962,FR,AR,201812,1,2,145293,61232 -962,FR,AR,201812,3,2,4159,295 -962,FR,AR,201812,3,2,4795,399 -962,FR,AR,201812,4,2,23480,364 -962,FR,AR,201812,4,2,3600,10 -962,FR,AR,201812,4,2,5144,407 -962,FR,AR,201812,4,2,1520,280 -962,FR,AR,201812,4,2,1165,3 -963,FR,AR,201812,3,1,6795,88 -963,FR,AR,201812,4,1,102,2 -963,FR,AR,201812,4,1,1135,54 -963,FR,AR,201812,4,1,306,12 -963,FR,AR,201812,4,1,4747,89 -963,FR,AR,201812,0,2,3052,18 -963,FR,AR,201812,1,2,39816,486 -963,FR,AR,201812,1,2,918,6 -963,FR,AR,201812,3,2,37181,271 -963,FR,AR,201812,4,2,179661,361 -963,FR,AR,201812,4,2,1423,32 -963,FR,AR,201812,4,2,76605,21 -963,FR,AR,201812,4,2,1191,12 -971,FR,AR,201812,1,1,1485,96 -971,FR,AR,201812,1,1,144,1 -971,FR,AR,201812,4,1,1743,23 -971,FR,AR,201812,4,1,988,30 -971,FR,AR,201812,4,1,83,0 -971,FR,AR,201812,1,2,2436,55 -971,FR,AR,201812,1,2,594,81 -971,FR,AR,201812,1,2,1331,111 -971,FR,AR,201812,1,2,335,7 -971,FR,AR,201812,1,2,451328,91708 -971,FR,AR,201812,1,2,8048,594 -971,FR,AR,201812,1,2,199112,11204 -971,FR,AR,201812,3,2,3809,120 -971,FR,AR,201812,4,2,2809,43 -971,FR,AR,201812,4,2,107,0 -971,FR,AR,201812,4,2,2379,1 -971,FR,AR,201812,4,2,154,19 -971,FR,AR,201812,4,2,5038,179 -972,FR,AR,201812,1,2,137886,63259 -972,FR,AR,201812,1,2,5908,3077 -972,FR,AR,201812,1,2,35430,4621 -972,FR,AR,201812,3,2,19991,7919 -972,FR,AR,201812,4,2,375,32 -973,FR,AR,201812,1,1,425,27 -973,FR,AR,201812,1,1,50822,26717 -973,FR,AR,201812,1,1,19311,15990 -973,FR,AR,201812,3,1,124,3 -973,FR,AR,201812,1,2,46747,2900 -973,FR,AR,201812,1,2,7301,2543 -973,FR,AR,201812,1,2,66,6 -973,FR,AR,201812,1,2,84204,36381 -973,FR,AR,201812,3,2,210,37 -973,FR,AR,201812,3,2,750,12 -973,FR,AR,201812,4,2,3542,704 -973,FR,AR,201812,4,2,377,40 -973,FR,AR,201812,4,2,4932,2550 -974,FR,AR,201812,3,1,446,17 -974,FR,AR,201812,4,1,204,1 -974,FR,AR,201812,0,2,131,5 -974,FR,AR,201812,1,2,160,14 -974,FR,AR,201812,1,2,12,1 -974,FR,AR,201812,3,2,655,24 -974,FR,AR,201812,3,2,5,0 -974,FR,AR,201812,3,2,3804,179 -974,FR,AR,201812,4,2,200346,2545 -974,FR,AR,201812,4,2,1562,750 -974,FR,AR,201812,4,2,4864,53 -975,FR,AR,201812,1,1,134,14 -975,FR,AR,201812,1,2,5269,73 -975,FR,AR,201812,3,2,12,0 -975,FR,AR,201812,3,2,18653,1018 -975,FR,AR,201812,4,2,9024,125 -975,FR,AR,201812,4,2,526,28 -975,FR,AR,201812,4,2,1502,27 -976,FR,AR,201812,4,1,288,2 -976,FR,AR,201812,1,2,238611,15718 -976,FR,AR,201812,1,2,191522,11474 -976,FR,AR,201812,1,2,253,250 -976,FR,AR,201812,1,2,272349,53343 -976,FR,AR,201812,4,2,6595,45 -979,FR,AR,201812,1,1,746,49 -979,FR,AR,201812,1,1,276153,12907 -979,FR,AR,201812,1,1,3,0 -979,FR,AR,201812,3,1,1790,29 -979,FR,AR,201812,4,1,37454,169 -979,FR,AR,201812,4,1,24006,626 -979,FR,AR,201812,4,1,21731,1103 -979,FR,AR,201812,4,1,42254,54 -979,FR,AR,201812,4,1,2480,24 -979,FR,AR,201812,4,1,3714,120 -979,FR,AR,201812,1,2,187466,9997 -979,FR,AR,201812,1,2,2995,559 -979,FR,AR,201812,1,2,4095,323 -979,FR,AR,201812,1,2,136502,2519 -979,FR,AR,201812,1,2,7104,91 -979,FR,AR,201812,1,2,229819,15098 -979,FR,AR,201812,1,2,451,6 -979,FR,AR,201812,1,2,247497,1248 -979,FR,AR,201812,1,2,5947,61 -979,FR,AR,201812,1,2,23034,367 -979,FR,AR,201812,1,2,59064,21528 -979,FR,AR,201812,1,2,35486,5974 -979,FR,AR,201812,1,2,805097,14023 -979,FR,AR,201812,3,2,5540,272 -979,FR,AR,201812,3,2,70591,175 -979,FR,AR,201812,4,2,361272,1715 -979,FR,AR,201812,4,2,20399,130 -979,FR,AR,201812,4,2,52801,113 -979,FR,AR,201812,4,2,12422,651 -979,FR,AR,201812,4,2,6430,244 -979,FR,AR,201812,4,2,51288,461 -979,FR,AR,201812,4,2,1,0 -979,FR,AR,201812,4,2,93015,643 -979,FR,AR,201812,4,2,6700,56 -979,FR,AR,201812,4,2,57947,110 -979,FR,AR,201812,4,2,23371,55 -979,FR,AR,201812,4,2,2924,42 -979,FR,AR,201812,4,2,3930,12 -979,FR,AR,201812,4,2,90737,1270 -979,FR,AR,201812,4,2,8088,46 -979,FR,AR,201812,4,2,63020,23 -999,FR,AR,201812,1,1,210360,60000 -999,FR,AR,201812,1,1,40650,0 -999,FR,AR,201812,3,1,104,0 -999,FR,AR,201812,4,1,1680,0 -999,FR,AR,201812,4,1,1,0 -999,FR,AR,201812,4,1,14450,0 -999,FR,AR,201812,4,1,1901,0 -999,FR,AR,201812,1,2,101561,15978 -999,FR,AR,201812,1,2,165180,960 -999,FR,AR,201812,1,2,314,100 -999,FR,AR,201812,1,2,3824,460 -999,FR,AR,201812,1,2,12707,1 -999,FR,AR,201812,1,2,498888,397832 -999,FR,AR,201812,1,2,186047,88000 -999,FR,AR,201812,1,2,30330,10000 -999,FR,AR,201812,1,2,163096,155258 -999,FR,AR,201812,1,2,46055,39950 -999,FR,AR,201812,1,2,210959,38072 -999,FR,AR,201812,1,2,52950,0 -999,FR,AR,201812,1,2,96030,5750 -999,FR,AR,201812,1,2,52800,9600 -999,FR,AR,201812,1,2,7433,15400 -999,FR,AR,201812,1,2,45869,7200 -999,FR,AR,201812,3,2,21134,2010 -999,FR,AR,201812,3,2,549,50 -999,FR,AR,201812,3,2,12025,1350 -999,FR,AR,201812,4,2,123737,9566 -999,FR,AR,201812,4,2,2741,43 -999,FR,AR,201812,4,2,3121,155 -999,FR,AR,201812,4,2,34354,2349 -999,FR,AR,201812,4,2,9862,50 -999,FR,AR,201812,4,2,1600,10 -999,FR,AR,201812,4,2,5270,10 -999,FR,AR,201812,4,2,1484,15 -001,FR,LB,201812,4,2,242736,3365 -001,FR,LB,201812,4,2,2015,16 -001,FR,LB,201812,4,2,1081,7 -011,FR,LB,201812,1,2,565,625 -013,FR,LB,201812,1,2,306,250 -015,FR,LB,201812,1,2,36,18 -016,FR,LB,201812,1,2,9312,4100 -016,FR,LB,201812,1,2,86,74 -019,FR,LB,201812,1,2,5600,1382 -019,FR,LB,201812,1,2,2890,800 -019,FR,LB,201812,4,2,1578,318 -020,FR,LB,201812,1,2,12415,25850 -020,FR,LB,201812,1,2,786438,1379500 -035,FR,LB,201812,3,1,309,12 -035,FR,LB,201812,4,1,1103,225 -035,FR,LB,201812,1,2,536,47 -035,FR,LB,201812,1,2,253,39 -035,FR,LB,201812,4,2,49,2 -039,FR,LB,201812,4,1,7378,2705 -039,FR,LB,201812,1,2,103800,150000 -039,FR,LB,201812,1,2,27045,52000 -039,FR,LB,201812,1,2,64070,104125 -039,FR,LB,201812,4,2,9848,1064 -039,FR,LB,201812,4,2,9763,1299 -043,FR,LB,201812,1,2,25030,3600 -056,FR,LB,201812,4,2,6598,1433 -057,FR,LB,201812,1,2,14,4 -092,FR,LB,201812,1,2,387,137 -099,FR,LB,201812,4,1,404,59 -099,FR,LB,201812,1,2,21356,12722 -099,FR,LB,201812,1,2,21893,12053 -099,FR,LB,201812,1,2,31000,697 -099,FR,LB,201812,4,2,43492,336 -099,FR,LB,201812,4,2,2628,20 -099,FR,LB,201812,4,2,5632,35 -111,FR,LB,201812,1,2,6708,4140 -112,FR,LB,201812,1,2,389,200 -112,FR,LB,201812,1,2,389832,1280000 -112,FR,LB,201812,1,2,3287580,11000000 -112,FR,LB,201812,1,2,11397,16308 -112,FR,LB,201812,1,2,137575,480000 -112,FR,LB,201812,1,2,33,23 -121,FR,LB,201812,0,1,3835,400 -121,FR,LB,201812,1,1,106508,14896 -121,FR,LB,201812,1,1,27878,6300 -121,FR,LB,201812,1,1,77596,13061 -121,FR,LB,201812,1,2,53415,6720 -121,FR,LB,201812,1,2,233123,8271 -121,FR,LB,201812,1,2,153805,12930 -121,FR,LB,201812,1,2,119444,19364 -121,FR,LB,201812,1,2,1276,513 -121,FR,LB,201812,4,2,58941,2578 -121,FR,LB,201812,4,2,34,2 -122,FR,LB,201812,1,1,15954,10890 -122,FR,LB,201812,1,2,22733,75504 -122,FR,LB,201812,1,2,25,28 -125,FR,LB,201812,0,1,1320,59 -125,FR,LB,201812,1,1,9675,678 -125,FR,LB,201812,1,1,44848,20922 -125,FR,LB,201812,1,2,22118,1032 -125,FR,LB,201812,1,2,222292,6495 -125,FR,LB,201812,1,2,96004,19733 -125,FR,LB,201812,1,2,146999,2983 -125,FR,LB,201812,4,2,127,2 -125,FR,LB,201812,4,2,10280,400 -125,FR,LB,201812,4,2,15560,171 -128,FR,LB,201812,1,1,307767,201156 -128,FR,LB,201812,1,1,14670,15048 -128,FR,LB,201812,1,2,227453,301645 -128,FR,LB,201812,1,2,132829,222912 -128,FR,LB,201812,1,2,17,18 -128,FR,LB,201812,4,2,9,9 -131,FR,LB,201812,1,1,4651,488 -131,FR,LB,201812,4,1,44,7 -131,FR,LB,201812,1,2,1884,231 -132,FR,LB,201812,4,1,3479,232 -132,FR,LB,201812,0,2,156,4 -132,FR,LB,201812,1,2,18220,4766 -132,FR,LB,201812,1,2,61620,7783 -132,FR,LB,201812,1,2,909,95 -132,FR,LB,201812,1,2,372,60 -132,FR,LB,201812,1,2,2236,355 -132,FR,LB,201812,3,2,1648,41 -132,FR,LB,201812,4,2,3081,100 -132,FR,LB,201812,4,2,230,73 -133,FR,LB,201812,1,1,10369,2269 -133,FR,LB,201812,4,1,358,51 -133,FR,LB,201812,1,2,1123,25 -133,FR,LB,201812,1,2,2430,115 -133,FR,LB,201812,4,2,3946,141 -136,FR,LB,201812,1,1,8549,894 -136,FR,LB,201812,4,1,7336,728 -136,FR,LB,201812,1,2,5464,4592 -136,FR,LB,201812,1,2,5108,449 -136,FR,LB,201812,1,2,13371,2061 -136,FR,LB,201812,1,2,12072,3098 -136,FR,LB,201812,1,2,953,186 -136,FR,LB,201812,3,2,199,9 -136,FR,LB,201812,4,2,51,1 -139,FR,LB,201812,1,1,2148,326 -139,FR,LB,201812,3,1,1243,49 -139,FR,LB,201812,1,2,105606,4047 -139,FR,LB,201812,1,2,362,8 -139,FR,LB,201812,1,2,1369,110 -139,FR,LB,201812,1,2,499501,131976 -139,FR,LB,201812,1,2,19691,11160 -139,FR,LB,201812,1,2,69125,30370 -139,FR,LB,201812,1,2,134714,87975 -139,FR,LB,201812,1,2,52142,2384 -139,FR,LB,201812,1,2,150064,26729 -139,FR,LB,201812,1,2,616560,93084 -139,FR,LB,201812,1,2,31554,13116 -139,FR,LB,201812,1,2,3413,1311 -139,FR,LB,201812,4,2,155959,22539 -139,FR,LB,201812,4,2,208999,24955 -141,FR,LB,201812,4,2,25567,3057 -141,FR,LB,201812,4,2,26121,1036 -142,FR,LB,201812,4,2,52942,4068 -142,FR,LB,201812,4,2,81325,7056 -143,FR,LB,201812,1,2,70978,28915 -143,FR,LB,201812,1,2,113203,37492 -143,FR,LB,201812,1,2,45850,19104 -143,FR,LB,201812,1,2,94356,28288 -143,FR,LB,201812,1,2,65,41 -143,FR,LB,201812,4,2,81,26 -143,FR,LB,201812,4,2,173,57 -144,FR,LB,201812,1,2,106179,9932 -144,FR,LB,201812,1,2,21504,2524 -144,FR,LB,201812,1,2,1946,168 -144,FR,LB,201812,1,2,859066,132299 -144,FR,LB,201812,1,2,296239,88031 -144,FR,LB,201812,1,2,29500,25000 -144,FR,LB,201812,1,2,313101,90820 -144,FR,LB,201812,4,2,224563,22459 -144,FR,LB,201812,4,2,316087,30286 -145,FR,LB,201812,4,2,37,3 -146,FR,LB,201812,1,2,105295,21750 -147,FR,LB,201812,0,2,51,1 -147,FR,LB,201812,1,2,51070,8704 -147,FR,LB,201812,1,2,12781,1919 -147,FR,LB,201812,1,2,15886,7545 -147,FR,LB,201812,1,2,64,21 -147,FR,LB,201812,4,2,122566,3400 -147,FR,LB,201812,4,2,9287,1020 -147,FR,LB,201812,4,2,144710,10431 -148,FR,LB,201812,1,2,21173,3370 -148,FR,LB,201812,1,2,44000,12000 -148,FR,LB,201812,1,2,781,86 -148,FR,LB,201812,4,2,40406,2802 -148,FR,LB,201812,4,2,17837,594 -161,FR,LB,201812,4,1,26,80 -161,FR,LB,201812,1,2,70615,153750 -161,FR,LB,201812,1,2,9474,25375 -161,FR,LB,201812,1,2,535,721 -161,FR,LB,201812,4,2,9,3 -163,FR,LB,201812,1,1,900,700 -163,FR,LB,201812,1,1,3329,900 -163,FR,LB,201812,3,1,4908,890 -163,FR,LB,201812,4,1,37021,3132 -163,FR,LB,201812,4,1,20658,2225 -163,FR,LB,201812,4,1,44,10 -163,FR,LB,201812,1,2,8804,7070 -163,FR,LB,201812,1,2,1958,450 -163,FR,LB,201812,1,2,50975,54000 -163,FR,LB,201812,1,2,5102,3373 -163,FR,LB,201812,1,2,30734,23373 -163,FR,LB,201812,1,2,130316,36205 -163,FR,LB,201812,1,2,16246,7331 -163,FR,LB,201812,1,2,16179,4917 -163,FR,LB,201812,1,2,16194,7348 -163,FR,LB,201812,1,2,9540,2941 -163,FR,LB,201812,3,2,56545,32971 -163,FR,LB,201812,3,2,19488,7277 -163,FR,LB,201812,4,2,18675,2867 -163,FR,LB,201812,4,2,21070,4284 -164,FR,LB,201812,1,1,49930,28317 -164,FR,LB,201812,3,1,115,5 -164,FR,LB,201812,4,1,637,45 -164,FR,LB,201812,1,2,3750,610 -164,FR,LB,201812,1,2,61120,18937 -164,FR,LB,201812,1,2,1287,400 -164,FR,LB,201812,1,2,11555,3033 -164,FR,LB,201812,1,2,506,105 -164,FR,LB,201812,3,2,110,5 -164,FR,LB,201812,4,2,94,12 -164,FR,LB,201812,4,2,3268,192 -164,FR,LB,201812,4,2,6795,360 -165,FR,LB,201812,1,2,3925,1655 -165,FR,LB,201812,4,2,246,80 -166,FR,LB,201812,1,1,14996,8280 -166,FR,LB,201812,4,1,1025,212 -166,FR,LB,201812,1,2,1458,196 -166,FR,LB,201812,1,2,62630,54624 -166,FR,LB,201812,1,2,21277,17971 -166,FR,LB,201812,1,2,3189,1067 -166,FR,LB,201812,1,2,105037,86617 -166,FR,LB,201812,4,2,6605,320 -179,FR,LB,201812,1,2,4074,118 -179,FR,LB,201812,1,2,131904,146325 -179,FR,LB,201812,1,2,83374,30909 -179,FR,LB,201812,1,2,166765,63018 -179,FR,LB,201812,1,2,7708,8062 -179,FR,LB,201812,4,2,9511,478 -181,FR,LB,201812,1,2,1007,280 -182,FR,LB,201812,1,2,6238,152 -182,FR,LB,201812,1,2,3411,758 -182,FR,LB,201812,1,2,15905,14062 -182,FR,LB,201812,1,2,18862,14738 -182,FR,LB,201812,1,2,725,301 -182,FR,LB,201812,4,2,3324,175 -341,FR,LB,201812,1,2,5648,1811 -341,FR,LB,201812,1,2,783,3 -341,FR,LB,201812,1,2,201384,123819 -341,FR,LB,201812,1,2,55114,27110 -341,FR,LB,201812,1,2,117459,70098 -341,FR,LB,201812,1,2,45698,19264 -341,FR,LB,201812,1,2,30007,13332 -341,FR,LB,201812,1,2,30318,14353 -341,FR,LB,201812,4,2,84,0 -465,FR,LB,201812,3,1,133,4 -532,FR,LB,201812,1,2,1945,356 -536,FR,LB,201812,3,2,6978,4124 -542,FR,LB,201812,1,2,323966,636280 -542,FR,LB,201812,2,2,34381,51180 -542,FR,LB,201812,3,2,12730,18950 -542,FR,LB,201812,3,2,19435,28930 -551,FR,LB,201812,4,2,31,1 -552,FR,LB,201812,4,2,4,0 -568,FR,LB,201812,1,2,1198,221 -568,FR,LB,201812,1,2,9080,2404 -568,FR,LB,201812,1,2,2128414,379199 -568,FR,LB,201812,1,2,6014,1966 -568,FR,LB,201812,4,2,932,50 -568,FR,LB,201812,4,2,154,1 -568,FR,LB,201812,4,2,1638,27 -614,FR,LB,201812,1,2,2975,16500 -621,FR,LB,201812,1,2,2328,390 -621,FR,LB,201812,1,2,591,921 -621,FR,LB,201812,3,2,37135,37540 -621,FR,LB,201812,4,2,975,89 -639,FR,LB,201812,3,1,207,8 -639,FR,LB,201812,1,2,113,966 -639,FR,LB,201812,1,2,3939,22770 -642,FR,LB,201812,1,2,7654,13400 -691,FR,LB,201812,1,2,1975,1500 -691,FR,LB,201812,1,2,3400,4597 -691,FR,LB,201812,1,2,13805,79672 -691,FR,LB,201812,1,2,2547,222 -691,FR,LB,201812,4,2,827,12 -691,FR,LB,201812,4,2,10,0 -692,FR,LB,201812,1,2,160632,213577 -719,FR,LB,201812,1,2,389,3150 -719,FR,LB,201812,1,2,53300,200000 -724,FR,LB,201812,1,2,1392,1515 -813,FR,LB,201812,1,1,45,50 -813,FR,LB,201812,1,2,6633,19600 -819,FR,LB,201812,1,2,1155,1257 -819,FR,LB,201812,1,2,11090,108000 -819,FR,LB,201812,4,2,26875,358 -819,FR,LB,201812,4,2,4051,38 -819,FR,LB,201812,4,2,1086,20 -819,FR,LB,201812,4,2,1547,20 -891,FR,LB,201812,1,2,29633,2764 -891,FR,LB,201812,1,2,5238,1505 -891,FR,LB,201812,1,2,169966,60067 -891,FR,LB,201812,1,2,34699,15390 -891,FR,LB,201812,1,2,13673,5595 -891,FR,LB,201812,1,2,144933,70563 -891,FR,LB,201812,1,2,59577,10584 -891,FR,LB,201812,1,2,29541,8772 -891,FR,LB,201812,1,2,4277,1313 -891,FR,LB,201812,1,2,8,3 -891,FR,LB,201812,3,2,3486,200 -891,FR,LB,201812,3,2,84474,77000 -891,FR,LB,201812,4,2,10027,446 -891,FR,LB,201812,4,2,377,3 -891,FR,LB,201812,4,2,1720,196 -891,FR,LB,201812,4,2,2824,35 -891,FR,LB,201812,4,2,60,0 -891,FR,LB,201812,4,2,1107,130 -892,FR,LB,201812,1,2,19724,1728 -892,FR,LB,201812,1,2,2505,425 -892,FR,LB,201812,1,2,1497,333 -892,FR,LB,201812,1,2,38062,31260 -892,FR,LB,201812,1,2,33098,165528 -892,FR,LB,201812,4,2,5279,42 -892,FR,LB,201812,4,2,1452,72 -892,FR,LB,201812,4,2,7445,47 -893,FR,LB,201812,1,1,14830,1136 -893,FR,LB,201812,1,1,893,4400 -893,FR,LB,201812,3,1,676,24 -893,FR,LB,201812,4,1,10054,15 -893,FR,LB,201812,4,1,297,1 -893,FR,LB,201812,4,1,177,0 -893,FR,LB,201812,4,1,163,1 -893,FR,LB,201812,4,1,109,0 -893,FR,LB,201812,4,1,2434,47 -893,FR,LB,201812,0,2,292,3 -893,FR,LB,201812,1,2,1170699,48078 -893,FR,LB,201812,1,2,9240,1901 -893,FR,LB,201812,1,2,283780,16062 -893,FR,LB,201812,1,2,3412,1230 -893,FR,LB,201812,1,2,14778,419 -893,FR,LB,201812,1,2,102138,6460 -893,FR,LB,201812,1,2,1712,41 -893,FR,LB,201812,1,2,8784,1260 -893,FR,LB,201812,1,2,1278638,74825 -893,FR,LB,201812,1,2,129192,10566 -893,FR,LB,201812,1,2,246030,23139 -893,FR,LB,201812,1,2,709414,25658 -893,FR,LB,201812,1,2,13806,3457 -893,FR,LB,201812,1,2,14917,7210 -893,FR,LB,201812,1,2,951266,20092 -893,FR,LB,201812,1,2,15677,318 -893,FR,LB,201812,1,2,1264828,86484 -893,FR,LB,201812,1,2,276,127 -893,FR,LB,201812,3,2,839,17 -893,FR,LB,201812,3,2,45400,3428 -893,FR,LB,201812,3,2,252284,4527 -893,FR,LB,201812,4,2,4444486,30005 -893,FR,LB,201812,4,2,314,0 -893,FR,LB,201812,4,2,1324257,10478 -893,FR,LB,201812,4,2,77062,659 -893,FR,LB,201812,4,2,4916,10 -893,FR,LB,201812,4,2,511036,7937 -893,FR,LB,201812,4,2,16221,621 -893,FR,LB,201812,4,2,220950,3509 -893,FR,LB,201812,4,2,392243,10170 -893,FR,LB,201812,4,2,3622,330 -893,FR,LB,201812,4,2,3055,1 -896,FR,LB,201812,0,1,1402,27 -896,FR,LB,201812,4,1,116,0 -896,FR,LB,201812,1,2,59783,27063 -896,FR,LB,201812,1,2,1152,356 -896,FR,LB,201812,1,2,5019,1504 -896,FR,LB,201812,1,2,90731,29740 -896,FR,LB,201812,1,2,30427,22100 -896,FR,LB,201812,1,2,1849,458 -896,FR,LB,201812,1,2,67069,22392 -896,FR,LB,201812,1,2,31729,15322 -896,FR,LB,201812,1,2,20773,5500 -896,FR,LB,201812,1,2,24841,13040 -896,FR,LB,201812,3,2,190,140 -896,FR,LB,201812,4,2,266868,3863 -896,FR,LB,201812,4,2,5030,18 -896,FR,LB,201812,4,2,29464,189 -896,FR,LB,201812,4,2,1405,50 -896,FR,LB,201812,4,2,46661,360 -896,FR,LB,201812,4,2,540,0 -896,FR,LB,201812,4,2,6504,210 -910,FR,LB,201812,0,1,212,5 -910,FR,LB,201812,3,1,33693,725 -910,FR,LB,201812,4,1,726,1 -910,FR,LB,201812,1,2,10600,305 -910,FR,LB,201812,1,2,12826,1021 -910,FR,LB,201812,1,2,3700,11500 -910,FR,LB,201812,1,2,50000,6950 -910,FR,LB,201812,1,2,8614,640 -910,FR,LB,201812,1,2,1200,940 -910,FR,LB,201812,1,2,173122,6000 -910,FR,LB,201812,1,2,305517,27041 -910,FR,LB,201812,1,2,1626,156 -910,FR,LB,201812,1,2,6000,12620 -910,FR,LB,201812,1,2,53100,655 -910,FR,LB,201812,3,2,64843,10512 -910,FR,LB,201812,4,2,36532,617 -910,FR,LB,201812,4,2,39,0 -910,FR,LB,201812,4,2,24197,304 -910,FR,LB,201812,4,2,10150,1400 -910,FR,LB,201812,4,2,3585,132 -910,FR,LB,201812,4,2,3355,140 -910,FR,LB,201812,4,2,4901,25 -920,FR,LB,201812,3,2,26826,720 -931,FR,LB,201812,0,1,6243,33 -931,FR,LB,201812,1,1,371,62 -931,FR,LB,201812,1,1,91732,2200 -931,FR,LB,201812,1,1,2551,888 -931,FR,LB,201812,1,1,96095,23490 -931,FR,LB,201812,1,1,406725,91500 -931,FR,LB,201812,3,1,6009,5 -931,FR,LB,201812,4,1,5269,14 -931,FR,LB,201812,4,1,404,0 -931,FR,LB,201812,4,1,570,0 -931,FR,LB,201812,4,1,387,2 -931,FR,LB,201812,0,2,4250,11 -931,FR,LB,201812,1,2,1463843,59752 -931,FR,LB,201812,1,2,3301,486 -931,FR,LB,201812,1,2,85,2 -931,FR,LB,201812,1,2,28612,3605 -931,FR,LB,201812,1,2,4660,64 -931,FR,LB,201812,1,2,4500,85 -931,FR,LB,201812,1,2,1582158,260696 -931,FR,LB,201812,1,2,14513,2929 -931,FR,LB,201812,1,2,27012,4665 -931,FR,LB,201812,1,2,25719,3166 -931,FR,LB,201812,1,2,134899,40688 -931,FR,LB,201812,1,2,22956,1510 -931,FR,LB,201812,1,2,39416,2180 -931,FR,LB,201812,1,2,74186,5686 -931,FR,LB,201812,3,2,1825,17 -931,FR,LB,201812,3,2,2824,88 -931,FR,LB,201812,4,2,587521,2536 -931,FR,LB,201812,4,2,2412,87 -931,FR,LB,201812,4,2,2870084,1374 -931,FR,LB,201812,4,2,78175,1605 -931,FR,LB,201812,4,2,18603,190 -931,FR,LB,201812,4,2,162125,518 -931,FR,LB,201812,4,2,572,2 -931,FR,LB,201812,4,2,1772,45 -931,FR,LB,201812,4,2,453891,9740 -931,FR,LB,201812,4,2,1166,7 -931,FR,LB,201812,5,2,13908,284 -939,FR,LB,201812,0,1,8381,68 -939,FR,LB,201812,1,1,46369,8020 -939,FR,LB,201812,1,1,82978,15007 -939,FR,LB,201812,1,1,178766,34900 -939,FR,LB,201812,3,1,832,8 -939,FR,LB,201812,4,1,731,15 -939,FR,LB,201812,4,1,299,2 -939,FR,LB,201812,0,2,9005,33 -939,FR,LB,201812,1,2,380635,25637 -939,FR,LB,201812,1,2,5136,48 -939,FR,LB,201812,1,2,16000,39000 -939,FR,LB,201812,1,2,23500,240 -939,FR,LB,201812,1,2,748906,144294 -939,FR,LB,201812,1,2,268378,24224 -939,FR,LB,201812,1,2,355,107 -939,FR,LB,201812,1,2,12400,33500 -939,FR,LB,201812,1,2,128759,11794 -939,FR,LB,201812,1,2,13400,1557 -939,FR,LB,201812,1,2,78444,81650 -939,FR,LB,201812,1,2,774,7 -939,FR,LB,201812,1,2,464834,7950 -939,FR,LB,201812,1,2,7873,250 -939,FR,LB,201812,3,2,946,6 -939,FR,LB,201812,4,2,907453,5587 -939,FR,LB,201812,4,2,81,0 -939,FR,LB,201812,4,2,55405,422 -939,FR,LB,201812,4,2,88855,302 -939,FR,LB,201812,4,2,238,2 -939,FR,LB,201812,4,2,12380,79 -939,FR,LB,201812,4,2,2070,7 -939,FR,LB,201812,4,2,148567,7720 -939,FR,LB,201812,4,2,11170,120 -941,FR,LB,201812,1,2,12010,470 -941,FR,LB,201812,1,2,4700,801 -941,FR,LB,201812,1,2,44147,15383 -941,FR,LB,201812,1,2,40982,2700 -941,FR,LB,201812,3,2,12421,200 -941,FR,LB,201812,4,2,2576,100 -949,FR,LB,201812,1,1,95,60 -949,FR,LB,201812,1,1,90,14 -949,FR,LB,201812,3,1,235,7 -949,FR,LB,201812,4,1,2083,39 -949,FR,LB,201812,4,1,93413,6930 -949,FR,LB,201812,1,2,2619,123 -949,FR,LB,201812,1,2,69,0 -949,FR,LB,201812,1,2,25896,1782 -949,FR,LB,201812,1,2,1060,33 -949,FR,LB,201812,1,2,343569,28385 -949,FR,LB,201812,1,2,41916,18500 -949,FR,LB,201812,1,2,33800,12572 -949,FR,LB,201812,1,2,1100,12 -949,FR,LB,201812,1,2,27250,2325 -949,FR,LB,201812,1,2,54191,6950 -949,FR,LB,201812,1,2,41986,12667 -949,FR,LB,201812,1,2,46381,10175 -949,FR,LB,201812,1,2,16745,1300 -949,FR,LB,201812,1,2,125782,5131 -949,FR,LB,201812,3,2,4141,312 -949,FR,LB,201812,3,2,85934,42117 -949,FR,LB,201812,4,2,43921,826 -949,FR,LB,201812,4,2,27040,292 -949,FR,LB,201812,4,2,4659,101 -949,FR,LB,201812,4,2,318,5 -949,FR,LB,201812,4,2,116,2 -949,FR,LB,201812,4,2,828,0 -949,FR,LB,201812,4,2,6633,210 -951,FR,LB,201812,1,2,1601,131 -951,FR,LB,201812,3,2,1661,30 -951,FR,LB,201812,4,2,445,17 -951,FR,LB,201812,4,2,30,10 -951,FR,LB,201812,4,2,36,0 -952,FR,LB,201812,4,1,475,40 -952,FR,LB,201812,0,2,123,15 -952,FR,LB,201812,1,2,192,2 -952,FR,LB,201812,1,2,62562,64064 -952,FR,LB,201812,1,2,472,105 -952,FR,LB,201812,1,2,11921,929 -952,FR,LB,201812,1,2,7696,12680 -952,FR,LB,201812,1,2,16273,27130 -952,FR,LB,201812,1,2,102742,166131 -952,FR,LB,201812,3,2,1402,92 -952,FR,LB,201812,3,2,67715,32640 -952,FR,LB,201812,4,2,32548,1227 -952,FR,LB,201812,4,2,139,9 -952,FR,LB,201812,4,2,4346,33 -952,FR,LB,201812,4,2,144401,1485 -952,FR,LB,201812,4,2,6900,145 -952,FR,LB,201812,4,2,3225,56 -952,FR,LB,201812,4,2,2240,140 -961,FR,LB,201812,4,1,734,25 -961,FR,LB,201812,4,1,173,1 -961,FR,LB,201812,1,2,2039,124 -961,FR,LB,201812,1,2,15,0 -961,FR,LB,201812,4,2,1212,3 -962,FR,LB,201812,1,1,1253,450 -962,FR,LB,201812,3,1,20400,413 -962,FR,LB,201812,4,1,2101,1166 -962,FR,LB,201812,4,1,68,2 -962,FR,LB,201812,4,1,228,9 -962,FR,LB,201812,0,2,4524,1 -962,FR,LB,201812,1,2,1125,85 -962,FR,LB,201812,1,2,9100,766 -962,FR,LB,201812,1,2,34824,4174 -962,FR,LB,201812,1,2,6120,1161 -962,FR,LB,201812,1,2,16480,2539 -962,FR,LB,201812,1,2,1210,22 -962,FR,LB,201812,1,2,8618,1200 -962,FR,LB,201812,1,2,1554,318 -962,FR,LB,201812,3,2,10,0 -962,FR,LB,201812,4,2,79649,2378 -962,FR,LB,201812,4,2,9794,631 -962,FR,LB,201812,4,2,1410,88 -962,FR,LB,201812,4,2,45413,194 -962,FR,LB,201812,4,2,7152,149 -962,FR,LB,201812,4,2,5992,68 -962,FR,LB,201812,4,2,27171,2420 -962,FR,LB,201812,4,2,10072,34 -963,FR,LB,201812,3,1,163870,1035 -963,FR,LB,201812,3,1,40379,25 -963,FR,LB,201812,3,1,2271,220 -963,FR,LB,201812,4,1,35381,1161 -963,FR,LB,201812,4,1,21355,47 -963,FR,LB,201812,4,1,3279,4 -963,FR,LB,201812,4,1,71031,31 -963,FR,LB,201812,4,1,19403,101 -963,FR,LB,201812,4,1,166055,1267 -963,FR,LB,201812,4,1,68,0 -963,FR,LB,201812,4,1,11685,406 -963,FR,LB,201812,0,2,586,5 -963,FR,LB,201812,1,2,1825,52 -963,FR,LB,201812,1,2,8896,572 -963,FR,LB,201812,1,2,46707,4545 -963,FR,LB,201812,1,2,341150,3839 -963,FR,LB,201812,1,2,92269,7725 -963,FR,LB,201812,1,2,45400,2129 -963,FR,LB,201812,3,2,33239,472 -963,FR,LB,201812,4,2,1220757,9746 -963,FR,LB,201812,4,2,90491,987 -963,FR,LB,201812,4,2,100473,2933 -963,FR,LB,201812,4,2,1446746,12929 -963,FR,LB,201812,4,2,1545,40 -963,FR,LB,201812,4,2,4485,25 -963,FR,LB,201812,4,2,29282,157 -963,FR,LB,201812,4,2,10337,630 -963,FR,LB,201812,4,2,22789,105 -963,FR,LB,201812,4,2,8534,53 -971,FR,LB,201812,1,2,6231,240 -971,FR,LB,201812,1,2,2674,317 -971,FR,LB,201812,1,2,6057,864 -971,FR,LB,201812,1,2,14173,693 -971,FR,LB,201812,1,2,237929,67671 -971,FR,LB,201812,1,2,2632,252 -971,FR,LB,201812,1,2,6662,732 -971,FR,LB,201812,4,2,2046,84 -971,FR,LB,201812,4,2,132,0 -971,FR,LB,201812,4,2,250,18 -971,FR,LB,201812,4,2,493,4 -972,FR,LB,201812,1,1,40081,49999 -972,FR,LB,201812,1,2,5194,631 -972,FR,LB,201812,1,2,28946,16733 -972,FR,LB,201812,1,2,3428,434 -972,FR,LB,201812,1,2,13011,17464 -972,FR,LB,201812,4,2,26,0 -972,FR,LB,201812,4,2,5190,130 -972,FR,LB,201812,4,2,110,271 -973,FR,LB,201812,1,1,493,154 -973,FR,LB,201812,3,1,100,1 -973,FR,LB,201812,4,1,302,8 -973,FR,LB,201812,4,1,1675,407 -973,FR,LB,201812,0,2,250,20 -973,FR,LB,201812,1,2,51683,30429 -973,FR,LB,201812,1,2,4293,967 -973,FR,LB,201812,1,2,76073,8721 -973,FR,LB,201812,1,2,187446,63447 -973,FR,LB,201812,1,2,71411,13800 -973,FR,LB,201812,1,2,876,315 -973,FR,LB,201812,3,2,353,1 -973,FR,LB,201812,4,2,7342,1080 -973,FR,LB,201812,4,2,217,18 -973,FR,LB,201812,4,2,1016,8 -973,FR,LB,201812,4,2,413,1 -973,FR,LB,201812,4,2,29030,870 -974,FR,LB,201812,1,1,22,9 -974,FR,LB,201812,3,1,10320,725 -974,FR,LB,201812,4,1,9772,101 -974,FR,LB,201812,4,1,3394,134 -974,FR,LB,201812,4,1,935,8 -974,FR,LB,201812,4,1,29963,3560 -974,FR,LB,201812,4,1,137,22 -974,FR,LB,201812,5,1,2049,27 -974,FR,LB,201812,0,2,8229,45 -974,FR,LB,201812,1,2,65,56 -974,FR,LB,201812,1,2,39,9 -974,FR,LB,201812,1,2,10,7 -974,FR,LB,201812,1,2,8,15 -974,FR,LB,201812,1,2,3600,105 -974,FR,LB,201812,1,2,84,167 -974,FR,LB,201812,1,2,3625,3664 -974,FR,LB,201812,3,2,1130,285 -974,FR,LB,201812,4,2,371463,25478 -974,FR,LB,201812,4,2,83,0 -974,FR,LB,201812,4,2,56,9 -974,FR,LB,201812,4,2,842,84 -974,FR,LB,201812,4,2,1395,150 -974,FR,LB,201812,4,2,2770,108 -974,FR,LB,201812,4,2,2044,28 -974,FR,LB,201812,5,2,1948,8 -975,FR,LB,201812,1,1,3865,780 -975,FR,LB,201812,1,1,269,190 -975,FR,LB,201812,3,1,14490,51 -975,FR,LB,201812,4,1,3993,630 -975,FR,LB,201812,4,1,496,4 -975,FR,LB,201812,1,2,8970,928 -975,FR,LB,201812,1,2,6725,742 -975,FR,LB,201812,1,2,136659,2520 -975,FR,LB,201812,1,2,289,23 -975,FR,LB,201812,1,2,162258,12600 -975,FR,LB,201812,1,2,18171,2432 -975,FR,LB,201812,3,2,12497,535 -975,FR,LB,201812,4,2,49213,247 -975,FR,LB,201812,4,2,44000,235 -975,FR,LB,201812,4,2,7454,455 -975,FR,LB,201812,4,2,990,90 -976,FR,LB,201812,1,1,248,204 -976,FR,LB,201812,3,1,427,13 -976,FR,LB,201812,4,1,1076,60 -976,FR,LB,201812,1,2,5210,280 -976,FR,LB,201812,1,2,19,10 -976,FR,LB,201812,1,2,864,220 -976,FR,LB,201812,1,2,57410,2800 -976,FR,LB,201812,1,2,10285,1679 -976,FR,LB,201812,3,2,4778,301 -976,FR,LB,201812,4,2,12315,254 -976,FR,LB,201812,4,2,27990,95 -976,FR,LB,201812,4,2,13411,680 -979,FR,LB,201812,0,1,5770,10 -979,FR,LB,201812,1,1,20491,5215 -979,FR,LB,201812,1,1,9,20 -979,FR,LB,201812,3,1,42551,210 -979,FR,LB,201812,4,1,534890,830 -979,FR,LB,201812,4,1,6025,2 -979,FR,LB,201812,4,1,423,12 -979,FR,LB,201812,4,1,47080,44 -979,FR,LB,201812,4,1,4419,519 -979,FR,LB,201812,4,1,86003,50 -979,FR,LB,201812,0,2,886,8 -979,FR,LB,201812,1,2,94300,11908 -979,FR,LB,201812,1,2,4,0 -979,FR,LB,201812,1,2,688,50 -979,FR,LB,201812,1,2,19114,1732 -979,FR,LB,201812,1,2,11905,97 -979,FR,LB,201812,1,2,5791,348 -979,FR,LB,201812,1,2,174036,45436 -979,FR,LB,201812,1,2,2009,999 -979,FR,LB,201812,1,2,28616,2270 -979,FR,LB,201812,1,2,91039,7703 -979,FR,LB,201812,1,2,40,21 -979,FR,LB,201812,1,2,297212,28367 -979,FR,LB,201812,1,2,12327,160 -979,FR,LB,201812,1,2,394,3 -979,FR,LB,201812,1,2,1748,1194 -979,FR,LB,201812,3,2,100,22 -979,FR,LB,201812,3,2,1264250,1 -979,FR,LB,201812,4,2,692521,4351 -979,FR,LB,201812,4,2,18240,97 -979,FR,LB,201812,4,2,4848,1 -979,FR,LB,201812,4,2,34404,155 -979,FR,LB,201812,4,2,18141,2 -979,FR,LB,201812,4,2,123215,903 -979,FR,LB,201812,4,2,20500,104 -979,FR,LB,201812,4,2,148247,6 -979,FR,LB,201812,4,2,2184965,776 -979,FR,LB,201812,4,2,30645,96 -979,FR,LB,201812,4,2,4650,20 -979,FR,LB,201812,4,2,14731,20 -979,FR,LB,201812,4,2,11474,171 -979,FR,LB,201812,4,2,2213,19 -979,FR,LB,201812,4,2,1700,14 -979,FR,LB,201812,4,2,2205,7 -979,FR,LB,201812,4,2,43095,1430 -979,FR,LB,201812,4,2,6599,3 -979,FR,LB,201812,4,2,25780,23 -999,FR,LB,201812,1,1,5880,0 -999,FR,LB,201812,1,1,5000,0 -999,FR,LB,201812,3,1,669,0 -999,FR,LB,201812,1,2,56748,4255 -999,FR,LB,201812,1,2,7640,0 -999,FR,LB,201812,1,2,1890,2058 -999,FR,LB,201812,1,2,288507,99098 -999,FR,LB,201812,1,2,127144,13531 -999,FR,LB,201812,1,2,66776,83936 -999,FR,LB,201812,1,2,17883,51750 -999,FR,LB,201812,1,2,37219,42149 -999,FR,LB,201812,1,2,20585,3375 -999,FR,LB,201812,1,2,10466,0 -999,FR,LB,201812,1,2,62,7 -999,FR,LB,201812,4,2,14637,486 -999,FR,LB,201812,4,2,2063,0 -999,FR,LB,201812,4,2,10140,745 -999,FR,LB,201812,4,2,5490,0 -999,FR,LB,201812,4,2,1400,0 -999,FR,LB,201812,4,2,3800,0 -999,FR,LB,201812,4,2,152,21 -999,FR,LB,201812,4,2,7323,70 -020,FR,SY,201812,1,2,80109,151200 -020,FR,SY,201812,1,2,169250,250000 -099,FR,SY,201812,1,1,1666,297 -099,FR,SY,201812,1,1,13744,2600 -099,FR,SY,201812,4,2,19465,800 -112,FR,SY,201812,1,2,5234000,20000000 -125,FR,SY,201812,1,2,94996,23651 -128,FR,SY,201812,1,1,503,270 -133,FR,SY,201812,1,1,27,27 -133,FR,SY,201812,1,1,42988,15493 -133,FR,SY,201812,1,1,14255,3500 -133,FR,SY,201812,4,1,1227,200 -139,FR,SY,201812,1,1,8728,4122 -139,FR,SY,201812,1,2,122550,18480 -139,FR,SY,201812,1,2,31150,24000 -139,FR,SY,201812,1,2,68120,25584 -144,FR,SY,201812,1,2,281500,100000 -163,FR,SY,201812,1,1,2849,1673 -164,FR,SY,201812,1,1,698,316 -166,FR,SY,201812,1,1,44,36 -166,FR,SY,201812,1,1,9105,4523 -182,FR,SY,201812,1,1,1324,576 -568,FR,SY,201812,1,2,131650,20886 -819,FR,SY,201812,1,1,188,208 -891,FR,SY,201812,1,2,14242,10000 -893,FR,SY,201812,1,1,12854,7603 -893,FR,SY,201812,1,1,61804,20360 -893,FR,SY,201812,1,2,6794,1158 -893,FR,SY,201812,1,2,17618,762 -893,FR,SY,201812,1,2,396974,47575 -893,FR,SY,201812,1,2,72882,9548 -893,FR,SY,201812,1,2,158252,5189 -893,FR,SY,201812,1,2,101515,3770 -893,FR,SY,201812,4,2,93300,13 -895,FR,SY,201812,1,1,225,240 -920,FR,SY,201812,1,2,12500,11500 -931,FR,SY,201812,1,1,88,73 -931,FR,SY,201812,1,2,1188535,21345 -931,FR,SY,201812,1,2,25688,740 -931,FR,SY,201812,1,2,47504,1840 -931,FR,SY,201812,1,2,311030,8084 -931,FR,SY,201812,1,2,46320,3330 -931,FR,SY,201812,4,2,8836,47 -931,FR,SY,201812,4,2,6420,33 -939,FR,SY,201812,1,2,4774,306 -939,FR,SY,201812,1,2,18000,1800 -939,FR,SY,201812,1,2,442900,53194 -939,FR,SY,201812,1,2,16150,38150 -939,FR,SY,201812,1,2,136288,17369 -939,FR,SY,201812,1,2,179700,27965 -939,FR,SY,201812,1,2,62440,70000 -941,FR,SY,201812,1,1,210,176 -952,FR,SY,201812,4,1,5021,1350 -962,FR,SY,201812,1,1,1702,1763 -962,FR,SY,201812,4,1,158,134 -962,FR,SY,201812,4,1,1207,233 -963,FR,SY,201812,1,1,8157,6852 -963,FR,SY,201812,4,1,6788,1358 -963,FR,SY,201812,4,1,15359,5467 -963,FR,SY,201812,4,1,5692,250 -963,FR,SY,201812,1,2,1467,28 -963,FR,SY,201812,1,2,137977,26663 -963,FR,SY,201812,4,2,36252,240 -973,FR,SY,201812,1,2,10904,47651 -973,FR,SY,201812,1,2,113,198 -974,FR,SY,201812,3,1,317,16 -974,FR,SY,201812,1,2,86,1 -975,FR,SY,201812,1,1,7688,7965 -976,FR,SY,201812,4,1,6255,190 -979,FR,SY,201812,1,1,20,40 -979,FR,SY,201812,3,1,335,26 -979,FR,SY,201812,4,1,1293,48 -979,FR,SY,201812,1,2,564,11 -979,FR,SY,201812,4,2,132171,330 -979,FR,SY,201812,4,2,18300,820 -999,FR,SY,201812,1,2,200926,92300 -999,FR,SY,201812,1,2,42800,20000 -999,FR,SY,201812,4,2,10753,0 -020,FR,IQ,201812,1,2,429398,909700 -020,FR,IQ,201812,1,2,326161,642000 -020,FR,IQ,201812,3,2,43200,44000 -099,FR,IQ,201812,4,2,17070,48 -121,FR,IQ,201812,1,2,36323,10224 -125,FR,IQ,201812,1,2,251137,12032 -128,FR,IQ,201812,1,2,53506,36756 -128,FR,IQ,201812,1,2,38399,41542 -131,FR,IQ,201812,3,2,5074,1194 -132,FR,IQ,201812,3,2,705,178 -136,FR,IQ,201812,1,2,24720,20000 -139,FR,IQ,201812,1,2,13644,2232 -139,FR,IQ,201812,1,2,3883,1244 -139,FR,IQ,201812,1,2,331370,57858 -139,FR,IQ,201812,1,2,1692403,305259 -139,FR,IQ,201812,1,2,593397,120424 -139,FR,IQ,201812,3,2,73573,35133 -139,FR,IQ,201812,3,2,60874,22220 -139,FR,IQ,201812,3,2,5716,8 -139,FR,IQ,201812,4,2,6207,1657 -142,FR,IQ,201812,3,2,162,6 -143,FR,IQ,201812,3,2,140464,44434 -144,FR,IQ,201812,1,2,105217,14490 -144,FR,IQ,201812,3,2,859051,229124 -144,FR,IQ,201812,3,2,57908,16640 -144,FR,IQ,201812,4,2,1400,348 -147,FR,IQ,201812,1,2,39407,20348 -148,FR,IQ,201812,3,2,240,44 -161,FR,IQ,201812,3,2,2995,2338 -163,FR,IQ,201812,1,2,55706,23976 -163,FR,IQ,201812,3,2,63494,10964 -163,FR,IQ,201812,3,2,39767,13909 -164,FR,IQ,201812,3,2,25338,18951 -164,FR,IQ,201812,3,2,855,252 -179,FR,IQ,201812,1,2,238110,21000 -179,FR,IQ,201812,1,2,39012,26622 -310,FR,IQ,201812,1,1,13818321,42201000 -310,FR,IQ,201812,1,1,44469710,101719738 -551,FR,IQ,201812,1,2,10862,920 -551,FR,IQ,201812,4,2,128854,3485 -552,FR,IQ,201812,3,2,127,13 -568,FR,IQ,201812,1,2,4826,388 -621,FR,IQ,201812,4,2,50,6 -639,FR,IQ,201812,1,2,2000,15280 -691,FR,IQ,201812,3,2,784,440 -692,FR,IQ,201812,3,2,35085,47000 -692,FR,IQ,201812,3,2,1216,1494 -819,FR,IQ,201812,1,2,196717,35381 -819,FR,IQ,201812,1,2,69826,72433 -820,FR,IQ,201812,1,2,56500,40000 -891,FR,IQ,201812,1,2,331590,216000 -891,FR,IQ,201812,3,2,589,72 -891,FR,IQ,201812,4,2,3029,28 -891,FR,IQ,201812,4,2,9857,111 -891,FR,IQ,201812,4,2,22960,121 -892,FR,IQ,201812,1,2,45062,15750 -892,FR,IQ,201812,1,2,298013,288000 -892,FR,IQ,201812,3,2,127,4 -893,FR,IQ,201812,1,2,57163,2155 -893,FR,IQ,201812,1,2,196505,1911 -893,FR,IQ,201812,1,2,1115161,67036 -893,FR,IQ,201812,1,2,144644,10866 -893,FR,IQ,201812,1,2,397564,10981 -893,FR,IQ,201812,1,2,1570636,45175 -893,FR,IQ,201812,1,2,165240,5322 -893,FR,IQ,201812,3,2,247113,7870 -893,FR,IQ,201812,3,2,261413,18564 -893,FR,IQ,201812,4,2,20313977,37176 -893,FR,IQ,201812,4,2,106561,2926 -893,FR,IQ,201812,4,2,387711,13020 -893,FR,IQ,201812,4,2,19857,59 -893,FR,IQ,201812,4,2,1931839,8237 -893,FR,IQ,201812,4,2,5114,40 -896,FR,IQ,201812,1,2,100363,32740 -896,FR,IQ,201812,4,2,1011931,3752 -896,FR,IQ,201812,4,2,94769,228 -896,FR,IQ,201812,4,2,157770,755 -910,FR,IQ,201812,3,1,2087,4 -910,FR,IQ,201812,1,2,51311,13218 -910,FR,IQ,201812,1,2,6810,39010 -910,FR,IQ,201812,1,2,28000,166210 -910,FR,IQ,201812,4,2,124266,424 -910,FR,IQ,201812,4,2,55,1 -910,FR,IQ,201812,4,2,1149,0 -910,FR,IQ,201812,9,2,930259,142139 -920,FR,IQ,201812,1,2,140000,69236 -920,FR,IQ,201812,1,2,493050,327774 -920,FR,IQ,201812,1,2,45500,2500 -931,FR,IQ,201812,3,1,214,3 -931,FR,IQ,201812,4,1,187,1 -931,FR,IQ,201812,1,2,173706,13904 -931,FR,IQ,201812,1,2,6034,62 -931,FR,IQ,201812,1,2,32257,345 -931,FR,IQ,201812,1,2,28481,1585 -931,FR,IQ,201812,1,2,35448,11314 -931,FR,IQ,201812,3,2,476977,59039 -931,FR,IQ,201812,3,2,34867,4161 -931,FR,IQ,201812,3,2,112,7 -931,FR,IQ,201812,4,2,251052,2011 -931,FR,IQ,201812,4,2,8250,6 -931,FR,IQ,201812,4,2,279062,170 -931,FR,IQ,201812,4,2,11663,289 -931,FR,IQ,201812,4,2,35055,90 -931,FR,IQ,201812,4,2,9800,250 -931,FR,IQ,201812,4,2,37102,2710 -931,FR,IQ,201812,4,2,23562,121 -939,FR,IQ,201812,3,1,7197,3 -939,FR,IQ,201812,4,1,156,0 -939,FR,IQ,201812,4,1,87,0 -939,FR,IQ,201812,0,2,162,3 -939,FR,IQ,201812,1,2,105030,2073 -939,FR,IQ,201812,1,2,3935,4100 -939,FR,IQ,201812,1,2,127925,3356 -939,FR,IQ,201812,1,2,633994,100753 -939,FR,IQ,201812,1,2,286380,28760 -939,FR,IQ,201812,1,2,17908,1775 -939,FR,IQ,201812,1,2,148448,3230 -939,FR,IQ,201812,3,2,57198,9205 -939,FR,IQ,201812,3,2,35750,17000 -939,FR,IQ,201812,4,2,151266,819 -939,FR,IQ,201812,4,2,22980,376 -939,FR,IQ,201812,4,2,1231,6 -939,FR,IQ,201812,4,2,3477,60 -939,FR,IQ,201812,4,2,47028,1640 -939,FR,IQ,201812,4,2,5608,28 -941,FR,IQ,201812,4,2,1769,66 -949,FR,IQ,201812,1,2,57015,5760 -949,FR,IQ,201812,1,2,32463,2359 -949,FR,IQ,201812,1,2,40751,5452 -949,FR,IQ,201812,3,2,154,45 -949,FR,IQ,201812,3,2,4833,528 -949,FR,IQ,201812,4,2,12997,300 -949,FR,IQ,201812,4,2,50531,368 -949,FR,IQ,201812,4,2,1315,20 -951,FR,IQ,201812,3,2,51,1 -952,FR,IQ,201812,1,2,29090,14222 -952,FR,IQ,201812,3,2,505,18 -952,FR,IQ,201812,4,2,32778,210 -962,FR,IQ,201812,1,2,770,27 -962,FR,IQ,201812,3,2,11,0 -962,FR,IQ,201812,4,2,2670,22 -962,FR,IQ,201812,4,2,3909,50 -963,FR,IQ,201812,3,1,918,35 -963,FR,IQ,201812,1,2,42500,10882 -963,FR,IQ,201812,3,2,2582,285 -963,FR,IQ,201812,4,2,47243,582 -963,FR,IQ,201812,4,2,3728,6 -971,FR,IQ,201812,3,2,338,65 -972,FR,IQ,201812,1,2,33906,33684 -972,FR,IQ,201812,4,2,385,14 -973,FR,IQ,201812,1,2,358,221 -973,FR,IQ,201812,3,2,1066,75 -974,FR,IQ,201812,1,2,523,6 -974,FR,IQ,201812,4,2,354,0 -974,FR,IQ,201812,4,2,6209,406 -975,FR,IQ,201812,1,2,9110,2972 -975,FR,IQ,201812,3,2,29480,3873 -975,FR,IQ,201812,4,2,812,170 -976,FR,IQ,201812,3,2,37,1 -976,FR,IQ,201812,4,2,1701,67 -979,FR,IQ,201812,0,2,242,1 -979,FR,IQ,201812,1,2,10181,809 -979,FR,IQ,201812,1,2,9430,770 -979,FR,IQ,201812,1,2,22979,946 -979,FR,IQ,201812,1,2,77110,21905 -979,FR,IQ,201812,3,2,43853,140 -979,FR,IQ,201812,3,2,11319,295 -979,FR,IQ,201812,4,2,302436,1019 -979,FR,IQ,201812,4,2,90602,52 -979,FR,IQ,201812,4,2,108530,650 -979,FR,IQ,201812,4,2,10000,8 -979,FR,IQ,201812,4,2,434,44 -979,FR,IQ,201812,4,2,11315,45 -979,FR,IQ,201812,4,2,18519,12 -979,FR,IQ,201812,4,2,6650,25 -979,FR,IQ,201812,4,2,81914,1480 -979,FR,IQ,201812,4,2,1888,36 -999,FR,IQ,201812,0,1,1388,0 -999,FR,IQ,201812,3,1,276,0 -999,FR,IQ,201812,1,2,704176,722447 -999,FR,IQ,201812,1,2,63239,9972 -999,FR,IQ,201812,1,2,34530,12240 -999,FR,IQ,201812,3,2,3801,804 -999,FR,IQ,201812,3,2,99,2 -999,FR,IQ,201812,4,2,5833,0 -999,FR,IQ,201812,4,2,1,0 -001,FR,IR,201812,4,2,205040,1888 -035,FR,IR,201812,4,1,2833,139 -039,FR,IR,201812,4,1,55147,1249 -099,FR,IR,201812,1,1,242656,20000 -099,FR,IR,201812,4,1,26,469 -099,FR,IR,201812,3,2,207197,1320 -099,FR,IR,201812,4,2,111467,375 -128,FR,IR,201812,4,1,67,63 -128,FR,IR,201812,4,1,595,49 -132,FR,IR,201812,1,2,37782,18000 -133,FR,IR,201812,1,1,1130,70 -133,FR,IR,201812,3,1,127,0 -133,FR,IR,201812,4,1,2336,21 -133,FR,IR,201812,4,1,3486,5 -133,FR,IR,201812,4,1,100967,111 -136,FR,IR,201812,4,1,8367,1524 -139,FR,IR,201812,4,1,273,75 -139,FR,IR,201812,1,2,16830,2475 -139,FR,IR,201812,1,2,10,24 -139,FR,IR,201812,3,2,189541,24141 -139,FR,IR,201812,3,2,206459,2090 -139,FR,IR,201812,4,2,495808,4500 -142,FR,IR,201812,4,2,83946,648 -164,FR,IR,201812,1,1,64233,38246 -164,FR,IR,201812,1,1,44926,20000 -164,FR,IR,201812,1,1,122818,37720 -164,FR,IR,201812,1,1,35438,20250 -164,FR,IR,201812,3,1,263104,53282 -164,FR,IR,201812,4,1,14124,6318 -164,FR,IR,201812,1,2,55944,7200 -165,FR,IR,201812,4,1,2168,1404 -166,FR,IR,201812,4,1,1110,386 -179,FR,IR,201812,1,2,522867,194072 -179,FR,IR,201812,1,2,45157,27061 -179,FR,IR,201812,1,2,117218,30573 -179,FR,IR,201812,1,2,75169,64000 -179,FR,IR,201812,1,2,85418,74925 -179,FR,IR,201812,1,2,142012,19600 -179,FR,IR,201812,3,2,32902,4350 -179,FR,IR,201812,3,2,84275,20960 -182,FR,IR,201812,3,2,5676,2000 -515,FR,IR,201812,0,1,354162,570130 -532,FR,IR,201812,3,2,51524,42442 -568,FR,IR,201812,3,2,30500,3802 -568,FR,IR,201812,4,2,592,14 -639,FR,IR,201812,1,2,14586,22440 -819,FR,IR,201812,1,2,9797,1885 -819,FR,IR,201812,3,2,729404,40990 -819,FR,IR,201812,4,2,3692,120 -891,FR,IR,201812,1,2,81494,17709 -891,FR,IR,201812,4,2,3,0 -892,FR,IR,201812,1,2,143350,14000 -892,FR,IR,201812,1,2,469979,55650 -892,FR,IR,201812,4,2,6270,50 -893,FR,IR,201812,3,1,77228,20341 -893,FR,IR,201812,4,1,29,1 -893,FR,IR,201812,1,2,33500,8479 -893,FR,IR,201812,1,2,124665,7900 -893,FR,IR,201812,1,2,206207,44250 -893,FR,IR,201812,1,2,324905,24050 -893,FR,IR,201812,3,2,511497,13967 -893,FR,IR,201812,3,2,54681,795 -893,FR,IR,201812,3,2,853323,48675 -893,FR,IR,201812,4,2,455706,3309 -893,FR,IR,201812,4,2,2408,50 -893,FR,IR,201812,4,2,290245,939 -893,FR,IR,201812,4,2,269183,70 -893,FR,IR,201812,4,2,144875,3264 -896,FR,IR,201812,3,1,64,3 -896,FR,IR,201812,1,2,542250,100000 -896,FR,IR,201812,1,2,91845,14400 -896,FR,IR,201812,3,2,523916,7687 -896,FR,IR,201812,3,2,129156,17050 -896,FR,IR,201812,3,2,60461,702 -896,FR,IR,201812,4,2,300858,9028 -896,FR,IR,201812,4,2,395488,1659 -896,FR,IR,201812,4,2,866719,2855 -910,FR,IR,201812,1,2,1446,2220 -910,FR,IR,201812,3,2,14300,460 -910,FR,IR,201812,3,2,131769,12446 -910,FR,IR,201812,3,2,100000,145 -910,FR,IR,201812,4,2,545679,6310 -910,FR,IR,201812,4,2,69763,749 -910,FR,IR,201812,4,2,126,0 -931,FR,IR,201812,3,1,40,1 -931,FR,IR,201812,1,2,8845,58 -931,FR,IR,201812,1,2,1293026,12201 -931,FR,IR,201812,1,2,60670,323 -931,FR,IR,201812,3,2,787476,6127 -931,FR,IR,201812,3,2,56781,16184 -931,FR,IR,201812,4,2,250401,844 -931,FR,IR,201812,4,2,2580,5 -931,FR,IR,201812,4,2,463,2 -931,FR,IR,201812,4,2,718719,2704 -931,FR,IR,201812,4,2,230924,2809 -939,FR,IR,201812,1,2,1799292,11118 -939,FR,IR,201812,1,2,572246,16586 -939,FR,IR,201812,1,2,542504,12829 -939,FR,IR,201812,1,2,55450,31500 -939,FR,IR,201812,1,2,66477,16447 -939,FR,IR,201812,3,2,144300,13600 -939,FR,IR,201812,3,2,72767,2660 -939,FR,IR,201812,3,2,17050,1360 -939,FR,IR,201812,3,2,142935,6620 -939,FR,IR,201812,4,2,11606,93 -939,FR,IR,201812,4,2,693,1 -939,FR,IR,201812,4,2,53599,270 -939,FR,IR,201812,4,2,693562,835 -939,FR,IR,201812,4,2,128739,290 -939,FR,IR,201812,4,2,1000,50 -941,FR,IR,201812,1,2,106,8 -949,FR,IR,201812,0,1,176,7 -949,FR,IR,201812,4,1,563,38 -949,FR,IR,201812,3,2,13820,2626 -949,FR,IR,201812,3,2,1087,27 -949,FR,IR,201812,3,2,47019,4111 -949,FR,IR,201812,3,2,24418,3300 -949,FR,IR,201812,4,2,571,1 -949,FR,IR,201812,4,2,3418,57 -949,FR,IR,201812,4,2,2658,73 -949,FR,IR,201812,4,2,2578,18 -952,FR,IR,201812,3,2,8352,3693 -962,FR,IR,201812,4,1,1315,79 -962,FR,IR,201812,4,1,4184,675 -962,FR,IR,201812,3,2,26250,630 -962,FR,IR,201812,3,2,84945,10839 -962,FR,IR,201812,4,2,13094,164 -962,FR,IR,201812,4,2,1929,24 -963,FR,IR,201812,3,1,165,2 -971,FR,IR,201812,1,2,43039,6945 -971,FR,IR,201812,3,2,11600,460 -971,FR,IR,201812,3,2,73795,1726 -971,FR,IR,201812,3,2,27992,688 -971,FR,IR,201812,4,2,1,0 -971,FR,IR,201812,4,2,28117,866 -972,FR,IR,201812,1,2,55260,8896 -972,FR,IR,201812,3,2,5719,630 -973,FR,IR,201812,3,2,12253,1027 -974,FR,IR,201812,3,1,33,3 -974,FR,IR,201812,4,2,30,3 -974,FR,IR,201812,4,2,236635,280 -975,FR,IR,201812,4,1,2932,780 -975,FR,IR,201812,3,2,87779,1934 -975,FR,IR,201812,4,2,8345,310 -979,FR,IR,201812,1,2,36630,5562 -979,FR,IR,201812,1,2,93,5 -979,FR,IR,201812,3,2,237600,8516 -979,FR,IR,201812,3,2,58390,1268 -979,FR,IR,201812,3,2,20040,155 -979,FR,IR,201812,3,2,517358,8015 -979,FR,IR,201812,3,2,507555,2101 -979,FR,IR,201812,4,2,105835,599 -979,FR,IR,201812,4,2,360,2 -979,FR,IR,201812,4,2,4978,3 -979,FR,IR,201812,4,2,316596,1042 -979,FR,IR,201812,4,2,96594,199 -979,FR,IR,201812,4,2,117990,1545 -999,FR,IR,201812,3,1,3,0 -999,FR,IR,201812,3,1,1500,0 -999,FR,IR,201812,4,1,670,0 -999,FR,IR,201812,4,1,1501,0 -999,FR,IR,201812,4,1,2870,0 -999,FR,IR,201812,4,1,20826,0 -999,FR,IR,201812,1,2,614600,280000 -999,FR,IR,201812,3,2,42315,1120 -999,FR,IR,201812,3,2,215543,3186 -999,FR,IR,201812,3,2,5578,880 -999,FR,IR,201812,3,2,131700,60000 -999,FR,IR,201812,4,2,483273,6861 -999,FR,IR,201812,4,2,1,0 -999,FR,IR,201812,4,2,100,0 -999,FR,IR,201812,4,2,11936,1 -001,FR,IL,201812,3,2,2740084,865700 -001,FR,IL,201812,4,2,4349,17 -031,FR,IL,201812,1,1,62800,46088 -031,FR,IL,201812,1,1,93544,61366 -031,FR,IL,201812,1,1,197704,220350 -031,FR,IL,201812,1,1,54683,59104 -031,FR,IL,201812,1,1,25139,22521 -031,FR,IL,201812,1,1,19162,14482 -031,FR,IL,201812,1,1,447178,382312 -031,FR,IL,201812,1,1,1052596,909164 -031,FR,IL,201812,1,1,293164,187745 -031,FR,IL,201812,1,1,46036,62813 -031,FR,IL,201812,1,1,209198,188547 -031,FR,IL,201812,1,1,660896,593425 -031,FR,IL,201812,1,1,15754,21496 -031,FR,IL,201812,1,1,7086,4163 -031,FR,IL,201812,3,1,34450,23857 -031,FR,IL,201812,3,1,15644,23596 -031,FR,IL,201812,4,1,52607,11558 -035,FR,IL,201812,1,1,1198508,712998 -035,FR,IL,201812,1,1,64936,36634 -035,FR,IL,201812,1,1,1492130,902277 -035,FR,IL,201812,1,1,4959,2850 -035,FR,IL,201812,1,1,71398,39312 -035,FR,IL,201812,1,1,7448,3800 -035,FR,IL,201812,1,1,656458,360899 -035,FR,IL,201812,1,1,1248396,732364 -035,FR,IL,201812,1,1,1699942,989659 -035,FR,IL,201812,1,1,110437,64929 -035,FR,IL,201812,1,1,190898,92927 -035,FR,IL,201812,1,1,167426,110335 -035,FR,IL,201812,1,1,190560,91176 -035,FR,IL,201812,1,1,5835,2515 -035,FR,IL,201812,1,2,578073,342146 -035,FR,IL,201812,1,2,84500,103084 -035,FR,IL,201812,1,2,293237,193976 -035,FR,IL,201812,1,2,33244,21168 -039,FR,IL,201812,0,1,46,19 -039,FR,IL,201812,1,1,26880,24000 -039,FR,IL,201812,1,1,36278,22880 -039,FR,IL,201812,1,1,22800,24000 -039,FR,IL,201812,4,1,36675,3891 -039,FR,IL,201812,1,2,15251,18375 -039,FR,IL,201812,4,2,7906,2500 -049,FR,IL,201812,4,2,27,1 -056,FR,IL,201812,1,2,29011,62250 -056,FR,IL,201812,1,2,27022,9844 -099,FR,IL,201812,1,1,72176,13050 -099,FR,IL,201812,1,1,4062,561 -099,FR,IL,201812,1,1,7752,2700 -099,FR,IL,201812,1,1,8220,800 -099,FR,IL,201812,3,1,1024,50 -099,FR,IL,201812,3,1,17601,1563 -099,FR,IL,201812,4,1,10313,114 -099,FR,IL,201812,4,1,19147,455 -099,FR,IL,201812,4,1,10305,26 -099,FR,IL,201812,4,1,138526,9121 -099,FR,IL,201812,4,1,15000,170 -099,FR,IL,201812,1,2,7755,2240 -099,FR,IL,201812,1,2,8496,780 -099,FR,IL,201812,1,2,5522,172 -099,FR,IL,201812,1,2,10686,750 -099,FR,IL,201812,1,2,15378,56700 -099,FR,IL,201812,1,2,37647,6500 -099,FR,IL,201812,3,2,5,0 -099,FR,IL,201812,3,2,10686,750 -099,FR,IL,201812,4,2,17560,17 -099,FR,IL,201812,4,2,6000,600 -099,FR,IL,201812,4,2,15100,187 -099,FR,IL,201812,4,2,5750,575 -099,FR,IL,201812,4,2,71016,1310 -111,FR,IL,201812,3,2,15,6 -112,FR,IL,201812,1,1,723,29 -112,FR,IL,201812,1,2,751652,2014040 -112,FR,IL,201812,1,2,8584,25200 -121,FR,IL,201812,1,1,21051,1381 -121,FR,IL,201812,1,1,32124,5724 -121,FR,IL,201812,1,1,4541,483 -121,FR,IL,201812,1,1,131309,18329 -121,FR,IL,201812,1,1,53405,6953 -121,FR,IL,201812,4,1,92,1 -121,FR,IL,201812,4,1,178,6 -121,FR,IL,201812,0,2,46,6 -121,FR,IL,201812,1,2,62957,5583 -121,FR,IL,201812,1,2,18247,1700 -121,FR,IL,201812,1,2,3259,90 -121,FR,IL,201812,1,2,81431,9864 -121,FR,IL,201812,1,2,77030,5448 -121,FR,IL,201812,1,2,12518,1903 -121,FR,IL,201812,1,2,2645,189 -121,FR,IL,201812,1,2,455792,33606 -121,FR,IL,201812,1,2,30004,4338 -121,FR,IL,201812,1,2,94931,20400 -121,FR,IL,201812,1,2,21929,5048 -121,FR,IL,201812,3,2,20792,697 -121,FR,IL,201812,4,2,4989,33 -121,FR,IL,201812,4,2,40,4 -122,FR,IL,201812,1,1,14198,11215 -122,FR,IL,201812,4,2,27,8 -125,FR,IL,201812,1,2,55855,2801 -125,FR,IL,201812,1,2,6842,1517 -125,FR,IL,201812,1,2,4894,394 -125,FR,IL,201812,1,2,270854,45603 -125,FR,IL,201812,1,2,12800,940 -125,FR,IL,201812,1,2,22712,2724 -125,FR,IL,201812,1,2,248153,26357 -125,FR,IL,201812,1,2,71390,5101 -125,FR,IL,201812,1,2,95687,10672 -125,FR,IL,201812,1,2,136709,31294 -125,FR,IL,201812,3,2,2581,109 -125,FR,IL,201812,4,2,6165,398 -125,FR,IL,201812,4,2,1314,12 -128,FR,IL,201812,1,1,104,120 -128,FR,IL,201812,1,1,428,300 -128,FR,IL,201812,1,1,40,18 -128,FR,IL,201812,1,2,27065,29359 -128,FR,IL,201812,1,2,40335,52189 -128,FR,IL,201812,1,2,22586,20232 -131,FR,IL,201812,1,2,191035,13225 -132,FR,IL,201812,1,1,60912,6155 -132,FR,IL,201812,1,1,4091,559 -132,FR,IL,201812,1,1,4906,1325 -132,FR,IL,201812,1,1,8077,821 -132,FR,IL,201812,3,1,90,2 -132,FR,IL,201812,4,1,418,4 -132,FR,IL,201812,4,1,941,11 -132,FR,IL,201812,0,2,378,8 -132,FR,IL,201812,1,2,4898,2090 -132,FR,IL,201812,1,2,133137,32130 -132,FR,IL,201812,1,2,51000,17555 -132,FR,IL,201812,1,2,224788,60092 -132,FR,IL,201812,3,2,8803,346 -132,FR,IL,201812,3,2,68887,8140 -132,FR,IL,201812,4,2,75,2 -133,FR,IL,201812,0,1,480,42 -133,FR,IL,201812,1,1,10479,1521 -133,FR,IL,201812,3,1,679,4 -133,FR,IL,201812,4,1,194,12 -135,FR,IL,201812,4,2,1586,30 -135,FR,IL,201812,4,2,11583,117 -136,FR,IL,201812,1,1,1706,736 -136,FR,IL,201812,1,1,37881,13386 -136,FR,IL,201812,1,2,12000,5293 -136,FR,IL,201812,1,2,40144,19344 -136,FR,IL,201812,1,2,1590,1378 -136,FR,IL,201812,3,2,234,12 -136,FR,IL,201812,3,2,13258,2179 -136,FR,IL,201812,4,2,10,0 -139,FR,IL,201812,1,1,2717,875 -139,FR,IL,201812,1,1,409,61 -139,FR,IL,201812,1,1,105,19 -139,FR,IL,201812,1,1,51,12 -139,FR,IL,201812,1,1,3706,560 -139,FR,IL,201812,1,1,676,109 -139,FR,IL,201812,1,1,412332,96244 -139,FR,IL,201812,1,1,2534,2951 -139,FR,IL,201812,1,1,201,36 -139,FR,IL,201812,1,1,108885,33955 -139,FR,IL,201812,1,1,4061,1027 -139,FR,IL,201812,3,1,822,13 -139,FR,IL,201812,4,1,176,1 -139,FR,IL,201812,4,1,2707,1027 -139,FR,IL,201812,1,2,192642,5902 -139,FR,IL,201812,1,2,575436,145152 -139,FR,IL,201812,1,2,18069,8312 -139,FR,IL,201812,1,2,146093,69172 -139,FR,IL,201812,1,2,112219,74504 -139,FR,IL,201812,1,2,20952,48000 -139,FR,IL,201812,3,2,3,1 -139,FR,IL,201812,4,2,328,0 -141,FR,IL,201812,1,2,57460,6178 -141,FR,IL,201812,1,2,94066,18830 -141,FR,IL,201812,1,2,1039887,170023 -141,FR,IL,201812,1,2,110379,21156 -141,FR,IL,201812,1,2,214816,34573 -141,FR,IL,201812,1,2,368175,59246 -142,FR,IL,201812,3,1,13776,92 -142,FR,IL,201812,4,1,3058,119 -142,FR,IL,201812,4,1,5812,18 -142,FR,IL,201812,4,1,29027,335 -144,FR,IL,201812,1,2,18705,2336 -144,FR,IL,201812,1,2,180706,21021 -144,FR,IL,201812,1,2,374419,60012 -144,FR,IL,201812,1,2,67675,23275 -144,FR,IL,201812,1,2,88798,15970 -144,FR,IL,201812,4,2,20,0 -144,FR,IL,201812,4,2,13044,922 -145,FR,IL,201812,1,1,6673,4584 -147,FR,IL,201812,1,1,37993,4181 -147,FR,IL,201812,1,1,166384,27744 -147,FR,IL,201812,1,1,51456,6277 -147,FR,IL,201812,1,1,3048,369 -147,FR,IL,201812,1,1,357936,56071 -147,FR,IL,201812,1,1,97246,16152 -148,FR,IL,201812,1,1,80,12 -148,FR,IL,201812,1,1,1317,132 -148,FR,IL,201812,4,1,71679,157 -161,FR,IL,201812,1,2,1861,1000 -161,FR,IL,201812,1,2,7000,6000 -161,FR,IL,201812,1,2,8303,11250 -161,FR,IL,201812,1,2,11444,20000 -161,FR,IL,201812,1,2,15521,25000 -163,FR,IL,201812,1,1,4833,939 -163,FR,IL,201812,1,1,14770,3586 -163,FR,IL,201812,1,1,26418,7178 -163,FR,IL,201812,1,1,108519,45705 -163,FR,IL,201812,1,1,1981,440 -163,FR,IL,201812,1,1,70838,16728 -163,FR,IL,201812,1,1,4397,1331 -163,FR,IL,201812,3,1,27923,22000 -163,FR,IL,201812,1,2,554815,238423 -163,FR,IL,201812,1,2,216152,103055 -163,FR,IL,201812,1,2,110217,19157 -163,FR,IL,201812,1,2,11245,7574 -163,FR,IL,201812,1,2,70904,35013 -163,FR,IL,201812,1,2,25154,13476 -163,FR,IL,201812,1,2,34516,19354 -163,FR,IL,201812,3,2,410,279 -163,FR,IL,201812,3,2,4466,490 -163,FR,IL,201812,4,2,42,11 -164,FR,IL,201812,0,1,93204,10458 -164,FR,IL,201812,1,1,5088,1856 -164,FR,IL,201812,1,1,294989,30924 -164,FR,IL,201812,1,1,2265,346 -164,FR,IL,201812,1,1,161,66 -164,FR,IL,201812,1,1,181759,22884 -164,FR,IL,201812,1,1,227,60 -164,FR,IL,201812,1,1,19708,3050 -164,FR,IL,201812,1,1,162383,20060 -164,FR,IL,201812,1,1,2263,601 -164,FR,IL,201812,1,1,140799,22220 -164,FR,IL,201812,1,1,623,145 -164,FR,IL,201812,1,1,177261,39140 -164,FR,IL,201812,1,1,151459,144000 -164,FR,IL,201812,1,1,596,155 -164,FR,IL,201812,1,1,153774,76887 -164,FR,IL,201812,1,1,8600,1000 -164,FR,IL,201812,1,2,98424,19574 -164,FR,IL,201812,1,2,27189,13343 -164,FR,IL,201812,1,2,163479,38274 -164,FR,IL,201812,1,2,55300,20000 -164,FR,IL,201812,3,2,30,2 -164,FR,IL,201812,3,2,5306,425 -164,FR,IL,201812,4,2,151,70 -164,FR,IL,201812,4,2,1122,182 -166,FR,IL,201812,1,1,228299,69339 -166,FR,IL,201812,1,1,93871,38899 -166,FR,IL,201812,1,1,11448,2628 -166,FR,IL,201812,1,1,3997,1305 -166,FR,IL,201812,1,1,18510,5850 -166,FR,IL,201812,1,1,9670,2877 -166,FR,IL,201812,1,1,186389,214498 -166,FR,IL,201812,1,1,245381,74181 -166,FR,IL,201812,1,1,241313,148298 -166,FR,IL,201812,1,1,21991,12319 -166,FR,IL,201812,1,1,14217,3965 -166,FR,IL,201812,1,2,88069,70551 -166,FR,IL,201812,1,2,42627,35482 -166,FR,IL,201812,1,2,172661,78272 -166,FR,IL,201812,4,2,336,25 -179,FR,IL,201812,1,2,405528,201697 -179,FR,IL,201812,1,2,338522,144651 -179,FR,IL,201812,1,2,11124,6691 -179,FR,IL,201812,1,2,134383,70205 -179,FR,IL,201812,1,2,95275,34745 -179,FR,IL,201812,1,2,32544,42181 -179,FR,IL,201812,1,2,23539,7100 -179,FR,IL,201812,1,2,69927,52274 -179,FR,IL,201812,1,2,32930,36000 -179,FR,IL,201812,3,2,46,14 -179,FR,IL,201812,4,2,680,170 -181,FR,IL,201812,4,1,60,0 -181,FR,IL,201812,4,1,39,0 -181,FR,IL,201812,1,2,29243,50400 -182,FR,IL,201812,4,1,456,6 -182,FR,IL,201812,1,2,1113,215 -182,FR,IL,201812,1,2,1624,75 -182,FR,IL,201812,1,2,10200,252 -182,FR,IL,201812,1,2,519660,454080 -182,FR,IL,201812,4,2,3765,115 -323,FR,IL,201812,1,2,100,4 -323,FR,IL,201812,1,2,14703,19220 -325,FR,IL,201812,1,2,920,159 -327,FR,IL,201812,4,2,5401,73 -330,FR,IL,201812,1,2,50,3 -341,FR,IL,201812,1,1,14419,6298 -341,FR,IL,201812,4,1,430,1 -341,FR,IL,201812,1,2,30212,3235 -341,FR,IL,201812,1,2,112816,98076 -341,FR,IL,201812,1,2,86293,29903 -341,FR,IL,201812,4,2,2377,127 -341,FR,IL,201812,4,2,206004,16203 -451,FR,IL,201812,1,1,70531,100585 -451,FR,IL,201812,1,1,31411,17550 -451,FR,IL,201812,1,1,192244,62620 -451,FR,IL,201812,1,1,412792,134460 -451,FR,IL,201812,4,2,10729,20 -522,FR,IL,201812,1,2,13431,16613 -532,FR,IL,201812,1,1,4631,222 -532,FR,IL,201812,1,2,2489,894 -532,FR,IL,201812,1,2,68600,53640 -532,FR,IL,201812,1,2,76720,47731 -532,FR,IL,201812,4,2,8628,100 -532,FR,IL,201812,4,2,2041,80 -533,FR,IL,201812,1,2,5810,1859 -533,FR,IL,201812,1,2,95514,7164 -533,FR,IL,201812,1,2,8682,532 -533,FR,IL,201812,1,2,113811,26388 -533,FR,IL,201812,4,2,3207,697 -536,FR,IL,201812,1,2,119108,8934 -536,FR,IL,201812,1,2,15182,2400 -542,FR,IL,201812,1,2,241544,98151 -542,FR,IL,201812,1,2,566314,301838 -542,FR,IL,201812,1,2,11183,3211 -542,FR,IL,201812,1,2,44226,26743 -542,FR,IL,201812,1,2,18006,10328 -542,FR,IL,201812,1,2,26581,16292 -542,FR,IL,201812,3,2,35223,20060 -542,FR,IL,201812,4,2,77826,1694 -542,FR,IL,201812,4,2,761,900 -551,FR,IL,201812,1,1,26884,2167 -551,FR,IL,201812,1,1,2222,515 -551,FR,IL,201812,4,1,85672,808 -551,FR,IL,201812,4,1,266,0 -551,FR,IL,201812,1,2,3928,278 -551,FR,IL,201812,1,2,52,1 -551,FR,IL,201812,1,2,3860,389 -551,FR,IL,201812,1,2,269,1 -551,FR,IL,201812,3,2,352,1 -551,FR,IL,201812,4,2,25432,69 -551,FR,IL,201812,4,2,6951,271 -551,FR,IL,201812,4,2,140271,1665 -551,FR,IL,201812,4,2,20252,43 -552,FR,IL,201812,1,2,911,62 -552,FR,IL,201812,4,2,1158,4 -552,FR,IL,201812,4,2,1152,170 -565,FR,IL,201812,1,1,179735,48786 -565,FR,IL,201812,1,1,180039,48868 -565,FR,IL,201812,1,2,9000,150 -565,FR,IL,201812,4,2,3699,10 -568,FR,IL,201812,1,1,22678,2556 -568,FR,IL,201812,1,1,29384,3096 -568,FR,IL,201812,4,1,28464,66 -568,FR,IL,201812,1,2,13299,1075 -568,FR,IL,201812,1,2,2476,219 -568,FR,IL,201812,1,2,23796,2565 -568,FR,IL,201812,1,2,16451,2784 -568,FR,IL,201812,1,2,136632,22983 -568,FR,IL,201812,1,2,169205,29073 -568,FR,IL,201812,1,2,158583,222106 -568,FR,IL,201812,1,2,31790,4660 -568,FR,IL,201812,3,2,172025,34292 -568,FR,IL,201812,4,2,28201,1458 -568,FR,IL,201812,4,2,26739,547 -611,FR,IL,201812,1,2,1166,972 -614,FR,IL,201812,1,2,4776,1787 -614,FR,IL,201812,1,2,7245,21600 -621,FR,IL,201812,1,1,41103,31306 -621,FR,IL,201812,1,2,14580,12880 -621,FR,IL,201812,4,2,27,0 -621,FR,IL,201812,4,2,1626,261 -631,FR,IL,201812,4,1,10027,1750 -632,FR,IL,201812,1,2,18028,210000 -639,FR,IL,201812,1,1,255777,151200 -639,FR,IL,201812,1,1,496849,302700 -639,FR,IL,201812,1,1,127889,75600 -639,FR,IL,201812,1,1,133821,90500 -639,FR,IL,201812,1,2,9608,125 -639,FR,IL,201812,1,2,2860,5460 -639,FR,IL,201812,1,2,14207,23100 -691,FR,IL,201812,1,1,104363,25614 -691,FR,IL,201812,1,1,26829,5736 -691,FR,IL,201812,1,1,113214,32864 -691,FR,IL,201812,1,1,123901,26351 -691,FR,IL,201812,1,1,203004,91406 -691,FR,IL,201812,1,2,124672,7290 -691,FR,IL,201812,1,2,56860,3200 -691,FR,IL,201812,1,2,29000,3750 -691,FR,IL,201812,1,2,124,40 -691,FR,IL,201812,1,2,261,4 -691,FR,IL,201812,1,2,13422,40320 -691,FR,IL,201812,1,2,6703,2384 -691,FR,IL,201812,3,2,256,130 -691,FR,IL,201812,4,2,44700,493 -691,FR,IL,201812,4,2,171,1 -691,FR,IL,201812,4,2,2912,620 -692,FR,IL,201812,3,1,5134,146 -692,FR,IL,201812,1,2,24000,2000 -692,FR,IL,201812,4,2,6676,118 -723,FR,IL,201812,1,1,19740,20000 -723,FR,IL,201812,1,2,65654,67200 -724,FR,IL,201812,1,2,28410,108000 -729,FR,IL,201812,4,2,61,1 -819,FR,IL,201812,0,1,17904,2 -819,FR,IL,201812,1,1,536015,133910 -819,FR,IL,201812,1,1,527368,776000 -819,FR,IL,201812,1,1,128500,5500 -819,FR,IL,201812,1,1,23296,22150 -819,FR,IL,201812,1,1,14400,20000 -819,FR,IL,201812,1,1,45900,72000 -819,FR,IL,201812,1,1,469446,81168 -819,FR,IL,201812,3,1,77983,1723 -819,FR,IL,201812,3,1,407,5 -819,FR,IL,201812,4,1,104496,226 -819,FR,IL,201812,4,1,134438,299 -819,FR,IL,201812,4,1,198584,120 -819,FR,IL,201812,4,1,8130,736 -819,FR,IL,201812,4,1,19666,2 -819,FR,IL,201812,4,1,39476,84 -819,FR,IL,201812,1,2,401337,8529 -819,FR,IL,201812,1,2,513504,887465 -819,FR,IL,201812,1,2,609832,165680 -819,FR,IL,201812,1,2,36401,16560 -819,FR,IL,201812,1,2,52858,58420 -819,FR,IL,201812,1,2,7430,9750 -819,FR,IL,201812,1,2,260362,313060 -819,FR,IL,201812,1,2,27485,20000 -819,FR,IL,201812,1,2,55558,157500 -819,FR,IL,201812,3,2,101900,3230 -819,FR,IL,201812,3,2,4900,875 -819,FR,IL,201812,3,2,46620,20000 -819,FR,IL,201812,4,2,20666,64 -819,FR,IL,201812,4,2,4581,25 -819,FR,IL,201812,4,2,9027,25 -819,FR,IL,201812,4,2,105,4 -819,FR,IL,201812,4,2,19599,1535 -819,FR,IL,201812,4,2,13918,5 -820,FR,IL,201812,1,2,12168,800 -891,FR,IL,201812,1,1,14981,2729 -891,FR,IL,201812,1,1,14972,2255 -891,FR,IL,201812,1,1,12430,1438 -891,FR,IL,201812,1,1,83520,11571 -891,FR,IL,201812,1,1,19571,2125 -891,FR,IL,201812,1,1,189627,62139 -891,FR,IL,201812,1,1,492934,195571 -891,FR,IL,201812,1,1,55772,24738 -891,FR,IL,201812,1,1,480978,170726 -891,FR,IL,201812,1,1,27950,2523 -891,FR,IL,201812,1,1,80190,21610 -891,FR,IL,201812,1,1,20905,1482 -891,FR,IL,201812,3,1,31343,1059 -891,FR,IL,201812,3,1,51954,10810 -891,FR,IL,201812,4,1,553,126 -891,FR,IL,201812,4,1,1707,3 -891,FR,IL,201812,1,2,169011,15711 -891,FR,IL,201812,1,2,52135,3412 -891,FR,IL,201812,1,2,4202,800 -891,FR,IL,201812,1,2,56801,22357 -891,FR,IL,201812,1,2,194,40 -891,FR,IL,201812,1,2,20100,3239 -891,FR,IL,201812,1,2,18688,5317 -891,FR,IL,201812,1,2,2142704,1341441 -891,FR,IL,201812,1,2,80572,34000 -891,FR,IL,201812,1,2,414530,173324 -891,FR,IL,201812,1,2,57826,49500 -891,FR,IL,201812,1,2,85568,74166 -891,FR,IL,201812,1,2,92972,47989 -891,FR,IL,201812,1,2,142341,66783 -891,FR,IL,201812,1,2,13509,18000 -891,FR,IL,201812,1,2,113601,49170 -891,FR,IL,201812,1,2,188119,70400 -891,FR,IL,201812,1,2,42587,13000 -891,FR,IL,201812,3,2,725,36 -891,FR,IL,201812,3,2,32073,21328 -891,FR,IL,201812,3,2,76368,41111 -891,FR,IL,201812,4,2,9733,417 -891,FR,IL,201812,4,2,2647,92 -891,FR,IL,201812,4,2,4450,76 -891,FR,IL,201812,4,2,210,180 -891,FR,IL,201812,4,2,80026,1774 -891,FR,IL,201812,4,2,2605,474 -891,FR,IL,201812,4,2,3434,60 -891,FR,IL,201812,4,2,3100,1040 -891,FR,IL,201812,4,2,8579,294 -892,FR,IL,201812,3,1,1372,42 -892,FR,IL,201812,4,1,75,0 -892,FR,IL,201812,4,1,24340,260 -892,FR,IL,201812,4,1,59254,580 -892,FR,IL,201812,0,2,111,6 -892,FR,IL,201812,1,2,8123,2882 -892,FR,IL,201812,1,2,17685,1228 -892,FR,IL,201812,1,2,38050,8858 -892,FR,IL,201812,1,2,8200,972 -892,FR,IL,201812,1,2,202,41 -892,FR,IL,201812,1,2,17300,1265 -892,FR,IL,201812,1,2,137237,67081 -892,FR,IL,201812,1,2,45581,20125 -892,FR,IL,201812,1,2,11450,38240 -892,FR,IL,201812,1,2,21592,74414 -892,FR,IL,201812,4,2,14453,162 -892,FR,IL,201812,4,2,523,1 -892,FR,IL,201812,4,2,4596,150 -892,FR,IL,201812,4,2,15400,221 -892,FR,IL,201812,4,2,1779,1401 -893,FR,IL,201812,0,1,1809,58 -893,FR,IL,201812,1,1,62121,12049 -893,FR,IL,201812,1,1,142640,18401 -893,FR,IL,201812,1,1,52141,6987 -893,FR,IL,201812,1,1,108839,66374 -893,FR,IL,201812,1,1,105,10 -893,FR,IL,201812,1,1,16447,9699 -893,FR,IL,201812,1,1,1503,687 -893,FR,IL,201812,1,1,87951,65289 -893,FR,IL,201812,1,1,202757,33719 -893,FR,IL,201812,1,1,32955,2670 -893,FR,IL,201812,1,1,21092,3432 -893,FR,IL,201812,3,1,10430,298 -893,FR,IL,201812,3,1,154,34 -893,FR,IL,201812,4,1,33990,1513 -893,FR,IL,201812,4,1,927549,13863 -893,FR,IL,201812,4,1,98908,1539 -893,FR,IL,201812,4,1,331,3 -893,FR,IL,201812,4,1,849,61 -893,FR,IL,201812,0,2,514,5 -893,FR,IL,201812,1,2,2656607,58373 -893,FR,IL,201812,1,2,122495,2067 -893,FR,IL,201812,1,2,57500,5549 -893,FR,IL,201812,1,2,19020,1475 -893,FR,IL,201812,1,2,298041,7370 -893,FR,IL,201812,1,2,20800,1081 -893,FR,IL,201812,1,2,135579,3645 -893,FR,IL,201812,1,2,28354,1512 -893,FR,IL,201812,1,2,4406541,706531 -893,FR,IL,201812,1,2,192598,7323 -893,FR,IL,201812,1,2,679093,49552 -893,FR,IL,201812,1,2,183981,5320 -893,FR,IL,201812,1,2,14350,216 -893,FR,IL,201812,1,2,66863,17858 -893,FR,IL,201812,1,2,872526,25543 -893,FR,IL,201812,1,2,39166,8160 -893,FR,IL,201812,1,2,46398,51300 -893,FR,IL,201812,1,2,15358,1355 -893,FR,IL,201812,1,2,43360,2562 -893,FR,IL,201812,3,2,158536,3568 -893,FR,IL,201812,3,2,134750,4435 -893,FR,IL,201812,3,2,22533,4087 -893,FR,IL,201812,4,2,2553062,19835 -893,FR,IL,201812,4,2,32891,373 -893,FR,IL,201812,4,2,85983,450 -893,FR,IL,201812,4,2,1127394,3950 -893,FR,IL,201812,4,2,87004,640 -893,FR,IL,201812,4,2,132941,620 -893,FR,IL,201812,4,2,13494,100 -893,FR,IL,201812,4,2,347363,6118 -893,FR,IL,201812,4,2,21349,7 -893,FR,IL,201812,4,2,209760,3500 -893,FR,IL,201812,4,2,31958,170 -894,FR,IL,201812,4,2,2905,100 -895,FR,IL,201812,1,1,1641,1236 -895,FR,IL,201812,1,2,8167,15000 -895,FR,IL,201812,1,2,64764,55800 -895,FR,IL,201812,1,2,8536,16000 -896,FR,IL,201812,0,1,1049,23 -896,FR,IL,201812,1,1,235205,35940 -896,FR,IL,201812,1,1,2685840,477063 -896,FR,IL,201812,1,1,1130988,172776 -896,FR,IL,201812,1,1,6660700,776076 -896,FR,IL,201812,1,1,1742,363 -896,FR,IL,201812,1,1,182826,75209 -896,FR,IL,201812,1,1,10908,3650 -896,FR,IL,201812,3,1,31834,430 -896,FR,IL,201812,4,1,311241,20324 -896,FR,IL,201812,4,1,109108,491 -896,FR,IL,201812,4,1,450,18 -896,FR,IL,201812,4,1,6176,48 -896,FR,IL,201812,4,1,756141,103866 -896,FR,IL,201812,4,1,1365776,2772 -896,FR,IL,201812,4,1,2094,2 -896,FR,IL,201812,1,2,128815,6345 -896,FR,IL,201812,1,2,6831,1260 -896,FR,IL,201812,1,2,11000,2880 -896,FR,IL,201812,1,2,1526,85 -896,FR,IL,201812,1,2,174193,1980 -896,FR,IL,201812,1,2,1445,730 -896,FR,IL,201812,1,2,167701,7000 -896,FR,IL,201812,1,2,19731,7574 -896,FR,IL,201812,1,2,1324614,178608 -896,FR,IL,201812,1,2,40906,43460 -896,FR,IL,201812,1,2,318885,106214 -896,FR,IL,201812,1,2,123562,25550 -896,FR,IL,201812,1,2,234089,46660 -896,FR,IL,201812,1,2,1040,520 -896,FR,IL,201812,1,2,143639,52673 -896,FR,IL,201812,1,2,12600,10800 -896,FR,IL,201812,1,2,86839,8000 -896,FR,IL,201812,1,2,22813,3000 -896,FR,IL,201812,1,2,15566,1720 -896,FR,IL,201812,3,2,14960,292 -896,FR,IL,201812,3,2,6010,739 -896,FR,IL,201812,3,2,5385,1680 -896,FR,IL,201812,3,2,56400,44260 -896,FR,IL,201812,3,2,127308,18000 -896,FR,IL,201812,4,2,5294069,5606 -896,FR,IL,201812,4,2,10770,38 -896,FR,IL,201812,4,2,58868,628 -896,FR,IL,201812,4,2,1365,8 -896,FR,IL,201812,4,2,70978,1262 -896,FR,IL,201812,4,2,8229,35 -896,FR,IL,201812,4,2,105573,1886 -896,FR,IL,201812,4,2,13064,820 -896,FR,IL,201812,4,2,32890,14 -896,FR,IL,201812,4,2,157270,393 -910,FR,IL,201812,0,1,45067,21 -910,FR,IL,201812,1,1,118378,6932 -910,FR,IL,201812,1,1,36346,5389 -910,FR,IL,201812,1,1,16671,666 -910,FR,IL,201812,1,1,140734,15286 -910,FR,IL,201812,3,1,391,1 -910,FR,IL,201812,4,1,79834,136 -910,FR,IL,201812,4,1,114921,156 -910,FR,IL,201812,4,1,8864,5 -910,FR,IL,201812,4,1,179047,238 -910,FR,IL,201812,0,2,720,11 -910,FR,IL,201812,1,2,2088785,195590 -910,FR,IL,201812,1,2,1043,16 -910,FR,IL,201812,1,2,3716681,423239 -910,FR,IL,201812,1,2,127460,8049 -910,FR,IL,201812,1,2,2700,419 -910,FR,IL,201812,1,2,6200,440 -910,FR,IL,201812,1,2,934792,68501 -910,FR,IL,201812,1,2,73170,4032 -910,FR,IL,201812,1,2,11000,600 -910,FR,IL,201812,1,2,42931,2150 -910,FR,IL,201812,2,2,9348,1090 -910,FR,IL,201812,3,2,312622,36932 -910,FR,IL,201812,3,2,9446,1090 -910,FR,IL,201812,3,2,9446,1090 -910,FR,IL,201812,4,2,654779,9057 -910,FR,IL,201812,4,2,27944,6 -910,FR,IL,201812,4,2,8959,150 -910,FR,IL,201812,4,2,44797,408 -910,FR,IL,201812,4,2,541139,3608 -910,FR,IL,201812,4,2,2829,2 -910,FR,IL,201812,4,2,46234,1420 -910,FR,IL,201812,4,2,2788,9 -910,FR,IL,201812,4,2,108640,106 -920,FR,IL,201812,1,1,25,1 -920,FR,IL,201812,3,1,257,7 -920,FR,IL,201812,3,1,2239,105 -920,FR,IL,201812,4,1,30619,1237 -920,FR,IL,201812,4,1,2282,12 -920,FR,IL,201812,4,1,3871,101 -920,FR,IL,201812,1,2,1350,730 -920,FR,IL,201812,1,2,7255,483 -920,FR,IL,201812,1,2,32591,6980 -920,FR,IL,201812,1,2,12800,725 -920,FR,IL,201812,1,2,14000,1000 -920,FR,IL,201812,1,2,312119,12931 -920,FR,IL,201812,3,2,2620,6 -920,FR,IL,201812,4,2,2335,352 -920,FR,IL,201812,4,2,3167,90 -920,FR,IL,201812,4,2,1488,12 -931,FR,IL,201812,0,1,276264,2096 -931,FR,IL,201812,1,1,8589,434 -931,FR,IL,201812,1,1,5504,7448 -931,FR,IL,201812,1,1,212174,7207 -931,FR,IL,201812,3,1,1882456,1801 -931,FR,IL,201812,3,1,4293,118 -931,FR,IL,201812,3,1,4358,130 -931,FR,IL,201812,4,1,744562,4653 -931,FR,IL,201812,4,1,1706585,2985 -931,FR,IL,201812,4,1,218,22 -931,FR,IL,201812,4,1,768483,277 -931,FR,IL,201812,4,1,4120,16 -931,FR,IL,201812,4,1,2999,82 -931,FR,IL,201812,4,1,247,5 -931,FR,IL,201812,4,1,1408,34 -931,FR,IL,201812,4,1,1239372,5875 -931,FR,IL,201812,4,1,5586,7 -931,FR,IL,201812,4,1,477,7 -931,FR,IL,201812,4,1,5265576,21575 -931,FR,IL,201812,4,1,309,0 -931,FR,IL,201812,4,1,1265,15 -931,FR,IL,201812,4,1,263,5 -931,FR,IL,201812,4,1,5295,12 -931,FR,IL,201812,4,1,3753,22 -931,FR,IL,201812,4,1,120,1 -931,FR,IL,201812,0,2,7208,36 -931,FR,IL,201812,1,2,2830912,113208 -931,FR,IL,201812,1,2,10699,632 -931,FR,IL,201812,1,2,12500,3345 -931,FR,IL,201812,1,2,550,3 -931,FR,IL,201812,1,2,42744,2076 -931,FR,IL,201812,1,2,1571,233 -931,FR,IL,201812,1,2,44931,2452 -931,FR,IL,201812,1,2,233143,1839 -931,FR,IL,201812,1,2,27905,1327 -931,FR,IL,201812,1,2,20265,614 -931,FR,IL,201812,1,2,2413479,219257 -931,FR,IL,201812,1,2,388636,21223 -931,FR,IL,201812,1,2,97344,12841 -931,FR,IL,201812,1,2,219938,12840 -931,FR,IL,201812,1,2,60992,8060 -931,FR,IL,201812,1,2,31603,4596 -931,FR,IL,201812,1,2,51337,5333 -931,FR,IL,201812,1,2,8260,182 -931,FR,IL,201812,3,2,236840,3004 -931,FR,IL,201812,3,2,19792,12 -931,FR,IL,201812,3,2,13415,1070 -931,FR,IL,201812,4,2,2460115,11483 -931,FR,IL,201812,4,2,615644,1474 -931,FR,IL,201812,4,2,53732,335 -931,FR,IL,201812,4,2,520418,1884 -931,FR,IL,201812,4,2,177439,166 -931,FR,IL,201812,4,2,3710,45 -931,FR,IL,201812,4,2,2522910,12625 -931,FR,IL,201812,4,2,27941,42 -931,FR,IL,201812,4,2,76983,646 -931,FR,IL,201812,4,2,55184,4 -931,FR,IL,201812,4,2,100200,6392 -931,FR,IL,201812,4,2,47004,93 -931,FR,IL,201812,4,2,588874,9510 -931,FR,IL,201812,4,2,814343,663 -931,FR,IL,201812,4,2,755041,1877 -931,FR,IL,201812,5,2,1324,9 -939,FR,IL,201812,0,1,231880,12919 -939,FR,IL,201812,1,1,237117,13304 -939,FR,IL,201812,1,1,279128,45201 -939,FR,IL,201812,1,1,290477,19811 -939,FR,IL,201812,1,1,31923,3734 -939,FR,IL,201812,1,1,351330,90040 -939,FR,IL,201812,1,1,78773,7283 -939,FR,IL,201812,1,1,2198111,102146 -939,FR,IL,201812,1,1,1370,89 -939,FR,IL,201812,3,1,151259,1720 -939,FR,IL,201812,3,1,3268,370 -939,FR,IL,201812,3,1,8432,234 -939,FR,IL,201812,4,1,274297,2789 -939,FR,IL,201812,4,1,528907,1531 -939,FR,IL,201812,4,1,6497,24 -939,FR,IL,201812,4,1,9417,300 -939,FR,IL,201812,4,1,128376,892 -939,FR,IL,201812,4,1,754138,899 -939,FR,IL,201812,4,1,3752540,13160 -939,FR,IL,201812,0,2,1118,1 -939,FR,IL,201812,1,2,2980652,239154 -939,FR,IL,201812,1,2,124311,2915 -939,FR,IL,201812,1,2,29000,461 -939,FR,IL,201812,1,2,106261,1694 -939,FR,IL,201812,1,2,47142,1601 -939,FR,IL,201812,1,2,14450,12 -939,FR,IL,201812,1,2,32934,914 -939,FR,IL,201812,1,2,18800,1056 -939,FR,IL,201812,1,2,25274,1200 -939,FR,IL,201812,1,2,800090,125379 -939,FR,IL,201812,1,2,2939152,234441 -939,FR,IL,201812,1,2,738916,11867 -939,FR,IL,201812,1,2,187754,1666 -939,FR,IL,201812,1,2,116084,42022 -939,FR,IL,201812,1,2,243285,58117 -939,FR,IL,201812,1,2,3000,312 -939,FR,IL,201812,1,2,11850,8700 -939,FR,IL,201812,1,2,18214,524 -939,FR,IL,201812,3,2,125895,1963 -939,FR,IL,201812,4,2,13292018,25620 -939,FR,IL,201812,4,2,264067,2909 -939,FR,IL,201812,4,2,16422,527 -939,FR,IL,201812,4,2,9511,18 -939,FR,IL,201812,4,2,205376,949 -939,FR,IL,201812,4,2,120591,32 -939,FR,IL,201812,4,2,291,0 -939,FR,IL,201812,4,2,1785439,7918 -939,FR,IL,201812,4,2,2411,162 -939,FR,IL,201812,4,2,12486,68 -939,FR,IL,201812,4,2,491070,18960 -939,FR,IL,201812,4,2,95024,309 -939,FR,IL,201812,4,2,125836,1017 -939,FR,IL,201812,5,2,6330,36 -941,FR,IL,201812,1,1,4503,250 -941,FR,IL,201812,4,1,1076,5 -941,FR,IL,201812,4,1,1780,2 -941,FR,IL,201812,1,2,20726,1540 -949,FR,IL,201812,0,1,5473,67 -949,FR,IL,201812,1,1,5513,141 -949,FR,IL,201812,1,1,41985,5248 -949,FR,IL,201812,1,1,1,1 -949,FR,IL,201812,1,1,7704,900 -949,FR,IL,201812,1,1,90596,49861 -949,FR,IL,201812,1,1,9442,3382 -949,FR,IL,201812,1,1,25044,12236 -949,FR,IL,201812,1,1,39521,8329 -949,FR,IL,201812,1,1,14346,1280 -949,FR,IL,201812,1,1,4955,285 -949,FR,IL,201812,3,1,105881,364 -949,FR,IL,201812,3,1,4066,11 -949,FR,IL,201812,4,1,110077,1230 -949,FR,IL,201812,4,1,127893,345 -949,FR,IL,201812,4,1,5561,13 -949,FR,IL,201812,4,1,6504,97 -949,FR,IL,201812,4,1,22040,201 -949,FR,IL,201812,4,1,54,0 -949,FR,IL,201812,4,1,22004,2051 -949,FR,IL,201812,0,2,322,27 -949,FR,IL,201812,1,2,142545,13747 -949,FR,IL,201812,1,2,9074,210 -949,FR,IL,201812,1,2,3450,120 -949,FR,IL,201812,1,2,13516,1961 -949,FR,IL,201812,1,2,120,2 -949,FR,IL,201812,1,2,2736,76 -949,FR,IL,201812,1,2,4656,260 -949,FR,IL,201812,1,2,64200,17934 -949,FR,IL,201812,1,2,25529,565 -949,FR,IL,201812,1,2,1700,321 -949,FR,IL,201812,1,2,141513,10339 -949,FR,IL,201812,1,2,1671,84 -949,FR,IL,201812,1,2,77546,24013 -949,FR,IL,201812,1,2,61300,25400 -949,FR,IL,201812,1,2,40579,6880 -949,FR,IL,201812,1,2,2160,1000 -949,FR,IL,201812,3,2,34251,773 -949,FR,IL,201812,3,2,45505,38749 -949,FR,IL,201812,3,2,63075,15381 -949,FR,IL,201812,3,2,77098,22410 -949,FR,IL,201812,4,2,400710,1896 -949,FR,IL,201812,4,2,265,2 -949,FR,IL,201812,4,2,4313,96 -949,FR,IL,201812,4,2,5442,10 -949,FR,IL,201812,4,2,186320,4436 -949,FR,IL,201812,4,2,2291,25 -949,FR,IL,201812,4,2,1600,25 -949,FR,IL,201812,4,2,2287,46 -949,FR,IL,201812,4,2,62583,2300 -949,FR,IL,201812,4,2,16852,97 -949,FR,IL,201812,4,2,15522,259 -951,FR,IL,201812,3,1,10496,1170 -951,FR,IL,201812,4,1,1242,0 -951,FR,IL,201812,1,2,1330,67 -951,FR,IL,201812,1,2,6483,168 -951,FR,IL,201812,3,2,2120,128 -951,FR,IL,201812,3,2,32523,1765 -951,FR,IL,201812,4,2,6702,321 -951,FR,IL,201812,4,2,421,8 -952,FR,IL,201812,0,1,4668501,106 -952,FR,IL,201812,3,1,1258,4 -952,FR,IL,201812,3,1,2061832,0 -952,FR,IL,201812,4,1,20095,17 -952,FR,IL,201812,4,1,552,2 -952,FR,IL,201812,4,1,253144,5 -952,FR,IL,201812,4,1,10309,2 -952,FR,IL,201812,4,1,618440,94 -952,FR,IL,201812,4,1,272571,0 -952,FR,IL,201812,0,2,33,3 -952,FR,IL,201812,1,2,21369,4293 -952,FR,IL,201812,1,2,11547,1114 -952,FR,IL,201812,1,2,12914,2527 -952,FR,IL,201812,1,2,5116,485 -952,FR,IL,201812,1,2,144526,91775 -952,FR,IL,201812,1,2,61391,151668 -952,FR,IL,201812,1,2,24890,10213 -952,FR,IL,201812,1,2,25856,46402 -952,FR,IL,201812,1,2,34329,25774 -952,FR,IL,201812,1,2,57104,74956 -952,FR,IL,201812,1,2,172905,92866 -952,FR,IL,201812,1,2,39377,64380 -952,FR,IL,201812,3,2,1955,257 -952,FR,IL,201812,3,2,99195,80301 -952,FR,IL,201812,3,2,4471,7665 -952,FR,IL,201812,4,2,7720,620 -952,FR,IL,201812,4,2,5104,24 -952,FR,IL,201812,4,2,783407,0 -952,FR,IL,201812,4,2,153,1 -952,FR,IL,201812,4,2,90531,70 -961,FR,IL,201812,3,1,30072,23 -961,FR,IL,201812,4,1,96,0 -961,FR,IL,201812,4,2,2153,4 -961,FR,IL,201812,4,2,184,0 -962,FR,IL,201812,0,1,391,19 -962,FR,IL,201812,1,1,34404,9499 -962,FR,IL,201812,1,1,9823,4865 -962,FR,IL,201812,1,1,986879,214926 -962,FR,IL,201812,1,1,10952,3006 -962,FR,IL,201812,3,1,3503,210 -962,FR,IL,201812,4,1,326,65 -962,FR,IL,201812,4,1,4134,37 -962,FR,IL,201812,4,1,1342,305 -962,FR,IL,201812,4,1,101,1 -962,FR,IL,201812,4,1,65,2 -962,FR,IL,201812,1,2,113324,6643 -962,FR,IL,201812,1,2,26259,796 -962,FR,IL,201812,1,2,73800,2935 -962,FR,IL,201812,1,2,2503,199 -962,FR,IL,201812,1,2,3799,864 -962,FR,IL,201812,1,2,986,100 -962,FR,IL,201812,1,2,13761,558 -962,FR,IL,201812,1,2,77136,8653 -962,FR,IL,201812,1,2,13218,4062 -962,FR,IL,201812,1,2,26516,4882 -962,FR,IL,201812,1,2,182,4 -962,FR,IL,201812,1,2,71880,5273 -962,FR,IL,201812,1,2,521150,63068 -962,FR,IL,201812,1,2,449,2325 -962,FR,IL,201812,3,2,21919,706 -962,FR,IL,201812,3,2,22421,2999 -962,FR,IL,201812,3,2,56714,23795 -962,FR,IL,201812,4,2,44292,1129 -962,FR,IL,201812,4,2,1,0 -962,FR,IL,201812,4,2,11464,90 -962,FR,IL,201812,4,2,1448,65 -962,FR,IL,201812,4,2,165,5 -962,FR,IL,201812,4,2,61092,1454 -962,FR,IL,201812,4,2,2662,55 -962,FR,IL,201812,4,2,21906,1010 -962,FR,IL,201812,4,2,53180,1195 -962,FR,IL,201812,4,2,4168,43 -963,FR,IL,201812,0,1,30779,601 -963,FR,IL,201812,1,1,913,58 -963,FR,IL,201812,3,1,14086,338 -963,FR,IL,201812,4,1,37894,252 -963,FR,IL,201812,4,1,3423,6 -963,FR,IL,201812,4,1,129847,1274 -963,FR,IL,201812,0,2,8389,43 -963,FR,IL,201812,1,2,175639,3876 -963,FR,IL,201812,1,2,5919,311 -963,FR,IL,201812,1,2,17000,1082 -963,FR,IL,201812,1,2,16230,843 -963,FR,IL,201812,1,2,1202,48 -963,FR,IL,201812,1,2,46277,2021 -963,FR,IL,201812,1,2,78147,2534 -963,FR,IL,201812,1,2,14281,387 -963,FR,IL,201812,1,2,151752,9500 -963,FR,IL,201812,3,2,11543,110 -963,FR,IL,201812,3,2,20,8 -963,FR,IL,201812,4,2,959969,5106 -963,FR,IL,201812,4,2,1,3 -963,FR,IL,201812,4,2,21766,280 -963,FR,IL,201812,4,2,8366,23 -963,FR,IL,201812,4,2,5922,78 -963,FR,IL,201812,4,2,193515,1709 -963,FR,IL,201812,4,2,500,10 -963,FR,IL,201812,4,2,715082,10402 -963,FR,IL,201812,4,2,31194,1860 -963,FR,IL,201812,4,2,23101,353 -963,FR,IL,201812,4,2,11581,49 -971,FR,IL,201812,0,1,1529,1 -971,FR,IL,201812,1,1,6711,8 -971,FR,IL,201812,1,1,68,31 -971,FR,IL,201812,1,1,311839,67925 -971,FR,IL,201812,1,1,29645,7605 -971,FR,IL,201812,1,1,46062,8547 -971,FR,IL,201812,1,1,290457,67528 -971,FR,IL,201812,1,1,56450,16365 -971,FR,IL,201812,3,1,115,3 -971,FR,IL,201812,4,1,1767,66 -971,FR,IL,201812,4,1,60,0 -971,FR,IL,201812,4,1,590,1 -971,FR,IL,201812,4,1,7,0 -971,FR,IL,201812,4,1,6351,790 -971,FR,IL,201812,1,2,38518,1637 -971,FR,IL,201812,1,2,4250,180 -971,FR,IL,201812,1,2,175632,44606 -971,FR,IL,201812,1,2,51648,10736 -971,FR,IL,201812,1,2,107410,5496 -971,FR,IL,201812,3,2,1680,220 -971,FR,IL,201812,4,2,88639,2937 -971,FR,IL,201812,4,2,108,0 -971,FR,IL,201812,4,2,59459,595 -971,FR,IL,201812,4,2,89,0 -971,FR,IL,201812,4,2,104687,2350 -971,FR,IL,201812,4,2,3579,310 -971,FR,IL,201812,4,2,2389,4 -971,FR,IL,201812,4,2,133,2 -972,FR,IL,201812,3,1,187,3 -972,FR,IL,201812,4,1,4729,600 -972,FR,IL,201812,1,2,3450,1476 -972,FR,IL,201812,1,2,5519,509 -972,FR,IL,201812,1,2,3938,5523 -972,FR,IL,201812,1,2,481327,335996 -972,FR,IL,201812,1,2,22681,3660 -972,FR,IL,201812,1,2,94874,79849 -972,FR,IL,201812,1,2,136875,74442 -972,FR,IL,201812,3,2,64932,31744 -972,FR,IL,201812,3,2,48754,18616 -972,FR,IL,201812,4,2,25,0 -972,FR,IL,201812,4,2,9263,55 -972,FR,IL,201812,4,2,119,1 -972,FR,IL,201812,4,2,601,80 -972,FR,IL,201812,4,2,1012,37 -973,FR,IL,201812,1,1,38412,16106 -973,FR,IL,201812,1,1,5,611 -973,FR,IL,201812,1,1,36047,29107 -973,FR,IL,201812,1,1,73100,19291 -973,FR,IL,201812,1,1,159111,155240 -973,FR,IL,201812,1,1,13927,1226 -973,FR,IL,201812,1,1,31,30 -973,FR,IL,201812,3,1,8701,492 -973,FR,IL,201812,4,1,61,0 -973,FR,IL,201812,4,1,848,38 -973,FR,IL,201812,1,2,4934,2582 -973,FR,IL,201812,1,2,7393,384 -973,FR,IL,201812,1,2,377,61 -973,FR,IL,201812,1,2,35384,8229 -973,FR,IL,201812,1,2,354,280 -973,FR,IL,201812,1,2,1157,40 -973,FR,IL,201812,1,2,425,212 -973,FR,IL,201812,1,2,41040,26109 -973,FR,IL,201812,1,2,13991,7760 -973,FR,IL,201812,3,2,6367,300 -973,FR,IL,201812,3,2,14,8 -973,FR,IL,201812,3,2,29500,6401 -973,FR,IL,201812,4,2,4468,1416 -973,FR,IL,201812,4,2,814,53 -973,FR,IL,201812,4,2,80572,1880 -974,FR,IL,201812,0,1,16031,707 -974,FR,IL,201812,1,1,179,82 -974,FR,IL,201812,1,1,159122,26111 -974,FR,IL,201812,1,1,16,7 -974,FR,IL,201812,3,1,49722,2181 -974,FR,IL,201812,3,1,1040,0 -974,FR,IL,201812,4,1,569,17 -974,FR,IL,201812,4,1,7019,136 -974,FR,IL,201812,4,1,222,67 -974,FR,IL,201812,4,1,6853,903 -974,FR,IL,201812,5,1,1138,61 -974,FR,IL,201812,0,2,5812,36 -974,FR,IL,201812,1,2,30,2 -974,FR,IL,201812,1,2,19391,6966 -974,FR,IL,201812,3,2,3182,68 -974,FR,IL,201812,3,2,40,11 -974,FR,IL,201812,3,2,268,90 -974,FR,IL,201812,4,2,58041,4408 -974,FR,IL,201812,4,2,1,4 -974,FR,IL,201812,4,2,2718,18 -974,FR,IL,201812,4,2,124,12 -974,FR,IL,201812,4,2,119,15 -974,FR,IL,201812,4,2,7920,160 -974,FR,IL,201812,5,2,4125,37 -975,FR,IL,201812,0,1,11473,75 -975,FR,IL,201812,1,1,2409,1600 -975,FR,IL,201812,1,1,42185,10886 -975,FR,IL,201812,1,1,8316,750 -975,FR,IL,201812,1,1,32204,8688 -975,FR,IL,201812,3,1,640,2 -975,FR,IL,201812,4,1,898,0 -975,FR,IL,201812,4,1,4025,13 -975,FR,IL,201812,1,2,33603,2109 -975,FR,IL,201812,1,2,410170,29602 -975,FR,IL,201812,1,2,23547,2955 -975,FR,IL,201812,1,2,78486,19155 -975,FR,IL,201812,1,2,5952,300 -975,FR,IL,201812,1,2,19147,415 -975,FR,IL,201812,1,2,102760,14400 -975,FR,IL,201812,1,2,45250,4108 -975,FR,IL,201812,1,2,8565,2186 -975,FR,IL,201812,1,2,29030,4450 -975,FR,IL,201812,4,2,25673,203 -975,FR,IL,201812,4,2,549,4 -975,FR,IL,201812,4,2,12020,161 -975,FR,IL,201812,4,2,688,100 -975,FR,IL,201812,4,2,328,17 -975,FR,IL,201812,4,2,26936,1392 -975,FR,IL,201812,4,2,4423,30 -975,FR,IL,201812,4,2,65400,7700 -975,FR,IL,201812,4,2,2717,18 -975,FR,IL,201812,8,2,7158,11518 -976,FR,IL,201812,0,1,15736,189 -976,FR,IL,201812,1,1,276,63 -976,FR,IL,201812,3,1,2959,18 -976,FR,IL,201812,3,1,20,2 -976,FR,IL,201812,4,1,6699,148 -976,FR,IL,201812,4,1,106,14 -976,FR,IL,201812,4,1,875,13 -976,FR,IL,201812,1,2,14,8 -976,FR,IL,201812,1,2,2285,550 -976,FR,IL,201812,1,2,233,15 -976,FR,IL,201812,1,2,61016,5141 -976,FR,IL,201812,4,2,8656,1500 -976,FR,IL,201812,4,2,23940,1103 -979,FR,IL,201812,0,1,117355,1182 -979,FR,IL,201812,1,1,193677,31324 -979,FR,IL,201812,1,1,12275,2295 -979,FR,IL,201812,1,1,45383,4081 -979,FR,IL,201812,1,1,7860,2505 -979,FR,IL,201812,1,1,6042,184 -979,FR,IL,201812,1,1,3555,677 -979,FR,IL,201812,1,1,168683,65551 -979,FR,IL,201812,1,1,1078781,109948 -979,FR,IL,201812,1,1,69742,3965 -979,FR,IL,201812,1,1,183641,42074 -979,FR,IL,201812,1,1,42330,7368 -979,FR,IL,201812,1,1,193237,29376 -979,FR,IL,201812,1,1,475763,71711 -979,FR,IL,201812,1,1,136638,24617 -979,FR,IL,201812,1,1,28502,7040 -979,FR,IL,201812,1,1,138782,10649 -979,FR,IL,201812,1,1,205234,66036 -979,FR,IL,201812,1,1,361500,48943 -979,FR,IL,201812,1,1,334193,73199 -979,FR,IL,201812,1,1,2921,434 -979,FR,IL,201812,3,1,1601098,6377 -979,FR,IL,201812,3,1,58452,0 -979,FR,IL,201812,4,1,361099,5010 -979,FR,IL,201812,4,1,1914647,3693 -979,FR,IL,201812,4,1,140,0 -979,FR,IL,201812,4,1,452471,1500 -979,FR,IL,201812,4,1,22005,130 -979,FR,IL,201812,4,1,841836,1530 -979,FR,IL,201812,4,1,6,0 -979,FR,IL,201812,4,1,2283552,7694 -979,FR,IL,201812,4,1,232,3 -979,FR,IL,201812,5,1,529,3 -979,FR,IL,201812,0,2,3553,35 -979,FR,IL,201812,1,2,406990,12508 -979,FR,IL,201812,1,2,1398,59 -979,FR,IL,201812,1,2,10300,516 -979,FR,IL,201812,1,2,4423,417 -979,FR,IL,201812,1,2,29639,270 -979,FR,IL,201812,1,2,2579,430 -979,FR,IL,201812,1,2,55897,627 -979,FR,IL,201812,1,2,19500,517 -979,FR,IL,201812,1,2,27825,2817 -979,FR,IL,201812,1,2,221950,7971 -979,FR,IL,201812,1,2,1542,48 -979,FR,IL,201812,1,2,3300,459 -979,FR,IL,201812,1,2,195342,22417 -979,FR,IL,201812,1,2,55103,2834 -979,FR,IL,201812,1,2,52341,15605 -979,FR,IL,201812,1,2,47361,5082 -979,FR,IL,201812,1,2,108049,55520 -979,FR,IL,201812,1,2,854532,96352 -979,FR,IL,201812,1,2,10500,215 -979,FR,IL,201812,1,2,82834,23643 -979,FR,IL,201812,1,2,75538,2923 -979,FR,IL,201812,1,2,630,237 -979,FR,IL,201812,3,2,119190,2021 -979,FR,IL,201812,3,2,6426,1 -979,FR,IL,201812,3,2,33,3 -979,FR,IL,201812,3,2,284,0 -979,FR,IL,201812,4,2,1962823,9085 -979,FR,IL,201812,4,2,25455,0 -979,FR,IL,201812,4,2,151985,348 -979,FR,IL,201812,4,2,2161,50 -979,FR,IL,201812,4,2,300705,204 -979,FR,IL,201812,4,2,9023,457 -979,FR,IL,201812,4,2,5840,115 -979,FR,IL,201812,4,2,39005,471 -979,FR,IL,201812,4,2,5853,73 -979,FR,IL,201812,4,2,2239395,8243 -979,FR,IL,201812,4,2,25497,350 -979,FR,IL,201812,4,2,2107,75 -979,FR,IL,201812,4,2,61593,157 -979,FR,IL,201812,4,2,482193,10180 -979,FR,IL,201812,4,2,191210,405 -979,FR,IL,201812,4,2,678909,644 -979,FR,IL,201812,5,2,1950,15 -999,FR,IL,201812,1,1,35578,0 -999,FR,IL,201812,1,1,8850,0 -999,FR,IL,201812,1,1,12000,0 -999,FR,IL,201812,4,1,1,0 -999,FR,IL,201812,4,1,2975,0 -999,FR,IL,201812,4,1,3500,0 -999,FR,IL,201812,4,1,3798,0 -999,FR,IL,201812,0,2,299,1 -999,FR,IL,201812,1,2,58613,7892 -999,FR,IL,201812,1,2,376,60 -999,FR,IL,201812,1,2,24100,2096 -999,FR,IL,201812,1,2,329053,57174 -999,FR,IL,201812,1,2,31730,16700 -999,FR,IL,201812,1,2,102332,29854 -999,FR,IL,201812,1,2,4590,0 -999,FR,IL,201812,1,2,157787,62600 -999,FR,IL,201812,1,2,87781,16206 -999,FR,IL,201812,1,2,124156,16460 -999,FR,IL,201812,1,2,138200,260129 -999,FR,IL,201812,1,2,196491,206629 -999,FR,IL,201812,1,2,64120,0 -999,FR,IL,201812,1,2,68000,3000 -999,FR,IL,201812,1,2,5726,3786 -999,FR,IL,201812,1,2,33241,5040 -999,FR,IL,201812,3,2,21544,3457 -999,FR,IL,201812,3,2,14460,1000 -999,FR,IL,201812,3,2,8004,25000 -999,FR,IL,201812,4,2,38113,1518 -999,FR,IL,201812,4,2,42743,49 -999,FR,IL,201812,4,2,56,0 -999,FR,IL,201812,4,2,1,0 -999,FR,IL,201812,4,2,45992,3323 -999,FR,IL,201812,4,2,7225,250 -999,FR,IL,201812,4,2,3364,14 -999,FR,IL,201812,4,2,25776,900 -999,FR,IL,201812,4,2,49610,26 -999,FR,IL,201812,4,2,7165,8 -039,FR,PS,201812,4,1,633,489 -099,FR,PS,201812,4,1,236,192 -132,FR,PS,201812,1,2,154800,46137 -163,FR,PS,201812,1,2,9525,3566 -164,FR,PS,201812,1,1,15941,1440 -164,FR,PS,201812,1,1,58000,8600 -164,FR,PS,201812,1,1,120198,13800 -164,FR,PS,201812,1,1,240973,27820 -551,FR,PS,201812,4,2,394,13 -891,FR,PS,201812,4,2,75,1 -893,FR,PS,201812,1,1,7317,670 -893,FR,PS,201812,1,2,724,29 -893,FR,PS,201812,1,2,67269,4708 -893,FR,PS,201812,4,2,26780,939 -893,FR,PS,201812,4,2,69,0 -910,FR,PS,201812,1,2,15570,552 -910,FR,PS,201812,1,2,84708,7803 -910,FR,PS,201812,1,2,31327,2386 -910,FR,PS,201812,2,2,70299,8720 -910,FR,PS,201812,3,2,34555,4200 -910,FR,PS,201812,3,2,8711,1090 -910,FR,PS,201812,4,2,8137,162 -910,FR,PS,201812,4,2,1176,55 -931,FR,PS,201812,1,2,299,5 -931,FR,PS,201812,1,2,1126,11 -931,FR,PS,201812,4,2,699,6 -931,FR,PS,201812,4,2,34,0 -939,FR,PS,201812,1,2,1029,15 -939,FR,PS,201812,1,2,4388,132 -939,FR,PS,201812,4,2,843,15 -939,FR,PS,201812,4,2,316,3 -949,FR,PS,201812,1,2,37,0 -949,FR,PS,201812,1,2,247,5 -949,FR,PS,201812,4,2,10,0 -949,FR,PS,201812,4,2,75,1 -951,FR,PS,201812,1,2,346,35 -962,FR,PS,201812,0,1,145,13 -971,FR,PS,201812,1,2,2,0 -971,FR,PS,201812,4,2,60,0 -971,FR,PS,201812,4,2,329,33 -973,FR,PS,201812,1,2,14702,7160 -975,FR,PS,201812,3,2,400,56 -975,FR,PS,201812,3,2,17900,2605 -979,FR,PS,201812,1,2,1196,22 -979,FR,PS,201812,1,2,8,0 -979,FR,PS,201812,4,2,3573,35 -979,FR,PS,201812,4,2,9409,116 -121,FR,TL,201812,0,2,29,2 -341,FR,TL,201812,4,1,146,2 -910,FR,TL,201812,4,2,182783,90 -931,FR,TL,201812,4,1,392,0 -931,FR,TL,201812,4,1,1800,1 -949,FR,TL,201812,4,2,1838,0 -952,FR,TL,201812,4,1,617,2 -963,FR,TL,201812,0,1,108,2 -975,FR,TL,201812,4,2,500,0 -979,FR,TL,201812,4,2,222,32 -001,FR,JO,201812,4,2,152092,2474 -020,FR,JO,201812,1,2,33156,52000 -039,FR,JO,201812,4,1,23305,13024 -039,FR,JO,201812,1,2,282,210 -099,FR,JO,201812,4,1,28,0 -099,FR,JO,201812,1,2,217661,30000 -099,FR,JO,201812,3,2,1,0 -099,FR,JO,201812,4,2,56078,440 -099,FR,JO,201812,4,2,45200,30 -111,FR,JO,201812,3,2,10,4 -112,FR,JO,201812,1,2,20270,42000 -121,FR,JO,201812,1,2,773,571 -121,FR,JO,201812,1,2,62850,7317 -125,FR,JO,201812,1,2,61607,22473 -125,FR,JO,201812,1,2,48453,17839 -128,FR,JO,201812,3,1,121,6 -128,FR,JO,201812,1,2,20326,13140 -132,FR,JO,201812,4,1,97,5 -132,FR,JO,201812,1,2,260,99 -132,FR,JO,201812,4,2,1693,33 -132,FR,JO,201812,4,2,17,12 -135,FR,JO,201812,1,2,43844,18971 -136,FR,JO,201812,1,1,4039,1268 -139,FR,JO,201812,1,1,3059,1200 -139,FR,JO,201812,3,1,530,1 -139,FR,JO,201812,1,2,1853,824 -139,FR,JO,201812,1,2,4490,882 -139,FR,JO,201812,1,2,34146,6914 -139,FR,JO,201812,1,2,160959,47125 -139,FR,JO,201812,1,2,25760,403 -139,FR,JO,201812,1,2,510589,145660 -139,FR,JO,201812,3,2,18,0 -139,FR,JO,201812,4,2,37943,2888 -142,FR,JO,201812,1,2,956,158 -142,FR,JO,201812,4,2,5292,328 -143,FR,JO,201812,1,2,40659,15966 -143,FR,JO,201812,4,2,97,31 -144,FR,JO,201812,1,2,64381,9510 -144,FR,JO,201812,1,2,341202,73560 -144,FR,JO,201812,1,2,2562,300 -144,FR,JO,201812,4,2,6135,1001 -144,FR,JO,201812,4,2,16332,1591 -145,FR,JO,201812,1,2,327,120 -147,FR,JO,201812,4,2,3310,328 -148,FR,JO,201812,1,2,73,4 -148,FR,JO,201812,4,2,347,44 -163,FR,JO,201812,1,1,6675,1440 -163,FR,JO,201812,1,2,586,62 -163,FR,JO,201812,1,2,71365,75600 -163,FR,JO,201812,1,2,35962,8401 -163,FR,JO,201812,1,2,33304,11626 -163,FR,JO,201812,1,2,14260,6219 -163,FR,JO,201812,1,2,33536,14184 -163,FR,JO,201812,3,2,102477,72288 -163,FR,JO,201812,4,2,1329,484 -164,FR,JO,201812,1,1,3199,1032 -164,FR,JO,201812,1,1,237000,44000 -164,FR,JO,201812,1,1,47924,12090 -164,FR,JO,201812,4,1,6772,1000 -164,FR,JO,201812,1,2,11619,2798 -164,FR,JO,201812,1,2,34826,6623 -164,FR,JO,201812,1,2,439,130 -166,FR,JO,201812,1,1,14849,9973 -166,FR,JO,201812,1,2,2668,2812 -179,FR,JO,201812,1,2,16536,3000 -179,FR,JO,201812,1,2,140117,52575 -179,FR,JO,201812,1,2,19334,15875 -179,FR,JO,201812,1,2,37731,31557 -179,FR,JO,201812,1,2,28043,25000 -179,FR,JO,201812,4,2,14065,120 -179,FR,JO,201812,4,2,2904,415 -182,FR,JO,201812,1,2,3927,1200 -182,FR,JO,201812,1,2,89500,20000 -182,FR,JO,201812,4,2,3752,1580 -182,FR,JO,201812,4,2,2346,430 -182,FR,JO,201812,4,2,1288,90 -321,FR,JO,201812,1,2,830,163 -325,FR,JO,201812,1,2,18738,13360 -341,FR,JO,201812,1,2,27820,14647 -341,FR,JO,201812,1,2,31879,11888 -349,FR,JO,201812,3,2,213,38 -349,FR,JO,201812,4,2,323,30 -451,FR,JO,201812,1,1,31685,17896 -551,FR,JO,201812,1,2,11420,1003 -552,FR,JO,201812,1,2,41,1 -552,FR,JO,201812,4,2,226,0 -568,FR,JO,201812,4,2,1438,0 -614,FR,JO,201812,1,2,221,975 -621,FR,JO,201812,1,2,3248,1094 -621,FR,JO,201812,4,2,532,0 -632,FR,JO,201812,3,1,230,9 -632,FR,JO,201812,1,2,2675,42000 -691,FR,JO,201812,3,1,290,6 -691,FR,JO,201812,1,2,141682,3300 -691,FR,JO,201812,4,2,60,1 -691,FR,JO,201812,4,2,2261,52 -723,FR,JO,201812,1,1,2612500,10000000 -811,FR,JO,201812,1,2,486,138 -813,FR,JO,201812,1,2,14,2 -819,FR,JO,201812,1,1,165626,68710 -819,FR,JO,201812,1,1,387420,160730 -819,FR,JO,201812,1,2,22769,24418 -819,FR,JO,201812,1,2,20684,3232 -819,FR,JO,201812,3,2,8408,315 -819,FR,JO,201812,3,2,45658,2150 -819,FR,JO,201812,4,2,12215,525 -819,FR,JO,201812,4,2,2422,50 -891,FR,JO,201812,1,2,9100,600 -891,FR,JO,201812,1,2,44068,39601 -891,FR,JO,201812,1,2,3153,598 -892,FR,JO,201812,1,2,122,3 -892,FR,JO,201812,1,2,123926,50400 -892,FR,JO,201812,1,2,50785,3195 -892,FR,JO,201812,1,2,22,1 -892,FR,JO,201812,3,2,105,10 -893,FR,JO,201812,3,1,140,0 -893,FR,JO,201812,4,1,59,0 -893,FR,JO,201812,4,1,110,1 -893,FR,JO,201812,1,2,328782,11910 -893,FR,JO,201812,1,2,29505,1000 -893,FR,JO,201812,1,2,45910,2060 -893,FR,JO,201812,1,2,783990,43907 -893,FR,JO,201812,1,2,29225,5000 -893,FR,JO,201812,1,2,41114,1753 -893,FR,JO,201812,1,2,12857,8000 -893,FR,JO,201812,1,2,132728,5680 -893,FR,JO,201812,1,2,426372,27489 -893,FR,JO,201812,3,2,66271,8794 -893,FR,JO,201812,4,2,2123113,19989 -893,FR,JO,201812,4,2,144138,4740 -893,FR,JO,201812,4,2,17958,505 -893,FR,JO,201812,4,2,4055,70 -893,FR,JO,201812,4,2,1620076,15385 -893,FR,JO,201812,4,2,52223,544 -893,FR,JO,201812,4,2,165127,2568 -896,FR,JO,201812,3,1,4089,6 -896,FR,JO,201812,1,2,61145,12741 -896,FR,JO,201812,1,2,35007,3678 -896,FR,JO,201812,1,2,33288,1392 -896,FR,JO,201812,1,2,28180,4348 -896,FR,JO,201812,1,2,37818,19800 -896,FR,JO,201812,1,2,82,16 -896,FR,JO,201812,3,2,79,6 -896,FR,JO,201812,4,2,231226,3482 -896,FR,JO,201812,4,2,10894,28 -896,FR,JO,201812,4,2,2691,20 -896,FR,JO,201812,4,2,18078,2142 -896,FR,JO,201812,4,2,9303,550 -896,FR,JO,201812,4,2,13378,45 -910,FR,JO,201812,4,1,151,7 -910,FR,JO,201812,1,2,917,92 -910,FR,JO,201812,1,2,2000,10040 -910,FR,JO,201812,1,2,8500,32550 -910,FR,JO,201812,1,2,953,14 -910,FR,JO,201812,1,2,45031,2383 -910,FR,JO,201812,3,2,10200,15430 -910,FR,JO,201812,4,2,46271,281 -910,FR,JO,201812,4,2,24257,78 -910,FR,JO,201812,4,2,1045,1 -910,FR,JO,201812,4,2,109361,389 -910,FR,JO,201812,4,2,7626,38 -910,FR,JO,201812,4,2,30637,551 -910,FR,JO,201812,4,2,3775,30 -920,FR,JO,201812,1,2,28600,14200 -920,FR,JO,201812,1,2,167000,98985 -920,FR,JO,201812,1,2,11645,250 -920,FR,JO,201812,3,2,82850,38396 -920,FR,JO,201812,4,2,5200,356 -920,FR,JO,201812,4,2,4064,60 -931,FR,JO,201812,3,1,830,2 -931,FR,JO,201812,4,1,1381,4 -931,FR,JO,201812,0,2,26,9 -931,FR,JO,201812,1,2,765079,72743 -931,FR,JO,201812,1,2,18034,230 -931,FR,JO,201812,1,2,148504,39318 -931,FR,JO,201812,1,2,13700,878 -931,FR,JO,201812,1,2,307963,56756 -931,FR,JO,201812,3,2,1681,6 -931,FR,JO,201812,3,2,17085,530 -931,FR,JO,201812,4,2,690033,10404 -931,FR,JO,201812,4,2,6181,11 -931,FR,JO,201812,4,2,8081,365 -931,FR,JO,201812,4,2,18384,135 -931,FR,JO,201812,4,2,26381,45 -931,FR,JO,201812,4,2,52159,500 -931,FR,JO,201812,4,2,36699,139 -931,FR,JO,201812,5,2,1374,5 -939,FR,JO,201812,1,1,23615,2622 -939,FR,JO,201812,3,1,132,0 -939,FR,JO,201812,3,1,28000,462 -939,FR,JO,201812,4,1,139,0 -939,FR,JO,201812,4,1,588,2 -939,FR,JO,201812,0,2,500,8 -939,FR,JO,201812,1,2,25465,21065 -939,FR,JO,201812,1,2,11580,332 -939,FR,JO,201812,1,2,81479,5794 -939,FR,JO,201812,1,2,29042,3720 -939,FR,JO,201812,1,2,23680,427 -939,FR,JO,201812,1,2,153228,3556 -939,FR,JO,201812,3,2,7890,674 -939,FR,JO,201812,4,2,98730,1954 -939,FR,JO,201812,4,2,30520,1074 -939,FR,JO,201812,4,2,13494,224 -939,FR,JO,201812,4,2,33012,1700 -939,FR,JO,201812,4,2,24162,57 -941,FR,JO,201812,1,1,43201,14000 -949,FR,JO,201812,3,1,116,0 -949,FR,JO,201812,4,1,2500,2 -949,FR,JO,201812,1,2,7324,381 -949,FR,JO,201812,1,2,10103,808 -949,FR,JO,201812,1,2,35070,10996 -949,FR,JO,201812,1,2,20525,1900 -949,FR,JO,201812,3,2,506,67 -949,FR,JO,201812,4,2,47351,184 -949,FR,JO,201812,4,2,1012,1 -949,FR,JO,201812,4,2,1222,1 -949,FR,JO,201812,4,2,43072,104 -949,FR,JO,201812,4,2,29126,220 -951,FR,JO,201812,1,2,1062,83 -951,FR,JO,201812,4,2,136,1 -951,FR,JO,201812,4,2,7655,22 -952,FR,JO,201812,3,1,232,0 -952,FR,JO,201812,1,2,18979,784 -952,FR,JO,201812,4,2,49108,518 -961,FR,JO,201812,1,2,2468,65 -962,FR,JO,201812,1,1,150382,28147 -962,FR,JO,201812,1,1,37660,6934 -962,FR,JO,201812,4,1,632,64 -962,FR,JO,201812,1,2,7984,1070 -962,FR,JO,201812,1,2,234,12 -962,FR,JO,201812,1,2,208002,83240 -962,FR,JO,201812,1,2,88180,19000 -962,FR,JO,201812,3,2,60,4 -962,FR,JO,201812,4,2,6799,192 -962,FR,JO,201812,4,2,5933,285 -963,FR,JO,201812,0,1,14949,490 -963,FR,JO,201812,3,1,2285,80 -963,FR,JO,201812,4,1,297,1 -963,FR,JO,201812,4,1,724,7 -963,FR,JO,201812,4,1,6399,494 -963,FR,JO,201812,0,2,130,2 -963,FR,JO,201812,1,2,27,4 -963,FR,JO,201812,1,2,255,3 -963,FR,JO,201812,4,2,94593,1858 -963,FR,JO,201812,4,2,9243,351 -971,FR,JO,201812,1,1,28884,3357 -971,FR,JO,201812,4,1,35058,5130 -971,FR,JO,201812,1,2,41,6 -971,FR,JO,201812,1,2,331412,29592 -971,FR,JO,201812,4,2,245764,10373 -971,FR,JO,201812,4,2,3950,140 -971,FR,JO,201812,4,2,6508,5 -971,FR,JO,201812,4,2,1425,50 -971,FR,JO,201812,4,2,29606,564 -972,FR,JO,201812,1,2,3405,1786 -972,FR,JO,201812,4,2,1253,570 -973,FR,JO,201812,1,2,31241,14496 -973,FR,JO,201812,1,2,47971,47315 -973,FR,JO,201812,3,2,10,5 -973,FR,JO,201812,3,2,104651,198124 -973,FR,JO,201812,4,2,394,39 -973,FR,JO,201812,4,2,379,31 -973,FR,JO,201812,4,2,2516,250 -973,FR,JO,201812,4,2,5296,90 -974,FR,JO,201812,3,1,277,5 -974,FR,JO,201812,4,1,64,1 -974,FR,JO,201812,0,2,30,1 -974,FR,JO,201812,1,2,143,85 -974,FR,JO,201812,3,2,48,4 -974,FR,JO,201812,4,2,21239,4063 -974,FR,JO,201812,4,2,60,149 -975,FR,JO,201812,1,1,4866,3748 -975,FR,JO,201812,3,1,1321,78 -975,FR,JO,201812,4,1,421,43 -975,FR,JO,201812,1,2,16450,1453 -975,FR,JO,201812,1,2,92325,7264 -975,FR,JO,201812,4,2,13448,379 -975,FR,JO,201812,4,2,5870,7 -976,FR,JO,201812,1,2,62840,84600 -979,FR,JO,201812,1,1,2885,2225 -979,FR,JO,201812,1,1,24091,18266 -979,FR,JO,201812,3,1,2336,10 -979,FR,JO,201812,4,1,177,1 -979,FR,JO,201812,4,1,493,0 -979,FR,JO,201812,4,1,2386,0 -979,FR,JO,201812,0,2,900,9 -979,FR,JO,201812,1,2,24841,1229 -979,FR,JO,201812,1,2,5404,48 -979,FR,JO,201812,1,2,9580,214 -979,FR,JO,201812,1,2,119006,15119 -979,FR,JO,201812,1,2,10443,933 -979,FR,JO,201812,1,2,38058,6369 -979,FR,JO,201812,1,2,38500,3854 -979,FR,JO,201812,1,2,37134,2725 -979,FR,JO,201812,1,2,26418,6490 -979,FR,JO,201812,1,2,96429,29283 -979,FR,JO,201812,3,2,834,207 -979,FR,JO,201812,4,2,250633,5173 -979,FR,JO,201812,4,2,289,1 -979,FR,JO,201812,4,2,18462,500 -979,FR,JO,201812,4,2,45704,892 -979,FR,JO,201812,4,2,310438,1175 -979,FR,JO,201812,4,2,23215,180 -979,FR,JO,201812,4,2,41780,164 -999,FR,JO,201812,0,1,8452,0 -999,FR,JO,201812,4,1,8055,0 -999,FR,JO,201812,1,2,15850,1357 -999,FR,JO,201812,1,2,8873,1931 -999,FR,JO,201812,1,2,73992,34529 -999,FR,JO,201812,1,2,25257,16000 -999,FR,JO,201812,1,2,38134,20000 -999,FR,JO,201812,1,2,43743,6224 -999,FR,JO,201812,1,2,3497,432 -999,FR,JO,201812,1,2,121224,60000 -999,FR,JO,201812,1,2,27774,3600 -999,FR,JO,201812,3,2,569,50 -999,FR,JO,201812,4,2,27546,51 -999,FR,JO,201812,4,2,8675,0 -999,FR,JO,201812,4,2,4319,2 -999,FR,JO,201812,4,2,23744,620 -999,FR,JO,201812,4,2,1686,3 -001,FR,SA,201812,4,2,223761,2088 -001,FR,SA,201812,4,2,70545,921 -012,FR,SA,201812,1,2,13587445,65500130 -016,FR,SA,201812,1,2,2497,1080 -016,FR,SA,201812,1,2,334,290 -016,FR,SA,201812,1,2,4482,1824 -019,FR,SA,201812,1,2,5716,1323 -019,FR,SA,201812,1,2,3204,720 -019,FR,SA,201812,4,2,8886,1300 -020,FR,SA,201812,1,2,11250,25000 -020,FR,SA,201812,1,2,365544,1009620 -020,FR,SA,201812,1,2,1505052,2704600 -035,FR,SA,201812,1,2,194564,192259 -035,FR,SA,201812,1,2,19330,21168 -035,FR,SA,201812,1,2,54928,63504 -035,FR,SA,201812,1,2,55513,63504 -035,FR,SA,201812,1,2,98052,106848 -035,FR,SA,201812,1,2,52148,63504 -035,FR,SA,201812,1,2,18546,21042 -035,FR,SA,201812,4,2,46402,1300 -039,FR,SA,201812,1,2,530870,687812 -039,FR,SA,201812,1,2,104950,143925 -039,FR,SA,201812,1,2,1329,599 -039,FR,SA,201812,4,2,3368,471 -045,FR,SA,201812,4,2,484,6 -092,FR,SA,201812,1,2,200981,102200 -092,FR,SA,201812,4,2,194,16 -099,FR,SA,201812,1,2,104006,795 -099,FR,SA,201812,1,2,40081,3420 -099,FR,SA,201812,1,2,106745,3400 -099,FR,SA,201812,1,2,85476,4730 -111,FR,SA,201812,1,2,5751,3610 -111,FR,SA,201812,1,2,1525,720 -112,FR,SA,201812,1,2,11136,2928 -112,FR,SA,201812,1,2,285104,840000 -112,FR,SA,201812,4,2,5343,234 -121,FR,SA,201812,0,1,8,1 -121,FR,SA,201812,4,2,47260,501 -122,FR,SA,201812,4,2,671,249 -125,FR,SA,201812,4,2,12684,472 -128,FR,SA,201812,4,1,188,85 -128,FR,SA,201812,1,2,37856,13105 -128,FR,SA,201812,1,2,347116,247961 -128,FR,SA,201812,1,2,965592,1295100 -128,FR,SA,201812,1,2,198479,229037 -128,FR,SA,201812,4,2,6579,2248 -128,FR,SA,201812,4,2,586,153 -131,FR,SA,201812,3,1,170,0 -131,FR,SA,201812,1,2,92941,16632 -131,FR,SA,201812,1,2,8258,1238 -131,FR,SA,201812,4,2,33306,6977 -131,FR,SA,201812,4,2,1961,100 -132,FR,SA,201812,1,2,679,250 -132,FR,SA,201812,1,2,488508,57550 -132,FR,SA,201812,1,2,44818,4064 -132,FR,SA,201812,1,2,18090,4019 -132,FR,SA,201812,1,2,53630,4545 -132,FR,SA,201812,4,2,23533,1465 -132,FR,SA,201812,4,2,296,10 -132,FR,SA,201812,4,2,62794,1944 -132,FR,SA,201812,4,2,2831,164 -132,FR,SA,201812,4,2,19049,8250 -132,FR,SA,201812,4,2,1344,0 -133,FR,SA,201812,1,2,935807,168000 -133,FR,SA,201812,4,2,28466,1080 -133,FR,SA,201812,4,2,34595,428 -133,FR,SA,201812,4,2,1355,4 -133,FR,SA,201812,4,2,4124,91 -136,FR,SA,201812,1,2,672,34 -136,FR,SA,201812,1,2,306536,108840 -136,FR,SA,201812,1,2,32648,24300 -136,FR,SA,201812,1,2,9645,756 -136,FR,SA,201812,1,2,5329,9973 -136,FR,SA,201812,1,2,92375,47804 -136,FR,SA,201812,1,2,8650,522 -136,FR,SA,201812,3,2,2373,3120 -136,FR,SA,201812,3,2,51800,15854 -136,FR,SA,201812,4,2,5,0 -136,FR,SA,201812,4,2,1629,75 -139,FR,SA,201812,3,1,729,35 -139,FR,SA,201812,1,2,609528,24293 -139,FR,SA,201812,1,2,2730456,623994 -139,FR,SA,201812,1,2,757889,159160 -139,FR,SA,201812,1,2,70320,21326 -139,FR,SA,201812,1,2,131736,42480 -139,FR,SA,201812,1,2,749626,162720 -139,FR,SA,201812,1,2,75740,17789 -139,FR,SA,201812,1,2,215637,17360 -139,FR,SA,201812,1,2,1583,122 -139,FR,SA,201812,3,2,5881,1413 -139,FR,SA,201812,3,2,17947,4666 -139,FR,SA,201812,4,2,12086,3426 -139,FR,SA,201812,4,2,117252,16007 -139,FR,SA,201812,4,2,35665,1706 -141,FR,SA,201812,1,2,103445,24225 -141,FR,SA,201812,1,2,48203,19490 -141,FR,SA,201812,1,2,36212,18624 -141,FR,SA,201812,1,2,7527584,5437229 -141,FR,SA,201812,4,2,35221,4176 -142,FR,SA,201812,1,2,4801,2164 -142,FR,SA,201812,4,2,31073,723 -143,FR,SA,201812,1,2,260277,89761 -143,FR,SA,201812,1,2,296716,108665 -143,FR,SA,201812,1,2,298034,106733 -143,FR,SA,201812,1,2,52067,19785 -143,FR,SA,201812,4,2,4951,3720 -144,FR,SA,201812,1,2,2293245,762617 -144,FR,SA,201812,1,2,778795,184209 -144,FR,SA,201812,1,2,26412,25000 -144,FR,SA,201812,1,2,34257,3800 -144,FR,SA,201812,1,2,64332,48000 -144,FR,SA,201812,1,2,77073,14554 -144,FR,SA,201812,1,2,63301,19210 -144,FR,SA,201812,4,2,76192,7736 -146,FR,SA,201812,4,2,20219,5911 -147,FR,SA,201812,1,2,1657,747 -147,FR,SA,201812,1,2,736603,462875 -147,FR,SA,201812,4,2,209947,2472 -148,FR,SA,201812,4,2,127178,86 -161,FR,SA,201812,1,2,10751,18125 -161,FR,SA,201812,1,2,31912,46800 -161,FR,SA,201812,1,2,1850,1344 -161,FR,SA,201812,4,2,767,500 -163,FR,SA,201812,1,2,2315,1785 -163,FR,SA,201812,1,2,44538,3629 -163,FR,SA,201812,1,2,188537,131406 -163,FR,SA,201812,1,2,2271,1080 -163,FR,SA,201812,1,2,580780,184852 -163,FR,SA,201812,1,2,173239,71760 -163,FR,SA,201812,1,2,21375,8268 -163,FR,SA,201812,1,2,42297,6041 -163,FR,SA,201812,1,2,54750,19200 -163,FR,SA,201812,1,2,7012,695 -163,FR,SA,201812,1,2,60245,12662 -163,FR,SA,201812,1,2,46073,13070 -163,FR,SA,201812,4,2,1465,115 -163,FR,SA,201812,4,2,25614,4125 -163,FR,SA,201812,4,2,15766,1008 -164,FR,SA,201812,3,1,1897,91 -164,FR,SA,201812,4,1,342,2 -164,FR,SA,201812,4,1,4420,617 -164,FR,SA,201812,1,2,2895,133 -164,FR,SA,201812,1,2,18688,1152 -164,FR,SA,201812,1,2,105131,29663 -164,FR,SA,201812,1,2,2624,441 -164,FR,SA,201812,1,2,287908,61846 -164,FR,SA,201812,1,2,92190,11880 -164,FR,SA,201812,1,2,124460,48275 -164,FR,SA,201812,1,2,5511,1232 -164,FR,SA,201812,4,2,4756,580 -164,FR,SA,201812,4,2,32827,1512 -164,FR,SA,201812,4,2,3431,206 -165,FR,SA,201812,1,2,1335,441 -165,FR,SA,201812,1,2,256941,647240 -165,FR,SA,201812,4,2,3378,230 -166,FR,SA,201812,1,2,5304,7875 -166,FR,SA,201812,1,2,11472,6018 -166,FR,SA,201812,1,2,23337,16170 -166,FR,SA,201812,4,2,7022,211 -166,FR,SA,201812,4,2,36243,189 -179,FR,SA,201812,1,2,2034552,9300020 -179,FR,SA,201812,1,2,61242,51000 -179,FR,SA,201812,1,2,349757,111067 -179,FR,SA,201812,1,2,122433,44966 -179,FR,SA,201812,1,2,248571,125000 -179,FR,SA,201812,1,2,342863,150755 -179,FR,SA,201812,1,2,471,182 -181,FR,SA,201812,1,2,4986,735 -181,FR,SA,201812,1,2,17442,3825 -181,FR,SA,201812,4,2,12236,318 -182,FR,SA,201812,1,2,67876,44367 -182,FR,SA,201812,4,2,31124,648 -310,FR,SA,201812,1,1,181243850,434845703 -310,FR,SA,201812,1,1,25398125,68904000 -310,FR,SA,201812,1,1,3893598,10060000 -310,FR,SA,201812,1,1,101960884,285457000 -323,FR,SA,201812,1,1,34699750,63591863 -323,FR,SA,201812,1,1,1576045,2383375 -325,FR,SA,201812,1,1,16427234,31059865 -325,FR,SA,201812,1,1,18901614,35034608 -325,FR,SA,201812,1,1,58797704,119426211 -325,FR,SA,201812,1,1,37453363,72088039 -325,FR,SA,201812,1,1,82986887,168394140 -341,FR,SA,201812,0,1,63,0 -341,FR,SA,201812,1,2,7313,1320 -341,FR,SA,201812,1,2,2314,210 -341,FR,SA,201812,1,2,335420,147161 -341,FR,SA,201812,1,2,51292,29834 -341,FR,SA,201812,1,2,23053,14826 -341,FR,SA,201812,4,2,73635,3041 -341,FR,SA,201812,4,2,5,0 -532,FR,SA,201812,1,2,37254,7430 -533,FR,SA,201812,1,2,6073,784 -536,FR,SA,201812,1,2,17592,13200 -536,FR,SA,201812,1,2,58270,45000 -542,FR,SA,201812,1,2,23604,32610 -542,FR,SA,201812,1,2,16839,21650 -542,FR,SA,201812,1,2,16979,21460 -542,FR,SA,201812,1,2,15518,20610 -542,FR,SA,201812,1,2,15809,21060 -542,FR,SA,201812,1,2,48030,63790 -542,FR,SA,201812,1,2,14697,19760 -545,FR,SA,201812,1,2,29075,39616 -545,FR,SA,201812,1,2,17404,23306 -551,FR,SA,201812,1,1,27,0 -551,FR,SA,201812,1,1,157,7 -551,FR,SA,201812,1,1,2392,368 -551,FR,SA,201812,1,2,1387437,757933 -551,FR,SA,201812,1,2,4128,134 -551,FR,SA,201812,1,2,21755,744 -551,FR,SA,201812,1,2,720010,164402 -551,FR,SA,201812,1,2,21821,663 -551,FR,SA,201812,1,2,32388,6224 -551,FR,SA,201812,3,2,19514,714 -551,FR,SA,201812,3,2,337722,96780 -551,FR,SA,201812,4,2,94180,1497 -551,FR,SA,201812,4,2,5990,238 -551,FR,SA,201812,4,2,18233,241 -551,FR,SA,201812,4,2,4490,231 -551,FR,SA,201812,4,2,16883,987 -551,FR,SA,201812,4,2,10712,3670 -552,FR,SA,201812,1,2,17610,2223 -552,FR,SA,201812,1,2,199,5 -552,FR,SA,201812,1,2,54254,7011 -552,FR,SA,201812,4,2,8369,88 -552,FR,SA,201812,4,2,663,2 -562,FR,SA,201812,0,1,356396,197269 -565,FR,SA,201812,4,2,11173,495 -568,FR,SA,201812,1,2,34690,353 -568,FR,SA,201812,1,2,13104,3020 -568,FR,SA,201812,1,2,39706,1956 -568,FR,SA,201812,1,2,80527,15364 -568,FR,SA,201812,1,2,252503,24394 -568,FR,SA,201812,1,2,166796,22696 -568,FR,SA,201812,4,2,43209,995 -568,FR,SA,201812,4,2,15660,51 -568,FR,SA,201812,4,2,6090,2490 -568,FR,SA,201812,4,2,1897,7 -614,FR,SA,201812,1,2,8838,22800 -621,FR,SA,201812,1,1,81,4 -621,FR,SA,201812,1,2,903,88 -621,FR,SA,201812,3,2,12519,10920 -621,FR,SA,201812,4,2,290,13 -632,FR,SA,201812,1,2,21934,210000 -632,FR,SA,201812,1,2,40696,420000 -632,FR,SA,201812,1,2,24384,252000 -632,FR,SA,201812,1,2,61381,810000 -639,FR,SA,201812,1,2,143746,500000 -639,FR,SA,201812,4,2,53,100 -650,FR,SA,201812,1,2,94130,411000 -691,FR,SA,201812,1,1,173,7 -691,FR,SA,201812,1,2,30974,16389 -691,FR,SA,201812,1,2,11407,42000 -691,FR,SA,201812,3,2,1100,648 -691,FR,SA,201812,4,2,1572,120 -692,FR,SA,201812,1,2,116,15 -692,FR,SA,201812,1,2,175969,657929 -692,FR,SA,201812,1,2,22747,20000 -692,FR,SA,201812,3,2,6672,2800 -692,FR,SA,201812,3,2,90734,135633 -811,FR,SA,201812,1,1,151,45 -812,FR,SA,201812,1,1,200,20 -819,FR,SA,201812,1,1,4666581,10480641 -819,FR,SA,201812,1,1,742,141 -819,FR,SA,201812,1,1,2715112,2001768 -819,FR,SA,201812,3,1,47,25 -819,FR,SA,201812,1,2,11343,1200 -819,FR,SA,201812,1,2,18500,2000 -819,FR,SA,201812,1,2,1171852,216539 -819,FR,SA,201812,1,2,115500,54000 -819,FR,SA,201812,1,2,118206,103302 -819,FR,SA,201812,3,2,12000,18000 -819,FR,SA,201812,4,2,35701,99 -819,FR,SA,201812,4,2,164,2 -819,FR,SA,201812,4,2,9892,721 -819,FR,SA,201812,4,2,226275,11645 -820,FR,SA,201812,1,2,353570,115700 -820,FR,SA,201812,1,2,590362,246400 -820,FR,SA,201812,1,2,29889,40000 -820,FR,SA,201812,1,2,72051,4000 -891,FR,SA,201812,1,1,70531,61415 -891,FR,SA,201812,1,1,40915,24500 -891,FR,SA,201812,1,1,51,2 -891,FR,SA,201812,3,1,265,17 -891,FR,SA,201812,4,1,1031,49 -891,FR,SA,201812,0,2,548,3 -891,FR,SA,201812,1,2,64893,27176 -891,FR,SA,201812,1,2,32384,20000 -891,FR,SA,201812,1,2,159188,20491 -891,FR,SA,201812,1,2,1458695,738928 -891,FR,SA,201812,1,2,22176,16500 -891,FR,SA,201812,1,2,9330,1619 -891,FR,SA,201812,1,2,530702,148492 -891,FR,SA,201812,4,2,18648,1095 -891,FR,SA,201812,4,2,6535,208 -891,FR,SA,201812,4,2,1206,280 -891,FR,SA,201812,4,2,7974,272 -891,FR,SA,201812,4,2,24460,1448 -891,FR,SA,201812,4,2,650,8 -892,FR,SA,201812,1,1,95,4 -892,FR,SA,201812,1,2,7947,4180 -892,FR,SA,201812,1,2,16566,997 -892,FR,SA,201812,1,2,45502,15750 -892,FR,SA,201812,1,2,46059,6000 -892,FR,SA,201812,1,2,79987,31500 -892,FR,SA,201812,4,2,3571,530 -892,FR,SA,201812,4,2,15818,661 -893,FR,SA,201812,3,1,2364,91 -893,FR,SA,201812,4,1,722,68 -893,FR,SA,201812,4,1,157,0 -893,FR,SA,201812,4,1,3491,125 -893,FR,SA,201812,4,1,11438,253 -893,FR,SA,201812,4,1,942,2 -893,FR,SA,201812,0,2,310,4 -893,FR,SA,201812,1,2,5760337,192500 -893,FR,SA,201812,1,2,35382,1143 -893,FR,SA,201812,1,2,10591,800 -893,FR,SA,201812,1,2,3720742,156138 -893,FR,SA,201812,1,2,1524668,37925 -893,FR,SA,201812,1,2,645870,2979 -893,FR,SA,201812,1,2,397628,14754 -893,FR,SA,201812,1,2,174946,26467 -893,FR,SA,201812,1,2,147224,57024 -893,FR,SA,201812,1,2,1671831,36737 -893,FR,SA,201812,1,2,1345206,90165 -893,FR,SA,201812,1,2,190598,5350 -893,FR,SA,201812,1,2,4388214,18516 -893,FR,SA,201812,1,2,141088,4063 -893,FR,SA,201812,1,2,132834,11999 -893,FR,SA,201812,1,2,574635,81380 -893,FR,SA,201812,3,2,50,3 -893,FR,SA,201812,3,2,97582,8238 -893,FR,SA,201812,4,2,2379328,17649 -893,FR,SA,201812,4,2,718714,11468 -893,FR,SA,201812,4,2,542888,26571 -893,FR,SA,201812,4,2,59055,1498 -893,FR,SA,201812,4,2,67131,1000 -893,FR,SA,201812,4,2,35099,94 -893,FR,SA,201812,4,2,5976766,52603 -893,FR,SA,201812,4,2,1774995,30222 -893,FR,SA,201812,4,2,4600,800 -893,FR,SA,201812,4,2,56026,3800 -893,FR,SA,201812,4,2,15068,1867 -893,FR,SA,201812,4,2,6854,870 -893,FR,SA,201812,4,2,27511,125 -894,FR,SA,201812,4,2,50230,910 -896,FR,SA,201812,0,1,292394,30050 -896,FR,SA,201812,4,1,2878,36 -896,FR,SA,201812,4,1,351,1 -896,FR,SA,201812,1,2,419836,68425 -896,FR,SA,201812,1,2,249974,102060 -896,FR,SA,201812,1,2,2305816,391864 -896,FR,SA,201812,1,2,658157,189940 -896,FR,SA,201812,1,2,40129,7781 -896,FR,SA,201812,1,2,33254,44000 -896,FR,SA,201812,1,2,38731,8372 -896,FR,SA,201812,1,2,144843,54538 -896,FR,SA,201812,1,2,39279,16320 -896,FR,SA,201812,1,2,824851,327837 -896,FR,SA,201812,1,2,18361,2200 -896,FR,SA,201812,3,2,13019,5472 -896,FR,SA,201812,4,2,2487604,11842 -896,FR,SA,201812,4,2,220587,2740 -896,FR,SA,201812,4,2,6616,73 -896,FR,SA,201812,4,2,1192,60 -896,FR,SA,201812,4,2,1784,30 -896,FR,SA,201812,4,2,1022842,5449 -896,FR,SA,201812,4,2,909878,9685 -896,FR,SA,201812,4,2,24441,290 -896,FR,SA,201812,4,2,4692,19 -910,FR,SA,201812,1,1,27096,1535 -910,FR,SA,201812,1,1,117800,6067 -910,FR,SA,201812,3,1,168,0 -910,FR,SA,201812,4,1,31540,14 -910,FR,SA,201812,4,1,40102,79 -910,FR,SA,201812,4,1,1092,110 -910,FR,SA,201812,4,1,339,1 -910,FR,SA,201812,1,2,1225476,97735 -910,FR,SA,201812,1,2,434674,39488 -910,FR,SA,201812,1,2,49847,3350 -910,FR,SA,201812,1,2,48041,20980 -910,FR,SA,201812,3,2,33532,835 -910,FR,SA,201812,4,2,546127,2505 -910,FR,SA,201812,4,2,4438,148 -910,FR,SA,201812,4,2,9202,800 -910,FR,SA,201812,4,2,135153,259 -910,FR,SA,201812,4,2,81172,860 -910,FR,SA,201812,9,2,49594271,40700 -920,FR,SA,201812,1,2,136000,59483 -920,FR,SA,201812,1,2,2100300,71391 -920,FR,SA,201812,1,2,25300,704 -920,FR,SA,201812,1,2,126400,14816 -920,FR,SA,201812,3,2,150,4 -920,FR,SA,201812,4,2,10797,675 -920,FR,SA,201812,4,2,13553,475 -920,FR,SA,201812,4,2,2044,9 -920,FR,SA,201812,4,2,1745,50 -931,FR,SA,201812,0,1,32872,711 -931,FR,SA,201812,1,1,22388,4206 -931,FR,SA,201812,1,1,26963,1418 -931,FR,SA,201812,3,1,59874,182 -931,FR,SA,201812,4,1,10653,22 -931,FR,SA,201812,4,1,14603,38 -931,FR,SA,201812,4,1,20186,7 -931,FR,SA,201812,4,1,38543,267 -931,FR,SA,201812,4,1,311,1 -931,FR,SA,201812,0,2,4121,6 -931,FR,SA,201812,1,2,2995117,114057 -931,FR,SA,201812,1,2,24000,1193 -931,FR,SA,201812,1,2,5986,98 -931,FR,SA,201812,1,2,4468,130 -931,FR,SA,201812,1,2,14184,92 -931,FR,SA,201812,1,2,173962,38282 -931,FR,SA,201812,1,2,25100,1800 -931,FR,SA,201812,1,2,152559,11144 -931,FR,SA,201812,1,2,3172329,382608 -931,FR,SA,201812,1,2,187693,25321 -931,FR,SA,201812,1,2,405211,5801 -931,FR,SA,201812,1,2,798574,16126 -931,FR,SA,201812,1,2,2905524,251185 -931,FR,SA,201812,1,2,156285,26752 -931,FR,SA,201812,1,2,68697,20366 -931,FR,SA,201812,1,2,66603,4758 -931,FR,SA,201812,3,2,996343,45558 -931,FR,SA,201812,4,2,12671268,112988 -931,FR,SA,201812,4,2,2888,99 -931,FR,SA,201812,4,2,116050,111 -931,FR,SA,201812,4,2,112182,1113 -931,FR,SA,201812,4,2,105192,3930 -931,FR,SA,201812,4,2,1680,10 -931,FR,SA,201812,4,2,1974,9 -931,FR,SA,201812,4,2,22887692,76128 -931,FR,SA,201812,4,2,36349,195 -931,FR,SA,201812,4,2,133392,956 -931,FR,SA,201812,4,2,2873,104 -931,FR,SA,201812,4,2,19369,25 -931,FR,SA,201812,4,2,78083,24 -931,FR,SA,201812,4,2,1063633,62450 -931,FR,SA,201812,4,2,61153,178 -931,FR,SA,201812,4,2,89701,316 -931,FR,SA,201812,5,2,5,1 -939,FR,SA,201812,0,1,7761,191 -939,FR,SA,201812,1,1,11970,637 -939,FR,SA,201812,1,1,23280,1169 -939,FR,SA,201812,1,1,523882,80688 -939,FR,SA,201812,3,1,7548,104 -939,FR,SA,201812,4,1,1395,61 -939,FR,SA,201812,4,1,1003,5 -939,FR,SA,201812,4,1,36439,88 -939,FR,SA,201812,4,1,856,7 -939,FR,SA,201812,1,2,4859993,343463 -939,FR,SA,201812,1,2,77113,637 -939,FR,SA,201812,1,2,22283,1221 -939,FR,SA,201812,1,2,28039,20000 -939,FR,SA,201812,1,2,18990,1098 -939,FR,SA,201812,1,2,22000,368 -939,FR,SA,201812,1,2,2592696,122203 -939,FR,SA,201812,1,2,106240,1755 -939,FR,SA,201812,1,2,2654439,242701 -939,FR,SA,201812,1,2,949761,118980 -939,FR,SA,201812,1,2,31827,4500 -939,FR,SA,201812,1,2,160000,1880 -939,FR,SA,201812,1,2,420000,9405 -939,FR,SA,201812,1,2,30106,2783 -939,FR,SA,201812,1,2,533398,63449 -939,FR,SA,201812,1,2,528884,102836 -939,FR,SA,201812,1,2,1014065,24432 -939,FR,SA,201812,1,2,280321,1813 -939,FR,SA,201812,1,2,68382,3333 -939,FR,SA,201812,3,2,114257,3824 -939,FR,SA,201812,4,2,3337108,55846 -939,FR,SA,201812,4,2,526027,473 -939,FR,SA,201812,4,2,62616,220 -939,FR,SA,201812,4,2,304451,2817 -939,FR,SA,201812,4,2,45440,1170 -939,FR,SA,201812,4,2,5200,280 -939,FR,SA,201812,4,2,4710,46 -939,FR,SA,201812,4,2,54098,106 -939,FR,SA,201812,4,2,12613,658 -939,FR,SA,201812,4,2,59226,254 -939,FR,SA,201812,4,2,1665707,15231 -939,FR,SA,201812,4,2,53558,564 -939,FR,SA,201812,4,2,621818,2238 -939,FR,SA,201812,4,2,229460,1288 -939,FR,SA,201812,4,2,80640,85 -939,FR,SA,201812,4,2,24830,174 -939,FR,SA,201812,4,2,1395597,74970 -939,FR,SA,201812,4,2,33572,176 -939,FR,SA,201812,4,2,57002,426 -941,FR,SA,201812,1,2,14608,690 -941,FR,SA,201812,1,2,36950,8380 -941,FR,SA,201812,3,2,770,28 -941,FR,SA,201812,4,2,2680,185 -949,FR,SA,201812,1,1,41196,178 -949,FR,SA,201812,1,1,3779,200 -949,FR,SA,201812,1,1,14227,707 -949,FR,SA,201812,1,1,105207,16205 -949,FR,SA,201812,3,1,3205,204 -949,FR,SA,201812,4,1,9590,411 -949,FR,SA,201812,4,1,1185,11 -949,FR,SA,201812,4,1,124,0 -949,FR,SA,201812,4,1,3779,370 -949,FR,SA,201812,4,1,1647,50 -949,FR,SA,201812,0,2,144,0 -949,FR,SA,201812,1,2,324810,6570 -949,FR,SA,201812,1,2,31907,155 -949,FR,SA,201812,1,2,88957,6650 -949,FR,SA,201812,1,2,44,0 -949,FR,SA,201812,1,2,1052,64 -949,FR,SA,201812,1,2,1462133,150355 -949,FR,SA,201812,1,2,5275,877 -949,FR,SA,201812,1,2,338456,40083 -949,FR,SA,201812,1,2,48254,24860 -949,FR,SA,201812,1,2,147658,45079 -949,FR,SA,201812,3,2,312180,52754 -949,FR,SA,201812,3,2,953245,2040 -949,FR,SA,201812,3,2,210360,40566 -949,FR,SA,201812,4,2,324491,4575 -949,FR,SA,201812,4,2,2560,506 -949,FR,SA,201812,4,2,30087,874 -949,FR,SA,201812,4,2,4441,370 -949,FR,SA,201812,4,2,9005,1150 -949,FR,SA,201812,4,2,4141,1 -949,FR,SA,201812,4,2,2127026,32085 -949,FR,SA,201812,4,2,529522,1200 -949,FR,SA,201812,4,2,7098,270 -949,FR,SA,201812,4,2,104593,4910 -949,FR,SA,201812,4,2,2488,130 -949,FR,SA,201812,4,2,1339,68 -949,FR,SA,201812,4,2,2193,10 -949,FR,SA,201812,5,2,2,1 -951,FR,SA,201812,1,1,2815,190 -951,FR,SA,201812,1,1,10057,572 -951,FR,SA,201812,1,2,207,40 -951,FR,SA,201812,1,2,4882,244 -951,FR,SA,201812,4,2,1543,72 -951,FR,SA,201812,4,2,1000,60 -951,FR,SA,201812,4,2,6574,56 -951,FR,SA,201812,4,2,8130,1070 -952,FR,SA,201812,1,1,216,11 -952,FR,SA,201812,0,2,100,6 -952,FR,SA,201812,1,2,6294,444 -952,FR,SA,201812,1,2,233,3 -952,FR,SA,201812,1,2,227962,73371 -952,FR,SA,201812,1,2,43116,18965 -952,FR,SA,201812,1,2,40763,21510 -952,FR,SA,201812,3,2,8,2 -952,FR,SA,201812,3,2,15883,3769 -952,FR,SA,201812,4,2,53691,413 -952,FR,SA,201812,4,2,299,39 -952,FR,SA,201812,4,2,69036,500 -952,FR,SA,201812,4,2,100304,290 -952,FR,SA,201812,4,2,40427,1890 -952,FR,SA,201812,4,2,10751,70 -952,FR,SA,201812,4,2,10654,71 -961,FR,SA,201812,4,2,1192,90 -961,FR,SA,201812,4,2,6653,26 -962,FR,SA,201812,1,1,28452,14698 -962,FR,SA,201812,1,1,286,15 -962,FR,SA,201812,1,1,138,4 -962,FR,SA,201812,1,1,18814,17597 -962,FR,SA,201812,3,1,785,42 -962,FR,SA,201812,4,1,82,13 -962,FR,SA,201812,0,2,447,2 -962,FR,SA,201812,1,2,42913,2572 -962,FR,SA,201812,1,2,1247,50 -962,FR,SA,201812,1,2,229,2 -962,FR,SA,201812,1,2,5292,630 -962,FR,SA,201812,1,2,52799,6390 -962,FR,SA,201812,1,2,27377,3804 -962,FR,SA,201812,1,2,47700,7880 -962,FR,SA,201812,1,2,175,6 -962,FR,SA,201812,1,2,26572,4968 -962,FR,SA,201812,3,2,720,25 -962,FR,SA,201812,3,2,193892,137094 -962,FR,SA,201812,4,2,214012,1668 -962,FR,SA,201812,4,2,22442,660 -962,FR,SA,201812,4,2,10708,536 -962,FR,SA,201812,4,2,4764,35 -962,FR,SA,201812,4,2,6024,426 -962,FR,SA,201812,4,2,2113,80 -962,FR,SA,201812,4,2,8525,15 -962,FR,SA,201812,4,2,99790,8240 -962,FR,SA,201812,4,2,23573,81 -962,FR,SA,201812,4,2,18620,233 -962,FR,SA,201812,5,2,96,5 -963,FR,SA,201812,0,1,156,1 -963,FR,SA,201812,3,1,24818,575 -963,FR,SA,201812,4,1,2225,625 -963,FR,SA,201812,4,1,1056,7 -963,FR,SA,201812,4,1,374,1 -963,FR,SA,201812,4,1,4933,4 -963,FR,SA,201812,0,2,14903,42 -963,FR,SA,201812,1,2,42910,2470 -963,FR,SA,201812,1,2,19957,1427 -963,FR,SA,201812,3,2,131183,2216 -963,FR,SA,201812,4,2,1316686,18607 -963,FR,SA,201812,4,2,180236,45 -963,FR,SA,201812,4,2,8454,4 -963,FR,SA,201812,4,2,14171,2 -963,FR,SA,201812,4,2,467981,3865 -963,FR,SA,201812,4,2,11472,150 -963,FR,SA,201812,4,2,1098223,19430 -963,FR,SA,201812,4,2,83850,371 -963,FR,SA,201812,4,2,208209,331 -971,FR,SA,201812,1,1,2021,108 -971,FR,SA,201812,1,1,4651,211 -971,FR,SA,201812,1,1,3989,614 -971,FR,SA,201812,4,1,5935,282 -971,FR,SA,201812,1,2,64317,1150 -971,FR,SA,201812,1,2,325529,73249 -971,FR,SA,201812,1,2,55052,13078 -971,FR,SA,201812,1,2,7028,6460 -971,FR,SA,201812,1,2,43842,10415 -971,FR,SA,201812,3,2,215,6 -971,FR,SA,201812,4,2,56208,654 -971,FR,SA,201812,4,2,1106,5 -971,FR,SA,201812,4,2,33441,2324 -971,FR,SA,201812,4,2,1347,33 -972,FR,SA,201812,1,1,21,1 -972,FR,SA,201812,1,2,31875,3490 -972,FR,SA,201812,1,2,50561,1050 -972,FR,SA,201812,1,2,135332,85228 -972,FR,SA,201812,1,2,38350,5040 -972,FR,SA,201812,1,2,184353,78540 -972,FR,SA,201812,3,2,9618,23734 -972,FR,SA,201812,4,2,222,39 -972,FR,SA,201812,4,2,1309,18 -972,FR,SA,201812,4,2,1412,11 -973,FR,SA,201812,4,1,36,9 -973,FR,SA,201812,1,2,369314,179792 -973,FR,SA,201812,1,2,462,83 -973,FR,SA,201812,1,2,204070,86681 -973,FR,SA,201812,1,2,1458,144 -973,FR,SA,201812,3,2,1078,111 -973,FR,SA,201812,4,2,7427,365 -973,FR,SA,201812,4,2,7430,269 -973,FR,SA,201812,4,2,3530,160 -973,FR,SA,201812,4,2,6322,126 -973,FR,SA,201812,4,2,14582,590 -974,FR,SA,201812,1,1,18,0 -974,FR,SA,201812,1,1,9,0 -974,FR,SA,201812,3,1,313,8 -974,FR,SA,201812,3,1,651,30 -974,FR,SA,201812,4,1,72,2 -974,FR,SA,201812,4,1,145,11 -974,FR,SA,201812,0,2,80,1 -974,FR,SA,201812,1,2,3025,564 -974,FR,SA,201812,1,2,10,30 -974,FR,SA,201812,1,2,15,49 -974,FR,SA,201812,1,2,580,585 -974,FR,SA,201812,1,2,91,1 -974,FR,SA,201812,1,2,5,9 -974,FR,SA,201812,3,2,137,90 -974,FR,SA,201812,4,2,3336,46 -974,FR,SA,201812,4,2,425,1 -974,FR,SA,201812,4,2,150,199 -974,FR,SA,201812,4,2,6011,6840 -974,FR,SA,201812,4,2,1217,15 -974,FR,SA,201812,5,2,0,1 -975,FR,SA,201812,1,1,130,7 -975,FR,SA,201812,1,1,274,26 -975,FR,SA,201812,3,1,1057,85 -975,FR,SA,201812,4,1,6054,684 -975,FR,SA,201812,0,2,179,6 -975,FR,SA,201812,1,2,8799,1036 -975,FR,SA,201812,1,2,20875,1602 -975,FR,SA,201812,1,2,6131,111 -975,FR,SA,201812,1,2,153309,14643 -975,FR,SA,201812,1,2,822828,37798 -975,FR,SA,201812,1,2,401979,4672 -975,FR,SA,201812,1,2,166848,23725 -975,FR,SA,201812,1,2,9543,365 -975,FR,SA,201812,4,2,7671,580 -975,FR,SA,201812,4,2,877,18 -975,FR,SA,201812,4,2,6783,750 -975,FR,SA,201812,4,2,2750,90 -975,FR,SA,201812,4,2,59924,1869 -975,FR,SA,201812,4,2,2194,55 -975,FR,SA,201812,4,2,7191,2230 -976,FR,SA,201812,4,1,8055,320 -976,FR,SA,201812,1,2,5356,33 -976,FR,SA,201812,1,2,248,20 -976,FR,SA,201812,1,2,22109,63760 -976,FR,SA,201812,4,2,16,19 -976,FR,SA,201812,4,2,3893,174 -976,FR,SA,201812,4,2,7905,510 -979,FR,SA,201812,0,1,33,0 -979,FR,SA,201812,1,1,37915,24444 -979,FR,SA,201812,1,1,1157,1180 -979,FR,SA,201812,1,1,14211,703 -979,FR,SA,201812,1,1,9891,1523 -979,FR,SA,201812,3,1,3815,28 -979,FR,SA,201812,4,1,136,26 -979,FR,SA,201812,4,1,5080,5 -979,FR,SA,201812,4,1,30612,259 -979,FR,SA,201812,4,1,9898,83 -979,FR,SA,201812,4,1,47917,65 -979,FR,SA,201812,4,1,65560,554 -979,FR,SA,201812,4,1,564920,533 -979,FR,SA,201812,0,2,2000,13 -979,FR,SA,201812,1,2,168024,12971 -979,FR,SA,201812,1,2,71867,455 -979,FR,SA,201812,1,2,3198,483 -979,FR,SA,201812,1,2,3935,566 -979,FR,SA,201812,1,2,981435,11903 -979,FR,SA,201812,1,2,2950,177 -979,FR,SA,201812,1,2,425946,124702 -979,FR,SA,201812,1,2,77295,3800 -979,FR,SA,201812,1,2,41919,5137 -979,FR,SA,201812,1,2,35160,994 -979,FR,SA,201812,1,2,344995,10416 -979,FR,SA,201812,1,2,200,0 -979,FR,SA,201812,1,2,345898,4837 -979,FR,SA,201812,1,2,13569,519 -979,FR,SA,201812,3,2,39953,1543 -979,FR,SA,201812,4,2,5006598,25109 -979,FR,SA,201812,4,2,14,0 -979,FR,SA,201812,4,2,589723,1455 -979,FR,SA,201812,4,2,56156,11 -979,FR,SA,201812,4,2,13837,300 -979,FR,SA,201812,4,2,112514,0 -979,FR,SA,201812,4,2,78560,348 -979,FR,SA,201812,4,2,42058,1655 -979,FR,SA,201812,4,2,142558,2 -979,FR,SA,201812,4,2,68667,122 -979,FR,SA,201812,4,2,22036416,32538 -979,FR,SA,201812,4,2,27762,450 -979,FR,SA,201812,4,2,7991,10 -979,FR,SA,201812,4,2,41066,5041 -979,FR,SA,201812,4,2,7997,2 -979,FR,SA,201812,4,2,529771,25310 -979,FR,SA,201812,4,2,383312,213 -979,FR,SA,201812,4,2,92878,176 -979,FR,SA,201812,5,2,21,6 -994,FR,SA,201812,4,2,15744,80 -999,FR,SA,201812,0,1,23310,0 -999,FR,SA,201812,3,1,1394,0 -999,FR,SA,201812,4,1,9690,0 -999,FR,SA,201812,4,1,21394,0 -999,FR,SA,201812,4,1,5817,0 -999,FR,SA,201812,4,1,4428,0 -999,FR,SA,201812,4,1,760,0 -999,FR,SA,201812,1,2,31647,1564 -999,FR,SA,201812,1,2,6750,0 -999,FR,SA,201812,1,2,22418,3693 -999,FR,SA,201812,1,2,21546,2000 -999,FR,SA,201812,1,2,10323,8500 -999,FR,SA,201812,1,2,21157,6875 -999,FR,SA,201812,1,2,649607,513989 -999,FR,SA,201812,1,2,13888,18000 -999,FR,SA,201812,1,2,228984,184750 -999,FR,SA,201812,1,2,637144,346714 -999,FR,SA,201812,1,2,25396,42000 -999,FR,SA,201812,1,2,156205,83370 -999,FR,SA,201812,1,2,13037,23800 -999,FR,SA,201812,1,2,113069,32000 -999,FR,SA,201812,1,2,99189,18000 -999,FR,SA,201812,4,2,1030084,1413 -999,FR,SA,201812,4,2,238,8 -999,FR,SA,201812,4,2,6654,0 -999,FR,SA,201812,4,2,3536,7 -999,FR,SA,201812,4,2,1627113,1151 -999,FR,SA,201812,4,2,1825,0 -999,FR,SA,201812,4,2,26389,2130 -999,FR,SA,201812,4,2,1130,3 -999,FR,SA,201812,4,2,2699,23 -020,FR,KW,201812,1,2,50869,106300 -020,FR,KW,201812,1,2,25500,100000 -031,FR,KW,201812,4,2,1803,550 -035,FR,KW,201812,1,2,208140,190495 -035,FR,KW,201812,1,2,18731,21168 -035,FR,KW,201812,1,2,18839,21150 -035,FR,KW,201812,1,2,20403,22176 -035,FR,KW,201812,4,2,917,260 -039,FR,KW,201812,1,2,104470,167500 -056,FR,KW,201812,4,2,5930,500 -099,FR,KW,201812,4,2,1407,4 -099,FR,KW,201812,4,2,1199,24 -112,FR,KW,201812,1,2,68788,240000 -112,FR,KW,201812,1,2,138685,480000 -112,FR,KW,201812,1,2,71080,240000 -128,FR,KW,201812,1,2,169942,124078 -128,FR,KW,201812,1,2,450172,492521 -128,FR,KW,201812,1,2,23660,14063 -128,FR,KW,201812,4,2,6847,315 -132,FR,KW,201812,1,2,747,90 -132,FR,KW,201812,1,2,103504,29575 -132,FR,KW,201812,1,2,25361,5416 -132,FR,KW,201812,3,2,1725,52 -132,FR,KW,201812,3,2,82600,10783 -132,FR,KW,201812,4,2,6069,120 -132,FR,KW,201812,4,2,3566,71 -132,FR,KW,201812,4,2,12475,520 -133,FR,KW,201812,1,2,16203,10310 -136,FR,KW,201812,1,2,152588,13868 -136,FR,KW,201812,3,2,119,3 -136,FR,KW,201812,3,2,9956,1075 -139,FR,KW,201812,1,2,85238,15760 -139,FR,KW,201812,1,2,17889,4976 -139,FR,KW,201812,1,2,7921,3888 -139,FR,KW,201812,1,2,64286,24755 -139,FR,KW,201812,1,2,20493,7618 -139,FR,KW,201812,1,2,2069,1474 -139,FR,KW,201812,3,2,4745,1000 -139,FR,KW,201812,4,2,341,81 -139,FR,KW,201812,4,2,52089,1091 -139,FR,KW,201812,4,2,12748,628 -139,FR,KW,201812,4,2,17877,755 -141,FR,KW,201812,1,2,106500,70378 -141,FR,KW,201812,4,2,1441,369 -142,FR,KW,201812,4,2,4869,245 -143,FR,KW,201812,1,2,186567,78887 -143,FR,KW,201812,1,2,58188,19773 -143,FR,KW,201812,1,2,65527,23166 -143,FR,KW,201812,1,2,79566,30968 -143,FR,KW,201812,4,2,65,36 -144,FR,KW,201812,1,2,1126534,180855 -144,FR,KW,201812,1,2,58568,17280 -144,FR,KW,201812,1,2,106858,16170 -144,FR,KW,201812,1,2,3893,630 -144,FR,KW,201812,3,2,189,22 -144,FR,KW,201812,4,2,15571,1248 -144,FR,KW,201812,4,2,48756,5146 -146,FR,KW,201812,4,2,19241,6230 -147,FR,KW,201812,1,2,34634,25704 -148,FR,KW,201812,4,2,480,43 -148,FR,KW,201812,4,2,1935,395 -161,FR,KW,201812,1,2,10372,17500 -163,FR,KW,201812,1,2,2669,2530 -163,FR,KW,201812,1,2,10195,10800 -163,FR,KW,201812,1,2,49281,22882 -163,FR,KW,201812,1,2,41993,9065 -163,FR,KW,201812,1,2,18790,7520 -163,FR,KW,201812,1,2,28737,10517 -163,FR,KW,201812,1,2,24841,9905 -163,FR,KW,201812,3,2,650,84 -163,FR,KW,201812,4,2,12856,2927 -163,FR,KW,201812,4,2,2587,469 -164,FR,KW,201812,1,2,40621,10473 -164,FR,KW,201812,1,2,6171,2592 -164,FR,KW,201812,1,2,140136,34302 -164,FR,KW,201812,3,2,14277,1180 -164,FR,KW,201812,4,2,5684,144 -166,FR,KW,201812,1,2,13309,11818 -171,FR,KW,201812,4,2,600,55 -179,FR,KW,201812,1,2,46124,13366 -179,FR,KW,201812,1,2,94422,28618 -213,FR,KW,201812,1,2,1303,25500 -341,FR,KW,201812,1,2,2237,450 -341,FR,KW,201812,1,2,215964,176916 -341,FR,KW,201812,1,2,849992,547209 -343,FR,KW,201812,1,2,16756,25080 -532,FR,KW,201812,4,2,407,231 -532,FR,KW,201812,4,2,11816,1900 -536,FR,KW,201812,4,2,2516,56 -542,FR,KW,201812,1,2,45878,2377 -551,FR,KW,201812,1,1,15528,12600 -551,FR,KW,201812,1,2,17,0 -551,FR,KW,201812,3,2,39300,8900 -551,FR,KW,201812,4,2,25809,9988 -551,FR,KW,201812,4,2,3883,148 -552,FR,KW,201812,4,2,19,1 -568,FR,KW,201812,1,2,2973,152 -568,FR,KW,201812,1,2,1500,180 -568,FR,KW,201812,1,2,91866,9712 -568,FR,KW,201812,1,2,291796,110885 -568,FR,KW,201812,4,2,1149,72 -614,FR,KW,201812,4,2,981,80 -621,FR,KW,201812,4,2,1230,120 -632,FR,KW,201812,4,1,472,24 -691,FR,KW,201812,4,1,4224,6 -819,FR,KW,201812,1,2,18047,1000 -819,FR,KW,201812,1,2,2984,40800 -819,FR,KW,201812,1,2,44473,112000 -819,FR,KW,201812,4,2,3096,20 -891,FR,KW,201812,1,1,325141,371250 -891,FR,KW,201812,1,1,126611,148500 -891,FR,KW,201812,1,1,44352,49500 -891,FR,KW,201812,1,2,2576,954 -891,FR,KW,201812,1,2,158296,60002 -891,FR,KW,201812,1,2,2714,345 -891,FR,KW,201812,3,2,116800,37125 -891,FR,KW,201812,4,2,697,3 -891,FR,KW,201812,4,2,12865,230 -891,FR,KW,201812,4,2,3567,100 -892,FR,KW,201812,1,2,22069,639 -892,FR,KW,201812,4,2,5487,153 -892,FR,KW,201812,4,2,9375,189 -892,FR,KW,201812,4,2,3030,254 -892,FR,KW,201812,4,2,1580,22 -893,FR,KW,201812,3,1,66,0 -893,FR,KW,201812,4,1,363,0 -893,FR,KW,201812,4,1,314,4 -893,FR,KW,201812,4,1,35,134 -893,FR,KW,201812,4,1,4492,121 -893,FR,KW,201812,1,2,289479,31088 -893,FR,KW,201812,1,2,14890,1829 -893,FR,KW,201812,1,2,203467,17238 -893,FR,KW,201812,1,2,391840,17293 -893,FR,KW,201812,1,2,79044,8306 -893,FR,KW,201812,1,2,285350,15874 -893,FR,KW,201812,1,2,51525,1733 -893,FR,KW,201812,3,2,557973,7200 -893,FR,KW,201812,4,2,1420810,21139 -893,FR,KW,201812,4,2,242899,5302 -893,FR,KW,201812,4,2,681734,23181 -893,FR,KW,201812,4,2,38711,2634 -893,FR,KW,201812,4,2,9212,231 -893,FR,KW,201812,4,2,773481,17865 -893,FR,KW,201812,4,2,581843,6965 -893,FR,KW,201812,4,2,420306,6129 -893,FR,KW,201812,4,2,1157,70 -893,FR,KW,201812,4,2,37800,500 -893,FR,KW,201812,4,2,12784,47 -894,FR,KW,201812,4,2,47676,0 -896,FR,KW,201812,1,2,14564,10206 -896,FR,KW,201812,1,2,194,1 -896,FR,KW,201812,3,2,20,8 -896,FR,KW,201812,4,2,108019,2158 -896,FR,KW,201812,4,2,158935,1310 -896,FR,KW,201812,4,2,11442,179 -896,FR,KW,201812,4,2,6825,150 -896,FR,KW,201812,4,2,418726,1020 -896,FR,KW,201812,4,2,2166,500 -896,FR,KW,201812,4,2,7796,63 -910,FR,KW,201812,1,1,16683,1500 -910,FR,KW,201812,1,2,175317,32025 -910,FR,KW,201812,1,2,508704,34372 -910,FR,KW,201812,1,2,20156,4180 -910,FR,KW,201812,1,2,72921,22844 -910,FR,KW,201812,4,2,24853,860 -910,FR,KW,201812,4,2,1327,27 -910,FR,KW,201812,4,2,116134,403 -910,FR,KW,201812,4,2,13976,291 -910,FR,KW,201812,4,2,2346,130 -910,FR,KW,201812,4,2,2299,12 -920,FR,KW,201812,4,2,64000,5960 -920,FR,KW,201812,4,2,8638,201 -931,FR,KW,201812,0,1,17628,26 -931,FR,KW,201812,3,1,1919,1 -931,FR,KW,201812,4,1,783,14 -931,FR,KW,201812,4,1,2706,1 -931,FR,KW,201812,4,1,152,0 -931,FR,KW,201812,0,2,1504,21 -931,FR,KW,201812,1,2,289298,8757 -931,FR,KW,201812,1,2,1070716,50655 -931,FR,KW,201812,1,2,85543,568 -931,FR,KW,201812,1,2,29000,280 -931,FR,KW,201812,1,2,99839,7188 -931,FR,KW,201812,1,2,77692,5062 -931,FR,KW,201812,1,2,73544,25484 -931,FR,KW,201812,1,2,3420545,191862 -931,FR,KW,201812,1,2,3449937,177163 -931,FR,KW,201812,1,2,125015,7800 -931,FR,KW,201812,3,2,45454,379 -931,FR,KW,201812,3,2,21841,409 -931,FR,KW,201812,4,2,577053,6130 -931,FR,KW,201812,4,2,1782,22 -931,FR,KW,201812,4,2,68564,1798 -931,FR,KW,201812,4,2,46457,176 -931,FR,KW,201812,4,2,1330,30 -931,FR,KW,201812,4,2,5557,936 -931,FR,KW,201812,4,2,8381,160 -931,FR,KW,201812,4,2,1790,71 -931,FR,KW,201812,4,2,107113,258 -939,FR,KW,201812,3,1,7021,114 -939,FR,KW,201812,4,1,35688,7 -939,FR,KW,201812,4,1,207,0 -939,FR,KW,201812,4,1,126,0 -939,FR,KW,201812,4,1,31284,4 -939,FR,KW,201812,0,2,740,3 -939,FR,KW,201812,1,2,1203066,16090 -939,FR,KW,201812,1,2,4237,623 -939,FR,KW,201812,1,2,4820671,395418 -939,FR,KW,201812,1,2,79206,780 -939,FR,KW,201812,1,2,320505,74088 -939,FR,KW,201812,1,2,855599,103114 -939,FR,KW,201812,1,2,39894,4152 -939,FR,KW,201812,1,2,5637,646 -939,FR,KW,201812,1,2,635122,23578 -939,FR,KW,201812,3,2,14004,213 -939,FR,KW,201812,4,2,593696,3036 -939,FR,KW,201812,4,2,851,13 -939,FR,KW,201812,4,2,4829,6 -939,FR,KW,201812,4,2,4305,290 -939,FR,KW,201812,4,2,20746,450 -939,FR,KW,201812,4,2,1641,15 -939,FR,KW,201812,4,2,17100,500 -939,FR,KW,201812,4,2,154987,1551 -939,FR,KW,201812,4,2,39238,1156 -939,FR,KW,201812,4,2,141,1 -939,FR,KW,201812,4,2,9522,194 -939,FR,KW,201812,4,2,147362,5150 -939,FR,KW,201812,4,2,43286,443 -941,FR,KW,201812,1,2,637427,95542 -941,FR,KW,201812,1,2,16581,1694 -941,FR,KW,201812,4,2,1044,70 -949,FR,KW,201812,3,1,724,4 -949,FR,KW,201812,1,2,29399,1001 -949,FR,KW,201812,1,2,14,1 -949,FR,KW,201812,1,2,533,340 -949,FR,KW,201812,1,2,19981,1400 -949,FR,KW,201812,1,2,110144,9045 -949,FR,KW,201812,1,2,1963,123 -949,FR,KW,201812,3,2,3378,77 -949,FR,KW,201812,3,2,379385,910 -949,FR,KW,201812,4,2,36747,423 -949,FR,KW,201812,4,2,58010,460 -949,FR,KW,201812,4,2,519897,1735 -949,FR,KW,201812,4,2,4975,179 -949,FR,KW,201812,4,2,5514,1380 -949,FR,KW,201812,4,2,1268,9 -951,FR,KW,201812,1,2,63722,28563 -951,FR,KW,201812,3,2,197,15 -951,FR,KW,201812,4,2,179,1 -952,FR,KW,201812,0,2,214,0 -952,FR,KW,201812,1,2,8561,395 -952,FR,KW,201812,1,2,907,34 -952,FR,KW,201812,1,2,8163,731 -952,FR,KW,201812,4,2,19537,93 -952,FR,KW,201812,4,2,21034,678 -952,FR,KW,201812,4,2,158,18 -952,FR,KW,201812,4,2,49159,200 -952,FR,KW,201812,4,2,48147,237 -961,FR,KW,201812,1,2,286,6 -961,FR,KW,201812,4,2,503,0 -961,FR,KW,201812,4,2,3155,10 -962,FR,KW,201812,3,1,98,0 -962,FR,KW,201812,0,2,258,0 -962,FR,KW,201812,1,2,13132,669 -962,FR,KW,201812,1,2,1729,6 -962,FR,KW,201812,1,2,18161,2091 -962,FR,KW,201812,1,2,5561,300 -962,FR,KW,201812,4,2,24169,743 -962,FR,KW,201812,4,2,1053,70 -962,FR,KW,201812,4,2,649,9 -962,FR,KW,201812,4,2,87442,1863 -962,FR,KW,201812,4,2,10289,880 -962,FR,KW,201812,4,2,22279,38 -962,FR,KW,201812,4,2,23869,50 -963,FR,KW,201812,3,1,2022,18 -963,FR,KW,201812,4,1,585,1 -963,FR,KW,201812,4,1,9254,11 -963,FR,KW,201812,4,1,398,1 -963,FR,KW,201812,4,1,13558,27 -963,FR,KW,201812,4,1,4074,6 -963,FR,KW,201812,0,2,10664,38 -963,FR,KW,201812,1,2,1588,94 -963,FR,KW,201812,1,2,9993,528 -963,FR,KW,201812,1,2,32418,1511 -963,FR,KW,201812,1,2,43432,1629 -963,FR,KW,201812,3,2,77753,530 -963,FR,KW,201812,4,2,1122061,12300 -963,FR,KW,201812,4,2,30000,1 -963,FR,KW,201812,4,2,4754,4 -963,FR,KW,201812,4,2,25975,200 -963,FR,KW,201812,4,2,48657,1142 -963,FR,KW,201812,4,2,10751,2 -963,FR,KW,201812,4,2,55497,900 -963,FR,KW,201812,4,2,2286606,12413 -963,FR,KW,201812,4,2,324573,1329 -963,FR,KW,201812,4,2,22442,279 -963,FR,KW,201812,4,2,16615,274 -963,FR,KW,201812,4,2,124384,200 -963,FR,KW,201812,4,2,84816,2250 -963,FR,KW,201812,4,2,19067,74 -963,FR,KW,201812,4,2,137888,227 -971,FR,KW,201812,1,1,58450,13310 -971,FR,KW,201812,4,1,90442,13810 -971,FR,KW,201812,4,1,136130,18590 -971,FR,KW,201812,1,2,7192,68 -971,FR,KW,201812,1,2,232088,86534 -971,FR,KW,201812,1,2,28554,5420 -971,FR,KW,201812,1,2,4789,503 -971,FR,KW,201812,4,2,205149,15597 -971,FR,KW,201812,4,2,1042,0 -971,FR,KW,201812,4,2,4385,150 -972,FR,KW,201812,1,2,10211,3605 -972,FR,KW,201812,1,2,132260,65206 -972,FR,KW,201812,1,2,15229,18508 -972,FR,KW,201812,3,2,74097,189872 -972,FR,KW,201812,4,2,459,5 -972,FR,KW,201812,4,2,2398,77 -972,FR,KW,201812,4,2,5525,40 -973,FR,KW,201812,1,1,19265,5450 -973,FR,KW,201812,3,1,210,0 -973,FR,KW,201812,1,2,24702,4571 -973,FR,KW,201812,1,2,645,262 -973,FR,KW,201812,1,2,10,74 -973,FR,KW,201812,4,2,1900,140 -973,FR,KW,201812,4,2,14015,635 -973,FR,KW,201812,4,2,1377,60 -973,FR,KW,201812,4,2,3983,446 -974,FR,KW,201812,1,2,20,7 -974,FR,KW,201812,3,2,79,1872 -974,FR,KW,201812,4,2,804,22 -974,FR,KW,201812,4,2,77,1 -974,FR,KW,201812,4,2,5155,70 -974,FR,KW,201812,4,2,4400,200 -974,FR,KW,201812,4,2,3502,1 -975,FR,KW,201812,4,1,1213,60 -975,FR,KW,201812,0,2,363,7 -975,FR,KW,201812,1,2,5691,222 -975,FR,KW,201812,1,2,21599,791 -975,FR,KW,201812,1,2,777820,45600 -975,FR,KW,201812,1,2,32177,1431 -975,FR,KW,201812,1,2,8919,677 -975,FR,KW,201812,3,2,2656,78 -975,FR,KW,201812,4,2,4122,276 -975,FR,KW,201812,4,2,1100,25 -975,FR,KW,201812,4,2,78559,173 -975,FR,KW,201812,4,2,7334,820 -976,FR,KW,201812,1,2,654,34 -976,FR,KW,201812,1,2,66,189 -976,FR,KW,201812,1,2,17817,9220 -976,FR,KW,201812,4,2,679,100 -976,FR,KW,201812,4,2,2000,411 -976,FR,KW,201812,4,2,14767,300 -976,FR,KW,201812,4,2,8049,490 -979,FR,KW,201812,3,1,953,15 -979,FR,KW,201812,4,1,1126,3 -979,FR,KW,201812,4,1,2735,8 -979,FR,KW,201812,4,1,365320,64 -979,FR,KW,201812,4,1,55,0 -979,FR,KW,201812,0,2,289,16 -979,FR,KW,201812,1,2,2665,197 -979,FR,KW,201812,1,2,139643,7207 -979,FR,KW,201812,1,2,13537,662 -979,FR,KW,201812,1,2,470547,26756 -979,FR,KW,201812,1,2,20570,2377 -979,FR,KW,201812,1,2,132077,30378 -979,FR,KW,201812,1,2,340960,3843 -979,FR,KW,201812,3,2,19005,485 -979,FR,KW,201812,3,2,606620,23 -979,FR,KW,201812,4,2,1523709,2857 -979,FR,KW,201812,4,2,5714,64 -979,FR,KW,201812,4,2,1884,2 -979,FR,KW,201812,4,2,82447,0 -979,FR,KW,201812,4,2,55,25 -979,FR,KW,201812,4,2,343226,2496 -979,FR,KW,201812,4,2,138450,486 -979,FR,KW,201812,4,2,10088,3 -979,FR,KW,201812,4,2,98541,3300 -979,FR,KW,201812,4,2,35739,283 -999,FR,KW,201812,4,1,232,0 -999,FR,KW,201812,4,1,246,0 -999,FR,KW,201812,4,1,1515,0 -999,FR,KW,201812,0,2,500,0 -999,FR,KW,201812,1,2,290,22 -999,FR,KW,201812,1,2,209658,46236 -999,FR,KW,201812,1,2,69360,20233 -999,FR,KW,201812,1,2,42848,11935 -999,FR,KW,201812,3,2,7250,1125 -999,FR,KW,201812,4,2,6507,51 -999,FR,KW,201812,4,2,1,0 -999,FR,KW,201812,4,2,20902,0 -999,FR,KW,201812,4,2,13190,137 -001,FR,BH,201812,4,2,300000,500 -020,FR,BH,201812,1,2,13377,27130 -020,FR,BH,201812,1,2,18328,52900 -020,FR,BH,201812,1,2,121500,216000 -031,FR,BH,201812,3,2,2688,889 -035,FR,BH,201812,1,2,18299,21168 -035,FR,BH,201812,4,2,282,42 -039,FR,BH,201812,1,2,29479,39900 -045,FR,BH,201812,4,2,2233,780 -099,FR,BH,201812,4,2,159,8 -121,FR,BH,201812,1,2,32491,3506 -121,FR,BH,201812,1,2,21119,1320 -121,FR,BH,201812,1,2,11282,1251 -122,FR,BH,201812,1,2,881,197 -122,FR,BH,201812,1,2,74509,211992 -125,FR,BH,201812,1,2,12583,482 -125,FR,BH,201812,1,2,27092,1788 -125,FR,BH,201812,1,2,3213,958 -125,FR,BH,201812,1,2,20550,5444 -125,FR,BH,201812,1,2,87228,30198 -128,FR,BH,201812,4,1,233,106 -128,FR,BH,201812,1,2,131,150 -128,FR,BH,201812,1,2,21890,13697 -131,FR,BH,201812,1,2,54337,2129 -132,FR,BH,201812,0,2,60,3 -132,FR,BH,201812,1,2,8976,1524 -132,FR,BH,201812,1,2,38565,8651 -132,FR,BH,201812,3,2,3098,170 -132,FR,BH,201812,3,2,74065,8779 -132,FR,BH,201812,4,2,10991,850 -132,FR,BH,201812,4,2,4,3 -132,FR,BH,201812,4,2,2531,190 -133,FR,BH,201812,4,2,260,250 -136,FR,BH,201812,1,2,2318,398 -136,FR,BH,201812,1,2,1761,522 -136,FR,BH,201812,3,2,418,23 -136,FR,BH,201812,3,2,15366,1443 -136,FR,BH,201812,4,2,1041,22 -139,FR,BH,201812,1,2,4,1 -139,FR,BH,201812,1,2,23129,6873 -139,FR,BH,201812,1,2,4421,1316 -139,FR,BH,201812,1,2,30488,19179 -139,FR,BH,201812,4,2,626,32 -139,FR,BH,201812,4,2,2394,161 -139,FR,BH,201812,4,2,18225,5386 -141,FR,BH,201812,1,2,22435,14605 -141,FR,BH,201812,4,2,3808,267 -141,FR,BH,201812,4,2,5798,456 -142,FR,BH,201812,4,2,7704,599 -143,FR,BH,201812,1,2,82862,32064 -143,FR,BH,201812,1,2,61285,20253 -143,FR,BH,201812,1,2,64180,21233 -143,FR,BH,201812,4,2,2700,900 -143,FR,BH,201812,4,2,34,11 -144,FR,BH,201812,1,2,203222,42231 -144,FR,BH,201812,1,2,3325,561 -144,FR,BH,201812,1,2,2912,540 -144,FR,BH,201812,4,2,3666,290 -144,FR,BH,201812,4,2,20305,2186 -144,FR,BH,201812,4,2,1156,106 -147,FR,BH,201812,1,2,525,22 -147,FR,BH,201812,1,2,22506,10716 -148,FR,BH,201812,1,2,20,2 -148,FR,BH,201812,4,2,76,14 -161,FR,BH,201812,1,2,9534,18000 -161,FR,BH,201812,1,2,21911,18690 -163,FR,BH,201812,1,2,2093,2010 -163,FR,BH,201812,1,2,4259,2505 -163,FR,BH,201812,1,2,82236,63923 -163,FR,BH,201812,1,2,34239,10410 -163,FR,BH,201812,1,2,49647,13226 -163,FR,BH,201812,1,2,30529,11222 -163,FR,BH,201812,1,2,11224,4395 -163,FR,BH,201812,3,2,502,36 -163,FR,BH,201812,3,2,1782,168 -163,FR,BH,201812,4,2,79,8 -163,FR,BH,201812,4,2,517,146 -164,FR,BH,201812,1,2,11,1 -164,FR,BH,201812,1,2,9592,2998 -164,FR,BH,201812,1,2,12390,1554 -164,FR,BH,201812,1,2,18612,12693 -164,FR,BH,201812,3,2,916,85 -164,FR,BH,201812,4,2,174,18 -166,FR,BH,201812,1,2,25,2 -166,FR,BH,201812,4,2,337,7 -182,FR,BH,201812,1,2,47637,29187 -182,FR,BH,201812,4,2,381,39 -182,FR,BH,201812,4,2,237,30 -325,FR,BH,201812,1,1,5211054,8151442 -341,FR,BH,201812,1,2,40844,16215 -343,FR,BH,201812,1,2,25282,40000 -551,FR,BH,201812,1,2,4174,65 -552,FR,BH,201812,1,2,4823,2011 -552,FR,BH,201812,4,2,3,0 -568,FR,BH,201812,0,1,1066417,478960 -568,FR,BH,201812,1,1,198671,87403 -568,FR,BH,201812,3,1,84,0 -568,FR,BH,201812,4,2,8265,644 -621,FR,BH,201812,4,2,169,17 -621,FR,BH,201812,4,2,92,6 -632,FR,BH,201812,1,2,10015,83849 -691,FR,BH,201812,1,2,17,0 -691,FR,BH,201812,1,2,5035,42150 -691,FR,BH,201812,4,2,675,10 -692,FR,BH,201812,1,2,20188,44000 -891,FR,BH,201812,1,2,7822,2227 -891,FR,BH,201812,4,2,28057,4960 -891,FR,BH,201812,4,2,51009,480 -891,FR,BH,201812,4,2,8611,1700 -891,FR,BH,201812,4,2,12611,1066 -892,FR,BH,201812,1,2,101915,29220 -892,FR,BH,201812,4,2,826,172 -892,FR,BH,201812,4,2,33366,500 -892,FR,BH,201812,4,2,9550,745 -893,FR,BH,201812,3,1,23,0 -893,FR,BH,201812,4,1,100,0 -893,FR,BH,201812,4,1,12,60 -893,FR,BH,201812,1,2,33671,1455 -893,FR,BH,201812,1,2,32175,3600 -893,FR,BH,201812,1,2,7944,500 -893,FR,BH,201812,1,2,25409,2774 -893,FR,BH,201812,1,2,4200,9800 -893,FR,BH,201812,1,2,25466,2522 -893,FR,BH,201812,4,2,550200,6236 -893,FR,BH,201812,4,2,45811,1908 -893,FR,BH,201812,4,2,41305,481 -893,FR,BH,201812,4,2,50176,634 -893,FR,BH,201812,4,2,11462,222 -893,FR,BH,201812,4,2,130726,2566 -893,FR,BH,201812,4,2,381925,10624 -893,FR,BH,201812,4,2,2290,1 -893,FR,BH,201812,4,2,5540,87 -894,FR,BH,201812,4,2,15413,1338 -896,FR,BH,201812,3,1,189,0 -896,FR,BH,201812,1,2,46,10 -896,FR,BH,201812,1,2,16149,5935 -896,FR,BH,201812,1,2,38690,20480 -896,FR,BH,201812,1,2,14410,48000 -896,FR,BH,201812,3,2,10770,2289 -896,FR,BH,201812,4,2,13594,139 -896,FR,BH,201812,4,2,31350,318 -896,FR,BH,201812,4,2,3604,116 -896,FR,BH,201812,4,2,3626,218 -896,FR,BH,201812,4,2,2710,100 -896,FR,BH,201812,4,2,48908,486 -896,FR,BH,201812,4,2,1888,15 -910,FR,BH,201812,1,1,49203,7478 -910,FR,BH,201812,1,1,13055,1900 -910,FR,BH,201812,3,1,82,0 -910,FR,BH,201812,3,1,155433,8460 -910,FR,BH,201812,4,1,139088,5316 -910,FR,BH,201812,4,1,27570,830 -910,FR,BH,201812,4,1,52674,2769 -910,FR,BH,201812,4,1,49314,2649 -910,FR,BH,201812,4,1,15293,638 -910,FR,BH,201812,1,2,6389,280 -910,FR,BH,201812,1,2,9608,379 -910,FR,BH,201812,3,2,540,42 -910,FR,BH,201812,4,2,5868,249 -910,FR,BH,201812,4,2,111941,616 -920,FR,BH,201812,4,2,1021,620 -931,FR,BH,201812,0,1,93,0 -931,FR,BH,201812,3,1,870,38 -931,FR,BH,201812,4,1,75,1 -931,FR,BH,201812,4,1,447,22 -931,FR,BH,201812,4,1,62,1 -931,FR,BH,201812,4,1,51,1 -931,FR,BH,201812,1,2,27307,677 -931,FR,BH,201812,1,2,100904,20625 -931,FR,BH,201812,1,2,7347,230 -931,FR,BH,201812,1,2,31599,1669 -931,FR,BH,201812,3,2,4883,66 -931,FR,BH,201812,3,2,790,3 -931,FR,BH,201812,4,2,688750,1484 -931,FR,BH,201812,4,2,4752,40 -931,FR,BH,201812,4,2,7934,369 -931,FR,BH,201812,4,2,2740,28 -931,FR,BH,201812,4,2,67968,520 -931,FR,BH,201812,4,2,5823,79 -931,FR,BH,201812,4,2,2072,1 -931,FR,BH,201812,4,2,132202,5090 -931,FR,BH,201812,4,2,3719,18 -931,FR,BH,201812,4,2,54770,136 -939,FR,BH,201812,0,1,29,0 -939,FR,BH,201812,3,1,93,0 -939,FR,BH,201812,4,1,479,10 -939,FR,BH,201812,0,2,810,3 -939,FR,BH,201812,1,2,3888,43 -939,FR,BH,201812,1,2,64903,496 -939,FR,BH,201812,1,2,25131,4023 -939,FR,BH,201812,1,2,93303,4555 -939,FR,BH,201812,1,2,3289867,120451 -939,FR,BH,201812,1,2,7903,195 -939,FR,BH,201812,1,2,102858,14600 -939,FR,BH,201812,1,2,69399,4692 -939,FR,BH,201812,3,2,23661,438 -939,FR,BH,201812,4,2,205842,1921 -939,FR,BH,201812,4,2,250851,16919 -939,FR,BH,201812,4,2,60632,8996 -939,FR,BH,201812,4,2,56049,1482 -939,FR,BH,201812,4,2,3671,50 -939,FR,BH,201812,4,2,30287,1359 -939,FR,BH,201812,4,2,1527749,63293 -939,FR,BH,201812,4,2,42164,268 -939,FR,BH,201812,4,2,105102,2437 -939,FR,BH,201812,4,2,128058,8304 -939,FR,BH,201812,4,2,31282,61 -949,FR,BH,201812,3,1,1184,0 -949,FR,BH,201812,4,1,189,2 -949,FR,BH,201812,4,1,48,1 -949,FR,BH,201812,4,1,100,0 -949,FR,BH,201812,1,2,173281,4820 -949,FR,BH,201812,1,2,726,12 -949,FR,BH,201812,1,2,73468,3831 -949,FR,BH,201812,1,2,384,2 -949,FR,BH,201812,1,2,45400,2450 -949,FR,BH,201812,3,2,20362,468 -949,FR,BH,201812,4,2,9295,263 -949,FR,BH,201812,4,2,31730,769 -949,FR,BH,201812,4,2,5907,382 -949,FR,BH,201812,4,2,60250,1557 -949,FR,BH,201812,4,2,9026,575 -949,FR,BH,201812,4,2,2615,43 -949,FR,BH,201812,4,2,15164,561 -949,FR,BH,201812,4,2,21498,845 -949,FR,BH,201812,4,2,9169,364 -949,FR,BH,201812,4,2,6059,427 -949,FR,BH,201812,4,2,11881,160 -951,FR,BH,201812,3,1,23,0 -951,FR,BH,201812,1,2,13959,579 -951,FR,BH,201812,1,2,522,34 -951,FR,BH,201812,3,2,2500,55 -951,FR,BH,201812,4,2,85,2 -951,FR,BH,201812,4,2,453,41 -952,FR,BH,201812,1,2,639,15 -952,FR,BH,201812,1,2,92479,12700 -952,FR,BH,201812,3,2,92,0 -952,FR,BH,201812,4,2,11501,10 -952,FR,BH,201812,4,2,9409,69 -961,FR,BH,201812,4,2,264,1 -962,FR,BH,201812,1,1,162609,32688 -962,FR,BH,201812,1,1,162609,32688 -962,FR,BH,201812,1,1,374171,94950 -962,FR,BH,201812,3,1,168,0 -962,FR,BH,201812,4,1,1116,67 -962,FR,BH,201812,4,1,5666,212 -962,FR,BH,201812,0,2,60,0 -962,FR,BH,201812,1,2,20437,805 -962,FR,BH,201812,1,2,143,3 -962,FR,BH,201812,3,2,1745,29 -962,FR,BH,201812,4,2,34004,440 -962,FR,BH,201812,4,2,7015,57 -962,FR,BH,201812,4,2,9624,149 -962,FR,BH,201812,4,2,5448,290 -962,FR,BH,201812,4,2,16505,1400 -962,FR,BH,201812,4,2,2300,359 -962,FR,BH,201812,4,2,8110,50 -962,FR,BH,201812,4,2,21176,890 -962,FR,BH,201812,4,2,3800,21 -962,FR,BH,201812,4,2,1347,21 -963,FR,BH,201812,0,1,112,0 -963,FR,BH,201812,3,1,3047,10 -963,FR,BH,201812,4,1,209,0 -963,FR,BH,201812,4,1,438,5 -963,FR,BH,201812,4,1,160,3 -963,FR,BH,201812,4,1,24077,18 -963,FR,BH,201812,4,1,196,6 -963,FR,BH,201812,0,2,80,1 -963,FR,BH,201812,1,2,33,18 -963,FR,BH,201812,1,2,22834,2575 -963,FR,BH,201812,3,2,23603,304 -963,FR,BH,201812,4,2,264155,2026 -963,FR,BH,201812,4,2,234843,218 -963,FR,BH,201812,4,2,1617,32 -963,FR,BH,201812,4,2,16000,71 -963,FR,BH,201812,4,2,42760,111 -963,FR,BH,201812,4,2,113091,489 -963,FR,BH,201812,4,2,36294,194 -963,FR,BH,201812,4,2,6,0 -963,FR,BH,201812,4,2,39576,140 -963,FR,BH,201812,4,2,11784,430 -963,FR,BH,201812,4,2,55875,30 -963,FR,BH,201812,4,2,39256,274 -971,FR,BH,201812,1,1,47538,15000 -971,FR,BH,201812,1,2,514,11 -971,FR,BH,201812,1,2,526,32 -971,FR,BH,201812,1,2,118887,8700 -971,FR,BH,201812,3,2,1756,20 -971,FR,BH,201812,4,2,5991,2 -971,FR,BH,201812,4,2,13245,520 -971,FR,BH,201812,4,2,588,6 -971,FR,BH,201812,4,2,5356,7 -971,FR,BH,201812,4,2,45,0 -973,FR,BH,201812,1,2,2955,963 -973,FR,BH,201812,3,2,97,6 -973,FR,BH,201812,4,2,2,0 -973,FR,BH,201812,4,2,107,18 -973,FR,BH,201812,4,2,5559,493 -974,FR,BH,201812,0,2,175,37 -974,FR,BH,201812,3,2,6020,60 -974,FR,BH,201812,3,2,9,11 -974,FR,BH,201812,4,2,1431,38 -974,FR,BH,201812,4,2,1,0 -974,FR,BH,201812,4,2,12,0 -974,FR,BH,201812,4,2,7010,400 -975,FR,BH,201812,3,1,23,0 -975,FR,BH,201812,4,1,687,5 -975,FR,BH,201812,1,2,11949,571 -975,FR,BH,201812,1,2,245,49 -975,FR,BH,201812,3,2,610,76 -975,FR,BH,201812,4,2,1235,22 -975,FR,BH,201812,4,2,247738,9775 -975,FR,BH,201812,4,2,34748,13 -975,FR,BH,201812,4,2,9417,3 -975,FR,BH,201812,4,2,8153,12 -976,FR,BH,201812,3,1,9307,17940 -976,FR,BH,201812,1,2,71,150 -976,FR,BH,201812,3,2,3,0 -976,FR,BH,201812,4,2,28,22 -979,FR,BH,201812,0,1,139,2 -979,FR,BH,201812,3,1,676,1 -979,FR,BH,201812,4,1,1141,3 -979,FR,BH,201812,4,1,219,1 -979,FR,BH,201812,4,1,553,10 -979,FR,BH,201812,4,1,106,2 -979,FR,BH,201812,4,1,3774,3 -979,FR,BH,201812,4,1,51,1 -979,FR,BH,201812,1,2,3945,450 -979,FR,BH,201812,1,2,874,6 -979,FR,BH,201812,1,2,8018,471 -979,FR,BH,201812,3,2,480,36 -979,FR,BH,201812,3,2,502,45 -979,FR,BH,201812,4,2,97662,460 -979,FR,BH,201812,4,2,1560,160 -979,FR,BH,201812,4,2,7417,161 -979,FR,BH,201812,4,2,1033,50 -979,FR,BH,201812,4,2,98257,1500 -979,FR,BH,201812,4,2,24922,2 -979,FR,BH,201812,4,2,5076,18 -979,FR,BH,201812,4,2,1280,0 -979,FR,BH,201812,4,2,1865,18 -979,FR,BH,201812,4,2,14690,297 -979,FR,BH,201812,4,2,5275,90 -979,FR,BH,201812,4,2,135123,430 -979,FR,BH,201812,4,2,14177,714 -979,FR,BH,201812,4,2,24305,440 -979,FR,BH,201812,4,2,6644,10 -979,FR,BH,201812,4,2,28266,64 -979,FR,BH,201812,5,2,1071,12 -999,FR,BH,201812,0,1,7035,0 -999,FR,BH,201812,3,1,2882,0 -999,FR,BH,201812,4,1,15175,0 -999,FR,BH,201812,4,1,750,0 -999,FR,BH,201812,1,2,60942,62000 -999,FR,BH,201812,3,2,13651,6290 -999,FR,BH,201812,4,2,128,1 -999,FR,BH,201812,4,2,895,20 -999,FR,BH,201812,4,2,5879,802 -999,FR,BH,201812,4,2,442,4 -999,FR,BH,201812,4,2,3743,20 -001,FR,QA,201812,4,1,27088,3000 -001,FR,QA,201812,4,1,1,7 -001,FR,QA,201812,4,2,252768,7000 -020,FR,QA,201812,1,2,12480,27000 -020,FR,QA,201812,1,2,23020,52000 -020,FR,QA,201812,1,2,38057,37880 -035,FR,QA,201812,1,2,727982,326443 -035,FR,QA,201812,1,2,56585,63504 -035,FR,QA,201812,1,2,115335,127783 -035,FR,QA,201812,1,2,39523,42336 -039,FR,QA,201812,1,2,116816,170000 -039,FR,QA,201812,1,2,68136,87187 -039,FR,QA,201812,4,2,35036,3843 -056,FR,QA,201812,3,2,10,4 -056,FR,QA,201812,4,2,5965,480 -057,FR,QA,201812,1,2,2278,7876 -099,FR,QA,201812,1,2,23,5 -099,FR,QA,201812,1,2,82136,17100 -099,FR,QA,201812,4,2,4635,34 -121,FR,QA,201812,1,2,13552,2398 -121,FR,QA,201812,1,2,109431,8863 -121,FR,QA,201812,1,2,117881,60777 -121,FR,QA,201812,1,2,3114,576 -121,FR,QA,201812,1,2,171318,8280 -121,FR,QA,201812,1,2,349700,9000 -121,FR,QA,201812,1,2,32656,8820 -121,FR,QA,201812,1,2,3310,801 -121,FR,QA,201812,3,2,82883,39096 -121,FR,QA,201812,4,2,129715,1839 -121,FR,QA,201812,4,2,32370,1630 -122,FR,QA,201812,4,2,1988,693 -125,FR,QA,201812,1,2,236264,7438 -125,FR,QA,201812,1,2,15851,796 -125,FR,QA,201812,1,2,3326,816 -125,FR,QA,201812,1,2,76700,5985 -125,FR,QA,201812,1,2,244025,108548 -125,FR,QA,201812,4,2,6315,381 -128,FR,QA,201812,1,2,16965,17826 -128,FR,QA,201812,1,2,175219,123932 -128,FR,QA,201812,1,2,277354,343693 -128,FR,QA,201812,1,2,122351,175209 -128,FR,QA,201812,3,2,120,30 -128,FR,QA,201812,4,2,12,9 -128,FR,QA,201812,4,2,4415,1680 -131,FR,QA,201812,1,2,3384,574 -132,FR,QA,201812,0,2,180,9 -132,FR,QA,201812,1,2,19452,4053 -132,FR,QA,201812,1,2,13849,2634 -132,FR,QA,201812,3,2,9219,288 -132,FR,QA,201812,3,2,71827,7663 -132,FR,QA,201812,4,2,17718,570 -133,FR,QA,201812,0,2,45,1 -133,FR,QA,201812,4,2,4946,480 -133,FR,QA,201812,4,2,1549,23 -136,FR,QA,201812,1,2,30287,6477 -136,FR,QA,201812,1,2,369,255 -136,FR,QA,201812,3,2,127,5 -136,FR,QA,201812,3,2,25390,2098 -136,FR,QA,201812,4,2,45145,8113 -139,FR,QA,201812,1,2,474686,6794 -139,FR,QA,201812,1,2,5029,466 -139,FR,QA,201812,1,2,38663,8942 -139,FR,QA,201812,1,2,209031,55368 -139,FR,QA,201812,1,2,22401,5251 -139,FR,QA,201812,1,2,12740,6491 -139,FR,QA,201812,1,2,33980,15683 -139,FR,QA,201812,3,2,1,10 -139,FR,QA,201812,4,2,69653,1248 -139,FR,QA,201812,4,2,123716,36638 -141,FR,QA,201812,1,2,150483,98913 -141,FR,QA,201812,4,2,67923,7025 -142,FR,QA,201812,4,2,29451,4036 -143,FR,QA,201812,1,2,129291,47145 -143,FR,QA,201812,1,2,101357,34399 -143,FR,QA,201812,1,2,87180,144967 -143,FR,QA,201812,4,2,743,255 -144,FR,QA,201812,1,2,39222,4456 -144,FR,QA,201812,1,2,807991,142969 -144,FR,QA,201812,1,2,2716,378 -144,FR,QA,201812,1,2,64268,19200 -144,FR,QA,201812,4,2,87944,10538 -146,FR,QA,201812,4,2,3134,1443 -147,FR,QA,201812,1,2,46409,27318 -147,FR,QA,201812,4,2,18377,2381 -148,FR,QA,201812,1,2,1733,187 -148,FR,QA,201812,4,2,33370,1780 -161,FR,QA,201812,1,2,20201,37750 -163,FR,QA,201812,1,2,26716,34750 -163,FR,QA,201812,1,2,1735,297 -163,FR,QA,201812,1,2,42566,14351 -163,FR,QA,201812,1,2,19495,2549 -163,FR,QA,201812,1,2,50750,41748 -163,FR,QA,201812,1,2,133320,43062 -163,FR,QA,201812,1,2,11998,5976 -163,FR,QA,201812,3,2,1076,84 -163,FR,QA,201812,4,2,95260,23849 -164,FR,QA,201812,1,2,31663,7044 -164,FR,QA,201812,1,2,39942,12409 -164,FR,QA,201812,1,2,31977,7535 -164,FR,QA,201812,3,2,5724,431 -164,FR,QA,201812,4,2,367,94 -164,FR,QA,201812,4,2,629,125 -166,FR,QA,201812,1,2,773,108 -166,FR,QA,201812,1,2,4007,1639 -179,FR,QA,201812,1,2,120474,140827 -179,FR,QA,201812,1,2,12320,6926 -179,FR,QA,201812,4,2,7258,1070 -310,FR,QA,201812,4,1,3852,1 -323,FR,QA,201812,1,1,29880230,57176733 -330,FR,QA,201812,1,2,7747,1900 -341,FR,QA,201812,4,1,85,6 -341,FR,QA,201812,1,2,4030,2952 -341,FR,QA,201812,1,2,166439,71359 -341,FR,QA,201812,1,2,55217,34152 -341,FR,QA,201812,4,2,30,0 -341,FR,QA,201812,4,2,2195,85 -343,FR,QA,201812,4,2,25,25 -542,FR,QA,201812,4,2,1100,51 -551,FR,QA,201812,1,2,1062936,211673 -551,FR,QA,201812,4,2,985,0 -552,FR,QA,201812,4,2,41387,11530 -564,FR,QA,201812,4,2,76,0 -568,FR,QA,201812,1,2,11862,669 -568,FR,QA,201812,1,2,87,4 -568,FR,QA,201812,3,2,165600,3000 -568,FR,QA,201812,4,2,989,40 -568,FR,QA,201812,4,2,7076,125 -568,FR,QA,201812,4,2,17268,749 -568,FR,QA,201812,4,2,9338,133 -621,FR,QA,201812,4,2,10,1 -632,FR,QA,201812,1,2,16688,192000 -639,FR,QA,201812,4,2,50,80 -641,FR,QA,201812,4,2,54,6 -642,FR,QA,201812,1,2,60326,7248 -650,FR,QA,201812,4,2,8717,4333 -691,FR,QA,201812,4,2,32755,150 -691,FR,QA,201812,4,2,80698,1960 -691,FR,QA,201812,4,2,1945,260 -692,FR,QA,201812,1,2,6000,5000 -692,FR,QA,201812,1,2,10878,31200 -724,FR,QA,201812,1,1,2310,5250 -819,FR,QA,201812,1,1,2333671,2035324 -819,FR,QA,201812,1,2,264517,48460 -819,FR,QA,201812,4,2,5250,124 -820,FR,QA,201812,1,2,140218,75600 -820,FR,QA,201812,4,2,1022,19 -891,FR,QA,201812,1,1,17510,17000 -891,FR,QA,201812,1,1,158610,153000 -891,FR,QA,201812,1,1,105570,101500 -891,FR,QA,201812,1,1,191653,197580 -891,FR,QA,201812,0,2,289,4 -891,FR,QA,201812,1,2,117514,42724 -891,FR,QA,201812,1,2,17295,5546 -891,FR,QA,201812,1,2,75802,93600 -891,FR,QA,201812,1,2,175357,80333 -891,FR,QA,201812,1,2,4563,129 -891,FR,QA,201812,3,2,1395,261 -891,FR,QA,201812,3,2,56650,17000 -891,FR,QA,201812,4,2,89940,2146 -891,FR,QA,201812,4,2,742,0 -891,FR,QA,201812,4,2,47772,559 -891,FR,QA,201812,4,2,54015,6222 -891,FR,QA,201812,4,2,17913,240 -892,FR,QA,201812,1,2,970,124 -892,FR,QA,201812,1,2,23773,13087 -892,FR,QA,201812,1,2,22765,9993 -892,FR,QA,201812,4,2,2154,46 -892,FR,QA,201812,4,2,10,1 -892,FR,QA,201812,4,2,257,12 -892,FR,QA,201812,4,2,1908,189 -893,FR,QA,201812,1,2,415503,4643 -893,FR,QA,201812,1,2,318581,28931 -893,FR,QA,201812,1,2,197301,9342 -893,FR,QA,201812,1,2,116171,8027 -893,FR,QA,201812,1,2,284,75 -893,FR,QA,201812,3,2,32,1 -893,FR,QA,201812,4,2,2378023,20884 -893,FR,QA,201812,4,2,12023,85 -893,FR,QA,201812,4,2,7949,225 -893,FR,QA,201812,4,2,19383,528 -893,FR,QA,201812,4,2,2078046,24996 -893,FR,QA,201812,4,2,24475,194 -893,FR,QA,201812,4,2,6869,808 -893,FR,QA,201812,4,2,261365,3000 -893,FR,QA,201812,4,2,3695,210 -893,FR,QA,201812,4,2,16051,10 -894,FR,QA,201812,4,2,589051,3313 -894,FR,QA,201812,4,2,30332,321 -896,FR,QA,201812,3,1,91,1 -896,FR,QA,201812,1,2,25216,5222 -896,FR,QA,201812,1,2,67630,18100 -896,FR,QA,201812,1,2,631004,219611 -896,FR,QA,201812,1,2,229419,99321 -896,FR,QA,201812,1,2,40585,9808 -896,FR,QA,201812,3,2,2307,37 -896,FR,QA,201812,4,2,21564,301 -896,FR,QA,201812,4,2,49109,656 -896,FR,QA,201812,4,2,5526,79 -896,FR,QA,201812,4,2,18,1 -896,FR,QA,201812,4,2,125125,4937 -896,FR,QA,201812,4,2,3711,340 -896,FR,QA,201812,4,2,32302,41 -910,FR,QA,201812,0,1,1239,1 -910,FR,QA,201812,1,1,138505,13000 -910,FR,QA,201812,3,1,5034,114 -910,FR,QA,201812,0,2,102,6 -910,FR,QA,201812,1,2,812,180 -910,FR,QA,201812,1,2,14082,530 -910,FR,QA,201812,1,2,384233,46956 -910,FR,QA,201812,1,2,29227,2194 -910,FR,QA,201812,1,2,44420,1932 -910,FR,QA,201812,1,2,35715,6290 -910,FR,QA,201812,1,2,1500,53292 -910,FR,QA,201812,4,2,3565071,13359 -910,FR,QA,201812,4,2,202347,263 -910,FR,QA,201812,4,2,291,4 -910,FR,QA,201812,4,2,69345,258 -910,FR,QA,201812,4,2,164322,5260 -910,FR,QA,201812,4,2,1788,18 -910,FR,QA,201812,9,2,154100294,223000 -920,FR,QA,201812,0,2,417,7 -920,FR,QA,201812,4,2,4031,410 -920,FR,QA,201812,4,2,9574,208 -920,FR,QA,201812,4,2,19584,920 -931,FR,QA,201812,1,1,2978,160 -931,FR,QA,201812,3,1,1855,66 -931,FR,QA,201812,4,1,2883,84 -931,FR,QA,201812,4,1,19919,45 -931,FR,QA,201812,4,1,27552,58 -931,FR,QA,201812,4,1,14763,32 -931,FR,QA,201812,0,2,1470,1 -931,FR,QA,201812,1,2,1030134,41340 -931,FR,QA,201812,1,2,347,3 -931,FR,QA,201812,1,2,2881,920 -931,FR,QA,201812,1,2,38283,80 -931,FR,QA,201812,1,2,1665550,210617 -931,FR,QA,201812,1,2,7668,70 -931,FR,QA,201812,1,2,80400,15793 -931,FR,QA,201812,1,2,48504,24522 -931,FR,QA,201812,1,2,208147,18908 -931,FR,QA,201812,1,2,244406,27759 -931,FR,QA,201812,1,2,581676,13907 -931,FR,QA,201812,1,2,130852,13099 -931,FR,QA,201812,1,2,78276,7411 -931,FR,QA,201812,3,2,861608,79783 -931,FR,QA,201812,4,2,1330257,11301 -931,FR,QA,201812,4,2,189098,1682 -931,FR,QA,201812,4,2,6555,110 -931,FR,QA,201812,4,2,51917,64 -931,FR,QA,201812,4,2,2557,50 -931,FR,QA,201812,4,2,3918,175 -931,FR,QA,201812,4,2,851927,4038 -931,FR,QA,201812,4,2,12659,160 -931,FR,QA,201812,4,2,4414,44 -931,FR,QA,201812,4,2,14870,700 -931,FR,QA,201812,4,2,19774,6 -931,FR,QA,201812,4,2,199130,4790 -931,FR,QA,201812,4,2,5837,19 -931,FR,QA,201812,4,2,83203,332 -931,FR,QA,201812,5,2,3472,28 -939,FR,QA,201812,1,1,147250,18508 -939,FR,QA,201812,3,1,1914,61 -939,FR,QA,201812,4,1,18231,146 -939,FR,QA,201812,4,1,3107,5 -939,FR,QA,201812,4,1,2356,6 -939,FR,QA,201812,0,2,200,12 -939,FR,QA,201812,1,2,901866,81602 -939,FR,QA,201812,1,2,156,1 -939,FR,QA,201812,1,2,2132780,361548 -939,FR,QA,201812,1,2,4947,1484 -939,FR,QA,201812,1,2,3023,105 -939,FR,QA,201812,1,2,2003846,57419 -939,FR,QA,201812,1,2,55090,1998 -939,FR,QA,201812,1,2,22313,5835 -939,FR,QA,201812,1,2,43404,2400 -939,FR,QA,201812,1,2,48121,7562 -939,FR,QA,201812,3,2,13564,200 -939,FR,QA,201812,3,2,21971,80 -939,FR,QA,201812,4,2,1235606,19802 -939,FR,QA,201812,4,2,401027,491 -939,FR,QA,201812,4,2,146561,1201 -939,FR,QA,201812,4,2,66540,493 -939,FR,QA,201812,4,2,2413,32 -939,FR,QA,201812,4,2,112272,362 -939,FR,QA,201812,4,2,148016,303 -939,FR,QA,201812,4,2,750,36 -939,FR,QA,201812,4,2,263200,1990 -939,FR,QA,201812,4,2,13773,315 -939,FR,QA,201812,4,2,8707,46 -939,FR,QA,201812,4,2,40362,210 -939,FR,QA,201812,4,2,6259,60 -939,FR,QA,201812,4,2,688436,26430 -939,FR,QA,201812,4,2,20600,53 -939,FR,QA,201812,4,2,83186,573 -941,FR,QA,201812,1,2,120188,13800 -941,FR,QA,201812,4,2,500,100 -941,FR,QA,201812,4,2,1068,100 -949,FR,QA,201812,3,1,110,0 -949,FR,QA,201812,4,1,15843,270 -949,FR,QA,201812,4,1,8486,266 -949,FR,QA,201812,1,2,81064,4823 -949,FR,QA,201812,1,2,10604,1741 -949,FR,QA,201812,1,2,5592,7170 -949,FR,QA,201812,1,2,10735,320 -949,FR,QA,201812,1,2,432792,27103 -949,FR,QA,201812,1,2,841,185 -949,FR,QA,201812,1,2,7270,3950 -949,FR,QA,201812,1,2,28342,5644 -949,FR,QA,201812,1,2,20155,1571 -949,FR,QA,201812,1,2,2,10 -949,FR,QA,201812,1,2,1559,45 -949,FR,QA,201812,1,2,222765,22885 -949,FR,QA,201812,3,2,35214,1505 -949,FR,QA,201812,3,2,92490,420 -949,FR,QA,201812,4,2,522523,5534 -949,FR,QA,201812,4,2,11607,12 -949,FR,QA,201812,4,2,4693,156 -949,FR,QA,201812,4,2,2024,51 -949,FR,QA,201812,4,2,5779,8 -949,FR,QA,201812,4,2,5875,964 -949,FR,QA,201812,4,2,50608,3339 -949,FR,QA,201812,4,2,86714,3630 -949,FR,QA,201812,4,2,3588,40 -949,FR,QA,201812,4,2,5624,77 -949,FR,QA,201812,5,2,1641,20 -951,FR,QA,201812,4,1,565,0 -951,FR,QA,201812,1,2,106,0 -951,FR,QA,201812,1,2,1129,126 -951,FR,QA,201812,1,2,430,95 -951,FR,QA,201812,1,2,104841,158479 -951,FR,QA,201812,1,2,223,38 -951,FR,QA,201812,1,2,76450,11485 -951,FR,QA,201812,3,2,838,8 -951,FR,QA,201812,4,2,164,22 -952,FR,QA,201812,4,1,437,5 -952,FR,QA,201812,4,1,1439,41 -952,FR,QA,201812,4,1,1855,232 -952,FR,QA,201812,0,2,2880,15 -952,FR,QA,201812,1,2,27557,2347 -952,FR,QA,201812,1,2,11266,1045 -952,FR,QA,201812,1,2,2379,526 -952,FR,QA,201812,1,2,18,3 -952,FR,QA,201812,4,2,178086,1498 -952,FR,QA,201812,4,2,2560,25 -952,FR,QA,201812,4,2,5000,150 -952,FR,QA,201812,4,2,430556,2141 -952,FR,QA,201812,4,2,6104,75 -952,FR,QA,201812,4,2,4259,940 -952,FR,QA,201812,4,2,11280,317 -961,FR,QA,201812,4,1,314,0 -961,FR,QA,201812,1,2,5575,655 -961,FR,QA,201812,1,2,135,30 -961,FR,QA,201812,4,2,1856,13 -962,FR,QA,201812,4,1,383,12 -962,FR,QA,201812,0,2,393,3 -962,FR,QA,201812,1,2,789,36 -962,FR,QA,201812,1,2,75423,2286 -962,FR,QA,201812,1,2,25421,2869 -962,FR,QA,201812,1,2,11450,979 -962,FR,QA,201812,3,2,2760,110 -962,FR,QA,201812,4,2,130822,2459 -962,FR,QA,201812,4,2,3236,360 -962,FR,QA,201812,4,2,380,6 -962,FR,QA,201812,4,2,98,158 -962,FR,QA,201812,4,2,104785,3669 -962,FR,QA,201812,4,2,17764,296 -962,FR,QA,201812,4,2,20377,1330 -962,FR,QA,201812,4,2,16638,148 -962,FR,QA,201812,4,2,84545,750 -963,FR,QA,201812,3,1,13001,162 -963,FR,QA,201812,4,1,7761,14 -963,FR,QA,201812,4,1,200,0 -963,FR,QA,201812,4,1,8993,115 -963,FR,QA,201812,4,1,390356,792 -963,FR,QA,201812,4,1,516,16 -963,FR,QA,201812,0,2,1800,11 -963,FR,QA,201812,1,2,20,0 -963,FR,QA,201812,1,2,191,22 -963,FR,QA,201812,1,2,95,21 -963,FR,QA,201812,1,2,85,51 -963,FR,QA,201812,1,2,905,953 -963,FR,QA,201812,1,2,25962,1184 -963,FR,QA,201812,3,2,30078,188 -963,FR,QA,201812,4,2,711994,3115 -963,FR,QA,201812,4,2,9600,31 -963,FR,QA,201812,4,2,20,0 -963,FR,QA,201812,4,2,911,1 -963,FR,QA,201812,4,2,124218,810 -963,FR,QA,201812,4,2,64165,102 -963,FR,QA,201812,4,2,34282,367 -963,FR,QA,201812,4,2,29315,240 -963,FR,QA,201812,4,2,1730403,3953 -963,FR,QA,201812,4,2,4032,780 -963,FR,QA,201812,4,2,374509,754 -963,FR,QA,201812,4,2,86271,3280 -963,FR,QA,201812,4,2,49014,355 -963,FR,QA,201812,4,2,84733,140 -971,FR,QA,201812,1,1,91784,20800 -971,FR,QA,201812,4,1,261,100 -971,FR,QA,201812,1,2,1590,351 -971,FR,QA,201812,1,2,288,2 -971,FR,QA,201812,1,2,4421,856 -971,FR,QA,201812,1,2,409662,37527 -971,FR,QA,201812,3,2,40674,3598 -971,FR,QA,201812,4,2,3318,82 -971,FR,QA,201812,4,2,2894,3 -971,FR,QA,201812,4,2,4394,100 -971,FR,QA,201812,4,2,131,2 -971,FR,QA,201812,4,2,754,0 -971,FR,QA,201812,4,2,19872,250 -972,FR,QA,201812,1,2,110330,55688 -972,FR,QA,201812,4,2,115669,6585 -972,FR,QA,201812,4,2,3510,681 -972,FR,QA,201812,4,2,1677,190 -973,FR,QA,201812,4,1,57,1 -973,FR,QA,201812,4,1,360,5 -973,FR,QA,201812,1,2,46992,17372 -973,FR,QA,201812,1,2,139,31 -973,FR,QA,201812,1,2,20687,6259 -973,FR,QA,201812,1,2,35,118 -973,FR,QA,201812,1,2,4888,756 -973,FR,QA,201812,3,2,1641,64 -973,FR,QA,201812,3,2,20,19 -973,FR,QA,201812,4,2,33254,4662 -973,FR,QA,201812,4,2,11241,799 -973,FR,QA,201812,4,2,3202,380 -973,FR,QA,201812,4,2,2690,3 -974,FR,QA,201812,3,1,347,10 -974,FR,QA,201812,4,1,1123,80 -974,FR,QA,201812,4,1,4775,543 -974,FR,QA,201812,0,2,5260,105 -974,FR,QA,201812,1,2,44,104 -974,FR,QA,201812,1,2,3190,3222 -974,FR,QA,201812,1,2,42,48 -974,FR,QA,201812,1,2,50,11 -974,FR,QA,201812,1,2,87,15 -974,FR,QA,201812,3,2,104,18 -974,FR,QA,201812,3,2,60,45 -974,FR,QA,201812,4,2,9385,232 -974,FR,QA,201812,4,2,234,0 -974,FR,QA,201812,4,2,3,2 -974,FR,QA,201812,4,2,310578,0 -975,FR,QA,201812,4,1,3086,40 -975,FR,QA,201812,4,1,1503,98 -975,FR,QA,201812,1,2,34840,595 -975,FR,QA,201812,1,2,73617,7914 -975,FR,QA,201812,1,2,19382,4278 -975,FR,QA,201812,1,2,7064,1210 -975,FR,QA,201812,3,2,31,5 -975,FR,QA,201812,3,2,39800,2752 -975,FR,QA,201812,4,2,8035,461 -975,FR,QA,201812,4,2,2298,304 -975,FR,QA,201812,4,2,39690,616 -975,FR,QA,201812,4,2,205,1 -976,FR,QA,201812,4,1,22276,450 -976,FR,QA,201812,1,2,296,34 -976,FR,QA,201812,1,2,629,139 -976,FR,QA,201812,1,2,18,3 -976,FR,QA,201812,3,2,825,5 -976,FR,QA,201812,4,2,309,85 -976,FR,QA,201812,4,2,4819,320 -976,FR,QA,201812,4,2,1152,27 -976,FR,QA,201812,4,2,2662,10 -979,FR,QA,201812,1,1,17819,12233 -979,FR,QA,201812,1,1,34134,23034 -979,FR,QA,201812,1,1,19218,12733 -979,FR,QA,201812,3,1,207879,56 -979,FR,QA,201812,4,1,18261,7 -979,FR,QA,201812,4,1,902,0 -979,FR,QA,201812,4,1,7969,42 -979,FR,QA,201812,4,1,54473,103 -979,FR,QA,201812,4,1,9084,35 -979,FR,QA,201812,0,2,1830,14 -979,FR,QA,201812,1,2,24047,4786 -979,FR,QA,201812,1,2,5666,1352 -979,FR,QA,201812,1,2,294,1 -979,FR,QA,201812,1,2,137194,30291 -979,FR,QA,201812,1,2,1029,227 -979,FR,QA,201812,1,2,19,1 -979,FR,QA,201812,1,2,315,53 -979,FR,QA,201812,1,2,1118342,33298 -979,FR,QA,201812,1,2,140420,3158 -979,FR,QA,201812,1,2,429,12 -979,FR,QA,201812,1,2,29108,3354 -979,FR,QA,201812,1,2,788000,2100 -979,FR,QA,201812,3,2,11360,647 -979,FR,QA,201812,3,2,59000,4 -979,FR,QA,201812,3,2,13,15 -979,FR,QA,201812,3,2,58414,4378 -979,FR,QA,201812,4,2,604232,4856 -979,FR,QA,201812,4,2,48002,28 -979,FR,QA,201812,4,2,2198831,11 -979,FR,QA,201812,4,2,150618,41 -979,FR,QA,201812,4,2,29940,153 -979,FR,QA,201812,4,2,2139,2 -979,FR,QA,201812,4,2,3232832,4060 -979,FR,QA,201812,4,2,41111,392 -979,FR,QA,201812,4,2,67968,1436 -979,FR,QA,201812,4,2,10868,40 -979,FR,QA,201812,4,2,7757,20 -979,FR,QA,201812,4,2,127891,6030 -979,FR,QA,201812,4,2,5930,48 -979,FR,QA,201812,4,2,57623,242 -999,FR,QA,201812,1,1,10935,0 -999,FR,QA,201812,3,1,516,0 -999,FR,QA,201812,4,1,877,0 -999,FR,QA,201812,4,1,7570,0 -999,FR,QA,201812,4,1,300,0 -999,FR,QA,201812,4,1,12762,0 -999,FR,QA,201812,0,2,10044,18 -999,FR,QA,201812,1,2,264746,67200 -999,FR,QA,201812,1,2,61774,34214 -999,FR,QA,201812,1,2,679688,136467 -999,FR,QA,201812,1,2,250546,126974 -999,FR,QA,201812,1,2,275,61 -999,FR,QA,201812,1,2,136617,65388 -999,FR,QA,201812,1,2,464209,117596 -999,FR,QA,201812,1,2,4699,12000 -999,FR,QA,201812,1,2,30000,0 -999,FR,QA,201812,4,2,75036,2324 -999,FR,QA,201812,4,2,7723,0 -999,FR,QA,201812,4,2,1432,4 -999,FR,QA,201812,4,2,1000,0 -999,FR,QA,201812,4,2,66738,899 -999,FR,QA,201812,4,2,18029,1440 -999,FR,QA,201812,4,2,7607,379 -001,FR,AE,201812,3,2,150,2 -001,FR,AE,201812,4,2,81460,5503 -014,FR,AE,201812,1,2,9082,22500 -014,FR,AE,201812,1,2,7763,22500 -016,FR,AE,201812,1,1,93,50 -016,FR,AE,201812,4,2,391,35 -020,FR,AE,201812,1,2,369002,683820 -020,FR,AE,201812,1,2,42921,79400 -020,FR,AE,201812,1,2,45026,98280 -020,FR,AE,201812,1,2,37337,79500 -020,FR,AE,201812,4,2,5100,1686 -020,FR,AE,201812,4,2,7635,3054 -035,FR,AE,201812,4,1,1736,44 -035,FR,AE,201812,1,2,1150854,976148 -035,FR,AE,201812,1,2,19331,21168 -035,FR,AE,201812,1,2,124425,126756 -035,FR,AE,201812,1,2,21646,21403 -035,FR,AE,201812,1,2,100000,105428 -035,FR,AE,201812,1,2,57609,65081 -035,FR,AE,201812,1,2,125574,103194 -035,FR,AE,201812,1,2,125246,142884 -035,FR,AE,201812,1,2,120185,130231 -035,FR,AE,201812,1,2,37889,42336 -035,FR,AE,201812,4,2,17664,3270 -039,FR,AE,201812,1,2,49132,82162 -039,FR,AE,201812,1,2,11763,14585 -039,FR,AE,201812,1,2,15293,2544 -039,FR,AE,201812,1,2,37300,25219 -039,FR,AE,201812,1,2,2505,1280 -039,FR,AE,201812,3,2,6360,2400 -039,FR,AE,201812,3,2,9393,2033 -039,FR,AE,201812,4,2,10299,1919 -039,FR,AE,201812,4,2,198641,22638 -039,FR,AE,201812,4,2,27270,600 -042,FR,AE,201812,1,2,12884,2095 -049,FR,AE,201812,4,1,175,24 -049,FR,AE,201812,1,2,206324,358784 -049,FR,AE,201812,1,2,22555,36322 -049,FR,AE,201812,1,2,38702,195826 -049,FR,AE,201812,1,2,111429,425430 -049,FR,AE,201812,1,2,57142,173130 -049,FR,AE,201812,1,2,14513,39651 -049,FR,AE,201812,1,2,165836,323666 -049,FR,AE,201812,1,2,33993,128378 -049,FR,AE,201812,4,2,1038,3 -056,FR,AE,201812,3,2,20,17 -056,FR,AE,201812,4,2,23900,90 -092,FR,AE,201812,1,2,20938,37922 -099,FR,AE,201812,1,2,7183,250 -099,FR,AE,201812,1,2,66878,20542 -099,FR,AE,201812,4,2,15971,503 -099,FR,AE,201812,4,2,25003,26 -111,FR,AE,201812,4,2,140,56 -112,FR,AE,201812,1,2,116939,408000 -112,FR,AE,201812,1,2,39890,14160 -112,FR,AE,201812,1,2,103181,360000 -112,FR,AE,201812,1,2,105807,360000 -112,FR,AE,201812,1,2,8424,16200 -112,FR,AE,201812,4,2,3088,5500 -121,FR,AE,201812,1,2,1108335,27672 -121,FR,AE,201812,1,2,3400,112 -121,FR,AE,201812,1,2,21468,1530 -121,FR,AE,201812,1,2,1135678,80951 -121,FR,AE,201812,1,2,944770,84213 -121,FR,AE,201812,1,2,102323,15822 -121,FR,AE,201812,1,2,3763815,139434 -121,FR,AE,201812,1,2,18856,7154 -121,FR,AE,201812,4,2,46908,1334 -121,FR,AE,201812,4,2,32230,5 -121,FR,AE,201812,4,2,1531,670 -122,FR,AE,201812,4,2,1142,713 -125,FR,AE,201812,1,2,160888,7956 -125,FR,AE,201812,1,2,963878,87909 -125,FR,AE,201812,1,2,32937,10781 -125,FR,AE,201812,1,2,451462,142331 -125,FR,AE,201812,1,2,36391,5278 -125,FR,AE,201812,1,2,287672,172285 -125,FR,AE,201812,1,2,351995,108874 -125,FR,AE,201812,3,2,52,39 -125,FR,AE,201812,4,2,1410,60 -128,FR,AE,201812,1,1,91367,266884 -128,FR,AE,201812,1,1,46343,34598 -128,FR,AE,201812,1,1,3749,11385 -128,FR,AE,201812,1,1,8528,23125 -128,FR,AE,201812,1,1,6621,2010 -128,FR,AE,201812,1,2,324,114 -128,FR,AE,201812,1,2,428246,333694 -128,FR,AE,201812,1,2,944764,1203788 -128,FR,AE,201812,1,2,315934,402442 -128,FR,AE,201812,3,2,9335,2580 -128,FR,AE,201812,4,2,129,69 -128,FR,AE,201812,4,2,4006,1733 -131,FR,AE,201812,1,1,109,35 -131,FR,AE,201812,1,2,12747,4663 -131,FR,AE,201812,4,2,13190,1059 -132,FR,AE,201812,0,1,12,0 -132,FR,AE,201812,1,1,790,650 -132,FR,AE,201812,1,1,3418,777 -132,FR,AE,201812,1,1,149,40 -132,FR,AE,201812,0,2,405,21 -132,FR,AE,201812,1,2,2454,244 -132,FR,AE,201812,1,2,8850,351 -132,FR,AE,201812,1,2,11013,2522 -132,FR,AE,201812,1,2,174684,38073 -132,FR,AE,201812,1,2,159570,47927 -132,FR,AE,201812,1,2,155605,23000 -132,FR,AE,201812,1,2,93508,19892 -132,FR,AE,201812,3,2,21959,751 -132,FR,AE,201812,3,2,145347,17897 -132,FR,AE,201812,4,2,30,1 -132,FR,AE,201812,4,2,618,413 -132,FR,AE,201812,4,2,49458,3913 -133,FR,AE,201812,1,1,32024,4538 -133,FR,AE,201812,4,1,277,1 -133,FR,AE,201812,1,2,238,26 -133,FR,AE,201812,1,2,21251,2150 -133,FR,AE,201812,1,2,13688,6000 -133,FR,AE,201812,4,2,70567,340 -133,FR,AE,201812,4,2,2501,176 -135,FR,AE,201812,4,1,636,42 -135,FR,AE,201812,1,2,52611,18810 -136,FR,AE,201812,1,1,11811,5952 -136,FR,AE,201812,1,1,5405,1500 -136,FR,AE,201812,1,1,2545,1045 -136,FR,AE,201812,1,1,1747,7900 -136,FR,AE,201812,1,2,41201,4175 -136,FR,AE,201812,1,2,93953,89790 -136,FR,AE,201812,3,2,2015,131 -136,FR,AE,201812,3,2,9950,694 -136,FR,AE,201812,3,2,60508,6272 -136,FR,AE,201812,4,2,12,1 -136,FR,AE,201812,4,2,30048,2869 -139,FR,AE,201812,1,1,4814,10895 -139,FR,AE,201812,1,1,4360,3018 -139,FR,AE,201812,1,1,156,472 -139,FR,AE,201812,1,1,577,330 -139,FR,AE,201812,3,1,578,7 -139,FR,AE,201812,4,1,221,4 -139,FR,AE,201812,1,2,929324,17536 -139,FR,AE,201812,1,2,2556,22 -139,FR,AE,201812,1,2,20053,4415 -139,FR,AE,201812,1,2,15389,5329 -139,FR,AE,201812,1,2,886214,406501 -139,FR,AE,201812,1,2,66879,14605 -139,FR,AE,201812,1,2,18926,9045 -139,FR,AE,201812,1,2,10300,2448 -139,FR,AE,201812,1,2,76250,50000 -139,FR,AE,201812,1,2,246183,104294 -139,FR,AE,201812,1,2,6180,5122 -139,FR,AE,201812,1,2,208542,115001 -139,FR,AE,201812,1,2,1689,300 -139,FR,AE,201812,3,2,35,9 -139,FR,AE,201812,3,2,82004,26265 -139,FR,AE,201812,4,2,42977,2405 -139,FR,AE,201812,4,2,161543,57619 -139,FR,AE,201812,4,2,24145,1000 -139,FR,AE,201812,4,2,156648,16291 -141,FR,AE,201812,1,2,46445,11292 -141,FR,AE,201812,1,2,12281,4901 -141,FR,AE,201812,1,2,6994,1083 -141,FR,AE,201812,1,2,113693,72980 -141,FR,AE,201812,1,2,129351,13875 -141,FR,AE,201812,1,2,46164,14820 -141,FR,AE,201812,1,2,164266,168785 -141,FR,AE,201812,4,2,246646,38729 -142,FR,AE,201812,1,2,8934,384 -142,FR,AE,201812,1,2,45130,4461 -142,FR,AE,201812,1,2,81873,2928 -142,FR,AE,201812,4,2,11579,636 -142,FR,AE,201812,4,2,5654,328 -142,FR,AE,201812,4,2,615909,58054 -142,FR,AE,201812,4,2,13824,1080 -143,FR,AE,201812,1,2,12700,4734 -143,FR,AE,201812,1,2,208089,98970 -143,FR,AE,201812,1,2,88191,85766 -143,FR,AE,201812,1,2,136120,48428 -143,FR,AE,201812,1,2,79292,48054 -143,FR,AE,201812,4,2,120,48 -143,FR,AE,201812,4,2,1308,473 -143,FR,AE,201812,4,2,3768,757 -144,FR,AE,201812,1,2,140573,24921 -144,FR,AE,201812,1,2,44480,6243 -144,FR,AE,201812,1,2,2056786,527239 -144,FR,AE,201812,1,2,2953,756 -144,FR,AE,201812,1,2,292442,87412 -144,FR,AE,201812,1,2,633580,201859 -144,FR,AE,201812,1,2,28200,24000 -144,FR,AE,201812,1,2,768,90 -144,FR,AE,201812,3,2,685,48 -144,FR,AE,201812,4,2,68103,6841 -144,FR,AE,201812,4,2,133156,25680 -144,FR,AE,201812,4,2,38898,3100 -144,FR,AE,201812,4,2,375198,34749 -145,FR,AE,201812,1,2,55152,32760 -146,FR,AE,201812,1,2,13230,5000 -146,FR,AE,201812,1,2,12884,5000 -146,FR,AE,201812,1,2,16386,4576 -146,FR,AE,201812,1,2,43122,24000 -146,FR,AE,201812,1,2,28605,7817 -146,FR,AE,201812,4,2,1722,680 -146,FR,AE,201812,4,2,12189,2117 -146,FR,AE,201812,4,2,33206,10332 -147,FR,AE,201812,1,2,6330,400 -147,FR,AE,201812,1,2,29618,5375 -147,FR,AE,201812,1,2,190307,21120 -147,FR,AE,201812,1,2,42740,27302 -147,FR,AE,201812,1,2,19543,1268 -147,FR,AE,201812,1,2,81497,54604 -147,FR,AE,201812,4,2,540,55 -147,FR,AE,201812,4,2,2570,305 -147,FR,AE,201812,4,2,117499,10661 -148,FR,AE,201812,4,2,11110,1273 -148,FR,AE,201812,4,2,6684,11 -148,FR,AE,201812,4,2,79574,3709 -161,FR,AE,201812,1,1,156,132 -161,FR,AE,201812,1,2,34139,66000 -161,FR,AE,201812,1,2,68653,166975 -161,FR,AE,201812,1,2,20234,49410 -161,FR,AE,201812,3,2,32026,45500 -163,FR,AE,201812,1,1,38662,25877 -163,FR,AE,201812,1,1,3557,1639 -163,FR,AE,201812,1,1,1517,4607 -163,FR,AE,201812,1,1,18414,14529 -163,FR,AE,201812,1,1,4252,8575 -163,FR,AE,201812,4,1,1211,64 -163,FR,AE,201812,1,2,5927,5500 -163,FR,AE,201812,1,2,37473,4051 -163,FR,AE,201812,1,2,2817,1200 -163,FR,AE,201812,1,2,232476,162285 -163,FR,AE,201812,1,2,8973,3007 -163,FR,AE,201812,1,2,19157,5086 -163,FR,AE,201812,1,2,91325,25051 -163,FR,AE,201812,1,2,42330,11375 -163,FR,AE,201812,1,2,184665,47733 -163,FR,AE,201812,1,2,525842,179370 -163,FR,AE,201812,1,2,35891,12828 -163,FR,AE,201812,1,2,101449,41264 -163,FR,AE,201812,1,2,21857,4581 -163,FR,AE,201812,1,2,73053,5664 -163,FR,AE,201812,3,2,41,12 -163,FR,AE,201812,3,2,106494,59841 -163,FR,AE,201812,3,2,85209,21765 -163,FR,AE,201812,4,2,13056,1685 -163,FR,AE,201812,4,2,98592,29241 -163,FR,AE,201812,4,2,57222,9805 -164,FR,AE,201812,1,1,8611,14783 -164,FR,AE,201812,1,1,419,120 -164,FR,AE,201812,1,1,435,80 -164,FR,AE,201812,4,1,458,25 -164,FR,AE,201812,1,2,10954,7939 -164,FR,AE,201812,1,2,1134,74 -164,FR,AE,201812,1,2,74296,16801 -164,FR,AE,201812,1,2,195214,60249 -164,FR,AE,201812,1,2,3143,1023 -164,FR,AE,201812,1,2,215546,59477 -164,FR,AE,201812,1,2,48565,10375 -164,FR,AE,201812,1,2,26595,6125 -164,FR,AE,201812,3,2,2465,215 -164,FR,AE,201812,3,2,161196,32728 -164,FR,AE,201812,3,2,3625,270 -164,FR,AE,201812,3,2,15614,2031 -164,FR,AE,201812,4,2,32224,1472 -164,FR,AE,201812,4,2,3523,1222 -164,FR,AE,201812,4,2,16038,1356 -165,FR,AE,201812,1,2,2070,500 -165,FR,AE,201812,4,2,273,50 -166,FR,AE,201812,1,1,8083,8256 -166,FR,AE,201812,1,1,35459,41933 -166,FR,AE,201812,1,1,6137,1937 -166,FR,AE,201812,1,1,273,364 -166,FR,AE,201812,1,1,589,1300 -166,FR,AE,201812,0,2,350,4 -166,FR,AE,201812,1,2,3573,1072 -166,FR,AE,201812,1,2,181594,571395 -166,FR,AE,201812,1,2,7433,9825 -166,FR,AE,201812,1,2,12242,7227 -166,FR,AE,201812,3,2,5007,124 -166,FR,AE,201812,3,2,310,260 -166,FR,AE,201812,4,2,6728,90 -166,FR,AE,201812,4,2,2240,14 -179,FR,AE,201812,1,2,38999,1689 -179,FR,AE,201812,1,2,129647,172106 -179,FR,AE,201812,1,2,618640,222972 -179,FR,AE,201812,1,2,38250,25000 -179,FR,AE,201812,1,2,48776,25000 -179,FR,AE,201812,4,2,1300,230 -181,FR,AE,201812,1,2,2644,1000 -181,FR,AE,201812,4,2,495182,467 -182,FR,AE,201812,1,1,7545,7720 -182,FR,AE,201812,1,1,2178,819 -182,FR,AE,201812,1,1,1834,830 -182,FR,AE,201812,1,2,166,18 -182,FR,AE,201812,1,2,1964,205 -182,FR,AE,201812,1,2,23783,10539 -182,FR,AE,201812,3,2,233727,114547 -182,FR,AE,201812,3,2,152188,72567 -182,FR,AE,201812,4,2,237,4 -182,FR,AE,201812,4,2,1156,136 -321,FR,AE,201812,1,1,673,300 -321,FR,AE,201812,1,2,61230,379920 -321,FR,AE,201812,3,2,22074,3106 -321,FR,AE,201812,4,2,3665,11 -323,FR,AE,201812,1,1,26808461,50235172 -323,FR,AE,201812,1,1,53052226,98539069 -323,FR,AE,201812,1,1,20255445,41014727 -323,FR,AE,201812,1,1,2160725,3442511 -323,FR,AE,201812,1,2,100,8 -323,FR,AE,201812,4,2,149,1 -325,FR,AE,201812,1,1,32636156,60491916 -325,FR,AE,201812,1,2,193260,294240 -327,FR,AE,201812,1,1,5560736,11434314 -330,FR,AE,201812,1,2,475,103 -341,FR,AE,201812,0,1,53802,75300 -341,FR,AE,201812,1,1,485,88 -341,FR,AE,201812,1,1,14214,10266 -341,FR,AE,201812,1,1,40370,24774 -341,FR,AE,201812,1,2,4087,2256 -341,FR,AE,201812,1,2,96241,25060 -341,FR,AE,201812,1,2,3016,800 -341,FR,AE,201812,1,2,704929,250786 -341,FR,AE,201812,1,2,76868,28800 -341,FR,AE,201812,1,2,65228,108227 -341,FR,AE,201812,3,2,1,3 -341,FR,AE,201812,4,2,907,204 -341,FR,AE,201812,4,2,3120,239 -341,FR,AE,201812,4,2,10410,411 -410,FR,AE,201812,1,2,6413,25000 -451,FR,AE,201812,1,2,98976,24560 -451,FR,AE,201812,1,2,11614,103660 -459,FR,AE,201812,1,2,18848,1425 -515,FR,AE,201812,1,1,240,249 -515,FR,AE,201812,1,1,1142,4000 -515,FR,AE,201812,1,1,2528,4000 -532,FR,AE,201812,1,1,5231,15500 -532,FR,AE,201812,1,1,635,1000 -532,FR,AE,201812,1,2,14462,3776 -533,FR,AE,201812,1,1,5124,8700 -533,FR,AE,201812,1,1,1392,2000 -533,FR,AE,201812,4,2,46080,433 -535,FR,AE,201812,4,2,7712,135 -536,FR,AE,201812,1,1,814,2040 -536,FR,AE,201812,1,2,16157,1588 -536,FR,AE,201812,1,2,29341,2768 -542,FR,AE,201812,1,2,1563088,1881320 -542,FR,AE,201812,4,2,3600,21 -551,FR,AE,201812,1,1,798,2000 -551,FR,AE,201812,1,1,456,203 -551,FR,AE,201812,4,1,1627,55 -551,FR,AE,201812,1,2,106388,12319 -551,FR,AE,201812,1,2,146482,15313 -551,FR,AE,201812,1,2,56699,8716 -551,FR,AE,201812,1,2,15954,694 -551,FR,AE,201812,1,2,38434,18327 -551,FR,AE,201812,1,2,14468,841 -551,FR,AE,201812,3,2,160638,51885 -551,FR,AE,201812,3,2,45400,46037 -551,FR,AE,201812,3,2,129780,159658 -551,FR,AE,201812,3,2,38402,11245 -551,FR,AE,201812,4,2,34967,343 -551,FR,AE,201812,4,2,592,0 -551,FR,AE,201812,4,2,257479,23171 -551,FR,AE,201812,4,2,1644,0 -551,FR,AE,201812,4,2,55871,3449 -551,FR,AE,201812,4,2,3983,173 -551,FR,AE,201812,4,2,30683,189 -551,FR,AE,201812,4,2,25649,921 -551,FR,AE,201812,4,2,32656,1750 -551,FR,AE,201812,4,2,13545,3860 -552,FR,AE,201812,1,2,234,38 -552,FR,AE,201812,1,2,257,0 -552,FR,AE,201812,1,2,45,1 -552,FR,AE,201812,1,2,1194,332 -552,FR,AE,201812,4,2,23974,75 -552,FR,AE,201812,4,2,9,2 -562,FR,AE,201812,0,1,5803155,2855301 -562,FR,AE,201812,1,1,80034,51546 -565,FR,AE,201812,4,2,863,6 -565,FR,AE,201812,4,2,3590,4 -565,FR,AE,201812,4,2,2410,100 -568,FR,AE,201812,1,1,156,100 -568,FR,AE,201812,1,1,44798,12444 -568,FR,AE,201812,3,1,500,39 -568,FR,AE,201812,4,1,4895,7 -568,FR,AE,201812,4,1,12982,14 -568,FR,AE,201812,1,2,4093,259 -568,FR,AE,201812,1,2,37048,2642 -568,FR,AE,201812,1,2,332,6 -568,FR,AE,201812,1,2,31115,4341 -568,FR,AE,201812,3,2,4507,270 -568,FR,AE,201812,4,2,43240,1124 -568,FR,AE,201812,4,2,147,20 -568,FR,AE,201812,4,2,17,1 -568,FR,AE,201812,4,2,229172,528 -568,FR,AE,201812,4,2,2613,30 -568,FR,AE,201812,4,2,2062,605 -611,FR,AE,201812,1,2,17761,102200 -614,FR,AE,201812,1,2,25250,116000 -614,FR,AE,201812,1,2,23969,144000 -621,FR,AE,201812,1,1,821,612 -621,FR,AE,201812,1,2,144,38 -621,FR,AE,201812,1,2,2812,174 -621,FR,AE,201812,1,2,15069,12394 -621,FR,AE,201812,1,2,11176,16445 -621,FR,AE,201812,4,2,1783,167 -621,FR,AE,201812,4,2,623,16 -632,FR,AE,201812,4,1,220,15 -632,FR,AE,201812,1,2,4105,42000 -641,FR,AE,201812,1,1,753,7000 -650,FR,AE,201812,1,1,1884,8715 -691,FR,AE,201812,1,1,11298,2945 -691,FR,AE,201812,1,1,2141,4728 -691,FR,AE,201812,1,1,2675,3500 -691,FR,AE,201812,4,1,385,83 -691,FR,AE,201812,1,2,1,0 -691,FR,AE,201812,1,2,854,356 -691,FR,AE,201812,1,2,44351,2240 -691,FR,AE,201812,1,2,17228,21709 -691,FR,AE,201812,3,2,1,27 -691,FR,AE,201812,4,2,27466,315 -691,FR,AE,201812,4,2,26536,300 -691,FR,AE,201812,4,2,1098,330 -692,FR,AE,201812,1,1,3308,6304 -692,FR,AE,201812,1,1,1771,7770 -692,FR,AE,201812,1,1,678,1200 -692,FR,AE,201812,1,1,62922,141925 -692,FR,AE,201812,1,1,51065,129600 -692,FR,AE,201812,1,2,25888,13500 -692,FR,AE,201812,1,2,498,408 -692,FR,AE,201812,1,2,16450,25000 -692,FR,AE,201812,1,2,161054,277900 -692,FR,AE,201812,1,2,4218,8000 -692,FR,AE,201812,4,2,1170,711 -819,FR,AE,201812,1,1,12990,950 -819,FR,AE,201812,1,2,314738,25620 -819,FR,AE,201812,1,2,1011205,611380 -819,FR,AE,201812,1,2,248110,286000 -819,FR,AE,201812,1,2,103584,98440 -819,FR,AE,201812,1,2,40,3 -819,FR,AE,201812,1,2,26085,15000 -819,FR,AE,201812,1,2,33307,5000 -819,FR,AE,201812,1,2,40,3 -819,FR,AE,201812,1,2,29697,49404 -819,FR,AE,201812,1,2,33307,5000 -819,FR,AE,201812,3,2,19317,935 -819,FR,AE,201812,4,2,61431,881 -819,FR,AE,201812,4,2,116,0 -819,FR,AE,201812,4,2,18669,615 -819,FR,AE,201812,4,2,21768,230 -819,FR,AE,201812,4,2,3029,28 -820,FR,AE,201812,1,2,25791,13500 -820,FR,AE,201812,1,2,11062,20000 -820,FR,AE,201812,1,2,19997,1600 -891,FR,AE,201812,1,1,12320,9104 -891,FR,AE,201812,1,1,4987,5162 -891,FR,AE,201812,1,1,732,1750 -891,FR,AE,201812,1,1,130980,123750 -891,FR,AE,201812,1,1,265487,241905 -891,FR,AE,201812,3,1,204,4 -891,FR,AE,201812,4,1,1025,246 -891,FR,AE,201812,0,2,523,7 -891,FR,AE,201812,1,2,52505,18239 -891,FR,AE,201812,1,2,38851,22395 -891,FR,AE,201812,1,2,4876,5200 -891,FR,AE,201812,1,2,9744,322 -891,FR,AE,201812,1,2,2150,1000 -891,FR,AE,201812,1,2,40024,7710 -891,FR,AE,201812,1,2,12312,2700 -891,FR,AE,201812,1,2,1160130,583577 -891,FR,AE,201812,1,2,566166,443070 -891,FR,AE,201812,1,2,22192,21716 -891,FR,AE,201812,1,2,34327,20057 -891,FR,AE,201812,1,2,22260,8800 -891,FR,AE,201812,1,2,166839,143500 -891,FR,AE,201812,1,2,33051,14609 -891,FR,AE,201812,1,2,503950,258174 -891,FR,AE,201812,1,2,110962,17325 -891,FR,AE,201812,1,2,22562,5000 -891,FR,AE,201812,1,2,41173,22758 -891,FR,AE,201812,3,2,61412,16039 -891,FR,AE,201812,3,2,57562,22880 -891,FR,AE,201812,4,2,202148,6536 -891,FR,AE,201812,4,2,48642,305 -891,FR,AE,201812,4,2,42495,1199 -891,FR,AE,201812,4,2,4872,421 -891,FR,AE,201812,4,2,45449,721 -891,FR,AE,201812,4,2,171362,7706 -891,FR,AE,201812,4,2,23021,391 -891,FR,AE,201812,4,2,5472,920 -891,FR,AE,201812,4,2,42293,766 -892,FR,AE,201812,1,1,11106,10147 -892,FR,AE,201812,1,1,2857,13620 -892,FR,AE,201812,1,1,212,500 -892,FR,AE,201812,1,1,176,500 -892,FR,AE,201812,3,1,71,0 -892,FR,AE,201812,1,2,113,9 -892,FR,AE,201812,1,2,21611,3920 -892,FR,AE,201812,1,2,17309,6301 -892,FR,AE,201812,1,2,19983,18000 -892,FR,AE,201812,1,2,133503,44247 -892,FR,AE,201812,1,2,130814,27601 -892,FR,AE,201812,4,2,57899,2140 -892,FR,AE,201812,4,2,6686,405 -892,FR,AE,201812,4,2,49,25 -892,FR,AE,201812,4,2,4800,147 -892,FR,AE,201812,4,2,11609,267 -892,FR,AE,201812,4,2,1423,80 -892,FR,AE,201812,4,2,10848,420 -893,FR,AE,201812,0,1,949,0 -893,FR,AE,201812,1,1,50968,26050 -893,FR,AE,201812,1,1,170726,1413 -893,FR,AE,201812,1,1,7659,1836 -893,FR,AE,201812,1,1,4055,781 -893,FR,AE,201812,1,1,529,1606 -893,FR,AE,201812,1,1,2607,990 -893,FR,AE,201812,1,1,455645,14429 -893,FR,AE,201812,1,1,2420,770 -893,FR,AE,201812,3,1,166038,1597 -893,FR,AE,201812,4,1,512325,7636 -893,FR,AE,201812,4,1,358,10 -893,FR,AE,201812,4,1,54,1 -893,FR,AE,201812,4,1,1302,208 -893,FR,AE,201812,4,1,3535,77 -893,FR,AE,201812,4,1,34379,678 -893,FR,AE,201812,4,1,5889,76 -893,FR,AE,201812,0,2,352,4 -893,FR,AE,201812,1,2,4118630,218746 -893,FR,AE,201812,1,2,37101,1318 -893,FR,AE,201812,1,2,48573,1214 -893,FR,AE,201812,1,2,217945,15516 -893,FR,AE,201812,1,2,15325,1626 -893,FR,AE,201812,1,2,6211039,435996 -893,FR,AE,201812,1,2,1071112,52521 -893,FR,AE,201812,1,2,1205705,60249 -893,FR,AE,201812,1,2,266990,22046 -893,FR,AE,201812,1,2,445814,37257 -893,FR,AE,201812,1,2,85263,5610 -893,FR,AE,201812,1,2,136647,3457 -893,FR,AE,201812,1,2,1322154,69362 -893,FR,AE,201812,1,2,236827,4528 -893,FR,AE,201812,1,2,295703,26677 -893,FR,AE,201812,1,2,72058,13974 -893,FR,AE,201812,1,2,5130199,256583 -893,FR,AE,201812,1,2,206207,9607 -893,FR,AE,201812,1,2,422641,14942 -893,FR,AE,201812,1,2,493300,14315 -893,FR,AE,201812,1,2,175008,19922 -893,FR,AE,201812,1,2,16899,16000 -893,FR,AE,201812,3,2,307251,12260 -893,FR,AE,201812,3,2,10276,1955 -893,FR,AE,201812,3,2,13000,1450 -893,FR,AE,201812,3,2,286714,7975 -893,FR,AE,201812,3,2,21255,4655 -893,FR,AE,201812,3,2,31435,628 -893,FR,AE,201812,3,2,44150,18251 -893,FR,AE,201812,3,2,7600,805 -893,FR,AE,201812,4,2,13822894,164020 -893,FR,AE,201812,4,2,3101,282 -893,FR,AE,201812,4,2,60615,1932 -893,FR,AE,201812,4,2,153,10 -893,FR,AE,201812,4,2,286158,1143 -893,FR,AE,201812,4,2,58804,1648 -893,FR,AE,201812,4,2,44658,229 -893,FR,AE,201812,4,2,13230,585 -893,FR,AE,201812,4,2,342995,4751 -893,FR,AE,201812,4,2,766031,4057 -893,FR,AE,201812,4,2,1209246,9689 -893,FR,AE,201812,4,2,3666,170 -893,FR,AE,201812,4,2,5504,143 -893,FR,AE,201812,4,2,6193224,121367 -893,FR,AE,201812,4,2,53807,400 -893,FR,AE,201812,4,2,827448,11295 -893,FR,AE,201812,4,2,78194,1246 -893,FR,AE,201812,4,2,2495,37 -893,FR,AE,201812,4,2,83057,6580 -893,FR,AE,201812,4,2,4990,23 -893,FR,AE,201812,4,2,327939,3213 -894,FR,AE,201812,1,2,18768,4 -894,FR,AE,201812,1,2,891000,3086 -894,FR,AE,201812,4,2,133887,4452 -894,FR,AE,201812,4,2,142576,145 -894,FR,AE,201812,4,2,1257,2 -896,FR,AE,201812,1,1,323,407 -896,FR,AE,201812,1,1,445,34 -896,FR,AE,201812,1,1,75,228 -896,FR,AE,201812,1,1,5642,4810 -896,FR,AE,201812,1,2,56012,11322 -896,FR,AE,201812,1,2,560,175 -896,FR,AE,201812,1,2,523179,176998 -896,FR,AE,201812,1,2,1187352,622355 -896,FR,AE,201812,1,2,3100588,815297 -896,FR,AE,201812,1,2,1140,2100 -896,FR,AE,201812,1,2,37804,7680 -896,FR,AE,201812,1,2,1588,190 -896,FR,AE,201812,1,2,4961,2395 -896,FR,AE,201812,1,2,189562,171668 -896,FR,AE,201812,1,2,2243142,865180 -896,FR,AE,201812,1,2,23019,2640 -896,FR,AE,201812,3,2,52468,4744 -896,FR,AE,201812,3,2,45800,21980 -896,FR,AE,201812,3,2,45046,15600 -896,FR,AE,201812,4,2,304420,4973 -896,FR,AE,201812,4,2,119000,1565 -896,FR,AE,201812,4,2,8910,45 -896,FR,AE,201812,4,2,10898,1166 -896,FR,AE,201812,4,2,564311,12742 -896,FR,AE,201812,4,2,1413897,12098 -896,FR,AE,201812,4,2,2084,28 -896,FR,AE,201812,4,2,26364,2310 -896,FR,AE,201812,4,2,61074,941 -910,FR,AE,201812,0,1,4248,68 -910,FR,AE,201812,1,1,10868,2029 -910,FR,AE,201812,1,1,85768,1745 -910,FR,AE,201812,1,1,12385,12000 -910,FR,AE,201812,1,1,16873,4780 -910,FR,AE,201812,1,1,63049,4835 -910,FR,AE,201812,1,1,315,24 -910,FR,AE,201812,1,1,124078,22695 -910,FR,AE,201812,1,1,1874778,10030 -910,FR,AE,201812,1,1,71908,3500 -910,FR,AE,201812,3,1,4868,136 -910,FR,AE,201812,3,1,77341,450 -910,FR,AE,201812,4,1,142922,4208 -910,FR,AE,201812,4,1,9023,164 -910,FR,AE,201812,4,1,916,11 -910,FR,AE,201812,4,1,34659,734 -910,FR,AE,201812,4,1,35812,174 -910,FR,AE,201812,4,1,2115,58 -910,FR,AE,201812,1,2,2211448,323827 -910,FR,AE,201812,1,2,125593,11200 -910,FR,AE,201812,1,2,11643,1570 -910,FR,AE,201812,1,2,8922,875 -910,FR,AE,201812,1,2,977976,47872 -910,FR,AE,201812,1,2,51340,5481 -910,FR,AE,201812,1,2,222284,29726 -910,FR,AE,201812,1,2,15570,15000 -910,FR,AE,201812,1,2,10950,520 -910,FR,AE,201812,1,2,196700,6012 -910,FR,AE,201812,1,2,1000,35394 -910,FR,AE,201812,3,2,9821,13876 -910,FR,AE,201812,3,2,37000,1500 -910,FR,AE,201812,3,2,11735,462 -910,FR,AE,201812,3,2,29114,1416 -910,FR,AE,201812,4,2,1673441,5027 -910,FR,AE,201812,4,2,177032,519 -910,FR,AE,201812,4,2,2975,7 -910,FR,AE,201812,4,2,2010,2 -910,FR,AE,201812,4,2,342939,367 -910,FR,AE,201812,4,2,10518,3050 -910,FR,AE,201812,4,2,337973,1835 -910,FR,AE,201812,4,2,903715,2627 -910,FR,AE,201812,4,2,540780,11150 -910,FR,AE,201812,4,2,18230,62 -910,FR,AE,201812,4,2,472714,1991 -920,FR,AE,201812,4,1,4327,96 -920,FR,AE,201812,1,2,44020,22946 -920,FR,AE,201812,1,2,128730,114176 -920,FR,AE,201812,1,2,95000,58971 -920,FR,AE,201812,1,2,8420,135 -920,FR,AE,201812,3,2,5103,136 -920,FR,AE,201812,4,2,49382,560 -920,FR,AE,201812,4,2,13224,1780 -920,FR,AE,201812,4,2,3536,145 -931,FR,AE,201812,0,1,964,4 -931,FR,AE,201812,1,1,12711,2815 -931,FR,AE,201812,1,1,1848,542 -931,FR,AE,201812,1,1,12645,830 -931,FR,AE,201812,1,1,20388,1000 -931,FR,AE,201812,1,1,77041,19192 -931,FR,AE,201812,1,1,78336,27777 -931,FR,AE,201812,1,1,309,85 -931,FR,AE,201812,3,1,34255,149 -931,FR,AE,201812,4,1,429776,1809 -931,FR,AE,201812,4,1,17485,263 -931,FR,AE,201812,4,1,10136,190 -931,FR,AE,201812,4,1,2893,49 -931,FR,AE,201812,4,1,899214,301 -931,FR,AE,201812,4,1,3032787,2068 -931,FR,AE,201812,4,1,1291,0 -931,FR,AE,201812,4,1,3972,37 -931,FR,AE,201812,0,2,3701,23 -931,FR,AE,201812,1,2,2593626,167884 -931,FR,AE,201812,1,2,1172,1 -931,FR,AE,201812,1,2,35892,810 -931,FR,AE,201812,1,2,5211,317 -931,FR,AE,201812,1,2,161795,24665 -931,FR,AE,201812,1,2,41861,5650 -931,FR,AE,201812,1,2,17323,5661 -931,FR,AE,201812,1,2,27814,451 -931,FR,AE,201812,1,2,16675,250 -931,FR,AE,201812,1,2,1835,154 -931,FR,AE,201812,1,2,5854,181 -931,FR,AE,201812,1,2,108534,2510 -931,FR,AE,201812,1,2,64861,600 -931,FR,AE,201812,1,2,232829,95569 -931,FR,AE,201812,1,2,3984708,589739 -931,FR,AE,201812,1,2,612762,28486 -931,FR,AE,201812,1,2,957,14 -931,FR,AE,201812,1,2,542809,170841 -931,FR,AE,201812,1,2,63578,25910 -931,FR,AE,201812,1,2,30954,1107 -931,FR,AE,201812,1,2,414695,41604 -931,FR,AE,201812,1,2,437410,48646 -931,FR,AE,201812,1,2,56050,4968 -931,FR,AE,201812,1,2,8750,635 -931,FR,AE,201812,1,2,7510,268 -931,FR,AE,201812,1,2,120200,5650 -931,FR,AE,201812,1,2,166845,14952 -931,FR,AE,201812,3,2,340103,31057 -931,FR,AE,201812,3,2,27530,855 -931,FR,AE,201812,3,2,38000,642 -931,FR,AE,201812,3,2,58913,13050 -931,FR,AE,201812,4,2,9411155,89755 -931,FR,AE,201812,4,2,470269,2638 -931,FR,AE,201812,4,2,223899,1319 -931,FR,AE,201812,4,2,1059,9 -931,FR,AE,201812,4,2,14873,138 -931,FR,AE,201812,4,2,18334,41 -931,FR,AE,201812,4,2,2560,96 -931,FR,AE,201812,4,2,16356,236 -931,FR,AE,201812,4,2,228763,241 -931,FR,AE,201812,4,2,12680,22 -931,FR,AE,201812,4,2,1213,67 -931,FR,AE,201812,4,2,20025,150 -931,FR,AE,201812,4,2,10888,88 -931,FR,AE,201812,4,2,2236327,13704 -931,FR,AE,201812,4,2,19791,30 -931,FR,AE,201812,4,2,3102,140 -931,FR,AE,201812,4,2,181970,990 -931,FR,AE,201812,4,2,78170,3172 -931,FR,AE,201812,4,2,133240,14288 -931,FR,AE,201812,4,2,42373,33 -931,FR,AE,201812,4,2,982351,48550 -931,FR,AE,201812,4,2,94637,268 -931,FR,AE,201812,4,2,984527,5680 -931,FR,AE,201812,5,2,14751,127 -939,FR,AE,201812,0,1,22384,649 -939,FR,AE,201812,1,1,18806,2129 -939,FR,AE,201812,1,1,611,140 -939,FR,AE,201812,1,1,1713,367 -939,FR,AE,201812,1,1,5475,1508 -939,FR,AE,201812,1,1,42224,4536 -939,FR,AE,201812,1,1,162794,33055 -939,FR,AE,201812,1,1,355212,144886 -939,FR,AE,201812,1,1,411,400 -939,FR,AE,201812,3,1,51799,665 -939,FR,AE,201812,4,1,38993,1230 -939,FR,AE,201812,4,1,7568,72 -939,FR,AE,201812,4,1,19303,36 -939,FR,AE,201812,4,1,202564,2009 -939,FR,AE,201812,4,1,10559,138 -939,FR,AE,201812,4,1,11192,192 -939,FR,AE,201812,0,2,1662,2 -939,FR,AE,201812,1,2,1552035,93364 -939,FR,AE,201812,1,2,44002,3914 -939,FR,AE,201812,1,2,697321,332653 -939,FR,AE,201812,1,2,6963,69 -939,FR,AE,201812,1,2,158,10 -939,FR,AE,201812,1,2,764781,45266 -939,FR,AE,201812,1,2,372468,14742 -939,FR,AE,201812,1,2,10207,623 -939,FR,AE,201812,1,2,70718,7063 -939,FR,AE,201812,1,2,909704,185880 -939,FR,AE,201812,1,2,4054307,398628 -939,FR,AE,201812,1,2,133650,9400 -939,FR,AE,201812,1,2,107535,6341 -939,FR,AE,201812,1,2,3484,283 -939,FR,AE,201812,1,2,1345079,138384 -939,FR,AE,201812,1,2,208,92 -939,FR,AE,201812,1,2,1962806,118908 -939,FR,AE,201812,1,2,53950,3520 -939,FR,AE,201812,1,2,92147,10572 -939,FR,AE,201812,1,2,27400,1300 -939,FR,AE,201812,1,2,87592,3147 -939,FR,AE,201812,3,2,733228,21235 -939,FR,AE,201812,3,2,2696,90 -939,FR,AE,201812,3,2,29358,185 -939,FR,AE,201812,3,2,482387,76375 -939,FR,AE,201812,3,2,68995,7726 -939,FR,AE,201812,4,2,17679506,58356 -939,FR,AE,201812,4,2,77844,1734 -939,FR,AE,201812,4,2,2214385,4803 -939,FR,AE,201812,4,2,433396,8 -939,FR,AE,201812,4,2,12939,728 -939,FR,AE,201812,4,2,19618,399 -939,FR,AE,201812,4,2,56035,2218 -939,FR,AE,201812,4,2,467087,1346 -939,FR,AE,201812,4,2,11200,100 -939,FR,AE,201812,4,2,453632,974 -939,FR,AE,201812,4,2,104858,10910 -939,FR,AE,201812,4,2,21237,44 -939,FR,AE,201812,4,2,139296,1367 -939,FR,AE,201812,4,2,66055,2840 -939,FR,AE,201812,4,2,14694,301 -939,FR,AE,201812,4,2,2242548,13983 -939,FR,AE,201812,4,2,105221,2165 -939,FR,AE,201812,4,2,2549,146 -939,FR,AE,201812,4,2,99515,75 -939,FR,AE,201812,4,2,20200,1010 -939,FR,AE,201812,4,2,1568,58 -939,FR,AE,201812,4,2,39833,150 -939,FR,AE,201812,4,2,796594,48090 -939,FR,AE,201812,4,2,2332,161 -939,FR,AE,201812,4,2,33640,125 -939,FR,AE,201812,4,2,588039,5766 -941,FR,AE,201812,1,1,7536,5966 -941,FR,AE,201812,1,1,540,117 -941,FR,AE,201812,1,1,4150,5424 -941,FR,AE,201812,1,1,153171,79555 -941,FR,AE,201812,1,1,2719,1140 -941,FR,AE,201812,3,1,502,33 -941,FR,AE,201812,1,2,14541,1254 -941,FR,AE,201812,1,2,2960,2490 -941,FR,AE,201812,1,2,10343,303 -941,FR,AE,201812,1,2,23625,2125 -941,FR,AE,201812,1,2,83325,8274 -941,FR,AE,201812,1,2,122333,64026 -941,FR,AE,201812,3,2,310,15 -941,FR,AE,201812,4,2,1260,12 -941,FR,AE,201812,4,2,8632,903 -941,FR,AE,201812,4,2,1125,40 -949,FR,AE,201812,0,1,151,6 -949,FR,AE,201812,1,1,14867,7214 -949,FR,AE,201812,1,1,11648,13615 -949,FR,AE,201812,1,1,4477,3120 -949,FR,AE,201812,1,1,201,180 -949,FR,AE,201812,1,1,1357,986 -949,FR,AE,201812,3,1,1417,47 -949,FR,AE,201812,3,1,961,1 -949,FR,AE,201812,4,1,54141,729 -949,FR,AE,201812,4,1,499,10 -949,FR,AE,201812,4,1,1270,39 -949,FR,AE,201812,4,1,24503,35 -949,FR,AE,201812,4,1,109125,1553 -949,FR,AE,201812,4,1,747,24 -949,FR,AE,201812,0,2,94,0 -949,FR,AE,201812,1,2,228121,15248 -949,FR,AE,201812,1,2,88199,8000 -949,FR,AE,201812,1,2,2311,23 -949,FR,AE,201812,1,2,14322,450 -949,FR,AE,201812,1,2,292,10 -949,FR,AE,201812,1,2,62725,4662 -949,FR,AE,201812,1,2,9853,475 -949,FR,AE,201812,1,2,22279,1561 -949,FR,AE,201812,1,2,346,30 -949,FR,AE,201812,1,2,471522,27771 -949,FR,AE,201812,1,2,75968,5143 -949,FR,AE,201812,1,2,247,6 -949,FR,AE,201812,1,2,81454,3820 -949,FR,AE,201812,1,2,47940,3009 -949,FR,AE,201812,1,2,2541,1123 -949,FR,AE,201812,1,2,323904,80812 -949,FR,AE,201812,1,2,93566,7703 -949,FR,AE,201812,1,2,56200,3833 -949,FR,AE,201812,1,2,5744,122 -949,FR,AE,201812,1,2,22190,1290 -949,FR,AE,201812,3,2,73817,2102 -949,FR,AE,201812,3,2,45913,225 -949,FR,AE,201812,3,2,20,6 -949,FR,AE,201812,3,2,258,7 -949,FR,AE,201812,4,2,672172,8035 -949,FR,AE,201812,4,2,7514,176 -949,FR,AE,201812,4,2,170586,1920 -949,FR,AE,201812,4,2,2,0 -949,FR,AE,201812,4,2,2113,79 -949,FR,AE,201812,4,2,16,1 -949,FR,AE,201812,4,2,402,8 -949,FR,AE,201812,4,2,10789,180 -949,FR,AE,201812,4,2,7719,325 -949,FR,AE,201812,4,2,35189,549 -949,FR,AE,201812,4,2,156,0 -949,FR,AE,201812,4,2,1700,480 -949,FR,AE,201812,4,2,70959,2854 -949,FR,AE,201812,4,2,4813,50 -949,FR,AE,201812,4,2,512861,6070 -949,FR,AE,201812,4,2,334,14 -949,FR,AE,201812,4,2,4961,26 -949,FR,AE,201812,4,2,209293,18510 -949,FR,AE,201812,4,2,1749,70 -949,FR,AE,201812,4,2,162274,1575 -951,FR,AE,201812,1,1,1019,855 -951,FR,AE,201812,1,1,3972,130 -951,FR,AE,201812,1,1,3348,6408 -951,FR,AE,201812,1,1,880,113 -951,FR,AE,201812,4,1,4177,30 -951,FR,AE,201812,4,1,103,5 -951,FR,AE,201812,1,2,62,4 -951,FR,AE,201812,1,2,405,1 -951,FR,AE,201812,1,2,2647,714 -951,FR,AE,201812,1,2,83759,165050 -951,FR,AE,201812,1,2,5027,844 -951,FR,AE,201812,1,2,13449,677 -951,FR,AE,201812,3,2,962,54 -951,FR,AE,201812,4,2,7451,59 -951,FR,AE,201812,4,2,3538,321 -951,FR,AE,201812,4,2,2665,45 -951,FR,AE,201812,4,2,2593,199 -951,FR,AE,201812,4,2,2916,39 -952,FR,AE,201812,1,1,14220,14885 -952,FR,AE,201812,1,1,546,228 -952,FR,AE,201812,1,1,292,30 -952,FR,AE,201812,1,1,58220,22000 -952,FR,AE,201812,1,1,187723,228025 -952,FR,AE,201812,1,1,225491,514431 -952,FR,AE,201812,1,1,188176,445885 -952,FR,AE,201812,1,1,21991,37316 -952,FR,AE,201812,3,1,380,30 -952,FR,AE,201812,4,1,2390,151 -952,FR,AE,201812,4,1,258,1 -952,FR,AE,201812,4,1,175,6 -952,FR,AE,201812,4,1,3411,432 -952,FR,AE,201812,1,2,52636,18155 -952,FR,AE,201812,1,2,14350,299 -952,FR,AE,201812,1,2,2510,2510 -952,FR,AE,201812,1,2,86081,38300 -952,FR,AE,201812,1,2,29181,4259 -952,FR,AE,201812,1,2,420708,164727 -952,FR,AE,201812,1,2,4000,78 -952,FR,AE,201812,1,2,23580,7658 -952,FR,AE,201812,1,2,111256,30818 -952,FR,AE,201812,1,2,50243,20900 -952,FR,AE,201812,3,2,16391,977 -952,FR,AE,201812,3,2,216794,139869 -952,FR,AE,201812,4,2,186191,1732 -952,FR,AE,201812,4,2,2108,13 -952,FR,AE,201812,4,2,167025,0 -952,FR,AE,201812,4,2,8866,1028 -952,FR,AE,201812,4,2,600,28 -952,FR,AE,201812,4,2,4108,25 -952,FR,AE,201812,4,2,1063,6 -952,FR,AE,201812,4,2,72767,1179 -952,FR,AE,201812,4,2,396,245 -952,FR,AE,201812,4,2,125164,1699 -952,FR,AE,201812,4,2,11166,480 -952,FR,AE,201812,4,2,30415,8350 -952,FR,AE,201812,4,2,23292,891 -961,FR,AE,201812,1,2,8737,160 -961,FR,AE,201812,1,2,102,0 -961,FR,AE,201812,1,2,111,2 -961,FR,AE,201812,3,2,22871,43 -961,FR,AE,201812,4,2,82533,345 -961,FR,AE,201812,4,2,14025,52 -961,FR,AE,201812,4,2,2886,6 -961,FR,AE,201812,4,2,7735,200 -961,FR,AE,201812,4,2,7960,75 -962,FR,AE,201812,0,1,438,20 -962,FR,AE,201812,1,1,17779,4126 -962,FR,AE,201812,1,1,329,18 -962,FR,AE,201812,1,1,3477,204 -962,FR,AE,201812,1,1,2027,244 -962,FR,AE,201812,1,1,13764,3500 -962,FR,AE,201812,3,1,1265,43 -962,FR,AE,201812,4,1,422,1 -962,FR,AE,201812,4,1,1586,12 -962,FR,AE,201812,4,1,261,0 -962,FR,AE,201812,4,1,13599,46 -962,FR,AE,201812,4,1,23836,310 -962,FR,AE,201812,5,1,295,28 -962,FR,AE,201812,8,1,236,20 -962,FR,AE,201812,0,2,1338,48 -962,FR,AE,201812,1,2,79788,3383 -962,FR,AE,201812,1,2,2591,84 -962,FR,AE,201812,1,2,16554,612 -962,FR,AE,201812,1,2,83,2 -962,FR,AE,201812,1,2,6800,560 -962,FR,AE,201812,1,2,123501,8827 -962,FR,AE,201812,1,2,19046,1295 -962,FR,AE,201812,1,2,118112,28005 -962,FR,AE,201812,1,2,12778,1602 -962,FR,AE,201812,1,2,6108,2146 -962,FR,AE,201812,1,2,142901,32231 -962,FR,AE,201812,1,2,14120,3721 -962,FR,AE,201812,1,2,14175,713 -962,FR,AE,201812,1,2,7451,9160 -962,FR,AE,201812,1,2,200,10 -962,FR,AE,201812,3,2,5471,120 -962,FR,AE,201812,3,2,39404,16853 -962,FR,AE,201812,4,2,1476060,5431 -962,FR,AE,201812,4,2,136790,2260 -962,FR,AE,201812,4,2,4861,112 -962,FR,AE,201812,4,2,5380,85 -962,FR,AE,201812,4,2,22209,310 -962,FR,AE,201812,4,2,35864,1328 -962,FR,AE,201812,4,2,258069,3396 -962,FR,AE,201812,4,2,24269,97 -962,FR,AE,201812,4,2,131125,32650 -962,FR,AE,201812,4,2,66466,389 -962,FR,AE,201812,4,2,174897,2500 -963,FR,AE,201812,0,1,3991,86 -963,FR,AE,201812,1,1,28462,10861 -963,FR,AE,201812,1,1,4759,1687 -963,FR,AE,201812,1,1,2288,430 -963,FR,AE,201812,1,1,578,2500 -963,FR,AE,201812,1,1,435,20 -963,FR,AE,201812,1,1,11368,5312 -963,FR,AE,201812,1,1,2340,147 -963,FR,AE,201812,3,1,38217,314 -963,FR,AE,201812,3,1,41,0 -963,FR,AE,201812,4,1,575821,4075 -963,FR,AE,201812,4,1,3486,34 -963,FR,AE,201812,4,1,59566,76 -963,FR,AE,201812,4,1,3122,41 -963,FR,AE,201812,4,1,809,271 -963,FR,AE,201812,4,1,177205,1914 -963,FR,AE,201812,4,1,44066,33 -963,FR,AE,201812,4,1,6018,79 -963,FR,AE,201812,0,2,4842,38 -963,FR,AE,201812,1,2,142606,2281 -963,FR,AE,201812,1,2,4376,40 -963,FR,AE,201812,1,2,42588,240 -963,FR,AE,201812,1,2,1618,35 -963,FR,AE,201812,1,2,782929,1219 -963,FR,AE,201812,1,2,176297,23300 -963,FR,AE,201812,1,2,92943,3785 -963,FR,AE,201812,1,2,318172,11526 -963,FR,AE,201812,1,2,10155,511 -963,FR,AE,201812,1,2,10100,490 -963,FR,AE,201812,3,2,230064,2383 -963,FR,AE,201812,3,2,1711,20 -963,FR,AE,201812,4,2,20945645,45760 -963,FR,AE,201812,4,2,465,42 -963,FR,AE,201812,4,2,64766,90 -963,FR,AE,201812,4,2,18319,9 -963,FR,AE,201812,4,2,5,0 -963,FR,AE,201812,4,2,27668,1397 -963,FR,AE,201812,4,2,304,15 -963,FR,AE,201812,4,2,54427,1646 -963,FR,AE,201812,4,2,129603,138 -963,FR,AE,201812,4,2,1170338,1677 -963,FR,AE,201812,4,2,671944,7145 -963,FR,AE,201812,4,2,7159,16 -963,FR,AE,201812,4,2,23534,17 -963,FR,AE,201812,4,2,4155425,18504 -963,FR,AE,201812,4,2,7189,115 -963,FR,AE,201812,4,2,2034748,3877 -963,FR,AE,201812,4,2,450884,11920 -963,FR,AE,201812,4,2,86809,553 -963,FR,AE,201812,4,2,382431,1373 -971,FR,AE,201812,0,1,169,1 -971,FR,AE,201812,1,1,12000,7370 -971,FR,AE,201812,1,1,3725,8140 -971,FR,AE,201812,1,1,1281,188 -971,FR,AE,201812,1,1,29300,23000 -971,FR,AE,201812,1,1,145096,35147 -971,FR,AE,201812,1,1,24684,6730 -971,FR,AE,201812,1,1,293,150 -971,FR,AE,201812,3,1,1027,46 -971,FR,AE,201812,4,1,24455,2549 -971,FR,AE,201812,4,1,1024,3 -971,FR,AE,201812,4,1,1701,110 -971,FR,AE,201812,1,2,11843,204 -971,FR,AE,201812,1,2,2511,102 -971,FR,AE,201812,1,2,635494,20688 -971,FR,AE,201812,1,2,36200,3463 -971,FR,AE,201812,1,2,1297996,204869 -971,FR,AE,201812,1,2,29321,5929 -971,FR,AE,201812,1,2,2636,224 -971,FR,AE,201812,1,2,205,91 -971,FR,AE,201812,1,2,131147,7987 -971,FR,AE,201812,1,2,36112,2800 -971,FR,AE,201812,3,2,131712,877 -971,FR,AE,201812,4,2,190142,1590 -971,FR,AE,201812,4,2,88604,702 -971,FR,AE,201812,4,2,4273,6 -971,FR,AE,201812,4,2,778,30 -971,FR,AE,201812,4,2,7345,59 -971,FR,AE,201812,4,2,11022,141 -971,FR,AE,201812,4,2,12663,430 -971,FR,AE,201812,4,2,79869,574 -972,FR,AE,201812,1,1,16,8 -972,FR,AE,201812,1,1,571,52 -972,FR,AE,201812,1,2,314379,551207 -972,FR,AE,201812,1,2,13706,24040 -972,FR,AE,201812,1,2,1757,500 -972,FR,AE,201812,1,2,484859,282298 -972,FR,AE,201812,1,2,65819,31405 -972,FR,AE,201812,3,2,14272,750 -972,FR,AE,201812,3,2,22964,74291 -972,FR,AE,201812,4,2,46957,342 -972,FR,AE,201812,4,2,74354,170675 -972,FR,AE,201812,4,2,20122,301 -972,FR,AE,201812,4,2,11436,970 -972,FR,AE,201812,4,2,1769,24 -972,FR,AE,201812,4,2,3118,118 -973,FR,AE,201812,1,1,4251,4663 -973,FR,AE,201812,1,1,576,259 -973,FR,AE,201812,1,1,12320,8710 -973,FR,AE,201812,1,1,209,80 -973,FR,AE,201812,1,1,1739,3450 -973,FR,AE,201812,3,1,1622,271 -973,FR,AE,201812,4,1,849,3 -973,FR,AE,201812,4,1,926,106 -973,FR,AE,201812,4,1,3991,306 -973,FR,AE,201812,4,1,86,2 -973,FR,AE,201812,1,2,13660,1641 -973,FR,AE,201812,1,2,1231,362 -973,FR,AE,201812,1,2,1145,46 -973,FR,AE,201812,1,2,35,56 -973,FR,AE,201812,1,2,695001,260343 -973,FR,AE,201812,1,2,1709,581 -973,FR,AE,201812,1,2,307623,382089 -973,FR,AE,201812,1,2,42047,1560 -973,FR,AE,201812,3,2,550,0 -973,FR,AE,201812,3,2,40,41 -973,FR,AE,201812,4,2,61839,6008 -973,FR,AE,201812,4,2,3454,237 -973,FR,AE,201812,4,2,153,21 -973,FR,AE,201812,4,2,3388,150 -973,FR,AE,201812,4,2,3115,20 -973,FR,AE,201812,4,2,2061,183 -974,FR,AE,201812,0,1,225,6 -974,FR,AE,201812,1,1,705,90 -974,FR,AE,201812,1,1,1309,76 -974,FR,AE,201812,3,1,4590,282 -974,FR,AE,201812,4,1,3923,90 -974,FR,AE,201812,4,1,849,32 -974,FR,AE,201812,4,1,787,20 -974,FR,AE,201812,4,1,3758,187 -974,FR,AE,201812,5,1,18803,42 -974,FR,AE,201812,0,2,1892,31 -974,FR,AE,201812,1,2,3822,813 -974,FR,AE,201812,1,2,8410,8497 -974,FR,AE,201812,1,2,22963,1369 -974,FR,AE,201812,1,2,2015,53 -974,FR,AE,201812,1,2,27499,2893 -974,FR,AE,201812,1,2,10864,2173 -974,FR,AE,201812,3,2,944,909 -974,FR,AE,201812,3,2,20,24 -974,FR,AE,201812,4,2,109428,6112 -974,FR,AE,201812,4,2,1355,137 -974,FR,AE,201812,4,2,25,0 -974,FR,AE,201812,4,2,3214,261 -974,FR,AE,201812,4,2,21951,2770 -974,FR,AE,201812,4,2,4388,87 -974,FR,AE,201812,4,2,16513,113 -975,FR,AE,201812,1,1,26694,18145 -975,FR,AE,201812,1,1,46868,1180 -975,FR,AE,201812,1,1,6566,6426 -975,FR,AE,201812,1,1,11451,834 -975,FR,AE,201812,1,1,1805,1620 -975,FR,AE,201812,1,1,4383,2580 -975,FR,AE,201812,1,1,1120,190 -975,FR,AE,201812,3,1,1367,13 -975,FR,AE,201812,4,1,89477,609 -975,FR,AE,201812,4,1,852,5 -975,FR,AE,201812,4,1,102223,5351 -975,FR,AE,201812,4,1,518,40 -975,FR,AE,201812,0,2,233,11 -975,FR,AE,201812,1,2,49804,4298 -975,FR,AE,201812,1,2,15128,246 -975,FR,AE,201812,1,2,3357,152 -975,FR,AE,201812,1,2,214892,13064 -975,FR,AE,201812,1,2,27644,3690 -975,FR,AE,201812,1,2,11546,1302 -975,FR,AE,201812,1,2,67010,21454 -975,FR,AE,201812,1,2,19929,399 -975,FR,AE,201812,1,2,128317,20439 -975,FR,AE,201812,3,2,30149,1626 -975,FR,AE,201812,3,2,800,109 -975,FR,AE,201812,3,2,21200,1114 -975,FR,AE,201812,4,2,94484,1950 -975,FR,AE,201812,4,2,29981,35 -975,FR,AE,201812,4,2,1378,95 -975,FR,AE,201812,4,2,2507,100 -975,FR,AE,201812,4,2,3392,202 -975,FR,AE,201812,4,2,26478,1335 -975,FR,AE,201812,4,2,570525,4448 -975,FR,AE,201812,4,2,612,60 -975,FR,AE,201812,4,2,455844,12830 -975,FR,AE,201812,4,2,1888,24 -975,FR,AE,201812,4,2,20363,56 -976,FR,AE,201812,1,1,1509,2022 -976,FR,AE,201812,1,1,16507,990 -976,FR,AE,201812,1,1,309,120 -976,FR,AE,201812,1,1,2367,429 -976,FR,AE,201812,4,1,8434,600 -976,FR,AE,201812,4,1,82,1 -976,FR,AE,201812,4,1,1133,7 -976,FR,AE,201812,4,1,263,47 -976,FR,AE,201812,1,2,8745,249 -976,FR,AE,201812,1,2,322445,13803 -976,FR,AE,201812,1,2,51741,161013 -976,FR,AE,201812,1,2,2029,632 -976,FR,AE,201812,1,2,163945,8165 -976,FR,AE,201812,1,2,97548,209107 -976,FR,AE,201812,3,2,1224,73 -976,FR,AE,201812,4,2,33049,603 -976,FR,AE,201812,4,2,26481,1865 -976,FR,AE,201812,4,2,901,13 -976,FR,AE,201812,4,2,91360,5438 -976,FR,AE,201812,4,2,5095,85 -979,FR,AE,201812,0,1,109502,1990 -979,FR,AE,201812,1,1,29702,16596 -979,FR,AE,201812,1,1,25597,14788 -979,FR,AE,201812,1,1,3054,80 -979,FR,AE,201812,1,1,20669,11120 -979,FR,AE,201812,1,1,2288,2579 -979,FR,AE,201812,1,1,1384,4202 -979,FR,AE,201812,1,1,99224,8961 -979,FR,AE,201812,1,1,14153,6324 -979,FR,AE,201812,1,1,200598,42845 -979,FR,AE,201812,1,1,301,270 -979,FR,AE,201812,1,1,23917,7400 -979,FR,AE,201812,1,1,2435,4750 -979,FR,AE,201812,3,1,84872,1165 -979,FR,AE,201812,3,1,55569,2 -979,FR,AE,201812,4,1,743568,335 -979,FR,AE,201812,4,1,3182,389 -979,FR,AE,201812,4,1,58681,149 -979,FR,AE,201812,4,1,2595,52 -979,FR,AE,201812,4,1,18759472,42 -979,FR,AE,201812,4,1,8668,180 -979,FR,AE,201812,4,1,19595,335 -979,FR,AE,201812,4,1,531735,112 -979,FR,AE,201812,4,1,29625,0 -979,FR,AE,201812,4,1,985688,567 -979,FR,AE,201812,4,1,5299,2 -979,FR,AE,201812,4,1,36065,0 -979,FR,AE,201812,4,1,551,5 -979,FR,AE,201812,4,1,1128,61 -979,FR,AE,201812,0,2,8595,52 -979,FR,AE,201812,1,2,7968139,134079 -979,FR,AE,201812,1,2,26345,1753 -979,FR,AE,201812,1,2,36078,62 -979,FR,AE,201812,1,2,45720,300 -979,FR,AE,201812,1,2,13727,356 -979,FR,AE,201812,1,2,108351,4000 -979,FR,AE,201812,1,2,1500,574 -979,FR,AE,201812,1,2,6014,692 -979,FR,AE,201812,1,2,7444,216 -979,FR,AE,201812,1,2,6583,79 -979,FR,AE,201812,1,2,384040,53729 -979,FR,AE,201812,1,2,20000,376 -979,FR,AE,201812,1,2,90263,10893 -979,FR,AE,201812,1,2,1986,52 -979,FR,AE,201812,1,2,6116,1100 -979,FR,AE,201812,1,2,135573,6890 -979,FR,AE,201812,1,2,46165,16717 -979,FR,AE,201812,1,2,768483,97503 -979,FR,AE,201812,1,2,538146,19102 -979,FR,AE,201812,1,2,849,43 -979,FR,AE,201812,1,2,31711,1134 -979,FR,AE,201812,1,2,1250,65 -979,FR,AE,201812,3,2,758949,4754 -979,FR,AE,201812,3,2,230645,4 -979,FR,AE,201812,3,2,1100,93 -979,FR,AE,201812,3,2,3842,48 -979,FR,AE,201812,3,2,54,11 -979,FR,AE,201812,3,2,10033,1965 -979,FR,AE,201812,4,2,5855050,35551 -979,FR,AE,201812,4,2,11941,355 -979,FR,AE,201812,4,2,213052,2099 -979,FR,AE,201812,4,2,1548812,302 -979,FR,AE,201812,4,2,580,40 -979,FR,AE,201812,4,2,2462570,564 -979,FR,AE,201812,4,2,94317,946 -979,FR,AE,201812,4,2,13507,31 -979,FR,AE,201812,4,2,3321,48 -979,FR,AE,201812,4,2,662525,361 -979,FR,AE,201812,4,2,6862,150 -979,FR,AE,201812,4,2,44283,125 -979,FR,AE,201812,4,2,110312,4851 -979,FR,AE,201812,4,2,7038254,22209 -979,FR,AE,201812,4,2,37501,1765 -979,FR,AE,201812,4,2,21696,124 -979,FR,AE,201812,4,2,6259,110 -979,FR,AE,201812,4,2,24590,500 -979,FR,AE,201812,4,2,38044,87 -979,FR,AE,201812,4,2,1376,1 -979,FR,AE,201812,4,2,10609,157 -979,FR,AE,201812,4,2,10049,27 -979,FR,AE,201812,4,2,515357,23990 -979,FR,AE,201812,4,2,135709,768 -979,FR,AE,201812,4,2,552988,3819 -979,FR,AE,201812,5,2,4062,14 -994,FR,AE,201812,3,2,1902,0 -994,FR,AE,201812,4,2,10490,8 -999,FR,AE,201812,1,1,21512,0 -999,FR,AE,201812,1,1,43450,0 -999,FR,AE,201812,1,1,5130,0 -999,FR,AE,201812,1,1,143338,0 -999,FR,AE,201812,1,1,87064,0 -999,FR,AE,201812,3,1,17040,0 -999,FR,AE,201812,3,1,8000,0 -999,FR,AE,201812,4,1,33312,0 -999,FR,AE,201812,4,1,34015,0 -999,FR,AE,201812,4,1,1860,0 -999,FR,AE,201812,4,1,1660,0 -999,FR,AE,201812,4,1,3391,0 -999,FR,AE,201812,0,2,1500,15 -999,FR,AE,201812,1,2,152034,16039 -999,FR,AE,201812,1,2,960,0 -999,FR,AE,201812,1,2,88,0 -999,FR,AE,201812,1,2,53021,9027 -999,FR,AE,201812,1,2,5435,42 -999,FR,AE,201812,1,2,62205,20287 -999,FR,AE,201812,1,2,52882,7200 -999,FR,AE,201812,1,2,874871,362285 -999,FR,AE,201812,1,2,11005,18000 -999,FR,AE,201812,1,2,58815,62000 -999,FR,AE,201812,1,2,24323,250000 -999,FR,AE,201812,1,2,42080,23119 -999,FR,AE,201812,1,2,88022,16750 -999,FR,AE,201812,1,2,72969,62817 -999,FR,AE,201812,1,2,470017,31451 -999,FR,AE,201812,1,2,1444,73 -999,FR,AE,201812,1,2,19035,1800 -999,FR,AE,201812,3,2,752798,48725 -999,FR,AE,201812,3,2,27589,20000 -999,FR,AE,201812,4,2,87054,3521 -999,FR,AE,201812,4,2,8592,100 -999,FR,AE,201812,4,2,29641,55 -999,FR,AE,201812,4,2,738,117 -999,FR,AE,201812,4,2,12510,0 -999,FR,AE,201812,4,2,100,0 -999,FR,AE,201812,4,2,15700,350 -999,FR,AE,201812,4,2,123970,756 -999,FR,AE,201812,4,2,400,0 -999,FR,AE,201812,4,2,139084,16790 -999,FR,AE,201812,4,2,23004,447 -015,FR,OM,201812,4,2,7819,50 -020,FR,OM,201812,1,2,61982,108800 -031,FR,OM,201812,4,2,6686,90 -035,FR,OM,201812,1,2,194555,211680 -035,FR,OM,201812,1,2,55301,63504 -035,FR,OM,201812,1,2,36650,42336 -035,FR,OM,201812,1,2,37852,42336 -035,FR,OM,201812,4,2,205279,1877 -039,FR,OM,201812,1,2,24129,34347 -039,FR,OM,201812,4,2,115282,812 -060,FR,OM,201812,4,2,5192,367 -099,FR,OM,201812,1,2,17829,10589 -099,FR,OM,201812,4,2,79202,243 -121,FR,OM,201812,1,2,10560,2247 -121,FR,OM,201812,1,2,12754,6296 -121,FR,OM,201812,1,2,19294,8977 -121,FR,OM,201812,1,2,27087,3259 -121,FR,OM,201812,4,2,105848,7905 -122,FR,OM,201812,1,2,75705,95040 -125,FR,OM,201812,1,2,3270,432 -125,FR,OM,201812,1,2,40514,38229 -125,FR,OM,201812,1,2,5733,3844 -125,FR,OM,201812,1,2,33673,11009 -125,FR,OM,201812,1,2,69146,55200 -125,FR,OM,201812,1,2,34606,27600 -125,FR,OM,201812,1,2,26769,17720 -128,FR,OM,201812,1,2,12209,13738 -128,FR,OM,201812,1,2,18568,21316 -128,FR,OM,201812,1,2,1532,3017 -128,FR,OM,201812,1,2,810,1412 -131,FR,OM,201812,1,2,3132,498 -131,FR,OM,201812,4,2,7200,807 -132,FR,OM,201812,1,2,41088,11707 -132,FR,OM,201812,1,2,4389,822 -132,FR,OM,201812,4,2,37589,238 -132,FR,OM,201812,4,2,4601,283 -132,FR,OM,201812,4,2,342888,820 -133,FR,OM,201812,1,2,666,51 -136,FR,OM,201812,1,2,2803,257 -136,FR,OM,201812,1,2,720,293 -136,FR,OM,201812,3,2,1,5 -136,FR,OM,201812,4,2,104684,325 -139,FR,OM,201812,1,2,317168,6322 -139,FR,OM,201812,1,2,51652,13329 -139,FR,OM,201812,1,2,5413,2070 -139,FR,OM,201812,1,2,12840,3850 -139,FR,OM,201812,1,2,9714,3036 -139,FR,OM,201812,4,2,4240,32 -139,FR,OM,201812,4,2,44511,9116 -141,FR,OM,201812,1,2,47761,46302 -141,FR,OM,201812,4,2,36978,962 -142,FR,OM,201812,1,1,26939,9000 -142,FR,OM,201812,4,2,363651,1184 -142,FR,OM,201812,4,2,556596,4036 -143,FR,OM,201812,1,2,18629,5485 -143,FR,OM,201812,1,2,30573,9698 -143,FR,OM,201812,4,2,680,146 -144,FR,OM,201812,1,2,80814,11690 -144,FR,OM,201812,1,2,57600,17280 -144,FR,OM,201812,1,2,7665,1019 -144,FR,OM,201812,4,2,2358,125 -144,FR,OM,201812,4,2,103795,5812 -146,FR,OM,201812,1,2,52754,24000 -146,FR,OM,201812,1,2,52773,24000 -147,FR,OM,201812,4,2,241,23 -148,FR,OM,201812,1,2,604,50 -148,FR,OM,201812,4,2,49194,42 -163,FR,OM,201812,1,2,12180,11014 -163,FR,OM,201812,1,2,5952,1337 -163,FR,OM,201812,1,2,65397,23123 -163,FR,OM,201812,3,2,37205,23222 -163,FR,OM,201812,4,2,9121,1356 -163,FR,OM,201812,4,2,5562,275 -164,FR,OM,201812,1,2,33139,8291 -164,FR,OM,201812,1,2,4411,2078 -164,FR,OM,201812,4,2,16915,358 -166,FR,OM,201812,1,2,8848,8761 -166,FR,OM,201812,1,2,1798,873 -179,FR,OM,201812,1,2,24576,47175 -182,FR,OM,201812,1,2,1918,418 -182,FR,OM,201812,4,2,21900,1000 -341,FR,OM,201812,1,2,126,25 -341,FR,OM,201812,1,2,33134,16894 -341,FR,OM,201812,4,2,6,0 -533,FR,OM,201812,4,2,343,102 -551,FR,OM,201812,1,2,6486,588 -551,FR,OM,201812,1,2,39,2 -551,FR,OM,201812,1,2,12170,953 -551,FR,OM,201812,4,2,4682,100 -562,FR,OM,201812,0,1,880354,568250 -568,FR,OM,201812,1,2,13110,817 -568,FR,OM,201812,1,2,38,10 -568,FR,OM,201812,4,2,754,247 -621,FR,OM,201812,4,2,145,20 -639,FR,OM,201812,4,1,816,4 -691,FR,OM,201812,4,2,9,0 -692,FR,OM,201812,1,1,1339,5615 -692,FR,OM,201812,1,1,1240,6657 -692,FR,OM,201812,1,2,52446,95850 -692,FR,OM,201812,4,2,1280,500 -724,FR,OM,201812,1,2,58200,192000 -819,FR,OM,201812,1,2,40850,35200 -891,FR,OM,201812,1,2,54728,24028 -891,FR,OM,201812,1,2,266,43 -891,FR,OM,201812,1,2,1982,400 -891,FR,OM,201812,1,2,39889,24000 -891,FR,OM,201812,1,2,71222,16096 -891,FR,OM,201812,1,2,35310,19586 -891,FR,OM,201812,4,2,60804,342 -891,FR,OM,201812,4,2,1888,310 -891,FR,OM,201812,4,2,11562,424 -892,FR,OM,201812,1,1,222,500 -892,FR,OM,201812,4,2,528,4 -892,FR,OM,201812,4,2,580,1 -893,FR,OM,201812,4,1,704,3 -893,FR,OM,201812,4,1,99,89 -893,FR,OM,201812,0,2,50,0 -893,FR,OM,201812,1,2,56733,852 -893,FR,OM,201812,1,2,8697,700 -893,FR,OM,201812,1,2,843,200 -893,FR,OM,201812,1,2,863,50 -893,FR,OM,201812,1,2,93316,9000 -893,FR,OM,201812,1,2,34699,679 -893,FR,OM,201812,1,2,263241,12964 -893,FR,OM,201812,4,2,2495394,11071 -893,FR,OM,201812,4,2,20353,800 -893,FR,OM,201812,4,2,246,4 -893,FR,OM,201812,4,2,407374,2015 -893,FR,OM,201812,4,2,21654,291 -893,FR,OM,201812,4,2,71797,1115 -893,FR,OM,201812,4,2,90863,1640 -893,FR,OM,201812,4,2,4918,18 -893,FR,OM,201812,4,2,8581,1550 -896,FR,OM,201812,1,2,83394,26290 -896,FR,OM,201812,1,2,495,100 -896,FR,OM,201812,1,2,237701,87360 -896,FR,OM,201812,4,2,133197,1750 -896,FR,OM,201812,4,2,10713,158 -896,FR,OM,201812,4,2,108845,1008 -896,FR,OM,201812,4,2,110774,637 -896,FR,OM,201812,4,2,1583,30 -910,FR,OM,201812,3,1,336617,241696 -910,FR,OM,201812,4,1,22985,149 -910,FR,OM,201812,1,2,210789,14076 -910,FR,OM,201812,4,2,130531,192 -910,FR,OM,201812,4,2,118309,948 -910,FR,OM,201812,4,2,12135,182 -910,FR,OM,201812,4,2,1619,324 -920,FR,OM,201812,3,2,385,4 -931,FR,OM,201812,3,1,321,16 -931,FR,OM,201812,4,1,44173,1680 -931,FR,OM,201812,4,1,379,4 -931,FR,OM,201812,4,1,14772,18 -931,FR,OM,201812,1,2,210273,27610 -931,FR,OM,201812,1,2,22266,464 -931,FR,OM,201812,1,2,143829,14037 -931,FR,OM,201812,1,2,248777,1622 -931,FR,OM,201812,1,2,647318,34636 -931,FR,OM,201812,1,2,36212,4800 -931,FR,OM,201812,1,2,1265,38 -931,FR,OM,201812,3,2,320,32 -931,FR,OM,201812,3,2,35967,1110 -931,FR,OM,201812,4,2,1089066,5882 -931,FR,OM,201812,4,2,24983,90 -931,FR,OM,201812,4,2,1431,15 -931,FR,OM,201812,4,2,16845,35 -931,FR,OM,201812,4,2,6196,43 -931,FR,OM,201812,4,2,27675,980 -931,FR,OM,201812,4,2,131495,3811 -931,FR,OM,201812,4,2,6200,9 -931,FR,OM,201812,4,2,150274,4170 -931,FR,OM,201812,4,2,11489,34 -939,FR,OM,201812,1,1,75024,7300 -939,FR,OM,201812,1,1,75008,7300 -939,FR,OM,201812,1,1,149835,14600 -939,FR,OM,201812,3,1,2719,17 -939,FR,OM,201812,3,1,67,1 -939,FR,OM,201812,4,1,117,1 -939,FR,OM,201812,4,1,39,0 -939,FR,OM,201812,4,1,2016,2 -939,FR,OM,201812,0,2,698,13 -939,FR,OM,201812,1,2,299900,5377 -939,FR,OM,201812,1,2,1233,29 -939,FR,OM,201812,1,2,8538,178 -939,FR,OM,201812,1,2,62434,729 -939,FR,OM,201812,1,2,350543,24272 -939,FR,OM,201812,1,2,23290,850 -939,FR,OM,201812,1,2,508285,51444 -939,FR,OM,201812,1,2,204190,11030 -939,FR,OM,201812,1,2,16480,3310 -939,FR,OM,201812,1,2,68951,3362 -939,FR,OM,201812,1,2,1018000,77240 -939,FR,OM,201812,1,2,178883,2950 -939,FR,OM,201812,3,2,114909,1255 -939,FR,OM,201812,3,2,74623,7988 -939,FR,OM,201812,4,2,13600526,17221 -939,FR,OM,201812,4,2,9644,1 -939,FR,OM,201812,4,2,1607,427 -939,FR,OM,201812,4,2,98730,4870 -939,FR,OM,201812,4,2,10976,221 -939,FR,OM,201812,4,2,157349,1200 -939,FR,OM,201812,4,2,55624,1120 -939,FR,OM,201812,4,2,184171,12310 -939,FR,OM,201812,4,2,3842,34 -941,FR,OM,201812,1,1,282,300 -941,FR,OM,201812,3,2,5054,47 -941,FR,OM,201812,4,2,6909,400 -949,FR,OM,201812,3,1,245,1 -949,FR,OM,201812,4,1,2193,61 -949,FR,OM,201812,4,1,11909,18 -949,FR,OM,201812,0,2,360,2 -949,FR,OM,201812,1,2,26461,816 -949,FR,OM,201812,1,2,1430,40 -949,FR,OM,201812,1,2,127837,9980 -949,FR,OM,201812,1,2,285739,5633 -949,FR,OM,201812,3,2,3419,78 -949,FR,OM,201812,4,2,94474,1997 -949,FR,OM,201812,4,2,8480,140 -949,FR,OM,201812,4,2,30,140 -949,FR,OM,201812,4,2,4322,148 -949,FR,OM,201812,4,2,4525,213 -949,FR,OM,201812,4,2,1412,20 -949,FR,OM,201812,4,2,2400,150 -951,FR,OM,201812,1,2,727,19 -951,FR,OM,201812,4,2,36974,403 -952,FR,OM,201812,1,2,19569,9792 -952,FR,OM,201812,1,2,102,50 -952,FR,OM,201812,4,2,6517,1 -952,FR,OM,201812,4,2,5130,100 -952,FR,OM,201812,4,2,13500,275 -952,FR,OM,201812,4,2,7710,640 -962,FR,OM,201812,4,1,452,20 -962,FR,OM,201812,1,2,55076,302 -962,FR,OM,201812,1,2,21619,4930 -962,FR,OM,201812,1,2,16725,2789 -962,FR,OM,201812,1,2,19913,865 -962,FR,OM,201812,3,2,4136,64 -962,FR,OM,201812,4,2,25221,400 -962,FR,OM,201812,4,2,2721,165 -962,FR,OM,201812,4,2,22033,1790 -962,FR,OM,201812,4,2,8546,12 -963,FR,OM,201812,3,1,424,7 -963,FR,OM,201812,0,2,163,0 -963,FR,OM,201812,1,2,90,60 -963,FR,OM,201812,3,2,372,6 -963,FR,OM,201812,4,2,40247,303 -963,FR,OM,201812,4,2,6432,150 -963,FR,OM,201812,4,2,5130,220 -963,FR,OM,201812,4,2,2651,30 -971,FR,OM,201812,1,1,198,320 -971,FR,OM,201812,4,1,16945,3276 -971,FR,OM,201812,1,2,92279,20633 -971,FR,OM,201812,4,2,168032,17834 -972,FR,OM,201812,1,2,1367,169 -972,FR,OM,201812,1,2,20719,14378 -972,FR,OM,201812,4,2,18178,1651 -972,FR,OM,201812,4,2,1932,12 -973,FR,OM,201812,1,2,14739,1825 -973,FR,OM,201812,4,2,77,4 -974,FR,OM,201812,3,1,188,17 -974,FR,OM,201812,3,1,140,9 -974,FR,OM,201812,4,1,5288,80 -974,FR,OM,201812,1,2,10,3 -974,FR,OM,201812,1,2,508,513 -974,FR,OM,201812,4,2,1181,13 -975,FR,OM,201812,1,1,2282,1500 -975,FR,OM,201812,1,2,16721,2043 -975,FR,OM,201812,1,2,31632,1491 -975,FR,OM,201812,4,2,1154,95 -975,FR,OM,201812,4,2,11100,10 -975,FR,OM,201812,4,2,4865,10 -975,FR,OM,201812,4,2,1306,130 -975,FR,OM,201812,4,2,9659,378 -975,FR,OM,201812,4,2,1026,50 -976,FR,OM,201812,4,2,1982,70 -976,FR,OM,201812,4,2,1000,80 -979,FR,OM,201812,3,1,259,0 -979,FR,OM,201812,4,1,1009,9 -979,FR,OM,201812,1,2,5786,155 -979,FR,OM,201812,1,2,22142,175 -979,FR,OM,201812,1,2,480250,3082 -979,FR,OM,201812,1,2,6529,88 -979,FR,OM,201812,1,2,16,1 -979,FR,OM,201812,3,2,3841,65 -979,FR,OM,201812,4,2,3779194,6052 -979,FR,OM,201812,4,2,843,8 -979,FR,OM,201812,4,2,12233,75 -979,FR,OM,201812,4,2,39650,175 -979,FR,OM,201812,4,2,1043,0 -979,FR,OM,201812,4,2,203097,350 -979,FR,OM,201812,4,2,80,0 -979,FR,OM,201812,4,2,551139,1 -979,FR,OM,201812,4,2,43336,365 -979,FR,OM,201812,4,2,47666,1020 -979,FR,OM,201812,4,2,4400,1 -979,FR,OM,201812,4,2,10553,47 -999,FR,OM,201812,1,2,28932,501440 -999,FR,OM,201812,1,2,2474,2200 -999,FR,OM,201812,1,2,17334,210539 -999,FR,OM,201812,1,2,23459,488150 -999,FR,OM,201812,1,2,101333,42792 -999,FR,OM,201812,1,2,7010,100000 -999,FR,OM,201812,1,2,25594,400000 -999,FR,OM,201812,4,2,1639,45 -999,FR,OM,201812,4,2,185,0 -999,FR,OM,201812,4,2,6394,260 -099,FR,YE,201812,4,2,55416,2000 -139,FR,YE,201812,1,2,332717,155794 -139,FR,YE,201812,1,2,591519,127536 -141,FR,YE,201812,1,2,142086,100110 -144,FR,YE,201812,1,2,1695018,965250 -144,FR,YE,201812,1,2,123654,74250 -144,FR,YE,201812,1,2,130947,74250 -146,FR,YE,201812,4,2,91411,4683 -341,FR,YE,201812,1,2,19285,10616 -545,FR,YE,201812,1,2,13029,15462 -892,FR,YE,201812,1,1,47556,9300 -892,FR,YE,201812,1,2,17016,5772 -893,FR,YE,201812,1,2,65234,2626 -893,FR,YE,201812,1,2,97506,4444 -896,FR,YE,201812,4,2,25236,2270 -931,FR,YE,201812,1,2,5550,6150 -931,FR,YE,201812,4,2,7000,100 -939,FR,YE,201812,1,2,34104,190 -939,FR,YE,201812,1,2,61952,345 -939,FR,YE,201812,4,2,35005,217 -939,FR,YE,201812,4,2,26277,4050 -963,FR,YE,201812,4,1,49,0 -974,FR,YE,201812,1,2,409,57 -979,FR,YE,201812,1,2,24578,1957 -979,FR,YE,201812,4,2,26246,5040 -999,FR,YE,201812,1,1,16750,0 -099,FR,AF,201812,1,1,140331,41000 -099,FR,AF,201812,4,2,9707,30 -128,FR,AF,201812,1,2,13892,13416 -133,FR,AF,201812,3,1,87,0 -133,FR,AF,201812,4,1,353,1 -139,FR,AF,201812,1,2,95637,18480 -139,FR,AF,201812,1,2,172430,125000 -139,FR,AF,201812,1,2,284638,200000 -139,FR,AF,201812,4,2,7481,3300 -144,FR,AF,201812,1,2,39508,25000 -341,FR,AF,201812,4,2,14,2 -551,FR,AF,201812,3,2,387,29 -891,FR,AF,201812,3,2,4303,1164 -891,FR,AF,201812,4,2,50,6 -893,FR,AF,201812,3,2,233282,2627 -893,FR,AF,201812,3,2,19284,410 -893,FR,AF,201812,4,2,755886,774 -896,FR,AF,201812,4,2,18163,600 -910,FR,AF,201812,1,1,2003,4000 -910,FR,AF,201812,3,1,18213,2 -910,FR,AF,201812,4,2,159089,4321 -910,FR,AF,201812,4,2,8567,110 -931,FR,AF,201812,4,1,8486,35 -931,FR,AF,201812,4,2,29128,705 -931,FR,AF,201812,4,2,5560,7 -939,FR,AF,201812,4,2,223932,4789 -939,FR,AF,201812,4,2,17187,52 -939,FR,AF,201812,4,2,8315,72 -939,FR,AF,201812,4,2,9000,300 -939,FR,AF,201812,4,2,2529,8 -949,FR,AF,201812,4,1,250,1 -949,FR,AF,201812,3,2,2631,1676 -949,FR,AF,201812,4,2,6592,40 -952,FR,AF,201812,4,1,7100,0 -952,FR,AF,201812,1,2,251874,230891 -962,FR,AF,201812,3,1,574,37 -963,FR,AF,201812,3,1,1615,59 -963,FR,AF,201812,4,1,2946,16 -963,FR,AF,201812,4,2,1567,28 -971,FR,AF,201812,3,2,142,17 -971,FR,AF,201812,3,2,194,8 -971,FR,AF,201812,4,2,723,9 -973,FR,AF,201812,4,1,1484,579 -973,FR,AF,201812,1,2,73,238 -973,FR,AF,201812,4,2,2074,112 -974,FR,AF,201812,3,2,1,0 -974,FR,AF,201812,4,2,45,6 -975,FR,AF,201812,3,1,60,2 -979,FR,AF,201812,3,1,380,1 -979,FR,AF,201812,3,2,50,2 -979,FR,AF,201812,4,2,22186,162 -979,FR,AF,201812,4,2,55603,920 -979,FR,AF,201812,4,2,1817,12 -999,FR,AF,201812,0,1,150,0 -999,FR,AF,201812,1,1,10000,0 -999,FR,AF,201812,3,2,3932,400 -999,FR,AF,201812,3,2,16867,2693 -999,FR,AF,201812,4,2,24,6 -999,FR,AF,201812,4,2,1,0 -015,FR,PK,201812,1,2,50962,14260 -015,FR,PK,201812,3,2,18,6 -016,FR,PK,201812,1,1,23220,18000 -016,FR,PK,201812,1,1,226665,215000 -016,FR,PK,201812,1,1,49477,36000 -016,FR,PK,201812,1,1,71154,73000 -016,FR,PK,201812,1,1,711464,822000 -016,FR,PK,201812,1,1,81095,70200 -016,FR,PK,201812,8,1,429161,500000 -039,FR,PK,201812,1,1,49280,112000 -039,FR,PK,201812,4,1,333,270 -041,FR,PK,201812,1,1,11322,25758 -042,FR,PK,201812,1,1,115668,88813 -042,FR,PK,201812,1,1,372790,372513 -042,FR,PK,201812,1,1,261050,234592 -043,FR,PK,201812,3,1,1775,35 -049,FR,PK,201812,1,1,41711,79147 -049,FR,PK,201812,1,2,36018,266376 -049,FR,PK,201812,1,2,51448,368168 -049,FR,PK,201812,1,2,1986,12600 -049,FR,PK,201812,1,2,25212,142712 -049,FR,PK,201812,1,2,8787,73880 -049,FR,PK,201812,1,2,30252,123018 -049,FR,PK,201812,1,2,8610,25356 -049,FR,PK,201812,1,2,12953,48580 -049,FR,PK,201812,1,2,28021,149853 -049,FR,PK,201812,1,2,32052,219215 -049,FR,PK,201812,1,2,90557,615998 -049,FR,PK,201812,1,2,27819,126053 -049,FR,PK,201812,1,2,22141,110081 -091,FR,PK,201812,1,2,24166,59951 -092,FR,PK,201812,1,2,13075,755540 -099,FR,PK,201812,1,1,10461,2205 -099,FR,PK,201812,4,1,39480,1650 -099,FR,PK,201812,1,2,1925,25 -099,FR,PK,201812,1,2,19738,9000 -099,FR,PK,201812,4,2,1345,75 -113,FR,PK,201812,1,1,919989,6176618 -121,FR,PK,201812,1,2,21010,1326 -122,FR,PK,201812,1,2,3505,952 -125,FR,PK,201812,1,2,11480,457 -128,FR,PK,201812,1,2,480,140 -128,FR,PK,201812,1,2,10150,10296 -128,FR,PK,201812,1,2,44369,79179 -136,FR,PK,201812,0,1,16487,19096 -136,FR,PK,201812,1,1,3986,1080 -136,FR,PK,201812,1,2,13,2 -136,FR,PK,201812,1,2,21240,24000 -139,FR,PK,201812,1,2,3179,400 -139,FR,PK,201812,1,2,4545,664 -139,FR,PK,201812,1,2,56786,13125 -139,FR,PK,201812,1,2,41970,16560 -139,FR,PK,201812,4,2,597,140 -144,FR,PK,201812,1,2,1080876,345179 -144,FR,PK,201812,1,2,81350,49500 -144,FR,PK,201812,1,2,595353,364500 -144,FR,PK,201812,1,2,1016929,586375 -144,FR,PK,201812,1,2,487117,202400 -147,FR,PK,201812,1,2,42,2 -161,FR,PK,201812,1,1,7553,16000 -161,FR,PK,201812,1,2,131,225 -163,FR,PK,201812,1,1,29048,25120 -163,FR,PK,201812,4,1,5098,3330 -163,FR,PK,201812,1,2,1466,1410 -164,FR,PK,201812,1,1,1093,540 -164,FR,PK,201812,1,2,26680,2700 -166,FR,PK,201812,4,1,46567,400 -166,FR,PK,201812,4,1,41530,254 -166,FR,PK,201812,1,2,1965,320 -179,FR,PK,201812,1,2,18040,2500 -179,FR,PK,201812,1,2,83210,33414 -179,FR,PK,201812,1,2,93459,14800 -179,FR,PK,201812,1,2,13808,10000 -179,FR,PK,201812,4,2,7537,3500 -182,FR,PK,201812,4,2,647,20 -323,FR,PK,201812,1,2,13208,12420 -325,FR,PK,201812,1,2,13111,19768 -341,FR,PK,201812,1,2,213433,39707 -341,FR,PK,201812,1,2,9321,11375 -341,FR,PK,201812,1,2,14977,10000 -341,FR,PK,201812,1,2,5030,3425 -341,FR,PK,201812,1,2,76977,57125 -341,FR,PK,201812,3,2,11581,1359 -341,FR,PK,201812,4,2,64592,2360 -451,FR,PK,201812,1,2,792538,1441900 -451,FR,PK,201812,1,2,16522,21740 -451,FR,PK,201812,1,2,14271,18920 -451,FR,PK,201812,1,2,13870,20900 -451,FR,PK,201812,1,2,223461,309860 -459,FR,PK,201812,1,2,213868,18973 -462,FR,PK,201812,1,2,8064,25600 -462,FR,PK,201812,1,2,105110,198340 -462,FR,PK,201812,1,2,533606,893679 -462,FR,PK,201812,1,2,102922,280570 -462,FR,PK,201812,1,2,11109,37030 -533,FR,PK,201812,3,2,42526,11239 -536,FR,PK,201812,1,2,29306,20400 -542,FR,PK,201812,1,2,1736,853 -542,FR,PK,201812,3,2,166036,99959 -543,FR,PK,201812,1,2,3274,1780 -551,FR,PK,201812,0,1,5066,3531 -551,FR,PK,201812,1,2,26141,14244 -551,FR,PK,201812,4,2,15703,4 -551,FR,PK,201812,4,2,769,40 -551,FR,PK,201812,4,2,3764,40 -552,FR,PK,201812,1,1,24127,4559 -552,FR,PK,201812,1,2,3608,248 -552,FR,PK,201812,1,2,2362,238 -561,FR,PK,201812,1,2,21000,3000 -568,FR,PK,201812,4,1,28,0 -568,FR,PK,201812,1,2,13970,30 -568,FR,PK,201812,1,2,65543,10311 -568,FR,PK,201812,1,2,98825,24019 -614,FR,PK,201812,1,2,45896,6080 -621,FR,PK,201812,1,1,11535,20850 -621,FR,PK,201812,3,1,63,6 -631,FR,PK,201812,3,1,5249,8500 -641,FR,PK,201812,1,1,44100,420000 -691,FR,PK,201812,4,1,54,2 -691,FR,PK,201812,4,2,1358,1 -813,FR,PK,201812,1,2,19341,11250 -819,FR,PK,201812,1,1,66,5 -819,FR,PK,201812,4,1,138,0 -819,FR,PK,201812,1,2,6757,3000 -819,FR,PK,201812,1,2,32379,9920 -819,FR,PK,201812,1,2,297000,10000 -819,FR,PK,201812,1,2,12678,2910 -819,FR,PK,201812,1,2,1263,550 -819,FR,PK,201812,3,2,16800,2000 -819,FR,PK,201812,4,2,15449,0 -819,FR,PK,201812,4,2,279,15 -819,FR,PK,201812,4,2,408,4 -819,FR,PK,201812,4,2,419732,623 -839,FR,PK,201812,4,2,40,0 -841,FR,PK,201812,1,2,52348,77359 -891,FR,PK,201812,1,2,16219,24700 -891,FR,PK,201812,1,2,14016,2250 -891,FR,PK,201812,1,2,161808,159474 -891,FR,PK,201812,1,2,55796,16540 -891,FR,PK,201812,1,2,6871,4900 -891,FR,PK,201812,1,2,62470,62400 -891,FR,PK,201812,1,2,32438,49400 -891,FR,PK,201812,1,2,32439,49400 -891,FR,PK,201812,1,2,7527,3900 -891,FR,PK,201812,4,2,123926,1850 -891,FR,PK,201812,4,2,1007,400 -891,FR,PK,201812,4,2,130,0 -892,FR,PK,201812,1,2,47753,37580 -892,FR,PK,201812,1,2,24452,15790 -892,FR,PK,201812,1,2,6255,6200 -892,FR,PK,201812,1,2,38634,44600 -892,FR,PK,201812,3,2,27523,1142 -892,FR,PK,201812,4,2,12810,157 -893,FR,PK,201812,3,1,75,0 -893,FR,PK,201812,4,1,584,1 -893,FR,PK,201812,4,1,456,32 -893,FR,PK,201812,4,1,94,3 -893,FR,PK,201812,0,2,165,5 -893,FR,PK,201812,1,2,865447,24558 -893,FR,PK,201812,1,2,2516,200 -893,FR,PK,201812,1,2,45535,2700 -893,FR,PK,201812,1,2,116655,2859 -893,FR,PK,201812,1,2,159554,22072 -893,FR,PK,201812,1,2,608,600 -893,FR,PK,201812,1,2,216,6 -893,FR,PK,201812,1,2,13685,13500 -893,FR,PK,201812,3,2,1359,150 -893,FR,PK,201812,4,2,5287776,25819 -893,FR,PK,201812,4,2,216,6 -893,FR,PK,201812,4,2,7427,81 -893,FR,PK,201812,4,2,13536,485 -893,FR,PK,201812,4,2,756528,9470 -893,FR,PK,201812,4,2,258259,4664 -893,FR,PK,201812,4,2,94758,2365 -893,FR,PK,201812,4,2,49076,1866 -895,FR,PK,201812,1,2,563,250 -896,FR,PK,201812,1,2,29171,8148 -896,FR,PK,201812,1,2,12414,4125 -896,FR,PK,201812,1,2,599764,50160 -896,FR,PK,201812,1,2,2317,360 -896,FR,PK,201812,1,2,5560,3600 -896,FR,PK,201812,1,2,3279,1800 -896,FR,PK,201812,1,2,13622,11850 -896,FR,PK,201812,4,2,68298,4727 -896,FR,PK,201812,4,2,55169,389 -896,FR,PK,201812,4,2,60317,400 -896,FR,PK,201812,4,2,51732,1096 -896,FR,PK,201812,4,2,647,10 -896,FR,PK,201812,4,2,10258,75 -896,FR,PK,201812,4,2,106176,1002 -896,FR,PK,201812,4,2,21121,559 -896,FR,PK,201812,4,2,97302,1682 -910,FR,PK,201812,3,1,27,1 -910,FR,PK,201812,4,1,69,2 -910,FR,PK,201812,4,1,489,10 -910,FR,PK,201812,4,1,5062,848 -910,FR,PK,201812,4,1,1916,265 -910,FR,PK,201812,1,2,4034,10692 -910,FR,PK,201812,4,2,81328,102 -910,FR,PK,201812,4,2,3667,228 -910,FR,PK,201812,4,2,13349,1 -910,FR,PK,201812,4,2,301408,280 -910,FR,PK,201812,4,2,3358,230 -920,FR,PK,201812,1,2,7350,8700 -920,FR,PK,201812,1,2,75667,120000 -920,FR,PK,201812,1,2,116875,133300 -920,FR,PK,201812,1,2,11455,8700 -931,FR,PK,201812,1,1,83268,1125 -931,FR,PK,201812,3,1,125,2 -931,FR,PK,201812,4,1,700,18 -931,FR,PK,201812,4,1,866,0 -931,FR,PK,201812,4,1,299,71 -931,FR,PK,201812,4,1,67937,15 -931,FR,PK,201812,4,1,19936,2 -931,FR,PK,201812,0,2,220,0 -931,FR,PK,201812,1,2,185308,25468 -931,FR,PK,201812,1,2,9720,981 -931,FR,PK,201812,1,2,49950,2762 -931,FR,PK,201812,1,2,43047,321 -931,FR,PK,201812,1,2,82930,18590 -931,FR,PK,201812,1,2,8,176 -931,FR,PK,201812,1,2,160801,10746 -931,FR,PK,201812,1,2,118424,21032 -931,FR,PK,201812,3,2,30,0 -931,FR,PK,201812,4,2,1293140,478 -931,FR,PK,201812,4,2,193,0 -931,FR,PK,201812,4,2,65435,148 -931,FR,PK,201812,4,2,1061,1 -931,FR,PK,201812,4,2,11002,40 -931,FR,PK,201812,4,2,19020,7 -931,FR,PK,201812,4,2,68499,24 -931,FR,PK,201812,4,2,1810873,779 -931,FR,PK,201812,4,2,35218,1330 -931,FR,PK,201812,4,2,29790,72 -939,FR,PK,201812,1,1,2408,340 -939,FR,PK,201812,1,1,119865,9885 -939,FR,PK,201812,3,1,857,5 -939,FR,PK,201812,4,1,3496,58 -939,FR,PK,201812,4,1,4019,49 -939,FR,PK,201812,4,1,7697,720 -939,FR,PK,201812,4,1,1638,368 -939,FR,PK,201812,4,1,3023,36 -939,FR,PK,201812,1,2,70908,6911 -939,FR,PK,201812,1,2,156852,5400 -939,FR,PK,201812,1,2,20802,155 -939,FR,PK,201812,1,2,8070,128 -939,FR,PK,201812,1,2,169902,39770 -939,FR,PK,201812,1,2,13453,20000 -939,FR,PK,201812,1,2,9450,17000 -939,FR,PK,201812,1,2,420,176 -939,FR,PK,201812,1,2,31885,11350 -939,FR,PK,201812,3,2,7534,308 -939,FR,PK,201812,4,2,6922156,30416 -939,FR,PK,201812,4,2,1086,8 -939,FR,PK,201812,4,2,2312,31 -939,FR,PK,201812,4,2,2260,37 -939,FR,PK,201812,4,2,110932,607 -939,FR,PK,201812,4,2,59115,293 -939,FR,PK,201812,4,2,222,0 -939,FR,PK,201812,4,2,7658,46 -939,FR,PK,201812,4,2,7070,10 -939,FR,PK,201812,4,2,23571,83 -939,FR,PK,201812,4,2,13418,148 -939,FR,PK,201812,4,2,905533,8853 -939,FR,PK,201812,4,2,108378,4 -939,FR,PK,201812,4,2,2592,10 -939,FR,PK,201812,4,2,29327,1810 -939,FR,PK,201812,4,2,14465,100 -949,FR,PK,201812,0,1,10275,340 -949,FR,PK,201812,1,1,17772,575 -949,FR,PK,201812,1,1,150913,6884 -949,FR,PK,201812,1,1,382,31 -949,FR,PK,201812,1,1,28,6 -949,FR,PK,201812,1,1,290,878 -949,FR,PK,201812,3,1,18256,555 -949,FR,PK,201812,3,1,26,0 -949,FR,PK,201812,3,1,9657,278 -949,FR,PK,201812,4,1,15907,809 -949,FR,PK,201812,4,1,4390,158 -949,FR,PK,201812,4,1,375,0 -949,FR,PK,201812,4,1,5075,109 -949,FR,PK,201812,4,1,8110,659 -949,FR,PK,201812,4,1,45945,1054 -949,FR,PK,201812,4,1,20308,830 -949,FR,PK,201812,4,1,190,1 -949,FR,PK,201812,3,2,7500,550 -949,FR,PK,201812,4,2,63428,167 -949,FR,PK,201812,4,2,55,0 -949,FR,PK,201812,4,2,5774,225 -949,FR,PK,201812,4,2,20,0 -949,FR,PK,201812,4,2,2070,50 -949,FR,PK,201812,4,2,23386,149 -949,FR,PK,201812,4,2,162252,181 -951,FR,PK,201812,4,2,1680,15 -952,FR,PK,201812,1,1,43625,84915 -952,FR,PK,201812,4,1,7,8 -952,FR,PK,201812,4,1,6772,0 -952,FR,PK,201812,1,2,49519,62969 -952,FR,PK,201812,4,2,23964,1236 -952,FR,PK,201812,4,2,2003,14 -961,FR,PK,201812,1,1,56253,1716 -961,FR,PK,201812,3,1,16029,446 -961,FR,PK,201812,4,1,21442,890 -961,FR,PK,201812,4,1,14379,741 -961,FR,PK,201812,4,1,5807,130 -961,FR,PK,201812,4,1,255,23 -961,FR,PK,201812,4,1,31166,1053 -961,FR,PK,201812,4,1,1249,46 -961,FR,PK,201812,1,2,912,9966 -962,FR,PK,201812,0,1,1160,120 -962,FR,PK,201812,1,1,265113,35454 -962,FR,PK,201812,1,1,22435,2157 -962,FR,PK,201812,1,1,20184,2771 -962,FR,PK,201812,1,1,13328,2668 -962,FR,PK,201812,1,1,546840,103685 -962,FR,PK,201812,1,1,209878,31202 -962,FR,PK,201812,1,1,31072,6194 -962,FR,PK,201812,1,1,29807,6516 -962,FR,PK,201812,1,1,4364400,773915 -962,FR,PK,201812,1,1,324495,40208 -962,FR,PK,201812,1,1,21261,5796 -962,FR,PK,201812,1,1,117464,30796 -962,FR,PK,201812,1,1,552831,89190 -962,FR,PK,201812,1,1,281435,39707 -962,FR,PK,201812,1,1,366263,61218 -962,FR,PK,201812,1,1,3084,294 -962,FR,PK,201812,1,1,3116094,635150 -962,FR,PK,201812,1,1,2504588,473832 -962,FR,PK,201812,1,1,19663,6343 -962,FR,PK,201812,1,1,197117,23702 -962,FR,PK,201812,1,1,82019,21899 -962,FR,PK,201812,3,1,59555,1271 -962,FR,PK,201812,3,1,22164,3393 -962,FR,PK,201812,3,1,17386,4932 -962,FR,PK,201812,4,1,233655,33273 -962,FR,PK,201812,4,1,10914,440 -962,FR,PK,201812,4,1,706,5 -962,FR,PK,201812,4,1,6513,1285 -962,FR,PK,201812,4,1,4452,520 -962,FR,PK,201812,4,1,66555,8229 -962,FR,PK,201812,4,1,4976,747 -962,FR,PK,201812,4,1,13258,2920 -962,FR,PK,201812,4,1,6630,839 -962,FR,PK,201812,4,1,16479,1983 -962,FR,PK,201812,4,1,93931,7708 -962,FR,PK,201812,4,1,8606,285 -962,FR,PK,201812,4,1,28427,3008 -962,FR,PK,201812,1,2,36796,21865 -962,FR,PK,201812,3,2,8896,282 -962,FR,PK,201812,4,2,21747,305 -962,FR,PK,201812,4,2,375,7 -962,FR,PK,201812,4,2,5086,179 -962,FR,PK,201812,4,2,9146,218 -962,FR,PK,201812,4,2,71,100 -962,FR,PK,201812,4,2,7619,130 -962,FR,PK,201812,4,2,3566,250 -962,FR,PK,201812,4,2,4742,1000 -962,FR,PK,201812,4,2,7251,163 -963,FR,PK,201812,0,1,7738214,582436 -963,FR,PK,201812,1,1,333555,30546 -963,FR,PK,201812,1,1,19380,1018 -963,FR,PK,201812,1,1,11655,1020 -963,FR,PK,201812,1,1,35871,1955 -963,FR,PK,201812,1,1,586845,48549 -963,FR,PK,201812,1,1,374569,23080 -963,FR,PK,201812,1,1,9617,1010 -963,FR,PK,201812,1,1,9643,590 -963,FR,PK,201812,1,1,54536,4235 -963,FR,PK,201812,1,1,3538,504 -963,FR,PK,201812,1,1,317,22 -963,FR,PK,201812,1,1,5513,159 -963,FR,PK,201812,1,1,1365049,179257 -963,FR,PK,201812,1,1,111437,9216 -963,FR,PK,201812,1,1,21103,1504 -963,FR,PK,201812,1,1,174832,15212 -963,FR,PK,201812,1,1,48373,600 -963,FR,PK,201812,1,1,349799,26790 -963,FR,PK,201812,1,1,958379,68389 -963,FR,PK,201812,1,1,640811,65339 -963,FR,PK,201812,1,1,1034,113 -963,FR,PK,201812,1,1,4098695,363593 -963,FR,PK,201812,1,1,1066406,86964 -963,FR,PK,201812,1,1,127,10 -963,FR,PK,201812,1,1,49697,4772 -963,FR,PK,201812,3,1,235675,5876 -963,FR,PK,201812,3,1,97,2 -963,FR,PK,201812,3,1,478,23 -963,FR,PK,201812,3,1,2843,79 -963,FR,PK,201812,4,1,761820,42124 -963,FR,PK,201812,4,1,90767,5552 -963,FR,PK,201812,4,1,7384,31 -963,FR,PK,201812,4,1,1577,185 -963,FR,PK,201812,4,1,2597,120 -963,FR,PK,201812,4,1,35006,1669 -963,FR,PK,201812,4,1,899,15 -963,FR,PK,201812,4,1,790,5 -963,FR,PK,201812,4,1,774017,41841 -963,FR,PK,201812,4,1,50929,1260 -963,FR,PK,201812,4,1,122075,3614 -963,FR,PK,201812,4,1,38636,2440 -963,FR,PK,201812,4,1,379365,16839 -963,FR,PK,201812,4,1,79112,2445 -963,FR,PK,201812,4,1,225439,10287 -963,FR,PK,201812,4,1,522677,20548 -963,FR,PK,201812,4,1,20703,280 -963,FR,PK,201812,4,1,913403,50889 -963,FR,PK,201812,4,1,12969,988 -963,FR,PK,201812,4,1,33786,2806 -963,FR,PK,201812,4,1,3045,100 -963,FR,PK,201812,4,1,4648,486 -963,FR,PK,201812,4,1,1339,67 -963,FR,PK,201812,4,1,4439,238 -963,FR,PK,201812,4,1,50005,2055 -963,FR,PK,201812,4,1,53315,2745 -963,FR,PK,201812,0,2,180,15 -963,FR,PK,201812,1,2,15895,248 -963,FR,PK,201812,3,2,582,39 -963,FR,PK,201812,4,2,22,11 -963,FR,PK,201812,4,2,176583,6373 -971,FR,PK,201812,3,1,1791,41 -971,FR,PK,201812,4,1,69,15 -971,FR,PK,201812,1,2,18970,1548 -971,FR,PK,201812,1,2,11591,20440 -971,FR,PK,201812,4,2,3150,0 -971,FR,PK,201812,4,2,45,5 -971,FR,PK,201812,4,2,501,0 -971,FR,PK,201812,4,2,1383,20 -971,FR,PK,201812,4,2,10747,43 -971,FR,PK,201812,4,2,72203,8002 -971,FR,PK,201812,4,2,10484,1 -972,FR,PK,201812,1,2,1497,2022 -972,FR,PK,201812,1,2,51009,20910 -972,FR,PK,201812,4,2,1,0 -973,FR,PK,201812,1,2,59500,22291 -973,FR,PK,201812,4,2,2393,440 -974,FR,PK,201812,1,1,150,13 -974,FR,PK,201812,3,1,206,9 -974,FR,PK,201812,1,2,149,260 -974,FR,PK,201812,1,2,30,20 -974,FR,PK,201812,3,2,40,25 -974,FR,PK,201812,4,2,1072,80 -974,FR,PK,201812,4,2,2271,180 -974,FR,PK,201812,4,2,20,5 -974,FR,PK,201812,4,2,3213,150 -975,FR,PK,201812,1,1,18812,3580 -975,FR,PK,201812,1,1,46866,14965 -975,FR,PK,201812,3,1,1054,91 -975,FR,PK,201812,3,1,140,21 -975,FR,PK,201812,4,1,1425,186 -975,FR,PK,201812,1,2,150,52 -975,FR,PK,201812,1,2,90,396 -975,FR,PK,201812,4,2,15301,10 -976,FR,PK,201812,1,1,587,122 -976,FR,PK,201812,3,1,388,36 -976,FR,PK,201812,3,2,49285,219400 -979,FR,PK,201812,0,1,1280,71 -979,FR,PK,201812,1,1,71637,5288 -979,FR,PK,201812,1,1,57579,4701 -979,FR,PK,201812,1,1,328548,21727 -979,FR,PK,201812,1,1,430,35 -979,FR,PK,201812,1,1,60424,48391 -979,FR,PK,201812,1,1,3182,254 -979,FR,PK,201812,1,1,67004,10535 -979,FR,PK,201812,1,1,3583,362 -979,FR,PK,201812,3,1,29004,806 -979,FR,PK,201812,3,1,967,9 -979,FR,PK,201812,3,1,113,0 -979,FR,PK,201812,3,1,611,0 -979,FR,PK,201812,4,1,77858,3500 -979,FR,PK,201812,4,1,55883,458 -979,FR,PK,201812,4,1,2526,23 -979,FR,PK,201812,4,1,13942,685 -979,FR,PK,201812,4,1,8573,252 -979,FR,PK,201812,4,1,30458,1660 -979,FR,PK,201812,4,1,64157,3312 -979,FR,PK,201812,4,1,183803,4278 -979,FR,PK,201812,4,1,112854,2545 -979,FR,PK,201812,4,1,115157,5785 -979,FR,PK,201812,4,1,66554,4075 -979,FR,PK,201812,4,1,2206,60 -979,FR,PK,201812,4,1,8697,495 -979,FR,PK,201812,4,1,26557,830 -979,FR,PK,201812,0,2,3557,4 -979,FR,PK,201812,1,2,31007,573 -979,FR,PK,201812,1,2,461,3 -979,FR,PK,201812,1,2,451192,4026 -979,FR,PK,201812,1,2,170957,2767 -979,FR,PK,201812,3,2,13381,12 -979,FR,PK,201812,3,2,121548,1696 -979,FR,PK,201812,3,2,6377,40 -979,FR,PK,201812,4,2,1406347,558 -979,FR,PK,201812,4,2,34,0 -979,FR,PK,201812,4,2,8262,36 -979,FR,PK,201812,4,2,26334,191 -979,FR,PK,201812,4,2,19680,100 -979,FR,PK,201812,4,2,143991,817 -979,FR,PK,201812,4,2,73935,373 -979,FR,PK,201812,4,2,44027,1125 -979,FR,PK,201812,4,2,4701,2 -979,FR,PK,201812,4,2,8391,67 -979,FR,PK,201812,4,2,99332,11 -979,FR,PK,201812,4,2,1185,1 -979,FR,PK,201812,4,2,96137,2150 -979,FR,PK,201812,4,2,4191,5 -999,FR,PK,201812,3,1,82,1 -999,FR,PK,201812,4,1,54,0 -999,FR,PK,201812,4,1,2200,0 -999,FR,PK,201812,1,2,18505,1000 -999,FR,PK,201812,1,2,4352,500 -999,FR,PK,201812,1,2,2735,100 -999,FR,PK,201812,1,2,292519,84000 -999,FR,PK,201812,1,2,12060,0 -999,FR,PK,201812,1,2,70170,0 -999,FR,PK,201812,1,2,354,12 -999,FR,PK,201812,1,2,10464,6000 -999,FR,PK,201812,3,2,33596,1000 -999,FR,PK,201812,3,2,16866,500 -999,FR,PK,201812,4,2,545852,1331 -999,FR,PK,201812,4,2,85611,1188 -999,FR,PK,201812,4,2,4746,111 -999,FR,PK,201812,4,2,943,25 -999,FR,PK,201812,4,2,138746,6 -012,FR,IN,201812,1,2,146669,505960 -015,FR,IN,201812,1,1,6398,20000 -015,FR,IN,201812,1,1,6398,20000 -016,FR,IN,201812,1,1,33231,20537 -016,FR,IN,201812,1,1,166822,117500 -016,FR,IN,201812,1,1,208408,196000 -016,FR,IN,201812,1,1,17658,22455 -016,FR,IN,201812,1,1,731822,762500 -016,FR,IN,201812,1,1,195159,219796 -016,FR,IN,201812,1,1,15559,23910 -016,FR,IN,201812,1,1,135680,119000 -016,FR,IN,201812,1,1,13472,26000 -016,FR,IN,201812,1,1,34355,39000 -016,FR,IN,201812,3,1,282,74 -035,FR,IN,201812,1,1,745,370 -035,FR,IN,201812,1,1,671639,83445 -035,FR,IN,201812,1,1,811986,102060 -035,FR,IN,201812,4,1,41,25 -035,FR,IN,201812,4,1,8290,3158 -035,FR,IN,201812,4,1,53196,22628 -035,FR,IN,201812,1,2,20851,21168 -035,FR,IN,201812,1,2,42989,63504 -035,FR,IN,201812,1,2,31700,43344 -039,FR,IN,201812,1,1,12557,14000 -039,FR,IN,201812,1,1,11844,28000 -039,FR,IN,201812,1,1,10930,20400 -039,FR,IN,201812,1,1,66032,168100 -039,FR,IN,201812,1,1,241837,230400 -039,FR,IN,201812,1,1,76057,57600 -039,FR,IN,201812,1,1,90944,111152 -039,FR,IN,201812,1,1,7776,10850 -039,FR,IN,201812,1,1,9744,2800 -039,FR,IN,201812,1,1,8813,13600 -039,FR,IN,201812,1,1,80661,225000 -039,FR,IN,201812,4,1,18269,10480 -039,FR,IN,201812,4,1,10268,4712 -039,FR,IN,201812,4,1,43713,20929 -039,FR,IN,201812,4,1,121002,66213 -042,FR,IN,201812,1,1,11184,4514 -043,FR,IN,201812,1,1,124333,67262 -043,FR,IN,201812,1,1,90385,71028 -045,FR,IN,201812,1,1,7200,22840 -045,FR,IN,201812,1,1,51848,93011 -045,FR,IN,201812,1,2,487014,179060 -045,FR,IN,201812,1,2,230934,49690 -045,FR,IN,201812,1,2,113950,24517 -045,FR,IN,201812,1,2,1169809,344611 -045,FR,IN,201812,1,2,154833,49860 -045,FR,IN,201812,1,2,313365,102600 -049,FR,IN,201812,1,1,50314,26481 -049,FR,IN,201812,4,1,121,0 -049,FR,IN,201812,4,1,45,0 -049,FR,IN,201812,1,2,6182,562137 -049,FR,IN,201812,1,2,4441,9897 -049,FR,IN,201812,1,2,5000,26560 -049,FR,IN,201812,1,2,2000,20580 -049,FR,IN,201812,1,2,6934,75675 -049,FR,IN,201812,1,2,2844,126479 -055,FR,IN,201812,1,2,73842,129440 -056,FR,IN,201812,1,1,375,1 -056,FR,IN,201812,4,1,4864,229 -056,FR,IN,201812,1,2,191722,415934 -056,FR,IN,201812,1,2,29885,47000 -056,FR,IN,201812,1,2,20521,52200 -056,FR,IN,201812,1,2,53629,126370 -057,FR,IN,201812,1,1,975,60 -091,FR,IN,201812,1,2,11860,21393 -091,FR,IN,201812,1,2,112800,24075 -091,FR,IN,201812,4,2,4786,123 -092,FR,IN,201812,4,1,57,4 -092,FR,IN,201812,1,2,306638,174826 -092,FR,IN,201812,1,2,10007,131 -092,FR,IN,201812,1,2,20462,685882 -092,FR,IN,201812,1,2,44300,16000 -092,FR,IN,201812,1,2,1620,808220 -092,FR,IN,201812,4,2,6654,150 -099,FR,IN,201812,0,1,939,40 -099,FR,IN,201812,1,1,897568,75880 -099,FR,IN,201812,1,1,97515,5339 -099,FR,IN,201812,1,1,37602,1000 -099,FR,IN,201812,1,1,677,240 -099,FR,IN,201812,1,1,31589,48230 -099,FR,IN,201812,1,1,110874,66544 -099,FR,IN,201812,1,1,97842,166110 -099,FR,IN,201812,1,1,35474,18000 -099,FR,IN,201812,1,1,301960,280526 -099,FR,IN,201812,1,1,30135,20000 -099,FR,IN,201812,1,1,86751,45026 -099,FR,IN,201812,3,1,24367,505 -099,FR,IN,201812,3,1,131940,40000 -099,FR,IN,201812,4,1,146583,4112 -099,FR,IN,201812,4,1,160305,2420 -099,FR,IN,201812,4,1,6623,46 -099,FR,IN,201812,4,1,3266,200 -099,FR,IN,201812,4,1,9202,500 -099,FR,IN,201812,4,1,3727,286 -099,FR,IN,201812,4,1,100582,719 -099,FR,IN,201812,4,1,7152,500 -099,FR,IN,201812,4,1,14993,1255 -099,FR,IN,201812,4,1,28690,1083 -099,FR,IN,201812,4,1,126637,330 -099,FR,IN,201812,4,1,108021,3938 -099,FR,IN,201812,4,1,3150,90 -099,FR,IN,201812,1,2,32635,6200 -099,FR,IN,201812,1,2,19217,4950 -099,FR,IN,201812,1,2,29280,1114 -099,FR,IN,201812,1,2,1030,200 -099,FR,IN,201812,1,2,9424,300 -099,FR,IN,201812,1,2,37954,20394 -099,FR,IN,201812,1,2,15075,2500 -099,FR,IN,201812,1,2,80400,20000 -099,FR,IN,201812,3,2,750,37 -099,FR,IN,201812,4,2,286320,2379 -099,FR,IN,201812,4,2,2100,280 -099,FR,IN,201812,4,2,9,0 -099,FR,IN,201812,4,2,5100,268 -111,FR,IN,201812,1,1,40800,60000 -111,FR,IN,201812,4,2,30,12 -121,FR,IN,201812,1,2,23770,8271 -121,FR,IN,201812,1,2,10150,530 -121,FR,IN,201812,1,2,64586,4635 -121,FR,IN,201812,1,2,58962,28980 -121,FR,IN,201812,1,2,49633,14455 -121,FR,IN,201812,3,2,4663,2252 -121,FR,IN,201812,4,2,54944,3814 -121,FR,IN,201812,4,2,53045,3899 -122,FR,IN,201812,1,2,182,316 -122,FR,IN,201812,4,2,446,774 -125,FR,IN,201812,1,1,132507,7213 -125,FR,IN,201812,1,2,93929,22150 -125,FR,IN,201812,1,2,15999,4762 -125,FR,IN,201812,1,2,661929,34981 -125,FR,IN,201812,1,2,1813,981 -125,FR,IN,201812,1,2,3178,399 -125,FR,IN,201812,1,2,82992,29030 -125,FR,IN,201812,1,2,419660,122227 -125,FR,IN,201812,4,2,7512,7 -125,FR,IN,201812,4,2,228,15 -125,FR,IN,201812,4,2,17069,3751 -128,FR,IN,201812,1,1,2719,1590 -128,FR,IN,201812,1,1,3700,25704 -128,FR,IN,201812,1,2,539,840 -128,FR,IN,201812,4,2,518,1041 -131,FR,IN,201812,0,1,386038,182829 -131,FR,IN,201812,1,1,44456,19230 -131,FR,IN,201812,1,1,72716,38400 -131,FR,IN,201812,1,1,9900,4802 -131,FR,IN,201812,4,1,31,0 -132,FR,IN,201812,4,1,41,2 -132,FR,IN,201812,0,2,410,19 -132,FR,IN,201812,4,2,20,2 -133,FR,IN,201812,0,1,88,1 -133,FR,IN,201812,1,1,13052,10000 -133,FR,IN,201812,1,1,3249,174 -133,FR,IN,201812,1,1,23987,1596 -133,FR,IN,201812,1,1,17724,5420 -133,FR,IN,201812,1,1,5493,2726 -133,FR,IN,201812,1,1,8156,3051 -133,FR,IN,201812,1,1,62261,22522 -133,FR,IN,201812,1,1,20963,18000 -133,FR,IN,201812,1,1,126591,71750 -133,FR,IN,201812,1,1,10800,20000 -133,FR,IN,201812,1,1,29644,12225 -133,FR,IN,201812,1,1,217,10 -133,FR,IN,201812,1,1,295186,65698 -133,FR,IN,201812,1,1,114444,14435 -133,FR,IN,201812,3,1,3529,151 -133,FR,IN,201812,3,1,1220,50 -133,FR,IN,201812,4,1,35315,577 -133,FR,IN,201812,4,1,4404,54 -133,FR,IN,201812,4,1,2,2 -133,FR,IN,201812,4,1,4422,71 -133,FR,IN,201812,4,1,579821,1463 -133,FR,IN,201812,4,1,1586,861 -133,FR,IN,201812,0,2,60,2 -133,FR,IN,201812,4,2,1180,6 -134,FR,IN,201812,0,1,450068,143900 -135,FR,IN,201812,1,2,592059,206910 -136,FR,IN,201812,0,1,169,7 -136,FR,IN,201812,1,1,4521,1500 -136,FR,IN,201812,3,1,58,2 -136,FR,IN,201812,1,2,24717,50000 -136,FR,IN,201812,3,2,2,5 -136,FR,IN,201812,4,2,798,12 -139,FR,IN,201812,1,1,46,0 -139,FR,IN,201812,1,1,295,122 -139,FR,IN,201812,1,1,76300,7000 -139,FR,IN,201812,1,1,7573,2322 -139,FR,IN,201812,1,1,4423,2016 -139,FR,IN,201812,1,1,437,500 -139,FR,IN,201812,1,1,173941,33496 -139,FR,IN,201812,1,1,45464,2000 -139,FR,IN,201812,3,1,1587,66 -139,FR,IN,201812,3,1,293,84 -139,FR,IN,201812,4,1,24998,34 -139,FR,IN,201812,4,1,2151,92 -139,FR,IN,201812,4,1,426,68 -139,FR,IN,201812,4,1,44,0 -139,FR,IN,201812,4,1,17245,1800 -139,FR,IN,201812,4,1,447,60 -139,FR,IN,201812,4,1,5298,274 -139,FR,IN,201812,1,2,96124,84750 -139,FR,IN,201812,1,2,201725,12760 -139,FR,IN,201812,3,2,8733,1500 -139,FR,IN,201812,4,2,5978,313 -139,FR,IN,201812,4,2,10,0 -139,FR,IN,201812,4,2,29469,350 -139,FR,IN,201812,4,2,7250,220 -139,FR,IN,201812,4,2,8400,4000 -139,FR,IN,201812,4,2,29808,1683 -142,FR,IN,201812,0,1,594,96 -142,FR,IN,201812,1,1,248851,39200 -142,FR,IN,201812,1,1,48143,5890 -142,FR,IN,201812,1,1,256617,22424 -142,FR,IN,201812,1,1,112757,12993 -142,FR,IN,201812,1,1,2329551,279877 -142,FR,IN,201812,1,1,70517,7200 -142,FR,IN,201812,1,1,51322,8471 -142,FR,IN,201812,1,1,160609,30657 -142,FR,IN,201812,1,1,221807,45555 -142,FR,IN,201812,1,1,479304,72400 -142,FR,IN,201812,1,1,74247,18144 -142,FR,IN,201812,1,1,366667,79450 -142,FR,IN,201812,1,1,1215529,177458 -142,FR,IN,201812,1,1,75670,18000 -142,FR,IN,201812,1,1,999020,217968 -142,FR,IN,201812,1,1,707107,118189 -142,FR,IN,201812,3,1,100244,28500 -142,FR,IN,201812,4,1,12535,1736 -142,FR,IN,201812,4,1,15680,1517 -142,FR,IN,201812,4,1,15925,2160 -142,FR,IN,201812,4,1,261035,30436 -143,FR,IN,201812,1,2,19,7 -143,FR,IN,201812,4,2,34,13 -144,FR,IN,201812,1,2,2085,258 -144,FR,IN,201812,1,2,15565,7920 -144,FR,IN,201812,1,2,195772,216004 -144,FR,IN,201812,1,2,1297,825 -144,FR,IN,201812,1,2,1858,825 -144,FR,IN,201812,4,2,40,4 -147,FR,IN,201812,0,2,208,6 -148,FR,IN,201812,1,1,20812,3860 -148,FR,IN,201812,1,1,91077,9000 -148,FR,IN,201812,1,1,23885,10000 -148,FR,IN,201812,1,1,47347,11000 -148,FR,IN,201812,1,1,161552,35000 -148,FR,IN,201812,1,1,255947,53636 -161,FR,IN,201812,1,1,3345,3300 -161,FR,IN,201812,1,1,361,135 -161,FR,IN,201812,1,1,10862,17457 -161,FR,IN,201812,1,1,126,150 -162,FR,IN,201812,1,2,47124,102000 -163,FR,IN,201812,1,1,1585,299 -163,FR,IN,201812,1,1,2190,817 -163,FR,IN,201812,1,1,5764,4300 -163,FR,IN,201812,1,1,73991,24947 -163,FR,IN,201812,4,1,7896,1435 -163,FR,IN,201812,1,2,14716,3632 -163,FR,IN,201812,4,2,5,1 -163,FR,IN,201812,4,2,45499,409 -164,FR,IN,201812,0,1,30097,18823 -164,FR,IN,201812,1,1,18468,18191 -164,FR,IN,201812,1,1,633,237 -164,FR,IN,201812,1,1,130036,151783 -164,FR,IN,201812,1,1,80293,23000 -164,FR,IN,201812,1,1,19129,17600 -164,FR,IN,201812,1,1,14254,17200 -164,FR,IN,201812,1,1,13752,17280 -164,FR,IN,201812,1,1,487671,431172 -164,FR,IN,201812,1,1,15499,17200 -164,FR,IN,201812,1,1,95351,54498 -164,FR,IN,201812,4,1,2615,270 -164,FR,IN,201812,4,1,6325,1293 -164,FR,IN,201812,1,2,5250,895 -164,FR,IN,201812,1,2,14061,1849 -164,FR,IN,201812,1,2,31439,5310 -164,FR,IN,201812,3,2,23884,5075 -165,FR,IN,201812,1,1,113,56 -166,FR,IN,201812,1,1,45525,40095 -166,FR,IN,201812,1,1,886,472 -166,FR,IN,201812,1,1,59681,60726 -166,FR,IN,201812,1,1,58788,36750 -166,FR,IN,201812,1,1,75794,72806 -166,FR,IN,201812,1,1,191481,196646 -166,FR,IN,201812,1,1,15692,19278 -166,FR,IN,201812,3,1,142,30 -166,FR,IN,201812,3,1,14902,14280 -166,FR,IN,201812,4,1,21051,7939 -166,FR,IN,201812,4,1,4970,318 -166,FR,IN,201812,4,1,87139,550 -166,FR,IN,201812,4,1,5118,1366 -166,FR,IN,201812,4,1,129434,800 -166,FR,IN,201812,1,2,16233,2250 -166,FR,IN,201812,4,2,5202,500 -172,FR,IN,201812,1,1,2437760,7000000 -172,FR,IN,201812,1,1,3860654,10916090 -172,FR,IN,201812,1,1,3516522,10000000 -172,FR,IN,201812,1,1,175688,318970 -172,FR,IN,201812,1,1,109519,210000 -179,FR,IN,201812,1,1,37740,60000 -179,FR,IN,201812,1,1,59166,23850 -179,FR,IN,201812,1,1,51183,100000 -179,FR,IN,201812,4,1,1483,700 -179,FR,IN,201812,1,2,12194,1480 -179,FR,IN,201812,1,2,5688,500 -179,FR,IN,201812,1,2,92775,53500 -179,FR,IN,201812,1,2,87500,11000 -179,FR,IN,201812,1,2,51547,30355 -179,FR,IN,201812,1,2,59500,10000 -179,FR,IN,201812,4,2,19614,640 -179,FR,IN,201812,4,2,4015,1000 -181,FR,IN,201812,0,1,25243,16000 -181,FR,IN,201812,1,1,65781,39500 -181,FR,IN,201812,1,1,27484,19500 -181,FR,IN,201812,1,1,501,248 -181,FR,IN,201812,1,1,69419,36000 -181,FR,IN,201812,1,1,53852,32000 -181,FR,IN,201812,1,1,75164,38000 -181,FR,IN,201812,1,1,162152,74000 -181,FR,IN,201812,1,1,66474,40000 -181,FR,IN,201812,1,1,69419,36000 -181,FR,IN,201812,3,1,3200,3500 -182,FR,IN,201812,0,1,380133,290160 -182,FR,IN,201812,1,1,19,1 -182,FR,IN,201812,1,1,2014206,1526997 -182,FR,IN,201812,1,1,47078,15200 -182,FR,IN,201812,1,1,9536,3200 -182,FR,IN,201812,1,1,15697,7289 -182,FR,IN,201812,1,1,67916,27520 -182,FR,IN,201812,1,1,7797,2100 -182,FR,IN,201812,1,1,246164,73502 -182,FR,IN,201812,1,1,47045,7600 -182,FR,IN,201812,3,1,64,0 -182,FR,IN,201812,4,1,25554,44 -182,FR,IN,201812,4,1,15075,1200 -182,FR,IN,201812,4,1,3028,326 -182,FR,IN,201812,1,2,23386,7107 -182,FR,IN,201812,1,2,78772,107400 -182,FR,IN,201812,1,2,24766,10080 -182,FR,IN,201812,1,2,24462,6750 -182,FR,IN,201812,4,2,2868,480 -182,FR,IN,201812,4,2,70,40 -182,FR,IN,201812,4,2,430,60 -182,FR,IN,201812,4,2,32,4 -321,FR,IN,201812,1,2,453181,783612 -321,FR,IN,201812,1,2,12718739,29087940 -321,FR,IN,201812,1,2,16083,2600 -323,FR,IN,201812,1,1,3450180,5333125 -323,FR,IN,201812,1,2,650404,1013291 -323,FR,IN,201812,3,2,6324,1825 -325,FR,IN,201812,1,2,3432,678 -325,FR,IN,201812,1,2,537,167 -325,FR,IN,201812,1,2,147811,229660 -341,FR,IN,201812,4,1,37,1 -341,FR,IN,201812,1,2,19068,7611 -341,FR,IN,201812,1,2,532828,197568 -341,FR,IN,201812,1,2,59248,16100 -341,FR,IN,201812,1,2,30369,9117 -341,FR,IN,201812,1,2,67986,39415 -341,FR,IN,201812,1,2,208705,69890 -341,FR,IN,201812,1,2,31591,16900 -341,FR,IN,201812,1,2,101077,67172 -341,FR,IN,201812,3,2,21598,7020 -341,FR,IN,201812,3,2,3157,1005 -341,FR,IN,201812,4,2,6448,271 -341,FR,IN,201812,4,2,11468,482 -341,FR,IN,201812,4,2,2568,301 -341,FR,IN,201812,4,2,97,1 -341,FR,IN,201812,4,2,7575,318 -343,FR,IN,201812,3,2,119032,247760 -349,FR,IN,201812,4,2,142,0 -410,FR,IN,201812,1,2,9350,40000 -451,FR,IN,201812,1,2,404784,361380 -451,FR,IN,201812,1,2,525761,557050 -451,FR,IN,201812,1,2,26238,28730 -459,FR,IN,201812,1,1,100032,10582 -459,FR,IN,201812,4,1,36206,1060 -459,FR,IN,201812,4,1,349918,41 -459,FR,IN,201812,1,2,29400,2000 -459,FR,IN,201812,1,2,4444,2400 -459,FR,IN,201812,1,2,262050,24199 -462,FR,IN,201812,1,2,70081,304325 -462,FR,IN,201812,1,2,6617,54300 -462,FR,IN,201812,1,2,45604,208100 -462,FR,IN,201812,1,2,16920,112800 -462,FR,IN,201812,1,2,566673,2658990 -462,FR,IN,201812,3,2,70657,224310 -512,FR,IN,201812,1,2,25850,600 -512,FR,IN,201812,1,2,130210,245194 -513,FR,IN,201812,0,1,320694,294000 -513,FR,IN,201812,1,2,448358,272400 -513,FR,IN,201812,1,2,60792,39600 -513,FR,IN,201812,4,2,3285,1800 -515,FR,IN,201812,1,1,1278,4000 -522,FR,IN,201812,1,1,44016,20104 -522,FR,IN,201812,3,1,5856,598 -522,FR,IN,201812,1,2,27597,42400 -522,FR,IN,201812,1,2,9740,396 -522,FR,IN,201812,4,2,8767,396 -522,FR,IN,201812,4,2,3427,200 -532,FR,IN,201812,1,1,46527,19280 -532,FR,IN,201812,1,1,42505,17957 -532,FR,IN,201812,3,1,14901,3132 -532,FR,IN,201812,3,1,22815,4023 -532,FR,IN,201812,1,2,223180,15574 -532,FR,IN,201812,1,2,35010,4243 -532,FR,IN,201812,1,2,65650,40812 -532,FR,IN,201812,1,2,139081,98997 -532,FR,IN,201812,3,2,27306,1493 -532,FR,IN,201812,4,2,22899,1210 -532,FR,IN,201812,4,2,8473,185 -532,FR,IN,201812,4,2,445,72 -532,FR,IN,201812,4,2,43062,625 -532,FR,IN,201812,4,2,19640,1150 -533,FR,IN,201812,1,1,59689,26467 -533,FR,IN,201812,1,1,7032,3033 -533,FR,IN,201812,1,1,8012,3510 -533,FR,IN,201812,4,1,21904,3384 -533,FR,IN,201812,1,2,312612,37025 -533,FR,IN,201812,1,2,38180,2827 -533,FR,IN,201812,1,2,74679,36222 -533,FR,IN,201812,3,2,67213,220707 -533,FR,IN,201812,4,2,63565,3972 -533,FR,IN,201812,4,2,36221,200 -533,FR,IN,201812,4,2,32305,455 -536,FR,IN,201812,1,1,22265,5565 -536,FR,IN,201812,1,1,25964,20444 -536,FR,IN,201812,1,1,4246,203 -536,FR,IN,201812,1,1,79434,20710 -536,FR,IN,201812,1,1,61903,40199 -536,FR,IN,201812,3,1,888,106 -536,FR,IN,201812,1,2,18150,3223 -536,FR,IN,201812,1,2,26436,21031 -536,FR,IN,201812,1,2,731710,580308 -536,FR,IN,201812,1,2,25957,20397 -536,FR,IN,201812,3,2,9290,676 -536,FR,IN,201812,4,2,448,50 -536,FR,IN,201812,4,2,33202,3074 -537,FR,IN,201812,1,2,72043,470 -542,FR,IN,201812,1,1,151346,16739 -542,FR,IN,201812,1,1,183828,69000 -542,FR,IN,201812,3,1,14659,21197 -542,FR,IN,201812,3,1,47,13 -542,FR,IN,201812,4,1,147,0 -542,FR,IN,201812,1,2,3200954,503094 -542,FR,IN,201812,1,2,797108,120867 -542,FR,IN,201812,1,2,79475,79300 -542,FR,IN,201812,1,2,49301,47820 -542,FR,IN,201812,1,2,28130,27940 -542,FR,IN,201812,1,2,31472,32020 -542,FR,IN,201812,1,2,19905,20460 -542,FR,IN,201812,1,2,198596,9520 -542,FR,IN,201812,1,2,240021,63836 -542,FR,IN,201812,1,2,112930,122280 -542,FR,IN,201812,1,2,10607,9080 -542,FR,IN,201812,1,2,316414,450300 -542,FR,IN,201812,3,2,736937,924390 -542,FR,IN,201812,3,2,72081,87030 -542,FR,IN,201812,4,2,852803,19906 -542,FR,IN,201812,4,2,5000,92 -542,FR,IN,201812,4,2,5630,60 -543,FR,IN,201812,3,1,49,0 -543,FR,IN,201812,1,2,120172,6909 -543,FR,IN,201812,4,2,41354,1120 -543,FR,IN,201812,4,2,75500,5383 -543,FR,IN,201812,4,2,18157,567 -551,FR,IN,201812,1,1,21081,1826 -551,FR,IN,201812,1,1,99516,15208 -551,FR,IN,201812,1,1,5132,300 -551,FR,IN,201812,1,1,869970,1319856 -551,FR,IN,201812,1,1,56556,61129 -551,FR,IN,201812,1,1,3315,513 -551,FR,IN,201812,1,1,19753,4433 -551,FR,IN,201812,1,1,34551,14365 -551,FR,IN,201812,1,1,106898,21789 -551,FR,IN,201812,1,1,21159,17999 -551,FR,IN,201812,1,1,18425,23920 -551,FR,IN,201812,1,1,189347,15709 -551,FR,IN,201812,1,1,587174,635237 -551,FR,IN,201812,1,1,1051,259 -551,FR,IN,201812,1,1,16,0 -551,FR,IN,201812,3,1,39018,1704 -551,FR,IN,201812,3,1,239,3 -551,FR,IN,201812,4,1,6802,128 -551,FR,IN,201812,4,1,2191,7 -551,FR,IN,201812,4,1,6,0 -551,FR,IN,201812,4,1,76654,319 -551,FR,IN,201812,4,1,834697,3592 -551,FR,IN,201812,1,2,12735,520 -551,FR,IN,201812,1,2,96833,2305 -551,FR,IN,201812,1,2,2751,65 -551,FR,IN,201812,1,2,4818,681 -551,FR,IN,201812,3,2,30800,25797 -551,FR,IN,201812,4,2,95623,1380 -551,FR,IN,201812,4,2,9813,0 -551,FR,IN,201812,4,2,560,1000 -551,FR,IN,201812,4,2,25480,20 -551,FR,IN,201812,4,2,39469,1259 -551,FR,IN,201812,4,2,4126,135 -551,FR,IN,201812,4,2,5152,250 -552,FR,IN,201812,1,1,22343,7160 -552,FR,IN,201812,1,1,1667,535 -552,FR,IN,201812,1,1,69105,60120 -552,FR,IN,201812,1,1,45532,35219 -552,FR,IN,201812,1,1,37394,23749 -552,FR,IN,201812,1,1,17574,16000 -552,FR,IN,201812,1,1,96651,24064 -552,FR,IN,201812,1,1,43454,38820 -552,FR,IN,201812,1,1,2741,676 -552,FR,IN,201812,3,1,8599,657 -552,FR,IN,201812,4,1,10139,1070 -552,FR,IN,201812,4,1,9397,558 -552,FR,IN,201812,4,1,2004,46 -552,FR,IN,201812,4,1,25092,25 -552,FR,IN,201812,4,1,345,12 -552,FR,IN,201812,4,1,35283,2076 -552,FR,IN,201812,1,2,1817,212 -552,FR,IN,201812,1,2,6328,438 -552,FR,IN,201812,4,2,6475,159 -552,FR,IN,201812,4,2,2312,185 -552,FR,IN,201812,4,2,4944,93 -561,FR,IN,201812,1,1,277512,41441 -562,FR,IN,201812,1,1,106590,56015 -562,FR,IN,201812,4,1,191,21 -565,FR,IN,201812,1,1,466865,44187 -565,FR,IN,201812,3,1,41136,280 -565,FR,IN,201812,3,1,442,0 -565,FR,IN,201812,4,1,192238,960 -565,FR,IN,201812,4,1,10441,17 -565,FR,IN,201812,4,1,22388,43 -565,FR,IN,201812,4,1,13645,41 -565,FR,IN,201812,1,2,167162,2316 -565,FR,IN,201812,1,2,24763,2862 -565,FR,IN,201812,1,2,104581,48959 -565,FR,IN,201812,3,2,362,12 -565,FR,IN,201812,4,2,1069416,7443 -565,FR,IN,201812,4,2,3205,21 -565,FR,IN,201812,4,2,7023,100 -565,FR,IN,201812,4,2,63961,316 -565,FR,IN,201812,4,2,36239,150 -565,FR,IN,201812,4,2,41658,111 -568,FR,IN,201812,0,1,2082,229 -568,FR,IN,201812,1,1,38813,5603 -568,FR,IN,201812,1,1,26045,3398 -568,FR,IN,201812,1,1,18521,1998 -568,FR,IN,201812,1,1,48653,20986 -568,FR,IN,201812,1,1,26491,2939 -568,FR,IN,201812,1,1,16,1 -568,FR,IN,201812,3,1,1313,24 -568,FR,IN,201812,3,1,263,25 -568,FR,IN,201812,3,1,59871,25000 -568,FR,IN,201812,4,1,8811,24 -568,FR,IN,201812,4,1,14206,0 -568,FR,IN,201812,4,1,6868,693 -568,FR,IN,201812,4,1,2938,91 -568,FR,IN,201812,4,1,45896,638 -568,FR,IN,201812,4,1,6062,225 -568,FR,IN,201812,1,2,258450,20950 -568,FR,IN,201812,1,2,32888,2069 -568,FR,IN,201812,1,2,687162,45705 -568,FR,IN,201812,1,2,109145,3369 -568,FR,IN,201812,1,2,1229523,187075 -568,FR,IN,201812,1,2,745089,199697 -568,FR,IN,201812,1,2,22491,4066 -568,FR,IN,201812,3,2,45320,8584 -568,FR,IN,201812,4,2,84043,4913 -568,FR,IN,201812,4,2,25305,850 -568,FR,IN,201812,4,2,45732,1819 -568,FR,IN,201812,4,2,156812,50 -568,FR,IN,201812,4,2,15247,521 -568,FR,IN,201812,4,2,19990,680 -568,FR,IN,201812,4,2,26259,1432 -568,FR,IN,201812,4,2,52215,1169 -568,FR,IN,201812,4,2,2500,750 -611,FR,IN,201812,1,2,430,130 -614,FR,IN,201812,1,1,5485,21000 -614,FR,IN,201812,1,1,10970,42000 -614,FR,IN,201812,1,1,5860,20440 -614,FR,IN,201812,3,1,440,66 -614,FR,IN,201812,1,2,9578,40000 -614,FR,IN,201812,1,2,24114,156000 -614,FR,IN,201812,1,2,119009,788680 -614,FR,IN,201812,1,2,24241,156000 -614,FR,IN,201812,4,2,277,20 -615,FR,IN,201812,1,1,15698,220000 -615,FR,IN,201812,1,1,2206,1319 -621,FR,IN,201812,1,1,4319,56000 -621,FR,IN,201812,1,1,21731,192200 -621,FR,IN,201812,1,1,94,500 -621,FR,IN,201812,1,2,5914,730 -621,FR,IN,201812,4,2,6177,765 -631,FR,IN,201812,1,1,317,640 -632,FR,IN,201812,1,1,4290,15250 -632,FR,IN,201812,1,1,27505,80800 -632,FR,IN,201812,1,1,10517,48000 -632,FR,IN,201812,1,1,11023,27534 -632,FR,IN,201812,1,1,75075,622000 -632,FR,IN,201812,1,1,2860,24600 -632,FR,IN,201812,1,1,7722,78000 -632,FR,IN,201812,1,1,27688,76395 -632,FR,IN,201812,1,1,33693,218000 -632,FR,IN,201812,1,1,31888,169505 -632,FR,IN,201812,1,1,7280,80400 -632,FR,IN,201812,1,1,28672,247500 -632,FR,IN,201812,1,2,7000,49800 -632,FR,IN,201812,3,2,20,7 -639,FR,IN,201812,1,1,9284,22000 -639,FR,IN,201812,4,1,55,0 -639,FR,IN,201812,4,1,22,1 -639,FR,IN,201812,4,1,48,2 -639,FR,IN,201812,1,2,39544,9000 -639,FR,IN,201812,4,2,6,1 -639,FR,IN,201812,4,2,1820,129 -639,FR,IN,201812,4,2,3944,220 -641,FR,IN,201812,1,1,64348,755550 -641,FR,IN,201812,1,1,99458,1147175 -641,FR,IN,201812,1,2,35702,80000 -650,FR,IN,201812,4,1,25,0 -691,FR,IN,201812,0,1,39,10 -691,FR,IN,201812,1,1,14059,29362 -691,FR,IN,201812,1,1,1229,200 -691,FR,IN,201812,1,1,17666,18829 -691,FR,IN,201812,1,1,13839,26695 -691,FR,IN,201812,1,1,930,45 -691,FR,IN,201812,1,1,41985,49682 -691,FR,IN,201812,1,1,89626,165839 -691,FR,IN,201812,1,1,496376,692892 -691,FR,IN,201812,1,1,29376,106080 -691,FR,IN,201812,1,1,2739,680 -691,FR,IN,201812,1,1,236248,424020 -691,FR,IN,201812,1,1,138816,36682 -691,FR,IN,201812,1,1,52386,48315 -691,FR,IN,201812,1,1,98107,622600 -691,FR,IN,201812,1,1,25684,23038 -691,FR,IN,201812,1,1,10461,27216 -691,FR,IN,201812,1,1,1102291,3346730 -691,FR,IN,201812,1,1,5399,26000 -691,FR,IN,201812,1,1,10857,22500 -691,FR,IN,201812,1,1,27652,124200 -691,FR,IN,201812,1,1,37513,44869 -691,FR,IN,201812,1,1,25743,25085 -691,FR,IN,201812,3,1,12342,227 -691,FR,IN,201812,3,1,56,100 -691,FR,IN,201812,3,1,1180,886 -691,FR,IN,201812,4,1,23170,2245 -691,FR,IN,201812,4,1,550,22 -691,FR,IN,201812,4,1,90,1 -691,FR,IN,201812,4,1,1412,5 -691,FR,IN,201812,4,1,13743,2007 -691,FR,IN,201812,4,1,159,14 -691,FR,IN,201812,4,1,10218,413 -691,FR,IN,201812,4,1,3683,165 -691,FR,IN,201812,1,2,4661,458 -691,FR,IN,201812,1,2,142,64 -691,FR,IN,201812,1,2,9658,3766 -691,FR,IN,201812,1,2,115879,2071 -691,FR,IN,201812,1,2,984,22903 -691,FR,IN,201812,3,2,670,5 -691,FR,IN,201812,4,2,649682,6892 -691,FR,IN,201812,4,2,123634,1349 -691,FR,IN,201812,4,2,16970,137 -691,FR,IN,201812,4,2,7984,260 -691,FR,IN,201812,4,2,314,5 -692,FR,IN,201812,1,1,44257,204489 -692,FR,IN,201812,1,1,13707,26852 -692,FR,IN,201812,1,1,21619,61811 -692,FR,IN,201812,1,1,51625,180786 -692,FR,IN,201812,1,1,261502,110286 -692,FR,IN,201812,1,1,207682,58000 -692,FR,IN,201812,1,1,363766,230313 -692,FR,IN,201812,1,1,62314,12636 -692,FR,IN,201812,3,1,1080,166 -692,FR,IN,201812,4,1,849,4 -692,FR,IN,201812,1,2,8362,1752 -692,FR,IN,201812,1,2,4850,1350 -692,FR,IN,201812,1,2,1200,900 -692,FR,IN,201812,1,2,26332,84136 -692,FR,IN,201812,1,2,9411,20000 -692,FR,IN,201812,1,2,138131,104504 -692,FR,IN,201812,4,2,126717,7610 -692,FR,IN,201812,4,2,618,468 -723,FR,IN,201812,4,1,210,4 -729,FR,IN,201812,4,1,457,11 -813,FR,IN,201812,1,2,11020,40000 -819,FR,IN,201812,0,1,1995686,23525 -819,FR,IN,201812,1,1,1109766,58161 -819,FR,IN,201812,1,1,71510,9223 -819,FR,IN,201812,1,1,84695,1000 -819,FR,IN,201812,1,1,354324,10915 -819,FR,IN,201812,1,1,8172,1800 -819,FR,IN,201812,1,1,222625,27910 -819,FR,IN,201812,1,1,15426,200 -819,FR,IN,201812,1,1,362662,86000 -819,FR,IN,201812,1,1,1038705,178946 -819,FR,IN,201812,1,1,1595598,483957 -819,FR,IN,201812,1,1,415363,229590 -819,FR,IN,201812,1,1,267923,2784 -819,FR,IN,201812,1,1,13968,24000 -819,FR,IN,201812,1,1,261700,38000 -819,FR,IN,201812,1,1,173506,110130 -819,FR,IN,201812,1,1,52840,64000 -819,FR,IN,201812,1,1,109150,29400 -819,FR,IN,201812,1,1,1115018,434005 -819,FR,IN,201812,1,1,61200,24000 -819,FR,IN,201812,1,1,117381,216000 -819,FR,IN,201812,1,1,4867186,459110 -819,FR,IN,201812,1,1,50108,16620 -819,FR,IN,201812,1,1,163609,10000 -819,FR,IN,201812,3,1,280807,21493 -819,FR,IN,201812,3,1,251359,5095 -819,FR,IN,201812,3,1,50486,815 -819,FR,IN,201812,3,1,169209,685 -819,FR,IN,201812,3,1,1435,185 -819,FR,IN,201812,3,1,183135,5926 -819,FR,IN,201812,4,1,1954729,23002 -819,FR,IN,201812,4,1,84454,2234 -819,FR,IN,201812,4,1,190,0 -819,FR,IN,201812,4,1,67017,100 -819,FR,IN,201812,4,1,154,14 -819,FR,IN,201812,4,1,358991,7816 -819,FR,IN,201812,4,1,67962,145 -819,FR,IN,201812,4,1,2562,36 -819,FR,IN,201812,4,1,511577,2356 -819,FR,IN,201812,4,1,1885568,7005 -819,FR,IN,201812,4,1,128820,675 -819,FR,IN,201812,4,1,1487651,93344 -819,FR,IN,201812,4,1,6,2 -819,FR,IN,201812,4,1,27070,0 -819,FR,IN,201812,4,1,2700,100 -819,FR,IN,201812,1,2,366620,57739 -819,FR,IN,201812,1,2,7800,4000 -819,FR,IN,201812,1,2,3636789,772386 -819,FR,IN,201812,1,2,200767,60000 -819,FR,IN,201812,1,2,1481493,20300 -819,FR,IN,201812,1,2,908226,255218 -819,FR,IN,201812,1,2,1609680,244567 -819,FR,IN,201812,1,2,24623,18960 -819,FR,IN,201812,1,2,122568,32000 -819,FR,IN,201812,1,2,20113,216000 -819,FR,IN,201812,1,2,3419,1050 -819,FR,IN,201812,1,2,12937,20000 -819,FR,IN,201812,3,2,84498,5895 -819,FR,IN,201812,3,2,12451,6200 -819,FR,IN,201812,4,2,2246364,5286 -819,FR,IN,201812,4,2,314080,5600 -819,FR,IN,201812,4,2,2716,19 -819,FR,IN,201812,4,2,76256,3000 -819,FR,IN,201812,4,2,200,200 -819,FR,IN,201812,4,2,156800,160 -819,FR,IN,201812,4,2,14608,380 -819,FR,IN,201812,4,2,12625,75 -819,FR,IN,201812,4,2,333436,1716 -819,FR,IN,201812,4,2,32309,1250 -819,FR,IN,201812,4,2,3325,20 -819,FR,IN,201812,4,2,21079,22 -820,FR,IN,201812,1,1,110173,201114 -820,FR,IN,201812,1,2,4980,6000 -820,FR,IN,201812,1,2,13652,990 -820,FR,IN,201812,1,2,2478,1000 -820,FR,IN,201812,1,2,80900,160000 -820,FR,IN,201812,1,2,24829,40000 -820,FR,IN,201812,1,2,75159,140000 -820,FR,IN,201812,1,2,68455,140000 -820,FR,IN,201812,1,2,19101,2000 -820,FR,IN,201812,4,2,12308,615 -820,FR,IN,201812,4,2,1236,140 -842,FR,IN,201812,1,2,127206,1041254 -842,FR,IN,201812,1,2,34677,537730 -842,FR,IN,201812,1,2,36585,250440 -842,FR,IN,201812,1,2,7732,307780 -842,FR,IN,201812,1,2,149436,951971 -842,FR,IN,201812,3,2,180996,1159589 -891,FR,IN,201812,0,1,551,7 -891,FR,IN,201812,1,1,18925,2100 -891,FR,IN,201812,1,1,40321,1870 -891,FR,IN,201812,1,1,23643,10497 -891,FR,IN,201812,1,1,321565,108300 -891,FR,IN,201812,1,1,33273,24359 -891,FR,IN,201812,1,1,92067,42206 -891,FR,IN,201812,1,1,46553,23163 -891,FR,IN,201812,1,1,175502,88846 -891,FR,IN,201812,1,1,411371,150100 -891,FR,IN,201812,1,1,147383,50396 -891,FR,IN,201812,3,1,9257,320 -891,FR,IN,201812,4,1,1102,151 -891,FR,IN,201812,4,1,7548,63 -891,FR,IN,201812,4,1,193,18 -891,FR,IN,201812,4,1,55580,12605 -891,FR,IN,201812,4,1,567,25 -891,FR,IN,201812,4,1,117,94 -891,FR,IN,201812,4,1,5546,446 -891,FR,IN,201812,4,1,4379,793 -891,FR,IN,201812,4,1,212815,625 -891,FR,IN,201812,1,2,444323,40171 -891,FR,IN,201812,1,2,2808,483 -891,FR,IN,201812,1,2,225672,50550 -891,FR,IN,201812,1,2,22128,7024 -891,FR,IN,201812,1,2,8193,3481 -891,FR,IN,201812,1,2,64468,8631 -891,FR,IN,201812,1,2,65443,2960 -891,FR,IN,201812,1,2,1395365,892525 -891,FR,IN,201812,1,2,285552,166000 -891,FR,IN,201812,1,2,230816,111375 -891,FR,IN,201812,1,2,31543,20000 -891,FR,IN,201812,1,2,81174,36000 -891,FR,IN,201812,1,2,330159,102878 -891,FR,IN,201812,1,2,430286,217015 -891,FR,IN,201812,1,2,32856,18400 -891,FR,IN,201812,1,2,1884796,830525 -891,FR,IN,201812,1,2,37552,22000 -891,FR,IN,201812,1,2,152282,89825 -891,FR,IN,201812,1,2,19307,65733 -891,FR,IN,201812,1,2,205076,78505 -891,FR,IN,201812,1,2,48188,13200 -891,FR,IN,201812,3,2,51747,2991 -891,FR,IN,201812,3,2,25986,7500 -891,FR,IN,201812,3,2,103350,60750 -891,FR,IN,201812,4,2,365876,14916 -891,FR,IN,201812,4,2,37600,62 -891,FR,IN,201812,4,2,121,60 -891,FR,IN,201812,4,2,73420,2238 -891,FR,IN,201812,4,2,9158,395 -891,FR,IN,201812,4,2,993,152 -891,FR,IN,201812,4,2,946,50 -891,FR,IN,201812,4,2,15423,4530 -891,FR,IN,201812,4,2,49958,56 -892,FR,IN,201812,0,1,34478,7241 -892,FR,IN,201812,1,1,199404,53173 -892,FR,IN,201812,1,1,1017,0 -892,FR,IN,201812,1,1,137,1 -892,FR,IN,201812,1,1,385446,69977 -892,FR,IN,201812,1,1,73626,24000 -892,FR,IN,201812,1,1,39971,34120 -892,FR,IN,201812,1,1,104635,3510 -892,FR,IN,201812,1,1,52421,8971 -892,FR,IN,201812,1,1,31915,17025 -892,FR,IN,201812,1,1,89929,18000 -892,FR,IN,201812,3,1,13199,1741 -892,FR,IN,201812,3,1,102516,44000 -892,FR,IN,201812,3,1,225990,2015 -892,FR,IN,201812,4,1,905,0 -892,FR,IN,201812,4,1,2365,62 -892,FR,IN,201812,4,1,3756,27 -892,FR,IN,201812,4,1,326,10 -892,FR,IN,201812,4,1,1766,19 -892,FR,IN,201812,4,1,97,0 -892,FR,IN,201812,4,1,4269,586 -892,FR,IN,201812,1,2,16471,2988 -892,FR,IN,201812,1,2,10900,320 -892,FR,IN,201812,1,2,35784,5833 -892,FR,IN,201812,1,2,268,60 -892,FR,IN,201812,1,2,9823,5075 -892,FR,IN,201812,1,2,44502,22050 -892,FR,IN,201812,1,2,36270,6160 -892,FR,IN,201812,1,2,2824,331 -892,FR,IN,201812,1,2,303092,114830 -892,FR,IN,201812,1,2,4867,1250 -892,FR,IN,201812,1,2,40783,16000 -892,FR,IN,201812,1,2,121897,53141 -892,FR,IN,201812,1,2,4235,2800 -892,FR,IN,201812,1,2,14721,15630 -892,FR,IN,201812,4,2,124296,4536 -892,FR,IN,201812,4,2,1452,115 -892,FR,IN,201812,4,2,9930,745 -892,FR,IN,201812,4,2,173,5 -892,FR,IN,201812,4,2,12462,640 -892,FR,IN,201812,4,2,9247,37 -892,FR,IN,201812,4,2,6841,229 -892,FR,IN,201812,4,2,19800,150 -892,FR,IN,201812,4,2,21,0 -892,FR,IN,201812,4,2,3050,440 -893,FR,IN,201812,0,1,13408,742 -893,FR,IN,201812,1,1,217131,8700 -893,FR,IN,201812,1,1,15716,72 -893,FR,IN,201812,1,1,1494,252 -893,FR,IN,201812,1,1,117739,10689 -893,FR,IN,201812,1,1,15850,1579 -893,FR,IN,201812,1,1,11032,570 -893,FR,IN,201812,1,1,63031,2325 -893,FR,IN,201812,1,1,69868,2471 -893,FR,IN,201812,1,1,789,66 -893,FR,IN,201812,1,1,921283,58942 -893,FR,IN,201812,1,1,2450,138 -893,FR,IN,201812,1,1,13931,3761 -893,FR,IN,201812,1,1,606999,59075 -893,FR,IN,201812,1,1,17269,4004 -893,FR,IN,201812,1,1,28083,720 -893,FR,IN,201812,1,1,25425,3366 -893,FR,IN,201812,1,1,3204,90 -893,FR,IN,201812,1,1,77744,1447 -893,FR,IN,201812,1,1,681810,37822 -893,FR,IN,201812,1,1,244538,3224 -893,FR,IN,201812,1,1,406313,17998 -893,FR,IN,201812,1,1,117469,13177 -893,FR,IN,201812,1,1,11948,3613 -893,FR,IN,201812,3,1,47175,1100 -893,FR,IN,201812,3,1,11228,200 -893,FR,IN,201812,3,1,131318,9389 -893,FR,IN,201812,3,1,87915,1092 -893,FR,IN,201812,3,1,2914,100 -893,FR,IN,201812,3,1,2484,883 -893,FR,IN,201812,4,1,879485,9603 -893,FR,IN,201812,4,1,23170,240 -893,FR,IN,201812,4,1,2164458,37151 -893,FR,IN,201812,4,1,15320,182 -893,FR,IN,201812,4,1,1105,28 -893,FR,IN,201812,4,1,50600,2131 -893,FR,IN,201812,4,1,922490,12658 -893,FR,IN,201812,4,1,165,2 -893,FR,IN,201812,4,1,10850,103 -893,FR,IN,201812,4,1,46709,111 -893,FR,IN,201812,4,1,292,37 -893,FR,IN,201812,4,1,149190,420 -893,FR,IN,201812,4,1,846031,1360 -893,FR,IN,201812,4,1,590754,10776 -893,FR,IN,201812,4,1,2698,234 -893,FR,IN,201812,4,1,75295,367 -893,FR,IN,201812,4,1,8029,35 -893,FR,IN,201812,0,2,2490,76 -893,FR,IN,201812,1,2,941454,30261 -893,FR,IN,201812,1,2,113376,7957 -893,FR,IN,201812,1,2,29145,1580 -893,FR,IN,201812,1,2,9312,1206 -893,FR,IN,201812,1,2,5858,675 -893,FR,IN,201812,1,2,84625,1752 -893,FR,IN,201812,1,2,163688,11699 -893,FR,IN,201812,1,2,1021294,48981 -893,FR,IN,201812,1,2,66074,15910 -893,FR,IN,201812,1,2,1252689,18099 -893,FR,IN,201812,1,2,1019271,41249 -893,FR,IN,201812,1,2,17208,728 -893,FR,IN,201812,1,2,1256107,10477 -893,FR,IN,201812,3,2,12251,351 -893,FR,IN,201812,3,2,2825,5 -893,FR,IN,201812,3,2,108,10 -893,FR,IN,201812,3,2,59451,1600 -893,FR,IN,201812,4,2,2778025,57468 -893,FR,IN,201812,4,2,569100,7814 -893,FR,IN,201812,4,2,31395,267 -893,FR,IN,201812,4,2,20810,5200 -893,FR,IN,201812,4,2,197584,3469 -893,FR,IN,201812,4,2,14407,206 -893,FR,IN,201812,4,2,42037,636 -893,FR,IN,201812,4,2,77579,1058 -893,FR,IN,201812,4,2,45,7 -893,FR,IN,201812,4,2,618,1 -893,FR,IN,201812,4,2,16542,220 -893,FR,IN,201812,4,2,356249,7724 -893,FR,IN,201812,4,2,4439500,5722 -893,FR,IN,201812,4,2,910,108 -893,FR,IN,201812,4,2,318978,5999 -893,FR,IN,201812,4,2,2650,100 -893,FR,IN,201812,4,2,25032,320 -893,FR,IN,201812,4,2,10547,77 -894,FR,IN,201812,4,2,3960,1 -894,FR,IN,201812,4,2,136464,1566 -895,FR,IN,201812,1,2,6236,22250 -896,FR,IN,201812,1,1,186629,61879 -896,FR,IN,201812,1,1,9590,1300 -896,FR,IN,201812,1,1,6531,7200 -896,FR,IN,201812,1,1,127516,9817 -896,FR,IN,201812,1,1,42018,1167 -896,FR,IN,201812,1,1,808248,264200 -896,FR,IN,201812,1,1,311808,89600 -896,FR,IN,201812,1,1,153041,124832 -896,FR,IN,201812,1,1,60105,21360 -896,FR,IN,201812,1,1,83020,59872 -896,FR,IN,201812,1,1,1108084,257960 -896,FR,IN,201812,1,1,41482,22000 -896,FR,IN,201812,1,1,77833,30100 -896,FR,IN,201812,1,1,46080,12800 -896,FR,IN,201812,3,1,141171,341 -896,FR,IN,201812,3,1,833,1 -896,FR,IN,201812,4,1,56738,2752 -896,FR,IN,201812,4,1,80,0 -896,FR,IN,201812,4,1,164210,7201 -896,FR,IN,201812,4,1,1943,174 -896,FR,IN,201812,4,1,35119,1785 -896,FR,IN,201812,1,2,383954,29194 -896,FR,IN,201812,1,2,51426,4022 -896,FR,IN,201812,1,2,4306,1912 -896,FR,IN,201812,1,2,6594,362 -896,FR,IN,201812,1,2,241,2000 -896,FR,IN,201812,1,2,21044,1585 -896,FR,IN,201812,1,2,5891,320 -896,FR,IN,201812,1,2,151849,116200 -896,FR,IN,201812,1,2,4951,555 -896,FR,IN,201812,1,2,2910019,721385 -896,FR,IN,201812,1,2,542172,419975 -896,FR,IN,201812,1,2,110427,20000 -896,FR,IN,201812,1,2,771077,370740 -896,FR,IN,201812,1,2,52800,60000 -896,FR,IN,201812,1,2,149820,120000 -896,FR,IN,201812,1,2,192110,34536 -896,FR,IN,201812,1,2,66067,16949 -896,FR,IN,201812,1,2,1390290,466343 -896,FR,IN,201812,1,2,195014,47270 -896,FR,IN,201812,1,2,37324,15010 -896,FR,IN,201812,1,2,178395,24140 -896,FR,IN,201812,3,2,10342,3256 -896,FR,IN,201812,3,2,55605,20750 -896,FR,IN,201812,3,2,17600,16000 -896,FR,IN,201812,4,2,1003095,31269 -896,FR,IN,201812,4,2,60138,72 -896,FR,IN,201812,4,2,113997,1005 -896,FR,IN,201812,4,2,82587,1849 -896,FR,IN,201812,4,2,842267,9802 -896,FR,IN,201812,4,2,123766,3107 -896,FR,IN,201812,4,2,164309,4590 -896,FR,IN,201812,4,2,993577,13984 -896,FR,IN,201812,4,2,481,72 -896,FR,IN,201812,4,2,1150,9 -896,FR,IN,201812,4,2,44498,2540 -896,FR,IN,201812,4,2,12300,4742 -896,FR,IN,201812,4,2,34039,73 -910,FR,IN,201812,0,1,801804,223113 -910,FR,IN,201812,1,1,131983,19025 -910,FR,IN,201812,1,1,45889,18672 -910,FR,IN,201812,1,1,3273,847 -910,FR,IN,201812,1,1,206439,21986 -910,FR,IN,201812,1,1,36188,8637 -910,FR,IN,201812,1,1,37794,5935 -910,FR,IN,201812,1,1,40545,3271 -910,FR,IN,201812,1,1,45393,9016 -910,FR,IN,201812,1,1,2600,204 -910,FR,IN,201812,1,1,4455,2200 -910,FR,IN,201812,1,1,345905,97893 -910,FR,IN,201812,1,1,25805,2508 -910,FR,IN,201812,1,1,91692,13250 -910,FR,IN,201812,1,1,60080,19535 -910,FR,IN,201812,1,1,36753,33139 -910,FR,IN,201812,1,1,48227,9352 -910,FR,IN,201812,1,1,3053,211 -910,FR,IN,201812,1,1,848465,143665 -910,FR,IN,201812,1,1,1677757,298748 -910,FR,IN,201812,1,1,11206,373 -910,FR,IN,201812,1,1,13755,1954 -910,FR,IN,201812,3,1,142408,2442 -910,FR,IN,201812,3,1,182241,76106 -910,FR,IN,201812,3,1,3768,203 -910,FR,IN,201812,3,1,135783,56796 -910,FR,IN,201812,4,1,526611,13894 -910,FR,IN,201812,4,1,60048,5106 -910,FR,IN,201812,4,1,102617,739 -910,FR,IN,201812,4,1,18615,130 -910,FR,IN,201812,4,1,46709,18954 -910,FR,IN,201812,4,1,1836,45 -910,FR,IN,201812,4,1,1061,90 -910,FR,IN,201812,4,1,615820,1165 -910,FR,IN,201812,4,1,1876,15 -910,FR,IN,201812,4,1,53205,4600 -910,FR,IN,201812,4,1,164640,5931 -910,FR,IN,201812,4,1,1638661,27799 -910,FR,IN,201812,4,1,2003,7 -910,FR,IN,201812,4,1,2783,159 -910,FR,IN,201812,1,2,802701,52135 -910,FR,IN,201812,1,2,28830,1595 -910,FR,IN,201812,1,2,62349,813 -910,FR,IN,201812,1,2,10576,1630 -910,FR,IN,201812,1,2,30329,516 -910,FR,IN,201812,1,2,4217,190 -910,FR,IN,201812,1,2,72996,3247 -910,FR,IN,201812,1,2,13002,466 -910,FR,IN,201812,1,2,1137576,109533 -910,FR,IN,201812,1,2,32514,4652 -910,FR,IN,201812,1,2,32335,5406 -910,FR,IN,201812,1,2,12554,2553 -910,FR,IN,201812,1,2,1746769,1178503 -910,FR,IN,201812,1,2,198571,126946 -910,FR,IN,201812,1,2,59271,9173 -910,FR,IN,201812,3,2,32841,632 -910,FR,IN,201812,3,2,24120,2482 -910,FR,IN,201812,3,2,117,7 -910,FR,IN,201812,4,2,2662288,34064 -910,FR,IN,201812,4,2,6798,120 -910,FR,IN,201812,4,2,536121,2352 -910,FR,IN,201812,4,2,5481,1100 -910,FR,IN,201812,4,2,22033,57 -910,FR,IN,201812,4,2,30937,6532 -910,FR,IN,201812,4,2,7329,159 -910,FR,IN,201812,4,2,12342,176 -910,FR,IN,201812,4,2,1611310,6799 -910,FR,IN,201812,4,2,5559,21 -910,FR,IN,201812,4,2,66419,52 -910,FR,IN,201812,4,2,417399,12730 -910,FR,IN,201812,4,2,9353,24 -910,FR,IN,201812,4,2,8623,70 -910,FR,IN,201812,9,2,686989845,527250 -920,FR,IN,201812,1,1,3510,1000 -920,FR,IN,201812,1,1,140064,24000 -920,FR,IN,201812,1,1,55525,12043 -920,FR,IN,201812,1,1,26059,4903 -920,FR,IN,201812,1,1,58899,950 -920,FR,IN,201812,1,1,71,3 -920,FR,IN,201812,1,1,65850,19120 -920,FR,IN,201812,1,1,193986,66399 -920,FR,IN,201812,1,1,15960,22404 -920,FR,IN,201812,1,1,25445,20343 -920,FR,IN,201812,1,1,365,13 -920,FR,IN,201812,3,1,14824,2254 -920,FR,IN,201812,4,1,46,2 -920,FR,IN,201812,4,1,109,2 -920,FR,IN,201812,4,1,374,17 -920,FR,IN,201812,4,1,4014,249 -920,FR,IN,201812,4,1,9429,563 -920,FR,IN,201812,1,2,13701,3750 -920,FR,IN,201812,4,2,7177,85 -920,FR,IN,201812,4,2,8701,849 -920,FR,IN,201812,4,2,10476,25 -920,FR,IN,201812,4,2,2483,80 -931,FR,IN,201812,0,1,622396,6781 -931,FR,IN,201812,1,1,655523,31266 -931,FR,IN,201812,1,1,95823,6855 -931,FR,IN,201812,1,1,350,26 -931,FR,IN,201812,1,1,881,35 -931,FR,IN,201812,1,1,3635,339 -931,FR,IN,201812,1,1,250642,29807 -931,FR,IN,201812,1,1,4523762,271005 -931,FR,IN,201812,1,1,123424,10377 -931,FR,IN,201812,1,1,37402,1111 -931,FR,IN,201812,1,1,11884,833 -931,FR,IN,201812,1,1,653885,93742 -931,FR,IN,201812,1,1,44132,3567 -931,FR,IN,201812,1,1,203694,14137 -931,FR,IN,201812,1,1,2789,344 -931,FR,IN,201812,1,1,286940,21992 -931,FR,IN,201812,1,1,28333,5910 -931,FR,IN,201812,1,1,272784,24074 -931,FR,IN,201812,1,1,134567,43093 -931,FR,IN,201812,1,1,1626091,126100 -931,FR,IN,201812,1,1,16,0 -931,FR,IN,201812,1,1,9045,503 -931,FR,IN,201812,1,1,498,45 -931,FR,IN,201812,3,1,1649589,28672 -931,FR,IN,201812,3,1,194488,1066 -931,FR,IN,201812,3,1,162215,861 -931,FR,IN,201812,3,1,65431,167 -931,FR,IN,201812,3,1,172682,173 -931,FR,IN,201812,4,1,1361481,32753 -931,FR,IN,201812,4,1,264,20 -931,FR,IN,201812,4,1,1734611,11367 -931,FR,IN,201812,4,1,509761,2351 -931,FR,IN,201812,4,1,11761,9 -931,FR,IN,201812,4,1,966,61 -931,FR,IN,201812,4,1,254746,1145 -931,FR,IN,201812,4,1,513,1 -931,FR,IN,201812,4,1,20226,452 -931,FR,IN,201812,4,1,28414,599 -931,FR,IN,201812,4,1,4756,70 -931,FR,IN,201812,4,1,57164,1303 -931,FR,IN,201812,4,1,3157,204 -931,FR,IN,201812,4,1,154727,819 -931,FR,IN,201812,4,1,735913,3145 -931,FR,IN,201812,4,1,1065,10 -931,FR,IN,201812,4,1,13766,11 -931,FR,IN,201812,4,1,567439,5523 -931,FR,IN,201812,4,1,1838913,16642 -931,FR,IN,201812,4,1,1231,90 -931,FR,IN,201812,4,1,4238078,59142 -931,FR,IN,201812,4,1,407664,6993 -931,FR,IN,201812,4,1,2902,144 -931,FR,IN,201812,4,1,20452,434 -931,FR,IN,201812,4,1,77799,208 -931,FR,IN,201812,4,1,141,10 -931,FR,IN,201812,0,2,3088,37 -931,FR,IN,201812,1,2,3825246,203800 -931,FR,IN,201812,1,2,23652,1166 -931,FR,IN,201812,1,2,429582,14617 -931,FR,IN,201812,1,2,70072,2669 -931,FR,IN,201812,1,2,40719,828 -931,FR,IN,201812,1,2,33026,1844 -931,FR,IN,201812,1,2,635443,25117 -931,FR,IN,201812,1,2,363447,86940 -931,FR,IN,201812,1,2,13997,1305 -931,FR,IN,201812,1,2,7750,2000 -931,FR,IN,201812,1,2,905728,2996 -931,FR,IN,201812,1,2,4665551,148851 -931,FR,IN,201812,1,2,118731,1667 -931,FR,IN,201812,1,2,163715,12724 -931,FR,IN,201812,1,2,516718,4483 -931,FR,IN,201812,1,2,137934,1230 -931,FR,IN,201812,1,2,443639,14285 -931,FR,IN,201812,3,2,495612,5495 -931,FR,IN,201812,3,2,56011,156 -931,FR,IN,201812,3,2,36118,561 -931,FR,IN,201812,3,2,186005,43146 -931,FR,IN,201812,4,2,29786162,208680 -931,FR,IN,201812,4,2,57901,471 -931,FR,IN,201812,4,2,2584771,4583 -931,FR,IN,201812,4,2,379628,842 -931,FR,IN,201812,4,2,28704,1710 -931,FR,IN,201812,4,2,825165,2993 -931,FR,IN,201812,4,2,157738,1013 -931,FR,IN,201812,4,2,6095,25 -931,FR,IN,201812,4,2,229346,2093 -931,FR,IN,201812,4,2,243330,2117 -931,FR,IN,201812,4,2,68951,1471 -931,FR,IN,201812,4,2,750811,627 -931,FR,IN,201812,4,2,12555,334 -931,FR,IN,201812,4,2,57472,404 -931,FR,IN,201812,4,2,36860,80 -931,FR,IN,201812,4,2,949021,4950 -931,FR,IN,201812,4,2,1732885,4826 -931,FR,IN,201812,4,2,9910895,41953 -931,FR,IN,201812,4,2,9946,16 -931,FR,IN,201812,4,2,24362,1714 -931,FR,IN,201812,4,2,102037,718 -931,FR,IN,201812,4,2,456096,1432 -931,FR,IN,201812,4,2,1126359,11989 -931,FR,IN,201812,4,2,263679,477 -931,FR,IN,201812,4,2,2012617,85850 -931,FR,IN,201812,4,2,83527,148 -931,FR,IN,201812,4,2,345688,1116 -931,FR,IN,201812,5,2,4246,64 -939,FR,IN,201812,0,1,652543,110150 -939,FR,IN,201812,1,1,405520,118922 -939,FR,IN,201812,1,1,117295,6232 -939,FR,IN,201812,1,1,2644,434 -939,FR,IN,201812,1,1,30995,12291 -939,FR,IN,201812,1,1,756013,176037 -939,FR,IN,201812,1,1,51088,7971 -939,FR,IN,201812,1,1,10287,685 -939,FR,IN,201812,1,1,72476,7608 -939,FR,IN,201812,1,1,37737,12096 -939,FR,IN,201812,1,1,29311,6112 -939,FR,IN,201812,1,1,526774,66508 -939,FR,IN,201812,1,1,6958,1771 -939,FR,IN,201812,1,1,416052,58068 -939,FR,IN,201812,1,1,64405,10280 -939,FR,IN,201812,1,1,4996,276 -939,FR,IN,201812,1,1,68920,7220 -939,FR,IN,201812,1,1,4598032,777697 -939,FR,IN,201812,1,1,1745747,191857 -939,FR,IN,201812,1,1,68077,10260 -939,FR,IN,201812,1,1,34100,3913 -939,FR,IN,201812,1,1,251978,26464 -939,FR,IN,201812,1,1,181816,22001 -939,FR,IN,201812,1,1,527302,94966 -939,FR,IN,201812,1,1,18528,2104 -939,FR,IN,201812,1,1,2258903,196347 -939,FR,IN,201812,1,1,1868431,360269 -939,FR,IN,201812,1,1,22375,5821 -939,FR,IN,201812,1,1,599202,110892 -939,FR,IN,201812,1,1,749448,59733 -939,FR,IN,201812,1,1,34643,17770 -939,FR,IN,201812,1,1,684983,64162 -939,FR,IN,201812,1,1,35298,5867 -939,FR,IN,201812,3,1,1163447,33174 -939,FR,IN,201812,3,1,198078,32662 -939,FR,IN,201812,3,1,36556,465 -939,FR,IN,201812,3,1,353535,8228 -939,FR,IN,201812,3,1,4473,250 -939,FR,IN,201812,3,1,191736,21557 -939,FR,IN,201812,3,1,10737,149 -939,FR,IN,201812,4,1,2212271,69652 -939,FR,IN,201812,4,1,14702,1051 -939,FR,IN,201812,4,1,592371,30116 -939,FR,IN,201812,4,1,25880,248 -939,FR,IN,201812,4,1,3651,775 -939,FR,IN,201812,4,1,428407,18879 -939,FR,IN,201812,4,1,2345,8 -939,FR,IN,201812,4,1,40123,259 -939,FR,IN,201812,4,1,11122,154 -939,FR,IN,201812,4,1,1761,451 -939,FR,IN,201812,4,1,854791,3610 -939,FR,IN,201812,4,1,21606,165 -939,FR,IN,201812,4,1,524592,19244 -939,FR,IN,201812,4,1,384131,16275 -939,FR,IN,201812,4,1,1301911,43833 -939,FR,IN,201812,4,1,42967,169 -939,FR,IN,201812,4,1,4900,190 -939,FR,IN,201812,4,1,148,0 -939,FR,IN,201812,4,1,21356,1090 -939,FR,IN,201812,4,1,6435,884 -939,FR,IN,201812,0,2,803,74 -939,FR,IN,201812,1,2,8057178,342768 -939,FR,IN,201812,1,2,41136,4564 -939,FR,IN,201812,1,2,253557,24890 -939,FR,IN,201812,1,2,35415,1121 -939,FR,IN,201812,1,2,445673,118295 -939,FR,IN,201812,1,2,80589,3005 -939,FR,IN,201812,1,2,26040,882 -939,FR,IN,201812,1,2,1002065,21220 -939,FR,IN,201812,1,2,1050,12 -939,FR,IN,201812,1,2,320203,16935 -939,FR,IN,201812,1,2,18528,485 -939,FR,IN,201812,1,2,69289,5936 -939,FR,IN,201812,1,2,285750,22783 -939,FR,IN,201812,1,2,3330108,381810 -939,FR,IN,201812,1,2,17116,2760 -939,FR,IN,201812,1,2,360581,13165 -939,FR,IN,201812,1,2,54722,8690 -939,FR,IN,201812,1,2,14000,7500 -939,FR,IN,201812,1,2,26028,24000 -939,FR,IN,201812,1,2,116001,14407 -939,FR,IN,201812,1,2,92700,144250 -939,FR,IN,201812,1,2,1302714,216396 -939,FR,IN,201812,1,2,29965,26780 -939,FR,IN,201812,1,2,486000,21470 -939,FR,IN,201812,1,2,93904,4940 -939,FR,IN,201812,1,2,89442,16445 -939,FR,IN,201812,3,2,1924885,125669 -939,FR,IN,201812,3,2,7062,27 -939,FR,IN,201812,3,2,30100,445 -939,FR,IN,201812,3,2,2618,75 -939,FR,IN,201812,3,2,436837,9425 -939,FR,IN,201812,3,2,1461,37 -939,FR,IN,201812,3,2,12904,1015 -939,FR,IN,201812,3,2,41277,4617 -939,FR,IN,201812,4,2,37125553,103088 -939,FR,IN,201812,4,2,100326,8575 -939,FR,IN,201812,4,2,1188264,9079 -939,FR,IN,201812,4,2,181557,2044 -939,FR,IN,201812,4,2,2806,800 -939,FR,IN,201812,4,2,16364,366 -939,FR,IN,201812,4,2,122112,580 -939,FR,IN,201812,4,2,3800,38 -939,FR,IN,201812,4,2,88707,563 -939,FR,IN,201812,4,2,232025,6569 -939,FR,IN,201812,4,2,289143,4045 -939,FR,IN,201812,4,2,10720,750 -939,FR,IN,201812,4,2,495274,5369 -939,FR,IN,201812,4,2,11746,1003 -939,FR,IN,201812,4,2,16617,208 -939,FR,IN,201812,4,2,38144,818 -939,FR,IN,201812,4,2,639,4 -939,FR,IN,201812,4,2,421801,9352 -939,FR,IN,201812,4,2,129074,4724 -939,FR,IN,201812,4,2,10844,510 -939,FR,IN,201812,4,2,4736579,51990 -939,FR,IN,201812,4,2,153147,2219 -939,FR,IN,201812,4,2,363646,3523 -939,FR,IN,201812,4,2,4206,79 -939,FR,IN,201812,4,2,26225,811 -939,FR,IN,201812,4,2,12674,24 -939,FR,IN,201812,4,2,920138,49520 -939,FR,IN,201812,4,2,22283,125 -939,FR,IN,201812,4,2,98456,541 -941,FR,IN,201812,1,1,217750,117480 -941,FR,IN,201812,1,1,29345,23570 -941,FR,IN,201812,1,1,152206,108015 -941,FR,IN,201812,1,1,68556,46304 -941,FR,IN,201812,1,1,11673,15119 -941,FR,IN,201812,1,1,22076,20203 -941,FR,IN,201812,1,1,25550,18180 -941,FR,IN,201812,1,1,241637,201971 -941,FR,IN,201812,3,1,1056,33 -941,FR,IN,201812,4,1,4330,800 -941,FR,IN,201812,4,1,350,12 -941,FR,IN,201812,1,2,2149,480 -941,FR,IN,201812,1,2,13,1 -941,FR,IN,201812,3,2,14327,729 -941,FR,IN,201812,3,2,122,1 -941,FR,IN,201812,4,2,83940,1000 -941,FR,IN,201812,4,2,1686,45 -941,FR,IN,201812,4,2,7685,100 -941,FR,IN,201812,4,2,419316,5544 -949,FR,IN,201812,0,1,255451,45019 -949,FR,IN,201812,1,1,543026,118188 -949,FR,IN,201812,1,1,9479,1529 -949,FR,IN,201812,1,1,80266,16061 -949,FR,IN,201812,1,1,12742,8029 -949,FR,IN,201812,1,1,106329,17601 -949,FR,IN,201812,1,1,19296,1624 -949,FR,IN,201812,1,1,3728,380 -949,FR,IN,201812,1,1,28964,8999 -949,FR,IN,201812,1,1,174892,31129 -949,FR,IN,201812,1,1,4093,3074 -949,FR,IN,201812,1,1,4837,453 -949,FR,IN,201812,1,1,24857,2970 -949,FR,IN,201812,1,1,144076,12265 -949,FR,IN,201812,1,1,13035,5703 -949,FR,IN,201812,1,1,2405,218 -949,FR,IN,201812,1,1,2331,129 -949,FR,IN,201812,1,1,15765,6707 -949,FR,IN,201812,1,1,764904,187929 -949,FR,IN,201812,1,1,6556,1981 -949,FR,IN,201812,1,1,25061,5972 -949,FR,IN,201812,1,1,1018,142 -949,FR,IN,201812,1,1,125829,43751 -949,FR,IN,201812,1,1,1042,82 -949,FR,IN,201812,1,1,61866,21651 -949,FR,IN,201812,1,1,66592,4704 -949,FR,IN,201812,1,1,9542,1482 -949,FR,IN,201812,1,1,217749,62683 -949,FR,IN,201812,1,1,761215,281441 -949,FR,IN,201812,1,1,1108,421 -949,FR,IN,201812,1,1,2688,1680 -949,FR,IN,201812,1,1,1510,298 -949,FR,IN,201812,1,1,234431,70216 -949,FR,IN,201812,1,1,63676,19310 -949,FR,IN,201812,1,1,146616,46083 -949,FR,IN,201812,1,1,29355,3961 -949,FR,IN,201812,1,1,10654,1124 -949,FR,IN,201812,1,1,8759,855 -949,FR,IN,201812,3,1,684971,57415 -949,FR,IN,201812,3,1,2429,259 -949,FR,IN,201812,3,1,1258,5 -949,FR,IN,201812,3,1,1142,270 -949,FR,IN,201812,3,1,4244,256 -949,FR,IN,201812,3,1,371,2 -949,FR,IN,201812,3,1,17836,667 -949,FR,IN,201812,3,1,3734,20 -949,FR,IN,201812,3,1,25222,2405 -949,FR,IN,201812,3,1,15,1 -949,FR,IN,201812,3,1,24294,11344 -949,FR,IN,201812,4,1,541726,17350 -949,FR,IN,201812,4,1,3219,80 -949,FR,IN,201812,4,1,124314,3308 -949,FR,IN,201812,4,1,20150,312 -949,FR,IN,201812,4,1,8943,79 -949,FR,IN,201812,4,1,1200,39 -949,FR,IN,201812,4,1,2489,31 -949,FR,IN,201812,4,1,15770,22 -949,FR,IN,201812,4,1,3401,246 -949,FR,IN,201812,4,1,326236,9457 -949,FR,IN,201812,4,1,429,5 -949,FR,IN,201812,4,1,508,114 -949,FR,IN,201812,4,1,95106,4349 -949,FR,IN,201812,4,1,229223,8359 -949,FR,IN,201812,4,1,470208,9454 -949,FR,IN,201812,4,1,2227,46 -949,FR,IN,201812,4,1,5247,1076 -949,FR,IN,201812,4,1,19274,705 -949,FR,IN,201812,4,1,548,21 -949,FR,IN,201812,4,1,388,6 -949,FR,IN,201812,5,1,14,0 -949,FR,IN,201812,0,2,100,3 -949,FR,IN,201812,1,2,378445,24927 -949,FR,IN,201812,1,2,4511,273 -949,FR,IN,201812,1,2,100151,5379 -949,FR,IN,201812,1,2,15740,337 -949,FR,IN,201812,1,2,6185,1061 -949,FR,IN,201812,1,2,45384,2298 -949,FR,IN,201812,1,2,7689,235 -949,FR,IN,201812,1,2,2727,532 -949,FR,IN,201812,1,2,173525,23724 -949,FR,IN,201812,1,2,18327,1457 -949,FR,IN,201812,1,2,125414,7011 -949,FR,IN,201812,1,2,790008,184975 -949,FR,IN,201812,1,2,104,0 -949,FR,IN,201812,1,2,137151,28692 -949,FR,IN,201812,1,2,123940,47246 -949,FR,IN,201812,1,2,61889,23067 -949,FR,IN,201812,1,2,200963,36677 -949,FR,IN,201812,1,2,222652,105901 -949,FR,IN,201812,1,2,27550,6700 -949,FR,IN,201812,1,2,207924,6023 -949,FR,IN,201812,1,2,3912,4016 -949,FR,IN,201812,3,2,68732,3900 -949,FR,IN,201812,3,2,1491,9 -949,FR,IN,201812,4,2,2020119,24824 -949,FR,IN,201812,4,2,46105,1358 -949,FR,IN,201812,4,2,340165,12907 -949,FR,IN,201812,4,2,20580,496 -949,FR,IN,201812,4,2,3914,2 -949,FR,IN,201812,4,2,7781,79 -949,FR,IN,201812,4,2,15410,640 -949,FR,IN,201812,4,2,8525,70 -949,FR,IN,201812,4,2,3764,1167 -949,FR,IN,201812,4,2,22566,265 -949,FR,IN,201812,4,2,39868,611 -949,FR,IN,201812,4,2,4826,129 -949,FR,IN,201812,4,2,410,30 -949,FR,IN,201812,4,2,2163655,17401 -949,FR,IN,201812,4,2,963,0 -949,FR,IN,201812,4,2,7384,300 -949,FR,IN,201812,4,2,18945,1130 -949,FR,IN,201812,4,2,63416,3639 -949,FR,IN,201812,4,2,14768,9 -949,FR,IN,201812,4,2,177215,19980 -949,FR,IN,201812,4,2,11415,54 -949,FR,IN,201812,4,2,40725,207 -949,FR,IN,201812,5,2,16,0 -951,FR,IN,201812,0,1,3513,332 -951,FR,IN,201812,1,1,17419,3870 -951,FR,IN,201812,1,1,7927,1241 -951,FR,IN,201812,1,1,18722,23989 -951,FR,IN,201812,1,1,34681,10466 -951,FR,IN,201812,1,1,12149,500 -951,FR,IN,201812,1,1,550,134 -951,FR,IN,201812,1,1,2825,267 -951,FR,IN,201812,1,1,6502,1177 -951,FR,IN,201812,1,1,126575,129473 -951,FR,IN,201812,1,1,16846,2282 -951,FR,IN,201812,1,1,18239,4929 -951,FR,IN,201812,3,1,737,62 -951,FR,IN,201812,3,1,9,0 -951,FR,IN,201812,4,1,361,39 -951,FR,IN,201812,4,1,46,1 -951,FR,IN,201812,4,1,227,0 -951,FR,IN,201812,4,1,327,9 -951,FR,IN,201812,1,2,21845,858 -951,FR,IN,201812,1,2,62042,13493 -951,FR,IN,201812,1,2,12505,2060 -951,FR,IN,201812,1,2,893638,65779 -951,FR,IN,201812,4,2,23500,869 -951,FR,IN,201812,4,2,7030,189 -951,FR,IN,201812,4,2,14854,490 -952,FR,IN,201812,0,1,6226454,1974 -952,FR,IN,201812,1,1,102908,34484 -952,FR,IN,201812,1,1,19,6 -952,FR,IN,201812,1,1,8031,1500 -952,FR,IN,201812,1,1,1553,921 -952,FR,IN,201812,1,1,125514,66420 -952,FR,IN,201812,1,1,242,90 -952,FR,IN,201812,1,1,4855,493 -952,FR,IN,201812,1,1,124,2 -952,FR,IN,201812,1,1,743,114 -952,FR,IN,201812,1,1,46513,21922 -952,FR,IN,201812,1,1,13885,20434 -952,FR,IN,201812,1,1,373908,192627 -952,FR,IN,201812,1,1,25982,277 -952,FR,IN,201812,1,1,2303,407 -952,FR,IN,201812,1,1,35272,2710 -952,FR,IN,201812,1,1,373177,213323 -952,FR,IN,201812,3,1,17263,1209 -952,FR,IN,201812,3,1,2691,295 -952,FR,IN,201812,3,1,20196,7 -952,FR,IN,201812,3,1,13,1 -952,FR,IN,201812,4,1,202770,3641 -952,FR,IN,201812,4,1,280079,129 -952,FR,IN,201812,4,1,6860,58 -952,FR,IN,201812,4,1,4772,68 -952,FR,IN,201812,4,1,89979,1 -952,FR,IN,201812,4,1,6846,226 -952,FR,IN,201812,4,1,25157,93 -952,FR,IN,201812,4,1,151,65 -952,FR,IN,201812,4,1,7097,144 -952,FR,IN,201812,4,1,525022,38192 -952,FR,IN,201812,1,2,114079,3792 -952,FR,IN,201812,1,2,30876,2056 -952,FR,IN,201812,1,2,44823,30 -952,FR,IN,201812,1,2,178518,92866 -952,FR,IN,201812,1,2,18682,5120 -952,FR,IN,201812,1,2,223621,126091 -952,FR,IN,201812,3,2,33697,1020 -952,FR,IN,201812,3,2,188881,143871 -952,FR,IN,201812,4,2,103962,2550 -952,FR,IN,201812,4,2,836,139 -952,FR,IN,201812,4,2,832,0 -952,FR,IN,201812,4,2,5790,1547 -952,FR,IN,201812,4,2,92574,8360 -952,FR,IN,201812,4,2,7260,89 -952,FR,IN,201812,4,2,172,11 -952,FR,IN,201812,4,2,22280,540 -952,FR,IN,201812,4,2,4986,662 -952,FR,IN,201812,4,2,2759,205 -952,FR,IN,201812,4,2,13390,2830 -952,FR,IN,201812,4,2,15999,7 -952,FR,IN,201812,4,2,137375,125 -961,FR,IN,201812,0,1,114364,4939 -961,FR,IN,201812,1,1,129883,14843 -961,FR,IN,201812,1,1,9952,1230 -961,FR,IN,201812,1,1,15368,1216 -961,FR,IN,201812,1,1,21480,4066 -961,FR,IN,201812,1,1,7330,850 -961,FR,IN,201812,1,1,247224,26855 -961,FR,IN,201812,1,1,16658,2021 -961,FR,IN,201812,1,1,29399,5033 -961,FR,IN,201812,1,1,90792,14312 -961,FR,IN,201812,1,1,191049,16290 -961,FR,IN,201812,1,1,17673,1095 -961,FR,IN,201812,3,1,56674,1250 -961,FR,IN,201812,3,1,4,0 -961,FR,IN,201812,3,1,6807,330 -961,FR,IN,201812,3,1,24,5 -961,FR,IN,201812,4,1,1260708,18692 -961,FR,IN,201812,4,1,520128,9218 -961,FR,IN,201812,4,1,10514,619 -961,FR,IN,201812,4,1,150,5 -961,FR,IN,201812,4,1,9302,396 -961,FR,IN,201812,4,1,8116,122 -961,FR,IN,201812,4,1,247066,4088 -961,FR,IN,201812,4,1,33281,444 -961,FR,IN,201812,4,1,428155,32484 -961,FR,IN,201812,4,1,16154,796 -961,FR,IN,201812,4,1,141636,6675 -961,FR,IN,201812,4,1,13447,708 -961,FR,IN,201812,1,2,30398,578 -961,FR,IN,201812,3,2,14,5 -961,FR,IN,201812,4,2,497261,5041 -961,FR,IN,201812,4,2,1048,50 -961,FR,IN,201812,4,2,93503,1802 -961,FR,IN,201812,4,2,15298,1950 -961,FR,IN,201812,4,2,15230,12 -961,FR,IN,201812,4,2,2820,30 -962,FR,IN,201812,0,1,420274,44428 -962,FR,IN,201812,1,1,142443,19925 -962,FR,IN,201812,1,1,9953,786 -962,FR,IN,201812,1,1,17963,2651 -962,FR,IN,201812,1,1,65787,3148 -962,FR,IN,201812,1,1,68092,1567 -962,FR,IN,201812,1,1,6148,3874 -962,FR,IN,201812,1,1,5529,1013 -962,FR,IN,201812,1,1,371638,43135 -962,FR,IN,201812,1,1,61858,8412 -962,FR,IN,201812,1,1,4950,1050 -962,FR,IN,201812,1,1,218703,42552 -962,FR,IN,201812,1,1,2740032,707658 -962,FR,IN,201812,1,1,385252,78583 -962,FR,IN,201812,1,1,479045,106445 -962,FR,IN,201812,1,1,173462,97483 -962,FR,IN,201812,1,1,3893,627 -962,FR,IN,201812,1,1,51791,16746 -962,FR,IN,201812,1,1,92730,18161 -962,FR,IN,201812,1,1,231930,68921 -962,FR,IN,201812,1,1,106325,29917 -962,FR,IN,201812,1,1,14621,11097 -962,FR,IN,201812,1,1,40603,5799 -962,FR,IN,201812,1,1,107812,45331 -962,FR,IN,201812,1,1,56525,19070 -962,FR,IN,201812,1,1,2248067,691324 -962,FR,IN,201812,1,1,27662,2192 -962,FR,IN,201812,1,1,49002,19849 -962,FR,IN,201812,1,1,1525084,464487 -962,FR,IN,201812,1,1,61584,23662 -962,FR,IN,201812,1,1,524524,216760 -962,FR,IN,201812,1,1,23502,15385 -962,FR,IN,201812,1,1,113059,62292 -962,FR,IN,201812,3,1,361068,5737 -962,FR,IN,201812,3,1,10079,1923 -962,FR,IN,201812,3,1,3897,115 -962,FR,IN,201812,3,1,11153,356 -962,FR,IN,201812,3,1,754,518 -962,FR,IN,201812,3,1,737,24 -962,FR,IN,201812,3,1,1713,66 -962,FR,IN,201812,3,1,1447,59 -962,FR,IN,201812,3,1,3880,164 -962,FR,IN,201812,3,1,607,19 -962,FR,IN,201812,3,1,506,60 -962,FR,IN,201812,3,1,30045,4994 -962,FR,IN,201812,3,1,2376,354 -962,FR,IN,201812,3,1,3735,1692 -962,FR,IN,201812,3,1,193486,52890 -962,FR,IN,201812,4,1,498293,23097 -962,FR,IN,201812,4,1,180244,1080 -962,FR,IN,201812,4,1,81768,283 -962,FR,IN,201812,4,1,1244,31 -962,FR,IN,201812,4,1,658,75 -962,FR,IN,201812,4,1,56893,158 -962,FR,IN,201812,4,1,6467,206 -962,FR,IN,201812,4,1,23911,248 -962,FR,IN,201812,4,1,15110,995 -962,FR,IN,201812,4,1,52862,1827 -962,FR,IN,201812,4,1,292047,6305 -962,FR,IN,201812,4,1,18907,945 -962,FR,IN,201812,4,1,462307,29896 -962,FR,IN,201812,4,1,24568,180 -962,FR,IN,201812,4,1,29422,927 -962,FR,IN,201812,4,1,31,1 -962,FR,IN,201812,4,1,10241,894 -962,FR,IN,201812,4,1,5706,518 -962,FR,IN,201812,4,1,2681,69 -962,FR,IN,201812,4,1,8386,598 -962,FR,IN,201812,4,1,2727,178 -962,FR,IN,201812,4,1,3141,340 -962,FR,IN,201812,0,2,836,2 -962,FR,IN,201812,1,2,105594,6344 -962,FR,IN,201812,1,2,19460,1301 -962,FR,IN,201812,1,2,1995,115 -962,FR,IN,201812,1,2,31426,1607 -962,FR,IN,201812,1,2,200482,29161 -962,FR,IN,201812,1,2,18308,10819 -962,FR,IN,201812,1,2,98645,21393 -962,FR,IN,201812,1,2,222456,66384 -962,FR,IN,201812,3,2,132890,2128 -962,FR,IN,201812,3,2,40607,23811 -962,FR,IN,201812,4,2,381987,12216 -962,FR,IN,201812,4,2,19188,369 -962,FR,IN,201812,4,2,8551,881 -962,FR,IN,201812,4,2,9410,171 -962,FR,IN,201812,4,2,289,1 -962,FR,IN,201812,4,2,98740,1174 -962,FR,IN,201812,4,2,11740,215 -962,FR,IN,201812,4,2,73966,12290 -962,FR,IN,201812,4,2,22098,51 -962,FR,IN,201812,4,2,9620,167 -963,FR,IN,201812,0,1,19589536,880051 -963,FR,IN,201812,1,1,2185074,94075 -963,FR,IN,201812,1,1,25645,2098 -963,FR,IN,201812,1,1,69221,5573 -963,FR,IN,201812,1,1,268519,11004 -963,FR,IN,201812,1,1,55282,2857 -963,FR,IN,201812,1,1,104828,4487 -963,FR,IN,201812,1,1,281,88 -963,FR,IN,201812,1,1,18272,830 -963,FR,IN,201812,1,1,40452,975 -963,FR,IN,201812,1,1,68,4 -963,FR,IN,201812,1,1,2053860,114284 -963,FR,IN,201812,1,1,98,8 -963,FR,IN,201812,1,1,453663,22445 -963,FR,IN,201812,1,1,35830,1314 -963,FR,IN,201812,1,1,242171,7190 -963,FR,IN,201812,1,1,10712,1949 -963,FR,IN,201812,1,1,94110,13388 -963,FR,IN,201812,1,1,4436966,268302 -963,FR,IN,201812,1,1,72713,13257 -963,FR,IN,201812,1,1,221598,27653 -963,FR,IN,201812,1,1,9950,301 -963,FR,IN,201812,1,1,103839,6650 -963,FR,IN,201812,1,1,325207,16134 -963,FR,IN,201812,1,1,344793,16359 -963,FR,IN,201812,1,1,1141913,58014 -963,FR,IN,201812,1,1,106315,8538 -963,FR,IN,201812,1,1,166715,12802 -963,FR,IN,201812,1,1,7519,1293 -963,FR,IN,201812,1,1,610282,21197 -963,FR,IN,201812,1,1,35936,992 -963,FR,IN,201812,1,1,8287394,526499 -963,FR,IN,201812,1,1,7495,1125 -963,FR,IN,201812,1,1,6358,928 -963,FR,IN,201812,1,1,3107934,213728 -963,FR,IN,201812,1,1,221713,18202 -963,FR,IN,201812,1,1,472137,35485 -963,FR,IN,201812,1,1,300225,19921 -963,FR,IN,201812,1,1,34709,5117 -963,FR,IN,201812,1,1,63382,3568 -963,FR,IN,201812,1,1,55350,4879 -963,FR,IN,201812,3,1,793503,16172 -963,FR,IN,201812,3,1,87232,485 -963,FR,IN,201812,3,1,117664,626 -963,FR,IN,201812,3,1,59198,567 -963,FR,IN,201812,3,1,35,0 -963,FR,IN,201812,3,1,129833,756 -963,FR,IN,201812,3,1,18940,97 -963,FR,IN,201812,3,1,93407,539 -963,FR,IN,201812,3,1,28620,998 -963,FR,IN,201812,3,1,84212,9664 -963,FR,IN,201812,3,1,3043,1378 -963,FR,IN,201812,4,1,3754645,146889 -963,FR,IN,201812,4,1,69951,1836 -963,FR,IN,201812,4,1,859215,15385 -963,FR,IN,201812,4,1,89216,478 -963,FR,IN,201812,4,1,2352,63 -963,FR,IN,201812,4,1,87652,1202 -963,FR,IN,201812,4,1,32052,281 -963,FR,IN,201812,4,1,108,0 -963,FR,IN,201812,4,1,117501,2444 -963,FR,IN,201812,4,1,200177,5353 -963,FR,IN,201812,4,1,71324,1667 -963,FR,IN,201812,4,1,40265,2573 -963,FR,IN,201812,4,1,289300,5865 -963,FR,IN,201812,4,1,449558,11577 -963,FR,IN,201812,4,1,424827,13614 -963,FR,IN,201812,4,1,8551,688 -963,FR,IN,201812,4,1,4609,380 -963,FR,IN,201812,4,1,444301,24284 -963,FR,IN,201812,4,1,2165018,68816 -963,FR,IN,201812,4,1,358329,13467 -963,FR,IN,201812,4,1,5447193,145639 -963,FR,IN,201812,4,1,20085,207 -963,FR,IN,201812,4,1,7820,230 -963,FR,IN,201812,4,1,130409,7370 -963,FR,IN,201812,4,1,89109,1842 -963,FR,IN,201812,4,1,48226,576 -963,FR,IN,201812,4,1,3766,143 -963,FR,IN,201812,4,1,3876,57 -963,FR,IN,201812,4,1,164400,5701 -963,FR,IN,201812,4,1,64650,2951 -963,FR,IN,201812,0,2,76,2 -963,FR,IN,201812,1,2,27097,4931 -963,FR,IN,201812,1,2,9984,414 -963,FR,IN,201812,1,2,1000,25441 -963,FR,IN,201812,1,2,1699,85 -963,FR,IN,201812,3,2,626,15 -963,FR,IN,201812,3,2,7249,1 -963,FR,IN,201812,4,2,1075173,6179 -963,FR,IN,201812,4,2,345,31 -963,FR,IN,201812,4,2,9,1 -963,FR,IN,201812,4,2,5459,110 -963,FR,IN,201812,4,2,30269,142 -963,FR,IN,201812,4,2,11970,130 -963,FR,IN,201812,4,2,21125,1315 -963,FR,IN,201812,4,2,8846,132 -963,FR,IN,201812,4,2,1208,20 -971,FR,IN,201812,0,1,2529,151 -971,FR,IN,201812,1,1,26387,9787 -971,FR,IN,201812,1,1,12323,1283 -971,FR,IN,201812,1,1,274,12 -971,FR,IN,201812,1,1,2266,1325 -971,FR,IN,201812,1,1,520,25 -971,FR,IN,201812,1,1,37828,8877 -971,FR,IN,201812,1,1,7509,1791 -971,FR,IN,201812,1,1,15108,1747 -971,FR,IN,201812,1,1,842096,336908 -971,FR,IN,201812,1,1,21803,1758 -971,FR,IN,201812,1,1,12774,5080 -971,FR,IN,201812,1,1,68187,29617 -971,FR,IN,201812,1,1,642074,207370 -971,FR,IN,201812,1,1,10127,9900 -971,FR,IN,201812,1,1,25059,7095 -971,FR,IN,201812,1,1,1458142,464890 -971,FR,IN,201812,1,1,413723,133844 -971,FR,IN,201812,1,1,87559,23436 -971,FR,IN,201812,1,1,57681,17926 -971,FR,IN,201812,1,1,43,30 -971,FR,IN,201812,1,1,2239,217 -971,FR,IN,201812,1,1,34824,10988 -971,FR,IN,201812,1,1,50350,19942 -971,FR,IN,201812,3,1,37686,958 -971,FR,IN,201812,3,1,727,30 -971,FR,IN,201812,4,1,7183,13 -971,FR,IN,201812,4,1,33543,978 -971,FR,IN,201812,4,1,1111,0 -971,FR,IN,201812,4,1,465,7 -971,FR,IN,201812,4,1,629,109 -971,FR,IN,201812,4,1,2630,366 -971,FR,IN,201812,4,1,23659,546 -971,FR,IN,201812,4,1,23928,1781 -971,FR,IN,201812,4,1,117,15 -971,FR,IN,201812,1,2,106233,6212 -971,FR,IN,201812,1,2,2165,440 -971,FR,IN,201812,1,2,18817,1066 -971,FR,IN,201812,1,2,43067,1824 -971,FR,IN,201812,1,2,3681,286 -971,FR,IN,201812,1,2,59226,2862 -971,FR,IN,201812,1,2,18362,846 -971,FR,IN,201812,1,2,55858,2531 -971,FR,IN,201812,1,2,2339,27 -971,FR,IN,201812,1,2,543202,137914 -971,FR,IN,201812,1,2,26887,4214 -971,FR,IN,201812,1,2,10207,42224 -971,FR,IN,201812,1,2,22202,1832 -971,FR,IN,201812,1,2,26961,4286 -971,FR,IN,201812,1,2,237807,15859 -971,FR,IN,201812,3,2,7421,565 -971,FR,IN,201812,3,2,27463,1114 -971,FR,IN,201812,3,2,132,3 -971,FR,IN,201812,4,2,376960,9340 -971,FR,IN,201812,4,2,180,9 -971,FR,IN,201812,4,2,26636,406 -971,FR,IN,201812,4,2,647,105 -971,FR,IN,201812,4,2,2196,24 -971,FR,IN,201812,4,2,18569,258 -971,FR,IN,201812,4,2,12553,256 -971,FR,IN,201812,4,2,42052,757 -971,FR,IN,201812,4,2,327,10 -971,FR,IN,201812,4,2,6157,332 -971,FR,IN,201812,4,2,68437,1476 -971,FR,IN,201812,4,2,1769,60 -971,FR,IN,201812,4,2,331405,9063 -971,FR,IN,201812,4,2,1254,40 -971,FR,IN,201812,4,2,2762,8 -971,FR,IN,201812,4,2,163154,5160 -971,FR,IN,201812,4,2,8990,106 -971,FR,IN,201812,4,2,17473,56 -972,FR,IN,201812,0,1,815,31 -972,FR,IN,201812,1,1,405,37 -972,FR,IN,201812,4,1,187,1 -972,FR,IN,201812,4,1,293,27 -972,FR,IN,201812,4,1,947,54 -972,FR,IN,201812,1,2,18488,5071 -972,FR,IN,201812,1,2,320952,188868 -972,FR,IN,201812,1,2,13853,4437 -972,FR,IN,201812,1,2,207329,71272 -972,FR,IN,201812,1,2,233482,284914 -972,FR,IN,201812,3,2,52633,24948 -972,FR,IN,201812,3,2,54303,24798 -972,FR,IN,201812,4,2,935,354 -972,FR,IN,201812,4,2,1206,553 -972,FR,IN,201812,4,2,4468,430 -972,FR,IN,201812,4,2,1333,1 -972,FR,IN,201812,4,2,10298,5010 -973,FR,IN,201812,0,1,43340,57351 -973,FR,IN,201812,1,1,50731,41698 -973,FR,IN,201812,1,1,38596,50458 -973,FR,IN,201812,1,1,701,117 -973,FR,IN,201812,1,1,1699,69 -973,FR,IN,201812,1,1,5081,1256 -973,FR,IN,201812,1,1,46809,42463 -973,FR,IN,201812,1,1,15888,3549 -973,FR,IN,201812,1,1,29027,2687 -973,FR,IN,201812,1,1,15086,10217 -973,FR,IN,201812,1,1,18928,4674 -973,FR,IN,201812,3,1,3559,219 -973,FR,IN,201812,4,1,41072,4897 -973,FR,IN,201812,4,1,1689,204 -973,FR,IN,201812,4,1,373,54 -973,FR,IN,201812,4,1,130,3 -973,FR,IN,201812,4,1,5522,953 -973,FR,IN,201812,4,1,864,32 -973,FR,IN,201812,4,1,80,39 -973,FR,IN,201812,4,1,2977,93 -973,FR,IN,201812,4,1,44292,3973 -973,FR,IN,201812,4,1,3453,147 -973,FR,IN,201812,1,2,19835,1899 -973,FR,IN,201812,1,2,374,24 -973,FR,IN,201812,1,2,5789,842 -973,FR,IN,201812,1,2,9911,2555 -973,FR,IN,201812,1,2,270,30 -973,FR,IN,201812,1,2,2598,849 -973,FR,IN,201812,1,2,26629,20490 -973,FR,IN,201812,1,2,17914,34101 -973,FR,IN,201812,4,2,64132,7568 -973,FR,IN,201812,4,2,3249,179 -973,FR,IN,201812,4,2,6883,3 -973,FR,IN,201812,4,2,24,3 -973,FR,IN,201812,4,2,2149,500 -973,FR,IN,201812,4,2,6279,68 -974,FR,IN,201812,0,1,1228,111 -974,FR,IN,201812,1,1,6687,469 -974,FR,IN,201812,1,1,9155,3825 -974,FR,IN,201812,1,1,4989,1540 -974,FR,IN,201812,1,1,22,7 -974,FR,IN,201812,1,1,7038,1407 -974,FR,IN,201812,1,1,97484,46519 -974,FR,IN,201812,1,1,9631,1590 -974,FR,IN,201812,1,1,25830,5311 -974,FR,IN,201812,1,1,59103,9613 -974,FR,IN,201812,1,1,16,0 -974,FR,IN,201812,3,1,11147,426 -974,FR,IN,201812,3,1,325,15 -974,FR,IN,201812,4,1,14791,1702 -974,FR,IN,201812,4,1,1696,129 -974,FR,IN,201812,4,1,565,72 -974,FR,IN,201812,4,1,314,7 -974,FR,IN,201812,4,1,309,7 -974,FR,IN,201812,4,1,590,45 -974,FR,IN,201812,4,1,980,51 -974,FR,IN,201812,4,1,316,241 -974,FR,IN,201812,4,1,14970,367 -974,FR,IN,201812,4,1,4931,473 -974,FR,IN,201812,4,1,203,7 -974,FR,IN,201812,0,2,1224,114 -974,FR,IN,201812,1,2,179,97 -974,FR,IN,201812,1,2,348,25 -974,FR,IN,201812,3,2,1709,113 -974,FR,IN,201812,3,2,31,1 -974,FR,IN,201812,4,2,79680,833 -974,FR,IN,201812,4,2,9379,47 -974,FR,IN,201812,4,2,235,2 -974,FR,IN,201812,4,2,5899,0 -974,FR,IN,201812,4,2,5937,246 -974,FR,IN,201812,4,2,15023,280 -974,FR,IN,201812,4,2,2780,36 -974,FR,IN,201812,4,2,7851,179 -975,FR,IN,201812,0,1,83167,11542 -975,FR,IN,201812,1,1,203882,43978 -975,FR,IN,201812,1,1,438,170 -975,FR,IN,201812,1,1,1220,500 -975,FR,IN,201812,1,1,10177,3226 -975,FR,IN,201812,1,1,3115,542 -975,FR,IN,201812,1,1,142855,17620 -975,FR,IN,201812,1,1,47892,11749 -975,FR,IN,201812,1,1,838,305 -975,FR,IN,201812,1,1,20494,8029 -975,FR,IN,201812,1,1,1786363,549915 -975,FR,IN,201812,1,1,343694,91416 -975,FR,IN,201812,1,1,186957,35004 -975,FR,IN,201812,1,1,48893,7326 -975,FR,IN,201812,1,1,15433,2896 -975,FR,IN,201812,1,1,19666,3071 -975,FR,IN,201812,1,1,8345,1262 -975,FR,IN,201812,1,1,46507,13850 -975,FR,IN,201812,1,1,24562,11864 -975,FR,IN,201812,1,1,246698,60646 -975,FR,IN,201812,1,1,19412,3596 -975,FR,IN,201812,1,1,1827165,557381 -975,FR,IN,201812,1,1,639672,172518 -975,FR,IN,201812,1,1,1123779,289610 -975,FR,IN,201812,1,1,12607,2040 -975,FR,IN,201812,1,1,142781,26225 -975,FR,IN,201812,1,1,39003,11363 -975,FR,IN,201812,1,1,66512,2875 -975,FR,IN,201812,3,1,54575,2622 -975,FR,IN,201812,3,1,729,117 -975,FR,IN,201812,3,1,2871,907 -975,FR,IN,201812,3,1,989,164 -975,FR,IN,201812,3,1,19584,3814 -975,FR,IN,201812,3,1,4259,231 -975,FR,IN,201812,3,1,152475,99805 -975,FR,IN,201812,4,1,25871,1669 -975,FR,IN,201812,4,1,11941,215 -975,FR,IN,201812,4,1,4503,193 -975,FR,IN,201812,4,1,83,1 -975,FR,IN,201812,4,1,7609,831 -975,FR,IN,201812,4,1,6244,89 -975,FR,IN,201812,4,1,3779,240 -975,FR,IN,201812,4,1,54332,2386 -975,FR,IN,201812,4,1,2090,200 -975,FR,IN,201812,4,1,60,4 -975,FR,IN,201812,1,2,110573,8240 -975,FR,IN,201812,1,2,11659,685 -975,FR,IN,201812,1,2,2250,363 -975,FR,IN,201812,1,2,426202,8347 -975,FR,IN,201812,1,2,3758,305 -975,FR,IN,201812,3,2,8329,174 -975,FR,IN,201812,4,2,47119,148 -975,FR,IN,201812,4,2,1391,55 -975,FR,IN,201812,4,2,4749,42 -975,FR,IN,201812,4,2,291240,3070 -975,FR,IN,201812,4,2,70207,5420 -976,FR,IN,201812,0,1,1802,1570 -976,FR,IN,201812,1,1,100511,10148 -976,FR,IN,201812,1,1,971,253 -976,FR,IN,201812,1,1,834,265 -976,FR,IN,201812,1,1,1134,166 -976,FR,IN,201812,1,1,15,5 -976,FR,IN,201812,1,1,2954,627 -976,FR,IN,201812,1,1,74809,26314 -976,FR,IN,201812,1,1,29810,7517 -976,FR,IN,201812,1,1,3858,420 -976,FR,IN,201812,1,1,4002,960 -976,FR,IN,201812,1,1,56965,14395 -976,FR,IN,201812,1,1,8592,1741 -976,FR,IN,201812,1,1,44549,14031 -976,FR,IN,201812,1,1,4776,520 -976,FR,IN,201812,1,1,292,43 -976,FR,IN,201812,1,1,5743,1210 -976,FR,IN,201812,3,1,17082,4226 -976,FR,IN,201812,4,1,5652,378 -976,FR,IN,201812,4,1,708,87 -976,FR,IN,201812,4,1,160,4 -976,FR,IN,201812,4,1,440,13 -976,FR,IN,201812,4,1,119,8 -976,FR,IN,201812,4,1,258,15 -976,FR,IN,201812,4,1,279,25 -976,FR,IN,201812,4,1,1928,13 -976,FR,IN,201812,4,1,98,9 -976,FR,IN,201812,4,1,25400,610 -976,FR,IN,201812,4,1,6518,643 -976,FR,IN,201812,4,1,199,7 -976,FR,IN,201812,1,2,105833,14974 -976,FR,IN,201812,1,2,59188,7332 -976,FR,IN,201812,1,2,4745,21597 -976,FR,IN,201812,3,2,158,0 -976,FR,IN,201812,4,2,624,11 -976,FR,IN,201812,4,2,9053,215 -976,FR,IN,201812,4,2,406,25 -979,FR,IN,201812,0,1,93304,14885 -979,FR,IN,201812,1,1,68004,8689 -979,FR,IN,201812,1,1,314,21 -979,FR,IN,201812,1,1,8452,1192 -979,FR,IN,201812,1,1,30160,1730 -979,FR,IN,201812,1,1,10298,290 -979,FR,IN,201812,1,1,147,46 -979,FR,IN,201812,1,1,2979,2 -979,FR,IN,201812,1,1,104872,52678 -979,FR,IN,201812,1,1,93366,17640 -979,FR,IN,201812,1,1,36986,3568 -979,FR,IN,201812,1,1,121753,7922 -979,FR,IN,201812,1,1,16735,650 -979,FR,IN,201812,1,1,16666,2427 -979,FR,IN,201812,1,1,623374,140307 -979,FR,IN,201812,1,1,56665,28112 -979,FR,IN,201812,1,1,45049,8298 -979,FR,IN,201812,1,1,111333,26962 -979,FR,IN,201812,1,1,1802,50 -979,FR,IN,201812,1,1,1571,109 -979,FR,IN,201812,1,1,4879,138 -979,FR,IN,201812,1,1,12188,2011 -979,FR,IN,201812,1,1,84227,46611 -979,FR,IN,201812,1,1,10139,14921 -979,FR,IN,201812,1,1,3585984,286005 -979,FR,IN,201812,1,1,18531,1194 -979,FR,IN,201812,1,1,2883824,130162 -979,FR,IN,201812,1,1,6455,751 -979,FR,IN,201812,1,1,1435,21 -979,FR,IN,201812,1,1,43,3 -979,FR,IN,201812,1,1,10,0 -979,FR,IN,201812,1,1,2759,2068 -979,FR,IN,201812,3,1,546177,16806 -979,FR,IN,201812,3,1,154,0 -979,FR,IN,201812,3,1,14995,42 -979,FR,IN,201812,3,1,4920,110 -979,FR,IN,201812,3,1,1248903,34617 -979,FR,IN,201812,3,1,3690,7 -979,FR,IN,201812,3,1,25,0 -979,FR,IN,201812,3,1,100940,34375 -979,FR,IN,201812,4,1,5104139,12719 -979,FR,IN,201812,4,1,536,20 -979,FR,IN,201812,4,1,864966,3894 -979,FR,IN,201812,4,1,42902,534 -979,FR,IN,201812,4,1,6414,270 -979,FR,IN,201812,4,1,6456,50 -979,FR,IN,201812,4,1,117273,1124 -979,FR,IN,201812,4,1,16159,87 -979,FR,IN,201812,4,1,272543,4746 -979,FR,IN,201812,4,1,53807,550 -979,FR,IN,201812,4,1,4916,50 -979,FR,IN,201812,4,1,1398374,3775 -979,FR,IN,201812,4,1,4774,225 -979,FR,IN,201812,4,1,956,506 -979,FR,IN,201812,4,1,299015,1050 -979,FR,IN,201812,4,1,3165404,13771 -979,FR,IN,201812,4,1,1478,72 -979,FR,IN,201812,4,1,3236114,28866 -979,FR,IN,201812,4,1,21417,185 -979,FR,IN,201812,4,1,44,0 -979,FR,IN,201812,4,1,4123,217 -979,FR,IN,201812,4,1,1081,10 -979,FR,IN,201812,4,1,3804,148 -979,FR,IN,201812,4,1,18464,557 -979,FR,IN,201812,5,1,8,0 -979,FR,IN,201812,0,2,4071,17 -979,FR,IN,201812,1,2,556922,57546 -979,FR,IN,201812,1,2,28775,1346 -979,FR,IN,201812,1,2,1300,22 -979,FR,IN,201812,1,2,7436,368 -979,FR,IN,201812,1,2,73249,5993 -979,FR,IN,201812,1,2,61815,3475 -979,FR,IN,201812,1,2,17954,687 -979,FR,IN,201812,1,2,1149333,193038 -979,FR,IN,201812,1,2,25713,3711 -979,FR,IN,201812,1,2,36305,1464 -979,FR,IN,201812,1,2,45108,5707 -979,FR,IN,201812,1,2,41240,3415 -979,FR,IN,201812,1,2,602838,52435 -979,FR,IN,201812,1,2,68406,16364 -979,FR,IN,201812,3,2,128010,1834 -979,FR,IN,201812,3,2,9972,35 -979,FR,IN,201812,3,2,948,78 -979,FR,IN,201812,3,2,2225,23 -979,FR,IN,201812,3,2,300,13 -979,FR,IN,201812,4,2,8058921,59802 -979,FR,IN,201812,4,2,30099,366 -979,FR,IN,201812,4,2,388401,1076 -979,FR,IN,201812,4,2,10858,72 -979,FR,IN,201812,4,2,31,0 -979,FR,IN,201812,4,2,15,1 -979,FR,IN,201812,4,2,41120,836 -979,FR,IN,201812,4,2,555872,2017 -979,FR,IN,201812,4,2,713,35 -979,FR,IN,201812,4,2,101238,598 -979,FR,IN,201812,4,2,3200,12 -979,FR,IN,201812,4,2,32408,100 -979,FR,IN,201812,4,2,272703,2081 -979,FR,IN,201812,4,2,83900,7542 -979,FR,IN,201812,4,2,63668,319 -979,FR,IN,201812,4,2,15532,356 -979,FR,IN,201812,4,2,754800,6049 -979,FR,IN,201812,4,2,1109089,11422 -979,FR,IN,201812,4,2,15955,2 -979,FR,IN,201812,4,2,3153612,17703 -979,FR,IN,201812,4,2,6193,100 -979,FR,IN,201812,4,2,7430,57 -979,FR,IN,201812,4,2,90396,2280 -979,FR,IN,201812,4,2,7151,3 -979,FR,IN,201812,4,2,144718,8652 -979,FR,IN,201812,4,2,107757,1341 -979,FR,IN,201812,4,2,5599,1244 -979,FR,IN,201812,4,2,11930,92 -979,FR,IN,201812,4,2,554349,22090 -979,FR,IN,201812,4,2,117330,251 -979,FR,IN,201812,4,2,314990,748 -979,FR,IN,201812,5,2,2166,16 -999,FR,IN,201812,0,1,4278,0 -999,FR,IN,201812,1,1,795,0 -999,FR,IN,201812,1,1,1295,0 -999,FR,IN,201812,1,1,23500,0 -999,FR,IN,201812,1,1,3900,0 -999,FR,IN,201812,1,1,60130,0 -999,FR,IN,201812,1,1,3569,0 -999,FR,IN,201812,1,1,17885,0 -999,FR,IN,201812,3,1,4532,97 -999,FR,IN,201812,4,1,3774,52 -999,FR,IN,201812,4,1,216,0 -999,FR,IN,201812,4,1,6897,400 -999,FR,IN,201812,4,1,2375,0 -999,FR,IN,201812,4,1,251,3 -999,FR,IN,201812,4,1,896,0 -999,FR,IN,201812,4,1,30573,0 -999,FR,IN,201812,5,1,1040,0 -999,FR,IN,201812,1,2,145550,16578 -999,FR,IN,201812,1,2,10532,1800 -999,FR,IN,201812,1,2,5712,400 -999,FR,IN,201812,1,2,28004,1003 -999,FR,IN,201812,1,2,152083,7773 -999,FR,IN,201812,1,2,1906,30 -999,FR,IN,201812,1,2,4096934,2300054 -999,FR,IN,201812,1,2,89303,43750 -999,FR,IN,201812,1,2,393368,244900 -999,FR,IN,201812,1,2,276310,232800 -999,FR,IN,201812,1,2,87184,45000 -999,FR,IN,201812,1,2,428681,124209 -999,FR,IN,201812,1,2,90407,16799 -999,FR,IN,201812,1,2,27690,8000 -999,FR,IN,201812,1,2,298927,128750 -999,FR,IN,201812,1,2,1310175,585623 -999,FR,IN,201812,1,2,2112818,2770310 -999,FR,IN,201812,1,2,128300,14400 -999,FR,IN,201812,1,2,17985,25200 -999,FR,IN,201812,1,2,170190,65203 -999,FR,IN,201812,1,2,271143,48000 -999,FR,IN,201812,1,2,1168,1200 -999,FR,IN,201812,1,2,242944,69800 -999,FR,IN,201812,3,2,23245,4825 -999,FR,IN,201812,3,2,17893,4500 -999,FR,IN,201812,3,2,45250,7361 -999,FR,IN,201812,3,2,34619,40220 -999,FR,IN,201812,3,2,227281,10650 -999,FR,IN,201812,4,2,3087910,50753 -999,FR,IN,201812,4,2,4916,0 -999,FR,IN,201812,4,2,26420,314 -999,FR,IN,201812,4,2,8232,313 -999,FR,IN,201812,4,2,900460,276 -999,FR,IN,201812,4,2,44482,350 -999,FR,IN,201812,4,2,8945,210 -999,FR,IN,201812,4,2,6330,678 -999,FR,IN,201812,4,2,2934,151 -999,FR,IN,201812,4,2,624721,1614 -999,FR,IN,201812,4,2,8994,87 -999,FR,IN,201812,4,2,1008,9 -999,FR,IN,201812,4,2,5288,360 -999,FR,IN,201812,4,2,53532,2020 -999,FR,IN,201812,4,2,3059,1 -001,FR,BD,201812,4,2,42420,355 -001,FR,BD,201812,4,2,176486,2176 -001,FR,BD,201812,4,2,38495,538 -031,FR,BD,201812,4,1,2280,731 -031,FR,BD,201812,4,1,2073,575 -035,FR,BD,201812,4,1,3489,1327 -035,FR,BD,201812,4,1,1316,365 -039,FR,BD,201812,4,1,21415,8358 -039,FR,BD,201812,4,1,9200,2590 -045,FR,BD,201812,1,2,347037,75203 -099,FR,BD,201812,1,2,75482,4000 -099,FR,BD,201812,4,2,1161,200 -112,FR,BD,201812,4,2,840,400 -128,FR,BD,201812,1,1,10995,20400 -128,FR,BD,201812,1,1,20399,40833 -133,FR,BD,201812,4,1,184,90 -133,FR,BD,201812,4,2,4046,927 -136,FR,BD,201812,1,2,7179,1117 -139,FR,BD,201812,1,2,80637,18875 -139,FR,BD,201812,1,2,357068,109100 -139,FR,BD,201812,1,2,42907,18000 -139,FR,BD,201812,4,2,4,0 -139,FR,BD,201812,4,2,9481,372 -142,FR,BD,201812,1,1,89298,14104 -142,FR,BD,201812,1,1,129038,13788 -142,FR,BD,201812,1,1,510148,61600 -142,FR,BD,201812,1,1,78795,8100 -142,FR,BD,201812,1,1,71054,11256 -142,FR,BD,201812,1,1,161121,15368 -142,FR,BD,201812,1,1,543939,54299 -142,FR,BD,201812,1,1,89288,16350 -144,FR,BD,201812,1,2,350856,225000 -144,FR,BD,201812,1,2,422330,274925 -147,FR,BD,201812,1,2,48670,4752 -147,FR,BD,201812,1,2,36310,25706 -166,FR,BD,201812,4,1,2463,1095 -166,FR,BD,201812,1,2,9731,1350 -179,FR,BD,201812,1,2,29289,8630 -179,FR,BD,201812,1,2,11970,3870 -179,FR,BD,201812,1,2,57025,20000 -179,FR,BD,201812,1,2,111600,30000 -182,FR,BD,201812,3,2,4600,500 -182,FR,BD,201812,4,2,2310,110 -341,FR,BD,201812,1,2,4152,3000 -341,FR,BD,201812,1,2,6782,9600 -341,FR,BD,201812,1,2,20319,14450 -341,FR,BD,201812,4,2,906,100 -341,FR,BD,201812,4,2,997,405 -551,FR,BD,201812,1,2,56798,6377 -551,FR,BD,201812,4,2,3455,1350 -568,FR,BD,201812,4,1,3669,64 -568,FR,BD,201812,4,1,5867,450 -568,FR,BD,201812,4,2,13,0 -612,FR,BD,201812,1,2,11500,50000 -614,FR,BD,201812,1,2,33159,122840 -614,FR,BD,201812,1,2,10412,48000 -621,FR,BD,201812,4,2,288,22 -819,FR,BD,201812,1,2,4550,48000 -819,FR,BD,201812,1,2,625,500 -819,FR,BD,201812,1,2,40704,40000 -819,FR,BD,201812,3,2,2275,24000 -819,FR,BD,201812,3,2,4550,48000 -819,FR,BD,201812,4,2,1740,100 -820,FR,BD,201812,1,2,41108,80000 -820,FR,BD,201812,1,2,12906,20000 -891,FR,BD,201812,1,2,113838,76320 -891,FR,BD,201812,1,2,12375,10500 -891,FR,BD,201812,1,2,33198,22650 -891,FR,BD,201812,4,2,17,0 -891,FR,BD,201812,4,2,1119,25 -891,FR,BD,201812,4,2,57914,1984 -892,FR,BD,201812,1,2,49275,25955 -892,FR,BD,201812,1,2,30005,22940 -892,FR,BD,201812,1,2,29690,20940 -892,FR,BD,201812,4,2,6251,106 -892,FR,BD,201812,4,2,605,7 -893,FR,BD,201812,4,1,54000,2 -893,FR,BD,201812,1,2,334789,8750 -893,FR,BD,201812,1,2,127529,6355 -893,FR,BD,201812,1,2,251770,64418 -893,FR,BD,201812,1,2,2291,2400 -893,FR,BD,201812,1,2,1820,1800 -893,FR,BD,201812,4,2,309624,2934 -893,FR,BD,201812,4,2,1422,200 -893,FR,BD,201812,4,2,56120,180 -893,FR,BD,201812,4,2,174024,952 -893,FR,BD,201812,4,2,446120,825 -896,FR,BD,201812,1,2,1184856,1035200 -896,FR,BD,201812,1,2,63539,90000 -896,FR,BD,201812,1,2,27891,10000 -896,FR,BD,201812,1,2,37385,8000 -896,FR,BD,201812,1,2,79673,8000 -896,FR,BD,201812,1,2,12580,5000 -896,FR,BD,201812,1,2,12149,7470 -896,FR,BD,201812,4,2,113811,726 -896,FR,BD,201812,4,2,69888,1824 -896,FR,BD,201812,4,2,15591,674 -896,FR,BD,201812,4,2,296,8 -896,FR,BD,201812,4,2,615,1 -896,FR,BD,201812,4,2,38729,122 -910,FR,BD,201812,4,1,643,19 -910,FR,BD,201812,4,2,1936,27 -910,FR,BD,201812,4,2,139,0 -910,FR,BD,201812,4,2,2722,20 -931,FR,BD,201812,4,1,1341,11 -931,FR,BD,201812,1,2,816237,50931 -931,FR,BD,201812,1,2,11201,50 -931,FR,BD,201812,1,2,26210,6540 -931,FR,BD,201812,1,2,479177,36168 -931,FR,BD,201812,1,2,25046,846 -931,FR,BD,201812,1,2,18640,676 -931,FR,BD,201812,1,2,4009,446 -931,FR,BD,201812,1,2,213750,12548 -931,FR,BD,201812,1,2,108079,15698 -931,FR,BD,201812,3,2,28894,2555 -931,FR,BD,201812,4,2,337373,1458 -931,FR,BD,201812,4,2,14841,5 -931,FR,BD,201812,4,2,82061,482 -931,FR,BD,201812,4,2,27231,243 -931,FR,BD,201812,4,2,15845,340 -939,FR,BD,201812,4,1,114,8 -939,FR,BD,201812,1,2,12184446,166965 -939,FR,BD,201812,1,2,1296000,179668 -939,FR,BD,201812,1,2,223269,30676 -939,FR,BD,201812,1,2,307303,51984 -939,FR,BD,201812,1,2,24690986,3005785 -939,FR,BD,201812,1,2,209693,8959 -939,FR,BD,201812,1,2,24167220,2168109 -939,FR,BD,201812,1,2,181814,18720 -939,FR,BD,201812,1,2,438675,46504 -939,FR,BD,201812,1,2,178720,10584 -939,FR,BD,201812,1,2,94119,7170 -939,FR,BD,201812,1,2,15777,8200 -939,FR,BD,201812,3,2,218200,7799 -939,FR,BD,201812,4,2,204629,3944 -939,FR,BD,201812,4,2,4573,24 -939,FR,BD,201812,4,2,13793,189 -939,FR,BD,201812,4,2,48841,257 -939,FR,BD,201812,4,2,17533,800 -939,FR,BD,201812,4,2,17893,760 -941,FR,BD,201812,1,2,7005,608 -941,FR,BD,201812,1,2,980000,63816 -949,FR,BD,201812,1,2,122,7 -949,FR,BD,201812,1,2,96360,5040 -949,FR,BD,201812,1,2,1798559,187325 -949,FR,BD,201812,3,2,3078,89 -949,FR,BD,201812,4,2,14412,192 -949,FR,BD,201812,4,2,13,0 -949,FR,BD,201812,4,2,2512,120 -952,FR,BD,201812,1,1,7143,3741 -952,FR,BD,201812,1,1,25194,5555 -952,FR,BD,201812,4,2,2318,62 -961,FR,BD,201812,1,1,34759,1720 -961,FR,BD,201812,4,1,1579,150 -961,FR,BD,201812,4,1,19194,1167 -961,FR,BD,201812,4,2,19695,460 -962,FR,BD,201812,0,1,7336,833 -962,FR,BD,201812,1,1,70035,34657 -962,FR,BD,201812,1,1,41790,9077 -962,FR,BD,201812,1,1,16149,1992 -962,FR,BD,201812,1,1,719196,184729 -962,FR,BD,201812,1,1,43735,9084 -962,FR,BD,201812,1,1,14121,1831 -962,FR,BD,201812,1,1,446063,87564 -962,FR,BD,201812,1,1,518597,122817 -962,FR,BD,201812,1,1,472074,160990 -962,FR,BD,201812,1,1,442828,91907 -962,FR,BD,201812,1,1,26612,5513 -962,FR,BD,201812,3,1,12122,1167 -962,FR,BD,201812,3,1,1687,165 -962,FR,BD,201812,4,1,132977,15411 -962,FR,BD,201812,4,1,24606,2178 -962,FR,BD,201812,4,1,5149,957 -962,FR,BD,201812,1,2,56180,11682 -962,FR,BD,201812,3,2,6984,66 -962,FR,BD,201812,4,2,38673,812 -962,FR,BD,201812,4,2,15751,426 -962,FR,BD,201812,4,2,39182,2395 -962,FR,BD,201812,4,2,752,110 -962,FR,BD,201812,4,2,1707,27 -963,FR,BD,201812,0,1,45306085,2892731 -963,FR,BD,201812,1,1,2948132,155458 -963,FR,BD,201812,1,1,52111,5402 -963,FR,BD,201812,1,1,2685266,156541 -963,FR,BD,201812,1,1,2067035,217317 -963,FR,BD,201812,1,1,6049914,425157 -963,FR,BD,201812,1,1,11197,407 -963,FR,BD,201812,1,1,443671,30053 -963,FR,BD,201812,1,1,88662,5867 -963,FR,BD,201812,1,1,19290301,1479113 -963,FR,BD,201812,1,1,305131,22528 -963,FR,BD,201812,1,1,1431936,176974 -963,FR,BD,201812,1,1,238835,10699 -963,FR,BD,201812,1,1,2544470,167744 -963,FR,BD,201812,1,1,1619263,142532 -963,FR,BD,201812,1,1,296919,34042 -963,FR,BD,201812,1,1,1649850,136599 -963,FR,BD,201812,1,1,157636,3111 -963,FR,BD,201812,1,1,366841,21041 -963,FR,BD,201812,1,1,277482,16874 -963,FR,BD,201812,1,1,91029,2987 -963,FR,BD,201812,1,1,31741806,3144413 -963,FR,BD,201812,1,1,1590387,91968 -963,FR,BD,201812,1,1,208110,18831 -963,FR,BD,201812,1,1,9782886,766079 -963,FR,BD,201812,1,1,159874,13558 -963,FR,BD,201812,1,1,632850,52455 -963,FR,BD,201812,1,1,680596,65522 -963,FR,BD,201812,3,1,226540,8404 -963,FR,BD,201812,3,1,2355,18 -963,FR,BD,201812,3,1,1641,9 -963,FR,BD,201812,3,1,83261,4103 -963,FR,BD,201812,3,1,11115,328 -963,FR,BD,201812,4,1,4894801,309109 -963,FR,BD,201812,4,1,23922,3058 -963,FR,BD,201812,4,1,67529,1038 -963,FR,BD,201812,4,1,86647,5599 -963,FR,BD,201812,4,1,29363,1783 -963,FR,BD,201812,4,1,1379,4 -963,FR,BD,201812,4,1,40633,3386 -963,FR,BD,201812,4,1,332632,37542 -963,FR,BD,201812,4,1,64424,3400 -963,FR,BD,201812,4,1,426,20 -963,FR,BD,201812,4,1,547191,29675 -963,FR,BD,201812,4,1,72109,4354 -963,FR,BD,201812,4,1,312865,17015 -963,FR,BD,201812,4,1,266392,17201 -963,FR,BD,201812,4,1,145292,8311 -963,FR,BD,201812,4,1,86,3 -963,FR,BD,201812,4,1,5591695,370413 -963,FR,BD,201812,4,1,54670,2834 -963,FR,BD,201812,4,1,18642,934 -963,FR,BD,201812,4,1,201609,11583 -963,FR,BD,201812,4,1,857,114 -963,FR,BD,201812,4,1,19051,689 -963,FR,BD,201812,4,1,37254,2284 -963,FR,BD,201812,4,1,111820,6408 -963,FR,BD,201812,5,1,614,0 -963,FR,BD,201812,1,2,10465,539 -963,FR,BD,201812,4,2,18,2 -971,FR,BD,201812,3,1,213,11 -971,FR,BD,201812,1,2,15819,1176 -971,FR,BD,201812,4,2,173,6 -971,FR,BD,201812,4,2,1164,0 -972,FR,BD,201812,1,2,5550,3110 -973,FR,BD,201812,4,1,7298,410 -973,FR,BD,201812,4,1,657,70 -973,FR,BD,201812,1,2,13325,3025 -973,FR,BD,201812,1,2,3293,706 -973,FR,BD,201812,1,2,36407,24559 -974,FR,BD,201812,3,1,765,75 -974,FR,BD,201812,4,1,150,16 -974,FR,BD,201812,4,1,4115,1068 -974,FR,BD,201812,4,1,471,28 -974,FR,BD,201812,4,1,143,3 -974,FR,BD,201812,1,2,44,754 -974,FR,BD,201812,1,2,80,137 -974,FR,BD,201812,4,2,18,0 -974,FR,BD,201812,4,2,2025,50 -974,FR,BD,201812,4,2,2668,66 -975,FR,BD,201812,1,1,897,28 -975,FR,BD,201812,1,1,6312,4416 -975,FR,BD,201812,3,1,65,10 -975,FR,BD,201812,4,1,35616,1302 -975,FR,BD,201812,4,2,75322,37 -976,FR,BD,201812,3,1,97,3 -979,FR,BD,201812,1,1,30657,8102 -979,FR,BD,201812,1,1,24237,1008 -979,FR,BD,201812,1,1,657,77 -979,FR,BD,201812,1,1,123,17 -979,FR,BD,201812,1,1,46273,25045 -979,FR,BD,201812,1,1,192,11 -979,FR,BD,201812,1,1,297,25 -979,FR,BD,201812,1,1,130030,45163 -979,FR,BD,201812,1,1,20306,3973 -979,FR,BD,201812,1,1,116213,37708 -979,FR,BD,201812,3,1,2119,54 -979,FR,BD,201812,3,1,120,0 -979,FR,BD,201812,4,1,2613,20 -979,FR,BD,201812,4,1,291,1 -979,FR,BD,201812,4,1,6222,76 -979,FR,BD,201812,1,2,10803,187 -979,FR,BD,201812,1,2,206854,394 -979,FR,BD,201812,1,2,6365,275 -979,FR,BD,201812,4,2,165175,396 -979,FR,BD,201812,4,2,2696,71 -979,FR,BD,201812,4,2,347951,4536 -979,FR,BD,201812,4,2,5232,40 -979,FR,BD,201812,4,2,580,47 -979,FR,BD,201812,4,2,53044,1682 -979,FR,BD,201812,4,2,2492,7 -979,FR,BD,201812,4,2,91598,3150 -979,FR,BD,201812,4,2,5840,50 -979,FR,BD,201812,4,2,1515,42 -999,FR,BD,201812,4,1,25,0 -999,FR,BD,201812,4,1,210,0 -999,FR,BD,201812,4,1,67,0 -999,FR,BD,201812,1,2,39020,18000 -999,FR,BD,201812,1,2,88572,85000 -999,FR,BD,201812,1,2,187998,86620 -999,FR,BD,201812,1,2,10683,600 -999,FR,BD,201812,1,2,1194,525 -999,FR,BD,201812,4,2,31344,1434 -999,FR,BD,201812,4,2,1,0 -999,FR,BD,201812,4,2,100,0 -035,FR,MV,201812,1,2,20254,21403 -035,FR,MV,201812,1,2,64001,65971 -039,FR,MV,201812,4,2,2627,3 -039,FR,MV,201812,4,2,2783,354 -121,FR,MV,201812,1,2,114955,6125 -121,FR,MV,201812,1,2,67687,3887 -121,FR,MV,201812,1,2,34892,7874 -121,FR,MV,201812,1,2,139867,5728 -121,FR,MV,201812,4,2,168636,2903 -121,FR,MV,201812,4,2,32096,165 -121,FR,MV,201812,4,2,3891,15 -121,FR,MV,201812,4,2,42917,561 -125,FR,MV,201812,1,2,41226,585 -125,FR,MV,201812,1,2,37938,20960 -128,FR,MV,201812,1,2,12136,9486 -128,FR,MV,201812,1,2,19463,13839 -128,FR,MV,201812,3,2,2985,1154 -128,FR,MV,201812,4,2,118,294 -136,FR,MV,201812,1,2,6999,630 -136,FR,MV,201812,4,2,1937,21 -139,FR,MV,201812,1,2,49468,19026 -139,FR,MV,201812,1,2,1231,313 -139,FR,MV,201812,4,2,82,13 -139,FR,MV,201812,4,2,170818,8336 -139,FR,MV,201812,4,2,53134,3013 -139,FR,MV,201812,4,2,2748,172 -141,FR,MV,201812,1,2,26898,1502 -141,FR,MV,201812,1,2,40938,25644 -141,FR,MV,201812,4,2,23692,597 -141,FR,MV,201812,4,2,2370,225 -142,FR,MV,201812,4,1,151464,14230 -142,FR,MV,201812,4,1,2259,15 -142,FR,MV,201812,4,1,900601,83303 -142,FR,MV,201812,4,1,310543,28547 -142,FR,MV,201812,4,1,11856,1202 -142,FR,MV,201812,1,2,1988,20 -142,FR,MV,201812,4,2,1672,32 -142,FR,MV,201812,4,2,5188,417 -143,FR,MV,201812,1,2,63166,20334 -144,FR,MV,201812,1,2,24174,3096 -144,FR,MV,201812,4,2,24000,2667 -144,FR,MV,201812,4,2,876,80 -144,FR,MV,201812,4,2,2768,378 -147,FR,MV,201812,1,2,1181,51 -147,FR,MV,201812,4,2,5537,377 -148,FR,MV,201812,3,1,85567,16320 -148,FR,MV,201812,4,2,3671,8 -161,FR,MV,201812,1,2,864,420 -163,FR,MV,201812,1,2,2585,1083 -164,FR,MV,201812,1,2,12119,2598 -164,FR,MV,201812,1,2,5634,3597 -164,FR,MV,201812,1,2,16505,10938 -341,FR,MV,201812,1,2,54476,13066 -568,FR,MV,201812,4,2,25,0 -621,FR,MV,201812,4,2,45,3 -891,FR,MV,201812,4,2,1311,1 -893,FR,MV,201812,0,2,399,12 -893,FR,MV,201812,1,2,1512,694 -893,FR,MV,201812,3,2,2501,24 -893,FR,MV,201812,4,2,249140,2441 -893,FR,MV,201812,4,2,12274,324 -893,FR,MV,201812,4,2,1008,21 -893,FR,MV,201812,4,2,29782,306 -893,FR,MV,201812,4,2,9749,350 -896,FR,MV,201812,4,2,1854,12 -896,FR,MV,201812,4,2,24017,114 -896,FR,MV,201812,4,2,92639,2094 -896,FR,MV,201812,4,2,1365,3 -910,FR,MV,201812,4,2,4773,1 -910,FR,MV,201812,4,2,1210,20 -920,FR,MV,201812,4,2,550,25 -931,FR,MV,201812,4,2,19913,187 -931,FR,MV,201812,4,2,27795,9 -931,FR,MV,201812,4,2,1545,0 -931,FR,MV,201812,4,2,1811,1 -939,FR,MV,201812,3,1,211,0 -939,FR,MV,201812,1,2,5129,136 -939,FR,MV,201812,1,2,31420,1274 -939,FR,MV,201812,4,2,43209,561 -939,FR,MV,201812,4,2,9303,27 -939,FR,MV,201812,4,2,15954,75 -939,FR,MV,201812,4,2,1422,60 -949,FR,MV,201812,1,2,225,33 -949,FR,MV,201812,1,2,409,10 -949,FR,MV,201812,4,2,40855,1036 -949,FR,MV,201812,4,2,10924,628 -949,FR,MV,201812,4,2,2331,30 -949,FR,MV,201812,4,2,714,36 -952,FR,MV,201812,3,1,450,37 -952,FR,MV,201812,4,2,67265,1334 -952,FR,MV,201812,4,2,4858,759 -952,FR,MV,201812,4,2,1505,27 -962,FR,MV,201812,4,2,5838,125 -962,FR,MV,201812,4,2,2050,110 -963,FR,MV,201812,4,2,159150,807 -963,FR,MV,201812,4,2,12337,89 -963,FR,MV,201812,4,2,989,29 -963,FR,MV,201812,4,2,1320,30 -963,FR,MV,201812,4,2,3140,200 -963,FR,MV,201812,4,2,2190,3 -963,FR,MV,201812,5,2,3936,68 -971,FR,MV,201812,4,1,14,0 -971,FR,MV,201812,4,2,10334,6 -971,FR,MV,201812,4,2,1020,58 -973,FR,MV,201812,4,2,15687,900 -974,FR,MV,201812,4,1,136,3 -974,FR,MV,201812,4,2,35663,182 -974,FR,MV,201812,4,2,5699,35 -974,FR,MV,201812,4,2,170,7 -975,FR,MV,201812,4,2,4,0 -976,FR,MV,201812,1,2,200,97 -979,FR,MV,201812,1,2,9459,3243 -979,FR,MV,201812,1,2,23587,2400 -979,FR,MV,201812,1,2,5356,1853 -979,FR,MV,201812,1,2,1864,193 -979,FR,MV,201812,4,2,156102,1727 -979,FR,MV,201812,4,2,3000,15 -979,FR,MV,201812,4,2,224,7 -979,FR,MV,201812,4,2,1866,36 -979,FR,MV,201812,4,2,717,0 -979,FR,MV,201812,4,2,4656,68 -979,FR,MV,201812,5,2,1307,15 -999,FR,MV,201812,4,2,11987,1000 -999,FR,MV,201812,4,2,27167,0 -999,FR,MV,201812,4,2,1574,0 -016,FR,LK,201812,1,1,2426,3150 -016,FR,LK,201812,1,1,9596,10540 -035,FR,LK,201812,1,1,20811,12000 -035,FR,LK,201812,1,1,89155,52150 -035,FR,LK,201812,1,1,19114,9560 -035,FR,LK,201812,4,1,5081,2518 -035,FR,LK,201812,4,1,72103,22372 -035,FR,LK,201812,1,2,33692,42336 -039,FR,LK,201812,1,1,85549,72126 -039,FR,LK,201812,4,1,2574,108 -039,FR,LK,201812,4,1,30171,15577 -039,FR,LK,201812,4,1,88663,31638 -042,FR,LK,201812,4,2,1677,50 -042,FR,LK,201812,4,2,72,2 -045,FR,LK,201812,1,1,50016,89804 -045,FR,LK,201812,1,1,7390,9100 -045,FR,LK,201812,1,1,44065,61970 -057,FR,LK,201812,1,2,1852,400 -092,FR,LK,201812,0,1,32582,16000 -092,FR,LK,201812,1,1,25832,9375 -099,FR,LK,201812,1,1,23345,20590 -099,FR,LK,201812,1,1,15271,23700 -099,FR,LK,201812,1,1,22564,41920 -099,FR,LK,201812,1,1,208980,363219 -099,FR,LK,201812,1,1,13296,22094 -099,FR,LK,201812,1,1,135523,210669 -099,FR,LK,201812,1,1,6636,39170 -099,FR,LK,201812,4,1,3694,1830 -099,FR,LK,201812,4,1,8414,2670 -111,FR,LK,201812,1,1,3632,2126 -121,FR,LK,201812,1,2,2715,243 -121,FR,LK,201812,1,2,27500,900 -121,FR,LK,201812,1,2,19765,5499 -121,FR,LK,201812,1,2,35193,10583 -121,FR,LK,201812,1,2,5474,2025 -121,FR,LK,201812,3,2,4300,900 -121,FR,LK,201812,4,2,9890,580 -122,FR,LK,201812,1,1,12370,8314 -125,FR,LK,201812,1,2,18920,1200 -125,FR,LK,201812,1,2,12660,2343 -125,FR,LK,201812,1,2,39739,14367 -125,FR,LK,201812,1,2,288448,11757 -125,FR,LK,201812,1,2,5408,1050 -125,FR,LK,201812,3,2,2940,144 -125,FR,LK,201812,4,2,1310,520 -128,FR,LK,201812,1,2,12094,10336 -132,FR,LK,201812,1,2,25700,4656 -133,FR,LK,201812,1,1,4175,281 -133,FR,LK,201812,1,1,4062,92 -133,FR,LK,201812,1,1,8804,293 -133,FR,LK,201812,1,1,9599,663 -133,FR,LK,201812,1,1,25249,6102 -133,FR,LK,201812,1,1,21950,8148 -133,FR,LK,201812,1,1,5748,1916 -133,FR,LK,201812,1,1,6999,375 -133,FR,LK,201812,1,1,63541,4932 -133,FR,LK,201812,3,1,144,6 -133,FR,LK,201812,3,1,141,2 -133,FR,LK,201812,4,1,445,10 -133,FR,LK,201812,4,1,6500,151 -133,FR,LK,201812,4,1,172,1 -133,FR,LK,201812,4,1,1530,60 -133,FR,LK,201812,4,1,4184,234 -133,FR,LK,201812,4,1,1133,561 -133,FR,LK,201812,4,1,2555,80 -133,FR,LK,201812,1,2,128,9 -136,FR,LK,201812,4,1,2506,130 -136,FR,LK,201812,1,2,5207,3965 -139,FR,LK,201812,1,1,12564,5667 -139,FR,LK,201812,1,1,5453,259 -139,FR,LK,201812,1,1,111964,54486 -139,FR,LK,201812,1,1,12261,8455 -139,FR,LK,201812,1,1,73838,33693 -139,FR,LK,201812,1,1,4746,871 -139,FR,LK,201812,3,1,251,13 -139,FR,LK,201812,4,1,2617,140 -139,FR,LK,201812,4,1,1005,240 -139,FR,LK,201812,1,2,4188,1680 -139,FR,LK,201812,1,2,450,201 -139,FR,LK,201812,1,2,2695,1360 -139,FR,LK,201812,4,2,1809,270 -142,FR,LK,201812,3,1,8274,163 -142,FR,LK,201812,4,1,20595,2088 -142,FR,LK,201812,4,1,20227,1905 -142,FR,LK,201812,4,1,13859,1397 -142,FR,LK,201812,4,1,777526,72323 -142,FR,LK,201812,4,1,770838,85475 -142,FR,LK,201812,4,1,4825,447 -144,FR,LK,201812,1,2,20702,16000 -144,FR,LK,201812,4,2,1001,83 -144,FR,LK,201812,4,2,592,47 -161,FR,LK,201812,1,1,9050,10720 -161,FR,LK,201812,1,1,3007,1660 -161,FR,LK,201812,1,2,34,75 -163,FR,LK,201812,1,1,1128,92 -163,FR,LK,201812,1,2,247,135 -164,FR,LK,201812,1,1,3998,2441 -164,FR,LK,201812,1,1,35755,13608 -164,FR,LK,201812,1,2,4665,938 -165,FR,LK,201812,1,1,2552,760 -166,FR,LK,201812,1,1,1673,365 -166,FR,LK,201812,1,1,5960,2874 -166,FR,LK,201812,1,1,360,400 -172,FR,LK,201812,1,1,977,432 -172,FR,LK,201812,4,1,281,100 -179,FR,LK,201812,1,2,3719,1036 -181,FR,LK,201812,1,1,46,10 -181,FR,LK,201812,1,1,1248,260 -182,FR,LK,201812,1,1,187074,39665 -182,FR,LK,201812,1,1,3419,588 -182,FR,LK,201812,4,1,3218,500 -182,FR,LK,201812,4,2,2133,26 -551,FR,LK,201812,1,2,3470,366 -551,FR,LK,201812,3,2,8065,688 -551,FR,LK,201812,4,2,64265,130 -551,FR,LK,201812,4,2,10833,26 -552,FR,LK,201812,1,2,712,105 -552,FR,LK,201812,1,2,213,37 -568,FR,LK,201812,4,1,34,3 -568,FR,LK,201812,1,2,8789,490 -568,FR,LK,201812,1,2,62668,11398 -568,FR,LK,201812,4,2,1813,110 -611,FR,LK,201812,1,2,2509,2009 -621,FR,LK,201812,1,1,1596,175 -621,FR,LK,201812,1,1,240,160 -621,FR,LK,201812,4,2,11,1 -819,FR,LK,201812,1,2,877,750 -819,FR,LK,201812,1,2,1098,200 -819,FR,LK,201812,1,2,1584,175 -820,FR,LK,201812,1,2,10985,17500 -891,FR,LK,201812,1,2,4269,3120 -891,FR,LK,201812,1,2,3845,567 -891,FR,LK,201812,1,2,21947,7560 -891,FR,LK,201812,1,2,3754,180 -891,FR,LK,201812,1,2,12108,13380 -891,FR,LK,201812,1,2,35303,14750 -891,FR,LK,201812,1,2,17256,6450 -891,FR,LK,201812,1,2,66000,26248 -891,FR,LK,201812,4,2,18,0 -891,FR,LK,201812,4,2,608,60 -891,FR,LK,201812,4,2,1494,10 -891,FR,LK,201812,4,2,3587,20 -892,FR,LK,201812,1,2,2246,67 -892,FR,LK,201812,4,2,5080,166 -893,FR,LK,201812,1,1,275,50 -893,FR,LK,201812,3,1,2757,143 -893,FR,LK,201812,4,1,6458,241 -893,FR,LK,201812,4,1,52037,325 -893,FR,LK,201812,4,1,40355,390 -893,FR,LK,201812,4,1,6891,245 -893,FR,LK,201812,0,2,144,1 -893,FR,LK,201812,1,2,75830,3194 -893,FR,LK,201812,1,2,11666,505 -893,FR,LK,201812,4,2,172771,3114 -893,FR,LK,201812,4,2,60,16 -893,FR,LK,201812,4,2,257356,1381 -893,FR,LK,201812,4,2,5944,345 -893,FR,LK,201812,4,2,575237,4334 -896,FR,LK,201812,1,1,89039,19000 -896,FR,LK,201812,4,1,2710,101 -896,FR,LK,201812,1,2,11214,2636 -896,FR,LK,201812,1,2,7117,598 -896,FR,LK,201812,1,2,131400,20000 -896,FR,LK,201812,1,2,65348,19280 -896,FR,LK,201812,4,2,28874,723 -896,FR,LK,201812,4,2,7341,200 -896,FR,LK,201812,4,2,800,20 -896,FR,LK,201812,4,2,4628,310 -896,FR,LK,201812,4,2,19414,23 -896,FR,LK,201812,4,2,1040,420 -910,FR,LK,201812,1,1,30428,9763 -910,FR,LK,201812,1,1,72366,30416 -910,FR,LK,201812,4,1,140,8 -910,FR,LK,201812,4,1,5260,80 -910,FR,LK,201812,1,2,80000,10207 -910,FR,LK,201812,4,2,74264,139 -910,FR,LK,201812,4,2,9878,4 -910,FR,LK,201812,4,2,391,57 -910,FR,LK,201812,4,2,16799,890 -920,FR,LK,201812,4,2,5177,121 -931,FR,LK,201812,3,1,10322,41 -931,FR,LK,201812,3,1,37428,1032 -931,FR,LK,201812,3,1,1562,51 -931,FR,LK,201812,3,1,60096,70 -931,FR,LK,201812,4,1,2524,0 -931,FR,LK,201812,4,1,25583,19 -931,FR,LK,201812,4,1,110,0 -931,FR,LK,201812,4,1,3519,4 -931,FR,LK,201812,4,1,11689,24 -931,FR,LK,201812,4,1,890,0 -931,FR,LK,201812,0,2,75,1 -931,FR,LK,201812,1,2,12314,500 -931,FR,LK,201812,1,2,105200,16840 -931,FR,LK,201812,1,2,2571,79 -931,FR,LK,201812,1,2,46218,7869 -931,FR,LK,201812,4,2,82243,564 -931,FR,LK,201812,4,2,8137,87 -931,FR,LK,201812,4,2,9066,70 -931,FR,LK,201812,4,2,14100,88 -931,FR,LK,201812,4,2,3209,14 -931,FR,LK,201812,4,2,11487,3 -931,FR,LK,201812,4,2,25684,711 -931,FR,LK,201812,4,2,29647,1 -931,FR,LK,201812,4,2,34677,280 -931,FR,LK,201812,4,2,2249,1 -931,FR,LK,201812,4,2,9136,18 -939,FR,LK,201812,1,1,8997,490 -939,FR,LK,201812,1,1,171514,96350 -939,FR,LK,201812,1,1,52420,26835 -939,FR,LK,201812,1,1,89030,49226 -939,FR,LK,201812,1,1,26255,14471 -939,FR,LK,201812,1,1,447723,224770 -939,FR,LK,201812,1,1,11282,11960 -939,FR,LK,201812,1,1,22613,11180 -939,FR,LK,201812,3,1,8239,85 -939,FR,LK,201812,3,1,5993,245 -939,FR,LK,201812,4,1,348,0 -939,FR,LK,201812,4,1,532,0 -939,FR,LK,201812,4,1,13751,437 -939,FR,LK,201812,1,2,21644,273 -939,FR,LK,201812,1,2,36352,5907 -939,FR,LK,201812,1,2,1029903,46619 -939,FR,LK,201812,1,2,486328,5645 -939,FR,LK,201812,1,2,427236,37950 -939,FR,LK,201812,1,2,1879768,71330 -939,FR,LK,201812,4,2,99468,869 -939,FR,LK,201812,4,2,35196,64 -939,FR,LK,201812,4,2,4936,106 -939,FR,LK,201812,4,2,668,50 -939,FR,LK,201812,4,2,5229,70 -939,FR,LK,201812,4,2,37175,1012 -939,FR,LK,201812,4,2,19729,400 -939,FR,LK,201812,4,2,17737,4 -939,FR,LK,201812,4,2,109917,1700 -939,FR,LK,201812,4,2,16351,127 -941,FR,LK,201812,1,2,71937,2517 -949,FR,LK,201812,1,1,938,33 -949,FR,LK,201812,1,1,720,84 -949,FR,LK,201812,3,1,726,19 -949,FR,LK,201812,3,1,2974,81 -949,FR,LK,201812,3,1,1,1 -949,FR,LK,201812,4,1,1763,1 -949,FR,LK,201812,1,2,37331,2830 -949,FR,LK,201812,1,2,228,14 -949,FR,LK,201812,1,2,197335,29361 -949,FR,LK,201812,1,2,493,645 -949,FR,LK,201812,3,2,11882,747 -949,FR,LK,201812,3,2,19854,4143 -949,FR,LK,201812,4,2,17747,105 -949,FR,LK,201812,4,2,980,0 -949,FR,LK,201812,4,2,600,64 -949,FR,LK,201812,4,2,8325,35 -949,FR,LK,201812,4,2,4843,86 -949,FR,LK,201812,4,2,21975,1 -949,FR,LK,201812,4,2,16543,340 -951,FR,LK,201812,4,2,6924,55 -952,FR,LK,201812,0,1,609858,2 -952,FR,LK,201812,3,1,35172,0 -952,FR,LK,201812,4,1,48869,0 -952,FR,LK,201812,4,1,2096,1 -952,FR,LK,201812,4,1,50934,0 -952,FR,LK,201812,1,2,20431,45538 -952,FR,LK,201812,1,2,3094,3254 -952,FR,LK,201812,4,2,220845,0 -961,FR,LK,201812,4,2,12173,423 -962,FR,LK,201812,1,1,5971,5325 -962,FR,LK,201812,1,1,40077,16668 -962,FR,LK,201812,1,1,40946,17029 -962,FR,LK,201812,3,1,13197,437 -962,FR,LK,201812,4,1,65110,55 -962,FR,LK,201812,4,1,912,53 -962,FR,LK,201812,4,1,7246,167 -962,FR,LK,201812,4,1,16382,435 -962,FR,LK,201812,4,1,16409,331 -962,FR,LK,201812,1,2,116835,2625 -962,FR,LK,201812,1,2,4130,95 -962,FR,LK,201812,1,2,117625,16366 -962,FR,LK,201812,1,2,35296,5381 -962,FR,LK,201812,4,2,69379,3065 -962,FR,LK,201812,4,2,12445,460 -962,FR,LK,201812,4,2,2121,51 -962,FR,LK,201812,4,2,17700,650 -962,FR,LK,201812,4,2,3842,1610 -962,FR,LK,201812,4,2,2070,87 -963,FR,LK,201812,0,1,117691,3879 -963,FR,LK,201812,1,1,255888,22036 -963,FR,LK,201812,1,1,281,1 -963,FR,LK,201812,1,1,264124,12154 -963,FR,LK,201812,1,1,601584,27618 -963,FR,LK,201812,1,1,71529,11617 -963,FR,LK,201812,1,1,452602,7737 -963,FR,LK,201812,1,1,132500,8066 -963,FR,LK,201812,1,1,728491,13790 -963,FR,LK,201812,3,1,100147,4220 -963,FR,LK,201812,3,1,817,6 -963,FR,LK,201812,3,1,17950,896 -963,FR,LK,201812,3,1,792,6 -963,FR,LK,201812,4,1,782482,34464 -963,FR,LK,201812,4,1,2803,25 -963,FR,LK,201812,4,1,2248,118 -963,FR,LK,201812,4,1,35037,1500 -963,FR,LK,201812,4,1,14187,183 -963,FR,LK,201812,4,1,85088,1661 -963,FR,LK,201812,4,1,17725,497 -963,FR,LK,201812,4,1,109586,2647 -963,FR,LK,201812,4,1,18027,345 -963,FR,LK,201812,4,1,104805,2069 -963,FR,LK,201812,4,1,9967,443 -963,FR,LK,201812,4,1,16315,663 -963,FR,LK,201812,0,2,54,0 -963,FR,LK,201812,4,2,1128,14 -963,FR,LK,201812,4,2,13126,53 -963,FR,LK,201812,4,2,4149,130 -963,FR,LK,201812,4,2,10865,160 -971,FR,LK,201812,1,1,461612,269985 -971,FR,LK,201812,1,1,167845,101929 -971,FR,LK,201812,1,1,7614,3751 -971,FR,LK,201812,1,1,5508,916 -971,FR,LK,201812,1,1,17040,9840 -971,FR,LK,201812,1,1,131781,75858 -971,FR,LK,201812,1,1,357371,158861 -971,FR,LK,201812,1,1,30910,15650 -971,FR,LK,201812,1,1,47107,9833 -971,FR,LK,201812,3,1,273,21 -971,FR,LK,201812,4,1,710,55 -971,FR,LK,201812,1,2,179,8 -971,FR,LK,201812,4,2,14773,997 -971,FR,LK,201812,4,2,813,0 -974,FR,LK,201812,1,1,701,460 -974,FR,LK,201812,3,1,328,18 -974,FR,LK,201812,4,1,3515,843 -974,FR,LK,201812,1,2,49,107 -974,FR,LK,201812,1,2,3949,310 -974,FR,LK,201812,4,2,602,29 -974,FR,LK,201812,4,2,1590,2 -975,FR,LK,201812,1,2,750,100 -975,FR,LK,201812,4,2,9835,140 -976,FR,LK,201812,1,1,153,48 -976,FR,LK,201812,1,1,13994,12008 -976,FR,LK,201812,3,1,182,8 -976,FR,LK,201812,0,2,30,4 -979,FR,LK,201812,0,1,7,0 -979,FR,LK,201812,1,1,104308,6174 -979,FR,LK,201812,1,1,7831,475 -979,FR,LK,201812,1,1,16871,9711 -979,FR,LK,201812,1,1,147536,87995 -979,FR,LK,201812,1,1,17423,9088 -979,FR,LK,201812,1,1,77582,44387 -979,FR,LK,201812,3,1,1837,31 -979,FR,LK,201812,3,1,160,1 -979,FR,LK,201812,4,1,21831,155 -979,FR,LK,201812,4,1,76956,1504 -979,FR,LK,201812,4,1,227,0 -979,FR,LK,201812,4,1,30088,343 -979,FR,LK,201812,4,1,1648,30 -979,FR,LK,201812,0,2,50,3 -979,FR,LK,201812,1,2,584,66 -979,FR,LK,201812,1,2,7190,5280 -979,FR,LK,201812,1,2,3250,150 -979,FR,LK,201812,1,2,25235,11557 -979,FR,LK,201812,4,2,32538,137 -979,FR,LK,201812,4,2,14899,197 -979,FR,LK,201812,4,2,6830,0 -979,FR,LK,201812,4,2,9128,102 -979,FR,LK,201812,4,2,1,20 -979,FR,LK,201812,4,2,43915,270 -979,FR,LK,201812,4,2,84,0 -979,FR,LK,201812,4,2,7936,118 -979,FR,LK,201812,4,2,22393,4950 -979,FR,LK,201812,4,2,9460,200 -979,FR,LK,201812,4,2,8353,25 -999,FR,LK,201812,0,1,500,0 -999,FR,LK,201812,3,1,246,0 -999,FR,LK,201812,1,2,937865,833733 -999,FR,LK,201812,1,2,1491,2000 -999,FR,LK,201812,1,2,84835,16851 -999,FR,LK,201812,1,2,7568,540 -999,FR,LK,201812,1,2,55831,57694 -999,FR,LK,201812,1,2,100717,45400 -999,FR,LK,201812,1,2,108226,40000 -999,FR,LK,201812,1,2,29892,25000 -999,FR,LK,201812,3,2,11849,9826 -999,FR,LK,201812,4,2,2,0 -999,FR,LK,201812,4,2,15087,530 -999,FR,LK,201812,4,2,2899,0 -999,FR,LK,201812,4,2,889,0 -999,FR,LK,201812,4,2,500,0 -999,FR,LK,201812,4,2,2,0 -045,FR,NP,201812,1,1,39434,5550 -125,FR,NP,201812,1,2,2400,420 -133,FR,NP,201812,1,1,7983,108 -133,FR,NP,201812,4,1,939,40 -133,FR,NP,201812,4,1,3542,96 -133,FR,NP,201812,4,1,9725,215 -133,FR,NP,201812,4,1,1968,100 -133,FR,NP,201812,4,1,22324,1024 -136,FR,NP,201812,1,2,13300,7275 -139,FR,NP,201812,0,2,34,1 -139,FR,NP,201812,4,2,2300,128 -164,FR,NP,201812,4,1,1322,105 -166,FR,NP,201812,4,1,67485,410 -551,FR,NP,201812,4,2,8910,2 -568,FR,NP,201812,4,1,25,2 -568,FR,NP,201812,4,2,12205,0 -621,FR,NP,201812,4,1,5,1 -691,FR,NP,201812,4,1,133,10 -891,FR,NP,201812,4,2,1461,50 -892,FR,NP,201812,4,2,3253,99 -893,FR,NP,201812,4,1,119422,1428 -893,FR,NP,201812,4,1,6700,55 -893,FR,NP,201812,4,1,148,11 -893,FR,NP,201812,4,1,613,49 -893,FR,NP,201812,4,1,8331,100 -893,FR,NP,201812,4,1,51151,600 -893,FR,NP,201812,4,1,612,10 -893,FR,NP,201812,4,2,368,50 -893,FR,NP,201812,4,2,5993,380 -893,FR,NP,201812,4,2,494,7 -893,FR,NP,201812,4,2,77802,230 -896,FR,NP,201812,4,1,433,0 -896,FR,NP,201812,3,2,4710,35 -896,FR,NP,201812,4,2,526,3 -896,FR,NP,201812,4,2,41769,1181 -896,FR,NP,201812,4,2,5355,75 -896,FR,NP,201812,4,2,10912,219 -896,FR,NP,201812,4,2,1505,50 -910,FR,NP,201812,4,1,10532,58 -910,FR,NP,201812,4,2,216354,159 -910,FR,NP,201812,4,2,25396,50 -910,FR,NP,201812,4,2,3543,1 -910,FR,NP,201812,4,2,414,3 -910,FR,NP,201812,4,2,10213,270 -931,FR,NP,201812,4,2,17335,6 -931,FR,NP,201812,4,2,12414,269 -931,FR,NP,201812,4,2,1785,4 -931,FR,NP,201812,4,2,10847,400 -931,FR,NP,201812,4,2,1160,11 -939,FR,NP,201812,1,2,3830,20 -939,FR,NP,201812,1,2,123444,16402 -939,FR,NP,201812,4,2,521445,1304 -939,FR,NP,201812,4,2,34274,422 -939,FR,NP,201812,4,2,93869,2814 -949,FR,NP,201812,1,1,8451,400 -949,FR,NP,201812,3,1,1469,77 -949,FR,NP,201812,4,1,1477,85 -949,FR,NP,201812,4,1,4557,211 -949,FR,NP,201812,4,1,1519,103 -949,FR,NP,201812,4,1,4464,58 -949,FR,NP,201812,3,2,1812,26 -949,FR,NP,201812,4,2,9620,109 -949,FR,NP,201812,4,2,12751,118 -949,FR,NP,201812,4,2,13267,629 -952,FR,NP,201812,3,1,267,14 -952,FR,NP,201812,4,1,571,20 -962,FR,NP,201812,0,1,18,2 -962,FR,NP,201812,3,1,8958,167 -962,FR,NP,201812,4,1,60231,1279 -962,FR,NP,201812,4,1,3820,60 -962,FR,NP,201812,4,1,27592,614 -962,FR,NP,201812,4,1,34100,1280 -962,FR,NP,201812,4,1,1104,44 -962,FR,NP,201812,4,1,2238,128 -962,FR,NP,201812,4,1,7107,18 -962,FR,NP,201812,4,2,22022,39 -962,FR,NP,201812,4,2,1249,460 -963,FR,NP,201812,1,1,12357,1124 -963,FR,NP,201812,1,1,7206,40 -963,FR,NP,201812,1,1,75885,6460 -963,FR,NP,201812,3,1,153983,1308 -963,FR,NP,201812,4,1,18161,401 -963,FR,NP,201812,4,1,20076,28 -963,FR,NP,201812,4,1,22140,1249 -963,FR,NP,201812,4,1,3479,21 -963,FR,NP,201812,4,1,17727,456 -963,FR,NP,201812,4,1,62867,1066 -963,FR,NP,201812,4,1,534,7 -963,FR,NP,201812,4,1,172339,195 -963,FR,NP,201812,4,1,1008,1 -972,FR,NP,201812,4,1,506,20 -972,FR,NP,201812,0,2,60,5 -973,FR,NP,201812,1,1,1223,110 -973,FR,NP,201812,3,1,1808,67 -973,FR,NP,201812,4,1,490,68 -973,FR,NP,201812,4,1,11852,649 -974,FR,NP,201812,3,1,160,3 -974,FR,NP,201812,4,1,6,1 -974,FR,NP,201812,5,1,81,0 -974,FR,NP,201812,4,2,37,12 -975,FR,NP,201812,3,1,55,0 -975,FR,NP,201812,4,1,6371,51 -975,FR,NP,201812,4,1,2061,78 -975,FR,NP,201812,4,1,57,4 -975,FR,NP,201812,4,1,781,65 -975,FR,NP,201812,4,1,3812,20 -975,FR,NP,201812,4,2,1865,0 -976,FR,NP,201812,3,1,74,2 -976,FR,NP,201812,4,1,572,1 -976,FR,NP,201812,4,1,629,35 -976,FR,NP,201812,4,1,23,20 -976,FR,NP,201812,4,1,980,72 -979,FR,NP,201812,3,1,2075,50 -979,FR,NP,201812,4,1,3150,5 -979,FR,NP,201812,4,1,51,8 -979,FR,NP,201812,4,1,2417,115 -979,FR,NP,201812,4,1,397,81 -979,FR,NP,201812,4,1,5610,43 -979,FR,NP,201812,4,2,5092,0 -979,FR,NP,201812,4,2,87464,67 -979,FR,NP,201812,4,2,20903,238 -979,FR,NP,201812,4,2,59000,40 -979,FR,NP,201812,4,2,1194,10 -999,FR,NP,201812,3,1,195,0 -999,FR,NP,201812,4,1,2990,0 -999,FR,NP,201812,4,2,2,0 -931,FR,BT,201812,4,2,655,0 -931,FR,BT,201812,4,2,5231,7 -963,FR,BT,201812,3,1,74,0 -971,FR,BT,201812,4,2,12,0 -016,FR,MM,201812,1,1,29200,100000 -016,FR,MM,201812,1,1,79800,250000 -016,FR,MM,201812,3,1,15654,50000 -016,FR,MM,201812,3,1,109578,350000 -016,FR,MM,201812,8,1,222213,600000 -016,FR,MM,201812,8,1,115324,250000 -056,FR,MM,201812,1,1,102172,11690 -121,FR,MM,201812,1,2,6500,930 -121,FR,MM,201812,1,2,30434,17460 -121,FR,MM,201812,1,2,14615,1260 -121,FR,MM,201812,1,2,23598,10754 -121,FR,MM,201812,4,2,80,8 -121,FR,MM,201812,4,2,1359,45 -128,FR,MM,201812,1,2,6439,6622 -132,FR,MM,201812,0,2,60,3 -139,FR,MM,201812,1,2,172788,74460 -142,FR,MM,201812,1,1,3780,300 -142,FR,MM,201812,4,2,4618,269 -142,FR,MM,201812,4,2,5916,527 -144,FR,MM,201812,1,2,163182,99000 -144,FR,MM,201812,4,2,9121,697 -148,FR,MM,201812,1,1,95668,12435 -162,FR,MM,201812,1,2,47446,136000 -163,FR,MM,201812,1,2,3157,483 -164,FR,MM,201812,1,2,7100,1335 -179,FR,MM,201812,1,2,72733,459640 -179,FR,MM,201812,1,2,152115,49524 -551,FR,MM,201812,4,2,881,46 -552,FR,MM,201812,4,2,6,0 -819,FR,MM,201812,4,2,3625,55 -893,FR,MM,201812,1,2,76150,5002 -893,FR,MM,201812,1,2,6212,1071 -893,FR,MM,201812,1,2,10315,790 -893,FR,MM,201812,4,2,81516,279 -893,FR,MM,201812,4,2,5721,180 -893,FR,MM,201812,4,2,4214,651 -893,FR,MM,201812,4,2,10195,70 -893,FR,MM,201812,4,2,1274248,5873 -893,FR,MM,201812,4,2,16470,2550 -896,FR,MM,201812,1,2,6571,2000 -896,FR,MM,201812,4,2,25885,86 -896,FR,MM,201812,4,2,3677,43 -896,FR,MM,201812,4,2,922,15 -896,FR,MM,201812,4,2,7073,94 -910,FR,MM,201812,4,1,16487,102 -910,FR,MM,201812,4,1,16822,123 -910,FR,MM,201812,1,2,11427,509 -910,FR,MM,201812,1,2,334,0 -910,FR,MM,201812,4,2,394013,278 -910,FR,MM,201812,4,2,2533,10 -910,FR,MM,201812,4,2,47085,76 -910,FR,MM,201812,4,2,76304,770 -910,FR,MM,201812,4,2,829,100 -910,FR,MM,201812,4,2,1196,80 -910,FR,MM,201812,9,2,17826248,12950 -920,FR,MM,201812,4,2,1036,10 -931,FR,MM,201812,4,1,3978,3 -931,FR,MM,201812,4,1,2279,20 -931,FR,MM,201812,4,1,115,0 -931,FR,MM,201812,1,2,21651,52 -931,FR,MM,201812,1,2,592727,81239 -931,FR,MM,201812,1,2,137467,2000 -931,FR,MM,201812,3,2,554,2 -931,FR,MM,201812,4,2,67672,1734 -931,FR,MM,201812,4,2,45466,385 -931,FR,MM,201812,4,2,130299,1950 -931,FR,MM,201812,4,2,92905,299 -931,FR,MM,201812,4,2,46053,50 -931,FR,MM,201812,4,2,512,1 -931,FR,MM,201812,4,2,1976,1 -931,FR,MM,201812,4,2,512,1 -939,FR,MM,201812,3,1,360,0 -939,FR,MM,201812,1,2,432,7 -939,FR,MM,201812,1,2,7500,649 -939,FR,MM,201812,1,2,44336,6555 -939,FR,MM,201812,1,2,1144,15 -939,FR,MM,201812,1,2,321,4 -939,FR,MM,201812,4,2,104350,338 -939,FR,MM,201812,4,2,20659,1254 -939,FR,MM,201812,4,2,50844,79 -939,FR,MM,201812,4,2,20635,1 -939,FR,MM,201812,4,2,11570,1080 -941,FR,MM,201812,1,2,151303,44165 -949,FR,MM,201812,1,1,11961,253 -949,FR,MM,201812,0,2,450,15 -949,FR,MM,201812,1,2,54607,1970 -949,FR,MM,201812,3,2,24173,114 -949,FR,MM,201812,4,2,2899,195 -949,FR,MM,201812,4,2,546,5 -949,FR,MM,201812,4,2,563,9 -949,FR,MM,201812,4,2,2835,4 -949,FR,MM,201812,4,2,11031,190 -951,FR,MM,201812,4,1,1052,18 -952,FR,MM,201812,4,1,680,0 -952,FR,MM,201812,4,1,582,0 -952,FR,MM,201812,4,2,57,0 -962,FR,MM,201812,3,1,2126,49 -962,FR,MM,201812,4,1,1328,70 -962,FR,MM,201812,4,1,6900,61 -962,FR,MM,201812,4,1,5352,65 -962,FR,MM,201812,1,2,1040,21 -962,FR,MM,201812,4,2,67135,2075 -963,FR,MM,201812,0,1,4830842,286322 -963,FR,MM,201812,1,1,148887,4800 -963,FR,MM,201812,1,1,67327,4804 -963,FR,MM,201812,1,1,670336,26231 -963,FR,MM,201812,1,1,57268,3064 -963,FR,MM,201812,1,1,387434,16306 -963,FR,MM,201812,1,1,109594,2077 -963,FR,MM,201812,1,1,85630,8275 -963,FR,MM,201812,1,1,4185,120 -963,FR,MM,201812,1,1,1425897,86103 -963,FR,MM,201812,1,1,248487,13052 -963,FR,MM,201812,1,1,148237,7012 -963,FR,MM,201812,1,1,270144,10769 -963,FR,MM,201812,1,1,1320888,68887 -963,FR,MM,201812,1,1,609599,29033 -963,FR,MM,201812,1,1,628077,38473 -963,FR,MM,201812,1,1,233961,11395 -963,FR,MM,201812,1,1,162805,11691 -963,FR,MM,201812,3,1,10025,273 -963,FR,MM,201812,3,1,668,14 -963,FR,MM,201812,3,1,978,28 -963,FR,MM,201812,4,1,457606,16068 -963,FR,MM,201812,4,1,169,0 -963,FR,MM,201812,4,1,84144,4526 -963,FR,MM,201812,4,1,3950,21 -963,FR,MM,201812,4,1,162027,6839 -963,FR,MM,201812,4,1,68517,1109 -963,FR,MM,201812,4,1,80903,3248 -963,FR,MM,201812,4,1,104971,3977 -963,FR,MM,201812,4,1,281301,7065 -963,FR,MM,201812,4,1,172185,6757 -963,FR,MM,201812,4,1,9386,291 -963,FR,MM,201812,4,1,25318,1094 -963,FR,MM,201812,4,1,2058,28 -963,FR,MM,201812,4,1,74229,3630 -963,FR,MM,201812,4,1,44054,1116 -963,FR,MM,201812,4,2,1939,2 -963,FR,MM,201812,4,2,1509,24 -971,FR,MM,201812,1,2,27,0 -971,FR,MM,201812,1,2,3389,491 -971,FR,MM,201812,4,2,23,1 -971,FR,MM,201812,4,2,1147,1 -973,FR,MM,201812,1,1,759,75 -973,FR,MM,201812,4,1,20,1 -974,FR,MM,201812,3,2,25,13 -975,FR,MM,201812,1,1,28085,4020 -975,FR,MM,201812,4,2,784,7 -976,FR,MM,201812,4,1,309,110 -976,FR,MM,201812,4,2,614,10 -979,FR,MM,201812,1,1,837,150 -979,FR,MM,201812,1,1,38544,2502 -979,FR,MM,201812,1,1,42807,2047 -979,FR,MM,201812,1,1,20474,2067 -979,FR,MM,201812,1,1,145518,3529 -979,FR,MM,201812,3,1,653,5 -979,FR,MM,201812,4,1,5756,1 -979,FR,MM,201812,4,1,18470,447 -979,FR,MM,201812,0,2,330,1 -979,FR,MM,201812,3,2,4264,85 -979,FR,MM,201812,4,2,11343,326 -979,FR,MM,201812,4,2,1678,14 -979,FR,MM,201812,4,2,27290,117 -979,FR,MM,201812,4,2,2126,0 -979,FR,MM,201812,4,2,2276,100 -999,FR,MM,201812,1,1,1563,0 -999,FR,MM,201812,1,2,18360,1980 -999,FR,MM,201812,1,2,13296,0 -999,FR,MM,201812,4,2,11826,0 -999,FR,MM,201812,4,2,3170,0 -999,FR,MM,201812,4,2,200,0 -001,FR,TH,201812,3,1,8127,500 -001,FR,TH,201812,4,1,1,9 -001,FR,TH,201812,4,2,106546,7860 -001,FR,TH,201812,4,2,149311,188 -015,FR,TH,201812,4,1,18822,3037 -015,FR,TH,201812,4,1,227,30 -015,FR,TH,201812,4,1,3907,620 -015,FR,TH,201812,4,1,20158,3639 -015,FR,TH,201812,4,1,247,46 -016,FR,TH,201812,1,1,72090,66250 -016,FR,TH,201812,1,1,581,880 -016,FR,TH,201812,1,1,84992,145500 -016,FR,TH,201812,1,1,42775,45500 -016,FR,TH,201812,1,1,14870,18990 -016,FR,TH,201812,1,1,78267,63550 -016,FR,TH,201812,1,1,737170,624000 -016,FR,TH,201812,1,1,944564,1008155 -016,FR,TH,201812,1,1,29859,34000 -016,FR,TH,201812,1,1,136562,173000 -016,FR,TH,201812,1,1,115856,200000 -016,FR,TH,201812,1,1,30458,50000 -016,FR,TH,201812,1,1,335330,325370 -016,FR,TH,201812,1,1,1517941,1600140 -016,FR,TH,201812,1,1,13816,23976 -016,FR,TH,201812,1,1,53741,72000 -016,FR,TH,201812,1,1,202112,188500 -016,FR,TH,201812,3,1,568,980 -016,FR,TH,201812,3,1,814,840 -016,FR,TH,201812,3,1,48652,40000 -020,FR,TH,201812,1,2,1885,500 -035,FR,TH,201812,1,1,5809,1102 -035,FR,TH,201812,1,1,44745,14255 -035,FR,TH,201812,1,1,41976,21600 -035,FR,TH,201812,1,1,18496,23161 -035,FR,TH,201812,4,1,139284,25973 -035,FR,TH,201812,4,1,1471,103 -035,FR,TH,201812,4,1,72603,12656 -035,FR,TH,201812,4,1,76794,15991 -035,FR,TH,201812,1,2,832599,630509 -035,FR,TH,201812,1,2,21178,21168 -035,FR,TH,201812,1,2,590143,521262 -035,FR,TH,201812,1,2,87280,84672 -035,FR,TH,201812,1,2,43128,42336 -035,FR,TH,201812,1,2,184808,169344 -039,FR,TH,201812,1,1,4211,798 -039,FR,TH,201812,1,1,3089,42 -039,FR,TH,201812,4,1,24305,4445 -039,FR,TH,201812,4,1,1187,138 -039,FR,TH,201812,4,1,265423,43049 -039,FR,TH,201812,4,1,277284,42736 -039,FR,TH,201812,4,2,7901,846 -039,FR,TH,201812,4,2,56794,1341 -039,FR,TH,201812,4,2,101829,10172 -043,FR,TH,201812,1,1,163393,96244 -056,FR,TH,201812,1,1,43897,9121 -057,FR,TH,201812,1,1,3864,15715 -057,FR,TH,201812,1,1,773,3615 -092,FR,TH,201812,1,1,738347,441000 -092,FR,TH,201812,1,1,309800,161280 -092,FR,TH,201812,1,1,406695,310720 -092,FR,TH,201812,1,1,138689,100000 -092,FR,TH,201812,1,1,167268,120960 -092,FR,TH,201812,1,1,991051,740000 -092,FR,TH,201812,1,1,2067024,1563080 -092,FR,TH,201812,1,1,221512,168040 -092,FR,TH,201812,1,1,674616,501440 -092,FR,TH,201812,3,1,159,19 -092,FR,TH,201812,1,2,138921,94910 -092,FR,TH,201812,1,2,42500,16000 -092,FR,TH,201812,1,2,3574,880 -092,FR,TH,201812,1,2,86944,40372 -099,FR,TH,201812,0,1,218,5 -099,FR,TH,201812,1,1,4957,340 -099,FR,TH,201812,1,1,1034,546 -099,FR,TH,201812,1,1,11923,12000 -099,FR,TH,201812,1,1,20207,2665 -099,FR,TH,201812,1,1,236,63 -099,FR,TH,201812,1,1,14154,5745 -099,FR,TH,201812,1,1,138280,6969 -099,FR,TH,201812,1,1,1706,500 -099,FR,TH,201812,3,1,10897,400 -099,FR,TH,201812,4,1,55669,3268 -099,FR,TH,201812,4,1,8841,60 -099,FR,TH,201812,4,1,16,0 -099,FR,TH,201812,4,1,23603,827 -099,FR,TH,201812,4,1,9734,992 -099,FR,TH,201812,4,1,3251,580 -099,FR,TH,201812,4,1,83458,10568 -099,FR,TH,201812,4,1,2961,31 -099,FR,TH,201812,1,2,48186,3360 -099,FR,TH,201812,1,2,103259,364425 -099,FR,TH,201812,1,2,38902,16800 -099,FR,TH,201812,1,2,50274,192860 -099,FR,TH,201812,4,2,25789,488 -099,FR,TH,201812,4,2,7003,276 -099,FR,TH,201812,4,2,9082,620 -099,FR,TH,201812,4,2,3491,1370 -111,FR,TH,201812,1,2,978,69 -112,FR,TH,201812,1,1,81,25 -112,FR,TH,201812,1,1,12350,7442 -112,FR,TH,201812,1,1,6256,3628 -112,FR,TH,201812,1,2,693,315 -113,FR,TH,201812,1,1,22075,69000 -121,FR,TH,201812,1,1,39,4 -121,FR,TH,201812,1,2,51973,1873 -121,FR,TH,201812,1,2,800,67 -121,FR,TH,201812,1,2,17999,1332 -121,FR,TH,201812,1,2,247076,9632 -121,FR,TH,201812,1,2,1243678,83748 -121,FR,TH,201812,1,2,180414,3342 -121,FR,TH,201812,1,2,58631,4045 -121,FR,TH,201812,1,2,1384740,128609 -121,FR,TH,201812,1,2,97300,9000 -121,FR,TH,201812,3,2,66292,41322 -121,FR,TH,201812,4,2,36179,676 -121,FR,TH,201812,4,2,38658,3757 -121,FR,TH,201812,4,2,87504,679 -121,FR,TH,201812,4,2,101037,663 -121,FR,TH,201812,4,2,3488,3 -122,FR,TH,201812,1,1,21269,17512 -122,FR,TH,201812,1,1,19,3 -122,FR,TH,201812,1,1,95210,79728 -122,FR,TH,201812,1,1,9750,12997 -122,FR,TH,201812,1,1,62146,51744 -122,FR,TH,201812,1,2,246,427 -122,FR,TH,201812,1,2,1092,317 -125,FR,TH,201812,1,1,243,8 -125,FR,TH,201812,1,2,9685,479 -125,FR,TH,201812,1,2,14969,1195 -125,FR,TH,201812,1,2,2078,192 -125,FR,TH,201812,1,2,144231,38304 -125,FR,TH,201812,4,2,15304,1327 -128,FR,TH,201812,1,1,1833,169 -128,FR,TH,201812,1,1,8014,7914 -128,FR,TH,201812,1,1,17731,16406 -128,FR,TH,201812,1,1,25789,17367 -128,FR,TH,201812,1,1,20341,16800 -128,FR,TH,201812,1,1,321609,385629 -128,FR,TH,201812,1,1,82304,76322 -128,FR,TH,201812,1,1,19869,16824 -128,FR,TH,201812,1,1,41450,49115 -128,FR,TH,201812,1,1,1039,852 -128,FR,TH,201812,3,1,82,2 -128,FR,TH,201812,4,1,67,1 -128,FR,TH,201812,1,2,194630,184432 -128,FR,TH,201812,1,2,267655,320420 -128,FR,TH,201812,1,2,55416,11700 -128,FR,TH,201812,1,2,5027,5544 -128,FR,TH,201812,3,2,30,1 -128,FR,TH,201812,3,2,17820,9757 -131,FR,TH,201812,4,1,236,4 -131,FR,TH,201812,1,2,12327,812 -131,FR,TH,201812,1,2,40182,11397 -131,FR,TH,201812,1,2,447,28 -131,FR,TH,201812,4,2,437,38 -132,FR,TH,201812,0,2,345,18 -132,FR,TH,201812,1,2,27905,6590 -132,FR,TH,201812,1,2,1171,284 -132,FR,TH,201812,1,2,115300,24430 -132,FR,TH,201812,1,2,103597,36000 -132,FR,TH,201812,3,2,9472,730 -132,FR,TH,201812,3,2,44365,4081 -132,FR,TH,201812,4,2,1014,250 -132,FR,TH,201812,4,2,14,27 -133,FR,TH,201812,0,1,292,8 -133,FR,TH,201812,1,1,3131,142 -133,FR,TH,201812,1,1,277,172 -133,FR,TH,201812,1,1,9216,135 -133,FR,TH,201812,1,1,1807,545 -133,FR,TH,201812,3,1,52,0 -133,FR,TH,201812,4,1,280,66 -133,FR,TH,201812,4,1,236,4 -133,FR,TH,201812,4,1,336,48 -133,FR,TH,201812,4,1,8327,1416 -133,FR,TH,201812,4,1,282,40 -133,FR,TH,201812,4,1,17019,3002 -133,FR,TH,201812,5,1,780,12 -133,FR,TH,201812,1,2,23673,534 -133,FR,TH,201812,1,2,965,105 -133,FR,TH,201812,4,2,5488,110 -134,FR,TH,201812,0,1,57820,16500 -136,FR,TH,201812,1,1,1793,1681 -136,FR,TH,201812,1,1,2859,700 -136,FR,TH,201812,1,1,41692,38488 -136,FR,TH,201812,1,1,8730,4583 -136,FR,TH,201812,1,2,17000,5000 -136,FR,TH,201812,1,2,236,109 -136,FR,TH,201812,1,2,24212,12000 -136,FR,TH,201812,1,2,1078,484 -136,FR,TH,201812,1,2,14219,3665 -136,FR,TH,201812,3,2,5052,359 -136,FR,TH,201812,3,2,17353,1498 -136,FR,TH,201812,4,2,4371,850 -139,FR,TH,201812,0,1,1882,18 -139,FR,TH,201812,1,1,62682,42932 -139,FR,TH,201812,1,1,78043,44352 -139,FR,TH,201812,1,1,15994,11280 -139,FR,TH,201812,1,1,2045,675 -139,FR,TH,201812,1,1,9248,16800 -139,FR,TH,201812,1,1,11165,4822 -139,FR,TH,201812,1,1,21218,5991 -139,FR,TH,201812,1,1,69170,48778 -139,FR,TH,201812,1,1,324735,167288 -139,FR,TH,201812,1,1,30762,21701 -139,FR,TH,201812,1,1,260298,114620 -139,FR,TH,201812,1,1,15978,11280 -139,FR,TH,201812,1,1,59290,57560 -139,FR,TH,201812,1,1,1804463,923760 -139,FR,TH,201812,1,1,86314,41600 -139,FR,TH,201812,1,1,83350,31638 -139,FR,TH,201812,1,1,4011,1602 -139,FR,TH,201812,1,1,43392,20710 -139,FR,TH,201812,1,1,475666,300632 -139,FR,TH,201812,1,1,34476,23611 -139,FR,TH,201812,1,1,90011,45848 -139,FR,TH,201812,3,1,554,37 -139,FR,TH,201812,3,1,70275,27108 -139,FR,TH,201812,4,1,153,10 -139,FR,TH,201812,4,1,4566,261 -139,FR,TH,201812,4,1,30,1 -139,FR,TH,201812,1,2,32633,10130 -139,FR,TH,201812,1,2,4625,2140 -139,FR,TH,201812,1,2,373555,103419 -139,FR,TH,201812,1,2,253059,30928 -139,FR,TH,201812,1,2,87126,36775 -139,FR,TH,201812,1,2,394809,46828 -139,FR,TH,201812,1,2,39351,7120 -139,FR,TH,201812,1,2,5501,2500 -139,FR,TH,201812,1,2,648324,477350 -139,FR,TH,201812,1,2,40779,6502 -139,FR,TH,201812,1,2,9961,6143 -139,FR,TH,201812,3,2,131600,616000 -139,FR,TH,201812,4,2,14551,3432 -139,FR,TH,201812,4,2,10911,904 -139,FR,TH,201812,4,2,101426,11519 -141,FR,TH,201812,1,2,79317,3148 -141,FR,TH,201812,4,2,14621,455 -141,FR,TH,201812,4,2,343,22 -141,FR,TH,201812,4,2,15875,1437 -142,FR,TH,201812,0,1,47212,2642 -142,FR,TH,201812,1,1,47854,26500 -142,FR,TH,201812,1,1,171325,34800 -142,FR,TH,201812,3,1,16852,86 -142,FR,TH,201812,4,1,1359,82 -142,FR,TH,201812,4,1,4343,12 -142,FR,TH,201812,4,1,20591,167 -142,FR,TH,201812,4,1,1499,92 -142,FR,TH,201812,1,2,10426,23040 -142,FR,TH,201812,1,2,560912,44760 -142,FR,TH,201812,1,2,12084,23040 -142,FR,TH,201812,4,2,26646,2495 -142,FR,TH,201812,4,2,392366,29331 -142,FR,TH,201812,4,2,4835,500 -142,FR,TH,201812,4,2,196842,20799 -143,FR,TH,201812,1,2,91546,33456 -143,FR,TH,201812,1,2,32169,10780 -143,FR,TH,201812,1,2,19118,8574 -143,FR,TH,201812,4,2,53,21 -143,FR,TH,201812,4,2,75,49 -144,FR,TH,201812,1,2,51602,5204 -144,FR,TH,201812,1,2,15742,2715 -144,FR,TH,201812,1,2,498619,372428 -144,FR,TH,201812,1,2,37704,4979 -144,FR,TH,201812,1,2,42700,8000 -144,FR,TH,201812,1,2,109535,17200 -144,FR,TH,201812,1,2,706683,498505 -144,FR,TH,201812,1,2,144948,23600 -144,FR,TH,201812,3,2,150,16 -144,FR,TH,201812,4,2,94937,17289 -144,FR,TH,201812,4,2,36576,2711 -144,FR,TH,201812,4,2,178422,21597 -145,FR,TH,201812,1,2,12664,10920 -145,FR,TH,201812,4,2,99,28 -147,FR,TH,201812,0,1,144210,44120 -147,FR,TH,201812,1,1,52114,16185 -147,FR,TH,201812,1,1,285585,72619 -147,FR,TH,201812,1,1,30238,5701 -147,FR,TH,201812,1,1,19112,2400 -147,FR,TH,201812,1,1,346339,79735 -147,FR,TH,201812,1,1,57785,8910 -147,FR,TH,201812,4,1,31605,1935 -147,FR,TH,201812,1,2,169015,5760 -147,FR,TH,201812,1,2,3235,750 -147,FR,TH,201812,1,2,134,20 -147,FR,TH,201812,4,2,34067,4059 -147,FR,TH,201812,4,2,104,8 -147,FR,TH,201812,4,2,98328,7551 -148,FR,TH,201812,1,1,28920,9000 -148,FR,TH,201812,1,1,32726,8855 -148,FR,TH,201812,1,1,11021,2065 -148,FR,TH,201812,1,1,66741,15784 -148,FR,TH,201812,1,1,111426,7849 -148,FR,TH,201812,1,1,210239,40881 -148,FR,TH,201812,1,1,21294,3013 -148,FR,TH,201812,1,2,660,80 -148,FR,TH,201812,4,2,14944,240 -148,FR,TH,201812,4,2,38313,108 -148,FR,TH,201812,4,2,165050,28338 -161,FR,TH,201812,1,1,17280,15400 -161,FR,TH,201812,1,1,40022,66000 -161,FR,TH,201812,1,1,9390,16000 -161,FR,TH,201812,1,1,19101,15400 -161,FR,TH,201812,1,1,3540,3200 -161,FR,TH,201812,1,1,83,27 -161,FR,TH,201812,1,1,14329,13750 -161,FR,TH,201812,1,2,12296,23100 -161,FR,TH,201812,1,2,17889,15710 -161,FR,TH,201812,1,2,14500,40500 -161,FR,TH,201812,1,2,43494,121500 -161,FR,TH,201812,1,2,8705,11750 -163,FR,TH,201812,1,1,38965,6591 -163,FR,TH,201812,1,1,40821,22757 -163,FR,TH,201812,1,1,555,33 -163,FR,TH,201812,1,1,4758,1612 -163,FR,TH,201812,1,1,197066,80864 -163,FR,TH,201812,1,1,28151,10908 -163,FR,TH,201812,1,1,82690,30081 -163,FR,TH,201812,1,1,24205,4200 -163,FR,TH,201812,1,1,496081,132187 -163,FR,TH,201812,1,1,42368,16860 -163,FR,TH,201812,1,1,19102,10010 -163,FR,TH,201812,1,1,47868,10615 -163,FR,TH,201812,4,1,74,9 -163,FR,TH,201812,1,2,2657,1230 -163,FR,TH,201812,1,2,63268,19679 -163,FR,TH,201812,1,2,2306,191 -163,FR,TH,201812,1,2,76390,24746 -163,FR,TH,201812,3,2,3381,379 -163,FR,TH,201812,3,2,3351,324 -163,FR,TH,201812,4,2,2093,628 -163,FR,TH,201812,4,2,9100,1495 -164,FR,TH,201812,1,1,1761,1494 -164,FR,TH,201812,1,1,28477,6568 -164,FR,TH,201812,1,1,15679,2409 -164,FR,TH,201812,1,1,222,120 -164,FR,TH,201812,1,1,38407,37845 -164,FR,TH,201812,1,1,152338,139140 -164,FR,TH,201812,1,1,24557,14683 -164,FR,TH,201812,1,1,80594,25421 -164,FR,TH,201812,1,1,10882,16800 -164,FR,TH,201812,1,1,98175,107466 -164,FR,TH,201812,1,1,290125,226128 -164,FR,TH,201812,1,1,167397,48028 -164,FR,TH,201812,1,1,194309,118310 -164,FR,TH,201812,1,1,18736,14275 -164,FR,TH,201812,1,1,63626,38782 -164,FR,TH,201812,1,1,48939,18000 -164,FR,TH,201812,1,1,13812,14268 -164,FR,TH,201812,3,1,88,15 -164,FR,TH,201812,4,1,639,50 -164,FR,TH,201812,1,2,31774,5250 -164,FR,TH,201812,1,2,696,322 -164,FR,TH,201812,1,2,87921,25400 -164,FR,TH,201812,1,2,1916,876 -164,FR,TH,201812,1,2,43959,10297 -164,FR,TH,201812,1,2,45839,10051 -164,FR,TH,201812,3,2,1260,110 -164,FR,TH,201812,4,2,890,100 -165,FR,TH,201812,1,1,652,400 -165,FR,TH,201812,1,1,26262,17000 -165,FR,TH,201812,1,1,21407,13830 -166,FR,TH,201812,1,1,983,763 -166,FR,TH,201812,1,1,1575,1356 -166,FR,TH,201812,1,1,126002,180000 -166,FR,TH,201812,1,1,62231,31525 -166,FR,TH,201812,1,1,69602,100000 -166,FR,TH,201812,1,1,87172,18984 -166,FR,TH,201812,1,1,34183,7197 -166,FR,TH,201812,1,1,23861,15430 -166,FR,TH,201812,3,1,217489,300000 -166,FR,TH,201812,4,1,737,23 -166,FR,TH,201812,4,1,1515,95 -166,FR,TH,201812,4,1,387,37 -166,FR,TH,201812,1,2,2984,570 -166,FR,TH,201812,1,2,2051,2160 -166,FR,TH,201812,1,2,7334,2199 -166,FR,TH,201812,4,2,548,12 -179,FR,TH,201812,1,1,96,90 -179,FR,TH,201812,1,1,720424,156065 -179,FR,TH,201812,1,1,19751,12648 -179,FR,TH,201812,1,1,99711,26207 -179,FR,TH,201812,1,1,19731,12648 -179,FR,TH,201812,1,2,94833,21696 -179,FR,TH,201812,1,2,6240,800 -179,FR,TH,201812,1,2,2711637,4573419 -179,FR,TH,201812,1,2,23180,40000 -179,FR,TH,201812,1,2,25665,12860 -179,FR,TH,201812,1,2,651768,1242896 -179,FR,TH,201812,1,2,176593,18690 -179,FR,TH,201812,1,2,19810,93260 -179,FR,TH,201812,1,2,102562,301540 -179,FR,TH,201812,4,2,29917,4040 -179,FR,TH,201812,4,2,60,195 -179,FR,TH,201812,4,2,3120,400 -181,FR,TH,201812,1,1,716,400 -181,FR,TH,201812,1,1,6091,1816 -181,FR,TH,201812,4,1,32,6 -181,FR,TH,201812,1,2,147776,259279 -182,FR,TH,201812,1,1,709,580 -182,FR,TH,201812,1,1,344,145 -182,FR,TH,201812,1,1,20830,2650 -182,FR,TH,201812,1,2,7539,512 -182,FR,TH,201812,1,2,59445,49760 -182,FR,TH,201812,4,2,1969,80 -182,FR,TH,201812,4,2,1061,28 -182,FR,TH,201812,4,2,2267,27 -211,FR,TH,201812,1,2,77713,270000 -211,FR,TH,201812,1,2,31155,108000 -323,FR,TH,201812,4,2,268,2 -325,FR,TH,201812,1,2,21350,27720 -327,FR,TH,201812,1,2,1908,211 -330,FR,TH,201812,4,2,21,1 -341,FR,TH,201812,4,1,59,0 -341,FR,TH,201812,1,2,13155,3670 -341,FR,TH,201812,1,2,2385,746 -341,FR,TH,201812,1,2,61731,17809 -341,FR,TH,201812,1,2,249182,93256 -341,FR,TH,201812,1,2,75984,37199 -341,FR,TH,201812,1,2,74213,15438 -341,FR,TH,201812,1,2,13143,5793 -341,FR,TH,201812,3,2,21738,5922 -341,FR,TH,201812,4,2,1947,299 -341,FR,TH,201812,4,2,30981,2400 -341,FR,TH,201812,4,2,11112,1602 -341,FR,TH,201812,4,2,224,5 -410,FR,TH,201812,1,2,17850,75000 -451,FR,TH,201812,1,2,42475,24280 -451,FR,TH,201812,1,2,88265,162960 -459,FR,TH,201812,4,2,13094,43 -512,FR,TH,201812,1,2,8156,200 -513,FR,TH,201812,1,2,25096,11964 -533,FR,TH,201812,4,1,118,3 -533,FR,TH,201812,1,2,205056,51754 -533,FR,TH,201812,1,2,92008,33392 -533,FR,TH,201812,4,2,4820,823 -536,FR,TH,201812,1,2,13861,4451 -536,FR,TH,201812,1,2,39174,19950 -536,FR,TH,201812,1,2,107896,67343 -536,FR,TH,201812,4,2,58673,326 -537,FR,TH,201812,1,2,57294,30000 -542,FR,TH,201812,1,2,924608,1470340 -542,FR,TH,201812,1,2,12100,19960 -543,FR,TH,201812,1,2,27295,875 -543,FR,TH,201812,4,2,10030,2667 -551,FR,TH,201812,1,1,23057,1449 -551,FR,TH,201812,1,1,143326,39167 -551,FR,TH,201812,4,1,597,0 -551,FR,TH,201812,4,1,1171,119 -551,FR,TH,201812,1,2,3553,199 -551,FR,TH,201812,1,2,5348,513 -551,FR,TH,201812,1,2,7828,312 -551,FR,TH,201812,1,2,113454,21478 -551,FR,TH,201812,1,2,32892,3246 -551,FR,TH,201812,4,2,2990,37 -551,FR,TH,201812,4,2,667,0 -551,FR,TH,201812,4,2,2686,244 -551,FR,TH,201812,4,2,5159,1 -551,FR,TH,201812,4,2,3756,1550 -552,FR,TH,201812,1,1,1363,1574 -552,FR,TH,201812,1,1,101567,70000 -552,FR,TH,201812,3,1,443,17 -552,FR,TH,201812,4,1,675,11 -552,FR,TH,201812,1,2,5940,2700 -552,FR,TH,201812,1,2,70,9 -552,FR,TH,201812,4,2,6454,694 -552,FR,TH,201812,4,2,17279,1672 -552,FR,TH,201812,4,2,5310,6 -552,FR,TH,201812,4,2,9936,103 -561,FR,TH,201812,1,1,11,2 -564,FR,TH,201812,1,2,15351,4982 -565,FR,TH,201812,3,2,15,4 -565,FR,TH,201812,4,2,26625,32 -565,FR,TH,201812,4,2,17013,100 -568,FR,TH,201812,1,1,10784,3329 -568,FR,TH,201812,1,1,561991,190694 -568,FR,TH,201812,3,1,917,12 -568,FR,TH,201812,4,1,2268,108 -568,FR,TH,201812,4,1,897,35 -568,FR,TH,201812,1,2,57400,3312 -568,FR,TH,201812,1,2,64734,16814 -568,FR,TH,201812,1,2,48483,12650 -568,FR,TH,201812,4,2,17497,655 -568,FR,TH,201812,4,2,5638,380 -611,FR,TH,201812,1,2,976,247 -612,FR,TH,201812,1,2,3075,27210 -612,FR,TH,201812,1,2,15074,125000 -614,FR,TH,201812,3,1,97,9 -614,FR,TH,201812,1,2,31753,48000 -614,FR,TH,201812,1,2,165258,467500 -621,FR,TH,201812,1,2,1545,390 -621,FR,TH,201812,4,2,2660,259 -633,FR,TH,201812,1,1,333070,10000000 -639,FR,TH,201812,3,1,59,0 -639,FR,TH,201812,4,1,206,1 -639,FR,TH,201812,1,2,36127,8000 -639,FR,TH,201812,1,2,19155,81600 -639,FR,TH,201812,1,2,14365,61200 -650,FR,TH,201812,4,1,79,0 -691,FR,TH,201812,1,1,781,172 -691,FR,TH,201812,1,1,29424,115120 -691,FR,TH,201812,1,1,1806,1597 -691,FR,TH,201812,1,1,18089,39114 -691,FR,TH,201812,1,1,74,18 -691,FR,TH,201812,1,1,1584,660 -691,FR,TH,201812,1,1,4274,1715 -691,FR,TH,201812,1,1,2184,970 -691,FR,TH,201812,3,1,447,0 -691,FR,TH,201812,4,1,5073,3 -691,FR,TH,201812,4,1,96,0 -691,FR,TH,201812,1,2,6359,4012 -691,FR,TH,201812,1,2,69935,1691 -691,FR,TH,201812,1,2,145975,3370 -691,FR,TH,201812,3,2,20232,436 -691,FR,TH,201812,4,2,75474,1784 -691,FR,TH,201812,4,2,2851,77 -691,FR,TH,201812,4,2,3435,120 -692,FR,TH,201812,1,1,28224,123101 -692,FR,TH,201812,1,1,6028,6468 -692,FR,TH,201812,1,2,8833,2178 -692,FR,TH,201812,1,2,375,72 -692,FR,TH,201812,1,2,3095,210 -692,FR,TH,201812,1,2,143725,50554 -722,FR,TH,201812,1,2,8902,6000 -722,FR,TH,201812,1,2,882,45 -724,FR,TH,201812,1,2,1519,1011 -811,FR,TH,201812,1,2,3880,1835 -813,FR,TH,201812,1,2,410,24 -819,FR,TH,201812,1,1,23406,22000 -819,FR,TH,201812,1,1,2822,2500 -819,FR,TH,201812,1,1,145090,46080 -819,FR,TH,201812,1,1,76495,26790 -819,FR,TH,201812,1,2,34196,6330 -819,FR,TH,201812,1,2,270866,122629 -819,FR,TH,201812,1,2,131749,38101 -819,FR,TH,201812,1,2,6893,3090 -819,FR,TH,201812,1,2,87368,51742 -819,FR,TH,201812,1,2,139153,60000 -819,FR,TH,201812,3,2,5756,854 -819,FR,TH,201812,3,2,8300,9600 -819,FR,TH,201812,4,2,94068,1057 -819,FR,TH,201812,4,2,291,18 -819,FR,TH,201812,4,2,13236,343 -819,FR,TH,201812,4,2,5771,35 -819,FR,TH,201812,4,2,9109,61 -820,FR,TH,201812,1,2,10856,20000 -820,FR,TH,201812,1,2,206703,347000 -820,FR,TH,201812,1,2,95409,160000 -820,FR,TH,201812,1,2,26645,40000 -820,FR,TH,201812,1,2,47437,3400 -820,FR,TH,201812,4,2,4592,50 -841,FR,TH,201812,1,1,837854,1202733 -841,FR,TH,201812,1,1,835953,1201082 -842,FR,TH,201812,1,2,384584,4227890 -842,FR,TH,201812,1,2,233489,2200540 -842,FR,TH,201812,1,2,90647,992720 -842,FR,TH,201812,1,2,20783,241660 -842,FR,TH,201812,1,2,32735,729160 -842,FR,TH,201812,1,2,266731,3072785 -842,FR,TH,201812,1,2,75928,744700 -842,FR,TH,201812,1,2,57300,363180 -842,FR,TH,201812,1,2,59906,853620 -891,FR,TH,201812,0,1,5,0 -891,FR,TH,201812,1,1,72172,50798 -891,FR,TH,201812,1,1,75177,53962 -891,FR,TH,201812,1,1,154218,85755 -891,FR,TH,201812,1,1,218,6 -891,FR,TH,201812,1,1,13300,14000 -891,FR,TH,201812,1,1,263529,157200 -891,FR,TH,201812,1,1,368453,173800 -891,FR,TH,201812,1,1,37980,32000 -891,FR,TH,201812,3,1,2583,234 -891,FR,TH,201812,4,1,75,1 -891,FR,TH,201812,4,1,582,3 -891,FR,TH,201812,4,1,668,11 -891,FR,TH,201812,4,1,2396,54 -891,FR,TH,201812,4,1,27946,408 -891,FR,TH,201812,1,2,342481,43377 -891,FR,TH,201812,1,2,25325,1800 -891,FR,TH,201812,1,2,7939,2759 -891,FR,TH,201812,1,2,59547,6535 -891,FR,TH,201812,1,2,1,380 -891,FR,TH,201812,1,2,1206974,572955 -891,FR,TH,201812,1,2,30106,63872 -891,FR,TH,201812,1,2,50617,20074 -891,FR,TH,201812,1,2,17796,7425 -891,FR,TH,201812,1,2,80199,12125 -891,FR,TH,201812,1,2,10600,1646 -891,FR,TH,201812,1,2,301219,52298 -891,FR,TH,201812,1,2,152702,21463 -891,FR,TH,201812,1,2,24387,6177 -891,FR,TH,201812,1,2,43830,48000 -891,FR,TH,201812,1,2,41182,15000 -891,FR,TH,201812,3,2,76181,19083 -891,FR,TH,201812,4,2,14921,2204 -891,FR,TH,201812,4,2,2296,91 -891,FR,TH,201812,4,2,8759,318 -891,FR,TH,201812,4,2,750,1 -891,FR,TH,201812,4,2,17521,111 -891,FR,TH,201812,4,2,27500,590 -891,FR,TH,201812,4,2,17126,1784 -891,FR,TH,201812,4,2,1349,60 -891,FR,TH,201812,4,2,4155,111 -892,FR,TH,201812,0,1,31066,5287 -892,FR,TH,201812,0,2,161,1 -892,FR,TH,201812,1,2,49002,5685 -892,FR,TH,201812,1,2,9778,1800 -892,FR,TH,201812,1,2,857,17 -892,FR,TH,201812,1,2,152482,59713 -892,FR,TH,201812,1,2,17189,13000 -892,FR,TH,201812,1,2,48984,22500 -892,FR,TH,201812,1,2,2310,875 -892,FR,TH,201812,1,2,358549,126065 -892,FR,TH,201812,1,2,79895,26367 -892,FR,TH,201812,1,2,26485,18900 -892,FR,TH,201812,3,2,25818,11050 -892,FR,TH,201812,4,2,14084,954 -892,FR,TH,201812,4,2,3381,230 -892,FR,TH,201812,4,2,3294,40 -892,FR,TH,201812,4,2,609,50 -892,FR,TH,201812,4,2,63121,846 -892,FR,TH,201812,4,2,5453,300 -892,FR,TH,201812,4,2,3703,280 -892,FR,TH,201812,4,2,2356,12 -893,FR,TH,201812,0,1,3188,83 -893,FR,TH,201812,1,1,34,20 -893,FR,TH,201812,1,1,3990,462 -893,FR,TH,201812,1,1,110,50 -893,FR,TH,201812,1,1,6981,586 -893,FR,TH,201812,1,1,3520,1083 -893,FR,TH,201812,1,1,387112,32173 -893,FR,TH,201812,1,1,2568,207 -893,FR,TH,201812,1,1,670119,129476 -893,FR,TH,201812,1,1,114014,12113 -893,FR,TH,201812,1,1,105549,11253 -893,FR,TH,201812,1,1,2555,91 -893,FR,TH,201812,3,1,8540,463 -893,FR,TH,201812,4,1,2440,236 -893,FR,TH,201812,4,1,149,2 -893,FR,TH,201812,4,1,1794,81 -893,FR,TH,201812,4,1,59,3 -893,FR,TH,201812,4,1,2241,38 -893,FR,TH,201812,4,1,3789,432 -893,FR,TH,201812,4,1,182780,1519 -893,FR,TH,201812,4,1,1038,44 -893,FR,TH,201812,4,1,3465,51 -893,FR,TH,201812,4,1,6835,690 -893,FR,TH,201812,0,2,1387,11 -893,FR,TH,201812,1,2,852446,34489 -893,FR,TH,201812,1,2,55112,1942 -893,FR,TH,201812,1,2,14565,361 -893,FR,TH,201812,1,2,20990,1683 -893,FR,TH,201812,1,2,39623,1467 -893,FR,TH,201812,1,2,21107,1661 -893,FR,TH,201812,1,2,4526,614 -893,FR,TH,201812,1,2,1121051,64178 -893,FR,TH,201812,1,2,185541,873 -893,FR,TH,201812,1,2,85040,4755 -893,FR,TH,201812,1,2,207947,12744 -893,FR,TH,201812,1,2,1397439,51525 -893,FR,TH,201812,1,2,253524,24600 -893,FR,TH,201812,1,2,132322,16833 -893,FR,TH,201812,1,2,435033,32446 -893,FR,TH,201812,1,2,21160,9000 -893,FR,TH,201812,1,2,380410,10610 -893,FR,TH,201812,3,2,3257,100 -893,FR,TH,201812,3,2,17527,3565 -893,FR,TH,201812,3,2,10800,8000 -893,FR,TH,201812,4,2,1970197,33845 -893,FR,TH,201812,4,2,5485,200 -893,FR,TH,201812,4,2,716616,2204 -893,FR,TH,201812,4,2,318054,7589 -893,FR,TH,201812,4,2,32550,671 -893,FR,TH,201812,4,2,12000,100 -893,FR,TH,201812,4,2,121274,1677 -893,FR,TH,201812,4,2,1262,1 -893,FR,TH,201812,4,2,988,30 -893,FR,TH,201812,4,2,44000,1930 -893,FR,TH,201812,4,2,173206,3834 -893,FR,TH,201812,4,2,2333,92 -893,FR,TH,201812,4,2,10080,108 -893,FR,TH,201812,4,2,2440011,18190 -893,FR,TH,201812,4,2,20598,55 -893,FR,TH,201812,4,2,678,13 -893,FR,TH,201812,4,2,12187,450 -893,FR,TH,201812,4,2,13580,26 -893,FR,TH,201812,4,2,14137,360 -893,FR,TH,201812,4,2,15192,142 -894,FR,TH,201812,4,2,428597,3961 -895,FR,TH,201812,0,1,25052,48450 -895,FR,TH,201812,1,1,21245,37500 -895,FR,TH,201812,1,1,11836,15400 -895,FR,TH,201812,1,2,57813,38000 -895,FR,TH,201812,1,2,28943,19000 -896,FR,TH,201812,0,1,253404,37640 -896,FR,TH,201812,1,1,25645,2896 -896,FR,TH,201812,3,1,570,18 -896,FR,TH,201812,4,1,350,1 -896,FR,TH,201812,4,1,355,12 -896,FR,TH,201812,4,1,5207,274 -896,FR,TH,201812,4,1,11717,678 -896,FR,TH,201812,1,2,231844,12325 -896,FR,TH,201812,1,2,16002,750 -896,FR,TH,201812,1,2,8824,4012 -896,FR,TH,201812,1,2,51389,5647 -896,FR,TH,201812,1,2,3400003,154573 -896,FR,TH,201812,1,2,465,200 -896,FR,TH,201812,1,2,30933,11650 -896,FR,TH,201812,1,2,58810,8110 -896,FR,TH,201812,1,2,136968,12933 -896,FR,TH,201812,1,2,344909,247936 -896,FR,TH,201812,1,2,19607,4920 -896,FR,TH,201812,1,2,3565,742 -896,FR,TH,201812,1,2,13272,9600 -896,FR,TH,201812,1,2,64217,58400 -896,FR,TH,201812,1,2,13648,660 -896,FR,TH,201812,3,2,38953,16077 -896,FR,TH,201812,4,2,399971,24126 -896,FR,TH,201812,4,2,361803,2131 -896,FR,TH,201812,4,2,63289,297 -896,FR,TH,201812,4,2,59993,951 -896,FR,TH,201812,4,2,78561,2597 -896,FR,TH,201812,4,2,3674,90 -896,FR,TH,201812,4,2,4335,91 -896,FR,TH,201812,4,2,51154,1968 -896,FR,TH,201812,4,2,8038,306 -896,FR,TH,201812,4,2,71726,220 -896,FR,TH,201812,4,2,47016,567 -910,FR,TH,201812,0,1,1119961,65294 -910,FR,TH,201812,1,1,2968,154 -910,FR,TH,201812,1,1,19141,445 -910,FR,TH,201812,1,1,181506,16053 -910,FR,TH,201812,1,1,1816,203 -910,FR,TH,201812,1,1,155977,24970 -910,FR,TH,201812,1,1,30522,2285 -910,FR,TH,201812,1,1,92243,13616 -910,FR,TH,201812,1,1,256573,22111 -910,FR,TH,201812,1,1,506,63 -910,FR,TH,201812,1,1,54656,3182 -910,FR,TH,201812,3,1,15655,336 -910,FR,TH,201812,4,1,541512,36531 -910,FR,TH,201812,4,1,6530,58 -910,FR,TH,201812,4,1,56,3 -910,FR,TH,201812,4,1,34386,155 -910,FR,TH,201812,4,1,1727,37 -910,FR,TH,201812,4,1,21072,284 -910,FR,TH,201812,4,1,248,5 -910,FR,TH,201812,4,1,233455,5380 -910,FR,TH,201812,4,1,101,2 -910,FR,TH,201812,0,2,113,0 -910,FR,TH,201812,1,2,154958,5668 -910,FR,TH,201812,1,2,85000,12500 -910,FR,TH,201812,1,2,11557,377 -910,FR,TH,201812,1,2,76040,2302 -910,FR,TH,201812,1,2,1809,90 -910,FR,TH,201812,1,2,429564,22978 -910,FR,TH,201812,1,2,73428,1552 -910,FR,TH,201812,1,2,1706586,111842 -910,FR,TH,201812,1,2,38769,5158 -910,FR,TH,201812,1,2,215839,53687 -910,FR,TH,201812,1,2,2367,0 -910,FR,TH,201812,1,2,49300,1573 -910,FR,TH,201812,1,2,41052,2386 -910,FR,TH,201812,3,2,114752,12584 -910,FR,TH,201812,4,2,179706,1150 -910,FR,TH,201812,4,2,142199,216 -910,FR,TH,201812,4,2,413621,20500 -910,FR,TH,201812,4,2,13941,2 -910,FR,TH,201812,4,2,77160,354 -910,FR,TH,201812,4,2,6777,2 -910,FR,TH,201812,4,2,5385,99 -910,FR,TH,201812,4,2,192077,452 -910,FR,TH,201812,4,2,114772,5870 -910,FR,TH,201812,4,2,3540,31 -910,FR,TH,201812,4,2,100781,197 -910,FR,TH,201812,9,2,35573406,25900 -920,FR,TH,201812,1,2,2430,235 -920,FR,TH,201812,1,2,2411,110 -920,FR,TH,201812,1,2,295373,39073 -920,FR,TH,201812,4,2,1125,112 -920,FR,TH,201812,4,2,4354,55 -920,FR,TH,201812,4,2,18152,5243 -931,FR,TH,201812,0,1,475271,108706 -931,FR,TH,201812,1,1,84996,8675 -931,FR,TH,201812,1,1,140374,8243 -931,FR,TH,201812,1,1,52175,1260 -931,FR,TH,201812,1,1,79786,5575 -931,FR,TH,201812,1,1,422127,24185 -931,FR,TH,201812,1,1,190033,2458 -931,FR,TH,201812,1,1,2498,2257 -931,FR,TH,201812,1,1,4117,392 -931,FR,TH,201812,1,1,21753,3291 -931,FR,TH,201812,1,1,3009654,95300 -931,FR,TH,201812,1,1,309589,12221 -931,FR,TH,201812,1,1,139069,25018 -931,FR,TH,201812,1,1,93479,23681 -931,FR,TH,201812,1,1,29477,1755 -931,FR,TH,201812,1,1,471799,12977 -931,FR,TH,201812,1,1,3559429,257567 -931,FR,TH,201812,1,1,825868,27663 -931,FR,TH,201812,1,1,2288673,68657 -931,FR,TH,201812,1,1,124,3 -931,FR,TH,201812,1,1,70501,18 -931,FR,TH,201812,1,1,905503,20094 -931,FR,TH,201812,3,1,1784935,10156 -931,FR,TH,201812,3,1,14615,647 -931,FR,TH,201812,3,1,120681,136 -931,FR,TH,201812,3,1,526,10 -931,FR,TH,201812,3,1,325,12 -931,FR,TH,201812,3,1,128153,29573 -931,FR,TH,201812,4,1,731953,10247 -931,FR,TH,201812,4,1,15653,3026 -931,FR,TH,201812,4,1,1152437,2079 -931,FR,TH,201812,4,1,8095,82 -931,FR,TH,201812,4,1,14504,304 -931,FR,TH,201812,4,1,19801,45 -931,FR,TH,201812,4,1,905095,355 -931,FR,TH,201812,4,1,6910,249 -931,FR,TH,201812,4,1,4006,45 -931,FR,TH,201812,4,1,85177,257 -931,FR,TH,201812,4,1,8009798,8498 -931,FR,TH,201812,4,1,63620,1651 -931,FR,TH,201812,4,1,128320,230 -931,FR,TH,201812,4,1,701062,4567 -931,FR,TH,201812,4,1,107192,1838 -931,FR,TH,201812,4,1,3986085,35448 -931,FR,TH,201812,4,1,1494,48 -931,FR,TH,201812,4,1,159004,3855 -931,FR,TH,201812,4,1,340762,282 -931,FR,TH,201812,4,1,112970,2639 -931,FR,TH,201812,4,1,5322,45 -931,FR,TH,201812,4,1,741,10 -931,FR,TH,201812,0,2,1269,4 -931,FR,TH,201812,1,2,857113,45886 -931,FR,TH,201812,1,2,67797,5958 -931,FR,TH,201812,1,2,22885,893 -931,FR,TH,201812,1,2,97576,6303 -931,FR,TH,201812,1,2,25016,2234 -931,FR,TH,201812,1,2,6117,196 -931,FR,TH,201812,1,2,5572,83 -931,FR,TH,201812,1,2,494336,34830 -931,FR,TH,201812,1,2,32525,48000 -931,FR,TH,201812,1,2,838706,62163 -931,FR,TH,201812,1,2,103627,7690 -931,FR,TH,201812,1,2,1031294,4385 -931,FR,TH,201812,1,2,11526,5705 -931,FR,TH,201812,3,2,124045,3880 -931,FR,TH,201812,3,2,1200,2 -931,FR,TH,201812,4,2,2232234,32040 -931,FR,TH,201812,4,2,268651,428 -931,FR,TH,201812,4,2,3869,89 -931,FR,TH,201812,4,2,17304,34 -931,FR,TH,201812,4,2,22080,740 -931,FR,TH,201812,4,2,3,0 -931,FR,TH,201812,4,2,285048,1447 -931,FR,TH,201812,4,2,176371,1516 -931,FR,TH,201812,4,2,8430,68 -931,FR,TH,201812,4,2,3700,40 -931,FR,TH,201812,4,2,252885,3032 -931,FR,TH,201812,4,2,29732,473 -931,FR,TH,201812,4,2,9424,59 -931,FR,TH,201812,4,2,296093,3419 -931,FR,TH,201812,4,2,106755,56 -931,FR,TH,201812,4,2,96739,500 -931,FR,TH,201812,4,2,1537,76 -931,FR,TH,201812,4,2,19768,78 -931,FR,TH,201812,4,2,123039,240 -931,FR,TH,201812,4,2,957286,21060 -931,FR,TH,201812,4,2,35297,44 -931,FR,TH,201812,4,2,521275,587 -931,FR,TH,201812,5,2,103,3 -939,FR,TH,201812,0,1,465843,43592 -939,FR,TH,201812,1,1,219934,15904 -939,FR,TH,201812,1,1,4011,73 -939,FR,TH,201812,1,1,90069,22906 -939,FR,TH,201812,1,1,8430,408 -939,FR,TH,201812,1,1,243468,57432 -939,FR,TH,201812,1,1,25956,500 -939,FR,TH,201812,1,1,77,4 -939,FR,TH,201812,1,1,32004,110 -939,FR,TH,201812,1,1,158,5 -939,FR,TH,201812,1,1,633302,58795 -939,FR,TH,201812,1,1,436520,43998 -939,FR,TH,201812,1,1,368080,31121 -939,FR,TH,201812,1,1,65235,4176 -939,FR,TH,201812,1,1,247780,24381 -939,FR,TH,201812,1,1,5580399,462027 -939,FR,TH,201812,1,1,5028729,193098 -939,FR,TH,201812,1,1,1372,23 -939,FR,TH,201812,1,1,8,0 -939,FR,TH,201812,1,1,1452897,145957 -939,FR,TH,201812,3,1,47700,709 -939,FR,TH,201812,3,1,4780,168 -939,FR,TH,201812,3,1,1537,91 -939,FR,TH,201812,3,1,5364,49 -939,FR,TH,201812,3,1,647,14 -939,FR,TH,201812,4,1,911988,30174 -939,FR,TH,201812,4,1,6312,145 -939,FR,TH,201812,4,1,39360,1129 -939,FR,TH,201812,4,1,255094,820 -939,FR,TH,201812,4,1,46150,753 -939,FR,TH,201812,4,1,212613,1648 -939,FR,TH,201812,4,1,19510,255 -939,FR,TH,201812,4,1,96676,10150 -939,FR,TH,201812,4,1,672,14 -939,FR,TH,201812,4,1,647884,2304 -939,FR,TH,201812,4,1,36860,8 -939,FR,TH,201812,4,1,326,8 -939,FR,TH,201812,4,1,87583,2726 -939,FR,TH,201812,4,1,52384,392 -939,FR,TH,201812,4,1,108284,2435 -939,FR,TH,201812,4,1,692107,29622 -939,FR,TH,201812,4,1,47860,277 -939,FR,TH,201812,4,1,550620,4721 -939,FR,TH,201812,4,1,427,1 -939,FR,TH,201812,4,1,4669,15 -939,FR,TH,201812,4,1,36369,181 -939,FR,TH,201812,4,1,903,0 -939,FR,TH,201812,4,1,7557,500 -939,FR,TH,201812,1,2,2081393,172055 -939,FR,TH,201812,1,2,13023,1160 -939,FR,TH,201812,1,2,20370,3155 -939,FR,TH,201812,1,2,62800,22580 -939,FR,TH,201812,1,2,136283,6750 -939,FR,TH,201812,1,2,29938,2200 -939,FR,TH,201812,1,2,9844,1873 -939,FR,TH,201812,1,2,4362172,578717 -939,FR,TH,201812,1,2,147053,36800 -939,FR,TH,201812,1,2,33975,3748 -939,FR,TH,201812,1,2,722841,11495 -939,FR,TH,201812,1,2,270,234 -939,FR,TH,201812,1,2,40980,6363 -939,FR,TH,201812,1,2,296385,12090 -939,FR,TH,201812,1,2,500,104 -939,FR,TH,201812,1,2,97770,8853 -939,FR,TH,201812,1,2,16720,200 -939,FR,TH,201812,3,2,246177,8324 -939,FR,TH,201812,3,2,6465,24 -939,FR,TH,201812,3,2,33100,1575 -939,FR,TH,201812,3,2,86691,9121 -939,FR,TH,201812,4,2,2913233,29895 -939,FR,TH,201812,4,2,143149,1114 -939,FR,TH,201812,4,2,13571,335 -939,FR,TH,201812,4,2,13458,143 -939,FR,TH,201812,4,2,483,2 -939,FR,TH,201812,4,2,193472,2753 -939,FR,TH,201812,4,2,14914,56 -939,FR,TH,201812,4,2,76995,437 -939,FR,TH,201812,4,2,34077,456 -939,FR,TH,201812,4,2,44935,450 -939,FR,TH,201812,4,2,248249,1164 -939,FR,TH,201812,4,2,83149,44 -939,FR,TH,201812,4,2,26039,185 -939,FR,TH,201812,4,2,6598,14 -939,FR,TH,201812,4,2,321712,6360 -939,FR,TH,201812,4,2,53651,28 -939,FR,TH,201812,4,2,2374,127 -939,FR,TH,201812,4,2,30357,57 -939,FR,TH,201812,4,2,347990,18610 -939,FR,TH,201812,4,2,26593,49 -939,FR,TH,201812,4,2,132570,556 -941,FR,TH,201812,1,1,261,200 -941,FR,TH,201812,1,1,5971,3319 -941,FR,TH,201812,1,1,43295,6676 -941,FR,TH,201812,4,1,1145,27 -941,FR,TH,201812,1,2,21000,3282 -949,FR,TH,201812,0,1,516,12 -949,FR,TH,201812,1,1,23162,3354 -949,FR,TH,201812,1,1,1013867,37494 -949,FR,TH,201812,1,1,15551,5526 -949,FR,TH,201812,1,1,128,28 -949,FR,TH,201812,1,1,17642,1466 -949,FR,TH,201812,1,1,1296,1554 -949,FR,TH,201812,1,1,675,779 -949,FR,TH,201812,1,1,1726,1121 -949,FR,TH,201812,1,1,3362,3127 -949,FR,TH,201812,1,1,541402,347554 -949,FR,TH,201812,1,1,273701,10284 -949,FR,TH,201812,1,1,92098,110327 -949,FR,TH,201812,1,1,113971,74921 -949,FR,TH,201812,1,1,299281,84277 -949,FR,TH,201812,1,1,5075,283 -949,FR,TH,201812,1,1,36095,20944 -949,FR,TH,201812,1,1,5693,711 -949,FR,TH,201812,1,1,10,0 -949,FR,TH,201812,3,1,103848,2073 -949,FR,TH,201812,3,1,8164,1715 -949,FR,TH,201812,3,1,109,0 -949,FR,TH,201812,3,1,490,0 -949,FR,TH,201812,3,1,732,2 -949,FR,TH,201812,3,1,273,18 -949,FR,TH,201812,3,1,249,3 -949,FR,TH,201812,3,1,31519,3993 -949,FR,TH,201812,4,1,5701,250 -949,FR,TH,201812,4,1,1284,90 -949,FR,TH,201812,4,1,33150,208 -949,FR,TH,201812,4,1,8516,144 -949,FR,TH,201812,4,1,3314,13 -949,FR,TH,201812,4,1,18,0 -949,FR,TH,201812,4,1,598,10 -949,FR,TH,201812,4,1,69,1 -949,FR,TH,201812,4,1,4570,55 -949,FR,TH,201812,4,1,52576,2532 -949,FR,TH,201812,4,1,2950,14 -949,FR,TH,201812,4,1,2608,60 -949,FR,TH,201812,4,1,85032,8821 -949,FR,TH,201812,4,1,2338,57 -949,FR,TH,201812,4,1,2326,114 -949,FR,TH,201812,0,2,50,0 -949,FR,TH,201812,1,2,54129,5481 -949,FR,TH,201812,1,2,3065,285 -949,FR,TH,201812,1,2,38980,8855 -949,FR,TH,201812,1,2,40306,1253 -949,FR,TH,201812,1,2,1450,65 -949,FR,TH,201812,1,2,43320,1048 -949,FR,TH,201812,1,2,7164,339 -949,FR,TH,201812,1,2,254739,56015 -949,FR,TH,201812,1,2,95343,26316 -949,FR,TH,201812,1,2,245343,967 -949,FR,TH,201812,1,2,17321,1625 -949,FR,TH,201812,3,2,16180,441 -949,FR,TH,201812,3,2,30500,13794 -949,FR,TH,201812,3,2,34166,7973 -949,FR,TH,201812,4,2,248152,2818 -949,FR,TH,201812,4,2,10342,161 -949,FR,TH,201812,4,2,52961,2460 -949,FR,TH,201812,4,2,12559,241 -949,FR,TH,201812,4,2,6765,114 -949,FR,TH,201812,4,2,24763,398 -949,FR,TH,201812,4,2,44109,1381 -949,FR,TH,201812,4,2,1500,49 -949,FR,TH,201812,4,2,53211,5290 -949,FR,TH,201812,4,2,20577,111 -949,FR,TH,201812,4,2,94458,395 -951,FR,TH,201812,0,1,3739,255 -951,FR,TH,201812,1,1,65,6 -951,FR,TH,201812,1,1,106,35 -951,FR,TH,201812,1,1,10629,31100 -951,FR,TH,201812,1,1,34883,111336 -951,FR,TH,201812,1,1,12999,40900 -951,FR,TH,201812,1,1,12373,38200 -951,FR,TH,201812,3,1,2790,217 -951,FR,TH,201812,4,1,755,21 -951,FR,TH,201812,1,2,22829,1211 -951,FR,TH,201812,1,2,8240,383 -951,FR,TH,201812,1,2,5124,286 -951,FR,TH,201812,1,2,792234,255715 -951,FR,TH,201812,1,2,11168,21828 -951,FR,TH,201812,4,2,448,6 -952,FR,TH,201812,0,1,1164751,286 -952,FR,TH,201812,1,1,360,80 -952,FR,TH,201812,1,1,17260,1379 -952,FR,TH,201812,1,1,242430,30933 -952,FR,TH,201812,1,1,323,180 -952,FR,TH,201812,1,1,803,83 -952,FR,TH,201812,1,1,27457,20997 -952,FR,TH,201812,1,1,16551,1923 -952,FR,TH,201812,1,1,67950,21050 -952,FR,TH,201812,1,1,129694,25118 -952,FR,TH,201812,1,1,7,36 -952,FR,TH,201812,3,1,4423,199 -952,FR,TH,201812,3,1,2955,3 -952,FR,TH,201812,3,1,21062,15450 -952,FR,TH,201812,4,1,327572,51 -952,FR,TH,201812,4,1,6009,7 -952,FR,TH,201812,4,1,111534,1 -952,FR,TH,201812,4,1,198634,23 -952,FR,TH,201812,4,1,6258,43 -952,FR,TH,201812,4,1,6138,18 -952,FR,TH,201812,4,1,3419,0 -952,FR,TH,201812,5,1,2141,0 -952,FR,TH,201812,1,2,10520,412 -952,FR,TH,201812,1,2,26339,2165 -952,FR,TH,201812,1,2,9475,918 -952,FR,TH,201812,1,2,13251,1313 -952,FR,TH,201812,1,2,956,400 -952,FR,TH,201812,1,2,9300,15092 -952,FR,TH,201812,1,2,103517,23384 -952,FR,TH,201812,4,2,277193,1094 -952,FR,TH,201812,4,2,249,11 -952,FR,TH,201812,4,2,85,0 -952,FR,TH,201812,4,2,3680,58 -952,FR,TH,201812,4,2,8406,0 -952,FR,TH,201812,4,2,2185,0 -952,FR,TH,201812,4,2,1113,109 -952,FR,TH,201812,4,2,4725,245 -952,FR,TH,201812,4,2,10965,2 -952,FR,TH,201812,4,2,1739,500 -952,FR,TH,201812,4,2,18688,4 -952,FR,TH,201812,4,2,15684,20 -961,FR,TH,201812,1,1,5393,194 -961,FR,TH,201812,3,1,1673,63 -961,FR,TH,201812,4,1,8952,87 -961,FR,TH,201812,4,1,1424,46 -961,FR,TH,201812,4,1,25263,433 -961,FR,TH,201812,1,2,19296,480 -961,FR,TH,201812,4,2,207726,153 -961,FR,TH,201812,4,2,8073,130 -961,FR,TH,201812,4,2,22186,13 -961,FR,TH,201812,4,2,1655,1 -962,FR,TH,201812,0,1,1424,303 -962,FR,TH,201812,1,1,53355,2709 -962,FR,TH,201812,1,1,374,102 -962,FR,TH,201812,1,1,44580,3402 -962,FR,TH,201812,1,1,33,12 -962,FR,TH,201812,1,1,103,119 -962,FR,TH,201812,1,1,761,583 -962,FR,TH,201812,1,1,134175,66180 -962,FR,TH,201812,1,1,2794,50 -962,FR,TH,201812,1,1,37833,11295 -962,FR,TH,201812,1,1,735,1007 -962,FR,TH,201812,3,1,110189,1993 -962,FR,TH,201812,3,1,24,0 -962,FR,TH,201812,3,1,34,0 -962,FR,TH,201812,3,1,4573,25 -962,FR,TH,201812,3,1,53414,14405 -962,FR,TH,201812,4,1,91444,1551 -962,FR,TH,201812,4,1,57745,815 -962,FR,TH,201812,4,1,50492,1383 -962,FR,TH,201812,4,1,5080,40 -962,FR,TH,201812,4,1,10227,46 -962,FR,TH,201812,4,1,2420,92 -962,FR,TH,201812,4,1,25670,321 -962,FR,TH,201812,4,1,43625,592 -962,FR,TH,201812,4,1,47571,1063 -962,FR,TH,201812,4,1,19514,304 -962,FR,TH,201812,4,1,2311,340 -962,FR,TH,201812,0,2,613,29 -962,FR,TH,201812,1,2,38854,1004 -962,FR,TH,201812,1,2,1075,300 -962,FR,TH,201812,1,2,218846,23474 -962,FR,TH,201812,1,2,113695,20036 -962,FR,TH,201812,1,2,26421,4025 -962,FR,TH,201812,1,2,3738,945 -962,FR,TH,201812,3,2,10754,456 -962,FR,TH,201812,3,2,2005,135 -962,FR,TH,201812,4,2,229663,3403 -962,FR,TH,201812,4,2,23165,133 -962,FR,TH,201812,4,2,7757,229 -962,FR,TH,201812,4,2,511,19 -962,FR,TH,201812,4,2,5106,11 -962,FR,TH,201812,4,2,14126,768 -962,FR,TH,201812,4,2,22811,60 -962,FR,TH,201812,4,2,8901,145 -962,FR,TH,201812,4,2,1034,41 -962,FR,TH,201812,4,2,108625,1949 -962,FR,TH,201812,4,2,18811,1180 -962,FR,TH,201812,4,2,18279,113 -962,FR,TH,201812,4,2,7567,178 -963,FR,TH,201812,0,1,2827274,129654 -963,FR,TH,201812,1,1,109906,14887 -963,FR,TH,201812,1,1,17,11 -963,FR,TH,201812,1,1,35137,1009 -963,FR,TH,201812,1,1,5182,308 -963,FR,TH,201812,1,1,837,20 -963,FR,TH,201812,1,1,113626,2209 -963,FR,TH,201812,1,1,7833,2248 -963,FR,TH,201812,1,1,143265,3489 -963,FR,TH,201812,1,1,1536,354 -963,FR,TH,201812,1,1,1920,260 -963,FR,TH,201812,1,1,378,3 -963,FR,TH,201812,1,1,50259,2389 -963,FR,TH,201812,1,1,50606,4804 -963,FR,TH,201812,1,1,2565686,73131 -963,FR,TH,201812,1,1,103592,16156 -963,FR,TH,201812,1,1,75537,4140 -963,FR,TH,201812,1,1,1695,105 -963,FR,TH,201812,1,1,7143,268 -963,FR,TH,201812,1,1,6354,111 -963,FR,TH,201812,1,1,731002,27249 -963,FR,TH,201812,1,1,950695,94269 -963,FR,TH,201812,1,1,984562,37227 -963,FR,TH,201812,1,1,52996,1331 -963,FR,TH,201812,1,1,468,180 -963,FR,TH,201812,1,1,126246,5033 -963,FR,TH,201812,3,1,164452,5237 -963,FR,TH,201812,3,1,113650,2776 -963,FR,TH,201812,3,1,50140,1190 -963,FR,TH,201812,3,1,6109,205 -963,FR,TH,201812,3,1,6055,179 -963,FR,TH,201812,3,1,485,6 -963,FR,TH,201812,3,1,4933,1048 -963,FR,TH,201812,4,1,644542,17123 -963,FR,TH,201812,4,1,32569,558 -963,FR,TH,201812,4,1,111806,3546 -963,FR,TH,201812,4,1,28835,2708 -963,FR,TH,201812,4,1,11655,176 -963,FR,TH,201812,4,1,4518,40 -963,FR,TH,201812,4,1,670,21 -963,FR,TH,201812,4,1,47987,1741 -963,FR,TH,201812,4,1,16568,203 -963,FR,TH,201812,4,1,952,24 -963,FR,TH,201812,4,1,31445,792 -963,FR,TH,201812,4,1,152394,2384 -963,FR,TH,201812,4,1,511,18 -963,FR,TH,201812,4,1,1441474,16595 -963,FR,TH,201812,4,1,7196,30 -963,FR,TH,201812,4,1,52771,2839 -963,FR,TH,201812,0,2,2121,22 -963,FR,TH,201812,1,2,30610,376 -963,FR,TH,201812,1,2,13751,441 -963,FR,TH,201812,1,2,1611,580 -963,FR,TH,201812,1,2,307,3 -963,FR,TH,201812,3,2,33262,354 -963,FR,TH,201812,4,2,3322479,5734 -963,FR,TH,201812,4,2,406301,1496 -963,FR,TH,201812,4,2,20610,750 -963,FR,TH,201812,4,2,65213,511 -963,FR,TH,201812,4,2,738708,3633 -963,FR,TH,201812,4,2,3200,51 -963,FR,TH,201812,4,2,216491,429 -963,FR,TH,201812,4,2,1986,0 -963,FR,TH,201812,4,2,99828,1842 -963,FR,TH,201812,4,2,5607,50 -963,FR,TH,201812,4,2,966,11 -963,FR,TH,201812,4,2,11148,340 -963,FR,TH,201812,4,2,73248,68 -963,FR,TH,201812,4,2,9403,58 -963,FR,TH,201812,5,2,409,2 -971,FR,TH,201812,0,1,193168,51626 -971,FR,TH,201812,1,1,38659,14815 -971,FR,TH,201812,1,1,1687,86 -971,FR,TH,201812,1,1,6950,129 -971,FR,TH,201812,1,1,2518,442 -971,FR,TH,201812,1,1,2535,406 -971,FR,TH,201812,1,1,1516578,215275 -971,FR,TH,201812,1,1,34863,13660 -971,FR,TH,201812,1,1,6,1 -971,FR,TH,201812,1,1,12,2 -971,FR,TH,201812,1,1,334,34 -971,FR,TH,201812,1,1,1420512,501662 -971,FR,TH,201812,1,1,1329487,154752 -971,FR,TH,201812,1,1,3682,238 -971,FR,TH,201812,1,1,261363,16652 -971,FR,TH,201812,1,1,40071,24000 -971,FR,TH,201812,1,1,992602,49098 -971,FR,TH,201812,1,1,42445,13696 -971,FR,TH,201812,1,1,70813,23688 -971,FR,TH,201812,3,1,14656,953 -971,FR,TH,201812,3,1,3085,998 -971,FR,TH,201812,3,1,21,0 -971,FR,TH,201812,3,1,1922,66 -971,FR,TH,201812,3,1,27463,3331 -971,FR,TH,201812,4,1,327874,15440 -971,FR,TH,201812,4,1,1732,97 -971,FR,TH,201812,4,1,2993,351 -971,FR,TH,201812,4,1,1003,88 -971,FR,TH,201812,4,1,10179,464 -971,FR,TH,201812,4,1,34596,2592 -971,FR,TH,201812,4,1,3933,1000 -971,FR,TH,201812,4,1,34755,3421 -971,FR,TH,201812,4,1,9425,1187 -971,FR,TH,201812,4,1,115,1 -971,FR,TH,201812,1,2,24349,660 -971,FR,TH,201812,1,2,6969,487 -971,FR,TH,201812,1,2,5021,22 -971,FR,TH,201812,1,2,3418,108 -971,FR,TH,201812,1,2,629,17 -971,FR,TH,201812,1,2,1953886,211414 -971,FR,TH,201812,1,2,9872,1005 -971,FR,TH,201812,1,2,91276,7561 -971,FR,TH,201812,1,2,75463,2388 -971,FR,TH,201812,3,2,4147,128 -971,FR,TH,201812,4,2,205539,6836 -971,FR,TH,201812,4,2,2214,11 -971,FR,TH,201812,4,2,192954,14984 -971,FR,TH,201812,4,2,1885,250 -971,FR,TH,201812,4,2,2970,33 -971,FR,TH,201812,4,2,26317,826 -971,FR,TH,201812,4,2,3318,1500 -971,FR,TH,201812,4,2,57167,4809 -971,FR,TH,201812,4,2,27683,4720 -972,FR,TH,201812,1,1,16427,258 -972,FR,TH,201812,1,1,1273,383 -972,FR,TH,201812,3,1,254,22 -972,FR,TH,201812,1,2,28504,4301 -972,FR,TH,201812,1,2,7200,2970 -972,FR,TH,201812,1,2,258974,152322 -972,FR,TH,201812,1,2,27238,2602 -972,FR,TH,201812,1,2,63945,15276 -972,FR,TH,201812,1,2,13542,9906 -972,FR,TH,201812,3,2,122037,37354 -972,FR,TH,201812,4,2,7925,1239 -972,FR,TH,201812,4,2,2860,60 -973,FR,TH,201812,0,1,307,5 -973,FR,TH,201812,1,1,35470,33705 -973,FR,TH,201812,1,1,2753,583 -973,FR,TH,201812,1,1,7587,12047 -973,FR,TH,201812,1,1,60995,53859 -973,FR,TH,201812,1,1,7433,1385 -973,FR,TH,201812,1,1,415149,228843 -973,FR,TH,201812,1,1,8081,821 -973,FR,TH,201812,1,1,5,3 -973,FR,TH,201812,3,1,2141,135 -973,FR,TH,201812,3,1,1602,40 -973,FR,TH,201812,3,1,211,3 -973,FR,TH,201812,3,1,337,5 -973,FR,TH,201812,3,1,134,2 -973,FR,TH,201812,4,1,368,17 -973,FR,TH,201812,4,1,8119,105 -973,FR,TH,201812,4,1,6,1 -973,FR,TH,201812,4,1,365,28 -973,FR,TH,201812,4,1,2066,55 -973,FR,TH,201812,4,1,2276,249 -973,FR,TH,201812,4,1,126,15 -973,FR,TH,201812,1,2,57134,13744 -973,FR,TH,201812,1,2,79051,9741 -973,FR,TH,201812,1,2,15917,1220 -973,FR,TH,201812,1,2,5418,1784 -973,FR,TH,201812,1,2,21019,2121 -973,FR,TH,201812,1,2,25,15 -973,FR,TH,201812,1,2,51197,19195 -973,FR,TH,201812,1,2,27475,2121 -973,FR,TH,201812,1,2,2540,643 -973,FR,TH,201812,4,2,26660,1300 -973,FR,TH,201812,4,2,5584,1828 -973,FR,TH,201812,4,2,2317,58 -973,FR,TH,201812,4,2,25,1 -974,FR,TH,201812,1,1,97,9 -974,FR,TH,201812,1,1,10,6 -974,FR,TH,201812,1,1,22,2 -974,FR,TH,201812,1,1,91,100 -974,FR,TH,201812,1,1,619,4076 -974,FR,TH,201812,1,1,19,163 -974,FR,TH,201812,3,1,16542,333 -974,FR,TH,201812,3,1,3225,94 -974,FR,TH,201812,3,1,1970,56 -974,FR,TH,201812,3,1,474,14 -974,FR,TH,201812,3,1,863,51 -974,FR,TH,201812,4,1,1916,69 -974,FR,TH,201812,4,1,9305,281 -974,FR,TH,201812,4,1,5436,164 -974,FR,TH,201812,4,1,1501,51 -974,FR,TH,201812,4,1,219,65 -974,FR,TH,201812,4,1,2713,18 -974,FR,TH,201812,4,1,9505,814 -974,FR,TH,201812,0,2,1426,41 -974,FR,TH,201812,1,2,15116,322 -974,FR,TH,201812,1,2,26040,1800 -974,FR,TH,201812,1,2,2,449 -974,FR,TH,201812,1,2,14722,3722 -974,FR,TH,201812,1,2,20,75 -974,FR,TH,201812,3,2,752,222 -974,FR,TH,201812,3,2,100,80 -974,FR,TH,201812,4,2,39655,2656 -974,FR,TH,201812,4,2,7141,125 -974,FR,TH,201812,4,2,610,38 -974,FR,TH,201812,4,2,23274,802 -974,FR,TH,201812,4,2,2535,94 -974,FR,TH,201812,4,2,421,12 -974,FR,TH,201812,4,2,11580,1480 -974,FR,TH,201812,4,2,1228,13 -975,FR,TH,201812,0,1,38,2 -975,FR,TH,201812,1,1,31744,8000 -975,FR,TH,201812,1,1,411525,3235 -975,FR,TH,201812,1,1,4357,1996 -975,FR,TH,201812,1,1,54,54 -975,FR,TH,201812,1,1,433,220 -975,FR,TH,201812,1,1,75335,25524 -975,FR,TH,201812,1,1,77152,19023 -975,FR,TH,201812,1,1,49,15 -975,FR,TH,201812,1,1,8710,452 -975,FR,TH,201812,1,1,176257,34129 -975,FR,TH,201812,1,1,10681,3007 -975,FR,TH,201812,3,1,26556,253 -975,FR,TH,201812,3,1,4623,581 -975,FR,TH,201812,3,1,59565,21303 -975,FR,TH,201812,4,1,12271,140 -975,FR,TH,201812,4,1,101,13 -975,FR,TH,201812,4,1,54807,403 -975,FR,TH,201812,4,1,236793,2447 -975,FR,TH,201812,4,1,76,1 -975,FR,TH,201812,4,1,31929,364 -975,FR,TH,201812,1,2,6409,630 -975,FR,TH,201812,1,2,19380,220 -975,FR,TH,201812,1,2,1591,220 -975,FR,TH,201812,1,2,156734,6843 -975,FR,TH,201812,1,2,628422,19707 -975,FR,TH,201812,1,2,185215,1592 -975,FR,TH,201812,3,2,1588,12 -975,FR,TH,201812,4,2,37699,107 -975,FR,TH,201812,4,2,2409,1 -975,FR,TH,201812,4,2,8106,439 -975,FR,TH,201812,4,2,1797,60 -975,FR,TH,201812,4,2,3123,19 -976,FR,TH,201812,0,1,1243,33 -976,FR,TH,201812,1,1,2103,990 -976,FR,TH,201812,1,1,1013,239 -976,FR,TH,201812,1,1,413,476 -976,FR,TH,201812,1,1,179,59 -976,FR,TH,201812,1,1,1049,535 -976,FR,TH,201812,1,1,2084,509 -976,FR,TH,201812,1,1,1028,206 -976,FR,TH,201812,1,1,375371,43529 -976,FR,TH,201812,1,1,139514,9855 -976,FR,TH,201812,1,1,16,54 -976,FR,TH,201812,3,1,50762,926 -976,FR,TH,201812,3,1,928,6 -976,FR,TH,201812,3,1,169,4 -976,FR,TH,201812,3,1,18799,139 -976,FR,TH,201812,3,1,12661,11797 -976,FR,TH,201812,4,1,18451,178 -976,FR,TH,201812,4,1,678,30 -976,FR,TH,201812,4,1,4531,55 -976,FR,TH,201812,4,1,158,9 -976,FR,TH,201812,4,1,108,7 -976,FR,TH,201812,4,1,11511,322 -976,FR,TH,201812,4,1,3341,212 -976,FR,TH,201812,1,2,3696,599 -976,FR,TH,201812,1,2,1618,220 -976,FR,TH,201812,1,2,68255,915 -976,FR,TH,201812,1,2,5606,1328 -976,FR,TH,201812,1,2,31534,1613 -976,FR,TH,201812,4,2,7888,83 -976,FR,TH,201812,4,2,15,31 -976,FR,TH,201812,4,2,603,14 -979,FR,TH,201812,0,1,695360,83451 -979,FR,TH,201812,1,1,88135,7726 -979,FR,TH,201812,1,1,12283,2069 -979,FR,TH,201812,1,1,28201,5572 -979,FR,TH,201812,1,1,22413,2810 -979,FR,TH,201812,1,1,17056,4106 -979,FR,TH,201812,1,1,57194,4447 -979,FR,TH,201812,1,1,8981,764 -979,FR,TH,201812,1,1,44,71 -979,FR,TH,201812,1,1,67665,4377 -979,FR,TH,201812,1,1,2267,266 -979,FR,TH,201812,1,1,18063,12779 -979,FR,TH,201812,1,1,70326,12239 -979,FR,TH,201812,1,1,937252,101468 -979,FR,TH,201812,1,1,43530,18426 -979,FR,TH,201812,1,1,38194,13058 -979,FR,TH,201812,1,1,86690,19426 -979,FR,TH,201812,1,1,7988,1232 -979,FR,TH,201812,1,1,13483,399 -979,FR,TH,201812,1,1,722,45 -979,FR,TH,201812,1,1,302633,24197 -979,FR,TH,201812,1,1,928715,48697 -979,FR,TH,201812,1,1,189034,2722 -979,FR,TH,201812,1,1,5466,310 -979,FR,TH,201812,1,1,184396,2712 -979,FR,TH,201812,1,1,3463,907 -979,FR,TH,201812,3,1,378144,2472 -979,FR,TH,201812,3,1,217,0 -979,FR,TH,201812,3,1,18141,452 -979,FR,TH,201812,3,1,14738,3 -979,FR,TH,201812,3,1,7031,141 -979,FR,TH,201812,3,1,538841,614 -979,FR,TH,201812,3,1,1448,22 -979,FR,TH,201812,3,1,7532,4 -979,FR,TH,201812,3,1,181899,9736 -979,FR,TH,201812,3,1,234448,61570 -979,FR,TH,201812,4,1,2038049,10519 -979,FR,TH,201812,4,1,962562,2294 -979,FR,TH,201812,4,1,42207,58 -979,FR,TH,201812,4,1,313615,3293 -979,FR,TH,201812,4,1,25942,33 -979,FR,TH,201812,4,1,1049349,9950 -979,FR,TH,201812,4,1,484940,267 -979,FR,TH,201812,4,1,35663,93 -979,FR,TH,201812,4,1,13837,954 -979,FR,TH,201812,4,1,1164571,650 -979,FR,TH,201812,4,1,50232,225 -979,FR,TH,201812,4,1,1593332,14137 -979,FR,TH,201812,4,1,3122447,24223 -979,FR,TH,201812,4,1,82322,2186 -979,FR,TH,201812,4,1,48087,1216 -979,FR,TH,201812,4,1,11266904,29862 -979,FR,TH,201812,4,1,83961,130 -979,FR,TH,201812,4,1,4075,2 -979,FR,TH,201812,4,1,13938,214 -979,FR,TH,201812,4,1,18407,262 -979,FR,TH,201812,0,2,9844,22 -979,FR,TH,201812,1,2,48790,3154 -979,FR,TH,201812,1,2,719649,8280 -979,FR,TH,201812,1,2,4505,91 -979,FR,TH,201812,1,2,11709,585 -979,FR,TH,201812,1,2,18977,2322 -979,FR,TH,201812,1,2,27800,30 -979,FR,TH,201812,1,2,4130,1529 -979,FR,TH,201812,1,2,4967556,97513 -979,FR,TH,201812,1,2,9112,2225 -979,FR,TH,201812,1,2,10200,468 -979,FR,TH,201812,1,2,319204,25833 -979,FR,TH,201812,1,2,275500,42780 -979,FR,TH,201812,1,2,272138,83494 -979,FR,TH,201812,1,2,2232,464 -979,FR,TH,201812,1,2,345635,1783 -979,FR,TH,201812,1,2,113520,10654 -979,FR,TH,201812,3,2,21332,543 -979,FR,TH,201812,4,2,2696595,19437 -979,FR,TH,201812,4,2,121685,1757 -979,FR,TH,201812,4,2,70900,75 -979,FR,TH,201812,4,2,8994,405 -979,FR,TH,201812,4,2,1518,547 -979,FR,TH,201812,4,2,58324,349 -979,FR,TH,201812,4,2,353166,1131 -979,FR,TH,201812,4,2,130340,87 -979,FR,TH,201812,4,2,5850,1 -979,FR,TH,201812,4,2,777,133 -979,FR,TH,201812,4,2,18022,289 -979,FR,TH,201812,4,2,42552,690 -979,FR,TH,201812,4,2,213163,3114 -979,FR,TH,201812,4,2,1511,1039 -979,FR,TH,201812,4,2,826048,11550 -979,FR,TH,201812,4,2,2680,32 -979,FR,TH,201812,4,2,1783,1 -979,FR,TH,201812,4,2,7944,48 -979,FR,TH,201812,4,2,247263,542 -979,FR,TH,201812,4,2,336245,16835 -979,FR,TH,201812,4,2,107442,503 -979,FR,TH,201812,4,2,458867,1021 -999,FR,TH,201812,1,1,146399,0 -999,FR,TH,201812,1,1,21658,0 -999,FR,TH,201812,3,1,5939,0 -999,FR,TH,201812,4,1,321,0 -999,FR,TH,201812,4,1,3510,0 -999,FR,TH,201812,4,1,4828,0 -999,FR,TH,201812,1,2,172539,58750 -999,FR,TH,201812,1,2,56775,21784 -999,FR,TH,201812,1,2,11671,0 -999,FR,TH,201812,1,2,1998,1700 -999,FR,TH,201812,1,2,4262,26 -999,FR,TH,201812,1,2,4461,1375 -999,FR,TH,201812,1,2,15441,9000 -999,FR,TH,201812,1,2,20190,2189 -999,FR,TH,201812,1,2,193644,12000 -999,FR,TH,201812,1,2,1911832,690150 -999,FR,TH,201812,1,2,62528,23042 -999,FR,TH,201812,1,2,1680145,459000 -999,FR,TH,201812,1,2,905322,793674 -999,FR,TH,201812,1,2,65167,10050 -999,FR,TH,201812,1,2,10043,17700 -999,FR,TH,201812,1,2,998045,363291 -999,FR,TH,201812,1,2,43663,22500 -999,FR,TH,201812,1,2,16797,1960 -999,FR,TH,201812,1,2,48683,20000 -999,FR,TH,201812,1,2,195709,43000 -999,FR,TH,201812,1,2,40541,21800 -999,FR,TH,201812,3,2,5534,223 -999,FR,TH,201812,3,2,10557,3000 -999,FR,TH,201812,4,2,237536,12488 -999,FR,TH,201812,4,2,765,75 -999,FR,TH,201812,4,2,32116,466 -999,FR,TH,201812,4,2,13037,170 -999,FR,TH,201812,4,2,26921,135 -999,FR,TH,201812,4,2,1293,25 -999,FR,TH,201812,4,2,4000,80 -999,FR,TH,201812,4,2,20663,0 -999,FR,TH,201812,4,2,12933,739 -999,FR,TH,201812,4,2,4774,205 -999,FR,TH,201812,4,2,6626,5000 -999,FR,TH,201812,4,2,4571,30 -999,FR,TH,201812,4,2,9204,96 -016,FR,LA,201812,1,2,58,39 -019,FR,LA,201812,1,2,111,24 -035,FR,LA,201812,4,1,25589,3442 -035,FR,LA,201812,4,1,6568,1064 -035,FR,LA,201812,4,1,26800,3871 -035,FR,LA,201812,1,2,1295,156 -039,FR,LA,201812,4,1,84589,10807 -039,FR,LA,201812,4,1,31313,4308 -039,FR,LA,201812,4,1,76657,10335 -099,FR,LA,201812,4,1,26835,3548 -099,FR,LA,201812,4,1,14929,2285 -099,FR,LA,201812,4,1,23356,3250 -099,FR,LA,201812,1,2,26,1 -121,FR,LA,201812,1,2,22602,4285 -122,FR,LA,201812,1,2,288,91 -125,FR,LA,201812,1,2,1074,326 -125,FR,LA,201812,4,2,1403,6 -128,FR,LA,201812,1,2,372,232 -131,FR,LA,201812,3,1,79,5 -132,FR,LA,201812,1,2,1265,275 -133,FR,LA,201812,4,1,4576,162 -133,FR,LA,201812,1,2,361,28 -136,FR,LA,201812,1,2,1803,856 -139,FR,LA,201812,3,1,143,9 -139,FR,LA,201812,0,2,196,10 -139,FR,LA,201812,1,2,2308,777 -139,FR,LA,201812,1,2,26807,10546 -139,FR,LA,201812,4,2,15820,969 -139,FR,LA,201812,4,2,1940,248 -144,FR,LA,201812,4,2,3042,175 -144,FR,LA,201812,4,2,855,70 -147,FR,LA,201812,1,2,2345,479 -147,FR,LA,201812,4,2,867,20 -148,FR,LA,201812,1,2,724,94 -148,FR,LA,201812,4,2,1078,1 -161,FR,LA,201812,1,2,665,410 -163,FR,LA,201812,1,2,1834,953 -164,FR,LA,201812,4,1,711,70 -164,FR,LA,201812,4,1,1857,70 -164,FR,LA,201812,1,2,2560,1087 -165,FR,LA,201812,1,2,159,84 -166,FR,LA,201812,1,2,2109,612 -181,FR,LA,201812,1,2,113,18 -182,FR,LA,201812,4,1,3110,130 -182,FR,LA,201812,1,2,1506,291 -568,FR,LA,201812,1,2,51,15 -621,FR,LA,201812,1,2,109,209 -819,FR,LA,201812,1,2,296,25 -893,FR,LA,201812,3,1,67,3 -893,FR,LA,201812,1,2,581,59 -893,FR,LA,201812,4,2,52208,874 -896,FR,LA,201812,1,2,3734,991 -896,FR,LA,201812,4,2,10349,100 -896,FR,LA,201812,4,2,1080,2 -896,FR,LA,201812,4,2,2040,650 -910,FR,LA,201812,4,1,168,3 -910,FR,LA,201812,4,2,31714,4 -910,FR,LA,201812,4,2,2204,80 -931,FR,LA,201812,3,1,282,0 -931,FR,LA,201812,4,1,1038,75 -931,FR,LA,201812,4,2,2883,44 -931,FR,LA,201812,4,2,15351,15 -939,FR,LA,201812,4,2,31714,4 -939,FR,LA,201812,4,2,57500,40 -939,FR,LA,201812,4,2,8724,420 -939,FR,LA,201812,4,2,3823,36 -949,FR,LA,201812,3,1,237,8 -949,FR,LA,201812,1,2,100,2 -949,FR,LA,201812,4,2,128,1 -952,FR,LA,201812,0,2,50,3 -952,FR,LA,201812,4,2,3340,147 -962,FR,LA,201812,3,1,182,1 -962,FR,LA,201812,4,1,3471,64 -962,FR,LA,201812,4,2,75,1 -962,FR,LA,201812,4,2,24400,110 -963,FR,LA,201812,1,1,66606,1731 -963,FR,LA,201812,1,1,28167,1082 -963,FR,LA,201812,1,1,144256,7213 -963,FR,LA,201812,1,1,62386,2344 -963,FR,LA,201812,1,1,124229,4230 -963,FR,LA,201812,1,1,70988,3497 -963,FR,LA,201812,3,1,607,27 -963,FR,LA,201812,3,1,19,0 -963,FR,LA,201812,4,1,37693,1206 -963,FR,LA,201812,4,1,660,8 -963,FR,LA,201812,0,2,220,0 -963,FR,LA,201812,4,2,813,11 -963,FR,LA,201812,4,2,1422,140 -972,FR,LA,201812,1,2,171,72 -973,FR,LA,201812,1,2,676,304 -974,FR,LA,201812,4,2,28747,1226 -979,FR,LA,201812,4,1,6826,111 -979,FR,LA,201812,4,1,2159,20 -979,FR,LA,201812,4,1,3015,22 -979,FR,LA,201812,0,2,400,2 -979,FR,LA,201812,1,2,65,30 -979,FR,LA,201812,1,2,99237,1928 -979,FR,LA,201812,4,2,5878,599 -979,FR,LA,201812,4,2,1755,0 -979,FR,LA,201812,4,2,4357,15 -979,FR,LA,201812,4,2,12095,1270 -994,FR,LA,201812,4,2,3741,13 -999,FR,LA,201812,4,1,1800,0 -999,FR,LA,201812,1,2,36,2 -999,FR,LA,201812,4,2,4,0 -001,FR,VN,201812,4,1,239283,257 -001,FR,VN,201812,4,1,7780,187 -001,FR,VN,201812,4,2,405624,5532 -001,FR,VN,201812,4,2,29842,632 -016,FR,VN,201812,1,1,76647,144000 -016,FR,VN,201812,1,1,101909,189500 -016,FR,VN,201812,1,1,1250,1000 -016,FR,VN,201812,4,1,47,5 -016,FR,VN,201812,8,2,15500,20000 -031,FR,VN,201812,4,1,56767,12960 -031,FR,VN,201812,4,1,11,2 -031,FR,VN,201812,4,1,6306,1440 -031,FR,VN,201812,4,1,18931,4320 -035,FR,VN,201812,1,1,300687,61876 -035,FR,VN,201812,1,1,121206,15876 -035,FR,VN,201812,1,1,124617,35000 -035,FR,VN,201812,1,1,1728149,213612 -035,FR,VN,201812,1,1,472104,47628 -035,FR,VN,201812,1,1,121206,15876 -035,FR,VN,201812,1,1,21658,2130 -035,FR,VN,201812,3,1,84,5 -035,FR,VN,201812,4,1,484664,96938 -035,FR,VN,201812,4,1,41621,7856 -035,FR,VN,201812,4,1,5338,1040 -035,FR,VN,201812,4,1,10652,2235 -035,FR,VN,201812,4,1,6279,1180 -035,FR,VN,201812,4,1,163518,31447 -035,FR,VN,201812,4,1,455501,85625 -035,FR,VN,201812,4,1,1244801,234057 -035,FR,VN,201812,4,1,151389,28302 -035,FR,VN,201812,1,2,1129223,654632 -035,FR,VN,201812,1,2,941474,643487 -035,FR,VN,201812,1,2,15207,21168 -035,FR,VN,201812,1,2,28153,21168 -035,FR,VN,201812,1,2,44214,42100 -039,FR,VN,201812,1,1,1385,350 -039,FR,VN,201812,1,1,16767,8580 -039,FR,VN,201812,1,1,22826,23996 -039,FR,VN,201812,1,1,19680,14400 -039,FR,VN,201812,1,1,7165,4078 -039,FR,VN,201812,1,1,19512,21230 -039,FR,VN,201812,1,1,17949,16012 -039,FR,VN,201812,4,1,2761,606 -039,FR,VN,201812,4,1,1002,220 -039,FR,VN,201812,4,1,719,158 -039,FR,VN,201812,4,1,1089,200 -039,FR,VN,201812,4,1,9663,1990 -039,FR,VN,201812,0,2,100,0 -039,FR,VN,201812,4,2,14086,239 -039,FR,VN,201812,4,2,1537,21 -043,FR,VN,201812,1,1,209916,199096 -043,FR,VN,201812,1,1,25428,22489 -045,FR,VN,201812,1,1,258392,3648 -051,FR,VN,201812,1,2,15541,40410 -051,FR,VN,201812,1,2,181295,945510 -051,FR,VN,201812,1,2,216186,1418950 -055,FR,VN,201812,1,2,136734,1194250 -056,FR,VN,201812,1,1,29987,24323 -056,FR,VN,201812,1,1,203057,148984 -056,FR,VN,201812,1,1,33630,27880 -056,FR,VN,201812,1,2,163025,477490 -056,FR,VN,201812,1,2,92378,129560 -056,FR,VN,201812,1,2,46149,45150 -056,FR,VN,201812,1,2,28676,208000 -056,FR,VN,201812,1,2,170801,224840 -060,FR,VN,201812,1,1,3257,3830 -092,FR,VN,201812,1,1,7203,5040 -092,FR,VN,201812,1,1,86058,60480 -092,FR,VN,201812,1,1,458762,362720 -092,FR,VN,201812,1,2,32847,19023 -099,FR,VN,201812,1,1,9470,6000 -099,FR,VN,201812,1,1,4484,5584 -099,FR,VN,201812,1,1,1151,398 -099,FR,VN,201812,1,1,438574,490522 -099,FR,VN,201812,1,1,7650,3820 -099,FR,VN,201812,1,1,163335,168000 -099,FR,VN,201812,1,1,2733,600 -099,FR,VN,201812,4,1,4304,86 -099,FR,VN,201812,4,1,269,0 -099,FR,VN,201812,4,1,184,17 -099,FR,VN,201812,5,1,93,4 -099,FR,VN,201812,1,2,24925,60000 -099,FR,VN,201812,1,2,41564,55200 -099,FR,VN,201812,1,2,370768,437548 -099,FR,VN,201812,1,2,13123,27600 -099,FR,VN,201812,4,2,1882,73 -099,FR,VN,201812,4,2,1148,1 -099,FR,VN,201812,4,2,37582,168 -121,FR,VN,201812,1,2,93286,8272 -121,FR,VN,201812,1,2,11100,5400 -121,FR,VN,201812,1,2,77596,6888 -121,FR,VN,201812,1,2,830908,70003 -121,FR,VN,201812,1,2,126372,4835 -121,FR,VN,201812,1,2,39589,2521 -121,FR,VN,201812,1,2,23076,6963 -121,FR,VN,201812,1,2,16024,4985 -121,FR,VN,201812,1,2,53864,8991 -121,FR,VN,201812,1,2,136106,59778 -121,FR,VN,201812,1,2,115470,37485 -121,FR,VN,201812,3,2,13,2 -121,FR,VN,201812,4,2,24314,552 -121,FR,VN,201812,4,2,4200,300 -121,FR,VN,201812,4,2,14338,1675 -122,FR,VN,201812,1,1,23140,27189 -122,FR,VN,201812,1,1,7707,9000 -122,FR,VN,201812,1,2,2490,1185 -122,FR,VN,201812,1,2,2799,1170 -122,FR,VN,201812,1,2,46000,29760 -122,FR,VN,201812,1,2,23000,14760 -122,FR,VN,201812,4,2,160,277 -125,FR,VN,201812,1,2,271,8 -125,FR,VN,201812,1,2,12582,12806 -125,FR,VN,201812,1,2,17839,2549 -128,FR,VN,201812,1,1,13966,18802 -128,FR,VN,201812,1,1,2600,2070 -128,FR,VN,201812,1,1,869,1188 -128,FR,VN,201812,1,2,48399,33943 -128,FR,VN,201812,1,2,149993,215940 -128,FR,VN,201812,1,2,19690,19380 -128,FR,VN,201812,4,2,301,531 -131,FR,VN,201812,0,1,1691030,1161827 -131,FR,VN,201812,1,1,45164,24004 -131,FR,VN,201812,1,1,47219,35053 -131,FR,VN,201812,1,1,194550,132429 -131,FR,VN,201812,1,1,33500,19970 -131,FR,VN,201812,1,1,90229,57258 -131,FR,VN,201812,1,1,451704,280710 -131,FR,VN,201812,1,1,3560149,2181290 -131,FR,VN,201812,1,1,4719,960 -131,FR,VN,201812,1,1,846,12000 -131,FR,VN,201812,1,1,261666,182408 -131,FR,VN,201812,3,1,4280,2938 -131,FR,VN,201812,3,1,56426,31030 -131,FR,VN,201812,3,1,64234,38874 -131,FR,VN,201812,4,1,71,2 -131,FR,VN,201812,4,1,105,7 -131,FR,VN,201812,1,2,938,44 -132,FR,VN,201812,1,1,63350,18100 -132,FR,VN,201812,4,1,332,82 -132,FR,VN,201812,0,2,108,5 -132,FR,VN,201812,1,2,7779,970 -132,FR,VN,201812,1,2,15335,1920 -132,FR,VN,201812,1,2,1270,81 -132,FR,VN,201812,4,2,175,20 -132,FR,VN,201812,4,2,7171,557 -132,FR,VN,201812,4,2,66550,8897 -133,FR,VN,201812,1,1,3708,1135 -133,FR,VN,201812,1,1,1904,402 -133,FR,VN,201812,1,1,201,100 -133,FR,VN,201812,1,1,441575,143503 -133,FR,VN,201812,1,1,1240,200 -133,FR,VN,201812,1,1,60318,15000 -133,FR,VN,201812,1,1,98409,31925 -133,FR,VN,201812,1,1,2104,497 -133,FR,VN,201812,3,1,51,0 -133,FR,VN,201812,3,1,130,6 -133,FR,VN,201812,4,1,4652,345 -133,FR,VN,201812,4,1,186,29 -133,FR,VN,201812,4,1,8301,1358 -133,FR,VN,201812,1,2,7475,1928 -133,FR,VN,201812,1,2,2000,3 -133,FR,VN,201812,1,2,3195,1500 -133,FR,VN,201812,4,2,3943,210 -136,FR,VN,201812,1,1,4061,1308 -136,FR,VN,201812,1,1,1751,528 -136,FR,VN,201812,1,1,2470,1000 -136,FR,VN,201812,1,1,27268,8707 -136,FR,VN,201812,1,2,962,99 -136,FR,VN,201812,1,2,143287,275000 -136,FR,VN,201812,1,2,25000,10000 -136,FR,VN,201812,1,2,37439,25475 -136,FR,VN,201812,4,2,2410,300 -139,FR,VN,201812,1,1,154897,30709 -139,FR,VN,201812,1,1,7142,4620 -139,FR,VN,201812,1,1,13514,4237 -139,FR,VN,201812,1,1,4356,1164 -139,FR,VN,201812,1,1,233,15 -139,FR,VN,201812,1,1,204477,55426 -139,FR,VN,201812,1,1,52172,28415 -139,FR,VN,201812,1,1,13693,5468 -139,FR,VN,201812,1,1,35119,22791 -139,FR,VN,201812,1,1,22065,14040 -139,FR,VN,201812,1,1,369849,162554 -139,FR,VN,201812,1,1,22475,17244 -139,FR,VN,201812,1,1,6195,3780 -139,FR,VN,201812,1,1,94422,45395 -139,FR,VN,201812,3,1,83,4 -139,FR,VN,201812,4,1,186,33 -139,FR,VN,201812,4,1,401,29 -139,FR,VN,201812,4,1,371,1 -139,FR,VN,201812,0,2,2828,3 -139,FR,VN,201812,1,2,61217,11085 -139,FR,VN,201812,1,2,11211,1440 -139,FR,VN,201812,1,2,12873,1360 -139,FR,VN,201812,1,2,260329,44886 -139,FR,VN,201812,1,2,165940,32940 -139,FR,VN,201812,1,2,32909,8006 -139,FR,VN,201812,1,2,4726,2000 -139,FR,VN,201812,1,2,3985,600 -139,FR,VN,201812,1,2,215410,114313 -139,FR,VN,201812,1,2,67982,13120 -139,FR,VN,201812,1,2,17073,2165 -139,FR,VN,201812,1,2,160825,28117 -139,FR,VN,201812,3,2,1488,641 -139,FR,VN,201812,4,2,48607,4474 -139,FR,VN,201812,4,2,73139,3690 -139,FR,VN,201812,4,2,6913,583 -139,FR,VN,201812,4,2,26613,1470 -141,FR,VN,201812,1,2,37765,2106 -141,FR,VN,201812,1,2,3757,541 -141,FR,VN,201812,1,2,75296,51028 -141,FR,VN,201812,1,2,43557,49330 -141,FR,VN,201812,1,2,27448,24996 -141,FR,VN,201812,1,2,183814,122262 -141,FR,VN,201812,4,2,10123,365 -141,FR,VN,201812,4,2,9204,369 -142,FR,VN,201812,0,1,34334,3836 -142,FR,VN,201812,1,1,89428,18205 -142,FR,VN,201812,1,1,100119,17308 -142,FR,VN,201812,1,1,313764,41956 -142,FR,VN,201812,1,1,154872,48373 -142,FR,VN,201812,1,1,222791,19900 -142,FR,VN,201812,1,1,567636,106542 -142,FR,VN,201812,1,1,57898,17280 -142,FR,VN,201812,1,1,360152,60889 -142,FR,VN,201812,1,1,437546,63418 -142,FR,VN,201812,1,1,291296,84360 -142,FR,VN,201812,1,1,4586,1920 -142,FR,VN,201812,1,1,64796,9706 -142,FR,VN,201812,1,1,87388,24640 -142,FR,VN,201812,1,1,1381734,168387 -142,FR,VN,201812,1,1,50544,17280 -142,FR,VN,201812,1,1,141648,24580 -142,FR,VN,201812,4,1,149,4 -142,FR,VN,201812,4,1,22374,130 -142,FR,VN,201812,4,1,4309,164 -142,FR,VN,201812,4,1,350,4 -142,FR,VN,201812,1,2,16250,2500 -142,FR,VN,201812,1,2,89072,19907 -142,FR,VN,201812,1,2,194123,76728 -142,FR,VN,201812,4,2,28844,3724 -142,FR,VN,201812,4,2,1416,142 -143,FR,VN,201812,1,2,13000,23315 -143,FR,VN,201812,1,2,28078,10206 -143,FR,VN,201812,1,2,100453,183768 -143,FR,VN,201812,1,2,29082,47976 -144,FR,VN,201812,1,2,33676,4644 -144,FR,VN,201812,1,2,12708,1674 -144,FR,VN,201812,1,2,699157,332672 -144,FR,VN,201812,1,2,42085,24750 -144,FR,VN,201812,1,2,90065,11583 -144,FR,VN,201812,1,2,477648,231972 -144,FR,VN,201812,1,2,32849,21000 -144,FR,VN,201812,4,2,31182,2600 -144,FR,VN,201812,4,2,44,6 -144,FR,VN,201812,4,2,31362,3765 -144,FR,VN,201812,4,2,6031,548 -144,FR,VN,201812,4,2,37265,3392 -144,FR,VN,201812,4,2,16388,2303 -145,FR,VN,201812,1,2,333,72 -145,FR,VN,201812,1,2,1467,289 -145,FR,VN,201812,4,2,14479,13065 -147,FR,VN,201812,1,2,11212,346 -147,FR,VN,201812,1,2,11503,1685 -147,FR,VN,201812,4,2,3370,277 -147,FR,VN,201812,4,2,4628,415 -148,FR,VN,201812,0,1,464424,42132 -148,FR,VN,201812,1,1,60865,12800 -148,FR,VN,201812,1,1,74525,4591 -148,FR,VN,201812,1,1,30894,5496 -148,FR,VN,201812,1,1,20016,2900 -148,FR,VN,201812,1,1,315476,50193 -148,FR,VN,201812,1,1,26554,4837 -148,FR,VN,201812,1,1,99702,15315 -148,FR,VN,201812,1,1,189904,39426 -148,FR,VN,201812,1,1,85941,47180 -148,FR,VN,201812,1,1,745294,82645 -148,FR,VN,201812,1,1,116656,13056 -148,FR,VN,201812,4,1,227,4 -148,FR,VN,201812,4,1,67,0 -148,FR,VN,201812,4,2,9269,57 -148,FR,VN,201812,4,2,4548,4 -161,FR,VN,201812,1,1,149,100 -161,FR,VN,201812,1,1,10476,6873 -161,FR,VN,201812,3,1,106,9 -161,FR,VN,201812,4,1,1039,131 -161,FR,VN,201812,1,2,9989,24500 -162,FR,VN,201812,1,2,372240,900000 -162,FR,VN,201812,1,2,807811,2241675 -163,FR,VN,201812,1,1,6801,1500 -163,FR,VN,201812,1,1,21213,4260 -163,FR,VN,201812,1,1,50265,11027 -163,FR,VN,201812,1,1,1548,654 -163,FR,VN,201812,1,1,422266,189600 -163,FR,VN,201812,1,1,56055,33764 -163,FR,VN,201812,1,1,12815,6980 -163,FR,VN,201812,1,1,68699,34004 -163,FR,VN,201812,1,1,32365,24000 -163,FR,VN,201812,1,1,32212,20800 -163,FR,VN,201812,1,1,21760,14000 -163,FR,VN,201812,1,1,50389,33542 -163,FR,VN,201812,1,1,731828,481743 -163,FR,VN,201812,1,1,28016,17500 -163,FR,VN,201812,1,1,44636,35263 -163,FR,VN,201812,1,1,15463,11000 -163,FR,VN,201812,4,1,69,1 -163,FR,VN,201812,4,1,2582,251 -163,FR,VN,201812,1,2,18482,3295 -163,FR,VN,201812,1,2,8682,1146 -163,FR,VN,201812,1,2,21700,11112 -163,FR,VN,201812,1,2,70599,45333 -163,FR,VN,201812,4,2,1104,165 -163,FR,VN,201812,4,2,33020,7147 -163,FR,VN,201812,4,2,59842,12192 -163,FR,VN,201812,4,2,96112,19960 -164,FR,VN,201812,1,1,8954,4423 -164,FR,VN,201812,1,1,8147,5860 -164,FR,VN,201812,1,1,150567,44911 -164,FR,VN,201812,1,1,68403,50000 -164,FR,VN,201812,1,1,95901,26095 -164,FR,VN,201812,1,1,59207,10011 -164,FR,VN,201812,3,1,136,6 -164,FR,VN,201812,4,1,1901,111 -164,FR,VN,201812,1,2,35641,8996 -164,FR,VN,201812,1,2,2225,240 -164,FR,VN,201812,1,2,2028,407 -164,FR,VN,201812,1,2,4398,4493 -164,FR,VN,201812,1,2,5512,1006 -164,FR,VN,201812,4,2,13260,900 -164,FR,VN,201812,4,2,19869,1007 -166,FR,VN,201812,1,1,10690,4912 -166,FR,VN,201812,1,1,21477,8515 -166,FR,VN,201812,1,1,40603,18334 -166,FR,VN,201812,1,1,6638,1698 -166,FR,VN,201812,4,1,4523,199 -166,FR,VN,201812,4,1,19,1 -166,FR,VN,201812,1,2,1072,247 -166,FR,VN,201812,1,2,4284,533 -166,FR,VN,201812,1,2,6993,9000 -166,FR,VN,201812,4,2,1860,3 -179,FR,VN,201812,1,1,51735,14717 -179,FR,VN,201812,1,2,82641,12135 -179,FR,VN,201812,1,2,38648,4464 -179,FR,VN,201812,1,2,16655,5962 -179,FR,VN,201812,1,2,426871,403896 -179,FR,VN,201812,1,2,51209,17500 -179,FR,VN,201812,1,2,28010,22000 -179,FR,VN,201812,1,2,125665,17936 -179,FR,VN,201812,1,2,516800,649377 -179,FR,VN,201812,1,2,123561,528128 -181,FR,VN,201812,1,1,10840,3560 -182,FR,VN,201812,1,2,21617,3903 -182,FR,VN,201812,1,2,2380,412 -341,FR,VN,201812,1,2,4977,820 -341,FR,VN,201812,1,2,1874,800 -341,FR,VN,201812,1,2,342973,133110 -341,FR,VN,201812,1,2,126880,60000 -341,FR,VN,201812,1,2,72639,18648 -341,FR,VN,201812,3,2,21323,13092 -341,FR,VN,201812,4,2,23,0 -462,FR,VN,201812,1,1,133568,12240 -462,FR,VN,201812,1,1,41512,3747 -533,FR,VN,201812,1,2,55730,3710 -533,FR,VN,201812,1,2,8169,298 -536,FR,VN,201812,1,1,22775,19000 -536,FR,VN,201812,1,1,2645,3000 -536,FR,VN,201812,1,1,52947,74945 -542,FR,VN,201812,1,1,122566,123950 -542,FR,VN,201812,1,2,17081,11220 -542,FR,VN,201812,1,2,47629,1556 -542,FR,VN,201812,3,2,379,14 -543,FR,VN,201812,1,1,244492,66744 -543,FR,VN,201812,1,2,11920,7830 -543,FR,VN,201812,1,2,1783961,51129 -543,FR,VN,201812,1,2,1701471,48890 -543,FR,VN,201812,4,2,371837,10679 -551,FR,VN,201812,3,1,156,4 -551,FR,VN,201812,4,1,10,6 -551,FR,VN,201812,1,2,8251,319 -551,FR,VN,201812,4,2,1345,0 -551,FR,VN,201812,4,2,1102,110 -552,FR,VN,201812,1,1,47600,17200 -552,FR,VN,201812,1,1,4758,1057 -552,FR,VN,201812,4,1,548,61 -552,FR,VN,201812,1,2,63149,4225 -552,FR,VN,201812,1,2,26662,2640 -552,FR,VN,201812,1,2,53,4 -561,FR,VN,201812,4,2,7050,10 -565,FR,VN,201812,4,2,42772,100 -565,FR,VN,201812,4,2,4571,22 -565,FR,VN,201812,4,2,3870,12 -568,FR,VN,201812,1,1,45460,3014 -568,FR,VN,201812,4,1,3597,654 -568,FR,VN,201812,4,1,1309,228 -568,FR,VN,201812,1,2,749,25 -568,FR,VN,201812,1,2,28994,7011 -568,FR,VN,201812,4,2,158,4 -568,FR,VN,201812,4,2,3537,179 -568,FR,VN,201812,4,2,10790,469 -612,FR,VN,201812,1,2,93037,525000 -614,FR,VN,201812,1,2,4500,40000 -614,FR,VN,201812,1,2,79829,356000 -621,FR,VN,201812,1,2,492708,23228 -621,FR,VN,201812,4,2,15,1 -639,FR,VN,201812,1,2,2080,500 -641,FR,VN,201812,1,1,2277849,40998000 -691,FR,VN,201812,1,1,4651,1240 -691,FR,VN,201812,1,1,4595,2219 -691,FR,VN,201812,1,1,13758,18200 -691,FR,VN,201812,1,1,422,850 -691,FR,VN,201812,1,1,1250,1237 -691,FR,VN,201812,1,1,6709,26000 -691,FR,VN,201812,1,1,114254,151536 -691,FR,VN,201812,1,1,11067,25076 -691,FR,VN,201812,1,1,28194,110040 -691,FR,VN,201812,1,1,4306,6270 -691,FR,VN,201812,1,1,41230,127383 -691,FR,VN,201812,1,1,61201,85451 -691,FR,VN,201812,1,1,22546,50073 -691,FR,VN,201812,1,1,6454,26961 -691,FR,VN,201812,1,1,9445,7307 -691,FR,VN,201812,3,1,60,32 -691,FR,VN,201812,4,1,172,16 -691,FR,VN,201812,4,1,190,41 -691,FR,VN,201812,1,2,25774,2881 -691,FR,VN,201812,1,2,49856,20005 -691,FR,VN,201812,4,2,103316,5249 -692,FR,VN,201812,1,1,23666,71256 -692,FR,VN,201812,1,1,14574,52548 -692,FR,VN,201812,4,2,8577,210 -719,FR,VN,201812,1,2,71220,97744 -813,FR,VN,201812,1,2,15686,11250 -819,FR,VN,201812,1,1,156350,8054 -819,FR,VN,201812,1,1,234679,12077 -819,FR,VN,201812,1,2,32997,5550 -819,FR,VN,201812,1,2,160639,64339 -819,FR,VN,201812,1,2,1466,1000 -819,FR,VN,201812,1,2,140678,49089 -819,FR,VN,201812,1,2,43821,21160 -819,FR,VN,201812,1,2,94019,32600 -819,FR,VN,201812,1,2,21608,16400 -819,FR,VN,201812,3,2,34380,18400 -819,FR,VN,201812,4,2,21993,99 -819,FR,VN,201812,4,2,2340,228 -819,FR,VN,201812,4,2,11077,120 -820,FR,VN,201812,1,2,49922,80000 -820,FR,VN,201812,1,2,26550,40000 -841,FR,VN,201812,3,2,4795,2160 -842,FR,VN,201812,1,2,89937,699600 -842,FR,VN,201812,1,2,158517,1204980 -842,FR,VN,201812,1,2,25824,196620 -842,FR,VN,201812,1,2,110436,1707280 -842,FR,VN,201812,1,2,100753,902160 -842,FR,VN,201812,1,2,24657,227120 -842,FR,VN,201812,1,2,58365,583344 -891,FR,VN,201812,1,1,77719,71040 -891,FR,VN,201812,1,1,52754,33320 -891,FR,VN,201812,1,1,49043,19514 -891,FR,VN,201812,1,1,64114,41590 -891,FR,VN,201812,1,1,23207,9757 -891,FR,VN,201812,1,1,598738,506000 -891,FR,VN,201812,3,1,39,1 -891,FR,VN,201812,4,1,1893,287 -891,FR,VN,201812,4,1,888,54 -891,FR,VN,201812,4,1,82,6 -891,FR,VN,201812,1,2,116797,26598 -891,FR,VN,201812,1,2,4342,400 -891,FR,VN,201812,1,2,77802,2040 -891,FR,VN,201812,1,2,237422,72145 -891,FR,VN,201812,1,2,27862,6000 -891,FR,VN,201812,1,2,179108,15000 -891,FR,VN,201812,1,2,89880,24252 -891,FR,VN,201812,1,2,38649,22000 -891,FR,VN,201812,3,2,265,12 -891,FR,VN,201812,4,2,18200,795 -891,FR,VN,201812,4,2,2648,271 -891,FR,VN,201812,4,2,1081,19 -891,FR,VN,201812,4,2,181,110 -891,FR,VN,201812,4,2,23838,1377 -891,FR,VN,201812,4,2,4218,388 -891,FR,VN,201812,4,2,2287,41 -892,FR,VN,201812,4,1,251,0 -892,FR,VN,201812,4,1,20,3 -892,FR,VN,201812,4,1,546,72 -892,FR,VN,201812,1,2,4856,875 -892,FR,VN,201812,1,2,2366,101 -892,FR,VN,201812,1,2,131598,98000 -892,FR,VN,201812,1,2,1685,600 -892,FR,VN,201812,1,2,19494,12200 -892,FR,VN,201812,1,2,145919,16686 -892,FR,VN,201812,4,2,8328,858 -892,FR,VN,201812,4,2,1270,60 -892,FR,VN,201812,4,2,876,170 -892,FR,VN,201812,4,2,18254,580 -892,FR,VN,201812,4,2,1110,140 -893,FR,VN,201812,0,1,13,0 -893,FR,VN,201812,1,1,5262,298 -893,FR,VN,201812,1,1,666,34 -893,FR,VN,201812,1,1,8829,749 -893,FR,VN,201812,3,1,377,5 -893,FR,VN,201812,4,1,94505,1634 -893,FR,VN,201812,4,1,892,45 -893,FR,VN,201812,4,1,826,23 -893,FR,VN,201812,4,1,124,4 -893,FR,VN,201812,4,1,167461,1285 -893,FR,VN,201812,0,2,569,0 -893,FR,VN,201812,1,2,1088924,59434 -893,FR,VN,201812,1,2,3343,100 -893,FR,VN,201812,1,2,16330,1000 -893,FR,VN,201812,1,2,143338,8465 -893,FR,VN,201812,1,2,10235,1387 -893,FR,VN,201812,1,2,13391,2600 -893,FR,VN,201812,1,2,708789,53183 -893,FR,VN,201812,1,2,114475,7705 -893,FR,VN,201812,1,2,467281,37012 -893,FR,VN,201812,1,2,171924,2584 -893,FR,VN,201812,1,2,4098535,202561 -893,FR,VN,201812,1,2,150278,15815 -893,FR,VN,201812,1,2,5931,2000 -893,FR,VN,201812,1,2,5004,830 -893,FR,VN,201812,1,2,920794,1716 -893,FR,VN,201812,3,2,7,3 -893,FR,VN,201812,3,2,34711,6422 -893,FR,VN,201812,4,2,5119820,32210 -893,FR,VN,201812,4,2,80,0 -893,FR,VN,201812,4,2,265246,1719 -893,FR,VN,201812,4,2,41898,455 -893,FR,VN,201812,4,2,143324,4608 -893,FR,VN,201812,4,2,366209,11854 -893,FR,VN,201812,4,2,11208,44 -893,FR,VN,201812,4,2,315710,12209 -893,FR,VN,201812,4,2,831833,8250 -893,FR,VN,201812,4,2,6878501,53114 -893,FR,VN,201812,4,2,23319,800 -893,FR,VN,201812,4,2,43918,996 -893,FR,VN,201812,4,2,2900,200 -893,FR,VN,201812,4,2,1500,10 -893,FR,VN,201812,4,2,2153,5 -894,FR,VN,201812,4,2,5081,2 -895,FR,VN,201812,1,1,1097,1090 -895,FR,VN,201812,1,1,5266,3274 -895,FR,VN,201812,1,2,4458,13000 -895,FR,VN,201812,1,2,9568,34500 -895,FR,VN,201812,1,2,35441,47750 -895,FR,VN,201812,1,2,2720,8000 -896,FR,VN,201812,0,1,1227,62 -896,FR,VN,201812,1,1,105564,3602 -896,FR,VN,201812,1,1,131475,20000 -896,FR,VN,201812,3,1,566,19 -896,FR,VN,201812,3,1,43,0 -896,FR,VN,201812,4,1,43,0 -896,FR,VN,201812,1,2,17520,2603 -896,FR,VN,201812,1,2,8110,1662 -896,FR,VN,201812,1,2,23600,400 -896,FR,VN,201812,1,2,599205,133394 -896,FR,VN,201812,1,2,3754,2000 -896,FR,VN,201812,1,2,3350,5000 -896,FR,VN,201812,1,2,146174,18786 -896,FR,VN,201812,1,2,285257,88175 -896,FR,VN,201812,1,2,16989,5280 -896,FR,VN,201812,1,2,61952,30344 -896,FR,VN,201812,1,2,228569,38599 -896,FR,VN,201812,1,2,2025,180 -896,FR,VN,201812,3,2,11487,84 -896,FR,VN,201812,4,2,58967,1161 -896,FR,VN,201812,4,2,24809,85 -896,FR,VN,201812,4,2,71835,2847 -896,FR,VN,201812,4,2,943,15 -896,FR,VN,201812,4,2,8085,147 -896,FR,VN,201812,4,2,68920,1784 -896,FR,VN,201812,4,2,30471,320 -896,FR,VN,201812,4,2,17494,150 -896,FR,VN,201812,4,2,32797,111 -910,FR,VN,201812,0,1,605,4 -910,FR,VN,201812,1,1,20737,2099 -910,FR,VN,201812,1,1,84771,740 -910,FR,VN,201812,1,1,159900,1400 -910,FR,VN,201812,1,1,5875000,0 -910,FR,VN,201812,1,1,84712,14531 -910,FR,VN,201812,1,1,123226,7552 -910,FR,VN,201812,1,1,413641,2432 -910,FR,VN,201812,1,1,30964,1933 -910,FR,VN,201812,1,1,4525,1034 -910,FR,VN,201812,3,1,3159,98 -910,FR,VN,201812,4,1,149152,941 -910,FR,VN,201812,4,1,144,1 -910,FR,VN,201812,4,1,84344,700 -910,FR,VN,201812,4,1,321372,2801 -910,FR,VN,201812,4,1,137871,2237 -910,FR,VN,201812,1,2,5222,276 -910,FR,VN,201812,1,2,810186,69787 -910,FR,VN,201812,3,2,1,1 -910,FR,VN,201812,4,2,1591347,5671 -910,FR,VN,201812,4,2,189403,299 -910,FR,VN,201812,4,2,2579,488 -910,FR,VN,201812,4,2,720,0 -910,FR,VN,201812,4,2,2576,1 -910,FR,VN,201812,4,2,750,30 -910,FR,VN,201812,4,2,23200,7 -910,FR,VN,201812,4,2,122507,1857 -910,FR,VN,201812,4,2,4703,5 -910,FR,VN,201812,4,2,6063,6 -910,FR,VN,201812,4,2,2255,16 -910,FR,VN,201812,4,2,3485,13 -920,FR,VN,201812,1,1,51809,12060 -920,FR,VN,201812,1,1,38563,10378 -920,FR,VN,201812,1,1,95496,19091 -920,FR,VN,201812,4,1,221,36 -920,FR,VN,201812,1,2,72127,8240 -920,FR,VN,201812,1,2,11800,170 -920,FR,VN,201812,1,2,2806,320 -920,FR,VN,201812,1,2,62879,12694 -920,FR,VN,201812,3,2,359,6 -920,FR,VN,201812,4,2,4230,69 -920,FR,VN,201812,4,2,1190,37 -920,FR,VN,201812,4,2,1964,194 -920,FR,VN,201812,4,2,138,70 -931,FR,VN,201812,0,1,74650494,89066 -931,FR,VN,201812,1,1,90149,14961 -931,FR,VN,201812,1,1,23017,921 -931,FR,VN,201812,1,1,8342,397 -931,FR,VN,201812,1,1,66264,16464 -931,FR,VN,201812,1,1,13842,1573 -931,FR,VN,201812,1,1,10690439,529040 -931,FR,VN,201812,1,1,584748,31942 -931,FR,VN,201812,1,1,210869,39210 -931,FR,VN,201812,1,1,29754,7452 -931,FR,VN,201812,1,1,531090,10743 -931,FR,VN,201812,1,1,622180,157087 -931,FR,VN,201812,1,1,33116,8769 -931,FR,VN,201812,1,1,355732,25039 -931,FR,VN,201812,1,1,292076,14637 -931,FR,VN,201812,1,1,303664,8163 -931,FR,VN,201812,1,1,356960,23398 -931,FR,VN,201812,3,1,116153,1206 -931,FR,VN,201812,3,1,115,0 -931,FR,VN,201812,3,1,72979,133 -931,FR,VN,201812,4,1,3247190,40695 -931,FR,VN,201812,4,1,976555,1624 -931,FR,VN,201812,4,1,92,5 -931,FR,VN,201812,4,1,39669,555 -931,FR,VN,201812,4,1,13859,11 -931,FR,VN,201812,4,1,11184,750 -931,FR,VN,201812,4,1,749585,605 -931,FR,VN,201812,4,1,4874,96 -931,FR,VN,201812,4,1,93744,1220 -931,FR,VN,201812,4,1,429713,2474 -931,FR,VN,201812,4,1,43514,147 -931,FR,VN,201812,4,1,151356,1138 -931,FR,VN,201812,4,1,6882,6 -931,FR,VN,201812,4,1,5016,68 -931,FR,VN,201812,0,2,150,2 -931,FR,VN,201812,1,2,173275,9261 -931,FR,VN,201812,1,2,55382,379 -931,FR,VN,201812,1,2,11386,427 -931,FR,VN,201812,1,2,13206,1235 -931,FR,VN,201812,1,2,62595,3276 -931,FR,VN,201812,1,2,22350,2537 -931,FR,VN,201812,1,2,23834,1485 -931,FR,VN,201812,1,2,11180,170 -931,FR,VN,201812,1,2,1254633,140632 -931,FR,VN,201812,1,2,74288,5050 -931,FR,VN,201812,1,2,42529,2458 -931,FR,VN,201812,1,2,81136,17488 -931,FR,VN,201812,1,2,590353,53162 -931,FR,VN,201812,1,2,125176,10478 -931,FR,VN,201812,3,2,309135,15877 -931,FR,VN,201812,3,2,771,300 -931,FR,VN,201812,4,2,7747087,38134 -931,FR,VN,201812,4,2,76238,345 -931,FR,VN,201812,4,2,3775,32 -931,FR,VN,201812,4,2,401587,5306 -931,FR,VN,201812,4,2,7711,6 -931,FR,VN,201812,4,2,641795,3821 -931,FR,VN,201812,4,2,389008,7452 -931,FR,VN,201812,4,2,21139,526 -931,FR,VN,201812,4,2,497386,5533 -931,FR,VN,201812,4,2,2520,24 -931,FR,VN,201812,4,2,1373,6 -931,FR,VN,201812,4,2,199526,6920 -931,FR,VN,201812,4,2,3290,18 -931,FR,VN,201812,4,2,38466,122 -939,FR,VN,201812,0,1,15745401,286940 -939,FR,VN,201812,1,1,646895,3013 -939,FR,VN,201812,1,1,327328,24737 -939,FR,VN,201812,1,1,29012,288 -939,FR,VN,201812,1,1,12620,671 -939,FR,VN,201812,1,1,1914,566 -939,FR,VN,201812,1,1,1161074,11753 -939,FR,VN,201812,1,1,1,0 -939,FR,VN,201812,1,1,98848,1600 -939,FR,VN,201812,1,1,6787,372 -939,FR,VN,201812,1,1,273760,66232 -939,FR,VN,201812,1,1,44112,12195 -939,FR,VN,201812,1,1,7,3 -939,FR,VN,201812,1,1,222389,35294 -939,FR,VN,201812,3,1,118838,711 -939,FR,VN,201812,4,1,69619,1100 -939,FR,VN,201812,4,1,124499,467 -939,FR,VN,201812,4,1,382909,1574 -939,FR,VN,201812,4,1,43498,85 -939,FR,VN,201812,4,1,479344,2070 -939,FR,VN,201812,4,1,281,3 -939,FR,VN,201812,4,1,47670,451 -939,FR,VN,201812,4,1,653,4 -939,FR,VN,201812,1,2,484806,79339 -939,FR,VN,201812,1,2,26319,402 -939,FR,VN,201812,1,2,13776,1591 -939,FR,VN,201812,1,2,67922,4130 -939,FR,VN,201812,1,2,237212,31464 -939,FR,VN,201812,1,2,10000,206 -939,FR,VN,201812,1,2,117698,4276 -939,FR,VN,201812,1,2,12298,5 -939,FR,VN,201812,1,2,164546,15717 -939,FR,VN,201812,1,2,123919,7400 -939,FR,VN,201812,1,2,120000,8034 -939,FR,VN,201812,1,2,687286,28121 -939,FR,VN,201812,1,2,24498,704 -939,FR,VN,201812,1,2,990,68 -939,FR,VN,201812,3,2,64114,334 -939,FR,VN,201812,3,2,41648,1478 -939,FR,VN,201812,4,2,1291572,17114 -939,FR,VN,201812,4,2,6983,31 -939,FR,VN,201812,4,2,15164,18 -939,FR,VN,201812,4,2,256679,7152 -939,FR,VN,201812,4,2,238251,5430 -939,FR,VN,201812,4,2,249432,3645 -939,FR,VN,201812,4,2,11150,48 -939,FR,VN,201812,4,2,16735,246 -939,FR,VN,201812,4,2,258425,2042 -939,FR,VN,201812,4,2,102275,724 -939,FR,VN,201812,4,2,8578,30 -939,FR,VN,201812,4,2,11219,53 -939,FR,VN,201812,4,2,11319,2 -939,FR,VN,201812,4,2,124429,6710 -939,FR,VN,201812,4,2,22761,130 -939,FR,VN,201812,4,2,27097,130 -941,FR,VN,201812,1,1,107630,30134 -941,FR,VN,201812,1,1,24267,27109 -941,FR,VN,201812,1,1,27610,13500 -941,FR,VN,201812,4,1,94,14 -941,FR,VN,201812,1,2,11833,940 -941,FR,VN,201812,1,2,224177,105277 -941,FR,VN,201812,1,2,190394,89667 -941,FR,VN,201812,1,2,424154,197339 -941,FR,VN,201812,4,2,1302,120 -949,FR,VN,201812,0,1,155453,70432 -949,FR,VN,201812,1,1,23198,6001 -949,FR,VN,201812,1,1,51659,21269 -949,FR,VN,201812,1,1,47504,4722 -949,FR,VN,201812,1,1,33600,1294 -949,FR,VN,201812,1,1,63,21 -949,FR,VN,201812,1,1,751508,267704 -949,FR,VN,201812,1,1,57426,51206 -949,FR,VN,201812,1,1,3302,398 -949,FR,VN,201812,1,1,19148,5916 -949,FR,VN,201812,1,1,21411,23400 -949,FR,VN,201812,1,1,951205,171050 -949,FR,VN,201812,1,1,373050,148367 -949,FR,VN,201812,1,1,78576,43482 -949,FR,VN,201812,1,1,19988,16052 -949,FR,VN,201812,1,1,61332,21297 -949,FR,VN,201812,1,1,206414,99454 -949,FR,VN,201812,3,1,8622,531 -949,FR,VN,201812,3,1,14100,1119 -949,FR,VN,201812,3,1,1,0 -949,FR,VN,201812,3,1,239,0 -949,FR,VN,201812,3,1,2047,89 -949,FR,VN,201812,3,1,181,17 -949,FR,VN,201812,4,1,25316,1316 -949,FR,VN,201812,4,1,28206,334 -949,FR,VN,201812,4,1,5812,823 -949,FR,VN,201812,4,1,67,1 -949,FR,VN,201812,4,1,53,0 -949,FR,VN,201812,4,1,3208,165 -949,FR,VN,201812,4,1,346,50 -949,FR,VN,201812,4,1,60433,1031 -949,FR,VN,201812,4,1,739,36 -949,FR,VN,201812,1,2,106693,5772 -949,FR,VN,201812,1,2,9377,270 -949,FR,VN,201812,1,2,11774,667 -949,FR,VN,201812,1,2,14288,1760 -949,FR,VN,201812,1,2,10597,5000 -949,FR,VN,201812,1,2,4103,3444 -949,FR,VN,201812,1,2,87838,18899 -949,FR,VN,201812,1,2,49946,3329 -949,FR,VN,201812,3,2,31226,863 -949,FR,VN,201812,4,2,263705,5116 -949,FR,VN,201812,4,2,892,0 -949,FR,VN,201812,4,2,3001,110 -949,FR,VN,201812,4,2,1227,0 -949,FR,VN,201812,4,2,20889,353 -949,FR,VN,201812,4,2,9036,374 -949,FR,VN,201812,4,2,33773,860 -949,FR,VN,201812,4,2,8875,91 -949,FR,VN,201812,4,2,24864,29 -951,FR,VN,201812,1,1,17975,2379 -951,FR,VN,201812,1,1,15700,3709 -951,FR,VN,201812,1,1,11339,1175 -951,FR,VN,201812,1,1,17236,1794 -951,FR,VN,201812,1,2,1048,160 -952,FR,VN,201812,0,1,3377,931 -952,FR,VN,201812,1,1,31650,21245 -952,FR,VN,201812,1,1,74143,61038 -952,FR,VN,201812,1,1,672,300 -952,FR,VN,201812,1,1,35668,57190 -952,FR,VN,201812,1,1,328,117 -952,FR,VN,201812,1,1,588933,318853 -952,FR,VN,201812,1,1,192038,121210 -952,FR,VN,201812,1,1,10851,16508 -952,FR,VN,201812,1,1,70268,83874 -952,FR,VN,201812,1,1,190283,170156 -952,FR,VN,201812,1,1,3576,1386 -952,FR,VN,201812,1,1,30214,31101 -952,FR,VN,201812,1,1,58937,42626 -952,FR,VN,201812,3,1,18108,173 -952,FR,VN,201812,3,1,408,0 -952,FR,VN,201812,3,1,485,0 -952,FR,VN,201812,3,1,9,1 -952,FR,VN,201812,4,1,2345,63 -952,FR,VN,201812,4,1,69704,1396 -952,FR,VN,201812,4,1,924,0 -952,FR,VN,201812,4,1,331,39 -952,FR,VN,201812,4,1,12983,288 -952,FR,VN,201812,4,1,262,3 -952,FR,VN,201812,4,1,787,8 -952,FR,VN,201812,4,1,91,0 -952,FR,VN,201812,1,2,10521,649 -952,FR,VN,201812,1,2,35065,4290 -952,FR,VN,201812,1,2,6533,4692 -952,FR,VN,201812,1,2,1853,143 -952,FR,VN,201812,3,2,137509,131511 -952,FR,VN,201812,4,2,85842,610 -952,FR,VN,201812,4,2,2431,20 -952,FR,VN,201812,4,2,2605,31 -952,FR,VN,201812,4,2,1358,10 -952,FR,VN,201812,4,2,13296,92 -961,FR,VN,201812,0,1,544,27 -961,FR,VN,201812,1,1,905,12 -961,FR,VN,201812,1,1,4277,252 -961,FR,VN,201812,1,1,98884,6542 -961,FR,VN,201812,3,1,1147,18 -961,FR,VN,201812,4,1,17382,101 -961,FR,VN,201812,4,1,4107,78 -961,FR,VN,201812,4,1,4741,30 -961,FR,VN,201812,4,1,3393,24 -961,FR,VN,201812,4,1,3832,22 -961,FR,VN,201812,3,2,5055,1792 -961,FR,VN,201812,4,2,9988,50 -961,FR,VN,201812,4,2,1668,33 -961,FR,VN,201812,4,2,17643,146 -961,FR,VN,201812,4,2,3795,50 -961,FR,VN,201812,4,2,4240,178 -961,FR,VN,201812,4,2,15312,184 -961,FR,VN,201812,4,2,3445,510 -961,FR,VN,201812,4,2,5578,94 -962,FR,VN,201812,0,1,57695,2812 -962,FR,VN,201812,1,1,2388,417 -962,FR,VN,201812,1,1,9276,58 -962,FR,VN,201812,1,1,2139,262 -962,FR,VN,201812,1,1,18367,410 -962,FR,VN,201812,1,1,1678,704 -962,FR,VN,201812,1,1,178505,66227 -962,FR,VN,201812,1,1,12125,924 -962,FR,VN,201812,1,1,20481,7960 -962,FR,VN,201812,1,1,118229,38751 -962,FR,VN,201812,1,1,23138,9040 -962,FR,VN,201812,1,1,494657,108224 -962,FR,VN,201812,1,1,958176,339389 -962,FR,VN,201812,1,1,76906,42720 -962,FR,VN,201812,1,1,32256,11846 -962,FR,VN,201812,1,1,29967,17510 -962,FR,VN,201812,1,1,22237,7560 -962,FR,VN,201812,3,1,2644,57 -962,FR,VN,201812,3,1,110,1 -962,FR,VN,201812,3,1,7426,295 -962,FR,VN,201812,3,1,14,0 -962,FR,VN,201812,4,1,4970,72 -962,FR,VN,201812,4,1,14888,240 -962,FR,VN,201812,4,1,315,13 -962,FR,VN,201812,4,1,696,417 -962,FR,VN,201812,4,1,285,12 -962,FR,VN,201812,4,1,7635,609 -962,FR,VN,201812,4,1,223,1 -962,FR,VN,201812,4,1,13,1 -962,FR,VN,201812,0,2,277,8 -962,FR,VN,201812,1,2,374534,8282 -962,FR,VN,201812,1,2,16834,636 -962,FR,VN,201812,1,2,3453,156 -962,FR,VN,201812,1,2,20508,389 -962,FR,VN,201812,1,2,37421,3168 -962,FR,VN,201812,1,2,552,69 -962,FR,VN,201812,1,2,24374,5698 -962,FR,VN,201812,3,2,13240,604 -962,FR,VN,201812,4,2,331931,6596 -962,FR,VN,201812,4,2,197209,1789 -962,FR,VN,201812,4,2,5199,149 -962,FR,VN,201812,4,2,904,31 -962,FR,VN,201812,4,2,48669,1686 -962,FR,VN,201812,4,2,704,3 -962,FR,VN,201812,4,2,221095,6269 -962,FR,VN,201812,4,2,20006,45 -962,FR,VN,201812,4,2,31751,892 -962,FR,VN,201812,4,2,19195,255 -962,FR,VN,201812,4,2,10258,178 -962,FR,VN,201812,4,2,12069,115 -962,FR,VN,201812,4,2,13534,285 -963,FR,VN,201812,0,1,13912227,760837 -963,FR,VN,201812,1,1,2696369,135182 -963,FR,VN,201812,1,1,60740,3057 -963,FR,VN,201812,1,1,160994,69286 -963,FR,VN,201812,1,1,7051,162 -963,FR,VN,201812,1,1,684,7 -963,FR,VN,201812,1,1,23972,7975 -963,FR,VN,201812,1,1,524669,18129 -963,FR,VN,201812,1,1,39981,10132 -963,FR,VN,201812,1,1,230235,15580 -963,FR,VN,201812,1,1,161839,16198 -963,FR,VN,201812,1,1,53100282,2583515 -963,FR,VN,201812,1,1,204703,5243 -963,FR,VN,201812,1,1,14448,4430 -963,FR,VN,201812,1,1,102168,3071 -963,FR,VN,201812,1,1,139655,4188 -963,FR,VN,201812,1,1,373251,25186 -963,FR,VN,201812,1,1,44509,17925 -963,FR,VN,201812,1,1,310385,13263 -963,FR,VN,201812,1,1,201620,18965 -963,FR,VN,201812,1,1,2031473,47938 -963,FR,VN,201812,1,1,6015696,517779 -963,FR,VN,201812,1,1,34950,2725 -963,FR,VN,201812,1,1,2786,315 -963,FR,VN,201812,1,1,1971539,322326 -963,FR,VN,201812,1,1,75953,4500 -963,FR,VN,201812,1,1,74961,7361 -963,FR,VN,201812,1,1,28465,2455 -963,FR,VN,201812,3,1,447552,8179 -963,FR,VN,201812,3,1,9345,100 -963,FR,VN,201812,3,1,1834,21 -963,FR,VN,201812,3,1,3805,41 -963,FR,VN,201812,3,1,118839,1215 -963,FR,VN,201812,3,1,33211,776 -963,FR,VN,201812,3,1,637,7 -963,FR,VN,201812,3,1,14636,1704 -963,FR,VN,201812,3,1,11180,193 -963,FR,VN,201812,4,1,4158846,141066 -963,FR,VN,201812,4,1,1592472,32636 -963,FR,VN,201812,4,1,266353,4889 -963,FR,VN,201812,4,1,21300,839 -963,FR,VN,201812,4,1,33146,988 -963,FR,VN,201812,4,1,1988,34 -963,FR,VN,201812,4,1,350,1 -963,FR,VN,201812,4,1,30336,796 -963,FR,VN,201812,4,1,150792,2367 -963,FR,VN,201812,4,1,698976,12775 -963,FR,VN,201812,4,1,253075,2730 -963,FR,VN,201812,4,1,38426,401 -963,FR,VN,201812,4,1,2129816,32010 -963,FR,VN,201812,4,1,199181,4105 -963,FR,VN,201812,4,1,1530,33 -963,FR,VN,201812,4,1,58653,1713 -963,FR,VN,201812,4,1,404353,8499 -963,FR,VN,201812,4,1,103287,1248 -963,FR,VN,201812,4,1,75383,992 -963,FR,VN,201812,4,1,10273,254 -963,FR,VN,201812,4,1,1294,38 -963,FR,VN,201812,4,1,5852,21 -963,FR,VN,201812,4,1,80,0 -963,FR,VN,201812,4,1,1675,15 -963,FR,VN,201812,4,1,12648,314 -963,FR,VN,201812,4,1,25056,894 -963,FR,VN,201812,4,1,3671,125 -963,FR,VN,201812,4,1,8561,123 -963,FR,VN,201812,5,1,285,2 -963,FR,VN,201812,0,2,85,0 -963,FR,VN,201812,1,2,20593,985 -963,FR,VN,201812,1,2,30,138 -963,FR,VN,201812,3,2,1750,22 -963,FR,VN,201812,4,2,1293171,2332 -963,FR,VN,201812,4,2,1131,171 -963,FR,VN,201812,4,2,18742,33 -963,FR,VN,201812,4,2,9561,162 -963,FR,VN,201812,4,2,3748,18 -963,FR,VN,201812,4,2,161280,1946 -963,FR,VN,201812,4,2,255,0 -963,FR,VN,201812,4,2,3155,3 -963,FR,VN,201812,4,2,1360,27 -963,FR,VN,201812,4,2,1500,60 -971,FR,VN,201812,0,1,59,0 -971,FR,VN,201812,1,1,12295,722 -971,FR,VN,201812,1,1,3437,50 -971,FR,VN,201812,1,1,114,7 -971,FR,VN,201812,1,1,320640,56783 -971,FR,VN,201812,1,1,35996,12800 -971,FR,VN,201812,1,1,43694,19109 -971,FR,VN,201812,1,1,12279,16315 -971,FR,VN,201812,1,1,207419,69074 -971,FR,VN,201812,1,1,140971,61524 -971,FR,VN,201812,1,1,41638,17600 -971,FR,VN,201812,1,1,4,0 -971,FR,VN,201812,3,1,1653,51 -971,FR,VN,201812,3,1,229949,86160 -971,FR,VN,201812,3,1,160,0 -971,FR,VN,201812,3,1,322,0 -971,FR,VN,201812,4,1,49871,701 -971,FR,VN,201812,4,1,623,19 -971,FR,VN,201812,4,1,105,0 -971,FR,VN,201812,4,1,168,9 -971,FR,VN,201812,4,1,28,1 -971,FR,VN,201812,1,2,6348,244 -971,FR,VN,201812,1,2,5289,323 -971,FR,VN,201812,4,2,109034,386 -971,FR,VN,201812,4,2,8718,4 -971,FR,VN,201812,4,2,446,6 -971,FR,VN,201812,4,2,77,10 -971,FR,VN,201812,4,2,3521,198 -971,FR,VN,201812,4,2,86,110 -971,FR,VN,201812,4,2,3818,609 -971,FR,VN,201812,4,2,1455,1570 -971,FR,VN,201812,4,2,15522,162 -972,FR,VN,201812,4,1,4070,45 -972,FR,VN,201812,4,1,92,1 -972,FR,VN,201812,1,2,11025,709 -973,FR,VN,201812,0,1,246,42 -973,FR,VN,201812,1,1,197,1 -973,FR,VN,201812,1,1,95827,34251 -973,FR,VN,201812,1,1,214813,71814 -973,FR,VN,201812,1,1,30496,5845 -973,FR,VN,201812,1,1,756453,244756 -973,FR,VN,201812,1,1,421422,82790 -973,FR,VN,201812,1,1,35302,9457 -973,FR,VN,201812,1,1,2962,38 -973,FR,VN,201812,3,1,777,48 -973,FR,VN,201812,3,1,34,0 -973,FR,VN,201812,4,1,3466,430 -973,FR,VN,201812,4,1,3723,130 -973,FR,VN,201812,4,1,169,8 -973,FR,VN,201812,4,1,311,29 -973,FR,VN,201812,4,1,144,20 -973,FR,VN,201812,4,1,1370,59 -973,FR,VN,201812,4,1,7843,613 -973,FR,VN,201812,4,1,9406,114 -973,FR,VN,201812,4,1,9551,0 -973,FR,VN,201812,1,2,15,2 -973,FR,VN,201812,1,2,300,100 -973,FR,VN,201812,1,2,119,4 -973,FR,VN,201812,1,2,13323,5600 -973,FR,VN,201812,3,2,19,5 -973,FR,VN,201812,4,2,1977,80 -973,FR,VN,201812,4,2,435,161 -974,FR,VN,201812,0,1,582,13 -974,FR,VN,201812,1,1,238,1 -974,FR,VN,201812,1,1,21569,6659 -974,FR,VN,201812,1,1,433,1570 -974,FR,VN,201812,1,1,7705,238 -974,FR,VN,201812,3,1,186,3 -974,FR,VN,201812,3,1,60,7 -974,FR,VN,201812,4,1,6722,212 -974,FR,VN,201812,4,1,2390,176 -974,FR,VN,201812,4,1,165,1 -974,FR,VN,201812,4,1,1408,200 -974,FR,VN,201812,4,1,140,2 -974,FR,VN,201812,4,1,2968,493 -974,FR,VN,201812,4,1,2277,33 -974,FR,VN,201812,5,1,3918,95 -974,FR,VN,201812,0,2,5305,15 -974,FR,VN,201812,1,2,12,5 -974,FR,VN,201812,1,2,94,1 -974,FR,VN,201812,1,2,25000,2500 -974,FR,VN,201812,1,2,113,59 -974,FR,VN,201812,1,2,4,26 -974,FR,VN,201812,3,2,36,25 -974,FR,VN,201812,4,2,52944,2207 -974,FR,VN,201812,4,2,9098,208 -974,FR,VN,201812,4,2,2722,0 -974,FR,VN,201812,4,2,2631,35 -974,FR,VN,201812,4,2,1017,82 -974,FR,VN,201812,4,2,2856,91 -974,FR,VN,201812,4,2,2801,111 -974,FR,VN,201812,4,2,3122,8 -974,FR,VN,201812,5,2,752,20 -975,FR,VN,201812,0,1,103177,25792 -975,FR,VN,201812,1,1,257069,69379 -975,FR,VN,201812,1,1,798929,188557 -975,FR,VN,201812,1,1,21884,4162 -975,FR,VN,201812,1,1,24100,8157 -975,FR,VN,201812,1,1,7812,959 -975,FR,VN,201812,1,1,6167,1068 -975,FR,VN,201812,1,1,462,105 -975,FR,VN,201812,1,1,51538,11136 -975,FR,VN,201812,1,1,91248,32320 -975,FR,VN,201812,1,1,3126404,747537 -975,FR,VN,201812,1,1,680513,178272 -975,FR,VN,201812,1,1,514491,143241 -975,FR,VN,201812,1,1,563789,136687 -975,FR,VN,201812,1,1,3048,723 -975,FR,VN,201812,1,1,324886,79655 -975,FR,VN,201812,1,1,55154,37845 -975,FR,VN,201812,1,1,5009098,1304423 -975,FR,VN,201812,1,1,2974929,1164823 -975,FR,VN,201812,1,1,154491,44448 -975,FR,VN,201812,1,1,15001,3400 -975,FR,VN,201812,1,1,45579,7488 -975,FR,VN,201812,1,1,1831,947 -975,FR,VN,201812,1,1,234966,38629 -975,FR,VN,201812,3,1,15663,1469 -975,FR,VN,201812,3,1,421,50 -975,FR,VN,201812,3,1,497,67 -975,FR,VN,201812,3,1,63,13 -975,FR,VN,201812,4,1,158709,1551 -975,FR,VN,201812,4,1,7729,1331 -975,FR,VN,201812,4,1,1051,63 -975,FR,VN,201812,4,1,916,0 -975,FR,VN,201812,4,1,2096,244 -975,FR,VN,201812,4,1,2093,215 -975,FR,VN,201812,4,1,249,27 -975,FR,VN,201812,1,2,4464,552 -975,FR,VN,201812,1,2,17369,2704 -975,FR,VN,201812,1,2,187709,18782 -975,FR,VN,201812,1,2,5625,1459 -975,FR,VN,201812,1,2,126750,1990 -975,FR,VN,201812,1,2,41471,3624 -975,FR,VN,201812,1,2,23528,1055 -975,FR,VN,201812,3,2,8242,350 -975,FR,VN,201812,4,2,116210,53 -975,FR,VN,201812,4,2,27778,479 -975,FR,VN,201812,4,2,48444,559 -975,FR,VN,201812,4,2,106,142 -975,FR,VN,201812,4,2,6530,120 -975,FR,VN,201812,4,2,1700,90 -975,FR,VN,201812,4,2,2023,8 -976,FR,VN,201812,1,1,72175,55698 -976,FR,VN,201812,1,1,608,61 -976,FR,VN,201812,1,1,14325,25858 -976,FR,VN,201812,1,1,92402,52281 -976,FR,VN,201812,1,1,610,30 -976,FR,VN,201812,1,1,30130,25500 -976,FR,VN,201812,1,1,9628,1341 -976,FR,VN,201812,1,1,29157,26085 -976,FR,VN,201812,1,1,85122,29605 -976,FR,VN,201812,1,1,171369,130668 -976,FR,VN,201812,1,1,71852,26449 -976,FR,VN,201812,1,1,85404,43166 -976,FR,VN,201812,1,1,31536,25820 -976,FR,VN,201812,3,1,1319,67 -976,FR,VN,201812,4,1,2375,194 -976,FR,VN,201812,4,1,3447,219 -976,FR,VN,201812,4,1,2010,128 -976,FR,VN,201812,4,1,80105,655 -976,FR,VN,201812,1,2,2779,154 -976,FR,VN,201812,4,2,1287,4 -976,FR,VN,201812,4,2,240,60 -979,FR,VN,201812,0,1,1332991,190937 -979,FR,VN,201812,1,1,124569,34672 -979,FR,VN,201812,1,1,91521,60310 -979,FR,VN,201812,1,1,265371,81935 -979,FR,VN,201812,1,1,10776,130 -979,FR,VN,201812,1,1,352875,31233 -979,FR,VN,201812,1,1,85056,18676 -979,FR,VN,201812,1,1,11701,385 -979,FR,VN,201812,1,1,82980,38550 -979,FR,VN,201812,1,1,2376654,764256 -979,FR,VN,201812,1,1,111399,21732 -979,FR,VN,201812,1,1,302416,184020 -979,FR,VN,201812,1,1,91846,48136 -979,FR,VN,201812,1,1,56059,5507 -979,FR,VN,201812,1,1,89152,72482 -979,FR,VN,201812,1,1,48193,7849 -979,FR,VN,201812,1,1,41883,16263 -979,FR,VN,201812,1,1,30451,22475 -979,FR,VN,201812,1,1,1461072,583144 -979,FR,VN,201812,1,1,1709577,384241 -979,FR,VN,201812,1,1,757680,108767 -979,FR,VN,201812,1,1,105463,49688 -979,FR,VN,201812,1,1,195799,88911 -979,FR,VN,201812,1,1,43510,30824 -979,FR,VN,201812,1,1,37054,24974 -979,FR,VN,201812,1,1,41558,13797 -979,FR,VN,201812,1,1,124103,2610 -979,FR,VN,201812,3,1,86916,1054 -979,FR,VN,201812,3,1,189389,1733 -979,FR,VN,201812,3,1,79,0 -979,FR,VN,201812,3,1,7217,1 -979,FR,VN,201812,3,1,73,1 -979,FR,VN,201812,4,1,745042,10884 -979,FR,VN,201812,4,1,18448,212 -979,FR,VN,201812,4,1,370543,2120 -979,FR,VN,201812,4,1,991,11 -979,FR,VN,201812,4,1,351139,6535 -979,FR,VN,201812,4,1,14216,87 -979,FR,VN,201812,4,1,29049,270 -979,FR,VN,201812,4,1,202,3 -979,FR,VN,201812,4,1,2066697,492 -979,FR,VN,201812,4,1,1550,39 -979,FR,VN,201812,4,1,288930,530 -979,FR,VN,201812,4,1,32727,285 -979,FR,VN,201812,4,1,145886,1264 -979,FR,VN,201812,4,1,12427,8 -979,FR,VN,201812,4,1,305795,1643 -979,FR,VN,201812,4,1,20138,160 -979,FR,VN,201812,4,1,1864,3 -979,FR,VN,201812,4,1,69585,204 -979,FR,VN,201812,4,1,6170,1 -979,FR,VN,201812,4,1,519,40 -979,FR,VN,201812,5,1,88,8 -979,FR,VN,201812,0,2,662,4 -979,FR,VN,201812,1,2,19379,1242 -979,FR,VN,201812,1,2,27804,194 -979,FR,VN,201812,1,2,58300,241 -979,FR,VN,201812,1,2,121207,3041 -979,FR,VN,201812,1,2,3292,671 -979,FR,VN,201812,1,2,312,20 -979,FR,VN,201812,1,2,185538,34006 -979,FR,VN,201812,1,2,143000,6514 -979,FR,VN,201812,1,2,110728,4016 -979,FR,VN,201812,1,2,18029,2147 -979,FR,VN,201812,1,2,24419,6162 -979,FR,VN,201812,1,2,77478,12648 -979,FR,VN,201812,1,2,267918,8002 -979,FR,VN,201812,1,2,109613,3303 -979,FR,VN,201812,1,2,66,25 -979,FR,VN,201812,1,2,162577,4919 -979,FR,VN,201812,3,2,82635,255 -979,FR,VN,201812,3,2,68210,62 -979,FR,VN,201812,4,2,1213589,3878 -979,FR,VN,201812,4,2,43609,80 -979,FR,VN,201812,4,2,18027,7 -979,FR,VN,201812,4,2,310451,3184 -979,FR,VN,201812,4,2,2088,225 -979,FR,VN,201812,4,2,179010,164 -979,FR,VN,201812,4,2,65000,110 -979,FR,VN,201812,4,2,132935,2008 -979,FR,VN,201812,4,2,345440,26 -979,FR,VN,201812,4,2,2430051,6283 -979,FR,VN,201812,4,2,554,0 -979,FR,VN,201812,4,2,56029,534 -979,FR,VN,201812,4,2,24190,5 -979,FR,VN,201812,4,2,21962,332 -979,FR,VN,201812,4,2,130152,21820 -979,FR,VN,201812,4,2,1170,3 -979,FR,VN,201812,4,2,179709,1900 -979,FR,VN,201812,4,2,75724,54 -979,FR,VN,201812,4,2,354326,612 -979,FR,VN,201812,5,2,4262,19 -994,FR,VN,201812,4,2,871935,25 -994,FR,VN,201812,4,2,442,0 -994,FR,VN,201812,4,2,29400,4 -999,FR,VN,201812,0,1,1411,0 -999,FR,VN,201812,1,1,2479,0 -999,FR,VN,201812,1,1,28140,0 -999,FR,VN,201812,1,1,6000,0 -999,FR,VN,201812,4,1,4767,0 -999,FR,VN,201812,4,1,264,0 -999,FR,VN,201812,4,1,2950,0 -999,FR,VN,201812,1,2,59967,4700 -999,FR,VN,201812,1,2,4985,35 -999,FR,VN,201812,1,2,9780,2400 -999,FR,VN,201812,1,2,4888,6000 -999,FR,VN,201812,1,2,3610,900 -999,FR,VN,201812,1,2,445375,148995 -999,FR,VN,201812,1,2,74479,206220 -999,FR,VN,201812,1,2,314170,222775 -999,FR,VN,201812,1,2,70470,36394 -999,FR,VN,201812,1,2,41076,71700 -999,FR,VN,201812,1,2,19700,0 -999,FR,VN,201812,1,2,2501,1100 -999,FR,VN,201812,1,2,30250,14000 -999,FR,VN,201812,1,2,34673,5420 -999,FR,VN,201812,3,2,19778,3000 -999,FR,VN,201812,3,2,4065,0 -999,FR,VN,201812,4,2,434973,1280 -999,FR,VN,201812,4,2,21661,345 -999,FR,VN,201812,4,2,6148,0 -999,FR,VN,201812,4,2,2000,0 -999,FR,VN,201812,4,2,18766,499 -999,FR,VN,201812,4,2,1,0 -999,FR,VN,201812,4,2,44149,61 -999,FR,VN,201812,4,2,1764,60 -999,FR,VN,201812,4,2,20300,80 -999,FR,VN,201812,4,2,1221,10 -999,FR,VN,201812,4,2,3688,26 -001,FR,KH,201812,4,2,1,12 -016,FR,KH,201812,1,1,280747,344800 -016,FR,KH,201812,1,1,23936,24000 -016,FR,KH,201812,1,1,45182,50000 -016,FR,KH,201812,1,1,928588,1281000 -016,FR,KH,201812,1,1,3078607,4319000 -016,FR,KH,201812,1,1,18299,25000 -016,FR,KH,201812,1,1,123320,165480 -016,FR,KH,201812,1,1,56578,65978 -016,FR,KH,201812,1,1,33434,50000 -016,FR,KH,201812,1,1,122052,143360 -016,FR,KH,201812,1,1,37444,48000 -016,FR,KH,201812,1,1,1431746,1979167 -016,FR,KH,201812,1,1,46016,100000 -016,FR,KH,201812,1,1,167193,250000 -016,FR,KH,201812,1,1,58094,100000 -016,FR,KH,201812,1,1,19163,24000 -016,FR,KH,201812,1,1,206452,350000 -016,FR,KH,201812,1,1,239823,288024 -016,FR,KH,201812,1,1,135934,167994 -035,FR,KH,201812,3,1,4446,756 -035,FR,KH,201812,4,1,244933,56628 -035,FR,KH,201812,4,1,2588,529 -039,FR,KH,201812,4,1,20926,4539 -039,FR,KH,201812,4,1,2686,557 -039,FR,KH,201812,4,2,5196,22 -055,FR,KH,201812,1,2,97872,387456 -099,FR,KH,201812,4,1,17673,3781 -099,FR,KH,201812,4,1,2165,472 -099,FR,KH,201812,1,2,18859,12700 -121,FR,KH,201812,0,2,85,4 -121,FR,KH,201812,1,2,148732,17165 -121,FR,KH,201812,1,2,195306,18741 -121,FR,KH,201812,1,2,29205,9281 -121,FR,KH,201812,1,2,90500,14152 -121,FR,KH,201812,1,2,32600,1432 -121,FR,KH,201812,1,2,64256,16955 -121,FR,KH,201812,1,2,58025,14670 -121,FR,KH,201812,1,2,78068,9468 -121,FR,KH,201812,4,2,70920,814 -121,FR,KH,201812,4,2,50956,311 -121,FR,KH,201812,4,2,95,5 -121,FR,KH,201812,4,2,3060,9 -121,FR,KH,201812,4,2,15173,378 -121,FR,KH,201812,4,2,1695,45 -121,FR,KH,201812,4,2,130355,360 -121,FR,KH,201812,4,2,4983,320 -125,FR,KH,201812,1,1,18107,840 -125,FR,KH,201812,0,2,100,1 -125,FR,KH,201812,1,2,20924,6836 -125,FR,KH,201812,1,2,50253,10292 -125,FR,KH,201812,1,2,7590,177 -125,FR,KH,201812,1,2,4900,3573 -125,FR,KH,201812,1,2,1301,312 -125,FR,KH,201812,4,2,11070,20 -128,FR,KH,201812,1,2,13210,38174 -128,FR,KH,201812,1,2,94212,132173 -128,FR,KH,201812,1,2,12270,69264 -128,FR,KH,201812,1,2,58267,140400 -131,FR,KH,201812,1,2,19583,1881 -132,FR,KH,201812,1,2,21707,5823 -132,FR,KH,201812,1,2,14676,1825 -133,FR,KH,201812,1,1,29526,978 -133,FR,KH,201812,4,1,1265,261 -133,FR,KH,201812,4,1,168,35 -133,FR,KH,201812,1,2,14840,337 -136,FR,KH,201812,0,2,35,2 -136,FR,KH,201812,1,2,2706,804 -136,FR,KH,201812,1,2,8575,2929 -139,FR,KH,201812,1,1,18628,15568 -139,FR,KH,201812,1,1,37541,31440 -139,FR,KH,201812,0,2,144,23 -139,FR,KH,201812,1,2,85818,16221 -139,FR,KH,201812,1,2,22744,4883 -139,FR,KH,201812,1,2,237189,61777 -139,FR,KH,201812,1,2,31300,13633 -139,FR,KH,201812,1,2,284787,48247 -139,FR,KH,201812,4,2,54,0 -139,FR,KH,201812,4,2,43514,2885 -141,FR,KH,201812,1,2,12790,633 -141,FR,KH,201812,4,2,2694,105 -141,FR,KH,201812,4,2,4915,764 -142,FR,KH,201812,4,2,16421,1052 -142,FR,KH,201812,4,2,46,6 -143,FR,KH,201812,1,2,9993,2144 -143,FR,KH,201812,1,2,22472,30714 -144,FR,KH,201812,1,2,2848,219 -144,FR,KH,201812,1,2,69355,12200 -144,FR,KH,201812,4,2,17231,1660 -144,FR,KH,201812,4,2,2891,451 -147,FR,KH,201812,1,2,5376,454 -147,FR,KH,201812,1,2,2485,430 -147,FR,KH,201812,1,2,15809,2536 -147,FR,KH,201812,4,2,11483,796 -147,FR,KH,201812,4,2,1730,221 -148,FR,KH,201812,4,2,852,0 -162,FR,KH,201812,1,2,180933,524940 -163,FR,KH,201812,1,1,25878,16100 -163,FR,KH,201812,1,1,19034,15600 -163,FR,KH,201812,1,2,17455,2134 -163,FR,KH,201812,1,2,15605,21353 -163,FR,KH,201812,4,2,625,117 -163,FR,KH,201812,4,2,1098,176 -164,FR,KH,201812,1,2,10772,2334 -164,FR,KH,201812,1,2,26990,5675 -164,FR,KH,201812,4,2,239,10 -179,FR,KH,201812,1,2,6930,4000 -179,FR,KH,201812,1,2,42769,16340 -551,FR,KH,201812,1,1,60364,34512 -621,FR,KH,201812,4,2,313,120 -691,FR,KH,201812,1,1,2380,1134 -691,FR,KH,201812,3,1,258,3 -819,FR,KH,201812,1,2,38480,840 -819,FR,KH,201812,1,2,4900,10025 -891,FR,KH,201812,1,2,47692,16147 -891,FR,KH,201812,4,2,1004,167 -892,FR,KH,201812,1,2,26700,20484 -892,FR,KH,201812,4,2,7,1 -893,FR,KH,201812,3,1,650,7 -893,FR,KH,201812,4,1,1970,2 -893,FR,KH,201812,0,2,619,1 -893,FR,KH,201812,1,2,376523,51970 -893,FR,KH,201812,1,2,758003,32282 -893,FR,KH,201812,1,2,180500,14169 -893,FR,KH,201812,1,2,3793,1967 -893,FR,KH,201812,1,2,1009126,119388 -893,FR,KH,201812,3,2,21682,1336 -893,FR,KH,201812,4,2,200099,2569 -893,FR,KH,201812,4,2,33704,869 -893,FR,KH,201812,4,2,93999,2032 -893,FR,KH,201812,4,2,12228,78 -893,FR,KH,201812,4,2,30632,240 -893,FR,KH,201812,4,2,42505,500 -896,FR,KH,201812,3,1,86,0 -896,FR,KH,201812,3,1,5195,12 -896,FR,KH,201812,3,1,2474,5 -896,FR,KH,201812,3,1,1066,1 -896,FR,KH,201812,3,1,9240,12 -896,FR,KH,201812,3,1,307,0 -896,FR,KH,201812,1,2,42115,14159 -896,FR,KH,201812,4,2,7535,154 -896,FR,KH,201812,4,2,45321,568 -896,FR,KH,201812,4,2,3104,7 -896,FR,KH,201812,4,2,1540,1 -910,FR,KH,201812,1,1,46578,1011 -910,FR,KH,201812,1,1,42652,15457 -910,FR,KH,201812,4,2,1962,27 -931,FR,KH,201812,1,1,20604,958 -931,FR,KH,201812,1,1,26841,1268 -931,FR,KH,201812,1,1,9893,610 -931,FR,KH,201812,3,1,1683,73 -931,FR,KH,201812,4,1,539,24 -931,FR,KH,201812,4,1,21,1 -931,FR,KH,201812,4,1,2293,85 -931,FR,KH,201812,4,1,797,10 -931,FR,KH,201812,0,2,622,5 -931,FR,KH,201812,1,2,20230,1182 -931,FR,KH,201812,4,2,43224,488 -931,FR,KH,201812,4,2,496,21 -931,FR,KH,201812,4,2,734,52 -931,FR,KH,201812,4,2,2754,20 -931,FR,KH,201812,4,2,1579,80 -931,FR,KH,201812,4,2,1564,30 -939,FR,KH,201812,1,1,5050,23 -939,FR,KH,201812,1,1,12502,1694 -939,FR,KH,201812,4,1,104,0 -939,FR,KH,201812,4,1,3245,5 -939,FR,KH,201812,4,1,101,0 -939,FR,KH,201812,1,2,14937,301 -939,FR,KH,201812,1,2,45358,2542 -939,FR,KH,201812,1,2,55674,4351 -939,FR,KH,201812,1,2,990887,51519 -939,FR,KH,201812,4,2,53662,915 -939,FR,KH,201812,4,2,37311,2440 -949,FR,KH,201812,0,1,5228,29 -949,FR,KH,201812,1,1,1129,575 -949,FR,KH,201812,3,1,2380,71 -949,FR,KH,201812,1,2,1133,373 -949,FR,KH,201812,1,2,4751,218 -949,FR,KH,201812,4,2,6435,1281 -949,FR,KH,201812,4,2,4572,327 -949,FR,KH,201812,4,2,5613,88 -952,FR,KH,201812,1,1,496,396 -952,FR,KH,201812,4,2,121,4 -961,FR,KH,201812,1,1,12662,502 -962,FR,KH,201812,1,1,4953,938 -962,FR,KH,201812,1,1,34289,6754 -962,FR,KH,201812,3,1,90,1 -962,FR,KH,201812,4,1,10,23 -962,FR,KH,201812,1,2,6302,604 -962,FR,KH,201812,1,2,124475,39328 -962,FR,KH,201812,1,2,30496,9878 -962,FR,KH,201812,4,2,8272,463 -962,FR,KH,201812,4,2,3801,9 -962,FR,KH,201812,4,2,9585,103 -962,FR,KH,201812,4,2,34813,4 -963,FR,KH,201812,0,1,12626671,686942 -963,FR,KH,201812,1,1,1039978,43379 -963,FR,KH,201812,1,1,236372,8231 -963,FR,KH,201812,1,1,125498,4214 -963,FR,KH,201812,1,1,177,1 -963,FR,KH,201812,1,1,656652,45123 -963,FR,KH,201812,1,1,214565,15044 -963,FR,KH,201812,1,1,31135,767 -963,FR,KH,201812,1,1,9138348,527286 -963,FR,KH,201812,1,1,1743180,166785 -963,FR,KH,201812,1,1,1338290,74561 -963,FR,KH,201812,1,1,176136,4807 -963,FR,KH,201812,1,1,123878,21303 -963,FR,KH,201812,1,1,48820,2819 -963,FR,KH,201812,1,1,1594886,62103 -963,FR,KH,201812,1,1,2400539,125780 -963,FR,KH,201812,1,1,34343,1593 -963,FR,KH,201812,1,1,3289214,164932 -963,FR,KH,201812,1,1,194403,13819 -963,FR,KH,201812,1,1,136431,15578 -963,FR,KH,201812,3,1,71707,1400 -963,FR,KH,201812,3,1,189,1 -963,FR,KH,201812,3,1,978,12 -963,FR,KH,201812,3,1,156,10 -963,FR,KH,201812,3,1,1045,3 -963,FR,KH,201812,3,1,66,0 -963,FR,KH,201812,3,1,129857,5285 -963,FR,KH,201812,4,1,909726,29448 -963,FR,KH,201812,4,1,98274,2099 -963,FR,KH,201812,4,1,5900,99 -963,FR,KH,201812,4,1,102207,2199 -963,FR,KH,201812,4,1,493947,10972 -963,FR,KH,201812,4,1,3088,36 -963,FR,KH,201812,4,1,58974,1832 -963,FR,KH,201812,4,1,148069,3297 -963,FR,KH,201812,4,1,8206,247 -963,FR,KH,201812,4,1,102857,3447 -963,FR,KH,201812,4,1,403391,19576 -963,FR,KH,201812,4,1,255,13 -963,FR,KH,201812,4,1,1640,98 -963,FR,KH,201812,4,1,23846,839 -963,FR,KH,201812,4,1,30844,2169 -963,FR,KH,201812,4,1,8427,160 -963,FR,KH,201812,4,1,11170,405 -963,FR,KH,201812,4,1,17701,251 -963,FR,KH,201812,0,2,117,6 -963,FR,KH,201812,1,2,1607,280 -963,FR,KH,201812,4,2,1614,16 -963,FR,KH,201812,4,2,1,20 -963,FR,KH,201812,4,2,5184,150 -963,FR,KH,201812,4,2,28014,22 -963,FR,KH,201812,4,2,3250,1 -971,FR,KH,201812,1,2,489,34 -971,FR,KH,201812,4,2,4864,334 -971,FR,KH,201812,4,2,133,9 -973,FR,KH,201812,3,1,18,0 -973,FR,KH,201812,3,1,79,0 -973,FR,KH,201812,3,1,69,0 -973,FR,KH,201812,3,1,140,0 -973,FR,KH,201812,1,2,6815,1200 -973,FR,KH,201812,1,2,9,0 -973,FR,KH,201812,1,2,2977,352 -974,FR,KH,201812,1,1,48,1 -974,FR,KH,201812,4,1,175,35 -974,FR,KH,201812,0,2,350,5 -974,FR,KH,201812,1,2,5,2 -974,FR,KH,201812,4,2,2597,266 -975,FR,KH,201812,1,2,1615,121 -976,FR,KH,201812,1,1,513,410 -976,FR,KH,201812,3,1,934,9 -979,FR,KH,201812,1,1,13650,2644 -979,FR,KH,201812,1,1,8069,909 -979,FR,KH,201812,1,1,77,25 -979,FR,KH,201812,3,1,1126,30 -979,FR,KH,201812,3,1,1871,3 -979,FR,KH,201812,4,1,3808,6 -979,FR,KH,201812,4,1,17704,19 -979,FR,KH,201812,4,1,16468,31 -979,FR,KH,201812,0,2,917,11 -979,FR,KH,201812,1,2,310,46 -979,FR,KH,201812,1,2,221702,1000 -979,FR,KH,201812,1,2,41267,1896 -979,FR,KH,201812,1,2,8778,2279 -979,FR,KH,201812,1,2,13082,6300 -979,FR,KH,201812,4,2,3563,12 -979,FR,KH,201812,4,2,1040,0 -979,FR,KH,201812,4,2,1572,54 -979,FR,KH,201812,4,2,466488,3200 -979,FR,KH,201812,4,2,6304,112 -979,FR,KH,201812,4,2,11664,190 -979,FR,KH,201812,4,2,4490,4 -999,FR,KH,201812,3,1,122,0 -999,FR,KH,201812,4,1,63,0 -999,FR,KH,201812,4,1,5600,0 -999,FR,KH,201812,1,2,48892,4570 -999,FR,KH,201812,1,2,166360,28048 -999,FR,KH,201812,1,2,18252,12360 -999,FR,KH,201812,1,2,930,0 -999,FR,KH,201812,3,2,9700,0 -999,FR,KH,201812,4,2,5318,1994 -999,FR,KH,201812,4,2,75,10 -999,FR,KH,201812,4,2,2526,210 -001,FR,ID,201812,4,2,651152,1224 -031,FR,ID,201812,4,1,4933,543 -031,FR,ID,201812,4,1,3078,339 -031,FR,ID,201812,4,1,44298,6275 -035,FR,ID,201812,1,1,36996,25400 -035,FR,ID,201812,1,1,7220,12580 -035,FR,ID,201812,1,1,85392,64400 -035,FR,ID,201812,4,1,37256,5414 -035,FR,ID,201812,4,1,125823,18411 -035,FR,ID,201812,4,1,153591,24879 -043,FR,ID,201812,1,1,41545,23799 -049,FR,ID,201812,4,2,107,1 -051,FR,ID,201812,1,2,48979,132820 -055,FR,ID,201812,1,2,58656,264820 -056,FR,ID,201812,1,1,26164,25688 -056,FR,ID,201812,1,1,377819,189700 -056,FR,ID,201812,1,1,26040,13345 -056,FR,ID,201812,1,1,62590,35211 -056,FR,ID,201812,1,1,27164,18157 -056,FR,ID,201812,1,2,108317,128700 -056,FR,ID,201812,1,2,39383,44280 -056,FR,ID,201812,1,2,34690,72200 -056,FR,ID,201812,1,2,24679,23780 -057,FR,ID,201812,1,1,74311,115000 -091,FR,ID,201812,1,2,12858,44455 -091,FR,ID,201812,1,2,10281,25396 -091,FR,ID,201812,1,2,32752,63334 -092,FR,ID,201812,0,1,547250,423360 -092,FR,ID,201812,1,1,618830,476280 -092,FR,ID,201812,1,1,331685,201328 -092,FR,ID,201812,1,1,237126,181440 -092,FR,ID,201812,1,1,26585,20160 -092,FR,ID,201812,1,1,522996,287674 -092,FR,ID,201812,1,1,2946433,2069529 -092,FR,ID,201812,1,1,84674,68040 -092,FR,ID,201812,1,1,464322,339025 -092,FR,ID,201812,1,2,834554,494363 -099,FR,ID,201812,1,1,856,425 -099,FR,ID,201812,1,1,569,303 -099,FR,ID,201812,1,1,242420,40000 -099,FR,ID,201812,1,1,38374,16021 -099,FR,ID,201812,1,1,784522,556554 -099,FR,ID,201812,1,1,24065,6016 -099,FR,ID,201812,3,1,92,11 -099,FR,ID,201812,4,1,453,18 -099,FR,ID,201812,4,1,3723,26 -099,FR,ID,201812,1,2,19023,600 -099,FR,ID,201812,1,2,51216,176100 -099,FR,ID,201812,1,2,294220,35200 -099,FR,ID,201812,1,2,33171,10000 -099,FR,ID,201812,1,2,28912,32430 -099,FR,ID,201812,1,2,101352,26600 -099,FR,ID,201812,3,2,959,28 -099,FR,ID,201812,4,2,3464,165 -099,FR,ID,201812,4,2,110,5 -121,FR,ID,201812,4,2,456,9 -121,FR,ID,201812,4,2,2387,179 -121,FR,ID,201812,4,2,14562,898 -121,FR,ID,201812,4,2,17916,405 -121,FR,ID,201812,4,2,9324,630 -125,FR,ID,201812,4,2,5,1 -131,FR,ID,201812,0,1,126674,20965 -131,FR,ID,201812,4,2,1886,63 -132,FR,ID,201812,0,2,60,3 -132,FR,ID,201812,1,2,443100,69965 -132,FR,ID,201812,1,2,63075,16000 -132,FR,ID,201812,3,2,1940,106 -132,FR,ID,201812,3,2,44085,6912 -132,FR,ID,201812,3,2,50698,7949 -132,FR,ID,201812,3,2,39922,3858 -132,FR,ID,201812,4,2,1630,244 -132,FR,ID,201812,4,2,1100,20 -133,FR,ID,201812,1,1,412619,98760 -133,FR,ID,201812,1,1,81393,19000 -133,FR,ID,201812,1,1,81393,10000 -133,FR,ID,201812,3,1,2125,19 -133,FR,ID,201812,4,1,254758,500 -133,FR,ID,201812,4,1,1668,16 -133,FR,ID,201812,4,1,212,45 -133,FR,ID,201812,1,2,12929,202 -133,FR,ID,201812,1,2,30211,17357 -133,FR,ID,201812,3,2,417,28 -134,FR,ID,201812,0,1,68348,24760 -134,FR,ID,201812,1,2,589050,138600 -135,FR,ID,201812,1,2,60021,18810 -135,FR,ID,201812,1,2,458,5 -135,FR,ID,201812,4,2,13863,960 -136,FR,ID,201812,1,2,18570,13406 -136,FR,ID,201812,1,2,14083,8000 -136,FR,ID,201812,3,2,1991,84 -136,FR,ID,201812,3,2,9186,774 -139,FR,ID,201812,1,1,34770,19200 -139,FR,ID,201812,1,1,27613,16001 -139,FR,ID,201812,1,1,3224,1620 -139,FR,ID,201812,1,1,74135,59208 -139,FR,ID,201812,1,1,105654,54000 -139,FR,ID,201812,1,1,255433,166668 -139,FR,ID,201812,3,1,149,8 -139,FR,ID,201812,3,1,252,4 -139,FR,ID,201812,4,1,1578,50 -139,FR,ID,201812,1,2,26750,5300 -139,FR,ID,201812,1,2,24277,1880 -139,FR,ID,201812,1,2,46014,15350 -139,FR,ID,201812,1,2,32236,14095 -139,FR,ID,201812,4,2,45140,1257 -139,FR,ID,201812,4,2,5095,475 -139,FR,ID,201812,4,2,4536,520 -139,FR,ID,201812,4,2,4017,574 -139,FR,ID,201812,4,2,10,0 -139,FR,ID,201812,4,2,26308,3150 -141,FR,ID,201812,1,1,115784,17556 -141,FR,ID,201812,1,1,164891,25430 -141,FR,ID,201812,1,2,194054,5562 -142,FR,ID,201812,0,1,340823,42100 -142,FR,ID,201812,1,1,133616,27812 -142,FR,ID,201812,1,1,114235,19672 -142,FR,ID,201812,1,1,551396,75420 -142,FR,ID,201812,1,1,46000,10000 -142,FR,ID,201812,1,1,340231,54474 -142,FR,ID,201812,1,1,25854,7232 -142,FR,ID,201812,1,1,233231,21000 -142,FR,ID,201812,1,1,390910,112366 -142,FR,ID,201812,1,1,89144,15690 -142,FR,ID,201812,3,1,1571,52 -142,FR,ID,201812,3,1,16486,206 -142,FR,ID,201812,4,1,984,1 -142,FR,ID,201812,4,1,25689,1303 -142,FR,ID,201812,4,1,21615,292 -142,FR,ID,201812,4,1,12255,300 -142,FR,ID,201812,4,1,5585,40 -142,FR,ID,201812,4,1,5421,45 -144,FR,ID,201812,1,2,3130862,2606900 -144,FR,ID,201812,1,2,104490,99950 -144,FR,ID,201812,1,2,48427,50000 -144,FR,ID,201812,1,2,43326,18000 -144,FR,ID,201812,1,2,60811,50000 -144,FR,ID,201812,1,2,382987,349950 -144,FR,ID,201812,4,2,1246,200 -144,FR,ID,201812,4,2,7007,938 -145,FR,ID,201812,1,2,38221,32760 -147,FR,ID,201812,1,1,42418,4200 -147,FR,ID,201812,0,2,45,2 -147,FR,ID,201812,1,2,62737,9520 -147,FR,ID,201812,1,2,100,24 -148,FR,ID,201812,0,1,34820,3840 -148,FR,ID,201812,1,1,11314,1260 -148,FR,ID,201812,1,1,313189,16224 -148,FR,ID,201812,4,2,5794,4 -162,FR,ID,201812,1,2,66203,200540 -163,FR,ID,201812,1,2,9434,2475 -163,FR,ID,201812,3,2,3110,297 -164,FR,ID,201812,1,1,9246,18003 -164,FR,ID,201812,1,1,48836,24120 -164,FR,ID,201812,1,1,178733,190133 -164,FR,ID,201812,1,1,144965,146915 -164,FR,ID,201812,3,1,80,100 -164,FR,ID,201812,4,1,777,12 -164,FR,ID,201812,1,2,122920,40800 -164,FR,ID,201812,1,2,95332,18592 -164,FR,ID,201812,1,2,62251,22120 -164,FR,ID,201812,1,2,37421,7485 -164,FR,ID,201812,3,2,969,80 -166,FR,ID,201812,1,1,85736,7000 -179,FR,ID,201812,1,2,1393121,1194365 -179,FR,ID,201812,1,2,19481,20000 -179,FR,ID,201812,1,2,39489,177340 -179,FR,ID,201812,1,2,954188,849660 -179,FR,ID,201812,1,2,68954,23575 -181,FR,ID,201812,1,1,562,279 -181,FR,ID,201812,1,2,22836,41360 -182,FR,ID,201812,0,1,2272895,3406396 -182,FR,ID,201812,1,1,4733610,8082580 -182,FR,ID,201812,1,1,73684,96000 -182,FR,ID,201812,1,1,71740,104000 -182,FR,ID,201812,1,1,77915,89020 -182,FR,ID,201812,1,1,239689,100110 -182,FR,ID,201812,3,1,719,120 -182,FR,ID,201812,3,1,2114,370 -182,FR,ID,201812,4,1,169,2 -182,FR,ID,201812,8,1,246606,494638 -182,FR,ID,201812,1,2,5733,760 -182,FR,ID,201812,1,2,12429,747 -182,FR,ID,201812,1,2,378071,358280 -182,FR,ID,201812,4,2,2824,275 -182,FR,ID,201812,4,2,214,20 -325,FR,ID,201812,1,2,7362,4676 -341,FR,ID,201812,1,2,38409,13230 -341,FR,ID,201812,1,2,45397,18800 -341,FR,ID,201812,1,2,82794,45721 -341,FR,ID,201812,1,2,164494,37343 -341,FR,ID,201812,1,2,44437,10962 -341,FR,ID,201812,1,2,4542,2600 -341,FR,ID,201812,3,2,50147,32000 -341,FR,ID,201812,4,2,237,4 -349,FR,ID,201812,1,2,24605,14000 -349,FR,ID,201812,4,2,541,160 -451,FR,ID,201812,1,2,168130,178660 -451,FR,ID,201812,1,2,44046,48940 -462,FR,ID,201812,1,2,130805,134900 -532,FR,ID,201812,1,2,21397,4789 -532,FR,ID,201812,4,2,3600,100 -533,FR,ID,201812,1,2,60428,5134 -533,FR,ID,201812,1,2,4290,990 -533,FR,ID,201812,4,2,167,2 -536,FR,ID,201812,1,1,52818,16974 -536,FR,ID,201812,3,2,12440,1640 -536,FR,ID,201812,4,2,260,143 -551,FR,ID,201812,1,1,13787,4682 -551,FR,ID,201812,1,2,189203,40385 -551,FR,ID,201812,1,2,41307,2537 -551,FR,ID,201812,1,2,307,20 -551,FR,ID,201812,4,2,7238,60 -551,FR,ID,201812,4,2,6045,1 -552,FR,ID,201812,1,1,1092,181 -552,FR,ID,201812,4,1,702,61 -552,FR,ID,201812,1,2,127790,20938 -552,FR,ID,201812,1,2,1614,341 -552,FR,ID,201812,4,2,216,8 -552,FR,ID,201812,4,2,1903,243 -552,FR,ID,201812,4,2,31,3 -568,FR,ID,201812,1,2,900,2 -568,FR,ID,201812,1,2,48911,6473 -568,FR,ID,201812,1,2,443683,21748 -568,FR,ID,201812,3,2,14912,4000 -568,FR,ID,201812,4,2,2505,34 -568,FR,ID,201812,4,2,4069,71 -568,FR,ID,201812,4,2,2091,81 -568,FR,ID,201812,4,2,1762,128 -568,FR,ID,201812,4,2,3795,787 -611,FR,ID,201812,1,2,1586,2400 -611,FR,ID,201812,1,2,13343,13250 -612,FR,ID,201812,1,2,22150,125000 -613,FR,ID,201812,1,2,7559,1265 -614,FR,ID,201812,1,1,37,8 -614,FR,ID,201812,1,2,10300,720 -614,FR,ID,201812,1,2,95832,518140 -621,FR,ID,201812,1,2,41955,1956 -634,FR,ID,201812,3,2,8733,120000 -639,FR,ID,201812,4,2,150,50 -691,FR,ID,201812,1,1,8650,16516 -691,FR,ID,201812,1,1,1628,622 -691,FR,ID,201812,1,1,2708,2334 -691,FR,ID,201812,1,1,1808,382 -691,FR,ID,201812,1,1,1277,829 -691,FR,ID,201812,1,1,187,170 -691,FR,ID,201812,1,1,15,8 -691,FR,ID,201812,1,1,148,50 -691,FR,ID,201812,1,1,30527,17539 -691,FR,ID,201812,1,1,75281,89123 -691,FR,ID,201812,1,1,1994,1680 -691,FR,ID,201812,1,1,641,4193 -691,FR,ID,201812,1,1,58282,49432 -691,FR,ID,201812,1,1,2630,4324 -691,FR,ID,201812,1,1,29406,40300 -691,FR,ID,201812,1,1,173701,200542 -691,FR,ID,201812,1,1,419,338 -691,FR,ID,201812,1,1,434,899 -691,FR,ID,201812,1,1,2017,2451 -691,FR,ID,201812,1,1,68,9 -691,FR,ID,201812,3,1,470,15 -691,FR,ID,201812,4,1,53,5 -691,FR,ID,201812,1,2,30730,39154 -691,FR,ID,201812,1,2,32587,41752 -691,FR,ID,201812,4,2,50,0 -692,FR,ID,201812,1,1,7640,55102 -692,FR,ID,201812,1,1,13842,53154 -692,FR,ID,201812,1,1,26321,103204 -692,FR,ID,201812,1,1,47,7 -813,FR,ID,201812,1,2,18732,11250 -813,FR,ID,201812,1,2,17818,10800 -819,FR,ID,201812,0,1,128951,4800 -819,FR,ID,201812,1,1,113850,99000 -819,FR,ID,201812,1,1,522064,114080 -819,FR,ID,201812,1,1,67203,32348 -819,FR,ID,201812,1,1,77569,43060 -819,FR,ID,201812,1,1,622356,32000 -819,FR,ID,201812,1,1,59864,48000 -819,FR,ID,201812,3,1,125,19 -819,FR,ID,201812,3,1,4293,205 -819,FR,ID,201812,4,1,29626,50 -819,FR,ID,201812,1,2,308461,3940 -819,FR,ID,201812,1,2,142000,4200 -819,FR,ID,201812,1,2,16240,869 -819,FR,ID,201812,1,2,644685,50935 -819,FR,ID,201812,1,2,80212,62400 -819,FR,ID,201812,1,2,1121580,10500 -819,FR,ID,201812,1,2,2735,3000 -819,FR,ID,201812,1,2,48050,12600 -819,FR,ID,201812,1,2,245330,110040 -819,FR,ID,201812,1,2,40106,31200 -819,FR,ID,201812,1,2,40707,8550 -819,FR,ID,201812,1,2,1716,550 -819,FR,ID,201812,4,2,34887,1022 -819,FR,ID,201812,4,2,3330,150 -819,FR,ID,201812,4,2,154161,72 -819,FR,ID,201812,4,2,38163,1640 -820,FR,ID,201812,1,2,145236,10000 -820,FR,ID,201812,1,2,102945,160000 -820,FR,ID,201812,1,2,58347,99000 -841,FR,ID,201812,1,2,1417810,2094346 -841,FR,ID,201812,1,2,351458,514647 -841,FR,ID,201812,1,2,1755136,2585930 -841,FR,ID,201812,1,2,353004,521346 -842,FR,ID,201812,1,2,249145,3312860 -842,FR,ID,201812,1,2,17304,97960 -842,FR,ID,201812,1,2,33172,489900 -842,FR,ID,201812,1,2,68884,666460 -842,FR,ID,201812,1,2,77877,958700 -891,FR,ID,201812,1,1,205,52 -891,FR,ID,201812,1,1,10554,5803 -891,FR,ID,201812,1,1,8897,20000 -891,FR,ID,201812,1,1,7555,362 -891,FR,ID,201812,1,1,30991,19560 -891,FR,ID,201812,4,1,1200,48 -891,FR,ID,201812,1,2,345629,32755 -891,FR,ID,201812,1,2,19647,495 -891,FR,ID,201812,1,2,2199,998 -891,FR,ID,201812,1,2,6435,400 -891,FR,ID,201812,1,2,899967,1117002 -891,FR,ID,201812,1,2,4149,1052 -891,FR,ID,201812,1,2,11046,25880 -891,FR,ID,201812,1,2,19707,138520 -891,FR,ID,201812,1,2,342172,114800 -891,FR,ID,201812,1,2,18766,4544 -891,FR,ID,201812,1,2,10562,11000 -891,FR,ID,201812,3,2,779,98 -891,FR,ID,201812,4,2,34024,3280 -891,FR,ID,201812,4,2,730,1 -891,FR,ID,201812,4,2,4705,200 -891,FR,ID,201812,4,2,26967,1220 -892,FR,ID,201812,1,2,20503,2294 -892,FR,ID,201812,1,2,43350,16950 -892,FR,ID,201812,1,2,23700,11000 -892,FR,ID,201812,1,2,3990,3300 -892,FR,ID,201812,1,2,26777,18700 -892,FR,ID,201812,4,2,3416,178 -892,FR,ID,201812,4,2,1831,225 -892,FR,ID,201812,4,2,2566,43 -892,FR,ID,201812,4,2,14900,320 -892,FR,ID,201812,4,2,1226,63 -892,FR,ID,201812,4,2,1651,160 -893,FR,ID,201812,1,1,147966,24954 -893,FR,ID,201812,1,1,457148,10000 -893,FR,ID,201812,1,1,194,49 -893,FR,ID,201812,1,1,21511,185 -893,FR,ID,201812,1,1,613814,21800 -893,FR,ID,201812,1,1,214,69 -893,FR,ID,201812,1,1,536,196 -893,FR,ID,201812,1,1,11,1 -893,FR,ID,201812,1,1,18,2 -893,FR,ID,201812,1,1,210,98 -893,FR,ID,201812,3,1,7333,156 -893,FR,ID,201812,3,1,12943,190 -893,FR,ID,201812,3,1,450,10 -893,FR,ID,201812,4,1,69398,301 -893,FR,ID,201812,4,1,731,15 -893,FR,ID,201812,4,1,14,1 -893,FR,ID,201812,4,1,29788,189 -893,FR,ID,201812,4,1,289361,1201 -893,FR,ID,201812,4,1,194114,954 -893,FR,ID,201812,0,2,160,1 -893,FR,ID,201812,1,2,353846,12673 -893,FR,ID,201812,1,2,314726,12068 -893,FR,ID,201812,1,2,14473,2247 -893,FR,ID,201812,1,2,79199,840 -893,FR,ID,201812,1,2,1487,100 -893,FR,ID,201812,1,2,88482,3864 -893,FR,ID,201812,1,2,271650,88921 -893,FR,ID,201812,1,2,312740,1878 -893,FR,ID,201812,1,2,804503,77632 -893,FR,ID,201812,1,2,26807,2755 -893,FR,ID,201812,1,2,251491,9325 -893,FR,ID,201812,1,2,95704,28414 -893,FR,ID,201812,1,2,237001,11115 -893,FR,ID,201812,1,2,36517,10000 -893,FR,ID,201812,1,2,612356,39554 -893,FR,ID,201812,1,2,416488,19125 -893,FR,ID,201812,3,2,181383,1920 -893,FR,ID,201812,3,2,66116,3268 -893,FR,ID,201812,3,2,27250,1548 -893,FR,ID,201812,3,2,203592,40548 -893,FR,ID,201812,4,2,593101,8819 -893,FR,ID,201812,4,2,1391,0 -893,FR,ID,201812,4,2,8845,51 -893,FR,ID,201812,4,2,192144,5523 -893,FR,ID,201812,4,2,245458,8362 -893,FR,ID,201812,4,2,263818,1694 -893,FR,ID,201812,4,2,68097,950 -893,FR,ID,201812,4,2,327274,4624 -893,FR,ID,201812,4,2,42614,1078 -893,FR,ID,201812,4,2,22485,169 -893,FR,ID,201812,4,2,2772,80 -893,FR,ID,201812,4,2,2743,400 -893,FR,ID,201812,4,2,1986,60 -893,FR,ID,201812,4,2,220054,916 -893,FR,ID,201812,4,2,13145,380 -893,FR,ID,201812,4,2,3461,3 -894,FR,ID,201812,4,2,1372333,9640 -896,FR,ID,201812,1,1,28626,20060 -896,FR,ID,201812,1,1,55360,28550 -896,FR,ID,201812,4,1,428,0 -896,FR,ID,201812,4,1,5704,36 -896,FR,ID,201812,1,2,546471,33208 -896,FR,ID,201812,1,2,3187,2400 -896,FR,ID,201812,1,2,19637,5200 -896,FR,ID,201812,1,2,207427,83485 -896,FR,ID,201812,1,2,26116,6240 -896,FR,ID,201812,1,2,110431,63498 -896,FR,ID,201812,1,2,712128,128400 -896,FR,ID,201812,1,2,4254,1084 -896,FR,ID,201812,1,2,73035,19950 -896,FR,ID,201812,4,2,107106,4468 -896,FR,ID,201812,4,2,2732,10 -896,FR,ID,201812,4,2,236,0 -896,FR,ID,201812,4,2,89386,279 -896,FR,ID,201812,4,2,23176,556 -896,FR,ID,201812,4,2,223,10 -896,FR,ID,201812,4,2,116566,1117 -896,FR,ID,201812,4,2,406,0 -896,FR,ID,201812,4,2,3945,173 -896,FR,ID,201812,4,2,2527,72 -896,FR,ID,201812,4,2,103898,2552 -896,FR,ID,201812,4,2,7634,93 -910,FR,ID,201812,0,1,61440,4903 -910,FR,ID,201812,1,1,51713,4420 -910,FR,ID,201812,1,1,27218,1359 -910,FR,ID,201812,1,1,7314,549 -910,FR,ID,201812,1,1,37926,1834 -910,FR,ID,201812,1,1,1498612,189748 -910,FR,ID,201812,1,1,1628,2100 -910,FR,ID,201812,1,1,23041,264 -910,FR,ID,201812,1,1,44066,734 -910,FR,ID,201812,1,1,2019,65 -910,FR,ID,201812,1,1,174873,6644 -910,FR,ID,201812,1,1,15930,715 -910,FR,ID,201812,3,1,46987,180 -910,FR,ID,201812,3,1,14227,642 -910,FR,ID,201812,4,1,2033,65 -910,FR,ID,201812,4,1,141,6 -910,FR,ID,201812,4,1,50000,28 -910,FR,ID,201812,4,1,207,8 -910,FR,ID,201812,4,1,2844,183 -910,FR,ID,201812,4,1,149,2 -910,FR,ID,201812,1,2,2094714,256269 -910,FR,ID,201812,1,2,13850,1017 -910,FR,ID,201812,1,2,25355,450 -910,FR,ID,201812,1,2,73247,3476 -910,FR,ID,201812,1,2,50486,153216 -910,FR,ID,201812,1,2,470876,52319 -910,FR,ID,201812,1,2,42072,127680 -910,FR,ID,201812,1,2,373395,74898 -910,FR,ID,201812,1,2,8760,17600 -910,FR,ID,201812,2,2,40000,5560 -910,FR,ID,201812,3,2,1374,51 -910,FR,ID,201812,4,2,227817,5315 -910,FR,ID,201812,4,2,3042,2 -910,FR,ID,201812,4,2,101809,77 -910,FR,ID,201812,4,2,40200,190 -910,FR,ID,201812,4,2,70258,201 -910,FR,ID,201812,4,2,168,0 -910,FR,ID,201812,4,2,2126153,1307 -910,FR,ID,201812,4,2,3066,7 -910,FR,ID,201812,4,2,60096,14320 -910,FR,ID,201812,4,2,15300,12 -910,FR,ID,201812,4,2,1071,1 -910,FR,ID,201812,9,2,35585006,25900 -920,FR,ID,201812,1,1,264232,37604 -920,FR,ID,201812,1,2,806,171 -920,FR,ID,201812,1,2,3301,105 -920,FR,ID,201812,1,2,268000,6659 -920,FR,ID,201812,4,2,201,6 -920,FR,ID,201812,4,2,4814,470 -931,FR,ID,201812,0,1,293722,7216 -931,FR,ID,201812,1,1,3694,343 -931,FR,ID,201812,1,1,49588,484 -931,FR,ID,201812,1,1,7540,395 -931,FR,ID,201812,1,1,34690,964 -931,FR,ID,201812,1,1,141789,2490 -931,FR,ID,201812,1,1,77679,650 -931,FR,ID,201812,1,1,2572659,378619 -931,FR,ID,201812,1,1,101522,18200 -931,FR,ID,201812,1,1,286245,72796 -931,FR,ID,201812,1,1,370442,32109 -931,FR,ID,201812,1,1,6129029,162513 -931,FR,ID,201812,1,1,3595206,84672 -931,FR,ID,201812,1,1,35626,1077 -931,FR,ID,201812,3,1,379756,3203 -931,FR,ID,201812,3,1,271,8 -931,FR,ID,201812,3,1,183,0 -931,FR,ID,201812,4,1,261253,14385 -931,FR,ID,201812,4,1,80,13 -931,FR,ID,201812,4,1,22059,139 -931,FR,ID,201812,4,1,150,0 -931,FR,ID,201812,4,1,77609,223 -931,FR,ID,201812,4,1,107549,15 -931,FR,ID,201812,4,1,66040,59 -931,FR,ID,201812,4,1,296826,8471 -931,FR,ID,201812,4,1,3781381,27526 -931,FR,ID,201812,4,1,259,7 -931,FR,ID,201812,0,2,158,2 -931,FR,ID,201812,1,2,2165067,82589 -931,FR,ID,201812,1,2,20150,500 -931,FR,ID,201812,1,2,30692,1934 -931,FR,ID,201812,1,2,219154,7248 -931,FR,ID,201812,1,2,8361,300 -931,FR,ID,201812,1,2,2109957,90574 -931,FR,ID,201812,1,2,33791,2173 -931,FR,ID,201812,1,2,340819,30996 -931,FR,ID,201812,1,2,60519,9123 -931,FR,ID,201812,3,2,80361,2242 -931,FR,ID,201812,3,2,10438,170 -931,FR,ID,201812,4,2,18264288,98474 -931,FR,ID,201812,4,2,18838,287 -931,FR,ID,201812,4,2,100880,366 -931,FR,ID,201812,4,2,26950,700 -931,FR,ID,201812,4,2,29901,62 -931,FR,ID,201812,4,2,262280,3145 -931,FR,ID,201812,4,2,11000,8 -931,FR,ID,201812,4,2,264994,2069 -931,FR,ID,201812,4,2,7213,366 -931,FR,ID,201812,4,2,7783,78 -931,FR,ID,201812,4,2,271754,5272 -931,FR,ID,201812,4,2,23917,84 -931,FR,ID,201812,4,2,81463,1318 -931,FR,ID,201812,4,2,69500,218 -931,FR,ID,201812,4,2,27164,406 -931,FR,ID,201812,4,2,1489,4 -931,FR,ID,201812,4,2,86520,10370 -931,FR,ID,201812,4,2,21864,32 -931,FR,ID,201812,4,2,107142,153 -931,FR,ID,201812,5,2,642,9 -939,FR,ID,201812,0,1,7,0 -939,FR,ID,201812,1,1,16993,1087 -939,FR,ID,201812,1,1,2065,602 -939,FR,ID,201812,1,1,42563,1708 -939,FR,ID,201812,1,1,606904,27360 -939,FR,ID,201812,1,1,79629,13504 -939,FR,ID,201812,1,1,927147,134670 -939,FR,ID,201812,3,1,121842,8529 -939,FR,ID,201812,3,1,993,108 -939,FR,ID,201812,3,1,494,5 -939,FR,ID,201812,4,1,1085415,2529 -939,FR,ID,201812,4,1,26882,103 -939,FR,ID,201812,4,1,28629,85 -939,FR,ID,201812,4,1,1364,90 -939,FR,ID,201812,4,1,15802,130 -939,FR,ID,201812,4,1,11419,46 -939,FR,ID,201812,1,2,1002523,53513 -939,FR,ID,201812,1,2,33096,20646 -939,FR,ID,201812,1,2,44317,1550 -939,FR,ID,201812,1,2,27144,1835 -939,FR,ID,201812,1,2,181658,4883 -939,FR,ID,201812,1,2,87142,2875 -939,FR,ID,201812,1,2,1614,0 -939,FR,ID,201812,1,2,8816,774 -939,FR,ID,201812,1,2,30490,340 -939,FR,ID,201812,1,2,15462,188 -939,FR,ID,201812,1,2,222565,49150 -939,FR,ID,201812,1,2,1717182,111090 -939,FR,ID,201812,1,2,184160,4194 -939,FR,ID,201812,1,2,1188490,62944 -939,FR,ID,201812,1,2,893498,49515 -939,FR,ID,201812,1,2,57322,5616 -939,FR,ID,201812,3,2,272962,4753 -939,FR,ID,201812,4,2,15974277,34131 -939,FR,ID,201812,4,2,400535,907 -939,FR,ID,201812,4,2,17235,12 -939,FR,ID,201812,4,2,60179,525 -939,FR,ID,201812,4,2,660,15 -939,FR,ID,201812,4,2,319993,4736 -939,FR,ID,201812,4,2,69869,1189 -939,FR,ID,201812,4,2,12951,7 -939,FR,ID,201812,4,2,10197,858 -939,FR,ID,201812,4,2,7053,164 -939,FR,ID,201812,4,2,1431,70 -939,FR,ID,201812,4,2,9568,296 -939,FR,ID,201812,4,2,15952,108 -939,FR,ID,201812,4,2,335058,3781 -939,FR,ID,201812,4,2,6138,51 -939,FR,ID,201812,4,2,69553,1395 -939,FR,ID,201812,4,2,27541,268 -939,FR,ID,201812,4,2,1950,9 -939,FR,ID,201812,4,2,743144,43160 -939,FR,ID,201812,4,2,1155,50 -939,FR,ID,201812,4,2,5803,213 -939,FR,ID,201812,4,2,12653,78 -941,FR,ID,201812,1,1,21661,1285 -941,FR,ID,201812,4,1,7281,338 -941,FR,ID,201812,1,2,317,4 -949,FR,ID,201812,0,1,105,1 -949,FR,ID,201812,1,1,12248,2219 -949,FR,ID,201812,1,1,11726,1086 -949,FR,ID,201812,1,1,345,82 -949,FR,ID,201812,1,1,1100,216 -949,FR,ID,201812,1,1,3619,1133 -949,FR,ID,201812,1,1,968,357 -949,FR,ID,201812,1,1,123,40 -949,FR,ID,201812,1,1,728,227 -949,FR,ID,201812,1,1,15525,886 -949,FR,ID,201812,1,1,1322,448 -949,FR,ID,201812,1,1,36268,5443 -949,FR,ID,201812,1,1,2527,442 -949,FR,ID,201812,1,1,198,70 -949,FR,ID,201812,1,1,2252,147 -949,FR,ID,201812,1,1,92,65 -949,FR,ID,201812,1,1,52588,14852 -949,FR,ID,201812,1,1,334,100 -949,FR,ID,201812,1,1,6188,1823 -949,FR,ID,201812,1,1,36873,3652 -949,FR,ID,201812,1,1,1296,39 -949,FR,ID,201812,1,1,21,0 -949,FR,ID,201812,1,1,3174,471 -949,FR,ID,201812,1,1,72794,18677 -949,FR,ID,201812,1,1,1063,156 -949,FR,ID,201812,3,1,3288,211 -949,FR,ID,201812,3,1,3015,443 -949,FR,ID,201812,3,1,1270,6 -949,FR,ID,201812,3,1,2406,29 -949,FR,ID,201812,4,1,18124,183 -949,FR,ID,201812,4,1,2908,46 -949,FR,ID,201812,4,1,3764,256 -949,FR,ID,201812,4,1,1618,23 -949,FR,ID,201812,4,1,610,1 -949,FR,ID,201812,4,1,4496,5 -949,FR,ID,201812,4,1,1195,3 -949,FR,ID,201812,4,1,2459,115 -949,FR,ID,201812,4,1,7,0 -949,FR,ID,201812,4,1,2453,300 -949,FR,ID,201812,4,1,345,11 -949,FR,ID,201812,1,2,49977,3352 -949,FR,ID,201812,1,2,15929,2555 -949,FR,ID,201812,1,2,14249,1397 -949,FR,ID,201812,1,2,19866,332 -949,FR,ID,201812,1,2,165640,20613 -949,FR,ID,201812,1,2,271788,110002 -949,FR,ID,201812,1,2,254325,21316 -949,FR,ID,201812,3,2,47512,1940 -949,FR,ID,201812,4,2,296241,3502 -949,FR,ID,201812,4,2,16337,57 -949,FR,ID,201812,4,2,2610,200 -949,FR,ID,201812,4,2,26363,3512 -949,FR,ID,201812,4,2,5699,483 -949,FR,ID,201812,4,2,895,20 -949,FR,ID,201812,4,2,131986,990 -949,FR,ID,201812,4,2,5241,40 -949,FR,ID,201812,4,2,55847,1770 -949,FR,ID,201812,4,2,5390,27 -949,FR,ID,201812,4,2,5029,12 -951,FR,ID,201812,1,1,9269,1592 -951,FR,ID,201812,1,1,11939,8444 -951,FR,ID,201812,1,1,5921,1263 -951,FR,ID,201812,1,1,149,34 -951,FR,ID,201812,1,1,185,100 -951,FR,ID,201812,1,1,10768,3061 -951,FR,ID,201812,1,1,11223,1896 -951,FR,ID,201812,1,1,364,90 -951,FR,ID,201812,1,1,8184,1151 -951,FR,ID,201812,1,1,5112,628 -951,FR,ID,201812,1,1,19631,5229 -951,FR,ID,201812,1,1,2774,586 -951,FR,ID,201812,1,1,1863,470 -951,FR,ID,201812,1,1,56221,9859 -951,FR,ID,201812,1,1,156,30 -951,FR,ID,201812,3,1,88,12 -951,FR,ID,201812,4,2,581,27 -952,FR,ID,201812,0,1,4179,1237 -952,FR,ID,201812,1,1,2101,2229 -952,FR,ID,201812,1,1,930,362 -952,FR,ID,201812,1,1,1235,248 -952,FR,ID,201812,1,1,1432,696 -952,FR,ID,201812,1,1,256,83 -952,FR,ID,201812,1,1,168,53 -952,FR,ID,201812,1,1,76,40 -952,FR,ID,201812,1,1,537,181 -952,FR,ID,201812,1,1,1002,657 -952,FR,ID,201812,1,1,228055,100145 -952,FR,ID,201812,1,1,322,45 -952,FR,ID,201812,1,1,136,215 -952,FR,ID,201812,1,1,9701,15483 -952,FR,ID,201812,1,1,42,9 -952,FR,ID,201812,1,1,66043,18123 -952,FR,ID,201812,1,1,18527,12312 -952,FR,ID,201812,1,1,95792,32669 -952,FR,ID,201812,1,1,31949,48288 -952,FR,ID,201812,1,1,326,65 -952,FR,ID,201812,1,1,4213,4847 -952,FR,ID,201812,1,1,31,6 -952,FR,ID,201812,3,1,9519,1082 -952,FR,ID,201812,4,1,21,2 -952,FR,ID,201812,4,1,2284,0 -952,FR,ID,201812,4,1,216,0 -952,FR,ID,201812,1,2,61022,1571 -952,FR,ID,201812,1,2,39403,42250 -952,FR,ID,201812,1,2,86339,21599 -952,FR,ID,201812,3,2,3,1 -952,FR,ID,201812,4,2,5883,199 -952,FR,ID,201812,4,2,5503,360 -961,FR,ID,201812,3,1,3610,28 -961,FR,ID,201812,4,1,681,10 -961,FR,ID,201812,4,1,6068,29 -961,FR,ID,201812,4,1,216,0 -961,FR,ID,201812,4,1,20639,90 -961,FR,ID,201812,1,2,79260,1050 -961,FR,ID,201812,4,2,551,88 -961,FR,ID,201812,4,2,1104,16 -961,FR,ID,201812,4,2,1048,170 -962,FR,ID,201812,0,1,1299,41 -962,FR,ID,201812,1,1,10370,3226 -962,FR,ID,201812,1,1,137,5 -962,FR,ID,201812,1,1,4232,1400 -962,FR,ID,201812,1,1,4672,387 -962,FR,ID,201812,1,1,803,223 -962,FR,ID,201812,1,1,22597,3314 -962,FR,ID,201812,1,1,41,14 -962,FR,ID,201812,1,1,216,112 -962,FR,ID,201812,1,1,1158,407 -962,FR,ID,201812,1,1,5795,1650 -962,FR,ID,201812,1,1,24315,9626 -962,FR,ID,201812,1,1,9815,360 -962,FR,ID,201812,1,1,40921,20634 -962,FR,ID,201812,1,1,607,15 -962,FR,ID,201812,1,1,101,7 -962,FR,ID,201812,1,1,50270,15011 -962,FR,ID,201812,1,1,257778,57004 -962,FR,ID,201812,1,1,243,20 -962,FR,ID,201812,1,1,67002,27813 -962,FR,ID,201812,1,1,11657,3244 -962,FR,ID,201812,1,1,413,48 -962,FR,ID,201812,3,1,54044,2100 -962,FR,ID,201812,3,1,189,2 -962,FR,ID,201812,3,1,35819,7560 -962,FR,ID,201812,4,1,15285,239 -962,FR,ID,201812,4,1,237,9 -962,FR,ID,201812,4,1,3370,143 -962,FR,ID,201812,4,1,43,61 -962,FR,ID,201812,4,1,3981,78 -962,FR,ID,201812,1,2,72311,3555 -962,FR,ID,201812,1,2,24113,875 -962,FR,ID,201812,1,2,27987,781 -962,FR,ID,201812,1,2,15572,3853 -962,FR,ID,201812,1,2,61838,4682 -962,FR,ID,201812,1,2,852,214 -962,FR,ID,201812,3,2,12581,154 -962,FR,ID,201812,4,2,76487,1485 -962,FR,ID,201812,4,2,5980,12 -962,FR,ID,201812,4,2,24501,358 -962,FR,ID,201812,4,2,534,23 -962,FR,ID,201812,4,2,22276,283 -962,FR,ID,201812,4,2,9720,197 -962,FR,ID,201812,4,2,752,40 -962,FR,ID,201812,4,2,13210,5470 -963,FR,ID,201812,0,1,5607396,237240 -963,FR,ID,201812,1,1,41572,6185 -963,FR,ID,201812,1,1,8869,665 -963,FR,ID,201812,1,1,4791,120 -963,FR,ID,201812,1,1,32268,2503 -963,FR,ID,201812,1,1,72909,5945 -963,FR,ID,201812,1,1,120818,13840 -963,FR,ID,201812,1,1,216,18 -963,FR,ID,201812,1,1,2820,184 -963,FR,ID,201812,1,1,4334,257 -963,FR,ID,201812,1,1,33459,2482 -963,FR,ID,201812,1,1,2464,51 -963,FR,ID,201812,1,1,103,53 -963,FR,ID,201812,1,1,519,176 -963,FR,ID,201812,1,1,123730,6308 -963,FR,ID,201812,1,1,2035375,67415 -963,FR,ID,201812,1,1,65295,20226 -963,FR,ID,201812,1,1,255080,62459 -963,FR,ID,201812,1,1,62,14 -963,FR,ID,201812,1,1,59456,1400 -963,FR,ID,201812,1,1,64832,20226 -963,FR,ID,201812,1,1,694281,17344 -963,FR,ID,201812,1,1,2880551,215029 -963,FR,ID,201812,1,1,627277,18224 -963,FR,ID,201812,1,1,109459,2850 -963,FR,ID,201812,1,1,73992,3464 -963,FR,ID,201812,3,1,122807,2044 -963,FR,ID,201812,3,1,177,0 -963,FR,ID,201812,3,1,12058,409 -963,FR,ID,201812,3,1,889,9 -963,FR,ID,201812,3,1,8082,105 -963,FR,ID,201812,3,1,242,6 -963,FR,ID,201812,3,1,3107,50 -963,FR,ID,201812,3,1,17055,501 -963,FR,ID,201812,3,1,42646,21941 -963,FR,ID,201812,4,1,304830,15526 -963,FR,ID,201812,4,1,224876,4361 -963,FR,ID,201812,4,1,54264,1050 -963,FR,ID,201812,4,1,164,0 -963,FR,ID,201812,4,1,18990,167 -963,FR,ID,201812,4,1,129069,2442 -963,FR,ID,201812,4,1,120293,2290 -963,FR,ID,201812,4,1,25427,500 -963,FR,ID,201812,4,1,6368,17 -963,FR,ID,201812,4,1,67588,1317 -963,FR,ID,201812,4,1,69140,2397 -963,FR,ID,201812,4,1,17211,317 -963,FR,ID,201812,4,1,586,9 -963,FR,ID,201812,4,1,5195,80 -963,FR,ID,201812,4,1,5006,357 -963,FR,ID,201812,0,2,204,1 -963,FR,ID,201812,1,2,4853,226 -963,FR,ID,201812,3,2,22,0 -963,FR,ID,201812,4,2,267554,782 -963,FR,ID,201812,4,2,1074,3 -963,FR,ID,201812,4,2,25545,152 -963,FR,ID,201812,4,2,1875,27 -963,FR,ID,201812,4,2,183,10 -963,FR,ID,201812,4,2,1328,18 -963,FR,ID,201812,4,2,3750,80 -963,FR,ID,201812,4,2,1472,4 -971,FR,ID,201812,0,1,2,0 -971,FR,ID,201812,1,1,74,10 -971,FR,ID,201812,1,1,35646,10357 -971,FR,ID,201812,1,1,163137,48242 -971,FR,ID,201812,1,1,53779,14175 -971,FR,ID,201812,1,1,34918,9282 -971,FR,ID,201812,1,1,49625,11537 -971,FR,ID,201812,1,1,60068,37680 -971,FR,ID,201812,1,1,32298,12526 -971,FR,ID,201812,1,1,552224,154010 -971,FR,ID,201812,1,1,121392,47073 -971,FR,ID,201812,1,1,27700,17053 -971,FR,ID,201812,3,1,69,0 -971,FR,ID,201812,4,1,981,52 -971,FR,ID,201812,4,1,559,46 -971,FR,ID,201812,4,1,281,0 -971,FR,ID,201812,4,1,2003,0 -971,FR,ID,201812,4,1,5686,562 -971,FR,ID,201812,4,1,1198,75 -971,FR,ID,201812,1,2,3463,628 -971,FR,ID,201812,1,2,31085,2436 -971,FR,ID,201812,1,2,4010,1109 -971,FR,ID,201812,1,2,25033,4017 -971,FR,ID,201812,1,2,36620,3674 -971,FR,ID,201812,1,2,52504,5712 -971,FR,ID,201812,3,2,6281,159 -971,FR,ID,201812,4,2,48508,224 -971,FR,ID,201812,4,2,2670,2 -971,FR,ID,201812,4,2,4007,373 -971,FR,ID,201812,4,2,3177,170 -971,FR,ID,201812,4,2,1061,0 -972,FR,ID,201812,1,1,37726,21929 -972,FR,ID,201812,1,1,62026,68536 -972,FR,ID,201812,1,2,271,21 -972,FR,ID,201812,1,2,45882,49132 -972,FR,ID,201812,1,2,30600,8400 -972,FR,ID,201812,3,2,44726,22283 -972,FR,ID,201812,4,2,247,126 -973,FR,ID,201812,1,1,1024,1138 -973,FR,ID,201812,1,1,18430,18960 -973,FR,ID,201812,1,1,188,45 -973,FR,ID,201812,1,1,18508,20036 -973,FR,ID,201812,1,1,1587,561 -973,FR,ID,201812,1,1,16831,16518 -973,FR,ID,201812,1,1,1557,388 -973,FR,ID,201812,1,1,18508,20036 -973,FR,ID,201812,1,1,32081,13162 -973,FR,ID,201812,1,1,130,67 -973,FR,ID,201812,1,1,74230,79887 -973,FR,ID,201812,1,1,116301,58647 -973,FR,ID,201812,1,1,18124,4440 -973,FR,ID,201812,1,1,149,46 -973,FR,ID,201812,1,1,1669,14 -973,FR,ID,201812,3,1,213,4 -973,FR,ID,201812,3,1,84,38 -973,FR,ID,201812,4,1,6225,1158 -973,FR,ID,201812,4,1,172,8 -973,FR,ID,201812,4,1,2,0 -973,FR,ID,201812,4,1,89,4 -973,FR,ID,201812,0,2,50,4 -973,FR,ID,201812,1,2,53206,16548 -973,FR,ID,201812,1,2,61430,57156 -973,FR,ID,201812,4,2,652,9 -973,FR,ID,201812,4,2,2594,10 -974,FR,ID,201812,1,1,3426,365 -974,FR,ID,201812,1,1,836,54 -974,FR,ID,201812,1,1,4565,468 -974,FR,ID,201812,1,1,268,51 -974,FR,ID,201812,3,1,1473,24 -974,FR,ID,201812,4,1,49,1 -974,FR,ID,201812,4,1,341,0 -974,FR,ID,201812,0,2,175,17 -974,FR,ID,201812,1,2,254,8 -974,FR,ID,201812,1,2,1508,520 -974,FR,ID,201812,3,2,3994,267 -974,FR,ID,201812,4,2,933,27 -974,FR,ID,201812,4,2,16039,310 -974,FR,ID,201812,4,2,1010,10 -975,FR,ID,201812,1,1,483233,76348 -975,FR,ID,201812,1,1,5982,355 -975,FR,ID,201812,1,1,17810,6811 -975,FR,ID,201812,1,1,68587,17870 -975,FR,ID,201812,1,1,71464,22610 -975,FR,ID,201812,1,1,49066,10448 -975,FR,ID,201812,1,1,27725,13509 -975,FR,ID,201812,1,1,17172,4069 -975,FR,ID,201812,1,1,6222,2656 -975,FR,ID,201812,1,1,377,100 -975,FR,ID,201812,1,1,764,150 -975,FR,ID,201812,1,1,13492,5154 -975,FR,ID,201812,1,1,64760,25747 -975,FR,ID,201812,1,1,303025,98366 -975,FR,ID,201812,1,1,656171,176156 -975,FR,ID,201812,1,1,550075,439820 -975,FR,ID,201812,1,1,112211,18049 -975,FR,ID,201812,1,1,57680,20022 -975,FR,ID,201812,1,1,41092,8667 -975,FR,ID,201812,1,1,27856,9726 -975,FR,ID,201812,1,1,19912,3030 -975,FR,ID,201812,1,1,3313,859 -975,FR,ID,201812,1,1,25081,4688 -975,FR,ID,201812,1,1,23119,5552 -975,FR,ID,201812,1,1,67807,11643 -975,FR,ID,201812,1,1,1000030,267699 -975,FR,ID,201812,1,1,138359,32544 -975,FR,ID,201812,1,1,6332,2908 -975,FR,ID,201812,1,1,40276,11277 -975,FR,ID,201812,1,1,103881,35303 -975,FR,ID,201812,1,1,4654,1586 -975,FR,ID,201812,1,1,15797,2755 -975,FR,ID,201812,1,1,28374,7063 -975,FR,ID,201812,3,1,4081,407 -975,FR,ID,201812,3,1,89697,37912 -975,FR,ID,201812,4,1,960,25 -975,FR,ID,201812,4,1,3936,162 -975,FR,ID,201812,4,1,125,75 -975,FR,ID,201812,1,2,6222,144 -975,FR,ID,201812,1,2,1772,201 -975,FR,ID,201812,1,2,78157,44589 -975,FR,ID,201812,4,2,3,0 -975,FR,ID,201812,4,2,2599,0 -975,FR,ID,201812,4,2,230,51 -975,FR,ID,201812,4,2,3536,940 -976,FR,ID,201812,1,1,13460,5139 -976,FR,ID,201812,1,1,2225,180 -976,FR,ID,201812,1,1,1733,1258 -976,FR,ID,201812,1,1,4975,944 -976,FR,ID,201812,1,1,18639,2918 -976,FR,ID,201812,1,1,103420,20257 -976,FR,ID,201812,1,1,33594,20312 -976,FR,ID,201812,1,1,5921,1182 -976,FR,ID,201812,1,1,374,122 -976,FR,ID,201812,1,1,4959,1843 -976,FR,ID,201812,1,1,909,472 -976,FR,ID,201812,1,1,2213,1006 -976,FR,ID,201812,1,1,13348,3522 -976,FR,ID,201812,1,1,81259,46799 -976,FR,ID,201812,1,1,4509,3582 -976,FR,ID,201812,1,1,2376,1745 -976,FR,ID,201812,1,1,54032,34262 -976,FR,ID,201812,1,1,43580,12153 -976,FR,ID,201812,1,1,39,45 -976,FR,ID,201812,1,1,29666,25247 -976,FR,ID,201812,1,1,18582,7500 -976,FR,ID,201812,1,1,6188,1252 -976,FR,ID,201812,1,1,231549,79642 -976,FR,ID,201812,1,1,60263,33811 -976,FR,ID,201812,1,1,18468,13820 -976,FR,ID,201812,1,1,1999,496 -976,FR,ID,201812,1,1,13239,4605 -976,FR,ID,201812,1,1,7541,3307 -976,FR,ID,201812,1,1,9323,1588 -976,FR,ID,201812,3,1,2127,64 -976,FR,ID,201812,4,1,73336,853 -976,FR,ID,201812,4,1,227,2 -976,FR,ID,201812,4,1,3062,309 -976,FR,ID,201812,4,1,40363,333 -976,FR,ID,201812,1,2,24496,65816 -976,FR,ID,201812,4,2,1,0 -976,FR,ID,201812,4,2,609,13 -976,FR,ID,201812,4,2,3431,14 -979,FR,ID,201812,0,1,1314064,79631 -979,FR,ID,201812,1,1,81494,4473 -979,FR,ID,201812,1,1,1145,347 -979,FR,ID,201812,1,1,22578,14474 -979,FR,ID,201812,1,1,14958,831 -979,FR,ID,201812,1,1,84344,27551 -979,FR,ID,201812,1,1,8587,1474 -979,FR,ID,201812,1,1,20713,2468 -979,FR,ID,201812,1,1,997,325 -979,FR,ID,201812,1,1,32512,2222 -979,FR,ID,201812,1,1,1589,825 -979,FR,ID,201812,1,1,5757,2534 -979,FR,ID,201812,1,1,86597,8823 -979,FR,ID,201812,1,1,199428,36862 -979,FR,ID,201812,1,1,270,23 -979,FR,ID,201812,1,1,8770,3268 -979,FR,ID,201812,1,1,74,40 -979,FR,ID,201812,1,1,375,263 -979,FR,ID,201812,1,1,17101,4018 -979,FR,ID,201812,1,1,746,52 -979,FR,ID,201812,1,1,89835,16088 -979,FR,ID,201812,1,1,3682,757 -979,FR,ID,201812,1,1,242364,14183 -979,FR,ID,201812,1,1,1941392,144154 -979,FR,ID,201812,1,1,71,15 -979,FR,ID,201812,1,1,472,80 -979,FR,ID,201812,1,1,74518,28021 -979,FR,ID,201812,1,1,39218,2486 -979,FR,ID,201812,1,1,7258,1182 -979,FR,ID,201812,1,1,120260,6799 -979,FR,ID,201812,3,1,156252,1919 -979,FR,ID,201812,3,1,514,0 -979,FR,ID,201812,3,1,100,0 -979,FR,ID,201812,3,1,112,0 -979,FR,ID,201812,3,1,249772,50555 -979,FR,ID,201812,4,1,239023,5699 -979,FR,ID,201812,4,1,1015,40 -979,FR,ID,201812,4,1,57666,531 -979,FR,ID,201812,4,1,7821,309 -979,FR,ID,201812,4,1,12751,150 -979,FR,ID,201812,4,1,12439,8 -979,FR,ID,201812,4,1,11921,468 -979,FR,ID,201812,4,1,12688,795 -979,FR,ID,201812,4,1,22269,64 -979,FR,ID,201812,4,1,8075,51 -979,FR,ID,201812,4,1,377818,6506 -979,FR,ID,201812,4,1,9207,55 -979,FR,ID,201812,4,1,1403,0 -979,FR,ID,201812,4,1,9908,197 -979,FR,ID,201812,4,1,246500,1616 -979,FR,ID,201812,4,1,28663,502 -979,FR,ID,201812,4,1,137437,2970 -979,FR,ID,201812,4,1,4771,776 -979,FR,ID,201812,4,1,4307,155 -979,FR,ID,201812,0,2,944,13 -979,FR,ID,201812,1,2,53942,1874 -979,FR,ID,201812,1,2,6282,845 -979,FR,ID,201812,1,2,3829,583 -979,FR,ID,201812,1,2,16344,1322 -979,FR,ID,201812,1,2,4408,55 -979,FR,ID,201812,1,2,90558,970 -979,FR,ID,201812,1,2,1054436,36983 -979,FR,ID,201812,1,2,24806,5410 -979,FR,ID,201812,1,2,51233,928 -979,FR,ID,201812,1,2,73427,9472 -979,FR,ID,201812,1,2,20100,950 -979,FR,ID,201812,3,2,83767,412 -979,FR,ID,201812,4,2,620055,2021 -979,FR,ID,201812,4,2,20882,61 -979,FR,ID,201812,4,2,63847,46 -979,FR,ID,201812,4,2,68706,388 -979,FR,ID,201812,4,2,2029,232 -979,FR,ID,201812,4,2,20261,50 -979,FR,ID,201812,4,2,51046,245 -979,FR,ID,201812,4,2,26225,250 -979,FR,ID,201812,4,2,25618,528 -979,FR,ID,201812,4,2,390366,667 -979,FR,ID,201812,4,2,1461,450 -979,FR,ID,201812,4,2,129509,940 -979,FR,ID,201812,4,2,69951,405 -979,FR,ID,201812,4,2,38000,88 -979,FR,ID,201812,4,2,74395,1155 -979,FR,ID,201812,4,2,144829,119 -979,FR,ID,201812,4,2,54956,1040 -979,FR,ID,201812,4,2,6042,16 -979,FR,ID,201812,5,2,46,0 -999,FR,ID,201812,0,1,343,14 -999,FR,ID,201812,1,1,895,0 -999,FR,ID,201812,1,1,5700,0 -999,FR,ID,201812,1,1,4725,0 -999,FR,ID,201812,1,1,11475,0 -999,FR,ID,201812,4,1,6945,0 -999,FR,ID,201812,4,1,13050,0 -999,FR,ID,201812,4,1,424,0 -999,FR,ID,201812,1,2,100288,19780 -999,FR,ID,201812,1,2,10104,5900 -999,FR,ID,201812,1,2,77147,3620 -999,FR,ID,201812,1,2,834522,168734 -999,FR,ID,201812,1,2,137881,160654 -999,FR,ID,201812,1,2,37750,16839 -999,FR,ID,201812,1,2,298476,210794 -999,FR,ID,201812,1,2,76544,180250 -999,FR,ID,201812,1,2,101191,67500 -999,FR,ID,201812,1,2,298498,260400 -999,FR,ID,201812,1,2,101341,67500 -999,FR,ID,201812,1,2,5960,2000 -999,FR,ID,201812,1,2,24200,3600 -999,FR,ID,201812,3,2,7422,607 -999,FR,ID,201812,4,2,253709,13303 -999,FR,ID,201812,4,2,13498,1640 -999,FR,ID,201812,4,2,492,5 -999,FR,ID,201812,4,2,2454,50 -999,FR,ID,201812,4,2,159,25 -999,FR,ID,201812,4,2,10291,101 -999,FR,ID,201812,4,2,6342,775 -999,FR,ID,201812,4,2,1031,210 -001,FR,MY,201812,4,2,184021,1287 -020,FR,MY,201812,1,2,110271,280780 -031,FR,MY,201812,4,1,4810,716 -031,FR,MY,201812,4,1,2034,200 -035,FR,MY,201812,4,1,2848,600 -035,FR,MY,201812,4,1,77212,14568 -035,FR,MY,201812,4,1,236770,50765 -035,FR,MY,201812,4,1,26802,3844 -035,FR,MY,201812,1,2,180725,150654 -035,FR,MY,201812,1,2,144343,147333 -035,FR,MY,201812,1,2,199366,162900 -035,FR,MY,201812,1,2,54926,63378 -035,FR,MY,201812,1,2,18610,21168 -039,FR,MY,201812,1,2,19756,22470 -039,FR,MY,201812,1,2,256,120 -039,FR,MY,201812,1,2,16872,22680 -039,FR,MY,201812,4,2,7089,112 -039,FR,MY,201812,4,2,10449,607 -039,FR,MY,201812,4,2,7417,257 -049,FR,MY,201812,4,2,129,5 -051,FR,MY,201812,1,1,12578,16280 -056,FR,MY,201812,1,1,305285,251152 -056,FR,MY,201812,1,1,25521,21231 -056,FR,MY,201812,1,1,17649,20113 -056,FR,MY,201812,1,1,128016,100006 -056,FR,MY,201812,1,1,46076,48960 -056,FR,MY,201812,1,1,80999,75583 -056,FR,MY,201812,1,1,34902,30604 -056,FR,MY,201812,1,1,72961,66352 -056,FR,MY,201812,1,1,28453,26198 -056,FR,MY,201812,1,1,34902,28789 -056,FR,MY,201812,1,1,34776,25742 -056,FR,MY,201812,1,2,50981,52330 -056,FR,MY,201812,1,2,28385,92300 -056,FR,MY,201812,1,2,55699,45600 -056,FR,MY,201812,1,2,53392,126000 -092,FR,MY,201812,1,1,61869,45360 -092,FR,MY,201812,1,1,794088,564480 -092,FR,MY,201812,1,1,149073,122390 -092,FR,MY,201812,1,1,29560,22040 -092,FR,MY,201812,1,1,129291,100800 -092,FR,MY,201812,3,1,791,10 -099,FR,MY,201812,1,2,114,5 -099,FR,MY,201812,1,2,4830,343 -099,FR,MY,201812,1,2,392,65 -099,FR,MY,201812,1,2,15352,6000 -099,FR,MY,201812,1,2,1528,100 -099,FR,MY,201812,3,2,3248,297 -099,FR,MY,201812,4,2,107500,108 -099,FR,MY,201812,4,2,38,1 -099,FR,MY,201812,4,2,13,1 -099,FR,MY,201812,4,2,3587,50 -121,FR,MY,201812,0,2,24,10 -121,FR,MY,201812,1,2,27779,806 -121,FR,MY,201812,1,2,43451,1192 -121,FR,MY,201812,1,2,7383,2160 -121,FR,MY,201812,1,2,67259,5022 -121,FR,MY,201812,1,2,16900,8991 -121,FR,MY,201812,1,2,32792,19200 -121,FR,MY,201812,1,2,130327,18842 -121,FR,MY,201812,1,2,116025,7896 -121,FR,MY,201812,1,2,15050,2250 -121,FR,MY,201812,4,2,31028,554 -121,FR,MY,201812,4,2,13071,252 -125,FR,MY,201812,1,2,29720,9734 -125,FR,MY,201812,1,2,122715,12046 -125,FR,MY,201812,1,2,271091,13680 -125,FR,MY,201812,1,2,18116,4788 -125,FR,MY,201812,1,2,1149008,21541 -125,FR,MY,201812,4,2,14302,102 -125,FR,MY,201812,4,2,79359,236 -125,FR,MY,201812,4,2,580,11 -128,FR,MY,201812,1,1,2160,1595 -128,FR,MY,201812,1,1,10777,20382 -128,FR,MY,201812,1,1,25442,38220 -128,FR,MY,201812,1,1,12849,10872 -128,FR,MY,201812,1,1,29741,35640 -128,FR,MY,201812,1,2,22814,60769 -128,FR,MY,201812,1,2,226447,281543 -131,FR,MY,201812,3,1,1141,52 -131,FR,MY,201812,1,2,2600,90 -132,FR,MY,201812,1,1,190,115 -132,FR,MY,201812,0,2,30,2 -132,FR,MY,201812,1,2,13400,3138 -132,FR,MY,201812,1,2,21222,8250 -132,FR,MY,201812,1,2,123326,27904 -132,FR,MY,201812,3,2,40368,3704 -132,FR,MY,201812,4,2,44,16 -132,FR,MY,201812,4,2,133,6 -132,FR,MY,201812,4,2,1546,40 -132,FR,MY,201812,4,2,9786,150 -133,FR,MY,201812,4,2,413,2 -136,FR,MY,201812,1,1,178,122 -136,FR,MY,201812,1,1,300,149 -136,FR,MY,201812,1,1,268,21 -136,FR,MY,201812,1,1,2236,810 -136,FR,MY,201812,4,1,159,0 -136,FR,MY,201812,1,2,2430,894 -136,FR,MY,201812,1,2,52122,34772 -136,FR,MY,201812,3,2,18086,1635 -139,FR,MY,201812,0,1,63,36 -139,FR,MY,201812,1,1,49954,40595 -139,FR,MY,201812,1,1,141048,94736 -139,FR,MY,201812,1,1,83600,65454 -139,FR,MY,201812,1,1,4105,830 -139,FR,MY,201812,1,1,10766,5625 -139,FR,MY,201812,3,1,1273,107 -139,FR,MY,201812,3,1,22053,950 -139,FR,MY,201812,4,1,76,17 -139,FR,MY,201812,4,1,28,20 -139,FR,MY,201812,1,2,68549,10366 -139,FR,MY,201812,1,2,3037,150 -139,FR,MY,201812,1,2,13970,1200 -139,FR,MY,201812,1,2,2989,323 -139,FR,MY,201812,1,2,29809,2950 -139,FR,MY,201812,1,2,46922,14223 -139,FR,MY,201812,1,2,45854,4680 -139,FR,MY,201812,1,2,166075,21483 -139,FR,MY,201812,1,2,12209,6257 -139,FR,MY,201812,1,2,160812,104305 -139,FR,MY,201812,4,2,411,125 -139,FR,MY,201812,4,2,2050,6 -139,FR,MY,201812,4,2,3162,127 -139,FR,MY,201812,4,2,7597,334 -139,FR,MY,201812,4,2,804,58 -141,FR,MY,201812,4,2,6342,214 -141,FR,MY,201812,4,2,1542,108 -142,FR,MY,201812,0,1,24838,2040 -142,FR,MY,201812,1,1,632908,64452 -142,FR,MY,201812,1,1,142152,12600 -142,FR,MY,201812,4,1,11642,168 -142,FR,MY,201812,4,1,11197,120 -142,FR,MY,201812,4,1,1721,15 -142,FR,MY,201812,4,2,49,5 -142,FR,MY,201812,4,2,16405,1386 -142,FR,MY,201812,4,2,10954,962 -143,FR,MY,201812,1,2,40576,13754 -143,FR,MY,201812,1,2,150808,67335 -143,FR,MY,201812,1,2,50596,20420 -143,FR,MY,201812,1,2,33152,11370 -143,FR,MY,201812,1,2,12973,24176 -143,FR,MY,201812,4,2,3514,3900 -143,FR,MY,201812,4,2,334,69 -144,FR,MY,201812,1,2,114,7 -144,FR,MY,201812,1,2,13506,1791 -144,FR,MY,201812,1,2,854697,393695 -144,FR,MY,201812,1,2,275954,175999 -144,FR,MY,201812,1,2,448877,255827 -144,FR,MY,201812,1,2,888892,719870 -144,FR,MY,201812,4,2,17015,1086 -144,FR,MY,201812,4,2,21983,2056 -144,FR,MY,201812,4,2,20239,2809 -145,FR,MY,201812,1,2,8793,4160 -145,FR,MY,201812,4,2,2873,1440 -146,FR,MY,201812,4,2,5639,280 -147,FR,MY,201812,1,2,105656,8352 -147,FR,MY,201812,4,2,43727,2700 -147,FR,MY,201812,4,2,7541,257 -147,FR,MY,201812,4,2,3927,340 -148,FR,MY,201812,0,1,100906,18051 -148,FR,MY,201812,1,1,655225,132859 -148,FR,MY,201812,1,2,2213,1224 -148,FR,MY,201812,1,2,1440,110 -148,FR,MY,201812,4,2,701,35 -148,FR,MY,201812,4,2,2512,19 -148,FR,MY,201812,4,2,1588,38 -161,FR,MY,201812,1,2,11792,23475 -161,FR,MY,201812,1,2,23848,53925 -161,FR,MY,201812,1,2,78739,90000 -162,FR,MY,201812,1,2,134,200 -162,FR,MY,201812,1,2,333129,1003232 -163,FR,MY,201812,1,1,15546,4181 -163,FR,MY,201812,1,1,31158,7200 -163,FR,MY,201812,1,1,6294,3054 -163,FR,MY,201812,1,1,107293,34713 -163,FR,MY,201812,1,1,96170,51082 -163,FR,MY,201812,1,1,48423,10047 -163,FR,MY,201812,1,1,27485,4626 -163,FR,MY,201812,1,2,5,10 -163,FR,MY,201812,1,2,950,200 -163,FR,MY,201812,1,2,2350,266 -163,FR,MY,201812,1,2,22660,4785 -163,FR,MY,201812,3,2,9816,959 -163,FR,MY,201812,4,2,3277,324 -164,FR,MY,201812,1,1,138,65 -164,FR,MY,201812,1,1,7005,3780 -164,FR,MY,201812,1,2,21588,3016 -164,FR,MY,201812,1,2,34934,7356 -164,FR,MY,201812,1,2,30738,15398 -164,FR,MY,201812,1,2,66294,8489 -164,FR,MY,201812,1,2,719,241 -164,FR,MY,201812,1,2,49386,9946 -164,FR,MY,201812,1,2,58101,12301 -164,FR,MY,201812,1,2,135388,32806 -164,FR,MY,201812,3,2,1587,110 -164,FR,MY,201812,4,2,2,1 -164,FR,MY,201812,4,2,192,31 -166,FR,MY,201812,1,1,17994,4498 -166,FR,MY,201812,1,1,33669,14140 -166,FR,MY,201812,1,2,2639,100 -166,FR,MY,201812,1,2,77190,43917 -166,FR,MY,201812,1,2,15,18 -166,FR,MY,201812,1,2,8482,186 -172,FR,MY,201812,1,1,5905,21160 -179,FR,MY,201812,1,2,2100,115 -179,FR,MY,201812,1,2,27409,2640 -179,FR,MY,201812,1,2,263877,177266 -179,FR,MY,201812,1,2,100895,8246 -179,FR,MY,201812,1,2,31138,21148 -179,FR,MY,201812,1,2,217588,135881 -179,FR,MY,201812,4,2,3770,530 -181,FR,MY,201812,1,2,92,5 -181,FR,MY,201812,1,2,25982,51840 -182,FR,MY,201812,1,1,13402,10510 -182,FR,MY,201812,1,1,8103,1501 -182,FR,MY,201812,1,1,20817,25000 -182,FR,MY,201812,1,1,74881,51842 -182,FR,MY,201812,1,1,55123,72000 -182,FR,MY,201812,3,1,379,57 -182,FR,MY,201812,8,1,125455,248647 -182,FR,MY,201812,1,2,7647,573 -182,FR,MY,201812,1,2,265064,258304 -182,FR,MY,201812,3,2,183,42 -182,FR,MY,201812,4,2,2003,125 -182,FR,MY,201812,4,2,73,50 -211,FR,MY,201812,1,2,5639,17400 -321,FR,MY,201812,1,2,66398,15745 -321,FR,MY,201812,1,2,7334,15220 -323,FR,MY,201812,1,2,51741,75860 -325,FR,MY,201812,1,2,1402214,1859753 -341,FR,MY,201812,1,1,12400,8000 -341,FR,MY,201812,1,2,46146,32600 -341,FR,MY,201812,1,2,32636,15000 -341,FR,MY,201812,1,2,26783,19706 -341,FR,MY,201812,4,2,99,0 -341,FR,MY,201812,4,2,15,1 -349,FR,MY,201812,1,2,17847,4140 -451,FR,MY,201812,1,1,85850,21068 -451,FR,MY,201812,1,2,384745,320540 -451,FR,MY,201812,1,2,15527,25500 -451,FR,MY,201812,1,2,50402,51240 -451,FR,MY,201812,1,2,96220,96400 -451,FR,MY,201812,1,2,254279,376410 -451,FR,MY,201812,1,2,43333,11035 -462,FR,MY,201812,1,1,323301,461068 -462,FR,MY,201812,1,2,213068,360400 -462,FR,MY,201812,1,2,69200,80910 -462,FR,MY,201812,1,2,170892,237480 -512,FR,MY,201812,1,1,1530674,1700000 -513,FR,MY,201812,0,1,85897,70000 -532,FR,MY,201812,3,1,15839,451 -532,FR,MY,201812,4,1,35284,163 -532,FR,MY,201812,3,2,9359,1000 -533,FR,MY,201812,1,2,92769,24885 -533,FR,MY,201812,1,2,47683,13527 -533,FR,MY,201812,3,2,195,3 -533,FR,MY,201812,4,2,2926,893 -533,FR,MY,201812,4,2,730,1 -535,FR,MY,201812,1,2,33496,4306 -536,FR,MY,201812,3,1,5113,300 -542,FR,MY,201812,1,1,93247,47553 -542,FR,MY,201812,1,2,101954,7511 -542,FR,MY,201812,4,2,16379,10 -543,FR,MY,201812,4,2,7689,266 -551,FR,MY,201812,1,1,22850,9952 -551,FR,MY,201812,3,1,1009,20 -551,FR,MY,201812,1,2,300000,870 -551,FR,MY,201812,1,2,9768,4034 -551,FR,MY,201812,1,2,571,45 -551,FR,MY,201812,4,2,613515,1332 -551,FR,MY,201812,4,2,22272,31 -551,FR,MY,201812,4,2,3290,0 -551,FR,MY,201812,4,2,2496,1 -552,FR,MY,201812,1,2,529,12 -552,FR,MY,201812,4,2,70,19 -552,FR,MY,201812,4,2,4713,600 -562,FR,MY,201812,3,2,21300,1035 -562,FR,MY,201812,4,2,360,16 -565,FR,MY,201812,1,2,44750,1100 -565,FR,MY,201812,3,2,4946,501 -565,FR,MY,201812,4,2,4708,36 -565,FR,MY,201812,4,2,12716,68 -568,FR,MY,201812,0,1,101572,15046 -568,FR,MY,201812,3,1,2933,36 -568,FR,MY,201812,4,1,1449,48 -568,FR,MY,201812,1,2,15577,3521 -568,FR,MY,201812,1,2,14988,297 -568,FR,MY,201812,1,2,25811,2236 -568,FR,MY,201812,1,2,110562,8205 -568,FR,MY,201812,1,2,2013,161 -568,FR,MY,201812,3,2,2293,26 -568,FR,MY,201812,4,2,166239,919 -568,FR,MY,201812,4,2,40233,650 -614,FR,MY,201812,1,2,33903,90000 -621,FR,MY,201812,1,2,17892,11000 -639,FR,MY,201812,1,2,9032,11250 -641,FR,MY,201812,1,1,225480,3000000 -641,FR,MY,201812,1,1,774517,8007000 -691,FR,MY,201812,3,1,54,0 -691,FR,MY,201812,1,2,20,8 -691,FR,MY,201812,1,2,208801,8450 -691,FR,MY,201812,1,2,257329,5042 -691,FR,MY,201812,4,2,881,36 -691,FR,MY,201812,4,2,2407,20 -819,FR,MY,201812,1,1,891,4 -819,FR,MY,201812,1,1,21916,16000 -819,FR,MY,201812,1,1,118210,47860 -819,FR,MY,201812,1,1,11525,14000 -819,FR,MY,201812,3,1,438,36 -819,FR,MY,201812,4,1,55,1 -819,FR,MY,201812,1,2,48409,3751 -819,FR,MY,201812,1,2,1056,250 -819,FR,MY,201812,1,2,4336,480 -819,FR,MY,201812,1,2,92009,17200 -819,FR,MY,201812,1,2,29470,19200 -819,FR,MY,201812,1,2,70198,20000 -819,FR,MY,201812,1,2,494,25 -819,FR,MY,201812,1,2,10348,96000 -819,FR,MY,201812,1,2,2563,24000 -819,FR,MY,201812,3,2,162,6 -819,FR,MY,201812,3,2,36595,17820 -819,FR,MY,201812,3,2,2563,24000 -819,FR,MY,201812,4,2,10490,304 -819,FR,MY,201812,4,2,5922,470 -819,FR,MY,201812,4,2,257673,150 -820,FR,MY,201812,1,2,105334,160000 -820,FR,MY,201812,1,2,49597,80000 -820,FR,MY,201812,1,2,114341,180000 -842,FR,MY,201812,1,2,32215,266820 -842,FR,MY,201812,1,2,52108,441320 -842,FR,MY,201812,1,2,14275,99800 -891,FR,MY,201812,1,1,26553,14029 -891,FR,MY,201812,1,1,30110,21890 -891,FR,MY,201812,1,1,9782,1398 -891,FR,MY,201812,1,1,30483,16656 -891,FR,MY,201812,1,1,6492,671 -891,FR,MY,201812,1,1,1135,191 -891,FR,MY,201812,1,1,8,2 -891,FR,MY,201812,1,1,103696,29760 -891,FR,MY,201812,1,1,34342,19310 -891,FR,MY,201812,1,1,48010,14028 -891,FR,MY,201812,1,1,44675,27839 -891,FR,MY,201812,3,1,185,18 -891,FR,MY,201812,3,1,99,1 -891,FR,MY,201812,4,1,3649,580 -891,FR,MY,201812,4,1,1773,130 -891,FR,MY,201812,1,2,67091,29390 -891,FR,MY,201812,1,2,1529,250 -891,FR,MY,201812,1,2,3977,1056 -891,FR,MY,201812,1,2,20675,2431 -891,FR,MY,201812,1,2,798293,4124829 -891,FR,MY,201812,1,2,17020,10000 -891,FR,MY,201812,1,2,32034,11000 -891,FR,MY,201812,1,2,31682,44297 -891,FR,MY,201812,1,2,167559,23560 -891,FR,MY,201812,1,2,32829,18400 -891,FR,MY,201812,1,2,65616,72510 -891,FR,MY,201812,1,2,34206,46800 -891,FR,MY,201812,1,2,22510,117840 -891,FR,MY,201812,1,2,51309,70200 -891,FR,MY,201812,1,2,12044,2355 -891,FR,MY,201812,1,2,309839,118525 -891,FR,MY,201812,1,2,60856,7500 -891,FR,MY,201812,1,2,4359,27160 -891,FR,MY,201812,1,2,46206,191280 -891,FR,MY,201812,1,2,843,12970 -891,FR,MY,201812,1,2,1817,282 -891,FR,MY,201812,1,2,1824,282 -891,FR,MY,201812,3,2,64,50 -891,FR,MY,201812,3,2,1400,1000 -891,FR,MY,201812,4,2,166416,5522 -891,FR,MY,201812,4,2,490,28 -891,FR,MY,201812,4,2,3262,580 -891,FR,MY,201812,4,2,1077,55 -891,FR,MY,201812,4,2,34093,275 -891,FR,MY,201812,4,2,1671,8 -892,FR,MY,201812,1,2,9392,4710 -892,FR,MY,201812,1,2,9369,916 -892,FR,MY,201812,1,2,10347,5400 -892,FR,MY,201812,1,2,20487,1342 -892,FR,MY,201812,3,2,1000,2 -892,FR,MY,201812,3,2,2665,720 -892,FR,MY,201812,3,2,10410,8843 -892,FR,MY,201812,4,2,114140,5721 -892,FR,MY,201812,4,2,42216,1353 -892,FR,MY,201812,4,2,1787,240 -893,FR,MY,201812,0,1,39000,60000 -893,FR,MY,201812,1,1,98514,139250 -893,FR,MY,201812,1,1,310,14 -893,FR,MY,201812,1,1,160904,1810 -893,FR,MY,201812,1,1,374584,526000 -893,FR,MY,201812,1,1,378066,530400 -893,FR,MY,201812,1,1,179848,2075 -893,FR,MY,201812,1,1,579378,4960 -893,FR,MY,201812,1,1,106479,140000 -893,FR,MY,201812,3,1,25883,436 -893,FR,MY,201812,4,1,14015,15 -893,FR,MY,201812,4,1,24901,389 -893,FR,MY,201812,4,1,32,48 -893,FR,MY,201812,4,1,155,0 -893,FR,MY,201812,4,1,2076,22 -893,FR,MY,201812,4,1,144,2 -893,FR,MY,201812,1,2,591707,28187 -893,FR,MY,201812,1,2,10826,1179 -893,FR,MY,201812,1,2,26731,1800 -893,FR,MY,201812,1,2,8303,1121 -893,FR,MY,201812,1,2,75934,5553 -893,FR,MY,201812,1,2,9398,250 -893,FR,MY,201812,1,2,477468,38150 -893,FR,MY,201812,1,2,28126,1861 -893,FR,MY,201812,1,2,1238618,14963 -893,FR,MY,201812,1,2,42740,4034 -893,FR,MY,201812,1,2,642009,27317 -893,FR,MY,201812,1,2,96538,5690 -893,FR,MY,201812,1,2,25728,19200 -893,FR,MY,201812,3,2,55635,2567 -893,FR,MY,201812,3,2,37144,2882 -893,FR,MY,201812,3,2,26814,19600 -893,FR,MY,201812,4,2,2857049,18586 -893,FR,MY,201812,4,2,141974,51 -893,FR,MY,201812,4,2,8560,280 -893,FR,MY,201812,4,2,676,62 -893,FR,MY,201812,4,2,5501,189 -893,FR,MY,201812,4,2,4481,360 -893,FR,MY,201812,4,2,32374,915 -893,FR,MY,201812,4,2,2394,83 -893,FR,MY,201812,4,2,132026,4128 -893,FR,MY,201812,4,2,66728,589 -893,FR,MY,201812,4,2,129718,2205 -893,FR,MY,201812,4,2,29693,414 -893,FR,MY,201812,4,2,1000689,13561 -893,FR,MY,201812,4,2,558178,1151 -893,FR,MY,201812,4,2,7737,125 -893,FR,MY,201812,4,2,9013,11 -893,FR,MY,201812,4,2,1219,60 -893,FR,MY,201812,4,2,3021,69 -893,FR,MY,201812,4,2,36485,311 -894,FR,MY,201812,4,2,5015,0 -895,FR,MY,201812,1,2,27100,20000 -895,FR,MY,201812,1,2,161605,120000 -895,FR,MY,201812,1,2,35986,35950 -895,FR,MY,201812,1,2,52992,40000 -896,FR,MY,201812,0,1,3869,147 -896,FR,MY,201812,1,1,12231,738 -896,FR,MY,201812,1,1,4008,466 -896,FR,MY,201812,1,1,163371,113757 -896,FR,MY,201812,1,1,26968,19800 -896,FR,MY,201812,3,1,75452,1539 -896,FR,MY,201812,3,1,89,8 -896,FR,MY,201812,4,1,9517,210 -896,FR,MY,201812,4,1,37182,645 -896,FR,MY,201812,4,1,2148,160 -896,FR,MY,201812,4,1,10568,510 -896,FR,MY,201812,4,1,50268,969 -896,FR,MY,201812,4,1,18964,26 -896,FR,MY,201812,4,1,1586,40 -896,FR,MY,201812,0,2,629,2 -896,FR,MY,201812,1,2,72352,6229 -896,FR,MY,201812,1,2,15973,1435 -896,FR,MY,201812,1,2,17690,3056 -896,FR,MY,201812,1,2,21440,2521 -896,FR,MY,201812,1,2,487126,76221 -896,FR,MY,201812,1,2,11384,5178 -896,FR,MY,201812,1,2,632,600 -896,FR,MY,201812,1,2,19391,4280 -896,FR,MY,201812,1,2,169300,59319 -896,FR,MY,201812,1,2,35022,8153 -896,FR,MY,201812,1,2,135214,77680 -896,FR,MY,201812,3,2,3012,28 -896,FR,MY,201812,3,2,44100,2808 -896,FR,MY,201812,3,2,13210,5120 -896,FR,MY,201812,4,2,331241,2915 -896,FR,MY,201812,4,2,3433,186 -896,FR,MY,201812,4,2,10858,15 -896,FR,MY,201812,4,2,1523,36 -896,FR,MY,201812,4,2,12760,465 -896,FR,MY,201812,4,2,1694,92 -896,FR,MY,201812,4,2,4281,122 -896,FR,MY,201812,4,2,790,2 -896,FR,MY,201812,4,2,12981,300 -896,FR,MY,201812,4,2,3590,150 -896,FR,MY,201812,4,2,43922,206 -910,FR,MY,201812,0,1,5636,34 -910,FR,MY,201812,1,1,197686,8818 -910,FR,MY,201812,1,1,26701,4157 -910,FR,MY,201812,1,1,1500728,6830 -910,FR,MY,201812,1,1,171258,3188 -910,FR,MY,201812,1,1,55709,950 -910,FR,MY,201812,1,1,1460,2200 -910,FR,MY,201812,1,1,363067,135734 -910,FR,MY,201812,1,1,34172,11475 -910,FR,MY,201812,1,1,201403,96525 -910,FR,MY,201812,1,1,7809,241 -910,FR,MY,201812,1,1,26662,1011 -910,FR,MY,201812,3,1,8738,384 -910,FR,MY,201812,3,1,116035,6418 -910,FR,MY,201812,4,1,78053,314 -910,FR,MY,201812,4,1,31427,4 -910,FR,MY,201812,4,1,37502,61 -910,FR,MY,201812,4,1,701340,6382 -910,FR,MY,201812,4,1,1044930,3360 -910,FR,MY,201812,4,1,25586,308 -910,FR,MY,201812,4,1,3539,12 -910,FR,MY,201812,4,1,505,1 -910,FR,MY,201812,4,1,404530,1213 -910,FR,MY,201812,4,1,804,10 -910,FR,MY,201812,1,2,398894,20040 -910,FR,MY,201812,1,2,807084,43092 -910,FR,MY,201812,1,2,549,3 -910,FR,MY,201812,1,2,530579,0 -910,FR,MY,201812,1,2,436225,304921 -910,FR,MY,201812,1,2,33200,3730 -910,FR,MY,201812,1,2,3516078,242964 -910,FR,MY,201812,1,2,331768,24658 -910,FR,MY,201812,1,2,5477,219 -910,FR,MY,201812,3,2,553033,59978 -910,FR,MY,201812,3,2,170000,18530 -910,FR,MY,201812,4,2,1578779,5630 -910,FR,MY,201812,4,2,254551,468 -910,FR,MY,201812,4,2,13196,180 -910,FR,MY,201812,4,2,28039,3 -910,FR,MY,201812,4,2,851,0 -910,FR,MY,201812,4,2,11315,3 -910,FR,MY,201812,4,2,41223,354 -910,FR,MY,201812,4,2,1303316,7691 -910,FR,MY,201812,4,2,205015,565 -910,FR,MY,201812,4,2,504,100 -910,FR,MY,201812,4,2,221096,2380 -910,FR,MY,201812,4,2,26268,327 -910,FR,MY,201812,9,2,58011355,40700 -920,FR,MY,201812,1,1,72045,25064 -920,FR,MY,201812,0,2,394,5 -931,FR,MY,201812,0,1,2407947,482602 -931,FR,MY,201812,1,1,57207,3139 -931,FR,MY,201812,1,1,3085,896 -931,FR,MY,201812,1,1,153,20 -931,FR,MY,201812,1,1,25894,970 -931,FR,MY,201812,1,1,21908,403 -931,FR,MY,201812,1,1,17177,791 -931,FR,MY,201812,1,1,135351,891 -931,FR,MY,201812,1,1,105529,17915 -931,FR,MY,201812,1,1,286576,70936 -931,FR,MY,201812,1,1,786081,49056 -931,FR,MY,201812,1,1,105978,1902 -931,FR,MY,201812,1,1,1434085,73169 -931,FR,MY,201812,1,1,2962836,400102 -931,FR,MY,201812,1,1,26673,2156 -931,FR,MY,201812,1,1,584398,54029 -931,FR,MY,201812,1,1,773,30 -931,FR,MY,201812,1,1,583251,142766 -931,FR,MY,201812,1,1,55910,4453 -931,FR,MY,201812,3,1,2764087,3491 -931,FR,MY,201812,3,1,8718,55 -931,FR,MY,201812,3,1,202,0 -931,FR,MY,201812,3,1,5525,0 -931,FR,MY,201812,3,1,1171,7 -931,FR,MY,201812,3,1,5119315,5159 -931,FR,MY,201812,3,1,19429485,17546 -931,FR,MY,201812,3,1,8494656,6404 -931,FR,MY,201812,4,1,2026945,14058 -931,FR,MY,201812,4,1,40644,46 -931,FR,MY,201812,4,1,3841933,3942 -931,FR,MY,201812,4,1,97,4 -931,FR,MY,201812,4,1,1903,2 -931,FR,MY,201812,4,1,75975,3168 -931,FR,MY,201812,4,1,38305,15 -931,FR,MY,201812,4,1,708,17 -931,FR,MY,201812,4,1,1921,4 -931,FR,MY,201812,4,1,12510,110 -931,FR,MY,201812,4,1,11961864,23677 -931,FR,MY,201812,4,1,11550,9 -931,FR,MY,201812,4,1,1149,15 -931,FR,MY,201812,4,1,574499,16253 -931,FR,MY,201812,4,1,15010,253 -931,FR,MY,201812,4,1,651651,7490 -931,FR,MY,201812,4,1,284341,5536 -931,FR,MY,201812,4,1,203565,870 -931,FR,MY,201812,4,1,1314100,7489 -931,FR,MY,201812,4,1,290395,382 -931,FR,MY,201812,4,1,2167,10 -931,FR,MY,201812,4,1,61218,152 -931,FR,MY,201812,4,1,155987,102 -931,FR,MY,201812,4,1,2763,10 -931,FR,MY,201812,0,2,3876,9 -931,FR,MY,201812,1,2,291233,8941 -931,FR,MY,201812,1,2,26900,950 -931,FR,MY,201812,1,2,224069,2527 -931,FR,MY,201812,1,2,23705,201 -931,FR,MY,201812,1,2,1287787,98863 -931,FR,MY,201812,1,2,743702,50115 -931,FR,MY,201812,1,2,35150,4155 -931,FR,MY,201812,3,2,1750026,181224 -931,FR,MY,201812,3,2,2620,26 -931,FR,MY,201812,3,2,13974,6 -931,FR,MY,201812,4,2,9455974,36860 -931,FR,MY,201812,4,2,74672,431 -931,FR,MY,201812,4,2,323447,385 -931,FR,MY,201812,4,2,10149,113 -931,FR,MY,201812,4,2,50,2 -931,FR,MY,201812,4,2,10388,36 -931,FR,MY,201812,4,2,145186,1645 -931,FR,MY,201812,4,2,5282,3 -931,FR,MY,201812,4,2,8288,255 -931,FR,MY,201812,4,2,43730,550 -931,FR,MY,201812,4,2,3173191,537 -931,FR,MY,201812,4,2,3852,27 -931,FR,MY,201812,4,2,33482,462 -931,FR,MY,201812,4,2,56300,154 -931,FR,MY,201812,4,2,853886,8570 -931,FR,MY,201812,4,2,46063,19 -931,FR,MY,201812,4,2,242580,425 -931,FR,MY,201812,5,2,3428,74 -939,FR,MY,201812,0,1,788,1 -939,FR,MY,201812,1,1,58075,459 -939,FR,MY,201812,1,1,7956,855 -939,FR,MY,201812,1,1,12893,181 -939,FR,MY,201812,1,1,33945,1788 -939,FR,MY,201812,1,1,61590,8140 -939,FR,MY,201812,1,1,121804,15572 -939,FR,MY,201812,1,1,45133,1325 -939,FR,MY,201812,1,1,14381,810 -939,FR,MY,201812,1,1,3802083,13068 -939,FR,MY,201812,1,1,1988925,63488 -939,FR,MY,201812,1,1,652558,64644 -939,FR,MY,201812,1,1,581998,32423 -939,FR,MY,201812,1,1,37219,4075 -939,FR,MY,201812,1,1,711645,43331 -939,FR,MY,201812,1,1,1153035,95284 -939,FR,MY,201812,1,1,391549,38718 -939,FR,MY,201812,1,1,27656,1423 -939,FR,MY,201812,1,1,13,0 -939,FR,MY,201812,1,1,2242,219 -939,FR,MY,201812,3,1,151829,1984 -939,FR,MY,201812,3,1,4123,15 -939,FR,MY,201812,3,1,27102,1140 -939,FR,MY,201812,3,1,15,1 -939,FR,MY,201812,3,1,304,79 -939,FR,MY,201812,4,1,348136,7273 -939,FR,MY,201812,4,1,2756964,3547 -939,FR,MY,201812,4,1,20831,1230 -939,FR,MY,201812,4,1,4654,0 -939,FR,MY,201812,4,1,273,1 -939,FR,MY,201812,4,1,129971,213 -939,FR,MY,201812,4,1,65852,550 -939,FR,MY,201812,4,1,605152,4197 -939,FR,MY,201812,4,1,1768,5 -939,FR,MY,201812,4,1,38151,450 -939,FR,MY,201812,4,1,1385,70 -939,FR,MY,201812,4,1,157633,2012 -939,FR,MY,201812,4,1,7142,307 -939,FR,MY,201812,4,1,5525,77 -939,FR,MY,201812,4,1,740574,7299 -939,FR,MY,201812,4,1,1001,2 -939,FR,MY,201812,4,1,251891,677 -939,FR,MY,201812,4,1,3206,120 -939,FR,MY,201812,0,2,5342,44 -939,FR,MY,201812,1,2,34235392,445207 -939,FR,MY,201812,1,2,32333,184 -939,FR,MY,201812,1,2,8200,176 -939,FR,MY,201812,1,2,39527,1662 -939,FR,MY,201812,1,2,4462,320 -939,FR,MY,201812,1,2,8108,1035 -939,FR,MY,201812,1,2,1308543,113494 -939,FR,MY,201812,1,2,743,60 -939,FR,MY,201812,1,2,775679,42691 -939,FR,MY,201812,3,2,116598,1360 -939,FR,MY,201812,3,2,2645,4 -939,FR,MY,201812,3,2,103444,3900 -939,FR,MY,201812,3,2,312,45 -939,FR,MY,201812,4,2,2038346,21453 -939,FR,MY,201812,4,2,743,55 -939,FR,MY,201812,4,2,183762,547 -939,FR,MY,201812,4,2,173121,172 -939,FR,MY,201812,4,2,751,64 -939,FR,MY,201812,4,2,73240,1595 -939,FR,MY,201812,4,2,21454,179 -939,FR,MY,201812,4,2,53953,135 -939,FR,MY,201812,4,2,60815,3126 -939,FR,MY,201812,4,2,122491,3930 -939,FR,MY,201812,4,2,301767,2237 -939,FR,MY,201812,4,2,328579,6337 -939,FR,MY,201812,4,2,133158,733 -939,FR,MY,201812,4,2,1610,14 -939,FR,MY,201812,4,2,4140323,19698 -939,FR,MY,201812,4,2,6014,34 -939,FR,MY,201812,4,2,53025,1680 -939,FR,MY,201812,4,2,188,10 -939,FR,MY,201812,4,2,33162,216 -939,FR,MY,201812,4,2,395735,13020 -939,FR,MY,201812,4,2,71797,229 -939,FR,MY,201812,4,2,82935,635 -941,FR,MY,201812,4,2,375,59 -949,FR,MY,201812,0,1,506,28 -949,FR,MY,201812,1,1,21686,1700 -949,FR,MY,201812,1,1,1986,750 -949,FR,MY,201812,1,1,9739,2941 -949,FR,MY,201812,1,1,70827,10843 -949,FR,MY,201812,1,1,33221,21626 -949,FR,MY,201812,1,1,620837,98712 -949,FR,MY,201812,1,1,54,11 -949,FR,MY,201812,1,1,75379,44054 -949,FR,MY,201812,1,1,273201,195085 -949,FR,MY,201812,1,1,35475,12069 -949,FR,MY,201812,3,1,30178,493 -949,FR,MY,201812,3,1,26426,115 -949,FR,MY,201812,3,1,3342,983 -949,FR,MY,201812,3,1,64,0 -949,FR,MY,201812,4,1,11594,305 -949,FR,MY,201812,4,1,1881,47 -949,FR,MY,201812,4,1,30168,275 -949,FR,MY,201812,4,1,3,0 -949,FR,MY,201812,4,1,141,10 -949,FR,MY,201812,4,1,77808,998 -949,FR,MY,201812,4,1,1486,97 -949,FR,MY,201812,4,1,19745,196 -949,FR,MY,201812,4,1,86,0 -949,FR,MY,201812,4,1,128,0 -949,FR,MY,201812,0,2,321,1 -949,FR,MY,201812,1,2,205557,10060 -949,FR,MY,201812,1,2,1794,90 -949,FR,MY,201812,1,2,106959,5120 -949,FR,MY,201812,1,2,24879,550 -949,FR,MY,201812,1,2,1073,24 -949,FR,MY,201812,1,2,499,40 -949,FR,MY,201812,1,2,119424,5072 -949,FR,MY,201812,3,2,59893,1922 -949,FR,MY,201812,3,2,15955,135 -949,FR,MY,201812,3,2,138680,20664 -949,FR,MY,201812,4,2,386839,5665 -949,FR,MY,201812,4,2,57246,354 -949,FR,MY,201812,4,2,49272,628 -949,FR,MY,201812,4,2,6860,4 -949,FR,MY,201812,4,2,72,250 -949,FR,MY,201812,4,2,1930,82 -949,FR,MY,201812,4,2,22322,22 -949,FR,MY,201812,4,2,3186,111 -949,FR,MY,201812,4,2,5724,126 -949,FR,MY,201812,4,2,742,50 -949,FR,MY,201812,4,2,24265,976 -949,FR,MY,201812,4,2,66898,245 -949,FR,MY,201812,4,2,417,1 -949,FR,MY,201812,4,2,33263,255 -949,FR,MY,201812,4,2,56571,3660 -949,FR,MY,201812,4,2,9593,38 -949,FR,MY,201812,4,2,28907,192 -951,FR,MY,201812,1,2,7614,973 -951,FR,MY,201812,1,2,473,40 -951,FR,MY,201812,1,2,19410,402 -951,FR,MY,201812,4,2,4138,186 -951,FR,MY,201812,4,2,2199,90 -952,FR,MY,201812,1,1,1367,141 -952,FR,MY,201812,1,1,12342,23500 -952,FR,MY,201812,1,1,27207,46000 -952,FR,MY,201812,3,1,18169,171 -952,FR,MY,201812,4,1,3816,35 -952,FR,MY,201812,4,1,6582,8 -952,FR,MY,201812,4,1,451203,4593 -952,FR,MY,201812,1,2,4469,1448 -952,FR,MY,201812,1,2,109,940 -952,FR,MY,201812,1,2,21324,964 -952,FR,MY,201812,1,2,13330,7188 -952,FR,MY,201812,3,2,100,3 -952,FR,MY,201812,3,2,88307,19517 -952,FR,MY,201812,4,2,16363,177 -961,FR,MY,201812,4,1,82446,80 -961,FR,MY,201812,4,1,1838,3 -961,FR,MY,201812,1,2,7406,229 -961,FR,MY,201812,4,2,152675,12 -961,FR,MY,201812,4,2,892,0 -962,FR,MY,201812,0,1,100096,3783 -962,FR,MY,201812,1,1,16305,418 -962,FR,MY,201812,1,1,161352,162000 -962,FR,MY,201812,1,1,4469,1115 -962,FR,MY,201812,1,1,24076,24006 -962,FR,MY,201812,1,1,32188,20508 -962,FR,MY,201812,1,1,116108,99240 -962,FR,MY,201812,1,1,20942,20000 -962,FR,MY,201812,3,1,2270,53 -962,FR,MY,201812,3,1,3227,460 -962,FR,MY,201812,4,1,3489,13 -962,FR,MY,201812,4,1,759,1 -962,FR,MY,201812,0,2,317,4 -962,FR,MY,201812,1,2,57981,1604 -962,FR,MY,201812,1,2,1248,51 -962,FR,MY,201812,1,2,12993,525 -962,FR,MY,201812,1,2,178715,14553 -962,FR,MY,201812,1,2,90522,22318 -962,FR,MY,201812,1,2,9490,674 -962,FR,MY,201812,3,2,18789,880 -962,FR,MY,201812,4,2,18534,321 -962,FR,MY,201812,4,2,900,35 -962,FR,MY,201812,4,2,9049,22 -962,FR,MY,201812,4,2,960,55 -962,FR,MY,201812,4,2,43757,542 -962,FR,MY,201812,4,2,4200,90 -962,FR,MY,201812,4,2,8140,142 -962,FR,MY,201812,5,2,67,2 -963,FR,MY,201812,0,1,337802,24699 -963,FR,MY,201812,1,1,25550,7701 -963,FR,MY,201812,1,1,102181,22829 -963,FR,MY,201812,1,1,50012,13794 -963,FR,MY,201812,1,1,29450,11106 -963,FR,MY,201812,1,1,36031,8818 -963,FR,MY,201812,1,1,49906,16860 -963,FR,MY,201812,1,1,94398,5522 -963,FR,MY,201812,1,1,1005484,118172 -963,FR,MY,201812,1,1,483830,89623 -963,FR,MY,201812,1,1,1023547,138460 -963,FR,MY,201812,1,1,467,54 -963,FR,MY,201812,1,1,299812,37402 -963,FR,MY,201812,1,1,24581,7401 -963,FR,MY,201812,1,1,637802,13811 -963,FR,MY,201812,1,1,2270644,454082 -963,FR,MY,201812,1,1,363006,89932 -963,FR,MY,201812,1,1,195950,46204 -963,FR,MY,201812,1,1,216560,47495 -963,FR,MY,201812,1,1,27685,4950 -963,FR,MY,201812,1,1,154782,14704 -963,FR,MY,201812,1,1,207814,32678 -963,FR,MY,201812,3,1,39355,885 -963,FR,MY,201812,3,1,10748,1425 -963,FR,MY,201812,3,1,255,0 -963,FR,MY,201812,3,1,13335,1518 -963,FR,MY,201812,3,1,1176,98 -963,FR,MY,201812,3,1,275,3 -963,FR,MY,201812,4,1,168084,5610 -963,FR,MY,201812,4,1,391665,9471 -963,FR,MY,201812,4,1,23632,244 -963,FR,MY,201812,4,1,7646,206 -963,FR,MY,201812,4,1,106383,8486 -963,FR,MY,201812,4,1,735,30 -963,FR,MY,201812,4,1,414,17 -963,FR,MY,201812,4,1,3101,725 -963,FR,MY,201812,4,1,7989,11 -963,FR,MY,201812,0,2,2172,12 -963,FR,MY,201812,1,2,15409,500 -963,FR,MY,201812,1,2,23,7 -963,FR,MY,201812,1,2,10030,354 -963,FR,MY,201812,3,2,4700,69 -963,FR,MY,201812,4,2,1110350,2264 -963,FR,MY,201812,4,2,13224,253 -963,FR,MY,201812,4,2,82071,694 -963,FR,MY,201812,4,2,100671,209 -963,FR,MY,201812,4,2,6130,42 -963,FR,MY,201812,4,2,683663,894 -963,FR,MY,201812,4,2,1713,22 -963,FR,MY,201812,4,2,65581,1290 -963,FR,MY,201812,4,2,3086,8 -963,FR,MY,201812,4,2,3852,83 -971,FR,MY,201812,0,1,1367,42 -971,FR,MY,201812,1,1,11230,682 -971,FR,MY,201812,1,1,1170,74 -971,FR,MY,201812,1,1,26921,8000 -971,FR,MY,201812,1,1,1616,24 -971,FR,MY,201812,1,1,7921,2550 -971,FR,MY,201812,1,1,131389,36016 -971,FR,MY,201812,1,1,6048,693 -971,FR,MY,201812,1,1,61291,20262 -971,FR,MY,201812,1,1,45789,21910 -971,FR,MY,201812,1,1,105586,47740 -971,FR,MY,201812,1,1,28,7 -971,FR,MY,201812,1,1,24350,11570 -971,FR,MY,201812,3,1,4578,163 -971,FR,MY,201812,4,1,597,18 -971,FR,MY,201812,4,1,2788,1 -971,FR,MY,201812,4,1,8784,818 -971,FR,MY,201812,4,1,12754,24 -971,FR,MY,201812,4,1,272,0 -971,FR,MY,201812,4,1,8521,76 -971,FR,MY,201812,4,1,61478,869 -971,FR,MY,201812,1,2,42815,2218 -971,FR,MY,201812,1,2,22840,1073 -971,FR,MY,201812,1,2,69282,4514 -971,FR,MY,201812,1,2,27422,4319 -971,FR,MY,201812,3,2,96,27 -971,FR,MY,201812,4,2,177141,1879 -971,FR,MY,201812,4,2,10602,6 -971,FR,MY,201812,4,2,12889,615 -971,FR,MY,201812,4,2,7770,85 -971,FR,MY,201812,4,2,3708,14 -971,FR,MY,201812,4,2,41880,520 -971,FR,MY,201812,4,2,5615,25 -971,FR,MY,201812,4,2,6910,198 -971,FR,MY,201812,4,2,26253,75 -971,FR,MY,201812,4,2,1230,2 -971,FR,MY,201812,4,2,26787,480 -972,FR,MY,201812,1,2,6051,1175 -972,FR,MY,201812,1,2,141060,55800 -972,FR,MY,201812,1,2,43572,11364 -972,FR,MY,201812,4,2,2051,169 -973,FR,MY,201812,1,1,19009,1213 -973,FR,MY,201812,1,1,45012,19788 -973,FR,MY,201812,1,1,249967,51803 -973,FR,MY,201812,1,1,5532,1124 -973,FR,MY,201812,1,1,428,36 -973,FR,MY,201812,3,1,1214,47 -973,FR,MY,201812,4,1,218,9 -973,FR,MY,201812,4,1,159,2 -973,FR,MY,201812,1,2,14238,2577 -973,FR,MY,201812,1,2,2027,258 -973,FR,MY,201812,1,2,8062,829 -973,FR,MY,201812,1,2,55102,18027 -973,FR,MY,201812,1,2,150534,14995 -973,FR,MY,201812,1,2,40077,10320 -973,FR,MY,201812,3,2,3180,85 -973,FR,MY,201812,4,2,1810,228 -973,FR,MY,201812,4,2,1738,341 -973,FR,MY,201812,4,2,18,1 -973,FR,MY,201812,4,2,5251,11 -974,FR,MY,201812,0,1,664,216 -974,FR,MY,201812,1,1,66810,15800 -974,FR,MY,201812,1,1,19068,3370 -974,FR,MY,201812,1,1,144,8 -974,FR,MY,201812,1,1,24126,16548 -974,FR,MY,201812,3,1,2831,109 -974,FR,MY,201812,4,1,166,10 -974,FR,MY,201812,4,1,1175,5 -974,FR,MY,201812,4,1,32,1 -974,FR,MY,201812,4,1,54,0 -974,FR,MY,201812,4,1,113,0 -974,FR,MY,201812,5,1,26,1 -974,FR,MY,201812,0,2,3956,76 -974,FR,MY,201812,1,2,883,54 -974,FR,MY,201812,1,2,8,2 -974,FR,MY,201812,1,2,26867,20547 -974,FR,MY,201812,1,2,4551,87 -974,FR,MY,201812,3,2,57204,1822 -974,FR,MY,201812,4,2,11938,739 -974,FR,MY,201812,4,2,28,4 -974,FR,MY,201812,4,2,2934,101 -974,FR,MY,201812,4,2,9496,412 -974,FR,MY,201812,4,2,6243,230 -974,FR,MY,201812,5,2,0,1 -975,FR,MY,201812,1,1,260075,110500 -975,FR,MY,201812,1,1,49593,10901 -975,FR,MY,201812,1,1,42556,20998 -975,FR,MY,201812,1,1,32767,34867 -975,FR,MY,201812,1,1,14964,4573 -975,FR,MY,201812,1,1,444642,64419 -975,FR,MY,201812,1,1,306684,202308 -975,FR,MY,201812,1,1,254904,67691 -975,FR,MY,201812,1,1,93737,78748 -975,FR,MY,201812,1,1,724292,577501 -975,FR,MY,201812,1,1,9032,1086 -975,FR,MY,201812,1,1,26934,9930 -975,FR,MY,201812,3,1,1420,106 -975,FR,MY,201812,3,1,170,14 -975,FR,MY,201812,4,1,22418,975 -975,FR,MY,201812,4,1,4548,171 -975,FR,MY,201812,4,1,523,13 -975,FR,MY,201812,4,1,20739,456 -975,FR,MY,201812,1,2,4773,328 -975,FR,MY,201812,1,2,3300,76 -975,FR,MY,201812,1,2,8836,1830 -975,FR,MY,201812,1,2,4028,124 -975,FR,MY,201812,1,2,6023,2420 -975,FR,MY,201812,1,2,4998,356 -975,FR,MY,201812,4,2,23200,48 -975,FR,MY,201812,4,2,1029,1 -975,FR,MY,201812,4,2,10217,512 -975,FR,MY,201812,4,2,3024,60 -975,FR,MY,201812,4,2,3933,218 -976,FR,MY,201812,1,1,43796,18119 -976,FR,MY,201812,1,1,30,16 -976,FR,MY,201812,1,1,36505,22153 -976,FR,MY,201812,1,1,71331,37700 -976,FR,MY,201812,1,1,73564,39937 -976,FR,MY,201812,1,1,148675,75699 -976,FR,MY,201812,1,1,35025,20128 -976,FR,MY,201812,1,1,37143,19793 -976,FR,MY,201812,4,1,48,0 -976,FR,MY,201812,1,2,1496,134 -976,FR,MY,201812,1,2,236,564 -976,FR,MY,201812,1,2,39637,123444 -976,FR,MY,201812,4,2,2834,1 -976,FR,MY,201812,4,2,3811,56 -976,FR,MY,201812,4,2,318,2 -979,FR,MY,201812,0,1,810493,55214 -979,FR,MY,201812,1,1,153436,14790 -979,FR,MY,201812,1,1,10891,740 -979,FR,MY,201812,1,1,7669,351 -979,FR,MY,201812,1,1,21442,12050 -979,FR,MY,201812,1,1,262103,5015 -979,FR,MY,201812,1,1,269987,19517 -979,FR,MY,201812,1,1,57490,4000 -979,FR,MY,201812,1,1,85775,38929 -979,FR,MY,201812,1,1,20301,860 -979,FR,MY,201812,1,1,31780,10914 -979,FR,MY,201812,1,1,518295,18865 -979,FR,MY,201812,1,1,31168,22809 -979,FR,MY,201812,1,1,29302,5660 -979,FR,MY,201812,1,1,5271,484 -979,FR,MY,201812,1,1,26843,10930 -979,FR,MY,201812,1,1,546,31 -979,FR,MY,201812,1,1,580882,173304 -979,FR,MY,201812,1,1,48889,32362 -979,FR,MY,201812,1,1,25632,8277 -979,FR,MY,201812,1,1,115627,78741 -979,FR,MY,201812,1,1,111567,16492 -979,FR,MY,201812,1,1,13896,11113 -979,FR,MY,201812,3,1,671147,3015 -979,FR,MY,201812,3,1,21624,24 -979,FR,MY,201812,3,1,247547,207 -979,FR,MY,201812,3,1,381855,207 -979,FR,MY,201812,3,1,18625,1034 -979,FR,MY,201812,3,1,461340,3175 -979,FR,MY,201812,3,1,48297,27 -979,FR,MY,201812,3,1,21864,11 -979,FR,MY,201812,3,1,517123,708 -979,FR,MY,201812,3,1,1662558,2521 -979,FR,MY,201812,3,1,477182,717 -979,FR,MY,201812,3,1,26401,2799 -979,FR,MY,201812,4,1,111642,794 -979,FR,MY,201812,4,1,3438,14 -979,FR,MY,201812,4,1,455263,1337 -979,FR,MY,201812,4,1,47734,100 -979,FR,MY,201812,4,1,365955,187 -979,FR,MY,201812,4,1,24363,103 -979,FR,MY,201812,4,1,2810,49 -979,FR,MY,201812,4,1,240,16 -979,FR,MY,201812,4,1,793,51 -979,FR,MY,201812,4,1,17349,20 -979,FR,MY,201812,4,1,471408,1157 -979,FR,MY,201812,4,1,414,3 -979,FR,MY,201812,4,1,1284,2 -979,FR,MY,201812,4,1,1054,49 -979,FR,MY,201812,4,1,5963,53 -979,FR,MY,201812,4,1,279136,158 -979,FR,MY,201812,4,1,71,6 -979,FR,MY,201812,4,1,255488,676 -979,FR,MY,201812,4,1,59581,225 -979,FR,MY,201812,4,1,9745,125 -979,FR,MY,201812,4,1,4386,14 -979,FR,MY,201812,0,2,614,8 -979,FR,MY,201812,1,2,83397,4629 -979,FR,MY,201812,1,2,8377,280 -979,FR,MY,201812,1,2,2831,436 -979,FR,MY,201812,1,2,8884,987 -979,FR,MY,201812,1,2,334193,10800 -979,FR,MY,201812,1,2,4863,1000 -979,FR,MY,201812,1,2,33,6 -979,FR,MY,201812,1,2,358033,18606 -979,FR,MY,201812,1,2,31212,7257 -979,FR,MY,201812,1,2,60274,5763 -979,FR,MY,201812,1,2,18108,5811 -979,FR,MY,201812,1,2,12306,2975 -979,FR,MY,201812,1,2,498,40 -979,FR,MY,201812,1,2,148011,15463 -979,FR,MY,201812,1,2,689,7 -979,FR,MY,201812,3,2,189292,1713 -979,FR,MY,201812,3,2,2309,1 -979,FR,MY,201812,4,2,653896,6451 -979,FR,MY,201812,4,2,68638,2898 -979,FR,MY,201812,4,2,27809,52 -979,FR,MY,201812,4,2,13512,55 -979,FR,MY,201812,4,2,8624,1 -979,FR,MY,201812,4,2,243604,6235 -979,FR,MY,201812,4,2,4477,483 -979,FR,MY,201812,4,2,12552,292 -979,FR,MY,201812,4,2,46579,50 -979,FR,MY,201812,4,2,56781,563 -979,FR,MY,201812,4,2,19413,381 -979,FR,MY,201812,4,2,202019,5983 -979,FR,MY,201812,4,2,756,1 -979,FR,MY,201812,4,2,2420,6 -979,FR,MY,201812,4,2,1473,0 -979,FR,MY,201812,4,2,135700,724 -979,FR,MY,201812,4,2,838750,650 -979,FR,MY,201812,4,2,57,1 -979,FR,MY,201812,4,2,43151,48 -979,FR,MY,201812,4,2,46649,6810 -979,FR,MY,201812,4,2,98605,10369 -979,FR,MY,201812,4,2,2890,14 -979,FR,MY,201812,4,2,281392,433 -994,FR,MY,201812,3,2,3600,1 -999,FR,MY,201812,0,1,166372,194000 -999,FR,MY,201812,1,1,10576,0 -999,FR,MY,201812,1,1,3319,0 -999,FR,MY,201812,3,1,83,0 -999,FR,MY,201812,4,1,2850,0 -999,FR,MY,201812,1,2,22712,1904 -999,FR,MY,201812,1,2,3049,894 -999,FR,MY,201812,1,2,21056,2876 -999,FR,MY,201812,1,2,630984,468927 -999,FR,MY,201812,1,2,204799,39552 -999,FR,MY,201812,1,2,38069,22125 -999,FR,MY,201812,1,2,39074,16777 -999,FR,MY,201812,1,2,39207,16831 -999,FR,MY,201812,1,2,118237,18755 -999,FR,MY,201812,1,2,8841,25200 -999,FR,MY,201812,1,2,217078,10788 -999,FR,MY,201812,3,2,1125,61 -999,FR,MY,201812,3,2,38978,20000 -999,FR,MY,201812,4,2,73228,2669 -999,FR,MY,201812,4,2,30111,106 -999,FR,MY,201812,4,2,9182,0 -999,FR,MY,201812,4,2,4000,0 -999,FR,MY,201812,4,2,193,0 -999,FR,MY,201812,4,2,415349,1276 -999,FR,MY,201812,4,2,4924,1 -999,FR,MY,201812,4,2,8192,280 -999,FR,MY,201812,4,2,11313,76 -143,FR,BN,201812,1,2,11801,23484 -341,FR,BN,201812,1,2,162,27 -568,FR,BN,201812,1,2,352,70 -568,FR,BN,201812,1,2,367,120 -691,FR,BN,201812,4,2,14,0 -893,FR,BN,201812,4,2,13078,134 -896,FR,BN,201812,4,2,292,0 -910,FR,BN,201812,1,2,79,51 -910,FR,BN,201812,3,2,10000,1455 -910,FR,BN,201812,3,2,26241,1455 -910,FR,BN,201812,4,2,4896,79 -910,FR,BN,201812,4,2,256690,610 -920,FR,BN,201812,4,2,1200,40 -931,FR,BN,201812,1,2,35496,2579 -931,FR,BN,201812,4,2,7481,35 -931,FR,BN,201812,4,2,1495,4 -939,FR,BN,201812,3,2,141,3 -939,FR,BN,201812,4,2,826776,6338 -939,FR,BN,201812,4,2,10844,2770 -949,FR,BN,201812,1,2,33,1 -949,FR,BN,201812,3,2,128,2 -949,FR,BN,201812,3,2,61762,167 -949,FR,BN,201812,4,2,289,5 -949,FR,BN,201812,4,2,806,0 -952,FR,BN,201812,4,2,6028,22 -963,FR,BN,201812,1,1,5087,129 -963,FR,BN,201812,3,1,147,1 -963,FR,BN,201812,3,1,93,2 -963,FR,BN,201812,4,2,64,0 -963,FR,BN,201812,4,2,1892,80 -971,FR,BN,201812,4,2,88,1 -971,FR,BN,201812,4,2,87,0 -974,FR,BN,201812,5,1,112,6 -975,FR,BN,201812,4,2,3556,8 -979,FR,BN,201812,0,2,502,3 -979,FR,BN,201812,4,2,10140,20 -979,FR,BN,201812,4,2,5104,2 -979,FR,BN,201812,4,2,129,0 -979,FR,BN,201812,4,2,23984,6000 -999,FR,BN,201812,4,2,98,0 -999,FR,BN,201812,4,2,100,0 -001,FR,SG,201812,4,2,2,9 -001,FR,SG,201812,4,2,500,10 -020,FR,SG,201812,1,2,18241,11140 -020,FR,SG,201812,1,2,2049,1787 -035,FR,SG,201812,1,1,1450,559 -035,FR,SG,201812,1,2,355706,324552 -035,FR,SG,201812,1,2,262746,201330 -035,FR,SG,201812,1,2,23748,21168 -035,FR,SG,201812,1,2,21211,21168 -035,FR,SG,201812,4,2,190,4 -035,FR,SG,201812,4,2,1649,208 -039,FR,SG,201812,1,2,1900,200 -039,FR,SG,201812,1,2,29770,25081 -039,FR,SG,201812,1,2,9640,897 -039,FR,SG,201812,4,2,50909,1486 -039,FR,SG,201812,4,2,497,123 -039,FR,SG,201812,4,2,218,62 -039,FR,SG,201812,4,2,114202,8182 -039,FR,SG,201812,4,2,679,14 -049,FR,SG,201812,4,2,152,1 -049,FR,SG,201812,4,2,1150,40 -056,FR,SG,201812,1,1,38719,38937 -056,FR,SG,201812,1,2,24710,3750 -056,FR,SG,201812,4,2,575,270 -057,FR,SG,201812,4,2,219,1 -092,FR,SG,201812,1,1,137919,60480 -092,FR,SG,201812,1,2,4532,888 -092,FR,SG,201812,1,2,101156,40800 -099,FR,SG,201812,1,1,1662,642 -099,FR,SG,201812,1,2,24150,1100 -099,FR,SG,201812,1,2,76208,28000 -099,FR,SG,201812,1,2,192161,37088 -099,FR,SG,201812,4,2,2773,322 -099,FR,SG,201812,4,2,6403,258 -111,FR,SG,201812,1,2,70,28 -112,FR,SG,201812,4,2,196,12 -121,FR,SG,201812,1,1,286124,10233 -121,FR,SG,201812,1,2,369731,17622 -121,FR,SG,201812,1,2,214,58 -121,FR,SG,201812,1,2,98423,4764 -121,FR,SG,201812,1,2,8811342,295033 -121,FR,SG,201812,1,2,26216,446 -121,FR,SG,201812,1,2,18135,806 -121,FR,SG,201812,1,2,2555540,84590 -121,FR,SG,201812,1,2,64384,17831 -121,FR,SG,201812,1,2,465801,46890 -121,FR,SG,201812,1,2,284984,13922 -121,FR,SG,201812,1,2,42844,13500 -121,FR,SG,201812,1,2,10504680,507810 -121,FR,SG,201812,1,2,59860,5076 -121,FR,SG,201812,1,2,35479,4320 -121,FR,SG,201812,1,2,299420,40500 -121,FR,SG,201812,3,2,1020996,30661 -121,FR,SG,201812,4,2,371882,5267 -121,FR,SG,201812,4,2,80117,288 -121,FR,SG,201812,4,2,4347,99 -121,FR,SG,201812,4,2,14139,517 -121,FR,SG,201812,4,2,3622,450 -121,FR,SG,201812,4,2,2132,54 -121,FR,SG,201812,4,2,185555,1079 -121,FR,SG,201812,4,2,252,17 -121,FR,SG,201812,4,2,3817,820 -121,FR,SG,201812,4,2,13843,236 -122,FR,SG,201812,1,2,1719,893 -122,FR,SG,201812,1,2,1322,575 -122,FR,SG,201812,1,2,3255,897 -122,FR,SG,201812,1,2,4574,7522 -122,FR,SG,201812,1,2,17750,37752 -125,FR,SG,201812,1,1,400834,8783 -125,FR,SG,201812,0,2,1620,4 -125,FR,SG,201812,1,2,314024,13190 -125,FR,SG,201812,1,2,81,49 -125,FR,SG,201812,1,2,1857,146 -125,FR,SG,201812,1,2,3156483,125864 -125,FR,SG,201812,1,2,18935,2732 -125,FR,SG,201812,1,2,177877,28243 -125,FR,SG,201812,1,2,2457,474 -125,FR,SG,201812,1,2,23530172,812952 -125,FR,SG,201812,1,2,904770,66476 -125,FR,SG,201812,1,2,2361648,63478 -125,FR,SG,201812,1,2,1088381,19972 -125,FR,SG,201812,4,2,18346,1230 -125,FR,SG,201812,4,2,939716,4154 -125,FR,SG,201812,4,2,3161,218 -125,FR,SG,201812,4,2,24100,630 -128,FR,SG,201812,1,1,33435,31032 -128,FR,SG,201812,1,1,7187,15684 -128,FR,SG,201812,1,1,33661,31200 -128,FR,SG,201812,1,1,12118,18200 -128,FR,SG,201812,1,1,21883,46764 -128,FR,SG,201812,1,1,15474,15058 -128,FR,SG,201812,1,2,54179,4924 -128,FR,SG,201812,1,2,243782,317108 -128,FR,SG,201812,1,2,478979,677736 -128,FR,SG,201812,1,2,22685,102375 -128,FR,SG,201812,1,2,15618,10744 -131,FR,SG,201812,1,2,739,232 -132,FR,SG,201812,3,1,6059,1184 -132,FR,SG,201812,1,2,1854,583 -132,FR,SG,201812,1,2,17500,2913 -132,FR,SG,201812,1,2,2183,1740 -132,FR,SG,201812,1,2,49900,12497 -132,FR,SG,201812,1,2,11353,3778 -132,FR,SG,201812,1,2,161284,13055 -132,FR,SG,201812,3,2,24990,1009 -132,FR,SG,201812,3,2,216619,15989 -132,FR,SG,201812,4,2,2698,134 -132,FR,SG,201812,4,2,10230,294 -132,FR,SG,201812,4,2,2499,340 -132,FR,SG,201812,4,2,1975,35 -133,FR,SG,201812,1,1,19461,7333 -133,FR,SG,201812,1,1,9449,310 -133,FR,SG,201812,3,1,10629,173 -133,FR,SG,201812,4,1,35,1 -133,FR,SG,201812,1,2,217,68 -133,FR,SG,201812,1,2,42500,332 -133,FR,SG,201812,4,2,821,17 -133,FR,SG,201812,4,2,980,46 -133,FR,SG,201812,4,2,225,4 -133,FR,SG,201812,4,2,2588,57 -135,FR,SG,201812,0,1,67,1 -136,FR,SG,201812,1,1,174,68 -136,FR,SG,201812,4,1,114,2 -136,FR,SG,201812,4,1,44,0 -136,FR,SG,201812,1,2,30343,16032 -136,FR,SG,201812,1,2,600,188 -136,FR,SG,201812,1,2,9181,1000 -136,FR,SG,201812,1,2,1823,210 -136,FR,SG,201812,1,2,163461,120656 -136,FR,SG,201812,1,2,17573,10242 -136,FR,SG,201812,1,2,67819,89742 -136,FR,SG,201812,1,2,44980,87600 -136,FR,SG,201812,3,2,2443,136 -136,FR,SG,201812,3,2,48713,4166 -136,FR,SG,201812,4,2,398,57 -136,FR,SG,201812,4,2,4031,111 -139,FR,SG,201812,1,1,20268,3124 -139,FR,SG,201812,3,1,287,12 -139,FR,SG,201812,0,2,34,1 -139,FR,SG,201812,1,2,12573,1901 -139,FR,SG,201812,1,2,32624,10606 -139,FR,SG,201812,1,2,51851,10264 -139,FR,SG,201812,1,2,88070,16024 -139,FR,SG,201812,1,2,21362,18164 -139,FR,SG,201812,1,2,9741,4400 -139,FR,SG,201812,1,2,47217,24000 -139,FR,SG,201812,1,2,495592,255957 -139,FR,SG,201812,1,2,93228,4651 -139,FR,SG,201812,1,2,87363,50000 -139,FR,SG,201812,1,2,16519,23040 -139,FR,SG,201812,3,2,40,5 -139,FR,SG,201812,4,2,34749,3620 -139,FR,SG,201812,4,2,7365,500 -139,FR,SG,201812,4,2,111955,1179 -139,FR,SG,201812,4,2,21420,4868 -139,FR,SG,201812,4,2,4714,571 -139,FR,SG,201812,4,2,107329,11356 -139,FR,SG,201812,4,2,6283,11 -141,FR,SG,201812,1,2,37597,1544 -141,FR,SG,201812,1,2,25268,2508 -141,FR,SG,201812,1,2,81664,42986 -141,FR,SG,201812,1,2,361318,193375 -141,FR,SG,201812,1,2,19041,25000 -141,FR,SG,201812,1,2,31115,15000 -141,FR,SG,201812,4,2,1243,106 -142,FR,SG,201812,3,1,21423,195 -142,FR,SG,201812,4,1,39110,1069 -142,FR,SG,201812,4,1,4873,227 -142,FR,SG,201812,4,1,38169,579 -142,FR,SG,201812,4,1,3999,604 -142,FR,SG,201812,1,2,3539,80 -142,FR,SG,201812,1,2,13296,421 -142,FR,SG,201812,1,2,49215,1032 -142,FR,SG,201812,1,2,258352,9363 -142,FR,SG,201812,4,2,25728,2502 -142,FR,SG,201812,4,2,1283,48 -142,FR,SG,201812,4,2,31946,4988 -142,FR,SG,201812,4,2,19467,2715 -142,FR,SG,201812,4,2,142572,13012 -142,FR,SG,201812,4,2,5326,636 -143,FR,SG,201812,1,2,6356,6908 -143,FR,SG,201812,1,2,832,889 -143,FR,SG,201812,1,2,210597,107181 -143,FR,SG,201812,1,2,139914,127593 -143,FR,SG,201812,1,2,62207,23746 -143,FR,SG,201812,4,2,1016,360 -144,FR,SG,201812,1,2,1246415,707445 -144,FR,SG,201812,1,2,280770,177000 -144,FR,SG,201812,1,2,147849,24000 -144,FR,SG,201812,1,2,34000,10000 -144,FR,SG,201812,1,2,231238,175000 -144,FR,SG,201812,1,2,1358501,497356 -144,FR,SG,201812,1,2,115199,15239 -144,FR,SG,201812,1,2,30890,24975 -144,FR,SG,201812,1,2,2430,600 -144,FR,SG,201812,1,2,300840,48000 -144,FR,SG,201812,3,2,2234,240 -144,FR,SG,201812,4,2,32932,2549 -144,FR,SG,201812,4,2,24684,2913 -144,FR,SG,201812,4,2,20082,1984 -144,FR,SG,201812,4,2,7142,904 -144,FR,SG,201812,4,2,79307,6234 -144,FR,SG,201812,4,2,205501,16628 -145,FR,SG,201812,1,2,556,129 -145,FR,SG,201812,1,2,8424,5400 -146,FR,SG,201812,4,2,478,150 -146,FR,SG,201812,4,2,414,125 -147,FR,SG,201812,0,2,100,3 -147,FR,SG,201812,1,2,18166,2472 -147,FR,SG,201812,1,2,1011,117 -147,FR,SG,201812,1,2,78015,52608 -147,FR,SG,201812,4,2,9428,882 -147,FR,SG,201812,4,2,5452,683 -147,FR,SG,201812,4,2,1537,178 -147,FR,SG,201812,4,2,18419,990 -148,FR,SG,201812,1,2,3050,239 -148,FR,SG,201812,1,2,4367,217 -148,FR,SG,201812,1,2,637,18 -148,FR,SG,201812,4,2,1613,3 -148,FR,SG,201812,4,2,2025,5 -148,FR,SG,201812,4,2,24918,186 -161,FR,SG,201812,1,2,16387,25500 -162,FR,SG,201812,1,2,7365,10050 -163,FR,SG,201812,1,1,30034,15165 -163,FR,SG,201812,1,1,31661,7834 -163,FR,SG,201812,1,1,343913,174764 -163,FR,SG,201812,1,2,23294,5122 -163,FR,SG,201812,1,2,2957,930 -163,FR,SG,201812,1,2,95719,15026 -163,FR,SG,201812,1,2,23716,5734 -163,FR,SG,201812,1,2,353593,95528 -163,FR,SG,201812,1,2,62346,16493 -163,FR,SG,201812,3,2,156,8 -163,FR,SG,201812,3,2,13827,1296 -163,FR,SG,201812,4,2,8793,482 -163,FR,SG,201812,4,2,1677,315 -163,FR,SG,201812,4,2,1077,70 -164,FR,SG,201812,1,1,578,223 -164,FR,SG,201812,4,1,14,0 -164,FR,SG,201812,1,2,372,50 -164,FR,SG,201812,1,2,1964,618 -164,FR,SG,201812,1,2,1464,160 -164,FR,SG,201812,1,2,31834,5448 -164,FR,SG,201812,1,2,162691,47564 -164,FR,SG,201812,1,2,68862,14100 -164,FR,SG,201812,3,2,57,5 -164,FR,SG,201812,3,2,22166,1710 -164,FR,SG,201812,4,2,8800,480 -164,FR,SG,201812,4,2,1566,184 -164,FR,SG,201812,4,2,1883,332 -164,FR,SG,201812,4,2,1585,180 -164,FR,SG,201812,4,2,2952,53 -165,FR,SG,201812,1,1,546,211 -165,FR,SG,201812,1,2,5428,1220 -165,FR,SG,201812,4,2,134,17 -166,FR,SG,201812,1,1,235,91 -166,FR,SG,201812,1,2,866,272 -166,FR,SG,201812,1,2,3104,792 -166,FR,SG,201812,1,2,5479,2750 -166,FR,SG,201812,1,2,3204,2424 -166,FR,SG,201812,1,2,35009,11550 -166,FR,SG,201812,1,2,15878,1851 -166,FR,SG,201812,1,2,48398,46640 -166,FR,SG,201812,4,2,2563,10 -166,FR,SG,201812,4,2,1650,3 -179,FR,SG,201812,1,2,317267,675181 -179,FR,SG,201812,1,2,418787,386660 -179,FR,SG,201812,1,2,251287,6000 -179,FR,SG,201812,4,2,50,3 -181,FR,SG,201812,1,1,2069,798 -182,FR,SG,201812,1,1,166,242 -182,FR,SG,201812,1,1,185340,21429 -182,FR,SG,201812,1,1,57300,11865 -182,FR,SG,201812,3,1,37,1 -182,FR,SG,201812,1,2,15245,495 -182,FR,SG,201812,1,2,1858,70 -182,FR,SG,201812,1,2,14737,22986 -182,FR,SG,201812,1,2,1485882,1301887 -182,FR,SG,201812,1,2,6636,10001 -182,FR,SG,201812,3,2,3226,192 -182,FR,SG,201812,4,2,2576,135 -182,FR,SG,201812,4,2,1590,224 -182,FR,SG,201812,4,2,1599,60 -182,FR,SG,201812,4,2,1265,60 -321,FR,SG,201812,1,1,2976694,6019942 -321,FR,SG,201812,1,1,1907146,3840503 -321,FR,SG,201812,1,2,13848725,34903689 -323,FR,SG,201812,1,1,4298988,8217149 -323,FR,SG,201812,1,1,7767859,15485283 -323,FR,SG,201812,1,1,72658,141475 -323,FR,SG,201812,1,2,25012,37544 -325,FR,SG,201812,1,1,6333809,12742896 -325,FR,SG,201812,1,1,7216550,15122117 -325,FR,SG,201812,1,1,9671428,19795248 -330,FR,SG,201812,1,2,1015,124 -341,FR,SG,201812,3,1,63,2 -341,FR,SG,201812,1,2,2234,452 -341,FR,SG,201812,1,2,227,13 -341,FR,SG,201812,1,2,921126,431902 -341,FR,SG,201812,1,2,766,28 -341,FR,SG,201812,1,2,19310,7822 -341,FR,SG,201812,1,2,34378,10055 -341,FR,SG,201812,1,2,446,20 -341,FR,SG,201812,3,2,11014,4035 -341,FR,SG,201812,4,2,6237,999 -341,FR,SG,201812,4,2,236,16 -341,FR,SG,201812,4,2,5514,18 -341,FR,SG,201812,4,2,3324,560 -349,FR,SG,201812,1,2,14,3 -349,FR,SG,201812,4,2,13,0 -459,FR,SG,201812,3,2,23498,4000 -465,FR,SG,201812,3,1,150,7 -522,FR,SG,201812,3,1,5112,44 -532,FR,SG,201812,1,2,89640,4150 -532,FR,SG,201812,4,2,71,3 -533,FR,SG,201812,1,2,235554,60357 -536,FR,SG,201812,3,1,138,1 -536,FR,SG,201812,1,2,11268,6300 -536,FR,SG,201812,1,2,11369,5850 -536,FR,SG,201812,4,2,5,0 -542,FR,SG,201812,3,1,5245,44 -542,FR,SG,201812,1,2,20095,5262 -542,FR,SG,201812,1,2,98821,42608 -542,FR,SG,201812,1,2,5313,2356 -542,FR,SG,201812,4,2,7887,147 -543,FR,SG,201812,1,2,30760,1430 -551,FR,SG,201812,4,1,534,5 -551,FR,SG,201812,1,2,352753,38100 -551,FR,SG,201812,1,2,34,1 -551,FR,SG,201812,1,2,1959,870 -551,FR,SG,201812,1,2,439,3 -551,FR,SG,201812,3,2,63436,3821 -551,FR,SG,201812,4,2,107105,817 -551,FR,SG,201812,4,2,2123,6 -551,FR,SG,201812,4,2,9,1 -551,FR,SG,201812,4,2,622,0 -551,FR,SG,201812,4,2,1317,10 -551,FR,SG,201812,4,2,1514,42 -552,FR,SG,201812,3,1,693,21 -552,FR,SG,201812,1,2,6643,673 -552,FR,SG,201812,1,2,155,3 -552,FR,SG,201812,1,2,1506,2 -552,FR,SG,201812,4,2,603652,549 -552,FR,SG,201812,4,2,344,104 -552,FR,SG,201812,4,2,100,90 -552,FR,SG,201812,4,2,1160,9 -552,FR,SG,201812,4,2,5837,1 -562,FR,SG,201812,4,2,18828,230 -565,FR,SG,201812,4,1,10683,15 -565,FR,SG,201812,4,1,623,23 -565,FR,SG,201812,4,2,11343,135 -565,FR,SG,201812,4,2,1924,8 -565,FR,SG,201812,4,2,7740,35 -565,FR,SG,201812,4,2,1018,30 -565,FR,SG,201812,4,2,308,1 -568,FR,SG,201812,3,1,6427,76 -568,FR,SG,201812,4,1,120526,3395 -568,FR,SG,201812,4,1,3282,41 -568,FR,SG,201812,4,1,27164,39 -568,FR,SG,201812,1,2,43823,5475 -568,FR,SG,201812,1,2,7500,391 -568,FR,SG,201812,1,2,21863,1128 -568,FR,SG,201812,1,2,7800,1174 -568,FR,SG,201812,1,2,156743,8705 -568,FR,SG,201812,1,2,581280,25280 -568,FR,SG,201812,1,2,494,10 -568,FR,SG,201812,4,2,256713,11111 -568,FR,SG,201812,4,2,1784,20 -568,FR,SG,201812,4,2,368562,23615 -568,FR,SG,201812,4,2,440,15 -568,FR,SG,201812,4,2,451,20 -568,FR,SG,201812,4,2,668,20 -568,FR,SG,201812,4,2,30,1 -568,FR,SG,201812,4,2,32,0 -611,FR,SG,201812,4,2,3241,56 -621,FR,SG,201812,1,2,36756,1812 -621,FR,SG,201812,1,2,90,6 -621,FR,SG,201812,1,2,3904,449 -621,FR,SG,201812,4,2,865,41 -642,FR,SG,201812,1,2,73695,432000 -642,FR,SG,201812,1,2,36847,216000 -691,FR,SG,201812,3,1,60,2 -691,FR,SG,201812,1,2,33555,1543 -691,FR,SG,201812,1,2,75,0 -691,FR,SG,201812,1,2,1038,60 -691,FR,SG,201812,1,2,3894,13442 -691,FR,SG,201812,1,2,356,0 -691,FR,SG,201812,3,2,5,3 -691,FR,SG,201812,4,2,134797,192 -692,FR,SG,201812,1,2,850,285 -692,FR,SG,201812,1,2,2614,2324 -692,FR,SG,201812,1,2,6371,20272 -692,FR,SG,201812,1,2,5802,19676 -692,FR,SG,201812,1,2,6508,20667 -692,FR,SG,201812,3,2,558,315 -719,FR,SG,201812,1,2,12025,181710 -724,FR,SG,201812,4,2,27287,950 -811,FR,SG,201812,1,2,4538,1431 -814,FR,SG,201812,4,2,325,2 -819,FR,SG,201812,1,1,1934,747 -819,FR,SG,201812,1,1,42810,6033 -819,FR,SG,201812,1,1,15777,4000 -819,FR,SG,201812,3,1,148,0 -819,FR,SG,201812,3,1,12,0 -819,FR,SG,201812,4,1,6901,0 -819,FR,SG,201812,1,2,53194,4503 -819,FR,SG,201812,1,2,1200,50 -819,FR,SG,201812,1,2,8145,600 -819,FR,SG,201812,1,2,2459,25 -819,FR,SG,201812,1,2,230203,18303 -819,FR,SG,201812,1,2,55468,36500 -819,FR,SG,201812,1,2,26727,30000 -819,FR,SG,201812,1,2,395133,7000 -819,FR,SG,201812,1,2,831,160 -819,FR,SG,201812,1,2,767351,194500 -819,FR,SG,201812,1,2,88613,61056 -819,FR,SG,201812,1,2,7191,9750 -819,FR,SG,201812,1,2,115690,6000 -819,FR,SG,201812,1,2,14357,20000 -819,FR,SG,201812,3,2,192944,12830 -819,FR,SG,201812,3,2,48111,28400 -819,FR,SG,201812,4,2,1495077,12177 -819,FR,SG,201812,4,2,277,25 -819,FR,SG,201812,4,2,737,74 -819,FR,SG,201812,4,2,7600,217 -819,FR,SG,201812,4,2,714428,1013 -819,FR,SG,201812,4,2,84,5 -819,FR,SG,201812,4,2,2542,25 -819,FR,SG,201812,4,2,1109,17 -819,FR,SG,201812,4,2,8818,72 -842,FR,SG,201812,1,2,83713,1357900 -891,FR,SG,201812,1,1,16161,1950 -891,FR,SG,201812,1,1,455120,118288 -891,FR,SG,201812,1,1,2165658,1314250 -891,FR,SG,201812,1,1,591504,230400 -891,FR,SG,201812,3,1,2174,8 -891,FR,SG,201812,4,1,3673387,301 -891,FR,SG,201812,4,1,4702,14 -891,FR,SG,201812,4,1,21862196,1700 -891,FR,SG,201812,1,2,124870,13043 -891,FR,SG,201812,1,2,8403,160 -891,FR,SG,201812,1,2,19355,1120 -891,FR,SG,201812,1,2,8394,3926 -891,FR,SG,201812,1,2,8981,1500 -891,FR,SG,201812,1,2,44208,1546 -891,FR,SG,201812,1,2,2400274,874085 -891,FR,SG,201812,1,2,821369,601953 -891,FR,SG,201812,1,2,353863,210100 -891,FR,SG,201812,1,2,174,11 -891,FR,SG,201812,1,2,61142,25860 -891,FR,SG,201812,1,2,7906,580 -891,FR,SG,201812,1,2,501,0 -891,FR,SG,201812,3,2,41358,12305 -891,FR,SG,201812,3,2,34795,3622 -891,FR,SG,201812,4,2,31095216,9340 -891,FR,SG,201812,4,2,30,0 -891,FR,SG,201812,4,2,11873,479 -891,FR,SG,201812,4,2,100443,1442 -891,FR,SG,201812,4,2,690,1 -891,FR,SG,201812,4,2,69831,1265 -891,FR,SG,201812,4,2,37,5 -891,FR,SG,201812,4,2,73551,1356 -891,FR,SG,201812,4,2,4938,175 -891,FR,SG,201812,4,2,1,213 -891,FR,SG,201812,4,2,12032,840 -891,FR,SG,201812,4,2,7290,62 -891,FR,SG,201812,4,2,14832,546 -892,FR,SG,201812,4,1,1277,22 -892,FR,SG,201812,1,2,23602,4013 -892,FR,SG,201812,1,2,4051,575 -892,FR,SG,201812,1,2,17340,1646 -892,FR,SG,201812,1,2,14967,2500 -892,FR,SG,201812,1,2,64,1 -892,FR,SG,201812,1,2,865,1 -892,FR,SG,201812,4,2,14938,173 -892,FR,SG,201812,4,2,1057,5 -892,FR,SG,201812,4,2,14253,878 -892,FR,SG,201812,4,2,1767,9 -892,FR,SG,201812,4,2,20289,200 -893,FR,SG,201812,0,1,156,11 -893,FR,SG,201812,1,1,197343,3284 -893,FR,SG,201812,1,1,59953,1440 -893,FR,SG,201812,1,1,6663,187 -893,FR,SG,201812,1,1,6500,45 -893,FR,SG,201812,1,1,121115,2315 -893,FR,SG,201812,1,1,1287317,129604 -893,FR,SG,201812,1,1,750026,16675 -893,FR,SG,201812,3,1,1160,8 -893,FR,SG,201812,3,1,125,1 -893,FR,SG,201812,4,1,232663,3392 -893,FR,SG,201812,4,1,739,6 -893,FR,SG,201812,4,1,106,1 -893,FR,SG,201812,4,1,574,20 -893,FR,SG,201812,4,1,70182,2906 -893,FR,SG,201812,4,1,2446,10 -893,FR,SG,201812,4,1,6576,111 -893,FR,SG,201812,4,1,774,1 -893,FR,SG,201812,0,2,589,12 -893,FR,SG,201812,1,2,4556562,190108 -893,FR,SG,201812,1,2,29369,5608 -893,FR,SG,201812,1,2,44641,535 -893,FR,SG,201812,1,2,16317,673 -893,FR,SG,201812,1,2,999,200 -893,FR,SG,201812,1,2,310790,11868 -893,FR,SG,201812,1,2,80360,1155 -893,FR,SG,201812,1,2,188142,6062 -893,FR,SG,201812,1,2,19759234,546520 -893,FR,SG,201812,1,2,457739,10929 -893,FR,SG,201812,1,2,12016,18144 -893,FR,SG,201812,1,2,29367753,1059883 -893,FR,SG,201812,1,2,3489474,70854 -893,FR,SG,201812,1,2,7123451,117044 -893,FR,SG,201812,1,2,62095,6762 -893,FR,SG,201812,1,2,688844,25626 -893,FR,SG,201812,3,2,430264,15734 -893,FR,SG,201812,3,2,2578,325 -893,FR,SG,201812,3,2,32724,820 -893,FR,SG,201812,3,2,152751,3161 -893,FR,SG,201812,4,2,28842140,375848 -893,FR,SG,201812,4,2,4377,42 -893,FR,SG,201812,4,2,156414,365 -893,FR,SG,201812,4,2,49915,1673 -893,FR,SG,201812,4,2,40556,980 -893,FR,SG,201812,4,2,17020,1143 -893,FR,SG,201812,4,2,775,2 -893,FR,SG,201812,4,2,5445,250 -893,FR,SG,201812,4,2,163390,5494 -893,FR,SG,201812,4,2,45393,1408 -893,FR,SG,201812,4,2,4378606,177123 -893,FR,SG,201812,4,2,101267,2647 -893,FR,SG,201812,4,2,4563,50 -893,FR,SG,201812,4,2,35658,1250 -893,FR,SG,201812,4,2,242901,694 -895,FR,SG,201812,4,1,506,1 -895,FR,SG,201812,1,2,10436,34500 -895,FR,SG,201812,1,2,46830,88950 -895,FR,SG,201812,1,2,10002,34500 -896,FR,SG,201812,1,1,191622,135160 -896,FR,SG,201812,3,1,6670,22 -896,FR,SG,201812,4,1,68445,173 -896,FR,SG,201812,4,1,178,3 -896,FR,SG,201812,4,1,410,3 -896,FR,SG,201812,4,1,25709,80 -896,FR,SG,201812,4,1,170,3 -896,FR,SG,201812,1,2,4878767,2885732 -896,FR,SG,201812,1,2,675,140 -896,FR,SG,201812,1,2,1227,450 -896,FR,SG,201812,1,2,43663,2803 -896,FR,SG,201812,1,2,428976,218050 -896,FR,SG,201812,1,2,4086499,1146651 -896,FR,SG,201812,1,2,10493,8000 -896,FR,SG,201812,1,2,1365800,410820 -896,FR,SG,201812,1,2,15490,7478 -896,FR,SG,201812,1,2,167199,5197 -896,FR,SG,201812,1,2,1693260,584650 -896,FR,SG,201812,1,2,29700,126000 -896,FR,SG,201812,1,2,982903,439290 -896,FR,SG,201812,1,2,1749452,999100 -896,FR,SG,201812,1,2,78063,40800 -896,FR,SG,201812,1,2,168005,34746 -896,FR,SG,201812,3,2,38754,37480 -896,FR,SG,201812,3,2,100178,39840 -896,FR,SG,201812,4,2,8478749,14264 -896,FR,SG,201812,4,2,9854,51 -896,FR,SG,201812,4,2,2742,156 -896,FR,SG,201812,4,2,123752,263 -896,FR,SG,201812,4,2,12811,465 -896,FR,SG,201812,4,2,9749,705 -896,FR,SG,201812,4,2,35722,2231 -896,FR,SG,201812,4,2,19800,133 -896,FR,SG,201812,4,2,56026,2553 -896,FR,SG,201812,4,2,1401,120 -896,FR,SG,201812,4,2,41618,2390 -896,FR,SG,201812,4,2,50521,95 -910,FR,SG,201812,0,1,12465,363 -910,FR,SG,201812,1,1,2761,200 -910,FR,SG,201812,1,1,70,17 -910,FR,SG,201812,3,1,27919,318 -910,FR,SG,201812,3,1,15977,4 -910,FR,SG,201812,4,1,587712,1155 -910,FR,SG,201812,4,1,62201,115 -910,FR,SG,201812,4,1,255,0 -910,FR,SG,201812,4,1,229572,116 -910,FR,SG,201812,4,1,341170,6067 -910,FR,SG,201812,4,1,5130,1 -910,FR,SG,201812,0,2,76,3 -910,FR,SG,201812,1,2,207910,3692 -910,FR,SG,201812,1,2,19589,741 -910,FR,SG,201812,1,2,1198537,1800 -910,FR,SG,201812,1,2,3790,713 -910,FR,SG,201812,1,2,414034,14975 -910,FR,SG,201812,1,2,378242,14300 -910,FR,SG,201812,1,2,9146,1113 -910,FR,SG,201812,1,2,670293,311011 -910,FR,SG,201812,1,2,246066,2040 -910,FR,SG,201812,1,2,3225,3740 -910,FR,SG,201812,1,2,703536,74170 -910,FR,SG,201812,1,2,998746,61777 -910,FR,SG,201812,2,2,490000,70050 -910,FR,SG,201812,3,2,278798,12656 -910,FR,SG,201812,3,2,90000,12973 -910,FR,SG,201812,3,2,10000,1425 -910,FR,SG,201812,4,2,5478227,31546 -910,FR,SG,201812,4,2,81128,138 -910,FR,SG,201812,4,2,705921,657 -910,FR,SG,201812,4,2,290601,19290 -910,FR,SG,201812,4,2,88757,130 -910,FR,SG,201812,4,2,149320,225 -910,FR,SG,201812,4,2,59970,90 -910,FR,SG,201812,4,2,56288,84 -910,FR,SG,201812,4,2,32484,1103 -910,FR,SG,201812,4,2,1279,35 -910,FR,SG,201812,4,2,1946429,5068 -910,FR,SG,201812,4,2,4577,8 -910,FR,SG,201812,4,2,790860,10010 -910,FR,SG,201812,4,2,29418,50 -910,FR,SG,201812,4,2,909974,564 -910,FR,SG,201812,9,2,248521344,384000 -920,FR,SG,201812,3,1,368,13 -920,FR,SG,201812,3,2,190,4 -931,FR,SG,201812,0,1,71731,1198 -931,FR,SG,201812,1,1,5508,69 -931,FR,SG,201812,1,1,56702,1415 -931,FR,SG,201812,1,1,690,10 -931,FR,SG,201812,1,1,93703,5371 -931,FR,SG,201812,3,1,495151,2524 -931,FR,SG,201812,3,1,23846,176 -931,FR,SG,201812,3,1,1033,0 -931,FR,SG,201812,3,1,1441,0 -931,FR,SG,201812,3,1,9730,4 -931,FR,SG,201812,3,1,686648,358 -931,FR,SG,201812,3,1,3312902,2621 -931,FR,SG,201812,3,1,350072,669 -931,FR,SG,201812,4,1,6166800,6517 -931,FR,SG,201812,4,1,146173,1047 -931,FR,SG,201812,4,1,1512000,4166 -931,FR,SG,201812,4,1,10520,3 -931,FR,SG,201812,4,1,1495,15 -931,FR,SG,201812,4,1,35179,253 -931,FR,SG,201812,4,1,8110076,7517 -931,FR,SG,201812,4,1,8211,89 -931,FR,SG,201812,4,1,1177,15 -931,FR,SG,201812,4,1,670995,1595 -931,FR,SG,201812,4,1,58024,394 -931,FR,SG,201812,4,1,58932,188 -931,FR,SG,201812,4,1,1503111,887 -931,FR,SG,201812,4,1,18194,160 -931,FR,SG,201812,4,1,2400,4 -931,FR,SG,201812,4,1,22068,1 -931,FR,SG,201812,0,2,15303,64 -931,FR,SG,201812,1,2,3190121,119622 -931,FR,SG,201812,1,2,142346,2792 -931,FR,SG,201812,1,2,13947,681 -931,FR,SG,201812,1,2,17031,2845 -931,FR,SG,201812,1,2,64909,17946 -931,FR,SG,201812,1,2,170748,4677 -931,FR,SG,201812,1,2,18631,286 -931,FR,SG,201812,1,2,4355,26 -931,FR,SG,201812,1,2,21655,367 -931,FR,SG,201812,1,2,618332,42920 -931,FR,SG,201812,1,2,223250,12400 -931,FR,SG,201812,1,2,23591,9670 -931,FR,SG,201812,1,2,945425,49349 -931,FR,SG,201812,1,2,279,3 -931,FR,SG,201812,1,2,48532,571 -931,FR,SG,201812,3,2,398135,5286 -931,FR,SG,201812,3,2,66384,130 -931,FR,SG,201812,4,2,61418704,56232 -931,FR,SG,201812,4,2,6529,302 -931,FR,SG,201812,4,2,1062860,716 -931,FR,SG,201812,4,2,128749,266 -931,FR,SG,201812,4,2,105438,2215 -931,FR,SG,201812,4,2,132,2 -931,FR,SG,201812,4,2,30187,44 -931,FR,SG,201812,4,2,6990,3 -931,FR,SG,201812,4,2,700279,198 -931,FR,SG,201812,4,2,115296,800 -931,FR,SG,201812,4,2,10330,121 -931,FR,SG,201812,4,2,126974,1620 -931,FR,SG,201812,4,2,45316,704 -931,FR,SG,201812,4,2,8984,1 -931,FR,SG,201812,4,2,40613,484 -931,FR,SG,201812,4,2,85522,213 -931,FR,SG,201812,4,2,2362029,14194 -931,FR,SG,201812,4,2,2707,450 -931,FR,SG,201812,4,2,58411,475 -931,FR,SG,201812,4,2,1981,84 -931,FR,SG,201812,4,2,12113,601 -931,FR,SG,201812,4,2,22959,384 -931,FR,SG,201812,4,2,214964,4521 -931,FR,SG,201812,4,2,69080,139 -931,FR,SG,201812,4,2,2237362,37520 -931,FR,SG,201812,4,2,320315,1354 -931,FR,SG,201812,4,2,2343811,2303 -931,FR,SG,201812,5,2,488,7 -939,FR,SG,201812,0,1,250561,2956 -939,FR,SG,201812,1,1,3267,6 -939,FR,SG,201812,1,1,370,225 -939,FR,SG,201812,1,1,2005,34 -939,FR,SG,201812,1,1,649763,23548 -939,FR,SG,201812,1,1,106506,18750 -939,FR,SG,201812,1,1,108622,1592 -939,FR,SG,201812,1,1,6,10 -939,FR,SG,201812,3,1,548508,2961 -939,FR,SG,201812,3,1,4329,0 -939,FR,SG,201812,3,1,3891,21 -939,FR,SG,201812,3,1,3996,8 -939,FR,SG,201812,4,1,1341955,3833 -939,FR,SG,201812,4,1,338789,2052 -939,FR,SG,201812,4,1,1333893,8747 -939,FR,SG,201812,4,1,4853749,14104 -939,FR,SG,201812,4,1,168,0 -939,FR,SG,201812,4,1,14297,131 -939,FR,SG,201812,4,1,1354117,2408 -939,FR,SG,201812,4,1,51544,1481 -939,FR,SG,201812,4,1,5354622,2426 -939,FR,SG,201812,4,1,169,0 -939,FR,SG,201812,4,1,1248,20 -939,FR,SG,201812,4,1,10805,30 -939,FR,SG,201812,4,1,24346,17 -939,FR,SG,201812,4,1,56568674,119076 -939,FR,SG,201812,4,1,25551,241 -939,FR,SG,201812,4,1,602753,2677 -939,FR,SG,201812,4,1,20378,58 -939,FR,SG,201812,4,1,432,3 -939,FR,SG,201812,0,2,250,2 -939,FR,SG,201812,1,2,2341654,144238 -939,FR,SG,201812,1,2,3098,33 -939,FR,SG,201812,1,2,519,1 -939,FR,SG,201812,1,2,8600,100 -939,FR,SG,201812,1,2,276204,9914 -939,FR,SG,201812,1,2,15600,1805 -939,FR,SG,201812,1,2,141319,9473 -939,FR,SG,201812,1,2,134559,8792 -939,FR,SG,201812,1,2,25526,365 -939,FR,SG,201812,1,2,330686,7078 -939,FR,SG,201812,1,2,17630,332 -939,FR,SG,201812,1,2,5095,271 -939,FR,SG,201812,1,2,18185,2600 -939,FR,SG,201812,1,2,8596,501 -939,FR,SG,201812,1,2,19890,3067 -939,FR,SG,201812,1,2,16559,2411 -939,FR,SG,201812,1,2,18410,171 -939,FR,SG,201812,1,2,453510,93806 -939,FR,SG,201812,1,2,1395781,89416 -939,FR,SG,201812,1,2,54084,15000 -939,FR,SG,201812,1,2,1142205,11261 -939,FR,SG,201812,1,2,298282,12538 -939,FR,SG,201812,1,2,131825,8594 -939,FR,SG,201812,1,2,193361,13572 -939,FR,SG,201812,1,2,2982774,77428 -939,FR,SG,201812,1,2,52826,7476 -939,FR,SG,201812,1,2,179340,35070 -939,FR,SG,201812,1,2,142235,2053 -939,FR,SG,201812,3,2,247238,3615 -939,FR,SG,201812,3,2,4209,33 -939,FR,SG,201812,3,2,670,14 -939,FR,SG,201812,4,2,12220726,53825 -939,FR,SG,201812,4,2,38148,2030 -939,FR,SG,201812,4,2,138587,345 -939,FR,SG,201812,4,2,926798,16993 -939,FR,SG,201812,4,2,145856,1073 -939,FR,SG,201812,4,2,9143,121 -939,FR,SG,201812,4,2,100209,4570 -939,FR,SG,201812,4,2,4876865,9612 -939,FR,SG,201812,4,2,8000,140 -939,FR,SG,201812,4,2,14640,240 -939,FR,SG,201812,4,2,312443,447 -939,FR,SG,201812,4,2,4660,322 -939,FR,SG,201812,4,2,157130,50 -939,FR,SG,201812,4,2,2016,18 -939,FR,SG,201812,4,2,191546,2119 -939,FR,SG,201812,4,2,87106,1787 -939,FR,SG,201812,4,2,314459,1168 -939,FR,SG,201812,4,2,36336,143 -939,FR,SG,201812,4,2,15103168,28106 -939,FR,SG,201812,4,2,88817,2154 -939,FR,SG,201812,4,2,2444612,1951 -939,FR,SG,201812,4,2,49148,240 -939,FR,SG,201812,4,2,2548,3 -939,FR,SG,201812,4,2,3495,3 -939,FR,SG,201812,4,2,4535,15 -939,FR,SG,201812,4,2,1426518,53640 -939,FR,SG,201812,4,2,40678,153 -939,FR,SG,201812,4,2,273445,1033 -939,FR,SG,201812,5,2,71,3 -941,FR,SG,201812,0,1,344,19 -941,FR,SG,201812,1,1,122316,5064 -941,FR,SG,201812,3,1,1079,90 -941,FR,SG,201812,4,1,6409,80 -941,FR,SG,201812,1,2,8402,419 -941,FR,SG,201812,1,2,4453,820 -941,FR,SG,201812,1,2,32339,10611 -941,FR,SG,201812,4,2,47069,571 -949,FR,SG,201812,0,1,2234,139 -949,FR,SG,201812,1,1,1139,361 -949,FR,SG,201812,1,1,1526,158 -949,FR,SG,201812,1,1,3239,22703 -949,FR,SG,201812,1,1,168227,15169 -949,FR,SG,201812,1,1,174941,14532 -949,FR,SG,201812,3,1,19413,362 -949,FR,SG,201812,3,1,30,0 -949,FR,SG,201812,3,1,1150,1 -949,FR,SG,201812,4,1,49693,1527 -949,FR,SG,201812,4,1,123,0 -949,FR,SG,201812,4,1,13135,850 -949,FR,SG,201812,4,1,147,0 -949,FR,SG,201812,4,1,1782,51 -949,FR,SG,201812,4,1,27447,203 -949,FR,SG,201812,4,1,4477,2 -949,FR,SG,201812,4,1,27980,50 -949,FR,SG,201812,4,1,12,2 -949,FR,SG,201812,4,1,5710,4 -949,FR,SG,201812,0,2,636,2 -949,FR,SG,201812,1,2,695949,15729 -949,FR,SG,201812,1,2,31562,5230 -949,FR,SG,201812,1,2,2250,15 -949,FR,SG,201812,1,2,6030,346 -949,FR,SG,201812,1,2,28145,868 -949,FR,SG,201812,1,2,1185,133 -949,FR,SG,201812,1,2,1250,10 -949,FR,SG,201812,1,2,10152,100 -949,FR,SG,201812,1,2,38735,1860 -949,FR,SG,201812,1,2,158951,1882 -949,FR,SG,201812,1,2,24470,1957 -949,FR,SG,201812,1,2,434,16 -949,FR,SG,201812,1,2,190019,21860 -949,FR,SG,201812,1,2,54748,2886 -949,FR,SG,201812,3,2,99854,23647 -949,FR,SG,201812,4,2,3499294,21234 -949,FR,SG,201812,4,2,17047,51 -949,FR,SG,201812,4,2,27297,29 -949,FR,SG,201812,4,2,50211,270 -949,FR,SG,201812,4,2,21165,270 -949,FR,SG,201812,4,2,217,4 -949,FR,SG,201812,4,2,3216,8 -949,FR,SG,201812,4,2,3689,135 -949,FR,SG,201812,4,2,51956,187 -949,FR,SG,201812,4,2,16789,59 -949,FR,SG,201812,4,2,344,10 -949,FR,SG,201812,4,2,9048,139 -949,FR,SG,201812,4,2,150813,999 -949,FR,SG,201812,4,2,1774,79 -949,FR,SG,201812,4,2,16849,2157 -949,FR,SG,201812,4,2,64818,4930 -949,FR,SG,201812,4,2,14179,56 -949,FR,SG,201812,4,2,76139,1049 -951,FR,SG,201812,0,1,92,5 -951,FR,SG,201812,3,1,2501,62 -951,FR,SG,201812,1,2,355,26 -951,FR,SG,201812,1,2,6161,354 -951,FR,SG,201812,1,2,2636,48 -951,FR,SG,201812,1,2,1601,66 -951,FR,SG,201812,4,2,22243,82 -951,FR,SG,201812,4,2,15757,264 -951,FR,SG,201812,4,2,1000,30 -952,FR,SG,201812,0,1,355588,8 -952,FR,SG,201812,1,1,403,4 -952,FR,SG,201812,3,1,2354,50 -952,FR,SG,201812,4,1,231502,1 -952,FR,SG,201812,4,1,8740,41 -952,FR,SG,201812,4,1,2027,1 -952,FR,SG,201812,4,1,46,27 -952,FR,SG,201812,1,2,42346,1421 -952,FR,SG,201812,1,2,1288,133 -952,FR,SG,201812,1,2,47718,5255 -952,FR,SG,201812,1,2,547,80 -952,FR,SG,201812,1,2,10044,140 -952,FR,SG,201812,1,2,38887,5915 -952,FR,SG,201812,1,2,72305,10379 -952,FR,SG,201812,1,2,1021,40 -952,FR,SG,201812,1,2,153541,47629 -952,FR,SG,201812,1,2,350,5 -952,FR,SG,201812,3,2,8487,324 -952,FR,SG,201812,4,2,215053,2585 -952,FR,SG,201812,4,2,855,5 -952,FR,SG,201812,4,2,9050,49 -952,FR,SG,201812,4,2,44170,80 -952,FR,SG,201812,4,2,3623,0 -952,FR,SG,201812,4,2,32378,240 -952,FR,SG,201812,4,2,48402,1525 -952,FR,SG,201812,4,2,1849,345 -952,FR,SG,201812,4,2,3905,470 -952,FR,SG,201812,4,2,1128,1 -961,FR,SG,201812,0,1,51,3 -961,FR,SG,201812,3,1,1935,9 -961,FR,SG,201812,4,1,11073,26 -961,FR,SG,201812,1,2,1013,21 -961,FR,SG,201812,4,2,1288354,701 -961,FR,SG,201812,4,2,1193,6 -961,FR,SG,201812,4,2,12433,231 -961,FR,SG,201812,4,2,1974,4 -961,FR,SG,201812,4,2,22934,30 -961,FR,SG,201812,4,2,6216,110 -962,FR,SG,201812,0,1,1591,98 -962,FR,SG,201812,1,1,10790,255 -962,FR,SG,201812,3,1,11272,137 -962,FR,SG,201812,4,1,2472,30 -962,FR,SG,201812,4,1,7904,2 -962,FR,SG,201812,4,1,18,4 -962,FR,SG,201812,4,1,64,3 -962,FR,SG,201812,0,2,277,8 -962,FR,SG,201812,1,2,15296,1545 -962,FR,SG,201812,1,2,5824,452 -962,FR,SG,201812,1,2,1186,33 -962,FR,SG,201812,1,2,176,6 -962,FR,SG,201812,1,2,522,36 -962,FR,SG,201812,1,2,48570,2100 -962,FR,SG,201812,1,2,162474,9974 -962,FR,SG,201812,1,2,17689,4103 -962,FR,SG,201812,1,2,14568,422 -962,FR,SG,201812,1,2,9355,13313 -962,FR,SG,201812,1,2,62770,2585 -962,FR,SG,201812,3,2,46043,1861 -962,FR,SG,201812,4,2,781537,9438 -962,FR,SG,201812,4,2,1006,1 -962,FR,SG,201812,4,2,4042,26 -962,FR,SG,201812,4,2,126219,1250 -962,FR,SG,201812,4,2,1520,8 -962,FR,SG,201812,4,2,3715,134 -962,FR,SG,201812,4,2,17732,120 -962,FR,SG,201812,4,2,20638,1264 -962,FR,SG,201812,4,2,10123,34 -962,FR,SG,201812,4,2,58043,1730 -962,FR,SG,201812,4,2,34645,179 -962,FR,SG,201812,4,2,13715,90 -963,FR,SG,201812,0,1,7140,405 -963,FR,SG,201812,1,1,3814,145 -963,FR,SG,201812,1,1,34563,8989 -963,FR,SG,201812,3,1,178423,1030 -963,FR,SG,201812,3,1,11,0 -963,FR,SG,201812,4,1,185065,141 -963,FR,SG,201812,4,1,1081,100 -963,FR,SG,201812,4,1,8407,15 -963,FR,SG,201812,4,1,10830,23 -963,FR,SG,201812,4,1,1767,17 -963,FR,SG,201812,4,1,807,12 -963,FR,SG,201812,4,1,148566,175 -963,FR,SG,201812,4,1,275,16 -963,FR,SG,201812,4,1,77,6 -963,FR,SG,201812,0,2,37016,114 -963,FR,SG,201812,1,2,63619,1360 -963,FR,SG,201812,1,2,4892,62 -963,FR,SG,201812,1,2,6331,185 -963,FR,SG,201812,1,2,189672,1061 -963,FR,SG,201812,1,2,26166,165 -963,FR,SG,201812,1,2,15,1 -963,FR,SG,201812,1,2,4,3 -963,FR,SG,201812,1,2,145,6 -963,FR,SG,201812,1,2,31357,557 -963,FR,SG,201812,1,2,58206,1063 -963,FR,SG,201812,3,2,60919,624 -963,FR,SG,201812,4,2,119591653,128748 -963,FR,SG,201812,4,2,5752,53 -963,FR,SG,201812,4,2,44191,173 -963,FR,SG,201812,4,2,276097,578 -963,FR,SG,201812,4,2,35948,97 -963,FR,SG,201812,4,2,163718,392 -963,FR,SG,201812,4,2,77851,1485 -963,FR,SG,201812,4,2,4404,225 -963,FR,SG,201812,4,2,179355,340 -963,FR,SG,201812,4,2,1678,250 -963,FR,SG,201812,4,2,1659028,3286 -963,FR,SG,201812,4,2,76913,927 -963,FR,SG,201812,4,2,1780,14 -963,FR,SG,201812,4,2,125144,3920 -963,FR,SG,201812,4,2,72958,204 -963,FR,SG,201812,4,2,120302,514 -963,FR,SG,201812,5,2,1372,12 -971,FR,SG,201812,0,1,158,2 -971,FR,SG,201812,1,1,139006,6592 -971,FR,SG,201812,3,1,143,2 -971,FR,SG,201812,4,1,3080,80 -971,FR,SG,201812,4,1,2135,4 -971,FR,SG,201812,4,1,1537,2 -971,FR,SG,201812,4,1,968,2 -971,FR,SG,201812,1,2,293,10 -971,FR,SG,201812,1,2,2167,22 -971,FR,SG,201812,1,2,9977,460 -971,FR,SG,201812,1,2,3035,90 -971,FR,SG,201812,1,2,14781,788 -971,FR,SG,201812,1,2,35366,5347 -971,FR,SG,201812,1,2,64365,9286 -971,FR,SG,201812,1,2,28981,2075 -971,FR,SG,201812,3,2,1798,54 -971,FR,SG,201812,3,2,113052,6714 -971,FR,SG,201812,4,2,516270,3692 -971,FR,SG,201812,4,2,8755,5 -971,FR,SG,201812,4,2,4700,168 -971,FR,SG,201812,4,2,67,3 -971,FR,SG,201812,4,2,6,37 -971,FR,SG,201812,4,2,422,1 -971,FR,SG,201812,4,2,31096,737 -971,FR,SG,201812,4,2,9935,2570 -971,FR,SG,201812,4,2,12932,9 -972,FR,SG,201812,1,1,679,61 -972,FR,SG,201812,1,1,17962,19143 -972,FR,SG,201812,1,1,19942,20005 -972,FR,SG,201812,3,1,638,12 -972,FR,SG,201812,1,2,65412,23192 -972,FR,SG,201812,4,2,20344,823 -972,FR,SG,201812,4,2,884,71 -972,FR,SG,201812,4,2,766,119 -972,FR,SG,201812,4,2,4052,561 -972,FR,SG,201812,4,2,21730,90 -972,FR,SG,201812,4,2,435,86 -973,FR,SG,201812,1,1,12016,998 -973,FR,SG,201812,1,1,130904,16400 -973,FR,SG,201812,1,1,1169,137 -973,FR,SG,201812,3,1,9290,249 -973,FR,SG,201812,4,1,23,12 -973,FR,SG,201812,4,1,1633,10 -973,FR,SG,201812,4,1,2,0 -973,FR,SG,201812,1,2,15439,2197 -973,FR,SG,201812,1,2,126,1 -973,FR,SG,201812,1,2,949,27 -973,FR,SG,201812,1,2,7881,402 -973,FR,SG,201812,1,2,39489,18876 -973,FR,SG,201812,1,2,151,4 -973,FR,SG,201812,1,2,85450,8300 -973,FR,SG,201812,1,2,24873,23350 -973,FR,SG,201812,1,2,1555,76 -973,FR,SG,201812,1,2,270,0 -973,FR,SG,201812,3,2,10413,952 -973,FR,SG,201812,4,2,125382,3376 -973,FR,SG,201812,4,2,4852,688 -973,FR,SG,201812,4,2,2,3 -973,FR,SG,201812,4,2,3128,60 -973,FR,SG,201812,4,2,89,17 -973,FR,SG,201812,4,2,1,1 -973,FR,SG,201812,4,2,3047,220 -974,FR,SG,201812,0,1,274,2 -974,FR,SG,201812,1,1,21864,3223 -974,FR,SG,201812,1,1,4026,1234 -974,FR,SG,201812,1,1,18,4 -974,FR,SG,201812,3,1,8100,517 -974,FR,SG,201812,4,1,947,59 -974,FR,SG,201812,4,1,3987,146 -974,FR,SG,201812,4,1,46,0 -974,FR,SG,201812,4,1,1354,25 -974,FR,SG,201812,4,1,1832,181 -974,FR,SG,201812,4,1,149,33 -974,FR,SG,201812,5,1,10726,2 -974,FR,SG,201812,0,2,7775,282 -974,FR,SG,201812,1,2,1876,216 -974,FR,SG,201812,1,2,2768,30 -974,FR,SG,201812,1,2,44,715 -974,FR,SG,201812,1,2,1306,58 -974,FR,SG,201812,1,2,6082,469 -974,FR,SG,201812,1,2,4377,229 -974,FR,SG,201812,1,2,2154,719 -974,FR,SG,201812,3,2,2347,546 -974,FR,SG,201812,4,2,278185,2530 -974,FR,SG,201812,4,2,44,0 -974,FR,SG,201812,4,2,227,70 -974,FR,SG,201812,4,2,227,17 -974,FR,SG,201812,4,2,3014,102 -974,FR,SG,201812,4,2,10,70 -974,FR,SG,201812,4,2,295,9 -974,FR,SG,201812,4,2,2702,120 -974,FR,SG,201812,4,2,7415,309 -974,FR,SG,201812,4,2,30,80 -974,FR,SG,201812,4,2,26,2 -974,FR,SG,201812,4,2,2217,179 -974,FR,SG,201812,4,2,281,30 -974,FR,SG,201812,4,2,74422,2420 -974,FR,SG,201812,4,2,4926,150 -974,FR,SG,201812,4,2,12921,35 -975,FR,SG,201812,0,1,251,13 -975,FR,SG,201812,1,1,6000,259 -975,FR,SG,201812,1,1,2206,2603 -975,FR,SG,201812,3,1,1125,143 -975,FR,SG,201812,4,1,532,3 -975,FR,SG,201812,4,1,1170,2 -975,FR,SG,201812,4,1,614,16 -975,FR,SG,201812,4,1,120,220 -975,FR,SG,201812,1,2,22352,3100 -975,FR,SG,201812,1,2,67697,2008 -975,FR,SG,201812,1,2,4750,1100 -975,FR,SG,201812,1,2,95896,5395 -975,FR,SG,201812,1,2,65649,2361 -975,FR,SG,201812,1,2,1743,30 -975,FR,SG,201812,1,2,931,13 -975,FR,SG,201812,1,2,9385,356 -975,FR,SG,201812,3,2,7442,62 -975,FR,SG,201812,4,2,364802,4394 -975,FR,SG,201812,4,2,6854,1 -975,FR,SG,201812,4,2,63560,900 -975,FR,SG,201812,4,2,46703,2489 -975,FR,SG,201812,4,2,1484,40 -975,FR,SG,201812,4,2,606939,994 -975,FR,SG,201812,4,2,12216,1240 -975,FR,SG,201812,4,2,152313,59 -976,FR,SG,201812,0,1,857,58 -976,FR,SG,201812,1,1,4339,16800 -976,FR,SG,201812,1,1,3357,5424 -976,FR,SG,201812,1,1,3107,4486 -976,FR,SG,201812,3,1,515,15 -976,FR,SG,201812,4,1,15,8 -976,FR,SG,201812,0,2,128,3 -976,FR,SG,201812,1,2,5018,481 -976,FR,SG,201812,1,2,44,0 -976,FR,SG,201812,1,2,1838,181 -976,FR,SG,201812,3,2,125,13 -976,FR,SG,201812,4,2,182776,324 -976,FR,SG,201812,4,2,77,1 -976,FR,SG,201812,4,2,3126,186 -976,FR,SG,201812,4,2,203,4 -976,FR,SG,201812,4,2,15479,822 -976,FR,SG,201812,4,2,25396,2910 -976,FR,SG,201812,4,2,30000,30 -979,FR,SG,201812,0,1,56479,1019 -979,FR,SG,201812,1,1,4037,128 -979,FR,SG,201812,1,1,203060,2994 -979,FR,SG,201812,1,1,1841,539 -979,FR,SG,201812,1,1,5566,523 -979,FR,SG,201812,1,1,13780,4146 -979,FR,SG,201812,1,1,108969,4049 -979,FR,SG,201812,1,1,321336,7030 -979,FR,SG,201812,1,1,662987,24374 -979,FR,SG,201812,1,1,13515,6965 -979,FR,SG,201812,1,1,14929,4758 -979,FR,SG,201812,1,1,73565,2069 -979,FR,SG,201812,3,1,1686053,2356 -979,FR,SG,201812,3,1,328523,2633 -979,FR,SG,201812,3,1,4199,0 -979,FR,SG,201812,3,1,6524,13 -979,FR,SG,201812,3,1,1710,0 -979,FR,SG,201812,3,1,15585,17 -979,FR,SG,201812,3,1,246949,126 -979,FR,SG,201812,3,1,98740,41 -979,FR,SG,201812,4,1,10197211,6142 -979,FR,SG,201812,4,1,111039,1428 -979,FR,SG,201812,4,1,3347533,453 -979,FR,SG,201812,4,1,8041,480 -979,FR,SG,201812,4,1,221,2 -979,FR,SG,201812,4,1,2220088,4260 -979,FR,SG,201812,4,1,211713,70 -979,FR,SG,201812,4,1,9711,9 -979,FR,SG,201812,4,1,5994489,2715 -979,FR,SG,201812,4,1,2629,13 -979,FR,SG,201812,4,1,14319,35 -979,FR,SG,201812,4,1,328239,2816 -979,FR,SG,201812,4,1,13925,33 -979,FR,SG,201812,4,1,10112,38 -979,FR,SG,201812,4,1,4382198,5016 -979,FR,SG,201812,4,1,11934,117 -979,FR,SG,201812,4,1,31730,387 -979,FR,SG,201812,0,2,23208,87 -979,FR,SG,201812,1,2,159486,14838 -979,FR,SG,201812,1,2,59533,929 -979,FR,SG,201812,1,2,9250,192 -979,FR,SG,201812,1,2,8516,1331 -979,FR,SG,201812,1,2,4575,212 -979,FR,SG,201812,1,2,14256,1691 -979,FR,SG,201812,1,2,42092,982 -979,FR,SG,201812,1,2,767,0 -979,FR,SG,201812,1,2,473038,55057 -979,FR,SG,201812,1,2,9674,2876 -979,FR,SG,201812,1,2,1504,24 -979,FR,SG,201812,1,2,134522,4455 -979,FR,SG,201812,1,2,224,8 -979,FR,SG,201812,1,2,439229,27645 -979,FR,SG,201812,1,2,38050,6634 -979,FR,SG,201812,1,2,3046,66 -979,FR,SG,201812,1,2,811488,36186 -979,FR,SG,201812,3,2,207058,2049 -979,FR,SG,201812,3,2,400,10 -979,FR,SG,201812,4,2,8443164,23904 -979,FR,SG,201812,4,2,31389,283 -979,FR,SG,201812,4,2,360489,2941 -979,FR,SG,201812,4,2,3792,2 -979,FR,SG,201812,4,2,170,1 -979,FR,SG,201812,4,2,50451,225 -979,FR,SG,201812,4,2,2277374,135 -979,FR,SG,201812,4,2,1302,95 -979,FR,SG,201812,4,2,15719,224 -979,FR,SG,201812,4,2,314140,134 -979,FR,SG,201812,4,2,70,8 -979,FR,SG,201812,4,2,281137,1216 -979,FR,SG,201812,4,2,69474,583 -979,FR,SG,201812,4,2,2750,18 -979,FR,SG,201812,4,2,55229,321 -979,FR,SG,201812,4,2,877593,3844 -979,FR,SG,201812,4,2,130959,490 -979,FR,SG,201812,4,2,4318593,4443 -979,FR,SG,201812,4,2,89392,236 -979,FR,SG,201812,4,2,828299,109 -979,FR,SG,201812,4,2,2,15 -979,FR,SG,201812,4,2,1483,200 -979,FR,SG,201812,4,2,4003,42 -979,FR,SG,201812,4,2,104903,1186 -979,FR,SG,201812,4,2,32774,59 -979,FR,SG,201812,4,2,1593977,18050 -979,FR,SG,201812,4,2,54016,287 -979,FR,SG,201812,4,2,669779,731 -979,FR,SG,201812,5,2,51,0 -994,FR,SG,201812,4,1,47020,0 -994,FR,SG,201812,4,1,33022,0 -994,FR,SG,201812,1,2,4707,6 -999,FR,SG,201812,0,1,22470,0 -999,FR,SG,201812,1,1,6176,0 -999,FR,SG,201812,1,1,155370,0 -999,FR,SG,201812,1,1,37358,0 -999,FR,SG,201812,3,1,1111,0 -999,FR,SG,201812,4,1,14095,0 -999,FR,SG,201812,4,1,10000,0 -999,FR,SG,201812,4,1,1040,0 -999,FR,SG,201812,4,1,17000,0 -999,FR,SG,201812,0,2,2610,0 -999,FR,SG,201812,1,2,170568,15992 -999,FR,SG,201812,1,2,82590,954 -999,FR,SG,201812,1,2,11623,1169 -999,FR,SG,201812,1,2,4131,1785 -999,FR,SG,201812,1,2,18395,1160 -999,FR,SG,201812,1,2,553753,122808 -999,FR,SG,201812,1,2,46676,47525 -999,FR,SG,201812,1,2,8398,17025 -999,FR,SG,201812,1,2,152812,85000 -999,FR,SG,201812,1,2,3503,347 -999,FR,SG,201812,1,2,839373,229701 -999,FR,SG,201812,1,2,17204,0 -999,FR,SG,201812,1,2,34881,73200 -999,FR,SG,201812,1,2,53270,18000 -999,FR,SG,201812,1,2,498,0 -999,FR,SG,201812,1,2,101266,3000 -999,FR,SG,201812,1,2,15346,3600 -999,FR,SG,201812,3,2,40539,18380 -999,FR,SG,201812,4,2,203457,4857 -999,FR,SG,201812,4,2,16037,150 -999,FR,SG,201812,4,2,4206,2 -999,FR,SG,201812,4,2,5777,55 -999,FR,SG,201812,4,2,37518,26000 -999,FR,SG,201812,4,2,751,54 -999,FR,SG,201812,4,2,868,20 -999,FR,SG,201812,4,2,1850,0 -999,FR,SG,201812,4,2,21335,52 -999,FR,SG,201812,4,2,15549,2021 -999,FR,SG,201812,4,2,822,46 -999,FR,SG,201812,4,2,64344,1360 -999,FR,SG,201812,4,2,9449,25 -999,FR,SG,201812,4,2,15456,32 -015,FR,PH,201812,4,1,45,1 -015,FR,PH,201812,1,2,44059,132324 -016,FR,PH,201812,3,2,3698,2100 -035,FR,PH,201812,1,1,57032,28000 -035,FR,PH,201812,1,1,456948,232607 -035,FR,PH,201812,1,1,238455,110200 -035,FR,PH,201812,4,1,7669,140 -039,FR,PH,201812,4,2,4541,627 -039,FR,PH,201812,4,2,5321,724 -039,FR,PH,201812,4,2,3749,462 -039,FR,PH,201812,4,2,5231,555 -042,FR,PH,201812,4,2,129,12 -045,FR,PH,201812,3,1,784,8 -045,FR,PH,201812,4,1,1915,41 -051,FR,PH,201812,4,2,2354,10 -092,FR,PH,201812,1,2,83005,38047 -099,FR,PH,201812,1,1,253473,121320 -099,FR,PH,201812,1,1,44264,15000 -099,FR,PH,201812,1,1,255262,28941 -099,FR,PH,201812,1,1,43260,10130 -099,FR,PH,201812,3,1,692,16 -099,FR,PH,201812,4,1,53,1 -099,FR,PH,201812,1,2,631,10 -099,FR,PH,201812,1,2,178807,21600 -099,FR,PH,201812,1,2,453923,672500 -099,FR,PH,201812,1,2,67394,36000 -099,FR,PH,201812,1,2,89109,10000 -099,FR,PH,201812,1,2,35859,54000 -111,FR,PH,201812,1,1,66060,36000 -111,FR,PH,201812,1,1,36064,18020 -111,FR,PH,201812,3,2,8100,1500 -121,FR,PH,201812,1,2,19693,3830 -121,FR,PH,201812,1,2,6468,832 -121,FR,PH,201812,1,2,53941,23311 -121,FR,PH,201812,1,2,109365,12802 -121,FR,PH,201812,1,2,97422,8046 -121,FR,PH,201812,1,2,32455,3069 -121,FR,PH,201812,1,2,97505,13185 -121,FR,PH,201812,3,2,102036,5336 -121,FR,PH,201812,3,2,80020,3200 -121,FR,PH,201812,3,2,31364,1384 -121,FR,PH,201812,4,2,1130,36 -125,FR,PH,201812,1,1,185669,87272 -125,FR,PH,201812,1,2,10806,7317 -125,FR,PH,201812,3,2,3400,378 -125,FR,PH,201812,4,2,35329,56 -128,FR,PH,201812,1,1,8191,13458 -128,FR,PH,201812,1,2,38776,36967 -128,FR,PH,201812,1,2,94080,101377 -128,FR,PH,201812,1,2,14470,11946 -128,FR,PH,201812,1,2,27996,46968 -131,FR,PH,201812,4,2,118,33 -132,FR,PH,201812,0,2,60,2 -132,FR,PH,201812,1,2,8900,500 -132,FR,PH,201812,1,2,43831,18000 -132,FR,PH,201812,3,2,4300,302 -133,FR,PH,201812,3,2,2172,108 -133,FR,PH,201812,4,2,2201,82 -134,FR,PH,201812,1,1,10291,15360 -136,FR,PH,201812,0,2,130,3 -136,FR,PH,201812,1,2,2438,122 -136,FR,PH,201812,1,2,53757,99975 -136,FR,PH,201812,3,2,1165,76 -136,FR,PH,201812,4,2,2111,29 -139,FR,PH,201812,3,1,358,1 -139,FR,PH,201812,4,1,27,0 -139,FR,PH,201812,1,2,47724,9382 -139,FR,PH,201812,1,2,12227,1101 -139,FR,PH,201812,1,2,355654,438940 -139,FR,PH,201812,1,2,11000,5000 -139,FR,PH,201812,1,2,480034,251385 -139,FR,PH,201812,1,2,1507654,543095 -139,FR,PH,201812,1,2,49590,22267 -139,FR,PH,201812,1,2,672309,352020 -139,FR,PH,201812,3,2,15870,3602 -139,FR,PH,201812,4,2,3000,300 -139,FR,PH,201812,4,2,19141,2648 -139,FR,PH,201812,4,2,68058,1840 -139,FR,PH,201812,4,2,19,3 -141,FR,PH,201812,1,2,3550,137 -141,FR,PH,201812,1,2,278263,120670 -141,FR,PH,201812,1,2,148715,95806 -141,FR,PH,201812,1,2,169483,99469 -141,FR,PH,201812,1,2,55421,24990 -141,FR,PH,201812,1,2,31277,24989 -141,FR,PH,201812,1,2,30000,25000 -141,FR,PH,201812,1,2,98385,74102 -141,FR,PH,201812,1,2,71040,48453 -141,FR,PH,201812,1,2,1954779,1858432 -141,FR,PH,201812,1,2,143416,75081 -141,FR,PH,201812,1,2,48407,47549 -141,FR,PH,201812,3,2,76600,50490 -141,FR,PH,201812,4,2,347,8 -142,FR,PH,201812,0,1,176283,17172 -142,FR,PH,201812,1,1,61874,11200 -142,FR,PH,201812,3,1,766,16 -142,FR,PH,201812,4,1,12109,109 -142,FR,PH,201812,1,2,209463,194400 -142,FR,PH,201812,1,2,179088,144015 -142,FR,PH,201812,1,2,4404,704 -142,FR,PH,201812,4,2,1667,207 -142,FR,PH,201812,4,2,1828,207 -142,FR,PH,201812,4,2,3034,313 -143,FR,PH,201812,1,2,484133,186770 -143,FR,PH,201812,1,2,124022,47472 -143,FR,PH,201812,1,2,55738,47661 -144,FR,PH,201812,1,2,989750,374769 -144,FR,PH,201812,1,2,361903,144000 -144,FR,PH,201812,1,2,2820,411 -144,FR,PH,201812,3,2,20474,1487 -144,FR,PH,201812,4,2,43611,3956 -144,FR,PH,201812,4,2,16417,1009 -144,FR,PH,201812,4,2,1365,109 -144,FR,PH,201812,4,2,9036,1213 -145,FR,PH,201812,1,2,17865,13020 -145,FR,PH,201812,4,2,16139,14040 -147,FR,PH,201812,1,2,709,73 -147,FR,PH,201812,1,2,48069,9060 -147,FR,PH,201812,3,2,7139,510 -147,FR,PH,201812,4,2,4541,626 -147,FR,PH,201812,4,2,48069,9060 -148,FR,PH,201812,1,1,256192,65164 -148,FR,PH,201812,1,1,62423,15984 -148,FR,PH,201812,1,2,925,82 -148,FR,PH,201812,3,2,4013,186 -148,FR,PH,201812,4,2,609,6 -161,FR,PH,201812,1,2,25646,51000 -161,FR,PH,201812,1,2,460,20 -161,FR,PH,201812,1,2,74052,198000 -162,FR,PH,201812,1,2,91524,242720 -163,FR,PH,201812,3,1,104,4 -163,FR,PH,201812,1,2,46674,13243 -163,FR,PH,201812,1,2,69874,16955 -163,FR,PH,201812,1,2,25003,7760 -163,FR,PH,201812,3,2,11,10 -163,FR,PH,201812,4,2,4498,1881 -163,FR,PH,201812,4,2,2948,1096 -163,FR,PH,201812,4,2,3136,1166 -164,FR,PH,201812,0,1,54,6 -164,FR,PH,201812,1,1,38102,40736 -164,FR,PH,201812,1,1,37262,17056 -164,FR,PH,201812,1,1,55647,50802 -164,FR,PH,201812,1,1,59790,60783 -164,FR,PH,201812,1,1,61594,37958 -164,FR,PH,201812,1,1,13169,16000 -164,FR,PH,201812,4,1,411,9 -164,FR,PH,201812,1,2,39722,6283 -164,FR,PH,201812,1,2,3225,350 -164,FR,PH,201812,1,2,2176,1911 -166,FR,PH,201812,1,1,17039,10000 -166,FR,PH,201812,1,2,1417,337 -166,FR,PH,201812,4,2,10911,120 -179,FR,PH,201812,1,2,13950,403 -179,FR,PH,201812,1,2,105379,56088 -179,FR,PH,201812,1,2,18939,9630 -179,FR,PH,201812,4,2,1630,46 -182,FR,PH,201812,1,1,59348,18300 -182,FR,PH,201812,3,1,34,1 -182,FR,PH,201812,1,2,1160,125 -182,FR,PH,201812,1,2,510,60 -182,FR,PH,201812,1,2,41532,49625 -182,FR,PH,201812,1,2,18406,24895 -182,FR,PH,201812,1,2,15093,25060 -182,FR,PH,201812,1,2,204807,248229 -182,FR,PH,201812,1,2,22945,27081 -182,FR,PH,201812,1,2,99010,123301 -182,FR,PH,201812,1,2,47129,54528 -182,FR,PH,201812,3,2,12900,120 -341,FR,PH,201812,1,1,1183,65 -341,FR,PH,201812,4,1,63,2 -341,FR,PH,201812,1,2,5050,400 -341,FR,PH,201812,1,2,15040,10960 -341,FR,PH,201812,4,2,498,5 -349,FR,PH,201812,4,2,38,0 -451,FR,PH,201812,1,1,14189,144601 -451,FR,PH,201812,1,2,14081,23152 -459,FR,PH,201812,4,2,42974,1021 -465,FR,PH,201812,1,2,6264,46400 -532,FR,PH,201812,1,2,20754,170 -533,FR,PH,201812,1,2,49585,14544 -542,FR,PH,201812,1,2,17909,15853 -551,FR,PH,201812,1,2,36874,20141 -551,FR,PH,201812,4,2,23737,3 -551,FR,PH,201812,4,2,10788,20 -552,FR,PH,201812,1,2,21568,2526 -568,FR,PH,201812,3,1,171,1 -568,FR,PH,201812,4,2,157,81 -568,FR,PH,201812,4,2,462,0 -568,FR,PH,201812,4,2,1841,80 -621,FR,PH,201812,4,2,273,55 -634,FR,PH,201812,3,2,2282,21600 -691,FR,PH,201812,1,2,10533,13151 -719,FR,PH,201812,1,2,18090,7448 -813,FR,PH,201812,1,2,10613,19600 -819,FR,PH,201812,3,1,430,29 -819,FR,PH,201812,1,2,68751,3335 -819,FR,PH,201812,1,2,1411,24000 -819,FR,PH,201812,3,2,68786,2700 -819,FR,PH,201812,4,2,134265,3034 -819,FR,PH,201812,4,2,672,29 -819,FR,PH,201812,4,2,4533,170 -820,FR,PH,201812,1,2,28138,17200 -841,FR,PH,201812,1,1,280791,72000 -841,FR,PH,201812,1,1,63107,18000 -891,FR,PH,201812,1,1,3,0 -891,FR,PH,201812,4,1,1053,4 -891,FR,PH,201812,4,1,87,0 -891,FR,PH,201812,1,2,43919,2112 -891,FR,PH,201812,1,2,8984,1000 -891,FR,PH,201812,1,2,56600,4000 -891,FR,PH,201812,1,2,314021,67673 -891,FR,PH,201812,1,2,44634,20340 -891,FR,PH,201812,4,2,35544,2716 -891,FR,PH,201812,4,2,8607,2250 -891,FR,PH,201812,4,2,225000,221 -891,FR,PH,201812,4,2,36,1 -891,FR,PH,201812,4,2,1111,144 -892,FR,PH,201812,1,2,15330,10200 -892,FR,PH,201812,1,2,121567,23242 -892,FR,PH,201812,1,2,15420,598 -892,FR,PH,201812,1,2,86516,22625 -892,FR,PH,201812,4,2,896,15 -892,FR,PH,201812,4,2,641,10 -892,FR,PH,201812,4,2,839,12 -892,FR,PH,201812,4,2,6992,130 -892,FR,PH,201812,4,2,1126,14 -892,FR,PH,201812,4,2,1092,10 -893,FR,PH,201812,3,1,737,18 -893,FR,PH,201812,4,1,888,5 -893,FR,PH,201812,4,1,193,2 -893,FR,PH,201812,4,1,33,1 -893,FR,PH,201812,4,1,4,37 -893,FR,PH,201812,1,2,753458,46285 -893,FR,PH,201812,1,2,1112,12 -893,FR,PH,201812,1,2,8472,684 -893,FR,PH,201812,1,2,165190,4375 -893,FR,PH,201812,1,2,113977,24037 -893,FR,PH,201812,1,2,244430,18156 -893,FR,PH,201812,1,2,56357,11189 -893,FR,PH,201812,1,2,364608,4806 -893,FR,PH,201812,1,2,539478,14706 -893,FR,PH,201812,1,2,323411,25618 -893,FR,PH,201812,1,2,10,5 -893,FR,PH,201812,1,2,228992,10663 -893,FR,PH,201812,3,2,8326,1000 -893,FR,PH,201812,3,2,130069,2315 -893,FR,PH,201812,4,2,731327,9325 -893,FR,PH,201812,4,2,795,2 -893,FR,PH,201812,4,2,857412,5394 -893,FR,PH,201812,4,2,40757,1273 -893,FR,PH,201812,4,2,24,36 -893,FR,PH,201812,4,2,140068,985 -893,FR,PH,201812,4,2,159593,1695 -893,FR,PH,201812,4,2,1265162,4592 -893,FR,PH,201812,4,2,45971,1012 -893,FR,PH,201812,4,2,7350,1510 -895,FR,PH,201812,1,2,56450,39500 -896,FR,PH,201812,0,1,969534,27785 -896,FR,PH,201812,1,1,14991,150546 -896,FR,PH,201812,3,1,10496,187 -896,FR,PH,201812,4,1,23543,284 -896,FR,PH,201812,4,1,6271,118 -896,FR,PH,201812,4,1,27540,1 -896,FR,PH,201812,1,2,117896,23297 -896,FR,PH,201812,1,2,8204,4132 -896,FR,PH,201812,1,2,4590,1999 -896,FR,PH,201812,1,2,1426456,138746 -896,FR,PH,201812,1,2,1883,3100 -896,FR,PH,201812,1,2,82536,15768 -896,FR,PH,201812,1,2,264531,83578 -896,FR,PH,201812,1,2,50666,6600 -896,FR,PH,201812,3,2,36744,54000 -896,FR,PH,201812,4,2,73222,3128 -896,FR,PH,201812,4,2,116955,753 -896,FR,PH,201812,4,2,46630,712 -896,FR,PH,201812,4,2,2908,25 -896,FR,PH,201812,4,2,16429,200 -896,FR,PH,201812,4,2,5436,46 -896,FR,PH,201812,4,2,20935,350 -896,FR,PH,201812,4,2,74713,1206 -896,FR,PH,201812,4,2,4960,71 -896,FR,PH,201812,4,2,1533,33 -896,FR,PH,201812,4,2,2341,520 -896,FR,PH,201812,4,2,1564,14 -910,FR,PH,201812,0,1,87,1 -910,FR,PH,201812,1,1,521,66 -910,FR,PH,201812,1,1,23133,2815 -910,FR,PH,201812,1,1,6418,1100 -910,FR,PH,201812,1,1,32303,3839 -910,FR,PH,201812,1,1,1407380,5610 -910,FR,PH,201812,1,1,17751,555 -910,FR,PH,201812,3,1,3041,33 -910,FR,PH,201812,3,1,251,10 -910,FR,PH,201812,4,1,88722,4720 -910,FR,PH,201812,4,1,80410,315 -910,FR,PH,201812,4,1,2045495,6722 -910,FR,PH,201812,4,1,48527,120 -910,FR,PH,201812,4,1,354822,549 -910,FR,PH,201812,4,1,561,2 -910,FR,PH,201812,4,1,44940,109 -910,FR,PH,201812,4,1,3106962,9038 -910,FR,PH,201812,4,1,479772,1461 -910,FR,PH,201812,1,2,69470,1601 -910,FR,PH,201812,1,2,10854,637 -910,FR,PH,201812,1,2,22496,1500 -910,FR,PH,201812,1,2,291731,17360 -910,FR,PH,201812,4,2,272531,1643 -910,FR,PH,201812,4,2,2690,1 -910,FR,PH,201812,4,2,253736,106 -910,FR,PH,201812,4,2,2072,45 -910,FR,PH,201812,4,2,345461,82 -910,FR,PH,201812,4,2,5833,4 -910,FR,PH,201812,4,2,24611,5 -910,FR,PH,201812,4,2,247967,326 -910,FR,PH,201812,4,2,49258,26 -910,FR,PH,201812,4,2,156590,242 -910,FR,PH,201812,4,2,1340,10 -910,FR,PH,201812,4,2,29888,20 -910,FR,PH,201812,9,2,18390776,12950 -920,FR,PH,201812,1,2,3840,14 -920,FR,PH,201812,4,2,1916,9 -931,FR,PH,201812,0,1,7698,29 -931,FR,PH,201812,1,1,10037,138 -931,FR,PH,201812,1,1,83084,607 -931,FR,PH,201812,1,1,12045,750 -931,FR,PH,201812,1,1,3864,1875 -931,FR,PH,201812,1,1,258749,7389 -931,FR,PH,201812,1,1,1247,90 -931,FR,PH,201812,1,1,3262381,352084 -931,FR,PH,201812,1,1,107923,2634 -931,FR,PH,201812,1,1,48079,18022 -931,FR,PH,201812,3,1,1308306,5818 -931,FR,PH,201812,3,1,64981,18 -931,FR,PH,201812,3,1,79343,306 -931,FR,PH,201812,3,1,2931,64 -931,FR,PH,201812,3,1,11043608,9208 -931,FR,PH,201812,3,1,4634709,4808 -931,FR,PH,201812,4,1,244541,1173 -931,FR,PH,201812,4,1,1265028,1749 -931,FR,PH,201812,4,1,1383,135 -931,FR,PH,201812,4,1,249,4 -931,FR,PH,201812,4,1,214,22 -931,FR,PH,201812,4,1,16995,187 -931,FR,PH,201812,4,1,65422,141 -931,FR,PH,201812,4,1,1523,56 -931,FR,PH,201812,4,1,990631,656 -931,FR,PH,201812,4,1,148360,1224 -931,FR,PH,201812,4,1,289293,6414 -931,FR,PH,201812,4,1,67762,1652 -931,FR,PH,201812,4,1,6591,546 -931,FR,PH,201812,4,1,163493,8532 -931,FR,PH,201812,4,1,50697,36 -931,FR,PH,201812,4,1,129555,104 -931,FR,PH,201812,4,1,3608,6 -931,FR,PH,201812,0,2,100,1 -931,FR,PH,201812,1,2,52311,1913 -931,FR,PH,201812,1,2,2937,40 -931,FR,PH,201812,1,2,48190,1229 -931,FR,PH,201812,1,2,33219,2258 -931,FR,PH,201812,1,2,10523,1128 -931,FR,PH,201812,1,2,194716,18647 -931,FR,PH,201812,1,2,93106,9248 -931,FR,PH,201812,3,2,137988,62 -931,FR,PH,201812,4,2,2042023,5373 -931,FR,PH,201812,4,2,1433295,1241 -931,FR,PH,201812,4,2,8467,0 -931,FR,PH,201812,4,2,63730,604 -931,FR,PH,201812,4,2,7206,2 -931,FR,PH,201812,4,2,56217,2364 -931,FR,PH,201812,4,2,19590,244 -931,FR,PH,201812,4,2,7665,31 -931,FR,PH,201812,4,2,36000,350 -931,FR,PH,201812,4,2,17533,59 -931,FR,PH,201812,4,2,26792,59 -931,FR,PH,201812,4,2,17403,452 -931,FR,PH,201812,4,2,23700,200 -931,FR,PH,201812,4,2,181667,180 -931,FR,PH,201812,4,2,1089606,7550 -931,FR,PH,201812,4,2,27557,46 -931,FR,PH,201812,4,2,87726,296 -939,FR,PH,201812,0,1,1099836,35278 -939,FR,PH,201812,1,1,14262,649 -939,FR,PH,201812,1,1,101317,10490 -939,FR,PH,201812,1,1,973,43 -939,FR,PH,201812,1,1,105,9 -939,FR,PH,201812,1,1,3278,438 -939,FR,PH,201812,3,1,35342,159 -939,FR,PH,201812,3,1,2,0 -939,FR,PH,201812,3,1,118,0 -939,FR,PH,201812,3,1,238490,78 -939,FR,PH,201812,4,1,130173,175 -939,FR,PH,201812,4,1,68426,99 -939,FR,PH,201812,4,1,71,0 -939,FR,PH,201812,4,1,221863,436 -939,FR,PH,201812,4,1,1879,36 -939,FR,PH,201812,4,1,3116928,5316 -939,FR,PH,201812,4,1,424935,541 -939,FR,PH,201812,4,1,243068,484 -939,FR,PH,201812,4,1,482320,930 -939,FR,PH,201812,4,1,488664,902 -939,FR,PH,201812,4,1,4442,16 -939,FR,PH,201812,1,2,71772,2600 -939,FR,PH,201812,1,2,8312,195 -939,FR,PH,201812,1,2,10905,198 -939,FR,PH,201812,1,2,21640,1170 -939,FR,PH,201812,1,2,1,2100 -939,FR,PH,201812,1,2,98800,1088 -939,FR,PH,201812,1,2,14390,750 -939,FR,PH,201812,1,2,409524,33400 -939,FR,PH,201812,1,2,26034,4358 -939,FR,PH,201812,1,2,131600,11225 -939,FR,PH,201812,1,2,697661,42532 -939,FR,PH,201812,1,2,810684,43840 -939,FR,PH,201812,1,2,365157,30000 -939,FR,PH,201812,3,2,3429,140 -939,FR,PH,201812,3,2,1059,2 -939,FR,PH,201812,4,2,600005,2822 -939,FR,PH,201812,4,2,34863,98 -939,FR,PH,201812,4,2,20667,9 -939,FR,PH,201812,4,2,4421,52 -939,FR,PH,201812,4,2,1258,1 -939,FR,PH,201812,4,2,240686,1117 -939,FR,PH,201812,4,2,8442,310 -939,FR,PH,201812,4,2,47754,1772 -939,FR,PH,201812,4,2,717272,317 -939,FR,PH,201812,4,2,64783,636 -939,FR,PH,201812,4,2,38733,143 -939,FR,PH,201812,4,2,78845,800 -939,FR,PH,201812,4,2,2989,57 -939,FR,PH,201812,4,2,17509,22 -939,FR,PH,201812,4,2,180257,16380 -939,FR,PH,201812,4,2,51889,9 -939,FR,PH,201812,4,2,20437,254 -941,FR,PH,201812,1,2,4396157,1547315 -941,FR,PH,201812,1,2,165372,52371 -949,FR,PH,201812,1,1,7,8 -949,FR,PH,201812,1,1,3994,120 -949,FR,PH,201812,1,1,7,0 -949,FR,PH,201812,1,1,2022195,54847 -949,FR,PH,201812,3,1,2349,22 -949,FR,PH,201812,3,1,2439,322 -949,FR,PH,201812,3,1,6,0 -949,FR,PH,201812,3,1,67,1 -949,FR,PH,201812,4,1,1956,19 -949,FR,PH,201812,4,1,20284,95 -949,FR,PH,201812,4,1,57,0 -949,FR,PH,201812,4,1,27,0 -949,FR,PH,201812,4,1,253,60 -949,FR,PH,201812,4,1,4352,7 -949,FR,PH,201812,4,1,14366,96 -949,FR,PH,201812,4,1,11,0 -949,FR,PH,201812,4,1,972,10 -949,FR,PH,201812,0,2,200,2 -949,FR,PH,201812,1,2,102138,6145 -949,FR,PH,201812,1,2,30480,1696 -949,FR,PH,201812,1,2,119800,2372 -949,FR,PH,201812,1,2,18786,2419 -949,FR,PH,201812,1,2,7626,2419 -949,FR,PH,201812,3,2,13877,363 -949,FR,PH,201812,3,2,34732,8863 -949,FR,PH,201812,4,2,158802,1821 -949,FR,PH,201812,4,2,726,6 -949,FR,PH,201812,4,2,43388,5 -949,FR,PH,201812,4,2,5022,0 -949,FR,PH,201812,4,2,163,15 -949,FR,PH,201812,4,2,1691,81 -949,FR,PH,201812,4,2,2835,100 -949,FR,PH,201812,4,2,23096,9 -949,FR,PH,201812,4,2,19475,160 -949,FR,PH,201812,4,2,21860,95 -949,FR,PH,201812,4,2,110,1 -949,FR,PH,201812,4,2,129490,183 -949,FR,PH,201812,4,2,15192,129 -949,FR,PH,201812,4,2,35656,2720 -949,FR,PH,201812,4,2,3280,62 -951,FR,PH,201812,1,1,1905,385 -951,FR,PH,201812,1,1,6697,368 -951,FR,PH,201812,4,2,199,14 -951,FR,PH,201812,4,2,20,1 -951,FR,PH,201812,4,2,1266,47 -952,FR,PH,201812,3,1,2409,6 -952,FR,PH,201812,4,1,842,88 -952,FR,PH,201812,1,2,128072,58590 -952,FR,PH,201812,1,2,18963,13433 -952,FR,PH,201812,1,2,222960,74251 -952,FR,PH,201812,4,2,4353,138 -952,FR,PH,201812,4,2,5244,26 -952,FR,PH,201812,4,2,17096,70 -952,FR,PH,201812,4,2,1454,60 -961,FR,PH,201812,1,1,370,44 -961,FR,PH,201812,1,2,42478,3621 -961,FR,PH,201812,4,2,98,1 -961,FR,PH,201812,4,2,14267,930 -961,FR,PH,201812,4,2,1188,37 -962,FR,PH,201812,1,1,3640,242 -962,FR,PH,201812,1,1,2376,28 -962,FR,PH,201812,1,1,65263,18471 -962,FR,PH,201812,1,1,26150,755 -962,FR,PH,201812,1,1,13321,383 -962,FR,PH,201812,3,1,13548,189 -962,FR,PH,201812,3,1,297,0 -962,FR,PH,201812,4,1,47848,70 -962,FR,PH,201812,4,1,3677,19 -962,FR,PH,201812,4,1,5467,114 -962,FR,PH,201812,4,1,1699,63 -962,FR,PH,201812,4,1,50,0 -962,FR,PH,201812,1,2,17407,333 -962,FR,PH,201812,1,2,4719,127 -962,FR,PH,201812,1,2,115701,8703 -962,FR,PH,201812,4,2,10910,187 -962,FR,PH,201812,4,2,1543,0 -962,FR,PH,201812,4,2,84287,274 -962,FR,PH,201812,4,2,6361,180 -962,FR,PH,201812,4,2,580,10 -962,FR,PH,201812,4,2,10021,49 -962,FR,PH,201812,4,2,5931,710 -962,FR,PH,201812,4,2,3843,54 -962,FR,PH,201812,4,2,27708,97 -963,FR,PH,201812,0,1,17187,395 -963,FR,PH,201812,1,1,42377,1717 -963,FR,PH,201812,1,1,643,43 -963,FR,PH,201812,1,1,1816652,38201 -963,FR,PH,201812,1,1,23084,450 -963,FR,PH,201812,3,1,24824,399 -963,FR,PH,201812,3,1,30,0 -963,FR,PH,201812,3,1,255,1 -963,FR,PH,201812,3,1,60,0 -963,FR,PH,201812,3,1,642,8 -963,FR,PH,201812,3,1,60,0 -963,FR,PH,201812,3,1,778,7 -963,FR,PH,201812,4,1,7695,90 -963,FR,PH,201812,4,1,8714,78 -963,FR,PH,201812,4,1,30611,488 -963,FR,PH,201812,4,1,8762,70 -963,FR,PH,201812,4,1,110100,437 -963,FR,PH,201812,4,1,73630,457 -963,FR,PH,201812,4,1,13893,79 -963,FR,PH,201812,4,1,35910,246 -963,FR,PH,201812,4,1,2735,12 -963,FR,PH,201812,0,2,142,0 -963,FR,PH,201812,1,2,125,8 -963,FR,PH,201812,1,2,1,60 -963,FR,PH,201812,3,2,470,61 -963,FR,PH,201812,4,2,326265,3406 -963,FR,PH,201812,4,2,70035,513 -963,FR,PH,201812,4,2,15916,133 -963,FR,PH,201812,4,2,4487,190 -963,FR,PH,201812,4,2,1431,4 -971,FR,PH,201812,1,1,24835,69 -971,FR,PH,201812,1,1,206875,46174 -971,FR,PH,201812,3,1,1325,8 -971,FR,PH,201812,1,2,27009,2543 -971,FR,PH,201812,3,2,732,0 -971,FR,PH,201812,4,2,18118,11 -971,FR,PH,201812,4,2,975,3 -971,FR,PH,201812,4,2,22,0 -971,FR,PH,201812,4,2,14100,307 -971,FR,PH,201812,4,2,897,0 -972,FR,PH,201812,4,1,29560,733 -972,FR,PH,201812,4,1,44627,1350 -972,FR,PH,201812,4,1,4253,70 -972,FR,PH,201812,0,2,66,2 -972,FR,PH,201812,4,2,1463,53 -973,FR,PH,201812,0,1,14,0 -973,FR,PH,201812,1,1,232,33 -973,FR,PH,201812,3,1,3226,333 -973,FR,PH,201812,1,2,122439,41486 -973,FR,PH,201812,1,2,215,15 -973,FR,PH,201812,1,2,1093675,145425 -973,FR,PH,201812,1,2,1570113,153061 -973,FR,PH,201812,4,2,425,40 -973,FR,PH,201812,4,2,3945,79 -974,FR,PH,201812,3,1,2732,102 -974,FR,PH,201812,4,1,79,17 -974,FR,PH,201812,0,2,175,18 -974,FR,PH,201812,1,2,76,19 -974,FR,PH,201812,1,2,600,47 -974,FR,PH,201812,3,2,319,71 -974,FR,PH,201812,4,2,3682,43 -974,FR,PH,201812,4,2,480,9 -974,FR,PH,201812,4,2,145,11 -974,FR,PH,201812,4,2,16,2 -974,FR,PH,201812,4,2,31,3 -974,FR,PH,201812,4,2,8475,1000 -975,FR,PH,201812,1,1,37332,4519 -975,FR,PH,201812,1,1,14436,2858 -975,FR,PH,201812,1,1,9060,1525 -975,FR,PH,201812,3,1,205,2 -975,FR,PH,201812,4,1,6550,56 -975,FR,PH,201812,4,1,58399,1207 -975,FR,PH,201812,4,1,71657,1000 -975,FR,PH,201812,1,2,1178,150 -975,FR,PH,201812,1,2,10740,500 -975,FR,PH,201812,1,2,29691,4407 -975,FR,PH,201812,4,2,38552,18 -975,FR,PH,201812,4,2,979,9 -975,FR,PH,201812,4,2,3415,2 -975,FR,PH,201812,4,2,146469,1319 -975,FR,PH,201812,4,2,143,1 -975,FR,PH,201812,4,2,1533,30 -975,FR,PH,201812,4,2,2403,85 -976,FR,PH,201812,1,1,1689,558 -976,FR,PH,201812,3,1,1916,29 -976,FR,PH,201812,3,1,36494,9263 -976,FR,PH,201812,4,1,253,4 -976,FR,PH,201812,4,1,318,9 -976,FR,PH,201812,1,2,12230,600 -976,FR,PH,201812,4,2,32,1 -976,FR,PH,201812,4,2,1212,27 -976,FR,PH,201812,4,2,95,1 -979,FR,PH,201812,0,1,531028,25474 -979,FR,PH,201812,1,1,1796561,35573 -979,FR,PH,201812,1,1,16209,1114 -979,FR,PH,201812,1,1,71912,2409 -979,FR,PH,201812,1,1,2594,596 -979,FR,PH,201812,1,1,100717,4976 -979,FR,PH,201812,1,1,194888,15731 -979,FR,PH,201812,1,1,11054,542 -979,FR,PH,201812,1,1,4663,162 -979,FR,PH,201812,3,1,82499,477 -979,FR,PH,201812,3,1,11289,107 -979,FR,PH,201812,3,1,147,9 -979,FR,PH,201812,3,1,1515,7 -979,FR,PH,201812,3,1,14219,16 -979,FR,PH,201812,3,1,141465,96 -979,FR,PH,201812,3,1,132971,105 -979,FR,PH,201812,4,1,79801,833 -979,FR,PH,201812,4,1,300664,1984 -979,FR,PH,201812,4,1,14176,120 -979,FR,PH,201812,4,1,28,0 -979,FR,PH,201812,4,1,138369,453 -979,FR,PH,201812,4,1,51,0 -979,FR,PH,201812,4,1,2635105,26620 -979,FR,PH,201812,4,1,75,0 -979,FR,PH,201812,4,1,10896,150 -979,FR,PH,201812,4,1,50400,572 -979,FR,PH,201812,4,1,593,0 -979,FR,PH,201812,4,1,476,6 -979,FR,PH,201812,0,2,150,1 -979,FR,PH,201812,1,2,17301,1175 -979,FR,PH,201812,1,2,324,7 -979,FR,PH,201812,1,2,50736,457 -979,FR,PH,201812,1,2,6790,544 -979,FR,PH,201812,1,2,23975,832 -979,FR,PH,201812,1,2,15000,0 -979,FR,PH,201812,1,2,491436,7143 -979,FR,PH,201812,1,2,56805,8685 -979,FR,PH,201812,3,2,49618,159 -979,FR,PH,201812,4,2,445462,10006 -979,FR,PH,201812,4,2,77329,168 -979,FR,PH,201812,4,2,1648,0 -979,FR,PH,201812,4,2,57611,99 -979,FR,PH,201812,4,2,25737,338 -979,FR,PH,201812,4,2,49995,60 -979,FR,PH,201812,4,2,478414,753 -979,FR,PH,201812,4,2,22916,1200 -979,FR,PH,201812,4,2,362032,235 -979,FR,PH,201812,4,2,25950,434 -979,FR,PH,201812,4,2,92520,171 -979,FR,PH,201812,4,2,39,0 -979,FR,PH,201812,4,2,284436,182 -979,FR,PH,201812,4,2,20630,242 -979,FR,PH,201812,4,2,16696,32 -979,FR,PH,201812,4,2,65428,2980 -979,FR,PH,201812,4,2,26128,50 -979,FR,PH,201812,4,2,82790,437 -979,FR,PH,201812,5,2,1308,3 -999,FR,PH,201812,1,1,540,0 -999,FR,PH,201812,1,1,20434,0 -999,FR,PH,201812,3,1,8445,0 -999,FR,PH,201812,4,1,24000,0 -999,FR,PH,201812,4,1,513,0 -999,FR,PH,201812,4,1,1513,0 -999,FR,PH,201812,1,2,53401,5147 -999,FR,PH,201812,1,2,9885,575 -999,FR,PH,201812,1,2,1149346,230184 -999,FR,PH,201812,1,2,125531,50376 -999,FR,PH,201812,1,2,138005,155815 -999,FR,PH,201812,1,2,8376,23400 -999,FR,PH,201812,1,2,68340,10000 -999,FR,PH,201812,3,2,3,5 -999,FR,PH,201812,4,2,294480,27142 -999,FR,PH,201812,4,2,1013,5 -999,FR,PH,201812,4,2,8598,7 -999,FR,PH,201812,4,2,852,11 -999,FR,PH,201812,4,2,3500,0 -999,FR,PH,201812,4,2,2325,0 -999,FR,PH,201812,4,2,301,0 -999,FR,PH,201812,4,2,4484,850 -121,FR,MN,201812,4,1,2313,37 -164,FR,MN,201812,3,2,3684,80 -893,FR,MN,201812,0,2,100,0 -893,FR,MN,201812,3,2,102120,22244 -893,FR,MN,201812,4,2,95801,926 -893,FR,MN,201812,4,2,1381,140 -896,FR,MN,201812,4,2,12157,78 -896,FR,MN,201812,4,2,2193,50 -910,FR,MN,201812,4,2,2252,10 -931,FR,MN,201812,3,2,10463,313 -931,FR,MN,201812,4,2,14253,118 -931,FR,MN,201812,4,2,4434,45 -931,FR,MN,201812,4,2,3155,4 -931,FR,MN,201812,5,2,1095,31 -939,FR,MN,201812,4,1,8347,7 -939,FR,MN,201812,0,2,40,12 -939,FR,MN,201812,1,2,357844,63390 -939,FR,MN,201812,1,2,401127,82075 -939,FR,MN,201812,4,2,950,25 -939,FR,MN,201812,4,2,2545,280 -949,FR,MN,201812,3,1,300,2 -949,FR,MN,201812,3,2,3280,480 -949,FR,MN,201812,4,2,207,0 -952,FR,MN,201812,1,2,109043,56433 -952,FR,MN,201812,1,2,36607,19114 -952,FR,MN,201812,3,2,82157,47826 -952,FR,MN,201812,3,2,81921,38481 -952,FR,MN,201812,4,2,274,6 -952,FR,MN,201812,4,2,36607,19114 -962,FR,MN,201812,0,1,2636,18 -962,FR,MN,201812,4,2,191,3 -963,FR,MN,201812,0,1,389,24 -963,FR,MN,201812,3,1,676,6 -963,FR,MN,201812,3,1,2680,4 -963,FR,MN,201812,4,1,20122,367 -963,FR,MN,201812,4,1,4111,46 -963,FR,MN,201812,4,1,492,0 -963,FR,MN,201812,4,1,4511,25 -963,FR,MN,201812,3,2,24549,1514 -963,FR,MN,201812,3,2,17005,82 -963,FR,MN,201812,4,2,9066,764 -963,FR,MN,201812,4,2,987,1 -963,FR,MN,201812,4,2,2365,30 -963,FR,MN,201812,4,2,3390,17 -971,FR,MN,201812,4,2,150,0 -974,FR,MN,201812,4,2,1600,100 -975,FR,MN,201812,3,1,315,1 -976,FR,MN,201812,3,1,2823,441 -979,FR,MN,201812,0,1,284,8 -979,FR,MN,201812,3,1,202,4 -979,FR,MN,201812,3,2,68771,826 -979,FR,MN,201812,3,2,25585,84 -979,FR,MN,201812,4,2,51649,416 -979,FR,MN,201812,4,2,125090,2 -979,FR,MN,201812,4,2,10043,40 -979,FR,MN,201812,5,2,569,69 -999,FR,MN,201812,3,1,246,0 -999,FR,MN,201812,1,2,8700,0 -999,FR,MN,201812,4,2,490,71 -001,FR,CN,201812,4,1,962,2 -001,FR,CN,201812,4,1,6031,190 -001,FR,CN,201812,4,2,500,15 -001,FR,CN,201812,4,2,200,10 -011,FR,CN,201812,1,1,42,68 -011,FR,CN,201812,1,2,26993307,130563000 -012,FR,CN,201812,1,1,877,500 -012,FR,CN,201812,1,2,536630,2035880 -014,FR,CN,201812,1,1,263,300 -015,FR,CN,201812,1,1,44,7 -015,FR,CN,201812,4,2,773,385 -019,FR,CN,201812,1,1,55191,100000 -019,FR,CN,201812,1,1,5587,4000 -031,FR,CN,201812,1,1,25348,30800 -031,FR,CN,201812,1,1,11780,16800 -031,FR,CN,201812,1,1,53609,68640 -031,FR,CN,201812,1,1,73137,154440 -031,FR,CN,201812,1,1,16362,34320 -035,FR,CN,201812,1,1,18659,19110 -035,FR,CN,201812,1,1,359037,76360 -035,FR,CN,201812,1,1,961887,64000 -035,FR,CN,201812,1,1,363953,16000 -035,FR,CN,201812,1,2,1045364,773306 -035,FR,CN,201812,1,2,171116,148176 -035,FR,CN,201812,1,2,24738,21168 -035,FR,CN,201812,1,2,67784,63739 -039,FR,CN,201812,1,1,164548,76494 -039,FR,CN,201812,1,1,44513,52390 -039,FR,CN,201812,1,1,74528,75317 -039,FR,CN,201812,1,1,17968,25000 -039,FR,CN,201812,1,1,80447,174600 -039,FR,CN,201812,1,1,157894,37045 -039,FR,CN,201812,1,1,111196,36143 -039,FR,CN,201812,1,1,81499,104500 -039,FR,CN,201812,1,1,24375,27000 -039,FR,CN,201812,1,1,63445,43776 -039,FR,CN,201812,1,1,28209,21600 -039,FR,CN,201812,1,1,19982,26500 -039,FR,CN,201812,1,1,1290833,641982 -039,FR,CN,201812,1,1,5020,3000 -039,FR,CN,201812,1,1,60075,80500 -039,FR,CN,201812,4,1,117,4 -039,FR,CN,201812,4,1,25068,400 -039,FR,CN,201812,4,1,301710,5047 -039,FR,CN,201812,1,2,29594,49000 -039,FR,CN,201812,4,2,1454,1200 -039,FR,CN,201812,4,2,48115,76 -039,FR,CN,201812,4,2,8882,12 -041,FR,CN,201812,3,1,201,2 -041,FR,CN,201812,4,1,8,1 -041,FR,CN,201812,1,2,512051,457474 -041,FR,CN,201812,1,2,34479,24873 -041,FR,CN,201812,1,2,115432,94487 -042,FR,CN,201812,3,1,908,8 -042,FR,CN,201812,4,1,817,110 -042,FR,CN,201812,4,1,1761,11 -043,FR,CN,201812,1,1,6136,3834 -043,FR,CN,201812,1,1,94431,4417 -043,FR,CN,201812,1,1,202189,160388 -043,FR,CN,201812,1,1,23299,10334 -043,FR,CN,201812,1,1,224360,169610 -043,FR,CN,201812,1,1,341,97 -043,FR,CN,201812,1,1,22912,23247 -043,FR,CN,201812,3,1,711,30 -043,FR,CN,201812,1,2,54095,15817 -045,FR,CN,201812,1,1,19723,10908 -045,FR,CN,201812,1,2,5018390,1801820 -045,FR,CN,201812,1,2,665774,346780 -045,FR,CN,201812,1,2,103710,566121 -045,FR,CN,201812,1,2,772006,484300 -045,FR,CN,201812,1,2,13459874,4281050 -045,FR,CN,201812,1,2,516707,149600 -045,FR,CN,201812,1,2,3250211,1274102 -049,FR,CN,201812,1,1,7705,477 -049,FR,CN,201812,1,1,5594,640 -049,FR,CN,201812,1,1,34792,631 -049,FR,CN,201812,1,1,3466,300 -049,FR,CN,201812,3,1,65,3 -049,FR,CN,201812,4,1,248,2 -049,FR,CN,201812,4,1,284,2 -051,FR,CN,201812,1,2,212913,1534000 -051,FR,CN,201812,1,2,821094,5801974 -051,FR,CN,201812,1,2,110978,868472 -051,FR,CN,201812,1,2,455951,4968218 -051,FR,CN,201812,1,2,51412,302796 -055,FR,CN,201812,1,2,2821699,12912839 -055,FR,CN,201812,1,2,82540,384019 -055,FR,CN,201812,1,2,409329,1888994 -055,FR,CN,201812,1,2,395440,1697755 -055,FR,CN,201812,1,2,356212,1107858 -055,FR,CN,201812,1,2,73430,378980 -056,FR,CN,201812,1,1,122344,51919 -056,FR,CN,201812,1,1,56062,32464 -056,FR,CN,201812,1,1,34098,17300 -056,FR,CN,201812,1,1,108463,41163 -056,FR,CN,201812,1,1,119383,66527 -056,FR,CN,201812,3,1,607,74 -056,FR,CN,201812,4,1,315,30 -056,FR,CN,201812,4,1,176,5 -056,FR,CN,201812,1,2,225029,530929 -056,FR,CN,201812,1,2,158031,489650 -056,FR,CN,201812,1,2,21592,45400 -056,FR,CN,201812,1,2,231562,1139392 -056,FR,CN,201812,1,2,134831,254676 -056,FR,CN,201812,1,2,27386,45000 -056,FR,CN,201812,1,2,151025,645763 -056,FR,CN,201812,4,2,7849,160 -056,FR,CN,201812,4,2,11938,1600 -057,FR,CN,201812,3,1,4,0 -057,FR,CN,201812,1,2,69000,8100 -057,FR,CN,201812,1,2,78444,340073 -057,FR,CN,201812,4,2,1453,190 -091,FR,CN,201812,4,1,29739,56 -091,FR,CN,201812,1,2,70933,88494 -091,FR,CN,201812,1,2,192212,219838 -091,FR,CN,201812,1,2,119734,170295 -091,FR,CN,201812,1,2,31970,44028 -091,FR,CN,201812,1,2,108180,126395 -091,FR,CN,201812,1,2,174622,263240 -092,FR,CN,201812,1,1,3106,2025 -092,FR,CN,201812,1,1,1296,900 -092,FR,CN,201812,3,1,1379,100 -092,FR,CN,201812,4,1,80,7 -092,FR,CN,201812,4,1,723,49 -092,FR,CN,201812,4,1,6039,196 -092,FR,CN,201812,4,1,60,4 -092,FR,CN,201812,1,2,502186,323526 -092,FR,CN,201812,1,2,96793,43959 -092,FR,CN,201812,1,2,37396,22083 -092,FR,CN,201812,1,2,189167,87793 -092,FR,CN,201812,3,2,2188,106 -092,FR,CN,201812,3,2,47806,21708 -092,FR,CN,201812,4,2,58,20 -092,FR,CN,201812,4,2,11880,30 -099,FR,CN,201812,0,1,5370,10 -099,FR,CN,201812,1,1,208446,15500 -099,FR,CN,201812,1,1,7526,1269 -099,FR,CN,201812,1,1,1734,134 -099,FR,CN,201812,1,1,32807,2305 -099,FR,CN,201812,1,1,2855,6475 -099,FR,CN,201812,1,1,40842,18825 -099,FR,CN,201812,1,1,2715,1450 -099,FR,CN,201812,1,1,116062,50197 -099,FR,CN,201812,1,1,592,72 -099,FR,CN,201812,1,1,846601,366431 -099,FR,CN,201812,1,1,52910,4528 -099,FR,CN,201812,1,1,375755,103428 -099,FR,CN,201812,1,1,25563,42189 -099,FR,CN,201812,1,1,2244,875 -099,FR,CN,201812,1,1,177460,49996 -099,FR,CN,201812,1,1,3004,204 -099,FR,CN,201812,3,1,31923,770 -099,FR,CN,201812,3,1,6,0 -099,FR,CN,201812,3,1,538,15 -099,FR,CN,201812,4,1,516401,4953 -099,FR,CN,201812,4,1,3643,153 -099,FR,CN,201812,4,1,36897,802 -099,FR,CN,201812,4,1,612,5 -099,FR,CN,201812,4,1,1026,200 -099,FR,CN,201812,4,1,13477,50 -099,FR,CN,201812,4,1,2814,126 -099,FR,CN,201812,4,1,100,3 -099,FR,CN,201812,4,1,39549,148 -099,FR,CN,201812,4,1,8473,242 -099,FR,CN,201812,4,1,835,50 -099,FR,CN,201812,4,1,419947,14582 -099,FR,CN,201812,4,1,77330,2049 -099,FR,CN,201812,4,1,33085,232 -099,FR,CN,201812,4,1,4250,51 -099,FR,CN,201812,5,1,76,1 -099,FR,CN,201812,1,2,388792,106595 -099,FR,CN,201812,1,2,106819,15011 -099,FR,CN,201812,1,2,17185,10002 -099,FR,CN,201812,1,2,774624,143340 -099,FR,CN,201812,1,2,235590,60000 -099,FR,CN,201812,1,2,46932,7500 -099,FR,CN,201812,1,2,107942,15351 -099,FR,CN,201812,3,2,11591,416 -099,FR,CN,201812,3,2,36196,3327 -099,FR,CN,201812,4,2,16165,1618 -099,FR,CN,201812,4,2,82,0 -099,FR,CN,201812,4,2,34428,30 -099,FR,CN,201812,4,2,134745,128 -099,FR,CN,201812,4,2,36325,1225 -099,FR,CN,201812,4,2,68692,47 -099,FR,CN,201812,4,2,87009,13 -111,FR,CN,201812,1,1,10116,9200 -111,FR,CN,201812,4,2,14346,353 -112,FR,CN,201812,1,1,9589,7500 -121,FR,CN,201812,1,1,21148,8267 -121,FR,CN,201812,1,1,30105,7848 -121,FR,CN,201812,4,1,6930,55 -121,FR,CN,201812,0,2,120,29 -121,FR,CN,201812,1,2,1095689,96226 -121,FR,CN,201812,1,2,82831,1603 -121,FR,CN,201812,1,2,63842,13167 -121,FR,CN,201812,1,2,105567,11146 -121,FR,CN,201812,1,2,885223,67354 -121,FR,CN,201812,1,2,12085,2250 -121,FR,CN,201812,1,2,284071,3040 -121,FR,CN,201812,1,2,52784,7362 -121,FR,CN,201812,1,2,76085,7233 -121,FR,CN,201812,1,2,31337,1575 -121,FR,CN,201812,1,2,12111907,3282624 -121,FR,CN,201812,1,2,227524,50535 -121,FR,CN,201812,1,2,322491,62427 -121,FR,CN,201812,1,2,98325,17312 -121,FR,CN,201812,1,2,223344,62368 -121,FR,CN,201812,1,2,1336979,229807 -121,FR,CN,201812,1,2,171180,21600 -121,FR,CN,201812,1,2,298907,88187 -121,FR,CN,201812,1,2,51204,23895 -121,FR,CN,201812,1,2,202637,15389 -121,FR,CN,201812,1,2,725071,210967 -121,FR,CN,201812,1,2,696118,123585 -121,FR,CN,201812,1,2,14697803,4022407 -121,FR,CN,201812,1,2,21839,14737 -121,FR,CN,201812,1,2,1300551,290717 -121,FR,CN,201812,1,2,20860,5760 -121,FR,CN,201812,1,2,78990,3750 -121,FR,CN,201812,1,2,340555,91574 -121,FR,CN,201812,1,2,970286,62430 -121,FR,CN,201812,1,2,6250,315 -121,FR,CN,201812,1,2,262658,61987 -121,FR,CN,201812,1,2,939769,205668 -121,FR,CN,201812,1,2,1250815,330818 -121,FR,CN,201812,2,2,53614,9049 -121,FR,CN,201812,3,2,66811,4577 -121,FR,CN,201812,3,2,13967,1197 -121,FR,CN,201812,3,2,55673,7854 -121,FR,CN,201812,3,2,59636,153 -121,FR,CN,201812,3,2,67497,20790 -121,FR,CN,201812,4,2,1032711,18629 -121,FR,CN,201812,4,2,55620,900 -121,FR,CN,201812,4,2,2451,2 -121,FR,CN,201812,4,2,11312,1080 -121,FR,CN,201812,4,2,98710,2272 -121,FR,CN,201812,4,2,36573,1503 -121,FR,CN,201812,4,2,1500,15 -121,FR,CN,201812,4,2,13000,495 -121,FR,CN,201812,4,2,2762443,35068 -121,FR,CN,201812,4,2,224027,1230 -121,FR,CN,201812,4,2,11934,207 -121,FR,CN,201812,4,2,35630,13230 -121,FR,CN,201812,4,2,26350,2925 -122,FR,CN,201812,1,1,48085,53709 -122,FR,CN,201812,1,1,104092,115700 -122,FR,CN,201812,1,1,16871,20208 -122,FR,CN,201812,1,1,38031,41817 -122,FR,CN,201812,1,1,188763,205788 -122,FR,CN,201812,3,1,50250,53708 -122,FR,CN,201812,1,2,438756,217416 -122,FR,CN,201812,1,2,23695,11386 -122,FR,CN,201812,1,2,17901,13572 -122,FR,CN,201812,1,2,98340,42030 -122,FR,CN,201812,1,2,38428,15514 -122,FR,CN,201812,1,2,283687,143845 -122,FR,CN,201812,1,2,22787,14976 -122,FR,CN,201812,1,2,17256,14040 -122,FR,CN,201812,3,2,147618,98280 -125,FR,CN,201812,1,1,47013,1110 -125,FR,CN,201812,1,1,3000,822 -125,FR,CN,201812,1,1,614,75 -125,FR,CN,201812,1,1,7994,7570 -125,FR,CN,201812,1,1,8943,19900 -125,FR,CN,201812,1,1,49252,21312 -125,FR,CN,201812,4,1,82,23 -125,FR,CN,201812,1,2,232365,15794 -125,FR,CN,201812,1,2,80916,9003 -125,FR,CN,201812,1,2,2453440,140513 -125,FR,CN,201812,1,2,35511,2099 -125,FR,CN,201812,1,2,2256532,381908 -125,FR,CN,201812,1,2,250950,12745 -125,FR,CN,201812,1,2,489590,66283 -125,FR,CN,201812,1,2,3180434,122612 -125,FR,CN,201812,1,2,87000,8400 -125,FR,CN,201812,1,2,136824,32332 -125,FR,CN,201812,1,2,50764,16318 -125,FR,CN,201812,1,2,3782556,156807 -125,FR,CN,201812,1,2,171985,58911 -125,FR,CN,201812,1,2,11495,2100 -125,FR,CN,201812,1,2,4668164,412710 -125,FR,CN,201812,1,2,249184,20450 -125,FR,CN,201812,1,2,279266,37345 -125,FR,CN,201812,1,2,221749,5260 -125,FR,CN,201812,1,2,686389,33029 -125,FR,CN,201812,3,2,6466,870 -125,FR,CN,201812,3,2,241076,7941 -125,FR,CN,201812,4,2,305189,4316 -125,FR,CN,201812,4,2,2488114,7936 -125,FR,CN,201812,4,2,35,79 -125,FR,CN,201812,4,2,99745,3355 -125,FR,CN,201812,4,2,4590,12 -125,FR,CN,201812,4,2,12467,680 -125,FR,CN,201812,8,2,13400,3270 -128,FR,CN,201812,0,1,3450,6806 -128,FR,CN,201812,1,1,2490,5654 -128,FR,CN,201812,1,1,6486,15052 -128,FR,CN,201812,1,1,5908,13631 -128,FR,CN,201812,1,1,22906,53541 -128,FR,CN,201812,1,1,31423,73349 -128,FR,CN,201812,3,1,62,0 -128,FR,CN,201812,1,2,1397806,2478745 -128,FR,CN,201812,1,2,766755,1514351 -128,FR,CN,201812,1,2,9354,40453 -128,FR,CN,201812,1,2,4506,2227 -128,FR,CN,201812,1,2,48114,50770 -128,FR,CN,201812,4,2,420,828 -128,FR,CN,201812,4,2,72,16 -131,FR,CN,201812,0,1,47974,35564 -131,FR,CN,201812,1,1,580285,231000 -131,FR,CN,201812,1,1,118594,90000 -132,FR,CN,201812,0,1,234,1 -132,FR,CN,201812,0,2,300,10 -132,FR,CN,201812,1,2,6100,200 -132,FR,CN,201812,1,2,75419,8514 -132,FR,CN,201812,1,2,389471,100608 -132,FR,CN,201812,1,2,2139884,499212 -132,FR,CN,201812,1,2,812529,113905 -132,FR,CN,201812,1,2,96534,18382 -132,FR,CN,201812,1,2,78850,6952 -132,FR,CN,201812,3,2,1061,17 -132,FR,CN,201812,3,2,350191,36523 -132,FR,CN,201812,4,2,36616,2381 -132,FR,CN,201812,4,2,8599,130 -132,FR,CN,201812,4,2,14118,1150 -132,FR,CN,201812,4,2,91046,3223 -132,FR,CN,201812,4,2,14058,1780 -133,FR,CN,201812,0,1,264209,59299 -133,FR,CN,201812,1,1,88691,15454 -133,FR,CN,201812,1,1,3517,533 -133,FR,CN,201812,1,1,30793,1051 -133,FR,CN,201812,1,1,10296,690 -133,FR,CN,201812,1,1,343076,15981 -133,FR,CN,201812,1,1,1468259,330488 -133,FR,CN,201812,1,1,46674,6142 -133,FR,CN,201812,1,1,9210,6769 -133,FR,CN,201812,1,1,389427,93298 -133,FR,CN,201812,1,1,26137,8000 -133,FR,CN,201812,1,1,81953,5000 -133,FR,CN,201812,1,1,22666,2004 -133,FR,CN,201812,1,1,165081,15120 -133,FR,CN,201812,1,1,607456,145538 -133,FR,CN,201812,1,1,95903,22560 -133,FR,CN,201812,1,1,42731,17600 -133,FR,CN,201812,1,1,82560,23243 -133,FR,CN,201812,3,1,884,66 -133,FR,CN,201812,3,1,7688,440 -133,FR,CN,201812,4,1,67253,1579 -133,FR,CN,201812,4,1,12169,221 -133,FR,CN,201812,4,1,5,4 -133,FR,CN,201812,4,1,10885,268 -133,FR,CN,201812,4,1,20565,870 -133,FR,CN,201812,5,1,297,28 -133,FR,CN,201812,1,2,53620,100 -133,FR,CN,201812,1,2,25952,325 -133,FR,CN,201812,1,2,34010,13189 -133,FR,CN,201812,4,2,41670,895 -133,FR,CN,201812,5,2,456,23 -134,FR,CN,201812,0,1,1114402,958230 -135,FR,CN,201812,0,1,183,3 -136,FR,CN,201812,0,1,265,5 -136,FR,CN,201812,1,1,2932,886 -136,FR,CN,201812,1,1,617,163 -136,FR,CN,201812,1,1,39563,5892 -136,FR,CN,201812,1,1,4621,1805 -136,FR,CN,201812,1,1,143198,47111 -136,FR,CN,201812,3,1,146,13 -136,FR,CN,201812,4,1,389,20 -136,FR,CN,201812,1,2,7340,4120 -136,FR,CN,201812,1,2,330326,160451 -136,FR,CN,201812,1,2,373122,112959 -136,FR,CN,201812,1,2,96769,22464 -136,FR,CN,201812,1,2,711,352 -136,FR,CN,201812,1,2,47255,14832 -136,FR,CN,201812,1,2,61427,19469 -136,FR,CN,201812,1,2,42068,6336 -136,FR,CN,201812,1,2,69176,62526 -136,FR,CN,201812,3,2,101767,8743 -136,FR,CN,201812,4,2,2615,85 -136,FR,CN,201812,4,2,146,30 -136,FR,CN,201812,4,2,5553,1150 -139,FR,CN,201812,0,1,9987,2875 -139,FR,CN,201812,1,1,1012239,77432 -139,FR,CN,201812,1,1,20880,4000 -139,FR,CN,201812,1,1,15586,19953 -139,FR,CN,201812,1,1,217,574 -139,FR,CN,201812,1,1,12192,22353 -139,FR,CN,201812,1,1,6383,128 -139,FR,CN,201812,1,1,49109,42565 -139,FR,CN,201812,1,1,74200,59383 -139,FR,CN,201812,1,1,42170,42657 -139,FR,CN,201812,1,1,47591,14472 -139,FR,CN,201812,1,1,58321,78417 -139,FR,CN,201812,1,1,282927,217786 -139,FR,CN,201812,1,1,53034,39034 -139,FR,CN,201812,1,1,5703,8000 -139,FR,CN,201812,1,1,615112,15001 -139,FR,CN,201812,1,1,26217,18534 -139,FR,CN,201812,1,1,13827,4920 -139,FR,CN,201812,1,1,705017,404504 -139,FR,CN,201812,1,1,46479,46466 -139,FR,CN,201812,1,1,59966,42769 -139,FR,CN,201812,1,1,32956,28814 -139,FR,CN,201812,1,1,12050,7796 -139,FR,CN,201812,1,1,433755,224469 -139,FR,CN,201812,1,1,23160,12110 -139,FR,CN,201812,1,1,32331,46262 -139,FR,CN,201812,3,1,2369,104 -139,FR,CN,201812,4,1,316503,4715 -139,FR,CN,201812,4,1,10125,350 -139,FR,CN,201812,4,1,2764,73 -139,FR,CN,201812,4,1,252,4 -139,FR,CN,201812,4,1,578,106 -139,FR,CN,201812,4,1,234,4 -139,FR,CN,201812,4,1,107,76 -139,FR,CN,201812,4,1,14659,250 -139,FR,CN,201812,4,1,678,15 -139,FR,CN,201812,0,2,151697,8777 -139,FR,CN,201812,1,2,40291,1268 -139,FR,CN,201812,1,2,17140,6723 -139,FR,CN,201812,1,2,7055932,929418 -139,FR,CN,201812,1,2,1569373,224136 -139,FR,CN,201812,1,2,723263,156296 -139,FR,CN,201812,1,2,2738458,541978 -139,FR,CN,201812,1,2,507762,90399 -139,FR,CN,201812,1,2,246462,7239 -139,FR,CN,201812,1,2,262492,42336 -139,FR,CN,201812,1,2,31142,7318 -139,FR,CN,201812,2,2,1048354,157340 -139,FR,CN,201812,4,2,169598,5697 -139,FR,CN,201812,4,2,4916,700 -139,FR,CN,201812,4,2,31224,1298 -139,FR,CN,201812,4,2,39117,2310 -139,FR,CN,201812,4,2,544429,63232 -139,FR,CN,201812,4,2,4448,200 -139,FR,CN,201812,4,2,7135,38 -141,FR,CN,201812,1,2,64700,48080 -141,FR,CN,201812,1,2,321127,219509 -141,FR,CN,201812,1,2,1017032,491324 -141,FR,CN,201812,1,2,874330,411592 -141,FR,CN,201812,1,2,49164,25000 -141,FR,CN,201812,1,2,994017,513021 -141,FR,CN,201812,1,2,1284134,749589 -141,FR,CN,201812,1,2,3814862,2192312 -141,FR,CN,201812,1,2,24487,24580 -141,FR,CN,201812,1,2,179932,74130 -141,FR,CN,201812,1,2,446716,298955 -141,FR,CN,201812,1,2,363178,221691 -141,FR,CN,201812,4,2,11685,1059 -142,FR,CN,201812,0,1,1267359,337296 -142,FR,CN,201812,1,1,1036710,300880 -142,FR,CN,201812,1,1,74318,23000 -142,FR,CN,201812,1,1,128339,45128 -142,FR,CN,201812,1,1,111900,18000 -142,FR,CN,201812,1,1,543516,190675 -142,FR,CN,201812,1,1,291937,79000 -142,FR,CN,201812,1,1,644515,125971 -142,FR,CN,201812,1,1,1807198,483641 -142,FR,CN,201812,1,1,214409,75188 -142,FR,CN,201812,1,1,876707,148646 -142,FR,CN,201812,1,1,2654358,551038 -142,FR,CN,201812,1,1,450887,79580 -142,FR,CN,201812,1,1,699099,244556 -142,FR,CN,201812,3,1,68455,10000 -142,FR,CN,201812,3,1,3721,37 -142,FR,CN,201812,4,1,10520,551 -142,FR,CN,201812,4,1,13810,155 -142,FR,CN,201812,1,2,12600,808 -142,FR,CN,201812,4,2,315858,41887 -142,FR,CN,201812,4,2,1327197,134006 -142,FR,CN,201812,4,2,5062,67 -143,FR,CN,201812,1,1,88015,18479 -143,FR,CN,201812,1,2,1298095,453667 -143,FR,CN,201812,1,2,248800,94418 -143,FR,CN,201812,1,2,1049726,366864 -143,FR,CN,201812,1,2,262100,91716 -143,FR,CN,201812,1,2,38880,88992 -143,FR,CN,201812,1,2,100980,186520 -143,FR,CN,201812,1,2,983568,383167 -143,FR,CN,201812,1,2,524230,183432 -143,FR,CN,201812,1,2,867068,401473 -143,FR,CN,201812,1,2,20736,44496 -143,FR,CN,201812,4,2,7921,1433 -144,FR,CN,201812,0,2,90013,6221 -144,FR,CN,201812,1,2,9263,1176 -144,FR,CN,201812,1,2,71100,10390 -144,FR,CN,201812,1,2,4951350,2751174 -144,FR,CN,201812,1,2,1231199,530296 -144,FR,CN,201812,1,2,461447,137705 -144,FR,CN,201812,1,2,987252,663750 -144,FR,CN,201812,1,2,37968,25000 -144,FR,CN,201812,1,2,34924,4611 -144,FR,CN,201812,1,2,155203,100000 -144,FR,CN,201812,1,2,2308015,1289945 -144,FR,CN,201812,1,2,24664,16697 -144,FR,CN,201812,1,2,655958,399950 -144,FR,CN,201812,1,2,252502,200000 -144,FR,CN,201812,4,2,56505,5886 -144,FR,CN,201812,4,2,156682,14750 -144,FR,CN,201812,4,2,56257,3700 -144,FR,CN,201812,4,2,27875,2061 -144,FR,CN,201812,4,2,157601,13326 -144,FR,CN,201812,4,2,1342,70 -144,FR,CN,201812,4,2,116550,9070 -147,FR,CN,201812,4,2,20896,1948 -147,FR,CN,201812,4,2,22425,1800 -147,FR,CN,201812,4,2,20500,2500 -148,FR,CN,201812,0,1,494987,1554 -148,FR,CN,201812,1,1,44032,21180 -148,FR,CN,201812,1,1,68493,34005 -148,FR,CN,201812,3,1,15531,9486 -148,FR,CN,201812,4,1,29882,121 -148,FR,CN,201812,4,1,529,13 -148,FR,CN,201812,4,2,1260,64 -161,FR,CN,201812,1,1,328,200 -161,FR,CN,201812,1,1,2080,1200 -161,FR,CN,201812,1,1,185,144 -161,FR,CN,201812,1,1,12295,9000 -161,FR,CN,201812,1,2,18744,33875 -161,FR,CN,201812,1,2,19963,38100 -161,FR,CN,201812,1,2,10472,21150 -161,FR,CN,201812,1,2,19000,36000 -161,FR,CN,201812,4,2,122,125 -162,FR,CN,201812,1,2,240,100 -162,FR,CN,201812,4,2,441,400 -162,FR,CN,201812,4,2,6125,90 -163,FR,CN,201812,0,1,65,1 -163,FR,CN,201812,1,1,9760,1895 -163,FR,CN,201812,1,1,27307,25112 -163,FR,CN,201812,1,1,2054,420 -163,FR,CN,201812,1,1,52429,7814 -163,FR,CN,201812,1,1,171975,77170 -163,FR,CN,201812,1,1,74033,36598 -163,FR,CN,201812,1,1,18388,4457 -163,FR,CN,201812,1,1,43,30 -163,FR,CN,201812,0,2,59,2 -163,FR,CN,201812,1,2,125025,225692 -163,FR,CN,201812,1,2,54769,10268 -163,FR,CN,201812,1,2,57302,27311 -163,FR,CN,201812,1,2,2504,4030 -163,FR,CN,201812,1,2,150420,27733 -163,FR,CN,201812,1,2,3450,803 -163,FR,CN,201812,1,2,53586,14271 -163,FR,CN,201812,3,2,9708,1836 -163,FR,CN,201812,3,2,30738,2952 -163,FR,CN,201812,4,2,4943,430 -163,FR,CN,201812,4,2,150,60 -163,FR,CN,201812,4,2,32252,5320 -164,FR,CN,201812,0,1,45122,44000 -164,FR,CN,201812,1,1,10599,2826 -164,FR,CN,201812,1,1,2728,632 -164,FR,CN,201812,1,1,99040,4982 -164,FR,CN,201812,1,1,61838,49086 -164,FR,CN,201812,1,1,2797,250 -164,FR,CN,201812,1,1,21689,10500 -164,FR,CN,201812,1,1,6938,2780 -164,FR,CN,201812,1,1,208606,113008 -164,FR,CN,201812,1,1,31205,14160 -164,FR,CN,201812,1,1,43029,41420 -164,FR,CN,201812,1,1,138069,40636 -164,FR,CN,201812,1,1,48260,32070 -164,FR,CN,201812,1,1,1178168,598638 -164,FR,CN,201812,1,1,20252,9700 -164,FR,CN,201812,1,1,75295,92339 -164,FR,CN,201812,1,1,138766,15911 -164,FR,CN,201812,1,1,38713,35000 -164,FR,CN,201812,1,1,211437,97584 -164,FR,CN,201812,1,1,59007,63180 -164,FR,CN,201812,3,1,515,23 -164,FR,CN,201812,3,1,66,28 -164,FR,CN,201812,3,1,37290,19488 -164,FR,CN,201812,4,1,972,7 -164,FR,CN,201812,4,1,63153,2125 -164,FR,CN,201812,0,2,26,0 -164,FR,CN,201812,1,2,19627,2973 -164,FR,CN,201812,1,2,89840,48135 -164,FR,CN,201812,1,2,156794,31282 -164,FR,CN,201812,1,2,141109,24722 -164,FR,CN,201812,1,2,95854,22820 -164,FR,CN,201812,1,2,8919,1792 -164,FR,CN,201812,1,2,1088860,272779 -164,FR,CN,201812,1,2,94910,23017 -164,FR,CN,201812,3,2,10,5 -164,FR,CN,201812,4,2,1830,234 -164,FR,CN,201812,4,2,2101,179 -164,FR,CN,201812,8,2,17550,2163 -165,FR,CN,201812,1,1,28138,23000 -165,FR,CN,201812,1,1,281840,200347 -165,FR,CN,201812,1,1,7114,5250 -165,FR,CN,201812,1,1,20534,13350 -165,FR,CN,201812,1,1,197979,195900 -165,FR,CN,201812,1,1,66670,57750 -165,FR,CN,201812,4,1,586,128 -166,FR,CN,201812,1,1,74092,22355 -166,FR,CN,201812,1,1,37,8 -166,FR,CN,201812,1,1,76474,8809 -166,FR,CN,201812,1,1,17492,20160 -166,FR,CN,201812,1,1,17849,12968 -166,FR,CN,201812,1,1,6741,3168 -166,FR,CN,201812,1,1,28171,10047 -166,FR,CN,201812,1,1,738606,255199 -166,FR,CN,201812,1,1,70441,13074 -166,FR,CN,201812,1,1,53241,24766 -166,FR,CN,201812,1,1,267384,113800 -166,FR,CN,201812,1,1,43982,35144 -166,FR,CN,201812,1,1,13014,17196 -166,FR,CN,201812,1,1,23957,9900 -166,FR,CN,201812,1,1,1480466,491253 -166,FR,CN,201812,1,1,15329,9827 -166,FR,CN,201812,1,1,462898,180010 -166,FR,CN,201812,1,1,148457,143839 -166,FR,CN,201812,1,1,54792,28786 -166,FR,CN,201812,1,1,70671,61824 -166,FR,CN,201812,1,1,52026,11263 -166,FR,CN,201812,1,1,26139,9536 -166,FR,CN,201812,3,1,743,150 -166,FR,CN,201812,3,1,426,110 -166,FR,CN,201812,4,1,74,3 -166,FR,CN,201812,4,1,60359,701 -166,FR,CN,201812,0,2,30,1 -166,FR,CN,201812,1,2,11850,600 -166,FR,CN,201812,1,2,2070,651 -166,FR,CN,201812,1,2,17079,17920 -166,FR,CN,201812,1,2,2685,1624 -166,FR,CN,201812,1,2,22486,17098 -166,FR,CN,201812,4,2,63,8 -172,FR,CN,201812,1,1,78257,148805 -172,FR,CN,201812,1,1,255295,496195 -179,FR,CN,201812,1,1,38399,45000 -179,FR,CN,201812,1,1,28648,13400 -179,FR,CN,201812,1,1,46809,52000 -179,FR,CN,201812,1,1,31830,7943 -179,FR,CN,201812,1,1,45162,50050 -179,FR,CN,201812,4,1,101,5 -179,FR,CN,201812,4,1,2191,50 -179,FR,CN,201812,1,2,3052,936 -179,FR,CN,201812,1,2,138577,18421 -179,FR,CN,201812,1,2,9747,10000 -179,FR,CN,201812,1,2,607547,392600 -179,FR,CN,201812,4,2,490,142 -181,FR,CN,201812,1,1,23555,18450 -181,FR,CN,201812,1,1,21279,12830 -181,FR,CN,201812,1,1,7379,2000 -181,FR,CN,201812,1,1,38040,18000 -181,FR,CN,201812,1,1,31573,25975 -181,FR,CN,201812,1,1,38040,18000 -181,FR,CN,201812,1,1,120256,54000 -181,FR,CN,201812,1,1,91783,76000 -181,FR,CN,201812,1,1,21161,14000 -181,FR,CN,201812,4,1,69845,626 -181,FR,CN,201812,4,1,158,0 -181,FR,CN,201812,4,2,100,0 -182,FR,CN,201812,1,1,7549,3262 -182,FR,CN,201812,1,1,3930,380 -182,FR,CN,201812,1,1,11155,3000 -182,FR,CN,201812,1,1,5291,300 -182,FR,CN,201812,1,1,122363,20316 -182,FR,CN,201812,1,1,2524,1104 -182,FR,CN,201812,1,1,167114,15536 -182,FR,CN,201812,1,1,208169,38000 -182,FR,CN,201812,1,1,11178,1352 -182,FR,CN,201812,1,1,46114,10090 -182,FR,CN,201812,3,1,691,81 -182,FR,CN,201812,1,2,1714,180 -182,FR,CN,201812,1,2,18225,7500 -182,FR,CN,201812,1,2,15776,25001 -182,FR,CN,201812,1,2,15588,24946 -182,FR,CN,201812,1,2,18363,25000 -182,FR,CN,201812,1,2,44561,49509 -182,FR,CN,201812,1,2,17924,25000 -182,FR,CN,201812,1,2,85488,4278 -182,FR,CN,201812,1,2,14285,24995 -182,FR,CN,201812,1,2,463641,201564 -182,FR,CN,201812,1,2,26925,25000 -182,FR,CN,201812,1,2,349523,141500 -182,FR,CN,201812,1,2,15081,25000 -182,FR,CN,201812,3,2,609,121 -182,FR,CN,201812,4,2,54752,6798 -182,FR,CN,201812,4,2,6864,1175 -182,FR,CN,201812,4,2,19313,680 -321,FR,CN,201812,1,1,66214,20000 -321,FR,CN,201812,4,2,7594,124 -323,FR,CN,201812,1,2,116742,173924 -323,FR,CN,201812,4,2,467,170 -325,FR,CN,201812,1,2,435880,561620 -330,FR,CN,201812,1,2,26820799,0 -341,FR,CN,201812,0,1,25,1 -341,FR,CN,201812,1,1,2940,180 -341,FR,CN,201812,1,1,149,124 -341,FR,CN,201812,1,1,2093,245 -341,FR,CN,201812,1,1,7791,4518 -341,FR,CN,201812,1,1,1993,558 -341,FR,CN,201812,4,1,16,1 -341,FR,CN,201812,4,1,20,25 -341,FR,CN,201812,4,1,60,1 -341,FR,CN,201812,1,2,55126,3738 -341,FR,CN,201812,1,2,27688,6432 -341,FR,CN,201812,1,2,36888,4992 -341,FR,CN,201812,1,2,41400,23000 -341,FR,CN,201812,1,2,4824367,1645665 -341,FR,CN,201812,1,2,4887,23 -341,FR,CN,201812,1,2,9752,4682 -341,FR,CN,201812,1,2,126195,59546 -341,FR,CN,201812,1,2,63128,21700 -341,FR,CN,201812,1,2,934890,302991 -341,FR,CN,201812,1,2,151612,91969 -341,FR,CN,201812,1,2,218235,115507 -341,FR,CN,201812,3,2,3646,189 -341,FR,CN,201812,3,2,36048,24439 -341,FR,CN,201812,3,2,22880,9119 -341,FR,CN,201812,3,2,88036,23169 -341,FR,CN,201812,4,2,38592,5380 -341,FR,CN,201812,4,2,4628,67 -341,FR,CN,201812,4,2,105,3 -341,FR,CN,201812,4,2,293,160 -341,FR,CN,201812,4,2,25750,130 -341,FR,CN,201812,4,2,179,30 -341,FR,CN,201812,4,2,35,50 -341,FR,CN,201812,4,2,25755,3537 -341,FR,CN,201812,4,2,24299,2370 -341,FR,CN,201812,4,2,1251,44 -343,FR,CN,201812,3,2,206928,418000 -349,FR,CN,201812,1,1,1435256,3050807 -349,FR,CN,201812,1,1,19169,18000 -349,FR,CN,201812,1,2,5941,779 -349,FR,CN,201812,4,2,27,1 -349,FR,CN,201812,4,2,19,0 -451,FR,CN,201812,1,1,50061,19920 -451,FR,CN,201812,4,1,117,0 -451,FR,CN,201812,1,2,3954924,1802360 -451,FR,CN,201812,1,2,369717,230700 -451,FR,CN,201812,1,2,965325,512220 -451,FR,CN,201812,1,2,169693,154760 -451,FR,CN,201812,1,2,874481,464760 -451,FR,CN,201812,1,2,1321898,715220 -451,FR,CN,201812,1,2,2171869,1187400 -453,FR,CN,201812,0,1,41752,96000 -453,FR,CN,201812,1,1,3644936,5536200 -453,FR,CN,201812,3,1,46,0 -455,FR,CN,201812,3,1,69,0 -459,FR,CN,201812,4,1,220,13 -459,FR,CN,201812,1,2,1400,1900 -459,FR,CN,201812,3,2,711,450 -462,FR,CN,201812,0,1,340,112 -462,FR,CN,201812,1,1,52703,12977 -462,FR,CN,201812,1,1,32199,20000 -462,FR,CN,201812,3,1,37250,7472 -462,FR,CN,201812,1,2,12814,23580 -462,FR,CN,201812,1,2,41014,103280 -512,FR,CN,201812,4,1,711,34 -512,FR,CN,201812,1,2,10084,225 -515,FR,CN,201812,1,1,1581,762 -522,FR,CN,201812,4,1,385,11 -522,FR,CN,201812,1,2,109080,119890 -532,FR,CN,201812,1,1,10244,864 -532,FR,CN,201812,1,1,4987,950 -532,FR,CN,201812,1,1,5362,2828 -532,FR,CN,201812,1,1,119733,196600 -532,FR,CN,201812,1,1,170413,300023 -532,FR,CN,201812,1,1,396,13 -532,FR,CN,201812,1,1,66664,21905 -532,FR,CN,201812,1,1,20864,21807 -532,FR,CN,201812,3,1,2041,163 -532,FR,CN,201812,4,1,543,45 -532,FR,CN,201812,4,1,291,1 -532,FR,CN,201812,4,1,36295,2632 -532,FR,CN,201812,1,2,228159,14158 -532,FR,CN,201812,1,2,57666,2152 -532,FR,CN,201812,4,2,79667,994 -532,FR,CN,201812,4,2,63825,1926 -532,FR,CN,201812,4,2,145928,3078 -533,FR,CN,201812,1,1,719485,104430 -533,FR,CN,201812,1,1,1457,159 -533,FR,CN,201812,1,1,11264,6753 -533,FR,CN,201812,1,1,10423,10808 -533,FR,CN,201812,3,1,96,2 -533,FR,CN,201812,3,1,130,20 -533,FR,CN,201812,4,1,121,9 -533,FR,CN,201812,4,1,12942,4060 -533,FR,CN,201812,1,2,1273444,197294 -533,FR,CN,201812,1,2,10641,737 -533,FR,CN,201812,1,2,28037,2060 -533,FR,CN,201812,1,2,100441,7697 -533,FR,CN,201812,1,2,1156648,307116 -533,FR,CN,201812,4,2,38286,7387 -533,FR,CN,201812,4,2,12098,82 -533,FR,CN,201812,4,2,4702,484 -533,FR,CN,201812,4,2,13748,239 -535,FR,CN,201812,3,1,307,5 -535,FR,CN,201812,1,2,263500,72831 -535,FR,CN,201812,1,2,432229,23386 -536,FR,CN,201812,0,1,966,247 -536,FR,CN,201812,1,1,13732,5300 -536,FR,CN,201812,1,1,193043,171887 -536,FR,CN,201812,1,1,22764,10659 -536,FR,CN,201812,1,1,17994,19203 -536,FR,CN,201812,1,1,50269,21588 -536,FR,CN,201812,1,1,203029,163026 -536,FR,CN,201812,1,1,210902,190080 -536,FR,CN,201812,1,1,543300,358208 -536,FR,CN,201812,1,1,5276,1889 -536,FR,CN,201812,1,1,341,132 -536,FR,CN,201812,1,1,44228,36049 -536,FR,CN,201812,3,1,18467,192 -536,FR,CN,201812,3,1,179152,234000 -536,FR,CN,201812,4,1,16515,100 -536,FR,CN,201812,4,1,4857,231 -536,FR,CN,201812,4,1,334,23 -536,FR,CN,201812,4,1,124,17 -536,FR,CN,201812,4,1,12283,126 -536,FR,CN,201812,4,1,118,8 -536,FR,CN,201812,1,2,513446,106016 -536,FR,CN,201812,1,2,61727,18000 -536,FR,CN,201812,3,2,77664,67867 -536,FR,CN,201812,4,2,5821,447 -536,FR,CN,201812,4,2,4930,950 -536,FR,CN,201812,4,2,645,0 -536,FR,CN,201812,4,2,1526,1040 -536,FR,CN,201812,4,2,3718,5 -537,FR,CN,201812,1,1,15081,2108 -537,FR,CN,201812,1,1,7585,6700 -542,FR,CN,201812,1,1,66479,81453 -542,FR,CN,201812,1,1,159214,194848 -542,FR,CN,201812,1,1,11802,22063 -542,FR,CN,201812,1,1,725798,558515 -542,FR,CN,201812,1,1,41659,49875 -542,FR,CN,201812,1,1,226626,64080 -542,FR,CN,201812,1,1,64440,17800 -542,FR,CN,201812,1,1,16727,3390 -542,FR,CN,201812,1,1,14340,3795 -542,FR,CN,201812,1,1,37363,10680 -542,FR,CN,201812,1,1,3009,1250 -542,FR,CN,201812,1,1,23551,26839 -542,FR,CN,201812,3,1,3084,161 -542,FR,CN,201812,4,1,958,103 -542,FR,CN,201812,4,1,667,63 -542,FR,CN,201812,1,2,2585256,2078642 -542,FR,CN,201812,1,2,2637,1830 -542,FR,CN,201812,1,2,23605,23960 -542,FR,CN,201812,1,2,35980,36520 -542,FR,CN,201812,1,2,14558,18570 -542,FR,CN,201812,1,2,11685,11860 -542,FR,CN,201812,1,2,178350,186085 -542,FR,CN,201812,1,2,52778,5552 -542,FR,CN,201812,1,2,394999,61781 -542,FR,CN,201812,1,2,26190,6567 -542,FR,CN,201812,1,2,970222,973385 -542,FR,CN,201812,1,2,18,2600 -542,FR,CN,201812,2,2,1083503,1064050 -542,FR,CN,201812,3,2,392699,376564 -542,FR,CN,201812,3,2,322154,341710 -542,FR,CN,201812,4,2,8025,1854 -542,FR,CN,201812,4,2,38255,11852 -543,FR,CN,201812,1,1,6585,240 -543,FR,CN,201812,3,1,9,0 -543,FR,CN,201812,4,1,625,21 -543,FR,CN,201812,1,2,3257,201 -543,FR,CN,201812,1,2,37880,2041 -543,FR,CN,201812,1,2,47973,21720 -543,FR,CN,201812,1,2,140012,42460 -543,FR,CN,201812,1,2,1781965,198945 -543,FR,CN,201812,1,2,895013,119560 -543,FR,CN,201812,4,2,3762,487 -543,FR,CN,201812,4,2,55704,3328 -543,FR,CN,201812,4,2,46503,5182 -545,FR,CN,201812,1,1,11772,3379 -545,FR,CN,201812,4,1,121,19 -551,FR,CN,201812,0,1,419,130 -551,FR,CN,201812,1,1,407362,101834 -551,FR,CN,201812,1,1,8,1 -551,FR,CN,201812,1,1,45406,2363 -551,FR,CN,201812,1,1,35899,2500 -551,FR,CN,201812,1,1,1863,280 -551,FR,CN,201812,1,1,1093245,951889 -551,FR,CN,201812,1,1,154735,14443 -551,FR,CN,201812,1,1,149655,15647 -551,FR,CN,201812,1,1,12389,2022 -551,FR,CN,201812,1,1,142164,14178 -551,FR,CN,201812,1,1,423763,652217 -551,FR,CN,201812,1,1,116517,154432 -551,FR,CN,201812,1,1,1112688,397278 -551,FR,CN,201812,1,1,44945,21074 -551,FR,CN,201812,1,1,76354,34760 -551,FR,CN,201812,1,1,52100,24005 -551,FR,CN,201812,1,1,39,3 -551,FR,CN,201812,1,1,21196,13572 -551,FR,CN,201812,1,1,88578,46072 -551,FR,CN,201812,1,1,106862,14722 -551,FR,CN,201812,1,1,668595,205503 -551,FR,CN,201812,1,1,1157,150 -551,FR,CN,201812,1,1,747780,474631 -551,FR,CN,201812,1,1,24528,6086 -551,FR,CN,201812,1,1,103402,89095 -551,FR,CN,201812,2,1,126,23 -551,FR,CN,201812,3,1,67411,8176 -551,FR,CN,201812,3,1,820,15 -551,FR,CN,201812,3,1,7125,28 -551,FR,CN,201812,3,1,7753,231 -551,FR,CN,201812,3,1,77116,11889 -551,FR,CN,201812,3,1,244,2 -551,FR,CN,201812,3,1,5748,75 -551,FR,CN,201812,3,1,149209,76074 -551,FR,CN,201812,4,1,136316,9142 -551,FR,CN,201812,4,1,83228,1185 -551,FR,CN,201812,4,1,630,21 -551,FR,CN,201812,4,1,25278,1356 -551,FR,CN,201812,4,1,80,3 -551,FR,CN,201812,4,1,3670,220 -551,FR,CN,201812,4,1,46377,2767 -551,FR,CN,201812,4,1,13825,305 -551,FR,CN,201812,4,1,140601,1276 -551,FR,CN,201812,4,1,7630,109 -551,FR,CN,201812,4,1,316057,11565 -551,FR,CN,201812,4,1,3811,249 -551,FR,CN,201812,1,2,794617,214643 -551,FR,CN,201812,1,2,3359,440 -551,FR,CN,201812,1,2,1627991,1241256 -551,FR,CN,201812,1,2,2653,302 -551,FR,CN,201812,1,2,98121,729 -551,FR,CN,201812,1,2,181234,31148 -551,FR,CN,201812,1,2,68705,12091 -551,FR,CN,201812,1,2,6000,40 -551,FR,CN,201812,1,2,38288,20188 -551,FR,CN,201812,1,2,55540,10131 -551,FR,CN,201812,3,2,75778,22751 -551,FR,CN,201812,4,2,566411,4730 -551,FR,CN,201812,4,2,2247,9 -551,FR,CN,201812,4,2,70821,642 -551,FR,CN,201812,4,2,14174,132 -551,FR,CN,201812,4,2,1315,4 -551,FR,CN,201812,4,2,70829,6230 -551,FR,CN,201812,4,2,103581,273 -551,FR,CN,201812,4,2,4844,700 -551,FR,CN,201812,4,2,12586,660 -551,FR,CN,201812,4,2,47661,620 -551,FR,CN,201812,4,2,7599,8 -551,FR,CN,201812,4,2,2385,100 -552,FR,CN,201812,0,1,28007,45 -552,FR,CN,201812,1,1,109093,24290 -552,FR,CN,201812,1,1,57335,11997 -552,FR,CN,201812,1,1,62031,49459 -552,FR,CN,201812,1,1,13248,6649 -552,FR,CN,201812,1,1,814,79 -552,FR,CN,201812,1,1,203,32 -552,FR,CN,201812,1,1,93732,10588 -552,FR,CN,201812,1,1,9337,4284 -552,FR,CN,201812,1,1,18627,6639 -552,FR,CN,201812,1,1,13007,5586 -552,FR,CN,201812,1,1,30547,9956 -552,FR,CN,201812,1,1,239435,83994 -552,FR,CN,201812,1,1,5467,1277 -552,FR,CN,201812,1,1,54312,39176 -552,FR,CN,201812,1,1,59865,42949 -552,FR,CN,201812,1,1,26,9 -552,FR,CN,201812,1,1,14854,4001 -552,FR,CN,201812,1,1,82569,58766 -552,FR,CN,201812,1,1,23549,14114 -552,FR,CN,201812,1,1,924862,529064 -552,FR,CN,201812,1,1,51626,11500 -552,FR,CN,201812,1,1,33307,25350 -552,FR,CN,201812,1,1,783,26 -552,FR,CN,201812,1,1,157132,75313 -552,FR,CN,201812,1,1,37958,21367 -552,FR,CN,201812,1,1,1031,100 -552,FR,CN,201812,1,1,23547,15344 -552,FR,CN,201812,2,1,2536,1077 -552,FR,CN,201812,3,1,18058,672 -552,FR,CN,201812,3,1,2730,66 -552,FR,CN,201812,4,1,8837,674 -552,FR,CN,201812,4,1,9332,163 -552,FR,CN,201812,4,1,4353,209 -552,FR,CN,201812,4,1,425,30 -552,FR,CN,201812,4,1,3275,414 -552,FR,CN,201812,4,1,6739,183 -552,FR,CN,201812,4,1,6722,124 -552,FR,CN,201812,4,1,304,33 -552,FR,CN,201812,4,1,46,1 -552,FR,CN,201812,4,1,64886,3834 -552,FR,CN,201812,4,1,1003,72 -552,FR,CN,201812,1,2,64630,9631 -552,FR,CN,201812,1,2,320,0 -552,FR,CN,201812,1,2,14055,513 -552,FR,CN,201812,1,2,412,16 -552,FR,CN,201812,3,2,5512,301 -552,FR,CN,201812,3,2,41590,52 -552,FR,CN,201812,4,2,9585,88 -552,FR,CN,201812,4,2,13298,230 -552,FR,CN,201812,4,2,7760,1188 -552,FR,CN,201812,4,2,18494,54 -552,FR,CN,201812,4,2,49498,202 -552,FR,CN,201812,4,2,85583,90 -561,FR,CN,201812,1,1,807,210 -561,FR,CN,201812,3,1,207,14 -561,FR,CN,201812,4,1,1361,0 -561,FR,CN,201812,4,1,834,0 -561,FR,CN,201812,1,2,2600,435 -561,FR,CN,201812,3,2,4075,114 -561,FR,CN,201812,4,2,2,0 -561,FR,CN,201812,4,2,3173,1050 -562,FR,CN,201812,0,1,2305,1 -562,FR,CN,201812,1,1,121651,32821 -562,FR,CN,201812,1,1,1955,191 -562,FR,CN,201812,3,1,1483,24 -562,FR,CN,201812,1,2,1394,400 -562,FR,CN,201812,3,2,450,100 -562,FR,CN,201812,3,2,42600,2070 -562,FR,CN,201812,3,2,226661,6966 -562,FR,CN,201812,4,2,1149,0 -563,FR,CN,201812,3,1,660,4 -564,FR,CN,201812,3,1,271,6 -564,FR,CN,201812,4,1,239,7 -565,FR,CN,201812,0,1,504545,205565 -565,FR,CN,201812,1,1,312,109 -565,FR,CN,201812,1,1,90227,39424 -565,FR,CN,201812,1,1,440813,20044 -565,FR,CN,201812,1,1,33175,1897 -565,FR,CN,201812,1,1,60699,24967 -565,FR,CN,201812,1,1,105988,54000 -565,FR,CN,201812,1,1,503025,45052 -565,FR,CN,201812,1,1,112038,48000 -565,FR,CN,201812,1,1,1085166,150451 -565,FR,CN,201812,3,1,77022,928 -565,FR,CN,201812,3,1,26257,35 -565,FR,CN,201812,4,1,1325362,2514 -565,FR,CN,201812,4,1,53764,95 -565,FR,CN,201812,4,1,124187,832 -565,FR,CN,201812,4,1,2294,29 -565,FR,CN,201812,4,1,16308,522 -565,FR,CN,201812,4,1,17,0 -565,FR,CN,201812,4,1,56311,162 -565,FR,CN,201812,4,1,5731,129 -565,FR,CN,201812,4,1,246203,3113 -565,FR,CN,201812,4,1,3077,68 -565,FR,CN,201812,1,2,31700,1300 -565,FR,CN,201812,4,2,1065759,1631 -565,FR,CN,201812,4,2,6478,67 -565,FR,CN,201812,4,2,8786,430 -565,FR,CN,201812,4,2,124355,184 -565,FR,CN,201812,4,2,5687,0 -565,FR,CN,201812,4,2,16030,6 -565,FR,CN,201812,4,2,3022,60 -565,FR,CN,201812,4,2,11881,1 -568,FR,CN,201812,0,1,184578,35378 -568,FR,CN,201812,1,1,191541,26424 -568,FR,CN,201812,1,1,97760,30661 -568,FR,CN,201812,1,1,387993,61330 -568,FR,CN,201812,1,1,6146,962 -568,FR,CN,201812,1,1,3570,852 -568,FR,CN,201812,1,1,17084,2128 -568,FR,CN,201812,1,1,102958,36142 -568,FR,CN,201812,1,1,4837,1238 -568,FR,CN,201812,1,1,788312,261960 -568,FR,CN,201812,1,1,60301,15354 -568,FR,CN,201812,1,1,313847,48644 -568,FR,CN,201812,1,1,207186,21912 -568,FR,CN,201812,1,1,129341,7790 -568,FR,CN,201812,1,1,204428,64265 -568,FR,CN,201812,1,1,382476,128029 -568,FR,CN,201812,1,1,1731350,379342 -568,FR,CN,201812,1,1,218998,58068 -568,FR,CN,201812,1,1,16155,2295 -568,FR,CN,201812,1,1,72683,23595 -568,FR,CN,201812,1,1,84517,3450 -568,FR,CN,201812,1,1,42017,13755 -568,FR,CN,201812,1,1,2715,149 -568,FR,CN,201812,1,1,1160,208 -568,FR,CN,201812,1,1,372599,35804 -568,FR,CN,201812,1,1,2968120,548524 -568,FR,CN,201812,1,1,5522,843 -568,FR,CN,201812,1,1,1232268,312541 -568,FR,CN,201812,1,1,10241,498 -568,FR,CN,201812,1,1,60130,23029 -568,FR,CN,201812,1,1,105970,9132 -568,FR,CN,201812,3,1,168906,5511 -568,FR,CN,201812,3,1,11800,43 -568,FR,CN,201812,3,1,51429,13047 -568,FR,CN,201812,3,1,1851,258 -568,FR,CN,201812,3,1,1401,10 -568,FR,CN,201812,3,1,5845,310 -568,FR,CN,201812,3,1,14739,2079 -568,FR,CN,201812,3,1,20689,1355 -568,FR,CN,201812,3,1,23723,1989 -568,FR,CN,201812,4,1,92279,6909 -568,FR,CN,201812,4,1,241477,18377 -568,FR,CN,201812,4,1,6278,296 -568,FR,CN,201812,4,1,3607,146 -568,FR,CN,201812,4,1,22184,499 -568,FR,CN,201812,4,1,156,5 -568,FR,CN,201812,4,1,5943,125 -568,FR,CN,201812,4,1,243,0 -568,FR,CN,201812,4,1,6546,137 -568,FR,CN,201812,4,1,4778,15 -568,FR,CN,201812,4,1,47462,229 -568,FR,CN,201812,4,1,80325,2633 -568,FR,CN,201812,4,1,5047,141 -568,FR,CN,201812,4,1,131,4 -568,FR,CN,201812,0,2,26,13 -568,FR,CN,201812,1,2,562320,30530 -568,FR,CN,201812,1,2,2808,237 -568,FR,CN,201812,1,2,6221,1135 -568,FR,CN,201812,1,2,190935,12912 -568,FR,CN,201812,1,2,242,26 -568,FR,CN,201812,1,2,310624,16542 -568,FR,CN,201812,1,2,634770,142613 -568,FR,CN,201812,1,2,122162,38450 -568,FR,CN,201812,1,2,728610,33346 -568,FR,CN,201812,1,2,243023,101535 -568,FR,CN,201812,1,2,20584,1592 -568,FR,CN,201812,1,2,7797,1485 -568,FR,CN,201812,2,2,235462,11546 -568,FR,CN,201812,3,2,1727026,82650 -568,FR,CN,201812,3,2,4453,515 -568,FR,CN,201812,4,2,133994,8760 -568,FR,CN,201812,4,2,9660,79 -568,FR,CN,201812,4,2,416,0 -568,FR,CN,201812,4,2,3133,80 -568,FR,CN,201812,4,2,120091,4022 -568,FR,CN,201812,4,2,318,2 -568,FR,CN,201812,4,2,8686,54 -568,FR,CN,201812,4,2,13197,850 -611,FR,CN,201812,1,1,5874,16236 -611,FR,CN,201812,1,1,61666,23850 -611,FR,CN,201812,1,1,22850,20985 -611,FR,CN,201812,3,1,92,4 -611,FR,CN,201812,4,1,10,1 -611,FR,CN,201812,1,2,4928,20400 -612,FR,CN,201812,1,1,9200,46200 -612,FR,CN,201812,1,1,70,34 -612,FR,CN,201812,1,1,7593,27384 -612,FR,CN,201812,1,1,6262,24000 -612,FR,CN,201812,1,2,9004,50000 -612,FR,CN,201812,1,2,34096,250000 -613,FR,CN,201812,1,1,877,403 -613,FR,CN,201812,1,1,3491,975 -613,FR,CN,201812,3,1,193,1 -614,FR,CN,201812,1,1,3681,6182 -614,FR,CN,201812,1,1,973,164 -614,FR,CN,201812,1,1,20481,78000 -614,FR,CN,201812,1,1,8344,27000 -614,FR,CN,201812,3,1,101,2 -614,FR,CN,201812,3,1,368,200 -614,FR,CN,201812,1,2,38944,80000 -614,FR,CN,201812,1,2,1740835,1102200 -614,FR,CN,201812,3,2,1290,1000 -614,FR,CN,201812,3,2,9736,20000 -614,FR,CN,201812,4,2,122,56 -614,FR,CN,201812,4,2,3342,31 -615,FR,CN,201812,4,1,44,3 -621,FR,CN,201812,1,1,26006,171250 -621,FR,CN,201812,1,1,69735,6121 -621,FR,CN,201812,1,2,8000,1161 -621,FR,CN,201812,1,2,69618,5630 -621,FR,CN,201812,1,2,20568,18360 -621,FR,CN,201812,1,2,81358,10045 -621,FR,CN,201812,4,2,100167,8065 -621,FR,CN,201812,4,2,3024,300 -623,FR,CN,201812,1,2,737,330 -631,FR,CN,201812,3,2,4594,45000 -632,FR,CN,201812,1,1,1156,367 -632,FR,CN,201812,1,1,38066,88750 -632,FR,CN,201812,4,1,125,9 -632,FR,CN,201812,1,2,104771,618500 -634,FR,CN,201812,1,2,200,1000 -639,FR,CN,201812,1,1,7108,1486 -639,FR,CN,201812,1,1,733259,1047686 -639,FR,CN,201812,1,1,58,13 -639,FR,CN,201812,1,1,19206,88000 -639,FR,CN,201812,1,1,14161,23600 -639,FR,CN,201812,1,1,202352,680470 -639,FR,CN,201812,3,1,11952,162 -639,FR,CN,201812,3,1,35688,29 -639,FR,CN,201812,4,1,540,2 -639,FR,CN,201812,4,1,128,3 -639,FR,CN,201812,4,1,6351,210 -639,FR,CN,201812,4,1,661,50 -639,FR,CN,201812,1,2,70374,61000 -639,FR,CN,201812,4,2,110,40 -641,FR,CN,201812,1,1,158,2000 -641,FR,CN,201812,1,1,201799,603400 -650,FR,CN,201812,1,1,892,1800 -650,FR,CN,201812,1,1,1330,504 -650,FR,CN,201812,1,1,11669,10000 -691,FR,CN,201812,0,1,6466,3117 -691,FR,CN,201812,1,1,152525,171585 -691,FR,CN,201812,1,1,4029,2570 -691,FR,CN,201812,1,1,6403,1391 -691,FR,CN,201812,1,1,255824,326374 -691,FR,CN,201812,1,1,690,217 -691,FR,CN,201812,1,1,22047,41383 -691,FR,CN,201812,1,1,5099,8514 -691,FR,CN,201812,1,1,1731,2150 -691,FR,CN,201812,1,1,513,148 -691,FR,CN,201812,1,1,104259,120901 -691,FR,CN,201812,1,1,1774627,2834091 -691,FR,CN,201812,1,1,13912,11415 -691,FR,CN,201812,1,1,26794,33889 -691,FR,CN,201812,1,1,757479,1196851 -691,FR,CN,201812,1,1,190335,218697 -691,FR,CN,201812,1,1,14684,9795 -691,FR,CN,201812,1,1,53208,55021 -691,FR,CN,201812,1,1,7144,27000 -691,FR,CN,201812,1,1,331139,528246 -691,FR,CN,201812,1,1,9910,11000 -691,FR,CN,201812,1,1,5590,24500 -691,FR,CN,201812,1,1,10602,6191 -691,FR,CN,201812,1,1,77949,145292 -691,FR,CN,201812,1,1,97775,141216 -691,FR,CN,201812,1,1,1301080,1851498 -691,FR,CN,201812,1,1,4572,4500 -691,FR,CN,201812,1,1,13504,78010 -691,FR,CN,201812,1,1,244952,265654 -691,FR,CN,201812,1,1,423477,374211 -691,FR,CN,201812,1,1,61161,12150 -691,FR,CN,201812,1,1,67655,62100 -691,FR,CN,201812,1,1,149463,260771 -691,FR,CN,201812,1,1,6126,1150 -691,FR,CN,201812,3,1,30800,1555 -691,FR,CN,201812,3,1,61,55 -691,FR,CN,201812,4,1,256,10 -691,FR,CN,201812,4,1,178886,1735 -691,FR,CN,201812,4,1,833,51 -691,FR,CN,201812,4,1,39341,990 -691,FR,CN,201812,4,1,12634,210 -691,FR,CN,201812,4,1,9185,105 -691,FR,CN,201812,4,1,293,18 -691,FR,CN,201812,4,1,78860,1794 -691,FR,CN,201812,4,1,21878,210 -691,FR,CN,201812,4,1,45215,728 -691,FR,CN,201812,4,1,5532,56 -691,FR,CN,201812,1,2,3923,192 -691,FR,CN,201812,1,2,3996,180 -691,FR,CN,201812,1,2,861353,817207 -691,FR,CN,201812,1,2,152465,335469 -691,FR,CN,201812,1,2,138942,72050 -691,FR,CN,201812,1,2,69,0 -691,FR,CN,201812,2,2,20665,1413 -691,FR,CN,201812,3,2,203,94 -691,FR,CN,201812,4,2,212293,3438 -691,FR,CN,201812,4,2,532,105 -691,FR,CN,201812,4,2,2608,110 -691,FR,CN,201812,4,2,3087,15 -691,FR,CN,201812,4,2,12484,477 -691,FR,CN,201812,4,2,150603,590 -691,FR,CN,201812,4,2,25920,2139 -691,FR,CN,201812,4,2,26440,49 -691,FR,CN,201812,4,2,5,10 -691,FR,CN,201812,4,2,3379,76 -691,FR,CN,201812,4,2,1959,180 -691,FR,CN,201812,4,2,6469,2 -692,FR,CN,201812,1,1,48462,192470 -692,FR,CN,201812,1,1,451,796 -692,FR,CN,201812,1,1,3459,10329 -692,FR,CN,201812,1,1,1332,2880 -692,FR,CN,201812,1,1,38898,118621 -692,FR,CN,201812,1,1,216638,398841 -692,FR,CN,201812,1,1,6161,15000 -692,FR,CN,201812,1,1,483703,88831 -692,FR,CN,201812,1,1,28245,40526 -692,FR,CN,201812,1,1,59335,10278 -692,FR,CN,201812,1,1,114031,69762 -692,FR,CN,201812,1,1,2344,20960 -692,FR,CN,201812,1,1,60124,25020 -692,FR,CN,201812,2,1,34081,10288 -692,FR,CN,201812,3,1,2425,236 -692,FR,CN,201812,4,1,1757,17 -692,FR,CN,201812,1,2,14023,416 -692,FR,CN,201812,1,2,358087,97475 -692,FR,CN,201812,1,2,184587,99750 -692,FR,CN,201812,3,2,772,283 -692,FR,CN,201812,3,2,587,57 -692,FR,CN,201812,4,2,3614,24 -692,FR,CN,201812,4,2,234,160 -692,FR,CN,201812,4,2,7800,210 -719,FR,CN,201812,1,2,188290,72777 -723,FR,CN,201812,1,1,13884,24000 -723,FR,CN,201812,1,2,243469,504000 -724,FR,CN,201812,1,1,889540,4989520 -724,FR,CN,201812,1,1,14901,40520 -729,FR,CN,201812,1,1,15720,12000 -813,FR,CN,201812,1,1,35,10 -819,FR,CN,201812,0,1,3574796,280367 -819,FR,CN,201812,1,1,2143596,395076 -819,FR,CN,201812,1,1,56786,829 -819,FR,CN,201812,1,1,320311,45731 -819,FR,CN,201812,1,1,56586,15156 -819,FR,CN,201812,1,1,34556,1775 -819,FR,CN,201812,1,1,1091032,461600 -819,FR,CN,201812,1,1,22246,540 -819,FR,CN,201812,1,1,40444,750 -819,FR,CN,201812,1,1,4111039,83956 -819,FR,CN,201812,1,1,120605,3345 -819,FR,CN,201812,1,1,307720,161001 -819,FR,CN,201812,1,1,5378189,2013508 -819,FR,CN,201812,1,1,580422,205598 -819,FR,CN,201812,1,1,3711462,260300 -819,FR,CN,201812,1,1,26069,24900 -819,FR,CN,201812,1,1,1376781,914405 -819,FR,CN,201812,1,1,743428,44240 -819,FR,CN,201812,1,1,42860,36000 -819,FR,CN,201812,1,1,2618965,506841 -819,FR,CN,201812,1,1,386891,177500 -819,FR,CN,201812,1,1,154040,138432 -819,FR,CN,201812,1,1,1289264,61810 -819,FR,CN,201812,1,1,19590,700 -819,FR,CN,201812,1,1,7347250,3135340 -819,FR,CN,201812,1,1,658109,192400 -819,FR,CN,201812,1,1,95773,99700 -819,FR,CN,201812,1,1,172888,98800 -819,FR,CN,201812,1,1,495462,396700 -819,FR,CN,201812,1,1,6404058,2022665 -819,FR,CN,201812,1,1,601350,88220 -819,FR,CN,201812,1,1,1181697,247566 -819,FR,CN,201812,1,1,475365,168856 -819,FR,CN,201812,1,1,10884,9217 -819,FR,CN,201812,3,1,1089469,21600 -819,FR,CN,201812,3,1,14885,4500 -819,FR,CN,201812,3,1,150406,6933 -819,FR,CN,201812,3,1,11666,175 -819,FR,CN,201812,3,1,85626,4525 -819,FR,CN,201812,3,1,3419,200 -819,FR,CN,201812,3,1,150401,10573 -819,FR,CN,201812,3,1,7148,1183 -819,FR,CN,201812,3,1,44623,19200 -819,FR,CN,201812,3,1,2770,98 -819,FR,CN,201812,3,1,175742,15543 -819,FR,CN,201812,3,1,29245,4000 -819,FR,CN,201812,4,1,1539655,14109 -819,FR,CN,201812,4,1,208870,1923 -819,FR,CN,201812,4,1,630313,2108 -819,FR,CN,201812,4,1,8349,71 -819,FR,CN,201812,4,1,4181,600 -819,FR,CN,201812,4,1,38607,91 -819,FR,CN,201812,4,1,582478,10065 -819,FR,CN,201812,4,1,588091,47 -819,FR,CN,201812,4,1,93962,1800 -819,FR,CN,201812,4,1,107858,1000 -819,FR,CN,201812,4,1,1196,2 -819,FR,CN,201812,4,1,544536,8753 -819,FR,CN,201812,4,1,353191,2277 -819,FR,CN,201812,4,1,4746500,87588 -819,FR,CN,201812,4,1,94192,705 -819,FR,CN,201812,4,1,89178,676 -819,FR,CN,201812,1,2,91058,25581 -819,FR,CN,201812,1,2,4694666,5711540 -819,FR,CN,201812,1,2,217,7 -819,FR,CN,201812,1,2,5132866,1055650 -819,FR,CN,201812,1,2,89210,43805 -819,FR,CN,201812,1,2,31082,21300 -819,FR,CN,201812,1,2,156704,20496 -819,FR,CN,201812,1,2,32047,2200 -819,FR,CN,201812,1,2,47807,22000 -819,FR,CN,201812,1,2,38060,162340 -819,FR,CN,201812,1,2,1959070,1785120 -819,FR,CN,201812,1,2,42210,32000 -819,FR,CN,201812,1,2,43341,5000 -819,FR,CN,201812,1,2,20011,865 -819,FR,CN,201812,1,2,363030,60000 -819,FR,CN,201812,1,2,13600,19500 -819,FR,CN,201812,3,2,23944,3130 -819,FR,CN,201812,3,2,3465,210 -819,FR,CN,201812,3,2,25875,12500 -819,FR,CN,201812,3,2,68592,252540 -819,FR,CN,201812,3,2,40800,5496 -819,FR,CN,201812,4,2,774006,93313 -819,FR,CN,201812,4,2,6540,67 -819,FR,CN,201812,4,2,6726,150 -819,FR,CN,201812,4,2,1364,12 -819,FR,CN,201812,4,2,5439,200 -819,FR,CN,201812,4,2,188,4 -819,FR,CN,201812,4,2,1069547,73642 -819,FR,CN,201812,4,2,122206,40 -819,FR,CN,201812,4,2,25924,220 -819,FR,CN,201812,4,2,12928,54 -820,FR,CN,201812,1,1,53349,42750 -820,FR,CN,201812,1,1,18338,14000 -820,FR,CN,201812,4,1,11818,700 -820,FR,CN,201812,1,2,51710,1300 -820,FR,CN,201812,1,2,13051,16000 -820,FR,CN,201812,1,2,347890,488000 -820,FR,CN,201812,1,2,74763,120000 -820,FR,CN,201812,1,2,34918,2800 -820,FR,CN,201812,3,2,18350,440 -820,FR,CN,201812,4,2,1409,10 -820,FR,CN,201812,4,2,2611,290 -839,FR,CN,201812,1,2,86180,22000 -841,FR,CN,201812,1,1,21469,21750 -841,FR,CN,201812,1,1,128884,102857 -841,FR,CN,201812,1,2,1961765,2860396 -841,FR,CN,201812,1,2,771201,1183115 -841,FR,CN,201812,1,2,798103,1377061 -841,FR,CN,201812,1,2,358225,521931 -841,FR,CN,201812,3,2,252694,205735 -841,FR,CN,201812,4,2,170,765 -842,FR,CN,201812,4,1,677,28 -842,FR,CN,201812,4,1,747,13 -842,FR,CN,201812,1,2,175570,1118360 -842,FR,CN,201812,1,2,56256,500420 -842,FR,CN,201812,1,2,49776,287680 -842,FR,CN,201812,1,2,157586,224160 -842,FR,CN,201812,3,2,47,62 -891,FR,CN,201812,0,1,247811,140004 -891,FR,CN,201812,1,1,490015,248605 -891,FR,CN,201812,1,1,50094,24219 -891,FR,CN,201812,1,1,72558,10271 -891,FR,CN,201812,1,1,256472,225165 -891,FR,CN,201812,1,1,2903,4610 -891,FR,CN,201812,1,1,1322,280 -891,FR,CN,201812,1,1,28137,28000 -891,FR,CN,201812,1,1,36462,16000 -891,FR,CN,201812,1,1,342213,109621 -891,FR,CN,201812,1,1,1823,540 -891,FR,CN,201812,1,1,2441,211 -891,FR,CN,201812,1,1,137729,56542 -891,FR,CN,201812,1,1,7343,275 -891,FR,CN,201812,1,1,74248,18780 -891,FR,CN,201812,1,1,19491,4590 -891,FR,CN,201812,1,1,8383650,6272413 -891,FR,CN,201812,1,1,100677,60140 -891,FR,CN,201812,1,1,310889,137947 -891,FR,CN,201812,1,1,345808,186320 -891,FR,CN,201812,1,1,1493874,1317895 -891,FR,CN,201812,1,1,146816,122711 -891,FR,CN,201812,1,1,317389,89348 -891,FR,CN,201812,1,1,23568,4627 -891,FR,CN,201812,1,1,15308,3218 -891,FR,CN,201812,1,1,41248,20044 -891,FR,CN,201812,1,1,123157,31497 -891,FR,CN,201812,1,1,5456796,3213480 -891,FR,CN,201812,1,1,316254,105822 -891,FR,CN,201812,1,1,624,1 -891,FR,CN,201812,1,1,345984,87822 -891,FR,CN,201812,1,1,2155422,1301022 -891,FR,CN,201812,1,1,7003,1692 -891,FR,CN,201812,1,1,43145,10067 -891,FR,CN,201812,1,1,1169110,848991 -891,FR,CN,201812,2,1,489,32 -891,FR,CN,201812,2,1,1515,1111 -891,FR,CN,201812,3,1,162254,8207 -891,FR,CN,201812,3,1,2104,89 -891,FR,CN,201812,3,1,24052,646 -891,FR,CN,201812,3,1,930,73 -891,FR,CN,201812,3,1,765,39 -891,FR,CN,201812,3,1,11860,3246 -891,FR,CN,201812,3,1,1727,35 -891,FR,CN,201812,3,1,211595,40644 -891,FR,CN,201812,4,1,1085875,4118 -891,FR,CN,201812,4,1,29173,1057 -891,FR,CN,201812,4,1,118217,3163 -891,FR,CN,201812,4,1,26320,1542 -891,FR,CN,201812,4,1,55311,3230 -891,FR,CN,201812,4,1,842,9 -891,FR,CN,201812,4,1,336,12 -891,FR,CN,201812,4,1,3354,126 -891,FR,CN,201812,4,1,161234,7182 -891,FR,CN,201812,4,1,24614,258 -891,FR,CN,201812,4,1,272329,6473 -891,FR,CN,201812,4,1,83,9 -891,FR,CN,201812,4,1,3,0 -891,FR,CN,201812,4,1,7086,383 -891,FR,CN,201812,4,1,31450,3633 -891,FR,CN,201812,4,1,1592,288 -891,FR,CN,201812,4,1,1240,14 -891,FR,CN,201812,4,1,5752732,11288 -891,FR,CN,201812,4,1,30223,12 -891,FR,CN,201812,4,1,55483,1433 -891,FR,CN,201812,4,1,7850962,2796 -891,FR,CN,201812,4,1,79,3 -891,FR,CN,201812,4,1,2150,88 -891,FR,CN,201812,1,2,714830,132994 -891,FR,CN,201812,1,2,952579,78199 -891,FR,CN,201812,1,2,34083,7397 -891,FR,CN,201812,1,2,50340,6402 -891,FR,CN,201812,1,2,31016,1438 -891,FR,CN,201812,1,2,228977,22510 -891,FR,CN,201812,1,2,34707,3586 -891,FR,CN,201812,1,2,71574,8432 -891,FR,CN,201812,1,2,8442,5500 -891,FR,CN,201812,1,2,16748,2882 -891,FR,CN,201812,1,2,6737953,2080240 -891,FR,CN,201812,1,2,532886,134748 -891,FR,CN,201812,1,2,287231,157302 -891,FR,CN,201812,1,2,448673,173105 -891,FR,CN,201812,1,2,193947,54200 -891,FR,CN,201812,1,2,272093,147150 -891,FR,CN,201812,1,2,233212,65783 -891,FR,CN,201812,1,2,48506,14616 -891,FR,CN,201812,1,2,237009,77854 -891,FR,CN,201812,1,2,217,4 -891,FR,CN,201812,1,2,4443353,2542275 -891,FR,CN,201812,1,2,450690,110000 -891,FR,CN,201812,1,2,261751,17888 -891,FR,CN,201812,1,2,254445,61633 -891,FR,CN,201812,1,2,487437,149512 -891,FR,CN,201812,1,2,117901,55440 -891,FR,CN,201812,1,2,3449,700 -891,FR,CN,201812,2,2,30151,5502 -891,FR,CN,201812,3,2,29014,3065 -891,FR,CN,201812,3,2,5640,194 -891,FR,CN,201812,3,2,51845,9015 -891,FR,CN,201812,3,2,3250,200 -891,FR,CN,201812,3,2,602000,380800 -891,FR,CN,201812,4,2,1639286,144350 -891,FR,CN,201812,4,2,46108,1766 -891,FR,CN,201812,4,2,29,0 -891,FR,CN,201812,4,2,4460,450 -891,FR,CN,201812,4,2,2539,201 -891,FR,CN,201812,4,2,130457,2762 -891,FR,CN,201812,4,2,192905,1050 -891,FR,CN,201812,4,2,181661,7770 -891,FR,CN,201812,4,2,10013,116 -891,FR,CN,201812,4,2,300,175 -891,FR,CN,201812,4,2,11521,2693 -891,FR,CN,201812,4,2,5721,211 -891,FR,CN,201812,4,2,669262,47728 -891,FR,CN,201812,4,2,7553,115 -891,FR,CN,201812,4,2,2545,553 -891,FR,CN,201812,4,2,68,0 -891,FR,CN,201812,4,2,145178,21997 -891,FR,CN,201812,4,2,194375,3990 -891,FR,CN,201812,4,2,5010,112 -891,FR,CN,201812,4,2,19144,188 -892,FR,CN,201812,1,1,136208,15999 -892,FR,CN,201812,1,1,4254,500 -892,FR,CN,201812,1,1,694,0 -892,FR,CN,201812,1,1,10578,2484 -892,FR,CN,201812,1,1,70399,6517 -892,FR,CN,201812,1,1,2937,989 -892,FR,CN,201812,1,1,231,263 -892,FR,CN,201812,1,1,1029622,428361 -892,FR,CN,201812,1,1,162979,47891 -892,FR,CN,201812,1,1,400781,91750 -892,FR,CN,201812,1,1,241051,113664 -892,FR,CN,201812,1,1,5714,894 -892,FR,CN,201812,1,1,235,132 -892,FR,CN,201812,3,1,13249,1071 -892,FR,CN,201812,4,1,81322,3062 -892,FR,CN,201812,4,1,1115,100 -892,FR,CN,201812,4,1,481114,342 -892,FR,CN,201812,4,1,1320,35 -892,FR,CN,201812,4,1,11848,1190 -892,FR,CN,201812,4,1,2985,157 -892,FR,CN,201812,4,1,22490,875 -892,FR,CN,201812,4,1,104768,5642 -892,FR,CN,201812,4,1,24425,977 -892,FR,CN,201812,4,1,2254,50 -892,FR,CN,201812,1,2,92931,13563 -892,FR,CN,201812,1,2,2390,200 -892,FR,CN,201812,1,2,33521,3400 -892,FR,CN,201812,1,2,26500,3500 -892,FR,CN,201812,1,2,5023,1100 -892,FR,CN,201812,1,2,43,3 -892,FR,CN,201812,1,2,2489,720 -892,FR,CN,201812,1,2,1845,500 -892,FR,CN,201812,1,2,78545,16159 -892,FR,CN,201812,1,2,5589,1525 -892,FR,CN,201812,1,2,554002,191580 -892,FR,CN,201812,1,2,90953,7046 -892,FR,CN,201812,1,2,10464,4080 -892,FR,CN,201812,1,2,5192,80 -892,FR,CN,201812,1,2,13273,1370 -892,FR,CN,201812,1,2,26699,27900 -892,FR,CN,201812,1,2,63822,38100 -892,FR,CN,201812,1,2,30327,20000 -892,FR,CN,201812,1,2,24179,10025 -892,FR,CN,201812,1,2,316478,253000 -892,FR,CN,201812,1,2,12553,14000 -892,FR,CN,201812,3,2,14907,580 -892,FR,CN,201812,3,2,10960,260 -892,FR,CN,201812,3,2,12194,250 -892,FR,CN,201812,3,2,30748,10050 -892,FR,CN,201812,3,2,75007,12500 -892,FR,CN,201812,4,2,57668,2923 -892,FR,CN,201812,4,2,100077,5890 -892,FR,CN,201812,4,2,27619,1200 -892,FR,CN,201812,4,2,2337,254 -892,FR,CN,201812,4,2,1323,135 -892,FR,CN,201812,4,2,39433,2078 -892,FR,CN,201812,4,2,44355,1493 -892,FR,CN,201812,4,2,61,2 -892,FR,CN,201812,4,2,17764,2590 -893,FR,CN,201812,0,1,31552,1455 -893,FR,CN,201812,1,1,1678119,73048 -893,FR,CN,201812,1,1,162309,5743 -893,FR,CN,201812,1,1,339869,13872 -893,FR,CN,201812,1,1,426330,16000 -893,FR,CN,201812,1,1,5910,450 -893,FR,CN,201812,1,1,10301,2391 -893,FR,CN,201812,1,1,340548,19632 -893,FR,CN,201812,1,1,73398,2080 -893,FR,CN,201812,1,1,491355,39376 -893,FR,CN,201812,1,1,99395,4500 -893,FR,CN,201812,1,1,108,50 -893,FR,CN,201812,1,1,1576,1778 -893,FR,CN,201812,1,1,359009,24939 -893,FR,CN,201812,1,1,120381,3350 -893,FR,CN,201812,1,1,134500,5638 -893,FR,CN,201812,1,1,24170,3318 -893,FR,CN,201812,1,1,83319,63673 -893,FR,CN,201812,1,1,3061705,464026 -893,FR,CN,201812,1,1,55178,8939 -893,FR,CN,201812,1,1,328713,63350 -893,FR,CN,201812,1,1,36314,7339 -893,FR,CN,201812,1,1,18487,5267 -893,FR,CN,201812,1,1,55128,8365 -893,FR,CN,201812,1,1,3579,1098 -893,FR,CN,201812,1,1,13232,2450 -893,FR,CN,201812,1,1,46279,3000 -893,FR,CN,201812,1,1,32291,598 -893,FR,CN,201812,1,1,4846860,675888 -893,FR,CN,201812,1,1,438251,10000 -893,FR,CN,201812,1,1,28468,6451 -893,FR,CN,201812,1,1,2268761,212942 -893,FR,CN,201812,1,1,63409,11460 -893,FR,CN,201812,1,1,267966,53997 -893,FR,CN,201812,1,1,112102,33683 -893,FR,CN,201812,1,1,544709,49259 -893,FR,CN,201812,1,1,232747,31421 -893,FR,CN,201812,3,1,129301,4374 -893,FR,CN,201812,3,1,66691,255 -893,FR,CN,201812,3,1,6601,380 -893,FR,CN,201812,3,1,596,38 -893,FR,CN,201812,3,1,3533,106 -893,FR,CN,201812,3,1,3449,10 -893,FR,CN,201812,3,1,5979,215 -893,FR,CN,201812,4,1,2225117,47964 -893,FR,CN,201812,4,1,12424,278 -893,FR,CN,201812,4,1,30462,545 -893,FR,CN,201812,4,1,32582,729 -893,FR,CN,201812,4,1,139663,5386 -893,FR,CN,201812,4,1,406,0 -893,FR,CN,201812,4,1,15510,14 -893,FR,CN,201812,4,1,988320,15010 -893,FR,CN,201812,4,1,111282,2929 -893,FR,CN,201812,4,1,17064,656 -893,FR,CN,201812,4,1,1089139,24153 -893,FR,CN,201812,4,1,56630,670 -893,FR,CN,201812,4,1,6567,101 -893,FR,CN,201812,4,1,369,16 -893,FR,CN,201812,4,1,3681,73 -893,FR,CN,201812,0,2,1848,37 -893,FR,CN,201812,1,2,46138882,124672 -893,FR,CN,201812,1,2,9298,1000 -893,FR,CN,201812,1,2,26629,4336 -893,FR,CN,201812,1,2,148496,2302 -893,FR,CN,201812,1,2,640,197 -893,FR,CN,201812,1,2,39250,3795 -893,FR,CN,201812,1,2,1499363,28718 -893,FR,CN,201812,1,2,7410,12 -893,FR,CN,201812,1,2,18788,5560 -893,FR,CN,201812,1,2,23436690,816260 -893,FR,CN,201812,1,2,494492,32542 -893,FR,CN,201812,1,2,87297,5168 -893,FR,CN,201812,1,2,8053588,73206 -893,FR,CN,201812,1,2,67249,20000 -893,FR,CN,201812,1,2,42008,7142 -893,FR,CN,201812,1,2,53835,16000 -893,FR,CN,201812,1,2,31940,2608 -893,FR,CN,201812,1,2,164241,4340 -893,FR,CN,201812,1,2,981605,37789 -893,FR,CN,201812,1,2,326983,8779 -893,FR,CN,201812,1,2,18926026,1062782 -893,FR,CN,201812,1,2,289459,17933 -893,FR,CN,201812,1,2,93050,32880 -893,FR,CN,201812,1,2,110527,26718 -893,FR,CN,201812,2,2,55825,3210 -893,FR,CN,201812,3,2,814622,22565 -893,FR,CN,201812,3,2,6200,945 -893,FR,CN,201812,3,2,900481,26723 -893,FR,CN,201812,3,2,877144,21697 -893,FR,CN,201812,3,2,30890,1554 -893,FR,CN,201812,3,2,33971,18000 -893,FR,CN,201812,4,2,33857262,584551 -893,FR,CN,201812,4,2,301046,8373 -893,FR,CN,201812,4,2,70,30 -893,FR,CN,201812,4,2,60766,987 -893,FR,CN,201812,4,2,183282,4331 -893,FR,CN,201812,4,2,1312894,3118 -893,FR,CN,201812,4,2,223246,4283 -893,FR,CN,201812,4,2,313697,8233 -893,FR,CN,201812,4,2,2983,260 -893,FR,CN,201812,4,2,1279675,3712 -893,FR,CN,201812,4,2,8134899,59247 -893,FR,CN,201812,4,2,1998123,13039 -893,FR,CN,201812,4,2,1685,6 -893,FR,CN,201812,4,2,833434,9161 -893,FR,CN,201812,4,2,10409237,119594 -893,FR,CN,201812,4,2,2093547,19249 -893,FR,CN,201812,4,2,5593,520 -893,FR,CN,201812,4,2,2942049,41262 -893,FR,CN,201812,4,2,2873,2 -893,FR,CN,201812,4,2,45981,4000 -893,FR,CN,201812,4,2,14437,134 -894,FR,CN,201812,1,1,339974,77385 -894,FR,CN,201812,1,1,212972,58489 -894,FR,CN,201812,1,1,453077,148760 -894,FR,CN,201812,1,1,109520,19441 -894,FR,CN,201812,3,1,1253,4 -894,FR,CN,201812,4,2,783520,6324 -894,FR,CN,201812,4,2,200352,1700 -894,FR,CN,201812,4,2,424243,4179 -895,FR,CN,201812,1,1,621,162 -895,FR,CN,201812,1,2,138492,136000 -896,FR,CN,201812,0,1,553235,35447 -896,FR,CN,201812,1,1,94398,28621 -896,FR,CN,201812,1,1,19968,2054 -896,FR,CN,201812,1,1,129,0 -896,FR,CN,201812,1,1,494480,404826 -896,FR,CN,201812,1,1,1375,177 -896,FR,CN,201812,1,1,4495,2279 -896,FR,CN,201812,1,1,43790,1650 -896,FR,CN,201812,1,1,152048,75908 -896,FR,CN,201812,1,1,461,125 -896,FR,CN,201812,1,1,2966,427 -896,FR,CN,201812,1,1,67181,6867 -896,FR,CN,201812,1,1,1817,300 -896,FR,CN,201812,1,1,11011,2664 -896,FR,CN,201812,1,1,8813,400 -896,FR,CN,201812,1,1,15489,23845 -896,FR,CN,201812,1,1,1454086,693223 -896,FR,CN,201812,1,1,651319,684731 -896,FR,CN,201812,1,1,248733,143004 -896,FR,CN,201812,1,1,249315,105769 -896,FR,CN,201812,1,1,797407,640109 -896,FR,CN,201812,1,1,264892,54117 -896,FR,CN,201812,1,1,128228,24277 -896,FR,CN,201812,1,1,1718976,305189 -896,FR,CN,201812,1,1,364740,350174 -896,FR,CN,201812,1,1,28981,10000 -896,FR,CN,201812,1,1,11140,3419 -896,FR,CN,201812,1,1,965629,395472 -896,FR,CN,201812,1,1,17275,1783 -896,FR,CN,201812,1,1,99409,8544 -896,FR,CN,201812,1,1,3891,798 -896,FR,CN,201812,1,1,38204,44227 -896,FR,CN,201812,2,1,54853,7360 -896,FR,CN,201812,3,1,233272,1356 -896,FR,CN,201812,3,1,744,11 -896,FR,CN,201812,3,1,277,9 -896,FR,CN,201812,3,1,565,20 -896,FR,CN,201812,3,1,630,53 -896,FR,CN,201812,3,1,37204,2518 -896,FR,CN,201812,4,1,2074391,6280 -896,FR,CN,201812,4,1,2004,4 -896,FR,CN,201812,4,1,254893,1896 -896,FR,CN,201812,4,1,72692,326 -896,FR,CN,201812,4,1,4370,77 -896,FR,CN,201812,4,1,16824,123 -896,FR,CN,201812,4,1,22698,592 -896,FR,CN,201812,4,1,893032,3229 -896,FR,CN,201812,4,1,4233,1 -896,FR,CN,201812,4,1,8734,477 -896,FR,CN,201812,4,1,64,2 -896,FR,CN,201812,4,1,167641,4766 -896,FR,CN,201812,4,1,163121,562 -896,FR,CN,201812,4,1,751,33 -896,FR,CN,201812,4,1,1541,33 -896,FR,CN,201812,1,2,833139,46040 -896,FR,CN,201812,1,2,76902,10988 -896,FR,CN,201812,1,2,5976,1120 -896,FR,CN,201812,1,2,145428,2503 -896,FR,CN,201812,1,2,36291,4523 -896,FR,CN,201812,1,2,429,120 -896,FR,CN,201812,1,2,60270,4200 -896,FR,CN,201812,1,2,36800,2000 -896,FR,CN,201812,1,2,63019,6765 -896,FR,CN,201812,1,2,7146,842 -896,FR,CN,201812,1,2,23254,4656 -896,FR,CN,201812,1,2,23111616,714657 -896,FR,CN,201812,1,2,52107,37223 -896,FR,CN,201812,1,2,340229,144900 -896,FR,CN,201812,1,2,823670,527939 -896,FR,CN,201812,1,2,219411,36695 -896,FR,CN,201812,1,2,144947,35063 -896,FR,CN,201812,1,2,633156,15264 -896,FR,CN,201812,1,2,135795,88298 -896,FR,CN,201812,1,2,414014,22740 -896,FR,CN,201812,1,2,199428,31269 -896,FR,CN,201812,1,2,110292,26455 -896,FR,CN,201812,1,2,2181114,379077 -896,FR,CN,201812,1,2,28634,6300 -896,FR,CN,201812,1,2,636239,194887 -896,FR,CN,201812,1,2,214023,46610 -896,FR,CN,201812,1,2,122531,8411 -896,FR,CN,201812,1,2,788843,251247 -896,FR,CN,201812,1,2,135745,27360 -896,FR,CN,201812,1,2,734597,89900 -896,FR,CN,201812,2,2,7160,2000 -896,FR,CN,201812,3,2,100090,26226 -896,FR,CN,201812,3,2,40364,2421 -896,FR,CN,201812,3,2,437000,9641 -896,FR,CN,201812,3,2,73594,19185 -896,FR,CN,201812,4,2,6812858,77861 -896,FR,CN,201812,4,2,494,50 -896,FR,CN,201812,4,2,987624,49415 -896,FR,CN,201812,4,2,30,8 -896,FR,CN,201812,4,2,8955,900 -896,FR,CN,201812,4,2,10061,344 -896,FR,CN,201812,4,2,13386,1435 -896,FR,CN,201812,4,2,127472,4553 -896,FR,CN,201812,4,2,280062,8450 -896,FR,CN,201812,4,2,43839,1200 -896,FR,CN,201812,4,2,44611,844 -896,FR,CN,201812,4,2,165313,2419 -896,FR,CN,201812,4,2,102682,211 -896,FR,CN,201812,4,2,18494,163 -896,FR,CN,201812,4,2,176262,587 -896,FR,CN,201812,4,2,1313561,18396 -896,FR,CN,201812,4,2,9300,133 -896,FR,CN,201812,4,2,1440,62 -896,FR,CN,201812,4,2,1027,180 -896,FR,CN,201812,4,2,26960,2200 -896,FR,CN,201812,4,2,595535,1679 -910,FR,CN,201812,0,1,4423079,905319 -910,FR,CN,201812,1,1,2184344,427997 -910,FR,CN,201812,1,1,138693,5765 -910,FR,CN,201812,1,1,156454,16318 -910,FR,CN,201812,1,1,71067,6282 -910,FR,CN,201812,1,1,7062,1539 -910,FR,CN,201812,1,1,693985,28730 -910,FR,CN,201812,1,1,2456,90 -910,FR,CN,201812,1,1,215,35 -910,FR,CN,201812,1,1,17049,5083 -910,FR,CN,201812,1,1,116277,8736 -910,FR,CN,201812,1,1,14616,2658 -910,FR,CN,201812,1,1,5047,3945 -910,FR,CN,201812,1,1,2117355,332501 -910,FR,CN,201812,1,1,4396,426 -910,FR,CN,201812,1,1,46118,8072 -910,FR,CN,201812,1,1,3158225,155179 -910,FR,CN,201812,1,1,9258,1130 -910,FR,CN,201812,1,1,799,9 -910,FR,CN,201812,1,1,71075,17197 -910,FR,CN,201812,1,1,116362,33677 -910,FR,CN,201812,1,1,9686054,2713780 -910,FR,CN,201812,1,1,3624909,608052 -910,FR,CN,201812,1,1,276769,33177 -910,FR,CN,201812,1,1,1042315,614509 -910,FR,CN,201812,1,1,137409,85970 -910,FR,CN,201812,1,1,99588,11893 -910,FR,CN,201812,1,1,234813,46930 -910,FR,CN,201812,1,1,63280,9660 -910,FR,CN,201812,1,1,8573,2526 -910,FR,CN,201812,1,1,415624,83861 -910,FR,CN,201812,1,1,82914,59600 -910,FR,CN,201812,1,1,162652,23076 -910,FR,CN,201812,1,1,134817,35189 -910,FR,CN,201812,1,1,112075,49795 -910,FR,CN,201812,1,1,213931,95081 -910,FR,CN,201812,1,1,9394928,2483249 -910,FR,CN,201812,1,1,1680613,265140 -910,FR,CN,201812,1,1,50443,2815 -910,FR,CN,201812,1,1,59430,13365 -910,FR,CN,201812,1,1,56249,4210 -910,FR,CN,201812,1,1,1354,20 -910,FR,CN,201812,1,1,68172,11862 -910,FR,CN,201812,1,1,10806100,1455515 -910,FR,CN,201812,1,1,214789,11155 -910,FR,CN,201812,1,1,146886,23383 -910,FR,CN,201812,1,1,189084,28800 -910,FR,CN,201812,1,1,1858257,253625 -910,FR,CN,201812,1,1,201554,43578 -910,FR,CN,201812,1,1,180394,107509 -910,FR,CN,201812,1,1,2100,4560 -910,FR,CN,201812,2,1,1790223,204222 -910,FR,CN,201812,2,1,319847,44213 -910,FR,CN,201812,3,1,1374060,135245 -910,FR,CN,201812,3,1,672904,33080 -910,FR,CN,201812,3,1,112724,19243 -910,FR,CN,201812,3,1,3880179,253118 -910,FR,CN,201812,3,1,92,16 -910,FR,CN,201812,3,1,6720,480 -910,FR,CN,201812,3,1,14733,1704 -910,FR,CN,201812,3,1,728796,25025 -910,FR,CN,201812,3,1,167,80 -910,FR,CN,201812,3,1,335,160 -910,FR,CN,201812,3,1,168,80 -910,FR,CN,201812,3,1,49679,2858 -910,FR,CN,201812,3,1,79752,800 -910,FR,CN,201812,3,1,182758,41901 -910,FR,CN,201812,3,1,72803,17451 -910,FR,CN,201812,3,1,662636,37480 -910,FR,CN,201812,3,1,17186,7310 -910,FR,CN,201812,3,1,117977,4000 -910,FR,CN,201812,4,1,1737114,62660 -910,FR,CN,201812,4,1,87,70 -910,FR,CN,201812,4,1,4410479,13276 -910,FR,CN,201812,4,1,588,6 -910,FR,CN,201812,4,1,281405,1140 -910,FR,CN,201812,4,1,54075,892 -910,FR,CN,201812,4,1,101356,4076 -910,FR,CN,201812,4,1,1916,75 -910,FR,CN,201812,4,1,2323,103 -910,FR,CN,201812,4,1,8010,11 -910,FR,CN,201812,4,1,9400,536 -910,FR,CN,201812,4,1,23269,2222 -910,FR,CN,201812,4,1,14163,153 -910,FR,CN,201812,4,1,6572,577 -910,FR,CN,201812,4,1,1191,54 -910,FR,CN,201812,4,1,996094,10248 -910,FR,CN,201812,4,1,32367,1795 -910,FR,CN,201812,4,1,26334,1735 -910,FR,CN,201812,4,1,3807,308 -910,FR,CN,201812,4,1,5107721,63837 -910,FR,CN,201812,4,1,34835,2042 -910,FR,CN,201812,4,1,66013,3044 -910,FR,CN,201812,4,1,28754,320 -910,FR,CN,201812,4,1,1454,50 -910,FR,CN,201812,4,1,582,12 -910,FR,CN,201812,4,1,84483,57706 -910,FR,CN,201812,0,2,814,55 -910,FR,CN,201812,1,2,3992917,384237 -910,FR,CN,201812,1,2,241899,17087 -910,FR,CN,201812,1,2,42868,265 -910,FR,CN,201812,1,2,42162,6143 -910,FR,CN,201812,1,2,158057,13188 -910,FR,CN,201812,1,2,988103,5350 -910,FR,CN,201812,1,2,427610,23988 -910,FR,CN,201812,1,2,5024,1830 -910,FR,CN,201812,1,2,237292,1056 -910,FR,CN,201812,1,2,12116,920 -910,FR,CN,201812,1,2,5747,67 -910,FR,CN,201812,1,2,1900589,196087 -910,FR,CN,201812,1,2,788305,33857 -910,FR,CN,201812,1,2,1104,0 -910,FR,CN,201812,1,2,65640,15729 -910,FR,CN,201812,1,2,82750,4396 -910,FR,CN,201812,1,2,3628,0 -910,FR,CN,201812,1,2,78592,2114 -910,FR,CN,201812,1,2,65070,5020 -910,FR,CN,201812,1,2,607042,85723 -910,FR,CN,201812,1,2,591571,1322 -910,FR,CN,201812,1,2,562551,39048 -910,FR,CN,201812,1,2,934632,65544 -910,FR,CN,201812,2,2,13238,1071 -910,FR,CN,201812,2,2,22639,3400 -910,FR,CN,201812,3,2,258593,16132 -910,FR,CN,201812,3,2,181827,26412 -910,FR,CN,201812,3,2,66785,6039 -910,FR,CN,201812,3,2,132504,3337 -910,FR,CN,201812,3,2,11416,860 -910,FR,CN,201812,3,2,17617,4265 -910,FR,CN,201812,3,2,58538,3091 -910,FR,CN,201812,4,2,15855229,60094 -910,FR,CN,201812,4,2,35459,982 -910,FR,CN,201812,4,2,6582535,20008 -910,FR,CN,201812,4,2,820,45 -910,FR,CN,201812,4,2,9629,652 -910,FR,CN,201812,4,2,8426,4 -910,FR,CN,201812,4,2,123,10 -910,FR,CN,201812,4,2,5672,3 -910,FR,CN,201812,4,2,80072,4033 -910,FR,CN,201812,4,2,13321,392 -910,FR,CN,201812,4,2,45384,45 -910,FR,CN,201812,4,2,1550,135 -910,FR,CN,201812,4,2,128456,866 -910,FR,CN,201812,4,2,17336,750 -910,FR,CN,201812,4,2,155205,2653 -910,FR,CN,201812,4,2,43205,80 -910,FR,CN,201812,4,2,1908,138 -910,FR,CN,201812,4,2,6242519,37140 -910,FR,CN,201812,4,2,150129,230 -910,FR,CN,201812,4,2,1801,155 -910,FR,CN,201812,4,2,7278,67 -910,FR,CN,201812,4,2,651924,41842 -910,FR,CN,201812,4,2,290958,7737 -910,FR,CN,201812,4,2,16719,106 -910,FR,CN,201812,4,2,324537,12950 -910,FR,CN,201812,4,2,31407,64 -910,FR,CN,201812,4,2,114406,398 -910,FR,CN,201812,9,2,1010726899,1118500 -920,FR,CN,201812,0,1,56623,14856 -920,FR,CN,201812,1,1,109921,16740 -920,FR,CN,201812,1,1,8641,2760 -920,FR,CN,201812,1,1,66367,21132 -920,FR,CN,201812,1,1,89283,15106 -920,FR,CN,201812,1,1,1485,261 -920,FR,CN,201812,1,1,110883,18189 -920,FR,CN,201812,1,1,28923,6643 -920,FR,CN,201812,1,1,2202188,401270 -920,FR,CN,201812,1,1,1044983,222057 -920,FR,CN,201812,1,1,60914,9202 -920,FR,CN,201812,1,1,209128,47846 -920,FR,CN,201812,1,1,140006,33918 -920,FR,CN,201812,1,1,181785,63855 -920,FR,CN,201812,1,1,198437,47760 -920,FR,CN,201812,1,1,47178,18450 -920,FR,CN,201812,1,1,49696,14196 -920,FR,CN,201812,1,1,100146,21706 -920,FR,CN,201812,1,1,1328723,283441 -920,FR,CN,201812,1,1,15984,7966 -920,FR,CN,201812,1,1,434,25 -920,FR,CN,201812,1,1,518854,96544 -920,FR,CN,201812,1,1,298431,56194 -920,FR,CN,201812,1,1,46359,19447 -920,FR,CN,201812,3,1,18737,972 -920,FR,CN,201812,4,1,25385,1622 -920,FR,CN,201812,4,1,54235,542 -920,FR,CN,201812,4,1,1847,50 -920,FR,CN,201812,4,1,1282,59 -920,FR,CN,201812,4,1,3333,200 -920,FR,CN,201812,4,1,584,50 -920,FR,CN,201812,4,1,8217,189 -920,FR,CN,201812,4,1,11,0 -920,FR,CN,201812,4,1,859,45 -920,FR,CN,201812,4,1,14958,351 -920,FR,CN,201812,4,1,2559,194 -920,FR,CN,201812,4,1,300,18 -920,FR,CN,201812,1,2,231960,39807 -920,FR,CN,201812,1,2,78672,12336 -920,FR,CN,201812,1,2,842226,108315 -920,FR,CN,201812,1,2,58688,2512 -920,FR,CN,201812,1,2,171000,7100 -920,FR,CN,201812,1,2,239265,38751 -920,FR,CN,201812,3,2,10,0 -920,FR,CN,201812,3,2,736833,103535 -920,FR,CN,201812,4,2,77290,2140 -920,FR,CN,201812,4,2,1146,14 -920,FR,CN,201812,4,2,1270243,10172 -920,FR,CN,201812,4,2,10175,270 -920,FR,CN,201812,4,2,2781,690 -920,FR,CN,201812,4,2,1417,46 -931,FR,CN,201812,0,1,22744785,1277111 -931,FR,CN,201812,1,1,13331425,1411961 -931,FR,CN,201812,1,1,484645,26507 -931,FR,CN,201812,1,1,1866333,78428 -931,FR,CN,201812,1,1,2884819,452225 -931,FR,CN,201812,1,1,127952,17676 -931,FR,CN,201812,1,1,225713,66138 -931,FR,CN,201812,1,1,62361,4810 -931,FR,CN,201812,1,1,58098,5913 -931,FR,CN,201812,1,1,5226,345 -931,FR,CN,201812,1,1,386719,34489 -931,FR,CN,201812,1,1,37134,4983 -931,FR,CN,201812,1,1,39931,3415 -931,FR,CN,201812,1,1,199046,2127 -931,FR,CN,201812,1,1,494076,55407 -931,FR,CN,201812,1,1,103737,4523 -931,FR,CN,201812,1,1,8679522,514511 -931,FR,CN,201812,1,1,17275,6734 -931,FR,CN,201812,1,1,128522,2655 -931,FR,CN,201812,1,1,19421,5316 -931,FR,CN,201812,1,1,314344,1009 -931,FR,CN,201812,1,1,71215,3491 -931,FR,CN,201812,1,1,2210,2492 -931,FR,CN,201812,1,1,1094422,51232 -931,FR,CN,201812,1,1,7604642,400739 -931,FR,CN,201812,1,1,71766,3413 -931,FR,CN,201812,1,1,56050,4264 -931,FR,CN,201812,1,1,856197,63236 -931,FR,CN,201812,1,1,537661,33133 -931,FR,CN,201812,1,1,33565,4109 -931,FR,CN,201812,1,1,2748030,482476 -931,FR,CN,201812,1,1,74759708,10237499 -931,FR,CN,201812,1,1,7005063,1087953 -931,FR,CN,201812,1,1,2978559,328722 -931,FR,CN,201812,1,1,633186,21489 -931,FR,CN,201812,1,1,6119932,1328736 -931,FR,CN,201812,1,1,4401896,880930 -931,FR,CN,201812,1,1,71410,11284 -931,FR,CN,201812,1,1,623129,130912 -931,FR,CN,201812,1,1,54677,1955 -931,FR,CN,201812,1,1,1355461,141279 -931,FR,CN,201812,1,1,202179,10200 -931,FR,CN,201812,1,1,25501,3557 -931,FR,CN,201812,1,1,880877,171378 -931,FR,CN,201812,1,1,58589,6645 -931,FR,CN,201812,1,1,1118305,182444 -931,FR,CN,201812,1,1,3441740,711107 -931,FR,CN,201812,1,1,72096362,10666561 -931,FR,CN,201812,1,1,726869,104119 -931,FR,CN,201812,1,1,92032,17147 -931,FR,CN,201812,1,1,27040,1536 -931,FR,CN,201812,1,1,37383,2458 -931,FR,CN,201812,1,1,87136,3071 -931,FR,CN,201812,1,1,2320,96 -931,FR,CN,201812,1,1,320950,31859 -931,FR,CN,201812,1,1,4109625,452687 -931,FR,CN,201812,1,1,25597618,2867854 -931,FR,CN,201812,1,1,418289,14356 -931,FR,CN,201812,1,1,710554,154784 -931,FR,CN,201812,1,1,266442,23945 -931,FR,CN,201812,1,1,6852601,630725 -931,FR,CN,201812,1,1,694206,53199 -931,FR,CN,201812,1,1,3548214,409405 -931,FR,CN,201812,1,1,5433305,292421 -931,FR,CN,201812,2,1,3747686,66529 -931,FR,CN,201812,2,1,6894864,222324 -931,FR,CN,201812,3,1,27378278,369287 -931,FR,CN,201812,3,1,1428499,27303 -931,FR,CN,201812,3,1,771927,38841 -931,FR,CN,201812,3,1,6285,23 -931,FR,CN,201812,3,1,985359,33704 -931,FR,CN,201812,3,1,311559,7003 -931,FR,CN,201812,3,1,1925,11 -931,FR,CN,201812,3,1,2205,50 -931,FR,CN,201812,3,1,34641,1294 -931,FR,CN,201812,3,1,599449,10703 -931,FR,CN,201812,3,1,8286,148 -931,FR,CN,201812,3,1,71262,2644 -931,FR,CN,201812,3,1,124,2 -931,FR,CN,201812,3,1,2164,99 -931,FR,CN,201812,3,1,1480,32 -931,FR,CN,201812,3,1,47353,120 -931,FR,CN,201812,3,1,3934,27 -931,FR,CN,201812,3,1,1582664,3986 -931,FR,CN,201812,3,1,9484455,23028 -931,FR,CN,201812,3,1,72961,2047 -931,FR,CN,201812,3,1,20312,1426 -931,FR,CN,201812,3,1,131,6 -931,FR,CN,201812,3,1,154606,32760 -931,FR,CN,201812,3,1,1267608,297078 -931,FR,CN,201812,3,1,99,4 -931,FR,CN,201812,3,1,5938,300 -931,FR,CN,201812,4,1,62728004,635376 -931,FR,CN,201812,4,1,3644939,24458 -931,FR,CN,201812,4,1,30381738,232300 -931,FR,CN,201812,4,1,29606,515 -931,FR,CN,201812,4,1,376380,2657 -931,FR,CN,201812,4,1,8520,17 -931,FR,CN,201812,4,1,995325,11542 -931,FR,CN,201812,4,1,11238643,83996 -931,FR,CN,201812,4,1,1577821,16841 -931,FR,CN,201812,4,1,4707,9 -931,FR,CN,201812,4,1,38991,1334 -931,FR,CN,201812,4,1,903624,7935 -931,FR,CN,201812,4,1,1126973,19185 -931,FR,CN,201812,4,1,18988628,151494 -931,FR,CN,201812,4,1,10245,80 -931,FR,CN,201812,4,1,385158,7414 -931,FR,CN,201812,4,1,1394,38 -931,FR,CN,201812,4,1,27872,80 -931,FR,CN,201812,4,1,186262,1641 -931,FR,CN,201812,4,1,22107159,87665 -931,FR,CN,201812,4,1,294526,1347 -931,FR,CN,201812,4,1,650576,3333 -931,FR,CN,201812,4,1,595,0 -931,FR,CN,201812,4,1,597328,8749 -931,FR,CN,201812,4,1,2946,40 -931,FR,CN,201812,4,1,85440,920 -931,FR,CN,201812,4,1,187691,4374 -931,FR,CN,201812,4,1,6643255,41518 -931,FR,CN,201812,4,1,1940935,30810 -931,FR,CN,201812,4,1,261635,1864 -931,FR,CN,201812,4,1,189933,2122 -931,FR,CN,201812,4,1,149717,797 -931,FR,CN,201812,4,1,3232730,36652 -931,FR,CN,201812,4,1,4970,82 -931,FR,CN,201812,4,1,44032969,429949 -931,FR,CN,201812,4,1,3346341,9997 -931,FR,CN,201812,4,1,3273368,29406 -931,FR,CN,201812,4,1,112483,1461 -931,FR,CN,201812,4,1,14811090,99051 -931,FR,CN,201812,4,1,1905,0 -931,FR,CN,201812,4,1,69245,613 -931,FR,CN,201812,4,1,887218,14948 -931,FR,CN,201812,4,1,542502,15157 -931,FR,CN,201812,4,1,8306,1924 -931,FR,CN,201812,4,1,10281,435 -931,FR,CN,201812,4,1,23714,855 -931,FR,CN,201812,4,1,43787,580 -931,FR,CN,201812,4,1,18296,400 -931,FR,CN,201812,4,1,5092,19 -931,FR,CN,201812,5,1,701,5 -931,FR,CN,201812,0,2,10972,83 -931,FR,CN,201812,1,2,6654994,245616 -931,FR,CN,201812,1,2,242171,29212 -931,FR,CN,201812,1,2,154075,6613 -931,FR,CN,201812,1,2,187525,10678 -931,FR,CN,201812,1,2,35424,759 -931,FR,CN,201812,1,2,15000,650 -931,FR,CN,201812,1,2,320919,10752 -931,FR,CN,201812,1,2,3022,36 -931,FR,CN,201812,1,2,922985,13422 -931,FR,CN,201812,1,2,32697,532 -931,FR,CN,201812,1,2,17140,1020 -931,FR,CN,201812,1,2,83908,4719 -931,FR,CN,201812,1,2,81558,3197 -931,FR,CN,201812,1,2,6651997,290523 -931,FR,CN,201812,1,2,472779,11118 -931,FR,CN,201812,1,2,4493580,235018 -931,FR,CN,201812,1,2,126368,2293 -931,FR,CN,201812,1,2,378509,20100 -931,FR,CN,201812,1,2,30690,4727 -931,FR,CN,201812,1,2,131000,3322 -931,FR,CN,201812,1,2,34365,124 -931,FR,CN,201812,1,2,4411631,207952 -931,FR,CN,201812,1,2,57600,3460 -931,FR,CN,201812,1,2,576900,13190 -931,FR,CN,201812,1,2,102087,2264 -931,FR,CN,201812,1,2,858093,34355 -931,FR,CN,201812,1,2,26501,37 -931,FR,CN,201812,2,2,75273,2618 -931,FR,CN,201812,2,2,10601,14 -931,FR,CN,201812,3,2,1105739,11946 -931,FR,CN,201812,3,2,560936,2448 -931,FR,CN,201812,3,2,4275,250 -931,FR,CN,201812,3,2,1243366,24293 -931,FR,CN,201812,3,2,50332,2750 -931,FR,CN,201812,3,2,543607,12942 -931,FR,CN,201812,3,2,73242,705 -931,FR,CN,201812,4,2,48368844,297006 -931,FR,CN,201812,4,2,304089,393 -931,FR,CN,201812,4,2,1942389,14322 -931,FR,CN,201812,4,2,2196850,12001 -931,FR,CN,201812,4,2,157237,408 -931,FR,CN,201812,4,2,374471,4684 -931,FR,CN,201812,4,2,3453,61 -931,FR,CN,201812,4,2,3361075,13932 -931,FR,CN,201812,4,2,5324,120 -931,FR,CN,201812,4,2,130169,301 -931,FR,CN,201812,4,2,356634,4679 -931,FR,CN,201812,4,2,87597,925 -931,FR,CN,201812,4,2,3230,60 -931,FR,CN,201812,4,2,631610,5560 -931,FR,CN,201812,4,2,14029,1640 -931,FR,CN,201812,4,2,2504,30 -931,FR,CN,201812,4,2,48061,520 -931,FR,CN,201812,4,2,113384,3640 -931,FR,CN,201812,4,2,411967,4116 -931,FR,CN,201812,4,2,19376,179 -931,FR,CN,201812,4,2,6536,241 -931,FR,CN,201812,4,2,55095,76 -931,FR,CN,201812,4,2,94998,1141 -931,FR,CN,201812,4,2,19664022,90461 -931,FR,CN,201812,4,2,243194,1662 -931,FR,CN,201812,4,2,149640,3136 -931,FR,CN,201812,4,2,150526,1228 -931,FR,CN,201812,4,2,978700,1403 -931,FR,CN,201812,4,2,44343,250 -931,FR,CN,201812,4,2,67824,169 -931,FR,CN,201812,4,2,1035876,10794 -931,FR,CN,201812,4,2,108461,353 -931,FR,CN,201812,4,2,7295790,80910 -931,FR,CN,201812,4,2,339257,691 -931,FR,CN,201812,4,2,1925988,3623 -931,FR,CN,201812,5,2,5021,43 -939,FR,CN,201812,0,1,16839110,2222928 -939,FR,CN,201812,1,1,5963630,848937 -939,FR,CN,201812,1,1,599890,82936 -939,FR,CN,201812,1,1,420394,24424 -939,FR,CN,201812,1,1,3305,160 -939,FR,CN,201812,1,1,1499732,218393 -939,FR,CN,201812,1,1,36254,3697 -939,FR,CN,201812,1,1,152092,36875 -939,FR,CN,201812,1,1,203676,43157 -939,FR,CN,201812,1,1,82411,13016 -939,FR,CN,201812,1,1,12487,2651 -939,FR,CN,201812,1,1,14462,1337 -939,FR,CN,201812,1,1,106613,11827 -939,FR,CN,201812,1,1,5566,710 -939,FR,CN,201812,1,1,19167,227 -939,FR,CN,201812,1,1,528498,96242 -939,FR,CN,201812,1,1,23361,10753 -939,FR,CN,201812,1,1,6308580,691182 -939,FR,CN,201812,1,1,281413,65000 -939,FR,CN,201812,1,1,195806,27859 -939,FR,CN,201812,1,1,19834,15 -939,FR,CN,201812,1,1,253650,39794 -939,FR,CN,201812,1,1,559749,40427 -939,FR,CN,201812,1,1,3278912,486691 -939,FR,CN,201812,1,1,23641,2093 -939,FR,CN,201812,1,1,23670,1575 -939,FR,CN,201812,1,1,81989,7125 -939,FR,CN,201812,1,1,230402,26679 -939,FR,CN,201812,1,1,4483,219 -939,FR,CN,201812,1,1,220690,40677 -939,FR,CN,201812,1,1,3248678,607790 -939,FR,CN,201812,1,1,29653533,5354309 -939,FR,CN,201812,1,1,3458494,862877 -939,FR,CN,201812,1,1,870478,217296 -939,FR,CN,201812,1,1,4237402,993939 -939,FR,CN,201812,1,1,3177754,654331 -939,FR,CN,201812,1,1,134,21 -939,FR,CN,201812,1,1,1041365,272350 -939,FR,CN,201812,1,1,14730,1111 -939,FR,CN,201812,1,1,2065831,483859 -939,FR,CN,201812,1,1,251921,271502 -939,FR,CN,201812,1,1,90646,26231 -939,FR,CN,201812,1,1,181601,43954 -939,FR,CN,201812,1,1,767221,114359 -939,FR,CN,201812,1,1,1509568,438863 -939,FR,CN,201812,1,1,393,24 -939,FR,CN,201812,1,1,40654505,9662263 -939,FR,CN,201812,1,1,488181,142045 -939,FR,CN,201812,1,1,6840,6480 -939,FR,CN,201812,1,1,125066,11127 -939,FR,CN,201812,1,1,182485,24578 -939,FR,CN,201812,1,1,2805092,572676 -939,FR,CN,201812,1,1,16387944,2375971 -939,FR,CN,201812,1,1,241980,20790 -939,FR,CN,201812,1,1,555073,211613 -939,FR,CN,201812,1,1,416040,67445 -939,FR,CN,201812,1,1,2121566,482273 -939,FR,CN,201812,1,1,1186346,707834 -939,FR,CN,201812,1,1,3496822,1157395 -939,FR,CN,201812,1,1,50865,10398 -939,FR,CN,201812,2,1,3670187,309807 -939,FR,CN,201812,2,1,353796,272435 -939,FR,CN,201812,3,1,7963986,127546 -939,FR,CN,201812,3,1,819732,28909 -939,FR,CN,201812,3,1,285729,35544 -939,FR,CN,201812,3,1,114650,5280 -939,FR,CN,201812,3,1,1388966,147589 -939,FR,CN,201812,3,1,83695,1068 -939,FR,CN,201812,3,1,85862,5830 -939,FR,CN,201812,3,1,256302,10944 -939,FR,CN,201812,3,1,58,0 -939,FR,CN,201812,3,1,88293,1680 -939,FR,CN,201812,3,1,173620,12521 -939,FR,CN,201812,3,1,345385,24000 -939,FR,CN,201812,3,1,170672,11500 -939,FR,CN,201812,3,1,10457,1354 -939,FR,CN,201812,3,1,1502421,327 -939,FR,CN,201812,3,1,348116,37654 -939,FR,CN,201812,3,1,183213,39561 -939,FR,CN,201812,3,1,232048,59802 -939,FR,CN,201812,3,1,172940,27952 -939,FR,CN,201812,3,1,26274,2971 -939,FR,CN,201812,3,1,87819,8059 -939,FR,CN,201812,4,1,26854644,271287 -939,FR,CN,201812,4,1,432892,8230 -939,FR,CN,201812,4,1,40038647,49420 -939,FR,CN,201812,4,1,18415,94 -939,FR,CN,201812,4,1,206034,4609 -939,FR,CN,201812,4,1,11268,17 -939,FR,CN,201812,4,1,410634,8033 -939,FR,CN,201812,4,1,3230498,50534 -939,FR,CN,201812,4,1,200045,1818 -939,FR,CN,201812,4,1,1509,115 -939,FR,CN,201812,4,1,134672,2042 -939,FR,CN,201812,4,1,580554,23577 -939,FR,CN,201812,4,1,4406894,51052 -939,FR,CN,201812,4,1,272955,11430 -939,FR,CN,201812,4,1,5376,2 -939,FR,CN,201812,4,1,33057,508 -939,FR,CN,201812,4,1,792,4 -939,FR,CN,201812,4,1,736,32 -939,FR,CN,201812,4,1,25784523,38530 -939,FR,CN,201812,4,1,29104,377 -939,FR,CN,201812,4,1,1305882,882 -939,FR,CN,201812,4,1,56619,2957 -939,FR,CN,201812,4,1,85085,248 -939,FR,CN,201812,4,1,13087,143 -939,FR,CN,201812,4,1,431650,7069 -939,FR,CN,201812,4,1,2052087,20831 -939,FR,CN,201812,4,1,42528,950 -939,FR,CN,201812,4,1,53645,1760 -939,FR,CN,201812,4,1,67394,3330 -939,FR,CN,201812,4,1,52450397,254655 -939,FR,CN,201812,4,1,955928,11207 -939,FR,CN,201812,4,1,1103327,11321 -939,FR,CN,201812,4,1,302259,926 -939,FR,CN,201812,4,1,4420615,90003 -939,FR,CN,201812,4,1,36003,774 -939,FR,CN,201812,4,1,7411,900 -939,FR,CN,201812,4,1,24902,657 -939,FR,CN,201812,4,1,267,6 -939,FR,CN,201812,8,1,43948,276 -939,FR,CN,201812,0,2,13597,95 -939,FR,CN,201812,1,2,24949872,664157 -939,FR,CN,201812,1,2,193515,11052 -939,FR,CN,201812,1,2,471526,54188 -939,FR,CN,201812,1,2,508126,93181 -939,FR,CN,201812,1,2,269950,7720 -939,FR,CN,201812,1,2,4213634,486181 -939,FR,CN,201812,1,2,6446,138 -939,FR,CN,201812,1,2,5357,590 -939,FR,CN,201812,1,2,285614,30921 -939,FR,CN,201812,1,2,1679,2 -939,FR,CN,201812,1,2,216368,16524 -939,FR,CN,201812,1,2,8700,275 -939,FR,CN,201812,1,2,160230,17850 -939,FR,CN,201812,1,2,58062,1765 -939,FR,CN,201812,1,2,46222,361 -939,FR,CN,201812,1,2,5284804,317199 -939,FR,CN,201812,1,2,810650,25323 -939,FR,CN,201812,1,2,280656,268 -939,FR,CN,201812,1,2,12100,1961 -939,FR,CN,201812,1,2,1333403,10127 -939,FR,CN,201812,1,2,70585,790 -939,FR,CN,201812,1,2,509483,25177 -939,FR,CN,201812,1,2,11533581,655755 -939,FR,CN,201812,1,2,1001367,28482 -939,FR,CN,201812,1,2,588823,17317 -939,FR,CN,201812,1,2,667172,10727 -939,FR,CN,201812,1,2,266887,8015 -939,FR,CN,201812,1,2,52940,13838 -939,FR,CN,201812,1,2,94809,983 -939,FR,CN,201812,1,2,87720,50516 -939,FR,CN,201812,1,2,13358680,506280 -939,FR,CN,201812,1,2,1860010,77795 -939,FR,CN,201812,1,2,281219,12447 -939,FR,CN,201812,1,2,1480015,72000 -939,FR,CN,201812,1,2,537044,9993 -939,FR,CN,201812,1,2,232959,19193 -939,FR,CN,201812,1,2,846374,62324 -939,FR,CN,201812,1,2,1689833,36411 -939,FR,CN,201812,2,2,94000,3500 -939,FR,CN,201812,2,2,891051,24130 -939,FR,CN,201812,3,2,5129759,98036 -939,FR,CN,201812,3,2,77078,714 -939,FR,CN,201812,3,2,283730,8759 -939,FR,CN,201812,3,2,467993,8350 -939,FR,CN,201812,3,2,266375,8700 -939,FR,CN,201812,3,2,101903,1844 -939,FR,CN,201812,3,2,81025,1224 -939,FR,CN,201812,3,2,297626,7154 -939,FR,CN,201812,3,2,535011,17450 -939,FR,CN,201812,3,2,7348,256 -939,FR,CN,201812,4,2,137629229,434124 -939,FR,CN,201812,4,2,315082,4732 -939,FR,CN,201812,4,2,48805147,27925 -939,FR,CN,201812,4,2,2053,1 -939,FR,CN,201812,4,2,67678,2160 -939,FR,CN,201812,4,2,2903606,28472 -939,FR,CN,201812,4,2,9582,452 -939,FR,CN,201812,4,2,931055,2857 -939,FR,CN,201812,4,2,5614,618 -939,FR,CN,201812,4,2,3939,68 -939,FR,CN,201812,4,2,7972808,74756 -939,FR,CN,201812,4,2,262196,1052 -939,FR,CN,201812,4,2,7201,220 -939,FR,CN,201812,4,2,668210,1811 -939,FR,CN,201812,4,2,4452,36 -939,FR,CN,201812,4,2,8506,310 -939,FR,CN,201812,4,2,286053,12070 -939,FR,CN,201812,4,2,24816,38 -939,FR,CN,201812,4,2,10096,319 -939,FR,CN,201812,4,2,1211382,12453 -939,FR,CN,201812,4,2,13124,414 -939,FR,CN,201812,4,2,193960,381 -939,FR,CN,201812,4,2,178126,5564 -939,FR,CN,201812,4,2,4316,53 -939,FR,CN,201812,4,2,4520,27 -939,FR,CN,201812,4,2,14224084,130747 -939,FR,CN,201812,4,2,925,35 -939,FR,CN,201812,4,2,70331,2051 -939,FR,CN,201812,4,2,13529,800 -939,FR,CN,201812,4,2,106928,805 -939,FR,CN,201812,4,2,17275,256 -939,FR,CN,201812,4,2,216002,7207 -939,FR,CN,201812,4,2,443500,29170 -939,FR,CN,201812,4,2,102809,516 -939,FR,CN,201812,4,2,2534623,103760 -939,FR,CN,201812,4,2,435528,673 -939,FR,CN,201812,4,2,1061475,4064 -939,FR,CN,201812,8,2,1061883,38945 -941,FR,CN,201812,0,1,88836,34142 -941,FR,CN,201812,1,1,241455,55150 -941,FR,CN,201812,1,1,137581,36387 -941,FR,CN,201812,1,1,12482,5625 -941,FR,CN,201812,1,1,3893,6879 -941,FR,CN,201812,1,1,1662512,101435 -941,FR,CN,201812,1,1,8661,3791 -941,FR,CN,201812,1,1,38286,19130 -941,FR,CN,201812,1,1,35188,9553 -941,FR,CN,201812,1,1,184904,7912 -941,FR,CN,201812,1,1,276205,120545 -941,FR,CN,201812,1,1,3323179,1456955 -941,FR,CN,201812,1,1,7063,3116 -941,FR,CN,201812,1,1,504874,285084 -941,FR,CN,201812,1,1,131983,33138 -941,FR,CN,201812,1,1,19347,3348 -941,FR,CN,201812,1,1,334159,96972 -941,FR,CN,201812,1,1,393,52 -941,FR,CN,201812,1,1,261097,11355 -941,FR,CN,201812,1,1,645774,356173 -941,FR,CN,201812,1,1,864,185 -941,FR,CN,201812,1,1,3118154,1245076 -941,FR,CN,201812,1,1,15661,11046 -941,FR,CN,201812,1,1,134473,72798 -941,FR,CN,201812,1,1,284784,123025 -941,FR,CN,201812,1,1,13787,12500 -941,FR,CN,201812,1,1,33823,16212 -941,FR,CN,201812,1,1,63694,6109 -941,FR,CN,201812,1,1,181907,67929 -941,FR,CN,201812,1,1,69804,33341 -941,FR,CN,201812,1,1,34785,8150 -941,FR,CN,201812,2,1,55822,9727 -941,FR,CN,201812,2,1,47565,22200 -941,FR,CN,201812,3,1,141262,39466 -941,FR,CN,201812,3,1,1632,352 -941,FR,CN,201812,3,1,209,9 -941,FR,CN,201812,3,1,3220,233 -941,FR,CN,201812,3,1,94,1 -941,FR,CN,201812,4,1,389852,4831 -941,FR,CN,201812,4,1,43040,1529 -941,FR,CN,201812,4,1,11607,170 -941,FR,CN,201812,4,1,267,2 -941,FR,CN,201812,4,1,2172,264 -941,FR,CN,201812,4,1,5600,492 -941,FR,CN,201812,4,1,1997,250 -941,FR,CN,201812,4,1,5417,633 -941,FR,CN,201812,4,1,104675,3178 -941,FR,CN,201812,4,1,15009,413 -941,FR,CN,201812,4,1,89176,1627 -941,FR,CN,201812,4,1,1636,1400 -941,FR,CN,201812,4,1,19445,4000 -941,FR,CN,201812,0,2,40,3 -941,FR,CN,201812,1,2,26693,2280 -941,FR,CN,201812,1,2,33940,990 -941,FR,CN,201812,1,2,21993,1680 -941,FR,CN,201812,1,2,11039,3098 -941,FR,CN,201812,3,2,2191,29 -941,FR,CN,201812,3,2,86,1 -941,FR,CN,201812,4,2,54737,1192 -941,FR,CN,201812,4,2,1050,200 -941,FR,CN,201812,4,2,14893,1255 -941,FR,CN,201812,4,2,5244,310 -941,FR,CN,201812,4,2,5399,46 -949,FR,CN,201812,0,1,1861817,465505 -949,FR,CN,201812,1,1,2972758,443119 -949,FR,CN,201812,1,1,342047,55440 -949,FR,CN,201812,1,1,132510,38838 -949,FR,CN,201812,1,1,2550035,720974 -949,FR,CN,201812,1,1,111874,17907 -949,FR,CN,201812,1,1,1198,389 -949,FR,CN,201812,1,1,312023,30250 -949,FR,CN,201812,1,1,3451,1001 -949,FR,CN,201812,1,1,147589,31280 -949,FR,CN,201812,1,1,96603,8650 -949,FR,CN,201812,1,1,3170,471 -949,FR,CN,201812,1,1,195763,32816 -949,FR,CN,201812,1,1,98695,5262 -949,FR,CN,201812,1,1,7110004,879298 -949,FR,CN,201812,1,1,10261,1345 -949,FR,CN,201812,1,1,50556,7780 -949,FR,CN,201812,1,1,28,1 -949,FR,CN,201812,1,1,35634,12818 -949,FR,CN,201812,1,1,13084,2927 -949,FR,CN,201812,1,1,3788,4272 -949,FR,CN,201812,1,1,511104,42266 -949,FR,CN,201812,1,1,1685634,325087 -949,FR,CN,201812,1,1,17502,576 -949,FR,CN,201812,1,1,27328,1376 -949,FR,CN,201812,1,1,65400,9324 -949,FR,CN,201812,1,1,272204,50247 -949,FR,CN,201812,1,1,116507,36380 -949,FR,CN,201812,1,1,550672,202694 -949,FR,CN,201812,1,1,24955400,6247756 -949,FR,CN,201812,1,1,5732148,1180283 -949,FR,CN,201812,1,1,693284,214446 -949,FR,CN,201812,1,1,2059,375 -949,FR,CN,201812,1,1,2723603,731261 -949,FR,CN,201812,1,1,234403,65450 -949,FR,CN,201812,1,1,54347,65067 -949,FR,CN,201812,1,1,34,17 -949,FR,CN,201812,1,1,827977,167125 -949,FR,CN,201812,1,1,25146,6318 -949,FR,CN,201812,1,1,98334,37553 -949,FR,CN,201812,1,1,1068666,304705 -949,FR,CN,201812,1,1,19527,3645 -949,FR,CN,201812,1,1,919226,156695 -949,FR,CN,201812,1,1,371183,110843 -949,FR,CN,201812,1,1,82495,24149 -949,FR,CN,201812,1,1,56408,1415 -949,FR,CN,201812,1,1,71831,3487 -949,FR,CN,201812,1,1,31319419,6523922 -949,FR,CN,201812,1,1,347518,166771 -949,FR,CN,201812,1,1,111860,76785 -949,FR,CN,201812,1,1,33018,21560 -949,FR,CN,201812,1,1,2277,22 -949,FR,CN,201812,1,1,97671,49572 -949,FR,CN,201812,1,1,1823706,542034 -949,FR,CN,201812,1,1,12131587,3984388 -949,FR,CN,201812,1,1,100832,54473 -949,FR,CN,201812,1,1,750954,272273 -949,FR,CN,201812,1,1,148537,41676 -949,FR,CN,201812,1,1,1763145,464112 -949,FR,CN,201812,1,1,30705,8502 -949,FR,CN,201812,1,1,519094,385342 -949,FR,CN,201812,1,1,51121,12242 -949,FR,CN,201812,1,1,53818,17044 -949,FR,CN,201812,1,1,1594,746 -949,FR,CN,201812,2,1,95318,21837 -949,FR,CN,201812,2,1,224588,62983 -949,FR,CN,201812,3,1,4153109,267042 -949,FR,CN,201812,3,1,9771,280 -949,FR,CN,201812,3,1,118340,13765 -949,FR,CN,201812,3,1,3661,45 -949,FR,CN,201812,3,1,83,1 -949,FR,CN,201812,3,1,221795,21140 -949,FR,CN,201812,3,1,5142,478 -949,FR,CN,201812,3,1,4356,1752 -949,FR,CN,201812,3,1,23087,670 -949,FR,CN,201812,3,1,75868,6920 -949,FR,CN,201812,3,1,933,25 -949,FR,CN,201812,3,1,370,4 -949,FR,CN,201812,3,1,604,1 -949,FR,CN,201812,3,1,67612,5 -949,FR,CN,201812,3,1,3505,2241 -949,FR,CN,201812,3,1,4980,662 -949,FR,CN,201812,3,1,235663,14482 -949,FR,CN,201812,3,1,688,36 -949,FR,CN,201812,3,1,1382,197 -949,FR,CN,201812,3,1,437186,183663 -949,FR,CN,201812,3,1,440,21 -949,FR,CN,201812,3,1,3630,402 -949,FR,CN,201812,3,1,99783,24667 -949,FR,CN,201812,4,1,7526337,124889 -949,FR,CN,201812,4,1,167566,5966 -949,FR,CN,201812,4,1,1345107,24022 -949,FR,CN,201812,4,1,3298,110 -949,FR,CN,201812,4,1,30502,964 -949,FR,CN,201812,4,1,63577,2479 -949,FR,CN,201812,4,1,592873,28856 -949,FR,CN,201812,4,1,168545,2649 -949,FR,CN,201812,4,1,151,0 -949,FR,CN,201812,4,1,16735,432 -949,FR,CN,201812,4,1,112512,1144 -949,FR,CN,201812,4,1,9622,582 -949,FR,CN,201812,4,1,136923,6869 -949,FR,CN,201812,4,1,22559,42 -949,FR,CN,201812,4,1,6884,133 -949,FR,CN,201812,4,1,13308,443 -949,FR,CN,201812,4,1,598,25 -949,FR,CN,201812,4,1,20364,404 -949,FR,CN,201812,4,1,629471,10997 -949,FR,CN,201812,4,1,9408,350 -949,FR,CN,201812,4,1,542,0 -949,FR,CN,201812,4,1,113670,9235 -949,FR,CN,201812,4,1,2711,240 -949,FR,CN,201812,4,1,5824,152 -949,FR,CN,201812,4,1,3957,272 -949,FR,CN,201812,4,1,94207,4791 -949,FR,CN,201812,4,1,143941,5859 -949,FR,CN,201812,4,1,7236,499 -949,FR,CN,201812,4,1,6882,325 -949,FR,CN,201812,4,1,135483,2718 -949,FR,CN,201812,4,1,102,4 -949,FR,CN,201812,4,1,2885288,95408 -949,FR,CN,201812,4,1,859,12 -949,FR,CN,201812,4,1,212436,4576 -949,FR,CN,201812,4,1,14057,468 -949,FR,CN,201812,4,1,1046700,22217 -949,FR,CN,201812,4,1,16,50 -949,FR,CN,201812,4,1,1797,125 -949,FR,CN,201812,4,1,2946,130 -949,FR,CN,201812,4,1,98149,14870 -949,FR,CN,201812,4,1,10059,119 -949,FR,CN,201812,5,1,56,0 -949,FR,CN,201812,0,2,906,69 -949,FR,CN,201812,1,2,1554891,96941 -949,FR,CN,201812,1,2,19187,2659 -949,FR,CN,201812,1,2,21442,526 -949,FR,CN,201812,1,2,19494,1731 -949,FR,CN,201812,1,2,33600,5550 -949,FR,CN,201812,1,2,111819,5523 -949,FR,CN,201812,1,2,17748,572 -949,FR,CN,201812,1,2,85,6 -949,FR,CN,201812,1,2,217436,10906 -949,FR,CN,201812,1,2,4341,195 -949,FR,CN,201812,1,2,126515,5239 -949,FR,CN,201812,1,2,16548,852 -949,FR,CN,201812,1,2,46262,4811 -949,FR,CN,201812,1,2,7573,423 -949,FR,CN,201812,1,2,30463,1513 -949,FR,CN,201812,1,2,439962,28798 -949,FR,CN,201812,1,2,229222,49965 -949,FR,CN,201812,1,2,42371,10382 -949,FR,CN,201812,1,2,76854,36508 -949,FR,CN,201812,1,2,49493,6969 -949,FR,CN,201812,1,2,550776,24656 -949,FR,CN,201812,1,2,22545,8319 -949,FR,CN,201812,1,2,333386,28525 -949,FR,CN,201812,1,2,6182,760 -949,FR,CN,201812,1,2,54375,7143 -949,FR,CN,201812,1,2,447183,7741 -949,FR,CN,201812,2,2,73365,7190 -949,FR,CN,201812,3,2,638846,85457 -949,FR,CN,201812,3,2,16142,3364 -949,FR,CN,201812,3,2,53000,3421 -949,FR,CN,201812,3,2,110249,18245 -949,FR,CN,201812,3,2,401,5 -949,FR,CN,201812,3,2,11136,522 -949,FR,CN,201812,4,2,7273591,70422 -949,FR,CN,201812,4,2,212078,2413 -949,FR,CN,201812,4,2,130841,1070 -949,FR,CN,201812,4,2,2785,38 -949,FR,CN,201812,4,2,2014,43 -949,FR,CN,201812,4,2,80140,3672 -949,FR,CN,201812,4,2,308,34 -949,FR,CN,201812,4,2,18108,888 -949,FR,CN,201812,4,2,16330,1600 -949,FR,CN,201812,4,2,85129,2098 -949,FR,CN,201812,4,2,9430,94 -949,FR,CN,201812,4,2,4337,146 -949,FR,CN,201812,4,2,13198,1300 -949,FR,CN,201812,4,2,4018,180 -949,FR,CN,201812,4,2,4822,74 -949,FR,CN,201812,4,2,1391,98 -949,FR,CN,201812,4,2,706,1 -949,FR,CN,201812,4,2,1931861,25240 -949,FR,CN,201812,4,2,16037,120 -949,FR,CN,201812,4,2,8621,170 -949,FR,CN,201812,4,2,835,1 -949,FR,CN,201812,4,2,13380,705 -949,FR,CN,201812,4,2,243873,7790 -949,FR,CN,201812,4,2,3224,138 -949,FR,CN,201812,4,2,6608,93 -949,FR,CN,201812,4,2,420061,22910 -949,FR,CN,201812,4,2,13668,74 -949,FR,CN,201812,4,2,221103,4943 -951,FR,CN,201812,0,1,136809,29930 -951,FR,CN,201812,1,1,73385,34258 -951,FR,CN,201812,1,1,8694,788 -951,FR,CN,201812,1,1,4613,6009 -951,FR,CN,201812,1,1,20564,7125 -951,FR,CN,201812,1,1,3545,870 -951,FR,CN,201812,1,1,43406,131989 -951,FR,CN,201812,1,1,162065,9409 -951,FR,CN,201812,1,1,1938,2514 -951,FR,CN,201812,1,1,789,158 -951,FR,CN,201812,1,1,15788,12010 -951,FR,CN,201812,1,1,738,40 -951,FR,CN,201812,1,1,35220,54617 -951,FR,CN,201812,1,1,15984,25000 -951,FR,CN,201812,1,1,155406,312007 -951,FR,CN,201812,1,1,2113052,1059054 -951,FR,CN,201812,1,1,508126,174416 -951,FR,CN,201812,1,1,107428,30083 -951,FR,CN,201812,1,1,189183,86974 -951,FR,CN,201812,1,1,113259,49101 -951,FR,CN,201812,1,1,15939,7422 -951,FR,CN,201812,1,1,20686,9421 -951,FR,CN,201812,1,1,6712,1591 -951,FR,CN,201812,1,1,145098,40213 -951,FR,CN,201812,1,1,32296,4557 -951,FR,CN,201812,1,1,2019405,781699 -951,FR,CN,201812,1,1,30006,20115 -951,FR,CN,201812,1,1,1308712,692404 -951,FR,CN,201812,1,1,2103,185 -951,FR,CN,201812,1,1,108353,31050 -951,FR,CN,201812,1,1,1510,80 -951,FR,CN,201812,1,1,223823,63862 -951,FR,CN,201812,1,1,71470,171836 -951,FR,CN,201812,2,1,16045,2189 -951,FR,CN,201812,2,1,202,22 -951,FR,CN,201812,3,1,101935,4013 -951,FR,CN,201812,3,1,848,14 -951,FR,CN,201812,3,1,1460,21 -951,FR,CN,201812,3,1,29219,7274 -951,FR,CN,201812,3,1,42122,43690 -951,FR,CN,201812,3,1,22038,29181 -951,FR,CN,201812,4,1,297783,11578 -951,FR,CN,201812,4,1,2275,135 -951,FR,CN,201812,4,1,75377,2086 -951,FR,CN,201812,4,1,38576,909 -951,FR,CN,201812,4,1,3166,134 -951,FR,CN,201812,4,1,6951,347 -951,FR,CN,201812,4,1,2540,112 -951,FR,CN,201812,4,1,200,0 -951,FR,CN,201812,4,1,3855,382 -951,FR,CN,201812,4,1,36067,731 -951,FR,CN,201812,4,1,636,40 -951,FR,CN,201812,4,1,20190,407 -951,FR,CN,201812,4,1,6122,346 -951,FR,CN,201812,4,1,6137,580 -951,FR,CN,201812,4,1,164270,5618 -951,FR,CN,201812,4,1,4719,140 -951,FR,CN,201812,4,1,7150,101 -951,FR,CN,201812,4,1,9775,418 -951,FR,CN,201812,4,1,5714,204 -951,FR,CN,201812,1,2,22333,1428 -951,FR,CN,201812,1,2,862,72 -951,FR,CN,201812,1,2,60420,3527 -951,FR,CN,201812,1,2,464521,135696 -951,FR,CN,201812,1,2,2415,262 -951,FR,CN,201812,1,2,1267,133 -951,FR,CN,201812,1,2,1044,53 -951,FR,CN,201812,1,2,1499,17 -951,FR,CN,201812,1,2,3932,346 -951,FR,CN,201812,3,2,13,0 -951,FR,CN,201812,4,2,44268,730 -951,FR,CN,201812,4,2,3073,228 -951,FR,CN,201812,4,2,37398,465 -951,FR,CN,201812,4,2,31764,668 -951,FR,CN,201812,4,2,7622,56 -951,FR,CN,201812,4,2,82939,5433 -951,FR,CN,201812,4,2,574,176 -952,FR,CN,201812,0,1,299141,69421 -952,FR,CN,201812,1,1,370999,140983 -952,FR,CN,201812,1,1,35806,10720 -952,FR,CN,201812,1,1,65579,29254 -952,FR,CN,201812,1,1,189558,129097 -952,FR,CN,201812,1,1,83,5 -952,FR,CN,201812,1,1,13251,1000 -952,FR,CN,201812,1,1,26316,11705 -952,FR,CN,201812,1,1,66486,18772 -952,FR,CN,201812,1,1,2968,2432 -952,FR,CN,201812,1,1,32374,5456 -952,FR,CN,201812,1,1,252,8 -952,FR,CN,201812,1,1,106,1 -952,FR,CN,201812,1,1,567512,161616 -952,FR,CN,201812,1,1,13364,28011 -952,FR,CN,201812,1,1,209,57 -952,FR,CN,201812,1,1,2461,2776 -952,FR,CN,201812,1,1,68477,12244 -952,FR,CN,201812,1,1,301697,88804 -952,FR,CN,201812,1,1,1683,45 -952,FR,CN,201812,1,1,8320,1998 -952,FR,CN,201812,1,1,138819,19796 -952,FR,CN,201812,1,1,657,106 -952,FR,CN,201812,1,1,194549,78187 -952,FR,CN,201812,1,1,5931340,2714904 -952,FR,CN,201812,1,1,769777,323055 -952,FR,CN,201812,1,1,262457,78140 -952,FR,CN,201812,1,1,349956,125787 -952,FR,CN,201812,1,1,117735,52971 -952,FR,CN,201812,1,1,28422,11175 -952,FR,CN,201812,1,1,184092,78068 -952,FR,CN,201812,1,1,16225,8426 -952,FR,CN,201812,1,1,256137,93953 -952,FR,CN,201812,1,1,72003,22275 -952,FR,CN,201812,1,1,160200,73088 -952,FR,CN,201812,1,1,8697,2200 -952,FR,CN,201812,1,1,156744,106064 -952,FR,CN,201812,1,1,6038956,2437139 -952,FR,CN,201812,1,1,41718,26281 -952,FR,CN,201812,1,1,7671,8487 -952,FR,CN,201812,1,1,39506,20284 -952,FR,CN,201812,1,1,20932,3928 -952,FR,CN,201812,1,1,258655,48603 -952,FR,CN,201812,1,1,1632582,596815 -952,FR,CN,201812,1,1,38075,7610 -952,FR,CN,201812,1,1,383895,124829 -952,FR,CN,201812,1,1,59778,12195 -952,FR,CN,201812,1,1,420734,160617 -952,FR,CN,201812,1,1,24408,7324 -952,FR,CN,201812,1,1,72202,21069 -952,FR,CN,201812,1,1,9980,611 -952,FR,CN,201812,1,1,67321,7052 -952,FR,CN,201812,2,1,209522,22293 -952,FR,CN,201812,2,1,30415,6792 -952,FR,CN,201812,3,1,556807,30236 -952,FR,CN,201812,3,1,3169,136 -952,FR,CN,201812,3,1,61908,20355 -952,FR,CN,201812,3,1,1770,136 -952,FR,CN,201812,3,1,2055,110 -952,FR,CN,201812,3,1,212,3 -952,FR,CN,201812,3,1,588,1 -952,FR,CN,201812,3,1,11130,2048 -952,FR,CN,201812,3,1,401,68 -952,FR,CN,201812,3,1,48476,4163 -952,FR,CN,201812,3,1,23164,1780 -952,FR,CN,201812,3,1,6210,2584 -952,FR,CN,201812,4,1,440469,22436 -952,FR,CN,201812,4,1,9609,796 -952,FR,CN,201812,4,1,158796,6857 -952,FR,CN,201812,4,1,4284,202 -952,FR,CN,201812,4,1,35182,1117 -952,FR,CN,201812,4,1,53272,2263 -952,FR,CN,201812,4,1,140,1 -952,FR,CN,201812,4,1,1585,45 -952,FR,CN,201812,4,1,9746,210 -952,FR,CN,201812,4,1,186003,6065 -952,FR,CN,201812,4,1,176107,3261 -952,FR,CN,201812,4,1,1887,0 -952,FR,CN,201812,4,1,6563,360 -952,FR,CN,201812,4,1,29394,924 -952,FR,CN,201812,4,1,2771,54 -952,FR,CN,201812,4,1,3969,318 -952,FR,CN,201812,4,1,330134,25361 -952,FR,CN,201812,4,1,19,1 -952,FR,CN,201812,4,1,20088,935 -952,FR,CN,201812,4,1,10822,608 -952,FR,CN,201812,4,1,421749,21513 -952,FR,CN,201812,4,1,48,1 -952,FR,CN,201812,4,1,4857,600 -952,FR,CN,201812,5,1,26824,130 -952,FR,CN,201812,0,2,232,3 -952,FR,CN,201812,1,2,82657,3335 -952,FR,CN,201812,1,2,1795,230 -952,FR,CN,201812,1,2,95031,22314 -952,FR,CN,201812,1,2,4472,472 -952,FR,CN,201812,1,2,26690,5818 -952,FR,CN,201812,1,2,45733,2100 -952,FR,CN,201812,1,2,140682,96801 -952,FR,CN,201812,1,2,61103,6250 -952,FR,CN,201812,1,2,120501,92820 -952,FR,CN,201812,1,2,2479,829 -952,FR,CN,201812,1,2,25631,6036 -952,FR,CN,201812,1,2,21112,21475 -952,FR,CN,201812,1,2,91719,40000 -952,FR,CN,201812,1,2,812,814 -952,FR,CN,201812,1,2,194035,53452 -952,FR,CN,201812,1,2,11931,4143 -952,FR,CN,201812,1,2,17211,5663 -952,FR,CN,201812,1,2,36286,17269 -952,FR,CN,201812,1,2,58290,35856 -952,FR,CN,201812,2,2,70203,9567 -952,FR,CN,201812,3,2,82329,1588 -952,FR,CN,201812,3,2,1143991,479248 -952,FR,CN,201812,4,2,1187237,23513 -952,FR,CN,201812,4,2,770,3 -952,FR,CN,201812,4,2,6852,40 -952,FR,CN,201812,4,2,19582,235 -952,FR,CN,201812,4,2,6870,750 -952,FR,CN,201812,4,2,23391,0 -952,FR,CN,201812,4,2,7799,112 -952,FR,CN,201812,4,2,41604,480 -952,FR,CN,201812,4,2,2667,8 -952,FR,CN,201812,4,2,87244,1936 -952,FR,CN,201812,4,2,26150,12 -952,FR,CN,201812,4,2,27603,8 -952,FR,CN,201812,4,2,46693,180 -952,FR,CN,201812,4,2,14189,171 -952,FR,CN,201812,4,2,4678,17 -952,FR,CN,201812,5,2,1149,19 -961,FR,CN,201812,0,1,2749,39 -961,FR,CN,201812,1,1,16785,909 -961,FR,CN,201812,1,1,11031,535 -961,FR,CN,201812,1,1,51779,9711 -961,FR,CN,201812,1,1,63604,3314 -961,FR,CN,201812,1,1,2248,284 -961,FR,CN,201812,1,1,2011,69 -961,FR,CN,201812,1,1,342,295 -961,FR,CN,201812,1,1,30214,6534 -961,FR,CN,201812,1,1,74256,7133 -961,FR,CN,201812,1,1,2146,492 -961,FR,CN,201812,1,1,2875,329 -961,FR,CN,201812,1,1,59031,1623 -961,FR,CN,201812,1,1,135202,14796 -961,FR,CN,201812,1,1,75362,4988 -961,FR,CN,201812,1,1,473,203 -961,FR,CN,201812,1,1,136232,15659 -961,FR,CN,201812,1,1,126,26 -961,FR,CN,201812,1,1,333840,43300 -961,FR,CN,201812,3,1,55603,1194 -961,FR,CN,201812,3,1,496,0 -961,FR,CN,201812,3,1,765,0 -961,FR,CN,201812,3,1,521,2 -961,FR,CN,201812,3,1,109,0 -961,FR,CN,201812,3,1,437,0 -961,FR,CN,201812,3,1,328,0 -961,FR,CN,201812,3,1,194,0 -961,FR,CN,201812,4,1,147075,2359 -961,FR,CN,201812,4,1,20008,499 -961,FR,CN,201812,4,1,783,32 -961,FR,CN,201812,4,1,293,11 -961,FR,CN,201812,4,1,4468,65 -961,FR,CN,201812,4,1,14420,130 -961,FR,CN,201812,4,1,26364,18 -961,FR,CN,201812,4,1,9030,147 -961,FR,CN,201812,4,1,1799,70 -961,FR,CN,201812,4,1,5340,303 -961,FR,CN,201812,4,1,10701,93 -961,FR,CN,201812,4,1,27221,599 -961,FR,CN,201812,4,1,6464,58 -961,FR,CN,201812,4,1,11567,100 -961,FR,CN,201812,4,1,43,10 -961,FR,CN,201812,4,1,94,0 -961,FR,CN,201812,1,2,13767,1187 -961,FR,CN,201812,1,2,30703,1828 -961,FR,CN,201812,1,2,461,8 -961,FR,CN,201812,1,2,216330,252040 -961,FR,CN,201812,1,2,55303,1989 -961,FR,CN,201812,1,2,45899,21115 -961,FR,CN,201812,3,2,19054,717 -961,FR,CN,201812,4,2,2622633,9218 -961,FR,CN,201812,4,2,5126,69 -961,FR,CN,201812,4,2,26787,525 -961,FR,CN,201812,4,2,11988,150 -961,FR,CN,201812,4,2,18,0 -961,FR,CN,201812,4,2,112422,3811 -961,FR,CN,201812,4,2,8793,270 -961,FR,CN,201812,4,2,1954,25 -961,FR,CN,201812,4,2,100955,1526 -961,FR,CN,201812,4,2,4938,57 -961,FR,CN,201812,4,2,3534,240 -961,FR,CN,201812,4,2,4004,109 -961,FR,CN,201812,4,2,9165,52 -962,FR,CN,201812,0,1,1802318,171635 -962,FR,CN,201812,1,1,1683765,246363 -962,FR,CN,201812,1,1,61504,6907 -962,FR,CN,201812,1,1,105768,15856 -962,FR,CN,201812,1,1,827836,299129 -962,FR,CN,201812,1,1,2870,1236 -962,FR,CN,201812,1,1,4021,236 -962,FR,CN,201812,1,1,4660,420 -962,FR,CN,201812,1,1,19270,1384 -962,FR,CN,201812,1,1,72838,15787 -962,FR,CN,201812,1,1,25709,4316 -962,FR,CN,201812,1,1,1778420,358003 -962,FR,CN,201812,1,1,82676,13264 -962,FR,CN,201812,1,1,117,22 -962,FR,CN,201812,1,1,13964,5128 -962,FR,CN,201812,1,1,19437,1900 -962,FR,CN,201812,1,1,2197,1291 -962,FR,CN,201812,1,1,104888,14108 -962,FR,CN,201812,1,1,666270,67930 -962,FR,CN,201812,1,1,947,210 -962,FR,CN,201812,1,1,12419,3960 -962,FR,CN,201812,1,1,147164,62617 -962,FR,CN,201812,1,1,38271,4320 -962,FR,CN,201812,1,1,31492,3541 -962,FR,CN,201812,1,1,430604,122511 -962,FR,CN,201812,1,1,16229892,4271818 -962,FR,CN,201812,1,1,1234498,297686 -962,FR,CN,201812,1,1,459425,98158 -962,FR,CN,201812,1,1,49480,8903 -962,FR,CN,201812,1,1,1117558,262504 -962,FR,CN,201812,1,1,731216,227853 -962,FR,CN,201812,1,1,81520,15776 -962,FR,CN,201812,1,1,73936,17591 -962,FR,CN,201812,1,1,230913,24178 -962,FR,CN,201812,1,1,92579,13000 -962,FR,CN,201812,1,1,28849,12363 -962,FR,CN,201812,1,1,18156,5062 -962,FR,CN,201812,1,1,375683,136953 -962,FR,CN,201812,1,1,34341,8503 -962,FR,CN,201812,1,1,54137,11988 -962,FR,CN,201812,1,1,198307,27933 -962,FR,CN,201812,1,1,87327,7962 -962,FR,CN,201812,1,1,14474,520 -962,FR,CN,201812,1,1,172641,42763 -962,FR,CN,201812,1,1,1304,98 -962,FR,CN,201812,1,1,14926678,4079017 -962,FR,CN,201812,1,1,20422,3986 -962,FR,CN,201812,1,1,828580,180936 -962,FR,CN,201812,1,1,128479,36860 -962,FR,CN,201812,1,1,4426,550 -962,FR,CN,201812,1,1,29656,4641 -962,FR,CN,201812,1,1,655589,141587 -962,FR,CN,201812,1,1,4555737,971326 -962,FR,CN,201812,1,1,11194,6160 -962,FR,CN,201812,1,1,158153,41813 -962,FR,CN,201812,1,1,88982,29890 -962,FR,CN,201812,1,1,1890385,443208 -962,FR,CN,201812,1,1,76716,36057 -962,FR,CN,201812,1,1,114885,46703 -962,FR,CN,201812,1,1,87624,12282 -962,FR,CN,201812,1,1,14169,5084 -962,FR,CN,201812,2,1,14249,1711 -962,FR,CN,201812,2,1,75867,8663 -962,FR,CN,201812,3,1,1286866,98225 -962,FR,CN,201812,3,1,19534,1860 -962,FR,CN,201812,3,1,5605,262 -962,FR,CN,201812,3,1,545740,123310 -962,FR,CN,201812,3,1,20666,134 -962,FR,CN,201812,3,1,30102,3978 -962,FR,CN,201812,3,1,111672,23232 -962,FR,CN,201812,3,1,3048,37 -962,FR,CN,201812,3,1,1038,8 -962,FR,CN,201812,3,1,2034,32 -962,FR,CN,201812,3,1,1245,50 -962,FR,CN,201812,3,1,21334,2512 -962,FR,CN,201812,3,1,12788,2421 -962,FR,CN,201812,3,1,94604,12280 -962,FR,CN,201812,3,1,44880,14292 -962,FR,CN,201812,3,1,149,7 -962,FR,CN,201812,3,1,185144,21800 -962,FR,CN,201812,3,1,178732,29255 -962,FR,CN,201812,4,1,1435437,70924 -962,FR,CN,201812,4,1,27328,1327 -962,FR,CN,201812,4,1,501067,13221 -962,FR,CN,201812,4,1,3287,101 -962,FR,CN,201812,4,1,47063,1929 -962,FR,CN,201812,4,1,217343,14901 -962,FR,CN,201812,4,1,10771,191 -962,FR,CN,201812,4,1,97,0 -962,FR,CN,201812,4,1,32989,1273 -962,FR,CN,201812,4,1,1050608,43835 -962,FR,CN,201812,4,1,56795,3684 -962,FR,CN,201812,4,1,3510,134 -962,FR,CN,201812,4,1,2955,68 -962,FR,CN,201812,4,1,99064,3174 -962,FR,CN,201812,4,1,489,20 -962,FR,CN,201812,4,1,43177,408 -962,FR,CN,201812,4,1,409,110 -962,FR,CN,201812,4,1,172094,5848 -962,FR,CN,201812,4,1,3930,216 -962,FR,CN,201812,4,1,3006,77 -962,FR,CN,201812,4,1,11258,780 -962,FR,CN,201812,4,1,164340,10113 -962,FR,CN,201812,4,1,1293642,60284 -962,FR,CN,201812,4,1,623,35 -962,FR,CN,201812,4,1,80968,3048 -962,FR,CN,201812,4,1,51309,1487 -962,FR,CN,201812,4,1,157922,4330 -962,FR,CN,201812,4,1,1856,110 -962,FR,CN,201812,4,1,1872,44 -962,FR,CN,201812,4,1,8019,94 -962,FR,CN,201812,4,1,3591,121 -962,FR,CN,201812,0,2,322,20 -962,FR,CN,201812,1,2,537444,28981 -962,FR,CN,201812,1,2,17065,1470 -962,FR,CN,201812,1,2,3698,155 -962,FR,CN,201812,1,2,8750,550 -962,FR,CN,201812,1,2,3710,54 -962,FR,CN,201812,1,2,697,107 -962,FR,CN,201812,1,2,75165,3990 -962,FR,CN,201812,1,2,1742,0 -962,FR,CN,201812,1,2,23018,576 -962,FR,CN,201812,1,2,1113884,104124 -962,FR,CN,201812,1,2,37414,10395 -962,FR,CN,201812,1,2,14194,722 -962,FR,CN,201812,1,2,1629,59 -962,FR,CN,201812,1,2,109343,27184 -962,FR,CN,201812,1,2,51674,3717 -962,FR,CN,201812,1,2,2004,74 -962,FR,CN,201812,1,2,417158,4803 -962,FR,CN,201812,1,2,1159502,63302 -962,FR,CN,201812,1,2,55866,17169 -962,FR,CN,201812,1,2,48745,2000 -962,FR,CN,201812,1,2,30127,5699 -962,FR,CN,201812,1,2,30163,9878 -962,FR,CN,201812,3,2,382740,13929 -962,FR,CN,201812,3,2,29130,122 -962,FR,CN,201812,3,2,34300,2106 -962,FR,CN,201812,3,2,2751,170 -962,FR,CN,201812,3,2,15687,975 -962,FR,CN,201812,4,2,1295626,50343 -962,FR,CN,201812,4,2,5925,145 -962,FR,CN,201812,4,2,8721,783 -962,FR,CN,201812,4,2,41167,931 -962,FR,CN,201812,4,2,41269,1690 -962,FR,CN,201812,4,2,147233,4611 -962,FR,CN,201812,4,2,5778,100 -962,FR,CN,201812,4,2,16750,231 -962,FR,CN,201812,4,2,2465,95 -962,FR,CN,201812,4,2,229,4 -962,FR,CN,201812,4,2,5994,700 -962,FR,CN,201812,4,2,21815,1175 -962,FR,CN,201812,4,2,289,80 -962,FR,CN,201812,4,2,713934,14093 -962,FR,CN,201812,4,2,6688,214 -962,FR,CN,201812,4,2,18517,395 -962,FR,CN,201812,4,2,29273,1447 -962,FR,CN,201812,4,2,37350,1912 -962,FR,CN,201812,4,2,3410,51 -962,FR,CN,201812,4,2,89973,8820 -962,FR,CN,201812,4,2,40013,143 -962,FR,CN,201812,4,2,50919,660 -963,FR,CN,201812,0,1,114303370,6232198 -963,FR,CN,201812,1,1,8716279,497786 -963,FR,CN,201812,1,1,118132,7001 -963,FR,CN,201812,1,1,204965,28284 -963,FR,CN,201812,1,1,4090470,460343 -963,FR,CN,201812,1,1,54996,1974 -963,FR,CN,201812,1,1,104523,8636 -963,FR,CN,201812,1,1,5534,104 -963,FR,CN,201812,1,1,97874,3340 -963,FR,CN,201812,1,1,6175,100 -963,FR,CN,201812,1,1,26153,2149 -963,FR,CN,201812,1,1,504,83 -963,FR,CN,201812,1,1,689795,30770 -963,FR,CN,201812,1,1,505204,12400 -963,FR,CN,201812,1,1,14425,632 -963,FR,CN,201812,1,1,10067,720 -963,FR,CN,201812,1,1,93886,6321 -963,FR,CN,201812,1,1,4357,145 -963,FR,CN,201812,1,1,281320,34767 -963,FR,CN,201812,1,1,1612,157 -963,FR,CN,201812,1,1,9265563,609055 -963,FR,CN,201812,1,1,5709,230 -963,FR,CN,201812,1,1,201797,30151 -963,FR,CN,201812,1,1,25553,2247 -963,FR,CN,201812,1,1,19030,424 -963,FR,CN,201812,1,1,1640,1849 -963,FR,CN,201812,1,1,994823,57643 -963,FR,CN,201812,1,1,11979734,767418 -963,FR,CN,201812,1,1,7509,705 -963,FR,CN,201812,1,1,409097,26138 -963,FR,CN,201812,1,1,90172,12868 -963,FR,CN,201812,1,1,882750,86214 -963,FR,CN,201812,1,1,102940,11531 -963,FR,CN,201812,1,1,1435349,205493 -963,FR,CN,201812,1,1,45031888,3617711 -963,FR,CN,201812,1,1,3798739,425756 -963,FR,CN,201812,1,1,925029,81420 -963,FR,CN,201812,1,1,4039060,376803 -963,FR,CN,201812,1,1,565005,26670 -963,FR,CN,201812,1,1,568856,37724 -963,FR,CN,201812,1,1,496528,39783 -963,FR,CN,201812,1,1,2571722,211481 -963,FR,CN,201812,1,1,90070,4555 -963,FR,CN,201812,1,1,119952,11937 -963,FR,CN,201812,1,1,901306,112185 -963,FR,CN,201812,1,1,55459,11595 -963,FR,CN,201812,1,1,58814,13226 -963,FR,CN,201812,1,1,219042,40715 -963,FR,CN,201812,1,1,325087,48695 -963,FR,CN,201812,1,1,65672,8925 -963,FR,CN,201812,1,1,8235408,219938 -963,FR,CN,201812,1,1,72801545,5372877 -963,FR,CN,201812,1,1,750974,50896 -963,FR,CN,201812,1,1,5761,529 -963,FR,CN,201812,1,1,39553,1926 -963,FR,CN,201812,1,1,51166,2420 -963,FR,CN,201812,1,1,3316943,282593 -963,FR,CN,201812,1,1,24501133,2104407 -963,FR,CN,201812,1,1,29174,2850 -963,FR,CN,201812,1,1,19160,3909 -963,FR,CN,201812,1,1,2133905,162573 -963,FR,CN,201812,1,1,434135,50552 -963,FR,CN,201812,1,1,3168772,131523 -963,FR,CN,201812,1,1,1296502,110731 -963,FR,CN,201812,1,1,74268,11720 -963,FR,CN,201812,1,1,50293,13077 -963,FR,CN,201812,2,1,2122799,146940 -963,FR,CN,201812,2,1,1332608,57613 -963,FR,CN,201812,3,1,4801962,135239 -963,FR,CN,201812,3,1,51602,459 -963,FR,CN,201812,3,1,1159583,11737 -963,FR,CN,201812,3,1,3939896,30308 -963,FR,CN,201812,3,1,5359,278 -963,FR,CN,201812,3,1,4954,127 -963,FR,CN,201812,3,1,1428294,68974 -963,FR,CN,201812,3,1,135,0 -963,FR,CN,201812,3,1,2496195,20924 -963,FR,CN,201812,3,1,30998,4097 -963,FR,CN,201812,3,1,66170,1670 -963,FR,CN,201812,3,1,1936,42 -963,FR,CN,201812,3,1,669070,7637 -963,FR,CN,201812,3,1,272601,1820 -963,FR,CN,201812,3,1,142570,1085 -963,FR,CN,201812,3,1,8302,428 -963,FR,CN,201812,3,1,66991,1991 -963,FR,CN,201812,3,1,480,6 -963,FR,CN,201812,3,1,137757,3304 -963,FR,CN,201812,3,1,65231,1430 -963,FR,CN,201812,3,1,158671,3855 -963,FR,CN,201812,3,1,547258,33405 -963,FR,CN,201812,3,1,58956,7151 -963,FR,CN,201812,3,1,7790,1289 -963,FR,CN,201812,3,1,22268,1495 -963,FR,CN,201812,3,1,13323,831 -963,FR,CN,201812,3,1,13795,1422 -963,FR,CN,201812,4,1,21338214,770109 -963,FR,CN,201812,4,1,1877135,39084 -963,FR,CN,201812,4,1,3716899,88706 -963,FR,CN,201812,4,1,10177,123 -963,FR,CN,201812,4,1,51347,2078 -963,FR,CN,201812,4,1,236446,8092 -963,FR,CN,201812,4,1,3444455,96420 -963,FR,CN,201812,4,1,36079,1290 -963,FR,CN,201812,4,1,17795,194 -963,FR,CN,201812,4,1,308640,15709 -963,FR,CN,201812,4,1,240755,11347 -963,FR,CN,201812,4,1,220416,10345 -963,FR,CN,201812,4,1,29058,1219 -963,FR,CN,201812,4,1,4751730,87016 -963,FR,CN,201812,4,1,122670,2540 -963,FR,CN,201812,4,1,95571,3497 -963,FR,CN,201812,4,1,7313,325 -963,FR,CN,201812,4,1,45650,4416 -963,FR,CN,201812,4,1,471865,6423 -963,FR,CN,201812,4,1,31498,5756 -963,FR,CN,201812,4,1,5510,188 -963,FR,CN,201812,4,1,1029676,24542 -963,FR,CN,201812,4,1,34494,439 -963,FR,CN,201812,4,1,415124,8969 -963,FR,CN,201812,4,1,11234,458 -963,FR,CN,201812,4,1,20101,387 -963,FR,CN,201812,4,1,1505,278 -963,FR,CN,201812,4,1,1299476,28816 -963,FR,CN,201812,4,1,334683,6536 -963,FR,CN,201812,4,1,846587,18195 -963,FR,CN,201812,4,1,645,152 -963,FR,CN,201812,4,1,17574,603 -963,FR,CN,201812,4,1,405278,9183 -963,FR,CN,201812,4,1,105237,4451 -963,FR,CN,201812,4,1,2956,85 -963,FR,CN,201812,4,1,715144,60674 -963,FR,CN,201812,4,1,18242040,733064 -963,FR,CN,201812,4,1,545953,9959 -963,FR,CN,201812,4,1,1379623,50657 -963,FR,CN,201812,4,1,8338,273 -963,FR,CN,201812,4,1,1814046,30074 -963,FR,CN,201812,4,1,19356,915 -963,FR,CN,201812,4,1,100571,4715 -963,FR,CN,201812,4,1,79362,4869 -963,FR,CN,201812,4,1,7322,517 -963,FR,CN,201812,4,1,3016,365 -963,FR,CN,201812,4,1,42225,3165 -963,FR,CN,201812,4,1,5826,68 -963,FR,CN,201812,5,1,105212,873 -963,FR,CN,201812,0,2,11136,116 -963,FR,CN,201812,1,2,19087,765 -963,FR,CN,201812,1,2,17693,1364 -963,FR,CN,201812,1,2,23650,580 -963,FR,CN,201812,1,2,13800,1308 -963,FR,CN,201812,1,2,9213,104 -963,FR,CN,201812,1,2,83515,1548 -963,FR,CN,201812,1,2,112398,2265 -963,FR,CN,201812,1,2,12062,124 -963,FR,CN,201812,1,2,28111,530 -963,FR,CN,201812,1,2,4220,43 -963,FR,CN,201812,1,2,129842,2247 -963,FR,CN,201812,1,2,93200,2200 -963,FR,CN,201812,1,2,38181,436 -963,FR,CN,201812,3,2,243742,1077 -963,FR,CN,201812,4,2,43567705,89760 -963,FR,CN,201812,4,2,121823,1627 -963,FR,CN,201812,4,2,51782,369 -963,FR,CN,201812,4,2,38846,157 -963,FR,CN,201812,4,2,225986,161 -963,FR,CN,201812,4,2,138259,2905 -963,FR,CN,201812,4,2,706070,3083 -963,FR,CN,201812,4,2,33308,250 -963,FR,CN,201812,4,2,200422,1509 -963,FR,CN,201812,4,2,700546,1552 -963,FR,CN,201812,4,2,206030,580 -963,FR,CN,201812,4,2,9324382,37723 -963,FR,CN,201812,4,2,40425,170 -963,FR,CN,201812,4,2,149428,6090 -963,FR,CN,201812,4,2,52581,890 -963,FR,CN,201812,4,2,407253,1041 -963,FR,CN,201812,5,2,7281,6 -971,FR,CN,201812,0,1,237074,20283 -971,FR,CN,201812,1,1,554229,138183 -971,FR,CN,201812,1,1,1882,60 -971,FR,CN,201812,1,1,112273,17420 -971,FR,CN,201812,1,1,26913,10800 -971,FR,CN,201812,1,1,53099,20611 -971,FR,CN,201812,1,1,816,163 -971,FR,CN,201812,1,1,6358,822 -971,FR,CN,201812,1,1,140135,38102 -971,FR,CN,201812,1,1,24082,10502 -971,FR,CN,201812,1,1,233745,43895 -971,FR,CN,201812,1,1,6681,2020 -971,FR,CN,201812,1,1,38004,12014 -971,FR,CN,201812,1,1,269235,85374 -971,FR,CN,201812,1,1,465,35 -971,FR,CN,201812,1,1,891,46 -971,FR,CN,201812,1,1,24892,11320 -971,FR,CN,201812,1,1,41328,14205 -971,FR,CN,201812,1,1,688734,274184 -971,FR,CN,201812,1,1,2412700,852836 -971,FR,CN,201812,1,1,272102,46003 -971,FR,CN,201812,1,1,37333,7895 -971,FR,CN,201812,1,1,170949,77500 -971,FR,CN,201812,1,1,341010,121558 -971,FR,CN,201812,1,1,236613,56411 -971,FR,CN,201812,1,1,23603,9880 -971,FR,CN,201812,1,1,330177,88999 -971,FR,CN,201812,1,1,102788,40937 -971,FR,CN,201812,1,1,24534,10354 -971,FR,CN,201812,1,1,33073,15019 -971,FR,CN,201812,1,1,23355,9177 -971,FR,CN,201812,1,1,4781832,1459926 -971,FR,CN,201812,1,1,34536,7027 -971,FR,CN,201812,1,1,1643151,686313 -971,FR,CN,201812,1,1,754,1 -971,FR,CN,201812,1,1,56046,27289 -971,FR,CN,201812,1,1,1922868,724955 -971,FR,CN,201812,1,1,1281,371 -971,FR,CN,201812,1,1,35634,15078 -971,FR,CN,201812,1,1,143426,47480 -971,FR,CN,201812,1,1,100440,37662 -971,FR,CN,201812,1,1,32661,12526 -971,FR,CN,201812,1,1,1325,1886 -971,FR,CN,201812,2,1,582,106 -971,FR,CN,201812,3,1,170133,8113 -971,FR,CN,201812,3,1,112131,21471 -971,FR,CN,201812,3,1,3530,36 -971,FR,CN,201812,3,1,1751,11 -971,FR,CN,201812,3,1,171994,28131 -971,FR,CN,201812,3,1,104,1 -971,FR,CN,201812,3,1,464,73 -971,FR,CN,201812,3,1,8107,15 -971,FR,CN,201812,3,1,176,6 -971,FR,CN,201812,3,1,928,8 -971,FR,CN,201812,3,1,1482,150 -971,FR,CN,201812,4,1,143840,9438 -971,FR,CN,201812,4,1,13210,3453 -971,FR,CN,201812,4,1,128939,4109 -971,FR,CN,201812,4,1,206,1 -971,FR,CN,201812,4,1,81,4 -971,FR,CN,201812,4,1,5263,176 -971,FR,CN,201812,4,1,23586,685 -971,FR,CN,201812,4,1,2824,51 -971,FR,CN,201812,4,1,478,26 -971,FR,CN,201812,4,1,2075,15 -971,FR,CN,201812,4,1,59,13 -971,FR,CN,201812,4,1,38736,2057 -971,FR,CN,201812,4,1,19181,247 -971,FR,CN,201812,4,1,354,14 -971,FR,CN,201812,4,1,34124,1159 -971,FR,CN,201812,4,1,171,50 -971,FR,CN,201812,4,1,19398,1456 -971,FR,CN,201812,4,1,54047,2737 -971,FR,CN,201812,4,1,2305,57 -971,FR,CN,201812,4,1,151673,7626 -971,FR,CN,201812,4,1,9329,655 -971,FR,CN,201812,4,1,18337,381 -971,FR,CN,201812,4,1,6038,143 -971,FR,CN,201812,1,2,114509,4644 -971,FR,CN,201812,1,2,10898,894 -971,FR,CN,201812,1,2,24389,1083 -971,FR,CN,201812,1,2,5,1 -971,FR,CN,201812,1,2,133594,1885 -971,FR,CN,201812,1,2,171595,17845 -971,FR,CN,201812,1,2,131378,5465 -971,FR,CN,201812,1,2,845189,123842 -971,FR,CN,201812,1,2,45252,3881 -971,FR,CN,201812,1,2,76711,17518 -971,FR,CN,201812,1,2,36961,5997 -971,FR,CN,201812,1,2,583,6 -971,FR,CN,201812,1,2,353953,32301 -971,FR,CN,201812,1,2,89,2 -971,FR,CN,201812,1,2,1530183,133265 -971,FR,CN,201812,1,2,110106,9725 -971,FR,CN,201812,1,2,163830,5357 -971,FR,CN,201812,1,2,1304,28 -971,FR,CN,201812,1,2,71480,12046 -971,FR,CN,201812,2,2,146163,24430 -971,FR,CN,201812,3,2,274268,18537 -971,FR,CN,201812,3,2,17712,577 -971,FR,CN,201812,3,2,15456,158 -971,FR,CN,201812,3,2,29000,1550 -971,FR,CN,201812,3,2,35727,11892 -971,FR,CN,201812,3,2,89474,3135 -971,FR,CN,201812,3,2,15806,1045 -971,FR,CN,201812,4,2,948251,27738 -971,FR,CN,201812,4,2,190499,800 -971,FR,CN,201812,4,2,21540,278 -971,FR,CN,201812,4,2,7975,737 -971,FR,CN,201812,4,2,97372,2628 -971,FR,CN,201812,4,2,23584,3055 -971,FR,CN,201812,4,2,62903,3088 -971,FR,CN,201812,4,2,846,1 -971,FR,CN,201812,4,2,2261,38 -971,FR,CN,201812,4,2,319733,2284 -971,FR,CN,201812,4,2,265148,2424 -971,FR,CN,201812,4,2,1237,58 -971,FR,CN,201812,4,2,1065,25 -971,FR,CN,201812,4,2,2835908,35939 -971,FR,CN,201812,4,2,8639,35 -971,FR,CN,201812,4,2,4970,59 -971,FR,CN,201812,4,2,87330,13160 -971,FR,CN,201812,4,2,7101,363 -971,FR,CN,201812,4,2,13761,201 -972,FR,CN,201812,0,1,430797,18045 -972,FR,CN,201812,1,1,957,194 -972,FR,CN,201812,1,1,11427,33967 -972,FR,CN,201812,1,1,9522,2457 -972,FR,CN,201812,1,1,1089,148 -972,FR,CN,201812,1,1,113698,120270 -972,FR,CN,201812,1,1,149146,140444 -972,FR,CN,201812,1,1,82553,14608 -972,FR,CN,201812,1,1,1834,723 -972,FR,CN,201812,1,1,342005,127913 -972,FR,CN,201812,1,1,34698,45965 -972,FR,CN,201812,1,1,33356,20025 -972,FR,CN,201812,1,1,4286,1535 -972,FR,CN,201812,1,1,57119,17654 -972,FR,CN,201812,1,1,21,45 -972,FR,CN,201812,1,1,1227,558 -972,FR,CN,201812,1,1,526,544 -972,FR,CN,201812,3,1,4395,164 -972,FR,CN,201812,3,1,89,19 -972,FR,CN,201812,3,1,566,74 -972,FR,CN,201812,3,1,882,112 -972,FR,CN,201812,3,1,646,17 -972,FR,CN,201812,3,1,4295,1542 -972,FR,CN,201812,4,1,41678,410 -972,FR,CN,201812,4,1,11304,397 -972,FR,CN,201812,4,1,76,4 -972,FR,CN,201812,4,1,524,55 -972,FR,CN,201812,4,1,12713,1902 -972,FR,CN,201812,4,1,6705,247 -972,FR,CN,201812,4,1,11423,181 -972,FR,CN,201812,4,1,7504,31 -972,FR,CN,201812,4,1,430,45 -972,FR,CN,201812,4,1,729,197 -972,FR,CN,201812,4,1,355,25 -972,FR,CN,201812,1,2,54633,7915 -972,FR,CN,201812,1,2,150,211 -972,FR,CN,201812,1,2,1156894,545920 -972,FR,CN,201812,1,2,277156,218914 -972,FR,CN,201812,1,2,55790,51108 -972,FR,CN,201812,1,2,26152,24038 -972,FR,CN,201812,1,2,27759,25436 -972,FR,CN,201812,1,2,27295,25032 -972,FR,CN,201812,1,2,295338,192185 -972,FR,CN,201812,1,2,12982,12586 -972,FR,CN,201812,1,2,137955,42500 -972,FR,CN,201812,3,2,928,27 -972,FR,CN,201812,3,2,7150,300 -972,FR,CN,201812,3,2,98603,54332 -972,FR,CN,201812,3,2,24501,24394 -972,FR,CN,201812,4,2,83504,8814 -972,FR,CN,201812,4,2,1199,2 -972,FR,CN,201812,4,2,1706,22 -972,FR,CN,201812,4,2,3607,695 -972,FR,CN,201812,4,2,11139,1429 -972,FR,CN,201812,4,2,1233,12 -973,FR,CN,201812,0,1,145367,22982 -973,FR,CN,201812,1,1,573648,135175 -973,FR,CN,201812,1,1,16247,3788 -973,FR,CN,201812,1,1,572,401 -973,FR,CN,201812,1,1,93965,34749 -973,FR,CN,201812,1,1,42153,9500 -973,FR,CN,201812,1,1,6822,1408 -973,FR,CN,201812,1,1,717,65 -973,FR,CN,201812,1,1,80285,20254 -973,FR,CN,201812,1,1,4714,795 -973,FR,CN,201812,1,1,46958,7538 -973,FR,CN,201812,1,1,457,142 -973,FR,CN,201812,1,1,452725,125971 -973,FR,CN,201812,1,1,19260,8732 -973,FR,CN,201812,1,1,5245,455 -973,FR,CN,201812,1,1,686,774 -973,FR,CN,201812,1,1,131529,32632 -973,FR,CN,201812,1,1,239161,59632 -973,FR,CN,201812,1,1,2170,627 -973,FR,CN,201812,1,1,215614,56024 -973,FR,CN,201812,1,1,171470,63374 -973,FR,CN,201812,1,1,3116463,809387 -973,FR,CN,201812,1,1,187541,46843 -973,FR,CN,201812,1,1,397544,76094 -973,FR,CN,201812,1,1,504939,101156 -973,FR,CN,201812,1,1,47458,17359 -973,FR,CN,201812,1,1,52618,11007 -973,FR,CN,201812,1,1,135673,42011 -973,FR,CN,201812,1,1,125845,15997 -973,FR,CN,201812,1,1,34830,8439 -973,FR,CN,201812,1,1,60822,11202 -973,FR,CN,201812,1,1,78567,29147 -973,FR,CN,201812,1,1,3794829,1036050 -973,FR,CN,201812,1,1,20440,7512 -973,FR,CN,201812,1,1,817,410 -973,FR,CN,201812,1,1,338424,68799 -973,FR,CN,201812,1,1,1059433,274631 -973,FR,CN,201812,1,1,58295,18635 -973,FR,CN,201812,1,1,53543,12643 -973,FR,CN,201812,1,1,36,55 -973,FR,CN,201812,1,1,113992,26911 -973,FR,CN,201812,1,1,15854,5531 -973,FR,CN,201812,1,1,168,51 -973,FR,CN,201812,1,1,10356,8210 -973,FR,CN,201812,2,1,421,122 -973,FR,CN,201812,2,1,25849,2244 -973,FR,CN,201812,3,1,570402,96068 -973,FR,CN,201812,3,1,24396,4908 -973,FR,CN,201812,3,1,50463,10713 -973,FR,CN,201812,3,1,284704,44666 -973,FR,CN,201812,3,1,5383,1243 -973,FR,CN,201812,3,1,37209,7526 -973,FR,CN,201812,3,1,517,13 -973,FR,CN,201812,3,1,36629,5972 -973,FR,CN,201812,3,1,364,10 -973,FR,CN,201812,3,1,35149,7057 -973,FR,CN,201812,3,1,19913,4169 -973,FR,CN,201812,3,1,445,26 -973,FR,CN,201812,3,1,22507,4076 -973,FR,CN,201812,3,1,29743,8902 -973,FR,CN,201812,3,1,10971,2151 -973,FR,CN,201812,4,1,379329,33338 -973,FR,CN,201812,4,1,24762,2762 -973,FR,CN,201812,4,1,121714,6111 -973,FR,CN,201812,4,1,510,36 -973,FR,CN,201812,4,1,373,9 -973,FR,CN,201812,4,1,6171,439 -973,FR,CN,201812,4,1,10524,581 -973,FR,CN,201812,4,1,325,6 -973,FR,CN,201812,4,1,1748,233 -973,FR,CN,201812,4,1,8101,725 -973,FR,CN,201812,4,1,262914,14717 -973,FR,CN,201812,4,1,13048,676 -973,FR,CN,201812,4,1,2503,305 -973,FR,CN,201812,4,1,1695,31 -973,FR,CN,201812,4,1,59084,1808 -973,FR,CN,201812,4,1,27,39 -973,FR,CN,201812,4,1,37272,2934 -973,FR,CN,201812,4,1,1344,0 -973,FR,CN,201812,4,1,12,0 -973,FR,CN,201812,4,1,24689,1141 -973,FR,CN,201812,4,1,25231,1456 -973,FR,CN,201812,4,1,1722,64 -973,FR,CN,201812,4,1,10989,1293 -973,FR,CN,201812,4,1,86490,7124 -973,FR,CN,201812,4,1,4,0 -973,FR,CN,201812,4,1,26029,1313 -973,FR,CN,201812,4,1,3234,296 -973,FR,CN,201812,4,1,95834,6208 -973,FR,CN,201812,4,1,2779,74 -973,FR,CN,201812,4,1,552,199 -973,FR,CN,201812,8,1,2481,114 -973,FR,CN,201812,0,2,1214,4 -973,FR,CN,201812,1,2,162028,126212 -973,FR,CN,201812,1,2,103,5 -973,FR,CN,201812,1,2,38917,2262 -973,FR,CN,201812,1,2,117794,99431 -973,FR,CN,201812,1,2,68487,11119 -973,FR,CN,201812,1,2,314339,183515 -973,FR,CN,201812,1,2,280,16 -973,FR,CN,201812,1,2,31896,25572 -973,FR,CN,201812,1,2,149748,67026 -973,FR,CN,201812,1,2,16000,6000 -973,FR,CN,201812,1,2,85377,73921 -973,FR,CN,201812,1,2,10846,2513 -973,FR,CN,201812,2,2,7612,400 -973,FR,CN,201812,3,2,33166,7969 -973,FR,CN,201812,4,2,422790,22639 -973,FR,CN,201812,4,2,4238,1063 -973,FR,CN,201812,4,2,248356,1763 -973,FR,CN,201812,4,2,4568,280 -973,FR,CN,201812,4,2,2111,27 -973,FR,CN,201812,4,2,42442,2357 -973,FR,CN,201812,4,2,4706,1180 -973,FR,CN,201812,8,2,120,89 -974,FR,CN,201812,0,1,5385,477 -974,FR,CN,201812,1,1,124397,18398 -974,FR,CN,201812,1,1,2374,469 -974,FR,CN,201812,1,1,72641,9051 -974,FR,CN,201812,1,1,46239,1428 -974,FR,CN,201812,1,1,2712,397 -974,FR,CN,201812,1,1,3813,1180 -974,FR,CN,201812,1,1,1668612,328160 -974,FR,CN,201812,1,1,1369,58 -974,FR,CN,201812,1,1,73262,6699 -974,FR,CN,201812,1,1,302137,87083 -974,FR,CN,201812,1,1,1469,1131 -974,FR,CN,201812,1,1,97215,36066 -974,FR,CN,201812,1,1,455843,84469 -974,FR,CN,201812,1,1,134995,31398 -974,FR,CN,201812,1,1,1475,760 -974,FR,CN,201812,1,1,6132,684 -974,FR,CN,201812,1,1,437,5 -974,FR,CN,201812,1,1,2457,486 -974,FR,CN,201812,1,1,28966,7992 -974,FR,CN,201812,1,1,6,0 -974,FR,CN,201812,1,1,14694,4176 -974,FR,CN,201812,1,1,4884,164 -974,FR,CN,201812,1,1,937100,265645 -974,FR,CN,201812,1,1,87286,16052 -974,FR,CN,201812,1,1,1,198 -974,FR,CN,201812,1,1,1393,176 -974,FR,CN,201812,1,1,164749,50847 -974,FR,CN,201812,1,1,80,1 -974,FR,CN,201812,1,1,2,9 -974,FR,CN,201812,1,1,11161,3006 -974,FR,CN,201812,1,1,161,11 -974,FR,CN,201812,2,1,1249,108 -974,FR,CN,201812,3,1,214197,11598 -974,FR,CN,201812,3,1,3,4 -974,FR,CN,201812,3,1,82,1 -974,FR,CN,201812,3,1,1077,114 -974,FR,CN,201812,3,1,13371,240 -974,FR,CN,201812,3,1,251,3 -974,FR,CN,201812,3,1,1144,23 -974,FR,CN,201812,3,1,71322,10341 -974,FR,CN,201812,4,1,97645,5018 -974,FR,CN,201812,4,1,6514,57 -974,FR,CN,201812,4,1,67429,2402 -974,FR,CN,201812,4,1,1400,18 -974,FR,CN,201812,4,1,3059,148 -974,FR,CN,201812,4,1,11878,220 -974,FR,CN,201812,4,1,29785,3893 -974,FR,CN,201812,4,1,2822,72 -974,FR,CN,201812,4,1,964,17 -974,FR,CN,201812,4,1,620,57 -974,FR,CN,201812,4,1,13764,1975 -974,FR,CN,201812,4,1,44703,1643 -974,FR,CN,201812,4,1,35,10 -974,FR,CN,201812,4,1,4949,125 -974,FR,CN,201812,4,1,6526,768 -974,FR,CN,201812,4,1,1177,53 -974,FR,CN,201812,4,1,38344,141 -974,FR,CN,201812,4,1,95928,14279 -974,FR,CN,201812,4,1,211,10 -974,FR,CN,201812,4,1,18248,910 -974,FR,CN,201812,4,1,94,0 -974,FR,CN,201812,4,1,15417,805 -974,FR,CN,201812,5,1,5125,0 -974,FR,CN,201812,0,2,10284,93 -974,FR,CN,201812,1,2,5010,509 -974,FR,CN,201812,1,2,756,17 -974,FR,CN,201812,1,2,190,90 -974,FR,CN,201812,1,2,10547,1581 -974,FR,CN,201812,1,2,1324,3 -974,FR,CN,201812,1,2,3708,393 -974,FR,CN,201812,1,2,66,3 -974,FR,CN,201812,1,2,2612,77 -974,FR,CN,201812,2,2,784,4 -974,FR,CN,201812,3,2,8850,1017 -974,FR,CN,201812,4,2,740063,14290 -974,FR,CN,201812,4,2,3323,116 -974,FR,CN,201812,4,2,16,0 -974,FR,CN,201812,4,2,3,1 -974,FR,CN,201812,4,2,3887,16 -974,FR,CN,201812,4,2,25884,96 -974,FR,CN,201812,4,2,42183,1170 -974,FR,CN,201812,4,2,25694,651 -974,FR,CN,201812,4,2,125183,2370 -974,FR,CN,201812,4,2,25341,58 -974,FR,CN,201812,4,2,68800,1175 -974,FR,CN,201812,5,2,2029,27 -975,FR,CN,201812,0,1,1306011,352159 -975,FR,CN,201812,1,1,2740206,804183 -975,FR,CN,201812,1,1,103411,23612 -975,FR,CN,201812,1,1,4171,2888 -975,FR,CN,201812,1,1,892482,310727 -975,FR,CN,201812,1,1,5577,1372 -975,FR,CN,201812,1,1,121647,22981 -975,FR,CN,201812,1,1,2914,400 -975,FR,CN,201812,1,1,13258,3811 -975,FR,CN,201812,1,1,1695,126 -975,FR,CN,201812,1,1,231385,62789 -975,FR,CN,201812,1,1,4638,230 -975,FR,CN,201812,1,1,157,13 -975,FR,CN,201812,1,1,1494743,428461 -975,FR,CN,201812,1,1,115427,36918 -975,FR,CN,201812,1,1,14123,3078 -975,FR,CN,201812,1,1,42499,11910 -975,FR,CN,201812,1,1,10498,5521 -975,FR,CN,201812,1,1,85989,24614 -975,FR,CN,201812,1,1,551180,104754 -975,FR,CN,201812,1,1,6038,1800 -975,FR,CN,201812,1,1,23436,5048 -975,FR,CN,201812,1,1,93535,24998 -975,FR,CN,201812,1,1,145918,40515 -975,FR,CN,201812,1,1,2043513,692568 -975,FR,CN,201812,1,1,26095203,9200279 -975,FR,CN,201812,1,1,7357082,2898760 -975,FR,CN,201812,1,1,2521947,772614 -975,FR,CN,201812,1,1,2823790,844825 -975,FR,CN,201812,1,1,984872,354714 -975,FR,CN,201812,1,1,233847,61527 -975,FR,CN,201812,1,1,397,108 -975,FR,CN,201812,1,1,496852,133026 -975,FR,CN,201812,1,1,71842,15139 -975,FR,CN,201812,1,1,1939439,691386 -975,FR,CN,201812,1,1,194351,75698 -975,FR,CN,201812,1,1,43633,4176 -975,FR,CN,201812,1,1,457456,184206 -975,FR,CN,201812,1,1,784566,219078 -975,FR,CN,201812,1,1,58445,16304 -975,FR,CN,201812,1,1,13003,3580 -975,FR,CN,201812,1,1,1008065,357913 -975,FR,CN,201812,1,1,13290,1993 -975,FR,CN,201812,1,1,55796,24317 -975,FR,CN,201812,1,1,40518742,11897220 -975,FR,CN,201812,1,1,761362,199310 -975,FR,CN,201812,1,1,130238,50008 -975,FR,CN,201812,1,1,22694,4640 -975,FR,CN,201812,1,1,514531,102455 -975,FR,CN,201812,1,1,27625,5495 -975,FR,CN,201812,1,1,533725,131760 -975,FR,CN,201812,1,1,16643654,5890232 -975,FR,CN,201812,1,1,24810,9052 -975,FR,CN,201812,1,1,78462,19720 -975,FR,CN,201812,1,1,345342,78152 -975,FR,CN,201812,1,1,47828,10138 -975,FR,CN,201812,1,1,1587947,573788 -975,FR,CN,201812,1,1,22987,16172 -975,FR,CN,201812,1,1,526832,140630 -975,FR,CN,201812,1,1,43845,11557 -975,FR,CN,201812,2,1,8473,1545 -975,FR,CN,201812,2,1,34479,10574 -975,FR,CN,201812,3,1,265311,51699 -975,FR,CN,201812,3,1,18,16 -975,FR,CN,201812,3,1,663,16 -975,FR,CN,201812,3,1,2852,301 -975,FR,CN,201812,3,1,8983,357 -975,FR,CN,201812,3,1,10459,512 -975,FR,CN,201812,3,1,193905,59194 -975,FR,CN,201812,3,1,174268,84774 -975,FR,CN,201812,3,1,50095,13572 -975,FR,CN,201812,3,1,389742,149091 -975,FR,CN,201812,4,1,520790,20448 -975,FR,CN,201812,4,1,45594,1574 -975,FR,CN,201812,4,1,1887,27 -975,FR,CN,201812,4,1,3541,152 -975,FR,CN,201812,4,1,15219,123 -975,FR,CN,201812,4,1,471,1 -975,FR,CN,201812,4,1,145,200 -975,FR,CN,201812,4,1,60107,3033 -975,FR,CN,201812,4,1,1821,139 -975,FR,CN,201812,4,1,42017,1159 -975,FR,CN,201812,4,1,171,45 -975,FR,CN,201812,4,1,2605,195 -975,FR,CN,201812,4,1,153722,3619 -975,FR,CN,201812,4,1,195778,4121 -975,FR,CN,201812,4,1,592,13 -975,FR,CN,201812,4,1,752,60 -975,FR,CN,201812,4,1,418446,15574 -975,FR,CN,201812,4,1,1060,50 -975,FR,CN,201812,4,1,9671,387 -975,FR,CN,201812,4,1,1776,118 -975,FR,CN,201812,4,1,3664,282 -975,FR,CN,201812,0,2,445,7 -975,FR,CN,201812,1,2,214208,16332 -975,FR,CN,201812,1,2,8613,535 -975,FR,CN,201812,1,2,71517,7520 -975,FR,CN,201812,1,2,824464,313526 -975,FR,CN,201812,1,2,100500,6400 -975,FR,CN,201812,1,2,84764,9209 -975,FR,CN,201812,1,2,16461,5501 -975,FR,CN,201812,1,2,16292,20904 -975,FR,CN,201812,1,2,135738,14164 -975,FR,CN,201812,1,2,107326,8087 -975,FR,CN,201812,1,2,345011,33555 -975,FR,CN,201812,1,2,1198,155 -975,FR,CN,201812,1,2,74842,4100 -975,FR,CN,201812,3,2,120997,7137 -975,FR,CN,201812,3,2,70418,60 -975,FR,CN,201812,3,2,152000,9340 -975,FR,CN,201812,3,2,327406,27154 -975,FR,CN,201812,4,2,768005,7795 -975,FR,CN,201812,4,2,231,16 -975,FR,CN,201812,4,2,8692,353 -975,FR,CN,201812,4,2,116951,541 -975,FR,CN,201812,4,2,16140,615 -975,FR,CN,201812,4,2,53747,613 -975,FR,CN,201812,4,2,4929,190 -975,FR,CN,201812,4,2,2,145 -975,FR,CN,201812,4,2,8973,550 -975,FR,CN,201812,4,2,3300,100 -975,FR,CN,201812,4,2,15425,200 -975,FR,CN,201812,4,2,1085582,9995 -975,FR,CN,201812,4,2,108,178 -975,FR,CN,201812,4,2,6090,26 -975,FR,CN,201812,4,2,10041,37 -976,FR,CN,201812,0,1,102329,46084 -976,FR,CN,201812,1,1,252916,103672 -976,FR,CN,201812,1,1,2863,400 -976,FR,CN,201812,1,1,50443,4615 -976,FR,CN,201812,1,1,10014,1000 -976,FR,CN,201812,1,1,34685,1743 -976,FR,CN,201812,1,1,655,17 -976,FR,CN,201812,1,1,226360,360564 -976,FR,CN,201812,1,1,4315,905 -976,FR,CN,201812,1,1,351863,600900 -976,FR,CN,201812,1,1,17236,26514 -976,FR,CN,201812,1,1,208176,82388 -976,FR,CN,201812,1,1,1725,223 -976,FR,CN,201812,1,1,68232,12304 -976,FR,CN,201812,1,1,6504,2584 -976,FR,CN,201812,1,1,47867,56324 -976,FR,CN,201812,1,1,197109,273526 -976,FR,CN,201812,1,1,4016662,2143504 -976,FR,CN,201812,1,1,545923,171172 -976,FR,CN,201812,1,1,150080,30546 -976,FR,CN,201812,1,1,7141,274 -976,FR,CN,201812,1,1,412493,385608 -976,FR,CN,201812,1,1,10109,3512 -976,FR,CN,201812,1,1,51,27 -976,FR,CN,201812,1,1,79535,18487 -976,FR,CN,201812,1,1,4834,572 -976,FR,CN,201812,1,1,355869,310003 -976,FR,CN,201812,1,1,11826,432 -976,FR,CN,201812,1,1,60643,16892 -976,FR,CN,201812,1,1,36627,8680 -976,FR,CN,201812,1,1,55640,8997 -976,FR,CN,201812,1,1,81345,10152 -976,FR,CN,201812,1,1,3678106,1644264 -976,FR,CN,201812,1,1,10088,1898 -976,FR,CN,201812,1,1,133766,49936 -976,FR,CN,201812,1,1,1548797,598331 -976,FR,CN,201812,1,1,58130,11366 -976,FR,CN,201812,1,1,35590,15324 -976,FR,CN,201812,1,1,158555,64280 -976,FR,CN,201812,1,1,85700,85851 -976,FR,CN,201812,1,1,17539,3040 -976,FR,CN,201812,2,1,2014,632 -976,FR,CN,201812,3,1,189647,10197 -976,FR,CN,201812,3,1,12274,188 -976,FR,CN,201812,3,1,10756,110 -976,FR,CN,201812,3,1,11390,194 -976,FR,CN,201812,3,1,22030,9614 -976,FR,CN,201812,3,1,22937,660 -976,FR,CN,201812,3,1,2418,19 -976,FR,CN,201812,3,1,215,3 -976,FR,CN,201812,3,1,3991,630 -976,FR,CN,201812,3,1,18,5 -976,FR,CN,201812,3,1,9558,1770 -976,FR,CN,201812,4,1,78722,3423 -976,FR,CN,201812,4,1,1103,46 -976,FR,CN,201812,4,1,33599,1359 -976,FR,CN,201812,4,1,302,11 -976,FR,CN,201812,4,1,2296,115 -976,FR,CN,201812,4,1,105642,4320 -976,FR,CN,201812,4,1,575,34 -976,FR,CN,201812,4,1,11047,349 -976,FR,CN,201812,4,1,16149,438 -976,FR,CN,201812,4,1,1322,195 -976,FR,CN,201812,4,1,19028,178 -976,FR,CN,201812,4,1,27034,364 -976,FR,CN,201812,4,1,1011,50 -976,FR,CN,201812,4,1,19282,263 -976,FR,CN,201812,4,1,333,28 -976,FR,CN,201812,4,1,1737,54 -976,FR,CN,201812,4,1,1168,102 -976,FR,CN,201812,4,1,39066,2244 -976,FR,CN,201812,4,1,19279,659 -976,FR,CN,201812,4,1,41277,894 -976,FR,CN,201812,4,1,363,7 -976,FR,CN,201812,0,2,74,2 -976,FR,CN,201812,1,2,6370,1717 -976,FR,CN,201812,1,2,822,58 -976,FR,CN,201812,1,2,200,20 -976,FR,CN,201812,1,2,15856,1000 -976,FR,CN,201812,1,2,305,128 -976,FR,CN,201812,1,2,163315,33706 -976,FR,CN,201812,1,2,4642,578 -976,FR,CN,201812,1,2,1173,392 -976,FR,CN,201812,1,2,38119,2800 -976,FR,CN,201812,1,2,113148,469910 -976,FR,CN,201812,1,2,39736,17252 -976,FR,CN,201812,1,2,267199,13984 -976,FR,CN,201812,1,2,21327,4080 -976,FR,CN,201812,3,2,1717,268 -976,FR,CN,201812,3,2,942,7 -976,FR,CN,201812,4,2,130980,1475 -976,FR,CN,201812,4,2,3572,211 -976,FR,CN,201812,4,2,305,60 -976,FR,CN,201812,4,2,23210,1800 -976,FR,CN,201812,4,2,877,30 -976,FR,CN,201812,4,2,1254,90 -976,FR,CN,201812,4,2,29449,2904 -976,FR,CN,201812,4,2,2222,1200 -976,FR,CN,201812,4,2,8723,37 -979,FR,CN,201812,0,1,17358369,1833464 -979,FR,CN,201812,1,1,6540808,832862 -979,FR,CN,201812,1,1,340980,26010 -979,FR,CN,201812,1,1,865791,62468 -979,FR,CN,201812,1,1,2262660,564515 -979,FR,CN,201812,1,1,188653,15828 -979,FR,CN,201812,1,1,15124,5292 -979,FR,CN,201812,1,1,40952,2459 -979,FR,CN,201812,1,1,141477,31440 -979,FR,CN,201812,1,1,376718,16333 -979,FR,CN,201812,1,1,107796,5542 -979,FR,CN,201812,1,1,88,68 -979,FR,CN,201812,1,1,300579,79838 -979,FR,CN,201812,1,1,93518,9088 -979,FR,CN,201812,1,1,65,3 -979,FR,CN,201812,1,1,8960291,700800 -979,FR,CN,201812,1,1,28106,1182 -979,FR,CN,201812,1,1,45312,7614 -979,FR,CN,201812,1,1,35,1 -979,FR,CN,201812,1,1,42071,14369 -979,FR,CN,201812,1,1,4546,379 -979,FR,CN,201812,1,1,89745,5835 -979,FR,CN,201812,1,1,5039,506 -979,FR,CN,201812,1,1,46867,1815 -979,FR,CN,201812,1,1,54111,15292 -979,FR,CN,201812,1,1,1399289,75856 -979,FR,CN,201812,1,1,4829549,682466 -979,FR,CN,201812,1,1,213093,70819 -979,FR,CN,201812,1,1,142273,8823 -979,FR,CN,201812,1,1,14756,2236 -979,FR,CN,201812,1,1,1284219,81056 -979,FR,CN,201812,1,1,31689,4938 -979,FR,CN,201812,1,1,5996,730 -979,FR,CN,201812,1,1,2204846,632179 -979,FR,CN,201812,1,1,48953286,9709261 -979,FR,CN,201812,1,1,7056452,1769047 -979,FR,CN,201812,1,1,3363613,808380 -979,FR,CN,201812,1,1,23346,3644 -979,FR,CN,201812,1,1,8610521,1297098 -979,FR,CN,201812,1,1,1608809,342638 -979,FR,CN,201812,1,1,115364,26426 -979,FR,CN,201812,1,1,373,133 -979,FR,CN,201812,1,1,6336949,1795617 -979,FR,CN,201812,1,1,8332,1085 -979,FR,CN,201812,1,1,131262,22803 -979,FR,CN,201812,1,1,123417,9470 -979,FR,CN,201812,1,1,2494856,359118 -979,FR,CN,201812,1,1,187132,44244 -979,FR,CN,201812,1,1,285460,44926 -979,FR,CN,201812,1,1,471723,91983 -979,FR,CN,201812,1,1,1074233,218368 -979,FR,CN,201812,1,1,2105795,240909 -979,FR,CN,201812,1,1,31990,6684 -979,FR,CN,201812,1,1,17292,7596 -979,FR,CN,201812,1,1,62088224,10374263 -979,FR,CN,201812,1,1,935962,364150 -979,FR,CN,201812,1,1,81412,28382 -979,FR,CN,201812,1,1,31165,500 -979,FR,CN,201812,1,1,84074,11355 -979,FR,CN,201812,1,1,5719,425 -979,FR,CN,201812,1,1,17805,7248 -979,FR,CN,201812,1,1,310818,16257 -979,FR,CN,201812,1,1,4597732,718731 -979,FR,CN,201812,1,1,22652248,3301619 -979,FR,CN,201812,1,1,278865,41951 -979,FR,CN,201812,1,1,801707,177396 -979,FR,CN,201812,1,1,1142167,227384 -979,FR,CN,201812,1,1,4894236,1137673 -979,FR,CN,201812,1,1,44049,16844 -979,FR,CN,201812,1,1,107138,31037 -979,FR,CN,201812,1,1,359636,49023 -979,FR,CN,201812,1,1,4868263,424526 -979,FR,CN,201812,2,1,1682611,71680 -979,FR,CN,201812,2,1,1824478,100449 -979,FR,CN,201812,3,1,14566322,540565 -979,FR,CN,201812,3,1,4923,913 -979,FR,CN,201812,3,1,313346,5994 -979,FR,CN,201812,3,1,11995,207 -979,FR,CN,201812,3,1,331094,30458 -979,FR,CN,201812,3,1,4470,642 -979,FR,CN,201812,3,1,2706,88 -979,FR,CN,201812,3,1,5828,678 -979,FR,CN,201812,3,1,427,3 -979,FR,CN,201812,3,1,1879333,5417 -979,FR,CN,201812,3,1,7438,984 -979,FR,CN,201812,3,1,23002,101 -979,FR,CN,201812,3,1,858,18 -979,FR,CN,201812,3,1,47834,448 -979,FR,CN,201812,3,1,14823,407 -979,FR,CN,201812,3,1,47,1 -979,FR,CN,201812,3,1,86,27 -979,FR,CN,201812,3,1,5681,1064 -979,FR,CN,201812,3,1,2488,2 -979,FR,CN,201812,3,1,103341,1502 -979,FR,CN,201812,3,1,52675,3423 -979,FR,CN,201812,3,1,685983,65700 -979,FR,CN,201812,3,1,225834,14884 -979,FR,CN,201812,3,1,246130,28019 -979,FR,CN,201812,3,1,173808,10707 -979,FR,CN,201812,3,1,364044,70196 -979,FR,CN,201812,3,1,19496,4911 -979,FR,CN,201812,4,1,20135599,299484 -979,FR,CN,201812,4,1,344962,7931 -979,FR,CN,201812,4,1,10601299,110707 -979,FR,CN,201812,4,1,44136,463 -979,FR,CN,201812,4,1,178194,5299 -979,FR,CN,201812,4,1,655,4 -979,FR,CN,201812,4,1,1171111,13687 -979,FR,CN,201812,4,1,6666418,106154 -979,FR,CN,201812,4,1,911754,10902 -979,FR,CN,201812,4,1,34613,512 -979,FR,CN,201812,4,1,782752,4810 -979,FR,CN,201812,4,1,1234345,12892 -979,FR,CN,201812,4,1,5981,1600 -979,FR,CN,201812,4,1,51023,880 -979,FR,CN,201812,4,1,6659582,75711 -979,FR,CN,201812,4,1,127184,3563 -979,FR,CN,201812,4,1,159229,5675 -979,FR,CN,201812,4,1,2535,177 -979,FR,CN,201812,4,1,71929,2748 -979,FR,CN,201812,4,1,15852,384 -979,FR,CN,201812,4,1,62291,1608 -979,FR,CN,201812,4,1,1380,151 -979,FR,CN,201812,4,1,2897,135 -979,FR,CN,201812,4,1,9188,222 -979,FR,CN,201812,4,1,7512295,42571 -979,FR,CN,201812,4,1,27805,786 -979,FR,CN,201812,4,1,187463,192 -979,FR,CN,201812,4,1,180104,2675 -979,FR,CN,201812,4,1,9378,499 -979,FR,CN,201812,4,1,50328,317 -979,FR,CN,201812,4,1,140423,1691 -979,FR,CN,201812,4,1,984026,2976 -979,FR,CN,201812,4,1,1716461,16991 -979,FR,CN,201812,4,1,1620218,42666 -979,FR,CN,201812,4,1,27329,298 -979,FR,CN,201812,4,1,93336,1813 -979,FR,CN,201812,4,1,26247,470 -979,FR,CN,201812,4,1,8380,765 -979,FR,CN,201812,4,1,125,0 -979,FR,CN,201812,4,1,443039,7747 -979,FR,CN,201812,4,1,499,15 -979,FR,CN,201812,4,1,14971773,282267 -979,FR,CN,201812,4,1,296707,2559 -979,FR,CN,201812,4,1,1992251,21347 -979,FR,CN,201812,4,1,170017,5294 -979,FR,CN,201812,4,1,10487202,88502 -979,FR,CN,201812,4,1,141308,3550 -979,FR,CN,201812,4,1,28917,1009 -979,FR,CN,201812,4,1,942973,15509 -979,FR,CN,201812,4,1,714,32 -979,FR,CN,201812,4,1,2162,175 -979,FR,CN,201812,5,1,2386,1 -979,FR,CN,201812,0,2,41017,108 -979,FR,CN,201812,1,2,1280633,52032 -979,FR,CN,201812,1,2,148659,3001 -979,FR,CN,201812,1,2,19160,1341 -979,FR,CN,201812,1,2,18759,753 -979,FR,CN,201812,1,2,7678,516 -979,FR,CN,201812,1,2,14110,2558 -979,FR,CN,201812,1,2,2996,96 -979,FR,CN,201812,1,2,1270,194 -979,FR,CN,201812,1,2,283443,8259 -979,FR,CN,201812,1,2,124721,5624 -979,FR,CN,201812,1,2,6654,188 -979,FR,CN,201812,1,2,9012,460 -979,FR,CN,201812,1,2,67321,2661 -979,FR,CN,201812,1,2,4525576,395079 -979,FR,CN,201812,1,2,92595,9705 -979,FR,CN,201812,1,2,15912,4588 -979,FR,CN,201812,1,2,120982,8406 -979,FR,CN,201812,1,2,58376,7804 -979,FR,CN,201812,1,2,103707,53708 -979,FR,CN,201812,1,2,65575,416 -979,FR,CN,201812,1,2,49224,1513 -979,FR,CN,201812,1,2,1191,51 -979,FR,CN,201812,1,2,24773,5162 -979,FR,CN,201812,1,2,16427,518 -979,FR,CN,201812,1,2,1941980,126662 -979,FR,CN,201812,1,2,41266,3460 -979,FR,CN,201812,1,2,28828,6347 -979,FR,CN,201812,1,2,32682,13530 -979,FR,CN,201812,1,2,169666,41241 -979,FR,CN,201812,1,2,227556,80817 -979,FR,CN,201812,2,2,50947,5330 -979,FR,CN,201812,2,2,59711,15936 -979,FR,CN,201812,3,2,874711,11569 -979,FR,CN,201812,3,2,91651,5429 -979,FR,CN,201812,3,2,30581,2 -979,FR,CN,201812,3,2,7154,1000 -979,FR,CN,201812,3,2,34596,918 -979,FR,CN,201812,3,2,121925,2217 -979,FR,CN,201812,4,2,18676681,105547 -979,FR,CN,201812,4,2,326112,3631 -979,FR,CN,201812,4,2,1399529,9337 -979,FR,CN,201812,4,2,3738,18 -979,FR,CN,201812,4,2,158945,4369 -979,FR,CN,201812,4,2,17577,60 -979,FR,CN,201812,4,2,4537116,432 -979,FR,CN,201812,4,2,8978,188 -979,FR,CN,201812,4,2,577487,2022 -979,FR,CN,201812,4,2,1501529,22066 -979,FR,CN,201812,4,2,1936,52 -979,FR,CN,201812,4,2,129500,580 -979,FR,CN,201812,4,2,583,66 -979,FR,CN,201812,4,2,1956,400 -979,FR,CN,201812,4,2,404299,3000 -979,FR,CN,201812,4,2,42945,394 -979,FR,CN,201812,4,2,1580705,5585 -979,FR,CN,201812,4,2,730021,5411 -979,FR,CN,201812,4,2,93120,381 -979,FR,CN,201812,4,2,364812,5009 -979,FR,CN,201812,4,2,257246,1037 -979,FR,CN,201812,4,2,14523,380 -979,FR,CN,201812,4,2,76082,187 -979,FR,CN,201812,4,2,5731,111 -979,FR,CN,201812,4,2,131274,7 -979,FR,CN,201812,4,2,15645333,73881 -979,FR,CN,201812,4,2,168428,317 -979,FR,CN,201812,4,2,60000,420 -979,FR,CN,201812,4,2,931652,408 -979,FR,CN,201812,4,2,188141,3603 -979,FR,CN,201812,4,2,118132,153 -979,FR,CN,201812,4,2,3984414,59220 -979,FR,CN,201812,4,2,274784,733 -979,FR,CN,201812,4,2,1889945,3725 -979,FR,CN,201812,5,2,17000,23 -994,FR,CN,201812,3,1,16786,8 -994,FR,CN,201812,4,1,16047,0 -994,FR,CN,201812,4,1,29504,6 -994,FR,CN,201812,4,2,106685,3 -999,FR,CN,201812,0,1,426835,50004 -999,FR,CN,201812,1,1,21179,0 -999,FR,CN,201812,1,1,255738,20000 -999,FR,CN,201812,1,1,638062,2200 -999,FR,CN,201812,1,1,167848,20558 -999,FR,CN,201812,2,1,3866,0 -999,FR,CN,201812,3,1,4604,15 -999,FR,CN,201812,3,1,8047,10 -999,FR,CN,201812,3,1,86598,20000 -999,FR,CN,201812,4,1,16141,0 -999,FR,CN,201812,4,1,589,3 -999,FR,CN,201812,4,1,6059,0 -999,FR,CN,201812,4,1,866,1 -999,FR,CN,201812,4,1,1419,0 -999,FR,CN,201812,4,1,23434,0 -999,FR,CN,201812,4,1,30030,0 -999,FR,CN,201812,4,1,381,0 -999,FR,CN,201812,4,1,3453,0 -999,FR,CN,201812,5,1,13513,0 -999,FR,CN,201812,0,2,2855,30 -999,FR,CN,201812,1,2,3346333,1234032 -999,FR,CN,201812,1,2,27325,0 -999,FR,CN,201812,1,2,655,0 -999,FR,CN,201812,1,2,65606,9013 -999,FR,CN,201812,1,2,9184,3098 -999,FR,CN,201812,1,2,224609,4632 -999,FR,CN,201812,1,2,38610,3600 -999,FR,CN,201812,1,2,32540,9207 -999,FR,CN,201812,1,2,0,68951571 -999,FR,CN,201812,1,2,9415,800 -999,FR,CN,201812,1,2,3879145,1525607 -999,FR,CN,201812,1,2,33695,32102 -999,FR,CN,201812,1,2,66448,12954 -999,FR,CN,201812,1,2,44821,15618 -999,FR,CN,201812,1,2,23,0 -999,FR,CN,201812,1,2,389493,205790 -999,FR,CN,201812,1,2,104868,5280 -999,FR,CN,201812,1,2,306102,95587 -999,FR,CN,201812,1,2,163222,47520 -999,FR,CN,201812,1,2,76159,66649 -999,FR,CN,201812,1,2,23,0 -999,FR,CN,201812,1,2,7308,7030 -999,FR,CN,201812,1,2,1624183,782605 -999,FR,CN,201812,1,2,165880,95152 -999,FR,CN,201812,1,2,61695,24572 -999,FR,CN,201812,1,2,632451,352207 -999,FR,CN,201812,1,2,1041689,100423 -999,FR,CN,201812,1,2,111532,14920 -999,FR,CN,201812,2,2,2335,28 -999,FR,CN,201812,2,2,1806147,101780 -999,FR,CN,201812,3,2,20269,1592 -999,FR,CN,201812,3,2,4623,1000 -999,FR,CN,201812,3,2,1101,171 -999,FR,CN,201812,3,2,19211,1304 -999,FR,CN,201812,3,2,153724,46500 -999,FR,CN,201812,4,2,11057688,135231 -999,FR,CN,201812,4,2,35647,180 -999,FR,CN,201812,4,2,24720,139 -999,FR,CN,201812,4,2,4044,3000 -999,FR,CN,201812,4,2,13300,0 -999,FR,CN,201812,4,2,17252,380 -999,FR,CN,201812,4,2,27205,1013 -999,FR,CN,201812,4,2,6809,166 -999,FR,CN,201812,4,2,63420,498 -999,FR,CN,201812,4,2,7904,190 -999,FR,CN,201812,4,2,13003,120 -999,FR,CN,201812,4,2,3576,200 -999,FR,CN,201812,4,2,78430,100 -999,FR,CN,201812,4,2,11501909,26911 -999,FR,CN,201812,4,2,19110,150 -999,FR,CN,201812,4,2,63,8 -999,FR,CN,201812,4,2,75452,2820 -999,FR,CN,201812,4,2,7455,22 -999,FR,CN,201812,4,2,14256,265 -001,FR,KR,201812,4,2,6060,5 -011,FR,KR,201812,1,2,229794,597180 -011,FR,KR,201812,1,2,230686,619860 -016,FR,KR,201812,1,1,20666,10240 -016,FR,KR,201812,4,1,116,61 -035,FR,KR,201812,1,1,14570,5800 -035,FR,KR,201812,4,1,877,400 -039,FR,KR,201812,4,1,20823,5423 -039,FR,KR,201812,1,2,5908,270 -039,FR,KR,201812,1,2,36994,15730 -039,FR,KR,201812,4,2,9765,12 -039,FR,KR,201812,4,2,6876,1980 -039,FR,KR,201812,4,2,8404,130 -041,FR,KR,201812,0,1,112,3 -043,FR,KR,201812,1,1,106461,65760 -043,FR,KR,201812,1,1,647838,487820 -043,FR,KR,201812,1,1,182529,134500 -043,FR,KR,201812,1,1,128667,65840 -043,FR,KR,201812,1,1,68879,43500 -043,FR,KR,201812,1,1,29634,21000 -043,FR,KR,201812,3,1,71070,72000 -043,FR,KR,201812,1,2,84422,19637 -049,FR,KR,201812,0,1,663,24 -056,FR,KR,201812,1,2,28277,33970 -060,FR,KR,201812,1,1,1361,85 -092,FR,KR,201812,1,1,357612,160000 -092,FR,KR,201812,1,1,1287208,573600 -092,FR,KR,201812,1,1,267613,139824 -092,FR,KR,201812,1,1,213750,112500 -092,FR,KR,201812,1,1,115480,50000 -092,FR,KR,201812,1,1,224285,100000 -092,FR,KR,201812,4,1,682,6 -092,FR,KR,201812,1,2,759065,463605 -092,FR,KR,201812,1,2,49485,16000 -092,FR,KR,201812,4,2,844,19 -099,FR,KR,201812,0,1,344,2 -099,FR,KR,201812,1,1,19190,1000 -099,FR,KR,201812,1,1,10617,180 -099,FR,KR,201812,1,1,3501,222 -099,FR,KR,201812,1,1,63390,1958 -099,FR,KR,201812,1,1,14299,265 -099,FR,KR,201812,1,1,1102,48 -099,FR,KR,201812,4,1,54,1 -099,FR,KR,201812,4,1,22243,115 -099,FR,KR,201812,4,1,32024,592 -099,FR,KR,201812,1,2,72084,17011 -099,FR,KR,201812,1,2,30787,10000 -099,FR,KR,201812,1,2,67200,1400 -099,FR,KR,201812,1,2,54497,22000 -099,FR,KR,201812,3,2,42460,8147 -099,FR,KR,201812,4,2,2121,373 -099,FR,KR,201812,4,2,1580,33 -099,FR,KR,201812,4,2,3386,30 -099,FR,KR,201812,4,2,26854,4 -111,FR,KR,201812,1,1,2739,2000 -111,FR,KR,201812,1,2,30,12 -112,FR,KR,201812,1,2,17462,48825 -112,FR,KR,201812,1,2,112005,330000 -121,FR,KR,201812,3,1,1923,49 -121,FR,KR,201812,0,2,10269,84 -121,FR,KR,201812,1,2,54299,11628 -121,FR,KR,201812,1,2,25559,3122 -121,FR,KR,201812,1,2,8285,2070 -121,FR,KR,201812,1,2,146303,11691 -121,FR,KR,201812,1,2,255673,8349 -121,FR,KR,201812,1,2,5678,1350 -121,FR,KR,201812,1,2,2613166,196363 -121,FR,KR,201812,1,2,35011,7803 -121,FR,KR,201812,1,2,86325,1058 -121,FR,KR,201812,1,2,4698,405 -121,FR,KR,201812,1,2,117438,29042 -121,FR,KR,201812,1,2,74483,27810 -121,FR,KR,201812,1,2,15206,3024 -121,FR,KR,201812,1,2,1160578,165666 -121,FR,KR,201812,1,2,62418,15538 -121,FR,KR,201812,1,2,42509,18792 -121,FR,KR,201812,3,2,83,2 -121,FR,KR,201812,3,2,43979,7845 -121,FR,KR,201812,3,2,70480,6588 -121,FR,KR,201812,4,2,329023,4332 -121,FR,KR,201812,4,2,150,10 -121,FR,KR,201812,4,2,334,18 -121,FR,KR,201812,4,2,600424,24023 -121,FR,KR,201812,4,2,174850,5790 -122,FR,KR,201812,1,1,4740,5400 -122,FR,KR,201812,1,2,381721,188612 -125,FR,KR,201812,1,1,3404,2160 -125,FR,KR,201812,1,1,14547,6445 -125,FR,KR,201812,1,2,109774,4598 -125,FR,KR,201812,1,2,103687,6497 -125,FR,KR,201812,1,2,10791,213 -125,FR,KR,201812,1,2,3560,210 -125,FR,KR,201812,1,2,1373137,61270 -125,FR,KR,201812,1,2,3893,198 -125,FR,KR,201812,3,2,7003,235 -125,FR,KR,201812,4,2,57143,868 -125,FR,KR,201812,4,2,332529,1308 -125,FR,KR,201812,4,2,47068,93 -125,FR,KR,201812,4,2,7727,672 -125,FR,KR,201812,4,2,191,24 -128,FR,KR,201812,1,1,12470,17300 -128,FR,KR,201812,1,1,19404,17323 -128,FR,KR,201812,1,1,12596,14690 -128,FR,KR,201812,1,1,14230,17002 -128,FR,KR,201812,1,1,15037,9992 -128,FR,KR,201812,1,1,1648,1560 -128,FR,KR,201812,1,1,20341,30340 -128,FR,KR,201812,1,1,46944,70345 -128,FR,KR,201812,3,1,208,26 -128,FR,KR,201812,1,2,676452,994622 -128,FR,KR,201812,1,2,415411,679608 -128,FR,KR,201812,3,2,59912,31912 -128,FR,KR,201812,4,2,13,6 -128,FR,KR,201812,4,2,1045,691 -131,FR,KR,201812,1,2,31134,2492 -131,FR,KR,201812,1,2,5685,588 -131,FR,KR,201812,1,2,6069,683 -131,FR,KR,201812,3,2,6036,520 -131,FR,KR,201812,4,2,7417,444 -132,FR,KR,201812,4,1,56,1 -132,FR,KR,201812,1,2,15800,147 -132,FR,KR,201812,1,2,22270,5928 -132,FR,KR,201812,1,2,152951,35850 -132,FR,KR,201812,1,2,450402,95796 -132,FR,KR,201812,1,2,75293,72312 -132,FR,KR,201812,3,2,81882,2404 -132,FR,KR,201812,3,2,365450,35532 -132,FR,KR,201812,4,2,7623,709 -132,FR,KR,201812,4,2,7267,285 -132,FR,KR,201812,4,2,5823,759 -133,FR,KR,201812,0,1,2807,71 -133,FR,KR,201812,1,1,4874,1200 -133,FR,KR,201812,1,1,3181,400 -133,FR,KR,201812,1,1,5269,930 -133,FR,KR,201812,1,1,893,223 -133,FR,KR,201812,1,1,1914,470 -133,FR,KR,201812,4,1,3648,137 -133,FR,KR,201812,4,1,353,62 -133,FR,KR,201812,4,2,186353,590 -133,FR,KR,201812,4,2,53163,1118 -133,FR,KR,201812,4,2,5200,54 -133,FR,KR,201812,4,2,3568,34 -133,FR,KR,201812,5,2,7648,15 -136,FR,KR,201812,1,1,1211,220 -136,FR,KR,201812,1,1,627,476 -136,FR,KR,201812,1,1,8135,9145 -136,FR,KR,201812,4,1,230,2 -136,FR,KR,201812,1,2,34712,12614 -136,FR,KR,201812,1,2,432898,168318 -136,FR,KR,201812,1,2,19802,6201 -136,FR,KR,201812,1,2,16759,4736 -136,FR,KR,201812,1,2,33577,18700 -136,FR,KR,201812,3,2,5385,253 -136,FR,KR,201812,3,2,154535,13030 -136,FR,KR,201812,4,2,1027,346 -136,FR,KR,201812,4,2,2423,32 -139,FR,KR,201812,1,1,87350,35782 -139,FR,KR,201812,1,1,59531,23263 -139,FR,KR,201812,1,1,12101,5336 -139,FR,KR,201812,1,1,65434,30388 -139,FR,KR,201812,1,1,11136,5813 -139,FR,KR,201812,1,1,151327,42876 -139,FR,KR,201812,1,1,173850,75083 -139,FR,KR,201812,1,1,57542,35658 -139,FR,KR,201812,3,1,460,26 -139,FR,KR,201812,3,1,9145,450 -139,FR,KR,201812,4,1,1129,140 -139,FR,KR,201812,4,1,786,81 -139,FR,KR,201812,1,2,225001,18500 -139,FR,KR,201812,1,2,45714,9569 -139,FR,KR,201812,1,2,21288,5326 -139,FR,KR,201812,1,2,68830,7842 -139,FR,KR,201812,1,2,105500,36828 -139,FR,KR,201812,1,2,333380,15021 -139,FR,KR,201812,1,2,35434,16601 -139,FR,KR,201812,1,2,813369,421456 -139,FR,KR,201812,1,2,119958,66000 -139,FR,KR,201812,3,2,4300,1000 -139,FR,KR,201812,4,2,3145,105 -139,FR,KR,201812,4,2,620,150 -139,FR,KR,201812,4,2,129085,6581 -139,FR,KR,201812,4,2,1342,50 -141,FR,KR,201812,1,2,19600,510 -141,FR,KR,201812,1,2,93071,23000 -141,FR,KR,201812,1,2,231668,66038 -141,FR,KR,201812,1,2,167365,46212 -141,FR,KR,201812,1,2,173120,45058 -141,FR,KR,201812,1,2,1276998,396406 -141,FR,KR,201812,1,2,369025,109971 -141,FR,KR,201812,4,2,9852,255 -142,FR,KR,201812,0,1,1219302,117031 -142,FR,KR,201812,1,1,66034,10000 -142,FR,KR,201812,1,1,1120772,77515 -142,FR,KR,201812,1,1,310296,22438 -142,FR,KR,201812,1,1,280488,22000 -142,FR,KR,201812,1,1,143691,22612 -142,FR,KR,201812,1,1,125541,5500 -142,FR,KR,201812,4,1,26716,1000 -143,FR,KR,201812,1,2,543557,188752 -143,FR,KR,201812,1,2,231017,96318 -143,FR,KR,201812,1,2,71463,23736 -143,FR,KR,201812,1,2,176755,23836 -143,FR,KR,201812,1,2,292342,103961 -144,FR,KR,201812,1,2,68671,13809 -144,FR,KR,201812,1,2,29898,4345 -144,FR,KR,201812,1,2,7492,1254 -144,FR,KR,201812,1,2,144271,15714 -144,FR,KR,201812,1,2,2180276,538395 -144,FR,KR,201812,1,2,368920,142504 -144,FR,KR,201812,1,2,310522,110070 -144,FR,KR,201812,1,2,758812,165337 -144,FR,KR,201812,1,2,55586,14979 -144,FR,KR,201812,4,2,48949,2700 -144,FR,KR,201812,4,2,2253,238 -144,FR,KR,201812,4,2,5039,584 -144,FR,KR,201812,4,2,206235,19715 -147,FR,KR,201812,1,2,5708,60 -147,FR,KR,201812,4,2,453,4 -147,FR,KR,201812,4,2,16246,265 -148,FR,KR,201812,4,2,4182,33 -161,FR,KR,201812,1,2,118830,220050 -161,FR,KR,201812,1,2,910,384 -161,FR,KR,201812,1,2,3034,3000 -161,FR,KR,201812,1,2,14525,23000 -161,FR,KR,201812,1,2,14800,20000 -161,FR,KR,201812,1,2,13075,22500 -161,FR,KR,201812,1,2,28302,44000 -161,FR,KR,201812,3,2,34940,88000 -161,FR,KR,201812,4,2,10102,5750 -162,FR,KR,201812,1,2,1032,900 -163,FR,KR,201812,1,1,2137,495 -163,FR,KR,201812,1,1,24627,10247 -163,FR,KR,201812,1,1,2596,1450 -163,FR,KR,201812,1,1,51737,21147 -163,FR,KR,201812,1,1,5503,653 -163,FR,KR,201812,1,1,28696,10506 -163,FR,KR,201812,4,1,453,15 -163,FR,KR,201812,1,2,5,10 -163,FR,KR,201812,1,2,7220,900 -163,FR,KR,201812,1,2,1773,1008 -163,FR,KR,201812,1,2,15239,983 -163,FR,KR,201812,1,2,2463,430 -163,FR,KR,201812,1,2,129471,34333 -163,FR,KR,201812,1,2,35400,7374 -163,FR,KR,201812,1,2,37047,6521 -163,FR,KR,201812,1,2,24165,6087 -163,FR,KR,201812,1,2,137196,10585 -163,FR,KR,201812,1,2,36120,9930 -163,FR,KR,201812,1,2,168888,44048 -163,FR,KR,201812,1,2,537852,137640 -163,FR,KR,201812,1,2,31818,5510 -163,FR,KR,201812,1,2,37324,7560 -163,FR,KR,201812,1,2,166837,38696 -163,FR,KR,201812,3,2,6,7 -163,FR,KR,201812,3,2,29695,3006 -163,FR,KR,201812,4,2,2624,260 -163,FR,KR,201812,4,2,5240,1540 -163,FR,KR,201812,4,2,2,4 -163,FR,KR,201812,4,2,16919,1049 -163,FR,KR,201812,4,2,71885,894 -164,FR,KR,201812,1,1,84234,2454 -164,FR,KR,201812,1,1,5324,2405 -164,FR,KR,201812,1,1,20399,706 -164,FR,KR,201812,1,1,168140,3635 -164,FR,KR,201812,1,1,75511,22043 -164,FR,KR,201812,1,1,12650,912 -164,FR,KR,201812,1,1,4267,1171 -164,FR,KR,201812,4,1,576,400 -164,FR,KR,201812,4,1,459,24 -164,FR,KR,201812,4,1,1808,9 -164,FR,KR,201812,4,1,55,26 -164,FR,KR,201812,1,2,28445,2208 -164,FR,KR,201812,1,2,6926,880 -164,FR,KR,201812,1,2,6636,1115 -164,FR,KR,201812,1,2,12970,2617 -164,FR,KR,201812,1,2,146786,33687 -164,FR,KR,201812,1,2,31711,840 -164,FR,KR,201812,1,2,675430,138571 -164,FR,KR,201812,3,2,3127,405 -164,FR,KR,201812,3,2,9649,880 -164,FR,KR,201812,4,2,13193,2085 -164,FR,KR,201812,4,2,1683,300 -164,FR,KR,201812,4,2,4926,196 -164,FR,KR,201812,4,2,6276,100 -166,FR,KR,201812,1,1,1418,336 -166,FR,KR,201812,1,1,260,50 -166,FR,KR,201812,1,1,21814,5279 -166,FR,KR,201812,1,1,2705,658 -166,FR,KR,201812,1,2,19509,2928 -166,FR,KR,201812,1,2,30362,5604 -166,FR,KR,201812,1,2,49324,16470 -166,FR,KR,201812,1,2,1,15 -166,FR,KR,201812,1,2,17307,15420 -166,FR,KR,201812,4,2,847,200 -166,FR,KR,201812,4,2,3376,60 -166,FR,KR,201812,4,2,13532,360 -179,FR,KR,201812,4,1,2177,172 -179,FR,KR,201812,1,2,33737,2864 -179,FR,KR,201812,1,2,28787,8198 -179,FR,KR,201812,1,2,9856,3669 -179,FR,KR,201812,1,2,26750,6000 -179,FR,KR,201812,1,2,1444902,646703 -179,FR,KR,201812,1,2,46298,26725 -179,FR,KR,201812,1,2,34525,25325 -179,FR,KR,201812,1,2,161450,109351 -179,FR,KR,201812,3,2,9604,2000 -179,FR,KR,201812,4,2,6845,1806 -179,FR,KR,201812,4,2,1906,600 -182,FR,KR,201812,1,1,552,48 -182,FR,KR,201812,1,1,2432,201 -182,FR,KR,201812,1,2,31844,4351 -182,FR,KR,201812,1,2,152518,65955 -182,FR,KR,201812,1,2,16694,23000 -182,FR,KR,201812,1,2,20096,2647 -182,FR,KR,201812,1,2,16610,23000 -182,FR,KR,201812,1,2,24735,1800 -182,FR,KR,201812,3,2,3037,116 -182,FR,KR,201812,4,2,2092,286 -182,FR,KR,201812,4,2,86078,3745 -182,FR,KR,201812,4,2,1365,130 -323,FR,KR,201812,4,2,6340,26 -325,FR,KR,201812,1,2,1178,167 -330,FR,KR,201812,1,1,79073,37108 -341,FR,KR,201812,1,1,2104,270 -341,FR,KR,201812,1,1,3097237,4173143 -341,FR,KR,201812,1,1,108614,61740 -341,FR,KR,201812,1,2,32466,8247 -341,FR,KR,201812,1,2,4891,15 -341,FR,KR,201812,1,2,545839,188948 -341,FR,KR,201812,1,2,41497,8792 -341,FR,KR,201812,1,2,110794,44800 -341,FR,KR,201812,1,2,101749,25987 -341,FR,KR,201812,1,2,26892,15000 -341,FR,KR,201812,1,2,34350,15000 -341,FR,KR,201812,3,2,744,152 -341,FR,KR,201812,4,2,12097,4252 -341,FR,KR,201812,4,2,85,1 -343,FR,KR,201812,3,2,385158,718180 -343,FR,KR,201812,3,2,92506,150100 -349,FR,KR,201812,3,2,515,30 -349,FR,KR,201812,4,2,78,0 -451,FR,KR,201812,1,2,37285,60716 -451,FR,KR,201812,1,2,31800,75540 -452,FR,KR,201812,1,2,232221,112917 -465,FR,KR,201812,3,1,166,2 -512,FR,KR,201812,1,2,13500,300 -512,FR,KR,201812,1,2,149600,4500 -532,FR,KR,201812,1,2,76617,2346 -533,FR,KR,201812,1,1,47588,2178 -533,FR,KR,201812,3,1,4975,285 -533,FR,KR,201812,1,2,424069,26814 -533,FR,KR,201812,1,2,29066,1220 -533,FR,KR,201812,4,2,51075,2434 -533,FR,KR,201812,4,2,405,14 -535,FR,KR,201812,1,2,223230,72497 -535,FR,KR,201812,4,2,41760,2541 -536,FR,KR,201812,1,1,89104,54292 -536,FR,KR,201812,1,1,693165,586582 -536,FR,KR,201812,1,1,237455,216846 -536,FR,KR,201812,3,1,92,4 -536,FR,KR,201812,4,1,1077,74 -536,FR,KR,201812,1,2,29162,6786 -536,FR,KR,201812,1,2,16990,10224 -542,FR,KR,201812,1,1,111847,83790 -542,FR,KR,201812,1,1,3558,1013 -542,FR,KR,201812,1,1,42261,37980 -542,FR,KR,201812,1,1,408806,410860 -542,FR,KR,201812,1,1,143331,26400 -542,FR,KR,201812,4,1,1052,80 -542,FR,KR,201812,1,2,200370,126325 -542,FR,KR,201812,1,2,59134,42227 -542,FR,KR,201812,1,2,208681,49245 -542,FR,KR,201812,1,2,6987,2129 -542,FR,KR,201812,1,2,188365,19050 -542,FR,KR,201812,1,2,146919,19278 -542,FR,KR,201812,4,2,130401,11700 -542,FR,KR,201812,4,2,25101,8100 -542,FR,KR,201812,4,2,6062,466 -543,FR,KR,201812,1,2,2643325,248036 -543,FR,KR,201812,1,2,1612850,151764 -543,FR,KR,201812,4,2,896,96 -543,FR,KR,201812,4,2,810,100 -543,FR,KR,201812,4,2,161912,18560 -551,FR,KR,201812,1,1,5941,280 -551,FR,KR,201812,1,1,6994,4680 -551,FR,KR,201812,1,1,145,8 -551,FR,KR,201812,1,1,4,0 -551,FR,KR,201812,1,1,186,8 -551,FR,KR,201812,3,1,17912,193 -551,FR,KR,201812,4,1,157,6 -551,FR,KR,201812,4,1,24,0 -551,FR,KR,201812,4,1,12474,350 -551,FR,KR,201812,1,2,46643,4108 -551,FR,KR,201812,1,2,947,54 -551,FR,KR,201812,1,2,32075,1207 -551,FR,KR,201812,1,2,348370,26332 -551,FR,KR,201812,4,2,55203,469 -551,FR,KR,201812,4,2,238,1 -551,FR,KR,201812,4,2,125737,633 -551,FR,KR,201812,4,2,10795,1000 -552,FR,KR,201812,1,1,1060,86 -552,FR,KR,201812,1,2,499,11 -552,FR,KR,201812,4,2,282377,1400 -552,FR,KR,201812,4,2,375,53 -552,FR,KR,201812,4,2,14551,130 -561,FR,KR,201812,1,2,68500,5000 -562,FR,KR,201812,0,1,136,3 -562,FR,KR,201812,4,2,10127,188 -565,FR,KR,201812,1,1,137392,19642 -565,FR,KR,201812,3,1,14895,37 -565,FR,KR,201812,4,1,10375,110 -565,FR,KR,201812,4,1,243,0 -565,FR,KR,201812,1,2,267922,7167 -565,FR,KR,201812,1,2,3046,47 -565,FR,KR,201812,1,2,160900,2000 -565,FR,KR,201812,3,2,209874,1555 -565,FR,KR,201812,4,2,110910,500 -565,FR,KR,201812,4,2,15256,29 -565,FR,KR,201812,4,2,6139,3 -568,FR,KR,201812,1,1,112362,10907 -568,FR,KR,201812,1,1,7065,233 -568,FR,KR,201812,1,1,35847,4608 -568,FR,KR,201812,1,1,111095,10770 -568,FR,KR,201812,1,1,821743,101700 -568,FR,KR,201812,3,1,10861,80 -568,FR,KR,201812,4,1,5213,23 -568,FR,KR,201812,4,1,759,1 -568,FR,KR,201812,4,1,361,18 -568,FR,KR,201812,4,1,240,1 -568,FR,KR,201812,1,2,235994,14970 -568,FR,KR,201812,1,2,439049,30525 -568,FR,KR,201812,1,2,22904,816 -568,FR,KR,201812,1,2,39933,2194 -568,FR,KR,201812,1,2,22,0 -568,FR,KR,201812,1,2,517269,119330 -568,FR,KR,201812,1,2,1539250,82802 -568,FR,KR,201812,3,2,2677982,253473 -568,FR,KR,201812,3,2,12582,2467 -568,FR,KR,201812,4,2,17948,1412 -568,FR,KR,201812,4,2,11120,1522 -568,FR,KR,201812,4,2,68776,3030 -568,FR,KR,201812,4,2,6232,461 -568,FR,KR,201812,4,2,332884,14345 -612,FR,KR,201812,1,2,4410,24000 -614,FR,KR,201812,1,2,421499,283600 -614,FR,KR,201812,1,2,35208,100000 -621,FR,KR,201812,1,1,37,19 -621,FR,KR,201812,1,2,43836,8177 -621,FR,KR,201812,1,2,60,4 -621,FR,KR,201812,1,2,18606,66000 -621,FR,KR,201812,4,2,252,10 -631,FR,KR,201812,3,2,6221,40000 -634,FR,KR,201812,3,2,6845,100000 -639,FR,KR,201812,4,1,985,6 -639,FR,KR,201812,4,1,14474,60 -639,FR,KR,201812,1,2,36386,10000 -639,FR,KR,201812,3,2,7900,100000 -639,FR,KR,201812,4,2,4730,30 -691,FR,KR,201812,1,1,22086,2000 -691,FR,KR,201812,1,1,25,1 -691,FR,KR,201812,4,1,1424,132 -691,FR,KR,201812,4,1,18871,250 -691,FR,KR,201812,1,2,4,0 -691,FR,KR,201812,1,2,107,40 -691,FR,KR,201812,1,2,803370,11116 -691,FR,KR,201812,1,2,85502,1668 -691,FR,KR,201812,4,2,10785,154 -691,FR,KR,201812,4,2,2495,147 -691,FR,KR,201812,4,2,11508,360 -691,FR,KR,201812,4,2,3760,71 -691,FR,KR,201812,4,2,4934,130 -691,FR,KR,201812,4,2,1928,3 -692,FR,KR,201812,1,1,32497,79260 -692,FR,KR,201812,4,1,3475,120 -692,FR,KR,201812,1,2,332,47 -692,FR,KR,201812,1,2,1136432,263060 -692,FR,KR,201812,1,2,14946,47882 -692,FR,KR,201812,1,2,23952,94030 -719,FR,KR,201812,1,2,75945,13517 -813,FR,KR,201812,1,2,75819,128850 -813,FR,KR,201812,1,2,3035,700 -819,FR,KR,201812,1,1,6276,800 -819,FR,KR,201812,1,1,3440,400 -819,FR,KR,201812,1,1,4684,400 -819,FR,KR,201812,1,1,4305368,1702008 -819,FR,KR,201812,1,1,26800,4800 -819,FR,KR,201812,1,1,45864,16000 -819,FR,KR,201812,1,1,45481,18864 -819,FR,KR,201812,1,1,83020,76000 -819,FR,KR,201812,1,1,50141,22680 -819,FR,KR,201812,1,1,30491,40000 -819,FR,KR,201812,1,1,1976,1000 -819,FR,KR,201812,1,1,111269,79600 -819,FR,KR,201812,1,1,42799,18000 -819,FR,KR,201812,1,1,158464,247600 -819,FR,KR,201812,1,1,7172,960 -819,FR,KR,201812,1,1,33050,40000 -819,FR,KR,201812,1,1,288141,450220 -819,FR,KR,201812,3,1,32722,7270 -819,FR,KR,201812,3,1,4347,600 -819,FR,KR,201812,3,1,19358,1000 -819,FR,KR,201812,4,1,10533,70 -819,FR,KR,201812,4,1,11700,25 -819,FR,KR,201812,4,1,3329,209 -819,FR,KR,201812,4,1,152,5 -819,FR,KR,201812,4,1,718,14 -819,FR,KR,201812,4,1,749,25 -819,FR,KR,201812,1,2,59136,6530 -819,FR,KR,201812,1,2,41666,960 -819,FR,KR,201812,1,2,4644,760 -819,FR,KR,201812,1,2,73250,3600 -819,FR,KR,201812,1,2,3320020,490820 -819,FR,KR,201812,1,2,22472,15600 -819,FR,KR,201812,1,2,34953,13000 -819,FR,KR,201812,1,2,106720,58000 -819,FR,KR,201812,1,2,86275,8100 -819,FR,KR,201812,1,2,285002,72603 -819,FR,KR,201812,1,2,22759,5057 -819,FR,KR,201812,1,2,205312,77816 -819,FR,KR,201812,1,2,19608,5201 -819,FR,KR,201812,3,2,8906,3080 -819,FR,KR,201812,3,2,20836,5000 -819,FR,KR,201812,4,2,311667,2470 -819,FR,KR,201812,4,2,1466,15 -819,FR,KR,201812,4,2,2438,25 -819,FR,KR,201812,4,2,190966,364 -819,FR,KR,201812,4,2,2215,59 -819,FR,KR,201812,4,2,92920,260 -819,FR,KR,201812,4,2,155277,3997 -819,FR,KR,201812,4,2,12313,67 -820,FR,KR,201812,1,1,14841,20000 -820,FR,KR,201812,4,1,31,1 -820,FR,KR,201812,1,2,17745,14000 -820,FR,KR,201812,1,2,9970,20000 -820,FR,KR,201812,1,2,67257,120000 -820,FR,KR,201812,1,2,98234,210000 -820,FR,KR,201812,1,2,231682,500000 -820,FR,KR,201812,1,2,52775,76000 -820,FR,KR,201812,1,2,74327,160000 -820,FR,KR,201812,1,2,218892,17600 -820,FR,KR,201812,4,2,383,5 -820,FR,KR,201812,4,2,8827,28 -841,FR,KR,201812,1,2,179458,295419 -842,FR,KR,201812,0,2,45,5 -891,FR,KR,201812,0,1,1914,63 -891,FR,KR,201812,1,1,173719,49176 -891,FR,KR,201812,1,1,31208,2432 -891,FR,KR,201812,1,1,56809,4182 -891,FR,KR,201812,1,1,32380,17500 -891,FR,KR,201812,1,1,5749013,3240948 -891,FR,KR,201812,1,1,151500,48624 -891,FR,KR,201812,1,1,44000,16000 -891,FR,KR,201812,1,1,782652,468239 -891,FR,KR,201812,1,1,22233,2856 -891,FR,KR,201812,1,1,54957,44000 -891,FR,KR,201812,1,1,343710,221750 -891,FR,KR,201812,1,1,120000,48000 -891,FR,KR,201812,1,1,44516,36000 -891,FR,KR,201812,1,1,3554815,1856408 -891,FR,KR,201812,1,1,35533,18200 -891,FR,KR,201812,1,1,359778,214148 -891,FR,KR,201812,1,1,578042,220914 -891,FR,KR,201812,1,1,41600,16000 -891,FR,KR,201812,1,1,29894,18942 -891,FR,KR,201812,1,1,82838,29883 -891,FR,KR,201812,3,1,42166,1350 -891,FR,KR,201812,3,1,8699,1398 -891,FR,KR,201812,4,1,236619,5634 -891,FR,KR,201812,4,1,7303,388 -891,FR,KR,201812,4,1,1854,81 -891,FR,KR,201812,4,1,8276,68 -891,FR,KR,201812,4,1,38577,1636 -891,FR,KR,201812,4,1,3795,240 -891,FR,KR,201812,0,2,116,0 -891,FR,KR,201812,1,2,52694,3397 -891,FR,KR,201812,1,2,266544,23550 -891,FR,KR,201812,1,2,17047,2400 -891,FR,KR,201812,1,2,15900,6000 -891,FR,KR,201812,1,2,11610,498 -891,FR,KR,201812,1,2,59326,11037 -891,FR,KR,201812,1,2,5359,1190 -891,FR,KR,201812,1,2,124825,6205 -891,FR,KR,201812,1,2,760400,350520 -891,FR,KR,201812,1,2,99028,30560 -891,FR,KR,201812,1,2,375333,117780 -891,FR,KR,201812,1,2,174659,10560 -891,FR,KR,201812,1,2,38193,37220 -891,FR,KR,201812,1,2,1004311,449042 -891,FR,KR,201812,1,2,471747,28291 -891,FR,KR,201812,1,2,31508,8200 -891,FR,KR,201812,3,2,17268,853 -891,FR,KR,201812,3,2,439,20 -891,FR,KR,201812,3,2,54240,18000 -891,FR,KR,201812,4,2,552328,34183 -891,FR,KR,201812,4,2,253,60 -891,FR,KR,201812,4,2,2588,247 -891,FR,KR,201812,4,2,1300,2 -891,FR,KR,201812,4,2,55,25 -891,FR,KR,201812,4,2,6825,500 -891,FR,KR,201812,4,2,81843,3653 -891,FR,KR,201812,4,2,1654,1000 -891,FR,KR,201812,4,2,27919,20 -891,FR,KR,201812,4,2,5745,4 -892,FR,KR,201812,1,1,214,24 -892,FR,KR,201812,3,1,526,3 -892,FR,KR,201812,4,1,312,0 -892,FR,KR,201812,4,1,1443,4 -892,FR,KR,201812,4,1,1523,0 -892,FR,KR,201812,4,1,8748,94 -892,FR,KR,201812,4,1,7934,263 -892,FR,KR,201812,4,1,975,0 -892,FR,KR,201812,1,2,67134,8574 -892,FR,KR,201812,1,2,14144,1510 -892,FR,KR,201812,1,2,6578,576 -892,FR,KR,201812,1,2,394730,49004 -892,FR,KR,201812,1,2,67122,25623 -892,FR,KR,201812,1,2,445158,24617 -892,FR,KR,201812,1,2,17760,6000 -892,FR,KR,201812,1,2,454428,75496 -892,FR,KR,201812,1,2,44757,33800 -892,FR,KR,201812,1,2,15725,10560 -892,FR,KR,201812,4,2,11306,1035 -892,FR,KR,201812,4,2,8631,524 -892,FR,KR,201812,4,2,21459,588 -892,FR,KR,201812,4,2,11953,272 -893,FR,KR,201812,0,1,20625,819 -893,FR,KR,201812,1,1,62466,2861 -893,FR,KR,201812,1,1,20419,1417 -893,FR,KR,201812,1,1,121495,10436 -893,FR,KR,201812,1,1,6568,48 -893,FR,KR,201812,1,1,142774,3493 -893,FR,KR,201812,1,1,54580,1375 -893,FR,KR,201812,1,1,18932,4000 -893,FR,KR,201812,1,1,560991,32310 -893,FR,KR,201812,1,1,34654,1639 -893,FR,KR,201812,1,1,51623,11694 -893,FR,KR,201812,1,1,58107,949 -893,FR,KR,201812,1,1,952866,81899 -893,FR,KR,201812,1,1,1512,170 -893,FR,KR,201812,1,1,298910,9912 -893,FR,KR,201812,1,1,80444,1772 -893,FR,KR,201812,3,1,799931,33216 -893,FR,KR,201812,3,1,97,2 -893,FR,KR,201812,3,1,1106,15 -893,FR,KR,201812,3,1,46824,115 -893,FR,KR,201812,3,1,154166,5481 -893,FR,KR,201812,4,1,1610335,60528 -893,FR,KR,201812,4,1,35371,400 -893,FR,KR,201812,4,1,26921,250 -893,FR,KR,201812,4,1,42948,1106 -893,FR,KR,201812,4,1,14024,1280 -893,FR,KR,201812,4,1,176001,735 -893,FR,KR,201812,4,1,135551,2336 -893,FR,KR,201812,4,1,17678,105 -893,FR,KR,201812,4,1,200,4 -893,FR,KR,201812,4,1,38777,1330 -893,FR,KR,201812,4,1,741851,14937 -893,FR,KR,201812,4,1,72,1 -893,FR,KR,201812,0,2,152,14 -893,FR,KR,201812,1,2,2003139,73995 -893,FR,KR,201812,1,2,28565,552 -893,FR,KR,201812,1,2,84934,800 -893,FR,KR,201812,1,2,18403,2505 -893,FR,KR,201812,1,2,95256,18086 -893,FR,KR,201812,1,2,7780,2522 -893,FR,KR,201812,1,2,20843,2000 -893,FR,KR,201812,1,2,432775,18698 -893,FR,KR,201812,1,2,12617,2202 -893,FR,KR,201812,1,2,3169840,395010 -893,FR,KR,201812,1,2,554529,11581 -893,FR,KR,201812,1,2,640766,95298 -893,FR,KR,201812,1,2,64280,11560 -893,FR,KR,201812,1,2,54800,3818 -893,FR,KR,201812,1,2,100891,39888 -893,FR,KR,201812,1,2,251284,26393 -893,FR,KR,201812,1,2,4216442,515830 -893,FR,KR,201812,1,2,364366,16944 -893,FR,KR,201812,1,2,54280,4500 -893,FR,KR,201812,3,2,20410,1162 -893,FR,KR,201812,4,2,14226273,107473 -893,FR,KR,201812,4,2,2540,105 -893,FR,KR,201812,4,2,1029762,8913 -893,FR,KR,201812,4,2,31693,645 -893,FR,KR,201812,4,2,47306,1184 -893,FR,KR,201812,4,2,19194,671 -893,FR,KR,201812,4,2,91862,1032 -893,FR,KR,201812,4,2,107701,2377 -893,FR,KR,201812,4,2,14978,3 -893,FR,KR,201812,4,2,10152,10 -893,FR,KR,201812,4,2,50318,46 -893,FR,KR,201812,4,2,359911,4206 -893,FR,KR,201812,4,2,211657,5324 -893,FR,KR,201812,4,2,10679,334 -893,FR,KR,201812,4,2,114790,3392 -893,FR,KR,201812,4,2,10921117,172596 -893,FR,KR,201812,4,2,965,70 -893,FR,KR,201812,4,2,51256,5640 -893,FR,KR,201812,4,2,206969,804 -893,FR,KR,201812,5,2,2811,19 -894,FR,KR,201812,1,2,8752,210 -894,FR,KR,201812,3,2,1027,12 -895,FR,KR,201812,1,2,179538,125000 -895,FR,KR,201812,1,2,11024,40000 -895,FR,KR,201812,1,2,59454,60000 -895,FR,KR,201812,1,2,156475,106250 -895,FR,KR,201812,4,2,113,200 -896,FR,KR,201812,0,1,3029,12 -896,FR,KR,201812,1,1,816175,36899 -896,FR,KR,201812,1,1,66420,15264 -896,FR,KR,201812,1,1,385046,140060 -896,FR,KR,201812,1,1,82578,10839 -896,FR,KR,201812,1,1,359016,1597 -896,FR,KR,201812,1,1,120,0 -896,FR,KR,201812,1,1,108869,12570 -896,FR,KR,201812,1,1,126,3 -896,FR,KR,201812,1,1,267488,124750 -896,FR,KR,201812,3,1,419466,953 -896,FR,KR,201812,3,1,1881,1 -896,FR,KR,201812,3,1,110,0 -896,FR,KR,201812,3,1,1923,1 -896,FR,KR,201812,3,1,1817,2 -896,FR,KR,201812,3,1,3903,5 -896,FR,KR,201812,4,1,1301297,4044 -896,FR,KR,201812,4,1,7040,96 -896,FR,KR,201812,4,1,14428,205 -896,FR,KR,201812,4,1,13630,185 -896,FR,KR,201812,4,1,6660,74 -896,FR,KR,201812,4,1,3546,425 -896,FR,KR,201812,4,1,47633,184 -896,FR,KR,201812,4,1,9671,282 -896,FR,KR,201812,4,1,292655,502 -896,FR,KR,201812,4,1,2230767,3827 -896,FR,KR,201812,1,2,242039,15617 -896,FR,KR,201812,1,2,8100,1008 -896,FR,KR,201812,1,2,9698,1026 -896,FR,KR,201812,1,2,2715,1250 -896,FR,KR,201812,1,2,46690,6800 -896,FR,KR,201812,1,2,2404,30 -896,FR,KR,201812,1,2,3568148,757301 -896,FR,KR,201812,1,2,20718,18000 -896,FR,KR,201812,1,2,170133,36000 -896,FR,KR,201812,1,2,204906,87293 -896,FR,KR,201812,1,2,108647,37400 -896,FR,KR,201812,1,2,883120,135699 -896,FR,KR,201812,1,2,509,813 -896,FR,KR,201812,1,2,16947,11000 -896,FR,KR,201812,1,2,81597,39640 -896,FR,KR,201812,1,2,14293,10800 -896,FR,KR,201812,1,2,30031,5789 -896,FR,KR,201812,1,2,41734,8640 -896,FR,KR,201812,1,2,249988,32100 -896,FR,KR,201812,3,2,196564,194950 -896,FR,KR,201812,3,2,14075,1250 -896,FR,KR,201812,3,2,85443,19840 -896,FR,KR,201812,4,2,1904352,24975 -896,FR,KR,201812,4,2,43933,429 -896,FR,KR,201812,4,2,15941,455 -896,FR,KR,201812,4,2,46785,881 -896,FR,KR,201812,4,2,292,100 -896,FR,KR,201812,4,2,1048182,11654 -896,FR,KR,201812,4,2,59456,770 -896,FR,KR,201812,4,2,279088,980 -896,FR,KR,201812,5,2,2482,16 -910,FR,KR,201812,0,1,17588376,1557817 -910,FR,KR,201812,1,1,1115201,36891 -910,FR,KR,201812,1,1,18869,1617 -910,FR,KR,201812,1,1,51614,150 -910,FR,KR,201812,1,1,16415022,1250451 -910,FR,KR,201812,1,1,632647,64631 -910,FR,KR,201812,1,1,8519,2725 -910,FR,KR,201812,1,1,3439585,135267 -910,FR,KR,201812,1,1,993464,100120 -910,FR,KR,201812,1,1,454277,58622 -910,FR,KR,201812,1,1,224703,80650 -910,FR,KR,201812,1,1,114,5 -910,FR,KR,201812,1,1,62637,11971 -910,FR,KR,201812,1,1,86210,15174 -910,FR,KR,201812,1,1,211200,150600 -910,FR,KR,201812,1,1,1540369,144238 -910,FR,KR,201812,1,1,189955,36410 -910,FR,KR,201812,1,1,76,5 -910,FR,KR,201812,3,1,19969,737 -910,FR,KR,201812,3,1,1776,400 -910,FR,KR,201812,3,1,94897,17136 -910,FR,KR,201812,4,1,207887,1594 -910,FR,KR,201812,4,1,468,0 -910,FR,KR,201812,4,1,67597,696 -910,FR,KR,201812,4,1,219224,1770 -910,FR,KR,201812,4,1,9883,15 -910,FR,KR,201812,4,1,17975,579 -910,FR,KR,201812,4,1,11522,3720 -910,FR,KR,201812,4,1,61562,3511 -910,FR,KR,201812,4,1,16778,1255 -910,FR,KR,201812,4,1,135,4 -910,FR,KR,201812,4,1,839897,41199 -910,FR,KR,201812,4,1,24413,1274 -910,FR,KR,201812,0,2,278,3 -910,FR,KR,201812,1,2,1441070,148428 -910,FR,KR,201812,1,2,99814,1775 -910,FR,KR,201812,1,2,12740,1911 -910,FR,KR,201812,1,2,19075,2000 -910,FR,KR,201812,1,2,277466,9095 -910,FR,KR,201812,1,2,3104055,173186 -910,FR,KR,201812,1,2,17903,1033 -910,FR,KR,201812,1,2,322804,19025 -910,FR,KR,201812,1,2,378328,23111 -910,FR,KR,201812,1,2,318306,12718 -910,FR,KR,201812,1,2,57118,5791 -910,FR,KR,201812,1,2,154195,8000 -910,FR,KR,201812,1,2,1655,40 -910,FR,KR,201812,1,2,41020,11568 -910,FR,KR,201812,3,2,1460954,198198 -910,FR,KR,201812,3,2,340000,48718 -910,FR,KR,201812,3,2,100000,15020 -910,FR,KR,201812,3,2,166084,22525 -910,FR,KR,201812,3,2,30000,4440 -910,FR,KR,201812,3,2,2185750,320916 -910,FR,KR,201812,3,2,452240,45925 -910,FR,KR,201812,3,2,70000,10060 -910,FR,KR,201812,4,2,18608910,32077 -910,FR,KR,201812,4,2,3456,96 -910,FR,KR,201812,4,2,92074,2625 -910,FR,KR,201812,4,2,89327,327 -910,FR,KR,201812,4,2,6859,524 -910,FR,KR,201812,4,2,1736,15 -910,FR,KR,201812,4,2,300,12 -910,FR,KR,201812,4,2,53946,1540 -910,FR,KR,201812,4,2,1971495,9384 -910,FR,KR,201812,4,2,33036,100 -910,FR,KR,201812,4,2,142875,4580 -910,FR,KR,201812,4,2,1249,13 -910,FR,KR,201812,4,2,38354,93 -920,FR,KR,201812,1,1,12942,2016 -920,FR,KR,201812,1,1,105192,14400 -920,FR,KR,201812,1,1,329346,43823 -920,FR,KR,201812,1,1,852,78 -920,FR,KR,201812,1,1,82086,4738 -920,FR,KR,201812,1,1,28,2 -920,FR,KR,201812,4,1,559,5 -920,FR,KR,201812,4,1,1629,73 -920,FR,KR,201812,1,2,1387499,116990 -920,FR,KR,201812,1,2,297343,26560 -920,FR,KR,201812,1,2,520200,42000 -920,FR,KR,201812,1,2,383533,51607 -920,FR,KR,201812,3,2,673900,53753 -920,FR,KR,201812,4,2,20552,1608 -920,FR,KR,201812,4,2,68,10 -920,FR,KR,201812,4,2,1075,38 -920,FR,KR,201812,4,2,826,66 -931,FR,KR,201812,0,1,4369383,232273 -931,FR,KR,201812,1,1,1679267,74509 -931,FR,KR,201812,1,1,819,56 -931,FR,KR,201812,1,1,22376,1162 -931,FR,KR,201812,1,1,23772,723 -931,FR,KR,201812,1,1,2534,242 -931,FR,KR,201812,1,1,9498,520 -931,FR,KR,201812,1,1,58265,882 -931,FR,KR,201812,1,1,231932,3161 -931,FR,KR,201812,1,1,28492,1337 -931,FR,KR,201812,1,1,16522,309 -931,FR,KR,201812,1,1,10978793,396186 -931,FR,KR,201812,1,1,88384,4302 -931,FR,KR,201812,1,1,23073,1875 -931,FR,KR,201812,1,1,215729,34717 -931,FR,KR,201812,1,1,920420,261045 -931,FR,KR,201812,1,1,216379,63466 -931,FR,KR,201812,1,1,16720,4867 -931,FR,KR,201812,1,1,421677,112603 -931,FR,KR,201812,1,1,24846,4154 -931,FR,KR,201812,1,1,32800,6960 -931,FR,KR,201812,1,1,259201,12365 -931,FR,KR,201812,1,1,2035909,110024 -931,FR,KR,201812,1,1,204650,42512 -931,FR,KR,201812,1,1,262584,6342 -931,FR,KR,201812,1,1,2349192,443892 -931,FR,KR,201812,1,1,635,21 -931,FR,KR,201812,1,1,1978,112 -931,FR,KR,201812,1,1,48344,21531 -931,FR,KR,201812,3,1,1919580,10813 -931,FR,KR,201812,3,1,29648,71 -931,FR,KR,201812,3,1,33071,197 -931,FR,KR,201812,3,1,1429,70 -931,FR,KR,201812,3,1,30895,140 -931,FR,KR,201812,3,1,13075,105 -931,FR,KR,201812,3,1,8817,12 -931,FR,KR,201812,3,1,200679,6314 -931,FR,KR,201812,3,1,29382,90 -931,FR,KR,201812,3,1,38513,102 -931,FR,KR,201812,3,1,159364,9410 -931,FR,KR,201812,3,1,4055,137 -931,FR,KR,201812,4,1,6856428,10231 -931,FR,KR,201812,4,1,2095771,4879 -931,FR,KR,201812,4,1,48,1 -931,FR,KR,201812,4,1,156,1 -931,FR,KR,201812,4,1,32182,123 -931,FR,KR,201812,4,1,60419,787 -931,FR,KR,201812,4,1,69955,43 -931,FR,KR,201812,4,1,4287,33 -931,FR,KR,201812,4,1,5898,11 -931,FR,KR,201812,4,1,10479,90 -931,FR,KR,201812,4,1,3076,27 -931,FR,KR,201812,4,1,23443,96 -931,FR,KR,201812,4,1,2486512,2302 -931,FR,KR,201812,4,1,59038,979 -931,FR,KR,201812,4,1,184328,897 -931,FR,KR,201812,4,1,619,8 -931,FR,KR,201812,4,1,75441,828 -931,FR,KR,201812,4,1,69917,188 -931,FR,KR,201812,4,1,6923,70 -931,FR,KR,201812,4,1,86917,238 -931,FR,KR,201812,4,1,4037,38 -931,FR,KR,201812,4,1,19538708,625801 -931,FR,KR,201812,4,1,66023,242 -931,FR,KR,201812,4,1,12298,104 -931,FR,KR,201812,4,1,1753,150 -931,FR,KR,201812,0,2,807,7 -931,FR,KR,201812,1,2,1514895,62865 -931,FR,KR,201812,1,2,1264250,13265 -931,FR,KR,201812,1,2,9926,430 -931,FR,KR,201812,1,2,644679,12246 -931,FR,KR,201812,1,2,1798,59 -931,FR,KR,201812,1,2,190772,20122 -931,FR,KR,201812,1,2,80128,1409 -931,FR,KR,201812,1,2,2403,5 -931,FR,KR,201812,1,2,5632503,147053 -931,FR,KR,201812,1,2,36715,1000 -931,FR,KR,201812,1,2,108269,8722 -931,FR,KR,201812,1,2,15344,68 -931,FR,KR,201812,1,2,15310,68 -931,FR,KR,201812,1,2,168319,6561 -931,FR,KR,201812,1,2,249431,13080 -931,FR,KR,201812,1,2,73085,7096 -931,FR,KR,201812,1,2,117889,9684 -931,FR,KR,201812,1,2,4125615,29871 -931,FR,KR,201812,3,2,4416877,432090 -931,FR,KR,201812,3,2,54714,1339 -931,FR,KR,201812,3,2,21817,250 -931,FR,KR,201812,3,2,455377,16910 -931,FR,KR,201812,3,2,5798,50 -931,FR,KR,201812,4,2,10753828,99567 -931,FR,KR,201812,4,2,9524299,105596 -931,FR,KR,201812,4,2,208063,288 -931,FR,KR,201812,4,2,1017074,840 -931,FR,KR,201812,4,2,220393,8824 -931,FR,KR,201812,4,2,61040,1315 -931,FR,KR,201812,4,2,1600,19 -931,FR,KR,201812,4,2,700286,1139 -931,FR,KR,201812,4,2,219,5 -931,FR,KR,201812,4,2,63514,590 -931,FR,KR,201812,4,2,25611,86 -931,FR,KR,201812,4,2,249390,955 -931,FR,KR,201812,4,2,17238,337 -931,FR,KR,201812,4,2,37300,350 -931,FR,KR,201812,4,2,462258,2672 -931,FR,KR,201812,4,2,4474192,31994 -931,FR,KR,201812,4,2,1711700,7513 -931,FR,KR,201812,4,2,44142,1962 -931,FR,KR,201812,4,2,4443787,616 -931,FR,KR,201812,4,2,11822608,44230 -931,FR,KR,201812,4,2,183456,239 -931,FR,KR,201812,4,2,2738464,3985 -931,FR,KR,201812,5,2,243,3 -939,FR,KR,201812,0,1,1332781,184703 -939,FR,KR,201812,1,1,1216925,108596 -939,FR,KR,201812,1,1,311,30 -939,FR,KR,201812,1,1,116090,5778 -939,FR,KR,201812,1,1,156471,19298 -939,FR,KR,201812,1,1,12319,883 -939,FR,KR,201812,1,1,352044,62100 -939,FR,KR,201812,1,1,273560,23510 -939,FR,KR,201812,1,1,3996,360 -939,FR,KR,201812,1,1,11715,1576 -939,FR,KR,201812,1,1,88000,14770 -939,FR,KR,201812,1,1,127927,6722 -939,FR,KR,201812,1,1,231109,18883 -939,FR,KR,201812,1,1,17996,480 -939,FR,KR,201812,1,1,8619,2300 -939,FR,KR,201812,1,1,103457,12525 -939,FR,KR,201812,1,1,2536026,447949 -939,FR,KR,201812,1,1,59743,28718 -939,FR,KR,201812,1,1,32133,3269 -939,FR,KR,201812,1,1,11875,2927 -939,FR,KR,201812,1,1,679,46 -939,FR,KR,201812,1,1,48658,5346 -939,FR,KR,201812,1,1,181004,24934 -939,FR,KR,201812,1,1,1995398,153747 -939,FR,KR,201812,1,1,63060,7435 -939,FR,KR,201812,1,1,1193382,82547 -939,FR,KR,201812,1,1,1125,106 -939,FR,KR,201812,1,1,209,12 -939,FR,KR,201812,1,1,22371,3446 -939,FR,KR,201812,3,1,643217,16971 -939,FR,KR,201812,3,1,969614,194496 -939,FR,KR,201812,3,1,20,0 -939,FR,KR,201812,4,1,547308,13049 -939,FR,KR,201812,4,1,1548702,3326 -939,FR,KR,201812,4,1,51,0 -939,FR,KR,201812,4,1,79,6 -939,FR,KR,201812,4,1,696708,15525 -939,FR,KR,201812,4,1,714,12 -939,FR,KR,201812,4,1,18457,280 -939,FR,KR,201812,4,1,9415,1 -939,FR,KR,201812,4,1,8324,168 -939,FR,KR,201812,4,1,4114,121 -939,FR,KR,201812,4,1,683755,1717 -939,FR,KR,201812,4,1,324,0 -939,FR,KR,201812,4,1,4458,2 -939,FR,KR,201812,4,1,3954,428 -939,FR,KR,201812,4,1,98457,3271 -939,FR,KR,201812,4,1,78343,1064 -939,FR,KR,201812,4,1,7793,25 -939,FR,KR,201812,4,1,4052,35 -939,FR,KR,201812,4,1,15845,14 -939,FR,KR,201812,4,1,570309,7622 -939,FR,KR,201812,4,1,25153,526 -939,FR,KR,201812,4,1,7009,149 -939,FR,KR,201812,0,2,722,9 -939,FR,KR,201812,1,2,4472116,171522 -939,FR,KR,201812,1,2,7568,215 -939,FR,KR,201812,1,2,10960,530 -939,FR,KR,201812,1,2,5043,192 -939,FR,KR,201812,1,2,27697,2520 -939,FR,KR,201812,1,2,8488,487 -939,FR,KR,201812,1,2,11330,1220 -939,FR,KR,201812,1,2,1723376,33046 -939,FR,KR,201812,1,2,643422,8661 -939,FR,KR,201812,1,2,131708,3913 -939,FR,KR,201812,1,2,112877,314 -939,FR,KR,201812,1,2,6852,680 -939,FR,KR,201812,1,2,1163513,15124 -939,FR,KR,201812,1,2,7242003,534157 -939,FR,KR,201812,1,2,91,0 -939,FR,KR,201812,1,2,99872,16454 -939,FR,KR,201812,1,2,205275,4953 -939,FR,KR,201812,1,2,194643,7073 -939,FR,KR,201812,1,2,2465318,166374 -939,FR,KR,201812,1,2,7152,1506 -939,FR,KR,201812,1,2,841571,13722 -939,FR,KR,201812,3,2,1069614,35848 -939,FR,KR,201812,3,2,6847688,484499 -939,FR,KR,201812,3,2,11885,244 -939,FR,KR,201812,3,2,820,88 -939,FR,KR,201812,3,2,140324,233 -939,FR,KR,201812,4,2,9817076,104279 -939,FR,KR,201812,4,2,58653,1212 -939,FR,KR,201812,4,2,199391,765 -939,FR,KR,201812,4,2,1190,14 -939,FR,KR,201812,4,2,166070,3232 -939,FR,KR,201812,4,2,61951,1359 -939,FR,KR,201812,4,2,15044,184 -939,FR,KR,201812,4,2,135092,6324 -939,FR,KR,201812,4,2,16920,176 -939,FR,KR,201812,4,2,88976,30 -939,FR,KR,201812,4,2,12516,441 -939,FR,KR,201812,4,2,569571,2469 -939,FR,KR,201812,4,2,58693,1335 -939,FR,KR,201812,4,2,9678012,40206 -939,FR,KR,201812,4,2,4349,8 -939,FR,KR,201812,4,2,15173,469 -939,FR,KR,201812,4,2,393397,3069 -939,FR,KR,201812,4,2,443440,15610 -939,FR,KR,201812,4,2,10782,43 -939,FR,KR,201812,4,2,512567,21800 -939,FR,KR,201812,4,2,55220,196 -939,FR,KR,201812,4,2,235289,581 -941,FR,KR,201812,1,1,3133,517 -941,FR,KR,201812,1,1,64435,1215 -941,FR,KR,201812,3,1,221,7 -941,FR,KR,201812,4,1,14873,1200 -941,FR,KR,201812,4,1,3232,96 -941,FR,KR,201812,4,2,12544,478 -941,FR,KR,201812,4,2,18572,231 -949,FR,KR,201812,0,1,97038,3222 -949,FR,KR,201812,1,1,242536,6464 -949,FR,KR,201812,1,1,54300,1608 -949,FR,KR,201812,1,1,1728,34 -949,FR,KR,201812,1,1,73238,7177 -949,FR,KR,201812,1,1,12037,564 -949,FR,KR,201812,1,1,44566,4541 -949,FR,KR,201812,1,1,6617,472 -949,FR,KR,201812,1,1,393900,21496 -949,FR,KR,201812,1,1,141312,45286 -949,FR,KR,201812,1,1,3,0 -949,FR,KR,201812,1,1,112138,65385 -949,FR,KR,201812,1,1,85372,24044 -949,FR,KR,201812,1,1,23642,7374 -949,FR,KR,201812,1,1,121488,38592 -949,FR,KR,201812,1,1,41225,20899 -949,FR,KR,201812,1,1,273004,40227 -949,FR,KR,201812,1,1,16879,726 -949,FR,KR,201812,1,1,4044,623 -949,FR,KR,201812,3,1,392673,37723 -949,FR,KR,201812,3,1,5901,335 -949,FR,KR,201812,3,1,2,0 -949,FR,KR,201812,3,1,1778,97 -949,FR,KR,201812,3,1,3,1 -949,FR,KR,201812,4,1,1485007,13758 -949,FR,KR,201812,4,1,4049,64 -949,FR,KR,201812,4,1,143668,2543 -949,FR,KR,201812,4,1,4,0 -949,FR,KR,201812,4,1,1418,3 -949,FR,KR,201812,4,1,32850,1550 -949,FR,KR,201812,4,1,39,0 -949,FR,KR,201812,4,1,639,18 -949,FR,KR,201812,4,1,29238,884 -949,FR,KR,201812,4,1,15031,677 -949,FR,KR,201812,4,1,13119,235 -949,FR,KR,201812,4,1,43033,1620 -949,FR,KR,201812,4,1,373465,15486 -949,FR,KR,201812,4,1,2012,0 -949,FR,KR,201812,0,2,40,0 -949,FR,KR,201812,1,2,47312,4162 -949,FR,KR,201812,1,2,2521,27 -949,FR,KR,201812,1,2,122,1 -949,FR,KR,201812,1,2,45798,2432 -949,FR,KR,201812,1,2,827,77 -949,FR,KR,201812,1,2,120156,8593 -949,FR,KR,201812,1,2,3746708,451019 -949,FR,KR,201812,1,2,439,9 -949,FR,KR,201812,1,2,8012,26720 -949,FR,KR,201812,1,2,56,0 -949,FR,KR,201812,1,2,8607,806 -949,FR,KR,201812,1,2,312732,40406 -949,FR,KR,201812,3,2,128086,4878 -949,FR,KR,201812,3,2,60104,1735 -949,FR,KR,201812,4,2,1533338,17862 -949,FR,KR,201812,4,2,17554,203 -949,FR,KR,201812,4,2,560,70 -949,FR,KR,201812,4,2,559,8 -949,FR,KR,201812,4,2,25226,881 -949,FR,KR,201812,4,2,4314,95 -949,FR,KR,201812,4,2,2657,1 -949,FR,KR,201812,4,2,101,1 -949,FR,KR,201812,4,2,10940,898 -949,FR,KR,201812,4,2,26987,1890 -949,FR,KR,201812,4,2,678867,9672 -949,FR,KR,201812,4,2,75852,4937 -949,FR,KR,201812,4,2,370066,21799 -949,FR,KR,201812,4,2,61201,6042 -949,FR,KR,201812,4,2,16311,82 -949,FR,KR,201812,4,2,72382,8680 -949,FR,KR,201812,4,2,47794,348 -949,FR,KR,201812,4,2,73313,548 -951,FR,KR,201812,1,1,7891,635 -951,FR,KR,201812,1,1,86291,12478 -951,FR,KR,201812,3,1,18274,472 -951,FR,KR,201812,4,1,1732,19 -951,FR,KR,201812,4,1,10,0 -951,FR,KR,201812,4,1,3010,152 -951,FR,KR,201812,1,2,19524,1232 -951,FR,KR,201812,4,2,3180,105 -951,FR,KR,201812,4,2,105610,733 -951,FR,KR,201812,4,2,12168,1350 -952,FR,KR,201812,0,1,7290,1516 -952,FR,KR,201812,1,1,36955,1100 -952,FR,KR,201812,1,1,41,1 -952,FR,KR,201812,1,1,15969,2065 -952,FR,KR,201812,1,1,35382,6152 -952,FR,KR,201812,3,1,81185,1135 -952,FR,KR,201812,3,1,30,0 -952,FR,KR,201812,3,1,1228,16 -952,FR,KR,201812,4,1,45005,1451 -952,FR,KR,201812,4,1,15707,214 -952,FR,KR,201812,4,1,9779,41 -952,FR,KR,201812,4,1,5790,124 -952,FR,KR,201812,4,1,929,22 -952,FR,KR,201812,4,1,20,1 -952,FR,KR,201812,4,1,96,0 -952,FR,KR,201812,4,1,24429,477 -952,FR,KR,201812,0,2,684,22 -952,FR,KR,201812,1,2,68390,4393 -952,FR,KR,201812,1,2,841,28 -952,FR,KR,201812,1,2,8867,1000 -952,FR,KR,201812,1,2,39283,5000 -952,FR,KR,201812,1,2,152138,15586 -952,FR,KR,201812,1,2,14354,7615 -952,FR,KR,201812,1,2,94810,52810 -952,FR,KR,201812,1,2,7225,9510 -952,FR,KR,201812,3,2,169572,183023 -952,FR,KR,201812,4,2,146383,2036 -952,FR,KR,201812,4,2,5008,881 -952,FR,KR,201812,4,2,1091,10 -952,FR,KR,201812,4,2,1011,35 -952,FR,KR,201812,4,2,136445,4149 -952,FR,KR,201812,4,2,6286,600 -952,FR,KR,201812,4,2,2999,34 -952,FR,KR,201812,4,2,145727,220 -952,FR,KR,201812,5,2,12,2 -961,FR,KR,201812,0,1,406,4 -961,FR,KR,201812,1,1,34985,1517 -961,FR,KR,201812,3,1,1982,154 -961,FR,KR,201812,4,1,49172,62 -961,FR,KR,201812,4,1,28239,264 -961,FR,KR,201812,1,2,237146,804 -961,FR,KR,201812,1,2,3876,326 -961,FR,KR,201812,3,2,12364,153 -961,FR,KR,201812,3,2,61684,1000 -961,FR,KR,201812,4,2,1273005,655 -961,FR,KR,201812,4,2,21919,1079 -961,FR,KR,201812,4,2,63000,228 -961,FR,KR,201812,4,2,546625,2881 -961,FR,KR,201812,4,2,1185,20 -961,FR,KR,201812,4,2,7810,143 -962,FR,KR,201812,0,1,11671,218 -962,FR,KR,201812,1,1,64314,8078 -962,FR,KR,201812,1,1,47343,9142 -962,FR,KR,201812,1,1,21987,8546 -962,FR,KR,201812,1,1,117747,6218 -962,FR,KR,201812,1,1,1649,121 -962,FR,KR,201812,1,1,22205,1828 -962,FR,KR,201812,1,1,346579,96629 -962,FR,KR,201812,1,1,32850,22500 -962,FR,KR,201812,1,1,127603,42111 -962,FR,KR,201812,1,1,5900,67 -962,FR,KR,201812,1,1,858651,448691 -962,FR,KR,201812,1,1,87868,31833 -962,FR,KR,201812,1,1,33745,5167 -962,FR,KR,201812,1,1,82950,33139 -962,FR,KR,201812,1,1,68124,17562 -962,FR,KR,201812,3,1,61167,937 -962,FR,KR,201812,3,1,5271,476 -962,FR,KR,201812,3,1,2,0 -962,FR,KR,201812,4,1,899851,66469 -962,FR,KR,201812,4,1,120755,627 -962,FR,KR,201812,4,1,108338,7402 -962,FR,KR,201812,4,1,93,0 -962,FR,KR,201812,4,1,187082,13123 -962,FR,KR,201812,4,1,22597,1300 -962,FR,KR,201812,4,1,115846,4308 -962,FR,KR,201812,4,1,107864,13485 -962,FR,KR,201812,4,1,341036,24300 -962,FR,KR,201812,4,1,17123,851 -962,FR,KR,201812,4,1,69481,6355 -962,FR,KR,201812,4,1,961591,56497 -962,FR,KR,201812,4,1,899142,62628 -962,FR,KR,201812,0,2,3133,26 -962,FR,KR,201812,1,2,31544,935 -962,FR,KR,201812,1,2,12832,541 -962,FR,KR,201812,1,2,65834,1510 -962,FR,KR,201812,1,2,1988,60 -962,FR,KR,201812,1,2,2058002,407132 -962,FR,KR,201812,1,2,313,4 -962,FR,KR,201812,1,2,122189,7309 -962,FR,KR,201812,1,2,31593,4847 -962,FR,KR,201812,1,2,252404,38815 -962,FR,KR,201812,3,2,57377,894 -962,FR,KR,201812,3,2,525,27 -962,FR,KR,201812,3,2,1197,10 -962,FR,KR,201812,4,2,601689,6441 -962,FR,KR,201812,4,2,29652,595 -962,FR,KR,201812,4,2,2927,270 -962,FR,KR,201812,4,2,3437,76 -962,FR,KR,201812,4,2,4701,60 -962,FR,KR,201812,4,2,375,5 -962,FR,KR,201812,4,2,8314,765 -962,FR,KR,201812,4,2,24884,722 -962,FR,KR,201812,4,2,176038,2993 -962,FR,KR,201812,4,2,287110,60060 -962,FR,KR,201812,4,2,6407,37 -962,FR,KR,201812,4,2,57554,3190 -962,FR,KR,201812,4,2,12083,169 -962,FR,KR,201812,5,2,125,12 -963,FR,KR,201812,0,1,130371,3085 -963,FR,KR,201812,1,1,152532,5850 -963,FR,KR,201812,1,1,7540,276 -963,FR,KR,201812,1,1,26089,880 -963,FR,KR,201812,1,1,20115,618 -963,FR,KR,201812,1,1,88075,5107 -963,FR,KR,201812,1,1,13475,416 -963,FR,KR,201812,1,1,927674,21722 -963,FR,KR,201812,1,1,4,1 -963,FR,KR,201812,1,1,110877,3879 -963,FR,KR,201812,3,1,52641,828 -963,FR,KR,201812,3,1,102,24 -963,FR,KR,201812,3,1,75,0 -963,FR,KR,201812,3,1,85,6 -963,FR,KR,201812,3,1,246,24 -963,FR,KR,201812,3,1,20303,318 -963,FR,KR,201812,3,1,83,0 -963,FR,KR,201812,4,1,449203,1493 -963,FR,KR,201812,4,1,18245,488 -963,FR,KR,201812,4,1,125,19 -963,FR,KR,201812,4,1,9459,13 -963,FR,KR,201812,4,1,18677,223 -963,FR,KR,201812,4,1,26070,1460 -963,FR,KR,201812,4,1,525,13 -963,FR,KR,201812,4,1,1908,25 -963,FR,KR,201812,4,1,1470929,5115 -963,FR,KR,201812,0,2,25260,182 -963,FR,KR,201812,1,2,104026,2575 -963,FR,KR,201812,1,2,100192,1285 -963,FR,KR,201812,1,2,41,0 -963,FR,KR,201812,1,2,122291,4166 -963,FR,KR,201812,1,2,357244,3307 -963,FR,KR,201812,1,2,485,96 -963,FR,KR,201812,3,2,185244,1074 -963,FR,KR,201812,3,2,10563,100 -963,FR,KR,201812,3,2,29808,380 -963,FR,KR,201812,4,2,16342880,32154 -963,FR,KR,201812,4,2,164999,1334 -963,FR,KR,201812,4,2,3357,104 -963,FR,KR,201812,4,2,22265,205 -963,FR,KR,201812,4,2,1826626,9913 -963,FR,KR,201812,4,2,1708,32 -963,FR,KR,201812,4,2,54853,395 -963,FR,KR,201812,4,2,8136556,45609 -963,FR,KR,201812,4,2,13995,210 -963,FR,KR,201812,4,2,16931,35 -963,FR,KR,201812,4,2,26444,70 -963,FR,KR,201812,4,2,230419,9005 -963,FR,KR,201812,4,2,73041,326 -963,FR,KR,201812,4,2,342175,1385 -971,FR,KR,201812,0,1,12,0 -971,FR,KR,201812,1,1,9678,2302 -971,FR,KR,201812,1,1,40500,9925 -971,FR,KR,201812,1,1,71208,12013 -971,FR,KR,201812,1,1,9563,1643 -971,FR,KR,201812,1,1,39664,9129 -971,FR,KR,201812,1,1,81166,17769 -971,FR,KR,201812,1,1,37754,8577 -971,FR,KR,201812,1,1,33325,11179 -971,FR,KR,201812,1,1,294847,87591 -971,FR,KR,201812,1,1,3197,366 -971,FR,KR,201812,1,1,40,1 -971,FR,KR,201812,1,1,5128387,1245702 -971,FR,KR,201812,1,1,235773,59366 -971,FR,KR,201812,1,1,44503,10194 -971,FR,KR,201812,1,1,178,10 -971,FR,KR,201812,3,1,3733,117 -971,FR,KR,201812,3,1,125,0 -971,FR,KR,201812,4,1,28061,921 -971,FR,KR,201812,4,1,43157,145 -971,FR,KR,201812,4,1,2585,90 -971,FR,KR,201812,4,1,1299,200 -971,FR,KR,201812,4,1,24414,355 -971,FR,KR,201812,4,1,230,7 -971,FR,KR,201812,0,2,55,0 -971,FR,KR,201812,1,2,279388,3130 -971,FR,KR,201812,1,2,842,77 -971,FR,KR,201812,1,2,158850,2620 -971,FR,KR,201812,1,2,14255,145 -971,FR,KR,201812,1,2,1048853,162119 -971,FR,KR,201812,1,2,101,1 -971,FR,KR,201812,1,2,878,118 -971,FR,KR,201812,1,2,672,33 -971,FR,KR,201812,3,2,2518,97 -971,FR,KR,201812,4,2,65296,2659 -971,FR,KR,201812,4,2,22060,604 -971,FR,KR,201812,4,2,13652,1688 -971,FR,KR,201812,4,2,10324,2044 -971,FR,KR,201812,4,2,824,128 -971,FR,KR,201812,4,2,63660,19 -971,FR,KR,201812,4,2,13121,514 -971,FR,KR,201812,4,2,91,4 -971,FR,KR,201812,4,2,193297,2231 -971,FR,KR,201812,4,2,479,1 -971,FR,KR,201812,4,2,1096,2 -972,FR,KR,201812,1,1,175248,238990 -972,FR,KR,201812,1,1,98602,132959 -972,FR,KR,201812,1,1,134168,177170 -972,FR,KR,201812,3,1,126,2 -972,FR,KR,201812,3,1,1053,220 -972,FR,KR,201812,4,1,7442,241 -972,FR,KR,201812,4,1,37836,1094 -972,FR,KR,201812,4,1,5770,195 -972,FR,KR,201812,1,2,29360,4447 -972,FR,KR,201812,1,2,422996,391303 -972,FR,KR,201812,1,2,52711,22183 -972,FR,KR,201812,1,2,296500,147804 -972,FR,KR,201812,3,2,132643,47630 -972,FR,KR,201812,4,2,3975,109 -972,FR,KR,201812,4,2,144,254 -972,FR,KR,201812,4,2,234,3 -972,FR,KR,201812,4,2,1653,480 -972,FR,KR,201812,4,2,1274,135 -973,FR,KR,201812,0,1,3675,104 -973,FR,KR,201812,1,1,17821,11103 -973,FR,KR,201812,1,1,38828,8451 -973,FR,KR,201812,1,1,48,43 -973,FR,KR,201812,1,1,39,90 -973,FR,KR,201812,1,1,450,256 -973,FR,KR,201812,3,1,3606,363 -973,FR,KR,201812,3,1,7888,1453 -973,FR,KR,201812,4,1,8929,418 -973,FR,KR,201812,4,1,1218,194 -973,FR,KR,201812,4,1,3237,273 -973,FR,KR,201812,4,1,4832,107 -973,FR,KR,201812,1,2,42319,12487 -973,FR,KR,201812,1,2,1694,652 -973,FR,KR,201812,1,2,42572,8061 -973,FR,KR,201812,1,2,444675,205577 -973,FR,KR,201812,1,2,25968,20839 -973,FR,KR,201812,3,2,250,36 -973,FR,KR,201812,4,2,617040,6674 -973,FR,KR,201812,4,2,410,8 -973,FR,KR,201812,4,2,2105,530 -973,FR,KR,201812,4,2,51929,1171 -973,FR,KR,201812,4,2,10080,130 -973,FR,KR,201812,4,2,1709,60 -974,FR,KR,201812,0,1,14489,883 -974,FR,KR,201812,1,1,1261,1625 -974,FR,KR,201812,1,1,263,233 -974,FR,KR,201812,1,1,46110,7211 -974,FR,KR,201812,1,1,1,0 -974,FR,KR,201812,3,1,19995,331 -974,FR,KR,201812,4,1,33886,871 -974,FR,KR,201812,4,1,4818,309 -974,FR,KR,201812,4,1,88,50 -974,FR,KR,201812,4,1,1877,16 -974,FR,KR,201812,4,1,150,200 -974,FR,KR,201812,4,1,35597,773 -974,FR,KR,201812,0,2,1480,16 -974,FR,KR,201812,1,2,10535,303 -974,FR,KR,201812,1,2,250,90 -974,FR,KR,201812,1,2,17541,630 -974,FR,KR,201812,1,2,26702,1200 -974,FR,KR,201812,1,2,2287,123 -974,FR,KR,201812,1,2,180,6 -974,FR,KR,201812,3,2,14001,458 -974,FR,KR,201812,4,2,106242,5612 -974,FR,KR,201812,4,2,3765,90 -974,FR,KR,201812,4,2,60298,2743 -974,FR,KR,201812,4,2,377,11 -974,FR,KR,201812,4,2,24710,1270 -974,FR,KR,201812,4,2,3329,11 -974,FR,KR,201812,4,2,20093,214 -974,FR,KR,201812,5,2,4977,125 -975,FR,KR,201812,0,1,875,15 -975,FR,KR,201812,1,1,19450,2408 -975,FR,KR,201812,1,1,61723,11985 -975,FR,KR,201812,1,1,15190,2565 -975,FR,KR,201812,1,1,19002,3730 -975,FR,KR,201812,1,1,24704,2941 -975,FR,KR,201812,3,1,82,1 -975,FR,KR,201812,4,1,8602,1300 -975,FR,KR,201812,4,1,587,40 -975,FR,KR,201812,4,1,20059,14 -975,FR,KR,201812,4,1,1841,47 -975,FR,KR,201812,4,1,7960,443 -975,FR,KR,201812,1,2,9839,1267 -975,FR,KR,201812,1,2,2395,59 -975,FR,KR,201812,1,2,2004,40 -975,FR,KR,201812,1,2,92415,3484 -975,FR,KR,201812,1,2,70850,1910 -975,FR,KR,201812,1,2,176760,12672 -975,FR,KR,201812,1,2,121042,7052 -975,FR,KR,201812,1,2,13771,2892 -975,FR,KR,201812,3,2,316695,22296 -975,FR,KR,201812,4,2,48658,776 -975,FR,KR,201812,4,2,3701,91 -975,FR,KR,201812,4,2,10686,10 -975,FR,KR,201812,4,2,17235,415 -975,FR,KR,201812,4,2,2360,320 -975,FR,KR,201812,4,2,16310,92 -975,FR,KR,201812,4,2,3384,28 -976,FR,KR,201812,0,1,3085,1163 -976,FR,KR,201812,1,1,986,802 -976,FR,KR,201812,1,1,15427,8325 -976,FR,KR,201812,1,1,629,810 -976,FR,KR,201812,3,1,79,0 -976,FR,KR,201812,4,1,34,32 -976,FR,KR,201812,1,2,113,12 -976,FR,KR,201812,1,2,1012,119 -976,FR,KR,201812,1,2,1784,1702 -976,FR,KR,201812,4,2,13179,48 -976,FR,KR,201812,4,2,4128,90 -976,FR,KR,201812,4,2,64795,1021 -979,FR,KR,201812,0,1,183904,2124 -979,FR,KR,201812,1,1,212315,10380 -979,FR,KR,201812,1,1,31092,2206 -979,FR,KR,201812,1,1,24568,260 -979,FR,KR,201812,1,1,63,50 -979,FR,KR,201812,1,1,849759,33275 -979,FR,KR,201812,1,1,64541,1897 -979,FR,KR,201812,1,1,412385,22619 -979,FR,KR,201812,1,1,24223,1991 -979,FR,KR,201812,1,1,40462,4256 -979,FR,KR,201812,1,1,10338,467 -979,FR,KR,201812,1,1,734014,25473 -979,FR,KR,201812,1,1,10155,2082 -979,FR,KR,201812,1,1,572,66 -979,FR,KR,201812,1,1,36439,2178 -979,FR,KR,201812,1,1,326763,21579 -979,FR,KR,201812,1,1,1310,894 -979,FR,KR,201812,1,1,406390,17754 -979,FR,KR,201812,1,1,213742,12607 -979,FR,KR,201812,1,1,669483,34024 -979,FR,KR,201812,1,1,6546,221 -979,FR,KR,201812,3,1,2319286,12214 -979,FR,KR,201812,3,1,103762,1101 -979,FR,KR,201812,3,1,21902,244 -979,FR,KR,201812,3,1,9190,60 -979,FR,KR,201812,3,1,41772,1100 -979,FR,KR,201812,3,1,1308,6 -979,FR,KR,201812,3,1,2981,7 -979,FR,KR,201812,3,1,351,0 -979,FR,KR,201812,3,1,7678,277 -979,FR,KR,201812,4,1,580239,7676 -979,FR,KR,201812,4,1,686136,3891 -979,FR,KR,201812,4,1,35852,200 -979,FR,KR,201812,4,1,264652,3234 -979,FR,KR,201812,4,1,1368,0 -979,FR,KR,201812,4,1,68297,104 -979,FR,KR,201812,4,1,9708,15 -979,FR,KR,201812,4,1,99765,1426 -979,FR,KR,201812,4,1,1879,1 -979,FR,KR,201812,4,1,16037,283 -979,FR,KR,201812,4,1,570046,3480 -979,FR,KR,201812,4,1,2657,21 -979,FR,KR,201812,4,1,177771,884 -979,FR,KR,201812,4,1,219488,2060 -979,FR,KR,201812,4,1,226724,2703 -979,FR,KR,201812,4,1,7818,14 -979,FR,KR,201812,4,1,2461737,42582 -979,FR,KR,201812,4,1,112951,556 -979,FR,KR,201812,4,1,53909,13 -979,FR,KR,201812,4,1,56,1 -979,FR,KR,201812,4,1,1600713,70161 -979,FR,KR,201812,0,2,13404,59 -979,FR,KR,201812,1,2,147239,17219 -979,FR,KR,201812,1,2,88726,1115 -979,FR,KR,201812,1,2,12442,1110 -979,FR,KR,201812,1,2,173089,6939 -979,FR,KR,201812,1,2,4615,340 -979,FR,KR,201812,1,2,262832,4406 -979,FR,KR,201812,1,2,1686,222 -979,FR,KR,201812,1,2,1674687,68619 -979,FR,KR,201812,1,2,217375,2178 -979,FR,KR,201812,1,2,43,0 -979,FR,KR,201812,1,2,187717,10030 -979,FR,KR,201812,1,2,347517,46533 -979,FR,KR,201812,1,2,41472,3024 -979,FR,KR,201812,1,2,25038,7002 -979,FR,KR,201812,3,2,49528,706 -979,FR,KR,201812,3,2,10100,135 -979,FR,KR,201812,3,2,45832,140 -979,FR,KR,201812,4,2,5023551,17510 -979,FR,KR,201812,4,2,46816,409 -979,FR,KR,201812,4,2,2094424,18746 -979,FR,KR,201812,4,2,39808,468 -979,FR,KR,201812,4,2,22000,27 -979,FR,KR,201812,4,2,9,27 -979,FR,KR,201812,4,2,1347871,22 -979,FR,KR,201812,4,2,53420,118 -979,FR,KR,201812,4,2,12276,106 -979,FR,KR,201812,4,2,247624,802 -979,FR,KR,201812,4,2,2523,29 -979,FR,KR,201812,4,2,99360,1072 -979,FR,KR,201812,4,2,13763,58 -979,FR,KR,201812,4,2,138110,290 -979,FR,KR,201812,4,2,3634,80 -979,FR,KR,201812,4,2,188748,1362 -979,FR,KR,201812,4,2,4667583,30704 -979,FR,KR,201812,4,2,2728506,13 -979,FR,KR,201812,4,2,4890,17 -979,FR,KR,201812,4,2,237517,288 -979,FR,KR,201812,4,2,1255592,22220 -979,FR,KR,201812,4,2,140797,388 -979,FR,KR,201812,4,2,778865,1843 -979,FR,KR,201812,5,2,20,2 -994,FR,KR,201812,4,2,26646,90 -994,FR,KR,201812,4,2,1517,1 -999,FR,KR,201812,0,1,337045,0 -999,FR,KR,201812,1,1,27530,0 -999,FR,KR,201812,1,1,750,0 -999,FR,KR,201812,1,1,32070,0 -999,FR,KR,201812,1,1,1030,0 -999,FR,KR,201812,3,1,195,0 -999,FR,KR,201812,4,1,236,0 -999,FR,KR,201812,4,1,3595,0 -999,FR,KR,201812,4,1,2200,0 -999,FR,KR,201812,0,2,7505,8 -999,FR,KR,201812,1,2,228626,32283 -999,FR,KR,201812,1,2,7822,2800 -999,FR,KR,201812,1,2,11510,835 -999,FR,KR,201812,1,2,41778,3000 -999,FR,KR,201812,1,2,1718,180 -999,FR,KR,201812,1,2,5631290,1259546 -999,FR,KR,201812,1,2,157443,45050 -999,FR,KR,201812,1,2,79800,24000 -999,FR,KR,201812,1,2,770001,373155 -999,FR,KR,201812,1,2,14620,0 -999,FR,KR,201812,1,2,43200,1200 -999,FR,KR,201812,1,2,35023,165 -999,FR,KR,201812,1,2,353706,73844 -999,FR,KR,201812,1,2,58729,46750 -999,FR,KR,201812,1,2,34900,10400 -999,FR,KR,201812,1,2,193545,43640 -999,FR,KR,201812,1,2,214710,38220 -999,FR,KR,201812,3,2,65142,8628 -999,FR,KR,201812,3,2,17217,11250 -999,FR,KR,201812,4,2,4935321,47458 -999,FR,KR,201812,4,2,42252,3000 -999,FR,KR,201812,4,2,79862,257 -999,FR,KR,201812,4,2,10,2 -999,FR,KR,201812,4,2,53505,1550 -999,FR,KR,201812,4,2,95785,3070 -999,FR,KR,201812,4,2,581643,5930 -999,FR,KR,201812,4,2,1099,180 -999,FR,KR,201812,4,2,182673,1920 -999,FR,KR,201812,4,2,21944,123 -001,FR,JP,201812,4,1,317,1 -001,FR,JP,201812,4,2,3000,6 -001,FR,JP,201812,4,2,80000,500 -001,FR,JP,201812,4,2,456293,74194 -011,FR,JP,201812,1,2,86927,168091 -011,FR,JP,201812,1,2,98146,172160 -011,FR,JP,201812,4,2,15,75 -015,FR,JP,201812,1,2,1850354,327326 -015,FR,JP,201812,1,2,255201,94721 -015,FR,JP,201812,1,2,369781,59534 -015,FR,JP,201812,4,2,5,2 -015,FR,JP,201812,4,2,129,58 -016,FR,JP,201812,1,1,7369,3034 -016,FR,JP,201812,1,1,3816,1284 -016,FR,JP,201812,1,1,23948,10546 -016,FR,JP,201812,4,1,1317,222 -016,FR,JP,201812,4,1,314,41 -019,FR,JP,201812,4,1,380,11 -019,FR,JP,201812,1,2,2500,1000 -019,FR,JP,201812,1,2,39200,18000 -035,FR,JP,201812,4,1,348,90 -035,FR,JP,201812,4,2,2635,200 -039,FR,JP,201812,1,1,660,150 -039,FR,JP,201812,4,1,55,20 -039,FR,JP,201812,4,1,1477,62 -039,FR,JP,201812,4,1,6915,536 -039,FR,JP,201812,1,2,5685,450 -039,FR,JP,201812,1,2,58360,79812 -039,FR,JP,201812,1,2,49428,23378 -039,FR,JP,201812,1,2,6234,2200 -039,FR,JP,201812,1,2,1853,815 -039,FR,JP,201812,3,2,655,32 -039,FR,JP,201812,4,2,185215,297 -039,FR,JP,201812,4,2,59421,81 -039,FR,JP,201812,4,2,15982,70 -039,FR,JP,201812,4,2,354841,4805 -039,FR,JP,201812,4,2,49779,179 -041,FR,JP,201812,1,2,52145,24068 -042,FR,JP,201812,4,1,1152,15 -043,FR,JP,201812,1,1,84194,28160 -043,FR,JP,201812,4,1,40381,3200 -043,FR,JP,201812,1,2,214988,20202 -045,FR,JP,201812,4,1,194,4 -049,FR,JP,201812,0,1,787,5 -049,FR,JP,201812,1,1,17507,14205 -049,FR,JP,201812,3,1,484,0 -049,FR,JP,201812,4,1,185,4 -049,FR,JP,201812,4,1,212,14 -049,FR,JP,201812,4,1,1790,28 -049,FR,JP,201812,1,2,42997,2250 -049,FR,JP,201812,1,2,17596,810 -049,FR,JP,201812,1,2,49870,7035 -049,FR,JP,201812,4,2,1138,45 -049,FR,JP,201812,4,2,1098,20 -051,FR,JP,201812,1,2,57000,141000 -056,FR,JP,201812,0,1,2247,20 -056,FR,JP,201812,1,2,17463,590 -056,FR,JP,201812,1,2,62380,35438 -056,FR,JP,201812,1,2,66118,83133 -056,FR,JP,201812,1,2,80245,93266 -056,FR,JP,201812,4,2,301,555 -057,FR,JP,201812,0,1,997,46 -057,FR,JP,201812,1,1,2531,360 -057,FR,JP,201812,1,1,1677,35 -057,FR,JP,201812,4,2,126,2 -091,FR,JP,201812,4,1,8278,0 -091,FR,JP,201812,1,2,122120,24884 -091,FR,JP,201812,4,2,2975,1 -091,FR,JP,201812,4,2,2816,73 -092,FR,JP,201812,1,1,27099,3440 -092,FR,JP,201812,1,1,54494,16800 -092,FR,JP,201812,1,1,160776,67200 -092,FR,JP,201812,1,1,71942,33100 -092,FR,JP,201812,1,1,46841,22200 -092,FR,JP,201812,4,1,34104,10080 -092,FR,JP,201812,4,1,130,1 -092,FR,JP,201812,1,2,5303,2000 -092,FR,JP,201812,1,2,120582,43240 -092,FR,JP,201812,1,2,33460,627340 -092,FR,JP,201812,4,2,1508,200 -092,FR,JP,201812,4,2,6488,12 -099,FR,JP,201812,0,1,3399,48 -099,FR,JP,201812,1,1,5217,177 -099,FR,JP,201812,1,1,547,13 -099,FR,JP,201812,1,1,1822,26 -099,FR,JP,201812,3,1,196,3 -099,FR,JP,201812,4,1,886,2 -099,FR,JP,201812,4,1,34837,735 -099,FR,JP,201812,4,1,47344,1021 -099,FR,JP,201812,4,1,675,2 -099,FR,JP,201812,4,1,5083,247 -099,FR,JP,201812,4,1,8820,225 -099,FR,JP,201812,4,1,170920,1481 -099,FR,JP,201812,1,2,66171,4354 -099,FR,JP,201812,1,2,5444,1506 -099,FR,JP,201812,1,2,47631,11950 -099,FR,JP,201812,1,2,415287,225778 -099,FR,JP,201812,1,2,51374,14000 -099,FR,JP,201812,3,2,36800,1000 -099,FR,JP,201812,4,2,117355,4530 -099,FR,JP,201812,4,2,19005,35 -099,FR,JP,201812,4,2,17490,1249 -099,FR,JP,201812,4,2,1109,40 -099,FR,JP,201812,4,2,6923,335 -111,FR,JP,201812,1,1,668,120 -111,FR,JP,201812,1,2,4759,2000 -111,FR,JP,201812,1,2,110,44 -111,FR,JP,201812,1,2,114767,34655 -112,FR,JP,201812,1,2,1728,720 -113,FR,JP,201812,4,2,1,1 -113,FR,JP,201812,4,2,657,10 -121,FR,JP,201812,4,1,132,3 -121,FR,JP,201812,4,1,89942,16 -121,FR,JP,201812,4,1,5162,97 -121,FR,JP,201812,0,2,17479,167 -121,FR,JP,201812,1,2,5768211,308101 -121,FR,JP,201812,1,2,14289,2729 -121,FR,JP,201812,1,2,5554,880 -121,FR,JP,201812,1,2,335709,15849 -121,FR,JP,201812,1,2,6327460,434378 -121,FR,JP,201812,1,2,41305,9238 -121,FR,JP,201812,1,2,506943,16203 -121,FR,JP,201812,1,2,5582293,475945 -121,FR,JP,201812,1,2,73825,27216 -121,FR,JP,201812,1,2,67100,3237 -121,FR,JP,201812,1,2,72671,31680 -121,FR,JP,201812,1,2,44175,15430 -121,FR,JP,201812,1,2,52896,9400 -121,FR,JP,201812,1,2,51030,16639 -121,FR,JP,201812,1,2,830197,143246 -121,FR,JP,201812,1,2,92517,36173 -121,FR,JP,201812,1,2,20639156,3127374 -121,FR,JP,201812,1,2,213448,13874 -121,FR,JP,201812,1,2,138409,17226 -121,FR,JP,201812,3,2,45599,1382 -121,FR,JP,201812,3,2,2652,455 -121,FR,JP,201812,3,2,85624,31680 -121,FR,JP,201812,4,2,1020298,15175 -121,FR,JP,201812,4,2,6506,526 -121,FR,JP,201812,4,2,834,45 -121,FR,JP,201812,4,2,724,360 -121,FR,JP,201812,4,2,12778,1825 -121,FR,JP,201812,4,2,7660,470 -121,FR,JP,201812,4,2,271040,459 -121,FR,JP,201812,4,2,23803,73 -121,FR,JP,201812,4,2,19814,167 -121,FR,JP,201812,4,2,734806,11751 -121,FR,JP,201812,4,2,7904,495 -121,FR,JP,201812,4,2,4485,99 -121,FR,JP,201812,4,2,11959,600 -121,FR,JP,201812,4,2,2588,52 -121,FR,JP,201812,4,2,4975,29 -121,FR,JP,201812,5,2,6109,29 -122,FR,JP,201812,1,1,237,50 -122,FR,JP,201812,1,1,39089,11625 -122,FR,JP,201812,1,1,68719,63398 -122,FR,JP,201812,1,1,10408,16598 -122,FR,JP,201812,1,2,10693,2082 -122,FR,JP,201812,1,2,47212,27410 -122,FR,JP,201812,1,2,4171,1267 -125,FR,JP,201812,0,1,212,4 -125,FR,JP,201812,1,1,5425,1414 -125,FR,JP,201812,1,1,3952,529 -125,FR,JP,201812,1,1,1701852,103639 -125,FR,JP,201812,1,1,4190,658 -125,FR,JP,201812,1,1,1077,480 -125,FR,JP,201812,1,1,314019,34413 -125,FR,JP,201812,3,1,3661,21 -125,FR,JP,201812,4,1,47055,969 -125,FR,JP,201812,4,1,1900,13 -125,FR,JP,201812,4,1,3905,168 -125,FR,JP,201812,4,1,12359,757 -125,FR,JP,201812,0,2,4575,62 -125,FR,JP,201812,1,2,310999,7607 -125,FR,JP,201812,1,2,8897,913 -125,FR,JP,201812,1,2,3104,802 -125,FR,JP,201812,1,2,6590,2835 -125,FR,JP,201812,1,2,112503,14679 -125,FR,JP,201812,1,2,68000,2634 -125,FR,JP,201812,1,2,2123351,416169 -125,FR,JP,201812,1,2,196000,36364 -125,FR,JP,201812,1,2,67988,18451 -125,FR,JP,201812,1,2,1489800,201208 -125,FR,JP,201812,1,2,805094,76134 -125,FR,JP,201812,1,2,16053,3879 -125,FR,JP,201812,3,2,349,12 -125,FR,JP,201812,4,2,145355,1048 -125,FR,JP,201812,4,2,3002,60 -125,FR,JP,201812,4,2,174174,5195 -125,FR,JP,201812,4,2,3688,28 -125,FR,JP,201812,4,2,4561,600 -125,FR,JP,201812,4,2,22900,529 -125,FR,JP,201812,4,2,7028,930 -128,FR,JP,201812,1,1,4405,1979 -128,FR,JP,201812,1,1,35591,14023 -128,FR,JP,201812,1,1,938,578 -128,FR,JP,201812,1,1,2104,1400 -128,FR,JP,201812,1,1,19652,7679 -128,FR,JP,201812,1,1,22138,8558 -128,FR,JP,201812,4,1,418,13 -128,FR,JP,201812,4,1,4237,1418 -128,FR,JP,201812,0,2,29,22 -128,FR,JP,201812,1,2,6048,1987 -128,FR,JP,201812,1,2,527429,1106059 -128,FR,JP,201812,1,2,2999332,5299768 -128,FR,JP,201812,1,2,12914,6218 -128,FR,JP,201812,1,2,723154,1211430 -128,FR,JP,201812,1,2,10832,7326 -128,FR,JP,201812,4,2,3487,926 -131,FR,JP,201812,1,1,211,55 -132,FR,JP,201812,0,1,249,8 -132,FR,JP,201812,1,1,4774,435 -132,FR,JP,201812,4,1,61,1 -132,FR,JP,201812,0,2,606,3 -132,FR,JP,201812,1,2,5611,403 -132,FR,JP,201812,1,2,93505,5904 -132,FR,JP,201812,1,2,651160,185181 -132,FR,JP,201812,1,2,67669,8580 -132,FR,JP,201812,1,2,22271,3200 -132,FR,JP,201812,1,2,2472459,384818 -132,FR,JP,201812,3,2,53562,1839 -132,FR,JP,201812,3,2,8408,149 -132,FR,JP,201812,3,2,304582,59966 -132,FR,JP,201812,4,2,329773,12259 -132,FR,JP,201812,4,2,71119,1782 -132,FR,JP,201812,4,2,79635,1571 -132,FR,JP,201812,4,2,5237,172 -132,FR,JP,201812,4,2,3183,85 -132,FR,JP,201812,4,2,143362,2527 -132,FR,JP,201812,4,2,738541,21219 -132,FR,JP,201812,4,2,39554,2362 -133,FR,JP,201812,0,1,7322,155 -133,FR,JP,201812,1,1,390,59 -133,FR,JP,201812,1,1,21699,596 -133,FR,JP,201812,1,1,858,46 -133,FR,JP,201812,1,1,15019,538 -133,FR,JP,201812,1,1,16687,385 -133,FR,JP,201812,1,1,1035,730 -133,FR,JP,201812,1,1,68209,4830 -133,FR,JP,201812,1,1,21659,662 -133,FR,JP,201812,1,1,2146,207 -133,FR,JP,201812,3,1,2219,40 -133,FR,JP,201812,4,1,34329,992 -133,FR,JP,201812,4,1,5411,45 -133,FR,JP,201812,4,1,505,27 -133,FR,JP,201812,4,1,201,4 -133,FR,JP,201812,4,1,3686,40 -133,FR,JP,201812,4,1,36465,1580 -133,FR,JP,201812,5,1,886,12 -133,FR,JP,201812,1,2,13012,2077 -133,FR,JP,201812,1,2,15,1 -133,FR,JP,201812,1,2,7133,628 -133,FR,JP,201812,1,2,27772,1460 -133,FR,JP,201812,1,2,690573,22378 -133,FR,JP,201812,1,2,6092,975 -133,FR,JP,201812,1,2,173914,6006 -133,FR,JP,201812,3,2,1556,18 -133,FR,JP,201812,4,2,95033,1496 -133,FR,JP,201812,4,2,79,1 -133,FR,JP,201812,4,2,93794,261 -133,FR,JP,201812,4,2,2727,78 -133,FR,JP,201812,4,2,5345,200 -135,FR,JP,201812,1,2,2316318,800100 -135,FR,JP,201812,4,2,170729,1781 -135,FR,JP,201812,4,2,4,2 -136,FR,JP,201812,0,1,459,19 -136,FR,JP,201812,1,1,236,26 -136,FR,JP,201812,1,1,1179,106 -136,FR,JP,201812,1,1,1666,244 -136,FR,JP,201812,1,1,828,131 -136,FR,JP,201812,3,1,55,0 -136,FR,JP,201812,4,1,758,47 -136,FR,JP,201812,1,2,10001,1030 -136,FR,JP,201812,1,2,27212,1437 -136,FR,JP,201812,1,2,32857,2683 -136,FR,JP,201812,1,2,194356,200241 -136,FR,JP,201812,1,2,26266,976 -136,FR,JP,201812,1,2,13683,7782 -136,FR,JP,201812,1,2,28804,13324 -136,FR,JP,201812,1,2,24762,13918 -136,FR,JP,201812,3,2,22818,1503 -136,FR,JP,201812,3,2,74641,8581 -136,FR,JP,201812,4,2,15762,1080 -136,FR,JP,201812,4,2,1453,28 -136,FR,JP,201812,4,2,280,50 -136,FR,JP,201812,4,2,84610,4851 -136,FR,JP,201812,4,2,11229,276 -136,FR,JP,201812,4,2,5322,1835 -139,FR,JP,201812,0,1,663,28 -139,FR,JP,201812,1,1,30996,9820 -139,FR,JP,201812,1,1,63334,14233 -139,FR,JP,201812,1,1,4089,410 -139,FR,JP,201812,1,1,10693,1778 -139,FR,JP,201812,1,1,31497,8665 -139,FR,JP,201812,1,1,17845,4232 -139,FR,JP,201812,1,1,533229,166722 -139,FR,JP,201812,1,1,53552,33791 -139,FR,JP,201812,1,1,34940,17254 -139,FR,JP,201812,1,1,12386,3268 -139,FR,JP,201812,3,1,372,0 -139,FR,JP,201812,4,1,15791,934 -139,FR,JP,201812,4,1,242,0 -139,FR,JP,201812,4,1,20997,1000 -139,FR,JP,201812,4,1,77,21 -139,FR,JP,201812,4,1,7526,766 -139,FR,JP,201812,1,2,19892,1904 -139,FR,JP,201812,1,2,210,30 -139,FR,JP,201812,1,2,9145,7683 -139,FR,JP,201812,1,2,17598,2700 -139,FR,JP,201812,1,2,72305,5659 -139,FR,JP,201812,1,2,455,60 -139,FR,JP,201812,1,2,112933,61622 -139,FR,JP,201812,1,2,28410,8998 -139,FR,JP,201812,1,2,42257,18060 -139,FR,JP,201812,1,2,150586,28654 -139,FR,JP,201812,1,2,12705,4000 -139,FR,JP,201812,1,2,65798,17325 -139,FR,JP,201812,1,2,329096,83762 -139,FR,JP,201812,1,2,33508,24000 -139,FR,JP,201812,1,2,20966,7097 -139,FR,JP,201812,1,2,35969,3226 -139,FR,JP,201812,1,2,483580,151906 -139,FR,JP,201812,1,2,72597,48000 -139,FR,JP,201812,3,2,2616,225 -139,FR,JP,201812,3,2,65785,7680 -139,FR,JP,201812,4,2,85019,1817 -139,FR,JP,201812,4,2,461,1 -139,FR,JP,201812,4,2,3423,63 -139,FR,JP,201812,4,2,277,12 -139,FR,JP,201812,4,2,43415,3523 -139,FR,JP,201812,4,2,2290,306 -141,FR,JP,201812,4,1,37811,364 -141,FR,JP,201812,4,1,14986,185 -141,FR,JP,201812,1,2,272808,8138 -141,FR,JP,201812,1,2,325467,22155 -141,FR,JP,201812,1,2,125382,30916 -141,FR,JP,201812,1,2,658696,167560 -141,FR,JP,201812,1,2,91862,23220 -141,FR,JP,201812,1,2,477075,119949 -141,FR,JP,201812,1,2,4350379,1186886 -141,FR,JP,201812,1,2,188511,47776 -141,FR,JP,201812,1,2,187431,48062 -141,FR,JP,201812,4,2,48914,2779 -141,FR,JP,201812,4,2,6701,355 -141,FR,JP,201812,4,2,432445,27517 -142,FR,JP,201812,0,1,131972,9406 -142,FR,JP,201812,4,1,6889,356 -142,FR,JP,201812,1,2,510466,8836 -142,FR,JP,201812,1,2,13932,6480 -142,FR,JP,201812,4,2,31079,466 -142,FR,JP,201812,4,2,548,127 -142,FR,JP,201812,4,2,97619,6045 -142,FR,JP,201812,4,2,329,10 -142,FR,JP,201812,4,2,2292,15 -144,FR,JP,201812,1,2,91135,9535 -144,FR,JP,201812,1,2,3170,468 -144,FR,JP,201812,1,2,411993,63075 -144,FR,JP,201812,1,2,222864,19283 -144,FR,JP,201812,1,2,974710,206884 -144,FR,JP,201812,1,2,215403,174800 -144,FR,JP,201812,1,2,63057,50000 -144,FR,JP,201812,1,2,3743608,847142 -144,FR,JP,201812,1,2,253742,61568 -144,FR,JP,201812,1,2,290413,193875 -144,FR,JP,201812,3,2,297,32 -144,FR,JP,201812,4,2,113935,13049 -144,FR,JP,201812,4,2,69208,10003 -144,FR,JP,201812,4,2,19142,1360 -144,FR,JP,201812,4,2,31393,2360 -144,FR,JP,201812,4,2,1192484,101756 -144,FR,JP,201812,4,2,595,37 -144,FR,JP,201812,4,2,146133,17904 -145,FR,JP,201812,1,1,553,20 -145,FR,JP,201812,1,2,11369,7800 -145,FR,JP,201812,1,2,59933,49170 -147,FR,JP,201812,1,2,3823,480 -147,FR,JP,201812,1,2,19517,2070 -147,FR,JP,201812,1,2,165529,23600 -147,FR,JP,201812,1,2,21223,1333 -147,FR,JP,201812,1,2,204963,48300 -147,FR,JP,201812,4,2,56172,1413 -147,FR,JP,201812,4,2,1676,42 -147,FR,JP,201812,4,2,63444,4031 -148,FR,JP,201812,0,1,104,1 -148,FR,JP,201812,1,2,4100,300 -148,FR,JP,201812,1,2,2135,119 -148,FR,JP,201812,1,2,7644,1200 -148,FR,JP,201812,1,2,21029,1094 -148,FR,JP,201812,4,2,79000,220 -148,FR,JP,201812,4,2,1194,24 -148,FR,JP,201812,4,2,267239,1063 -148,FR,JP,201812,4,2,13584,20 -161,FR,JP,201812,1,1,2096,855 -161,FR,JP,201812,1,1,421,60 -161,FR,JP,201812,1,1,266,200 -161,FR,JP,201812,1,2,3030,3000 -161,FR,JP,201812,1,2,27681,12347 -161,FR,JP,201812,1,2,16372,22075 -162,FR,JP,201812,4,1,120,6 -162,FR,JP,201812,1,2,1535804,3512527 -162,FR,JP,201812,1,2,25932,49780 -162,FR,JP,201812,4,2,20,2 -162,FR,JP,201812,4,2,2,400 -163,FR,JP,201812,0,1,161,4 -163,FR,JP,201812,1,1,5990,1233 -163,FR,JP,201812,1,1,4158,744 -163,FR,JP,201812,1,1,7906,659 -163,FR,JP,201812,1,1,3416,1099 -163,FR,JP,201812,1,1,2543,548 -163,FR,JP,201812,1,1,44940,8613 -163,FR,JP,201812,4,1,3765,221 -163,FR,JP,201812,4,1,2494,108 -163,FR,JP,201812,0,2,231,0 -163,FR,JP,201812,1,2,10920,1603 -163,FR,JP,201812,1,2,7235,1152 -163,FR,JP,201812,1,2,10922,966 -163,FR,JP,201812,1,2,79711,14090 -163,FR,JP,201812,1,2,91707,28630 -163,FR,JP,201812,1,2,53570,14112 -163,FR,JP,201812,1,2,170154,51082 -163,FR,JP,201812,1,2,3798845,987824 -163,FR,JP,201812,1,2,53766,6480 -163,FR,JP,201812,1,2,31707,10558 -163,FR,JP,201812,3,2,3092,148 -163,FR,JP,201812,3,2,1236,108 -163,FR,JP,201812,3,2,15583,2348 -163,FR,JP,201812,4,2,35697,4334 -163,FR,JP,201812,4,2,12953,282 -163,FR,JP,201812,4,2,14193,600 -163,FR,JP,201812,4,2,213308,9109 -164,FR,JP,201812,1,1,5786,622 -164,FR,JP,201812,1,1,45126,2956 -164,FR,JP,201812,1,1,187,31 -164,FR,JP,201812,1,1,23241,2913 -164,FR,JP,201812,4,1,2792,118 -164,FR,JP,201812,4,1,54,0 -164,FR,JP,201812,4,1,1745,132 -164,FR,JP,201812,1,2,10598,1535 -164,FR,JP,201812,1,2,90923,13051 -164,FR,JP,201812,1,2,5208,2150 -164,FR,JP,201812,1,2,653299,134801 -164,FR,JP,201812,1,2,70534,16200 -164,FR,JP,201812,1,2,12321,6219 -164,FR,JP,201812,1,2,1714982,359155 -164,FR,JP,201812,1,2,53150,11289 -164,FR,JP,201812,1,2,349608,80867 -164,FR,JP,201812,1,2,138998,34514 -164,FR,JP,201812,3,2,6508,243 -164,FR,JP,201812,4,2,11113,1148 -164,FR,JP,201812,4,2,4712,2 -164,FR,JP,201812,4,2,1087,20 -164,FR,JP,201812,4,2,1317,240 -164,FR,JP,201812,4,2,15304,300 -164,FR,JP,201812,4,2,15475,2314 -164,FR,JP,201812,4,2,4618,380 -164,FR,JP,201812,4,2,4268,410 -165,FR,JP,201812,1,1,466,62 -165,FR,JP,201812,1,1,220,20 -165,FR,JP,201812,1,2,65300,12960 -166,FR,JP,201812,1,1,7839,1008 -166,FR,JP,201812,1,1,1578,187 -166,FR,JP,201812,1,1,1875,195 -166,FR,JP,201812,1,1,468,75 -166,FR,JP,201812,1,1,5719,1537 -166,FR,JP,201812,1,1,6707,640 -166,FR,JP,201812,1,1,714,124 -166,FR,JP,201812,4,1,269,4 -166,FR,JP,201812,4,1,1082,142 -166,FR,JP,201812,0,2,2200,23 -166,FR,JP,201812,1,2,51163,7728 -166,FR,JP,201812,1,2,33837,21100 -166,FR,JP,201812,1,2,2101,1841 -166,FR,JP,201812,1,2,15856,19792 -166,FR,JP,201812,1,2,33837,21100 -166,FR,JP,201812,1,2,59828,13241 -166,FR,JP,201812,4,2,12719,200 -166,FR,JP,201812,4,2,480,2 -166,FR,JP,201812,4,2,7576,71 -171,FR,JP,201812,1,2,62196,175980 -179,FR,JP,201812,1,1,79,40 -179,FR,JP,201812,1,1,47250,7500 -179,FR,JP,201812,1,2,26000,7000 -179,FR,JP,201812,1,2,18500,3940 -179,FR,JP,201812,1,2,4663933,3031656 -179,FR,JP,201812,1,2,19587,24650 -179,FR,JP,201812,1,2,23909,101740 -179,FR,JP,201812,1,2,173070,59631 -179,FR,JP,201812,3,2,10324,6930 -179,FR,JP,201812,4,2,124137,7255 -179,FR,JP,201812,4,2,104011,27419 -179,FR,JP,201812,4,2,93863,63332 -179,FR,JP,201812,4,2,82754,68075 -181,FR,JP,201812,4,1,8968,300 -181,FR,JP,201812,4,1,78,6 -182,FR,JP,201812,1,1,909,60 -182,FR,JP,201812,1,1,571,20 -182,FR,JP,201812,1,1,44666,2275 -182,FR,JP,201812,1,1,4700,509 -182,FR,JP,201812,1,1,1527,41 -182,FR,JP,201812,1,1,5607,804 -182,FR,JP,201812,1,1,714,24 -182,FR,JP,201812,3,1,336,23 -182,FR,JP,201812,4,1,1498,242 -182,FR,JP,201812,1,2,1919,56 -182,FR,JP,201812,1,2,1775,240 -182,FR,JP,201812,1,2,39163,4702 -182,FR,JP,201812,1,2,130637,18893 -182,FR,JP,201812,1,2,546,18 -182,FR,JP,201812,1,2,22180,20900 -182,FR,JP,201812,1,2,803210,774824 -182,FR,JP,201812,1,2,29716,4954 -182,FR,JP,201812,3,2,33412,7000 -182,FR,JP,201812,4,2,11288,898 -182,FR,JP,201812,4,2,6270,200 -182,FR,JP,201812,4,2,280,60 -182,FR,JP,201812,4,2,23150,1376 -182,FR,JP,201812,4,2,32820,1621 -182,FR,JP,201812,4,2,1975,300 -321,FR,JP,201812,3,1,105,1 -321,FR,JP,201812,1,2,46265,16848 -321,FR,JP,201812,4,2,840,75 -323,FR,JP,201812,1,1,5617,1180 -323,FR,JP,201812,1,2,29349,17420 -323,FR,JP,201812,1,2,66083,23850 -325,FR,JP,201812,1,2,7055,1294 -325,FR,JP,201812,1,2,728,160 -330,FR,JP,201812,1,2,12733,6627 -341,FR,JP,201812,0,1,443,0 -341,FR,JP,201812,1,1,3168,75 -341,FR,JP,201812,1,1,30026,5258 -341,FR,JP,201812,1,1,154035,38408 -341,FR,JP,201812,3,1,1914,125 -341,FR,JP,201812,4,1,783,354 -341,FR,JP,201812,4,1,212,14 -341,FR,JP,201812,4,1,1335,45 -341,FR,JP,201812,4,1,1454,77 -341,FR,JP,201812,1,2,13904,630 -341,FR,JP,201812,1,2,6180,1534 -341,FR,JP,201812,1,2,807627,592296 -341,FR,JP,201812,1,2,4749,2836 -341,FR,JP,201812,1,2,38257,9067 -341,FR,JP,201812,1,2,67321,17693 -341,FR,JP,201812,1,2,23908,4627 -341,FR,JP,201812,1,2,141861,35385 -341,FR,JP,201812,1,2,20995,9000 -341,FR,JP,201812,3,2,28298,10925 -341,FR,JP,201812,4,2,11729,113 -341,FR,JP,201812,4,2,8805,50 -349,FR,JP,201812,1,1,18424927,4900000 -349,FR,JP,201812,4,2,66,0 -410,FR,JP,201812,1,1,29835,17880 -451,FR,JP,201812,1,2,77425,102580 -451,FR,JP,201812,1,2,105754,25641 -451,FR,JP,201812,1,2,257577,26890 -452,FR,JP,201812,1,2,1061804,495253 -459,FR,JP,201812,1,1,130004,10000 -459,FR,JP,201812,4,1,541,70 -459,FR,JP,201812,3,2,26700,94 -512,FR,JP,201812,4,1,1146,100 -512,FR,JP,201812,4,2,15168,580 -513,FR,JP,201812,1,2,684971,412380 -513,FR,JP,201812,1,2,311856,184840 -532,FR,JP,201812,1,1,36723,8084 -532,FR,JP,201812,4,1,97837,7435 -532,FR,JP,201812,4,1,25721,1494 -532,FR,JP,201812,4,1,10090,441 -532,FR,JP,201812,4,1,41694,2822 -532,FR,JP,201812,1,2,358494,31447 -532,FR,JP,201812,1,2,59757,22512 -532,FR,JP,201812,4,2,341317,8702 -532,FR,JP,201812,4,2,91250,1607 -533,FR,JP,201812,1,1,54165,2033 -533,FR,JP,201812,1,1,145100,63177 -533,FR,JP,201812,3,1,652,100 -533,FR,JP,201812,4,1,31141,1024 -533,FR,JP,201812,4,1,38441,1638 -533,FR,JP,201812,4,1,34591,1215 -533,FR,JP,201812,1,2,178228,10400 -533,FR,JP,201812,1,2,59337,4172 -533,FR,JP,201812,1,2,66453,17067 -533,FR,JP,201812,4,2,100864,12699 -533,FR,JP,201812,4,2,131,82 -535,FR,JP,201812,1,2,128622,10437 -536,FR,JP,201812,1,1,15855,1500 -536,FR,JP,201812,4,1,10328,518 -536,FR,JP,201812,4,2,1527,90 -537,FR,JP,201812,1,1,2974,2918 -542,FR,JP,201812,1,1,6769,1023 -542,FR,JP,201812,4,1,209,4 -542,FR,JP,201812,1,2,65045,3946 -542,FR,JP,201812,1,2,38575,8711 -542,FR,JP,201812,1,2,49141,37179 -542,FR,JP,201812,1,2,34164,21000 -542,FR,JP,201812,3,2,16046,18490 -543,FR,JP,201812,1,2,39717,10325 -543,FR,JP,201812,1,2,17259,1405 -543,FR,JP,201812,4,2,18299,884 -551,FR,JP,201812,1,1,32135,1094 -551,FR,JP,201812,1,1,8686,411 -551,FR,JP,201812,1,1,58,4 -551,FR,JP,201812,1,1,2172,104 -551,FR,JP,201812,1,1,15333,1035 -551,FR,JP,201812,1,1,2307,123 -551,FR,JP,201812,1,1,29,1 -551,FR,JP,201812,1,1,3015,135 -551,FR,JP,201812,1,1,5319,282 -551,FR,JP,201812,1,1,4584,387 -551,FR,JP,201812,1,1,9,0 -551,FR,JP,201812,3,1,52,3 -551,FR,JP,201812,4,1,1034,317 -551,FR,JP,201812,4,1,4642,27 -551,FR,JP,201812,4,1,13,1 -551,FR,JP,201812,4,1,3962,25 -551,FR,JP,201812,4,1,13689,976 -551,FR,JP,201812,1,2,32923,20059 -551,FR,JP,201812,1,2,256492,110386 -551,FR,JP,201812,1,2,17993,9240 -551,FR,JP,201812,1,2,295,5 -551,FR,JP,201812,3,2,30,0 -551,FR,JP,201812,4,2,13310,552 -551,FR,JP,201812,4,2,562,1 -551,FR,JP,201812,4,2,1191,30 -552,FR,JP,201812,0,1,8772,1 -552,FR,JP,201812,1,1,85473,43883 -552,FR,JP,201812,1,1,3238,497 -552,FR,JP,201812,1,1,754,1 -552,FR,JP,201812,4,1,4957,155 -552,FR,JP,201812,4,1,161,2 -552,FR,JP,201812,1,2,84000,23670 -552,FR,JP,201812,1,2,425,0 -552,FR,JP,201812,1,2,85,7 -552,FR,JP,201812,1,2,1844,0 -552,FR,JP,201812,4,2,120,4 -552,FR,JP,201812,4,2,1203,0 -561,FR,JP,201812,4,2,15,0 -562,FR,JP,201812,4,1,303,3 -562,FR,JP,201812,4,2,43455,761 -565,FR,JP,201812,0,1,180241,3624 -565,FR,JP,201812,1,1,438628,20201 -565,FR,JP,201812,1,1,13024,606 -565,FR,JP,201812,3,1,33993,99 -565,FR,JP,201812,3,1,40491,1449 -565,FR,JP,201812,4,1,272242,91 -565,FR,JP,201812,4,1,43740,507 -565,FR,JP,201812,4,1,7343,13 -565,FR,JP,201812,4,1,279232,155 -565,FR,JP,201812,1,2,31463,2000 -565,FR,JP,201812,1,2,16865,521 -565,FR,JP,201812,3,2,5,2 -565,FR,JP,201812,3,2,305389,20000 -565,FR,JP,201812,3,2,357327,21000 -565,FR,JP,201812,4,2,23391,300 -565,FR,JP,201812,4,2,243600,601 -565,FR,JP,201812,4,2,5290,8 -565,FR,JP,201812,4,2,73543,15 -568,FR,JP,201812,0,1,684,11 -568,FR,JP,201812,1,1,35113,1982 -568,FR,JP,201812,1,1,125528,7388 -568,FR,JP,201812,1,1,239228,35103 -568,FR,JP,201812,1,1,112382,12354 -568,FR,JP,201812,1,1,317,7 -568,FR,JP,201812,1,1,37979,1788 -568,FR,JP,201812,1,1,581696,40179 -568,FR,JP,201812,3,1,139,1 -568,FR,JP,201812,4,1,33047,559 -568,FR,JP,201812,4,1,13096,30 -568,FR,JP,201812,4,1,2210,27 -568,FR,JP,201812,4,1,17320,89 -568,FR,JP,201812,4,1,40376,984 -568,FR,JP,201812,1,2,28784,2496 -568,FR,JP,201812,1,2,1957,27 -568,FR,JP,201812,1,2,382466,35646 -568,FR,JP,201812,1,2,39605,3161 -568,FR,JP,201812,1,2,140323,18398 -568,FR,JP,201812,1,2,623390,104599 -568,FR,JP,201812,1,2,287319,28322 -568,FR,JP,201812,3,2,174147,18371 -568,FR,JP,201812,4,2,71056,331 -568,FR,JP,201812,4,2,31350,1825 -568,FR,JP,201812,4,2,9254,70 -568,FR,JP,201812,4,2,21172,2269 -568,FR,JP,201812,4,2,11908,420 -568,FR,JP,201812,4,2,5481,564 -568,FR,JP,201812,4,2,2819,40 -612,FR,JP,201812,1,2,500,3990 -612,FR,JP,201812,1,2,4410,21000 -612,FR,JP,201812,1,2,9930,64500 -614,FR,JP,201812,4,1,10,2 -614,FR,JP,201812,4,1,1772,91 -614,FR,JP,201812,1,2,33753,294000 -614,FR,JP,201812,1,2,12942,126000 -621,FR,JP,201812,1,1,94,40 -621,FR,JP,201812,4,1,911,2 -621,FR,JP,201812,1,2,17824,3339 -621,FR,JP,201812,1,2,5942,1038 -621,FR,JP,201812,1,2,7043,5883 -621,FR,JP,201812,1,2,150,10 -621,FR,JP,201812,1,2,56709,26242 -621,FR,JP,201812,4,2,45,5 -621,FR,JP,201812,4,2,390,20 -623,FR,JP,201812,1,2,15900,6712 -632,FR,JP,201812,1,2,14132,105600 -632,FR,JP,201812,1,2,33744,210600 -639,FR,JP,201812,1,1,18612,1740 -639,FR,JP,201812,1,1,17086,8220 -639,FR,JP,201812,1,1,8247,1000 -639,FR,JP,201812,1,1,79018,17600 -639,FR,JP,201812,1,1,24586,8000 -639,FR,JP,201812,3,1,574,41 -639,FR,JP,201812,4,1,0,1 -639,FR,JP,201812,4,1,128,40 -639,FR,JP,201812,1,2,9253,3000 -639,FR,JP,201812,1,2,112763,77812 -639,FR,JP,201812,4,2,2294,200 -691,FR,JP,201812,1,1,15349,367 -691,FR,JP,201812,1,1,157046,340 -691,FR,JP,201812,1,1,90,4 -691,FR,JP,201812,1,1,69965,9540 -691,FR,JP,201812,1,1,443232,19457 -691,FR,JP,201812,1,1,375839,9668 -691,FR,JP,201812,1,1,7,0 -691,FR,JP,201812,1,1,394,8 -691,FR,JP,201812,3,1,6469,64 -691,FR,JP,201812,4,1,32691,170 -691,FR,JP,201812,4,1,36128,206 -691,FR,JP,201812,4,1,2177,11 -691,FR,JP,201812,4,1,244800,270 -691,FR,JP,201812,4,1,37068,159 -691,FR,JP,201812,1,2,702,12 -691,FR,JP,201812,1,2,81,0 -691,FR,JP,201812,1,2,3705,3371 -691,FR,JP,201812,1,2,240315,20861 -691,FR,JP,201812,1,2,9,0 -691,FR,JP,201812,1,2,49479,228000 -691,FR,JP,201812,1,2,1110,197 -691,FR,JP,201812,1,2,46288,259000 -691,FR,JP,201812,1,2,25855,17689 -691,FR,JP,201812,1,2,12938,84000 -691,FR,JP,201812,3,2,45,3 -691,FR,JP,201812,4,2,882232,13082 -691,FR,JP,201812,4,2,1291,120 -691,FR,JP,201812,4,2,10704,2 -691,FR,JP,201812,4,2,10686,27 -692,FR,JP,201812,1,1,17694,4710 -692,FR,JP,201812,1,1,55081,76000 -692,FR,JP,201812,4,1,124,2 -692,FR,JP,201812,1,2,155241,10823 -692,FR,JP,201812,1,2,507,303 -692,FR,JP,201812,1,2,19069,17000 -692,FR,JP,201812,1,2,24168,92164 -692,FR,JP,201812,3,2,20525,34003 -692,FR,JP,201812,4,2,14863,690 -692,FR,JP,201812,4,2,11761,190 -692,FR,JP,201812,4,2,2024,30 -719,FR,JP,201812,1,2,13682,22150 -723,FR,JP,201812,1,1,34552,20000 -724,FR,JP,201812,1,2,119,111 -724,FR,JP,201812,4,2,2,5 -729,FR,JP,201812,4,1,126,0 -813,FR,JP,201812,3,2,10830,40000 -819,FR,JP,201812,0,1,774134,30246 -819,FR,JP,201812,1,1,213689,18210 -819,FR,JP,201812,1,1,14244,2780 -819,FR,JP,201812,1,1,3265,16 -819,FR,JP,201812,1,1,141864,2760 -819,FR,JP,201812,1,1,239204,2962 -819,FR,JP,201812,1,1,105394,8000 -819,FR,JP,201812,1,1,3607,150 -819,FR,JP,201812,1,1,174883,1560 -819,FR,JP,201812,1,1,566079,41262 -819,FR,JP,201812,1,1,497000,7000 -819,FR,JP,201812,1,1,112127,4577 -819,FR,JP,201812,1,1,325920,130400 -819,FR,JP,201812,1,1,268896,9600 -819,FR,JP,201812,1,1,509202,276820 -819,FR,JP,201812,1,1,341827,106410 -819,FR,JP,201812,1,1,42698,63600 -819,FR,JP,201812,1,1,132035,18898 -819,FR,JP,201812,1,1,602778,48320 -819,FR,JP,201812,1,1,83342,20030 -819,FR,JP,201812,3,1,425183,29644 -819,FR,JP,201812,3,1,12013,825 -819,FR,JP,201812,3,1,25551,2080 -819,FR,JP,201812,3,1,16863,5 -819,FR,JP,201812,3,1,19221,2040 -819,FR,JP,201812,3,1,2948,51 -819,FR,JP,201812,3,1,20747,1000 -819,FR,JP,201812,3,1,162166,19700 -819,FR,JP,201812,4,1,2586677,8991 -819,FR,JP,201812,4,1,20196,61 -819,FR,JP,201812,4,1,4900,125 -819,FR,JP,201812,4,1,14791,440 -819,FR,JP,201812,4,1,115659,4252 -819,FR,JP,201812,4,1,28939,3080 -819,FR,JP,201812,4,1,1133695,413 -819,FR,JP,201812,4,1,19835,2080 -819,FR,JP,201812,4,1,71148,101 -819,FR,JP,201812,4,1,24150,1 -819,FR,JP,201812,4,1,466,4 -819,FR,JP,201812,4,1,1092772,3947 -819,FR,JP,201812,1,2,462745,19404 -819,FR,JP,201812,1,2,12660,1040 -819,FR,JP,201812,1,2,17625,5750 -819,FR,JP,201812,1,2,114350,600 -819,FR,JP,201812,1,2,15750,50 -819,FR,JP,201812,1,2,3752912,967825 -819,FR,JP,201812,1,2,131611,61275 -819,FR,JP,201812,1,2,50477,21020 -819,FR,JP,201812,1,2,179012,79250 -819,FR,JP,201812,1,2,322429,196574 -819,FR,JP,201812,1,2,80149,35480 -819,FR,JP,201812,1,2,29640,16000 -819,FR,JP,201812,1,2,60689,32212 -819,FR,JP,201812,1,2,131024,57295 -819,FR,JP,201812,1,2,213476,139200 -819,FR,JP,201812,3,2,24772,350 -819,FR,JP,201812,3,2,13750,7500 -819,FR,JP,201812,3,2,125483,52000 -819,FR,JP,201812,4,2,4370030,1945 -819,FR,JP,201812,4,2,2193,39 -819,FR,JP,201812,4,2,131230,200 -819,FR,JP,201812,4,2,5146,24 -819,FR,JP,201812,4,2,1560,45 -819,FR,JP,201812,4,2,398912,250 -819,FR,JP,201812,4,2,156,1 -819,FR,JP,201812,4,2,3920,80 -819,FR,JP,201812,4,2,504782,338 -819,FR,JP,201812,4,2,5,1 -819,FR,JP,201812,4,2,8684,1 -819,FR,JP,201812,4,2,442792,2197 -819,FR,JP,201812,4,2,6654,930 -819,FR,JP,201812,4,2,60858,347 -820,FR,JP,201812,1,1,25042,500 -820,FR,JP,201812,1,1,29814,14000 -820,FR,JP,201812,4,1,4750,600 -820,FR,JP,201812,1,2,239882,81677 -820,FR,JP,201812,1,2,584671,1110000 -820,FR,JP,201812,4,2,2892,1500 -841,FR,JP,201812,3,2,102497,75925 -841,FR,JP,201812,3,2,171566,127086 -842,FR,JP,201812,4,1,536,21 -891,FR,JP,201812,0,1,596917,140522 -891,FR,JP,201812,1,1,542,2 -891,FR,JP,201812,1,1,12525,240 -891,FR,JP,201812,1,1,71,0 -891,FR,JP,201812,1,1,2897,328 -891,FR,JP,201812,1,1,15539,740 -891,FR,JP,201812,1,1,9514,831 -891,FR,JP,201812,1,1,374,20 -891,FR,JP,201812,1,1,73296,2886 -891,FR,JP,201812,1,1,5301,2850 -891,FR,JP,201812,1,1,483575,56681 -891,FR,JP,201812,1,1,3985,100 -891,FR,JP,201812,1,1,480272,325588 -891,FR,JP,201812,1,1,100578,23204 -891,FR,JP,201812,1,1,603903,171972 -891,FR,JP,201812,1,1,1630,149 -891,FR,JP,201812,1,1,26400,16000 -891,FR,JP,201812,1,1,3355,27 -891,FR,JP,201812,1,1,726159,119954 -891,FR,JP,201812,1,1,3876,287 -891,FR,JP,201812,1,1,141190,71876 -891,FR,JP,201812,1,1,1352406,215464 -891,FR,JP,201812,3,1,21271,667 -891,FR,JP,201812,3,1,30996,9600 -891,FR,JP,201812,3,1,2314,239 -891,FR,JP,201812,3,1,129,8 -891,FR,JP,201812,3,1,80781,5463 -891,FR,JP,201812,4,1,341715,9210 -891,FR,JP,201812,4,1,8169,131 -891,FR,JP,201812,4,1,283,11 -891,FR,JP,201812,4,1,10719,37 -891,FR,JP,201812,4,1,2615,8 -891,FR,JP,201812,4,1,4167,35 -891,FR,JP,201812,4,1,47393,1578 -891,FR,JP,201812,4,1,14205,2292 -891,FR,JP,201812,4,1,101845,813 -891,FR,JP,201812,4,1,30874,1402 -891,FR,JP,201812,4,1,3627,120 -891,FR,JP,201812,4,1,1575135,5830 -891,FR,JP,201812,1,2,101379,22071 -891,FR,JP,201812,1,2,180,0 -891,FR,JP,201812,1,2,11406,1146 -891,FR,JP,201812,1,2,15723,2016 -891,FR,JP,201812,1,2,15598,1554 -891,FR,JP,201812,1,2,1894869,761933 -891,FR,JP,201812,1,2,84645,27121 -891,FR,JP,201812,1,2,127704,19419 -891,FR,JP,201812,1,2,152362,49054 -891,FR,JP,201812,1,2,302915,135425 -891,FR,JP,201812,1,2,53080,10846 -891,FR,JP,201812,1,2,3721618,530474 -891,FR,JP,201812,1,2,287042,32975 -891,FR,JP,201812,1,2,273745,90450 -891,FR,JP,201812,3,2,351,13 -891,FR,JP,201812,4,2,1162968,111438 -891,FR,JP,201812,4,2,99,1 -891,FR,JP,201812,4,2,11249,7 -891,FR,JP,201812,4,2,250,25 -891,FR,JP,201812,4,2,1500,40 -891,FR,JP,201812,4,2,1149,87 -891,FR,JP,201812,4,2,23,0 -891,FR,JP,201812,4,2,238122,11231 -891,FR,JP,201812,4,2,7833,833 -891,FR,JP,201812,4,2,2730,29 -891,FR,JP,201812,4,2,34019,50 -891,FR,JP,201812,4,2,4666,16 -891,FR,JP,201812,4,2,4670,36 -892,FR,JP,201812,0,1,321,11 -892,FR,JP,201812,1,1,6636,145 -892,FR,JP,201812,1,1,64839,2675 -892,FR,JP,201812,1,1,253627,4171 -892,FR,JP,201812,1,1,8831,220 -892,FR,JP,201812,1,1,14853,1550 -892,FR,JP,201812,1,1,9416,240 -892,FR,JP,201812,3,1,62350,1254 -892,FR,JP,201812,3,1,26228,471 -892,FR,JP,201812,3,1,17021,340 -892,FR,JP,201812,4,1,238804,1032 -892,FR,JP,201812,4,1,124548,50 -892,FR,JP,201812,4,1,114077,2424 -892,FR,JP,201812,4,1,17483,71 -892,FR,JP,201812,4,1,181086,2547 -892,FR,JP,201812,1,2,12208,2000 -892,FR,JP,201812,1,2,6310,2268 -892,FR,JP,201812,1,2,20278,633 -892,FR,JP,201812,1,2,45080,3500 -892,FR,JP,201812,1,2,20734,1652 -892,FR,JP,201812,1,2,116810,35500 -892,FR,JP,201812,1,2,27872,10811 -892,FR,JP,201812,1,2,140,18 -892,FR,JP,201812,1,2,16416,5760 -892,FR,JP,201812,1,2,16138,26543 -892,FR,JP,201812,3,2,58921,18000 -892,FR,JP,201812,4,2,282134,6844 -892,FR,JP,201812,4,2,75575,470 -892,FR,JP,201812,4,2,12968,1051 -892,FR,JP,201812,4,2,37168,655 -892,FR,JP,201812,4,2,76062,563 -892,FR,JP,201812,4,2,13123,377 -893,FR,JP,201812,0,1,8550,134 -893,FR,JP,201812,1,1,98154,3051 -893,FR,JP,201812,1,1,8312,1140 -893,FR,JP,201812,1,1,639287,4656 -893,FR,JP,201812,1,1,1370,198 -893,FR,JP,201812,1,1,358522,21339 -893,FR,JP,201812,1,1,14469,6414 -893,FR,JP,201812,1,1,68382,200 -893,FR,JP,201812,1,1,5082,138 -893,FR,JP,201812,1,1,16528,1935 -893,FR,JP,201812,1,1,3406778,96239 -893,FR,JP,201812,1,1,2329,20 -893,FR,JP,201812,1,1,184611,12454 -893,FR,JP,201812,3,1,1202865,399 -893,FR,JP,201812,3,1,41,0 -893,FR,JP,201812,3,1,3278,9 -893,FR,JP,201812,3,1,224,2 -893,FR,JP,201812,4,1,1130136,22727 -893,FR,JP,201812,4,1,14630,123 -893,FR,JP,201812,4,1,78,1 -893,FR,JP,201812,4,1,4374,130 -893,FR,JP,201812,4,1,264,0 -893,FR,JP,201812,4,1,23497,71 -893,FR,JP,201812,4,1,33129,800 -893,FR,JP,201812,4,1,25478,703 -893,FR,JP,201812,4,1,982,5 -893,FR,JP,201812,4,1,7351,98 -893,FR,JP,201812,4,1,47994,2822 -893,FR,JP,201812,4,1,605886,10683 -893,FR,JP,201812,0,2,579,24 -893,FR,JP,201812,1,2,2122097,46092 -893,FR,JP,201812,1,2,82689,1859 -893,FR,JP,201812,1,2,10036,990 -893,FR,JP,201812,1,2,161517,21110 -893,FR,JP,201812,1,2,12136,3900 -893,FR,JP,201812,1,2,145545,10324 -893,FR,JP,201812,1,2,50612,4118 -893,FR,JP,201812,1,2,29160,7204 -893,FR,JP,201812,1,2,2913761,239023 -893,FR,JP,201812,1,2,549550,16327 -893,FR,JP,201812,1,2,1504824,22581 -893,FR,JP,201812,1,2,24479,114 -893,FR,JP,201812,1,2,26368043,361209 -893,FR,JP,201812,1,2,115910,11942 -893,FR,JP,201812,1,2,173749,10650 -893,FR,JP,201812,1,2,165536,30918 -893,FR,JP,201812,1,2,148712,4000 -893,FR,JP,201812,3,2,47470,1896 -893,FR,JP,201812,3,2,37287,10069 -893,FR,JP,201812,3,2,70264,17223 -893,FR,JP,201812,4,2,13221361,102856 -893,FR,JP,201812,4,2,21264009,50462 -893,FR,JP,201812,4,2,243112,227 -893,FR,JP,201812,4,2,138794,822 -893,FR,JP,201812,4,2,733646,5322 -893,FR,JP,201812,4,2,16545,169 -893,FR,JP,201812,4,2,820616,2194 -893,FR,JP,201812,4,2,6130245,12122 -893,FR,JP,201812,4,2,77286,1861 -893,FR,JP,201812,4,2,1558,45 -893,FR,JP,201812,4,2,99218,2492 -893,FR,JP,201812,4,2,321369,2170 -893,FR,JP,201812,4,2,3769407,56570 -893,FR,JP,201812,4,2,7,7 -893,FR,JP,201812,4,2,74817,1990 -893,FR,JP,201812,4,2,1782,31 -893,FR,JP,201812,4,2,70448,7960 -893,FR,JP,201812,4,2,3376,78 -893,FR,JP,201812,4,2,1176869,3938 -893,FR,JP,201812,5,2,5613,53 -894,FR,JP,201812,1,2,75837,780 -894,FR,JP,201812,4,2,55289,530 -895,FR,JP,201812,1,1,232,50 -895,FR,JP,201812,1,1,1016,100 -895,FR,JP,201812,1,1,463,131 -895,FR,JP,201812,4,1,184,4 -895,FR,JP,201812,1,2,32960,20000 -895,FR,JP,201812,1,2,25882,33200 -895,FR,JP,201812,1,2,134360,170750 -896,FR,JP,201812,0,1,677980,24758 -896,FR,JP,201812,1,1,171785,11625 -896,FR,JP,201812,1,1,23918,1725 -896,FR,JP,201812,1,1,4107,600 -896,FR,JP,201812,1,1,39955,3829 -896,FR,JP,201812,1,1,4756,832 -896,FR,JP,201812,1,1,74855,8322 -896,FR,JP,201812,1,1,916820,97786 -896,FR,JP,201812,1,1,5903,285 -896,FR,JP,201812,1,1,11531,1537 -896,FR,JP,201812,1,1,262988,26186 -896,FR,JP,201812,1,1,554104,45033 -896,FR,JP,201812,1,1,73545,9788 -896,FR,JP,201812,1,1,8279628,208700 -896,FR,JP,201812,3,1,72401,4140 -896,FR,JP,201812,3,1,2376,110 -896,FR,JP,201812,3,1,2789,300 -896,FR,JP,201812,3,1,313,2 -896,FR,JP,201812,3,1,698500,14000 -896,FR,JP,201812,3,1,8339,84 -896,FR,JP,201812,3,1,29175,2300 -896,FR,JP,201812,4,1,11008401,61871 -896,FR,JP,201812,4,1,109619,1649 -896,FR,JP,201812,4,1,183979,350 -896,FR,JP,201812,4,1,144,9 -896,FR,JP,201812,4,1,269,20 -896,FR,JP,201812,4,1,28828,100 -896,FR,JP,201812,4,1,404499,1891 -896,FR,JP,201812,4,1,1960,60 -896,FR,JP,201812,4,1,790554,2818 -896,FR,JP,201812,4,1,54416,776 -896,FR,JP,201812,4,1,5032,56 -896,FR,JP,201812,4,1,1854,30 -896,FR,JP,201812,4,1,15834,65 -896,FR,JP,201812,4,1,1588959,5331 -896,FR,JP,201812,4,1,1947,15 -896,FR,JP,201812,4,1,26034,210 -896,FR,JP,201812,1,2,1171093,26440 -896,FR,JP,201812,1,2,8086,515 -896,FR,JP,201812,1,2,124589,4634 -896,FR,JP,201812,1,2,103374,71720 -896,FR,JP,201812,1,2,6960481,965815 -896,FR,JP,201812,1,2,63726,77810 -896,FR,JP,201812,1,2,86000,15200 -896,FR,JP,201812,1,2,4058,719 -896,FR,JP,201812,1,2,54417,8700 -896,FR,JP,201812,1,2,238634,170555 -896,FR,JP,201812,1,2,131342,26116 -896,FR,JP,201812,1,2,26581,80000 -896,FR,JP,201812,1,2,1761880,296131 -896,FR,JP,201812,1,2,1338,168 -896,FR,JP,201812,1,2,459139,251044 -896,FR,JP,201812,1,2,1069354,195280 -896,FR,JP,201812,3,2,119987,20070 -896,FR,JP,201812,3,2,11140,3827 -896,FR,JP,201812,4,2,3878663,44127 -896,FR,JP,201812,4,2,2039,300 -896,FR,JP,201812,4,2,141877,711 -896,FR,JP,201812,4,2,2328,8 -896,FR,JP,201812,4,2,56652,9000 -896,FR,JP,201812,4,2,18698,2770 -896,FR,JP,201812,4,2,2210,65 -896,FR,JP,201812,4,2,92286,563 -896,FR,JP,201812,4,2,360669,3098 -896,FR,JP,201812,4,2,6590,13 -896,FR,JP,201812,4,2,10441,950 -896,FR,JP,201812,4,2,17280,700 -896,FR,JP,201812,4,2,870,280 -896,FR,JP,201812,4,2,701,517 -896,FR,JP,201812,4,2,409683,13698 -896,FR,JP,201812,4,2,33,25 -896,FR,JP,201812,4,2,1584,6 -896,FR,JP,201812,4,2,43425,7170 -896,FR,JP,201812,4,2,8537,35 -896,FR,JP,201812,4,2,72522,362 -910,FR,JP,201812,0,1,34523712,1868490 -910,FR,JP,201812,1,1,869283,19266 -910,FR,JP,201812,1,1,22480,5600 -910,FR,JP,201812,1,1,38580,1469 -910,FR,JP,201812,1,1,292,17 -910,FR,JP,201812,1,1,343817,1110 -910,FR,JP,201812,1,1,389189,17091 -910,FR,JP,201812,1,1,825,240 -910,FR,JP,201812,1,1,1277957,38099 -910,FR,JP,201812,1,1,382972,34507 -910,FR,JP,201812,1,1,3709004,503929 -910,FR,JP,201812,1,1,369497,4957 -910,FR,JP,201812,1,1,136370,16821 -910,FR,JP,201812,1,1,18635,1209 -910,FR,JP,201812,1,1,10417,25000 -910,FR,JP,201812,1,1,1052325,132428 -910,FR,JP,201812,1,1,207981,2031 -910,FR,JP,201812,1,1,29665,2129 -910,FR,JP,201812,1,1,90057,5841 -910,FR,JP,201812,1,1,15094467,1071339 -910,FR,JP,201812,1,1,172857,15662 -910,FR,JP,201812,3,1,629334,22874 -910,FR,JP,201812,3,1,89,8 -910,FR,JP,201812,3,1,44229648,2836264 -910,FR,JP,201812,3,1,2971,1614 -910,FR,JP,201812,4,1,1575134,38398 -910,FR,JP,201812,4,1,104523,3527 -910,FR,JP,201812,4,1,19528,398 -910,FR,JP,201812,4,1,116,2 -910,FR,JP,201812,4,1,613,4 -910,FR,JP,201812,4,1,6004,264 -910,FR,JP,201812,4,1,102881,19 -910,FR,JP,201812,4,1,86813,1584 -910,FR,JP,201812,4,1,86681,4450 -910,FR,JP,201812,4,1,17334,352 -910,FR,JP,201812,4,1,2620,23 -910,FR,JP,201812,4,1,10617,368 -910,FR,JP,201812,4,1,3503,55 -910,FR,JP,201812,4,1,47405,101 -910,FR,JP,201812,4,1,2027792,19865 -910,FR,JP,201812,4,1,850,5 -910,FR,JP,201812,4,1,1139,48 -910,FR,JP,201812,9,1,1000,1615 -910,FR,JP,201812,0,2,1819,33 -910,FR,JP,201812,1,2,1199247,116602 -910,FR,JP,201812,1,2,99643,6012 -910,FR,JP,201812,1,2,108146,4440 -910,FR,JP,201812,1,2,143015,4830 -910,FR,JP,201812,1,2,312678,10885 -910,FR,JP,201812,1,2,576410,6848 -910,FR,JP,201812,1,2,19876,821 -910,FR,JP,201812,1,2,29547,729 -910,FR,JP,201812,1,2,1220943,105585 -910,FR,JP,201812,1,2,373535,18762 -910,FR,JP,201812,1,2,1696851,88434 -910,FR,JP,201812,1,2,24064,1800 -910,FR,JP,201812,1,2,309489,12356 -910,FR,JP,201812,1,2,21125,1300 -910,FR,JP,201812,2,2,143,245 -910,FR,JP,201812,3,2,6909064,708129 -910,FR,JP,201812,3,2,180000,23604 -910,FR,JP,201812,3,2,140000,16760 -910,FR,JP,201812,3,2,170000,22184 -910,FR,JP,201812,3,2,450803,57489 -910,FR,JP,201812,3,2,3077526,394323 -910,FR,JP,201812,3,2,130046,15260 -910,FR,JP,201812,3,2,463163,55180 -910,FR,JP,201812,3,2,167802,19620 -910,FR,JP,201812,3,2,83601,9810 -910,FR,JP,201812,3,2,10000,3 -910,FR,JP,201812,3,2,14260,266 -910,FR,JP,201812,4,2,3096019,24049 -910,FR,JP,201812,4,2,136535,1485 -910,FR,JP,201812,4,2,360,0 -910,FR,JP,201812,4,2,8721495,2361 -910,FR,JP,201812,4,2,36151,204 -910,FR,JP,201812,4,2,2531,165 -910,FR,JP,201812,4,2,4637,10 -910,FR,JP,201812,4,2,16861,635 -910,FR,JP,201812,4,2,100,90 -910,FR,JP,201812,4,2,123251,508 -910,FR,JP,201812,4,2,1947867,36233 -910,FR,JP,201812,4,2,1524,85 -910,FR,JP,201812,4,2,95632,315 -910,FR,JP,201812,4,2,28388,108 -910,FR,JP,201812,4,2,360970,16380 -910,FR,JP,201812,4,2,119518,136 -910,FR,JP,201812,4,2,399230,985 -910,FR,JP,201812,5,2,1500,6 -910,FR,JP,201812,8,2,24100,1972 -910,FR,JP,201812,9,2,49793732,40700 -920,FR,JP,201812,1,1,33362,13300 -920,FR,JP,201812,1,1,2152,75 -920,FR,JP,201812,1,1,73981,7200 -920,FR,JP,201812,1,1,113780,8900 -920,FR,JP,201812,1,1,571,30 -920,FR,JP,201812,1,1,6996855,763033 -920,FR,JP,201812,1,1,92216,4483 -920,FR,JP,201812,1,1,310879,21285 -920,FR,JP,201812,1,1,54219,17890 -920,FR,JP,201812,1,1,43206,3074 -920,FR,JP,201812,1,1,596346,59275 -920,FR,JP,201812,3,1,6897,200 -920,FR,JP,201812,4,1,63467,264 -920,FR,JP,201812,4,1,1153,18 -920,FR,JP,201812,4,1,1070,30 -920,FR,JP,201812,4,1,3703,185 -920,FR,JP,201812,4,1,2,3 -920,FR,JP,201812,4,1,9126,251 -920,FR,JP,201812,4,1,2152,46 -920,FR,JP,201812,1,2,3748292,302562 -920,FR,JP,201812,1,2,129158,13280 -920,FR,JP,201812,1,2,354859,37778 -920,FR,JP,201812,1,2,294255,32942 -920,FR,JP,201812,1,2,2608052,273740 -920,FR,JP,201812,1,2,75206,5978 -920,FR,JP,201812,1,2,1004366,138215 -920,FR,JP,201812,1,2,918364,73685 -920,FR,JP,201812,1,2,225518,31202 -920,FR,JP,201812,1,2,68677,9050 -920,FR,JP,201812,1,2,1898483,225366 -920,FR,JP,201812,3,2,153,0 -920,FR,JP,201812,3,2,1273325,113480 -920,FR,JP,201812,4,2,9372,540 -920,FR,JP,201812,4,2,753,88 -920,FR,JP,201812,4,2,1276,154 -920,FR,JP,201812,4,2,498,14 -920,FR,JP,201812,4,2,7356,698 -920,FR,JP,201812,4,2,7607,465 -920,FR,JP,201812,4,2,330,5 -920,FR,JP,201812,4,2,129053,2391 -920,FR,JP,201812,4,2,13906,2370 -931,FR,JP,201812,0,1,1139359,51912 -931,FR,JP,201812,1,1,298252,4079 -931,FR,JP,201812,1,1,298118,29133 -931,FR,JP,201812,1,1,1351,3 -931,FR,JP,201812,1,1,234,34 -931,FR,JP,201812,1,1,2007880,274927 -931,FR,JP,201812,1,1,72844,502 -931,FR,JP,201812,1,1,80909,2085 -931,FR,JP,201812,1,1,331,13 -931,FR,JP,201812,1,1,1378,3 -931,FR,JP,201812,1,1,518031,18485 -931,FR,JP,201812,1,1,31424,3675 -931,FR,JP,201812,1,1,5534,22 -931,FR,JP,201812,1,1,681535,9675 -931,FR,JP,201812,1,1,20250,620 -931,FR,JP,201812,1,1,839384,75557 -931,FR,JP,201812,1,1,39915,1742 -931,FR,JP,201812,1,1,2094,192 -931,FR,JP,201812,1,1,886625,17615 -931,FR,JP,201812,1,1,40955,1691 -931,FR,JP,201812,1,1,10770,357 -931,FR,JP,201812,1,1,32051,1774 -931,FR,JP,201812,1,1,912,3 -931,FR,JP,201812,1,1,3365554,346721 -931,FR,JP,201812,1,1,114066,5976 -931,FR,JP,201812,1,1,279862,9346 -931,FR,JP,201812,1,1,5088,366 -931,FR,JP,201812,1,1,3004,157 -931,FR,JP,201812,1,1,14735251,502961 -931,FR,JP,201812,1,1,1291,32 -931,FR,JP,201812,1,1,16380,85 -931,FR,JP,201812,3,1,3516240,29776 -931,FR,JP,201812,3,1,963210,11759 -931,FR,JP,201812,3,1,74780,449 -931,FR,JP,201812,3,1,26098,419 -931,FR,JP,201812,3,1,216641,466 -931,FR,JP,201812,3,1,2497,2 -931,FR,JP,201812,3,1,55,0 -931,FR,JP,201812,3,1,404888,25591 -931,FR,JP,201812,4,1,5065958,22906 -931,FR,JP,201812,4,1,6703,90 -931,FR,JP,201812,4,1,1703041,1755 -931,FR,JP,201812,4,1,18029,13 -931,FR,JP,201812,4,1,435,8 -931,FR,JP,201812,4,1,31368,289 -931,FR,JP,201812,4,1,92270,415 -931,FR,JP,201812,4,1,8178,12 -931,FR,JP,201812,4,1,162,4 -931,FR,JP,201812,4,1,9415,178 -931,FR,JP,201812,4,1,76108,97 -931,FR,JP,201812,4,1,2891310,26232 -931,FR,JP,201812,4,1,13809,79 -931,FR,JP,201812,4,1,11822010,12299 -931,FR,JP,201812,4,1,17,1 -931,FR,JP,201812,4,1,214,0 -931,FR,JP,201812,4,1,3791,52 -931,FR,JP,201812,4,1,14,3 -931,FR,JP,201812,4,1,167,4 -931,FR,JP,201812,4,1,499274,735 -931,FR,JP,201812,4,1,79135,231 -931,FR,JP,201812,4,1,520598,1629 -931,FR,JP,201812,4,1,63548,775 -931,FR,JP,201812,4,1,586639,766 -931,FR,JP,201812,4,1,7300722,24153 -931,FR,JP,201812,4,1,14,8 -931,FR,JP,201812,4,1,798,0 -931,FR,JP,201812,4,1,2945,1 -931,FR,JP,201812,0,2,4279,38 -931,FR,JP,201812,1,2,266142,8898 -931,FR,JP,201812,1,2,28269,931 -931,FR,JP,201812,1,2,11198,186 -931,FR,JP,201812,1,2,1588,98 -931,FR,JP,201812,1,2,69938,5044 -931,FR,JP,201812,1,2,50,8 -931,FR,JP,201812,1,2,47280,300 -931,FR,JP,201812,1,2,485051,8165 -931,FR,JP,201812,1,2,93646,3611 -931,FR,JP,201812,1,2,24522,550 -931,FR,JP,201812,1,2,191453,1714 -931,FR,JP,201812,1,2,3493785,109463 -931,FR,JP,201812,1,2,4717,34 -931,FR,JP,201812,1,2,822183,20728 -931,FR,JP,201812,1,2,28500,5362 -931,FR,JP,201812,1,2,40842,20181 -931,FR,JP,201812,1,2,140018,5793 -931,FR,JP,201812,3,2,3529325,296375 -931,FR,JP,201812,3,2,2493,5 -931,FR,JP,201812,3,2,10,1 -931,FR,JP,201812,4,2,22467818,71743 -931,FR,JP,201812,4,2,1238538,10177 -931,FR,JP,201812,4,2,5890,28 -931,FR,JP,201812,4,2,4028,50 -931,FR,JP,201812,4,2,310,7 -931,FR,JP,201812,4,2,32850,598 -931,FR,JP,201812,4,2,31178,223 -931,FR,JP,201812,4,2,60295,223 -931,FR,JP,201812,4,2,30269,96 -931,FR,JP,201812,4,2,20877,434 -931,FR,JP,201812,4,2,244156,540 -931,FR,JP,201812,4,2,115230,92 -931,FR,JP,201812,4,2,2788,90 -931,FR,JP,201812,4,2,38304,250 -931,FR,JP,201812,4,2,15544,393 -931,FR,JP,201812,4,2,19,0 -931,FR,JP,201812,4,2,600,20 -931,FR,JP,201812,4,2,1100744,5782 -931,FR,JP,201812,4,2,5278345,30220 -931,FR,JP,201812,4,2,93326,36 -931,FR,JP,201812,4,2,371540,5080 -931,FR,JP,201812,4,2,85157,959 -931,FR,JP,201812,4,2,224365,187 -931,FR,JP,201812,4,2,4448270,48577 -931,FR,JP,201812,4,2,322134,721 -931,FR,JP,201812,4,2,3733945,2946 -939,FR,JP,201812,0,1,10071685,604265 -939,FR,JP,201812,1,1,456943,11910 -939,FR,JP,201812,1,1,208743,18381 -939,FR,JP,201812,1,1,77,5 -939,FR,JP,201812,1,1,30420,1142 -939,FR,JP,201812,1,1,3507,67 -939,FR,JP,201812,1,1,757,120 -939,FR,JP,201812,1,1,264425,39404 -939,FR,JP,201812,1,1,358,19 -939,FR,JP,201812,1,1,2489451,203022 -939,FR,JP,201812,1,1,468333,4042 -939,FR,JP,201812,1,1,906631,20331 -939,FR,JP,201812,1,1,84205,3368 -939,FR,JP,201812,1,1,989799,155605 -939,FR,JP,201812,1,1,10126352,1442116 -939,FR,JP,201812,1,1,1812179,168209 -939,FR,JP,201812,1,1,106236,6708 -939,FR,JP,201812,1,1,1968279,194382 -939,FR,JP,201812,1,1,114945,9411 -939,FR,JP,201812,1,1,1446657,195691 -939,FR,JP,201812,1,1,1584344,170094 -939,FR,JP,201812,1,1,110619,4062 -939,FR,JP,201812,1,1,111,6 -939,FR,JP,201812,1,1,7055344,504234 -939,FR,JP,201812,1,1,3850652,340231 -939,FR,JP,201812,1,1,203250,8274 -939,FR,JP,201812,1,1,86989,5830 -939,FR,JP,201812,1,1,29040767,2408079 -939,FR,JP,201812,1,1,1132233,70772 -939,FR,JP,201812,1,1,26938,1800 -939,FR,JP,201812,2,1,490820,10839 -939,FR,JP,201812,3,1,1814594,48709 -939,FR,JP,201812,3,1,1210989,93428 -939,FR,JP,201812,3,1,365224,17157 -939,FR,JP,201812,3,1,196861,9654 -939,FR,JP,201812,3,1,3181,416 -939,FR,JP,201812,3,1,114589,7328 -939,FR,JP,201812,3,1,19294,689 -939,FR,JP,201812,3,1,63,6 -939,FR,JP,201812,3,1,216755,73 -939,FR,JP,201812,3,1,1020,81 -939,FR,JP,201812,3,1,11210,10 -939,FR,JP,201812,3,1,94888,4022 -939,FR,JP,201812,3,1,68734,6650 -939,FR,JP,201812,4,1,8393986,91452 -939,FR,JP,201812,4,1,7629,89 -939,FR,JP,201812,4,1,2984710,29867 -939,FR,JP,201812,4,1,4971,55 -939,FR,JP,201812,4,1,20830,124 -939,FR,JP,201812,4,1,264358,4775 -939,FR,JP,201812,4,1,9241,11 -939,FR,JP,201812,4,1,2668,35 -939,FR,JP,201812,4,1,63348,941 -939,FR,JP,201812,4,1,281906,5011 -939,FR,JP,201812,4,1,52039,281 -939,FR,JP,201812,4,1,7067,865 -939,FR,JP,201812,4,1,2147,1108 -939,FR,JP,201812,4,1,2589801,7423 -939,FR,JP,201812,4,1,76859,1162 -939,FR,JP,201812,4,1,143312,2154 -939,FR,JP,201812,4,1,513548,14883 -939,FR,JP,201812,4,1,95189,1026 -939,FR,JP,201812,4,1,139619,3996 -939,FR,JP,201812,4,1,455282,7153 -939,FR,JP,201812,4,1,54713,1267 -939,FR,JP,201812,4,1,9561014,85813 -939,FR,JP,201812,4,1,83714,1824 -939,FR,JP,201812,4,1,473,3 -939,FR,JP,201812,4,1,3382,142 -939,FR,JP,201812,0,2,8755,33 -939,FR,JP,201812,1,2,13632706,524396 -939,FR,JP,201812,1,2,79479,6972 -939,FR,JP,201812,1,2,238715,3967 -939,FR,JP,201812,1,2,14741,572 -939,FR,JP,201812,1,2,31686,507 -939,FR,JP,201812,1,2,326018,9503 -939,FR,JP,201812,1,2,87080,2588 -939,FR,JP,201812,1,2,50071,1670 -939,FR,JP,201812,1,2,590302,92125 -939,FR,JP,201812,1,2,15402553,898388 -939,FR,JP,201812,1,2,443198,28702 -939,FR,JP,201812,1,2,141156,8335 -939,FR,JP,201812,1,2,189200,2584 -939,FR,JP,201812,1,2,1723,23 -939,FR,JP,201812,1,2,904905,54442 -939,FR,JP,201812,1,2,243508,19855 -939,FR,JP,201812,1,2,77791,1974 -939,FR,JP,201812,1,2,42375,7317 -939,FR,JP,201812,1,2,12518,675 -939,FR,JP,201812,3,2,1604607,80337 -939,FR,JP,201812,3,2,8800,10 -939,FR,JP,201812,3,2,278463,26822 -939,FR,JP,201812,3,2,6275,39 -939,FR,JP,201812,3,2,19382,2694 -939,FR,JP,201812,4,2,13907196,135474 -939,FR,JP,201812,4,2,944,82 -939,FR,JP,201812,4,2,708123,18654 -939,FR,JP,201812,4,2,12370,300 -939,FR,JP,201812,4,2,1309,7 -939,FR,JP,201812,4,2,730253,18300 -939,FR,JP,201812,4,2,3212,86 -939,FR,JP,201812,4,2,51144,304 -939,FR,JP,201812,4,2,26743,350 -939,FR,JP,201812,4,2,8071,606 -939,FR,JP,201812,4,2,34634,1615 -939,FR,JP,201812,4,2,4263,562 -939,FR,JP,201812,4,2,4793,350 -939,FR,JP,201812,4,2,427466,3129 -939,FR,JP,201812,4,2,448565,3574 -939,FR,JP,201812,4,2,5414379,59932 -939,FR,JP,201812,4,2,288318,896 -939,FR,JP,201812,4,2,7279,61 -939,FR,JP,201812,4,2,21174,54 -939,FR,JP,201812,4,2,2354644,71400 -939,FR,JP,201812,4,2,96781,735 -939,FR,JP,201812,4,2,474009,1721 -941,FR,JP,201812,0,1,11,0 -941,FR,JP,201812,3,1,162,1 -941,FR,JP,201812,4,1,8629,0 -941,FR,JP,201812,1,2,5935,138 -941,FR,JP,201812,3,2,14637,3637 -941,FR,JP,201812,4,2,4357,410 -949,FR,JP,201812,0,1,199633,16239 -949,FR,JP,201812,1,1,120423,6762 -949,FR,JP,201812,1,1,84445,12566 -949,FR,JP,201812,1,1,57222,2299 -949,FR,JP,201812,1,1,21400,1660 -949,FR,JP,201812,1,1,296672,56986 -949,FR,JP,201812,1,1,6298,475 -949,FR,JP,201812,1,1,21424,1160 -949,FR,JP,201812,1,1,471,15 -949,FR,JP,201812,1,1,263891,27352 -949,FR,JP,201812,1,1,31905,604 -949,FR,JP,201812,1,1,40274,2625 -949,FR,JP,201812,1,1,38832,3377 -949,FR,JP,201812,1,1,125765,41765 -949,FR,JP,201812,1,1,13869,2531 -949,FR,JP,201812,1,1,6092,73 -949,FR,JP,201812,1,1,292757,13213 -949,FR,JP,201812,1,1,20855,1933 -949,FR,JP,201812,1,1,549156,61734 -949,FR,JP,201812,1,1,57086,13365 -949,FR,JP,201812,1,1,34498,5613 -949,FR,JP,201812,1,1,70697,5037 -949,FR,JP,201812,1,1,3589,122 -949,FR,JP,201812,1,1,793057,123787 -949,FR,JP,201812,1,1,310,16 -949,FR,JP,201812,1,1,140304,11458 -949,FR,JP,201812,3,1,296283,2998 -949,FR,JP,201812,3,1,11459,50 -949,FR,JP,201812,3,1,9400,690 -949,FR,JP,201812,3,1,3401,235 -949,FR,JP,201812,3,1,18776,452 -949,FR,JP,201812,3,1,473,11 -949,FR,JP,201812,3,1,39641,17 -949,FR,JP,201812,4,1,233663,4293 -949,FR,JP,201812,4,1,317098,1007 -949,FR,JP,201812,4,1,325,2 -949,FR,JP,201812,4,1,3095,23 -949,FR,JP,201812,4,1,584,51 -949,FR,JP,201812,4,1,13630,85 -949,FR,JP,201812,4,1,372997,1177 -949,FR,JP,201812,4,1,8783,5 -949,FR,JP,201812,4,1,144893,875 -949,FR,JP,201812,4,1,1599,11 -949,FR,JP,201812,4,1,7746,250 -949,FR,JP,201812,4,1,698,28 -949,FR,JP,201812,4,1,179,4 -949,FR,JP,201812,4,1,131,1 -949,FR,JP,201812,4,1,519441,4844 -949,FR,JP,201812,4,1,51,1 -949,FR,JP,201812,4,1,572,69 -949,FR,JP,201812,0,2,5741,33 -949,FR,JP,201812,1,2,47514,2283 -949,FR,JP,201812,1,2,398,3 -949,FR,JP,201812,1,2,14721,1461 -949,FR,JP,201812,1,2,1315,226 -949,FR,JP,201812,1,2,1471,70 -949,FR,JP,201812,1,2,30403,1558 -949,FR,JP,201812,1,2,21149,385 -949,FR,JP,201812,1,2,83460,2985 -949,FR,JP,201812,1,2,200,4 -949,FR,JP,201812,1,2,4535955,402567 -949,FR,JP,201812,1,2,1355,0 -949,FR,JP,201812,1,2,1290,182 -949,FR,JP,201812,1,2,648987,78875 -949,FR,JP,201812,1,2,4740,199 -949,FR,JP,201812,1,2,61835,15193 -949,FR,JP,201812,3,2,42989,2297 -949,FR,JP,201812,3,2,33278,81 -949,FR,JP,201812,4,2,271799,3964 -949,FR,JP,201812,4,2,57664,2710 -949,FR,JP,201812,4,2,3729,115 -949,FR,JP,201812,4,2,18117,494 -949,FR,JP,201812,4,2,5112,3 -949,FR,JP,201812,4,2,16363,200 -949,FR,JP,201812,4,2,371,0 -949,FR,JP,201812,4,2,16790,409 -949,FR,JP,201812,4,2,154127,3694 -949,FR,JP,201812,4,2,11049,496 -949,FR,JP,201812,4,2,45,1 -949,FR,JP,201812,4,2,3192,2 -949,FR,JP,201812,4,2,286096,12350 -949,FR,JP,201812,4,2,30927,80 -949,FR,JP,201812,4,2,133398,503 -949,FR,JP,201812,5,2,1000,5 -949,FR,JP,201812,8,2,1702480,698288 -951,FR,JP,201812,0,1,34179,2264 -951,FR,JP,201812,1,1,53285,2925 -951,FR,JP,201812,1,1,41321,1552 -951,FR,JP,201812,1,1,912,29 -951,FR,JP,201812,1,1,447,20 -951,FR,JP,201812,1,1,78554,9585 -951,FR,JP,201812,1,1,167,17 -951,FR,JP,201812,1,1,1203,110 -951,FR,JP,201812,1,1,295,29 -951,FR,JP,201812,1,1,633,46 -951,FR,JP,201812,1,1,129856,17763 -951,FR,JP,201812,1,1,361,33 -951,FR,JP,201812,1,1,626,45 -951,FR,JP,201812,1,1,13186,570 -951,FR,JP,201812,3,1,9528,306 -951,FR,JP,201812,4,1,17692,184 -951,FR,JP,201812,4,1,18435,79 -951,FR,JP,201812,4,1,9836,581 -951,FR,JP,201812,1,2,6528,248 -951,FR,JP,201812,1,2,770,14 -951,FR,JP,201812,1,2,335,34 -951,FR,JP,201812,1,2,3138,408 -951,FR,JP,201812,1,2,691,41 -951,FR,JP,201812,1,2,145,24 -951,FR,JP,201812,1,2,9722,156 -951,FR,JP,201812,3,2,78501,3873 -951,FR,JP,201812,4,2,8139,332 -951,FR,JP,201812,4,2,78,7 -951,FR,JP,201812,4,2,2568,65 -952,FR,JP,201812,0,1,22026,302 -952,FR,JP,201812,1,1,900,3 -952,FR,JP,201812,1,1,13255,1382 -952,FR,JP,201812,1,1,65770,12327 -952,FR,JP,201812,1,1,4954,165 -952,FR,JP,201812,1,1,65541,2168 -952,FR,JP,201812,1,1,936,20 -952,FR,JP,201812,1,1,2268,106 -952,FR,JP,201812,1,1,2715,67 -952,FR,JP,201812,1,1,18210,766 -952,FR,JP,201812,1,1,563,37 -952,FR,JP,201812,1,1,47,3 -952,FR,JP,201812,3,1,39261,317 -952,FR,JP,201812,3,1,712,39 -952,FR,JP,201812,3,1,40203,2611 -952,FR,JP,201812,4,1,99671,403 -952,FR,JP,201812,4,1,53177,118 -952,FR,JP,201812,4,1,4849,0 -952,FR,JP,201812,4,1,15678,720 -952,FR,JP,201812,4,1,558,1 -952,FR,JP,201812,4,1,3493,180 -952,FR,JP,201812,4,1,19050,139 -952,FR,JP,201812,4,1,117922,1158 -952,FR,JP,201812,4,1,865,3 -952,FR,JP,201812,4,1,5182,380 -952,FR,JP,201812,4,1,322183,2758 -952,FR,JP,201812,0,2,120,5 -952,FR,JP,201812,1,2,33265,1016 -952,FR,JP,201812,1,2,30718,51043 -952,FR,JP,201812,1,2,9090,865 -952,FR,JP,201812,1,2,34699,3732 -952,FR,JP,201812,1,2,248459,26035 -952,FR,JP,201812,1,2,7472,794 -952,FR,JP,201812,1,2,220492,98840 -952,FR,JP,201812,1,2,12552,8198 -952,FR,JP,201812,1,2,2011,306 -952,FR,JP,201812,1,2,320036,66913 -952,FR,JP,201812,1,2,1953,85 -952,FR,JP,201812,1,2,40842,3548 -952,FR,JP,201812,3,2,8223,177 -952,FR,JP,201812,3,2,1933176,862988 -952,FR,JP,201812,4,2,743282,12862 -952,FR,JP,201812,4,2,1436,188 -952,FR,JP,201812,4,2,120,95 -952,FR,JP,201812,4,2,56531,0 -952,FR,JP,201812,4,2,7415,666 -952,FR,JP,201812,4,2,5270,70 -952,FR,JP,201812,4,2,6932,1906 -952,FR,JP,201812,4,2,2619,36 -952,FR,JP,201812,4,2,129,14 -952,FR,JP,201812,4,2,347568,3229 -952,FR,JP,201812,4,2,1262,0 -952,FR,JP,201812,4,2,5360,22 -952,FR,JP,201812,4,2,68293,2920 -952,FR,JP,201812,4,2,13592,30 -952,FR,JP,201812,4,2,26837,166 -952,FR,JP,201812,5,2,87,0 -961,FR,JP,201812,0,1,2126,29 -961,FR,JP,201812,3,1,260,3 -961,FR,JP,201812,4,1,55,5 -961,FR,JP,201812,4,1,11469,58 -961,FR,JP,201812,1,2,31924,898 -961,FR,JP,201812,4,2,439386,1414 -961,FR,JP,201812,4,2,5698,1 -961,FR,JP,201812,4,2,14,0 -961,FR,JP,201812,4,2,93381,427 -961,FR,JP,201812,4,2,14183,226 -961,FR,JP,201812,4,2,18085,7 -961,FR,JP,201812,4,2,48538,200 -961,FR,JP,201812,4,2,272191,358 -961,FR,JP,201812,4,2,3660,84 -961,FR,JP,201812,4,2,77766,3830 -961,FR,JP,201812,4,2,34853,164 -961,FR,JP,201812,5,2,30183,7 -962,FR,JP,201812,0,1,22341,266 -962,FR,JP,201812,1,1,78025,14960 -962,FR,JP,201812,1,1,6310,289 -962,FR,JP,201812,1,1,281,8 -962,FR,JP,201812,1,1,671190,71949 -962,FR,JP,201812,1,1,23592,3396 -962,FR,JP,201812,1,1,59025,1947 -962,FR,JP,201812,1,1,554,32 -962,FR,JP,201812,1,1,314993,27108 -962,FR,JP,201812,1,1,297762,38268 -962,FR,JP,201812,1,1,44312,3965 -962,FR,JP,201812,1,1,536118,87042 -962,FR,JP,201812,1,1,901,5 -962,FR,JP,201812,1,1,1417873,266267 -962,FR,JP,201812,1,1,817,38 -962,FR,JP,201812,1,1,56700,14000 -962,FR,JP,201812,1,1,15348,1128 -962,FR,JP,201812,3,1,407127,4645 -962,FR,JP,201812,3,1,163,0 -962,FR,JP,201812,3,1,60,4 -962,FR,JP,201812,3,1,4438,144 -962,FR,JP,201812,3,1,97,0 -962,FR,JP,201812,3,1,17511,423 -962,FR,JP,201812,4,1,644902,11153 -962,FR,JP,201812,4,1,74063,454 -962,FR,JP,201812,4,1,119829,1680 -962,FR,JP,201812,4,1,72403,2415 -962,FR,JP,201812,4,1,198,1 -962,FR,JP,201812,4,1,39899,731 -962,FR,JP,201812,4,1,24129,340 -962,FR,JP,201812,4,1,208195,3173 -962,FR,JP,201812,4,1,57757,2408 -962,FR,JP,201812,4,1,295385,12046 -962,FR,JP,201812,4,1,48,1 -962,FR,JP,201812,4,1,512127,8541 -962,FR,JP,201812,0,2,615,11 -962,FR,JP,201812,1,2,112005,10271 -962,FR,JP,201812,1,2,739,59 -962,FR,JP,201812,1,2,3317,87 -962,FR,JP,201812,1,2,1563,62 -962,FR,JP,201812,1,2,15376,1377 -962,FR,JP,201812,1,2,8167,340 -962,FR,JP,201812,1,2,664761,53968 -962,FR,JP,201812,1,2,134723,3888 -962,FR,JP,201812,1,2,19533,18904 -962,FR,JP,201812,1,2,55,7 -962,FR,JP,201812,1,2,169599,68090 -962,FR,JP,201812,1,2,186749,29881 -962,FR,JP,201812,1,2,164433,38478 -962,FR,JP,201812,3,2,41481,473 -962,FR,JP,201812,4,2,344752,7606 -962,FR,JP,201812,4,2,18297,497 -962,FR,JP,201812,4,2,2888,72 -962,FR,JP,201812,4,2,13474,140 -962,FR,JP,201812,4,2,2082,160 -962,FR,JP,201812,4,2,4630,277 -962,FR,JP,201812,4,2,6122,96 -962,FR,JP,201812,4,2,9,2 -962,FR,JP,201812,4,2,19617,18900 -962,FR,JP,201812,4,2,6836,370 -962,FR,JP,201812,4,2,16643,277 -962,FR,JP,201812,4,2,1356,25 -962,FR,JP,201812,4,2,4381,700 -962,FR,JP,201812,4,2,26073,246 -962,FR,JP,201812,4,2,7184,70 -962,FR,JP,201812,4,2,652473,9182 -962,FR,JP,201812,4,2,50260,780 -962,FR,JP,201812,4,2,23466,325 -962,FR,JP,201812,4,2,209589,17929 -962,FR,JP,201812,4,2,21909,181 -962,FR,JP,201812,4,2,75686,1101 -962,FR,JP,201812,5,2,1499,15 -963,FR,JP,201812,0,1,158701,1457 -963,FR,JP,201812,1,1,51074,979 -963,FR,JP,201812,1,1,38106,909 -963,FR,JP,201812,1,1,33075,534 -963,FR,JP,201812,1,1,1238329,12000 -963,FR,JP,201812,1,1,4714,394 -963,FR,JP,201812,3,1,143498,1766 -963,FR,JP,201812,3,1,625661,1381 -963,FR,JP,201812,3,1,406403,1050 -963,FR,JP,201812,3,1,23871,58 -963,FR,JP,201812,3,1,2112871,5043 -963,FR,JP,201812,3,1,12747,38 -963,FR,JP,201812,3,1,15826,46 -963,FR,JP,201812,3,1,8193,18 -963,FR,JP,201812,3,1,38589,906 -963,FR,JP,201812,4,1,1365124,8589 -963,FR,JP,201812,4,1,30852,464 -963,FR,JP,201812,4,1,253,1 -963,FR,JP,201812,4,1,4204,577 -963,FR,JP,201812,4,1,33856,105 -963,FR,JP,201812,4,1,3555,9 -963,FR,JP,201812,4,1,33267,166 -963,FR,JP,201812,4,1,73905,600 -963,FR,JP,201812,4,1,5000,90 -963,FR,JP,201812,4,1,524,4 -963,FR,JP,201812,4,1,2849855,16193 -963,FR,JP,201812,4,1,28977,85 -963,FR,JP,201812,4,1,102,4 -963,FR,JP,201812,4,1,24786,46 -963,FR,JP,201812,5,1,299,0 -963,FR,JP,201812,0,2,114313,902 -963,FR,JP,201812,1,2,259653,8418 -963,FR,JP,201812,1,2,7129,25 -963,FR,JP,201812,1,2,19789,536 -963,FR,JP,201812,1,2,5556,223 -963,FR,JP,201812,1,2,23024,359 -963,FR,JP,201812,1,2,44036,931 -963,FR,JP,201812,1,2,12715,176 -963,FR,JP,201812,1,2,1203,36 -963,FR,JP,201812,1,2,2354,4 -963,FR,JP,201812,1,2,274378,4448 -963,FR,JP,201812,1,2,1013345,23395 -963,FR,JP,201812,1,2,644,2708 -963,FR,JP,201812,1,2,3057,163 -963,FR,JP,201812,3,2,241761,1721 -963,FR,JP,201812,3,2,12738,650 -963,FR,JP,201812,4,2,12083528,50302 -963,FR,JP,201812,4,2,10273,75 -963,FR,JP,201812,4,2,400455,6168 -963,FR,JP,201812,4,2,64129,319 -963,FR,JP,201812,4,2,479284,1490 -963,FR,JP,201812,4,2,21829,400 -963,FR,JP,201812,4,2,76487,477 -963,FR,JP,201812,4,2,187954,453 -963,FR,JP,201812,4,2,390622,3332 -963,FR,JP,201812,4,2,64685,1000 -963,FR,JP,201812,4,2,64746,1064 -963,FR,JP,201812,4,2,835685,6559 -963,FR,JP,201812,4,2,2026042,5252 -963,FR,JP,201812,4,2,20456787,42892 -963,FR,JP,201812,4,2,62250,423 -963,FR,JP,201812,4,2,550437,19697 -963,FR,JP,201812,4,2,11050,71 -963,FR,JP,201812,4,2,1081582,27443 -963,FR,JP,201812,4,2,202964,997 -963,FR,JP,201812,4,2,1130837,6273 -963,FR,JP,201812,5,2,8999,31 -971,FR,JP,201812,0,1,2858413,407553 -971,FR,JP,201812,1,1,74123,4629 -971,FR,JP,201812,1,1,110753,3889 -971,FR,JP,201812,1,1,2288,135 -971,FR,JP,201812,1,1,416205,92910 -971,FR,JP,201812,1,1,9295,462 -971,FR,JP,201812,1,1,261136,2392 -971,FR,JP,201812,1,1,548686,70963 -971,FR,JP,201812,1,1,16128,4720 -971,FR,JP,201812,1,1,10073,803 -971,FR,JP,201812,1,1,6013,560 -971,FR,JP,201812,1,1,109056,29671 -971,FR,JP,201812,1,1,11781,862 -971,FR,JP,201812,1,1,488,6 -971,FR,JP,201812,1,1,21765,1465 -971,FR,JP,201812,1,1,906212,132399 -971,FR,JP,201812,1,1,32486,2396 -971,FR,JP,201812,1,1,17591,1275 -971,FR,JP,201812,1,1,47,3 -971,FR,JP,201812,1,1,549612,32905 -971,FR,JP,201812,1,1,135,1 -971,FR,JP,201812,1,1,842,43 -971,FR,JP,201812,3,1,16223,118 -971,FR,JP,201812,3,1,1054,3 -971,FR,JP,201812,3,1,910,106 -971,FR,JP,201812,3,1,30583,133 -971,FR,JP,201812,3,1,1816,18 -971,FR,JP,201812,4,1,95537,5264 -971,FR,JP,201812,4,1,22770,43 -971,FR,JP,201812,4,1,63,4 -971,FR,JP,201812,4,1,16603,218 -971,FR,JP,201812,4,1,20138,319 -971,FR,JP,201812,4,1,7444,3 -971,FR,JP,201812,4,1,2211,7 -971,FR,JP,201812,4,1,121,2 -971,FR,JP,201812,4,1,140651,2482 -971,FR,JP,201812,0,2,85,3 -971,FR,JP,201812,1,2,61706,2209 -971,FR,JP,201812,1,2,3861,44 -971,FR,JP,201812,1,2,9833,685 -971,FR,JP,201812,1,2,3991,214 -971,FR,JP,201812,1,2,10640,200 -971,FR,JP,201812,1,2,1485450,288594 -971,FR,JP,201812,1,2,43914,6340 -971,FR,JP,201812,1,2,3084,20 -971,FR,JP,201812,1,2,30237,4079 -971,FR,JP,201812,1,2,116775,3606 -971,FR,JP,201812,3,2,465,24 -971,FR,JP,201812,3,2,341,6 -971,FR,JP,201812,4,2,99109,2479 -971,FR,JP,201812,4,2,37942,513 -971,FR,JP,201812,4,2,38909,4135 -971,FR,JP,201812,4,2,754,10 -971,FR,JP,201812,4,2,3819,4 -971,FR,JP,201812,4,2,4689,820 -971,FR,JP,201812,4,2,94553,47 -971,FR,JP,201812,4,2,10,3 -971,FR,JP,201812,4,2,8700,14 -971,FR,JP,201812,4,2,178493,2457 -971,FR,JP,201812,4,2,4300,429 -971,FR,JP,201812,4,2,2800,85 -971,FR,JP,201812,4,2,3300,5 -971,FR,JP,201812,4,2,5727,800 -971,FR,JP,201812,4,2,5466,33 -971,FR,JP,201812,4,2,4086,1 -972,FR,JP,201812,0,1,25141,1083 -972,FR,JP,201812,1,1,8149,1402 -972,FR,JP,201812,1,1,29042,5056 -972,FR,JP,201812,1,1,583,192 -972,FR,JP,201812,1,1,494801,192761 -972,FR,JP,201812,1,1,132317,22068 -972,FR,JP,201812,3,1,10637,712 -972,FR,JP,201812,4,1,1601,51 -972,FR,JP,201812,4,1,1315,16 -972,FR,JP,201812,4,1,11714,195 -972,FR,JP,201812,1,2,14936,2402 -972,FR,JP,201812,1,2,658,0 -972,FR,JP,201812,1,2,77087,74855 -972,FR,JP,201812,1,2,25335,9636 -972,FR,JP,201812,1,2,23491,9581 -972,FR,JP,201812,1,2,42633,14946 -972,FR,JP,201812,1,2,113794,41759 -972,FR,JP,201812,1,2,92696,31665 -972,FR,JP,201812,1,2,45731,16604 -972,FR,JP,201812,1,2,41,196 -972,FR,JP,201812,3,2,9612,2201 -972,FR,JP,201812,4,2,4566,343 -972,FR,JP,201812,4,2,1123,63 -972,FR,JP,201812,4,2,2504,1150 -973,FR,JP,201812,0,1,29156,718 -973,FR,JP,201812,1,1,20988,1244 -973,FR,JP,201812,1,1,990,184 -973,FR,JP,201812,1,1,20182,508 -973,FR,JP,201812,1,1,930,60 -973,FR,JP,201812,1,1,15683,14900 -973,FR,JP,201812,1,1,44268,8756 -973,FR,JP,201812,1,1,16659,1080 -973,FR,JP,201812,1,1,12220,5200 -973,FR,JP,201812,1,1,70828,7362 -973,FR,JP,201812,1,1,6756,218 -973,FR,JP,201812,1,1,430,50 -973,FR,JP,201812,3,1,8748,427 -973,FR,JP,201812,3,1,261,14 -973,FR,JP,201812,4,1,32600,616 -973,FR,JP,201812,4,1,536,30 -973,FR,JP,201812,4,1,857,48 -973,FR,JP,201812,4,1,32290,1229 -973,FR,JP,201812,0,2,898,26 -973,FR,JP,201812,1,2,89396,15466 -973,FR,JP,201812,1,2,2335,712 -973,FR,JP,201812,1,2,25451,3770 -973,FR,JP,201812,1,2,96518,4485 -973,FR,JP,201812,1,2,39147,2146 -973,FR,JP,201812,1,2,2148,1380 -973,FR,JP,201812,1,2,14404,6359 -973,FR,JP,201812,1,2,1230,161 -973,FR,JP,201812,1,2,65,9 -973,FR,JP,201812,1,2,110005,10198 -973,FR,JP,201812,1,2,1040,1368 -973,FR,JP,201812,1,2,9525,1292 -973,FR,JP,201812,1,2,25270,15571 -973,FR,JP,201812,3,2,3232,101 -973,FR,JP,201812,4,2,105188,5769 -973,FR,JP,201812,4,2,38215,2415 -973,FR,JP,201812,4,2,665,78 -973,FR,JP,201812,4,2,3830,200 -973,FR,JP,201812,4,2,63933,2427 -973,FR,JP,201812,4,2,2620,331 -973,FR,JP,201812,4,2,11253,3550 -973,FR,JP,201812,4,2,25711,315 -974,FR,JP,201812,0,1,126728,1253 -974,FR,JP,201812,1,1,12569,567 -974,FR,JP,201812,1,1,4,18 -974,FR,JP,201812,1,1,9061,292 -974,FR,JP,201812,1,1,1501,291 -974,FR,JP,201812,1,1,563,19 -974,FR,JP,201812,1,1,10122,143 -974,FR,JP,201812,1,1,41,0 -974,FR,JP,201812,1,1,110,1 -974,FR,JP,201812,1,1,279,9 -974,FR,JP,201812,1,1,50,0 -974,FR,JP,201812,1,1,59495,994 -974,FR,JP,201812,3,1,162762,2540 -974,FR,JP,201812,3,1,460,55 -974,FR,JP,201812,4,1,189004,3056 -974,FR,JP,201812,4,1,13036,647 -974,FR,JP,201812,4,1,368,0 -974,FR,JP,201812,4,1,296,0 -974,FR,JP,201812,4,1,32,0 -974,FR,JP,201812,4,1,802,6 -974,FR,JP,201812,4,1,5726,277 -974,FR,JP,201812,4,1,51,0 -974,FR,JP,201812,4,1,661,1 -974,FR,JP,201812,4,1,114916,3257 -974,FR,JP,201812,4,1,51,1 -974,FR,JP,201812,5,1,7511,104 -974,FR,JP,201812,0,2,3636,55 -974,FR,JP,201812,1,2,100,30 -974,FR,JP,201812,1,2,449,21 -974,FR,JP,201812,1,2,1070,89 -974,FR,JP,201812,1,2,2,350 -974,FR,JP,201812,1,2,6037,362 -974,FR,JP,201812,1,2,108,14 -974,FR,JP,201812,1,2,5878,293 -974,FR,JP,201812,1,2,73,192 -974,FR,JP,201812,1,2,777,235 -974,FR,JP,201812,1,2,964,52 -974,FR,JP,201812,3,2,21924,1375 -974,FR,JP,201812,3,2,1545,15 -974,FR,JP,201812,3,2,13,1 -974,FR,JP,201812,4,2,349659,9213 -974,FR,JP,201812,4,2,102,2 -974,FR,JP,201812,4,2,16948,623 -974,FR,JP,201812,4,2,10,1 -974,FR,JP,201812,4,2,49816,765 -974,FR,JP,201812,4,2,1600,16 -974,FR,JP,201812,4,2,57593,717 -974,FR,JP,201812,4,2,201,0 -974,FR,JP,201812,4,2,116649,2568 -974,FR,JP,201812,4,2,7673,53 -974,FR,JP,201812,4,2,129340,3120 -974,FR,JP,201812,4,2,5178,57 -974,FR,JP,201812,4,2,1479123,4460 -974,FR,JP,201812,5,2,4897,76 -975,FR,JP,201812,0,1,12851,1092 -975,FR,JP,201812,1,1,16191,200 -975,FR,JP,201812,1,1,3000,180 -975,FR,JP,201812,1,1,13,1 -975,FR,JP,201812,1,1,324,11 -975,FR,JP,201812,1,1,1528,152 -975,FR,JP,201812,1,1,422815,15694 -975,FR,JP,201812,1,1,1137,118 -975,FR,JP,201812,1,1,126,5 -975,FR,JP,201812,1,1,1131,286 -975,FR,JP,201812,3,1,5391,254 -975,FR,JP,201812,4,1,72039,1401 -975,FR,JP,201812,4,1,275587,1006 -975,FR,JP,201812,4,1,461260,3607 -975,FR,JP,201812,4,1,9394,5 -975,FR,JP,201812,4,1,46708,648 -975,FR,JP,201812,0,2,97,3 -975,FR,JP,201812,1,2,33490,2210 -975,FR,JP,201812,1,2,100,1 -975,FR,JP,201812,1,2,150,35 -975,FR,JP,201812,1,2,8976,1261 -975,FR,JP,201812,1,2,38071,9307 -975,FR,JP,201812,1,2,18748,7128 -975,FR,JP,201812,1,2,2516,41 -975,FR,JP,201812,1,2,164100,11150 -975,FR,JP,201812,1,2,46904,5707 -975,FR,JP,201812,1,2,43550,7363 -975,FR,JP,201812,1,2,100876,10414 -975,FR,JP,201812,1,2,220815,23000 -975,FR,JP,201812,3,2,13555,558 -975,FR,JP,201812,4,2,261151,1270 -975,FR,JP,201812,4,2,398,98 -975,FR,JP,201812,4,2,210500,393 -975,FR,JP,201812,4,2,276055,246 -975,FR,JP,201812,4,2,11185,229 -975,FR,JP,201812,4,2,3700,140 -975,FR,JP,201812,4,2,6700,70 -975,FR,JP,201812,4,2,534526,4351 -975,FR,JP,201812,4,2,15400,640 -975,FR,JP,201812,4,2,5572,1320 -975,FR,JP,201812,4,2,595329,300 -975,FR,JP,201812,4,2,21066,340 -976,FR,JP,201812,0,1,21882,175 -976,FR,JP,201812,1,1,376,9 -976,FR,JP,201812,1,1,454,35 -976,FR,JP,201812,1,1,486,58 -976,FR,JP,201812,1,1,1510,91 -976,FR,JP,201812,1,1,343,20 -976,FR,JP,201812,1,1,1006,19 -976,FR,JP,201812,1,1,72,2 -976,FR,JP,201812,1,1,1800,170 -976,FR,JP,201812,1,1,212,8 -976,FR,JP,201812,3,1,6316,278 -976,FR,JP,201812,3,1,1868,113 -976,FR,JP,201812,4,1,6127,126 -976,FR,JP,201812,4,1,247,17 -976,FR,JP,201812,4,1,3040,23 -976,FR,JP,201812,4,1,371,2 -976,FR,JP,201812,4,1,279,1 -976,FR,JP,201812,4,1,14005,222 -976,FR,JP,201812,1,2,15453,666 -976,FR,JP,201812,1,2,19153,500 -976,FR,JP,201812,1,2,225,240 -976,FR,JP,201812,1,2,1304,490 -976,FR,JP,201812,1,2,2426,1657 -976,FR,JP,201812,1,2,32222,5927 -976,FR,JP,201812,1,2,144760,93805 -976,FR,JP,201812,4,2,33221,690 -976,FR,JP,201812,4,2,178,4 -976,FR,JP,201812,4,2,3650,120 -976,FR,JP,201812,4,2,225000,20 -976,FR,JP,201812,4,2,64820,219 -976,FR,JP,201812,4,2,23986,300 -976,FR,JP,201812,4,2,7737,1150 -976,FR,JP,201812,4,2,28863,30 -979,FR,JP,201812,0,1,1684320,12353 -979,FR,JP,201812,1,1,76927,2491 -979,FR,JP,201812,1,1,64319,1456 -979,FR,JP,201812,1,1,343,30 -979,FR,JP,201812,1,1,49283,605 -979,FR,JP,201812,1,1,1602,182 -979,FR,JP,201812,1,1,523,21 -979,FR,JP,201812,1,1,4535,252 -979,FR,JP,201812,1,1,248480,4210 -979,FR,JP,201812,1,1,260311,2296 -979,FR,JP,201812,1,1,364120,3344 -979,FR,JP,201812,1,1,95,3 -979,FR,JP,201812,1,1,3138481,81003 -979,FR,JP,201812,1,1,109257,10992 -979,FR,JP,201812,1,1,30252,495 -979,FR,JP,201812,1,1,656743,57643 -979,FR,JP,201812,1,1,351638,55291 -979,FR,JP,201812,1,1,25645,368 -979,FR,JP,201812,1,1,283,3 -979,FR,JP,201812,1,1,154906,13116 -979,FR,JP,201812,1,1,2703948,98369 -979,FR,JP,201812,1,1,760,590 -979,FR,JP,201812,1,1,352375,13418 -979,FR,JP,201812,1,1,150591,1011 -979,FR,JP,201812,1,1,392,11 -979,FR,JP,201812,1,1,13658784,386044 -979,FR,JP,201812,1,1,426424,39856 -979,FR,JP,201812,1,1,144913,13422 -979,FR,JP,201812,3,1,3282441,16961 -979,FR,JP,201812,3,1,427101,5463 -979,FR,JP,201812,3,1,77541,166 -979,FR,JP,201812,3,1,177684,349 -979,FR,JP,201812,3,1,30867,71 -979,FR,JP,201812,3,1,2191970,96 -979,FR,JP,201812,3,1,10263,18 -979,FR,JP,201812,3,1,7195,12 -979,FR,JP,201812,3,1,78584,2981 -979,FR,JP,201812,3,1,196,1 -979,FR,JP,201812,4,1,8920330,80520 -979,FR,JP,201812,4,1,430080,10622 -979,FR,JP,201812,4,1,848762,3281 -979,FR,JP,201812,4,1,792,13 -979,FR,JP,201812,4,1,150818,541 -979,FR,JP,201812,4,1,248632,1020 -979,FR,JP,201812,4,1,7,1 -979,FR,JP,201812,4,1,210,23 -979,FR,JP,201812,4,1,1501178,2133 -979,FR,JP,201812,4,1,52223,806 -979,FR,JP,201812,4,1,2144,103 -979,FR,JP,201812,4,1,1536,9 -979,FR,JP,201812,4,1,2561673,2998 -979,FR,JP,201812,4,1,389896,3312 -979,FR,JP,201812,4,1,209721,6266 -979,FR,JP,201812,4,1,363,0 -979,FR,JP,201812,4,1,353675,910 -979,FR,JP,201812,4,1,67252,765 -979,FR,JP,201812,4,1,97804,1170 -979,FR,JP,201812,4,1,17206,103 -979,FR,JP,201812,4,1,4290749,20654 -979,FR,JP,201812,4,1,98747,774 -979,FR,JP,201812,4,1,2421865,534 -979,FR,JP,201812,4,1,95,0 -979,FR,JP,201812,4,1,3935,6 -979,FR,JP,201812,4,1,470,22 -979,FR,JP,201812,5,1,2452,12 -979,FR,JP,201812,0,2,31691,196 -979,FR,JP,201812,1,2,427253,37715 -979,FR,JP,201812,1,2,45864,1150 -979,FR,JP,201812,1,2,10702,117 -979,FR,JP,201812,1,2,17023,5800 -979,FR,JP,201812,1,2,53579,1780 -979,FR,JP,201812,1,2,112517,4609 -979,FR,JP,201812,1,2,651,24 -979,FR,JP,201812,1,2,14047,1707 -979,FR,JP,201812,1,2,7560,1966 -979,FR,JP,201812,1,2,2942,118 -979,FR,JP,201812,1,2,2633,90 -979,FR,JP,201812,1,2,319654,10243 -979,FR,JP,201812,1,2,8963,1965 -979,FR,JP,201812,1,2,489,13 -979,FR,JP,201812,1,2,328104,4403 -979,FR,JP,201812,1,2,15745,1800 -979,FR,JP,201812,1,2,988138,95388 -979,FR,JP,201812,1,2,2241,238 -979,FR,JP,201812,1,2,55064,15486 -979,FR,JP,201812,1,2,26099,11062 -979,FR,JP,201812,1,2,2568,42 -979,FR,JP,201812,1,2,102514,1044 -979,FR,JP,201812,1,2,86575,4440 -979,FR,JP,201812,1,2,2117525,113687 -979,FR,JP,201812,1,2,134619,7336 -979,FR,JP,201812,1,2,1172070,62572 -979,FR,JP,201812,1,2,14000,712 -979,FR,JP,201812,1,2,250068,18477 -979,FR,JP,201812,3,2,190481,1823 -979,FR,JP,201812,3,2,18450,0 -979,FR,JP,201812,3,2,2514,140 -979,FR,JP,201812,3,2,90390,19989 -979,FR,JP,201812,4,2,7698671,25547 -979,FR,JP,201812,4,2,777245,5312 -979,FR,JP,201812,4,2,749,10 -979,FR,JP,201812,4,2,36338,8 -979,FR,JP,201812,4,2,4765,4 -979,FR,JP,201812,4,2,47049,495 -979,FR,JP,201812,4,2,21607,15 -979,FR,JP,201812,4,2,5152036,869 -979,FR,JP,201812,4,2,67260,734 -979,FR,JP,201812,4,2,105866,25 -979,FR,JP,201812,4,2,395002,89 -979,FR,JP,201812,4,2,82260,12 -979,FR,JP,201812,4,2,496,25 -979,FR,JP,201812,4,2,22693,213 -979,FR,JP,201812,4,2,751488,2753 -979,FR,JP,201812,4,2,8637,295 -979,FR,JP,201812,4,2,111568,647 -979,FR,JP,201812,4,2,10072,392 -979,FR,JP,201812,4,2,12877,323 -979,FR,JP,201812,4,2,108551,3896 -979,FR,JP,201812,4,2,371363,1902 -979,FR,JP,201812,4,2,7579420,26446 -979,FR,JP,201812,4,2,264184,2360 -979,FR,JP,201812,4,2,845592,6503 -979,FR,JP,201812,4,2,1413,12 -979,FR,JP,201812,4,2,299691,1058 -979,FR,JP,201812,4,2,2078344,47280 -979,FR,JP,201812,4,2,424796,1215 -979,FR,JP,201812,4,2,7630,2330 -979,FR,JP,201812,4,2,4766238,4643 -979,FR,JP,201812,5,2,209551,96 -979,FR,JP,201812,8,2,306259,95185 -994,FR,JP,201812,4,2,6457,0 -994,FR,JP,201812,4,2,7635,1 -999,FR,JP,201812,0,1,63321,36 -999,FR,JP,201812,1,1,3650,0 -999,FR,JP,201812,1,1,127263,0 -999,FR,JP,201812,1,1,5500,0 -999,FR,JP,201812,1,1,28034,0 -999,FR,JP,201812,1,1,127599,0 -999,FR,JP,201812,3,1,1450,0 -999,FR,JP,201812,4,1,16271,0 -999,FR,JP,201812,4,1,360,4 -999,FR,JP,201812,4,1,4808,0 -999,FR,JP,201812,4,1,4460,0 -999,FR,JP,201812,4,1,15058,0 -999,FR,JP,201812,4,1,7405,0 -999,FR,JP,201812,4,1,93071,0 -999,FR,JP,201812,0,2,101875,0 -999,FR,JP,201812,1,2,198645,14301 -999,FR,JP,201812,1,2,4377,0 -999,FR,JP,201812,1,2,7000,0 -999,FR,JP,201812,1,2,132578,44921 -999,FR,JP,201812,1,2,420,17 -999,FR,JP,201812,1,2,98518,2877 -999,FR,JP,201812,1,2,414805,4755 -999,FR,JP,201812,1,2,234215,1554 -999,FR,JP,201812,1,2,158124,1956 -999,FR,JP,201812,1,2,4254877,2232943 -999,FR,JP,201812,1,2,975857,654047 -999,FR,JP,201812,1,2,90357,57424 -999,FR,JP,201812,1,2,45694,56780 -999,FR,JP,201812,1,2,112646,31380 -999,FR,JP,201812,1,2,547287,372951 -999,FR,JP,201812,1,2,2387846,1327753 -999,FR,JP,201812,1,2,489848,106948 -999,FR,JP,201812,1,2,416363,54290 -999,FR,JP,201812,1,2,1,2 -999,FR,JP,201812,1,2,598650,154950 -999,FR,JP,201812,1,2,11036,1315 -999,FR,JP,201812,1,2,277943,45800 -999,FR,JP,201812,3,2,74924,3331 -999,FR,JP,201812,3,2,30732,60000 -999,FR,JP,201812,4,2,4694931,82917 -999,FR,JP,201812,4,2,2450,273 -999,FR,JP,201812,4,2,5,2 -999,FR,JP,201812,4,2,17853,140 -999,FR,JP,201812,4,2,13556,1929 -999,FR,JP,201812,4,2,3099,12 -999,FR,JP,201812,4,2,75,12 -999,FR,JP,201812,4,2,492,32 -999,FR,JP,201812,4,2,2700,0 -999,FR,JP,201812,4,2,2115,150 -999,FR,JP,201812,4,2,44905,355 -999,FR,JP,201812,4,2,2793,0 -999,FR,JP,201812,4,2,458536,9235 -999,FR,JP,201812,4,2,18000,176 -999,FR,JP,201812,4,2,35289,324 -999,FR,JP,201812,4,2,16603,1280 -999,FR,JP,201812,4,2,3200,9 -999,FR,JP,201812,4,2,111215,3670 -999,FR,JP,201812,4,2,29370,60 -999,FR,JP,201812,4,2,15775,73 -001,FR,TW,201812,4,2,61300,1100 -011,FR,TW,201812,1,1,2467,864 -019,FR,TW,201812,4,2,1,1 -035,FR,TW,201812,1,2,143,49 -035,FR,TW,201812,1,2,308925,169638 -035,FR,TW,201812,1,2,61774,42336 -035,FR,TW,201812,1,2,40289,17640 -039,FR,TW,201812,1,2,25552,39950 -039,FR,TW,201812,1,2,24219,33075 -039,FR,TW,201812,3,2,4185,300 -039,FR,TW,201812,4,2,9535,456 -039,FR,TW,201812,4,2,6293,150 -043,FR,TW,201812,1,1,1808,877 -043,FR,TW,201812,1,1,157638,120286 -043,FR,TW,201812,4,1,4920,634 -045,FR,TW,201812,1,1,94,11 -049,FR,TW,201812,4,1,1816,36 -055,FR,TW,201812,1,2,10762,25860 -056,FR,TW,201812,1,2,12335,46470 -056,FR,TW,201812,1,2,22261,49834 -056,FR,TW,201812,1,2,34300,48760 -092,FR,TW,201812,3,1,1297,10 -092,FR,TW,201812,4,1,40,0 -092,FR,TW,201812,4,1,46617,1445 -092,FR,TW,201812,4,1,4410,189 -092,FR,TW,201812,0,2,129,56 -092,FR,TW,201812,1,2,81018,57057 -092,FR,TW,201812,1,2,85289,169123 -092,FR,TW,201812,1,2,32300,20500 -092,FR,TW,201812,3,2,1,3 -092,FR,TW,201812,4,2,87,33 -099,FR,TW,201812,0,1,121,9 -099,FR,TW,201812,1,1,81170,7110 -099,FR,TW,201812,1,1,139371,11680 -099,FR,TW,201812,1,1,7760,3681 -099,FR,TW,201812,1,1,941,168 -099,FR,TW,201812,4,1,23782,700 -099,FR,TW,201812,4,1,6098,90 -099,FR,TW,201812,1,2,295605,41425 -099,FR,TW,201812,1,2,167519,15031 -099,FR,TW,201812,1,2,88232,13493 -099,FR,TW,201812,1,2,74459,9000 -099,FR,TW,201812,1,2,279741,36287 -099,FR,TW,201812,1,2,286737,37958 -099,FR,TW,201812,3,2,371546,21313 -099,FR,TW,201812,4,2,7431,1 -099,FR,TW,201812,4,2,4008,35 -111,FR,TW,201812,1,2,2936,1260 -111,FR,TW,201812,1,2,15,6 -111,FR,TW,201812,4,2,15,6 -112,FR,TW,201812,1,2,1440,720 -112,FR,TW,201812,1,2,19426,8720 -121,FR,TW,201812,0,2,1049,14 -121,FR,TW,201812,1,2,212447,6574 -121,FR,TW,201812,1,2,293817,11101 -121,FR,TW,201812,1,2,280544,1968 -121,FR,TW,201812,1,2,2231910,256101 -121,FR,TW,201812,1,2,326960,55556 -121,FR,TW,201812,1,2,55654,171 -121,FR,TW,201812,1,2,25598,7349 -121,FR,TW,201812,1,2,650460,184264 -121,FR,TW,201812,1,2,94677,2770 -121,FR,TW,201812,1,2,293622,5106 -121,FR,TW,201812,3,2,1374,7 -121,FR,TW,201812,3,2,900,270 -121,FR,TW,201812,4,2,141847,945 -121,FR,TW,201812,4,2,1638,2 -121,FR,TW,201812,4,2,5622,2250 -121,FR,TW,201812,4,2,96,2 -121,FR,TW,201812,4,2,34575,88 -121,FR,TW,201812,4,2,119522,763 -121,FR,TW,201812,4,2,18600,678 -121,FR,TW,201812,4,2,2534,18 -122,FR,TW,201812,1,2,19320,32681 -122,FR,TW,201812,1,2,1888,960 -122,FR,TW,201812,1,2,70,12 -122,FR,TW,201812,4,2,7,12 -125,FR,TW,201812,1,1,455051,14535 -125,FR,TW,201812,4,1,29413,1008 -125,FR,TW,201812,4,1,26852,9 -125,FR,TW,201812,1,2,238376,24984 -125,FR,TW,201812,1,2,174619,9355 -125,FR,TW,201812,1,2,437964,63094 -125,FR,TW,201812,1,2,1988,219 -125,FR,TW,201812,1,2,45519,8831 -125,FR,TW,201812,1,2,41765,24660 -125,FR,TW,201812,1,2,10774,4116 -125,FR,TW,201812,1,2,72988,24555 -125,FR,TW,201812,3,2,310,27 -125,FR,TW,201812,3,2,8800,2772 -125,FR,TW,201812,3,2,54911,4200 -125,FR,TW,201812,4,2,31300,1670 -125,FR,TW,201812,4,2,448213,1426 -125,FR,TW,201812,4,2,47462,290 -125,FR,TW,201812,4,2,6909,274 -125,FR,TW,201812,4,2,10621,650 -125,FR,TW,201812,4,2,16005,16 -128,FR,TW,201812,1,1,13735,16474 -128,FR,TW,201812,1,1,32140,32588 -128,FR,TW,201812,1,1,47447,52386 -128,FR,TW,201812,1,1,62051,77913 -128,FR,TW,201812,1,1,63542,49500 -128,FR,TW,201812,1,2,57406,72593 -128,FR,TW,201812,1,2,809976,1262126 -128,FR,TW,201812,1,2,135097,199023 -132,FR,TW,201812,0,2,278,7 -132,FR,TW,201812,1,2,1132155,278428 -132,FR,TW,201812,1,2,95641,13297 -132,FR,TW,201812,1,2,18201,1234 -132,FR,TW,201812,3,2,653,44 -132,FR,TW,201812,3,2,132537,12516 -132,FR,TW,201812,4,2,3878,341 -132,FR,TW,201812,4,2,1475,100 -132,FR,TW,201812,4,2,20606,1780 -132,FR,TW,201812,4,2,10,23 -133,FR,TW,201812,0,1,1083,18 -133,FR,TW,201812,1,1,1461,340 -133,FR,TW,201812,1,1,4151,319 -133,FR,TW,201812,1,1,1164,40 -133,FR,TW,201812,1,1,3123,342 -133,FR,TW,201812,3,1,63,1 -133,FR,TW,201812,4,1,4497,82 -133,FR,TW,201812,4,1,350,6 -133,FR,TW,201812,3,2,184,21 -133,FR,TW,201812,4,2,406,24 -133,FR,TW,201812,4,2,5435,250 -133,FR,TW,201812,4,2,9841,420 -135,FR,TW,201812,1,2,88615,12480 -136,FR,TW,201812,1,1,886,474 -136,FR,TW,201812,1,1,365,135 -136,FR,TW,201812,1,1,895,162 -136,FR,TW,201812,1,2,22190,9143 -136,FR,TW,201812,1,2,42102,11245 -136,FR,TW,201812,1,2,11093,6443 -136,FR,TW,201812,1,2,40198,12662 -136,FR,TW,201812,3,2,7421,384 -136,FR,TW,201812,3,2,33580,2403 -136,FR,TW,201812,4,2,13500,540 -136,FR,TW,201812,4,2,10546,599 -139,FR,TW,201812,1,1,1031,412 -139,FR,TW,201812,1,1,17722,5091 -139,FR,TW,201812,1,1,2800,700 -139,FR,TW,201812,1,1,15146,6400 -139,FR,TW,201812,1,1,12483,3252 -139,FR,TW,201812,1,1,52852,25402 -139,FR,TW,201812,1,1,5456,788 -139,FR,TW,201812,1,1,47630,20736 -139,FR,TW,201812,1,1,51975,15427 -139,FR,TW,201812,3,1,55,0 -139,FR,TW,201812,4,1,397,35 -139,FR,TW,201812,0,2,124,12 -139,FR,TW,201812,1,2,23345,2860 -139,FR,TW,201812,1,2,42619,2700 -139,FR,TW,201812,1,2,395140,171447 -139,FR,TW,201812,1,2,302,90 -139,FR,TW,201812,1,2,800021,133294 -139,FR,TW,201812,1,2,227195,28771 -139,FR,TW,201812,1,2,49300,8775 -139,FR,TW,201812,1,2,54472,6636 -139,FR,TW,201812,3,2,131000,4200 -139,FR,TW,201812,4,2,24247,2430 -139,FR,TW,201812,4,2,1192,40 -139,FR,TW,201812,4,2,131956,24608 -139,FR,TW,201812,4,2,3611,57 -141,FR,TW,201812,1,2,50192,24996 -141,FR,TW,201812,1,2,65449,23264 -141,FR,TW,201812,1,2,30514,24059 -141,FR,TW,201812,1,2,96745,48032 -141,FR,TW,201812,1,2,49272,24985 -141,FR,TW,201812,3,2,88800,74880 -142,FR,TW,201812,4,1,908,3 -142,FR,TW,201812,4,1,4413,35 -142,FR,TW,201812,1,2,186966,18970 -142,FR,TW,201812,1,2,576164,20632 -142,FR,TW,201812,4,2,3847,504 -142,FR,TW,201812,4,2,84796,8098 -142,FR,TW,201812,4,2,13152,1112 -143,FR,TW,201812,1,2,191657,69384 -143,FR,TW,201812,1,2,407146,144038 -143,FR,TW,201812,1,2,124715,44676 -143,FR,TW,201812,4,2,246,179 -143,FR,TW,201812,4,2,826,120 -144,FR,TW,201812,1,2,45087,7120 -144,FR,TW,201812,1,2,16279,1668 -144,FR,TW,201812,1,2,380913,105699 -144,FR,TW,201812,1,2,64606,9135 -144,FR,TW,201812,1,2,320055,94306 -144,FR,TW,201812,1,2,111963,22000 -144,FR,TW,201812,3,2,5680,1200 -144,FR,TW,201812,3,2,2066,220 -144,FR,TW,201812,4,2,1861,218 -144,FR,TW,201812,4,2,5143,316 -144,FR,TW,201812,4,2,98426,11425 -144,FR,TW,201812,4,2,9556,994 -145,FR,TW,201812,1,2,12632,10920 -147,FR,TW,201812,1,2,45512,8100 -147,FR,TW,201812,4,2,6370,596 -148,FR,TW,201812,1,1,73004,8646 -148,FR,TW,201812,1,1,2525,150 -148,FR,TW,201812,4,2,15855,219 -161,FR,TW,201812,1,2,21859,39500 -161,FR,TW,201812,1,2,8674,9278 -161,FR,TW,201812,1,2,8520,12500 -161,FR,TW,201812,1,2,11123,21632 -161,FR,TW,201812,3,2,104159,235800 -163,FR,TW,201812,1,1,14075,3002 -163,FR,TW,201812,1,1,65115,10059 -163,FR,TW,201812,1,1,75577,16408 -163,FR,TW,201812,1,1,23444,7071 -163,FR,TW,201812,1,1,61234,17616 -163,FR,TW,201812,1,1,68714,19187 -163,FR,TW,201812,4,1,74,2 -163,FR,TW,201812,1,2,425,500 -163,FR,TW,201812,1,2,2000,691 -163,FR,TW,201812,1,2,239858,88015 -163,FR,TW,201812,1,2,11519,1407 -163,FR,TW,201812,1,2,4766,1693 -163,FR,TW,201812,1,2,12180,2127 -163,FR,TW,201812,1,2,58200,9000 -163,FR,TW,201812,1,2,214398,43470 -163,FR,TW,201812,1,2,21839,4447 -163,FR,TW,201812,3,2,1074,165 -163,FR,TW,201812,3,2,6651,585 -163,FR,TW,201812,4,2,4534,434 -163,FR,TW,201812,4,2,4332,207 -163,FR,TW,201812,4,2,10459,1656 -164,FR,TW,201812,1,1,604,234 -164,FR,TW,201812,1,1,2197,504 -164,FR,TW,201812,1,1,8026,1310 -164,FR,TW,201812,1,1,47453,22532 -164,FR,TW,201812,1,1,15897,4896 -164,FR,TW,201812,1,1,3827,420 -164,FR,TW,201812,1,2,22031,4404 -164,FR,TW,201812,1,2,8612,1660 -164,FR,TW,201812,1,2,3002,414 -164,FR,TW,201812,1,2,35731,5689 -164,FR,TW,201812,1,2,21962,5173 -164,FR,TW,201812,1,2,160491,31556 -164,FR,TW,201812,1,2,22012,6000 -164,FR,TW,201812,3,2,1269,30 -164,FR,TW,201812,4,2,9,6 -164,FR,TW,201812,4,2,2901,414 -164,FR,TW,201812,4,2,9702,758 -164,FR,TW,201812,4,2,1630,60 -166,FR,TW,201812,1,1,388,794 -166,FR,TW,201812,1,1,2732,2209 -166,FR,TW,201812,1,1,6997,1561 -166,FR,TW,201812,1,1,840,210 -166,FR,TW,201812,1,1,3061,2520 -166,FR,TW,201812,1,1,3528,2592 -166,FR,TW,201812,1,1,11946,3591 -166,FR,TW,201812,1,1,36467,4431 -166,FR,TW,201812,4,1,5320,100 -166,FR,TW,201812,4,1,1012,33 -166,FR,TW,201812,1,2,2020,1680 -166,FR,TW,201812,1,2,724,98 -166,FR,TW,201812,1,2,5200,4680 -166,FR,TW,201812,4,2,2100,60 -179,FR,TW,201812,1,2,11729,1620 -179,FR,TW,201812,1,2,13855,1544 -179,FR,TW,201812,1,2,1792003,682285 -179,FR,TW,201812,1,2,47533,21751 -179,FR,TW,201812,1,2,77132,69049 -179,FR,TW,201812,1,2,6890,26180 -179,FR,TW,201812,1,2,43684,9000 -179,FR,TW,201812,4,2,12129,1620 -179,FR,TW,201812,4,2,402657,141525 -181,FR,TW,201812,1,1,121,40 -181,FR,TW,201812,1,1,455,48 -181,FR,TW,201812,1,1,1479,240 -181,FR,TW,201812,4,1,260,1 -181,FR,TW,201812,1,2,13326,24840 -182,FR,TW,201812,1,1,23158,4636 -182,FR,TW,201812,1,2,16261,4708 -182,FR,TW,201812,1,2,7327,1050 -182,FR,TW,201812,1,2,55213,10431 -182,FR,TW,201812,4,2,9818,457 -182,FR,TW,201812,4,2,1491,144 -182,FR,TW,201812,4,2,4050,183 -182,FR,TW,201812,4,2,1380,60 -321,FR,TW,201812,1,2,49929,15316 -323,FR,TW,201812,4,1,358,34 -323,FR,TW,201812,1,2,12453,17940 -341,FR,TW,201812,1,1,281,7 -341,FR,TW,201812,4,1,913,44 -341,FR,TW,201812,4,1,22,0 -341,FR,TW,201812,1,2,38749,3382 -341,FR,TW,201812,1,2,48653,20651 -341,FR,TW,201812,1,2,196167,46764 -341,FR,TW,201812,1,2,88950,21245 -341,FR,TW,201812,1,2,35594,8969 -341,FR,TW,201812,1,2,55966,13985 -341,FR,TW,201812,1,2,65319,16480 -341,FR,TW,201812,3,2,161,29 -341,FR,TW,201812,4,2,4170,103 -341,FR,TW,201812,4,2,114,1 -451,FR,TW,201812,1,1,192243,35966 -451,FR,TW,201812,1,2,37105,40720 -462,FR,TW,201812,1,2,38727,240730 -513,FR,TW,201812,1,2,35016,20330 \ No newline at end of file diff --git a/terra-backend/python-server/graph-analysis.ipynb b/terra-backend/python-server/graph-analysis.ipynb new file mode 100644 index 0000000..ec5dd07 --- /dev/null +++ b/terra-backend/python-server/graph-analysis.ipynb @@ -0,0 +1,862 @@ +{ + "cells": [ + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Imports\n" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "metadata": {}, + "outputs": [], + "source": [ + "import os\n", + "import pandas as pd\n", + "import numpy as np\n", + "import random\n", + "import math\n", + "from networkx.readwrite import json_graph\n", + "import json\n", + "import networkx as nx\n", + "import pickle\n", + "import logging\n", + "import logging.config\n", + "from opencensus.ext.azure.log_exporter import AzureLogHandler\n", + "import datetime\n", + "\n", + "from flask import Flask,request,Response\n", + "from flask_cors import CORS\n", + "from opencensus.ext.azure.trace_exporter import AzureExporter\n", + "from opencensus.ext.flask.flask_middleware import FlaskMiddleware\n", + "from opencensus.trace.samplers import ProbabilitySampler" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Global variables" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "metadata": {}, + "outputs": [], + "source": [ + "df_intra = pd.DataFrame()\n", + "df_intra_trim = pd.DataFrame()\n", + "df_extra = pd.DataFrame()\n", + "df_extra_trim = pd.DataFrame()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Parameters" + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "metadata": {}, + "outputs": [], + "source": [ + "FILE_SEP = \",\"\n", + "PROD_DIGITS = 3 # number of digits to classify transports\n", + "MAX_NODES = 70\n", + "CHUNCK_SIZE = 5\n", + "\n", + "# COMEXT DATASETS\n", + "INTRA_FILE = \"data\" + os.sep + \"cpa_intra.csv\"\n", + "EXTRA_FILE = \"data\" + os.sep + \"tr_extra_ue.csv\"\n", + "INTRA_TRIM_FILE = \"data\" + os.sep + \"cpa_trim.csv\"\n", + "EXTRA_TRIM_FILE = \"data\" + os.sep + \"tr_extra_ue_trim.csv\"\n", + "\n", + "CRITERION = \"VALUE_IN_EUROS\" # VALUE_IN_EUROS QUANTITY_IN_KG" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "metadata": {}, + "outputs": [], + "source": [ + "logging.basicConfig(\n", + " level=logging.INFO,\n", + " format=\"%(asctime)s.%(msecs)03d %(levelname)s %(module)s - %(funcName)s: %(message)s\",\n", + " datefmt=\"%Y-%m-%d %H:%M:%S\",\n", + ")\n", + "\n", + "logger = logging.getLogger(__name__)" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Azure setup\n" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2024-01-02 16:49:39.606 WARNING 3646994727 - : Application insights is not configured.\n" + ] + } + ], + "source": [ + "def is_application_insight_configured():\n", + " return (\n", + " os.getenv(\"APPINSIGHTS_INSTRUMENTATIONKEY\") != None\n", + " or os.getenv(\"APPLICATIONINSIGHTS_CONNECTION_STRING\") != None\n", + " )\n", + "\n", + "def ai_callback_function(envelope):\n", + " if os.getenv(\"CLOUD_ROLE\") != None:\n", + " envelope.tags[\"ai.cloud.role\"] = os.getenv(\"CLOUD_ROLE\")\n", + "\n", + "\n", + "if is_application_insight_configured():\n", + " log_handler = AzureLogHandler()\n", + " log_handler.add_telemetry_processor(ai_callback_function)\n", + " logger.addHandler(log_handler)\n", + "else:\n", + " logger.warning(\"Application insights is not configured.\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Data loading functions\n" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "metadata": {}, + "outputs": [], + "source": [ + "def load_intra():\n", + " logger.info(\"[TERRA] Loading dataset INTRA...\")\n", + "\n", + " df = pd.read_csv(\n", + " INTRA_FILE,\n", + " low_memory=False,\n", + " dtype={\n", + " \"PRODUCT\": object,\n", + " \"FLOW\": np.int8,\n", + " \"PERIOD\": np.int32,\n", + " \"TRANSPORT_MODE\": np.int8,\n", + " },\n", + " )\n", + "\n", + " logger.info(\"[TERRA] Dataset INTRA loaded!\")\n", + " logger.info(f\"[TERRA] Dataset INTRA contains {df.shape[0]} records\")\n", + " return df\n", + "\n", + "def load_intra_trim():\n", + " def funcTrim(x):\n", + " return np.int32(x.replace(\"T\", \"0\"))\n", + "\n", + " logger.info(\"[TERRA] Loading dataset INTRA TRIMESTER...\")\n", + "\n", + " df = pd.read_csv(\n", + " INTRA_TRIM_FILE,\n", + " low_memory=False,\n", + " converters={\"trimestre\": funcTrim},\n", + " dtype={\"cpa\": object, \"FLOW\": np.int8},\n", + " )\n", + " df = df[[\"DECLARANT_ISO\", \"PARTNER_ISO\", \"FLOW\", \"cpa\", \"trimestre\", \"val_cpa\"]]\n", + " df.columns = [\n", + " \"DECLARANT_ISO\",\n", + " \"PARTNER_ISO\",\n", + " \"FLOW\",\n", + " \"PRODUCT\",\n", + " \"PERIOD\",\n", + " \"VALUE_IN_EUROS\",\n", + " ]\n", + " df = df[df.PRODUCT.apply(lambda x: len(x.strip()) == PROD_DIGITS)]\n", + "\n", + " logger.info(\"[TERRA] Dataset INTRA TRIMESTER loaded!\")\n", + " logger.info(f\"[TERRA] Dataset INTRA TRIMESTER contains {df.shape[0]} records\")\n", + " return df\n", + "\n", + "def load_extra():\n", + " logger.info(\"[TERRA] Loading dataset EXTRA...\")\n", + "\n", + " df = pd.read_csv(\n", + " EXTRA_FILE,\n", + " sep=FILE_SEP,\n", + " dtype={\n", + " \"PRODUCT_NSTR\": object,\n", + " \"FLOW\": np.int8,\n", + " \"PERIOD\": np.int32,\n", + " \"TRANSPORT_MODE\": np.int8,\n", + " },\n", + " )\n", + " df.columns = [\n", + " \"PRODUCT\",\n", + " \"DECLARANT_ISO\",\n", + " \"PARTNER_ISO\",\n", + " \"PERIOD\",\n", + " \"TRANSPORT_MODE\",\n", + " \"FLOW\",\n", + " \"VALUE_IN_EUROS\",\n", + " \"QUANTITY_IN_KG\",\n", + " ]\n", + "\n", + " logger.info(\"[TERRA] Dataset EXTRA loaded!\")\n", + " logger.info(f\"[TERRA] Dataset EXTRA contains {df.shape[0]} records\")\n", + " return df\n", + "\n", + "\n", + "def load_extra_trim():\n", + " def funcTrim(x):\n", + " return np.int32(x.replace(\"T\", \"0\"))\n", + "\n", + " logger.info(\"[TERRA] Loading dataset EXTRA TRIM...\")\n", + "\n", + " df = pd.read_csv(\n", + " EXTRA_TRIM_FILE,\n", + " low_memory=False,\n", + " converters={\"TRIMESTRE\": funcTrim},\n", + " dtype={\"PRODUCT_NSTR\": object, \"FLOW\": np.int8},\n", + " )\n", + " df = df[\n", + " [\n", + " \"DECLARANT_ISO\",\n", + " \"PARTNER_ISO\",\n", + " \"FLOW\",\n", + " \"PRODUCT_NSTR\",\n", + " \"TRANSPORT_MODE\",\n", + " \"TRIMESTRE\",\n", + " \"VALUE_IN_EUROS\",\n", + " ]\n", + " ]\n", + " df.columns = [\n", + " \"DECLARANT_ISO\",\n", + " \"PARTNER_ISO\",\n", + " \"FLOW\",\n", + " \"PRODUCT\",\n", + " \"TRANSPORT_MODE\",\n", + " \"PERIOD\",\n", + " \"VALUE_IN_EUROS\",\n", + " ]\n", + " df = df[df.PRODUCT.apply(lambda x: len(x.strip()) == PROD_DIGITS)]\n", + "\n", + " logger.info(\"[TERRA] Dataset EXTRA TRIM loaded!\")\n", + " logger.info(f\"[TERRA] Dataset EXTRA TRIM contains {df.shape[0]} records\")\n", + " return df\n" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Utility functions" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "metadata": {}, + "outputs": [], + "source": [ + "# Build a query to delete edges in the graph\n", + "def build_edges_query(edges, flow):\n", + " \n", + " # Empty query object\n", + " query = []\n", + " \n", + " for edge in edges:\n", + " if flow == 1:\n", + " PARTNER_ISO = edge[\"from\"]\n", + " DECLARANT_ISO = edge[\"to\"]\n", + " else:\n", + " DECLARANT_ISO = edge[\"from\"]\n", + " PARTNER_ISO = edge[\"to\"]\n", + "\n", + " exclude = str(edge[\"exclude\"])\n", + "\n", + " # Graph without TRANSPORTS\n", + " if \"-99\" in exclude:\n", + " query.append(\n", + " \"(DECLARANT_ISO == '\"\n", + " + DECLARANT_ISO\n", + " + \"' & PARTNER_ISO == '\"\n", + " + PARTNER_ISO\n", + " + \"' )\"\n", + " )\n", + " else:\n", + " query.append(\n", + " \"((DECLARANT_ISO == '\"\n", + " + DECLARANT_ISO\n", + " + \"' & PARTNER_ISO == '\"\n", + " + PARTNER_ISO\n", + " + \"' & TRANSPORT_MODE in \"\n", + " + exclude\n", + " + \"))\"\n", + " )\n", + " return \"not (\" + (\"|\".join(query)) + \")\"\n", + "\n", + "\n", + "# Remove from the transport dataframe the subset NOT containing edges\n", + "def remove_edges(df_comext, edges, flow):\n", + " query = build_edges_query(edges, flow)\n", + " df_comext = df_comext.query(query)\n", + " return df_comext\n", + "\n", + "\n", + "def build_metrics(graph):\n", + " logger.info(\"[TERRA] Calculating graph metrics...\")\n", + "\n", + " in_deg = nx.in_degree_centrality(graph)\n", + " graph_metrics = {}\n", + " vulnerability = {}\n", + "\n", + " for k, v in in_deg.items():\n", + " if v != 0:\n", + " vulnerability[k] = 1 - v\n", + " else:\n", + " vulnerability[k] = 0\n", + " \n", + " graph_metrics = {\n", + " \"degree_centrality\": nx.degree_centrality(graph),\n", + " \"density\": nx.density(graph),\n", + " \"vulnerability\": vulnerability,\n", + " \"exportation strenght\": {\n", + " a: b for a, b in graph.out_degree(weight=\"weight\")\n", + " },\n", + " \"hubness\": nx.closeness_centrality(graph.to_undirected()),\n", + " }\n", + " \n", + " logger.info(\"[TERRA] Graph metrics ready!\")\n", + " return graph_metrics" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Data processing\n", + "\n", + "### Extract graph table" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "metadata": {}, + "outputs": [], + "source": [ + "def extract_graph_table(\n", + " period,\n", + " percentage,\n", + " transports,\n", + " flow,\n", + " product,\n", + " criterion,\n", + " selectedEdges,\n", + " df_comext,\n", + "):\n", + "\n", + " logger.info(\"[TERRA] Preparing graph table...\")\n", + "\n", + " # Extract FLOW\n", + " df_comext = df_comext[\n", + " df_comext[\"FLOW\"] == flow\n", + " ]\n", + " \n", + " # Extract PERIOD\n", + " if period is not None:\n", + " period = np.int32(period)\n", + " df_comext = df_comext[\n", + " df_comext[\"PERIOD\"] == period\n", + " ]\n", + " \n", + " # Extract TRANSPORTS\n", + " if transports is not None:\n", + " df_comext = df_comext[\n", + " df_comext[\"TRANSPORT_MODE\"].isin(transports)\n", + " ]\n", + "\n", + " # Extract PRODUCT\n", + " if product is not None:\n", + " df_comext = df_comext[\n", + " df_comext[\"PRODUCT\"] == product\n", + " ]\n", + "\n", + " # Extract EDGES\n", + " if selectedEdges is not None:\n", + " \n", + " NUMBER_OF_EDGES_CHUNKS = len(selectedEdges) // (CHUNCK_SIZE)\n", + "\n", + " for i in range(NUMBER_OF_EDGES_CHUNKS):\n", + " selectedEdges_i = selectedEdges[\n", + " i * CHUNCK_SIZE : (i + 1) * CHUNCK_SIZE\n", + " ]\n", + " df_comext = remove_edges(\n", + " df_comext, selectedEdges_i, flow\n", + " )\n", + " selectedEdges_i = selectedEdges[\n", + " NUMBER_OF_EDGES_CHUNKS * CHUNCK_SIZE : len(selectedEdges)\n", + " ]\n", + " \n", + " if len(selectedEdges_i) > 0:\n", + " df_comext = remove_edges(\n", + " df_comext, selectedEdges_i, flow\n", + " )\n", + "\n", + " # Aggregate on DECLARANT_ISO and PARTNER_ISO and sort on criterion (VALUE or QUANTITY)\n", + " df_comext = (\n", + " df_comext.groupby([\"DECLARANT_ISO\", \"PARTNER_ISO\"])\n", + " .sum()\n", + " .reset_index()[[\"DECLARANT_ISO\", \"PARTNER_ISO\", criterion]]\n", + " )\n", + " df_comext = df_comext.sort_values(\n", + " criterion, ascending=False\n", + " )\n", + " \n", + " # Cut graph on bottom percentile\n", + " if percentage is not None:\n", + " SUM = df_comext[criterion].sum()\n", + " df_comext = df_comext[\n", + " df_comext[criterion].cumsum(skipna=False) / SUM * 100 < percentage\n", + " ]\n", + " \n", + " logger.info(\"[TERRA] Graph table ready!\")\n", + "\n", + " return df_comext" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "### Build graph\n", + "Build the graph and the metrics based on the filtered table" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "metadata": {}, + "outputs": [], + "source": [ + "def build_graph(tab4graph, pos_ini, weight_flag, flow, criterion):\n", + " \n", + " logger.info(\"[TERRA] Building GRAPH...\")\n", + "\n", + " # Create an empty graph\n", + " G = nx.DiGraph()\n", + "\n", + " # Assign roles according to flow (IMPORT or EXPORT)\n", + " if flow == 1:\n", + " country_from = \"PARTNER_ISO\"\n", + " country_to = \"DECLARANT_ISO\"\n", + " else:\n", + " country_from = \"DECLARANT_ISO\"\n", + " country_to = \"PARTNER_ISO\"\n", + "\n", + " # Build the Graph with edges and nodes, if the Graph is weighted\n", + " # assign the weight VALUE or QUANTITY depending on the criterion chosen to sort the market and perform the cut\n", + " if weight_flag == True:\n", + " weight = criterion\n", + " WEIGHT_SUM = tab4graph[weight].sum()\n", + " edges = [\n", + " (i, j, w / WEIGHT_SUM)\n", + " for i, j, w in tab4graph.loc[:, [country_from, country_to, weight]].values\n", + " ]\n", + " else:\n", + " edges = [\n", + " (i, j, 1) for i, j in tab4graph.loc[:, [country_from, country_to]].values\n", + " ]\n", + "\n", + " # Add weigthed edges to the graph\n", + " G.add_weighted_edges_from(edges)\n", + "\n", + " attribute = {}\n", + " for i, j, w in edges:\n", + " attribute[(i, j)] = {criterion: int(w * WEIGHT_SUM)}\n", + "\n", + " nx.set_edge_attributes(G, attribute)\n", + "\n", + " # Build metrics\n", + " graph_metrics = build_metrics(G)\n", + "\n", + " # Json graph\n", + " GG = json_graph.node_link_data(G)\n", + " \n", + " k_layout = 5\n", + " pos_ini = {}\n", + " random.seed(88)\n", + " for node in GG[\"nodes\"]:\n", + " x = random.uniform(0, 1)\n", + " y = random.uniform(0, 1)\n", + " pos_ini[node[\"id\"]] = np.array([x, y])\n", + "\n", + " try:\n", + " coord = nx.spring_layout(\n", + " G, k=k_layout / math.sqrt(G.order()), pos=pos_ini, iterations=200\n", + " )\n", + " coord = nx.spring_layout(\n", + " G, k=k_layout / math.sqrt(G.order()), pos=coord, iterations=50\n", + " ) # stable solution\n", + "\n", + " except:\n", + " return None, None, None\n", + "\n", + " # Create a dataframe with graph nodes coordinates\n", + " df_coord = pd.DataFrame.from_dict(coord, orient=\"index\")\n", + " df_coord.columns = [\"x\", \"y\"]\n", + "\n", + " df = pd.DataFrame(GG[\"nodes\"])\n", + " df.columns = [\"label\"]\n", + " df[\"id\"] = np.arange(df.shape[0])\n", + " df = df[[\"id\", \"label\"]]\n", + " out = pd.merge(df, df_coord, left_on=\"label\", right_index=True)\n", + " dict_nodes = out.T.to_dict().values()\n", + "\n", + " dfe = pd.DataFrame(GG[\"links\"])[[\"source\", \"target\", \"weight\", criterion]]\n", + " res = dfe.set_index(\"source\").join(\n", + " out[[\"label\", \"id\"]].set_index(\"label\"), on=\"source\", how=\"left\"\n", + " )\n", + " res.columns = [\"target\", \"source_id\", \"weight\", criterion]\n", + " res2 = res.set_index(\"target\").join(\n", + " out[[\"label\", \"id\"]].set_index(\"label\"), on=\"target\", how=\"left\"\n", + " )\n", + " res2.columns = [\"weight\", criterion, \"from\", \"to\"]\n", + " res2.reset_index(drop=True, inplace=True)\n", + " dict_edges = res2.T.to_dict().values()\n", + "\n", + " new_dict = {\n", + " \"nodes\": list(dict_nodes),\n", + " \"edges\": list(dict_edges),\n", + " \"metriche\": graph_metrics,\n", + " }\n", + "\n", + " JSON = json.dumps(new_dict)\n", + "\n", + " logger.info(\"[TERRA] GRAPH built!\")\n", + "\n", + " return coord, JSON, G" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "metadata": {}, + "outputs": [], + "source": [ + "def jsonpos2coord(jsonpos):\n", + " logger.info(\"[TERRA] JSON2COORDINATES...\")\n", + " coord = {}\n", + " for id, x, y in pd.DataFrame.from_dict(jsonpos[\"nodes\"])[\n", + " [\"label\", \"x\", \"y\"]\n", + " ].values:\n", + " coord[id] = np.array([x, y])\n", + " logger.info(\"[TERRA] JSON2COORDINATES done!\")\n", + " return coord" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "metadata": {}, + "outputs": [], + "source": [ + "def load_data():\n", + " try:\n", + " df_intra = load_intra()\n", + " df_intra_trim = load_intra_trim()\n", + " df_extra = load_extra()\n", + " df_extra_trim = load_extra_trim()\n", + " except:\n", + " logger.info(\"[TERRA] Files not found!\")" + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2024-01-02 16:49:39.694 INFO 17239207 - load_intra: [TERRA] Loading dataset INTRA...\n", + "2024-01-02 16:49:45.950 INFO 17239207 - load_intra: [TERRA] Dataset INTRA loaded!\n", + "2024-01-02 16:49:45.951 INFO 17239207 - load_intra: [TERRA] Dataset INTRA contains 15101732 records\n", + "2024-01-02 16:49:45.952 INFO 17239207 - load_intra_trim: [TERRA] Loading dataset INTRA TRIMESTER...\n", + "2024-01-02 16:50:26.822 INFO 17239207 - load_intra_trim: [TERRA] Dataset INTRA TRIMESTER loaded!\n", + "2024-01-02 16:50:26.823 INFO 17239207 - load_intra_trim: [TERRA] Dataset INTRA TRIMESTER contains 6554527 records\n", + "2024-01-02 16:50:26.823 INFO 17239207 - load_extra: [TERRA] Loading dataset EXTRA...\n", + "2024-01-02 16:50:36.286 INFO 17239207 - load_extra: [TERRA] Dataset EXTRA loaded!\n", + "2024-01-02 16:50:36.287 INFO 17239207 - load_extra: [TERRA] Dataset EXTRA contains 22035020 records\n", + "2024-01-02 16:50:36.287 INFO 17239207 - load_extra_trim: [TERRA] Loading dataset EXTRA TRIM...\n", + "2024-01-02 16:51:03.838 INFO 17239207 - load_extra_trim: [TERRA] Dataset EXTRA TRIM loaded!\n", + "2024-01-02 16:51:03.839 INFO 17239207 - load_extra_trim: [TERRA] Dataset EXTRA TRIM contains 4106240 records\n" + ] + } + ], + "source": [ + "df_intra = load_intra()\n", + "df_intra_trim = load_intra_trim()\n", + "df_extra = load_extra()\n", + "df_extra_trim = load_extra_trim()" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Flask setup" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "' \\nazure_exporter.add_telemetry_processor(ai_callback_function)\\nif is_application_insight_configured():\\n middleware = FlaskMiddleware(\\n app,\\n exporter=azure_exporter,\\n sampler=ProbabilitySampler(rate=1.0),\\n ) \\n'" + ] + }, + "execution_count": 60, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "app = Flask(__name__)\n", + "CORS(app, resources=r'/*')\n", + "\n", + "\"\"\" \n", + "azure_exporter.add_telemetry_processor(ai_callback_function)\n", + "if is_application_insight_configured():\n", + " middleware = FlaskMiddleware(\n", + " app,\n", + " exporter=azure_exporter,\n", + " sampler=ProbabilitySampler(rate=1.0),\n", + " ) \n", + "\"\"\"" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Endpoints" + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "metadata": {}, + "outputs": [], + "source": [ + "@app.route(\"/graphExtraMonth\", methods=[\"POST\", \"GET\"])\n", + "def graphExtraMonth():\n", + " if request.method == \"POST\":\n", + " logger.info(\"[TERRA] Graph extra month...\")\n", + "\n", + " # Currently criterio is set to \"VALUE_IN_EUROS\" \n", + " criterion = CRITERION\n", + "\n", + " # User request\n", + " jsonRequest = dict(request.json)\n", + " \n", + " #Get PERCENTAGE\n", + " percentage = int(jsonRequest[\"tg_perc\"])\n", + " \n", + " #Get PERIOD\n", + " period = int(jsonRequest[\"tg_period\"])\n", + " \n", + " #Get NODES COORDINATES\n", + " pos = jsonRequest[\"pos\"]\n", + " if pos == \"None\" or len(pos[\"nodes\"]) == 0:\n", + " pos = None\n", + " else:\n", + " # Build nodes coordinates according to previous graph\n", + " pos = jsonpos2coord(pos)\n", + "\n", + " # 0:Unknown 1:Sea 2:Rail 3:Road 4Air 5:Post 7:Fixed Mechanism 8:Inland Waterway 9:Self Propulsion\n", + " transports = jsonRequest[\"listaMezzi\"] # [0,1,2,3,4,5,7,8,9]\n", + " \n", + " #Get FLOW\n", + " flow = int(jsonRequest[\"flow\"])\n", + " \n", + " #Get PRODUCT\n", + " product = str(jsonRequest[\"product\"])\n", + " \n", + " #Get WEIGHT_FLAG (currently hardcoded)\n", + " weight_flag = bool(jsonRequest[\"weight_flag\"])\n", + " \n", + " # This key is set in the scenario analysis\n", + " selectedTransportEdges = jsonRequest[\"selezioneMezziEdges\"]\n", + " if selectedTransportEdges == \"None\":\n", + " selectedTransportEdges = None\n", + " else:\n", + " pass\n", + "\n", + " tab4graph = extract_graph_table(\n", + " period,\n", + " percentage,\n", + " transports,\n", + " flow,\n", + " product,\n", + " criterion,\n", + " selectedTransportEdges,\n", + " df_extra,\n", + " )\n", + " logger.info(f\"[TERRA] Graph shape {tab4graph.shape}\")\n", + " \n", + " # Check the size of the graph\n", + " NUM_NODI = len(\n", + " set(tab4graph[\"DECLARANT_ISO\"]).union(set(tab4graph[\"PARTNER_ISO\"]))\n", + " )\n", + " if NUM_NODI > MAX_NODES:\n", + " logger.info(f\"[TERRA] Graph is too wide!\")\n", + " return json.dumps({\"STATUS\": \"05\"})\n", + " \n", + " # Build graph\n", + " pos, JSON, G = build_graph(tab4graph, pos, weight_flag, flow, criterion)\n", + "\n", + " if pos is None:\n", + " if JSON is None:\n", + " logger.info(f\"[TERRA] Graph is empty!\")\n", + " return json.dumps({\"STATUS\": \"06\"})\n", + " \n", + " resp = Response(response=JSON, status=200, mimetype=\"application/json\")\n", + " logger.info(\"[TERRA] Graph extra month done!\")\n", + " return resp\n", + "\n", + " else:\n", + " logger.info(\"[TERRA] Error in HTTP request method!\")\n", + " return str(\"only post\")" + ] + }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "## Start Python server" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " * Serving Flask app '__main__'\n", + " * Debug mode: off\n" + ] + }, + { + "name": "stderr", + "output_type": "stream", + "text": [ + "2024-01-02 16:51:03.907 INFO _internal - _log: \u001b[31m\u001b[1mWARNING: This is a development server. Do not use it in a production deployment. Use a production WSGI server instead.\u001b[0m\n", + " * Running on all addresses (0.0.0.0)\n", + " * Running on http://127.0.0.1:5500\n", + " * Running on http://10.18.90.225:5500\n", + "2024-01-02 16:51:03.907 INFO _internal - _log: \u001b[33mPress CTRL+C to quit\u001b[0m\n", + "2024-01-02 16:51:15.369 INFO _internal - _log: 127.0.0.1 - - [02/Jan/2024 16:51:15] \"OPTIONS /graphExtraMonth HTTP/1.1\" 200 -\n", + "2024-01-02 16:51:15.635 INFO 301109372 - graphExtraMonth: [TERRA] Graph extra month...\n", + "2024-01-02 16:51:15.636 INFO 1457142449 - extract_graph_table: [TERRA] Preparing graph table...\n", + "2024-01-02 16:51:16.266 INFO 1457142449 - extract_graph_table: [TERRA] Graph table ready!\n", + "2024-01-02 16:51:16.266 INFO 301109372 - graphExtraMonth: [TERRA] Graph shape (197, 3)\n", + "2024-01-02 16:51:16.267 INFO 3536347606 - build_graph: [TERRA] Building GRAPH...\n", + "2024-01-02 16:51:16.270 INFO 1748329586 - build_metrics: [TERRA] Calculating graph metrics...\n", + "2024-01-02 16:51:16.480 INFO 1748329586 - build_metrics: [TERRA] Graph metrics ready!\n", + "2024-01-02 16:51:16.597 INFO 3536347606 - build_graph: [TERRA] GRAPH built!\n", + "2024-01-02 16:51:16.598 INFO 301109372 - graphExtraMonth: [TERRA] Graph extra month done!\n", + "2024-01-02 16:51:16.599 INFO _internal - _log: 127.0.0.1 - - [02/Jan/2024 16:51:16] \"POST /graphExtraMonth HTTP/1.1\" 200 -\n", + "2024-01-02 16:51:24.085 INFO _internal - _log: 127.0.0.1 - - [02/Jan/2024 16:51:24] \"OPTIONS /graphExtraMonth HTTP/1.1\" 200 -\n", + "2024-01-02 16:51:24.399 INFO 301109372 - graphExtraMonth: [TERRA] Graph extra month...\n", + "2024-01-02 16:51:24.401 INFO 2925370660 - jsonpos2coord: [TERRA] JSON2COORDINATES...\n", + "2024-01-02 16:51:24.410 INFO 2925370660 - jsonpos2coord: [TERRA] JSON2COORDINATES done!\n", + "2024-01-02 16:51:24.411 INFO 1457142449 - extract_graph_table: [TERRA] Preparing graph table...\n", + "2024-01-02 16:51:24.994 INFO 1457142449 - extract_graph_table: [TERRA] Graph table ready!\n", + "2024-01-02 16:51:24.995 INFO 301109372 - graphExtraMonth: [TERRA] Graph shape (0, 3)\n", + "2024-01-02 16:51:24.995 INFO 3536347606 - build_graph: [TERRA] Building GRAPH...\n", + "2024-01-02 16:51:24.997 INFO 1748329586 - build_metrics: [TERRA] Calculating graph metrics...\n", + "2024-01-02 16:51:24.998 INFO 1748329586 - build_metrics: [TERRA] Graph metrics ready!\n", + "2024-01-02 16:51:24.998 INFO 301109372 - graphExtraMonth: [TERRA] Graph is empty!\n", + "2024-01-02 16:51:24.999 INFO _internal - _log: 127.0.0.1 - - [02/Jan/2024 16:51:24] \"POST /graphExtraMonth HTTP/1.1\" 200 -\n", + "2024-01-02 16:51:28.131 INFO 301109372 - graphExtraMonth: [TERRA] Graph extra month...\n", + "2024-01-02 16:51:28.133 INFO 2925370660 - jsonpos2coord: [TERRA] JSON2COORDINATES...\n", + "2024-01-02 16:51:28.135 INFO 2925370660 - jsonpos2coord: [TERRA] JSON2COORDINATES done!\n", + "2024-01-02 16:51:28.136 INFO 1457142449 - extract_graph_table: [TERRA] Preparing graph table...\n", + "2024-01-02 16:51:28.783 INFO 1457142449 - extract_graph_table: [TERRA] Graph table ready!\n", + "2024-01-02 16:51:28.784 INFO 301109372 - graphExtraMonth: [TERRA] Graph shape (183, 3)\n", + "2024-01-02 16:51:28.784 INFO 3536347606 - build_graph: [TERRA] Building GRAPH...\n", + "2024-01-02 16:51:28.787 INFO 1748329586 - build_metrics: [TERRA] Calculating graph metrics...\n", + "2024-01-02 16:51:28.969 INFO 1748329586 - build_metrics: [TERRA] Graph metrics ready!\n", + "2024-01-02 16:51:29.037 INFO 3536347606 - build_graph: [TERRA] GRAPH built!\n", + "2024-01-02 16:51:29.038 INFO 301109372 - graphExtraMonth: [TERRA] Graph extra month done!\n", + "2024-01-02 16:51:29.039 INFO _internal - _log: 127.0.0.1 - - [02/Jan/2024 16:51:29] \"POST /graphExtraMonth HTTP/1.1\" 200 -\n", + "2024-01-02 17:02:31.069 INFO _internal - _log: 127.0.0.1 - - [02/Jan/2024 17:02:31] \"OPTIONS /graphExtraMonth HTTP/1.1\" 200 -\n", + "2024-01-02 17:02:31.319 INFO 301109372 - graphExtraMonth: [TERRA] Graph extra month...\n", + "2024-01-02 17:02:31.319 INFO 2925370660 - jsonpos2coord: [TERRA] JSON2COORDINATES...\n", + "2024-01-02 17:02:31.319 INFO 2925370660 - jsonpos2coord: [TERRA] JSON2COORDINATES done!\n", + "2024-01-02 17:02:31.319 INFO 1457142449 - extract_graph_table: [TERRA] Preparing graph table...\n", + "2024-01-02 17:02:32.185 INFO 1457142449 - extract_graph_table: [TERRA] Graph table ready!\n", + "2024-01-02 17:02:32.185 INFO 301109372 - graphExtraMonth: [TERRA] Graph shape (183, 3)\n", + "2024-01-02 17:02:32.185 INFO 3536347606 - build_graph: [TERRA] Building GRAPH...\n", + "2024-01-02 17:02:32.200 INFO 1748329586 - build_metrics: [TERRA] Calculating graph metrics...\n", + "2024-01-02 17:02:32.371 INFO 1748329586 - build_metrics: [TERRA] Graph metrics ready!\n", + "2024-01-02 17:02:32.418 INFO 3536347606 - build_graph: [TERRA] GRAPH built!\n", + "2024-01-02 17:02:32.418 INFO 301109372 - graphExtraMonth: [TERRA] Graph extra month done!\n", + "2024-01-02 17:02:32.418 INFO _internal - _log: 127.0.0.1 - - [02/Jan/2024 17:02:32] \"POST /graphExtraMonth HTTP/1.1\" 200 -\n" + ] + } + ], + "source": [ + "if __name__ == '__main__':\n", + " IP='0.0.0.0'\n", + " port=5500\n", + " app.run(host=IP, port=port)\n" + ] + } + ], + "metadata": { + "kernelspec": { + "display_name": "base", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.11.5" + } + }, + "nbformat": 4, + "nbformat_minor": 2 +} From 16704e3310195ac2c90060a6fb36b13b4836c1c0 Mon Sep 17 00:00:00 2001 From: mauroIstat Date: Tue, 2 Jan 2024 18:21:28 +0100 Subject: [PATCH 04/33] News section --- terra-frontend/src/assets/icons/coreui.js | 2 ++ terra-frontend/src/components/Sidebar.vue | 34 +++++++++++------------ terra-frontend/src/i18n/en.json | 8 +++--- terra-frontend/src/i18n/it.json | 8 +++--- terra-frontend/src/views/Home.vue | 5 +++- terra-frontend/src/views/news/News.vue | 20 ++++--------- 6 files changed, 36 insertions(+), 41 deletions(-) diff --git a/terra-frontend/src/assets/icons/coreui.js b/terra-frontend/src/assets/icons/coreui.js index 353a4c6..29a9bd7 100644 --- a/terra-frontend/src/assets/icons/coreui.js +++ b/terra-frontend/src/assets/icons/coreui.js @@ -7,6 +7,7 @@ import { cilTerminal, cilUser, cilMap, + cilNewspaper, cilLocationPin, cilChartLine, cilGraph, @@ -29,6 +30,7 @@ export const iconsSet = Object.assign( cilTerminal, cilUser, cilMap, + cilNewspaper, cilLocationPin, cilChartLine, cilGraph, diff --git a/terra-frontend/src/components/Sidebar.vue b/terra-frontend/src/components/Sidebar.vue index c013bd3..c7c4b3d 100644 --- a/terra-frontend/src/components/Sidebar.vue +++ b/terra-frontend/src/components/Sidebar.vue @@ -45,6 +45,23 @@ :title="$t('sidebar.home')" />{{ $t("sidebar.home") }} +
{{ $t("sidebar.analysis") }}
@@ -131,23 +148,6 @@ {{ $t("sidebar.trade") }} -
- + {{ $t("landing.news.title") }}
diff --git a/terra-frontend/src/views/news/News.vue b/terra-frontend/src/views/news/News.vue index 8686fdc..b29311a 100644 --- a/terra-frontend/src/views/news/News.vue +++ b/terra-frontend/src/views/news/News.vue @@ -1,10 +1,11 @@